blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
df4163db2b00b409e54efa8e0b035fb41a915079 | 857a4f09f8b36ae44e3dc7b5b5d95bb311972bf3 | /runtime/Source/melfos/mkx2x/SIMImpl.cc | 93aa9c9ace1e6f6bbdfdc1b01a9ceddd8c6e3bd8 | [] | no_license | swheater/micro-elfOS | 75cb7e4df1916164ccbb013556fee31d6c7f65c3 | 5586ba011c8cd5469a6fd75cf6fbc8ea8f4447aa | refs/heads/master | 2020-04-06T03:33:46.867476 | 2018-03-03T23:52:47 | 2018-03-03T23:52:47 | 36,835,958 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 431 | cc | /*
* Copyright (c) 2015-2016, Stuart Wheater, Newcastle upon Tyne, England. All rights reserved.
*/
#include <Memory.h>
#include <melfos/SIM.h>
#include <melfos/mkx2x/SIMImpl.h>
#define SIM_SCGC5 ((Word32*) 0x40048038)
SIMImpl::SIMImpl(void)
{
setWord32(SIM_SCGC5, getWord32(SIM_SCGC5) | (1 << 11));
}
SIMImpl::~SIMImpl(void)
{
}
void SIMImpl::begin(void)
{
setWord32(SIM_SCGC5, getWord32(SIM_SCGC5) | (1 << 11));
}
| [
"stuart.wheater@gmail.com"
] | stuart.wheater@gmail.com |
63dd6689d6d84cfa4a91829fde135539b2ecb299 | 41352cd56ac6c95d7bb71aca8be26deddfc25549 | /1-100/LeetCode 090 Subsets II.cpp | d5f0a5b488a6889ebd455d8b3e7ee396e691bf44 | [] | no_license | xiexnot/LeetCode | 6da864d5fb6aa610271bd1f4e8ab30ec7d651877 | 70a8242a346c7f07e5fcc1810cfaa2ca611eb1a8 | refs/heads/master | 2021-01-09T21:51:56.457289 | 2017-03-14T17:28:02 | 2017-03-14T17:28:02 | 49,901,278 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | cpp | class Solution {
private:
vector<int> UniqueNums;
vector<int> UniqueNumsTimes;
vector<vector<int>> subsetsResult;
vector<int> currentNumsTimes;
void search(int x){
if (x>=UniqueNums.size()){
// process
vector<int> currentSet;
for (int i=0;i<currentNumsTimes.size();i++)
for (int j=0;j<currentNumsTimes[i];j++)
currentSet.push_back(UniqueNums[i]);
subsetsResult.push_back(currentSet);
return ;
}
for (int i=0;i<=UniqueNumsTimes[x];i++){
currentNumsTimes[x] = i;
search(x+1);
}
}
public:
vector<vector<int>> subsetsWithDup(vector<int>& nums) {
sort(nums.begin(), nums.end());
UniqueNums.push_back(nums[0]);
UniqueNumsTimes.push_back(1);
int UniqueNumsIndex = 0;
for (int i=1;i<nums.size();i++)
if (nums[i] == UniqueNums[UniqueNumsIndex])
UniqueNumsTimes[UniqueNumsIndex] ++;
else{
UniqueNumsIndex ++;
UniqueNums.push_back(nums[i]);
UniqueNumsTimes.push_back(1);
}
for (int i=0;i<UniqueNums.size();i++)
currentNumsTimes.push_back(0);
search(0);
return subsetsResult;
}
}; | [
"xiexnot@gmail.com"
] | xiexnot@gmail.com |
80c62acdf2bb9db16bbd6b45dcbac421927e2597 | 693db13224fa873ac0baa9f759b58d9456c7a472 | /mini project workshop/build-address-book-Desktop_Qt_5_7_0_MinGW_32bit-Debug/src/tmp/moc_qtcontactdetailview.cpp | e375d12df59d1fb3a2888f05268957992d5b9817 | [] | no_license | prsannabangaru/miniproject | 3518d24c926817c45f5fcafad15b7c7cc18314bb | dfb1a1c8554af745fc86a5db353fd112c8d3d59f | refs/heads/master | 2021-05-13T16:06:31.682231 | 2018-01-09T08:23:36 | 2018-01-09T08:23:36 | 116,785,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,867 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'qtcontactdetailview.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../../../../Documents/mini project workshop/address-book-master/src/qtcontactdetailview.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'qtcontactdetailview.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.7.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_QtContactDetailView_t {
QByteArrayData data[5];
char stringdata0[58];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_QtContactDetailView_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_QtContactDetailView_t qt_meta_stringdata_QtContactDetailView = {
{
QT_MOC_LITERAL(0, 0, 19), // "QtContactDetailView"
QT_MOC_LITERAL(1, 20, 14), // "displayContact"
QT_MOC_LITERAL(2, 35, 0), // ""
QT_MOC_LITERAL(3, 36, 18), // "Contact::ContactId"
QT_MOC_LITERAL(4, 55, 2) // "id"
},
"QtContactDetailView\0displayContact\0\0"
"Contact::ContactId\0id"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_QtContactDetailView[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 1, 19, 2, 0x08 /* Private */,
// slots: parameters
QMetaType::Void, 0x80000000 | 3, 4,
0 // eod
};
void QtContactDetailView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
QtContactDetailView *_t = static_cast<QtContactDetailView *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->displayContact((*reinterpret_cast< Contact::ContactId(*)>(_a[1]))); break;
default: ;
}
}
}
const QMetaObject QtContactDetailView::staticMetaObject = {
{ &QGroupBox::staticMetaObject, qt_meta_stringdata_QtContactDetailView.data,
qt_meta_data_QtContactDetailView, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *QtContactDetailView::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *QtContactDetailView::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_QtContactDetailView.stringdata0))
return static_cast<void*>(const_cast< QtContactDetailView*>(this));
return QGroupBox::qt_metacast(_clname);
}
int QtContactDetailView::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QGroupBox::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
}
return _id;
}
QT_END_MOC_NAMESPACE
| [
"noreply@github.com"
] | noreply@github.com |
dc8ce3dae9fa50701a7d2aab26695429ea295562 | f53a79a1cee7e2ba44e06fe0a94d4032bb9ee43f | /BOJ/5619.cpp | 3680510506fa4a4b69beca6588e7a8f40fda36f5 | [] | no_license | SOFTK2765/PS | f576a416da21034d5ebea60538fcd263b6d042f3 | a9215bc9c41530ad6a1a7352716c64e6d73354a7 | refs/heads/master | 2021-06-21T00:39:34.065445 | 2021-01-01T12:45:51 | 2021-01-01T12:45:51 | 152,511,667 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 415 | cpp | #include <bits/stdc++.h>
using namespace std;
int a[10001];
int res[4];
int main()
{
int n;
scanf("%d", &n);
for(int i=0;i<n;i++)
{
int tmp;
scanf(" %d", &tmp);
a[tmp]++;
}
int pos = 0;
for(int i=1;i<10001 && pos<4;i++)
while(a[i]--) res[pos++] = i;
if(n==3) printf("%d%d", res[1], res[0]);
else printf("%d%d", res[0], res[3]);
return 0;
} | [
"44043820+SOFTK2765@users.noreply.github.com"
] | 44043820+SOFTK2765@users.noreply.github.com |
6958f52bab58f86ceb058ac9fa569d04b3487533 | 5e9630c6fdb8ba4b9adbe2831d593aa998bb3ff1 | /func.h | fd0818bdaf935399d5e2665551bdb2a8c7449c71 | [
"MIT"
] | permissive | veevelder/C2MIPS | 749f163b81730972dc58caffbbc8cb470d2c60fe | 50d11645cfb2b0bc4b89b8ace827eac52d77903a | refs/heads/master | 2021-05-31T12:31:49.572331 | 2016-05-23T17:43:14 | 2016-05-23T17:43:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,684 | h | /* Matt Van Veldhuizen
3/21/15
func.h
CS 631
Project
C to MIPS assembly compiler
*/
#ifndef FUNC_H
#define FUNC_H
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string>
#include <string.h>
#include <fstream>
#include <stdexcept>
#include <vector>
using std::vector;
using std::string;
using std::to_string;
extern string data; //contains the data section of the MIPS assembly
extern string text; //contains the text section of the MIPS assembly
extern string filename; //the filename for the outout
extern int yylineno; //the current line number the parser/lexer is on
//struct that holds the symbol of any given variable, function
struct symbol {
string name;
int val;
struct ast *func;
struct symlist *syms;
};
//function that is used when a function is defined
extern void calluser(struct fncall *);
//function that calls eval(...), treefree(...) and will write data/text to filename
void writeFile(struct ast *);
//function to set up the register allocation
void initRegs();
//function that prints any errors if called
void yyerror(char const *s, ...);
//set up new ast node
struct ast *new_ast(int nodetype, struct ast *l, struct ast *r);
//set up new incdec node
struct ast *new_incdec(int nodetype, struct ast *v);
//set up new comparison node
struct ast *new_cmp(int cmptype, struct ast *l, struct ast *r);
//set up new function node
struct ast *new_func(struct symbol *s, struct symlist *param, struct ast *body);
//set up new variable reference node
struct ast *new_ref(struct symbol *s);
//set up new seen variable node
struct ast *see_ref(struct symbol *s);
//set up new variable assignment node
struct ast *new_asgn(struct symbol *s, struct ast *v);
//set up new variable equals node
struct ast *new_equal(struct symbol *s, struct ast *v);
//set up new number node
struct ast *new_num(int d);
//set up new flow control node (if, if else, while)
struct ast *new_flow(int nodetype, struct ast *cond, struct ast *tl, struct ast *el);
//set up new flow control node (for)
struct ast *new_for(int nodetype, struct ast *var, struct ast *cond, struct ast *inc, struct ast *body);
//set up new symbol list node
struct symlist *new_symlist(struct symbol *sym, struct symlist *next);
//set up new function call node
struct ast *new_call(struct symbol *s, struct ast *params);
//evaluate an AST
string eval(struct ast *);
//delete and free an AST
void treefree(struct ast *);
//remove registers from avaliable lists
void remReg(string reg);
//get register from avaliable lists
string getReg(char c);
//lookup/add new symbol to the symbol tree
struct symbol *lookup(char *sym);
//delete from the symbol tree
void symlistfree(struct symlist *sl);
//defines a symbol list tree
struct symlist {
struct symbol *sym;
struct symlist *next;
};
//defines the avaliable registers 0 = free to use 1 = taken go to the next one
struct Register {
int v[2];
int a[4];
int t[10];
int s[8];
int k[2];
};
extern Register REGS;
//nodes in the abstract syntax tree
struct ast {
int nodetype;
struct ast *l;
struct ast *r;
};
struct fncall {
int nodetype;
struct symlist *params;
struct ast *body;
struct symbol *s;
};
struct flow {
int nodetype;
struct ast *cond;
struct ast *tl;
struct ast *el;
};
struct forloop {
int nodetype;
struct ast *cond;
struct ast *var;
struct ast *inc;
struct ast *body;
};
struct numval {
int nodetype;
int i;
};
struct synref {
int nodetype;
struct symbol *s;
};
struct synasgn {
int nodetype;
struct symbol *s;
struct ast *v;
};
struct incdec {
int nodetype;
struct ast *v;
};
struct ufncall {
int nodetype;
struct ast *params;
struct symbol *s;
};
#endif | [
"mvanveldhuizen@resdat.com"
] | mvanveldhuizen@resdat.com |
08be81f539cdb80bd6c34d239cafeef3af4cb03d | 07cbe159795612509c2e7e59eb9c8ff6c6ed6b0d | /partitioned/RayleighBenard/consistencyTest/Ra_1e+05_multiFluidFoam_X1_Y50_adHocBC/tStep0.0025_0.01/rho.stable | 670d5358ce419f099e89d8590932a9125e9b82c6 | [] | no_license | AtmosFOAM/danRun | aacaaf8a22e47d1eb6390190cb98fbe846001e7a | 94d19c4992053d7bd860923e9605c0cbb77ca8a2 | refs/heads/master | 2021-03-22T04:32:10.679600 | 2020-12-03T21:09:40 | 2020-12-03T21:09:40 | 118,792,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,811 | stable | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.01";
object rho.stable;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -3 0 0 0 0 0];
internalField nonuniform List<scalar>
52
(
1.05568821753
1.05912979456
1.06294767394
1.06688904365
1.07084243801
1.07481435654
1.07880446658
1.08280035543
1.08686181745
1.09098983963
1.09512471455
1.09927923309
1.10345320834
1.10763194221
1.11187203876
1.11616490789
1.1205190109
1.12487137187
1.12922936077
1.13367338348
1.138123781
1.14257453436
1.14709809607
1.15169745478
1.15630665986
1.16094217105
1.16561226352
1.17031730331
1.17504940785
1.17979177134
1.18461488897
1.18951779726
1.19442075976
1.19932145008
1.20429437239
1.20932971502
1.21443041959
1.21950925041
1.22465416739
1.2298622985
1.23514092898
1.24040754839
1.24576492524
1.25111956926
1.25656682621
1.26200175499
1.26750839002
1.27306507764
1.27858441217
1.28368298187
1.05329560204
1.28725567957
)
;
boundaryField
{
ground
{
type zeroGradient;
}
top
{
type zeroGradient;
}
left
{
type cyclic;
}
right
{
type cyclic;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"d.shipley.1341@gmail.com"
] | d.shipley.1341@gmail.com |
cfc6f68a35247017b94b6de3e4ac1f7bf6e68350 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13738/function13738_schedule_5/function13738_schedule_5.cpp | 13c718a7e6eed64f4948df0890a117d471a5a441 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,166 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function13738_schedule_5");
constant c0("c0", 128), c1("c1", 128), c2("c2", 64), c3("c3", 64);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i3("i3", 0, c3), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input input00("input00", {i0}, p_int32);
input input01("input01", {i0, i1, i2}, p_int32);
input input02("input02", {i1, i2, i3}, p_int32);
input input03("input03", {i0, i3, i2}, p_int32);
input input04("input04", {i1}, p_int32);
input input05("input05", {i0, i2, i3}, p_int32);
input input06("input06", {i1}, p_int32);
input input07("input07", {i1}, p_int32);
input input08("input08", {i1, i3}, p_int32);
computation comp0("comp0", {i0, i1, i2, i3}, input00(i0) + input01(i0, i1, i2) + input02(i1, i2, i3) - input03(i0, i3, i2) + input04(i1) * input05(i0, i2, i3) - input06(i1) + input07(i1) * input08(i1, i3));
comp0.tile(i2, i3, 32, 64, i01, i02, i03, i04);
comp0.parallelize(i0);
buffer buf00("buf00", {128}, p_int32, a_input);
buffer buf01("buf01", {128, 128, 64}, p_int32, a_input);
buffer buf02("buf02", {128, 64, 64}, p_int32, a_input);
buffer buf03("buf03", {128, 64, 64}, p_int32, a_input);
buffer buf04("buf04", {128}, p_int32, a_input);
buffer buf05("buf05", {128, 64, 64}, p_int32, a_input);
buffer buf06("buf06", {128}, p_int32, a_input);
buffer buf07("buf07", {128}, p_int32, a_input);
buffer buf08("buf08", {128, 64}, p_int32, a_input);
buffer buf0("buf0", {128, 128, 64, 64}, p_int32, a_output);
input00.store_in(&buf00);
input01.store_in(&buf01);
input02.store_in(&buf02);
input03.store_in(&buf03);
input04.store_in(&buf04);
input05.store_in(&buf05);
input06.store_in(&buf06);
input07.store_in(&buf07);
input08.store_in(&buf08);
comp0.store_in(&buf0);
tiramisu::codegen({&buf00, &buf01, &buf02, &buf03, &buf04, &buf05, &buf06, &buf07, &buf08, &buf0}, "../data/programs/function13738/function13738_schedule_5/function13738_schedule_5.o");
return 0;
} | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
6c7214814db572ac6b2b0cd0958d0f3d70ed6e28 | b25b45763b3c0f953332b4b5ea123b0ebe610488 | /engine/ecs-st/Common.h | 5d816befec6dda78c7c13d2f864e1de03200e492 | [
"MIT"
] | permissive | yunatoomi/AE | 139d731c46ccec5bb84400d9ef8e68db6f0ed2fd | 31a42b9bf3bdd86304d565d66e4710e7d89d7392 | refs/heads/master | 2022-04-05T17:29:10.596443 | 2020-02-29T09:27:27 | 2020-02-29T09:27:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,204 | h | // Copyright (c) 2018-2020, Zhirnov Andrey. For more information see 'LICENSE'
#pragma once
#include "stl/CompileTime/FunctionInfo.h"
#include "stl/Math/Bytes.h"
#include "stl/Math/BitMath.h"
#include "stl/Math/Vec.h"
#include "stl/Types/HandleTmpl.h"
#include "stl/Types/TypeId.h"
#include "stl/Types/Noncopyable.h"
#include "stl/Containers/FixedArray.h"
#include "stl/Containers/ArrayView.h"
#include "stl/Memory/UntypedAllocator.h"
#include "stl/Algorithms/ArrayUtils.h"
#include "threading/Primitives/DataRaceCheck.h"
#define AE_ECS_VALIDATE_SYSTEM_FN
#ifndef AE_ECS_ENABLE_DEFAULT_MESSAGES
# define AE_ECS_ENABLE_DEFAULT_MESSAGES 1
#endif
namespace AE::ECS
{
using namespace AE::STL;
namespace Components {}
namespace SingleComponents {}
namespace Systems {}
namespace Events {}
using Threading::DataRaceCheck;
using Threading::Atomic;
using EntityID = HandleTmpl< uint16_t, uint16_t, 1 << 10 >;
using QueryID = HandleTmpl< uint16_t, uint16_t, 2 << 10 >;
struct ECS_Config
{
static constexpr uint MaxComponents = 4 * 64;
static constexpr uint MaxComponentsPerArchetype = 64;
static constexpr uint InitialtStorageSize = 16;
};
class Registry;
} // AE::ECS
| [
"zh1dron@gmail.com"
] | zh1dron@gmail.com |
50f014211bafc9876c78b0acab3f8cb64b3fe6ec | ec9da38fe92ae3e7365b7997e71b01f94360f421 | /src/qt/hongkongcoingui.h | 3f870a323947500094483d6ca05aa51c41041307 | [
"MIT"
] | permissive | digiwhite/hongkongcoin | 28d69644df62130d84b0d976746992a56ce35110 | 1f02195e54cadfbfa6b967df03ef12dd0cafc866 | refs/heads/master | 2020-05-28T13:40:02.137629 | 2014-05-16T00:04:47 | 2014-05-16T00:04:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,757 | h | #ifndef HONGKONGCOINGUI_H
#define HONGKONGCOINGUI_H
#include <QMainWindow>
#include <QSystemTrayIcon>
#include <QMap>
class TransactionTableModel;
class WalletFrame;
class WalletView;
class ClientModel;
class WalletModel;
class WalletStack;
class TransactionView;
class OverviewPage;
class AddressBookPage;
class SendCoinsDialog;
class SignVerifyMessageDialog;
class Notificator;
class RPCConsole;
class CWallet;
QT_BEGIN_NAMESPACE
class QLabel;
class QModelIndex;
class QProgressBar;
class QStackedWidget;
class QUrl;
class QListWidget;
class QPushButton;
class QAction;
QT_END_NAMESPACE
/**
HongKongCoin GUI main class. This class represents the main window of the HongKongCoin UI. It communicates with both the client and
wallet models to give the user an up-to-date view of the current core state.
*/
class HongKongCoinGUI : public QMainWindow
{
Q_OBJECT
public:
static const QString DEFAULT_WALLET;
explicit HongKongCoinGUI(QWidget *parent = 0);
~HongKongCoinGUI();
/** Set the client model.
The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
*/
void setClientModel(ClientModel *clientModel);
/** Set the wallet model.
The wallet model represents a hongkongcoin wallet, and offers access to the list of transactions, address book and sending
functionality.
*/
bool addWallet(const QString& name, WalletModel *walletModel);
bool setCurrentWallet(const QString& name);
void removeAllWallets();
/** Used by WalletView to allow access to needed QActions */
// Todo: Use Qt signals for these
QAction * getOverviewAction() { return overviewAction; }
QAction * getHistoryAction() { return historyAction; }
QAction * getAddressBookAction() { return addressBookAction; }
QAction * getReceiveCoinsAction() { return receiveCoinsAction; }
QAction * getSendCoinsAction() { return sendCoinsAction; }
protected:
void changeEvent(QEvent *e);
void closeEvent(QCloseEvent *event);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
bool eventFilter(QObject *object, QEvent *event);
private:
ClientModel *clientModel;
WalletFrame *walletFrame;
QLabel *labelEncryptionIcon;
QLabel *labelConnectionsIcon;
QLabel *labelBlocksIcon;
QLabel *progressBarLabel;
QProgressBar *progressBar;
QMenuBar *appMenuBar;
QAction *overviewAction;
QAction *historyAction;
QAction *quitAction;
QAction *sendCoinsAction;
QAction *addressBookAction;
QAction *signMessageAction;
QAction *verifyMessageAction;
QAction *aboutAction;
QAction *receiveCoinsAction;
QAction *optionsAction;
QAction *toggleHideAction;
QAction *encryptWalletAction;
QAction *backupWalletAction;
QAction *changePassphraseAction;
QAction *aboutQtAction;
QAction *openRPCConsoleAction;
QSystemTrayIcon *trayIcon;
Notificator *notificator;
TransactionView *transactionView;
RPCConsole *rpcConsole;
QMovie *syncIconMovie;
/** Keep track of previous number of blocks, to detect progress */
int prevBlocks;
/** Create the main UI actions. */
void createActions();
/** Create the menu bar and sub-menus. */
void createMenuBar();
/** Create the toolbars */
void createToolBars();
/** Create system tray icon and notification */
void createTrayIcon();
/** Create system tray menu (or setup the dock menu) */
void createTrayIconMenu();
/** Save window size and position */
void saveWindowGeometry();
/** Restore window size and position */
void restoreWindowGeometry();
public slots:
/** Set number of connections shown in the UI */
void setNumConnections(int count);
/** Set number of blocks shown in the UI */
void setNumBlocks(int count, int nTotalBlocks);
/** Set the encryption status as shown in the UI.
@param[in] status current encryption status
@see WalletModel::EncryptionStatus
*/
void setEncryptionStatus(int status);
/** Notify the user of an event from the core network or transaction handling code.
@param[in] title the message box / notification title
@param[in] message the displayed text
@param[in] style modality and style definitions (icon and used buttons - buttons only for message boxes)
@see CClientUIInterface::MessageBoxFlags
@param[in] ret pointer to a bool that will be modified to whether Ok was clicked (modal only)
*/
void message(const QString &title, const QString &message, unsigned int style, bool *ret = NULL);
/** Asks the user whether to pay the transaction fee or to cancel the transaction.
It is currently not possible to pass a return value to another thread through
BlockingQueuedConnection, so an indirected pointer is used.
https://bugreports.qt-project.org/browse/QTBUG-10440
@param[in] nFeeRequired the required fee
@param[out] payFee true to pay the fee, false to not pay the fee
*/
void askFee(qint64 nFeeRequired, bool *payFee);
void handleURI(QString strURI);
/** Show incoming transaction notification for new transactions. */
void incomingTransaction(const QString& date, int unit, qint64 amount, const QString& type, const QString& address);
private slots:
/** Switch to overview (home) page */
void gotoOverviewPage();
/** Switch to history (transactions) page */
void gotoHistoryPage();
/** Switch to address book page */
void gotoAddressBookPage();
/** Switch to receive coins page */
void gotoReceiveCoinsPage();
/** Switch to send coins page */
void gotoSendCoinsPage(QString addr = "");
/** Show Sign/Verify Message dialog and switch to sign message tab */
void gotoSignMessageTab(QString addr = "");
/** Show Sign/Verify Message dialog and switch to verify message tab */
void gotoVerifyMessageTab(QString addr = "");
/** Show configuration dialog */
void optionsClicked();
/** Show about dialog */
void aboutClicked();
#ifndef Q_OS_MAC
/** Handle tray icon clicked */
void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
#endif
/** Show window if hidden, unminimize when minimized, rise when obscured or show if hidden and fToggleHidden is true */
void showNormalIfMinimized(bool fToggleHidden = false);
/** Simply calls showNormalIfMinimized(true) for use in SLOT() macro */
void toggleHidden();
/** called by a timer to check if fRequestShutdown has been set **/
void detectShutdown();
};
#endif // HONGKONGCOINGUI_H
| [
"jr.white@yandex.ru"
] | jr.white@yandex.ru |
70d08d1551de03986b0d1eea8f420a05d2d76d3f | cc36c60c00ac5b6f861486ee20ba725b076312fa | /stol.h | 6bcb0fe0b8a7d07eb01165d45e6aa4ef221abf29 | [] | no_license | Ekaterina-11/lab3 | dcc8a9b059d75c69c53e9fdfd7f576deb617894b | b5ebd2526e14b2a2879f7a46070d0880a2536196 | refs/heads/master | 2022-04-19T16:24:39.955437 | 2020-04-23T10:33:21 | 2020-04-23T10:33:21 | 257,955,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | h | #ifndef STOL_H_INCLUDED
#define STOL_H_INCLUDED
#include "mebel.h"
class stol: public mebel{
int kolsec;
public:
stol();
stol(string name_, int size_, string color_, string material_);
stol(const stol &p);
void print() const;
};
#endif
| [
"noreply@github.com"
] | noreply@github.com |
0d628d999730e202360ad64c49a4c2f6ecfcaa15 | ae2fb7fbdc927e053b4700e32f7af2f7be268b81 | /stitcher/include/airmap/gimbal.h | f8a44989c634c1d6848f2928ce262fc88318c35a | [
"Apache-2.0"
] | permissive | xinsuinizhuan/image-processing | 885fbb18b52e3e8864060d768a9c8b2045ba8d7f | 912bca5ef286a6d04aa0e63b38dac67aa0cabede | refs/heads/main | 2023-06-27T16:13:19.241549 | 2021-04-21T20:27:00 | 2021-04-21T20:27:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,780 | h | #pragma once
#include <cmath>
#include <string>
#include "airmap/opencv/forward.h"
namespace airmap {
namespace stitcher {
/**
* @brief GimbalOrientation
* Contains gimbal orientation for an image, as well
* as rotation and homography calculations.
*/
struct GimbalOrientation
{
enum class Units { Degrees, Radians };
double pitch;
double roll;
double yaw;
Units units;
GimbalOrientation(double _pitch = 0.0, double _roll = 0.0, double _yaw = 0.0,
Units _units = Units::Degrees);
GimbalOrientation(const GimbalOrientation &other);
/**
* @brief convertTo
* Convert unit of angles.
* @params _units - degrees or radians
*/
GimbalOrientation convertTo(Units _units);
/**
* @brief homography
* Calculate the homography for the current rotation
* and the given camera intrinsics matrix.
*/
cv::Mat homography(cv::Mat K);
/**
* @brief rotationMatrix
* Calculate the rotation matrix for the given pose.
* This is not a normal rotation sequence, since it's also
* converting between camera and vehicle frames. There is
* definitely room for improvement here.
*/
cv::Mat rotationMatrix();
/**
* @brief rotateTo
* Calculate the rotation between the current pose
* to the given pose.
* NOTE(bkd): Ideally, this would return a GimbalOrientation,
* but need to implement reverse of rotation matrix to Euler angles.
* @param to - pose to rotate to
*/
cv::Mat rotateTo(GimbalOrientation &to);
/**
* @brief toString
* Returns a string for debugging.
* @param compact
*/
std::string toString(bool compact = false);
};
} // namespace stitcher
} // namespace airmap
| [
"noreply@github.com"
] | noreply@github.com |
fe4596dd122f23a79b10092090585035111b1cf8 | bee07670c59e9c2c0f2fba880c7eb287d9c81032 | /tp2/NombreContraint.cpp | 7a0306fd222a3ecd617fa1a7bc9246c8bf717943 | [] | no_license | themoonisacheese/M3105 | 0643b6a5cbdb14fe5a8e177d7985535ce4b46065 | d1003474297897b4b5f6393b4d0d3d2ea9fc6ab4 | refs/heads/master | 2020-03-28T17:12:20.924429 | 2018-10-10T13:55:22 | 2018-10-10T13:55:22 | 148,767,354 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 646 | cpp | #ifdef NOMBRECONTRAINT_H
template<class T>
NombreContraint<T>::NombreContraint(T valeur, T min, T max):m_min(min), m_max(max)
{
setVal(valeur);
}
template<class T>
void NombreContraint<T>::setVal(T val){
if(val <= m_max && val>= m_min){
m_val = val;
}else{
throw "Erreur: la valeur n'est pas dans les bornes";
}
}
template<class T>
T NombreContraint<T>::operatorT()const{
return m_val;
}
template<class T>
void NombreContraint<T>::saisir(std::istream & in){
T buf;
in >> buf;
setVal(buf);
}
template<class T>
void NombreContraint<T>::afficher(std::ostream & out)const{
out << m_val;
}
#endif
| [
"senno@hostname.iut2.upmf-grenoble.fr"
] | senno@hostname.iut2.upmf-grenoble.fr |
8f6b22e095a43c9c4a5c9a902b0e03990599fa1d | 02ce8a5d3386aa639ef1c2c2fdd6da8d0de158f9 | /ACE-5.6.1/ACE_wrappers/examples/APG/Threads/Activate.cpp | cff56717768f8ef21d22791070fb05b5a05ad02e | [] | no_license | azraelly/knetwork | 932e27a22b1ee621742acf57618083ecab23bca1 | 69e30ee08d0c8e66c1cfb00d7ae3ba6983ff935c | refs/heads/master | 2021-01-20T13:48:24.909756 | 2010-07-03T13:59:39 | 2010-07-03T13:59:39 | 39,634,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | // $Id: Activate.cpp 55102 2004-01-04 04:57:44Z bala $
// Listing 1 code/ch12
#include "ace/Task.h"
#include "ace/OS_NS_unistd.h"
class HA_CommandHandler : public ACE_Task_Base
{
public:
virtual int svc (void)
{
ACE_DEBUG
((LM_DEBUG, ACE_TEXT ("(%t) Handler Thread running\n")));
ACE_OS::sleep (4);
return 0;
}
};
int ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_DEBUG
((LM_DEBUG, ACE_TEXT ("(%t) Main Thread running\n")));
HA_CommandHandler handler;
int result = handler.activate ();
ACE_ASSERT (result == 0);
ACE_UNUSED_ARG (result);
handler.wait ();
return 0;
}
// Listing 1
| [
"yuwuxiong2010@gmail.com"
] | yuwuxiong2010@gmail.com |
16d1cf2da2b72a1a6a6cf1279835b7bdaeeda72a | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chrome/browser/permissions/crowd_deny_safe_browsing_request.h | 5dc289554bb9148dcdb0e3c638434abf1dc37b90 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 2,810 | h | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PERMISSIONS_CROWD_DENY_SAFE_BROWSING_REQUEST_H_
#define CHROME_BROWSER_PERMISSIONS_CROWD_DENY_SAFE_BROWSING_REQUEST_H_
#include <memory>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/optional.h"
#include "base/time/time.h"
#include "content/public/browser/browser_thread.h"
namespace base {
class Clock;
}
namespace url {
class Origin;
}
namespace safe_browsing {
class SafeBrowsingDatabaseManager;
}
// Represents a single request to the Safe Browsing service to fetch the crowd
// deny verdict for a given origin. Can be created and used on any one thread.
class CrowdDenySafeBrowsingRequest {
public:
// The crowd deny verdict for a given origin.
//
// These enumeration values are recorded into histograms. Entries should not
// be renumbered and numeric values should not be reused.
enum class Verdict {
kAcceptable = 0,
kUnacceptable = 1,
// Must be equal to the greatest among enumeraiton values.
kMaxValue = kUnacceptable,
};
using VerdictCallback = base::OnceCallback<void(Verdict)>;
// Constructs a request that fetches the verdict for |origin| by consulting
// the |database_manager|, and invokes |callback| when done. The |clock| is
// used for measuring how long the request takes, and should outlive |this|.
//
// It is guaranteed that |callback| will never be invoked synchronously, and
// it will not be invoked after |this| goes out of scope.
CrowdDenySafeBrowsingRequest(
scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager>
database_manager,
const base::Clock* clock,
const url::Origin& origin,
VerdictCallback callback);
~CrowdDenySafeBrowsingRequest();
private:
class SafeBrowsingClient;
CrowdDenySafeBrowsingRequest(const CrowdDenySafeBrowsingRequest&) = delete;
CrowdDenySafeBrowsingRequest& operator=(const CrowdDenySafeBrowsingRequest&) =
delete;
// Posted by the |client_| from the IO thread when it gets a response.
void OnReceivedResult(Verdict verdict);
// The client interfacing with Safe Browsing. Created on |this| thread, but
// used on the IO thread for the rest of its life and destroyed there.
std::unique_ptr<SafeBrowsingClient> client_;
VerdictCallback callback_;
// For telemetry purposes. The caller guarantees |clock_| to outlive |this|.
const base::Clock* clock_;
const base::Time request_start_time_;
base::WeakPtrFactory<CrowdDenySafeBrowsingRequest> weak_factory_{this};
};
#endif // CHROME_BROWSER_PERMISSIONS_CROWD_DENY_SAFE_BROWSING_REQUEST_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
12430d5a3f466e9ee10bc95a2d3b5fff8474cf1b | 6035fb168576b8fdbef1a3dbc871e1a06e191278 | /final_test/2/u44695_489_F_8733373.cpp | d883c0dc2276e74c89371464d00920a94c60892d | [] | no_license | pavellevap/code_antiplagiat | 69ef3ecea5e8e88dfd3b800c0ce351fa32ee9762 | d75603e4e25519d9bb9b9720923136e324328be4 | refs/heads/master | 2021-01-10T05:30:44.560926 | 2015-04-30T14:25:34 | 2015-04-30T14:25:34 | 45,319,257 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,324 | cpp | #include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define ll long long
ll mod;
vector<ll> c(510), a(5);
map<vector <ll>, ll> mp[510];
ll solve(ll m, ll n) {
if(m > n)
return 1;
if(mp[m].find(a) != mp[m].end())
return mp[m][a];
ll ans(0), x;
if(a[0] >= 2) {
a[0] -= 2;
a[1] += 2;
x = solve(m + 1, n);
a[0] += 2;
a[1] -= 2;
ans = (ans + x * (a[0] * (a[0] - 1) / 2)) % mod;
}
if(a[1] >= 2) {
a[1] -= 2;
a[2] += 2;
x = solve(m + 1, n);
a[1] += 2;
a[2] -= 2;
ans = (ans + x * (a[1] * (a[1] - 1) / 2)) % mod;
}
if(a[0] >= 1 && a[1] >= 1) {
a[0]--;
a[2]++;
x = solve(m + 1, n);
a[0]++;
a[2]--;
ans = (ans + x * (a[0] * a[1])) % mod;
}
mp[m][a] = ans;
return ans;
}
int main() {
// freopen("1cf.txt", "r", stdin);
ll n, m, i, j;
cin >> n >> m >> mod;
for(i = 1; i <= m; i++)
for(j = 1; j <= n; j++) {
char x;
cin >> x;
if(x == '1')
c[j]++;
}
for(i = 1; i <= n; i++)
a[c[i]]++;
// for(i = 0; i <= 2; i++)
// cout << a[i] << ' ';
//cout << "\n";
cout << solve(m + 1, n);
return 0;
}
| [
"prorochek@gmail.com"
] | prorochek@gmail.com |
afcba582321133fa958deb99401e634788767556 | 76ee558c040c04b917e1e60068e0967d7a0dff5e | /Problems/Timus/1712_CipherGrille/main.cpp | 81c0bda66cc3c1da6ec37e0f7f6889813258c090 | [
"MIT"
] | permissive | grand87/timus | 145fe3230eb04fe9ebb6cd70eebc2c4900767b84 | 8edcae276ab74b68fff18da3722460f492534a8a | refs/heads/master | 2021-06-04T05:56:36.141217 | 2020-05-19T05:03:51 | 2020-05-19T05:03:51 | 104,487,995 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,163 | cpp | #include <iostream>
using namespace std;
void rotateMatrix(const bool source[4][4], bool target[4][4])
{
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 4; ++j)
{
target[j][3 - i] = source[i][j];
}
}
void printPassword(const char data[4][4], const bool matrix[4][4])
{
char buff[2];
buff[1] = 0;
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 4; ++j)
{
if (matrix[i][j])
{
buff[0] = data[i][j];
cout << buff;
}
}
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "rt", stdin);
// freopen("output.txt", "wt", stdout);
#endif
bool matrix[4][4][4];
char data[4][4];
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 4; ++j)
{
char v;
cin >> v;
matrix[0][i][j] = v == 'X';
}
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 4; ++j)
cin >> data[i][j];
for (int i = 0; i < 4; ++i)
{
printPassword(data, matrix[i]);
if(i < 3)
rotateMatrix(matrix[i], matrix[i + 1]);
}
} | [
"v.sharayenko@samsung.com"
] | v.sharayenko@samsung.com |
9cba4e7bd0a597b3d88575a443c1d49abff0f249 | e6e9bf6863abe9e23ab561e2edbf29297ba6c38b | /src/rpc/util.cpp | bdbf0fab16e6419ff5ba5f1343bcd7a72a3416a8 | [
"MIT"
] | permissive | SinnerPolska/ocvcoin | 665efb258ddcc3862e669313a8ca63d941f090e9 | 2ef2f7d6ca042837517d68bbba7c3729692576a9 | refs/heads/master | 2023-08-22T07:23:06.390344 | 2021-10-22T12:05:46 | 2021-10-22T12:05:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,482 | cpp | // Copyright (c) 2017-2020 The Ocvcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <key_io.h>
#include <outputtype.h>
#include <rpc/util.h>
#include <script/descriptor.h>
#include <script/signingprovider.h>
#include <tinyformat.h>
#include <util/strencodings.h>
#include <util/string.h>
#include <util/translation.h>
#include <tuple>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
const std::string UNIX_EPOCH_TIME = "UNIX epoch time";
const std::string EXAMPLE_ADDRESS[2] = {"bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl", "bc1q02ad21edsxd23d32dfgqqsz4vv4nmtfzuklhy3"};
void RPCTypeCheck(const UniValue& params,
const std::list<UniValueType>& typesExpected,
bool fAllowNull)
{
unsigned int i = 0;
for (const UniValueType& t : typesExpected) {
if (params.size() <= i)
break;
const UniValue& v = params[i];
if (!(fAllowNull && v.isNull())) {
RPCTypeCheckArgument(v, t);
}
i++;
}
}
void RPCTypeCheckArgument(const UniValue& value, const UniValueType& typeExpected)
{
if (!typeExpected.typeAny && value.type() != typeExpected.type) {
throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Expected type %s, got %s", uvTypeName(typeExpected.type), uvTypeName(value.type())));
}
}
void RPCTypeCheckObj(const UniValue& o,
const std::map<std::string, UniValueType>& typesExpected,
bool fAllowNull,
bool fStrict)
{
for (const auto& t : typesExpected) {
const UniValue& v = find_value(o, t.first);
if (!fAllowNull && v.isNull())
throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Missing %s", t.first));
if (!(t.second.typeAny || v.type() == t.second.type || (fAllowNull && v.isNull()))) {
std::string err = strprintf("Expected type %s for %s, got %s",
uvTypeName(t.second.type), t.first, uvTypeName(v.type()));
throw JSONRPCError(RPC_TYPE_ERROR, err);
}
}
if (fStrict)
{
for (const std::string& k : o.getKeys())
{
if (typesExpected.count(k) == 0)
{
std::string err = strprintf("Unexpected key %s", k);
throw JSONRPCError(RPC_TYPE_ERROR, err);
}
}
}
}
CAmount AmountFromValue(const UniValue& value)
{
if (!value.isNum() && !value.isStr())
throw JSONRPCError(RPC_TYPE_ERROR, "Amount is not a number or string");
CAmount amount;
if (!ParseFixedPoint(value.getValStr(), 8, &amount))
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
if (!MoneyRange(amount))
throw JSONRPCError(RPC_TYPE_ERROR, "Amount out of range");
return amount;
}
uint256 ParseHashV(const UniValue& v, std::string strName)
{
std::string strHex(v.get_str());
if (64 != strHex.length())
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be of length %d (not %d, for '%s')", strName, 64, strHex.length(), strHex));
if (!IsHex(strHex)) // Note: IsHex("") is false
throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
return uint256S(strHex);
}
uint256 ParseHashO(const UniValue& o, std::string strKey)
{
return ParseHashV(find_value(o, strKey), strKey);
}
std::vector<unsigned char> ParseHexV(const UniValue& v, std::string strName)
{
std::string strHex;
if (v.isStr())
strHex = v.get_str();
if (!IsHex(strHex))
throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
return ParseHex(strHex);
}
std::vector<unsigned char> ParseHexO(const UniValue& o, std::string strKey)
{
return ParseHexV(find_value(o, strKey), strKey);
}
CoinStatsHashType ParseHashType(const UniValue& param, const CoinStatsHashType default_type)
{
if (param.isNull()) {
return default_type;
} else {
std::string hash_type_input = param.get_str();
if (hash_type_input == "hash_serialized_2") {
return CoinStatsHashType::HASH_SERIALIZED;
} else if (hash_type_input == "none") {
return CoinStatsHashType::NONE;
} else {
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%d is not a valid hash_type", hash_type_input));
}
}
}
std::string HelpExampleCli(const std::string& methodname, const std::string& args)
{
return "> ocvcoin-cli " + methodname + " " + args + "\n";
}
std::string HelpExampleRpc(const std::string& methodname, const std::string& args)
{
return "> curl --user myusername --data-binary '{\"jsonrpc\": \"1.0\", \"id\": \"curltest\", "
"\"method\": \"" + methodname + "\", \"params\": [" + args + "]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/\n";
}
// Converts a hex string to a public key if possible
CPubKey HexToPubKey(const std::string& hex_in)
{
if (!IsHex(hex_in)) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid public key: " + hex_in);
}
CPubKey vchPubKey(ParseHex(hex_in));
if (!vchPubKey.IsFullyValid()) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid public key: " + hex_in);
}
return vchPubKey;
}
// Retrieves a public key for an address from the given FillableSigningProvider
CPubKey AddrToPubKey(const FillableSigningProvider& keystore, const std::string& addr_in)
{
CTxDestination dest = DecodeDestination(addr_in);
if (!IsValidDestination(dest)) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid address: " + addr_in);
}
CKeyID key = GetKeyForDestination(keystore, dest);
if (key.IsNull()) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("%s does not refer to a key", addr_in));
}
CPubKey vchPubKey;
if (!keystore.GetPubKey(key, vchPubKey)) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("no full public key for address %s", addr_in));
}
if (!vchPubKey.IsFullyValid()) {
throw JSONRPCError(RPC_INTERNAL_ERROR, "Wallet contains an invalid public key");
}
return vchPubKey;
}
// Creates a multisig address from a given list of public keys, number of signatures required, and the address type
CTxDestination AddAndGetMultisigDestination(const int required, const std::vector<CPubKey>& pubkeys, OutputType type, FillableSigningProvider& keystore, CScript& script_out)
{
// Gather public keys
if (required < 1) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "a multisignature address must require at least one key to redeem");
}
if ((int)pubkeys.size() < required) {
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("not enough keys supplied (got %u keys, but need at least %d to redeem)", pubkeys.size(), required));
}
if (pubkeys.size() > 16) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Number of keys involved in the multisignature address creation > 16\nReduce the number");
}
script_out = GetScriptForMultisig(required, pubkeys);
if (script_out.size() > MAX_SCRIPT_ELEMENT_SIZE) {
throw JSONRPCError(RPC_INVALID_PARAMETER, (strprintf("redeemScript exceeds size limit: %d > %d", script_out.size(), MAX_SCRIPT_ELEMENT_SIZE)));
}
// Check if any keys are uncompressed. If so, the type is legacy
for (const CPubKey& pk : pubkeys) {
if (!pk.IsCompressed()) {
type = OutputType::LEGACY;
break;
}
}
// Make the address
CTxDestination dest = AddAndGetDestinationForScript(keystore, script_out, type);
return dest;
}
class DescribeAddressVisitor : public boost::static_visitor<UniValue>
{
public:
explicit DescribeAddressVisitor() {}
UniValue operator()(const CNoDestination& dest) const
{
return UniValue(UniValue::VOBJ);
}
UniValue operator()(const PKHash& keyID) const
{
UniValue obj(UniValue::VOBJ);
obj.pushKV("isscript", false);
obj.pushKV("iswitness", false);
return obj;
}
UniValue operator()(const ScriptHash& scriptID) const
{
UniValue obj(UniValue::VOBJ);
obj.pushKV("isscript", true);
obj.pushKV("iswitness", false);
return obj;
}
UniValue operator()(const WitnessV0KeyHash& id) const
{
UniValue obj(UniValue::VOBJ);
obj.pushKV("isscript", false);
obj.pushKV("iswitness", true);
obj.pushKV("witness_version", 0);
obj.pushKV("witness_program", HexStr(id));
return obj;
}
UniValue operator()(const WitnessV0ScriptHash& id) const
{
UniValue obj(UniValue::VOBJ);
obj.pushKV("isscript", true);
obj.pushKV("iswitness", true);
obj.pushKV("witness_version", 0);
obj.pushKV("witness_program", HexStr(id));
return obj;
}
UniValue operator()(const WitnessUnknown& id) const
{
UniValue obj(UniValue::VOBJ);
obj.pushKV("iswitness", true);
obj.pushKV("witness_version", (int)id.version);
obj.pushKV("witness_program", HexStr(Span<const unsigned char>(id.program, id.length)));
return obj;
}
};
UniValue DescribeAddress(const CTxDestination& dest)
{
return boost::apply_visitor(DescribeAddressVisitor(), dest);
}
unsigned int ParseConfirmTarget(const UniValue& value, unsigned int max_target)
{
const int target{value.get_int()};
const unsigned int unsigned_target{static_cast<unsigned int>(target)};
if (target < 1 || unsigned_target > max_target) {
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Invalid conf_target, must be between %u and %u", 1, max_target));
}
return unsigned_target;
}
RPCErrorCode RPCErrorFromTransactionError(TransactionError terr)
{
switch (terr) {
case TransactionError::MEMPOOL_REJECTED:
return RPC_TRANSACTION_REJECTED;
case TransactionError::ALREADY_IN_CHAIN:
return RPC_TRANSACTION_ALREADY_IN_CHAIN;
case TransactionError::P2P_DISABLED:
return RPC_CLIENT_P2P_DISABLED;
case TransactionError::INVALID_PSBT:
case TransactionError::PSBT_MISMATCH:
return RPC_INVALID_PARAMETER;
case TransactionError::SIGHASH_MISMATCH:
return RPC_DESERIALIZATION_ERROR;
default: break;
}
return RPC_TRANSACTION_ERROR;
}
UniValue JSONRPCTransactionError(TransactionError terr, const std::string& err_string)
{
if (err_string.length() > 0) {
return JSONRPCError(RPCErrorFromTransactionError(terr), err_string);
} else {
return JSONRPCError(RPCErrorFromTransactionError(terr), TransactionErrorString(terr).original);
}
}
/**
* A pair of strings that can be aligned (through padding) with other Sections
* later on
*/
struct Section {
Section(const std::string& left, const std::string& right)
: m_left{left}, m_right{right} {}
std::string m_left;
const std::string m_right;
};
/**
* Keeps track of RPCArgs by transforming them into sections for the purpose
* of serializing everything to a single string
*/
struct Sections {
std::vector<Section> m_sections;
size_t m_max_pad{0};
void PushSection(const Section& s)
{
m_max_pad = std::max(m_max_pad, s.m_left.size());
m_sections.push_back(s);
}
/**
* Recursive helper to translate an RPCArg into sections
*/
void Push(const RPCArg& arg, const size_t current_indent = 5, const OuterType outer_type = OuterType::NONE)
{
const auto indent = std::string(current_indent, ' ');
const auto indent_next = std::string(current_indent + 2, ' ');
const bool push_name{outer_type == OuterType::OBJ}; // Dictionary keys must have a name
switch (arg.m_type) {
case RPCArg::Type::STR_HEX:
case RPCArg::Type::STR:
case RPCArg::Type::NUM:
case RPCArg::Type::AMOUNT:
case RPCArg::Type::RANGE:
case RPCArg::Type::BOOL: {
if (outer_type == OuterType::NONE) return; // Nothing more to do for non-recursive types on first recursion
auto left = indent;
if (arg.m_type_str.size() != 0 && push_name) {
left += "\"" + arg.GetName() + "\": " + arg.m_type_str.at(0);
} else {
left += push_name ? arg.ToStringObj(/* oneline */ false) : arg.ToString(/* oneline */ false);
}
left += ",";
PushSection({left, arg.ToDescriptionString()});
break;
}
case RPCArg::Type::OBJ:
case RPCArg::Type::OBJ_USER_KEYS: {
const auto right = outer_type == OuterType::NONE ? "" : arg.ToDescriptionString();
PushSection({indent + (push_name ? "\"" + arg.GetName() + "\": " : "") + "{", right});
for (const auto& arg_inner : arg.m_inner) {
Push(arg_inner, current_indent + 2, OuterType::OBJ);
}
if (arg.m_type != RPCArg::Type::OBJ) {
PushSection({indent_next + "...", ""});
}
PushSection({indent + "}" + (outer_type != OuterType::NONE ? "," : ""), ""});
break;
}
case RPCArg::Type::ARR: {
auto left = indent;
left += push_name ? "\"" + arg.GetName() + "\": " : "";
left += "[";
const auto right = outer_type == OuterType::NONE ? "" : arg.ToDescriptionString();
PushSection({left, right});
for (const auto& arg_inner : arg.m_inner) {
Push(arg_inner, current_indent + 2, OuterType::ARR);
}
PushSection({indent_next + "...", ""});
PushSection({indent + "]" + (outer_type != OuterType::NONE ? "," : ""), ""});
break;
}
} // no default case, so the compiler can warn about missing cases
}
/**
* Concatenate all sections with proper padding
*/
std::string ToString() const
{
std::string ret;
const size_t pad = m_max_pad + 4;
for (const auto& s : m_sections) {
// The left part of a section is assumed to be a single line, usually it is the name of the JSON struct or a
// brace like {, }, [, or ]
CHECK_NONFATAL(s.m_left.find('\n') == std::string::npos);
if (s.m_right.empty()) {
ret += s.m_left;
ret += "\n";
continue;
}
std::string left = s.m_left;
left.resize(pad, ' ');
ret += left;
// Properly pad after newlines
std::string right;
size_t begin = 0;
size_t new_line_pos = s.m_right.find_first_of('\n');
while (true) {
right += s.m_right.substr(begin, new_line_pos - begin);
if (new_line_pos == std::string::npos) {
break; //No new line
}
right += "\n" + std::string(pad, ' ');
begin = s.m_right.find_first_not_of(' ', new_line_pos + 1);
if (begin == std::string::npos) {
break; // Empty line
}
new_line_pos = s.m_right.find_first_of('\n', begin + 1);
}
ret += right;
ret += "\n";
}
return ret;
}
};
RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples)
: RPCHelpMan{std::move(name), std::move(description), std::move(args), std::move(results), std::move(examples), nullptr} {}
RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples, RPCMethodImpl fun)
: m_name{std::move(name)},
m_fun{std::move(fun)},
m_description{std::move(description)},
m_args{std::move(args)},
m_results{std::move(results)},
m_examples{std::move(examples)}
{
std::set<std::string> named_args;
for (const auto& arg : m_args) {
std::vector<std::string> names;
boost::split(names, arg.m_names, boost::is_any_of("|"));
// Should have unique named arguments
for (const std::string& name : names) {
CHECK_NONFATAL(named_args.insert(name).second);
}
}
}
std::string RPCResults::ToDescriptionString() const
{
std::string result;
for (const auto& r : m_results) {
if (r.m_cond.empty()) {
result += "\nResult:\n";
} else {
result += "\nResult (" + r.m_cond + "):\n";
}
Sections sections;
r.ToSections(sections);
result += sections.ToString();
}
return result;
}
std::string RPCExamples::ToDescriptionString() const
{
return m_examples.empty() ? m_examples : "\nExamples:\n" + m_examples;
}
bool RPCHelpMan::IsValidNumArgs(size_t num_args) const
{
size_t num_required_args = 0;
for (size_t n = m_args.size(); n > 0; --n) {
if (!m_args.at(n - 1).IsOptional()) {
num_required_args = n;
break;
}
}
return num_required_args <= num_args && num_args <= m_args.size();
}
std::vector<std::string> RPCHelpMan::GetArgNames() const
{
std::vector<std::string> ret;
for (const auto& arg : m_args) {
ret.emplace_back(arg.m_names);
}
return ret;
}
std::string RPCHelpMan::ToString() const
{
std::string ret;
// Oneline summary
ret += m_name;
bool was_optional{false};
for (const auto& arg : m_args) {
if (arg.m_hidden) break; // Any arg that follows is also hidden
const bool optional = arg.IsOptional();
ret += " ";
if (optional) {
if (!was_optional) ret += "( ";
was_optional = true;
} else {
if (was_optional) ret += ") ";
was_optional = false;
}
ret += arg.ToString(/* oneline */ true);
}
if (was_optional) ret += " )";
ret += "\n";
// Description
ret += m_description;
// Arguments
Sections sections;
for (size_t i{0}; i < m_args.size(); ++i) {
const auto& arg = m_args.at(i);
if (arg.m_hidden) break; // Any arg that follows is also hidden
if (i == 0) ret += "\nArguments:\n";
// Push named argument name and description
sections.m_sections.emplace_back(::ToString(i + 1) + ". " + arg.GetFirstName(), arg.ToDescriptionString());
sections.m_max_pad = std::max(sections.m_max_pad, sections.m_sections.back().m_left.size());
// Recursively push nested args
sections.Push(arg);
}
ret += sections.ToString();
// Result
ret += m_results.ToDescriptionString();
// Examples
ret += m_examples.ToDescriptionString();
return ret;
}
std::string RPCArg::GetFirstName() const
{
return m_names.substr(0, m_names.find("|"));
}
std::string RPCArg::GetName() const
{
CHECK_NONFATAL(std::string::npos == m_names.find("|"));
return m_names;
}
bool RPCArg::IsOptional() const
{
if (m_fallback.which() == 1) {
return true;
} else {
return RPCArg::Optional::NO != boost::get<RPCArg::Optional>(m_fallback);
}
}
std::string RPCArg::ToDescriptionString() const
{
std::string ret;
ret += "(";
if (m_type_str.size() != 0) {
ret += m_type_str.at(1);
} else {
switch (m_type) {
case Type::STR_HEX:
case Type::STR: {
ret += "string";
break;
}
case Type::NUM: {
ret += "numeric";
break;
}
case Type::AMOUNT: {
ret += "numeric or string";
break;
}
case Type::RANGE: {
ret += "numeric or array";
break;
}
case Type::BOOL: {
ret += "boolean";
break;
}
case Type::OBJ:
case Type::OBJ_USER_KEYS: {
ret += "json object";
break;
}
case Type::ARR: {
ret += "json array";
break;
}
} // no default case, so the compiler can warn about missing cases
}
if (m_fallback.which() == 1) {
ret += ", optional, default=" + boost::get<std::string>(m_fallback);
} else {
switch (boost::get<RPCArg::Optional>(m_fallback)) {
case RPCArg::Optional::OMITTED: {
// nothing to do. Element is treated as if not present and has no default value
break;
}
case RPCArg::Optional::OMITTED_NAMED_ARG: {
ret += ", optional"; // Default value is "null"
break;
}
case RPCArg::Optional::NO: {
ret += ", required";
break;
}
} // no default case, so the compiler can warn about missing cases
}
ret += ")";
ret += m_description.empty() ? "" : " " + m_description;
return ret;
}
void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const int current_indent) const
{
// Indentation
const std::string indent(current_indent, ' ');
const std::string indent_next(current_indent + 2, ' ');
// Elements in a JSON structure (dictionary or array) are separated by a comma
const std::string maybe_separator{outer_type != OuterType::NONE ? "," : ""};
// The key name if recursed into an dictionary
const std::string maybe_key{
outer_type == OuterType::OBJ ?
"\"" + this->m_key_name + "\" : " :
""};
// Format description with type
const auto Description = [&](const std::string& type) {
return "(" + type + (this->m_optional ? ", optional" : "") + ")" +
(this->m_description.empty() ? "" : " " + this->m_description);
};
switch (m_type) {
case Type::ELISION: {
// If the inner result is empty, use three dots for elision
sections.PushSection({indent + "..." + maybe_separator, m_description});
return;
}
case Type::NONE: {
sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
return;
}
case Type::STR: {
sections.PushSection({indent + maybe_key + "\"str\"" + maybe_separator, Description("string")});
return;
}
case Type::STR_AMOUNT: {
sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
return;
}
case Type::STR_HEX: {
sections.PushSection({indent + maybe_key + "\"hex\"" + maybe_separator, Description("string")});
return;
}
case Type::NUM: {
sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
return;
}
case Type::NUM_TIME: {
sections.PushSection({indent + maybe_key + "xxx" + maybe_separator, Description("numeric")});
return;
}
case Type::BOOL: {
sections.PushSection({indent + maybe_key + "true|false" + maybe_separator, Description("boolean")});
return;
}
case Type::ARR_FIXED:
case Type::ARR: {
sections.PushSection({indent + maybe_key + "[", Description("json array")});
for (const auto& i : m_inner) {
i.ToSections(sections, OuterType::ARR, current_indent + 2);
}
CHECK_NONFATAL(!m_inner.empty());
if (m_type == Type::ARR && m_inner.back().m_type != Type::ELISION) {
sections.PushSection({indent_next + "...", ""});
} else {
// Remove final comma, which would be invalid JSON
sections.m_sections.back().m_left.pop_back();
}
sections.PushSection({indent + "]" + maybe_separator, ""});
return;
}
case Type::OBJ_DYN:
case Type::OBJ: {
sections.PushSection({indent + maybe_key + "{", Description("json object")});
for (const auto& i : m_inner) {
i.ToSections(sections, OuterType::OBJ, current_indent + 2);
}
CHECK_NONFATAL(!m_inner.empty());
if (m_type == Type::OBJ_DYN && m_inner.back().m_type != Type::ELISION) {
// If the dictionary keys are dynamic, use three dots for continuation
sections.PushSection({indent_next + "...", ""});
} else {
// Remove final comma, which would be invalid JSON
sections.m_sections.back().m_left.pop_back();
}
sections.PushSection({indent + "}" + maybe_separator, ""});
return;
}
} // no default case, so the compiler can warn about missing cases
CHECK_NONFATAL(false);
}
std::string RPCArg::ToStringObj(const bool oneline) const
{
std::string res;
res += "\"";
res += GetFirstName();
if (oneline) {
res += "\":";
} else {
res += "\": ";
}
switch (m_type) {
case Type::STR:
return res + "\"str\"";
case Type::STR_HEX:
return res + "\"hex\"";
case Type::NUM:
return res + "n";
case Type::RANGE:
return res + "n or [n,n]";
case Type::AMOUNT:
return res + "amount";
case Type::BOOL:
return res + "bool";
case Type::ARR:
res += "[";
for (const auto& i : m_inner) {
res += i.ToString(oneline) + ",";
}
return res + "...]";
case Type::OBJ:
case Type::OBJ_USER_KEYS:
// Currently unused, so avoid writing dead code
CHECK_NONFATAL(false);
} // no default case, so the compiler can warn about missing cases
CHECK_NONFATAL(false);
}
std::string RPCArg::ToString(const bool oneline) const
{
if (oneline && !m_oneline_description.empty()) return m_oneline_description;
switch (m_type) {
case Type::STR_HEX:
case Type::STR: {
return "\"" + GetFirstName() + "\"";
}
case Type::NUM:
case Type::RANGE:
case Type::AMOUNT:
case Type::BOOL: {
return GetFirstName();
}
case Type::OBJ:
case Type::OBJ_USER_KEYS: {
const std::string res = Join(m_inner, ",", [&](const RPCArg& i) { return i.ToStringObj(oneline); });
if (m_type == Type::OBJ) {
return "{" + res + "}";
} else {
return "{" + res + ",...}";
}
}
case Type::ARR: {
std::string res;
for (const auto& i : m_inner) {
res += i.ToString(oneline) + ",";
}
return "[" + res + "...]";
}
} // no default case, so the compiler can warn about missing cases
CHECK_NONFATAL(false);
}
static std::pair<int64_t, int64_t> ParseRange(const UniValue& value)
{
if (value.isNum()) {
return {0, value.get_int64()};
}
if (value.isArray() && value.size() == 2 && value[0].isNum() && value[1].isNum()) {
int64_t low = value[0].get_int64();
int64_t high = value[1].get_int64();
if (low > high) throw JSONRPCError(RPC_INVALID_PARAMETER, "Range specified as [begin,end] must not have begin after end");
return {low, high};
}
throw JSONRPCError(RPC_INVALID_PARAMETER, "Range must be specified as end or as [begin,end]");
}
std::pair<int64_t, int64_t> ParseDescriptorRange(const UniValue& value)
{
int64_t low, high;
std::tie(low, high) = ParseRange(value);
if (low < 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Range should be greater or equal than 0");
}
if ((high >> 31) != 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "End of range is too high");
}
if (high >= low + 1000000) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Range is too large");
}
return {low, high};
}
std::vector<CScript> EvalDescriptorStringOrObject(const UniValue& scanobject, FlatSigningProvider& provider)
{
std::string desc_str;
std::pair<int64_t, int64_t> range = {0, 1000};
if (scanobject.isStr()) {
desc_str = scanobject.get_str();
} else if (scanobject.isObject()) {
UniValue desc_uni = find_value(scanobject, "desc");
if (desc_uni.isNull()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Descriptor needs to be provided in scan object");
desc_str = desc_uni.get_str();
UniValue range_uni = find_value(scanobject, "range");
if (!range_uni.isNull()) {
range = ParseDescriptorRange(range_uni);
}
} else {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Scan object needs to be either a string or an object");
}
std::string error;
auto desc = Parse(desc_str, provider, error);
if (!desc) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, error);
}
if (!desc->IsRange()) {
range.first = 0;
range.second = 0;
}
std::vector<CScript> ret;
for (int i = range.first; i <= range.second; ++i) {
std::vector<CScript> scripts;
if (!desc->Expand(i, provider, scripts, provider)) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("Cannot derive script without private keys: '%s'", desc_str));
}
std::move(scripts.begin(), scripts.end(), std::back_inserter(ret));
}
return ret;
}
UniValue GetServicesNames(ServiceFlags services)
{
UniValue servicesNames(UniValue::VARR);
for (const auto& flag : serviceFlagsToStr(services)) {
servicesNames.push_back(flag);
}
return servicesNames;
}
| [
"dev@ocvcoin.com"
] | dev@ocvcoin.com |
72cc7d43bd6d31f782f9916147aabb0aa59513d8 | 6babce8baf0b7c137185d134dcb350a3f0193e02 | /cocos2d/cocos/editor-support/cocosbuilder/CCBAnimationManager.cpp | 88584c8029f6724c9ca05e4137e28e89b7df085a | [
"Apache-2.0"
] | permissive | liemvu/TrafficDodge | 78eafed42a5882be561e0fdc372621f4742a35d6 | d3412ea31d05e6eae8061d6c588f1d7a46234c10 | refs/heads/master | 2020-05-18T18:04:57.628780 | 2014-04-26T16:21:42 | 2014-04-26T16:21:42 | 19,181,861 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 35,267 | cpp | #include "CCBAnimationManager.h"
#include "CCBSequence.h"
#include "CCBSequenceProperty.h"
#include "CCBReader.h"
#include "CCBKeyframe.h"
#include "CCNode+CCBRelativePositioning.h"
#include <string>
#include <set>
#include "SimpleAudioEngine.h"
#include "CCBSelectorResolver.h"
using namespace cocos2d;
using namespace std;
using namespace cocos2d::extension;
namespace cocosbuilder {
// Implementation of CCBAinmationManager
CCBAnimationManager::CCBAnimationManager()
: _jsControlled(false)
, _owner(nullptr)
, _autoPlaySequenceId(0)
, _rootNode(nullptr)
, _rootContainerSize(Size::ZERO)
, _delegate(nullptr)
, _runningSequence(nullptr)
{
init();
}
bool CCBAnimationManager::init()
{
_target = nullptr;
_animationCompleteCallbackFunc = nullptr;
return true;
}
CCBAnimationManager::~CCBAnimationManager()
{
// DictElement *pElement = nullptr;
// CCDICT_FOREACH(_nodeSequences, pElement)
// {
// Node *node = (Node*)pElement->getIntKey();
// node->release();
// }
//
// CCDICT_FOREACH(_baseValues, pElement)
// {
// Node *node = (Node*)pElement->getIntKey();
// node->release();
// }
if (_rootNode)
{
_rootNode->stopAllActions();
}
setRootNode(nullptr);
setDelegate(nullptr);
for (auto iter = _objects.begin(); iter != _objects.end(); ++iter)
{
for (auto iter2 = iter->second.begin(); iter2 != iter->second.end(); ++iter2)
{
iter2->second->release();
}
}
CC_SAFE_RELEASE(_target);
}
Vector<CCBSequence*>& CCBAnimationManager::getSequences()
{
return _sequences;
}
void CCBAnimationManager::setSequences(const Vector<CCBSequence*>& seq)
{
_sequences = seq;
}
int CCBAnimationManager::getAutoPlaySequenceId()
{
return _autoPlaySequenceId;
}
void CCBAnimationManager::setAutoPlaySequenceId(int autoPlaySequenceId)
{
_autoPlaySequenceId = autoPlaySequenceId;
}
Node* CCBAnimationManager::getRootNode()
{
return _rootNode;
}
void CCBAnimationManager::setRootNode(Node *pRootNode)
{
_rootNode = pRootNode;
}
void CCBAnimationManager::setDocumentControllerName(const std::string &name)
{
_documentControllerName = name;
}
std::string CCBAnimationManager::getDocumentControllerName()
{
return _documentControllerName;
}
void CCBAnimationManager::addDocumentCallbackNode(Node *node)
{
_documentCallbackNodes.pushBack(node);
}
void CCBAnimationManager::addDocumentCallbackName(std::string name)
{
_documentCallbackNames.push_back(Value(name));
}
void CCBAnimationManager::addDocumentCallbackControlEvents(Control::EventType eventType)
{
_documentCallbackControlEvents.push_back(Value(static_cast<int>(eventType)));
}
ValueVector& CCBAnimationManager::getDocumentCallbackNames()
{
return _documentCallbackNames;
}
Vector<Node*>& CCBAnimationManager::getDocumentCallbackNodes()
{
return _documentCallbackNodes;
}
ValueVector& CCBAnimationManager::getDocumentCallbackControlEvents()
{
return _documentCallbackControlEvents;
}
void CCBAnimationManager::addDocumentOutletNode(Node *node)
{
_documentOutletNodes.pushBack(node);
}
void CCBAnimationManager::addDocumentOutletName(std::string name)
{
_documentOutletNames.push_back(Value(name));
}
ValueVector& CCBAnimationManager::getDocumentOutletNames()
{
return _documentOutletNames;
}
Vector<Node*>& CCBAnimationManager::getDocumentOutletNodes()
{
return _documentOutletNodes;
}
std::string CCBAnimationManager::getLastCompletedSequenceName()
{
return _lastCompletedSequenceName;
}
ValueVector& CCBAnimationManager::getKeyframeCallbacks()
{
return _keyframeCallbacks;
}
const Size& CCBAnimationManager::getRootContainerSize()
{
return _rootContainerSize;
}
void CCBAnimationManager::setRootContainerSize(const Size &rootContainerSize)
{
_rootContainerSize.setSize(rootContainerSize.width, rootContainerSize.height);
}
CCBAnimationManagerDelegate* CCBAnimationManager::getDelegate()
{
return _delegate;
}
void CCBAnimationManager::setDelegate(CCBAnimationManagerDelegate *pDelegate)
{
CC_SAFE_RELEASE(dynamic_cast<Ref*>(_delegate));
_delegate = pDelegate;
CC_SAFE_RETAIN(dynamic_cast<Ref*>(_delegate));
}
const char* CCBAnimationManager::getRunningSequenceName()
{
if (_runningSequence)
{
return _runningSequence->getName();
}
return nullptr;
}
const Size& CCBAnimationManager::getContainerSize(Node *pNode)
{
if (pNode)
{
return pNode->getContentSize();
}
else
{
return _rootContainerSize;
}
}
// refer to CCBReader::readNodeGraph() for data structure of pSeq
void CCBAnimationManager::addNode(Node *pNode, const std::unordered_map<int, Map<std::string, CCBSequenceProperty*>>& seq)
{
// pNode->retain();
_nodeSequences[pNode] = seq;
}
void CCBAnimationManager::setBaseValue(const Value& value, Node *pNode, const std::string& propName)
{
auto& props = _baseValues[pNode];
props[propName] = value;
}
const Value& CCBAnimationManager::getBaseValue(Node *pNode, const std::string& propName)
{
auto& props = _baseValues[pNode];
return props[propName];
}
void CCBAnimationManager::setObject(Ref* obj, Node *pNode, const std::string& propName)
{
auto& props = _objects[pNode];
auto iter = props.find(propName);
if (iter != props.end())
iter->second->release();
props[propName] = obj;
obj->retain();
}
Ref* CCBAnimationManager::getObject(Node *pNode, const std::string& propName)
{
auto& props = _objects[pNode];
auto iter = props.find(propName);
if (iter != props.end())
return iter->second;
return nullptr;
}
int CCBAnimationManager::getSequenceId(const char* pSequenceName)
{
string seqName(pSequenceName);
for (auto& seq : _sequences)
{
if (seqName.compare(seq->getName()) == 0)
{
return seq->getSequenceId();
}
}
return -1;
}
CCBSequence* CCBAnimationManager::getSequence(int nSequenceId)
{
for (auto& seq : _sequences)
{
if (seq->getSequenceId() == nSequenceId)
{
return seq;
}
}
return nullptr;
}
float CCBAnimationManager::getSequenceDuration(const char *pSequenceName)
{
int id = getSequenceId(pSequenceName);
if (id != -1)
return getSequence(id)->getDuration();
return 0;
}
void CCBAnimationManager::moveAnimationsFromNode(Node* fromNode, Node* toNode)
{
// Move base values
auto baseValueIter = _baseValues.find(fromNode);
if(baseValueIter != _baseValues.end())
{
_baseValues.erase(baseValueIter);
_baseValues[toNode] = baseValueIter->second;
// fromNode->release();
// toNode->retain();
}
auto objIter = _objects.find(fromNode);
if (objIter != _objects.end())
{
_objects.erase(objIter);
_objects[toNode] = objIter->second;
}
// Move seqs
auto seqsIter = _nodeSequences.find(fromNode);
if (seqsIter != _nodeSequences.end())
{
_nodeSequences.erase(seqsIter);
_nodeSequences[toNode] = seqsIter->second;
// fromNode->release();
// toNode->retain();
}
}
// Refer to CCBReader::readKeyframe() for the real type of value
ActionInterval* CCBAnimationManager::getAction(CCBKeyframe *pKeyframe0, CCBKeyframe *pKeyframe1, const std::string& propName, Node *pNode)
{
float duration = pKeyframe1->getTime() - (pKeyframe0 ? pKeyframe0->getTime() : 0);
if (propName == "rotationX")
{
return CCBRotateXTo::create(duration, pKeyframe1->getValue().asFloat());
}
else if (propName == "rotationY")
{
return CCBRotateYTo::create(duration, pKeyframe1->getValue().asFloat());
}
else if (propName == "rotation")
{
return CCBRotateTo::create(duration, pKeyframe1->getValue().asFloat());
}
else if (propName == "opacity")
{
return FadeTo::create(duration, pKeyframe1->getValue().asByte());
}
else if (propName == "color")
{
auto c = pKeyframe1->getValue().asValueMap();
unsigned char r = c["r"].asByte();
unsigned char g = c["g"].asByte();
unsigned char b = c["b"].asByte();
return TintTo::create(duration, r, g, b);
}
else if (propName == "visible")
{
if (pKeyframe1->getValue().asBool())
{
return Sequence::createWithTwoActions(DelayTime::create(duration), Show::create());
}
else
{
return Sequence::createWithTwoActions(DelayTime::create(duration), Hide::create());
}
}
else if (propName == "displayFrame")
{
return Sequence::createWithTwoActions(DelayTime::create(duration),
CCBSetSpriteFrame::create(static_cast<SpriteFrame*>(pKeyframe1->getObject())));
}
else if (propName == "position")
{
// Get position type
auto& array = getBaseValue(pNode, propName).asValueVector();
CCBReader::PositionType type = (CCBReader::PositionType)array[2].asInt();
// Get relative position
auto value = pKeyframe1->getValue().asValueVector();
float x = value[0].asFloat();
float y = value[1].asFloat();
Size containerSize = getContainerSize(pNode->getParent());
Point absPos = getAbsolutePosition(Point(x,y), type, containerSize, propName);
return MoveTo::create(duration, absPos);
}
else if (propName == "scale")
{
// Get position type
auto& array = getBaseValue(pNode, propName).asValueVector();
CCBReader::ScaleType type = (CCBReader::ScaleType)array[2].asInt();
// Get relative scale
auto value = pKeyframe1->getValue().asValueVector();
float x = value[0].asFloat();
float y = value[1].asFloat();
if (type == CCBReader::ScaleType::MULTIPLY_RESOLUTION)
{
float resolutionScale = CCBReader::getResolutionScale();
x *= resolutionScale;
y *= resolutionScale;
}
return ScaleTo::create(duration, x, y);
}
else if (propName == "skew")
{
// Get relative skew
auto& value = pKeyframe1->getValue().asValueVector();
float x = value[0].asFloat();
float y = value[1].asFloat();
return SkewTo::create(duration, x, y);
}
else
{
log("CCBReader: Failed to create animation for property: %s", propName.c_str());
}
return nullptr;
}
void CCBAnimationManager::setAnimatedProperty(const std::string& propName, Node *pNode, const Value& value, Ref* obj, float fTweenDuration)
{
if (fTweenDuration > 0)
{
// Create a fake keyframe to generate the action from
CCBKeyframe *kf1 = new CCBKeyframe();
kf1->autorelease();
kf1->setObject(obj);
kf1->setValue(value);
kf1->setTime(fTweenDuration);
kf1->setEasingType(CCBKeyframe::EasingType::LINEAR);
// Animate
ActionInterval *tweenAction = getAction(nullptr, kf1, propName, pNode);
pNode->runAction(tweenAction);
}
else
{
// Just set the value
if (propName == "position")
{
// Get position type
auto& array = getBaseValue(pNode, propName).asValueVector();
CCBReader::PositionType type = (CCBReader::PositionType)array[2].asInt();
// Get relative position
auto& valueVector = value.asValueVector();
float x = valueVector[0].asFloat();
float y = valueVector[1].asFloat();
pNode->setPosition(getAbsolutePosition(Point(x,y), type, getContainerSize(pNode->getParent()), propName));
}
else if (propName == "scale")
{
// Get scale type
auto& array = getBaseValue(pNode, propName).asValueVector();
CCBReader::ScaleType type = (CCBReader::ScaleType)array[2].asInt();
// Get relative scale
auto& valueVector = value.asValueVector();
float x = valueVector[0].asFloat();
float y = valueVector[1].asFloat();
setRelativeScale(pNode, x, y, type, propName);
}
else if(propName == "skew")
{
// Get relative scale
auto& valueVector = value.asValueVector();
float x = valueVector[0].asFloat();
float y = valueVector[1].asFloat();
pNode->setSkewX(x);
pNode->setSkewY(y);
}
else
{
// [node setValue:value forKey:name];
// TODO only handle rotation, opacity, displayFrame, color
if (propName == "rotation")
{
float rotate = value.asFloat();
pNode->setRotation(rotate);
} else if(propName == "rotationX")
{
float rotate = value.asFloat();
pNode->setRotationSkewX(rotate);
}else if(propName == "rotationY")
{
float rotate = value.asFloat();
pNode->setRotationSkewY(rotate);
}
else if (propName == "opacity")
{
unsigned char opacity = value.asByte();
pNode->setOpacity(opacity);
}
else if (propName == "displayFrame")
{
static_cast<Sprite*>(pNode)->setSpriteFrame(static_cast<SpriteFrame*>(obj));
}
else if (propName == "color")
{
auto c = value.asValueMap();
unsigned char r = c["r"].asByte();
unsigned char g = c["g"].asByte();
unsigned char b = c["b"].asByte();
pNode->setColor(Color3B(r, g, b));
}
else if (propName == "visible")
{
bool visible = value.asBool();
pNode->setVisible(visible);
}
else
{
log("unsupported property name is %s", propName.c_str());
CCASSERT(false, "unsupported property now");
}
}
}
}
void CCBAnimationManager::setFirstFrame(Node *pNode, CCBSequenceProperty *pSeqProp, float fTweenDuration)
{
auto& keyframes = pSeqProp->getKeyframes();
if (keyframes.empty())
{
// Use base value (no animation)
auto& baseValue = getBaseValue(pNode, pSeqProp->getName());
auto obj = getObject(pNode, pSeqProp->getName());
CCASSERT(!baseValue.isNull(), "No baseValue found for property");
setAnimatedProperty(pSeqProp->getName(), pNode, baseValue, obj, fTweenDuration);
}
else
{
// Use first keyframe
CCBKeyframe *keyframe = keyframes.at(0);
setAnimatedProperty(pSeqProp->getName(), pNode, keyframe->getValue(), keyframe->getObject(), fTweenDuration);
}
}
ActionInterval* CCBAnimationManager::getEaseAction(ActionInterval *pAction, CCBKeyframe::EasingType easingType, float fEasingOpt)
{
if (dynamic_cast<Sequence*>(pAction))
{
return pAction;
}
if (easingType == CCBKeyframe::EasingType::LINEAR)
{
return pAction;
}
else if (easingType == CCBKeyframe::EasingType::INSTANT)
{
return CCBEaseInstant::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::CUBIC_IN)
{
return EaseIn::create(pAction, fEasingOpt);
}
else if (easingType == CCBKeyframe::EasingType::CUBIC_OUT)
{
return EaseOut::create(pAction, fEasingOpt);
}
else if (easingType == CCBKeyframe::EasingType::CUBIC_INOUT)
{
return EaseInOut::create(pAction, fEasingOpt);
}
else if (easingType == CCBKeyframe::EasingType::BACK_IN)
{
return EaseBackIn::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::BACK_OUT)
{
return EaseBackOut::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::BACK_INOUT)
{
return EaseBackInOut::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::BOUNCE_IN)
{
return EaseBounceIn::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::BOUNCE_OUT)
{
return EaseBounceOut::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::BOUNCE_INOUT)
{
return EaseBounceInOut::create(pAction);
}
else if (easingType == CCBKeyframe::EasingType::ELASTIC_IN)
{
return EaseElasticIn::create(pAction, fEasingOpt);
}
else if (easingType == CCBKeyframe::EasingType::ELASTIC_OUT)
{
return EaseElasticOut::create(pAction, fEasingOpt);
}
else if (easingType == CCBKeyframe::EasingType::ELASTIC_INOUT)
{
return EaseElasticInOut::create(pAction, fEasingOpt);
}
else
{
log("CCBReader: Unkown easing type %d", easingType);
return pAction;
}
}
Sequence* CCBAnimationManager::actionForCallbackChannel(CCBSequenceProperty* channel) {
float lastKeyframeTime = 0;
Vector<FiniteTimeAction*> actions;
auto& keyframes = channel->getKeyframes();
ssize_t numKeyframes = keyframes.size();
for (long i = 0; i < numKeyframes; ++i)
{
CCBKeyframe *keyframe = keyframes.at(i);
float timeSinceLastKeyframe = keyframe->getTime() - lastKeyframeTime;
lastKeyframeTime = keyframe->getTime();
if(timeSinceLastKeyframe > 0) {
actions.pushBack(DelayTime::create(timeSinceLastKeyframe));
}
auto& keyVal = keyframe->getValue().asValueVector();
std::string selectorName = keyVal[0].asString();
CCBReader::TargetType selectorTarget = (CCBReader::TargetType)keyVal[1].asInt();
if(_jsControlled) {
std::stringstream callbackName;
callbackName << static_cast<int>(selectorTarget);
callbackName << ":" + selectorName;
auto callback = _keyframeCallFuncs.at(callbackName.str());
if (nullptr != callback)
{
CallFunc* callbackClone = callback->clone();
if (callbackClone != nullptr)
{
actions.pushBack(callbackClone);
}
}
}
else
{
Ref* target = nullptr;
if(selectorTarget == CCBReader::TargetType::DOCUMENT_ROOT)
target = _rootNode;
else if (selectorTarget == CCBReader::TargetType::OWNER)
target = _owner;
if(target != nullptr)
{
if(selectorName.length() > 0)
{
SEL_CallFuncN selCallFunc = 0;
CCBSelectorResolver* targetAsCCBSelectorResolver = dynamic_cast<CCBSelectorResolver *>(target);
if(targetAsCCBSelectorResolver != nullptr)
{
selCallFunc = targetAsCCBSelectorResolver->onResolveCCBCCCallFuncSelector(target, selectorName.c_str ());
}
if(selCallFunc == 0)
{
CCLOG("Skipping selector '%s' since no CCBSelectorResolver is present.", selectorName.c_str());
}
else
{
auto savedTarget = std::make_shared<Vector<Ref*>>();
savedTarget->pushBack(target);
auto callback = CallFuncN::create([savedTarget, selCallFunc](Node* sender){
auto t = savedTarget->at(0);
(t->*selCallFunc)(sender);
});
actions.pushBack(callback);
}
}
else
{
CCLOG("Unexpected empty selector.");
}
}
}
}
if(actions.size() < 1) return nullptr;
return Sequence::create(actions);
}
Sequence* CCBAnimationManager::actionForSoundChannel(CCBSequenceProperty* channel) {
float lastKeyframeTime = 0;
Vector<FiniteTimeAction*> actions;
auto& keyframes = channel->getKeyframes();
ssize_t numKeyframes = keyframes.size();
for (int i = 0; i < numKeyframes; ++i)
{
CCBKeyframe *keyframe = keyframes.at(i);
float timeSinceLastKeyframe = keyframe->getTime() - lastKeyframeTime;
lastKeyframeTime = keyframe->getTime();
if(timeSinceLastKeyframe > 0) {
actions.pushBack(DelayTime::create(timeSinceLastKeyframe));
}
stringstream ss (stringstream::in | stringstream::out);
auto& keyVal = keyframe->getValue().asValueVector();
std::string soundFile = keyVal[0].asString();
float pitch, pan, gain;
ss << keyVal[1].asString();
ss >> pitch;
ss.flush();
ss << keyVal[2].asString();
ss >> pan;
ss.flush();
ss << keyVal[3].asString();
ss >> gain;
ss.flush();
actions.pushBack(CCBSoundEffect::actionWithSoundFile(soundFile, pitch, pan, gain));
}
if(actions.size() < 1) return nullptr;
return Sequence::create(actions);
}
void CCBAnimationManager::runAction(Node *pNode, CCBSequenceProperty *pSeqProp, float fTweenDuration)
{
auto& keyframes = pSeqProp->getKeyframes();
ssize_t numKeyframes = keyframes.size();
if (numKeyframes > 1)
{
// Make an animation!
Vector<FiniteTimeAction*> actions;
CCBKeyframe *keyframeFirst = keyframes.at(0);
float timeFirst = keyframeFirst->getTime() + fTweenDuration;
if (timeFirst > 0)
{
actions.pushBack(DelayTime::create(timeFirst));
}
for (ssize_t i = 0; i < numKeyframes - 1; ++i)
{
CCBKeyframe *kf0 = keyframes.at(i);
CCBKeyframe *kf1 = keyframes.at(i+1);
ActionInterval *action = getAction(kf0, kf1, pSeqProp->getName(), pNode);
if (action)
{
// Apply easing
action = getEaseAction(action, kf0->getEasingType(), kf0->getEasingOpt());
actions.pushBack(action);
}
}
auto seq = Sequence::create(actions);
pNode->runAction(seq);
}
}
void CCBAnimationManager::runAnimations(const char *pName, float fTweenDuration)
{
runAnimationsForSequenceNamedTweenDuration(pName, fTweenDuration);
}
void CCBAnimationManager::runAnimations(const char *pName)
{
runAnimationsForSequenceNamed(pName);
}
void CCBAnimationManager::runAnimations(int nSeqId, float fTweenDuraiton)
{
runAnimationsForSequenceIdTweenDuration(nSeqId, fTweenDuraiton);
}
void CCBAnimationManager::runAnimationsForSequenceIdTweenDuration(int nSeqId, float fTweenDuration)
{
CCASSERT(nSeqId != -1, "Sequence id couldn't be found");
_rootNode->stopAllActions();
for (auto nodeSeqIter = _nodeSequences.begin(); nodeSeqIter != _nodeSequences.end(); ++nodeSeqIter)
{
Node *node = nodeSeqIter->first;
node->stopAllActions();
// Refer to CCBReader::readKeyframe() for the real type of value
auto seqs = nodeSeqIter->second;
auto seqNodeProps = seqs[nSeqId];
std::set<std::string> seqNodePropNames;
if (!seqNodeProps.empty())
{
// Reset nodes that have sequence node properties, and run actions on them
for (auto iter = seqNodeProps.begin(); iter != seqNodeProps.end(); ++iter)
{
const std::string propName = iter->first;
CCBSequenceProperty *seqProp = iter->second;
seqNodePropNames.insert(propName);
setFirstFrame(node, seqProp, fTweenDuration);
runAction(node, seqProp, fTweenDuration);
}
}
// Reset the nodes that may have been changed by other timelines
auto& nodeBaseValues = _baseValues[node];
if (!nodeBaseValues.empty())
{
for (auto iter = nodeBaseValues.begin(); iter != nodeBaseValues.end(); ++iter)
{
if (seqNodePropNames.find(iter->first) == seqNodePropNames.end())
{
setAnimatedProperty(iter->first, node, iter->second, nullptr, fTweenDuration);
}
}
}
auto& nodeObject = _objects[node];
if (!nodeObject.empty())
{
for (auto iter = nodeObject.begin(); iter != nodeObject.end(); ++iter)
{
if (seqNodePropNames.find(iter->first) == seqNodePropNames.end())
{
setAnimatedProperty(iter->first, node, Value(), iter->second, fTweenDuration);
}
}
}
}
// Make callback at end of sequence
CCBSequence *seq = getSequence(nSeqId);
Action *completeAction = Sequence::createWithTwoActions(DelayTime::create(seq->getDuration() + fTweenDuration),
CallFunc::create( CC_CALLBACK_0(CCBAnimationManager::sequenceCompleted,this)));
_rootNode->runAction(completeAction);
// Set the running scene
if(seq->getCallbackChannel() != nullptr) {
Action* action = (Action *)actionForCallbackChannel(seq->getCallbackChannel());
if(action != nullptr) {
_rootNode->runAction(action);
}
}
if(seq->getSoundChannel() != nullptr) {
Action* action = (Action *)actionForSoundChannel(seq->getSoundChannel());
if(action != nullptr) {
_rootNode->runAction(action);
}
}
_runningSequence = getSequence(nSeqId);
}
void CCBAnimationManager::runAnimationsForSequenceNamedTweenDuration(const char *pName, float fTweenDuration)
{
int seqId = getSequenceId(pName);
runAnimationsForSequenceIdTweenDuration(seqId, fTweenDuration);
}
void CCBAnimationManager::runAnimationsForSequenceNamed(const char *pName)
{
runAnimationsForSequenceNamedTweenDuration(pName, 0);
}
void CCBAnimationManager::debug()
{
}
void CCBAnimationManager::setAnimationCompletedCallback(Ref *target, SEL_CallFunc callbackFunc) {
if (target)
{
target->retain();
}
if (_target)
{
_target->release();
}
_target = target;
_animationCompleteCallbackFunc = callbackFunc;
}
void CCBAnimationManager::setCallFunc(CallFunc* callFunc, const std::string &callbackNamed)
{
_keyframeCallFuncs.insert(callbackNamed, callFunc);
}
void CCBAnimationManager::sequenceCompleted()
{
const char *runningSequenceName = _runningSequence->getName();
int nextSeqId = _runningSequence->getChainedSequenceId();
_runningSequence = nullptr;
if(_lastCompletedSequenceName != runningSequenceName) {
_lastCompletedSequenceName = runningSequenceName;
}
if (nextSeqId != -1)
{
runAnimationsForSequenceIdTweenDuration(nextSeqId, 0);
}
if (_delegate)
{
// There may be another runAnimation() call in this delegate method
// which will assign _runningSequence
_delegate->completedAnimationSequenceNamed(runningSequenceName);
}
if (_target && _animationCompleteCallbackFunc) {
(_target->*_animationCompleteCallbackFunc)();
}
}
// Custom actions
/************************************************************
CCBSetSpriteFrame
************************************************************/
CCBSetSpriteFrame* CCBSetSpriteFrame::create(SpriteFrame *pSpriteFrame)
{
CCBSetSpriteFrame *ret = new CCBSetSpriteFrame();
if (ret)
{
if (ret->initWithSpriteFrame(pSpriteFrame))
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
}
return ret;
}
bool CCBSetSpriteFrame::initWithSpriteFrame(SpriteFrame *pSpriteFrame)
{
_spriteFrame = pSpriteFrame;
CC_SAFE_RETAIN(_spriteFrame);
return true;
}
CCBSetSpriteFrame::~CCBSetSpriteFrame()
{
CC_SAFE_RELEASE_NULL(_spriteFrame);
}
CCBSetSpriteFrame* CCBSetSpriteFrame::clone() const
{
// no copy constructor
auto a = new CCBSetSpriteFrame();
a->initWithSpriteFrame(_spriteFrame);
a->autorelease();
return a;
}
CCBSetSpriteFrame* CCBSetSpriteFrame::reverse() const
{
// returns a copy of itself
return this->clone();
}
void CCBSetSpriteFrame::update(float time)
{
static_cast<Sprite*>(_target)->setSpriteFrame(_spriteFrame);
}
/************************************************************
CCBSoundEffect
************************************************************/
CCBSoundEffect* CCBSoundEffect::actionWithSoundFile(const std::string &filename, float pitch, float pan, float gain) {
CCBSoundEffect* pRet = new CCBSoundEffect();
if (pRet != nullptr && pRet->initWithSoundFile(filename, pitch, pan, gain))
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
CCBSoundEffect::~CCBSoundEffect()
{
}
bool CCBSoundEffect::initWithSoundFile(const std::string &filename, float pitch, float pan, float gain) {
_soundFile = filename;
_pitch = pitch;
_pan = pan;
_gain = gain;
return true;
}
CCBSoundEffect* CCBSoundEffect::clone() const
{
// no copy constructor
auto a = new CCBSoundEffect();
a->initWithSoundFile(_soundFile, _pitch, _pan, _gain);
a->autorelease();
return a;
}
CCBSoundEffect* CCBSoundEffect::reverse() const
{
// returns a copy of itself
return this->clone();
}
void CCBSoundEffect::update(float time)
{
CocosDenshion::SimpleAudioEngine::getInstance()->playEffect(_soundFile.c_str());
}
/************************************************************
CCBRotateTo
************************************************************/
CCBRotateTo* CCBRotateTo::create(float fDuration, float fAngle)
{
CCBRotateTo *ret = new CCBRotateTo();
if (ret)
{
if (ret->initWithDuration(fDuration, fAngle))
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
}
return ret;
}
bool CCBRotateTo::initWithDuration(float fDuration, float fAngle)
{
if (ActionInterval::initWithDuration(fDuration))
{
_dstAngle = fAngle;
return true;
}
else
{
return false;
}
}
CCBRotateTo* CCBRotateTo::clone() const
{
// no copy constructor
auto a = new CCBRotateTo();
a->initWithDuration(_duration, _dstAngle);
a->autorelease();
return a;
}
CCBRotateTo* CCBRotateTo::reverse() const
{
CCASSERT(false, "reverse() is not supported in CCBRotateTo");
return nullptr;
}
void CCBRotateTo::startWithTarget(Node *pNode)
{
ActionInterval::startWithTarget(pNode);
_startAngle = _target->getRotation();
_diffAngle = _dstAngle - _startAngle;
}
void CCBRotateTo::update(float time)
{
_target->setRotation(_startAngle + (_diffAngle * time))
;
}
/************************************************************
CCBRotateXTO
************************************************************/
CCBRotateXTo* CCBRotateXTo::create(float fDuration, float fAngle)
{
CCBRotateXTo *ret = new CCBRotateXTo();
if (ret)
{
if (ret->initWithDuration(fDuration, fAngle))
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
}
return ret;
}
bool CCBRotateXTo::initWithDuration(float fDuration, float fAngle)
{
if (ActionInterval::initWithDuration(fDuration))
{
_dstAngle = fAngle;
return true;
}
else
{
return false;
}
}
void CCBRotateXTo::startWithTarget(Node *pNode)
{
//CCActionInterval::startWithTarget(pNode);
_originalTarget = pNode;
_target = pNode;
_elapsed = 0.0f;
_firstTick = true;
_startAngle = _target->getRotationSkewX();
_diffAngle = _dstAngle - _startAngle;
}
CCBRotateXTo* CCBRotateXTo::clone() const
{
// no copy constructor
auto a = new CCBRotateXTo();
a->initWithDuration(_duration, _dstAngle);
a->autorelease();
return a;
}
CCBRotateXTo* CCBRotateXTo::reverse() const
{
CCASSERT(false, "reverse() is not supported in CCBRotateXTo");
return nullptr;
}
void CCBRotateXTo::update(float time)
{
_target->setRotationSkewX(_startAngle + (_diffAngle * time));
}
/************************************************************
CCBRotateYTO
************************************************************/
CCBRotateYTo* CCBRotateYTo::create(float fDuration, float fAngle)
{
CCBRotateYTo *ret = new CCBRotateYTo();
if (ret)
{
if (ret->initWithDuration(fDuration, fAngle))
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
}
return ret;
}
bool CCBRotateYTo::initWithDuration(float fDuration, float fAngle)
{
if (ActionInterval::initWithDuration(fDuration))
{
_dstAngle = fAngle;
return true;
}
else
{
return false;
}
}
CCBRotateYTo* CCBRotateYTo::clone() const
{
// no copy constructor
auto a = new CCBRotateYTo();
a->initWithDuration(_duration, _dstAngle);
a->autorelease();
return a;
}
CCBRotateYTo* CCBRotateYTo::reverse() const
{
CCASSERT(false, "reverse() is not supported in CCBRotateXTo");
return nullptr;
}
void CCBRotateYTo::startWithTarget(Node *pNode)
{
// ActionInterval::startWithTarget(pNode);
_originalTarget = pNode;
_target = pNode;
_elapsed = 0.0f;
_firstTick = true;
_startAngle = _target->getRotationSkewY();
_diffAngle = _dstAngle - _startAngle;
}
void CCBRotateYTo::update(float time)
{
_target->setRotationSkewY(_startAngle + (_diffAngle * time));
}
/************************************************************
CCBEaseInstant
************************************************************/
CCBEaseInstant* CCBEaseInstant::create(ActionInterval *pAction)
{
CCBEaseInstant *pRet = new CCBEaseInstant();
if (pRet && pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
return pRet;
}
CCBEaseInstant* CCBEaseInstant::clone() const
{
// no copy constructor
auto a = new CCBEaseInstant();
a->initWithAction(_inner);
a->autorelease();
return a;
}
CCBEaseInstant* CCBEaseInstant::reverse() const
{
return CCBEaseInstant::create(_inner->reverse());
}
void CCBEaseInstant::update(float dt)
{
if (dt < 0)
{
_inner->update(0);
}
else
{
_inner->update(1);
}
}
}
| [
"liemvouy@gmail.com"
] | liemvouy@gmail.com |
0280d34069bd339d8f3bfa9ec82a1e8a44cc7c16 | 089f49cfc89c435382d7ef83cf272ffbf5e98e06 | /SkeletonBasics-D2D/Serial.h | 33f979564860194d51cfca9c609b786b0571222a | [] | no_license | kareemn/CalPolyLEDBoard | b6fe48d1451f4af88ca47c87b1b527e550cd602e | 9165b168a28f6daeae2af7cfafb8c3e20ff7dafa | refs/heads/master | 2021-06-02T00:44:02.329542 | 2013-03-20T21:42:42 | 2013-03-20T21:42:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 363 | h | /* Serial.h
*
* Class for communication between computer and Xiphos board.
* NOTE: Ensure the line '#include "Serial.h"' is added to stdafx.h
*/
#include <Windows.h>
#include <stdint.h>
class Serial {
private:
HANDLE port;
public:
bool openPort(LPCWSTR name);
bool go(float x, float z);
bool stop();
void closePort();
}; | [
"="
] | = |
a77df779a8630852427b9ecfdb4e724a05515a24 | 6390a5586b3da26549e38b1a5dc0ff1214bd46c5 | /attic_crossing.cpp | 95629cbbfd14d64ef08dc0a514b48490988f25fb | [] | no_license | ishita159/Codechef_Easy | 0eed773f3b318f0cc426d8fe1c8008a97fe2421f | 8e8fd788daa10152306ce9e52a41d7d7b97e4e10 | refs/heads/master | 2020-04-09T01:45:05.349932 | 2019-03-08T17:31:34 | 2019-03-08T17:31:34 | 159,915,877 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 685 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int test;
scanf("%d", &test);
while (test--)
{
int i = 0, j = 0, l, num = 0, k = 0;
char array[1000000];
scanf("%s", &array);
while (array[i] != '\0')
{
if (array[i] == '#')
{
if (j > k)
{
num++;
k = j;
}
j = 0;
}
if (array[i] == '.')
{
j++;
}
i++;
}
printf("%d\n", num);
}
return 0;
} | [
"singhishita159@gmail.com"
] | singhishita159@gmail.com |
30947b2d608a09abfb18841b91ebdc29ca307b97 | 6b60299c251df3518b716a31f1632fd4cdb9ba36 | /LibLemon/include/core/sharedmem.h | d020bef5a5caa617b8bb84255cbf40633aca859a | [
"BSD-2-Clause"
] | permissive | aar10n/Lemon-OS | 9d1f14a954ee2c5904750183b59b5bbf85f7bd72 | b07508ca86809835b72d7331333f7b308548e384 | refs/heads/master | 2022-12-31T23:51:45.477077 | 2020-10-25T06:53:39 | 2020-10-25T06:53:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 341 | h | #pragma once
#include <stdint.h>
#include <sys/types.h>
#define SMEM_FLAGS_PRIVATE 1
#define SMEM_FLAGS_SHARED 0
namespace Lemon {
uint64_t CreateSharedMemory(uint64_t size, uint64_t flags);
void* MapSharedMemory(uint64_t key);
long UnmapSharedMemory(void* address, uint64_t key);
long DestroySharedMemory(uint64_t key);
} | [
"fidojj@hotmail.com"
] | fidojj@hotmail.com |
69d75f46390a9b52497ec8e41c9a18c0a0355258 | aee8a4b902288d6ad1abe5addece780f179afc88 | /Siddhi/Array/isMonotonous.cpp | 0c6a38fc8137aeff9ba0d5a807d1b88fc7f20c2e | [] | no_license | venkatexh/problem-solving-daily | 04e9745ebcb2a84bda5e7c45177ab6de1782a4e8 | 7c2302ec4527cca893adea82d9e00056c13cf9c4 | refs/heads/main | 2023-04-10T16:04:55.457255 | 2021-04-19T13:10:16 | 2021-04-19T13:10:16 | 351,817,983 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 794 | cpp | /*
Check if a given array is monotonous
*/
#include <iostream>
using namespace std;
void isMonotonous(int arr[], int n)
{
int val =0;
bool flag = true;
for (int i = 0; i < n-1; i++)
{
if(val==0)
val = arr[i]>arr[i+1]?-1:arr[i]<arr[i+1]?1:0;
else if(val==-1 && arr[i]<arr[i+1])
{
flag = false;
break;
}
else if(val==1 && arr[i]>arr[i+1])
{
flag = false;
break;
}
}
cout<<val<<endl;
if(!flag)
cout<<"Not monotonic array\n";
else
cout<<"Monotonic\n";
}
int main()
{
int n;
cin>>n;
int *arr = new int[n];
for(int i=0;i<n;i++)
cin>>arr[i];
isMonotonous(arr,n);
} | [
"siddhi19vinayak@gmail.com"
] | siddhi19vinayak@gmail.com |
0c89393408ecf3df792435b47814d53a38040917 | bf0e0ca8d71c453c506176ab40b343297ce77fc8 | /async/include/async/Shell.h | 570af42c05e29a9bd044af935ba465cabb1877cc | [
"MIT"
] | permissive | vihariswamy/cerl | 59ad9cebcf5443e0487160c47423cd4a872bf82e | 02b75ab9daf19f63294b7c078a73753328e2984b | refs/heads/master | 2022-12-26T04:09:22.807492 | 2020-10-01T10:57:40 | 2020-10-01T10:57:40 | 300,246,396 | 0 | 0 | MIT | 2020-10-01T10:57:07 | 2020-10-01T10:57:06 | null | UTF-8 | C++ | false | false | 2,854 | h | /* -------------------------------------------------------------------------
// CERL2: C++ Erlang Server Model 2.0
//
// Module: async/Shell.h
// Creator: xushiwei
// Email: xushiweizh@gmail.com
// Date: 2009-3-26 19:41:58
//
// $Id: Shell.h 2552 2010-04-20 01:37:45Z xushiwei $
// -----------------------------------------------------------------------*/
#ifndef ASYNC_SHELL_H
#define ASYNC_SHELL_H
#ifndef ASYNC_IOSERVICE_H
#include "IoService.h"
#endif
#ifndef ASYNC_IOSERVICEPOOL_H
#include "IoServicePool.h"
#endif
#ifndef ASYNC_IO_H
#include "Io.h"
#endif
#ifndef ASYNC_NINFORMATION_H
#include "NInformation.h"
#endif
#ifndef ASYNC_TIMER_H
#include "Timer.h"
#endif
NS_CERL_BEGIN
// -------------------------------------------------------------------------
// class ApplicationInit
class ApplicationInit
{
FiberInit fiberInit;
SocketInit socketInit;
AioInit aioInit;
TimerInit timerInit;
IoServicePoolInit servicesInit;
public:
explicit ApplicationInit(size_t threadCount = 2, size_t timerPrecision = 500, size_t timerSlots = 31)
: servicesInit(threadCount), timerInit(timerPrecision, timerSlots)
{
}
};
// -------------------------------------------------------------------------
// class Application
class Application : public ApplicationInit, public IoServicePool
{
public:
explicit Application(size_t threadCount = 2, size_t timerPrecision = 500, size_t timerSlots = 31)
: ApplicationInit(threadCount, timerPrecision, timerSlots)
{
}
public:
class AutoQuit
{
public:
~AutoQuit()
{
Application::quit();
}
};
};
// -------------------------------------------------------------------------
// class Shell
class Shell
{
private:
struct ShellParam
{
FiberCallback fnShell;
void* startParam;
size_t dwStackSize;
};
static THREADRET WINAPI ThreadMain(LPVOID lpParam)
{
ShellParam p = *(ShellParam*)lpParam;
free(lpParam);
IoService service;
service.run(p.fnShell, p.startParam, p.dwStackSize);
return 0;
}
static void cerl_callback PressEnterToQuit(void* lpParam)
{
FiberParam p(lpParam);
for (;;)
{
printf("Press enter to quit...\n");
getchar();
break;
}
p.service->quit();
Application::quit();
}
public:
static void cerl_call start(FiberCallback fnShell, void* startParam = NULL, size_t dwStackSize = 0)
{
ShellParam* p = (ShellParam*)malloc(sizeof(ShellParam));
p->fnShell = fnShell;
p->startParam = startParam;
p->dwStackSize = dwStackSize;
CloseThread(CreateThread(ThreadMain, p));
}
static void cerl_call enterToQuit()
{
start(PressEnterToQuit);
}
};
inline void cerl_call startShell(FiberCallback fnShell, void* startParam = NULL, size_t dwStackSize = 0)
{
Shell::start(fnShell, startParam, dwStackSize);
}
// -------------------------------------------------------------------------
NS_CERL_END
#endif /* ASYNC_SHELL_H */
| [
"xushiweizh@gmail.com"
] | xushiweizh@gmail.com |
f88b739d907423109dfeae31556f1523bf2779e9 | c845fc58db7ce3603ece0d5db90e41946f29f331 | /examples/prog_zones_couleurs.cpp | a1c1d8cfaddfefb198978cf841885d45ee447f14 | [] | no_license | franceioi/lib-sanitizer | 41771b431ea00a2c4b47adb506f8c829fe0fa442 | a910867c6efc8f6d1242c116c6de47effa4f8873 | refs/heads/master | 2016-09-06T03:31:39.188154 | 2012-09-18T17:07:21 | 2012-09-18T17:07:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | cpp | // Zones de couleurs
// http://www.france-ioi.org/algo/task.php?idChapter=574&idTask=0&sTab=task&iOrder=15
#include "sanitizer.h"
int main()
{
cInt N = cInt::read().in(1, 100);
cMatrix<int>::read(N, 2).in(-1000, 1000);
}
| [
"loicfevrier@gmail.com"
] | loicfevrier@gmail.com |
3689160d9ddb7e1edffe639a429671e79d793763 | 3bb2b6eeca9990de89adb9cc4443f50fe29a5369 | /src/core/util/Graph/GraphDevice.cpp | aebf7e6d0c4203c4908059e13e664a3287311531 | [] | no_license | am11/ffcore | 2ae7c14a1d75f5b7af0df87c897a4a0bee2381e0 | 4855bfd3c3d0c30c887dd6546c86f7542612e148 | refs/heads/master | 2021-01-17T02:03:26.356471 | 2015-08-12T17:56:23 | 2015-08-12T17:56:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,246 | cpp | #include "pch.h"
#include "COM/ComAlloc.h"
#include "COM/ComListener.h"
#include "Graph/BufferCache.h"
#include "Graph/Data/GraphCategory.h"
#include "Graph/GraphDevice.h"
#include "Graph/GraphDeviceChild.h"
#include "Graph/GraphFactory.h"
#include "Graph/GraphStateCache.h"
#include "Graph/RenderTarget/RenderTarget.h"
#include "Module/Module.h"
namespace ff
{
class __declspec(uuid("dce9ac0d-79da-4456-b441-7bde392df877"))
GraphDevice
: public ComBase
, public IGraphDevice
, public IComListener
{
public:
DECLARE_HEADER(GraphDevice);
bool Init(IDXGIAdapterX *pCard, bool bSoftware);
// IComListener functions
virtual void OnConstruct(IUnknown *unkOuter, REFGUID catid, REFGUID clsid, IUnknown *pObj) override;
virtual void OnDestruct (REFGUID catid, REFGUID clsid, IUnknown *pObj) override;
// IGraphDevice functions
virtual void Reset() override;
virtual bool IsSoftware() const override;
virtual ID3D11DeviceX *GetDX() override;
virtual IDXGIDeviceX *GetDXGI() override;
virtual ID3D11DeviceContextX *GetContext() override;
virtual IDXGIAdapterX *GetAdapter() override;
virtual D3D_FEATURE_LEVEL GetFeatureLevel() const override;
virtual BufferCache &GetVertexBuffers() override;
virtual BufferCache &GetIndexBuffers() override;
virtual GraphStateCache &GetStateCache() override;
private:
ComPtr<ID3D11DeviceX> _device;
ComPtr<ID3D11DeviceContextX> _context;
ComPtr<IDXGIAdapterX> _adapter;
ComPtr<IDXGIDeviceX> _dxgiDevice;
ComPtr<IProxyComListener> _listener;
Vector<IGraphDeviceChild *> _children;
BufferCache _vertexCache;
BufferCache _indexCache;
GraphStateCache _stateCache;
D3D_FEATURE_LEVEL _featureLevel;
bool _softwareDevice;
};
}
BEGIN_INTERFACES(ff::GraphDevice)
HAS_INTERFACE(ff::IGraphDevice)
HAS_INTERFACE(ff::IComListener)
END_INTERFACES()
bool ff::CreateHardwareGraphDevice(IGraphDevice **device)
{
assertRetVal(device, false);
ComPtr<GraphDevice, IGraphDevice> pDevice;
assertRetVal(SUCCEEDED(ComAllocator<GraphDevice>::CreateInstance(&pDevice)), false);
assertRetVal(pDevice->Init(nullptr, false), false);
*device = pDevice.Detach();
return true;
}
bool ff::CreateSoftwareGraphDevice(IGraphDevice **device)
{
assertRetVal(device, false);
ComPtr<GraphDevice, IGraphDevice> pDevice;
assertRetVal(SUCCEEDED(ComAllocator<GraphDevice>::CreateInstance(&pDevice)), false);
assertRetVal(pDevice->Init(nullptr, true), false);
*device = pDevice.Detach();
return true;
}
bool ff::CreateGraphDevice(IDXGIAdapterX *pCard, IGraphDevice **device)
{
assertRetVal(pCard && device, false);
ComPtr<GraphDevice, IGraphDevice> pDevice;
assertRetVal(SUCCEEDED(ComAllocator<GraphDevice>::CreateInstance(&pDevice)), false);
assertRetVal(pDevice->Init(pCard, false), false);
*device = pDevice.Detach();
return true;
}
ff::GraphDevice::GraphDevice()
: _vertexCache(D3D11_BIND_VERTEX_BUFFER)
, _indexCache(D3D11_BIND_INDEX_BUFFER)
, _featureLevel((D3D_FEATURE_LEVEL)0)
, _softwareDevice(false)
{
_vertexCache.SetDevice(this);
_indexCache.SetDevice(this);
_stateCache.SetDevice(this);
verify(CreateProxyComListener(this, &_listener));
verify(AddComListener(GetCategoryGraphicsObject(), _listener));
}
ff::GraphDevice::~GraphDevice()
{
assert(!_children.Size());
if (_context)
{
_context->ClearState();
}
_vertexCache.SetDevice(nullptr);
_indexCache.SetDevice(nullptr);
_stateCache.SetDevice(nullptr);
verify(RemoveComListener(GetCategoryGraphicsObject(), _listener));
_listener->SetOwner(nullptr);
}
static bool InternalCreateDevice(
IDXGIAdapterX *pCard,
bool bSoftware,
ID3D11DeviceX **device,
ID3D11DeviceContextX **ppContext,
D3D_FEATURE_LEVEL *pFeatureLevel)
{
assertRetVal(!bSoftware || !pCard, false);
assertRetVal(device && ppContext, false);
D3D_DRIVER_TYPE driverType = pCard
? D3D_DRIVER_TYPE_UNKNOWN
: (bSoftware ? D3D_DRIVER_TYPE_WARP : D3D_DRIVER_TYPE_HARDWARE);
UINT nFlags = ff::GetThisModule().IsDebugBuild() ? D3D11_CREATE_DEVICE_DEBUG : 0;
const D3D_FEATURE_LEVEL featureLevels[] =
{
#if METRO_APP
D3D_FEATURE_LEVEL_11_1,
#endif
D3D_FEATURE_LEVEL_11_0,
D3D_FEATURE_LEVEL_10_1,
D3D_FEATURE_LEVEL_10_0,
D3D_FEATURE_LEVEL_9_3,
D3D_FEATURE_LEVEL_9_2,
D3D_FEATURE_LEVEL_9_1,
};
#if defined(_DEBUG) && !METRO_APP
// The VS graphics helper will crash if I give it an adapter to use, so clear it
if (pCard && ::GetModuleHandle(L"dxcapturereplay.dll"))
{
pCard = nullptr;
driverType = D3D_DRIVER_TYPE_HARDWARE;
}
#endif
ff::ComPtr<ID3D11Device> pDevice;
ff::ComPtr<ID3D11DeviceX> pDeviceX;
ff::ComPtr<ID3D11DeviceContext> pContext;
ff::ComPtr<ID3D11DeviceContextX> pContextX;
assertRetVal(SUCCEEDED(D3D11CreateDevice(
pCard, driverType, nullptr, nFlags,
featureLevels, _countof(featureLevels),
D3D11_SDK_VERSION, &pDevice, pFeatureLevel, &pContext)), false);
assertRetVal(pDeviceX.QueryFrom(pDevice), false);
assertRetVal(pContextX.QueryFrom(pContext), false);
*device = pDeviceX.Detach();
*ppContext = pContextX.Detach();
return true;
}
bool ff::GraphDevice::Init(IDXGIAdapterX *pCard, bool bSoftware)
{
assertRetVal(!bSoftware || !pCard, false);
assertRetVal(!_device && !_context, false);
_featureLevel = (D3D_FEATURE_LEVEL)0;
_softwareDevice = bSoftware;
assertRetVal(InternalCreateDevice(pCard, bSoftware, &_device, &_context, &_featureLevel), false);
assertRetVal(GetParentDXGI(_device, __uuidof(IDXGIAdapterX), (void**)&_adapter), false);
assertRetVal(_dxgiDevice.QueryFrom(_device), false);
return true;
}
ff::BufferCache &ff::GraphDevice::GetVertexBuffers()
{
return _vertexCache;
}
ff::BufferCache &ff::GraphDevice::GetIndexBuffers()
{
return _indexCache;
}
ff::GraphStateCache &ff::GraphDevice::GetStateCache()
{
return _stateCache;
}
void ff::GraphDevice::OnConstruct(IUnknown *unkOuter, REFGUID catid, REFGUID clsid, IUnknown *pObj)
{
ComPtr<IGraphDeviceChild> pChild;
ComPtr<IRenderTarget> pRenderer;
if (pChild.QueryFrom(pObj) && pChild->GetDevice() == this)
{
_children.Push(pChild);
}
}
void ff::GraphDevice::OnDestruct(REFGUID catid, REFGUID clsid, IUnknown *pObj)
{
ComPtr<IGraphDeviceChild> pChild;
ComPtr<IRenderTarget> pRenderer;
if (pChild.QueryFrom(pObj) && pChild->GetDevice() == this)
{
size_t i = _children.Find(pChild);
assertRet(i != INVALID_SIZE);
_children.Delete(i);
}
}
void ff::GraphDevice::Reset()
{
ComPtr<IDXGIAdapterX> pAdapter = GetAdapter();
if (_context)
{
_context->ClearState();
}
_vertexCache.Reset();
_indexCache.Reset();
_stateCache.Reset();
_context = nullptr;
_device = nullptr;
_adapter = nullptr;
_dxgiDevice = nullptr;
if (Init(pAdapter, _softwareDevice))
{
for (size_t i = 0; i < _children.Size(); i++)
{
_children[i]->Reset();
}
}
}
bool ff::GraphDevice::IsSoftware() const
{
return _softwareDevice;
}
ID3D11DeviceX *ff::GraphDevice::GetDX()
{
return _device;
}
IDXGIDeviceX *ff::GraphDevice::GetDXGI()
{
return _dxgiDevice;
}
ID3D11DeviceContextX *ff::GraphDevice::GetContext()
{
return _context;
}
IDXGIAdapterX *ff::GraphDevice::GetAdapter()
{
return _adapter;
}
D3D_FEATURE_LEVEL ff::GraphDevice::GetFeatureLevel() const
{
assert(_featureLevel != 0);
return _featureLevel;
}
| [
"spadapet@hotmail.com"
] | spadapet@hotmail.com |
60bf1a06f7e2d076c7a6b11508ef5c09e37ed3a9 | fdb1ef421da784f5f9b47381aeca16dd839b56a5 | /mods/base/include/base/texturesettings.h | d6a89c4a5ed59cd5f3c30b52062a283dd9b19ad7 | [
"MIT"
] | permissive | tpearson1/Eris | 248996ecc0386030433430ab02c39b3b2d61e81d | f64b681966f9cbd4a4cd448f4d3028efdab19bd9 | refs/heads/master | 2021-01-17T10:25:41.916602 | 2017-11-21T02:29:28 | 2017-11-21T02:29:28 | 84,014,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,979 | h | /*
-------------------------------------------------------------------------------
This file is part of Eris Engine
-------------------------------------------------------------------------------
Copyright (c) 2017 Thomas Pearson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
*/
#ifndef _BASE__TEXTURE_SETTINGS_H
#define _BASE__TEXTURE_SETTINGS_H
#include <string>
#include <core/readwrite.h>
#include <base/gl.h>
enum class TextureType : GLenum {
Tex1D = GL_TEXTURE_1D,
Tex2D = GL_TEXTURE_2D,
Tex3D = GL_TEXTURE_3D,
Rectangle = GL_TEXTURE_RECTANGLE,
Buffer = GL_TEXTURE_BUFFER,
Cubemap = GL_TEXTURE_CUBE_MAP,
Tex1DArray = GL_TEXTURE_1D_ARRAY,
Tex2DArray = GL_TEXTURE_2D_ARRAY,
CubemapArray = GL_TEXTURE_CUBE_MAP_ARRAY,
Tex2DMultisample = GL_TEXTURE_2D_MULTISAMPLE,
Tex2DMultisampleArray = GL_TEXTURE_2D_MULTISAMPLE_ARRAY
};
enum class TextureShrinkType : GLint {
NearestMipmapNearest = GL_NEAREST_MIPMAP_NEAREST,
LinearMipmapNearest = GL_LINEAR_MIPMAP_NEAREST,
NearestMipmapLinear = GL_NEAREST_MIPMAP_LINEAR,
LinearMipmapLinear = GL_LINEAR_MIPMAP_LINEAR,
Nearest = GL_NEAREST,
Linear = GL_LINEAR
};
enum class TextureEnlargeType : GLint {
Nearest = GL_NEAREST,
Linear = GL_LINEAR
};
struct TextureSettings {
TextureSettings() {}
TextureSettings(TextureType tt, TextureShrinkType tst, TextureEnlargeType tet)
: type(tt), shrinkFilter(tst), enlargeFilter(tet) {}
std::string path;
TextureType type = TextureType::Tex2D;
TextureShrinkType shrinkFilter = TextureShrinkType::Linear;
TextureEnlargeType enlargeFilter = TextureEnlargeType::Linear;
static TextureSettings nearest, linear;
};
template <>
struct JSONImpl<TextureSettings> {
static void Read(TextureSettings &out, const JSON::Value &value, const JSON::ReadData &data);
static void Write(const TextureSettings &value, JSON::Writer &writer);
};
#endif // _BASE__TEXTURE_SETTINGS_H
| [
"tompearson2002@gmail.com"
] | tompearson2002@gmail.com |
4a88b428c57cc5874c9f73c4076c8629048b4832 | dc8eff80c598d38f0a5f1345ee5e3da28b9a3311 | /Interface/counterinterface.cpp | 0eee0d7d41d5a22f909cb73feab74dbb37ee260d | [] | no_license | JrHeron/Pedyrum4 | 73f523cacda7c7325b7fba7105f005bb120113ae | ae8e90436b61bcccad85daf42d6aab66c543122f | refs/heads/master | 2021-01-19T11:26:15.016141 | 2013-01-09T15:13:19 | 2013-01-09T15:13:19 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 36,800 | cpp | /*
Copyright (c) 2013, Luiz Cândido da Silva Júnior, heron@jaguati.com.br
Copyright (c) 2013, Jonathan, jonathan@jaguati.com.br
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither the name of Pedyrum may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY {{THE COPYRIGHT HOLDERS AND CONTRIBUTORS}} "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL {{THE COPYRIGHT HOLDER OR CONTRIBUTORS}} BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "Interface/counterinterface.h"
#include <QMessageBox>
CounterInterface::CounterInterface(QWidget *parent) :
QWidget(parent)
{
createComponent();
statics();
connections();
totalValueOrder = 0;
isAdd = true;
}
void CounterInterface::createComponent()
{
wProduct = new QWidget(this);
lProduct = new QLabel(wProduct);
searchProduct = new Search(wProduct,tr("Pesquisar Produtos"));
productPreview = new QTextBrowser(wProduct);
cbSize = new ComboBox(wProduct);
DSBValueProduct = new DoubleSpinBox(wProduct);
sbAmount = new SpinBox(wProduct);
lPizza = new Label(wProduct,true,100);
pbConfirmProduct = new QPushButton(wProduct);
pbLeaveProduct = new QPushButton(wProduct);
wProductNotes = new QWidget(this);
lProductNotes = new QLabel(wProductNotes);
lTextNotesProduct = new QLabel(wProductNotes);
teProductNotes = new QTextEdit(wProductNotes);
wPaymentView = new PaymentView(this);
wItens = new QWidget(this);
lItens = new QLabel(wItens);
pbSaveOrdered = new QPushButton(wItens);
pbRemoveItem = new QPushButton(wItens);
pbClearOrdered = new QPushButton(wItens);
pbCancelOrdered = new QPushButton(wItens);
tableItem = new TableView(wItens);
order = new Order("connectionCounter");
QList<QString> headers;
headers << tr("Nome") << tr("Tamanho") << tr("Quantidade") << tr("Valor") << tr("Anotação");
dataModelItems = new DataModel(this, headers);
wPizzaMixed = new PizzaMixed();
actionName = new QAction(tr("Pesquisar por nome"),this);
actionNickName = new QAction(tr("Pesquisar por Apelido"),this);
}
void CounterInterface::input()
{
lItens->setStyleSheet("background-color: qlineargradient(spread:pad, x1:0.498,"
"y1:0, x2:0.494636, y2:1, stop:0 rgba(255, 255, 255, 210),"
"stop:0.982955 rgba(255, 255, 255, 170));"
"border-radius: 5px;border: 1px solid rgba(255,255,255,255);");
pbSaveOrdered->setObjectName("pbSaveOrdered");
pbSaveOrdered->setStyleSheet(this->styleSheet());
pbSaveOrdered->setText(tr("Salvar"));
pbSaveOrdered->setFont(this->font());
pbSaveOrdered->setCursor(Qt::PointingHandCursor);
pbRemoveItem->setObjectName("pbRemoveItem");
pbRemoveItem->setStyleSheet(this->styleSheet());
pbRemoveItem->setText(tr("Remover"));
pbRemoveItem->setFont(this->font());
pbRemoveItem->setCursor(Qt::PointingHandCursor);
pbClearOrdered->setObjectName("pbClearOrdered");
pbClearOrdered->setStyleSheet(this->styleSheet());
pbClearOrdered->setText(tr("Limpar"));
pbClearOrdered->setFont(this->font());
pbClearOrdered->setCursor(Qt::PointingHandCursor);
pbCancelOrdered->setObjectName("pbCancelOrdered");
pbCancelOrdered->setStyleSheet(this->styleSheet());
pbCancelOrdered->setText(tr("Cancelar"));
pbCancelOrdered->setFont(this->font());
pbCancelOrdered->setCursor(Qt::PointingHandCursor);
pbConfirmProduct->setObjectName("pbConfirmProduct");
pbConfirmProduct->setStyleSheet(this->styleSheet());
pbConfirmProduct->setFont(this->font());
pbConfirmProduct->setText(tr("Confirmar"));
pbConfirmProduct->setCursor(Qt::PointingHandCursor);
pbLeaveProduct->setObjectName("pbLeaveProduct");
pbLeaveProduct->setStyleSheet(this->styleSheet());
pbLeaveProduct->setFont(this->font());
pbLeaveProduct->setText(tr("Limpar"));
pbLeaveProduct->setCursor(Qt::PointingHandCursor);
productPreview->setStyleSheet("background-color: rgba(0,0,0,0);"
"color: rgba(255,255,255,240);");
lPizza->setImage(":/treatment/icopizza");
lPizza->setHover(":/treatment/icopizza-hover");
sbAmount->setPrefix(tr("Quant "));
sbAmount->setFont(this->font());
sbAmount->setMinimum(1);
sbAmount->setValue(1);
sbAmount->setMaximum(99999);
DSBValueProduct->setPrefix(tr("R$ "));
DSBValueProduct->setMaximum(9999999);
lProductNotes->setPixmap(QPixmap(":/treatment/field-notes-Background"));
lTextNotesProduct->setText(tr("Anotações"));
lTextNotesProduct->setFont(this->font());
lTextNotesProduct->setAlignment(Qt::AlignHCenter);
lTextNotesProduct->setStyleSheet("color: rgba(254, 255, 180, 255);");
teProductNotes->setStyleSheet("background-color: qlineargradient"
"(spread:pad, x1:0, y1:1, x2:0.165045,"
"y2:0, stop:0 rgba(254, 255, 180, 255),"
"stop:0.721591 rgba(255, 250, 205, 255));"
"border-radius: 5px;border: 1px solid #C0C0C0;");
teProductNotes->setFont(this->font());
lProduct->setPixmap(QPixmap(":/treatment/fieldBackground"));
lProduct->setScaledContents(true);
QFont f;
#if defined(Q_WS_X11)
f.setPointSize(9);
#endif
#if defined(Q_WS_WIN)
f.setPointSize(12);
#endif
productPreview->setFont(f);
setPreview();
tableItem->setModel(dataModelItems);
wPizzaMixed->setFont(this->font());
wPizzaMixed->setStyleSheet(this->styleSheet());
searchProduct->setCompleter(order->bd.getCompleter("product"));
cbSize->add("Tamanhos");
actionName->setCheckable(true);
actionName->setChecked(true);
actionName->setEnabled(false);
actionNickName->setCheckable(true);
actionNickName->setChecked(false);
actionNickName->setEnabled(true);
searchProduct->setAction(actionName);
searchProduct->setAction(actionNickName);
searchProduct->eSearch->setNextComponent(cbSize);
cbSize->setNextComponent(DSBValueProduct);
DSBValueProduct->setNextComponent(sbAmount);
emit setInput();
}
void CounterInterface::keyPressEvent(QKeyEvent *event){
if (event->key() == Qt::Key_Delete)
onClick_pbRemoveItem();
switch (event->modifiers()){
case Qt::ControlModifier:{
if (event->key() == Qt::Key_S)
onClick_pbSaveOrdered();
if (event->key() == Qt::Key_L)
onClick_pbClearOrdered();
if (event->key() == Qt::Key_C)
onClick_pbCancelOrdered();
if (event->key() == Qt::Key_M)
onClick_lPizza();
break;
}
}
if (event->key() == Qt::Key_F11)
emit fullScreen();
}
void CounterInterface::adjustLayout()
{
wPaymentView->setGeometry(this->width() - 280,0,280,this->height());
wProduct->setGeometry((this->width() - 280)/2 - 355, (this->height() * 0.55)/2 - 155,350,310);
wProductNotes->setGeometry(wProduct->x() + wProduct->width() + 10, wProduct->y(), 350,310);
wItens->setGeometry(0,this->height() * 0.55,this->width() - wPaymentView->width(),this->height() * 0.45);
lItens->setGeometry(5,0,wItens->width() - 10,wItens->height() - 5);
pbSaveOrdered->setGeometry(wItens->width()/2 - 195,5,90,28);
pbRemoveItem->setGeometry(pbSaveOrdered->x() + pbSaveOrdered->width() + 10,5,90,28);
pbClearOrdered->setGeometry(pbRemoveItem->x() + pbRemoveItem->width() + 10,5,90,28);
pbCancelOrdered->setGeometry(pbClearOrdered->x() + pbClearOrdered->width() + 10,5,90,28);
tableItem->setGeometry(lItens->x() + 5,38,lItens->width() - 10,wItens->height() - 50);
tableItem->setColumnWidth(0,tableItem->width() * 0.18);
tableItem->setColumnWidth(1,tableItem->width() * 0.14);
tableItem->setColumnWidth(2,tableItem->width() * 0.14);
tableItem->setColumnWidth(3,tableItem->width() * 0.1);
tableItem->setColumnWidth(4,tableItem->width() * 0.44 - 1);
}
void CounterInterface::resizeEvent(QResizeEvent *)
{
adjustLayout();
}
void CounterInterface::statics()
{
lProduct->setGeometry(0,0,350,310);
searchProduct->setGeometry(25,15,300,28);
productPreview->setGeometry(10,searchProduct->height() + 50,210,170);
cbSize->setGeometry(productPreview->width() + 15,70,110,26);
DSBValueProduct->setGeometry(cbSize->x(),cbSize->y() + 40, cbSize->width(), 26);
sbAmount->setGeometry(DSBValueProduct->x(),DSBValueProduct->y() + 40, DSBValueProduct->width(), 26);
lPizza->setGeometry(sbAmount->x() + 35,190,40,40);
pbLeaveProduct->setGeometry(57,275,90,28);
pbConfirmProduct->setGeometry(203,275,90,28);
lProductNotes->setGeometry(0,0,350,310);
lTextNotesProduct->setGeometry(0,10,350,25);
teProductNotes->setGeometry(15,35,320,260);
}
void CounterInterface::connections()
{
connect(DSBValueProduct, SIGNAL(valueChanged(double)), SLOT(valueChanged_DSBValueProduct(double)));
connect(this, SIGNAL(setInput()), wPizzaMixed, SLOT(input()));
connect(this, SIGNAL(setInput()), wPaymentView, SLOT(input()));
connect(lPizza, SIGNAL(onClick()), SLOT(onClick_lPizza()));
connect(wPaymentView, SIGNAL(save()), SLOT(onClick_pbSaveOrdered()));
connect(wPaymentView, SIGNAL(clear()), SLOT(onClick_pbClearOrdered()));
connect(wPaymentView, SIGNAL(cancel()), SLOT(onClick_pbCancelOrdered()));
connect(wPaymentView, SIGNAL(pizza()), SLOT(onClick_lPizza()));
connect(wPizzaMixed, SIGNAL(emitPizzaMista(QList<int>,QList<QString>,QList<QString>,QString,int,double,QString,bool,int)), this, SLOT(slotPizzaMista(QList<int>,QList<QString>,QList<QString>,QString,int,double,QString,bool,int)));
connect(searchProduct, SIGNAL(textSearch(QString)), SLOT(getSearchProduct(QString)));
connect(pbConfirmProduct, SIGNAL(clicked()), SLOT(onClick_pbConfirmProduct()));
connect(pbLeaveProduct, SIGNAL(clicked()), SLOT(onClick_pbLeaveProduct()));
connect(tableItem, SIGNAL(doubleClicked(QModelIndex)), SLOT(doubleClicked_tableItem(QModelIndex)));
connect(this, SIGNAL(editPizzaMixed(QList<int>,QList<QString>,QList<QString>,QString,int,double,QString,int)), wPizzaMixed, SLOT(editPizzaMixed(QList<int>,QList<QString>,QList<QString>,QString,int,double,QString,int)));
connect(sbAmount, SIGNAL(valueChanged(int)), SLOT(valueChanged_sbAmount(int)));
connect(cbSize, SIGNAL(currentIndexChanged(int)), SLOT(currentIndexChanged_cbSize(int)));
connect(pbRemoveItem, SIGNAL(clicked()), SLOT(onClick_pbRemoveItem()));
connect(pbClearOrdered, SIGNAL(clicked()), SLOT(onClick_pbClearOrdered()));
connect(pbCancelOrdered, SIGNAL(clicked()), SLOT(onClick_pbCancelOrdered()));
connect(pbSaveOrdered, SIGNAL(clicked()), SLOT(onClick_pbSaveOrdered()));
connect(actionName,SIGNAL(triggered()),SLOT(onTriggered_actionName()));
connect(actionNickName,SIGNAL(triggered()),SLOT(onTriggered_actionNickName()));
connect(wPaymentView->order, SIGNAL(loadComplete()), SLOT(loadDataOrder()));
connect(sbAmount, SIGNAL(returnPressed()), SLOT(onClick_pbConfirmProduct()));
}
void CounterInterface::setPreview()
{
QString html;
html = "<html>"
"<p align=\"center\"> Nome do produto</p>"
"<p align=\"center\"> Valor em reais</p>"
"<p align=\"center\"> Unidade(s)</p>"
"<p align=\"center\"> Valor total </p>"
"</html>";
productPreview->setHtml(html);
}
void CounterInterface::setPreview(QString nome, float value, int quant)
{
QString html;
QString quantText, valueText, totalText;
valueText.setNum(value);
quantText.setNum(quant);
totalText.setNum(value * quant);
html = "<html>"
"<p align=\"center\">" + nome + "</p>"
"<p align=\"center\">" + valueText + tr(" Reais") + "</p>"
"<p align=\"center\">" + quantText + tr(" Unidade(s)") + "</p>"
"<p align=\"center\">" + totalText + tr(" Reais") + "</p>"
"</html>";
productPreview->setHtml(html);
}
void CounterInterface::onClick_lPizza(){
wPizzaMixed->show();
}
void CounterInterface::onClick_pbConfirmProduct(){
if (pbConfirmProduct->text() == "Editar item"){
dataModelItems->removeRow(indexSelectedItem);
totalValueOrderProducts -= orderValues[indexSelectedItem] * orderQuantity[indexSelectedItem];
orderQuantity.removeAt(indexSelectedItem);
orderValues.removeAt(indexSelectedItem);
orderSizes.removeAt(indexSelectedItem);
orderPartProduct.removeAt(indexSelectedItem);
orderIdProduct.removeAt(indexSelectedItem);
orderNameProduct.removeAt(indexSelectedItem);
orderNoteProduct.removeAt(indexSelectedItem);
updateValues();
}
if (dataOrderIdProduct.isEmpty()){
QMessageBox::warning(this, tr("Selecione um sabor"), tr("Por favor, selecione um produto válido."), QMessageBox::Ok);
searchProduct->eSearch->Clear();
searchProduct->eSearch->setFocus();
return;
}
dataOrderQntProduct = sbAmount->value();
dataOrderSizeProduct = cbSize->currentText();
orderQuantity << dataOrderQntProduct;
// orderValues << dataOrderValueProduct;
orderValues << DSBValueProduct->value();
orderSizes << dataOrderSizeProduct;
orderNoteProduct << teProductNotes->toPlainText();
QList<QString> id, name;
id << dataOrderIdProduct;
name << dataOrderNameProduct;
orderIdProduct << id;
orderNameProduct << name;
QList<int> part;
part << 1;
orderPartProduct << part;
totalValueOrderProducts += DSBValueProduct->value() * dataOrderQntProduct;
// totalValueOrderProducts += dataOrderValueProduct * dataOrderQntProduct;
QList<QString> dataForModel;
// dataForModel << dataOrderNameProduct << cbSize->currentText() << QString::number(dataOrderQntProduct) << QString::number(dataOrderValueProduct) << teProductNotes->toPlainText();
dataForModel << dataOrderNameProduct << cbSize->currentText() << QString::number(dataOrderQntProduct) << QString::number(DSBValueProduct->value()) << teProductNotes->toPlainText();
dataModelItems->add(dataForModel);
updateValues();
onClick_pbLeaveProduct();
}
void CounterInterface::onClick_pbLeaveProduct(){
setPreview();
listSizes.clear();
listValues.clear();
sbAmount->setValue(1);
cbSize->setCurrentIndex(0);
teProductNotes->clear();
searchProduct->eSearch->Clear();
DSBValueProduct->setValue(0);
productName.clear();
dataOrderIdProduct.clear();
pbLeaveProduct->setText("Limpar");
pbConfirmProduct->setText("Confirmar");
}
void CounterInterface::slotPizzaMista(QList<int> listOrderPartProduct, QList<QString> listOrderIdProduct, QList<QString> listOrderNameProduct, QString note, int quantity, double value, QString size, bool insert, int row){
if (! insert){
dataModelItems->removeRow(row);
totalValueOrderProducts -= orderValues[row] * orderQuantity[row];
orderQuantity.removeAt(row);
orderValues.removeAt(row);
orderSizes.removeAt(row);
orderPartProduct.removeAt(row);
orderIdProduct.removeAt(row);
orderNameProduct.removeAt(row);
orderNoteProduct.removeAt(row);
updateValues();
}
orderQuantity << quantity;
orderValues << value;
orderPartProduct << listOrderPartProduct;
orderIdProduct << listOrderIdProduct;
orderNameProduct << listOrderNameProduct;
orderSizes << size;
QString noteN = "Sabores: ";
int totalParts = 0;
foreach(int part, listOrderPartProduct)
totalParts += part;
for (int i = 0; i < listOrderNameProduct.length(); i++){
noteN += QString::number(listOrderPartProduct[i]) + "/" + QString::number(totalParts) + " de " + listOrderNameProduct[i];
if (i == listOrderNameProduct.length() - 2)
noteN += " e ";
else
if (i < listOrderNameProduct.length() - 1)
noteN += ", ";
}
if (! note.isEmpty())
noteN += "\n" + note;
orderNoteProduct << noteN;
QList<QString> dataForModel;
dataForModel << "Pizza mista" << size << QString::number(quantity) << QString::number(value) << noteN;
dataModelItems->add(dataForModel);
totalValueOrderProducts += value * quantity;
updateValues();
}
void CounterInterface::updateValues()
{
wPaymentView->updateValuesTotal(totalValueOrderProducts);
}
void CounterInterface::getSearchProduct(QString text){
if (text.length() > 0){
QString sql = "select * from product where lower(name) like lower('" + text + "%') order by idproduct";
order->bd.updateModelQuery("product", sql);
sql = "select idproduct, note from product where lower(name) = lower('" + text + "')";
if (order->bd.search(sql)){
dataOrderIdProduct = order->bd.loadSimple(0);
dataOrderNoteProduct = order->bd.loadSimple(1);
dataOrderNameProduct = text;
teProductNotes->setText(order->bd.loadSimple(1));
sql = "select s.name, pv.valueproduct from size s, product p, productvalue pv where p.idproduct = pv.idproduct and pv.idsize = s.idsize and p.idproduct = " + order->bd.loadSimple(0);
if (order->bd.search(sql, 1)){
cbSize->clear();
listSizes = order->bd.loadColumn(0, 1);
listValues = order->bd.loadColumn(1, 1);
cbSize->addItems(listSizes);
float value = listValues[0].toDouble();
dataOrderValueProduct = listValues[0].toDouble();
productName = text;
setPreview(productName, value, sbAmount->value());
DSBValueProduct->setValue(value);
}
}else{
listSizes.clear();
listValues.clear();
cbSize->clear();
cbSize->addItem("Tamanho");
DSBValueProduct->setValue(0.00);
sbAmount->setValue(1);
productName.clear();
setPreview();
}
}else{
QString sql = "select * from product order by idproduct";
order->bd.updateModelQuery("product", sql);
setPreview();
}
}
void CounterInterface::doubleClicked_tableItem(QModelIndex index){
int row = index.row();
if (orderIdProduct[row].length() == 1){
// produto normal
searchProduct->eSearch->setText(orderNameProduct[row][0]);
for (int j = 0; j < cbSize->count(); j++){
cbSize->setCurrentIndex(j);
if (orderSizes[row] == cbSize->currentText())
break;
}
sbAmount->setValue(orderQuantity[row]);
indexSelectedItem = row;
teProductNotes->setText(orderNoteProduct[row]);
pbConfirmProduct->setText("Editar item");
pbLeaveProduct->setText("Cancelar");
}else{
emit editPizzaMixed(orderPartProduct[row], orderIdProduct[row], orderNameProduct[row], orderNoteProduct[row], orderQuantity[row], orderValues[row], orderSizes[row], row);
wPizzaMixed->show();
}
}
void CounterInterface::valueChanged_sbAmount(int value){
Q_UNUSED(value);
if (listSizes.length() > 0){
// float value = listValues[cbSize->currentIndex()].toDouble();
float value = DSBValueProduct->value();
dataOrderValueProduct = listValues[cbSize->currentIndex()].toDouble();
dataOrderQntProduct = sbAmount->value();
setPreview(productName, value, sbAmount->value());
}
}
void CounterInterface::currentIndexChanged_cbSize(int index){
Q_UNUSED(index);
if (listSizes.length() > 0 && cbSize->count() > 0){
float value = listValues[cbSize->currentIndex()].toDouble();
DSBValueProduct->setValue(value);
dataOrderValueProduct = value;
setPreview(productName, value, sbAmount->value());
}
}
void CounterInterface::onClick_pbRemoveItem(){
int row = tableItem->currentIndex().row();
if (row >= 0){
int op = QMessageBox::question(this, tr("Remover item"),tr("Deseja remover o produto do pedido?"), tr("Sim"), tr("Não"));
if (op == 0){
dataModelItems->removeRow(row);
totalValueOrderProducts -= orderValues[row] * orderQuantity[row];
orderQuantity.removeAt(row);
orderValues.removeAt(row);
orderSizes.removeAt(row);
orderPartProduct.removeAt(row);
orderIdProduct.removeAt(row);
orderNameProduct.removeAt(row);
orderNoteProduct.removeAt(row);
updateValues();
}
}
}
void CounterInterface::onClick_pbClearOrdered(){
if (tableItem->model()->rowCount() == 0)
return;
int op = QMessageBox::question(this, tr("Deleter todos os itens."),tr("Tem certeza que deseja apagar todos os itens deste pedido?"), tr("Sim"), tr("Não"));
if (op == 0){
dataModelItems->clear();
orderQuantity.clear();
orderValues.clear();
orderSizes.clear();
orderPartProduct.clear();
orderIdProduct.clear();
orderNameProduct.clear();
orderNoteProduct.clear();
totalValueOrderProducts = 0;
updateValues();
isAdd = true;
pbSaveOrdered->setText(tr("Salvar"));
}
}
void CounterInterface::onClick_pbCancelOrdered(){
int op = QMessageBox::question(this, tr("Deleter todos os itens."),tr("Tem certeza que deseja cancelar este pedido?"), tr("Sim"), tr("Não"));
if (op == 0){
clearOrder();
}
}
void CounterInterface::onClick_pbSaveOrdered()
{
if (orderIdProduct.length() == 0 ){
QMessageBox::warning(this, tr("Selecione um produto"), tr("O pedido deve ter pelo menos um produto"), tr("Voltar"));
searchProduct->eSearch->Clear();
searchProduct->eSearch->setFocus();
return;
}
if (wPaymentView->totalValueOrder > wPaymentView->totalPaid){
int op = QMessageBox::question(this, tr("Preço pago insuficiente"), tr("O valor pago é insuficiente para pagar o pedido.\nDeseja salvar o pedido dessa forma?"), tr("Sim"), tr("Não"));
if (op == 1)
return;
}
bool client = true;
if (wPaymentView->idClient == 0 && wPaymentView->ePhone->isEmpty() && wPaymentView->ePhoneBusiness->isEmpty()){
client = false;
}
// se o cliente tiver sido selecionado, ele vai verificar se o cliente se foi alterado
if (! wPaymentView->idClient == 0){
wPaymentView->dataClientF.clear();
if (wPaymentView->typeClient == wPaymentView->NORMAL){
wPaymentView->dataClientF << QString::number(wPaymentView->idClient) << wPaymentView->eName->text() << wPaymentView->ePhone->text() << wPaymentView->eStreet->text() << wPaymentView->eNumber->text() << wPaymentView->eComplement->text() << wPaymentView->eDistrict->text() << wPaymentView->eCep->text() << QString::number(wPaymentView->DSBShipping->value()) << wPaymentView->teNotes->toPlainText();
}else{
wPaymentView->dataClientF << QString::number(wPaymentView->idClient) << wPaymentView->eNameContactBusiness->text() << wPaymentView->eNameBusiness->text() << wPaymentView->eFantasyNameBusiness->text() << wPaymentView->eCNPJBusiness->text() << wPaymentView->ePhoneBusiness->text() << wPaymentView->eStreetBusiness->text() << wPaymentView->eNumberBusiness->text() << wPaymentView->eComplementBusiness->text() << wPaymentView->eDistrictBusiness->text() << wPaymentView->eCepBusiness->text() << QString::number(wPaymentView->DSBShippingBusiness->value()) << wPaymentView->teNotesBusiness->toPlainText();
}
bool equal = true;
for (int i = 0; i < wPaymentView->dataClientI.length(); i++){
if (wPaymentView->dataClientI[i] != wPaymentView->dataClientF[i]){
equal = false;
break;
}
}
if (! equal){
int op = QMessageBox::question(this, tr("Alteração do cliente."), tr("Tiveram alterações no cliente.\nDeseja salvá-las?"), "Sim", "Não");
if (op == 0)
if (! wPaymentView->order->updateClient(wPaymentView->dataClientF))
qDebug() << "[CounterInterface] [Botão Salvar Pedido]";
}
}
if ((!(wPaymentView->ePhone->isEmpty() && wPaymentView->ePhoneBusiness->isEmpty())) && wPaymentView->idClient == 0){
if (wPaymentView->typeClient == wPaymentView->NORMAL){
if (isAvailable()){
//seta os valores
wPaymentView->idClient = order->nextIdClient();
wPaymentView->order->phone = wPaymentView->ePhone->text();
wPaymentView->order->name = wPaymentView->eName->text();
wPaymentView->order->cep = wPaymentView->eCep->text();
wPaymentView->order->street = wPaymentView->eStreet->text();
wPaymentView->order->number = wPaymentView->eNumber->text();
wPaymentView->order->complement = wPaymentView->eComplement->text();
wPaymentView->order->district = wPaymentView->eDistrict->text();
wPaymentView->order->shipping = wPaymentView->DSBShipping->value();
wPaymentView->order->note = wPaymentView->teNotes->toPlainText();
wPaymentView->order->insertClient();
}
}else{
if (isAvailableBusiness()){
//seta os valores
wPaymentView->idClient = wPaymentView->order->nextIdClient();
wPaymentView->order->phone = wPaymentView->ePhoneBusiness->text();
wPaymentView->order->nameRespondible = wPaymentView->eNameContactBusiness->text();
wPaymentView->order->cep = wPaymentView->eCepBusiness->text();
wPaymentView->order->street = wPaymentView->eStreetBusiness->text();
wPaymentView->order->number = wPaymentView->eNumberBusiness->text();
wPaymentView->order->complement = wPaymentView->eComplementBusiness->text();
wPaymentView->order->district = wPaymentView->eDistrictBusiness->text();
wPaymentView->order->shipping = wPaymentView->DSBShipping->value();
wPaymentView->order->note = wPaymentView->teNotesBusiness->toPlainText();
wPaymentView->order->corporateName = wPaymentView->eNameBusiness->text();
wPaymentView->order->CNPJ = wPaymentView->eCNPJBusiness->text();
wPaymentView->order->fantasyName = wPaymentView->eFantasyNameBusiness->text();
wPaymentView->order->insertClient();
}
}
}
wPaymentView->order->isAdd = isAdd;
wPaymentView->order->typeClient = wPaymentView->typeClient;
wPaymentView->order->idClient = wPaymentView->idClient;
wPaymentView->order->totalValueOrderProducts = wPaymentView->totalValueOrder;
wPaymentView->order->valuePaid = wPaymentView->totalPaid;
wPaymentView->order->valueShipping = wPaymentView->DSBShipping->value();
wPaymentView->order->orderQuantity = orderQuantity;
wPaymentView->order->orderValues = orderValues;
wPaymentView->order->orderSizes = orderSizes;
wPaymentView->order->orderPartProduct = orderPartProduct;
wPaymentView->order->orderIdProduct = orderIdProduct;
wPaymentView->order->orderNameProduct = orderNameProduct;
wPaymentView->order->orderNoteProduct = orderNoteProduct;
QList<QString> orderPaymentForm;
QList<QString> orderPaymentFormValue;
if (wPaymentView->tablePaymentForm->model()->rowCount() > 0){
for (int i = 0; i < wPaymentView->tablePaymentForm->model()->rowCount(); i++){
orderPaymentForm << wPaymentView->tablePaymentForm->model()->index(i, 0).data().toString();
orderPaymentFormValue << wPaymentView->tablePaymentForm->model()->index(i, 1).data().toString();
}
}
wPaymentView->order->orderPaymentForm = orderPaymentForm;
wPaymentView->order->orderPaymentFormValue = orderPaymentFormValue;
wPaymentView->order->typeOrder = Order::COUNTER;
if (wPaymentView->order->insertOrder())
{
int op = QMessageBox::question(this, tr("Salvo com sucesso"), tr("Pedido salvo com sucesso.\nDeseja imprimir o pedido agora?"), tr("Sim"), tr("Não"));
if (op == 0)
html.print(html.createHTMLOrder(order->idOrder.toInt()));
}
emit newOrder();
clearOrder();
}
void CounterInterface::clearOrder()
{
dataModelItems->clear();
orderQuantity.clear();
orderValues.clear();
orderSizes.clear();
orderPartProduct.clear();
orderIdProduct.clear();
orderNameProduct.clear();
orderNoteProduct.clear();
totalValueOrderProducts = 0;
searchProduct->eSearch->Clear();
wPaymentView->dataModelPayment->clear();
wPaymentView->ePhone->Clear();
wPaymentView->ePhoneBusiness->Clear();
wPaymentView->lPaid->setText(tr("R$ 0,00"));
wPaymentView->totalPaid = 0;
updateValues();
searchProduct->eSearch->Clear();
searchProduct->eSearch->setFocus();
}
bool CounterInterface::isAvailable()
{
if (wPaymentView->ePhone->isEmpty()){
QMessageBox::warning(this, tr("Telefone inválido"), tr("Por favor, digite um número de telefone."), tr("Ok"));
wPaymentView->ePhone->setFocus();
return false;
}
if (wPaymentView->eName->isEmpty()){
QMessageBox::warning(this, tr("Nome inválido"), tr("Por favor, digite um nome para o cliente."), tr("Ok"));
wPaymentView->eName->setFocus();
return false;
}
if (wPaymentView->eStreet->isEmpty()){
QMessageBox::warning(this, tr("Rua inválido"), tr("Por favor, digite uma rua para o cliente."), tr("Ok"));
wPaymentView->eStreet->setFocus();
return false;
}
if (wPaymentView->eNumber->isEmpty()){
QMessageBox::warning(this, tr("Número inválido"), tr("Por favor, digite um número."), tr("Ok"));
wPaymentView->eNumber->setFocus();
return false;
}
return true;
}
bool CounterInterface::isAvailableBusiness()
{
if (wPaymentView->ePhoneBusiness->isEmpty()){
QMessageBox::warning(this, tr("Telefone inválido"), tr("Por favor, digite um número de telefone."), tr("Ok"));
wPaymentView->ePhoneBusiness->setFocus();
return false;
}
if (wPaymentView->eNameContactBusiness->isEmpty()){
QMessageBox::warning(this, tr("Nome inválido"), tr("Por favor, digite um nome para o cliente."), tr("Ok"));
wPaymentView->eNameContactBusiness->setFocus();
return false;
}
if (wPaymentView->eNameBusiness->isEmpty()){
QMessageBox::warning(this, tr("Razão social inválida"), tr("Por favor, digite a razão social."), tr("Ok"));
wPaymentView->eNameBusiness->setFocus();
return false;
}
if (wPaymentView->eFantasyNameBusiness->isEmpty()){
QMessageBox::warning(this, tr("Nome fantasia inválido"), tr("Por favor, digite no,e fantasia."), tr("Ok"));
wPaymentView->eFantasyNameBusiness->setFocus();
return false;
}
if (wPaymentView->eCNPJBusiness->isEmpty()){
QMessageBox::warning(this, tr("CNPJ inválido"), tr("Por favor, digite um CNPJ válido."), tr("Ok"));
wPaymentView->eCNPJBusiness->setFocus();
return false;
}
if (wPaymentView->eStreetBusiness->isEmpty()){
QMessageBox::warning(this, tr("Rua inválido"), tr("Por favor, digite uma rua para o cliente."), tr("Ok"));
wPaymentView->eStreetBusiness->setFocus();
return false;
}
if (wPaymentView->eNumberBusiness->isEmpty()){
QMessageBox::warning(this, tr("Número inválido"), tr("Por favor, digite um número."), tr("Ok"));
wPaymentView->eNumberBusiness->setFocus();
return false;
}
return true;
}
void CounterInterface::onTriggered_actionName()
{
actionName->setChecked(true);
actionName->setEnabled(false);
actionNickName->setChecked(false);
actionNickName->setEnabled(true);
}
void CounterInterface::onTriggered_actionNickName()
{
actionName->setChecked(false);
actionName->setEnabled(true);
actionNickName->setChecked(true);
actionNickName->setEnabled(false);
}
void CounterInterface::editOrder(int idOrder)
{
wPaymentView->order->loadDataOrder(idOrder);
}
void CounterInterface::loadDataOrder()
{
pbSaveOrdered->setText(tr("Editar")); // muda o texto
isAdd = false;
if (wPaymentView->order->typeClient == 1){
wPaymentView->typeClient = wPaymentView->NORMAL;
wPaymentView->onClick_pbSelectPeople();
wPaymentView->ePhone->setText(wPaymentView->order->phoneClient);
}else if (wPaymentView->typeClient == 2){
wPaymentView->typeClient = wPaymentView->BUSINESS;
wPaymentView->onClick_pbSelectBusiness();
wPaymentView->ePhoneBusiness->setText(wPaymentView->order->phoneClient);
}
wPaymentView->idClient = wPaymentView->order->idClient;
totalValueOrderProducts = wPaymentView->order->totalValueOrderProducts;
orderQuantity = wPaymentView->order->orderQuantity;
orderValues = wPaymentView->order->orderValues;
orderSizes = wPaymentView->order->orderSizes;
orderPartProduct = wPaymentView->order->orderPartProduct;
orderIdProduct = wPaymentView->order->orderIdProduct;
orderNameProduct = wPaymentView->order->orderNameProduct;
orderNoteProduct = wPaymentView->order->orderNoteProduct;
wPaymentView->dataModelPayment->clear();
dataModelItems->clear();
QList<QString> dataForModel;
for (int i = 0; i < wPaymentView->order->orderPaymentForm.length(); i++){
dataForModel.clear();
dataForModel << wPaymentView->order->orderPaymentForm[i] << wPaymentView->order->orderPaymentFormValue[i];
wPaymentView->dataModelPayment->add(dataForModel);
}
for (int i = 0; i < wPaymentView->order->orderIdProduct.length(); i++){
dataForModel.clear();
if (orderIdProduct[i].length() == 1)
{
dataForModel << wPaymentView->order->orderNameProduct[i] << wPaymentView->order->orderSizes[i] << QString::number(wPaymentView->order->orderQuantity[i]) << QString::number(wPaymentView->order->orderValues[i]) << wPaymentView->order->orderNoteProduct[i];
}else{
dataForModel << "Pizza mista" << wPaymentView->order->orderSizes[i] << QString::number(wPaymentView->order->orderQuantity[i]) << QString::number(wPaymentView->order->orderValues[i]) << wPaymentView->order->orderNoteProduct[i];
}
dataModelItems->add(dataForModel);
}
double totalPaid = 0;
for(int i = 0; i < wPaymentView->tablePaymentForm->model()->rowCount(); i++){
totalPaid += wPaymentView->tablePaymentForm->model()->index(i, 1).data().toDouble();
}
wPaymentView->lPaid->setText(wPaymentView->tools.convertMoney(QString::number(totalPaid)));
wPaymentView->totalPaid = totalPaid;
if (totalPaid - totalValueOrderProducts >= 0)
wPaymentView->lTransshipment->setText(wPaymentView->tools.convertMoney(QString::number(totalPaid - totalValueOrderProducts)));
else
wPaymentView->lTransshipment->setText("R$ 0,00");
// da update nos valores
updateValues();
}
void CounterInterface::valueChanged_DSBValueProduct(double value)
{
if (! productName.isEmpty())
setPreview(productName, value, sbAmount->value());
else
DSBValueProduct->setValue(0);
}
| [
"jonathan.jgs@gmail.com"
] | jonathan.jgs@gmail.com |
7beb96e4c48f516cd6f8caa41b5cd2b87f32f732 | 174b3ae799cef265e19c54f0bcd00072361f9f90 | /cocluster/C/ExternalValidity.h | 3b710573364d5d870d741ae89784a4a1c3e23c91 | [] | no_license | vvasuki/misc-matlab | d1a4d292f86dc279c889d8f99cfa84a5c67e6f9a | e4c140b5f5ddba1ff1d07b2e9e9585c724e35422 | refs/heads/master | 2021-07-03T22:24:31.653045 | 2020-08-15T08:59:56 | 2020-08-15T08:59:56 | 149,946,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,186 | h | /*
ExternalValidity.h
Header file for the ExternalValidity class
Copyright (c) 2005, 2006
by Hyuk Cho
Copyright (c) 2003, 2004
by Hyuk Cho, Yuqiang Guan, and Suvrit Sra
{hyukcho, yguan, suvrit}@cs.utexas.edu
*/
#if !defined(_EXTERNAL_VALIDITY_H_)
#define _EXTERNAL_VALIDITY_H_
using namespace std;
extern long memoryUsed;
class ExternalValidity
{
protected:
int **confusionMatrix, *classSize, *clusterSize;
int numClass, numCluster, numPoint;
int *classLabel, *clusterLabel;
bool isSilent; // not used...
public:
ExternalValidity(int nClass, int nCluster, int nPoint, int *classLbl, int *clusterLbl);
~ExternalValidity();
void setSilent(bool s); // not used...
void printCM(ostream &os);
void purity_Entropy_MutInfo(bool isShowingEachCluster, ostream &os1, ostream &os2, ostream &os3);
void F_measure(ostream &os1, ostream &os2, ostream &os3);
void micro_avg_precision_recall(double &p_t, double &r_t, ostream &os1, ostream &os2, ostream &os3);
void getAccuracy(double &accuracy, ostream &os1, ostream &os2, ostream &os3);
};
#endif //!defined(_EXTERNAL_VALIDITY_H_)
| [
"vishvas.vasuki@gmail.com"
] | vishvas.vasuki@gmail.com |
5a6e3083d8891db195fe11f248db48137b0ec592 | 3c28f5037380836132eba74eb27ae80e80bc1a2e | /cpp/constraintsolver/include/TermEquality.h | e469eba822c5f2688f72ed85ee22b337d664c708 | [
"Apache-2.0"
] | permissive | andreaswitsch/cnlcsplib | 646bb1ae354cd5bf75979eae772326da593b6a8b | 5350cd094c4867e7d6b33d2dda22b21425729dd2 | refs/heads/master | 2020-07-01T19:20:17.538098 | 2017-03-02T11:58:35 | 2017-03-02T11:58:35 | 74,262,916 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 397 | h | /*
* TermEquality.h
*
* Created on: Dec 11, 2014
* Author: Philipp
*/
#ifndef TERMEQUALITY_H_
#define TERMEQUALITY_H_
namespace alica
{
namespace reasoner
{
namespace cnsat
{
class TermEquality
{
public:
TermEquality();
virtual ~TermEquality();
};
} /* namespace cnsat */
} /* namespace reasoner */
} /* namespace alica */
#endif /* TERMEQUALITY_H_ */
| [
"a.witsch@micromata.de"
] | a.witsch@micromata.de |
2e98bb637aecec0cde3f9748291625c9104efb64 | a3fd7e9d844a71bb75a10dc806a8fc54deb74b94 | /graphlearn/include/aggregating_request.h | bf2a954f9bad8d2739193b2d9fb47a72488f7b0a | [
"Apache-2.0"
] | permissive | zeta1999/graph-learn | 29cdb713f0bddea345873c21ef3dfddb720228c3 | 23f55cf0d2dfc14103774199b68fb17cb964392f | refs/heads/master | 2022-10-25T07:13:13.705389 | 2020-06-08T02:25:35 | 2020-06-08T02:25:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,630 | h | /* Copyright 2020 Alibaba Group Holding Limited. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef GRAPHLEARN_INCLUDE_AGGREGATING_REQUEST_H_
#define GRAPHLEARN_INCLUDE_AGGREGATING_REQUEST_H_
#include <string>
#include "graphlearn/include/op_request.h"
namespace graphlearn {
class AggregatingRequest : public OpRequest {
public:
AggregatingRequest();
AggregatingRequest(const std::string& type,
const std::string& strategy);
virtual ~AggregatingRequest() = default;
OpRequest* Clone() const override;
void SerializeTo(void* request) override;
bool ParseFrom(const void* request) override;
void Set(const int64_t* node_ids,
const int32_t* segment_ids,
int32_t num_ids,
int32_t num_segments);
const std::string& Type() const;
const std::string& Strategy() const;
bool Next(int64_t* node_id, int32_t* segment_id);
int32_t NumIds() const { return node_ids_->Size(); }
bool SegmentEnd(int32_t segment_id) const;
int32_t NumSegments() const { return num_segments_; }
private:
int32_t cursor_;
Tensor* node_ids_;
Tensor* segment_ids_;
int32_t num_segments_;
};
class AggregatingResponse : public OpResponse {
public:
AggregatingResponse();
virtual ~AggregatingResponse() = default;
OpResponse* New() const override {
return new AggregatingResponse;
}
void SetName(const std::string& name);
void SetEmbeddingDim(int32_t dim);
void SetNumSegments(int32_t dim);
std::string Name() const { return name_; }
int32_t EmbeddingDim() const { return emb_dim_; }
void AppendEmbedding(const float* value);
const float* Embeddings() const;
int32_t NumSegments() const { return batch_size_; }
void AppendSegment(int32_t size);
const int32_t* Segments() const;
bool ParseFrom(const void* response) override;
void Stitch(ShardsPtr<OpResponse> shards) override;
private:
std::string name_;
int32_t emb_dim_;
Tensor* embs_;
Tensor* segments_;
};
} // namespace graphlearn
#endif // GRAPHLEARN_INCLUDE_AGGREGATING_REQUEST_H_
| [
"noreply@github.com"
] | noreply@github.com |
41438d440dc9d76d59ac26946aa923a6284930c0 | cf4fd204adc0b05979675bf98eac4890da9dd76f | /Basics_Of_CPP/6_Functions/Sources/5_Arrays_In_Functions.cpp | dba200c4d58c4a099f68997edffdf738f0d75af2 | [] | no_license | LiuKang1080/Learning_CPP | d99afbe7b2b183b7b38b2694cf343ea7187f5c53 | 0448da69073ffe366ac64577bf5cde90440169a3 | refs/heads/master | 2022-12-11T18:27:06.155781 | 2022-11-26T22:32:55 | 2022-11-26T22:32:55 | 198,784,566 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,356 | cpp | // Passing Arrays to Functions in C++
/*
Passing Arrays to Functions:
- We can pass in arrays to functions by providing square brackets in the formal parameter description.
void print_array(int numbers[]);
- The array elements are NOT copied like single parameters that are passed in (pass by value).
- Since the array name evaluates to the location of the array in memory, this address is copied
- The function has no idea how many elements are in the array. It only knows the location of the 1st element
(the name of the array).
- We need to pass in the size of the array into the function.
void print_array(int numbers[], size_t size);
int main() {
int number_array[] = {1, 2, 3};
print_array(number_array);
return 0;
}
void print_array(int numbers[], size_t size) {
for (size_t i=0; i<size; i++) {
std::cout << numbers[i] << "\n";
}
}
- Since we're passing in the location of the first element of the array, the function can modify the actual array.
- We can tell the compiler that the function parameters are const so that the elements of the array do not get changed.
- We use const to tell the function that the parameter passed in is read-only.
void print_array(const int numbers[], size_t size) {
for (size_t i=0; i<size; i++) {
std::cout << numbers[i] << "\n";
}
}
- The const modifier prevents any attempts to modify the elements within the array that is passed into the function.
- Generally we want a print function to only print and not modify any data.
*/
#include <iostream>
// function prototypes:
void print_array(const int array[], size_t size);
void zero_array(int array[], size_t size);
int main() {
// changing all elements in an array to zero
int array[] = {1, 2, 3, 4, 5};
print_array(array, 5);
zero_array(array, 5);
print_array(array, 5);
return 0;
}
// function definitions:
void print_array(const int array[], size_t size) {
for (size_t i=0; i<size; i++) {
std::cout << array[i] << " ";
}
std::cout << "\n";
}
void zero_array(int array[], size_t size) {
for (size_t i=0; i<size; i++) {
array[i] = 0;
}
}
| [
"mahakalim@yahoo.com"
] | mahakalim@yahoo.com |
83ff29207790dc2a921c34b8b0105dd943b82125 | 3282ccae547452b96c4409e6b5a447f34b8fdf64 | /SimModel_Python_API/simmodel_swig/SimModel/framework/SimConnectedFaceSet.hxx | afe49e0b0675d6115866d1e9691b47b12903d9e9 | [
"MIT"
] | permissive | EnEff-BIM/EnEffBIM-Framework | c8bde8178bb9ed7d5e3e5cdf6d469a009bcb52de | 6328d39b498dc4065a60b5cc9370b8c2a9a1cddf | refs/heads/master | 2021-01-18T00:16:06.546875 | 2017-04-18T08:03:40 | 2017-04-18T08:03:40 | 28,960,534 | 3 | 0 | null | 2017-04-18T08:03:40 | 2015-01-08T10:19:18 | C++ | UTF-8 | C++ | false | false | 10,083 | hxx | // Copyright (c) 2005-2014 Code Synthesis Tools CC
//
// This program was generated by CodeSynthesis XSD, an XML Schema to
// C++ data binding compiler.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
// In addition, as a special exception, Code Synthesis Tools CC gives
// permission to link this program with the Xerces-C++ library (or with
// modified versions of Xerces-C++ that use the same license as Xerces-C++),
// and distribute linked combinations including the two. You must obey
// the GNU General Public License version 2 in all respects for all of
// the code used other than Xerces-C++. If you modify this copy of the
// program, you may extend this exception to your version of the program,
// but you are not obligated to do so. If you do not wish to do so, delete
// this exception statement from your version.
//
// Furthermore, Code Synthesis Tools CC makes a special exception for
// the Free/Libre and Open Source Software (FLOSS) which is described
// in the accompanying FLOSSE file.
//
#ifndef SIM_CONNECTED_FACE_SET_HXX
#define SIM_CONNECTED_FACE_SET_HXX
#ifndef XSD_USE_CHAR
#define XSD_USE_CHAR
#endif
#ifndef XSD_CXX_TREE_USE_CHAR
#define XSD_CXX_TREE_USE_CHAR
#endif
// Begin prologue.
//
//
// End prologue.
#include <xsd/cxx/config.hxx>
#if (XSD_INT_VERSION != 4000000L)
//#error XSD runtime version mismatch
#endif
#include <xsd/cxx/pre.hxx>
#include <xsd/cxx/xml/char-utf8.hxx>
#include <xsd/cxx/tree/exceptions.hxx>
#include <xsd/cxx/tree/elements.hxx>
#include <xsd/cxx/tree/types.hxx>
#include <xsd/cxx/xml/error-handler.hxx>
#include <xsd/cxx/xml/dom/auto-ptr.hxx>
#include <xsd/cxx/tree/parsing.hxx>
#include <xsd/cxx/tree/parsing/byte.hxx>
#include <xsd/cxx/tree/parsing/unsigned-byte.hxx>
#include <xsd/cxx/tree/parsing/short.hxx>
#include <xsd/cxx/tree/parsing/unsigned-short.hxx>
#include <xsd/cxx/tree/parsing/int.hxx>
#include <xsd/cxx/tree/parsing/unsigned-int.hxx>
#include <xsd/cxx/tree/parsing/long.hxx>
#include <xsd/cxx/tree/parsing/unsigned-long.hxx>
#include <xsd/cxx/tree/parsing/boolean.hxx>
#include <xsd/cxx/tree/parsing/float.hxx>
#include <xsd/cxx/tree/parsing/double.hxx>
#include <xsd/cxx/tree/parsing/decimal.hxx>
namespace xml_schema
{
// anyType and anySimpleType.
//
typedef ::xsd::cxx::tree::type type;
typedef ::xsd::cxx::tree::simple_type< char, type > simple_type;
typedef ::xsd::cxx::tree::type container;
// 8-bit
//
typedef signed char byte;
typedef unsigned char unsigned_byte;
// 16-bit
//
typedef short short_;
typedef unsigned short unsigned_short;
// 32-bit
//
typedef int int_;
typedef unsigned int unsigned_int;
// 64-bit
//
typedef long long long_;
typedef unsigned long long unsigned_long;
// Supposed to be arbitrary-length integral types.
//
typedef long long integer;
typedef long long non_positive_integer;
typedef unsigned long long non_negative_integer;
typedef unsigned long long positive_integer;
typedef long long negative_integer;
// Boolean.
//
typedef bool boolean;
// Floating-point types.
//
typedef float float_;
typedef double double_;
typedef double decimal;
// String types.
//
typedef ::xsd::cxx::tree::string< char, simple_type > string;
typedef ::xsd::cxx::tree::normalized_string< char, string > normalized_string;
typedef ::xsd::cxx::tree::token< char, normalized_string > token;
typedef ::xsd::cxx::tree::name< char, token > name;
typedef ::xsd::cxx::tree::nmtoken< char, token > nmtoken;
typedef ::xsd::cxx::tree::nmtokens< char, simple_type, nmtoken > nmtokens;
typedef ::xsd::cxx::tree::ncname< char, name > ncname;
typedef ::xsd::cxx::tree::language< char, token > language;
// ID/IDREF.
//
typedef ::xsd::cxx::tree::id< char, ncname > id;
typedef ::xsd::cxx::tree::idref< char, ncname, type > idref;
typedef ::xsd::cxx::tree::idrefs< char, simple_type, idref > idrefs;
// URI.
//
typedef ::xsd::cxx::tree::uri< char, simple_type > uri;
// Qualified name.
//
typedef ::xsd::cxx::tree::qname< char, simple_type, uri, ncname > qname;
// Binary.
//
typedef ::xsd::cxx::tree::buffer< char > buffer;
typedef ::xsd::cxx::tree::base64_binary< char, simple_type > base64_binary;
typedef ::xsd::cxx::tree::hex_binary< char, simple_type > hex_binary;
// Date/time.
//
typedef ::xsd::cxx::tree::time_zone time_zone;
typedef ::xsd::cxx::tree::date< char, simple_type > date;
typedef ::xsd::cxx::tree::date_time< char, simple_type > date_time;
typedef ::xsd::cxx::tree::duration< char, simple_type > duration;
typedef ::xsd::cxx::tree::gday< char, simple_type > gday;
typedef ::xsd::cxx::tree::gmonth< char, simple_type > gmonth;
typedef ::xsd::cxx::tree::gmonth_day< char, simple_type > gmonth_day;
typedef ::xsd::cxx::tree::gyear< char, simple_type > gyear;
typedef ::xsd::cxx::tree::gyear_month< char, simple_type > gyear_month;
typedef ::xsd::cxx::tree::time< char, simple_type > time;
// Entity.
//
typedef ::xsd::cxx::tree::entity< char, ncname > entity;
typedef ::xsd::cxx::tree::entities< char, simple_type, entity > entities;
typedef ::xsd::cxx::tree::content_order content_order;
// Flags and properties.
//
typedef ::xsd::cxx::tree::flags flags;
typedef ::xsd::cxx::tree::properties< char > properties;
// Parsing/serialization diagnostics.
//
typedef ::xsd::cxx::tree::severity severity;
typedef ::xsd::cxx::tree::error< char > error;
typedef ::xsd::cxx::tree::diagnostics< char > diagnostics;
// Exceptions.
//
typedef ::xsd::cxx::tree::exception< char > exception;
typedef ::xsd::cxx::tree::bounds< char > bounds;
typedef ::xsd::cxx::tree::duplicate_id< char > duplicate_id;
typedef ::xsd::cxx::tree::parsing< char > parsing;
typedef ::xsd::cxx::tree::expected_element< char > expected_element;
typedef ::xsd::cxx::tree::unexpected_element< char > unexpected_element;
typedef ::xsd::cxx::tree::expected_attribute< char > expected_attribute;
typedef ::xsd::cxx::tree::unexpected_enumerator< char > unexpected_enumerator;
typedef ::xsd::cxx::tree::expected_text_content< char > expected_text_content;
typedef ::xsd::cxx::tree::no_prefix_mapping< char > no_prefix_mapping;
typedef ::xsd::cxx::tree::no_type_info< char > no_type_info;
typedef ::xsd::cxx::tree::not_derived< char > not_derived;
// Error handler callback interface.
//
typedef ::xsd::cxx::xml::error_handler< char > error_handler;
// DOM interaction.
//
namespace dom
{
// Automatic pointer for DOMDocument.
//
using ::xsd::cxx::xml::dom::auto_ptr;
#ifndef XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA
#define XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA
// DOM user data key for back pointers to tree nodes.
//
const XMLCh* const tree_node_key = ::xsd::cxx::tree::user_data_keys::node;
#endif
}
}
// Forward declarations.
//
namespace schema
{
namespace simxml
{
namespace ResourcesGeometry
{
class SimConnectedFaceSet;
}
}
}
#include <memory> // ::std::auto_ptr
#include <limits> // std::numeric_limits
#include <algorithm> // std::binary_search
#include <xsd/cxx/xml/char-utf8.hxx>
#include <xsd/cxx/tree/exceptions.hxx>
#include <xsd/cxx/tree/elements.hxx>
#include <xsd/cxx/tree/containers.hxx>
#include <xsd/cxx/tree/list.hxx>
#include <xsd/cxx/xml/dom/parsing-header.hxx>
#include "simtopologicalrepresentationitem.hxx"
namespace schema
{
namespace simxml
{
namespace ResourcesGeometry
{
class SimConnectedFaceSet: public ::schema::simxml::SimModelCore::SimTopologicalRepresentationItem
{
public:
// CfsFaces
//
typedef ::xml_schema::idrefs CfsFaces_type;
typedef ::xsd::cxx::tree::optional< CfsFaces_type > CfsFaces_optional;
typedef ::xsd::cxx::tree::traits< CfsFaces_type, char > CfsFaces_traits;
const CfsFaces_optional&
CfsFaces () const;
CfsFaces_optional&
CfsFaces ();
void
CfsFaces (const CfsFaces_type& x);
void
CfsFaces (const CfsFaces_optional& x);
void
CfsFaces (::std::auto_ptr< CfsFaces_type > p);
// Constructors.
//
SimConnectedFaceSet ();
SimConnectedFaceSet (const RefId_type&);
SimConnectedFaceSet (const ::xercesc::DOMElement& e,
::xml_schema::flags f = 0,
::xml_schema::container* c = 0);
SimConnectedFaceSet (const SimConnectedFaceSet& x,
::xml_schema::flags f = 0,
::xml_schema::container* c = 0);
virtual SimConnectedFaceSet*
_clone (::xml_schema::flags f = 0,
::xml_schema::container* c = 0) const;
SimConnectedFaceSet&
operator= (const SimConnectedFaceSet& x);
virtual
~SimConnectedFaceSet ();
// Implementation.
//
protected:
void
parse (::xsd::cxx::xml::dom::parser< char >&,
::xml_schema::flags);
protected:
CfsFaces_optional CfsFaces_;
};
}
}
}
#include <iosfwd>
#include <xercesc/sax/InputSource.hpp>
#include <xercesc/dom/DOMDocument.hpp>
#include <xercesc/dom/DOMErrorHandler.hpp>
namespace schema
{
namespace simxml
{
namespace ResourcesGeometry
{
}
}
}
#include <xsd/cxx/post.hxx>
// Begin epilogue.
//
//
// End epilogue.
#endif // SIM_CONNECTED_FACE_SET_HXX
| [
"cao@e3d.rwth-aachen.de"
] | cao@e3d.rwth-aachen.de |
ff31944d7b45a28af47dc080d860d1b4daa7c9a8 | 8d52c40a3c5acc0a374198566d6b98d071aa1f86 | /cppcheck/data/c_files/18.cpp | 29df76df323e4de97423a41cb91d0b5e80522720 | [
"MIT"
] | permissive | awsm-research/LineVul | 8f6e6a7ee34c50b2b8d7d4a2d79b680f38c141d6 | e739809970189f715aef6a707c1543786e3a9ec8 | refs/heads/main | 2023-04-29T04:03:06.454615 | 2023-04-15T06:59:41 | 2023-04-15T06:59:41 | 449,643,469 | 51 | 23 | null | null | null | null | UTF-8 | C++ | false | false | 69 | cpp | long long BlockGroup::GetPrevTimeCode() const
{
return m_prev;
}
| [
"michaelfu1998@gmail.com"
] | michaelfu1998@gmail.com |
672545f51acfe6ad033de2af89263a5bfbc76ed1 | 64f4a37b2191bba47b170ea1d4ead173610a412d | /cpp/lanqiao/chapter2/1.cpp | e0456ff7b05222f5f840e84d5bf95711d3bdf4b7 | [] | no_license | cwlseu/Algorithm | 9c3979a6dffd680952c56c9bdf3fcc75681f292e | 1117e47efb200a1115f36d336b1593828fe710ac | refs/heads/master | 2021-01-18T07:55:53.909418 | 2019-12-18T13:01:37 | 2019-12-18T13:01:37 | 17,907,849 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 315 | cpp | #include <iostream>
#include <string>
using namespace std;
bool is_leap_year(int year)
{
return (year % 400 == 0)||(year % 4 == 0 && year %100 != 0);
}
int main(int argc, char const *argv[])
{
int year = 1970;
std::cin >> year;
std::cout << (is_leap_year(year) ? "yes" : "no");
return 0;
} | [
"caowenlong92@gmail.com"
] | caowenlong92@gmail.com |
df5b901c824c92c9797316b05b0456b639d621f1 | fc133693eab6294ba77ae4d2778d916a8db38a54 | /明解C语言/4-5.cpp | 1f1a68a678dfa092e21eb207b4fc41182a2f7795 | [] | no_license | hyl-code/c | b0d2908e3d578191befde3a038e63085245ea69d | cf635a7e47fb572a0dffb517675cb27b5646f841 | refs/heads/main | 2023-08-22T01:42:47.571731 | 2021-09-24T17:35:23 | 2021-09-24T17:35:23 | 304,047,238 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 166 | cpp | #include<stdio.h>
int main(void)
{
int i,no;
printf("请输入一个正整数:");
scanf("%d",&no);
i=1;
while(i<=no){
printf("%d",i++);
printf("\n");
}
}
| [
"2839797603@qq.com"
] | 2839797603@qq.com |
ffed9801023eedc608215ce9f99cf12c7c1eba07 | aa6d05520ecf50f9ea49e49eff0551e014346dc9 | /uniqueNoArray.cpp | c6cd166fa228310de6dfac8be9400afe92dd70ef | [] | no_license | tsingh62/C-Masters | fa7355faadb3105e0147f5677afe2eaf65bc62ca | 88295e124eedd9d56a26613c422d061b61b4c34b | refs/heads/master | 2023-03-09T02:53:03.263680 | 2021-03-03T18:26:08 | 2021-03-03T18:26:08 | 283,625,702 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 234 | cpp |
#include<iostream>
using namespace std;
int main()
{
int arr[]={1,2,4,2,3,1,4};
int n = sizeof(arr)/sizeof(int);
int val=0;
for(int i=0; i<n; i++)
{
val=val^arr[i];
}
cout << val << endl;
} | [
"tanvisingh81@gmail.com"
] | tanvisingh81@gmail.com |
b8e30dd69c9d400c926da0b439c7728e917affdd | d305e9667f18127e4a1d4d65e5370cf60df30102 | /mindspore/ccsrc/backend/kernel_compiler/gpu/nn/rmsprop_gpu_kernel.cc | c33909a82b32b92a8830559b21b0a1a05e54f08d | [
"Apache-2.0",
"MIT",
"Libpng",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.1-only",
"AGPL-3.0-only",
"MPL-2.0-no-copyleft-exception",
"IJG",
"Zlib",
"MPL-1.1",
"BSD-3-Clause",
"BSD-3-Clause-Open-MPI",
"MPL-1.0",
"GPL-2.0-only",
"MPL-2.0",
"BSL-1.0",
"LicenseRef-scancode-unknow... | permissive | imyzx2017/mindspore_pcl | d8e5bd1f80458538d07ef0a8fc447b552bd87420 | f548c9dae106879d1a83377dd06b10d96427fd2d | refs/heads/master | 2023-01-13T22:28:42.064535 | 2020-11-18T11:15:41 | 2020-11-18T11:15:41 | 313,906,414 | 6 | 1 | Apache-2.0 | 2020-11-18T11:25:08 | 2020-11-18T10:57:26 | null | UTF-8 | C++ | false | false | 1,941 | cc | /**
* Copyright 2020 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "backend/kernel_compiler/gpu/nn/rmsprop_gpu_kernel.h"
namespace mindspore {
namespace kernel {
MS_REG_GPU_KERNEL_ONE(ApplyRMSProp,
KernelAttr()
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddOutputAttr(kNumberTypeFloat32),
RMSPropGpuKernel, float)
MS_REG_GPU_KERNEL_ONE(ApplyCenteredRMSProp,
KernelAttr()
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddInputAttr(kNumberTypeFloat32)
.AddOutputAttr(kNumberTypeFloat32),
RMSPropGpuKernel, float)
} // namespace kernel
} // namespace mindspore
| [
"513344092@qq.com"
] | 513344092@qq.com |
c7ca3f7744b30551809f24b52e88ba9ab3e6117c | bd5cf42a1da221a7c20a8f66e98cb881d39a43f0 | /4-5/ParseDig.h | 0045cf835d59c5f4225652b28c6038a3871e2afc | [] | no_license | yura7gor/OOP | dcb94ec2fcebbdfb3c423a3c5b8971499808e33b | c8fb5a4d61f16b447c0a3463157959f4800e843a | refs/heads/master | 2021-09-05T06:25:37.746412 | 2018-01-24T19:38:53 | 2018-01-24T19:38:53 | 118,811,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | h | #pragma once
#include <cstdint>
#include <vector>
#include <fstream>
#include <iostream>
#include <sstream>
class ParseDig
{
private:
std::vector<std::uint64_t> decomp;
public:
ParseDig();
~ParseDig();
ParseDig(ParseDig &);
void decompose(uint64_t);
std::string print() const;
std::string short_print() const;
uint64_t check() const;
void clear();
};
| [
"noreply@github.com"
] | noreply@github.com |
e8df92b096a08245002a2ff1a9415f5eb107cd6f | 47724e04cf5ecf86fac5fa78bcd08fe657092e37 | /CPP/advPr/lab-5/Q8.cpp | a9fa51d7a741427247a72a4dbed8f8b88fe0bc52 | [] | no_license | ananthanandanan/academics | b780e52a78a4595bbe7e782663920880c70e6ff6 | 7cda0742e41709f2ec5a81e569badf9378eb742f | refs/heads/master | 2022-10-14T21:17:07.445493 | 2022-10-01T09:06:19 | 2022-10-01T09:06:19 | 239,760,394 | 2 | 1 | null | 2020-10-28T11:09:28 | 2020-02-11T12:48:28 | Jupyter Notebook | UTF-8 | C++ | false | false | 963 | cpp | #include <iostream>
#include <deque>
#include <algorithm>
using namespace std;
void printMax(int arr[], int n, int k)
{
deque<int> d;
for (int i = 0; i < k; i++)
{
d.push_back(arr[i]);
}
int m = *max_element(d.begin(), d.begin() + k);
cout << m << " ";
for (int i = k; i < n; i++)
{
d.push_back(arr[i]);
if (d[0] == m)
{
d.pop_front();
m = *max_element(d.begin(), d.end());
cout << m << " ";
}
else
{
d.pop_front();
if (arr[i] > m)
{
m = arr[i];
}
cout << m << " ";
}
}
cout << "\n";
}
int main()
{
int t;
cin >> t;
while (t > 0)
{
int n, k;
cin >> n >> k;
int i;
int arr[n];
for (i = 0; i < n; i++)
cin >> arr[i];
printMax(arr, n, k);
t--;
}
return 0;
} | [
"ananthanandanan@gmail.com"
] | ananthanandanan@gmail.com |
0ad91baea533f87dbdbaea45ccef4278e65e119c | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /chromecast/media/service/cast_mojo_media_client.h | 49fcadaeaa77c10dcdf9287f6032ceb093206a01 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 2,498 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_MEDIA_SERVICE_CAST_MOJO_MEDIA_CLIENT_H_
#define CHROMECAST_MEDIA_SERVICE_CAST_MOJO_MEDIA_CLIENT_H_
#include <memory>
#include <string>
#include "base/unguessable_token.h"
#include "media/mojo/buildflags.h"
#include "media/mojo/services/mojo_media_client.h"
namespace chromecast {
namespace media {
class CmaBackendFactory;
class VideoGeometrySetterService;
class VideoModeSwitcher;
class VideoResolutionPolicy;
class CastMojoMediaClient : public ::media::MojoMediaClient {
public:
using CreateCdmFactoryCB =
base::RepeatingCallback<std::unique_ptr<::media::CdmFactory>(
service_manager::mojom::InterfaceProvider*)>;
CastMojoMediaClient(CmaBackendFactory* backend_factory,
const CreateCdmFactoryCB& create_cdm_factory_cb,
VideoModeSwitcher* video_mode_switcher,
VideoResolutionPolicy* video_resolution_policy);
~CastMojoMediaClient() override;
#if BUILDFLAG(ENABLE_CAST_RENDERER)
void SetVideoGeometrySetterService(
VideoGeometrySetterService* video_geometry_setter);
#endif
// MojoMediaClient implementation:
#if BUILDFLAG(ENABLE_CAST_RENDERER)
std::unique_ptr<::media::Renderer> CreateCastRenderer(
service_manager::mojom::InterfaceProvider* host_interfaces,
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
::media::MediaLog* media_log,
const base::UnguessableToken& overlay_plane_id) override;
#endif
std::unique_ptr<::media::Renderer> CreateRenderer(
service_manager::mojom::InterfaceProvider* host_interfaces,
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
::media::MediaLog* media_log,
const std::string& audio_device_id) override;
std::unique_ptr<::media::CdmFactory> CreateCdmFactory(
service_manager::mojom::InterfaceProvider* host_interfaces) override;
private:
CmaBackendFactory* const backend_factory_;
const CreateCdmFactoryCB create_cdm_factory_cb_;
VideoModeSwitcher* video_mode_switcher_;
VideoResolutionPolicy* video_resolution_policy_;
#if BUILDFLAG(ENABLE_CAST_RENDERER)
VideoGeometrySetterService* video_geometry_setter_;
#endif
DISALLOW_COPY_AND_ASSIGN(CastMojoMediaClient);
};
} // namespace media
} // namespace chromecast
#endif // CHROMECAST_MEDIA_SERVICE_CAST_MOJO_MEDIA_CLIENT_H_
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
705ced3298e585ffaf335208493b010c4d930075 | 460f981dfe1a05f14d2a4cdc6cc71e9ad798b785 | /3/amd64/envs/navigator/include/qt/QtBluetooth/qlowenergydescriptordata.h | 856acf5304e3d0d35a0089f0bfa1dea46309b3b1 | [
"LicenseRef-scancode-proprietary-license",
"BSD-3-Clause",
"Intel",
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Zlib",
"BSD-2-Clause",
"GPL-2.0-only",
"GPL-1.0-or-later",
"LGPL-2.0-or-later",
"LicenseRef-scancode-mit-old-style",
"dtoa",
"LicenseRef-scancode-public-domain-disclai... | permissive | DFO-Ocean-Navigator/navigator-toolchain | d8c7351b477e66d674b50da54ec6ddc0f3a325ee | 930d26886fdf8591b51da9d53e2aca743bf128ba | refs/heads/master | 2022-11-05T18:57:30.938372 | 2021-04-22T02:02:45 | 2021-04-22T02:02:45 | 234,445,230 | 0 | 1 | BSD-3-Clause | 2022-10-25T06:46:23 | 2020-01-17T01:26:49 | C++ | UTF-8 | C++ | false | false | 3,897 | h | /***************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtBluetooth module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QLOWENERGYDESCRIPTORDATA_H
#define QLOWENERGYDESCRIPTORDATA_H
#include <QtBluetooth/qbluetooth.h>
#include <QtBluetooth/qbluetoothuuid.h>
#include <QtCore/qshareddata.h>
QT_BEGIN_NAMESPACE
class QByteArray;
struct QLowEnergyDescriptorDataPrivate;
class Q_BLUETOOTH_EXPORT QLowEnergyDescriptorData
{
friend Q_BLUETOOTH_EXPORT bool operator==(const QLowEnergyDescriptorData &d1,
const QLowEnergyDescriptorData &d12);
public:
QLowEnergyDescriptorData();
QLowEnergyDescriptorData(const QBluetoothUuid &uuid,
const QByteArray &value);
QLowEnergyDescriptorData(const QLowEnergyDescriptorData &other);
~QLowEnergyDescriptorData();
QLowEnergyDescriptorData &operator=(const QLowEnergyDescriptorData &other);
QByteArray value() const;
void setValue(const QByteArray &value);
QBluetoothUuid uuid() const;
void setUuid(const QBluetoothUuid &uuid);
bool isValid() const;
void setReadPermissions(bool readable,
QBluetooth::AttAccessConstraints constraints = QBluetooth::AttAccessConstraints());
bool isReadable() const;
QBluetooth::AttAccessConstraints readConstraints() const;
void setWritePermissions(bool writable,
QBluetooth::AttAccessConstraints constraints = QBluetooth::AttAccessConstraints());
bool isWritable() const;
QBluetooth::AttAccessConstraints writeConstraints() const;
void swap(QLowEnergyDescriptorData &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
private:
QSharedDataPointer<QLowEnergyDescriptorDataPrivate> d;
};
Q_BLUETOOTH_EXPORT bool operator==(const QLowEnergyDescriptorData &d1,
const QLowEnergyDescriptorData &d2);
inline bool operator!=(const QLowEnergyDescriptorData &d1, const QLowEnergyDescriptorData &d2)
{
return !(d1 == d2);
}
Q_DECLARE_SHARED(QLowEnergyDescriptorData)
QT_END_NAMESPACE
#endif // Include guard.
| [
"dwayne.hart@gmail.com"
] | dwayne.hart@gmail.com |
ddb22fe334db77a2850ef5fb601b1c8aeb09b606 | 9a7f5b46451083407bde6f34961a36f975814393 | /Project10/step-14/src/reports.cpp | a32ab8db1b5ffb1a4c4776a3533268c3cd553b54 | [] | no_license | chiumax/CMSC-226 | 083490ac81f31c55cac396edbd202b8b36ecc022 | f7275e24420a04c6349f3a333a9011e40a43bd7b | refs/heads/master | 2022-06-18T04:07:13.890895 | 2020-05-03T17:58:50 | 2020-05-03T17:58:50 | 245,866,027 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,756 | cpp | /*
reports.cpp
CMSC 226, CRN 35481, Dr. Kuijt
file.totalIndex() C.
Reports Module
*/
#include <ctime>
#include <iomanip>
#include <iostream>
#include <string>
#include "../header_files/all.h"
using namespace std;
void reports() {
int userInput;
bool exitMenu = false;
cout << setfill('=');
// Menu exits on user input "7"
while (exitMenu == false) {
cout << endl;
cout << "Serendipity Booksellers" << endl
<< "Reports" << endl
<< "1. Inventory Listing" << endl
<< "2. Inventory Wholesale Value" << endl
<< "3. Inventory Retail Value" << endl
<< "4. Listing by Quantity" << endl
<< "5. Listing by Cost" << endl
<< "6. Listing by Age" << endl
<< "7. Return to Main Menu" << endl
<< endl
<< "Enter Your Choice: ";
cin >> userInput;
cin.ignore();
switch (userInput) {
case 1:
repListing();
break;
case 2:
repWholesale();
break;
case 3:
repRetail();
break;
case 4:
repQty();
break;
case 5:
repCost();
break;
case 6:
repAge();
break;
case 7:
// EXIT HERE
cout << "You selected item 7" << endl;
exitMenu = true;
break;
default:
cout << "Please enter a number in the range 1-7" << endl;
break;
}
}
cout << "Menu exited" << endl;
}
void repListing() {
cout << "You selected Inventory Listing." << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Author: " << book.getAuthor() << endl
<< "Publisher: " << book.getPub() << endl
<< "Date Added (MM-DD-YYYY): " << book.getDateAdded() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "Wholesale Cost: " << book.getWholesale() << endl
<< "Retail Price: " << book.getRetail() << endl
<< "=====" << endl;
count++;
}
}
// TODO: Modify from 20 to a dynamic file.totalIndex() limit
}
void repWholesale() {
cout << "You selected Inventory Wholesale Value." << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory Wholesale Prices " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
double total = 0;
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "Wholesale Cost: " << book.getWholesale() << endl
<< "=====" << endl;
count++;
total += book.getWholesale() * book.getQty();
}
}
cout << "Total wholesale value of inventory: " << total << endl;
}
void repRetail() {
cout << "You selected Inventory Retail Value." << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory Retail Prices " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
double total = 0;
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "Retail Price: " << book.getRetail() << endl
<< "=====" << endl;
count++;
total += book.getRetail() * book.getQty();
}
}
cout << "Total retail value of inventory: " << total << endl;
}
/// change to reflect class
void repQty() {
cout << "You selected Listing By Quantity" << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory Book Quantities " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
descendingSort("quantity");
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "=====" << endl;
count++;
}
}
}
void repCost() {
cout << "You selected Listing By Cost" << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory Book Costs " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
descendingSort("wholesale");
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "Wholesale Cost: " << book.getWholesale() << endl
<< "=====" << endl;
count++;
}
}
}
void repAge() {
cout << "You selected Listing By Age." << endl << endl;
cout << setw(10) << " "
<< "Entire Inventory Date Added " << setw(10) << " " << endl
<< "Date: ";
coutTime();
cout << endl;
int count = 1;
descendingSort("date");
// descendingSortDate(&dateAdded[0], p);
for (int i = 0; i < file.totalIndex(); i++) {
book = file.readFile(book, i);
if (book.getTitle() != "\0") {
cout << endl << endl << "Book #" << count << endl;
cout << "=====" << endl
<< "Title: " << book.getTitle() << endl
<< "ISBN #: " << book.getISBN() << endl
<< "Quantity on Hand: " << book.getQty() << endl
<< "Date Added (MM-DD-YYYY): " << book.getDateAdded() << endl
<< "=====" << endl;
count++;
}
}
}
void coutTime() {
// code from https://www.tutorialspoint.com/cplusplus/cpp_date_time.htm
// current time
time_t now = time(0);
// convert now to string form
char *dt = ctime(&now);
cout << dt;
}
void descendingSort(string type) {
int max = 0;
BookData tempBook;
bool condition;
// using selection sort
for (int i = 0; i < file.totalIndex(); i++) {
max = i;
for (int j = i; j < file.totalIndex(); j++) {
tempBook = file.readFile(tempBook, j);
book = file.readFile(book, max);
if (type == "wholesale") {
condition = book.getWholesale() < tempBook.getWholesale();
}
if (type == "quantity") {
condition = book.getQty() < tempBook.getQty();
}
if (type == "date") {
string tempDate = tempBook.getDateAdded();
string date = book.getDateAdded();
tempDate = tempDate.substr(6, 4) + tempDate.substr(0, 2) +
tempDate.substr(3, 2);
date = date.substr(6, 4) + date.substr(0, 2) + date.substr(3, 2);
condition = date < tempDate;
}
if (condition) {
max = j;
}
}
tempBook = file.readFile(book, i);
book = file.readFile(book, max);
file.writeFile(book, i);
file.writeFile(tempBook, max);
}
} | [
"dumblole@gmail.com"
] | dumblole@gmail.com |
611d28c7357da8ed23588817c7fe5a6a3267ab56 | 782096588568ede3c248dbe7b4b51b41a1e23be3 | /om/include/svFile.h | baace16d0229692753c72f9b6b85783bd4d96e34 | [] | no_license | DMoumita/VParsER | 8549792e7a445df390fb9266d37986d33542ff7a | 0aad5c8cbabb68c62de7dfe08b294162e74edcdd | refs/heads/master | 2022-12-15T19:31:27.054559 | 2020-09-16T15:23:56 | 2020-09-16T15:23:56 | 294,357,227 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | h | #pragma once
// System Headers
#include <iostream>
#include <vector>
// OM Headers
#include <svBlockContext.h>
#include <svModule.h>
using namespace std;
class svFile : public svBase
, public svBlockContext
{
private:
vector<string> _modList;
public:
svFile(const std::string& fName = "");
virtual ~svFile() {}
void add(svModule* m);
virtual void decompile(std::ostream& os = std::cout) const;
};
| [
"moumita.it@gmail.com"
] | moumita.it@gmail.com |
eddc4d8204d9b0ba502b28069902e68215cbd6a7 | a26013ca9c2a25c73064c6ed2df70ca2c08c7d1b | /695_Max_Area_of_Island.cpp | fef67d98648c72844652627a58cb536770c6d095 | [] | no_license | yuexiuyawh/leetcode | b36ccea7a57806943bb5dfc130e574b76c513ac0 | f2287b7a0c14f7dad2e5f546e27d0f82b22930cc | refs/heads/master | 2021-01-21T19:44:50.028529 | 2018-03-08T14:34:19 | 2018-03-08T14:34:19 | 92,156,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 835 | cpp | class Solution {
public:
int max=0;
int sum=0;
void calculate(vector<vector<int>>& grid,int i,int j)
{
if(i>=grid.size()||i<0) return;
if(j>=grid[i].size()||j<0) return;
if(grid[i][j]!=0)
{
sum++;
grid[i][j]=0;
calculate(grid,i-1,j);
calculate(grid,i,j-1);
calculate(grid,i,j+1);
calculate(grid,i+1,j);
}
}
int maxAreaOfIsland(vector<vector<int>>& grid) {
for(int i=0;i!=grid.size();++i)
{
for(int j=0;j!=grid[i].size();++j)
{
if(grid[i][j]!=0)
{
calculate(grid,i,j);
max=max>sum?max:sum;
sum=0;
}
}
}
return max;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
fceb386624c8550877526bb0322838ba90194ec3 | ed7e1851605dc417f471b24bceaa4efe3ebd577e | /Export/mac64/cpp/release/obj/include/openfl/display3D/_Context3D/Context3DTelemetry_Impl_.h | 148848691557b0541ee01810bd1f94be08efb662 | [] | no_license | matthewswallace/StableUITest | 60d88c31540b07b68fc5867cb42901676012cf31 | 8ad46db8245bb8a9bc38b3525dfcdfe90c78b845 | refs/heads/master | 2021-01-12T14:41:07.354460 | 2016-10-26T23:13:43 | 2016-10-26T23:13:43 | 72,050,029 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 1,847 | h | // Generated by Haxe 3.3.0
#ifndef INCLUDED_openfl_display3D__Context3D_Context3DTelemetry_Impl_
#define INCLUDED_openfl_display3D__Context3D_Context3DTelemetry_Impl_
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS3(openfl,display3D,_Context3D,Context3DTelemetry_Impl_)
namespace openfl{
namespace display3D{
namespace _Context3D{
class HXCPP_CLASS_ATTRIBUTES Context3DTelemetry_Impl__obj : public hx::Object
{
public:
typedef hx::Object super;
typedef Context3DTelemetry_Impl__obj OBJ_;
Context3DTelemetry_Impl__obj();
public:
void __construct();
inline void *operator new(size_t inSize, bool inContainer=false,const char *inName="openfl.display3D._Context3D.Context3DTelemetry_Impl_")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,false,"openfl.display3D._Context3D.Context3DTelemetry_Impl_"); }
static hx::ObjectPtr< Context3DTelemetry_Impl__obj > __new();
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~Context3DTelemetry_Impl__obj();
HX_DO_RTTI_ALL;
static void __register();
::String __ToString() const { return HX_HCSTRING("Context3DTelemetry_Impl_","\x79","\xc7","\x89","\x6a"); }
static void __boot();
static Int DRAW_CALLS;
static Int COUNT_INDEX_BUFFER;
static Int COUNT_VERTEX_BUFFER;
static Int COUNT_TEXTURE;
static Int COUNT_TEXTURE_COMPRESSED;
static Int COUNT_PROGRAM;
static Int MEM_INDEX_BUFFER;
static Int MEM_VERTEX_BUFFER;
static Int MEM_TEXTURE;
static Int MEM_TEXTURE_COMPRESSED;
static Int MEM_PROGRAM;
static Int length;
};
} // end namespace openfl
} // end namespace display3D
} // end namespace _Context3D
#endif /* INCLUDED_openfl_display3D__Context3D_Context3DTelemetry_Impl_ */
| [
"matthew.wallace@riotgames.com"
] | matthew.wallace@riotgames.com |
42813adf4e6b297f4acd8abe3d226aa13a1a7893 | 17f1d3b525a73b7071f7cc12c21b90de8c508c56 | /include/caffe/layers/euclidean_loss_layer.hpp | 3bcdebe9fbc20ab5809608c4106c91cae08e4486 | [] | no_license | avBuffer/miniCaffe_ssd | 2486584a4ab04047b647eb7e1456478b461372f2 | f334d3df174cd9ce8dd66bba0ffec14edf26c3a7 | refs/heads/master | 2022-12-18T06:16:29.455642 | 2020-09-22T08:07:19 | 2020-09-22T08:07:19 | 297,577,851 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,168 | hpp | #ifndef CAFFE_EUCLIDEAN_LOSS_LAYER_HPP_
#define CAFFE_EUCLIDEAN_LOSS_LAYER_HPP_
#include <vector>
#include "caffe/blob.hpp"
#include "caffe/layer.hpp"
#include "caffe/proto/caffe.pb.h"
#include "caffe/layers/loss_layer.hpp"
namespace caffe {
/* @brief Computes the Euclidean (L2) loss @f$ E = \frac{1}{2N} \sum\limits_{n=1}^N \left| \left| \hat{y}_n - y_n
* \right| \right|_2^2 @f$ for real-valued regression tasks.
* @param bottom input Blob vector (length 2)
* -# @f$ (N \times C \times H \times W) @f$ the predictions @f$ \hat{y} \in [-\infty, +\infty]@f$
* -# @f$ (N \times C \times H \times W) @f$ the targets @f$ y \in [-\infty, +\infty]@f$
* @param top output Blob vector (length 1)
* -# @f$ (1 \times 1 \times 1 \times 1) @f$
* the computed Euclidean loss: @f$ E = \frac{1}{2n} \sum\limits_{n=1}^N \left| \left| \hat{y}_n - y_n \right| \right|_2^2 @f$
*
* This can be used for least-squares regression tasks. An InnerProductLayer
* input to a EuclideanLossLayer exactly formulates a linear least squares
* regression problem. With non-zero weight decay the problem becomes one of
* ridge regression -- see src/caffe/test/test_gradient_based_solver.cpp for a concrete
* example wherein we check that the gradients computed for a Net with exactly
* this structure match hand-computed gradient formulas for ridge regression.
*
* (Note: Caffe, and SGD in general, is certainly \b not the best way to solve
* linear least squares problems! We use it only as an instructive example.) */
template <typename Dtype>
class EuclideanLossLayer : public LossLayer<Dtype> {
public:
explicit EuclideanLossLayer(const LayerParameter& param) : LossLayer<Dtype>(param), diff_() {}
virtual void Reshape(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top);
virtual inline const char* type() const { return "EuclideanLoss"; }
/* Unlike most loss layers, in the EuclideanLossLayer we can backpropagate
* to both inputs -- override to return true and always allow force_backward. */
virtual inline bool AllowForceBackward(const int bottom_index) const { return true; }
protected:
/// @copydoc EuclideanLossLayer
virtual void Forward_cpu(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top);
/* @brief Computes the Euclidean error gradient w.r.t. the inputs.
*
* Unlike other children of LossLayer, EuclideanLossLayer \b can compute
* gradients with respect to the label inputs bottom[1] (but still only will
* if propagate_down[1] is set, due to being produced by learnable parameters
* or if force_backward is set). In fact, this layer is "commutative" -- the
* result is the same regardless of the order of the two bottoms.
*
* @param top output Blob vector (length 1), providing the error gradient with respect to the outputs
* -# @f$ (1 \times 1 \times 1 \times 1) @f$
* This Blob's diff will simply contain the loss_weight* @f$ \lambda @f$,
* as @f$ \lambda @f$ is the coefficient of this layer's output
* @f$\ell_i@f$ in the overall Net loss
* @f$ E = \lambda_i \ell_i + \mbox{other loss terms}@f$; hence
* @f$ \frac{\partial E}{\partial \ell_i} = \lambda_i @f$.
* (*Assuming that this top Blob is not used as a bottom (input) by any other layer of the Net.)
* @param propagate_down see Layer::Backward.
* @param bottom input Blob vector (length 2)
* -# @f$ (N \times C \times H \times W) @f$
* the predictions @f$\hat{y}@f$; Backward fills their diff with gradients @f$
* \frac{\partial E}{\partial \hat{y}} = \frac{1}{n} \sum\limits_{n=1}^N (\hat{y}_n - y_n)
* @f$ if propagate_down[0]
* -# @f$ (N \times C \times H \times W) @f$
* the targets @f$y@f$; Backward fills their diff with gradients
* @f$ \frac{\partial E}{\partial y} = \frac{1}{n} \sum\limits_{n=1}^N (y_n - \hat{y}_n)
* @f$ if propagate_down[1] */
virtual void Backward_cpu(const vector<Blob<Dtype>*>& top, const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom);
Blob<Dtype> diff_;
};
} // namespace caffe
#endif // CAFFE_EUCLIDEAN_LOSS_LAYER_HPP_
| [
"jalymo@126.com"
] | jalymo@126.com |
b394286b30cfdef1308b617fc956802c220c4153 | 352cb4854dceb281cfc79cbaedfe98fc3b192c8d | /PwmLed/SpeedColorProgramSettings.cpp | 9a4b3c96a4273ce5929abf2bb7f0a27cc2f32dc1 | [] | no_license | acckej/PwmLed | 8856e8f28fa0ecac60c5445b5b22e88067cf601d | 63458477888cbdb3dc1de62d297fd43cb6c56e2f | refs/heads/master | 2021-01-12T04:03:14.926716 | 2017-03-13T18:17:28 | 2017-03-13T18:17:28 | 77,481,307 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,416 | cpp | #include "SpeedColorProgramSettings.h"
#include "DataSerializationHelper.h"
#include "ErrorHandlingHelper.h"
SpeedColorProgramSettings::SpeedColorProgramSettings()
{
_distance = Distance;
_muBlue = MuBlue;
_sigmaBlue = SigmaBlue;
_sigmaRed = SigmaRed;
_sigmaGreen = SigmaGreen;
_muGreen = MuGreen;
_muRed = MuRed;
_notMovingDelay = NotMovingDelay;
_colorChangePeriod = ColorChangePeriod;
_blinkDelay = BlinkDelay;
_topSpeed = TopSpeed;
_idleDelay = IdleDelay;
}
SpeedColorProgramSettings::~SpeedColorProgramSettings()
{
}
void SpeedColorProgramSettings::FillFromBuffer(char* buffer)
{
unsigned char packetId = *buffer;
if(packetId != SpeedColorProgramPacketId)
{
ErrorHandlingHelper::HandleError("Invalid packet id: %i", packetId);
}
buffer += sizeof(SpeedColorProgramPacketId);
ArduinoSize dataSize = *buffer;
auto expected = GetDataSize();
if(dataSize != expected)
{
ErrorHandlingHelper::HandleError("Invalid data size: %i, expected %i", packetId, expected);
}
buffer += sizeof(expected);
_distance = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_blinkDelay = DataSerializationHelper<ArduinoInt>::GetDataFromArray(&buffer);
_colorChangePeriod = DataSerializationHelper<ArduinoInt>::GetDataFromArray(&buffer);
_idleDelay = DataSerializationHelper<ArduinoInt>::GetDataFromArray(&buffer);
_muBlue = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_muGreen = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_muRed = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_notMovingDelay = DataSerializationHelper<ArduinoInt>::GetDataFromArray(&buffer);
_sigmaBlue = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_sigmaGreen = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_sigmaRed = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
_topSpeed = DataSerializationHelper<ArduinoDouble>::GetDataFromArray(&buffer);
}
ArduinoSize SpeedColorProgramSettings::GetDataSize()
{
const auto result = sizeof(SpeedColorProgramPacketId)
+ sizeof(ArduinoSize)
+ sizeof(_distance)
+ sizeof(_blinkDelay)
+ sizeof(_colorChangePeriod)
+ sizeof(_idleDelay)
+ sizeof(_muBlue)
+ sizeof(_muGreen)
+ sizeof(_muRed)
+ sizeof(_notMovingDelay)
+ sizeof(_sigmaBlue)
+ sizeof(_sigmaGreen)
+ sizeof(_sigmaRed)
+ sizeof(_topSpeed);
return result;
}
void SpeedColorProgramSettings::WriteDataToBuffer(char* buffer)
{
buffer = DataSerializationHelper<unsigned char>::WriteDataToArray(buffer, SpeedColorProgramPacketId);
buffer = DataSerializationHelper<ArduinoSize>::WriteDataToArray(buffer, GetDataSize());
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _distance);
buffer = DataSerializationHelper<ArduinoInt>::WriteDataToArray(buffer, _blinkDelay);
buffer = DataSerializationHelper<ArduinoInt>::WriteDataToArray(buffer, _colorChangePeriod);
buffer = DataSerializationHelper<ArduinoInt>::WriteDataToArray(buffer, _idleDelay);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _muBlue);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _muGreen);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _muRed);
buffer = DataSerializationHelper<ArduinoInt>::WriteDataToArray(buffer, _notMovingDelay);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _sigmaBlue);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _sigmaGreen);
buffer = DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _sigmaRed);
DataSerializationHelper<ArduinoDouble>::WriteDataToArray(buffer, _topSpeed);
}
ArduinoDouble SpeedColorProgramSettings::GetDistance() const
{
return _distance;
}
ArduinoDouble SpeedColorProgramSettings::GetTopSpeed() const
{
return _topSpeed;
}
ArduinoInt SpeedColorProgramSettings::GetNotMovingDelay() const
{
return _notMovingDelay;
}
ArduinoInt SpeedColorProgramSettings::GetColorChangePeriod() const
{
return _colorChangePeriod;
}
ArduinoInt SpeedColorProgramSettings::GetBlinkDelay() const
{
return _blinkDelay;
}
ArduinoInt SpeedColorProgramSettings::GetIdleDelay() const
{
return _idleDelay;
}
ArduinoDouble SpeedColorProgramSettings::GetMuGreen() const
{
return _muGreen;
}
ArduinoDouble SpeedColorProgramSettings::GetMuRed() const
{
return _muRed;
}
ArduinoDouble SpeedColorProgramSettings::GetMuBlue() const
{
return _muBlue;
}
ArduinoDouble SpeedColorProgramSettings::GetSigmaGreen() const
{
return _sigmaGreen;
}
ArduinoDouble SpeedColorProgramSettings::GetSigmaRed() const
{
return _sigmaRed;
}
ArduinoDouble SpeedColorProgramSettings::GetSigmaBlue() const
{
return _sigmaBlue;
}
void SpeedColorProgramSettings::SetData(ArduinoDouble distance,
ArduinoDouble topSpeed,
ArduinoInt notMovingDelay,
ArduinoInt colorChangePeriod,
ArduinoInt blinkDelay,
ArduinoInt idleDelay,
ArduinoDouble muRed,
ArduinoDouble muGreen,
ArduinoDouble muBlue,
ArduinoDouble sigmaRed,
ArduinoDouble sigmaGreen,
ArduinoDouble sigmaBlue)
{
_distance = distance;
_topSpeed = topSpeed;
_notMovingDelay = notMovingDelay;
_colorChangePeriod = colorChangePeriod;
_blinkDelay = blinkDelay;
_idleDelay = idleDelay;
_muRed = muRed;
_muGreen = muGreen;
_muBlue = muBlue;
_sigmaRed = sigmaRed;
_sigmaGreen = sigmaGreen;
_sigmaBlue = sigmaBlue;
}
| [
"Acckej@DION"
] | Acckej@DION |
ab78a2f81145e7d7aeddee7484428ed7f85bc734 | 185d1d3afb894d419709d2a80ed9d325d9ab66d4 | /FS/5_a_mergesort.CPP | fff89d5fa9139b34010677e244d24621614957ef | [] | no_license | mahesh001/Myds-program | 9022f101392cb0dc8f3fc667ae6969d67cc372b6 | fd2d7f5039e777c03ae7e71a3a4c26e2a93f6816 | refs/heads/master | 2021-01-17T07:47:11.717396 | 2017-03-03T17:07:41 | 2017-03-03T17:07:41 | 83,792,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,642 | cpp | // Program that sorts an array using merge sort
#include <iostream>
using namespace std;
const int MAX = 10 ;
class array
{
private :
int *arr ;
int size ;
int count ;
public :
array( ) ;
array ( int sz ) ;
void add ( int num ) ;
void display( ) ;
static void sort ( int *a, int sz ) ;
void merge ( array &a, array &b ) ;
~array( ) ;
} ;
// initializes data member
array :: array( )
{
count = size = 0 ;
arr = NULL ;
}
// initialises data member
array :: array( int sz )
{
count = 0 ;
size = sz ;
arr = new int[sz] ;
}
// adds a new element to the array
void array :: add ( int num )
{
if ( count < size )
{
arr[count] = num ;
count++ ;
}
else
cout << "\nArray is full" << endl ;
}
// displays elements in an array
void array :: display( )
{
for ( int i = 0 ; i < count ; i++ )
cout << arr[i] << "\t" ;
cout << endl ;
}
// merges two arrays
void array :: merge ( array &a, array &b )
{
sort ( a.arr, a.size ) ;
sort ( b.arr, b.size ) ;
size = a.count + b.count ;
arr = new int[size] ;
int i, j, k ;
for ( i = j = k = 0 ; j < a.count || k < b.count ; )
{
if ( a.arr[j] <= b.arr[k] )
arr[i++] = a.arr[j++] ;
else
arr[i++] = b.arr[k++] ;
count++ ;
if ( j == a.count || k == b.count )
break ;
}
for ( ; j < a.count ; )
{
arr[i++] = a.arr[j++] ;
count++ ;
}
for ( ; k < b.count ; )
{
arr[i++] = b.arr[k++] ;
count++ ;
}
}
// sorts an array
void array :: sort ( int *a, int sz )
{
int temp ;
for ( int i = 0 ; i <= sz - 2 ; i++ )
{
for ( int j = i + 1 ; j <= sz - 1 ; j++ )
{
if ( a[i] > a[j] )
{
temp = a[i] ;
a[i] = a[j] ;
a[j] = temp ;
}
}
}
}
// deallocates memory
array :: ~array( )
{
delete arr ;
}
int main( )
{
array a ( MAX ) ;
cout << "\nMerge sort.\n" ;
int choice;
cout<<"Enter number of elements - array 1 : ";
cin>>choice;
cout<<"Enter "<<choice<<" numbers:\n";
for(int i=0;i<choice;i++)
{
int num;
cin>>num;
a.add(num);
}
cout << "\nFirst array: " << endl ;
a.display( ) ;
array b ( MAX ) ;
cout<<"Enter number of elements - array 2 : ";
cin>>choice;
cout<<"Enter "<<choice<<" numbers:\n";
for(int i=0;i<choice;i++)
{
int num;
cin>>num;
b.add(num);
}
cout << "\nSecond array: " << endl ;
b.display( ) ;
array c;
c.merge ( a, b ) ;
cout << "\nArray after sorting: " <<endl;
c.display( ) ;
return 0;
}
| [
"mahesh001"
] | mahesh001 |
c0bd17ff6665b1e8e97b1ee2a99ed2c3173deda4 | 5a10b684ced887223f64e09f2cba9060cbc34c7f | /Lesson2/src/main.cpp | edf05b26c855a2a4bf6a84400e032fb6026a9e3b | [
"MIT"
] | permissive | clarck/TwinklebearDev-Lessons | 82ab4a52be8ef6c241a06502a27a4499610f5bf5 | 33a5c8c70a02036b1d602f66b62e14b9a3cafa23 | refs/heads/master | 2021-01-16T19:56:51.769099 | 2014-07-28T23:36:32 | 2014-07-28T23:36:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,964 | cpp | #include <string>
#include <iostream>
#include <SDL.h>
#include "res_path.h"
#include "cleanup.h"
/*
* Lesson 2: Don't Put Everything in Main
*/
//Screen attributes
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
/*
* Log an SDL error with some error message to the output stream of our choice
* @param os The output stream to write the message too
* @param msg The error message to write, format will be msg error: SDL_GetError()
*/
void logSDLError(std::ostream &os, const std::string &msg){
os << msg << " error: " << SDL_GetError() << std::endl;
}
/*
* Loads a BMP image into a texture on the rendering device
* @param file The BMP image file to load
* @param ren The renderer to load the texture onto
* @return the loaded texture, or nullptr if something went wrong.
*/
SDL_Texture* loadTexture(const std::string &file, SDL_Renderer *ren){
SDL_Texture *texture = nullptr;
//Load the image
SDL_Surface *loadedImage = SDL_LoadBMP(file.c_str());
//If the loading went ok, convert to texture and return the texture
if (loadedImage != nullptr){
texture = SDL_CreateTextureFromSurface(ren, loadedImage);
SDL_FreeSurface(loadedImage);
//Make sure converting went ok too
if (texture == nullptr){
logSDLError(std::cout, "CreateTextureFromSurface");
}
}
else {
logSDLError(std::cout, "LoadBMP");
}
return texture;
}
/*
* Draw an SDL_Texture to an SDL_Renderer at position x, y, preserving
* the texture's width and height
* @param tex The source texture we want to draw
* @param ren The renderer we want to draw too
* @param x The x coordinate to draw too
* @param y The y coordinate to draw too
*/
void renderTexture(SDL_Texture *tex, SDL_Renderer *ren, int x, int y){
//Setup the destination rectangle to be at the position we want
SDL_Rect dst;
dst.x = x;
dst.y = y;
//Query the texture to get its width and height to use
SDL_QueryTexture(tex, NULL, NULL, &dst.w, &dst.h);
SDL_RenderCopy(ren, tex, NULL, &dst);
}
int main(int argc, char** argv){
//Start up SDL and make sure it went ok
if (SDL_Init(SDL_INIT_EVERYTHING) != 0){
logSDLError(std::cout, "SDL_Init");
return 1;
}
//Setup our window and renderer
SDL_Window *window = SDL_CreateWindow("Lesson 2", 100, 100, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
if (window == nullptr){
logSDLError(std::cout, "CreateWindow");
SDL_Quit();
return 2;
}
SDL_Renderer *renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
if (renderer == nullptr){
logSDLError(std::cout, "CreateRenderer");
cleanup(window);
SDL_Quit();
return 3;
}
//The textures we'll be using
const std::string resPath = getResourcePath("Lesson2");
SDL_Texture *background = loadTexture(resPath + "background.bmp", renderer);
SDL_Texture *image = loadTexture(resPath + "image.bmp", renderer);
//Make sure they both loaded ok
if (background == nullptr || image == nullptr){
cleanup(background, image, renderer, window);
SDL_Quit();
return 4;
}
//Clear the window
SDL_RenderClear(renderer);
//Get the width and height from the texture so we know how much to move x,y by
//to tile it correctly
int bW, bH;
SDL_QueryTexture(background, NULL, NULL, &bW, &bH);
//We want to tile our background so draw it 4 times
renderTexture(background, renderer, 0, 0);
renderTexture(background, renderer, bW, 0);
renderTexture(background, renderer, 0, bH);
renderTexture(background, renderer, bW, bH);
//Draw our image in the center of the window
//We need the foreground image's width to properly compute the position
//of it's top left corner so that the image will be centered
int iW, iH;
SDL_QueryTexture(image, NULL, NULL, &iW, &iH);
int x = SCREEN_WIDTH / 2 - iW / 2;
int y = SCREEN_HEIGHT / 2 - iH / 2;
renderTexture(image, renderer, x, y);
//Update the screen
SDL_RenderPresent(renderer);
SDL_Delay(2000);
cleanup(background, image, renderer, window);
SDL_Quit();
return 0;
}
| [
"willusher.life@gmail.com"
] | willusher.life@gmail.com |
2347ad541f9c9ec71bd935178a49c414f3c6af4e | 98b6b3063c80b82175a1ebe2f0ab35b026967481 | /AtCoder/abc104/A.cpp | 21e4ed8f6b7adb95fcef67c8a87a0ec075685752 | [
"MIT"
] | permissive | AakashPawanGPS/competitive-programming | 02c6f8a2ad55c7274f0d4aa668efe75ee9f39859 | b2f1ad3a258c00da71e468316f020a88df5d8872 | refs/heads/master | 2023-05-27T14:32:01.669785 | 2021-06-14T04:17:09 | 2021-06-14T04:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | cpp | #pragma GCC optimize("O3")
#pragma GCC target("sse4")
#include <bits/stdc++.h>
using namespace std;
#define deb(x) cout << #x << " is " << x << "\n"
#define int long long
#define mod 1000000007
#define PI acos(-1)
template <typename T>
using min_heap = priority_queue<T, vector<T>, greater<T>>;
template <typename T>
using max_heap = priority_queue<T>;
template <typename... T>
void read(T &... args) {
((cin >> args), ...);
}
template <typename... T>
void write(T &&... args) {
((cout << args), ...);
}
template <typename T>
void readContainer(T &t) {
for (auto &e : t) read(e);
}
template <typename T>
void writeContainer(T &t) {
for (const auto &e : t) write(e, " ");
write("\n");
}
void solve(int tc) {
int r;
read(r);
if (r < 1200) {
write("ABC");
} else if (r < 2800) {
write("ARC");
} else {
write("AGC");
}
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// #ifndef ONLINE_JUDGE
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
// #endif
int tc = 1;
// read(tc);
for (int curr = 1; curr <= tc; curr++) solve(curr);
return 0;
} | [
"thedevelopersanjeev@gmail.com"
] | thedevelopersanjeev@gmail.com |
b1c6bb29ca4982f988fbc6433e61612d5fcd7263 | e27ee7161190d8ba19e1865f9e4ff11bc5fb94df | /week3/calculator.cpp | 04e070575f96d1038e50c1d06ffb2026e855776a | [] | no_license | HarshTripathih/lpu_kuc22rg | 2462ec289536acbd43e48d8c1bc028d0341f5e5b | 7859cbbfd704abebdf4f3a671304663de70cfb51 | refs/heads/main | 2023-04-12T00:26:21.195243 | 2021-05-06T04:46:28 | 2021-05-06T04:46:28 | 365,181,800 | 0 | 0 | null | 2021-05-07T09:26:08 | 2021-05-07T09:26:07 | null | UTF-8 | C++ | false | false | 441 | cpp | #include<bits/stdc++.h>
using namespace std;
class Calculator{
public:
double power_to(double a, double b){
return pow(a,b);
}
};
int main(){
double a,b;
char op;
cin>>a>>op>>b;
Calculator calc;
switch (op){
case '+':
break;
case '^':
cout<<"a^b = "<<calc.power_to(a,b)<<endl;
break;
default:
break;
}
return 0;
} | [
"kartavya.kothari24@gmail.com"
] | kartavya.kothari24@gmail.com |
bb2d7fbe0198d9b77d1d87947ccf2aa346c90c52 | c04cc65f3edc9dbc718cd8473a48ee6ede96176a | /CodeEETask1/MagicFunction.cpp | c886432cb0eaa7d27ac15bf2e86781f16952cfe0 | [] | no_license | ihsanahmed92/CodeEE | 3f182e349e7343348cf2fc9b8ca2a839d63f3aee | 6673cf8ba81494c9f722fd22cf4d88b1906a3d23 | refs/heads/main | 2023-01-21T18:19:23.484700 | 2020-11-27T13:57:36 | 2020-11-27T13:57:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 614 | cpp | #include <iostream>
using namespace std;
#include "MagicFunction.h"
MagicFunction::MagicFunction()
{
//ctor
}
MagicFunction::~MagicFunction()
{
//dtor
}
void MagicFunction::showMagic(){
cout << ".....|||||||||||||....."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
cout << ".........|||||........."<<endl;
}
| [
"chezhek97@gmail.com"
] | chezhek97@gmail.com |
1072b342d420d731447ccb8105b13920e908fdae | e645ebf3b5177eb0ebedb7f239bd6e1b40bf1b07 | /packages/daf_persistence/include/lsst/daf/persistence/FitsStorage.h | d6f0c2438e54dbd8af329c9e0a66d7c6ac79f4b8 | [] | no_license | lsst-dm/bp | e095cdb7412124fef39bdd8428fce70bbf0f462a | 31c0b65866d06a09575a53d0dd558320e6994a06 | refs/heads/main | 2023-07-22T11:32:48.479329 | 2023-07-10T00:30:32 | 2023-07-10T00:30:32 | 37,212,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,089 | h | // -*- lsst-c++ -*-
/*
* LSST Data Management System
* Copyright 2008, 2009, 2010 LSST Corporation.
*
* This product includes software developed by the
* LSST Project (http://www.lsst.org/).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the LSST License Statement and
* the GNU General Public License along with this program. If not,
* see <http://www.lsstcorp.org/LegalNotices/>.
*/
#ifndef LSST_MWI_PERSISTENCE_FITSSTORAGE_H
#define LSST_MWI_PERSISTENCE_FITSSTORAGE_H
/** @file
* @ingroup daf_persistence
*
* @brief Interface for FitsStorage class
*
* @author Kian-Tat Lim (ktl@slac.stanford.edu)
* @version $Revision$
* @date $Date$
*/
/** @class lsst::daf::persistence::FitsStorage
* @brief Class for FITS file storage.
*
* Merely maintains pathname and HDU number for Formatter subclasses to use.
*
* @ingroup daf_persistence
*/
#include "lsst/daf/persistence/Storage.h"
namespace lsst {
namespace daf {
namespace persistence {
class FitsStorage : public Storage {
public:
typedef boost::shared_ptr<FitsStorage> Ptr;
FitsStorage(void);
virtual ~FitsStorage(void);
virtual void setPolicy(lsst::pex::policy::Policy::Ptr policy);
virtual void setPersistLocation(LogicalLocation const& location);
virtual void setRetrieveLocation(LogicalLocation const& location);
virtual void startTransaction(void);
virtual void endTransaction(void);
virtual std::string const& getPath(void);
virtual int getHdu(void);
private:
std::string _path;
int _hdu;
};
}}} // lsst::daf::persistence
#endif
| [
"jbosch@git.lsstcorp.org"
] | jbosch@git.lsstcorp.org |
1dd39b19a20a6d3c7380af476aaa0a880037c96a | 241a25105b2d44b8e8ef1564c04de6ba3001040c | /completed-projects/gradebook/fig05_11.cpp | ca076620423e5a22a3045f31a1425173fa4c5412 | [] | no_license | amdiaznyc/My-Cpp-Projects | e6cc9d49df8d6916e8ef7badf4f38ed14b3b4231 | 357e4e23898d35b7f13f1738dd0619ef376973ed | refs/heads/master | 2022-12-30T09:10:38.069746 | 2020-10-24T01:33:20 | 2020-10-24T01:33:20 | 294,535,984 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | // Fig. 5.11: fig05_11.cpp
// Create GradeBook object, input grades and display grade report.
#include "GradeBook.h" // include definition of class GradeBook
int main()
{
// create GradeBook object
GradeBook myGradeBook( "CS101 C++ Programming" );
myGradeBook.displayMessage(); // display welcome message
myGradeBook.inputGrades(); // read grades from user
myGradeBook.displayGradeReport(); // display report based on grades
} // end main
| [
"amdiaznyc@gmail.com"
] | amdiaznyc@gmail.com |
06260d358c699f40b7642a75c61fa4a23e7789ff | a3cfb0dc62a7cb68146929779db8c65ccd4a0f8f | /WebMicrocontroller/lib/SocketIOClient/SocketIOClient.cpp | 5186025465940a21a924782290a419190e677084 | [] | no_license | LikeClockwork/MoNET-Hardware | 718b09252aae78a83a51786e6dd2cf1c0d044003 | 26c5ceebda1d327b0d953c10895d58e29b0a887c | refs/heads/master | 2021-04-29T01:41:18.090108 | 2016-12-31T16:23:00 | 2016-12-31T16:23:00 | 77,747,409 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,530 | cpp | /*
socket.io-arduino-client: a Socket.IO client for the Arduino
Based on the Kevin Rohling WebSocketClient & Bill Roy Socket.io Lbrary
Copyright 2015 Florent Vidal
Supports Socket.io v1.x
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#define ESP8266
#include <SocketIOClient.h>
String tmpdata = ""; //External variables
String RID = "";
String Rname = "";
String Rcontent = "";
bool SocketIOClient::connect(char thehostname[], int theport) {
if (!client.connect(thehostname, theport)) return false;
hostname = thehostname;
port = theport;
sendHandshake(hostname);
return readHandshake();
}
bool SocketIOClient::connectHTTP(char thehostname[], int theport) {
if (!client.connect(thehostname, theport)) return false;
hostname = thehostname;
port = theport;
return true;
}
bool SocketIOClient::reconnect(char thehostname[], int theport)
{
if (!client.connect(thehostname, theport)) return false;
hostname = thehostname;
port = theport;
sendHandshake(hostname);
return readHandshake();
}
bool SocketIOClient::connected() {
return client.connected();
}
void SocketIOClient::disconnect() {
client.stop();
}
// find the nth colon starting from dataptr
void SocketIOClient::findColon(char which) {
while (*dataptr) {
if (*dataptr == ':') {
if (--which <= 0) return;
}
++dataptr;
}
}
// terminate command at dataptr at closing double quote
void SocketIOClient::terminateCommand(void) {
dataptr[strlen(dataptr) - 3] = 0;
}
void SocketIOClient::parser(int index) {
String rcvdmsg = "";
int sizemsg = databuffer[index + 1]; // 0-125 byte, index ok Fix provide by Galilei11. Thanks
if (databuffer[index + 1]>125)
{
sizemsg = databuffer[index + 2]; // 126-255 byte
index += 1; // index correction to start
}
Serial.print("Message size = "); //Can be used for debugging
Serial.println(sizemsg); //Can be used for debugging
for (int i = index + 2; i < index + sizemsg + 2; i++)
rcvdmsg += (char)databuffer[i];
Serial.print("Received message = "); //Can be used for debugging
Serial.println(rcvdmsg); //Can be used for debugging
switch (rcvdmsg[0])
{
case '2':
Serial.println("Ping received - Sending Pong");
heartbeat(1);
break;
case '3':
Serial.println("Pong received - All good");
break;
case '4':
switch (rcvdmsg[1])
{
case '0':
Serial.println("Upgrade to WebSocket confirmed");
break;
case '2':
RID = rcvdmsg.substring(4, rcvdmsg.indexOf("\","));
Rname = rcvdmsg.substring(rcvdmsg.indexOf("\",") + 4, rcvdmsg.indexOf("\":"));
Rcontent = rcvdmsg.substring(rcvdmsg.indexOf("\":") + 3, rcvdmsg.indexOf("\"}"));
//Serial.println("RID = " + RID);
//Serial.println("Rname = " + Rname);
//Serial.println("Rcontent = " + Rcontent);
Serial.println(rcvdmsg);
break;
}
}
}
bool SocketIOClient::monitor() {
int index = -1;
int index2 = -1;
String tmp = "";
*databuffer = 0;
if (!client.connected()) {
if (!client.connect(hostname, port)) return 0;
}
if (!client.available())
{
return 0;
}
char which;
while (client.available()) {
readLine();
tmp = databuffer;
Serial.println(databuffer);
dataptr = databuffer;
index = tmp.indexOf((char)129); //129 DEC = 0x81 HEX = sent for proper communication
index2 = tmp.indexOf((char)129, index + 1);
/*Serial.print("Index = "); //Can be used for debugging
Serial.print(index);
Serial.print(" & Index2 = ");
Serial.println(index2);*/
if (index != -1)
{
parser(index);
}
if (index2 != -1)
{
parser(index2);
}
}
return 1;
}
void SocketIOClient::sendHandshake(char hostname[]) {
client.println(F("GET /socket.io/1/?transport=polling&b64=true HTTP/1.1"));
client.print(F("Host: "));
client.println(hostname);
client.println(F("Origin: Arduino\r\n"));
}
bool SocketIOClient::waitForInput(void) {
unsigned long now = millis();
while (!client.available() && ((millis() - now) < 30000UL)) { ; }
return client.available();
}
void SocketIOClient::eatHeader(void) {
while (client.available()) { // consume the header
readLine();
if (strlen(databuffer) == 0) break;
}
}
bool SocketIOClient::readHandshake() {
if (!waitForInput()) return false;
// check for happy "HTTP/1.1 200" response
readLine();
if (atoi(&databuffer[9]) != 200) {
while (client.available()) readLine();
client.stop();
return false;
}
eatHeader();
readLine();
String tmp = databuffer;
int sidindex = tmp.indexOf("sid");
int sidendindex = tmp.indexOf("\"", sidindex + 6);
int count = sidendindex - sidindex - 6;
for (int i = 0; i < count; i++)
{
sid[i] = databuffer[i + sidindex + 6];
}
Serial.println(" ");
Serial.print(F("Connected. SID="));
Serial.println(sid); // sid:transport:timeout
while (client.available()) readLine();
client.stop();
delay(1000);
// reconnect on websocket connection
if (!client.connect(hostname, port)) {
Serial.print(F("Websocket failed."));
return false;
}
//Serial.println(F("Connecting via Websocket"));
client.print(F("GET /socket.io/1/websocket/?transport=websocket&b64=true&sid="));
client.print(sid);
client.print(F(" HTTP/1.1\r\n"));
client.print(F("Host: "));
client.print(hostname);
client.print("\r\n");
client.print(F("Origin: ArduinoSocketIOClient\r\n"));
client.print(F("Sec-WebSocket-Key: "));
client.print(sid);
client.print("\r\n");
client.print(F("Sec-WebSocket-Version: 13\r\n"));
client.print(F("Upgrade: websocket\r\n")); // must be camelcase ?!
client.println(F("Connection: Upgrade\r\n"));
if (!waitForInput()) return false;
readLine();
if (atoi(&databuffer[9]) != 101) { // check for "HTTP/1.1 101 response, means Updrage to Websocket OK
while (client.available()) readLine();
client.stop();
return false;
}
readLine();
readLine();
readLine();
for (int i = 0; i < 28; i++)
{
key[i] = databuffer[i + 22]; //key contains the Sec-WebSocket-Accept, could be used for verification
}
eatHeader();
/*
Generating a 32 bits mask requiered for newer version
Client has to send "52" for the upgrade to websocket
*/
randomSeed(analogRead(0));
String mask = "";
String masked = "52";
String message = "52";
for (int i = 0; i < 4; i++) //generate a random mask, 4 bytes, ASCII 0 to 9
{
char a = random(48, 57);
mask += a;
}
for (int i = 0; i < message.length(); i++)
masked[i] = message[i] ^ mask[i % 4]; //apply the "mask" to the message ("52")
client.print((char)0x81); //has to be sent for proper communication
client.print((char)130); //size of the message (2) + 128 because message has to be masked
client.print(mask);
client.print(masked);
monitor(); // treat the response as input
return true;
}
void SocketIOClient::getREST(String path)
{
String message = "GET /" + path + "/ HTTP/1.1";
client.println(message);
client.print(F("Host: "));
client.println(hostname);
client.println(F("Origin: Arduino"));
client.println(F("Connection: close\r\n"));
}
void SocketIOClient::postREST(String path, String type, String data)
{
String message = "POST /" + path + "/ HTTP/1.1";
client.println(message);
client.print(F("Host: "));
client.println(hostname);
client.println(F("Origin: Arduino"));
client.println(F("Connection: close\r\n"));
client.print(F("Content-Length: "));
client.println(data.length());
client.print(F("Content-Type: "));
client.println(type);
client.println("\r\n");
client.println(data);
}
void SocketIOClient::putREST(String path, String type, String data)
{
String message = "PUT /" + path + "/ HTTP/1.1";
client.println(message);
client.print(F("Host: "));
client.println(hostname);
client.println(F("Origin: Arduino"));
client.println(F("Connection: close\r\n"));
client.print(F("Content-Length: "));
client.println(data.length());
client.print(F("Content-Type: "));
client.println(type);
client.println("\r\n");
client.println(data);
}
void SocketIOClient::deleteREST(String path)
{
String message = "DELETE /" + path + "/ HTTP/1.1";
client.println(message);
client.print(F("Host: "));
client.println(hostname);
client.println(F("Origin: Arduino"));
client.println(F("Connection: close\r\n"));
}
void SocketIOClient::readLine() {
for (int i = 0; i < DATA_BUFFER_LEN; i++)
databuffer[i] = ' ';
dataptr = databuffer;
while (client.available() && (dataptr < &databuffer[DATA_BUFFER_LEN - 2]))
{
char c = client.read();
Serial.print(c); //Can be used for debugging
if (c == 0) Serial.print("");
else if (c == 255) Serial.println("");
else if (c == '\r') { ; }
else if (c == '\n') break;
else *dataptr++ = c;
}
*dataptr = 0;
}
void SocketIOClient::send(String RID, String Rname, String Rcontent) {
String message = "42[\"" + RID + "\",{\"" + Rname + "\":\"" + Rcontent + "\"}]";
int header[10];
header[0] = 0x81;
int msglength = message.length();
randomSeed(analogRead(0));
String mask = "";
String masked = message;
for (int i = 0; i < 4; i++)
{
char a = random(48, 57);
mask += a;
}
for (int i = 0; i < msglength; i++)
masked[i] = message[i] ^ mask[i % 4];
client.print((char)header[0]); //has to be sent for proper communication
//Depending on the size of the message
if (msglength <= 125)
{
header[1] = msglength + 128;
client.print((char)header[1]); //size of the message + 128 because message has to be masked
}
else if (msglength >= 126 && msglength <= 65535)
{
header[1] = 126 + 128;
client.print((char)header[1]);
header[2] = (msglength >> 8) & 255;
client.print((char)header[2]);
header[3] = (msglength)& 255;
client.print((char)header[3]);
}
else
{
header[1] = 127 + 128;
client.print((char)header[1]);
header[2] = (msglength >> 56) & 255;
client.print((char)header[2]);
header[3] = (msglength >> 48) & 255;
client.print((char)header[4]);
header[4] = (msglength >> 40) & 255;
client.print((char)header[4]);
header[5] = (msglength >> 32) & 255;
client.print((char)header[5]);
header[6] = (msglength >> 24) & 255;
client.print((char)header[6]);
header[7] = (msglength >> 16) & 255;
client.print((char)header[7]);
header[8] = (msglength >> 8) & 255;
client.print((char)header[8]);
header[9] = (msglength)& 255;
client.print((char)header[9]);
}
client.print(mask);
client.print(masked);
}
void SocketIOClient::sendJSON(String RID, String JSON) {
String message = "42[\"" + RID + "\"," + JSON + "]";
int header[10];
header[0] = 0x81;
int msglength = message.length();
randomSeed(analogRead(0));
String mask = "";
String masked = message;
for (int i = 0; i < 4; i++)
{
char a = random(48, 57);
mask += a;
}
for (int i = 0; i < msglength; i++)
masked[i] = message[i] ^ mask[i % 4];
client.print((char)header[0]); //has to be sent for proper communication
//Depending on the size of the message
if (msglength <= 125)
{
header[1] = msglength + 128;
client.print((char)header[1]); //size of the message + 128 because message has to be masked
}
else if (msglength >= 126 && msglength <= 65535)
{
header[1] = 126 + 128;
client.print((char)header[1]);
header[2] = (msglength >> 8) & 255;
client.print((char)header[2]);
header[3] = (msglength)& 255;
client.print((char)header[3]);
}
else
{
header[1] = 127 + 128;
client.print((char)header[1]);
header[2] = (msglength >> 56) & 255;
client.print((char)header[2]);
header[3] = (msglength >> 48) & 255;
client.print((char)header[4]);
header[4] = (msglength >> 40) & 255;
client.print((char)header[4]);
header[5] = (msglength >> 32) & 255;
client.print((char)header[5]);
header[6] = (msglength >> 24) & 255;
client.print((char)header[6]);
header[7] = (msglength >> 16) & 255;
client.print((char)header[7]);
header[8] = (msglength >> 8) & 255;
client.print((char)header[8]);
header[9] = (msglength)& 255;
client.print((char)header[9]);
}
client.print(mask);
client.print(masked);
}
void SocketIOClient::heartbeat(int select) {
randomSeed(analogRead(0));
String mask = "";
String masked = "";
String message = "";
if (select == 0)
{
masked = "2";
message = "2";
}
else
{
masked = "3";
message = "3";
}
for (int i = 0; i < 4; i++) //generate a random mask, 4 bytes, ASCII 0 to 9
{
char a = random(48, 57);
mask += a;
}
for (int i = 0; i < message.length(); i++)
masked[i] = message[i] ^ mask[i % 4]; //apply the "mask" to the message ("2" : ping or "3" : pong)
client.print((char)0x81); //has to be sent for proper communication
client.print((char)129); //size of the message (1) + 128 because message has to be masked
client.print(mask);
client.print(masked);
}
| [
"jack@likeclockworkdesign.com"
] | jack@likeclockworkdesign.com |
0f2ef6f6124298e6c53eba0a765f8cb7fa81dcc4 | 314c9de1a7afce3bb2297f5c3c9e525f0217506c | /engine/src/bard/renderer/buffer/Buffer.h | 826bff1c2a646d8c785807aa4d35fc03b9a2b113 | [
"Apache-2.0"
] | permissive | baard047/bard_engine | 49339f26339fbee7d196cb9d4c80bc787fe4b5db | 595d5e35faf2f59a84a4f70e952caa8ca322093b | refs/heads/main | 2023-03-13T00:14:22.527524 | 2021-02-26T19:27:53 | 2021-02-26T19:27:53 | 323,061,102 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,386 | h | /*
* \file Buffer.h
* \copyright (C) 2021 Special Technological Center Ltd
* \author : Bardashevsky A.K.
* \date : 06.01.2021
* \time : 15:18
*/
#pragma once
#include <memory>
#include "Layout.h"
namespace bard {
class VertexBuffer
{
public:
using Ptr = std::shared_ptr< VertexBuffer >;
public:
static VertexBuffer::Ptr create( uint32_t size );
static VertexBuffer::Ptr create( float * vertices, uint32_t size );
static VertexBuffer::Ptr create( float * vertices, uint32_t size, BufferLayout && layout );
virtual ~VertexBuffer() = default;
virtual void bind() const = 0;
virtual void unbind() const = 0;
virtual void setData( const void * data, uint32_t size ) = 0;
inline const BufferLayout & layout() const noexcept
{
return m_layout;
}
inline void setLayout( BufferLayout && layout ) noexcept
{
m_layout = std::move( layout );
}
private:
template< class ... Args >
static VertexBuffer::Ptr createImpl( Args && ... args );
protected:
BufferLayout m_layout;
};
class IndexBuffer
{
public:
using Ptr = std::shared_ptr< IndexBuffer >;
public:
static IndexBuffer::Ptr create( uint32_t * indices, uint32_t count );
virtual ~IndexBuffer() = default;
virtual void bind() const = 0;
virtual void unbind() const = 0;
virtual uint32_t getCount() const = 0;
};
}
| [
"baard047@gmail.com"
] | baard047@gmail.com |
4289cc74f2ecd5ce0baa0fe59330b0ba85de668d | 38ee6f680bca3ff407a56566ebfb1aa7c0bc55bf | /TestUpdateUI/TestUpdateUI.cpp | 8eba94cd806d5618ae477212817b172a4bcced3a | [] | no_license | eternalmr/MFCApplication1 | e66185ad5232eebda5a8c886555516498ee164ea | e355b03afd251601f13a5a8b1ee5330049596514 | refs/heads/master | 2021-02-14T05:46:31.094258 | 2020-03-09T10:01:03 | 2020-03-09T10:01:03 | 244,776,916 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,631 | cpp |
// TestUpdateUI.cpp: 定义应用程序的类行为。
//
#include "pch.h"
#include "framework.h"
#include "afxwinappex.h"
#include "afxdialogex.h"
#include "TestUpdateUI.h"
#include "MainFrm.h"
#include "TestUpdateUIDoc.h"
#include "TestUpdateUIView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CTestUpdateUIApp
BEGIN_MESSAGE_MAP(CTestUpdateUIApp, CWinApp)
ON_COMMAND(ID_APP_ABOUT, &CTestUpdateUIApp::OnAppAbout)
// 基于文件的标准文档命令
ON_COMMAND(ID_FILE_NEW, &CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN, &CWinApp::OnFileOpen)
END_MESSAGE_MAP()
// CTestUpdateUIApp 构造
CTestUpdateUIApp::CTestUpdateUIApp() noexcept
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
// 如果应用程序是利用公共语言运行时支持(/clr)构建的,则:
// 1) 必须有此附加设置,“重新启动管理器”支持才能正常工作。
// 2) 在您的项目中,您必须按照生成顺序向 System.Windows.Forms 添加引用。
System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif
// TODO: 将以下应用程序 ID 字符串替换为唯一的 ID 字符串;建议的字符串格式
//为 CompanyName.ProductName.SubProduct.VersionInformation
SetAppID(_T("TestUpdateUI.AppID.NoVersion"));
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的 CTestUpdateUIApp 对象
CTestUpdateUIApp theApp;
// CTestUpdateUIApp 初始化
BOOL CTestUpdateUIApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
// 初始化 OLE 库
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
EnableTaskbarInteraction(FALSE);
// 使用 RichEdit 控件需要 AfxInitRichEdit2()
// AfxInitRichEdit2();
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
LoadStdProfileSettings(4); // 加载标准 INI 文件选项(包括 MRU)
// 注册应用程序的文档模板。 文档模板
// 将用作文档、框架窗口和视图之间的连接
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CTestUpdateUIDoc),
RUNTIME_CLASS(CMainFrame), // 主 SDI 框架窗口
RUNTIME_CLASS(CTestUpdateUIView));
if (!pDocTemplate)
return FALSE;
AddDocTemplate(pDocTemplate);
// 分析标准 shell 命令、DDE、打开文件操作的命令行
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// 调度在命令行中指定的命令。 如果
// 用 /RegServer、/Register、/Unregserver 或 /Unregister 启动应用程序,则返回 FALSE。
if (!ProcessShellCommand(cmdInfo))
return FALSE;
MyInt::GetInstance();
// 唯一的一个窗口已初始化,因此显示它并对其进行更新
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
int CTestUpdateUIApp::ExitInstance()
{
//TODO: 处理可能已添加的附加资源
AfxOleTerm(FALSE);
return CWinApp::ExitInstance();
}
// CTestUpdateUIApp 消息处理程序
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
class CAboutDlg : public CDialogEx
{
public:
CAboutDlg() noexcept;
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_ABOUTBOX };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() noexcept : CDialogEx(IDD_ABOUTBOX)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
// 用于运行对话框的应用程序命令
void CTestUpdateUIApp::OnAppAbout()
{
CAboutDlg aboutDlg;
aboutDlg.DoModal();
}
// CTestUpdateUIApp 消息处理程序
| [
"eternal_mr@qq.com"
] | eternal_mr@qq.com |
8e5800bf3113000ca5b2903d5e0bced222c59618 | b71ac977b46c96101d30d522ec26e380fedd7a0b | /dvcs_solid/src/TGenSoLIDGeoDict.h | e190971a67170c84058047c2b1b086bf5ef4109e | [] | no_license | yezhihong/My-DVCS | 9c262a2458fddc8d934f43e6bfb36f010be78c74 | af8f23c4d240b1a870ffde4e5a5f060caea2a028 | refs/heads/master | 2021-01-01T18:55:43.375766 | 2018-01-21T16:31:39 | 2018-01-21T16:31:39 | 33,253,265 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,786 | h | /********************************************************************
* TGenSoLIDGeoDict.h
* CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
* FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
* CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
********************************************************************/
#ifdef __CINT__
#error TGenSoLIDGeoDict.h/C is only for compilation. Abort cint.
#endif
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#define G__ANSIHEADER
#define G__DICTIONARY
#define G__PRIVATE_GVALUE
#include "G__ci.h"
#include "FastAllocString.h"
extern "C" {
extern void G__cpp_setup_tagtableTGenSoLIDGeoDict();
extern void G__cpp_setup_inheritanceTGenSoLIDGeoDict();
extern void G__cpp_setup_typetableTGenSoLIDGeoDict();
extern void G__cpp_setup_memvarTGenSoLIDGeoDict();
extern void G__cpp_setup_globalTGenSoLIDGeoDict();
extern void G__cpp_setup_memfuncTGenSoLIDGeoDict();
extern void G__cpp_setup_funcTGenSoLIDGeoDict();
extern void G__set_cpp_environmentTGenSoLIDGeoDict();
}
#include "TObject.h"
#include "TMemberInspector.h"
#include "TGenSoLIDGeo.h"
#include <algorithm>
namespace std { }
using namespace std;
#ifndef G__MEMFUNCBODY
#endif
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TClass;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TBuffer;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMemberInspector;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TObject;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTBaselEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTBaselEdoublegR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TVectorTlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TVectorTlEdoublegR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TElementActionTlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TElementPosActionTlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTRow_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTRowlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTDiag_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTColumn_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTFlat_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSub_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSparseRow_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSparseDiag_constlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTColumnlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTDiaglEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTFlatlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSublEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSparseRowlEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TMatrixTSparseDiaglEfloatgR;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TLorentzVector;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TGenGeo;
extern G__linked_taginfo G__TGenSoLIDGeoDictLN_TGenSoLIDGeo;
/* STUB derived class for protected member access */
| [
"yezhihong@gmail.com"
] | yezhihong@gmail.com |
d2f8471568fc2daeae004d39bfa8ec75369a60b3 | 0741627182cbd1d0f6c9dd1c10a6115cccf3d52c | /src/gazebo_mavlink_publisher_plugin.cpp | c757032852f4d3f90535045c1cb9e2264dd88cf4 | [] | no_license | ThunderFly-aerospace/sitl_gazebo | ce926929a8000421e8c6f3ec0bbf93a6dae6d9cf | c39f807f556b75b4bcd88c875d93c4de73c331ac | refs/heads/autogyro-sitl | 2021-06-14T13:38:07.729337 | 2019-03-08T15:43:02 | 2019-03-08T15:43:02 | 149,421,976 | 1 | 1 | null | 2019-01-11T08:08:58 | 2018-09-19T08:59:46 | C++ | UTF-8 | C++ | false | false | 6,386 | cpp | /*******************************************************************************
Copyright (C) 2010 Bryan Godbolt godbolt ( a t ) ualberta.ca
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
/*
This program sends some data to qgroundcontrol using the mavlink protocol. The sent packets
cause qgroundcontrol to respond with heartbeats. Any settings or custom commands sent from
qgroundcontrol are printed by this program along with the heartbeats.
I compiled this program sucessfully on Ubuntu 10.04 with the following command
gcc -I ../../pixhawk/mavlink/include -o udp-server udp-server-test.c
the rt library is needed for the clock_gettime on linux
*/
/* These headers are for QNX, but should all be standard on unix/linux */
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <time.h>
#if (defined __QNX__) | (defined __QNXNTO__)
/* QNX specific headers */
#include <unix.h>
#else
/* Linux / MacOS POSIX timer headers */
#include <sys/time.h>
#include <time.h>
#include <arpa/inet.h>
#include <stdbool.h> /* required for the definition of bool in C99 */
#endif
/* This assumes you have the mavlink headers on your include path
or in the same folder as this source file */
#include <mavlink/v2.0/common/mavlink.h>
#define BUFFER_LENGTH 2041 // minimum buffer size that can be used with qnx (I don't know why)
uint64_t microsSinceEpoch();
int main(int argc, char* argv[])
{
char help[] = "--help";
char target_ip[100];
float position[6] = {};
int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
struct sockaddr_in gcAddr;
struct sockaddr_in locAddr;
//struct sockaddr_in fromAddr;
uint8_t buf[BUFFER_LENGTH];
ssize_t recsize;
socklen_t fromlen = sizeof(gcAddr);
int bytes_sent;
mavlink_message_t msg;
uint16_t len;
int i = 0;
//int success = 0;
unsigned int temp = 0;
// Check if --help flag was used
if ((argc == 2) && (strcmp(argv[1], help) == 0))
{
printf("\n");
printf("\tUsage:\n\n");
printf("\t");
printf("%s", argv[0]);
printf(" <ip address of QGroundControl>\n");
printf("\tDefault for localhost: udp-server 127.0.0.1\n\n");
exit(EXIT_FAILURE);
}
// Change the target ip if parameter was given
strcpy(target_ip, "127.0.0.1");
if (argc == 2)
{
strcpy(target_ip, argv[1]);
}
memset(&locAddr, 0, sizeof(locAddr));
locAddr.sin_family = AF_INET;
locAddr.sin_addr.s_addr = INADDR_ANY;
locAddr.sin_port = htons(14551);
/* Bind the socket to port 14551 - necessary to receive packets from qgroundcontrol */
if (-1 == bind(sock,(struct sockaddr *)&locAddr, sizeof(struct sockaddr)))
{
perror("error bind failed");
close(sock);
exit(EXIT_FAILURE);
}
/* Attempt to make it non blocking */
#if (defined __QNX__) | (defined __QNXNTO__)
if (fcntl(sock, F_SETFL, O_NONBLOCK | FASYNC) < 0)
#else
if (fcntl(sock, F_SETFL, O_NONBLOCK | O_ASYNC) < 0)
#endif
{
fprintf(stderr, "error setting nonblocking: %s\n", strerror(errno));
close(sock);
exit(EXIT_FAILURE);
}
memset(&gcAddr, 0, sizeof(gcAddr));
gcAddr.sin_family = AF_INET;
gcAddr.sin_addr.s_addr = inet_addr(target_ip);
gcAddr.sin_port = htons(14550);
for (;;)
{
/*Send Heartbeat */
mavlink_msg_heartbeat_pack(1, 200, &msg, MAV_TYPE_HELICOPTER, MAV_AUTOPILOT_GENERIC, MAV_MODE_GUIDED_ARMED, 0, MAV_STATE_ACTIVE);
len = mavlink_msg_to_send_buffer(buf, &msg);
bytes_sent = sendto(sock, buf, len, 0, (struct sockaddr*)&gcAddr, sizeof(struct sockaddr_in));
/* Send Status */
mavlink_msg_sys_status_pack(1, 200, &msg, 0, 0, 0, 500, 11000, -1, -1, 0, 0, 0, 0, 0, 0);
len = mavlink_msg_to_send_buffer(buf, &msg);
bytes_sent = sendto(sock, buf, len, 0, (struct sockaddr*)&gcAddr, sizeof (struct sockaddr_in));
/* Send Local Position */
mavlink_msg_local_position_ned_pack(1, 200, &msg, microsSinceEpoch(),
position[0], position[1], position[2],
position[3], position[4], position[5]);
len = mavlink_msg_to_send_buffer(buf, &msg);
bytes_sent = sendto(sock, buf, len, 0, (struct sockaddr*)&gcAddr, sizeof(struct sockaddr_in));
/* Send attitude */
mavlink_msg_attitude_pack(1, 200, &msg, microsSinceEpoch(), 1.2, 1.7, 3.14, 0.01, 0.02, 0.03);
len = mavlink_msg_to_send_buffer(buf, &msg);
bytes_sent = sendto(sock, buf, len, 0, (struct sockaddr*)&gcAddr, sizeof(struct sockaddr_in));
memset(buf, 0, BUFFER_LENGTH);
recsize = recvfrom(sock, (void *)buf, BUFFER_LENGTH, 0, (struct sockaddr *)&gcAddr, &fromlen);
if (recsize > 0)
{
// Something received - print out all bytes and parse packet
mavlink_message_t msg;
mavlink_status_t status;
printf("Bytes Received: %d\nDatagram: ", (int)recsize);
for (i = 0; i < recsize; ++i)
{
temp = buf[i];
printf("%02x ", (unsigned char)temp);
if (mavlink_parse_char(MAVLINK_COMM_0, buf[i], &msg, &status))
{
// Packet received
printf("\nReceived packet: SYS: %d, COMP: %d, LEN: %d, MSG ID: %d\n", msg.sysid, msg.compid, msg.len, msg.msgid);
}
}
printf("\n");
}
memset(buf, 0, BUFFER_LENGTH);
sleep(1); // Sleep one second
}
}
/* QNX timer version */
#if (defined __QNX__) | (defined __QNXNTO__)
uint64_t microsSinceEpoch()
{
struct timespec time;
uint64_t micros = 0;
clock_gettime(CLOCK_REALTIME, &time);
micros = (uint64_t)time.tv_sec * 1000000 + time.tv_nsec/1000;
return micros;
}
#else
uint64_t microsSinceEpoch()
{
struct timeval tv;
uint64_t micros = 0;
gettimeofday(&tv, NULL);
micros = ((uint64_t)tv.tv_sec) * 1000000 + tv.tv_usec;
return micros;
}
#endif
| [
"vithanousek@seznam.cz"
] | vithanousek@seznam.cz |
0bca1c4e7742b9db0c38ffb64a1ce9bfa5394622 | 208c9c4fc8d8ad06f1ca56a0a68470927534c190 | /Cpp_Primer_Plus/Chapter4/address.cpp | 5c9413f674f54b618976ce84f5ebb77514dde869 | [] | no_license | Tenderest/CPP-Learning | e367adf5c0abb497992c0d4f5c8ce2289db0faf9 | 7fc92c96b00f9ecf8c27f68039a6fea4bb1fbb8d | refs/heads/main | 2022-10-15T19:36:29.384763 | 2022-05-27T08:55:27 | 2022-05-27T08:55:27 | 233,337,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 553 | cpp | // address.cpp -- using the & operator to find addresses
#include <iostream>
int main(void)
{
using namespace std;
int donuts = 6;
double cups = 4.5;
cout << "donuts value = " << donuts;
cout << " and donuts address = " << &donuts << endl;
// 注意:你可能需要使用unsigned (&donuts) NOTE: you may need to use unsigned (&donuts)
// 和unsigned (&cups) and unsigned (&cups)
cout << "cups value = " << cups;
cout << " and cups address = " << &cups << endl;
return 0;
}
| [
"2087886585@qq.com"
] | 2087886585@qq.com |
8517f0a0e19759ff8d94d7f279daa69deb193f5d | fc42f22ffb6d75489c068bbbaa56756d73bcf159 | /OJ/bzoj/3611.cpp | cec0f72b1e6045c19c1809bfd1db8be88465223c | [] | no_license | ytrsk/ICPC_training_respository | a6031b46927281c1f4d09e55ac75f1c6770b309b | dd6fabc68bcb9f81ccd1cdc9f95d50919698e542 | refs/heads/master | 2022-12-15T06:29:33.189202 | 2020-09-15T11:27:05 | 2020-09-15T11:27:05 | 210,859,312 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,554 | cpp | #include <bits/stdc++.h>
#define mp make_pair
#define sqr(x) (x)*(x)
using namespace std;
typedef pair<int,int> pii;
typedef long long ll;
const int maxn=1000007;
const ll inf=0x3f3f3f3f;
int read(){
int x=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9') {if(ch=='-') f=-1;ch=getchar();}
while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
return x*f;
}
int e1,head[maxn],to[maxn<<1],nex[maxn<<1],dfn[maxn],cl,d[maxn],st[maxn][21];
void addedge(int u,int v,int x){
++e1;nex[e1]=head[u];head[u]=e1;to[e1]=v;
}
int lca(int u,int v){
if(d[u]<d[v]) swap(u,v);
for(int i=20;i>=0;i--) if(d[st[u][i]]>=d[v]) u=st[u][i];
if(u==v) return u;
for(int i=20;i>=0;i--) if(st[u][i]^st[v][i]) u=st[u][i],v=st[v][i];
return st[u][0];
}
void dfs(int u,int fa){
st[u][0]=fa;d[u]=d[fa]+1;dfn[u]=++cl;
for(int i=1;i<=20;i++) st[u][i]=st[st[u][i-1]][i-1];
for(int i=head[u];i;i=nex[i]){
int v=to[i];
if(v!=fa) dfs(v,u);
}
}
int s[maxn],top;
vector<int> g[maxn];
int sz[maxn],mx[maxn],mn[maxn];
ll num[maxn];
void Addedge(int u,int v){
g[u].push_back(v);
}
void init(int x){
g[x].clear();
}
void ins(int u){
init(u);
if(top==1) {if(u>1) s[++top]=u;}
else{
int x=lca(u,s[top]);
if(x!=s[top]){
while(top>1&&dfn[s[top-1]]>=dfn[x]) Addedge(s[top-1],s[top]),top--;
if(x!=s[top]) init(x),Addedge(x,s[top]),s[top]=x;
}
s[++top]=u;
}
}
ll MX,MN,ANS;
int you[maxn];
void dp(int u){
sz[u]=you[u];mx[u]=you[u]?d[u]:-inf;
mn[u]=you[u]?d[u]:inf;
num[u]=you[u]?d[u]:0;
for(int i=0;i<g[u].size();i++){
int v=g[u][i];dp(v);
MX=max(MX,0LL+mx[u]+mx[v]-2*d[u]);
MN=min(MN,0LL+mn[u]+mn[v]-2*d[u]);
ANS+=sz[v]*(num[u]-1LL*sz[u]*d[u])+sz[u]*(num[v]-1LL*sz[v]*d[u]);
mx[u]=max(mx[u],mx[v]);
mn[u]=min(mn[u],mn[v]);
sz[u]+=sz[v];
num[u]+=num[v];
}
}
bool cmp(int x,int y){
return dfn[x]<dfn[y];
}
int a[maxn];
int main(){
int n=read();
for(int i=1;i<n;i++){
int u=read(),v=read();
addedge(u,v,0);addedge(v,u,0);
}
dfs(1,0);
int q=read();
while(q--){
int tot=read();s[top=1]=1;init(1);
for(int i=1;i<=tot;i++){
a[i]=read();you[a[i]]=1;
}
MX=-inf;MN=inf;ANS=0;
sort(a+1,a+tot+1,cmp);
for(int i=1;i<=tot;i++) ins(a[i]);
while(top>1) Addedge(s[top-1],s[top]),top--;
dp(1);
printf("%lld %lld %lld\n",ANS,MN,MX);
for(int i=1;i<=tot;i++) you[a[i]]=0;
}
return 0;
} | [
"2232160811@qq.com"
] | 2232160811@qq.com |
f57bb4d428af3cf7c52defa5ada813752d40c016 | 17d22a525ac17553dd23b731c50bae94217f37bc | /baek/1007.cpp | c10477cd9fff9356af59ec76c2c46400b50a671f | [] | no_license | uno2942/Baekjoon_solutions_for_selected_problems | 922e171ff050f41584a593ed2ec70ce40291546b | 0d61c998c4a86fcf335c0f1d2665e125fe14a774 | refs/heads/master | 2023-02-24T02:17:10.653435 | 2021-01-28T14:51:50 | 2021-01-28T14:51:50 | 206,111,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | cpp | /*#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
typedef std::numeric_limits< double > dbl;
using namespace std;
int temp1, temp2;
int x, y;
int tempx, tempy;
double midx, midy;
double tempans;
vector<pair<int, int>> pts;
vector<double> ans;
void rec_ftn(int count, int depth, int x, int y) {
if (count && depth < temp2) {
rec_ftn(count - 1, depth + 1, x + (pts[depth].first - midx), y + (pts[depth].second - midy));
rec_ftn(count, depth + 1, x, y);
}
else if (count == 0 && depth <= temp2)
{
tempans = min(tempans, sqrt( ((double)x/temp2) * ((double)x / temp2) + ((double)y / temp2) * ((double)y / temp2)));
}
}
int main() {
cin >> temp1;
for (int i = 0; i < temp1; i++) {
cin >> temp2;
for (int j = 0; j < temp2; j++) {
cin >> x >> y;
pts.push_back({ temp2 * x, temp2 * y });
}
for (int j = 0; j < temp2; j++) {
midx += pts[j].first;
midy += pts[j].second;
}
midx /= temp2;
midy /= temp2;
if (temp2 == 0)
{
ans.push_back(0);
pts.clear();
midx = 0;
midy = 0;
continue;
}
tempans = 100000000000;
rec_ftn(temp2/2, 0, 0, 0);
ans.push_back(tempans);
pts.clear();
midx = 0;
midy = 0;
}
cout.precision(12);
for (int i = 0; i < temp1; i++) {
cout << fixed<<(ans[i]*2.0)<<endl;
}
return 0;
}
*/ | [
"psb2942@gmail.com"
] | psb2942@gmail.com |
a1408281fe005b181487cc9e24c174f7e10bd75b | 43636e4afea850c97e42ebc64814a494fdde30c5 | /NFP/tools.cpp | d66295829ed70029a63a8cd4f2e6473f91688600 | [
"MIT"
] | permissive | yutec/LTE | 2a6ed4ac0ccb28986ade60446383a6edd7b14c8a | 6bfadc932743b7ef15f3443bbbe7a252eb8d9515 | refs/heads/master | 2021-01-23T06:20:37.939411 | 2017-11-23T12:37:56 | 2017-11-23T12:37:56 | 93,019,730 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,163 | cpp | /* This tool box contains useful numerical algorithms not
defined in ANSI C standard libraries. Some of the algorithms
are taken from Numerical Recipes in C.
First Version: May 23, 2008
Second Version: July 4, 2008
Updated
*/
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <sys/time.h>
#include <errno.h>
#include "tools.h"
/*========================================================================
Get time
========================================================================*/
double gettimeofday_sec(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec + (double)tv.tv_usec*1e-6;
}
/*========================================================================
error
========================================================================*/
void error(const char error_text[])
{
printf("%s\n",error_text);
exit(1);
}
//========================================================================
// Linear Algebra
//========================================================================
void matvecmul(double **A, double *B, double *AB, long m, long n)
{
int i,j;
for (i=1; i<=m; i++){
AB[i] = 0.0;
for (j=1; j<=n; j++){
AB[i] += A[i][j]*B[j];
}
}
}
void matmul(double **A, double **B, double **AB, long m, long n, long l)
{
int i,j,k;
for (i=1; i<=m; i++){
for (j=1; j<=l; j++){
AB[i][j] = 0.0;
for (k=1; k<=n; k++){
AB[i][j] += A[i][k]*B[k][j];
}
}
}
}
void transpose(double **A, double **A_t, int m, int n)
{
int i,j;
double temp_copy;
for (i=1; i<=m; i++){
for (j=1; j<=n; j++){
temp_copy = A[i][j];
A_t[j][i] = temp_copy;
}
}
}
void copyVector(double *source, double *target, int n)
{
int i;
for (i=1; i<=n; i++){
target[i] = source[i];
}
}
void copyMatrix(double **source, double **target, int m, int n)
{
int i, j;
for (i=1; i<=m; i++){
for (j=1; j<=n; j++){
target[i][j] = source[i][j];
}
}
}
void copy3darray(double ***source, double ***target, int m, int n, int l)
{
int i, j, k;
for (i=1; i<=m; i++){
for (j=1; j<=n; j++){
for (k=1; k<=l; k++){
target[i][j][k] = source[i][j][k];
}
}
}
}
void logVector(double *source, double *target, int size)
{
int i;
for (i=1; i<=size; i++)
target[i] = log(source[i]);
}
/*========================================================================
Memory Allocation for Arrays
========================================================================*/
#define NR_END 1
#define FREE_ARG char*
// vector ----------------------------------------------------------------
double *dvector(long nl, long nh)
/* allocate a double vector with subscript range v[nl..nh] */
{
double *v;
v=(double *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(double)));
if (!v) error("allocation failure in dvector()");
return v-nl+NR_END;
}
int *ivector(long nl, long nh)
/* allocate an int vector with subscript range v[nl..nh] */
{
int *v;
v=(int *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(int)));
if (!v) error("allocation failure in ivector()");
return v-nl+NR_END;
}
// matrix ----------------------------------------------------------------
double **dmatrix(long nrl, long nrh, long ncl, long nch)
/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */
{
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
double **m;
/* allocate pointers to rows */
m=(double **) malloc((size_t)((nrow+NR_END)*sizeof(double*)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= nrl;
/* allocate rows and set pointers to them */
m[nrl]=(double *)malloc((size_t)((nrow*ncol+NR_END)*sizeof(double)));
if (!m[nrl]) error("allocation failure 2 in matrix()");
m[nrl] += NR_END;
m[nrl] -= ncl;
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
/* return pointer to array of pointers to rows */
return m;
}
int **imatrix(long nrl, long nrh, long ncl, long nch)
/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */
{
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
int **m;
/* allocate pointers to rows */
m=(int **) malloc((size_t)((nrow+NR_END)*sizeof(int*)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= nrl;
/* allocate rows and set pointers to them */
m[nrl]=(int *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(int)));
if (!m[nrl]) error("allocation failure 2 in matrix()");
m[nrl] += NR_END;
m[nrl] -= ncl;
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
/* return pointer to array of pointers to rows */
return m;
}
// array3d ---------------------------------------------------------------
double ***darray3d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h)
/* allocate a double 3-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h] */
{
long i, j, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1;
double ***m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(double ***) malloc(((n1+NR_END)*sizeof(double**)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(double **)malloc(((n1*n2+NR_END)*sizeof(double *)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(double *)malloc(((n1*n2*n3+NR_END)*sizeof(double)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
/* return pointer to array of pointers to array of pointers to a row of
memories */
return m;
}
int ***iarray3d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h)
/* allocate a double 3-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h] */
{
long i, j, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1;
int ***m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(int ***) malloc(((n1+NR_END)*sizeof(int**)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(int **)malloc(((n1*n2+NR_END)*sizeof(int *)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(int *)malloc(((n1*n2*n3+NR_END)*sizeof(int)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
/* return pointer to array of pointers to rows */
return m;
}
// array4d ---------------------------------------------------------------
double ****darray4d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h,
long n4l, long n4h)
/* allocate a double 3-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h][n4l..n4h][n5l..n5h] */
{
long i, j, k, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1, n4=n4h-n4l+1;
double ****m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(double ****) malloc(((n1+NR_END)*sizeof(double***)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(double ***)malloc(((n1*n2+NR_END)*sizeof(double **)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(double **)malloc(((n1*n2*n3+NR_END)*sizeof(double *)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
m[n1l][n2l][n3l]=(double *)malloc(((n1*n2*n3*n4+NR_END)*sizeof(double)));
if (!m[n1l][n2l][n3l]) error("allocation failure 3 in matrix()");
m[n1l][n2l][n3l] += NR_END;
m[n1l][n2l][n3l] -= n4l;
for(k=n3l+1; k<=n3h; k++) m[n1l][n2l][k] = m[n1l][n2l][k-1] + n4;
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if (k==n3l)
m[n1l][j][k] = m[n1l][j-1][n3h] + n4;
else
m[n1l][j][k] = m[n1l][j][k-1] + n4;
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if ((j==n2l) & (k==n3l))
m[i][n2l][n3l] = m[i-1][n2h][n3h] + n4;
else {
if (k==n3l)
m[i][j][k] = m[i][j-1][n3h] + n4;
else
m[i][j][k] = m[i][j][k-1] + n4;
}
}
/* return pointer to array of pointers to rows */
return m;
}
int ****iarray4d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h,
long n4l, long n4h)
/* allocate a double 3-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h][n4l..n4h][n5l..n5h] */
{
long i, j, k, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1, n4=n4h-n4l+1;
int ****m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(int ****) malloc(((n1+NR_END)*sizeof(int***)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(int ***)malloc(((n1*n2+NR_END)*sizeof(int **)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(int **)malloc(((n1*n2*n3+NR_END)*sizeof(int *)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
m[n1l][n2l][n3l]=(int *)malloc(((n1*n2*n3*n4+NR_END)*sizeof(int)));
if (!m[n1l][n2l][n3l]) error("allocation failure 3 in matrix()");
m[n1l][n2l][n3l] += NR_END;
m[n1l][n2l][n3l] -= n4l;
for(k=n3l+1; k<=n3h; k++) m[n1l][n2l][k] = m[n1l][n2l][k-1] + n4;
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if (k==n3l)
m[n1l][j][k] = m[n1l][j-1][n3h] + n4;
else
m[n1l][j][k] = m[n1l][j][k-1] + n4;
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if ((j==n2l) & (k==n3l))
m[i][n2l][n3l] = m[i-1][n2h][n3h] + n4;
else {
if (k==n3l)
m[i][j][k] = m[i][j-1][n3h] + n4;
else
m[i][j][k] = m[i][j][k-1] + n4;
}
}
/* return pointer to array of pointers to rows */
return m;
}
// array5d ---------------------------------------------------------------
double *****darray5d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h,
long n4l, long n4h, long n5l, long n5h)
/* allocate a double 5-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h][n4l..n4h][n5l..n5h] */
{
long i, j, k, l, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1, n4=n4h-n4l+1,
n5=n5h-n5l+1;
double *****m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(double *****) malloc(((n1+NR_END)*sizeof(double ****)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(double ****)malloc(((n1*n2+NR_END)*sizeof(double ***)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(double ***)malloc(((n1*n2*n3+NR_END)*sizeof(double **)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
m[n1l][n2l][n3l]=(double **)malloc(((n1*n2*n3*n4+NR_END)*sizeof(double *)));
if (!m[n1l][n2l][n3l]) error("allocation failure 4 in matrix()");
m[n1l][n2l][n3l] += NR_END;
m[n1l][n2l][n3l] -= n4l;
for(k=n3l+1; k<=n3h; k++) m[n1l][n2l][k] = m[n1l][n2l][k-1] + n4;
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if (k==n3l)
m[n1l][j][k] = m[n1l][j-1][n3h] + n4;
else
m[n1l][j][k] = m[n1l][j][k-1] + n4;
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if ((j==n2l) & (k==n3l))
m[i][j][k] = m[i-1][n2h][n3h] + n4;
else {
if (k==n3l)
m[i][j][k] = m[i][j-1][n3h] + n4;
else
m[i][j][k] = m[i][j][k-1] + n4;
}
}
m[n1l][n2l][n3l][n4l]=(double *)malloc(((n1*n2*n3*n4*n5+NR_END)*sizeof(double)));
if (!m[n1l][n2l][n3l][n4l]) error("allocation failure 5 in matrix()");
m[n1l][n2l][n3l][n4l] += NR_END;
m[n1l][n2l][n3l][n4l] -= n5l;
for(l=n4l+1; l<=n4h; l++) m[n1l][n2l][n3l][l] = m[n1l][n2l][n3l][l-1] + n5;
for(k=n3l+1; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if (l==n4l)
m[n1l][n2l][k][l] = m[n1l][n2l][k-1][n4h] + n5;
else
m[n1l][n2l][k][l] = m[n1l][n2l][k][l-1] + n5;
}
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if ((k==n3l) & (l==n4l))
m[n1l][j][k][l] = m[n1l][j-1][n3h][n4h] + n5;
else {
if (l==n4l)
m[n1l][j][k][l] = m[n1l][j][k-1][n4h] + n5;
else
m[n1l][j][k][l] = m[n1l][j][k][l-1] + n5;
}
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if (((j==n2l) & (k==n3l)) & (l==n4l))
m[i][j][k][l] = m[i-1][n2h][n3h][n4h] + n5;
else if ((k==n3l) & (l==n4l))
m[i][j][k][l] = m[i][j-1][n3h][n4h] + n5;
else if (l==n4l)
m[i][j][k][l] = m[i][j][k-1][n4h] + n5;
else
m[i][j][k][l] = m[i][j][k][l-1] + n5;
}
/* return pointer to array of pointers to rows */
return m;
}
int *****iarray5d(long n1l, long n1h, long n2l, long n2h, long n3l, long n3h,
long n4l, long n4h, long n5l, long n5h)
/* allocate a double 5-dimensional array with subscript
range m[n1l..n1h][n2l..n2h][n3l..n3h][n4l..n4h][n5l..n5h] */
{
long i, j, k, l, n1=n1h-n1l+1, n2=n2h-n2l+1, n3=n3h-n3l+1, n4=n4h-n4l+1,
n5=n5h-n5l+1;
int *****m;
/* allocate pointer-to-pointers to the first dimensional of the array */
m=(int *****) malloc(((n1+NR_END)*sizeof(int****)));
if (!m) error("allocation failure 1 in matrix()");
m += NR_END;
m -= n1l;
/* allocate pointers and set pointer-to-pointers to them */
m[n1l]=(int ****)malloc(((n1*n2+NR_END)*sizeof(int ***)));
if (!m[n1l]) error("allocation failure 2 in matrix()");
m[n1l] += NR_END;
m[n1l] -= n2l;
for(i=n1l+1; i<=n1h; i++) m[i] = m[i-1] + n2;
/* allocate a row of memories and set pointers to them */
m[n1l][n2l]=(int ***)malloc(((n1*n2*n3+NR_END)*sizeof(int **)));
if (!m[n1l][n2l]) error("allocation failure 3 in matrix()");
m[n1l][n2l] += NR_END;
m[n1l][n2l] -= n3l;
for(j=n2l+1; j<=n2h; j++) m[n1l][j] = m[n1l][j-1] + n3;
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++) {
if (j==n2l)
m[i][j] = m[i-1][n2h] + n3;
else
m[i][j] = m[i][j-1] + n3;
}
m[n1l][n2l][n3l]=(int **)malloc(((n1*n2*n3*n4+NR_END)*sizeof(int *)));
if (!m[n1l][n2l][n3l]) error("allocation failure 4 in matrix()");
m[n1l][n2l][n3l] += NR_END;
m[n1l][n2l][n3l] -= n4l;
for(k=n3l+1; k<=n3h; k++) m[n1l][n2l][k] = m[n1l][n2l][k-1] + n4;
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if (k==n3l)
m[n1l][j][k] = m[n1l][j-1][n3h] + n4;
else
m[n1l][j][k] = m[n1l][j][k-1] + n4;
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++) {
if ((j==n2l) & (k==n3l))
m[i][j][k] = m[i-1][n2h][n3h] + n4;
else {
if (k==n3l)
m[i][j][k] = m[i][j-1][n3h] + n4;
else
m[i][j][k] = m[i][j][k-1] + n4;
}
}
m[n1l][n2l][n3l][n4l]=(int *)malloc(((n1*n2*n3*n4*n5+NR_END)*sizeof(int)));
if (!m[n1l][n2l][n3l][n4l]) error("allocation failure 5 in matrix()");
m[n1l][n2l][n3l][n4l] += NR_END;
m[n1l][n2l][n3l][n4l] -= n5l;
for(l=n4l+1; l<=n4h; l++) m[n1l][n2l][n3l][l] = m[n1l][n2l][n3l][l-1] + n5;
for(k=n3l+1; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if (l==n4l)
m[n1l][n2l][k][l] = m[n1l][n2l][k-1][n4h] + n5;
else
m[n1l][n2l][k][l] = m[n1l][n2l][k][l-1] + n5;
}
for(j=n2l+1; j<=n2h; j++)
for(k=n3l; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if ((k==n3l) & (l==n4l))
m[n1l][j][k][l] = m[n1l][j-1][n3h][n4h] + n5;
else {
if (l==n4l)
m[n1l][j][k][l] = m[n1l][j][k-1][n4h] + n5;
else
m[n1l][j][k][l] = m[n1l][j][k][l-1] + n5;
}
}
for(i=n1l+1; i<=n1h; i++)
for(j=n2l; j<=n2h; j++)
for(k=n3l; k<=n3h; k++)
for(l=n4l; l<=n4h; l++) {
if (((j==n2l) & (k==n3l)) & (l==n4l))
m[i][j][k][l] = m[i-1][n2h][n3h][n4h] + n5;
else if ((k==n3l) & (l==n4l))
m[i][j][k][l] = m[i][j-1][n3h][n4h] + n5;
else if (l==n4l)
m[i][j][k][l] = m[i][j][k-1][n4h] + n5;
else
m[i][j][k][l] = m[i][j][k][l-1] + n5;
}
/* return pointer to array of pointers to rows */
return m;
}
// free vector ----------------------------------------------------
void free_dvector(double *v, long nl, long nh)
/* free a double vector allocated with dvector() */
{
free((FREE_ARG) (v+nl-NR_END));
}
void free_ivector(int *v, long nl, long nh)
/* free an int vector allocated with ivector() */
{
free((FREE_ARG) (v+nl-NR_END));
}
// free matrix ----------------------------------------------------
void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch)
/* free a double matrix allocated by dmatrix() */
{
free((FREE_ARG) (m[nrl]+ncl-NR_END));
free((FREE_ARG) (m+nrl-NR_END));
}
void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch)
/* free an int matrix allocated by imatrix() */
{
free((FREE_ARG) (m[nrl]+ncl-NR_END));
free((FREE_ARG) (m+nrl-NR_END));
}
// free array3d ----------------------------------------------------------
void free_darray3d(double ***m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h)
/* free a double 3-dimensional array allocated by darray3d() */
{
free((FREE_ARG) (m[n1l][n2l]+n3l-NR_END));
free((FREE_ARG) (m[n1l]+n2l-NR_END));
free((FREE_ARG) (m+n1l-NR_END));
}
void free_iarray3d(int ***m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h)
/* free a int 3-dimensional array allocated by darray3d() */
{
free((m[n1l][n2l]+n3l-NR_END));
free((m[n1l]+n2l-NR_END));
free((m+n1l-NR_END));
}
// free array4d ----------------------------------------------------------
void free_darray4d(double ****m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h, long n4l, long n4h)
/* free a double 4-dimensional array allocated by darray3d() */
{
free((FREE_ARG) (m[n1l][n2l][n3l]+n4l-NR_END));
free((FREE_ARG) (m[n1l][n2l]+n3l-NR_END));
free((FREE_ARG) (m[n1l]+n2l-NR_END));
free((FREE_ARG) (m+n1l-NR_END));
}
void free_iarray4d(int ****m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h, long n4l, long n4h)
/* free a double 4-dimensional array allocated by darray3d() */
{
free((FREE_ARG) (m[n1l][n2l][n3l]+n4l-NR_END));
free((FREE_ARG) (m[n1l][n2l]+n3l-NR_END));
free((FREE_ARG) (m[n1l]+n2l-NR_END));
free((FREE_ARG) (m+n1l-NR_END));
}
// free array5d ----------------------------------------------------------
void free_darray5d(double *****m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h, long n4l, long n4h, long n5l, long n5h)
/* free a double 5-dimensional array allocated by darray3d() */
{
free((FREE_ARG) (m[n1l][n2l][n3l][n4l]+n5l-NR_END));
free((FREE_ARG) (m[n1l][n2l][n3l]+n4l-NR_END));
free((FREE_ARG) (m[n1l][n2l]+n3l-NR_END));
free((FREE_ARG) (m[n1l]+n2l-NR_END));
free((FREE_ARG) (m+n1l-NR_END));
}
void free_iarray5d(int *****m, long n1l, long n1h, long n2l, long n2h,
long n3l, long n3h, long n4l, long n4h, long n5l, long n5h)
/* free a double 5-dimensional array allocated by darray3d() */
{
free((FREE_ARG) (m[n1l][n2l][n3l][n4l]+n5l-NR_END));
free((FREE_ARG) (m[n1l][n2l][n3l]+n4l-NR_END));
free((FREE_ARG) (m[n1l][n2l]+n3l-NR_END));
free((FREE_ARG) (m[n1l]+n2l-NR_END));
free((FREE_ARG) (m+n1l-NR_END));
}
| [
"noreply@github.com"
] | noreply@github.com |
858222e879d20102a2ce57ff10c093c8c871a5cb | 457b96667eebae6947ba051f32d4587cc7c24f7e | /opencl/test/unit_test/command_queue/dispatch_walker_tests_dg2_and_later.cpp | d1faa8d65772475448b3ae51a65a2bb59bf2ebec | [
"MIT"
] | permissive | dyang23/compute-runtime | 952c6c146b85906f6b78c20f6a945b563ef93574 | d4c9cca7fd7255fc73d8855b2d6b467af261a0ec | refs/heads/master | 2022-06-23T05:33:39.450649 | 2022-06-15T13:57:00 | 2022-06-16T20:03:24 | 203,960,993 | 0 | 0 | null | 2019-08-23T08:50:02 | 2019-08-23T08:50:01 | null | UTF-8 | C++ | false | false | 9,438 | cpp | /*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/linear_stream.h"
#include "shared/source/gmm_helper/gmm_helper.h"
#include "shared/source/helpers/hw_helper.h"
#include "shared/source/helpers/timestamp_packet.h"
#include "shared/source/os_interface/hw_info_config.h"
#include "shared/source/utilities/tag_allocator.h"
#include "shared/test/common/cmd_parse/hw_parse.h"
#include "shared/test/common/fixtures/linear_stream_fixture.h"
#include "shared/test/common/helpers/debug_manager_state_restore.h"
#include "shared/test/common/mocks/mock_allocation_properties.h"
#include "shared/test/common/mocks/mock_device.h"
#include "opencl/source/command_queue/hardware_interface.h"
#include "opencl/test/unit_test/mocks/mock_cl_device.h"
#include "opencl/test/unit_test/mocks/mock_command_queue.h"
#include "opencl/test/unit_test/mocks/mock_kernel.h"
#include "opencl/test/unit_test/mocks/mock_mdi.h"
using namespace NEO;
struct Dg2AndLaterDispatchWalkerBasicFixture : public LinearStreamFixture {
void SetUp() override {
LinearStreamFixture::SetUp();
memset(globalOffsets, 0, sizeof(globalOffsets));
memset(startWorkGroups, 0, sizeof(startWorkGroups));
memset(&threadPayload, 0, sizeof(threadPayload));
localWorkSizesIn[0] = 16;
localWorkSizesIn[1] = localWorkSizesIn[2] = 1;
numWorkGroups[0] = numWorkGroups[1] = numWorkGroups[2] = 1;
simd = 16;
device = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(defaultHwInfo.get(), rootDeviceIndex));
context = std::make_unique<MockContext>(device.get());
kernel = std::make_unique<MockKernelWithInternals>(*device, context.get());
sizeGrf = device->getHardwareInfo().capabilityTable.grfSize;
sizeGrfDwords = sizeGrf / sizeof(uint32_t);
for (uint32_t i = 0; i < sizeGrfDwords; i++) {
crossThreadDataGrf[i] = i;
crossThreadDataTwoGrf[i] = i + 2;
}
for (uint32_t i = sizeGrfDwords; i < sizeGrfDwords * 2; i++) {
crossThreadDataTwoGrf[i] = i + 2;
}
}
size_t globalOffsets[3];
size_t startWorkGroups[3];
size_t numWorkGroups[3];
size_t localWorkSizesIn[3];
uint32_t simd;
uint32_t sizeGrf;
uint32_t sizeInlineData;
uint32_t sizeGrfDwords;
uint32_t crossThreadDataGrf[16];
uint32_t crossThreadDataTwoGrf[32];
iOpenCL::SPatchThreadPayload threadPayload;
const uint32_t rootDeviceIndex = 1u;
std::unique_ptr<MockClDevice> device;
std::unique_ptr<MockContext> context;
std::unique_ptr<MockKernelWithInternals> kernel;
};
using WalkerDispatchTestDg2AndLater = ::testing::Test;
using Dg2AndLaterDispatchWalkerBasicTest = Test<Dg2AndLaterDispatchWalkerBasicFixture>;
using matcherDG2AndLater = IsAtLeastXeHpgCore;
HWTEST2_F(WalkerDispatchTestDg2AndLater, whenProgramComputeWalkerThenApplyL3WAForSpecificPlatformAndRevision, matcherDG2AndLater) {
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
auto walkerCmd = FamilyType::cmdInitGpgpuWalker;
auto hwInfo = *defaultHwInfo;
const auto &hwInfoConfig = *HwInfoConfig::get(hwInfo.platform.eProductFamily);
EncodeWalkerArgs walkerArgs{KernelExecutionType::Default, true};
{
hwInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hwInfo);
EncodeDispatchKernel<FamilyType>::encodeAdditionalWalkerFields(hwInfo, walkerCmd, walkerArgs);
EXPECT_FALSE(walkerCmd.getL3PrefetchDisable());
}
{
hwInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hwInfo);
EncodeDispatchKernel<FamilyType>::encodeAdditionalWalkerFields(hwInfo, walkerCmd, walkerArgs);
if (hwInfo.platform.eProductFamily == IGFX_DG2) {
EXPECT_TRUE(walkerCmd.getL3PrefetchDisable());
} else {
EXPECT_FALSE(walkerCmd.getL3PrefetchDisable());
}
}
}
HWTEST2_F(WalkerDispatchTestDg2AndLater, givenDebugVariableSetWhenProgramComputeWalkerThenApplyL3PrefetchAppropriately, matcherDG2AndLater) {
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
DebugManagerStateRestore restore;
auto walkerCmd = FamilyType::cmdInitGpgpuWalker;
auto hwInfo = *defaultHwInfo;
EncodeWalkerArgs walkerArgs{KernelExecutionType::Default, true};
for (auto forceL3PrefetchForComputeWalker : {false, true}) {
DebugManager.flags.ForceL3PrefetchForComputeWalker.set(forceL3PrefetchForComputeWalker);
EncodeDispatchKernel<FamilyType>::encodeAdditionalWalkerFields(hwInfo, walkerCmd, walkerArgs);
EXPECT_EQ(!forceL3PrefetchForComputeWalker, walkerCmd.getL3PrefetchDisable());
}
}
HWTEST2_F(Dg2AndLaterDispatchWalkerBasicTest, givenTimestampPacketWhenDispatchingThenProgramPostSyncData, matcherDG2AndLater) {
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
MockKernelWithInternals kernel1(*device);
MockKernelWithInternals kernel2(*device);
device->getUltCommandStreamReceiver<FamilyType>().timestampPacketWriteEnabled = true;
TimestampPacketContainer timestampPacketContainer;
timestampPacketContainer.add(device->getGpgpuCommandStreamReceiver().getTimestampPacketAllocator()->getTag());
timestampPacketContainer.add(device->getGpgpuCommandStreamReceiver().getTimestampPacketAllocator()->getTag());
MockMultiDispatchInfo multiDispatchInfo(device.get(), std::vector<Kernel *>({kernel1.mockKernel, kernel2.mockKernel}));
MockCommandQueue cmdQ(context.get(), device.get(), nullptr, false);
auto &cmdStream = cmdQ.getCS(0);
HardwareInterface<FamilyType>::dispatchWalker(
cmdQ,
multiDispatchInfo,
CsrDependencies(),
nullptr,
nullptr,
nullptr,
nullptr,
×tampPacketContainer,
false);
HardwareParse hwParser;
hwParser.parseCommands<FamilyType>(cmdStream, 0);
hwParser.findHardwareCommands<FamilyType>();
EXPECT_NE(hwParser.itorWalker, hwParser.cmdList.end());
auto gmmHelper = device->getGmmHelper();
auto expectedMocs = MemorySynchronizationCommands<FamilyType>::getDcFlushEnable(true, *defaultHwInfo) ? gmmHelper->getMOCS(GMM_RESOURCE_USAGE_OCL_BUFFER_CACHELINE_MISALIGNED) : gmmHelper->getMOCS(GMM_RESOURCE_USAGE_OCL_BUFFER);
auto walker = genCmdCast<COMPUTE_WALKER *>(*hwParser.itorWalker);
EXPECT_EQ(FamilyType::POSTSYNC_DATA::OPERATION::OPERATION_WRITE_TIMESTAMP, walker->getPostSync().getOperation());
EXPECT_TRUE(walker->getPostSync().getDataportPipelineFlush());
EXPECT_TRUE(walker->getPostSync().getDataportSubsliceCacheFlush());
EXPECT_EQ(expectedMocs, walker->getPostSync().getMocs());
auto contextStartAddress = TimestampPacketHelper::getContextStartGpuAddress(*timestampPacketContainer.peekNodes()[0]);
EXPECT_EQ(contextStartAddress, walker->getPostSync().getDestinationAddress());
auto secondWalkerItor = find<COMPUTE_WALKER *>(++hwParser.itorWalker, hwParser.cmdList.end());
auto secondWalker = genCmdCast<COMPUTE_WALKER *>(*secondWalkerItor);
EXPECT_EQ(FamilyType::POSTSYNC_DATA::OPERATION::OPERATION_WRITE_TIMESTAMP, secondWalker->getPostSync().getOperation());
EXPECT_TRUE(secondWalker->getPostSync().getDataportPipelineFlush());
EXPECT_TRUE(secondWalker->getPostSync().getDataportSubsliceCacheFlush());
EXPECT_EQ(expectedMocs, walker->getPostSync().getMocs());
contextStartAddress = TimestampPacketHelper::getContextStartGpuAddress(*timestampPacketContainer.peekNodes()[1]);
EXPECT_EQ(contextStartAddress, secondWalker->getPostSync().getDestinationAddress());
}
HWTEST2_F(Dg2AndLaterDispatchWalkerBasicTest, givenDebugVariableEnabledWhenEnqueueingThenWriteWalkerStamp, matcherDG2AndLater) {
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
DebugManagerStateRestore restore;
DebugManager.flags.EnableTimestampPacket.set(true);
auto testDevice = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(defaultHwInfo.get()));
MockContext testContext(testDevice.get());
auto cmdQ = std::make_unique<MockCommandQueueHw<FamilyType>>(&testContext, testDevice.get(), nullptr);
MockKernelWithInternals testKernel(*testDevice, &testContext);
size_t gws[] = {1, 1, 1};
cmdQ->enqueueKernel(testKernel.mockKernel, 1, nullptr, gws, nullptr, 0, nullptr, nullptr);
EXPECT_NE(nullptr, cmdQ->timestampPacketContainer.get());
HardwareParse hwParser;
hwParser.parseCommands<FamilyType>(cmdQ->getCS(0), 0);
hwParser.findHardwareCommands<FamilyType>();
EXPECT_NE(hwParser.itorWalker, hwParser.cmdList.end());
auto walker = genCmdCast<COMPUTE_WALKER *>(*hwParser.itorWalker);
auto gmmHelper = device->getGmmHelper();
auto expectedMocs = MemorySynchronizationCommands<FamilyType>::getDcFlushEnable(true, *defaultHwInfo) ? gmmHelper->getMOCS(GMM_RESOURCE_USAGE_OCL_BUFFER_CACHELINE_MISALIGNED) : gmmHelper->getMOCS(GMM_RESOURCE_USAGE_OCL_BUFFER);
auto &postSyncData = walker->getPostSync();
EXPECT_EQ(FamilyType::POSTSYNC_DATA::OPERATION::OPERATION_WRITE_TIMESTAMP,
postSyncData.getOperation());
EXPECT_TRUE(postSyncData.getDataportPipelineFlush());
EXPECT_TRUE(postSyncData.getDataportSubsliceCacheFlush());
EXPECT_EQ(expectedMocs, postSyncData.getMocs());
}
| [
"compute-runtime@intel.com"
] | compute-runtime@intel.com |
ed5348e6aaae42df9c7f1263bc4e073fd9dd74ef | 01bacb98a760ca7cdd42be616c5dfa5139ab5e05 | /AlgorithmicToolbox/week3_greedy_algorithms/change.cpp | 25ed3354b3452459b08aef0f2334dab212801d34 | [] | no_license | Ang3lino/algorithms | b37bfddf50707d5059eba6a0f98c0662eae4b72d | 1d5610730b34a46bb2ca8a1f5dd52e906fc556ab | refs/heads/master | 2022-12-15T04:21:33.828881 | 2020-09-13T02:08:02 | 2020-09-13T02:08:02 | 263,496,957 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 288 | cpp | #include <iostream>
int get_change(int m) {
//write your code here
int coins[] = {10, 5, 1};
int n = 0;
for (int i = 0; i < 3; ++i) {
n += (m / coins[i]);
m = m % coins[i];
}
return n;
}
int main() {
int m;
std::cin >> m;
std::cout << get_change(m) << '\n';
}
| [
"noreply@github.com"
] | noreply@github.com |
9b8d1a2ce91ce98606942220bda258db5ed338b8 | 0a0eda5161e9b11c210c163f1e83c594c803d81a | /opposedJet1/constant/polyMesh/faces | 3946c16437869104b9c150165331311add91cf7f | [] | no_license | aspatankar/EnergyEqnTesting-cases | bb8993455cf54352a5645ee83d1247455cc6f0f0 | ad4d19f721b28404d0de6871d40725fe539e43c1 | refs/heads/master | 2020-06-19T08:24:13.094882 | 2019-07-12T19:59:48 | 2019-07-12T19:59:48 | 196,637,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366,019 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class faceList;
location "constant/polyMesh";
object faces;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16220
(
4(1 202 4423 4222)
4(201 4422 4423 202)
4(2 203 4424 4223)
4(202 4423 4424 203)
4(3 204 4425 4224)
4(203 4424 4425 204)
4(4 205 4426 4225)
4(204 4425 4426 205)
4(5 206 4427 4226)
4(205 4426 4427 206)
4(6 207 4428 4227)
4(206 4427 4428 207)
4(7 208 4429 4228)
4(207 4428 4429 208)
4(8 209 4430 4229)
4(208 4429 4430 209)
4(9 210 4431 4230)
4(209 4430 4431 210)
4(10 211 4432 4231)
4(210 4431 4432 211)
4(11 212 4433 4232)
4(211 4432 4433 212)
4(12 213 4434 4233)
4(212 4433 4434 213)
4(13 214 4435 4234)
4(213 4434 4435 214)
4(14 215 4436 4235)
4(214 4435 4436 215)
4(15 216 4437 4236)
4(215 4436 4437 216)
4(16 217 4438 4237)
4(216 4437 4438 217)
4(17 218 4439 4238)
4(217 4438 4439 218)
4(18 219 4440 4239)
4(218 4439 4440 219)
4(19 220 4441 4240)
4(219 4440 4441 220)
4(20 221 4442 4241)
4(220 4441 4442 221)
4(21 222 4443 4242)
4(221 4442 4443 222)
4(22 223 4444 4243)
4(222 4443 4444 223)
4(23 224 4445 4244)
4(223 4444 4445 224)
4(24 225 4446 4245)
4(224 4445 4446 225)
4(25 226 4447 4246)
4(225 4446 4447 226)
4(26 227 4448 4247)
4(226 4447 4448 227)
4(27 228 4449 4248)
4(227 4448 4449 228)
4(28 229 4450 4249)
4(228 4449 4450 229)
4(29 230 4451 4250)
4(229 4450 4451 230)
4(30 231 4452 4251)
4(230 4451 4452 231)
4(31 232 4453 4252)
4(231 4452 4453 232)
4(32 233 4454 4253)
4(232 4453 4454 233)
4(33 234 4455 4254)
4(233 4454 4455 234)
4(34 235 4456 4255)
4(234 4455 4456 235)
4(35 236 4457 4256)
4(235 4456 4457 236)
4(36 237 4458 4257)
4(236 4457 4458 237)
4(37 238 4459 4258)
4(237 4458 4459 238)
4(38 239 4460 4259)
4(238 4459 4460 239)
4(39 240 4461 4260)
4(239 4460 4461 240)
4(40 241 4462 4261)
4(240 4461 4462 241)
4(41 242 4463 4262)
4(241 4462 4463 242)
4(42 243 4464 4263)
4(242 4463 4464 243)
4(43 244 4465 4264)
4(243 4464 4465 244)
4(44 245 4466 4265)
4(244 4465 4466 245)
4(45 246 4467 4266)
4(245 4466 4467 246)
4(46 247 4468 4267)
4(246 4467 4468 247)
4(47 248 4469 4268)
4(247 4468 4469 248)
4(48 249 4470 4269)
4(248 4469 4470 249)
4(49 250 4471 4270)
4(249 4470 4471 250)
4(50 251 4472 4271)
4(250 4471 4472 251)
4(51 252 4473 4272)
4(251 4472 4473 252)
4(52 253 4474 4273)
4(252 4473 4474 253)
4(53 254 4475 4274)
4(253 4474 4475 254)
4(54 255 4476 4275)
4(254 4475 4476 255)
4(55 256 4477 4276)
4(255 4476 4477 256)
4(56 257 4478 4277)
4(256 4477 4478 257)
4(57 258 4479 4278)
4(257 4478 4479 258)
4(58 259 4480 4279)
4(258 4479 4480 259)
4(59 260 4481 4280)
4(259 4480 4481 260)
4(60 261 4482 4281)
4(260 4481 4482 261)
4(61 262 4483 4282)
4(261 4482 4483 262)
4(62 263 4484 4283)
4(262 4483 4484 263)
4(63 264 4485 4284)
4(263 4484 4485 264)
4(64 265 4486 4285)
4(264 4485 4486 265)
4(65 266 4487 4286)
4(265 4486 4487 266)
4(66 267 4488 4287)
4(266 4487 4488 267)
4(67 268 4489 4288)
4(267 4488 4489 268)
4(68 269 4490 4289)
4(268 4489 4490 269)
4(69 270 4491 4290)
4(269 4490 4491 270)
4(70 271 4492 4291)
4(270 4491 4492 271)
4(71 272 4493 4292)
4(271 4492 4493 272)
4(72 273 4494 4293)
4(272 4493 4494 273)
4(73 274 4495 4294)
4(273 4494 4495 274)
4(74 275 4496 4295)
4(274 4495 4496 275)
4(75 276 4497 4296)
4(275 4496 4497 276)
4(76 277 4498 4297)
4(276 4497 4498 277)
4(77 278 4499 4298)
4(277 4498 4499 278)
4(78 279 4500 4299)
4(278 4499 4500 279)
4(79 280 4501 4300)
4(279 4500 4501 280)
4(80 281 4502 4301)
4(280 4501 4502 281)
4(81 282 4503 4302)
4(281 4502 4503 282)
4(82 283 4504 4303)
4(282 4503 4504 283)
4(83 284 4505 4304)
4(283 4504 4505 284)
4(84 285 4506 4305)
4(284 4505 4506 285)
4(85 286 4507 4306)
4(285 4506 4507 286)
4(86 287 4508 4307)
4(286 4507 4508 287)
4(87 288 4509 4308)
4(287 4508 4509 288)
4(88 289 4510 4309)
4(288 4509 4510 289)
4(89 290 4511 4310)
4(289 4510 4511 290)
4(90 291 4512 4311)
4(290 4511 4512 291)
4(91 292 4513 4312)
4(291 4512 4513 292)
4(92 293 4514 4313)
4(292 4513 4514 293)
4(93 294 4515 4314)
4(293 4514 4515 294)
4(94 295 4516 4315)
4(294 4515 4516 295)
4(95 296 4517 4316)
4(295 4516 4517 296)
4(96 297 4518 4317)
4(296 4517 4518 297)
4(97 298 4519 4318)
4(297 4518 4519 298)
4(98 299 4520 4319)
4(298 4519 4520 299)
4(99 300 4521 4320)
4(299 4520 4521 300)
4(100 301 4522 4321)
4(300 4521 4522 301)
4(101 302 4523 4322)
4(301 4522 4523 302)
4(102 303 4524 4323)
4(302 4523 4524 303)
4(103 304 4525 4324)
4(303 4524 4525 304)
4(104 305 4526 4325)
4(304 4525 4526 305)
4(105 306 4527 4326)
4(305 4526 4527 306)
4(106 307 4528 4327)
4(306 4527 4528 307)
4(107 308 4529 4328)
4(307 4528 4529 308)
4(108 309 4530 4329)
4(308 4529 4530 309)
4(109 310 4531 4330)
4(309 4530 4531 310)
4(110 311 4532 4331)
4(310 4531 4532 311)
4(111 312 4533 4332)
4(311 4532 4533 312)
4(112 313 4534 4333)
4(312 4533 4534 313)
4(113 314 4535 4334)
4(313 4534 4535 314)
4(114 315 4536 4335)
4(314 4535 4536 315)
4(115 316 4537 4336)
4(315 4536 4537 316)
4(116 317 4538 4337)
4(316 4537 4538 317)
4(117 318 4539 4338)
4(317 4538 4539 318)
4(118 319 4540 4339)
4(318 4539 4540 319)
4(119 320 4541 4340)
4(319 4540 4541 320)
4(120 321 4542 4341)
4(320 4541 4542 321)
4(121 322 4543 4342)
4(321 4542 4543 322)
4(122 323 4544 4343)
4(322 4543 4544 323)
4(123 324 4545 4344)
4(323 4544 4545 324)
4(124 325 4546 4345)
4(324 4545 4546 325)
4(125 326 4547 4346)
4(325 4546 4547 326)
4(126 327 4548 4347)
4(326 4547 4548 327)
4(127 328 4549 4348)
4(327 4548 4549 328)
4(128 329 4550 4349)
4(328 4549 4550 329)
4(129 330 4551 4350)
4(329 4550 4551 330)
4(130 331 4552 4351)
4(330 4551 4552 331)
4(131 332 4553 4352)
4(331 4552 4553 332)
4(132 333 4554 4353)
4(332 4553 4554 333)
4(133 334 4555 4354)
4(333 4554 4555 334)
4(134 335 4556 4355)
4(334 4555 4556 335)
4(135 336 4557 4356)
4(335 4556 4557 336)
4(136 337 4558 4357)
4(336 4557 4558 337)
4(137 338 4559 4358)
4(337 4558 4559 338)
4(138 339 4560 4359)
4(338 4559 4560 339)
4(139 340 4561 4360)
4(339 4560 4561 340)
4(140 341 4562 4361)
4(340 4561 4562 341)
4(141 342 4563 4362)
4(341 4562 4563 342)
4(142 343 4564 4363)
4(342 4563 4564 343)
4(143 344 4565 4364)
4(343 4564 4565 344)
4(144 345 4566 4365)
4(344 4565 4566 345)
4(145 346 4567 4366)
4(345 4566 4567 346)
4(146 347 4568 4367)
4(346 4567 4568 347)
4(147 348 4569 4368)
4(347 4568 4569 348)
4(148 349 4570 4369)
4(348 4569 4570 349)
4(149 350 4571 4370)
4(349 4570 4571 350)
4(150 351 4572 4371)
4(350 4571 4572 351)
4(151 352 4573 4372)
4(351 4572 4573 352)
4(152 353 4574 4373)
4(352 4573 4574 353)
4(153 354 4575 4374)
4(353 4574 4575 354)
4(154 355 4576 4375)
4(354 4575 4576 355)
4(155 356 4577 4376)
4(355 4576 4577 356)
4(156 357 4578 4377)
4(356 4577 4578 357)
4(157 358 4579 4378)
4(357 4578 4579 358)
4(158 359 4580 4379)
4(358 4579 4580 359)
4(159 360 4581 4380)
4(359 4580 4581 360)
4(160 361 4582 4381)
4(360 4581 4582 361)
4(161 362 4583 4382)
4(361 4582 4583 362)
4(162 363 4584 4383)
4(362 4583 4584 363)
4(163 364 4585 4384)
4(363 4584 4585 364)
4(164 365 4586 4385)
4(364 4585 4586 365)
4(165 366 4587 4386)
4(365 4586 4587 366)
4(166 367 4588 4387)
4(366 4587 4588 367)
4(167 368 4589 4388)
4(367 4588 4589 368)
4(168 369 4590 4389)
4(368 4589 4590 369)
4(169 370 4591 4390)
4(369 4590 4591 370)
4(170 371 4592 4391)
4(370 4591 4592 371)
4(171 372 4593 4392)
4(371 4592 4593 372)
4(172 373 4594 4393)
4(372 4593 4594 373)
4(173 374 4595 4394)
4(373 4594 4595 374)
4(174 375 4596 4395)
4(374 4595 4596 375)
4(175 376 4597 4396)
4(375 4596 4597 376)
4(176 377 4598 4397)
4(376 4597 4598 377)
4(177 378 4599 4398)
4(377 4598 4599 378)
4(178 379 4600 4399)
4(378 4599 4600 379)
4(179 380 4601 4400)
4(379 4600 4601 380)
4(180 381 4602 4401)
4(380 4601 4602 381)
4(181 382 4603 4402)
4(381 4602 4603 382)
4(182 383 4604 4403)
4(382 4603 4604 383)
4(183 384 4605 4404)
4(383 4604 4605 384)
4(184 385 4606 4405)
4(384 4605 4606 385)
4(185 386 4607 4406)
4(385 4606 4607 386)
4(186 387 4608 4407)
4(386 4607 4608 387)
4(187 388 4609 4408)
4(387 4608 4609 388)
4(188 389 4610 4409)
4(388 4609 4610 389)
4(189 390 4611 4410)
4(389 4610 4611 390)
4(190 391 4612 4411)
4(390 4611 4612 391)
4(191 392 4613 4412)
4(391 4612 4613 392)
4(192 393 4614 4413)
4(392 4613 4614 393)
4(193 394 4615 4414)
4(393 4614 4615 394)
4(194 395 4616 4415)
4(394 4615 4616 395)
4(195 396 4617 4416)
4(395 4616 4617 396)
4(196 397 4618 4417)
4(396 4617 4618 397)
4(197 398 4619 4418)
4(397 4618 4619 398)
4(198 399 4620 4419)
4(398 4619 4620 399)
4(199 400 4621 4420)
4(399 4620 4621 400)
4(400 4621 4622 401)
4(202 403 4624 4423)
4(402 4623 4624 403)
4(203 404 4625 4424)
4(403 4624 4625 404)
4(204 405 4626 4425)
4(404 4625 4626 405)
4(205 406 4627 4426)
4(405 4626 4627 406)
4(206 407 4628 4427)
4(406 4627 4628 407)
4(207 408 4629 4428)
4(407 4628 4629 408)
4(208 409 4630 4429)
4(408 4629 4630 409)
4(209 410 4631 4430)
4(409 4630 4631 410)
4(210 411 4632 4431)
4(410 4631 4632 411)
4(211 412 4633 4432)
4(411 4632 4633 412)
4(212 413 4634 4433)
4(412 4633 4634 413)
4(213 414 4635 4434)
4(413 4634 4635 414)
4(214 415 4636 4435)
4(414 4635 4636 415)
4(215 416 4637 4436)
4(415 4636 4637 416)
4(216 417 4638 4437)
4(416 4637 4638 417)
4(217 418 4639 4438)
4(417 4638 4639 418)
4(218 419 4640 4439)
4(418 4639 4640 419)
4(219 420 4641 4440)
4(419 4640 4641 420)
4(220 421 4642 4441)
4(420 4641 4642 421)
4(221 422 4643 4442)
4(421 4642 4643 422)
4(222 423 4644 4443)
4(422 4643 4644 423)
4(223 424 4645 4444)
4(423 4644 4645 424)
4(224 425 4646 4445)
4(424 4645 4646 425)
4(225 426 4647 4446)
4(425 4646 4647 426)
4(226 427 4648 4447)
4(426 4647 4648 427)
4(227 428 4649 4448)
4(427 4648 4649 428)
4(228 429 4650 4449)
4(428 4649 4650 429)
4(229 430 4651 4450)
4(429 4650 4651 430)
4(230 431 4652 4451)
4(430 4651 4652 431)
4(231 432 4653 4452)
4(431 4652 4653 432)
4(232 433 4654 4453)
4(432 4653 4654 433)
4(233 434 4655 4454)
4(433 4654 4655 434)
4(234 435 4656 4455)
4(434 4655 4656 435)
4(235 436 4657 4456)
4(435 4656 4657 436)
4(236 437 4658 4457)
4(436 4657 4658 437)
4(237 438 4659 4458)
4(437 4658 4659 438)
4(238 439 4660 4459)
4(438 4659 4660 439)
4(239 440 4661 4460)
4(439 4660 4661 440)
4(240 441 4662 4461)
4(440 4661 4662 441)
4(241 442 4663 4462)
4(441 4662 4663 442)
4(242 443 4664 4463)
4(442 4663 4664 443)
4(243 444 4665 4464)
4(443 4664 4665 444)
4(244 445 4666 4465)
4(444 4665 4666 445)
4(245 446 4667 4466)
4(445 4666 4667 446)
4(246 447 4668 4467)
4(446 4667 4668 447)
4(247 448 4669 4468)
4(447 4668 4669 448)
4(248 449 4670 4469)
4(448 4669 4670 449)
4(249 450 4671 4470)
4(449 4670 4671 450)
4(250 451 4672 4471)
4(450 4671 4672 451)
4(251 452 4673 4472)
4(451 4672 4673 452)
4(252 453 4674 4473)
4(452 4673 4674 453)
4(253 454 4675 4474)
4(453 4674 4675 454)
4(254 455 4676 4475)
4(454 4675 4676 455)
4(255 456 4677 4476)
4(455 4676 4677 456)
4(256 457 4678 4477)
4(456 4677 4678 457)
4(257 458 4679 4478)
4(457 4678 4679 458)
4(258 459 4680 4479)
4(458 4679 4680 459)
4(259 460 4681 4480)
4(459 4680 4681 460)
4(260 461 4682 4481)
4(460 4681 4682 461)
4(261 462 4683 4482)
4(461 4682 4683 462)
4(262 463 4684 4483)
4(462 4683 4684 463)
4(263 464 4685 4484)
4(463 4684 4685 464)
4(264 465 4686 4485)
4(464 4685 4686 465)
4(265 466 4687 4486)
4(465 4686 4687 466)
4(266 467 4688 4487)
4(466 4687 4688 467)
4(267 468 4689 4488)
4(467 4688 4689 468)
4(268 469 4690 4489)
4(468 4689 4690 469)
4(269 470 4691 4490)
4(469 4690 4691 470)
4(270 471 4692 4491)
4(470 4691 4692 471)
4(271 472 4693 4492)
4(471 4692 4693 472)
4(272 473 4694 4493)
4(472 4693 4694 473)
4(273 474 4695 4494)
4(473 4694 4695 474)
4(274 475 4696 4495)
4(474 4695 4696 475)
4(275 476 4697 4496)
4(475 4696 4697 476)
4(276 477 4698 4497)
4(476 4697 4698 477)
4(277 478 4699 4498)
4(477 4698 4699 478)
4(278 479 4700 4499)
4(478 4699 4700 479)
4(279 480 4701 4500)
4(479 4700 4701 480)
4(280 481 4702 4501)
4(480 4701 4702 481)
4(281 482 4703 4502)
4(481 4702 4703 482)
4(282 483 4704 4503)
4(482 4703 4704 483)
4(283 484 4705 4504)
4(483 4704 4705 484)
4(284 485 4706 4505)
4(484 4705 4706 485)
4(285 486 4707 4506)
4(485 4706 4707 486)
4(286 487 4708 4507)
4(486 4707 4708 487)
4(287 488 4709 4508)
4(487 4708 4709 488)
4(288 489 4710 4509)
4(488 4709 4710 489)
4(289 490 4711 4510)
4(489 4710 4711 490)
4(290 491 4712 4511)
4(490 4711 4712 491)
4(291 492 4713 4512)
4(491 4712 4713 492)
4(292 493 4714 4513)
4(492 4713 4714 493)
4(293 494 4715 4514)
4(493 4714 4715 494)
4(294 495 4716 4515)
4(494 4715 4716 495)
4(295 496 4717 4516)
4(495 4716 4717 496)
4(296 497 4718 4517)
4(496 4717 4718 497)
4(297 498 4719 4518)
4(497 4718 4719 498)
4(298 499 4720 4519)
4(498 4719 4720 499)
4(299 500 4721 4520)
4(499 4720 4721 500)
4(300 501 4722 4521)
4(500 4721 4722 501)
4(301 502 4723 4522)
4(501 4722 4723 502)
4(302 503 4724 4523)
4(502 4723 4724 503)
4(303 504 4725 4524)
4(503 4724 4725 504)
4(304 505 4726 4525)
4(504 4725 4726 505)
4(305 506 4727 4526)
4(505 4726 4727 506)
4(306 507 4728 4527)
4(506 4727 4728 507)
4(307 508 4729 4528)
4(507 4728 4729 508)
4(308 509 4730 4529)
4(508 4729 4730 509)
4(309 510 4731 4530)
4(509 4730 4731 510)
4(310 511 4732 4531)
4(510 4731 4732 511)
4(311 512 4733 4532)
4(511 4732 4733 512)
4(312 513 4734 4533)
4(512 4733 4734 513)
4(313 514 4735 4534)
4(513 4734 4735 514)
4(314 515 4736 4535)
4(514 4735 4736 515)
4(315 516 4737 4536)
4(515 4736 4737 516)
4(316 517 4738 4537)
4(516 4737 4738 517)
4(317 518 4739 4538)
4(517 4738 4739 518)
4(318 519 4740 4539)
4(518 4739 4740 519)
4(319 520 4741 4540)
4(519 4740 4741 520)
4(320 521 4742 4541)
4(520 4741 4742 521)
4(321 522 4743 4542)
4(521 4742 4743 522)
4(322 523 4744 4543)
4(522 4743 4744 523)
4(323 524 4745 4544)
4(523 4744 4745 524)
4(324 525 4746 4545)
4(524 4745 4746 525)
4(325 526 4747 4546)
4(525 4746 4747 526)
4(326 527 4748 4547)
4(526 4747 4748 527)
4(327 528 4749 4548)
4(527 4748 4749 528)
4(328 529 4750 4549)
4(528 4749 4750 529)
4(329 530 4751 4550)
4(529 4750 4751 530)
4(330 531 4752 4551)
4(530 4751 4752 531)
4(331 532 4753 4552)
4(531 4752 4753 532)
4(332 533 4754 4553)
4(532 4753 4754 533)
4(333 534 4755 4554)
4(533 4754 4755 534)
4(334 535 4756 4555)
4(534 4755 4756 535)
4(335 536 4757 4556)
4(535 4756 4757 536)
4(336 537 4758 4557)
4(536 4757 4758 537)
4(337 538 4759 4558)
4(537 4758 4759 538)
4(338 539 4760 4559)
4(538 4759 4760 539)
4(339 540 4761 4560)
4(539 4760 4761 540)
4(340 541 4762 4561)
4(540 4761 4762 541)
4(341 542 4763 4562)
4(541 4762 4763 542)
4(342 543 4764 4563)
4(542 4763 4764 543)
4(343 544 4765 4564)
4(543 4764 4765 544)
4(344 545 4766 4565)
4(544 4765 4766 545)
4(345 546 4767 4566)
4(545 4766 4767 546)
4(346 547 4768 4567)
4(546 4767 4768 547)
4(347 548 4769 4568)
4(547 4768 4769 548)
4(348 549 4770 4569)
4(548 4769 4770 549)
4(349 550 4771 4570)
4(549 4770 4771 550)
4(350 551 4772 4571)
4(550 4771 4772 551)
4(351 552 4773 4572)
4(551 4772 4773 552)
4(352 553 4774 4573)
4(552 4773 4774 553)
4(353 554 4775 4574)
4(553 4774 4775 554)
4(354 555 4776 4575)
4(554 4775 4776 555)
4(355 556 4777 4576)
4(555 4776 4777 556)
4(356 557 4778 4577)
4(556 4777 4778 557)
4(357 558 4779 4578)
4(557 4778 4779 558)
4(358 559 4780 4579)
4(558 4779 4780 559)
4(359 560 4781 4580)
4(559 4780 4781 560)
4(360 561 4782 4581)
4(560 4781 4782 561)
4(361 562 4783 4582)
4(561 4782 4783 562)
4(362 563 4784 4583)
4(562 4783 4784 563)
4(363 564 4785 4584)
4(563 4784 4785 564)
4(364 565 4786 4585)
4(564 4785 4786 565)
4(365 566 4787 4586)
4(565 4786 4787 566)
4(366 567 4788 4587)
4(566 4787 4788 567)
4(367 568 4789 4588)
4(567 4788 4789 568)
4(368 569 4790 4589)
4(568 4789 4790 569)
4(369 570 4791 4590)
4(569 4790 4791 570)
4(370 571 4792 4591)
4(570 4791 4792 571)
4(371 572 4793 4592)
4(571 4792 4793 572)
4(372 573 4794 4593)
4(572 4793 4794 573)
4(373 574 4795 4594)
4(573 4794 4795 574)
4(374 575 4796 4595)
4(574 4795 4796 575)
4(375 576 4797 4596)
4(575 4796 4797 576)
4(376 577 4798 4597)
4(576 4797 4798 577)
4(377 578 4799 4598)
4(577 4798 4799 578)
4(378 579 4800 4599)
4(578 4799 4800 579)
4(379 580 4801 4600)
4(579 4800 4801 580)
4(380 581 4802 4601)
4(580 4801 4802 581)
4(381 582 4803 4602)
4(581 4802 4803 582)
4(382 583 4804 4603)
4(582 4803 4804 583)
4(383 584 4805 4604)
4(583 4804 4805 584)
4(384 585 4806 4605)
4(584 4805 4806 585)
4(385 586 4807 4606)
4(585 4806 4807 586)
4(386 587 4808 4607)
4(586 4807 4808 587)
4(387 588 4809 4608)
4(587 4808 4809 588)
4(388 589 4810 4609)
4(588 4809 4810 589)
4(389 590 4811 4610)
4(589 4810 4811 590)
4(390 591 4812 4611)
4(590 4811 4812 591)
4(391 592 4813 4612)
4(591 4812 4813 592)
4(392 593 4814 4613)
4(592 4813 4814 593)
4(393 594 4815 4614)
4(593 4814 4815 594)
4(394 595 4816 4615)
4(594 4815 4816 595)
4(395 596 4817 4616)
4(595 4816 4817 596)
4(396 597 4818 4617)
4(596 4817 4818 597)
4(397 598 4819 4618)
4(597 4818 4819 598)
4(398 599 4820 4619)
4(598 4819 4820 599)
4(399 600 4821 4620)
4(599 4820 4821 600)
4(400 601 4822 4621)
4(600 4821 4822 601)
4(601 4822 4823 602)
4(403 604 4825 4624)
4(603 4824 4825 604)
4(404 605 4826 4625)
4(604 4825 4826 605)
4(405 606 4827 4626)
4(605 4826 4827 606)
4(406 607 4828 4627)
4(606 4827 4828 607)
4(407 608 4829 4628)
4(607 4828 4829 608)
4(408 609 4830 4629)
4(608 4829 4830 609)
4(409 610 4831 4630)
4(609 4830 4831 610)
4(410 611 4832 4631)
4(610 4831 4832 611)
4(411 612 4833 4632)
4(611 4832 4833 612)
4(412 613 4834 4633)
4(612 4833 4834 613)
4(413 614 4835 4634)
4(613 4834 4835 614)
4(414 615 4836 4635)
4(614 4835 4836 615)
4(415 616 4837 4636)
4(615 4836 4837 616)
4(416 617 4838 4637)
4(616 4837 4838 617)
4(417 618 4839 4638)
4(617 4838 4839 618)
4(418 619 4840 4639)
4(618 4839 4840 619)
4(419 620 4841 4640)
4(619 4840 4841 620)
4(420 621 4842 4641)
4(620 4841 4842 621)
4(421 622 4843 4642)
4(621 4842 4843 622)
4(422 623 4844 4643)
4(622 4843 4844 623)
4(423 624 4845 4644)
4(623 4844 4845 624)
4(424 625 4846 4645)
4(624 4845 4846 625)
4(425 626 4847 4646)
4(625 4846 4847 626)
4(426 627 4848 4647)
4(626 4847 4848 627)
4(427 628 4849 4648)
4(627 4848 4849 628)
4(428 629 4850 4649)
4(628 4849 4850 629)
4(429 630 4851 4650)
4(629 4850 4851 630)
4(430 631 4852 4651)
4(630 4851 4852 631)
4(431 632 4853 4652)
4(631 4852 4853 632)
4(432 633 4854 4653)
4(632 4853 4854 633)
4(433 634 4855 4654)
4(633 4854 4855 634)
4(434 635 4856 4655)
4(634 4855 4856 635)
4(435 636 4857 4656)
4(635 4856 4857 636)
4(436 637 4858 4657)
4(636 4857 4858 637)
4(437 638 4859 4658)
4(637 4858 4859 638)
4(438 639 4860 4659)
4(638 4859 4860 639)
4(439 640 4861 4660)
4(639 4860 4861 640)
4(440 641 4862 4661)
4(640 4861 4862 641)
4(441 642 4863 4662)
4(641 4862 4863 642)
4(442 643 4864 4663)
4(642 4863 4864 643)
4(443 644 4865 4664)
4(643 4864 4865 644)
4(444 645 4866 4665)
4(644 4865 4866 645)
4(445 646 4867 4666)
4(645 4866 4867 646)
4(446 647 4868 4667)
4(646 4867 4868 647)
4(447 648 4869 4668)
4(647 4868 4869 648)
4(448 649 4870 4669)
4(648 4869 4870 649)
4(449 650 4871 4670)
4(649 4870 4871 650)
4(450 651 4872 4671)
4(650 4871 4872 651)
4(451 652 4873 4672)
4(651 4872 4873 652)
4(452 653 4874 4673)
4(652 4873 4874 653)
4(453 654 4875 4674)
4(653 4874 4875 654)
4(454 655 4876 4675)
4(654 4875 4876 655)
4(455 656 4877 4676)
4(655 4876 4877 656)
4(456 657 4878 4677)
4(656 4877 4878 657)
4(457 658 4879 4678)
4(657 4878 4879 658)
4(458 659 4880 4679)
4(658 4879 4880 659)
4(459 660 4881 4680)
4(659 4880 4881 660)
4(460 661 4882 4681)
4(660 4881 4882 661)
4(461 662 4883 4682)
4(661 4882 4883 662)
4(462 663 4884 4683)
4(662 4883 4884 663)
4(463 664 4885 4684)
4(663 4884 4885 664)
4(464 665 4886 4685)
4(664 4885 4886 665)
4(465 666 4887 4686)
4(665 4886 4887 666)
4(466 667 4888 4687)
4(666 4887 4888 667)
4(467 668 4889 4688)
4(667 4888 4889 668)
4(468 669 4890 4689)
4(668 4889 4890 669)
4(469 670 4891 4690)
4(669 4890 4891 670)
4(470 671 4892 4691)
4(670 4891 4892 671)
4(471 672 4893 4692)
4(671 4892 4893 672)
4(472 673 4894 4693)
4(672 4893 4894 673)
4(473 674 4895 4694)
4(673 4894 4895 674)
4(474 675 4896 4695)
4(674 4895 4896 675)
4(475 676 4897 4696)
4(675 4896 4897 676)
4(476 677 4898 4697)
4(676 4897 4898 677)
4(477 678 4899 4698)
4(677 4898 4899 678)
4(478 679 4900 4699)
4(678 4899 4900 679)
4(479 680 4901 4700)
4(679 4900 4901 680)
4(480 681 4902 4701)
4(680 4901 4902 681)
4(481 682 4903 4702)
4(681 4902 4903 682)
4(482 683 4904 4703)
4(682 4903 4904 683)
4(483 684 4905 4704)
4(683 4904 4905 684)
4(484 685 4906 4705)
4(684 4905 4906 685)
4(485 686 4907 4706)
4(685 4906 4907 686)
4(486 687 4908 4707)
4(686 4907 4908 687)
4(487 688 4909 4708)
4(687 4908 4909 688)
4(488 689 4910 4709)
4(688 4909 4910 689)
4(489 690 4911 4710)
4(689 4910 4911 690)
4(490 691 4912 4711)
4(690 4911 4912 691)
4(491 692 4913 4712)
4(691 4912 4913 692)
4(492 693 4914 4713)
4(692 4913 4914 693)
4(493 694 4915 4714)
4(693 4914 4915 694)
4(494 695 4916 4715)
4(694 4915 4916 695)
4(495 696 4917 4716)
4(695 4916 4917 696)
4(496 697 4918 4717)
4(696 4917 4918 697)
4(497 698 4919 4718)
4(697 4918 4919 698)
4(498 699 4920 4719)
4(698 4919 4920 699)
4(499 700 4921 4720)
4(699 4920 4921 700)
4(500 701 4922 4721)
4(700 4921 4922 701)
4(501 702 4923 4722)
4(701 4922 4923 702)
4(502 703 4924 4723)
4(702 4923 4924 703)
4(503 704 4925 4724)
4(703 4924 4925 704)
4(504 705 4926 4725)
4(704 4925 4926 705)
4(505 706 4927 4726)
4(705 4926 4927 706)
4(506 707 4928 4727)
4(706 4927 4928 707)
4(507 708 4929 4728)
4(707 4928 4929 708)
4(508 709 4930 4729)
4(708 4929 4930 709)
4(509 710 4931 4730)
4(709 4930 4931 710)
4(510 711 4932 4731)
4(710 4931 4932 711)
4(511 712 4933 4732)
4(711 4932 4933 712)
4(512 713 4934 4733)
4(712 4933 4934 713)
4(513 714 4935 4734)
4(713 4934 4935 714)
4(514 715 4936 4735)
4(714 4935 4936 715)
4(515 716 4937 4736)
4(715 4936 4937 716)
4(516 717 4938 4737)
4(716 4937 4938 717)
4(517 718 4939 4738)
4(717 4938 4939 718)
4(518 719 4940 4739)
4(718 4939 4940 719)
4(519 720 4941 4740)
4(719 4940 4941 720)
4(520 721 4942 4741)
4(720 4941 4942 721)
4(521 722 4943 4742)
4(721 4942 4943 722)
4(522 723 4944 4743)
4(722 4943 4944 723)
4(523 724 4945 4744)
4(723 4944 4945 724)
4(524 725 4946 4745)
4(724 4945 4946 725)
4(525 726 4947 4746)
4(725 4946 4947 726)
4(526 727 4948 4747)
4(726 4947 4948 727)
4(527 728 4949 4748)
4(727 4948 4949 728)
4(528 729 4950 4749)
4(728 4949 4950 729)
4(529 730 4951 4750)
4(729 4950 4951 730)
4(530 731 4952 4751)
4(730 4951 4952 731)
4(531 732 4953 4752)
4(731 4952 4953 732)
4(532 733 4954 4753)
4(732 4953 4954 733)
4(533 734 4955 4754)
4(733 4954 4955 734)
4(534 735 4956 4755)
4(734 4955 4956 735)
4(535 736 4957 4756)
4(735 4956 4957 736)
4(536 737 4958 4757)
4(736 4957 4958 737)
4(537 738 4959 4758)
4(737 4958 4959 738)
4(538 739 4960 4759)
4(738 4959 4960 739)
4(539 740 4961 4760)
4(739 4960 4961 740)
4(540 741 4962 4761)
4(740 4961 4962 741)
4(541 742 4963 4762)
4(741 4962 4963 742)
4(542 743 4964 4763)
4(742 4963 4964 743)
4(543 744 4965 4764)
4(743 4964 4965 744)
4(544 745 4966 4765)
4(744 4965 4966 745)
4(545 746 4967 4766)
4(745 4966 4967 746)
4(546 747 4968 4767)
4(746 4967 4968 747)
4(547 748 4969 4768)
4(747 4968 4969 748)
4(548 749 4970 4769)
4(748 4969 4970 749)
4(549 750 4971 4770)
4(749 4970 4971 750)
4(550 751 4972 4771)
4(750 4971 4972 751)
4(551 752 4973 4772)
4(751 4972 4973 752)
4(552 753 4974 4773)
4(752 4973 4974 753)
4(553 754 4975 4774)
4(753 4974 4975 754)
4(554 755 4976 4775)
4(754 4975 4976 755)
4(555 756 4977 4776)
4(755 4976 4977 756)
4(556 757 4978 4777)
4(756 4977 4978 757)
4(557 758 4979 4778)
4(757 4978 4979 758)
4(558 759 4980 4779)
4(758 4979 4980 759)
4(559 760 4981 4780)
4(759 4980 4981 760)
4(560 761 4982 4781)
4(760 4981 4982 761)
4(561 762 4983 4782)
4(761 4982 4983 762)
4(562 763 4984 4783)
4(762 4983 4984 763)
4(563 764 4985 4784)
4(763 4984 4985 764)
4(564 765 4986 4785)
4(764 4985 4986 765)
4(565 766 4987 4786)
4(765 4986 4987 766)
4(566 767 4988 4787)
4(766 4987 4988 767)
4(567 768 4989 4788)
4(767 4988 4989 768)
4(568 769 4990 4789)
4(768 4989 4990 769)
4(569 770 4991 4790)
4(769 4990 4991 770)
4(570 771 4992 4791)
4(770 4991 4992 771)
4(571 772 4993 4792)
4(771 4992 4993 772)
4(572 773 4994 4793)
4(772 4993 4994 773)
4(573 774 4995 4794)
4(773 4994 4995 774)
4(574 775 4996 4795)
4(774 4995 4996 775)
4(575 776 4997 4796)
4(775 4996 4997 776)
4(576 777 4998 4797)
4(776 4997 4998 777)
4(577 778 4999 4798)
4(777 4998 4999 778)
4(578 779 5000 4799)
4(778 4999 5000 779)
4(579 780 5001 4800)
4(779 5000 5001 780)
4(580 781 5002 4801)
4(780 5001 5002 781)
4(581 782 5003 4802)
4(781 5002 5003 782)
4(582 783 5004 4803)
4(782 5003 5004 783)
4(583 784 5005 4804)
4(783 5004 5005 784)
4(584 785 5006 4805)
4(784 5005 5006 785)
4(585 786 5007 4806)
4(785 5006 5007 786)
4(586 787 5008 4807)
4(786 5007 5008 787)
4(587 788 5009 4808)
4(787 5008 5009 788)
4(588 789 5010 4809)
4(788 5009 5010 789)
4(589 790 5011 4810)
4(789 5010 5011 790)
4(590 791 5012 4811)
4(790 5011 5012 791)
4(591 792 5013 4812)
4(791 5012 5013 792)
4(592 793 5014 4813)
4(792 5013 5014 793)
4(593 794 5015 4814)
4(793 5014 5015 794)
4(594 795 5016 4815)
4(794 5015 5016 795)
4(595 796 5017 4816)
4(795 5016 5017 796)
4(596 797 5018 4817)
4(796 5017 5018 797)
4(597 798 5019 4818)
4(797 5018 5019 798)
4(598 799 5020 4819)
4(798 5019 5020 799)
4(599 800 5021 4820)
4(799 5020 5021 800)
4(600 801 5022 4821)
4(800 5021 5022 801)
4(601 802 5023 4822)
4(801 5022 5023 802)
4(802 5023 5024 803)
4(604 805 5026 4825)
4(804 5025 5026 805)
4(605 806 5027 4826)
4(805 5026 5027 806)
4(606 807 5028 4827)
4(806 5027 5028 807)
4(607 808 5029 4828)
4(807 5028 5029 808)
4(608 809 5030 4829)
4(808 5029 5030 809)
4(609 810 5031 4830)
4(809 5030 5031 810)
4(610 811 5032 4831)
4(810 5031 5032 811)
4(611 812 5033 4832)
4(811 5032 5033 812)
4(612 813 5034 4833)
4(812 5033 5034 813)
4(613 814 5035 4834)
4(813 5034 5035 814)
4(614 815 5036 4835)
4(814 5035 5036 815)
4(615 816 5037 4836)
4(815 5036 5037 816)
4(616 817 5038 4837)
4(816 5037 5038 817)
4(617 818 5039 4838)
4(817 5038 5039 818)
4(618 819 5040 4839)
4(818 5039 5040 819)
4(619 820 5041 4840)
4(819 5040 5041 820)
4(620 821 5042 4841)
4(820 5041 5042 821)
4(621 822 5043 4842)
4(821 5042 5043 822)
4(622 823 5044 4843)
4(822 5043 5044 823)
4(623 824 5045 4844)
4(823 5044 5045 824)
4(624 825 5046 4845)
4(824 5045 5046 825)
4(625 826 5047 4846)
4(825 5046 5047 826)
4(626 827 5048 4847)
4(826 5047 5048 827)
4(627 828 5049 4848)
4(827 5048 5049 828)
4(628 829 5050 4849)
4(828 5049 5050 829)
4(629 830 5051 4850)
4(829 5050 5051 830)
4(630 831 5052 4851)
4(830 5051 5052 831)
4(631 832 5053 4852)
4(831 5052 5053 832)
4(632 833 5054 4853)
4(832 5053 5054 833)
4(633 834 5055 4854)
4(833 5054 5055 834)
4(634 835 5056 4855)
4(834 5055 5056 835)
4(635 836 5057 4856)
4(835 5056 5057 836)
4(636 837 5058 4857)
4(836 5057 5058 837)
4(637 838 5059 4858)
4(837 5058 5059 838)
4(638 839 5060 4859)
4(838 5059 5060 839)
4(639 840 5061 4860)
4(839 5060 5061 840)
4(640 841 5062 4861)
4(840 5061 5062 841)
4(641 842 5063 4862)
4(841 5062 5063 842)
4(642 843 5064 4863)
4(842 5063 5064 843)
4(643 844 5065 4864)
4(843 5064 5065 844)
4(644 845 5066 4865)
4(844 5065 5066 845)
4(645 846 5067 4866)
4(845 5066 5067 846)
4(646 847 5068 4867)
4(846 5067 5068 847)
4(647 848 5069 4868)
4(847 5068 5069 848)
4(648 849 5070 4869)
4(848 5069 5070 849)
4(649 850 5071 4870)
4(849 5070 5071 850)
4(650 851 5072 4871)
4(850 5071 5072 851)
4(651 852 5073 4872)
4(851 5072 5073 852)
4(652 853 5074 4873)
4(852 5073 5074 853)
4(653 854 5075 4874)
4(853 5074 5075 854)
4(654 855 5076 4875)
4(854 5075 5076 855)
4(655 856 5077 4876)
4(855 5076 5077 856)
4(656 857 5078 4877)
4(856 5077 5078 857)
4(657 858 5079 4878)
4(857 5078 5079 858)
4(658 859 5080 4879)
4(858 5079 5080 859)
4(659 860 5081 4880)
4(859 5080 5081 860)
4(660 861 5082 4881)
4(860 5081 5082 861)
4(661 862 5083 4882)
4(861 5082 5083 862)
4(662 863 5084 4883)
4(862 5083 5084 863)
4(663 864 5085 4884)
4(863 5084 5085 864)
4(664 865 5086 4885)
4(864 5085 5086 865)
4(665 866 5087 4886)
4(865 5086 5087 866)
4(666 867 5088 4887)
4(866 5087 5088 867)
4(667 868 5089 4888)
4(867 5088 5089 868)
4(668 869 5090 4889)
4(868 5089 5090 869)
4(669 870 5091 4890)
4(869 5090 5091 870)
4(670 871 5092 4891)
4(870 5091 5092 871)
4(671 872 5093 4892)
4(871 5092 5093 872)
4(672 873 5094 4893)
4(872 5093 5094 873)
4(673 874 5095 4894)
4(873 5094 5095 874)
4(674 875 5096 4895)
4(874 5095 5096 875)
4(675 876 5097 4896)
4(875 5096 5097 876)
4(676 877 5098 4897)
4(876 5097 5098 877)
4(677 878 5099 4898)
4(877 5098 5099 878)
4(678 879 5100 4899)
4(878 5099 5100 879)
4(679 880 5101 4900)
4(879 5100 5101 880)
4(680 881 5102 4901)
4(880 5101 5102 881)
4(681 882 5103 4902)
4(881 5102 5103 882)
4(682 883 5104 4903)
4(882 5103 5104 883)
4(683 884 5105 4904)
4(883 5104 5105 884)
4(684 885 5106 4905)
4(884 5105 5106 885)
4(685 886 5107 4906)
4(885 5106 5107 886)
4(686 887 5108 4907)
4(886 5107 5108 887)
4(687 888 5109 4908)
4(887 5108 5109 888)
4(688 889 5110 4909)
4(888 5109 5110 889)
4(689 890 5111 4910)
4(889 5110 5111 890)
4(690 891 5112 4911)
4(890 5111 5112 891)
4(691 892 5113 4912)
4(891 5112 5113 892)
4(692 893 5114 4913)
4(892 5113 5114 893)
4(693 894 5115 4914)
4(893 5114 5115 894)
4(694 895 5116 4915)
4(894 5115 5116 895)
4(695 896 5117 4916)
4(895 5116 5117 896)
4(696 897 5118 4917)
4(896 5117 5118 897)
4(697 898 5119 4918)
4(897 5118 5119 898)
4(698 899 5120 4919)
4(898 5119 5120 899)
4(699 900 5121 4920)
4(899 5120 5121 900)
4(700 901 5122 4921)
4(900 5121 5122 901)
4(701 902 5123 4922)
4(901 5122 5123 902)
4(702 903 5124 4923)
4(902 5123 5124 903)
4(703 904 5125 4924)
4(903 5124 5125 904)
4(704 905 5126 4925)
4(904 5125 5126 905)
4(705 906 5127 4926)
4(905 5126 5127 906)
4(706 907 5128 4927)
4(906 5127 5128 907)
4(707 908 5129 4928)
4(907 5128 5129 908)
4(708 909 5130 4929)
4(908 5129 5130 909)
4(709 910 5131 4930)
4(909 5130 5131 910)
4(710 911 5132 4931)
4(910 5131 5132 911)
4(711 912 5133 4932)
4(911 5132 5133 912)
4(712 913 5134 4933)
4(912 5133 5134 913)
4(713 914 5135 4934)
4(913 5134 5135 914)
4(714 915 5136 4935)
4(914 5135 5136 915)
4(715 916 5137 4936)
4(915 5136 5137 916)
4(716 917 5138 4937)
4(916 5137 5138 917)
4(717 918 5139 4938)
4(917 5138 5139 918)
4(718 919 5140 4939)
4(918 5139 5140 919)
4(719 920 5141 4940)
4(919 5140 5141 920)
4(720 921 5142 4941)
4(920 5141 5142 921)
4(721 922 5143 4942)
4(921 5142 5143 922)
4(722 923 5144 4943)
4(922 5143 5144 923)
4(723 924 5145 4944)
4(923 5144 5145 924)
4(724 925 5146 4945)
4(924 5145 5146 925)
4(725 926 5147 4946)
4(925 5146 5147 926)
4(726 927 5148 4947)
4(926 5147 5148 927)
4(727 928 5149 4948)
4(927 5148 5149 928)
4(728 929 5150 4949)
4(928 5149 5150 929)
4(729 930 5151 4950)
4(929 5150 5151 930)
4(730 931 5152 4951)
4(930 5151 5152 931)
4(731 932 5153 4952)
4(931 5152 5153 932)
4(732 933 5154 4953)
4(932 5153 5154 933)
4(733 934 5155 4954)
4(933 5154 5155 934)
4(734 935 5156 4955)
4(934 5155 5156 935)
4(735 936 5157 4956)
4(935 5156 5157 936)
4(736 937 5158 4957)
4(936 5157 5158 937)
4(737 938 5159 4958)
4(937 5158 5159 938)
4(738 939 5160 4959)
4(938 5159 5160 939)
4(739 940 5161 4960)
4(939 5160 5161 940)
4(740 941 5162 4961)
4(940 5161 5162 941)
4(741 942 5163 4962)
4(941 5162 5163 942)
4(742 943 5164 4963)
4(942 5163 5164 943)
4(743 944 5165 4964)
4(943 5164 5165 944)
4(744 945 5166 4965)
4(944 5165 5166 945)
4(745 946 5167 4966)
4(945 5166 5167 946)
4(746 947 5168 4967)
4(946 5167 5168 947)
4(747 948 5169 4968)
4(947 5168 5169 948)
4(748 949 5170 4969)
4(948 5169 5170 949)
4(749 950 5171 4970)
4(949 5170 5171 950)
4(750 951 5172 4971)
4(950 5171 5172 951)
4(751 952 5173 4972)
4(951 5172 5173 952)
4(752 953 5174 4973)
4(952 5173 5174 953)
4(753 954 5175 4974)
4(953 5174 5175 954)
4(754 955 5176 4975)
4(954 5175 5176 955)
4(755 956 5177 4976)
4(955 5176 5177 956)
4(756 957 5178 4977)
4(956 5177 5178 957)
4(757 958 5179 4978)
4(957 5178 5179 958)
4(758 959 5180 4979)
4(958 5179 5180 959)
4(759 960 5181 4980)
4(959 5180 5181 960)
4(760 961 5182 4981)
4(960 5181 5182 961)
4(761 962 5183 4982)
4(961 5182 5183 962)
4(762 963 5184 4983)
4(962 5183 5184 963)
4(763 964 5185 4984)
4(963 5184 5185 964)
4(764 965 5186 4985)
4(964 5185 5186 965)
4(765 966 5187 4986)
4(965 5186 5187 966)
4(766 967 5188 4987)
4(966 5187 5188 967)
4(767 968 5189 4988)
4(967 5188 5189 968)
4(768 969 5190 4989)
4(968 5189 5190 969)
4(769 970 5191 4990)
4(969 5190 5191 970)
4(770 971 5192 4991)
4(970 5191 5192 971)
4(771 972 5193 4992)
4(971 5192 5193 972)
4(772 973 5194 4993)
4(972 5193 5194 973)
4(773 974 5195 4994)
4(973 5194 5195 974)
4(774 975 5196 4995)
4(974 5195 5196 975)
4(775 976 5197 4996)
4(975 5196 5197 976)
4(776 977 5198 4997)
4(976 5197 5198 977)
4(777 978 5199 4998)
4(977 5198 5199 978)
4(778 979 5200 4999)
4(978 5199 5200 979)
4(779 980 5201 5000)
4(979 5200 5201 980)
4(780 981 5202 5001)
4(980 5201 5202 981)
4(781 982 5203 5002)
4(981 5202 5203 982)
4(782 983 5204 5003)
4(982 5203 5204 983)
4(783 984 5205 5004)
4(983 5204 5205 984)
4(784 985 5206 5005)
4(984 5205 5206 985)
4(785 986 5207 5006)
4(985 5206 5207 986)
4(786 987 5208 5007)
4(986 5207 5208 987)
4(787 988 5209 5008)
4(987 5208 5209 988)
4(788 989 5210 5009)
4(988 5209 5210 989)
4(789 990 5211 5010)
4(989 5210 5211 990)
4(790 991 5212 5011)
4(990 5211 5212 991)
4(791 992 5213 5012)
4(991 5212 5213 992)
4(792 993 5214 5013)
4(992 5213 5214 993)
4(793 994 5215 5014)
4(993 5214 5215 994)
4(794 995 5216 5015)
4(994 5215 5216 995)
4(795 996 5217 5016)
4(995 5216 5217 996)
4(796 997 5218 5017)
4(996 5217 5218 997)
4(797 998 5219 5018)
4(997 5218 5219 998)
4(798 999 5220 5019)
4(998 5219 5220 999)
4(799 1000 5221 5020)
4(999 5220 5221 1000)
4(800 1001 5222 5021)
4(1000 5221 5222 1001)
4(801 1002 5223 5022)
4(1001 5222 5223 1002)
4(802 1003 5224 5023)
4(1002 5223 5224 1003)
4(1003 5224 5225 1004)
4(805 1006 5227 5026)
4(1005 5226 5227 1006)
4(806 1007 5228 5027)
4(1006 5227 5228 1007)
4(807 1008 5229 5028)
4(1007 5228 5229 1008)
4(808 1009 5230 5029)
4(1008 5229 5230 1009)
4(809 1010 5231 5030)
4(1009 5230 5231 1010)
4(810 1011 5232 5031)
4(1010 5231 5232 1011)
4(811 1012 5233 5032)
4(1011 5232 5233 1012)
4(812 1013 5234 5033)
4(1012 5233 5234 1013)
4(813 1014 5235 5034)
4(1013 5234 5235 1014)
4(814 1015 5236 5035)
4(1014 5235 5236 1015)
4(815 1016 5237 5036)
4(1015 5236 5237 1016)
4(816 1017 5238 5037)
4(1016 5237 5238 1017)
4(817 1018 5239 5038)
4(1017 5238 5239 1018)
4(818 1019 5240 5039)
4(1018 5239 5240 1019)
4(819 1020 5241 5040)
4(1019 5240 5241 1020)
4(820 1021 5242 5041)
4(1020 5241 5242 1021)
4(821 1022 5243 5042)
4(1021 5242 5243 1022)
4(822 1023 5244 5043)
4(1022 5243 5244 1023)
4(823 1024 5245 5044)
4(1023 5244 5245 1024)
4(824 1025 5246 5045)
4(1024 5245 5246 1025)
4(825 1026 5247 5046)
4(1025 5246 5247 1026)
4(826 1027 5248 5047)
4(1026 5247 5248 1027)
4(827 1028 5249 5048)
4(1027 5248 5249 1028)
4(828 1029 5250 5049)
4(1028 5249 5250 1029)
4(829 1030 5251 5050)
4(1029 5250 5251 1030)
4(830 1031 5252 5051)
4(1030 5251 5252 1031)
4(831 1032 5253 5052)
4(1031 5252 5253 1032)
4(832 1033 5254 5053)
4(1032 5253 5254 1033)
4(833 1034 5255 5054)
4(1033 5254 5255 1034)
4(834 1035 5256 5055)
4(1034 5255 5256 1035)
4(835 1036 5257 5056)
4(1035 5256 5257 1036)
4(836 1037 5258 5057)
4(1036 5257 5258 1037)
4(837 1038 5259 5058)
4(1037 5258 5259 1038)
4(838 1039 5260 5059)
4(1038 5259 5260 1039)
4(839 1040 5261 5060)
4(1039 5260 5261 1040)
4(840 1041 5262 5061)
4(1040 5261 5262 1041)
4(841 1042 5263 5062)
4(1041 5262 5263 1042)
4(842 1043 5264 5063)
4(1042 5263 5264 1043)
4(843 1044 5265 5064)
4(1043 5264 5265 1044)
4(844 1045 5266 5065)
4(1044 5265 5266 1045)
4(845 1046 5267 5066)
4(1045 5266 5267 1046)
4(846 1047 5268 5067)
4(1046 5267 5268 1047)
4(847 1048 5269 5068)
4(1047 5268 5269 1048)
4(848 1049 5270 5069)
4(1048 5269 5270 1049)
4(849 1050 5271 5070)
4(1049 5270 5271 1050)
4(850 1051 5272 5071)
4(1050 5271 5272 1051)
4(851 1052 5273 5072)
4(1051 5272 5273 1052)
4(852 1053 5274 5073)
4(1052 5273 5274 1053)
4(853 1054 5275 5074)
4(1053 5274 5275 1054)
4(854 1055 5276 5075)
4(1054 5275 5276 1055)
4(855 1056 5277 5076)
4(1055 5276 5277 1056)
4(856 1057 5278 5077)
4(1056 5277 5278 1057)
4(857 1058 5279 5078)
4(1057 5278 5279 1058)
4(858 1059 5280 5079)
4(1058 5279 5280 1059)
4(859 1060 5281 5080)
4(1059 5280 5281 1060)
4(860 1061 5282 5081)
4(1060 5281 5282 1061)
4(861 1062 5283 5082)
4(1061 5282 5283 1062)
4(862 1063 5284 5083)
4(1062 5283 5284 1063)
4(863 1064 5285 5084)
4(1063 5284 5285 1064)
4(864 1065 5286 5085)
4(1064 5285 5286 1065)
4(865 1066 5287 5086)
4(1065 5286 5287 1066)
4(866 1067 5288 5087)
4(1066 5287 5288 1067)
4(867 1068 5289 5088)
4(1067 5288 5289 1068)
4(868 1069 5290 5089)
4(1068 5289 5290 1069)
4(869 1070 5291 5090)
4(1069 5290 5291 1070)
4(870 1071 5292 5091)
4(1070 5291 5292 1071)
4(871 1072 5293 5092)
4(1071 5292 5293 1072)
4(872 1073 5294 5093)
4(1072 5293 5294 1073)
4(873 1074 5295 5094)
4(1073 5294 5295 1074)
4(874 1075 5296 5095)
4(1074 5295 5296 1075)
4(875 1076 5297 5096)
4(1075 5296 5297 1076)
4(876 1077 5298 5097)
4(1076 5297 5298 1077)
4(877 1078 5299 5098)
4(1077 5298 5299 1078)
4(878 1079 5300 5099)
4(1078 5299 5300 1079)
4(879 1080 5301 5100)
4(1079 5300 5301 1080)
4(880 1081 5302 5101)
4(1080 5301 5302 1081)
4(881 1082 5303 5102)
4(1081 5302 5303 1082)
4(882 1083 5304 5103)
4(1082 5303 5304 1083)
4(883 1084 5305 5104)
4(1083 5304 5305 1084)
4(884 1085 5306 5105)
4(1084 5305 5306 1085)
4(885 1086 5307 5106)
4(1085 5306 5307 1086)
4(886 1087 5308 5107)
4(1086 5307 5308 1087)
4(887 1088 5309 5108)
4(1087 5308 5309 1088)
4(888 1089 5310 5109)
4(1088 5309 5310 1089)
4(889 1090 5311 5110)
4(1089 5310 5311 1090)
4(890 1091 5312 5111)
4(1090 5311 5312 1091)
4(891 1092 5313 5112)
4(1091 5312 5313 1092)
4(892 1093 5314 5113)
4(1092 5313 5314 1093)
4(893 1094 5315 5114)
4(1093 5314 5315 1094)
4(894 1095 5316 5115)
4(1094 5315 5316 1095)
4(895 1096 5317 5116)
4(1095 5316 5317 1096)
4(896 1097 5318 5117)
4(1096 5317 5318 1097)
4(897 1098 5319 5118)
4(1097 5318 5319 1098)
4(898 1099 5320 5119)
4(1098 5319 5320 1099)
4(899 1100 5321 5120)
4(1099 5320 5321 1100)
4(900 1101 5322 5121)
4(1100 5321 5322 1101)
4(901 1102 5323 5122)
4(1101 5322 5323 1102)
4(902 1103 5324 5123)
4(1102 5323 5324 1103)
4(903 1104 5325 5124)
4(1103 5324 5325 1104)
4(904 1105 5326 5125)
4(1104 5325 5326 1105)
4(905 1106 5327 5126)
4(1105 5326 5327 1106)
4(906 1107 5328 5127)
4(1106 5327 5328 1107)
4(907 1108 5329 5128)
4(1107 5328 5329 1108)
4(908 1109 5330 5129)
4(1108 5329 5330 1109)
4(909 1110 5331 5130)
4(1109 5330 5331 1110)
4(910 1111 5332 5131)
4(1110 5331 5332 1111)
4(911 1112 5333 5132)
4(1111 5332 5333 1112)
4(912 1113 5334 5133)
4(1112 5333 5334 1113)
4(913 1114 5335 5134)
4(1113 5334 5335 1114)
4(914 1115 5336 5135)
4(1114 5335 5336 1115)
4(915 1116 5337 5136)
4(1115 5336 5337 1116)
4(916 1117 5338 5137)
4(1116 5337 5338 1117)
4(917 1118 5339 5138)
4(1117 5338 5339 1118)
4(918 1119 5340 5139)
4(1118 5339 5340 1119)
4(919 1120 5341 5140)
4(1119 5340 5341 1120)
4(920 1121 5342 5141)
4(1120 5341 5342 1121)
4(921 1122 5343 5142)
4(1121 5342 5343 1122)
4(922 1123 5344 5143)
4(1122 5343 5344 1123)
4(923 1124 5345 5144)
4(1123 5344 5345 1124)
4(924 1125 5346 5145)
4(1124 5345 5346 1125)
4(925 1126 5347 5146)
4(1125 5346 5347 1126)
4(926 1127 5348 5147)
4(1126 5347 5348 1127)
4(927 1128 5349 5148)
4(1127 5348 5349 1128)
4(928 1129 5350 5149)
4(1128 5349 5350 1129)
4(929 1130 5351 5150)
4(1129 5350 5351 1130)
4(930 1131 5352 5151)
4(1130 5351 5352 1131)
4(931 1132 5353 5152)
4(1131 5352 5353 1132)
4(932 1133 5354 5153)
4(1132 5353 5354 1133)
4(933 1134 5355 5154)
4(1133 5354 5355 1134)
4(934 1135 5356 5155)
4(1134 5355 5356 1135)
4(935 1136 5357 5156)
4(1135 5356 5357 1136)
4(936 1137 5358 5157)
4(1136 5357 5358 1137)
4(937 1138 5359 5158)
4(1137 5358 5359 1138)
4(938 1139 5360 5159)
4(1138 5359 5360 1139)
4(939 1140 5361 5160)
4(1139 5360 5361 1140)
4(940 1141 5362 5161)
4(1140 5361 5362 1141)
4(941 1142 5363 5162)
4(1141 5362 5363 1142)
4(942 1143 5364 5163)
4(1142 5363 5364 1143)
4(943 1144 5365 5164)
4(1143 5364 5365 1144)
4(944 1145 5366 5165)
4(1144 5365 5366 1145)
4(945 1146 5367 5166)
4(1145 5366 5367 1146)
4(946 1147 5368 5167)
4(1146 5367 5368 1147)
4(947 1148 5369 5168)
4(1147 5368 5369 1148)
4(948 1149 5370 5169)
4(1148 5369 5370 1149)
4(949 1150 5371 5170)
4(1149 5370 5371 1150)
4(950 1151 5372 5171)
4(1150 5371 5372 1151)
4(951 1152 5373 5172)
4(1151 5372 5373 1152)
4(952 1153 5374 5173)
4(1152 5373 5374 1153)
4(953 1154 5375 5174)
4(1153 5374 5375 1154)
4(954 1155 5376 5175)
4(1154 5375 5376 1155)
4(955 1156 5377 5176)
4(1155 5376 5377 1156)
4(956 1157 5378 5177)
4(1156 5377 5378 1157)
4(957 1158 5379 5178)
4(1157 5378 5379 1158)
4(958 1159 5380 5179)
4(1158 5379 5380 1159)
4(959 1160 5381 5180)
4(1159 5380 5381 1160)
4(960 1161 5382 5181)
4(1160 5381 5382 1161)
4(961 1162 5383 5182)
4(1161 5382 5383 1162)
4(962 1163 5384 5183)
4(1162 5383 5384 1163)
4(963 1164 5385 5184)
4(1163 5384 5385 1164)
4(964 1165 5386 5185)
4(1164 5385 5386 1165)
4(965 1166 5387 5186)
4(1165 5386 5387 1166)
4(966 1167 5388 5187)
4(1166 5387 5388 1167)
4(967 1168 5389 5188)
4(1167 5388 5389 1168)
4(968 1169 5390 5189)
4(1168 5389 5390 1169)
4(969 1170 5391 5190)
4(1169 5390 5391 1170)
4(970 1171 5392 5191)
4(1170 5391 5392 1171)
4(971 1172 5393 5192)
4(1171 5392 5393 1172)
4(972 1173 5394 5193)
4(1172 5393 5394 1173)
4(973 1174 5395 5194)
4(1173 5394 5395 1174)
4(974 1175 5396 5195)
4(1174 5395 5396 1175)
4(975 1176 5397 5196)
4(1175 5396 5397 1176)
4(976 1177 5398 5197)
4(1176 5397 5398 1177)
4(977 1178 5399 5198)
4(1177 5398 5399 1178)
4(978 1179 5400 5199)
4(1178 5399 5400 1179)
4(979 1180 5401 5200)
4(1179 5400 5401 1180)
4(980 1181 5402 5201)
4(1180 5401 5402 1181)
4(981 1182 5403 5202)
4(1181 5402 5403 1182)
4(982 1183 5404 5203)
4(1182 5403 5404 1183)
4(983 1184 5405 5204)
4(1183 5404 5405 1184)
4(984 1185 5406 5205)
4(1184 5405 5406 1185)
4(985 1186 5407 5206)
4(1185 5406 5407 1186)
4(986 1187 5408 5207)
4(1186 5407 5408 1187)
4(987 1188 5409 5208)
4(1187 5408 5409 1188)
4(988 1189 5410 5209)
4(1188 5409 5410 1189)
4(989 1190 5411 5210)
4(1189 5410 5411 1190)
4(990 1191 5412 5211)
4(1190 5411 5412 1191)
4(991 1192 5413 5212)
4(1191 5412 5413 1192)
4(992 1193 5414 5213)
4(1192 5413 5414 1193)
4(993 1194 5415 5214)
4(1193 5414 5415 1194)
4(994 1195 5416 5215)
4(1194 5415 5416 1195)
4(995 1196 5417 5216)
4(1195 5416 5417 1196)
4(996 1197 5418 5217)
4(1196 5417 5418 1197)
4(997 1198 5419 5218)
4(1197 5418 5419 1198)
4(998 1199 5420 5219)
4(1198 5419 5420 1199)
4(999 1200 5421 5220)
4(1199 5420 5421 1200)
4(1000 1201 5422 5221)
4(1200 5421 5422 1201)
4(1001 1202 5423 5222)
4(1201 5422 5423 1202)
4(1002 1203 5424 5223)
4(1202 5423 5424 1203)
4(1003 1204 5425 5224)
4(1203 5424 5425 1204)
4(1204 5425 5426 1205)
4(1006 1207 5428 5227)
4(1206 5427 5428 1207)
4(1007 1208 5429 5228)
4(1207 5428 5429 1208)
4(1008 1209 5430 5229)
4(1208 5429 5430 1209)
4(1009 1210 5431 5230)
4(1209 5430 5431 1210)
4(1010 1211 5432 5231)
4(1210 5431 5432 1211)
4(1011 1212 5433 5232)
4(1211 5432 5433 1212)
4(1012 1213 5434 5233)
4(1212 5433 5434 1213)
4(1013 1214 5435 5234)
4(1213 5434 5435 1214)
4(1014 1215 5436 5235)
4(1214 5435 5436 1215)
4(1015 1216 5437 5236)
4(1215 5436 5437 1216)
4(1016 1217 5438 5237)
4(1216 5437 5438 1217)
4(1017 1218 5439 5238)
4(1217 5438 5439 1218)
4(1018 1219 5440 5239)
4(1218 5439 5440 1219)
4(1019 1220 5441 5240)
4(1219 5440 5441 1220)
4(1020 1221 5442 5241)
4(1220 5441 5442 1221)
4(1021 1222 5443 5242)
4(1221 5442 5443 1222)
4(1022 1223 5444 5243)
4(1222 5443 5444 1223)
4(1023 1224 5445 5244)
4(1223 5444 5445 1224)
4(1024 1225 5446 5245)
4(1224 5445 5446 1225)
4(1025 1226 5447 5246)
4(1225 5446 5447 1226)
4(1026 1227 5448 5247)
4(1226 5447 5448 1227)
4(1027 1228 5449 5248)
4(1227 5448 5449 1228)
4(1028 1229 5450 5249)
4(1228 5449 5450 1229)
4(1029 1230 5451 5250)
4(1229 5450 5451 1230)
4(1030 1231 5452 5251)
4(1230 5451 5452 1231)
4(1031 1232 5453 5252)
4(1231 5452 5453 1232)
4(1032 1233 5454 5253)
4(1232 5453 5454 1233)
4(1033 1234 5455 5254)
4(1233 5454 5455 1234)
4(1034 1235 5456 5255)
4(1234 5455 5456 1235)
4(1035 1236 5457 5256)
4(1235 5456 5457 1236)
4(1036 1237 5458 5257)
4(1236 5457 5458 1237)
4(1037 1238 5459 5258)
4(1237 5458 5459 1238)
4(1038 1239 5460 5259)
4(1238 5459 5460 1239)
4(1039 1240 5461 5260)
4(1239 5460 5461 1240)
4(1040 1241 5462 5261)
4(1240 5461 5462 1241)
4(1041 1242 5463 5262)
4(1241 5462 5463 1242)
4(1042 1243 5464 5263)
4(1242 5463 5464 1243)
4(1043 1244 5465 5264)
4(1243 5464 5465 1244)
4(1044 1245 5466 5265)
4(1244 5465 5466 1245)
4(1045 1246 5467 5266)
4(1245 5466 5467 1246)
4(1046 1247 5468 5267)
4(1246 5467 5468 1247)
4(1047 1248 5469 5268)
4(1247 5468 5469 1248)
4(1048 1249 5470 5269)
4(1248 5469 5470 1249)
4(1049 1250 5471 5270)
4(1249 5470 5471 1250)
4(1050 1251 5472 5271)
4(1250 5471 5472 1251)
4(1051 1252 5473 5272)
4(1251 5472 5473 1252)
4(1052 1253 5474 5273)
4(1252 5473 5474 1253)
4(1053 1254 5475 5274)
4(1253 5474 5475 1254)
4(1054 1255 5476 5275)
4(1254 5475 5476 1255)
4(1055 1256 5477 5276)
4(1255 5476 5477 1256)
4(1056 1257 5478 5277)
4(1256 5477 5478 1257)
4(1057 1258 5479 5278)
4(1257 5478 5479 1258)
4(1058 1259 5480 5279)
4(1258 5479 5480 1259)
4(1059 1260 5481 5280)
4(1259 5480 5481 1260)
4(1060 1261 5482 5281)
4(1260 5481 5482 1261)
4(1061 1262 5483 5282)
4(1261 5482 5483 1262)
4(1062 1263 5484 5283)
4(1262 5483 5484 1263)
4(1063 1264 5485 5284)
4(1263 5484 5485 1264)
4(1064 1265 5486 5285)
4(1264 5485 5486 1265)
4(1065 1266 5487 5286)
4(1265 5486 5487 1266)
4(1066 1267 5488 5287)
4(1266 5487 5488 1267)
4(1067 1268 5489 5288)
4(1267 5488 5489 1268)
4(1068 1269 5490 5289)
4(1268 5489 5490 1269)
4(1069 1270 5491 5290)
4(1269 5490 5491 1270)
4(1070 1271 5492 5291)
4(1270 5491 5492 1271)
4(1071 1272 5493 5292)
4(1271 5492 5493 1272)
4(1072 1273 5494 5293)
4(1272 5493 5494 1273)
4(1073 1274 5495 5294)
4(1273 5494 5495 1274)
4(1074 1275 5496 5295)
4(1274 5495 5496 1275)
4(1075 1276 5497 5296)
4(1275 5496 5497 1276)
4(1076 1277 5498 5297)
4(1276 5497 5498 1277)
4(1077 1278 5499 5298)
4(1277 5498 5499 1278)
4(1078 1279 5500 5299)
4(1278 5499 5500 1279)
4(1079 1280 5501 5300)
4(1279 5500 5501 1280)
4(1080 1281 5502 5301)
4(1280 5501 5502 1281)
4(1081 1282 5503 5302)
4(1281 5502 5503 1282)
4(1082 1283 5504 5303)
4(1282 5503 5504 1283)
4(1083 1284 5505 5304)
4(1283 5504 5505 1284)
4(1084 1285 5506 5305)
4(1284 5505 5506 1285)
4(1085 1286 5507 5306)
4(1285 5506 5507 1286)
4(1086 1287 5508 5307)
4(1286 5507 5508 1287)
4(1087 1288 5509 5308)
4(1287 5508 5509 1288)
4(1088 1289 5510 5309)
4(1288 5509 5510 1289)
4(1089 1290 5511 5310)
4(1289 5510 5511 1290)
4(1090 1291 5512 5311)
4(1290 5511 5512 1291)
4(1091 1292 5513 5312)
4(1291 5512 5513 1292)
4(1092 1293 5514 5313)
4(1292 5513 5514 1293)
4(1093 1294 5515 5314)
4(1293 5514 5515 1294)
4(1094 1295 5516 5315)
4(1294 5515 5516 1295)
4(1095 1296 5517 5316)
4(1295 5516 5517 1296)
4(1096 1297 5518 5317)
4(1296 5517 5518 1297)
4(1097 1298 5519 5318)
4(1297 5518 5519 1298)
4(1098 1299 5520 5319)
4(1298 5519 5520 1299)
4(1099 1300 5521 5320)
4(1299 5520 5521 1300)
4(1100 1301 5522 5321)
4(1300 5521 5522 1301)
4(1101 1302 5523 5322)
4(1301 5522 5523 1302)
4(1102 1303 5524 5323)
4(1302 5523 5524 1303)
4(1103 1304 5525 5324)
4(1303 5524 5525 1304)
4(1104 1305 5526 5325)
4(1304 5525 5526 1305)
4(1105 1306 5527 5326)
4(1305 5526 5527 1306)
4(1106 1307 5528 5327)
4(1306 5527 5528 1307)
4(1107 1308 5529 5328)
4(1307 5528 5529 1308)
4(1108 1309 5530 5329)
4(1308 5529 5530 1309)
4(1109 1310 5531 5330)
4(1309 5530 5531 1310)
4(1110 1311 5532 5331)
4(1310 5531 5532 1311)
4(1111 1312 5533 5332)
4(1311 5532 5533 1312)
4(1112 1313 5534 5333)
4(1312 5533 5534 1313)
4(1113 1314 5535 5334)
4(1313 5534 5535 1314)
4(1114 1315 5536 5335)
4(1314 5535 5536 1315)
4(1115 1316 5537 5336)
4(1315 5536 5537 1316)
4(1116 1317 5538 5337)
4(1316 5537 5538 1317)
4(1117 1318 5539 5338)
4(1317 5538 5539 1318)
4(1118 1319 5540 5339)
4(1318 5539 5540 1319)
4(1119 1320 5541 5340)
4(1319 5540 5541 1320)
4(1120 1321 5542 5341)
4(1320 5541 5542 1321)
4(1121 1322 5543 5342)
4(1321 5542 5543 1322)
4(1122 1323 5544 5343)
4(1322 5543 5544 1323)
4(1123 1324 5545 5344)
4(1323 5544 5545 1324)
4(1124 1325 5546 5345)
4(1324 5545 5546 1325)
4(1125 1326 5547 5346)
4(1325 5546 5547 1326)
4(1126 1327 5548 5347)
4(1326 5547 5548 1327)
4(1127 1328 5549 5348)
4(1327 5548 5549 1328)
4(1128 1329 5550 5349)
4(1328 5549 5550 1329)
4(1129 1330 5551 5350)
4(1329 5550 5551 1330)
4(1130 1331 5552 5351)
4(1330 5551 5552 1331)
4(1131 1332 5553 5352)
4(1331 5552 5553 1332)
4(1132 1333 5554 5353)
4(1332 5553 5554 1333)
4(1133 1334 5555 5354)
4(1333 5554 5555 1334)
4(1134 1335 5556 5355)
4(1334 5555 5556 1335)
4(1135 1336 5557 5356)
4(1335 5556 5557 1336)
4(1136 1337 5558 5357)
4(1336 5557 5558 1337)
4(1137 1338 5559 5358)
4(1337 5558 5559 1338)
4(1138 1339 5560 5359)
4(1338 5559 5560 1339)
4(1139 1340 5561 5360)
4(1339 5560 5561 1340)
4(1140 1341 5562 5361)
4(1340 5561 5562 1341)
4(1141 1342 5563 5362)
4(1341 5562 5563 1342)
4(1142 1343 5564 5363)
4(1342 5563 5564 1343)
4(1143 1344 5565 5364)
4(1343 5564 5565 1344)
4(1144 1345 5566 5365)
4(1344 5565 5566 1345)
4(1145 1346 5567 5366)
4(1345 5566 5567 1346)
4(1146 1347 5568 5367)
4(1346 5567 5568 1347)
4(1147 1348 5569 5368)
4(1347 5568 5569 1348)
4(1148 1349 5570 5369)
4(1348 5569 5570 1349)
4(1149 1350 5571 5370)
4(1349 5570 5571 1350)
4(1150 1351 5572 5371)
4(1350 5571 5572 1351)
4(1151 1352 5573 5372)
4(1351 5572 5573 1352)
4(1152 1353 5574 5373)
4(1352 5573 5574 1353)
4(1153 1354 5575 5374)
4(1353 5574 5575 1354)
4(1154 1355 5576 5375)
4(1354 5575 5576 1355)
4(1155 1356 5577 5376)
4(1355 5576 5577 1356)
4(1156 1357 5578 5377)
4(1356 5577 5578 1357)
4(1157 1358 5579 5378)
4(1357 5578 5579 1358)
4(1158 1359 5580 5379)
4(1358 5579 5580 1359)
4(1159 1360 5581 5380)
4(1359 5580 5581 1360)
4(1160 1361 5582 5381)
4(1360 5581 5582 1361)
4(1161 1362 5583 5382)
4(1361 5582 5583 1362)
4(1162 1363 5584 5383)
4(1362 5583 5584 1363)
4(1163 1364 5585 5384)
4(1363 5584 5585 1364)
4(1164 1365 5586 5385)
4(1364 5585 5586 1365)
4(1165 1366 5587 5386)
4(1365 5586 5587 1366)
4(1166 1367 5588 5387)
4(1366 5587 5588 1367)
4(1167 1368 5589 5388)
4(1367 5588 5589 1368)
4(1168 1369 5590 5389)
4(1368 5589 5590 1369)
4(1169 1370 5591 5390)
4(1369 5590 5591 1370)
4(1170 1371 5592 5391)
4(1370 5591 5592 1371)
4(1171 1372 5593 5392)
4(1371 5592 5593 1372)
4(1172 1373 5594 5393)
4(1372 5593 5594 1373)
4(1173 1374 5595 5394)
4(1373 5594 5595 1374)
4(1174 1375 5596 5395)
4(1374 5595 5596 1375)
4(1175 1376 5597 5396)
4(1375 5596 5597 1376)
4(1176 1377 5598 5397)
4(1376 5597 5598 1377)
4(1177 1378 5599 5398)
4(1377 5598 5599 1378)
4(1178 1379 5600 5399)
4(1378 5599 5600 1379)
4(1179 1380 5601 5400)
4(1379 5600 5601 1380)
4(1180 1381 5602 5401)
4(1380 5601 5602 1381)
4(1181 1382 5603 5402)
4(1381 5602 5603 1382)
4(1182 1383 5604 5403)
4(1382 5603 5604 1383)
4(1183 1384 5605 5404)
4(1383 5604 5605 1384)
4(1184 1385 5606 5405)
4(1384 5605 5606 1385)
4(1185 1386 5607 5406)
4(1385 5606 5607 1386)
4(1186 1387 5608 5407)
4(1386 5607 5608 1387)
4(1187 1388 5609 5408)
4(1387 5608 5609 1388)
4(1188 1389 5610 5409)
4(1388 5609 5610 1389)
4(1189 1390 5611 5410)
4(1389 5610 5611 1390)
4(1190 1391 5612 5411)
4(1390 5611 5612 1391)
4(1191 1392 5613 5412)
4(1391 5612 5613 1392)
4(1192 1393 5614 5413)
4(1392 5613 5614 1393)
4(1193 1394 5615 5414)
4(1393 5614 5615 1394)
4(1194 1395 5616 5415)
4(1394 5615 5616 1395)
4(1195 1396 5617 5416)
4(1395 5616 5617 1396)
4(1196 1397 5618 5417)
4(1396 5617 5618 1397)
4(1197 1398 5619 5418)
4(1397 5618 5619 1398)
4(1198 1399 5620 5419)
4(1398 5619 5620 1399)
4(1199 1400 5621 5420)
4(1399 5620 5621 1400)
4(1200 1401 5622 5421)
4(1400 5621 5622 1401)
4(1201 1402 5623 5422)
4(1401 5622 5623 1402)
4(1202 1403 5624 5423)
4(1402 5623 5624 1403)
4(1203 1404 5625 5424)
4(1403 5624 5625 1404)
4(1204 1405 5626 5425)
4(1404 5625 5626 1405)
4(1405 5626 5627 1406)
4(1207 1408 5629 5428)
4(1407 5628 5629 1408)
4(1208 1409 5630 5429)
4(1408 5629 5630 1409)
4(1209 1410 5631 5430)
4(1409 5630 5631 1410)
4(1210 1411 5632 5431)
4(1410 5631 5632 1411)
4(1211 1412 5633 5432)
4(1411 5632 5633 1412)
4(1212 1413 5634 5433)
4(1412 5633 5634 1413)
4(1213 1414 5635 5434)
4(1413 5634 5635 1414)
4(1214 1415 5636 5435)
4(1414 5635 5636 1415)
4(1215 1416 5637 5436)
4(1415 5636 5637 1416)
4(1216 1417 5638 5437)
4(1416 5637 5638 1417)
4(1217 1418 5639 5438)
4(1417 5638 5639 1418)
4(1218 1419 5640 5439)
4(1418 5639 5640 1419)
4(1219 1420 5641 5440)
4(1419 5640 5641 1420)
4(1220 1421 5642 5441)
4(1420 5641 5642 1421)
4(1221 1422 5643 5442)
4(1421 5642 5643 1422)
4(1222 1423 5644 5443)
4(1422 5643 5644 1423)
4(1223 1424 5645 5444)
4(1423 5644 5645 1424)
4(1224 1425 5646 5445)
4(1424 5645 5646 1425)
4(1225 1426 5647 5446)
4(1425 5646 5647 1426)
4(1226 1427 5648 5447)
4(1426 5647 5648 1427)
4(1227 1428 5649 5448)
4(1427 5648 5649 1428)
4(1228 1429 5650 5449)
4(1428 5649 5650 1429)
4(1229 1430 5651 5450)
4(1429 5650 5651 1430)
4(1230 1431 5652 5451)
4(1430 5651 5652 1431)
4(1231 1432 5653 5452)
4(1431 5652 5653 1432)
4(1232 1433 5654 5453)
4(1432 5653 5654 1433)
4(1233 1434 5655 5454)
4(1433 5654 5655 1434)
4(1234 1435 5656 5455)
4(1434 5655 5656 1435)
4(1235 1436 5657 5456)
4(1435 5656 5657 1436)
4(1236 1437 5658 5457)
4(1436 5657 5658 1437)
4(1237 1438 5659 5458)
4(1437 5658 5659 1438)
4(1238 1439 5660 5459)
4(1438 5659 5660 1439)
4(1239 1440 5661 5460)
4(1439 5660 5661 1440)
4(1240 1441 5662 5461)
4(1440 5661 5662 1441)
4(1241 1442 5663 5462)
4(1441 5662 5663 1442)
4(1242 1443 5664 5463)
4(1442 5663 5664 1443)
4(1243 1444 5665 5464)
4(1443 5664 5665 1444)
4(1244 1445 5666 5465)
4(1444 5665 5666 1445)
4(1245 1446 5667 5466)
4(1445 5666 5667 1446)
4(1246 1447 5668 5467)
4(1446 5667 5668 1447)
4(1247 1448 5669 5468)
4(1447 5668 5669 1448)
4(1248 1449 5670 5469)
4(1448 5669 5670 1449)
4(1249 1450 5671 5470)
4(1449 5670 5671 1450)
4(1250 1451 5672 5471)
4(1450 5671 5672 1451)
4(1251 1452 5673 5472)
4(1451 5672 5673 1452)
4(1252 1453 5674 5473)
4(1452 5673 5674 1453)
4(1253 1454 5675 5474)
4(1453 5674 5675 1454)
4(1254 1455 5676 5475)
4(1454 5675 5676 1455)
4(1255 1456 5677 5476)
4(1455 5676 5677 1456)
4(1256 1457 5678 5477)
4(1456 5677 5678 1457)
4(1257 1458 5679 5478)
4(1457 5678 5679 1458)
4(1258 1459 5680 5479)
4(1458 5679 5680 1459)
4(1259 1460 5681 5480)
4(1459 5680 5681 1460)
4(1260 1461 5682 5481)
4(1460 5681 5682 1461)
4(1261 1462 5683 5482)
4(1461 5682 5683 1462)
4(1262 1463 5684 5483)
4(1462 5683 5684 1463)
4(1263 1464 5685 5484)
4(1463 5684 5685 1464)
4(1264 1465 5686 5485)
4(1464 5685 5686 1465)
4(1265 1466 5687 5486)
4(1465 5686 5687 1466)
4(1266 1467 5688 5487)
4(1466 5687 5688 1467)
4(1267 1468 5689 5488)
4(1467 5688 5689 1468)
4(1268 1469 5690 5489)
4(1468 5689 5690 1469)
4(1269 1470 5691 5490)
4(1469 5690 5691 1470)
4(1270 1471 5692 5491)
4(1470 5691 5692 1471)
4(1271 1472 5693 5492)
4(1471 5692 5693 1472)
4(1272 1473 5694 5493)
4(1472 5693 5694 1473)
4(1273 1474 5695 5494)
4(1473 5694 5695 1474)
4(1274 1475 5696 5495)
4(1474 5695 5696 1475)
4(1275 1476 5697 5496)
4(1475 5696 5697 1476)
4(1276 1477 5698 5497)
4(1476 5697 5698 1477)
4(1277 1478 5699 5498)
4(1477 5698 5699 1478)
4(1278 1479 5700 5499)
4(1478 5699 5700 1479)
4(1279 1480 5701 5500)
4(1479 5700 5701 1480)
4(1280 1481 5702 5501)
4(1480 5701 5702 1481)
4(1281 1482 5703 5502)
4(1481 5702 5703 1482)
4(1282 1483 5704 5503)
4(1482 5703 5704 1483)
4(1283 1484 5705 5504)
4(1483 5704 5705 1484)
4(1284 1485 5706 5505)
4(1484 5705 5706 1485)
4(1285 1486 5707 5506)
4(1485 5706 5707 1486)
4(1286 1487 5708 5507)
4(1486 5707 5708 1487)
4(1287 1488 5709 5508)
4(1487 5708 5709 1488)
4(1288 1489 5710 5509)
4(1488 5709 5710 1489)
4(1289 1490 5711 5510)
4(1489 5710 5711 1490)
4(1290 1491 5712 5511)
4(1490 5711 5712 1491)
4(1291 1492 5713 5512)
4(1491 5712 5713 1492)
4(1292 1493 5714 5513)
4(1492 5713 5714 1493)
4(1293 1494 5715 5514)
4(1493 5714 5715 1494)
4(1294 1495 5716 5515)
4(1494 5715 5716 1495)
4(1295 1496 5717 5516)
4(1495 5716 5717 1496)
4(1296 1497 5718 5517)
4(1496 5717 5718 1497)
4(1297 1498 5719 5518)
4(1497 5718 5719 1498)
4(1298 1499 5720 5519)
4(1498 5719 5720 1499)
4(1299 1500 5721 5520)
4(1499 5720 5721 1500)
4(1300 1501 5722 5521)
4(1500 5721 5722 1501)
4(1301 1502 5723 5522)
4(1501 5722 5723 1502)
4(1302 1503 5724 5523)
4(1502 5723 5724 1503)
4(1303 1504 5725 5524)
4(1503 5724 5725 1504)
4(1304 1505 5726 5525)
4(1504 5725 5726 1505)
4(1305 1506 5727 5526)
4(1505 5726 5727 1506)
4(1306 1507 5728 5527)
4(1506 5727 5728 1507)
4(1307 1508 5729 5528)
4(1507 5728 5729 1508)
4(1308 1509 5730 5529)
4(1508 5729 5730 1509)
4(1309 1510 5731 5530)
4(1509 5730 5731 1510)
4(1310 1511 5732 5531)
4(1510 5731 5732 1511)
4(1311 1512 5733 5532)
4(1511 5732 5733 1512)
4(1312 1513 5734 5533)
4(1512 5733 5734 1513)
4(1313 1514 5735 5534)
4(1513 5734 5735 1514)
4(1314 1515 5736 5535)
4(1514 5735 5736 1515)
4(1315 1516 5737 5536)
4(1515 5736 5737 1516)
4(1316 1517 5738 5537)
4(1516 5737 5738 1517)
4(1317 1518 5739 5538)
4(1517 5738 5739 1518)
4(1318 1519 5740 5539)
4(1518 5739 5740 1519)
4(1319 1520 5741 5540)
4(1519 5740 5741 1520)
4(1320 1521 5742 5541)
4(1520 5741 5742 1521)
4(1321 1522 5743 5542)
4(1521 5742 5743 1522)
4(1322 1523 5744 5543)
4(1522 5743 5744 1523)
4(1323 1524 5745 5544)
4(1523 5744 5745 1524)
4(1324 1525 5746 5545)
4(1524 5745 5746 1525)
4(1325 1526 5747 5546)
4(1525 5746 5747 1526)
4(1326 1527 5748 5547)
4(1526 5747 5748 1527)
4(1327 1528 5749 5548)
4(1527 5748 5749 1528)
4(1328 1529 5750 5549)
4(1528 5749 5750 1529)
4(1329 1530 5751 5550)
4(1529 5750 5751 1530)
4(1330 1531 5752 5551)
4(1530 5751 5752 1531)
4(1331 1532 5753 5552)
4(1531 5752 5753 1532)
4(1332 1533 5754 5553)
4(1532 5753 5754 1533)
4(1333 1534 5755 5554)
4(1533 5754 5755 1534)
4(1334 1535 5756 5555)
4(1534 5755 5756 1535)
4(1335 1536 5757 5556)
4(1535 5756 5757 1536)
4(1336 1537 5758 5557)
4(1536 5757 5758 1537)
4(1337 1538 5759 5558)
4(1537 5758 5759 1538)
4(1338 1539 5760 5559)
4(1538 5759 5760 1539)
4(1339 1540 5761 5560)
4(1539 5760 5761 1540)
4(1340 1541 5762 5561)
4(1540 5761 5762 1541)
4(1341 1542 5763 5562)
4(1541 5762 5763 1542)
4(1342 1543 5764 5563)
4(1542 5763 5764 1543)
4(1343 1544 5765 5564)
4(1543 5764 5765 1544)
4(1344 1545 5766 5565)
4(1544 5765 5766 1545)
4(1345 1546 5767 5566)
4(1545 5766 5767 1546)
4(1346 1547 5768 5567)
4(1546 5767 5768 1547)
4(1347 1548 5769 5568)
4(1547 5768 5769 1548)
4(1348 1549 5770 5569)
4(1548 5769 5770 1549)
4(1349 1550 5771 5570)
4(1549 5770 5771 1550)
4(1350 1551 5772 5571)
4(1550 5771 5772 1551)
4(1351 1552 5773 5572)
4(1551 5772 5773 1552)
4(1352 1553 5774 5573)
4(1552 5773 5774 1553)
4(1353 1554 5775 5574)
4(1553 5774 5775 1554)
4(1354 1555 5776 5575)
4(1554 5775 5776 1555)
4(1355 1556 5777 5576)
4(1555 5776 5777 1556)
4(1356 1557 5778 5577)
4(1556 5777 5778 1557)
4(1357 1558 5779 5578)
4(1557 5778 5779 1558)
4(1358 1559 5780 5579)
4(1558 5779 5780 1559)
4(1359 1560 5781 5580)
4(1559 5780 5781 1560)
4(1360 1561 5782 5581)
4(1560 5781 5782 1561)
4(1361 1562 5783 5582)
4(1561 5782 5783 1562)
4(1362 1563 5784 5583)
4(1562 5783 5784 1563)
4(1363 1564 5785 5584)
4(1563 5784 5785 1564)
4(1364 1565 5786 5585)
4(1564 5785 5786 1565)
4(1365 1566 5787 5586)
4(1565 5786 5787 1566)
4(1366 1567 5788 5587)
4(1566 5787 5788 1567)
4(1367 1568 5789 5588)
4(1567 5788 5789 1568)
4(1368 1569 5790 5589)
4(1568 5789 5790 1569)
4(1369 1570 5791 5590)
4(1569 5790 5791 1570)
4(1370 1571 5792 5591)
4(1570 5791 5792 1571)
4(1371 1572 5793 5592)
4(1571 5792 5793 1572)
4(1372 1573 5794 5593)
4(1572 5793 5794 1573)
4(1373 1574 5795 5594)
4(1573 5794 5795 1574)
4(1374 1575 5796 5595)
4(1574 5795 5796 1575)
4(1375 1576 5797 5596)
4(1575 5796 5797 1576)
4(1376 1577 5798 5597)
4(1576 5797 5798 1577)
4(1377 1578 5799 5598)
4(1577 5798 5799 1578)
4(1378 1579 5800 5599)
4(1578 5799 5800 1579)
4(1379 1580 5801 5600)
4(1579 5800 5801 1580)
4(1380 1581 5802 5601)
4(1580 5801 5802 1581)
4(1381 1582 5803 5602)
4(1581 5802 5803 1582)
4(1382 1583 5804 5603)
4(1582 5803 5804 1583)
4(1383 1584 5805 5604)
4(1583 5804 5805 1584)
4(1384 1585 5806 5605)
4(1584 5805 5806 1585)
4(1385 1586 5807 5606)
4(1585 5806 5807 1586)
4(1386 1587 5808 5607)
4(1586 5807 5808 1587)
4(1387 1588 5809 5608)
4(1587 5808 5809 1588)
4(1388 1589 5810 5609)
4(1588 5809 5810 1589)
4(1389 1590 5811 5610)
4(1589 5810 5811 1590)
4(1390 1591 5812 5611)
4(1590 5811 5812 1591)
4(1391 1592 5813 5612)
4(1591 5812 5813 1592)
4(1392 1593 5814 5613)
4(1592 5813 5814 1593)
4(1393 1594 5815 5614)
4(1593 5814 5815 1594)
4(1394 1595 5816 5615)
4(1594 5815 5816 1595)
4(1395 1596 5817 5616)
4(1595 5816 5817 1596)
4(1396 1597 5818 5617)
4(1596 5817 5818 1597)
4(1397 1598 5819 5618)
4(1597 5818 5819 1598)
4(1398 1599 5820 5619)
4(1598 5819 5820 1599)
4(1399 1600 5821 5620)
4(1599 5820 5821 1600)
4(1400 1601 5822 5621)
4(1600 5821 5822 1601)
4(1401 1602 5823 5622)
4(1601 5822 5823 1602)
4(1402 1603 5824 5623)
4(1602 5823 5824 1603)
4(1403 1604 5825 5624)
4(1603 5824 5825 1604)
4(1404 1605 5826 5625)
4(1604 5825 5826 1605)
4(1405 1606 5827 5626)
4(1605 5826 5827 1606)
4(1606 5827 5828 1607)
4(1408 1609 5830 5629)
4(1608 5829 5830 1609)
4(1409 1610 5831 5630)
4(1609 5830 5831 1610)
4(1410 1611 5832 5631)
4(1610 5831 5832 1611)
4(1411 1612 5833 5632)
4(1611 5832 5833 1612)
4(1412 1613 5834 5633)
4(1612 5833 5834 1613)
4(1413 1614 5835 5634)
4(1613 5834 5835 1614)
4(1414 1615 5836 5635)
4(1614 5835 5836 1615)
4(1415 1616 5837 5636)
4(1615 5836 5837 1616)
4(1416 1617 5838 5637)
4(1616 5837 5838 1617)
4(1417 1618 5839 5638)
4(1617 5838 5839 1618)
4(1418 1619 5840 5639)
4(1618 5839 5840 1619)
4(1419 1620 5841 5640)
4(1619 5840 5841 1620)
4(1420 1621 5842 5641)
4(1620 5841 5842 1621)
4(1421 1622 5843 5642)
4(1621 5842 5843 1622)
4(1422 1623 5844 5643)
4(1622 5843 5844 1623)
4(1423 1624 5845 5644)
4(1623 5844 5845 1624)
4(1424 1625 5846 5645)
4(1624 5845 5846 1625)
4(1425 1626 5847 5646)
4(1625 5846 5847 1626)
4(1426 1627 5848 5647)
4(1626 5847 5848 1627)
4(1427 1628 5849 5648)
4(1627 5848 5849 1628)
4(1428 1629 5850 5649)
4(1628 5849 5850 1629)
4(1429 1630 5851 5650)
4(1629 5850 5851 1630)
4(1430 1631 5852 5651)
4(1630 5851 5852 1631)
4(1431 1632 5853 5652)
4(1631 5852 5853 1632)
4(1432 1633 5854 5653)
4(1632 5853 5854 1633)
4(1433 1634 5855 5654)
4(1633 5854 5855 1634)
4(1434 1635 5856 5655)
4(1634 5855 5856 1635)
4(1435 1636 5857 5656)
4(1635 5856 5857 1636)
4(1436 1637 5858 5657)
4(1636 5857 5858 1637)
4(1437 1638 5859 5658)
4(1637 5858 5859 1638)
4(1438 1639 5860 5659)
4(1638 5859 5860 1639)
4(1439 1640 5861 5660)
4(1639 5860 5861 1640)
4(1440 1641 5862 5661)
4(1640 5861 5862 1641)
4(1441 1642 5863 5662)
4(1641 5862 5863 1642)
4(1442 1643 5864 5663)
4(1642 5863 5864 1643)
4(1443 1644 5865 5664)
4(1643 5864 5865 1644)
4(1444 1645 5866 5665)
4(1644 5865 5866 1645)
4(1445 1646 5867 5666)
4(1645 5866 5867 1646)
4(1446 1647 5868 5667)
4(1646 5867 5868 1647)
4(1447 1648 5869 5668)
4(1647 5868 5869 1648)
4(1448 1649 5870 5669)
4(1648 5869 5870 1649)
4(1449 1650 5871 5670)
4(1649 5870 5871 1650)
4(1450 1651 5872 5671)
4(1650 5871 5872 1651)
4(1451 1652 5873 5672)
4(1651 5872 5873 1652)
4(1452 1653 5874 5673)
4(1652 5873 5874 1653)
4(1453 1654 5875 5674)
4(1653 5874 5875 1654)
4(1454 1655 5876 5675)
4(1654 5875 5876 1655)
4(1455 1656 5877 5676)
4(1655 5876 5877 1656)
4(1456 1657 5878 5677)
4(1656 5877 5878 1657)
4(1457 1658 5879 5678)
4(1657 5878 5879 1658)
4(1458 1659 5880 5679)
4(1658 5879 5880 1659)
4(1459 1660 5881 5680)
4(1659 5880 5881 1660)
4(1460 1661 5882 5681)
4(1660 5881 5882 1661)
4(1461 1662 5883 5682)
4(1661 5882 5883 1662)
4(1462 1663 5884 5683)
4(1662 5883 5884 1663)
4(1463 1664 5885 5684)
4(1663 5884 5885 1664)
4(1464 1665 5886 5685)
4(1664 5885 5886 1665)
4(1465 1666 5887 5686)
4(1665 5886 5887 1666)
4(1466 1667 5888 5687)
4(1666 5887 5888 1667)
4(1467 1668 5889 5688)
4(1667 5888 5889 1668)
4(1468 1669 5890 5689)
4(1668 5889 5890 1669)
4(1469 1670 5891 5690)
4(1669 5890 5891 1670)
4(1470 1671 5892 5691)
4(1670 5891 5892 1671)
4(1471 1672 5893 5692)
4(1671 5892 5893 1672)
4(1472 1673 5894 5693)
4(1672 5893 5894 1673)
4(1473 1674 5895 5694)
4(1673 5894 5895 1674)
4(1474 1675 5896 5695)
4(1674 5895 5896 1675)
4(1475 1676 5897 5696)
4(1675 5896 5897 1676)
4(1476 1677 5898 5697)
4(1676 5897 5898 1677)
4(1477 1678 5899 5698)
4(1677 5898 5899 1678)
4(1478 1679 5900 5699)
4(1678 5899 5900 1679)
4(1479 1680 5901 5700)
4(1679 5900 5901 1680)
4(1480 1681 5902 5701)
4(1680 5901 5902 1681)
4(1481 1682 5903 5702)
4(1681 5902 5903 1682)
4(1482 1683 5904 5703)
4(1682 5903 5904 1683)
4(1483 1684 5905 5704)
4(1683 5904 5905 1684)
4(1484 1685 5906 5705)
4(1684 5905 5906 1685)
4(1485 1686 5907 5706)
4(1685 5906 5907 1686)
4(1486 1687 5908 5707)
4(1686 5907 5908 1687)
4(1487 1688 5909 5708)
4(1687 5908 5909 1688)
4(1488 1689 5910 5709)
4(1688 5909 5910 1689)
4(1489 1690 5911 5710)
4(1689 5910 5911 1690)
4(1490 1691 5912 5711)
4(1690 5911 5912 1691)
4(1491 1692 5913 5712)
4(1691 5912 5913 1692)
4(1492 1693 5914 5713)
4(1692 5913 5914 1693)
4(1493 1694 5915 5714)
4(1693 5914 5915 1694)
4(1494 1695 5916 5715)
4(1694 5915 5916 1695)
4(1495 1696 5917 5716)
4(1695 5916 5917 1696)
4(1496 1697 5918 5717)
4(1696 5917 5918 1697)
4(1497 1698 5919 5718)
4(1697 5918 5919 1698)
4(1498 1699 5920 5719)
4(1698 5919 5920 1699)
4(1499 1700 5921 5720)
4(1699 5920 5921 1700)
4(1500 1701 5922 5721)
4(1700 5921 5922 1701)
4(1501 1702 5923 5722)
4(1701 5922 5923 1702)
4(1502 1703 5924 5723)
4(1702 5923 5924 1703)
4(1503 1704 5925 5724)
4(1703 5924 5925 1704)
4(1504 1705 5926 5725)
4(1704 5925 5926 1705)
4(1505 1706 5927 5726)
4(1705 5926 5927 1706)
4(1506 1707 5928 5727)
4(1706 5927 5928 1707)
4(1507 1708 5929 5728)
4(1707 5928 5929 1708)
4(1508 1709 5930 5729)
4(1708 5929 5930 1709)
4(1509 1710 5931 5730)
4(1709 5930 5931 1710)
4(1510 1711 5932 5731)
4(1710 5931 5932 1711)
4(1511 1712 5933 5732)
4(1711 5932 5933 1712)
4(1512 1713 5934 5733)
4(1712 5933 5934 1713)
4(1513 1714 5935 5734)
4(1713 5934 5935 1714)
4(1514 1715 5936 5735)
4(1714 5935 5936 1715)
4(1515 1716 5937 5736)
4(1715 5936 5937 1716)
4(1516 1717 5938 5737)
4(1716 5937 5938 1717)
4(1517 1718 5939 5738)
4(1717 5938 5939 1718)
4(1518 1719 5940 5739)
4(1718 5939 5940 1719)
4(1519 1720 5941 5740)
4(1719 5940 5941 1720)
4(1520 1721 5942 5741)
4(1720 5941 5942 1721)
4(1521 1722 5943 5742)
4(1721 5942 5943 1722)
4(1522 1723 5944 5743)
4(1722 5943 5944 1723)
4(1523 1724 5945 5744)
4(1723 5944 5945 1724)
4(1524 1725 5946 5745)
4(1724 5945 5946 1725)
4(1525 1726 5947 5746)
4(1725 5946 5947 1726)
4(1526 1727 5948 5747)
4(1726 5947 5948 1727)
4(1527 1728 5949 5748)
4(1727 5948 5949 1728)
4(1528 1729 5950 5749)
4(1728 5949 5950 1729)
4(1529 1730 5951 5750)
4(1729 5950 5951 1730)
4(1530 1731 5952 5751)
4(1730 5951 5952 1731)
4(1531 1732 5953 5752)
4(1731 5952 5953 1732)
4(1532 1733 5954 5753)
4(1732 5953 5954 1733)
4(1533 1734 5955 5754)
4(1733 5954 5955 1734)
4(1534 1735 5956 5755)
4(1734 5955 5956 1735)
4(1535 1736 5957 5756)
4(1735 5956 5957 1736)
4(1536 1737 5958 5757)
4(1736 5957 5958 1737)
4(1537 1738 5959 5758)
4(1737 5958 5959 1738)
4(1538 1739 5960 5759)
4(1738 5959 5960 1739)
4(1539 1740 5961 5760)
4(1739 5960 5961 1740)
4(1540 1741 5962 5761)
4(1740 5961 5962 1741)
4(1541 1742 5963 5762)
4(1741 5962 5963 1742)
4(1542 1743 5964 5763)
4(1742 5963 5964 1743)
4(1543 1744 5965 5764)
4(1743 5964 5965 1744)
4(1544 1745 5966 5765)
4(1744 5965 5966 1745)
4(1545 1746 5967 5766)
4(1745 5966 5967 1746)
4(1546 1747 5968 5767)
4(1746 5967 5968 1747)
4(1547 1748 5969 5768)
4(1747 5968 5969 1748)
4(1548 1749 5970 5769)
4(1748 5969 5970 1749)
4(1549 1750 5971 5770)
4(1749 5970 5971 1750)
4(1550 1751 5972 5771)
4(1750 5971 5972 1751)
4(1551 1752 5973 5772)
4(1751 5972 5973 1752)
4(1552 1753 5974 5773)
4(1752 5973 5974 1753)
4(1553 1754 5975 5774)
4(1753 5974 5975 1754)
4(1554 1755 5976 5775)
4(1754 5975 5976 1755)
4(1555 1756 5977 5776)
4(1755 5976 5977 1756)
4(1556 1757 5978 5777)
4(1756 5977 5978 1757)
4(1557 1758 5979 5778)
4(1757 5978 5979 1758)
4(1558 1759 5980 5779)
4(1758 5979 5980 1759)
4(1559 1760 5981 5780)
4(1759 5980 5981 1760)
4(1560 1761 5982 5781)
4(1760 5981 5982 1761)
4(1561 1762 5983 5782)
4(1761 5982 5983 1762)
4(1562 1763 5984 5783)
4(1762 5983 5984 1763)
4(1563 1764 5985 5784)
4(1763 5984 5985 1764)
4(1564 1765 5986 5785)
4(1764 5985 5986 1765)
4(1565 1766 5987 5786)
4(1765 5986 5987 1766)
4(1566 1767 5988 5787)
4(1766 5987 5988 1767)
4(1567 1768 5989 5788)
4(1767 5988 5989 1768)
4(1568 1769 5990 5789)
4(1768 5989 5990 1769)
4(1569 1770 5991 5790)
4(1769 5990 5991 1770)
4(1570 1771 5992 5791)
4(1770 5991 5992 1771)
4(1571 1772 5993 5792)
4(1771 5992 5993 1772)
4(1572 1773 5994 5793)
4(1772 5993 5994 1773)
4(1573 1774 5995 5794)
4(1773 5994 5995 1774)
4(1574 1775 5996 5795)
4(1774 5995 5996 1775)
4(1575 1776 5997 5796)
4(1775 5996 5997 1776)
4(1576 1777 5998 5797)
4(1776 5997 5998 1777)
4(1577 1778 5999 5798)
4(1777 5998 5999 1778)
4(1578 1779 6000 5799)
4(1778 5999 6000 1779)
4(1579 1780 6001 5800)
4(1779 6000 6001 1780)
4(1580 1781 6002 5801)
4(1780 6001 6002 1781)
4(1581 1782 6003 5802)
4(1781 6002 6003 1782)
4(1582 1783 6004 5803)
4(1782 6003 6004 1783)
4(1583 1784 6005 5804)
4(1783 6004 6005 1784)
4(1584 1785 6006 5805)
4(1784 6005 6006 1785)
4(1585 1786 6007 5806)
4(1785 6006 6007 1786)
4(1586 1787 6008 5807)
4(1786 6007 6008 1787)
4(1587 1788 6009 5808)
4(1787 6008 6009 1788)
4(1588 1789 6010 5809)
4(1788 6009 6010 1789)
4(1589 1790 6011 5810)
4(1789 6010 6011 1790)
4(1590 1791 6012 5811)
4(1790 6011 6012 1791)
4(1591 1792 6013 5812)
4(1791 6012 6013 1792)
4(1592 1793 6014 5813)
4(1792 6013 6014 1793)
4(1593 1794 6015 5814)
4(1793 6014 6015 1794)
4(1594 1795 6016 5815)
4(1794 6015 6016 1795)
4(1595 1796 6017 5816)
4(1795 6016 6017 1796)
4(1596 1797 6018 5817)
4(1796 6017 6018 1797)
4(1597 1798 6019 5818)
4(1797 6018 6019 1798)
4(1598 1799 6020 5819)
4(1798 6019 6020 1799)
4(1599 1800 6021 5820)
4(1799 6020 6021 1800)
4(1600 1801 6022 5821)
4(1800 6021 6022 1801)
4(1601 1802 6023 5822)
4(1801 6022 6023 1802)
4(1602 1803 6024 5823)
4(1802 6023 6024 1803)
4(1603 1804 6025 5824)
4(1803 6024 6025 1804)
4(1604 1805 6026 5825)
4(1804 6025 6026 1805)
4(1605 1806 6027 5826)
4(1805 6026 6027 1806)
4(1606 1807 6028 5827)
4(1806 6027 6028 1807)
4(1807 6028 6029 1808)
4(1609 1810 6031 5830)
4(1809 6030 6031 1810)
4(1610 1811 6032 5831)
4(1810 6031 6032 1811)
4(1611 1812 6033 5832)
4(1811 6032 6033 1812)
4(1612 1813 6034 5833)
4(1812 6033 6034 1813)
4(1613 1814 6035 5834)
4(1813 6034 6035 1814)
4(1614 1815 6036 5835)
4(1814 6035 6036 1815)
4(1615 1816 6037 5836)
4(1815 6036 6037 1816)
4(1616 1817 6038 5837)
4(1816 6037 6038 1817)
4(1617 1818 6039 5838)
4(1817 6038 6039 1818)
4(1618 1819 6040 5839)
4(1818 6039 6040 1819)
4(1619 1820 6041 5840)
4(1819 6040 6041 1820)
4(1620 1821 6042 5841)
4(1820 6041 6042 1821)
4(1621 1822 6043 5842)
4(1821 6042 6043 1822)
4(1622 1823 6044 5843)
4(1822 6043 6044 1823)
4(1623 1824 6045 5844)
4(1823 6044 6045 1824)
4(1624 1825 6046 5845)
4(1824 6045 6046 1825)
4(1625 1826 6047 5846)
4(1825 6046 6047 1826)
4(1626 1827 6048 5847)
4(1826 6047 6048 1827)
4(1627 1828 6049 5848)
4(1827 6048 6049 1828)
4(1628 1829 6050 5849)
4(1828 6049 6050 1829)
4(1629 1830 6051 5850)
4(1829 6050 6051 1830)
4(1630 1831 6052 5851)
4(1830 6051 6052 1831)
4(1631 1832 6053 5852)
4(1831 6052 6053 1832)
4(1632 1833 6054 5853)
4(1832 6053 6054 1833)
4(1633 1834 6055 5854)
4(1833 6054 6055 1834)
4(1634 1835 6056 5855)
4(1834 6055 6056 1835)
4(1635 1836 6057 5856)
4(1835 6056 6057 1836)
4(1636 1837 6058 5857)
4(1836 6057 6058 1837)
4(1637 1838 6059 5858)
4(1837 6058 6059 1838)
4(1638 1839 6060 5859)
4(1838 6059 6060 1839)
4(1639 1840 6061 5860)
4(1839 6060 6061 1840)
4(1640 1841 6062 5861)
4(1840 6061 6062 1841)
4(1641 1842 6063 5862)
4(1841 6062 6063 1842)
4(1642 1843 6064 5863)
4(1842 6063 6064 1843)
4(1643 1844 6065 5864)
4(1843 6064 6065 1844)
4(1644 1845 6066 5865)
4(1844 6065 6066 1845)
4(1645 1846 6067 5866)
4(1845 6066 6067 1846)
4(1646 1847 6068 5867)
4(1846 6067 6068 1847)
4(1647 1848 6069 5868)
4(1847 6068 6069 1848)
4(1648 1849 6070 5869)
4(1848 6069 6070 1849)
4(1649 1850 6071 5870)
4(1849 6070 6071 1850)
4(1650 1851 6072 5871)
4(1850 6071 6072 1851)
4(1651 1852 6073 5872)
4(1851 6072 6073 1852)
4(1652 1853 6074 5873)
4(1852 6073 6074 1853)
4(1653 1854 6075 5874)
4(1853 6074 6075 1854)
4(1654 1855 6076 5875)
4(1854 6075 6076 1855)
4(1655 1856 6077 5876)
4(1855 6076 6077 1856)
4(1656 1857 6078 5877)
4(1856 6077 6078 1857)
4(1657 1858 6079 5878)
4(1857 6078 6079 1858)
4(1658 1859 6080 5879)
4(1858 6079 6080 1859)
4(1659 1860 6081 5880)
4(1859 6080 6081 1860)
4(1660 1861 6082 5881)
4(1860 6081 6082 1861)
4(1661 1862 6083 5882)
4(1861 6082 6083 1862)
4(1662 1863 6084 5883)
4(1862 6083 6084 1863)
4(1663 1864 6085 5884)
4(1863 6084 6085 1864)
4(1664 1865 6086 5885)
4(1864 6085 6086 1865)
4(1665 1866 6087 5886)
4(1865 6086 6087 1866)
4(1666 1867 6088 5887)
4(1866 6087 6088 1867)
4(1667 1868 6089 5888)
4(1867 6088 6089 1868)
4(1668 1869 6090 5889)
4(1868 6089 6090 1869)
4(1669 1870 6091 5890)
4(1869 6090 6091 1870)
4(1670 1871 6092 5891)
4(1870 6091 6092 1871)
4(1671 1872 6093 5892)
4(1871 6092 6093 1872)
4(1672 1873 6094 5893)
4(1872 6093 6094 1873)
4(1673 1874 6095 5894)
4(1873 6094 6095 1874)
4(1674 1875 6096 5895)
4(1874 6095 6096 1875)
4(1675 1876 6097 5896)
4(1875 6096 6097 1876)
4(1676 1877 6098 5897)
4(1876 6097 6098 1877)
4(1677 1878 6099 5898)
4(1877 6098 6099 1878)
4(1678 1879 6100 5899)
4(1878 6099 6100 1879)
4(1679 1880 6101 5900)
4(1879 6100 6101 1880)
4(1680 1881 6102 5901)
4(1880 6101 6102 1881)
4(1681 1882 6103 5902)
4(1881 6102 6103 1882)
4(1682 1883 6104 5903)
4(1882 6103 6104 1883)
4(1683 1884 6105 5904)
4(1883 6104 6105 1884)
4(1684 1885 6106 5905)
4(1884 6105 6106 1885)
4(1685 1886 6107 5906)
4(1885 6106 6107 1886)
4(1686 1887 6108 5907)
4(1886 6107 6108 1887)
4(1687 1888 6109 5908)
4(1887 6108 6109 1888)
4(1688 1889 6110 5909)
4(1888 6109 6110 1889)
4(1689 1890 6111 5910)
4(1889 6110 6111 1890)
4(1690 1891 6112 5911)
4(1890 6111 6112 1891)
4(1691 1892 6113 5912)
4(1891 6112 6113 1892)
4(1692 1893 6114 5913)
4(1892 6113 6114 1893)
4(1693 1894 6115 5914)
4(1893 6114 6115 1894)
4(1694 1895 6116 5915)
4(1894 6115 6116 1895)
4(1695 1896 6117 5916)
4(1895 6116 6117 1896)
4(1696 1897 6118 5917)
4(1896 6117 6118 1897)
4(1697 1898 6119 5918)
4(1897 6118 6119 1898)
4(1698 1899 6120 5919)
4(1898 6119 6120 1899)
4(1699 1900 6121 5920)
4(1899 6120 6121 1900)
4(1700 1901 6122 5921)
4(1900 6121 6122 1901)
4(1701 1902 6123 5922)
4(1901 6122 6123 1902)
4(1702 1903 6124 5923)
4(1902 6123 6124 1903)
4(1703 1904 6125 5924)
4(1903 6124 6125 1904)
4(1704 1905 6126 5925)
4(1904 6125 6126 1905)
4(1705 1906 6127 5926)
4(1905 6126 6127 1906)
4(1706 1907 6128 5927)
4(1906 6127 6128 1907)
4(1707 1908 6129 5928)
4(1907 6128 6129 1908)
4(1708 1909 6130 5929)
4(1908 6129 6130 1909)
4(1709 1910 6131 5930)
4(1909 6130 6131 1910)
4(1710 1911 6132 5931)
4(1910 6131 6132 1911)
4(1711 1912 6133 5932)
4(1911 6132 6133 1912)
4(1712 1913 6134 5933)
4(1912 6133 6134 1913)
4(1713 1914 6135 5934)
4(1913 6134 6135 1914)
4(1714 1915 6136 5935)
4(1914 6135 6136 1915)
4(1715 1916 6137 5936)
4(1915 6136 6137 1916)
4(1716 1917 6138 5937)
4(1916 6137 6138 1917)
4(1717 1918 6139 5938)
4(1917 6138 6139 1918)
4(1718 1919 6140 5939)
4(1918 6139 6140 1919)
4(1719 1920 6141 5940)
4(1919 6140 6141 1920)
4(1720 1921 6142 5941)
4(1920 6141 6142 1921)
4(1721 1922 6143 5942)
4(1921 6142 6143 1922)
4(1722 1923 6144 5943)
4(1922 6143 6144 1923)
4(1723 1924 6145 5944)
4(1923 6144 6145 1924)
4(1724 1925 6146 5945)
4(1924 6145 6146 1925)
4(1725 1926 6147 5946)
4(1925 6146 6147 1926)
4(1726 1927 6148 5947)
4(1926 6147 6148 1927)
4(1727 1928 6149 5948)
4(1927 6148 6149 1928)
4(1728 1929 6150 5949)
4(1928 6149 6150 1929)
4(1729 1930 6151 5950)
4(1929 6150 6151 1930)
4(1730 1931 6152 5951)
4(1930 6151 6152 1931)
4(1731 1932 6153 5952)
4(1931 6152 6153 1932)
4(1732 1933 6154 5953)
4(1932 6153 6154 1933)
4(1733 1934 6155 5954)
4(1933 6154 6155 1934)
4(1734 1935 6156 5955)
4(1934 6155 6156 1935)
4(1735 1936 6157 5956)
4(1935 6156 6157 1936)
4(1736 1937 6158 5957)
4(1936 6157 6158 1937)
4(1737 1938 6159 5958)
4(1937 6158 6159 1938)
4(1738 1939 6160 5959)
4(1938 6159 6160 1939)
4(1739 1940 6161 5960)
4(1939 6160 6161 1940)
4(1740 1941 6162 5961)
4(1940 6161 6162 1941)
4(1741 1942 6163 5962)
4(1941 6162 6163 1942)
4(1742 1943 6164 5963)
4(1942 6163 6164 1943)
4(1743 1944 6165 5964)
4(1943 6164 6165 1944)
4(1744 1945 6166 5965)
4(1944 6165 6166 1945)
4(1745 1946 6167 5966)
4(1945 6166 6167 1946)
4(1746 1947 6168 5967)
4(1946 6167 6168 1947)
4(1747 1948 6169 5968)
4(1947 6168 6169 1948)
4(1748 1949 6170 5969)
4(1948 6169 6170 1949)
4(1749 1950 6171 5970)
4(1949 6170 6171 1950)
4(1750 1951 6172 5971)
4(1950 6171 6172 1951)
4(1751 1952 6173 5972)
4(1951 6172 6173 1952)
4(1752 1953 6174 5973)
4(1952 6173 6174 1953)
4(1753 1954 6175 5974)
4(1953 6174 6175 1954)
4(1754 1955 6176 5975)
4(1954 6175 6176 1955)
4(1755 1956 6177 5976)
4(1955 6176 6177 1956)
4(1756 1957 6178 5977)
4(1956 6177 6178 1957)
4(1757 1958 6179 5978)
4(1957 6178 6179 1958)
4(1758 1959 6180 5979)
4(1958 6179 6180 1959)
4(1759 1960 6181 5980)
4(1959 6180 6181 1960)
4(1760 1961 6182 5981)
4(1960 6181 6182 1961)
4(1761 1962 6183 5982)
4(1961 6182 6183 1962)
4(1762 1963 6184 5983)
4(1962 6183 6184 1963)
4(1763 1964 6185 5984)
4(1963 6184 6185 1964)
4(1764 1965 6186 5985)
4(1964 6185 6186 1965)
4(1765 1966 6187 5986)
4(1965 6186 6187 1966)
4(1766 1967 6188 5987)
4(1966 6187 6188 1967)
4(1767 1968 6189 5988)
4(1967 6188 6189 1968)
4(1768 1969 6190 5989)
4(1968 6189 6190 1969)
4(1769 1970 6191 5990)
4(1969 6190 6191 1970)
4(1770 1971 6192 5991)
4(1970 6191 6192 1971)
4(1771 1972 6193 5992)
4(1971 6192 6193 1972)
4(1772 1973 6194 5993)
4(1972 6193 6194 1973)
4(1773 1974 6195 5994)
4(1973 6194 6195 1974)
4(1774 1975 6196 5995)
4(1974 6195 6196 1975)
4(1775 1976 6197 5996)
4(1975 6196 6197 1976)
4(1776 1977 6198 5997)
4(1976 6197 6198 1977)
4(1777 1978 6199 5998)
4(1977 6198 6199 1978)
4(1778 1979 6200 5999)
4(1978 6199 6200 1979)
4(1779 1980 6201 6000)
4(1979 6200 6201 1980)
4(1780 1981 6202 6001)
4(1980 6201 6202 1981)
4(1781 1982 6203 6002)
4(1981 6202 6203 1982)
4(1782 1983 6204 6003)
4(1982 6203 6204 1983)
4(1783 1984 6205 6004)
4(1983 6204 6205 1984)
4(1784 1985 6206 6005)
4(1984 6205 6206 1985)
4(1785 1986 6207 6006)
4(1985 6206 6207 1986)
4(1786 1987 6208 6007)
4(1986 6207 6208 1987)
4(1787 1988 6209 6008)
4(1987 6208 6209 1988)
4(1788 1989 6210 6009)
4(1988 6209 6210 1989)
4(1789 1990 6211 6010)
4(1989 6210 6211 1990)
4(1790 1991 6212 6011)
4(1990 6211 6212 1991)
4(1791 1992 6213 6012)
4(1991 6212 6213 1992)
4(1792 1993 6214 6013)
4(1992 6213 6214 1993)
4(1793 1994 6215 6014)
4(1993 6214 6215 1994)
4(1794 1995 6216 6015)
4(1994 6215 6216 1995)
4(1795 1996 6217 6016)
4(1995 6216 6217 1996)
4(1796 1997 6218 6017)
4(1996 6217 6218 1997)
4(1797 1998 6219 6018)
4(1997 6218 6219 1998)
4(1798 1999 6220 6019)
4(1998 6219 6220 1999)
4(1799 2000 6221 6020)
4(1999 6220 6221 2000)
4(1800 2001 6222 6021)
4(2000 6221 6222 2001)
4(1801 2002 6223 6022)
4(2001 6222 6223 2002)
4(1802 2003 6224 6023)
4(2002 6223 6224 2003)
4(1803 2004 6225 6024)
4(2003 6224 6225 2004)
4(1804 2005 6226 6025)
4(2004 6225 6226 2005)
4(1805 2006 6227 6026)
4(2005 6226 6227 2006)
4(1806 2007 6228 6027)
4(2006 6227 6228 2007)
4(1807 2008 6229 6028)
4(2007 6228 6229 2008)
4(2008 6229 6230 2009)
4(1810 2011 6232 6031)
4(2010 6231 6232 2011)
4(1811 2012 6233 6032)
4(2011 6232 6233 2012)
4(1812 2013 6234 6033)
4(2012 6233 6234 2013)
4(1813 2014 6235 6034)
4(2013 6234 6235 2014)
4(1814 2015 6236 6035)
4(2014 6235 6236 2015)
4(1815 2016 6237 6036)
4(2015 6236 6237 2016)
4(1816 2017 6238 6037)
4(2016 6237 6238 2017)
4(1817 2018 6239 6038)
4(2017 6238 6239 2018)
4(1818 2019 6240 6039)
4(2018 6239 6240 2019)
4(1819 2020 6241 6040)
4(2019 6240 6241 2020)
4(1820 2021 6242 6041)
4(2020 6241 6242 2021)
4(1821 2022 6243 6042)
4(2021 6242 6243 2022)
4(1822 2023 6244 6043)
4(2022 6243 6244 2023)
4(1823 2024 6245 6044)
4(2023 6244 6245 2024)
4(1824 2025 6246 6045)
4(2024 6245 6246 2025)
4(1825 2026 6247 6046)
4(2025 6246 6247 2026)
4(1826 2027 6248 6047)
4(2026 6247 6248 2027)
4(1827 2028 6249 6048)
4(2027 6248 6249 2028)
4(1828 2029 6250 6049)
4(2028 6249 6250 2029)
4(1829 2030 6251 6050)
4(2029 6250 6251 2030)
4(1830 2031 6252 6051)
4(2030 6251 6252 2031)
4(1831 2032 6253 6052)
4(2031 6252 6253 2032)
4(1832 2033 6254 6053)
4(2032 6253 6254 2033)
4(1833 2034 6255 6054)
4(2033 6254 6255 2034)
4(1834 2035 6256 6055)
4(2034 6255 6256 2035)
4(1835 2036 6257 6056)
4(2035 6256 6257 2036)
4(1836 2037 6258 6057)
4(2036 6257 6258 2037)
4(1837 2038 6259 6058)
4(2037 6258 6259 2038)
4(1838 2039 6260 6059)
4(2038 6259 6260 2039)
4(1839 2040 6261 6060)
4(2039 6260 6261 2040)
4(1840 2041 6262 6061)
4(2040 6261 6262 2041)
4(1841 2042 6263 6062)
4(2041 6262 6263 2042)
4(1842 2043 6264 6063)
4(2042 6263 6264 2043)
4(1843 2044 6265 6064)
4(2043 6264 6265 2044)
4(1844 2045 6266 6065)
4(2044 6265 6266 2045)
4(1845 2046 6267 6066)
4(2045 6266 6267 2046)
4(1846 2047 6268 6067)
4(2046 6267 6268 2047)
4(1847 2048 6269 6068)
4(2047 6268 6269 2048)
4(1848 2049 6270 6069)
4(2048 6269 6270 2049)
4(1849 2050 6271 6070)
4(2049 6270 6271 2050)
4(1850 2051 6272 6071)
4(2050 6271 6272 2051)
4(1851 2052 6273 6072)
4(2051 6272 6273 2052)
4(1852 2053 6274 6073)
4(2052 6273 6274 2053)
4(1853 2054 6275 6074)
4(2053 6274 6275 2054)
4(1854 2055 6276 6075)
4(2054 6275 6276 2055)
4(1855 2056 6277 6076)
4(2055 6276 6277 2056)
4(1856 2057 6278 6077)
4(2056 6277 6278 2057)
4(1857 2058 6279 6078)
4(2057 6278 6279 2058)
4(1858 2059 6280 6079)
4(2058 6279 6280 2059)
4(1859 2060 6281 6080)
4(2059 6280 6281 2060)
4(1860 2061 6282 6081)
4(2060 6281 6282 2061)
4(1861 2062 6283 6082)
4(2061 6282 6283 2062)
4(1862 2063 6284 6083)
4(2062 6283 6284 2063)
4(1863 2064 6285 6084)
4(2063 6284 6285 2064)
4(1864 2065 6286 6085)
4(2064 6285 6286 2065)
4(1865 2066 6287 6086)
4(2065 6286 6287 2066)
4(1866 2067 6288 6087)
4(2066 6287 6288 2067)
4(1867 2068 6289 6088)
4(2067 6288 6289 2068)
4(1868 2069 6290 6089)
4(2068 6289 6290 2069)
4(1869 2070 6291 6090)
4(2069 6290 6291 2070)
4(1870 2071 6292 6091)
4(2070 6291 6292 2071)
4(1871 2072 6293 6092)
4(2071 6292 6293 2072)
4(1872 2073 6294 6093)
4(2072 6293 6294 2073)
4(1873 2074 6295 6094)
4(2073 6294 6295 2074)
4(1874 2075 6296 6095)
4(2074 6295 6296 2075)
4(1875 2076 6297 6096)
4(2075 6296 6297 2076)
4(1876 2077 6298 6097)
4(2076 6297 6298 2077)
4(1877 2078 6299 6098)
4(2077 6298 6299 2078)
4(1878 2079 6300 6099)
4(2078 6299 6300 2079)
4(1879 2080 6301 6100)
4(2079 6300 6301 2080)
4(1880 2081 6302 6101)
4(2080 6301 6302 2081)
4(1881 2082 6303 6102)
4(2081 6302 6303 2082)
4(1882 2083 6304 6103)
4(2082 6303 6304 2083)
4(1883 2084 6305 6104)
4(2083 6304 6305 2084)
4(1884 2085 6306 6105)
4(2084 6305 6306 2085)
4(1885 2086 6307 6106)
4(2085 6306 6307 2086)
4(1886 2087 6308 6107)
4(2086 6307 6308 2087)
4(1887 2088 6309 6108)
4(2087 6308 6309 2088)
4(1888 2089 6310 6109)
4(2088 6309 6310 2089)
4(1889 2090 6311 6110)
4(2089 6310 6311 2090)
4(1890 2091 6312 6111)
4(2090 6311 6312 2091)
4(1891 2092 6313 6112)
4(2091 6312 6313 2092)
4(1892 2093 6314 6113)
4(2092 6313 6314 2093)
4(1893 2094 6315 6114)
4(2093 6314 6315 2094)
4(1894 2095 6316 6115)
4(2094 6315 6316 2095)
4(1895 2096 6317 6116)
4(2095 6316 6317 2096)
4(1896 2097 6318 6117)
4(2096 6317 6318 2097)
4(1897 2098 6319 6118)
4(2097 6318 6319 2098)
4(1898 2099 6320 6119)
4(2098 6319 6320 2099)
4(1899 2100 6321 6120)
4(2099 6320 6321 2100)
4(1900 2101 6322 6121)
4(2100 6321 6322 2101)
4(1901 2102 6323 6122)
4(2101 6322 6323 2102)
4(1902 2103 6324 6123)
4(2102 6323 6324 2103)
4(1903 2104 6325 6124)
4(2103 6324 6325 2104)
4(1904 2105 6326 6125)
4(2104 6325 6326 2105)
4(1905 2106 6327 6126)
4(2105 6326 6327 2106)
4(1906 2107 6328 6127)
4(2106 6327 6328 2107)
4(1907 2108 6329 6128)
4(2107 6328 6329 2108)
4(1908 2109 6330 6129)
4(2108 6329 6330 2109)
4(1909 2110 6331 6130)
4(2109 6330 6331 2110)
4(1910 2111 6332 6131)
4(2110 6331 6332 2111)
4(1911 2112 6333 6132)
4(2111 6332 6333 2112)
4(1912 2113 6334 6133)
4(2112 6333 6334 2113)
4(1913 2114 6335 6134)
4(2113 6334 6335 2114)
4(1914 2115 6336 6135)
4(2114 6335 6336 2115)
4(1915 2116 6337 6136)
4(2115 6336 6337 2116)
4(1916 2117 6338 6137)
4(2116 6337 6338 2117)
4(1917 2118 6339 6138)
4(2117 6338 6339 2118)
4(1918 2119 6340 6139)
4(2118 6339 6340 2119)
4(1919 2120 6341 6140)
4(2119 6340 6341 2120)
4(1920 2121 6342 6141)
4(2120 6341 6342 2121)
4(1921 2122 6343 6142)
4(2121 6342 6343 2122)
4(1922 2123 6344 6143)
4(2122 6343 6344 2123)
4(1923 2124 6345 6144)
4(2123 6344 6345 2124)
4(1924 2125 6346 6145)
4(2124 6345 6346 2125)
4(1925 2126 6347 6146)
4(2125 6346 6347 2126)
4(1926 2127 6348 6147)
4(2126 6347 6348 2127)
4(1927 2128 6349 6148)
4(2127 6348 6349 2128)
4(1928 2129 6350 6149)
4(2128 6349 6350 2129)
4(1929 2130 6351 6150)
4(2129 6350 6351 2130)
4(1930 2131 6352 6151)
4(2130 6351 6352 2131)
4(1931 2132 6353 6152)
4(2131 6352 6353 2132)
4(1932 2133 6354 6153)
4(2132 6353 6354 2133)
4(1933 2134 6355 6154)
4(2133 6354 6355 2134)
4(1934 2135 6356 6155)
4(2134 6355 6356 2135)
4(1935 2136 6357 6156)
4(2135 6356 6357 2136)
4(1936 2137 6358 6157)
4(2136 6357 6358 2137)
4(1937 2138 6359 6158)
4(2137 6358 6359 2138)
4(1938 2139 6360 6159)
4(2138 6359 6360 2139)
4(1939 2140 6361 6160)
4(2139 6360 6361 2140)
4(1940 2141 6362 6161)
4(2140 6361 6362 2141)
4(1941 2142 6363 6162)
4(2141 6362 6363 2142)
4(1942 2143 6364 6163)
4(2142 6363 6364 2143)
4(1943 2144 6365 6164)
4(2143 6364 6365 2144)
4(1944 2145 6366 6165)
4(2144 6365 6366 2145)
4(1945 2146 6367 6166)
4(2145 6366 6367 2146)
4(1946 2147 6368 6167)
4(2146 6367 6368 2147)
4(1947 2148 6369 6168)
4(2147 6368 6369 2148)
4(1948 2149 6370 6169)
4(2148 6369 6370 2149)
4(1949 2150 6371 6170)
4(2149 6370 6371 2150)
4(1950 2151 6372 6171)
4(2150 6371 6372 2151)
4(1951 2152 6373 6172)
4(2151 6372 6373 2152)
4(1952 2153 6374 6173)
4(2152 6373 6374 2153)
4(1953 2154 6375 6174)
4(2153 6374 6375 2154)
4(1954 2155 6376 6175)
4(2154 6375 6376 2155)
4(1955 2156 6377 6176)
4(2155 6376 6377 2156)
4(1956 2157 6378 6177)
4(2156 6377 6378 2157)
4(1957 2158 6379 6178)
4(2157 6378 6379 2158)
4(1958 2159 6380 6179)
4(2158 6379 6380 2159)
4(1959 2160 6381 6180)
4(2159 6380 6381 2160)
4(1960 2161 6382 6181)
4(2160 6381 6382 2161)
4(1961 2162 6383 6182)
4(2161 6382 6383 2162)
4(1962 2163 6384 6183)
4(2162 6383 6384 2163)
4(1963 2164 6385 6184)
4(2163 6384 6385 2164)
4(1964 2165 6386 6185)
4(2164 6385 6386 2165)
4(1965 2166 6387 6186)
4(2165 6386 6387 2166)
4(1966 2167 6388 6187)
4(2166 6387 6388 2167)
4(1967 2168 6389 6188)
4(2167 6388 6389 2168)
4(1968 2169 6390 6189)
4(2168 6389 6390 2169)
4(1969 2170 6391 6190)
4(2169 6390 6391 2170)
4(1970 2171 6392 6191)
4(2170 6391 6392 2171)
4(1971 2172 6393 6192)
4(2171 6392 6393 2172)
4(1972 2173 6394 6193)
4(2172 6393 6394 2173)
4(1973 2174 6395 6194)
4(2173 6394 6395 2174)
4(1974 2175 6396 6195)
4(2174 6395 6396 2175)
4(1975 2176 6397 6196)
4(2175 6396 6397 2176)
4(1976 2177 6398 6197)
4(2176 6397 6398 2177)
4(1977 2178 6399 6198)
4(2177 6398 6399 2178)
4(1978 2179 6400 6199)
4(2178 6399 6400 2179)
4(1979 2180 6401 6200)
4(2179 6400 6401 2180)
4(1980 2181 6402 6201)
4(2180 6401 6402 2181)
4(1981 2182 6403 6202)
4(2181 6402 6403 2182)
4(1982 2183 6404 6203)
4(2182 6403 6404 2183)
4(1983 2184 6405 6204)
4(2183 6404 6405 2184)
4(1984 2185 6406 6205)
4(2184 6405 6406 2185)
4(1985 2186 6407 6206)
4(2185 6406 6407 2186)
4(1986 2187 6408 6207)
4(2186 6407 6408 2187)
4(1987 2188 6409 6208)
4(2187 6408 6409 2188)
4(1988 2189 6410 6209)
4(2188 6409 6410 2189)
4(1989 2190 6411 6210)
4(2189 6410 6411 2190)
4(1990 2191 6412 6211)
4(2190 6411 6412 2191)
4(1991 2192 6413 6212)
4(2191 6412 6413 2192)
4(1992 2193 6414 6213)
4(2192 6413 6414 2193)
4(1993 2194 6415 6214)
4(2193 6414 6415 2194)
4(1994 2195 6416 6215)
4(2194 6415 6416 2195)
4(1995 2196 6417 6216)
4(2195 6416 6417 2196)
4(1996 2197 6418 6217)
4(2196 6417 6418 2197)
4(1997 2198 6419 6218)
4(2197 6418 6419 2198)
4(1998 2199 6420 6219)
4(2198 6419 6420 2199)
4(1999 2200 6421 6220)
4(2199 6420 6421 2200)
4(2000 2201 6422 6221)
4(2200 6421 6422 2201)
4(2001 2202 6423 6222)
4(2201 6422 6423 2202)
4(2002 2203 6424 6223)
4(2202 6423 6424 2203)
4(2003 2204 6425 6224)
4(2203 6424 6425 2204)
4(2004 2205 6426 6225)
4(2204 6425 6426 2205)
4(2005 2206 6427 6226)
4(2205 6426 6427 2206)
4(2006 2207 6428 6227)
4(2206 6427 6428 2207)
4(2007 2208 6429 6228)
4(2207 6428 6429 2208)
4(2008 2209 6430 6229)
4(2208 6429 6430 2209)
4(2209 6430 6431 2210)
4(2011 2212 6433 6232)
4(2211 6432 6433 2212)
4(2012 2213 6434 6233)
4(2212 6433 6434 2213)
4(2013 2214 6435 6234)
4(2213 6434 6435 2214)
4(2014 2215 6436 6235)
4(2214 6435 6436 2215)
4(2015 2216 6437 6236)
4(2215 6436 6437 2216)
4(2016 2217 6438 6237)
4(2216 6437 6438 2217)
4(2017 2218 6439 6238)
4(2217 6438 6439 2218)
4(2018 2219 6440 6239)
4(2218 6439 6440 2219)
4(2019 2220 6441 6240)
4(2219 6440 6441 2220)
4(2020 2221 6442 6241)
4(2220 6441 6442 2221)
4(2021 2222 6443 6242)
4(2221 6442 6443 2222)
4(2022 2223 6444 6243)
4(2222 6443 6444 2223)
4(2023 2224 6445 6244)
4(2223 6444 6445 2224)
4(2024 2225 6446 6245)
4(2224 6445 6446 2225)
4(2025 2226 6447 6246)
4(2225 6446 6447 2226)
4(2026 2227 6448 6247)
4(2226 6447 6448 2227)
4(2027 2228 6449 6248)
4(2227 6448 6449 2228)
4(2028 2229 6450 6249)
4(2228 6449 6450 2229)
4(2029 2230 6451 6250)
4(2229 6450 6451 2230)
4(2030 2231 6452 6251)
4(2230 6451 6452 2231)
4(2031 2232 6453 6252)
4(2231 6452 6453 2232)
4(2032 2233 6454 6253)
4(2232 6453 6454 2233)
4(2033 2234 6455 6254)
4(2233 6454 6455 2234)
4(2034 2235 6456 6255)
4(2234 6455 6456 2235)
4(2035 2236 6457 6256)
4(2235 6456 6457 2236)
4(2036 2237 6458 6257)
4(2236 6457 6458 2237)
4(2037 2238 6459 6258)
4(2237 6458 6459 2238)
4(2038 2239 6460 6259)
4(2238 6459 6460 2239)
4(2039 2240 6461 6260)
4(2239 6460 6461 2240)
4(2040 2241 6462 6261)
4(2240 6461 6462 2241)
4(2041 2242 6463 6262)
4(2241 6462 6463 2242)
4(2042 2243 6464 6263)
4(2242 6463 6464 2243)
4(2043 2244 6465 6264)
4(2243 6464 6465 2244)
4(2044 2245 6466 6265)
4(2244 6465 6466 2245)
4(2045 2246 6467 6266)
4(2245 6466 6467 2246)
4(2046 2247 6468 6267)
4(2246 6467 6468 2247)
4(2047 2248 6469 6268)
4(2247 6468 6469 2248)
4(2048 2249 6470 6269)
4(2248 6469 6470 2249)
4(2049 2250 6471 6270)
4(2249 6470 6471 2250)
4(2050 2251 6472 6271)
4(2250 6471 6472 2251)
4(2051 2252 6473 6272)
4(2251 6472 6473 2252)
4(2052 2253 6474 6273)
4(2252 6473 6474 2253)
4(2053 2254 6475 6274)
4(2253 6474 6475 2254)
4(2054 2255 6476 6275)
4(2254 6475 6476 2255)
4(2055 2256 6477 6276)
4(2255 6476 6477 2256)
4(2056 2257 6478 6277)
4(2256 6477 6478 2257)
4(2057 2258 6479 6278)
4(2257 6478 6479 2258)
4(2058 2259 6480 6279)
4(2258 6479 6480 2259)
4(2059 2260 6481 6280)
4(2259 6480 6481 2260)
4(2060 2261 6482 6281)
4(2260 6481 6482 2261)
4(2061 2262 6483 6282)
4(2261 6482 6483 2262)
4(2062 2263 6484 6283)
4(2262 6483 6484 2263)
4(2063 2264 6485 6284)
4(2263 6484 6485 2264)
4(2064 2265 6486 6285)
4(2264 6485 6486 2265)
4(2065 2266 6487 6286)
4(2265 6486 6487 2266)
4(2066 2267 6488 6287)
4(2266 6487 6488 2267)
4(2067 2268 6489 6288)
4(2267 6488 6489 2268)
4(2068 2269 6490 6289)
4(2268 6489 6490 2269)
4(2069 2270 6491 6290)
4(2269 6490 6491 2270)
4(2070 2271 6492 6291)
4(2270 6491 6492 2271)
4(2071 2272 6493 6292)
4(2271 6492 6493 2272)
4(2072 2273 6494 6293)
4(2272 6493 6494 2273)
4(2073 2274 6495 6294)
4(2273 6494 6495 2274)
4(2074 2275 6496 6295)
4(2274 6495 6496 2275)
4(2075 2276 6497 6296)
4(2275 6496 6497 2276)
4(2076 2277 6498 6297)
4(2276 6497 6498 2277)
4(2077 2278 6499 6298)
4(2277 6498 6499 2278)
4(2078 2279 6500 6299)
4(2278 6499 6500 2279)
4(2079 2280 6501 6300)
4(2279 6500 6501 2280)
4(2080 2281 6502 6301)
4(2280 6501 6502 2281)
4(2081 2282 6503 6302)
4(2281 6502 6503 2282)
4(2082 2283 6504 6303)
4(2282 6503 6504 2283)
4(2083 2284 6505 6304)
4(2283 6504 6505 2284)
4(2084 2285 6506 6305)
4(2284 6505 6506 2285)
4(2085 2286 6507 6306)
4(2285 6506 6507 2286)
4(2086 2287 6508 6307)
4(2286 6507 6508 2287)
4(2087 2288 6509 6308)
4(2287 6508 6509 2288)
4(2088 2289 6510 6309)
4(2288 6509 6510 2289)
4(2089 2290 6511 6310)
4(2289 6510 6511 2290)
4(2090 2291 6512 6311)
4(2290 6511 6512 2291)
4(2091 2292 6513 6312)
4(2291 6512 6513 2292)
4(2092 2293 6514 6313)
4(2292 6513 6514 2293)
4(2093 2294 6515 6314)
4(2293 6514 6515 2294)
4(2094 2295 6516 6315)
4(2294 6515 6516 2295)
4(2095 2296 6517 6316)
4(2295 6516 6517 2296)
4(2096 2297 6518 6317)
4(2296 6517 6518 2297)
4(2097 2298 6519 6318)
4(2297 6518 6519 2298)
4(2098 2299 6520 6319)
4(2298 6519 6520 2299)
4(2099 2300 6521 6320)
4(2299 6520 6521 2300)
4(2100 2301 6522 6321)
4(2300 6521 6522 2301)
4(2101 2302 6523 6322)
4(2301 6522 6523 2302)
4(2102 2303 6524 6323)
4(2302 6523 6524 2303)
4(2103 2304 6525 6324)
4(2303 6524 6525 2304)
4(2104 2305 6526 6325)
4(2304 6525 6526 2305)
4(2105 2306 6527 6326)
4(2305 6526 6527 2306)
4(2106 2307 6528 6327)
4(2306 6527 6528 2307)
4(2107 2308 6529 6328)
4(2307 6528 6529 2308)
4(2108 2309 6530 6329)
4(2308 6529 6530 2309)
4(2109 2310 6531 6330)
4(2309 6530 6531 2310)
4(2110 2311 6532 6331)
4(2310 6531 6532 2311)
4(2111 2312 6533 6332)
4(2311 6532 6533 2312)
4(2112 2313 6534 6333)
4(2312 6533 6534 2313)
4(2113 2314 6535 6334)
4(2313 6534 6535 2314)
4(2114 2315 6536 6335)
4(2314 6535 6536 2315)
4(2115 2316 6537 6336)
4(2315 6536 6537 2316)
4(2116 2317 6538 6337)
4(2316 6537 6538 2317)
4(2117 2318 6539 6338)
4(2317 6538 6539 2318)
4(2118 2319 6540 6339)
4(2318 6539 6540 2319)
4(2119 2320 6541 6340)
4(2319 6540 6541 2320)
4(2120 2321 6542 6341)
4(2320 6541 6542 2321)
4(2121 2322 6543 6342)
4(2321 6542 6543 2322)
4(2122 2323 6544 6343)
4(2322 6543 6544 2323)
4(2123 2324 6545 6344)
4(2323 6544 6545 2324)
4(2124 2325 6546 6345)
4(2324 6545 6546 2325)
4(2125 2326 6547 6346)
4(2325 6546 6547 2326)
4(2126 2327 6548 6347)
4(2326 6547 6548 2327)
4(2127 2328 6549 6348)
4(2327 6548 6549 2328)
4(2128 2329 6550 6349)
4(2328 6549 6550 2329)
4(2129 2330 6551 6350)
4(2329 6550 6551 2330)
4(2130 2331 6552 6351)
4(2330 6551 6552 2331)
4(2131 2332 6553 6352)
4(2331 6552 6553 2332)
4(2132 2333 6554 6353)
4(2332 6553 6554 2333)
4(2133 2334 6555 6354)
4(2333 6554 6555 2334)
4(2134 2335 6556 6355)
4(2334 6555 6556 2335)
4(2135 2336 6557 6356)
4(2335 6556 6557 2336)
4(2136 2337 6558 6357)
4(2336 6557 6558 2337)
4(2137 2338 6559 6358)
4(2337 6558 6559 2338)
4(2138 2339 6560 6359)
4(2338 6559 6560 2339)
4(2139 2340 6561 6360)
4(2339 6560 6561 2340)
4(2140 2341 6562 6361)
4(2340 6561 6562 2341)
4(2141 2342 6563 6362)
4(2341 6562 6563 2342)
4(2142 2343 6564 6363)
4(2342 6563 6564 2343)
4(2143 2344 6565 6364)
4(2343 6564 6565 2344)
4(2144 2345 6566 6365)
4(2344 6565 6566 2345)
4(2145 2346 6567 6366)
4(2345 6566 6567 2346)
4(2146 2347 6568 6367)
4(2346 6567 6568 2347)
4(2147 2348 6569 6368)
4(2347 6568 6569 2348)
4(2148 2349 6570 6369)
4(2348 6569 6570 2349)
4(2149 2350 6571 6370)
4(2349 6570 6571 2350)
4(2150 2351 6572 6371)
4(2350 6571 6572 2351)
4(2151 2352 6573 6372)
4(2351 6572 6573 2352)
4(2152 2353 6574 6373)
4(2352 6573 6574 2353)
4(2153 2354 6575 6374)
4(2353 6574 6575 2354)
4(2154 2355 6576 6375)
4(2354 6575 6576 2355)
4(2155 2356 6577 6376)
4(2355 6576 6577 2356)
4(2156 2357 6578 6377)
4(2356 6577 6578 2357)
4(2157 2358 6579 6378)
4(2357 6578 6579 2358)
4(2158 2359 6580 6379)
4(2358 6579 6580 2359)
4(2159 2360 6581 6380)
4(2359 6580 6581 2360)
4(2160 2361 6582 6381)
4(2360 6581 6582 2361)
4(2161 2362 6583 6382)
4(2361 6582 6583 2362)
4(2162 2363 6584 6383)
4(2362 6583 6584 2363)
4(2163 2364 6585 6384)
4(2363 6584 6585 2364)
4(2164 2365 6586 6385)
4(2364 6585 6586 2365)
4(2165 2366 6587 6386)
4(2365 6586 6587 2366)
4(2166 2367 6588 6387)
4(2366 6587 6588 2367)
4(2167 2368 6589 6388)
4(2367 6588 6589 2368)
4(2168 2369 6590 6389)
4(2368 6589 6590 2369)
4(2169 2370 6591 6390)
4(2369 6590 6591 2370)
4(2170 2371 6592 6391)
4(2370 6591 6592 2371)
4(2171 2372 6593 6392)
4(2371 6592 6593 2372)
4(2172 2373 6594 6393)
4(2372 6593 6594 2373)
4(2173 2374 6595 6394)
4(2373 6594 6595 2374)
4(2174 2375 6596 6395)
4(2374 6595 6596 2375)
4(2175 2376 6597 6396)
4(2375 6596 6597 2376)
4(2176 2377 6598 6397)
4(2376 6597 6598 2377)
4(2177 2378 6599 6398)
4(2377 6598 6599 2378)
4(2178 2379 6600 6399)
4(2378 6599 6600 2379)
4(2179 2380 6601 6400)
4(2379 6600 6601 2380)
4(2180 2381 6602 6401)
4(2380 6601 6602 2381)
4(2181 2382 6603 6402)
4(2381 6602 6603 2382)
4(2182 2383 6604 6403)
4(2382 6603 6604 2383)
4(2183 2384 6605 6404)
4(2383 6604 6605 2384)
4(2184 2385 6606 6405)
4(2384 6605 6606 2385)
4(2185 2386 6607 6406)
4(2385 6606 6607 2386)
4(2186 2387 6608 6407)
4(2386 6607 6608 2387)
4(2187 2388 6609 6408)
4(2387 6608 6609 2388)
4(2188 2389 6610 6409)
4(2388 6609 6610 2389)
4(2189 2390 6611 6410)
4(2389 6610 6611 2390)
4(2190 2391 6612 6411)
4(2390 6611 6612 2391)
4(2191 2392 6613 6412)
4(2391 6612 6613 2392)
4(2192 2393 6614 6413)
4(2392 6613 6614 2393)
4(2193 2394 6615 6414)
4(2393 6614 6615 2394)
4(2194 2395 6616 6415)
4(2394 6615 6616 2395)
4(2195 2396 6617 6416)
4(2395 6616 6617 2396)
4(2196 2397 6618 6417)
4(2396 6617 6618 2397)
4(2197 2398 6619 6418)
4(2397 6618 6619 2398)
4(2198 2399 6620 6419)
4(2398 6619 6620 2399)
4(2199 2400 6621 6420)
4(2399 6620 6621 2400)
4(2200 2401 6622 6421)
4(2400 6621 6622 2401)
4(2201 2402 6623 6422)
4(2401 6622 6623 2402)
4(2202 2403 6624 6423)
4(2402 6623 6624 2403)
4(2203 2404 6625 6424)
4(2403 6624 6625 2404)
4(2204 2405 6626 6425)
4(2404 6625 6626 2405)
4(2205 2406 6627 6426)
4(2405 6626 6627 2406)
4(2206 2407 6628 6427)
4(2406 6627 6628 2407)
4(2207 2408 6629 6428)
4(2407 6628 6629 2408)
4(2208 2409 6630 6429)
4(2408 6629 6630 2409)
4(2209 2410 6631 6430)
4(2409 6630 6631 2410)
4(2410 6631 6632 2411)
4(2212 2413 6634 6433)
4(2412 6633 6634 2413)
4(2213 2414 6635 6434)
4(2413 6634 6635 2414)
4(2214 2415 6636 6435)
4(2414 6635 6636 2415)
4(2215 2416 6637 6436)
4(2415 6636 6637 2416)
4(2216 2417 6638 6437)
4(2416 6637 6638 2417)
4(2217 2418 6639 6438)
4(2417 6638 6639 2418)
4(2218 2419 6640 6439)
4(2418 6639 6640 2419)
4(2219 2420 6641 6440)
4(2419 6640 6641 2420)
4(2220 2421 6642 6441)
4(2420 6641 6642 2421)
4(2221 2422 6643 6442)
4(2421 6642 6643 2422)
4(2222 2423 6644 6443)
4(2422 6643 6644 2423)
4(2223 2424 6645 6444)
4(2423 6644 6645 2424)
4(2224 2425 6646 6445)
4(2424 6645 6646 2425)
4(2225 2426 6647 6446)
4(2425 6646 6647 2426)
4(2226 2427 6648 6447)
4(2426 6647 6648 2427)
4(2227 2428 6649 6448)
4(2427 6648 6649 2428)
4(2228 2429 6650 6449)
4(2428 6649 6650 2429)
4(2229 2430 6651 6450)
4(2429 6650 6651 2430)
4(2230 2431 6652 6451)
4(2430 6651 6652 2431)
4(2231 2432 6653 6452)
4(2431 6652 6653 2432)
4(2232 2433 6654 6453)
4(2432 6653 6654 2433)
4(2233 2434 6655 6454)
4(2433 6654 6655 2434)
4(2234 2435 6656 6455)
4(2434 6655 6656 2435)
4(2235 2436 6657 6456)
4(2435 6656 6657 2436)
4(2236 2437 6658 6457)
4(2436 6657 6658 2437)
4(2237 2438 6659 6458)
4(2437 6658 6659 2438)
4(2238 2439 6660 6459)
4(2438 6659 6660 2439)
4(2239 2440 6661 6460)
4(2439 6660 6661 2440)
4(2240 2441 6662 6461)
4(2440 6661 6662 2441)
4(2241 2442 6663 6462)
4(2441 6662 6663 2442)
4(2242 2443 6664 6463)
4(2442 6663 6664 2443)
4(2243 2444 6665 6464)
4(2443 6664 6665 2444)
4(2244 2445 6666 6465)
4(2444 6665 6666 2445)
4(2245 2446 6667 6466)
4(2445 6666 6667 2446)
4(2246 2447 6668 6467)
4(2446 6667 6668 2447)
4(2247 2448 6669 6468)
4(2447 6668 6669 2448)
4(2248 2449 6670 6469)
4(2448 6669 6670 2449)
4(2249 2450 6671 6470)
4(2449 6670 6671 2450)
4(2250 2451 6672 6471)
4(2450 6671 6672 2451)
4(2251 2452 6673 6472)
4(2451 6672 6673 2452)
4(2252 2453 6674 6473)
4(2452 6673 6674 2453)
4(2253 2454 6675 6474)
4(2453 6674 6675 2454)
4(2254 2455 6676 6475)
4(2454 6675 6676 2455)
4(2255 2456 6677 6476)
4(2455 6676 6677 2456)
4(2256 2457 6678 6477)
4(2456 6677 6678 2457)
4(2257 2458 6679 6478)
4(2457 6678 6679 2458)
4(2258 2459 6680 6479)
4(2458 6679 6680 2459)
4(2259 2460 6681 6480)
4(2459 6680 6681 2460)
4(2260 2461 6682 6481)
4(2460 6681 6682 2461)
4(2261 2462 6683 6482)
4(2461 6682 6683 2462)
4(2262 2463 6684 6483)
4(2462 6683 6684 2463)
4(2263 2464 6685 6484)
4(2463 6684 6685 2464)
4(2264 2465 6686 6485)
4(2464 6685 6686 2465)
4(2265 2466 6687 6486)
4(2465 6686 6687 2466)
4(2266 2467 6688 6487)
4(2466 6687 6688 2467)
4(2267 2468 6689 6488)
4(2467 6688 6689 2468)
4(2268 2469 6690 6489)
4(2468 6689 6690 2469)
4(2269 2470 6691 6490)
4(2469 6690 6691 2470)
4(2270 2471 6692 6491)
4(2470 6691 6692 2471)
4(2271 2472 6693 6492)
4(2471 6692 6693 2472)
4(2272 2473 6694 6493)
4(2472 6693 6694 2473)
4(2273 2474 6695 6494)
4(2473 6694 6695 2474)
4(2274 2475 6696 6495)
4(2474 6695 6696 2475)
4(2275 2476 6697 6496)
4(2475 6696 6697 2476)
4(2276 2477 6698 6497)
4(2476 6697 6698 2477)
4(2277 2478 6699 6498)
4(2477 6698 6699 2478)
4(2278 2479 6700 6499)
4(2478 6699 6700 2479)
4(2279 2480 6701 6500)
4(2479 6700 6701 2480)
4(2280 2481 6702 6501)
4(2480 6701 6702 2481)
4(2281 2482 6703 6502)
4(2481 6702 6703 2482)
4(2282 2483 6704 6503)
4(2482 6703 6704 2483)
4(2283 2484 6705 6504)
4(2483 6704 6705 2484)
4(2284 2485 6706 6505)
4(2484 6705 6706 2485)
4(2285 2486 6707 6506)
4(2485 6706 6707 2486)
4(2286 2487 6708 6507)
4(2486 6707 6708 2487)
4(2287 2488 6709 6508)
4(2487 6708 6709 2488)
4(2288 2489 6710 6509)
4(2488 6709 6710 2489)
4(2289 2490 6711 6510)
4(2489 6710 6711 2490)
4(2290 2491 6712 6511)
4(2490 6711 6712 2491)
4(2291 2492 6713 6512)
4(2491 6712 6713 2492)
4(2292 2493 6714 6513)
4(2492 6713 6714 2493)
4(2293 2494 6715 6514)
4(2493 6714 6715 2494)
4(2294 2495 6716 6515)
4(2494 6715 6716 2495)
4(2295 2496 6717 6516)
4(2495 6716 6717 2496)
4(2296 2497 6718 6517)
4(2496 6717 6718 2497)
4(2297 2498 6719 6518)
4(2497 6718 6719 2498)
4(2298 2499 6720 6519)
4(2498 6719 6720 2499)
4(2299 2500 6721 6520)
4(2499 6720 6721 2500)
4(2300 2501 6722 6521)
4(2500 6721 6722 2501)
4(2301 2502 6723 6522)
4(2501 6722 6723 2502)
4(2302 2503 6724 6523)
4(2502 6723 6724 2503)
4(2303 2504 6725 6524)
4(2503 6724 6725 2504)
4(2304 2505 6726 6525)
4(2504 6725 6726 2505)
4(2305 2506 6727 6526)
4(2505 6726 6727 2506)
4(2306 2507 6728 6527)
4(2506 6727 6728 2507)
4(2307 2508 6729 6528)
4(2507 6728 6729 2508)
4(2308 2509 6730 6529)
4(2508 6729 6730 2509)
4(2309 2510 6731 6530)
4(2509 6730 6731 2510)
4(2310 2511 6732 6531)
4(2510 6731 6732 2511)
4(2311 2512 6733 6532)
4(2511 6732 6733 2512)
4(2312 2513 6734 6533)
4(2512 6733 6734 2513)
4(2313 2514 6735 6534)
4(2513 6734 6735 2514)
4(2314 2515 6736 6535)
4(2514 6735 6736 2515)
4(2315 2516 6737 6536)
4(2515 6736 6737 2516)
4(2316 2517 6738 6537)
4(2516 6737 6738 2517)
4(2317 2518 6739 6538)
4(2517 6738 6739 2518)
4(2318 2519 6740 6539)
4(2518 6739 6740 2519)
4(2319 2520 6741 6540)
4(2519 6740 6741 2520)
4(2320 2521 6742 6541)
4(2520 6741 6742 2521)
4(2321 2522 6743 6542)
4(2521 6742 6743 2522)
4(2322 2523 6744 6543)
4(2522 6743 6744 2523)
4(2323 2524 6745 6544)
4(2523 6744 6745 2524)
4(2324 2525 6746 6545)
4(2524 6745 6746 2525)
4(2325 2526 6747 6546)
4(2525 6746 6747 2526)
4(2326 2527 6748 6547)
4(2526 6747 6748 2527)
4(2327 2528 6749 6548)
4(2527 6748 6749 2528)
4(2328 2529 6750 6549)
4(2528 6749 6750 2529)
4(2329 2530 6751 6550)
4(2529 6750 6751 2530)
4(2330 2531 6752 6551)
4(2530 6751 6752 2531)
4(2331 2532 6753 6552)
4(2531 6752 6753 2532)
4(2332 2533 6754 6553)
4(2532 6753 6754 2533)
4(2333 2534 6755 6554)
4(2533 6754 6755 2534)
4(2334 2535 6756 6555)
4(2534 6755 6756 2535)
4(2335 2536 6757 6556)
4(2535 6756 6757 2536)
4(2336 2537 6758 6557)
4(2536 6757 6758 2537)
4(2337 2538 6759 6558)
4(2537 6758 6759 2538)
4(2338 2539 6760 6559)
4(2538 6759 6760 2539)
4(2339 2540 6761 6560)
4(2539 6760 6761 2540)
4(2340 2541 6762 6561)
4(2540 6761 6762 2541)
4(2341 2542 6763 6562)
4(2541 6762 6763 2542)
4(2342 2543 6764 6563)
4(2542 6763 6764 2543)
4(2343 2544 6765 6564)
4(2543 6764 6765 2544)
4(2344 2545 6766 6565)
4(2544 6765 6766 2545)
4(2345 2546 6767 6566)
4(2545 6766 6767 2546)
4(2346 2547 6768 6567)
4(2546 6767 6768 2547)
4(2347 2548 6769 6568)
4(2547 6768 6769 2548)
4(2348 2549 6770 6569)
4(2548 6769 6770 2549)
4(2349 2550 6771 6570)
4(2549 6770 6771 2550)
4(2350 2551 6772 6571)
4(2550 6771 6772 2551)
4(2351 2552 6773 6572)
4(2551 6772 6773 2552)
4(2352 2553 6774 6573)
4(2552 6773 6774 2553)
4(2353 2554 6775 6574)
4(2553 6774 6775 2554)
4(2354 2555 6776 6575)
4(2554 6775 6776 2555)
4(2355 2556 6777 6576)
4(2555 6776 6777 2556)
4(2356 2557 6778 6577)
4(2556 6777 6778 2557)
4(2357 2558 6779 6578)
4(2557 6778 6779 2558)
4(2358 2559 6780 6579)
4(2558 6779 6780 2559)
4(2359 2560 6781 6580)
4(2559 6780 6781 2560)
4(2360 2561 6782 6581)
4(2560 6781 6782 2561)
4(2361 2562 6783 6582)
4(2561 6782 6783 2562)
4(2362 2563 6784 6583)
4(2562 6783 6784 2563)
4(2363 2564 6785 6584)
4(2563 6784 6785 2564)
4(2364 2565 6786 6585)
4(2564 6785 6786 2565)
4(2365 2566 6787 6586)
4(2565 6786 6787 2566)
4(2366 2567 6788 6587)
4(2566 6787 6788 2567)
4(2367 2568 6789 6588)
4(2567 6788 6789 2568)
4(2368 2569 6790 6589)
4(2568 6789 6790 2569)
4(2369 2570 6791 6590)
4(2569 6790 6791 2570)
4(2370 2571 6792 6591)
4(2570 6791 6792 2571)
4(2371 2572 6793 6592)
4(2571 6792 6793 2572)
4(2372 2573 6794 6593)
4(2572 6793 6794 2573)
4(2373 2574 6795 6594)
4(2573 6794 6795 2574)
4(2374 2575 6796 6595)
4(2574 6795 6796 2575)
4(2375 2576 6797 6596)
4(2575 6796 6797 2576)
4(2376 2577 6798 6597)
4(2576 6797 6798 2577)
4(2377 2578 6799 6598)
4(2577 6798 6799 2578)
4(2378 2579 6800 6599)
4(2578 6799 6800 2579)
4(2379 2580 6801 6600)
4(2579 6800 6801 2580)
4(2380 2581 6802 6601)
4(2580 6801 6802 2581)
4(2381 2582 6803 6602)
4(2581 6802 6803 2582)
4(2382 2583 6804 6603)
4(2582 6803 6804 2583)
4(2383 2584 6805 6604)
4(2583 6804 6805 2584)
4(2384 2585 6806 6605)
4(2584 6805 6806 2585)
4(2385 2586 6807 6606)
4(2585 6806 6807 2586)
4(2386 2587 6808 6607)
4(2586 6807 6808 2587)
4(2387 2588 6809 6608)
4(2587 6808 6809 2588)
4(2388 2589 6810 6609)
4(2588 6809 6810 2589)
4(2389 2590 6811 6610)
4(2589 6810 6811 2590)
4(2390 2591 6812 6611)
4(2590 6811 6812 2591)
4(2391 2592 6813 6612)
4(2591 6812 6813 2592)
4(2392 2593 6814 6613)
4(2592 6813 6814 2593)
4(2393 2594 6815 6614)
4(2593 6814 6815 2594)
4(2394 2595 6816 6615)
4(2594 6815 6816 2595)
4(2395 2596 6817 6616)
4(2595 6816 6817 2596)
4(2396 2597 6818 6617)
4(2596 6817 6818 2597)
4(2397 2598 6819 6618)
4(2597 6818 6819 2598)
4(2398 2599 6820 6619)
4(2598 6819 6820 2599)
4(2399 2600 6821 6620)
4(2599 6820 6821 2600)
4(2400 2601 6822 6621)
4(2600 6821 6822 2601)
4(2401 2602 6823 6622)
4(2601 6822 6823 2602)
4(2402 2603 6824 6623)
4(2602 6823 6824 2603)
4(2403 2604 6825 6624)
4(2603 6824 6825 2604)
4(2404 2605 6826 6625)
4(2604 6825 6826 2605)
4(2405 2606 6827 6626)
4(2605 6826 6827 2606)
4(2406 2607 6828 6627)
4(2606 6827 6828 2607)
4(2407 2608 6829 6628)
4(2607 6828 6829 2608)
4(2408 2609 6830 6629)
4(2608 6829 6830 2609)
4(2409 2610 6831 6630)
4(2609 6830 6831 2610)
4(2410 2611 6832 6631)
4(2610 6831 6832 2611)
4(2611 6832 6833 2612)
4(2413 2614 6835 6634)
4(2613 6834 6835 2614)
4(2414 2615 6836 6635)
4(2614 6835 6836 2615)
4(2415 2616 6837 6636)
4(2615 6836 6837 2616)
4(2416 2617 6838 6637)
4(2616 6837 6838 2617)
4(2417 2618 6839 6638)
4(2617 6838 6839 2618)
4(2418 2619 6840 6639)
4(2618 6839 6840 2619)
4(2419 2620 6841 6640)
4(2619 6840 6841 2620)
4(2420 2621 6842 6641)
4(2620 6841 6842 2621)
4(2421 2622 6843 6642)
4(2621 6842 6843 2622)
4(2422 2623 6844 6643)
4(2622 6843 6844 2623)
4(2423 2624 6845 6644)
4(2623 6844 6845 2624)
4(2424 2625 6846 6645)
4(2624 6845 6846 2625)
4(2425 2626 6847 6646)
4(2625 6846 6847 2626)
4(2426 2627 6848 6647)
4(2626 6847 6848 2627)
4(2427 2628 6849 6648)
4(2627 6848 6849 2628)
4(2428 2629 6850 6649)
4(2628 6849 6850 2629)
4(2429 2630 6851 6650)
4(2629 6850 6851 2630)
4(2430 2631 6852 6651)
4(2630 6851 6852 2631)
4(2431 2632 6853 6652)
4(2631 6852 6853 2632)
4(2432 2633 6854 6653)
4(2632 6853 6854 2633)
4(2433 2634 6855 6654)
4(2633 6854 6855 2634)
4(2434 2635 6856 6655)
4(2634 6855 6856 2635)
4(2435 2636 6857 6656)
4(2635 6856 6857 2636)
4(2436 2637 6858 6657)
4(2636 6857 6858 2637)
4(2437 2638 6859 6658)
4(2637 6858 6859 2638)
4(2438 2639 6860 6659)
4(2638 6859 6860 2639)
4(2439 2640 6861 6660)
4(2639 6860 6861 2640)
4(2440 2641 6862 6661)
4(2640 6861 6862 2641)
4(2441 2642 6863 6662)
4(2641 6862 6863 2642)
4(2442 2643 6864 6663)
4(2642 6863 6864 2643)
4(2443 2644 6865 6664)
4(2643 6864 6865 2644)
4(2444 2645 6866 6665)
4(2644 6865 6866 2645)
4(2445 2646 6867 6666)
4(2645 6866 6867 2646)
4(2446 2647 6868 6667)
4(2646 6867 6868 2647)
4(2447 2648 6869 6668)
4(2647 6868 6869 2648)
4(2448 2649 6870 6669)
4(2648 6869 6870 2649)
4(2449 2650 6871 6670)
4(2649 6870 6871 2650)
4(2450 2651 6872 6671)
4(2650 6871 6872 2651)
4(2451 2652 6873 6672)
4(2651 6872 6873 2652)
4(2452 2653 6874 6673)
4(2652 6873 6874 2653)
4(2453 2654 6875 6674)
4(2653 6874 6875 2654)
4(2454 2655 6876 6675)
4(2654 6875 6876 2655)
4(2455 2656 6877 6676)
4(2655 6876 6877 2656)
4(2456 2657 6878 6677)
4(2656 6877 6878 2657)
4(2457 2658 6879 6678)
4(2657 6878 6879 2658)
4(2458 2659 6880 6679)
4(2658 6879 6880 2659)
4(2459 2660 6881 6680)
4(2659 6880 6881 2660)
4(2460 2661 6882 6681)
4(2660 6881 6882 2661)
4(2461 2662 6883 6682)
4(2661 6882 6883 2662)
4(2462 2663 6884 6683)
4(2662 6883 6884 2663)
4(2463 2664 6885 6684)
4(2663 6884 6885 2664)
4(2464 2665 6886 6685)
4(2664 6885 6886 2665)
4(2465 2666 6887 6686)
4(2665 6886 6887 2666)
4(2466 2667 6888 6687)
4(2666 6887 6888 2667)
4(2467 2668 6889 6688)
4(2667 6888 6889 2668)
4(2468 2669 6890 6689)
4(2668 6889 6890 2669)
4(2469 2670 6891 6690)
4(2669 6890 6891 2670)
4(2470 2671 6892 6691)
4(2670 6891 6892 2671)
4(2471 2672 6893 6692)
4(2671 6892 6893 2672)
4(2472 2673 6894 6693)
4(2672 6893 6894 2673)
4(2473 2674 6895 6694)
4(2673 6894 6895 2674)
4(2474 2675 6896 6695)
4(2674 6895 6896 2675)
4(2475 2676 6897 6696)
4(2675 6896 6897 2676)
4(2476 2677 6898 6697)
4(2676 6897 6898 2677)
4(2477 2678 6899 6698)
4(2677 6898 6899 2678)
4(2478 2679 6900 6699)
4(2678 6899 6900 2679)
4(2479 2680 6901 6700)
4(2679 6900 6901 2680)
4(2480 2681 6902 6701)
4(2680 6901 6902 2681)
4(2481 2682 6903 6702)
4(2681 6902 6903 2682)
4(2482 2683 6904 6703)
4(2682 6903 6904 2683)
4(2483 2684 6905 6704)
4(2683 6904 6905 2684)
4(2484 2685 6906 6705)
4(2684 6905 6906 2685)
4(2485 2686 6907 6706)
4(2685 6906 6907 2686)
4(2486 2687 6908 6707)
4(2686 6907 6908 2687)
4(2487 2688 6909 6708)
4(2687 6908 6909 2688)
4(2488 2689 6910 6709)
4(2688 6909 6910 2689)
4(2489 2690 6911 6710)
4(2689 6910 6911 2690)
4(2490 2691 6912 6711)
4(2690 6911 6912 2691)
4(2491 2692 6913 6712)
4(2691 6912 6913 2692)
4(2492 2693 6914 6713)
4(2692 6913 6914 2693)
4(2493 2694 6915 6714)
4(2693 6914 6915 2694)
4(2494 2695 6916 6715)
4(2694 6915 6916 2695)
4(2495 2696 6917 6716)
4(2695 6916 6917 2696)
4(2496 2697 6918 6717)
4(2696 6917 6918 2697)
4(2497 2698 6919 6718)
4(2697 6918 6919 2698)
4(2498 2699 6920 6719)
4(2698 6919 6920 2699)
4(2499 2700 6921 6720)
4(2699 6920 6921 2700)
4(2500 2701 6922 6721)
4(2700 6921 6922 2701)
4(2501 2702 6923 6722)
4(2701 6922 6923 2702)
4(2502 2703 6924 6723)
4(2702 6923 6924 2703)
4(2503 2704 6925 6724)
4(2703 6924 6925 2704)
4(2504 2705 6926 6725)
4(2704 6925 6926 2705)
4(2505 2706 6927 6726)
4(2705 6926 6927 2706)
4(2506 2707 6928 6727)
4(2706 6927 6928 2707)
4(2507 2708 6929 6728)
4(2707 6928 6929 2708)
4(2508 2709 6930 6729)
4(2708 6929 6930 2709)
4(2509 2710 6931 6730)
4(2709 6930 6931 2710)
4(2510 2711 6932 6731)
4(2710 6931 6932 2711)
4(2511 2712 6933 6732)
4(2711 6932 6933 2712)
4(2512 2713 6934 6733)
4(2712 6933 6934 2713)
4(2513 2714 6935 6734)
4(2713 6934 6935 2714)
4(2514 2715 6936 6735)
4(2714 6935 6936 2715)
4(2515 2716 6937 6736)
4(2715 6936 6937 2716)
4(2516 2717 6938 6737)
4(2716 6937 6938 2717)
4(2517 2718 6939 6738)
4(2717 6938 6939 2718)
4(2518 2719 6940 6739)
4(2718 6939 6940 2719)
4(2519 2720 6941 6740)
4(2719 6940 6941 2720)
4(2520 2721 6942 6741)
4(2720 6941 6942 2721)
4(2521 2722 6943 6742)
4(2721 6942 6943 2722)
4(2522 2723 6944 6743)
4(2722 6943 6944 2723)
4(2523 2724 6945 6744)
4(2723 6944 6945 2724)
4(2524 2725 6946 6745)
4(2724 6945 6946 2725)
4(2525 2726 6947 6746)
4(2725 6946 6947 2726)
4(2526 2727 6948 6747)
4(2726 6947 6948 2727)
4(2527 2728 6949 6748)
4(2727 6948 6949 2728)
4(2528 2729 6950 6749)
4(2728 6949 6950 2729)
4(2529 2730 6951 6750)
4(2729 6950 6951 2730)
4(2530 2731 6952 6751)
4(2730 6951 6952 2731)
4(2531 2732 6953 6752)
4(2731 6952 6953 2732)
4(2532 2733 6954 6753)
4(2732 6953 6954 2733)
4(2533 2734 6955 6754)
4(2733 6954 6955 2734)
4(2534 2735 6956 6755)
4(2734 6955 6956 2735)
4(2535 2736 6957 6756)
4(2735 6956 6957 2736)
4(2536 2737 6958 6757)
4(2736 6957 6958 2737)
4(2537 2738 6959 6758)
4(2737 6958 6959 2738)
4(2538 2739 6960 6759)
4(2738 6959 6960 2739)
4(2539 2740 6961 6760)
4(2739 6960 6961 2740)
4(2540 2741 6962 6761)
4(2740 6961 6962 2741)
4(2541 2742 6963 6762)
4(2741 6962 6963 2742)
4(2542 2743 6964 6763)
4(2742 6963 6964 2743)
4(2543 2744 6965 6764)
4(2743 6964 6965 2744)
4(2544 2745 6966 6765)
4(2744 6965 6966 2745)
4(2545 2746 6967 6766)
4(2745 6966 6967 2746)
4(2546 2747 6968 6767)
4(2746 6967 6968 2747)
4(2547 2748 6969 6768)
4(2747 6968 6969 2748)
4(2548 2749 6970 6769)
4(2748 6969 6970 2749)
4(2549 2750 6971 6770)
4(2749 6970 6971 2750)
4(2550 2751 6972 6771)
4(2750 6971 6972 2751)
4(2551 2752 6973 6772)
4(2751 6972 6973 2752)
4(2552 2753 6974 6773)
4(2752 6973 6974 2753)
4(2553 2754 6975 6774)
4(2753 6974 6975 2754)
4(2554 2755 6976 6775)
4(2754 6975 6976 2755)
4(2555 2756 6977 6776)
4(2755 6976 6977 2756)
4(2556 2757 6978 6777)
4(2756 6977 6978 2757)
4(2557 2758 6979 6778)
4(2757 6978 6979 2758)
4(2558 2759 6980 6779)
4(2758 6979 6980 2759)
4(2559 2760 6981 6780)
4(2759 6980 6981 2760)
4(2560 2761 6982 6781)
4(2760 6981 6982 2761)
4(2561 2762 6983 6782)
4(2761 6982 6983 2762)
4(2562 2763 6984 6783)
4(2762 6983 6984 2763)
4(2563 2764 6985 6784)
4(2763 6984 6985 2764)
4(2564 2765 6986 6785)
4(2764 6985 6986 2765)
4(2565 2766 6987 6786)
4(2765 6986 6987 2766)
4(2566 2767 6988 6787)
4(2766 6987 6988 2767)
4(2567 2768 6989 6788)
4(2767 6988 6989 2768)
4(2568 2769 6990 6789)
4(2768 6989 6990 2769)
4(2569 2770 6991 6790)
4(2769 6990 6991 2770)
4(2570 2771 6992 6791)
4(2770 6991 6992 2771)
4(2571 2772 6993 6792)
4(2771 6992 6993 2772)
4(2572 2773 6994 6793)
4(2772 6993 6994 2773)
4(2573 2774 6995 6794)
4(2773 6994 6995 2774)
4(2574 2775 6996 6795)
4(2774 6995 6996 2775)
4(2575 2776 6997 6796)
4(2775 6996 6997 2776)
4(2576 2777 6998 6797)
4(2776 6997 6998 2777)
4(2577 2778 6999 6798)
4(2777 6998 6999 2778)
4(2578 2779 7000 6799)
4(2778 6999 7000 2779)
4(2579 2780 7001 6800)
4(2779 7000 7001 2780)
4(2580 2781 7002 6801)
4(2780 7001 7002 2781)
4(2581 2782 7003 6802)
4(2781 7002 7003 2782)
4(2582 2783 7004 6803)
4(2782 7003 7004 2783)
4(2583 2784 7005 6804)
4(2783 7004 7005 2784)
4(2584 2785 7006 6805)
4(2784 7005 7006 2785)
4(2585 2786 7007 6806)
4(2785 7006 7007 2786)
4(2586 2787 7008 6807)
4(2786 7007 7008 2787)
4(2587 2788 7009 6808)
4(2787 7008 7009 2788)
4(2588 2789 7010 6809)
4(2788 7009 7010 2789)
4(2589 2790 7011 6810)
4(2789 7010 7011 2790)
4(2590 2791 7012 6811)
4(2790 7011 7012 2791)
4(2591 2792 7013 6812)
4(2791 7012 7013 2792)
4(2592 2793 7014 6813)
4(2792 7013 7014 2793)
4(2593 2794 7015 6814)
4(2793 7014 7015 2794)
4(2594 2795 7016 6815)
4(2794 7015 7016 2795)
4(2595 2796 7017 6816)
4(2795 7016 7017 2796)
4(2596 2797 7018 6817)
4(2796 7017 7018 2797)
4(2597 2798 7019 6818)
4(2797 7018 7019 2798)
4(2598 2799 7020 6819)
4(2798 7019 7020 2799)
4(2599 2800 7021 6820)
4(2799 7020 7021 2800)
4(2600 2801 7022 6821)
4(2800 7021 7022 2801)
4(2601 2802 7023 6822)
4(2801 7022 7023 2802)
4(2602 2803 7024 6823)
4(2802 7023 7024 2803)
4(2603 2804 7025 6824)
4(2803 7024 7025 2804)
4(2604 2805 7026 6825)
4(2804 7025 7026 2805)
4(2605 2806 7027 6826)
4(2805 7026 7027 2806)
4(2606 2807 7028 6827)
4(2806 7027 7028 2807)
4(2607 2808 7029 6828)
4(2807 7028 7029 2808)
4(2608 2809 7030 6829)
4(2808 7029 7030 2809)
4(2609 2810 7031 6830)
4(2809 7030 7031 2810)
4(2610 2811 7032 6831)
4(2810 7031 7032 2811)
4(2611 2812 7033 6832)
4(2811 7032 7033 2812)
4(2812 7033 7034 2813)
4(2614 2815 7036 6835)
4(2814 7035 7036 2815)
4(2615 2816 7037 6836)
4(2815 7036 7037 2816)
4(2616 2817 7038 6837)
4(2816 7037 7038 2817)
4(2617 2818 7039 6838)
4(2817 7038 7039 2818)
4(2618 2819 7040 6839)
4(2818 7039 7040 2819)
4(2619 2820 7041 6840)
4(2819 7040 7041 2820)
4(2620 2821 7042 6841)
4(2820 7041 7042 2821)
4(2621 2822 7043 6842)
4(2821 7042 7043 2822)
4(2622 2823 7044 6843)
4(2822 7043 7044 2823)
4(2623 2824 7045 6844)
4(2823 7044 7045 2824)
4(2624 2825 7046 6845)
4(2824 7045 7046 2825)
4(2625 2826 7047 6846)
4(2825 7046 7047 2826)
4(2626 2827 7048 6847)
4(2826 7047 7048 2827)
4(2627 2828 7049 6848)
4(2827 7048 7049 2828)
4(2628 2829 7050 6849)
4(2828 7049 7050 2829)
4(2629 2830 7051 6850)
4(2829 7050 7051 2830)
4(2630 2831 7052 6851)
4(2830 7051 7052 2831)
4(2631 2832 7053 6852)
4(2831 7052 7053 2832)
4(2632 2833 7054 6853)
4(2832 7053 7054 2833)
4(2633 2834 7055 6854)
4(2833 7054 7055 2834)
4(2634 2835 7056 6855)
4(2834 7055 7056 2835)
4(2635 2836 7057 6856)
4(2835 7056 7057 2836)
4(2636 2837 7058 6857)
4(2836 7057 7058 2837)
4(2637 2838 7059 6858)
4(2837 7058 7059 2838)
4(2638 2839 7060 6859)
4(2838 7059 7060 2839)
4(2639 2840 7061 6860)
4(2839 7060 7061 2840)
4(2640 2841 7062 6861)
4(2840 7061 7062 2841)
4(2641 2842 7063 6862)
4(2841 7062 7063 2842)
4(2642 2843 7064 6863)
4(2842 7063 7064 2843)
4(2643 2844 7065 6864)
4(2843 7064 7065 2844)
4(2644 2845 7066 6865)
4(2844 7065 7066 2845)
4(2645 2846 7067 6866)
4(2845 7066 7067 2846)
4(2646 2847 7068 6867)
4(2846 7067 7068 2847)
4(2647 2848 7069 6868)
4(2847 7068 7069 2848)
4(2648 2849 7070 6869)
4(2848 7069 7070 2849)
4(2649 2850 7071 6870)
4(2849 7070 7071 2850)
4(2650 2851 7072 6871)
4(2850 7071 7072 2851)
4(2651 2852 7073 6872)
4(2851 7072 7073 2852)
4(2652 2853 7074 6873)
4(2852 7073 7074 2853)
4(2653 2854 7075 6874)
4(2853 7074 7075 2854)
4(2654 2855 7076 6875)
4(2854 7075 7076 2855)
4(2655 2856 7077 6876)
4(2855 7076 7077 2856)
4(2656 2857 7078 6877)
4(2856 7077 7078 2857)
4(2657 2858 7079 6878)
4(2857 7078 7079 2858)
4(2658 2859 7080 6879)
4(2858 7079 7080 2859)
4(2659 2860 7081 6880)
4(2859 7080 7081 2860)
4(2660 2861 7082 6881)
4(2860 7081 7082 2861)
4(2661 2862 7083 6882)
4(2861 7082 7083 2862)
4(2662 2863 7084 6883)
4(2862 7083 7084 2863)
4(2663 2864 7085 6884)
4(2863 7084 7085 2864)
4(2664 2865 7086 6885)
4(2864 7085 7086 2865)
4(2665 2866 7087 6886)
4(2865 7086 7087 2866)
4(2666 2867 7088 6887)
4(2866 7087 7088 2867)
4(2667 2868 7089 6888)
4(2867 7088 7089 2868)
4(2668 2869 7090 6889)
4(2868 7089 7090 2869)
4(2669 2870 7091 6890)
4(2869 7090 7091 2870)
4(2670 2871 7092 6891)
4(2870 7091 7092 2871)
4(2671 2872 7093 6892)
4(2871 7092 7093 2872)
4(2672 2873 7094 6893)
4(2872 7093 7094 2873)
4(2673 2874 7095 6894)
4(2873 7094 7095 2874)
4(2674 2875 7096 6895)
4(2874 7095 7096 2875)
4(2675 2876 7097 6896)
4(2875 7096 7097 2876)
4(2676 2877 7098 6897)
4(2876 7097 7098 2877)
4(2677 2878 7099 6898)
4(2877 7098 7099 2878)
4(2678 2879 7100 6899)
4(2878 7099 7100 2879)
4(2679 2880 7101 6900)
4(2879 7100 7101 2880)
4(2680 2881 7102 6901)
4(2880 7101 7102 2881)
4(2681 2882 7103 6902)
4(2881 7102 7103 2882)
4(2682 2883 7104 6903)
4(2882 7103 7104 2883)
4(2683 2884 7105 6904)
4(2883 7104 7105 2884)
4(2684 2885 7106 6905)
4(2884 7105 7106 2885)
4(2685 2886 7107 6906)
4(2885 7106 7107 2886)
4(2686 2887 7108 6907)
4(2886 7107 7108 2887)
4(2687 2888 7109 6908)
4(2887 7108 7109 2888)
4(2688 2889 7110 6909)
4(2888 7109 7110 2889)
4(2689 2890 7111 6910)
4(2889 7110 7111 2890)
4(2690 2891 7112 6911)
4(2890 7111 7112 2891)
4(2691 2892 7113 6912)
4(2891 7112 7113 2892)
4(2692 2893 7114 6913)
4(2892 7113 7114 2893)
4(2693 2894 7115 6914)
4(2893 7114 7115 2894)
4(2694 2895 7116 6915)
4(2894 7115 7116 2895)
4(2695 2896 7117 6916)
4(2895 7116 7117 2896)
4(2696 2897 7118 6917)
4(2896 7117 7118 2897)
4(2697 2898 7119 6918)
4(2897 7118 7119 2898)
4(2698 2899 7120 6919)
4(2898 7119 7120 2899)
4(2699 2900 7121 6920)
4(2899 7120 7121 2900)
4(2700 2901 7122 6921)
4(2900 7121 7122 2901)
4(2701 2902 7123 6922)
4(2901 7122 7123 2902)
4(2702 2903 7124 6923)
4(2902 7123 7124 2903)
4(2703 2904 7125 6924)
4(2903 7124 7125 2904)
4(2704 2905 7126 6925)
4(2904 7125 7126 2905)
4(2705 2906 7127 6926)
4(2905 7126 7127 2906)
4(2706 2907 7128 6927)
4(2906 7127 7128 2907)
4(2707 2908 7129 6928)
4(2907 7128 7129 2908)
4(2708 2909 7130 6929)
4(2908 7129 7130 2909)
4(2709 2910 7131 6930)
4(2909 7130 7131 2910)
4(2710 2911 7132 6931)
4(2910 7131 7132 2911)
4(2711 2912 7133 6932)
4(2911 7132 7133 2912)
4(2712 2913 7134 6933)
4(2912 7133 7134 2913)
4(2713 2914 7135 6934)
4(2913 7134 7135 2914)
4(2714 2915 7136 6935)
4(2914 7135 7136 2915)
4(2715 2916 7137 6936)
4(2915 7136 7137 2916)
4(2716 2917 7138 6937)
4(2916 7137 7138 2917)
4(2717 2918 7139 6938)
4(2917 7138 7139 2918)
4(2718 2919 7140 6939)
4(2918 7139 7140 2919)
4(2719 2920 7141 6940)
4(2919 7140 7141 2920)
4(2720 2921 7142 6941)
4(2920 7141 7142 2921)
4(2721 2922 7143 6942)
4(2921 7142 7143 2922)
4(2722 2923 7144 6943)
4(2922 7143 7144 2923)
4(2723 2924 7145 6944)
4(2923 7144 7145 2924)
4(2724 2925 7146 6945)
4(2924 7145 7146 2925)
4(2725 2926 7147 6946)
4(2925 7146 7147 2926)
4(2726 2927 7148 6947)
4(2926 7147 7148 2927)
4(2727 2928 7149 6948)
4(2927 7148 7149 2928)
4(2728 2929 7150 6949)
4(2928 7149 7150 2929)
4(2729 2930 7151 6950)
4(2929 7150 7151 2930)
4(2730 2931 7152 6951)
4(2930 7151 7152 2931)
4(2731 2932 7153 6952)
4(2931 7152 7153 2932)
4(2732 2933 7154 6953)
4(2932 7153 7154 2933)
4(2733 2934 7155 6954)
4(2933 7154 7155 2934)
4(2734 2935 7156 6955)
4(2934 7155 7156 2935)
4(2735 2936 7157 6956)
4(2935 7156 7157 2936)
4(2736 2937 7158 6957)
4(2936 7157 7158 2937)
4(2737 2938 7159 6958)
4(2937 7158 7159 2938)
4(2738 2939 7160 6959)
4(2938 7159 7160 2939)
4(2739 2940 7161 6960)
4(2939 7160 7161 2940)
4(2740 2941 7162 6961)
4(2940 7161 7162 2941)
4(2741 2942 7163 6962)
4(2941 7162 7163 2942)
4(2742 2943 7164 6963)
4(2942 7163 7164 2943)
4(2743 2944 7165 6964)
4(2943 7164 7165 2944)
4(2744 2945 7166 6965)
4(2944 7165 7166 2945)
4(2745 2946 7167 6966)
4(2945 7166 7167 2946)
4(2746 2947 7168 6967)
4(2946 7167 7168 2947)
4(2747 2948 7169 6968)
4(2947 7168 7169 2948)
4(2748 2949 7170 6969)
4(2948 7169 7170 2949)
4(2749 2950 7171 6970)
4(2949 7170 7171 2950)
4(2750 2951 7172 6971)
4(2950 7171 7172 2951)
4(2751 2952 7173 6972)
4(2951 7172 7173 2952)
4(2752 2953 7174 6973)
4(2952 7173 7174 2953)
4(2753 2954 7175 6974)
4(2953 7174 7175 2954)
4(2754 2955 7176 6975)
4(2954 7175 7176 2955)
4(2755 2956 7177 6976)
4(2955 7176 7177 2956)
4(2756 2957 7178 6977)
4(2956 7177 7178 2957)
4(2757 2958 7179 6978)
4(2957 7178 7179 2958)
4(2758 2959 7180 6979)
4(2958 7179 7180 2959)
4(2759 2960 7181 6980)
4(2959 7180 7181 2960)
4(2760 2961 7182 6981)
4(2960 7181 7182 2961)
4(2761 2962 7183 6982)
4(2961 7182 7183 2962)
4(2762 2963 7184 6983)
4(2962 7183 7184 2963)
4(2763 2964 7185 6984)
4(2963 7184 7185 2964)
4(2764 2965 7186 6985)
4(2964 7185 7186 2965)
4(2765 2966 7187 6986)
4(2965 7186 7187 2966)
4(2766 2967 7188 6987)
4(2966 7187 7188 2967)
4(2767 2968 7189 6988)
4(2967 7188 7189 2968)
4(2768 2969 7190 6989)
4(2968 7189 7190 2969)
4(2769 2970 7191 6990)
4(2969 7190 7191 2970)
4(2770 2971 7192 6991)
4(2970 7191 7192 2971)
4(2771 2972 7193 6992)
4(2971 7192 7193 2972)
4(2772 2973 7194 6993)
4(2972 7193 7194 2973)
4(2773 2974 7195 6994)
4(2973 7194 7195 2974)
4(2774 2975 7196 6995)
4(2974 7195 7196 2975)
4(2775 2976 7197 6996)
4(2975 7196 7197 2976)
4(2776 2977 7198 6997)
4(2976 7197 7198 2977)
4(2777 2978 7199 6998)
4(2977 7198 7199 2978)
4(2778 2979 7200 6999)
4(2978 7199 7200 2979)
4(2779 2980 7201 7000)
4(2979 7200 7201 2980)
4(2780 2981 7202 7001)
4(2980 7201 7202 2981)
4(2781 2982 7203 7002)
4(2981 7202 7203 2982)
4(2782 2983 7204 7003)
4(2982 7203 7204 2983)
4(2783 2984 7205 7004)
4(2983 7204 7205 2984)
4(2784 2985 7206 7005)
4(2984 7205 7206 2985)
4(2785 2986 7207 7006)
4(2985 7206 7207 2986)
4(2786 2987 7208 7007)
4(2986 7207 7208 2987)
4(2787 2988 7209 7008)
4(2987 7208 7209 2988)
4(2788 2989 7210 7009)
4(2988 7209 7210 2989)
4(2789 2990 7211 7010)
4(2989 7210 7211 2990)
4(2790 2991 7212 7011)
4(2990 7211 7212 2991)
4(2791 2992 7213 7012)
4(2991 7212 7213 2992)
4(2792 2993 7214 7013)
4(2992 7213 7214 2993)
4(2793 2994 7215 7014)
4(2993 7214 7215 2994)
4(2794 2995 7216 7015)
4(2994 7215 7216 2995)
4(2795 2996 7217 7016)
4(2995 7216 7217 2996)
4(2796 2997 7218 7017)
4(2996 7217 7218 2997)
4(2797 2998 7219 7018)
4(2997 7218 7219 2998)
4(2798 2999 7220 7019)
4(2998 7219 7220 2999)
4(2799 3000 7221 7020)
4(2999 7220 7221 3000)
4(2800 3001 7222 7021)
4(3000 7221 7222 3001)
4(2801 3002 7223 7022)
4(3001 7222 7223 3002)
4(2802 3003 7224 7023)
4(3002 7223 7224 3003)
4(2803 3004 7225 7024)
4(3003 7224 7225 3004)
4(2804 3005 7226 7025)
4(3004 7225 7226 3005)
4(2805 3006 7227 7026)
4(3005 7226 7227 3006)
4(2806 3007 7228 7027)
4(3006 7227 7228 3007)
4(2807 3008 7229 7028)
4(3007 7228 7229 3008)
4(2808 3009 7230 7029)
4(3008 7229 7230 3009)
4(2809 3010 7231 7030)
4(3009 7230 7231 3010)
4(2810 3011 7232 7031)
4(3010 7231 7232 3011)
4(2811 3012 7233 7032)
4(3011 7232 7233 3012)
4(2812 3013 7234 7033)
4(3012 7233 7234 3013)
4(3013 7234 7235 3014)
4(2815 3016 7237 7036)
4(3015 7236 7237 3016)
4(2816 3017 7238 7037)
4(3016 7237 7238 3017)
4(2817 3018 7239 7038)
4(3017 7238 7239 3018)
4(2818 3019 7240 7039)
4(3018 7239 7240 3019)
4(2819 3020 7241 7040)
4(3019 7240 7241 3020)
4(2820 3021 7242 7041)
4(3020 7241 7242 3021)
4(2821 3022 7243 7042)
4(3021 7242 7243 3022)
4(2822 3023 7244 7043)
4(3022 7243 7244 3023)
4(2823 3024 7245 7044)
4(3023 7244 7245 3024)
4(2824 3025 7246 7045)
4(3024 7245 7246 3025)
4(2825 3026 7247 7046)
4(3025 7246 7247 3026)
4(2826 3027 7248 7047)
4(3026 7247 7248 3027)
4(2827 3028 7249 7048)
4(3027 7248 7249 3028)
4(2828 3029 7250 7049)
4(3028 7249 7250 3029)
4(2829 3030 7251 7050)
4(3029 7250 7251 3030)
4(2830 3031 7252 7051)
4(3030 7251 7252 3031)
4(2831 3032 7253 7052)
4(3031 7252 7253 3032)
4(2832 3033 7254 7053)
4(3032 7253 7254 3033)
4(2833 3034 7255 7054)
4(3033 7254 7255 3034)
4(2834 3035 7256 7055)
4(3034 7255 7256 3035)
4(2835 3036 7257 7056)
4(3035 7256 7257 3036)
4(2836 3037 7258 7057)
4(3036 7257 7258 3037)
4(2837 3038 7259 7058)
4(3037 7258 7259 3038)
4(2838 3039 7260 7059)
4(3038 7259 7260 3039)
4(2839 3040 7261 7060)
4(3039 7260 7261 3040)
4(2840 3041 7262 7061)
4(3040 7261 7262 3041)
4(2841 3042 7263 7062)
4(3041 7262 7263 3042)
4(2842 3043 7264 7063)
4(3042 7263 7264 3043)
4(2843 3044 7265 7064)
4(3043 7264 7265 3044)
4(2844 3045 7266 7065)
4(3044 7265 7266 3045)
4(2845 3046 7267 7066)
4(3045 7266 7267 3046)
4(2846 3047 7268 7067)
4(3046 7267 7268 3047)
4(2847 3048 7269 7068)
4(3047 7268 7269 3048)
4(2848 3049 7270 7069)
4(3048 7269 7270 3049)
4(2849 3050 7271 7070)
4(3049 7270 7271 3050)
4(2850 3051 7272 7071)
4(3050 7271 7272 3051)
4(2851 3052 7273 7072)
4(3051 7272 7273 3052)
4(2852 3053 7274 7073)
4(3052 7273 7274 3053)
4(2853 3054 7275 7074)
4(3053 7274 7275 3054)
4(2854 3055 7276 7075)
4(3054 7275 7276 3055)
4(2855 3056 7277 7076)
4(3055 7276 7277 3056)
4(2856 3057 7278 7077)
4(3056 7277 7278 3057)
4(2857 3058 7279 7078)
4(3057 7278 7279 3058)
4(2858 3059 7280 7079)
4(3058 7279 7280 3059)
4(2859 3060 7281 7080)
4(3059 7280 7281 3060)
4(2860 3061 7282 7081)
4(3060 7281 7282 3061)
4(2861 3062 7283 7082)
4(3061 7282 7283 3062)
4(2862 3063 7284 7083)
4(3062 7283 7284 3063)
4(2863 3064 7285 7084)
4(3063 7284 7285 3064)
4(2864 3065 7286 7085)
4(3064 7285 7286 3065)
4(2865 3066 7287 7086)
4(3065 7286 7287 3066)
4(2866 3067 7288 7087)
4(3066 7287 7288 3067)
4(2867 3068 7289 7088)
4(3067 7288 7289 3068)
4(2868 3069 7290 7089)
4(3068 7289 7290 3069)
4(2869 3070 7291 7090)
4(3069 7290 7291 3070)
4(2870 3071 7292 7091)
4(3070 7291 7292 3071)
4(2871 3072 7293 7092)
4(3071 7292 7293 3072)
4(2872 3073 7294 7093)
4(3072 7293 7294 3073)
4(2873 3074 7295 7094)
4(3073 7294 7295 3074)
4(2874 3075 7296 7095)
4(3074 7295 7296 3075)
4(2875 3076 7297 7096)
4(3075 7296 7297 3076)
4(2876 3077 7298 7097)
4(3076 7297 7298 3077)
4(2877 3078 7299 7098)
4(3077 7298 7299 3078)
4(2878 3079 7300 7099)
4(3078 7299 7300 3079)
4(2879 3080 7301 7100)
4(3079 7300 7301 3080)
4(2880 3081 7302 7101)
4(3080 7301 7302 3081)
4(2881 3082 7303 7102)
4(3081 7302 7303 3082)
4(2882 3083 7304 7103)
4(3082 7303 7304 3083)
4(2883 3084 7305 7104)
4(3083 7304 7305 3084)
4(2884 3085 7306 7105)
4(3084 7305 7306 3085)
4(2885 3086 7307 7106)
4(3085 7306 7307 3086)
4(2886 3087 7308 7107)
4(3086 7307 7308 3087)
4(2887 3088 7309 7108)
4(3087 7308 7309 3088)
4(2888 3089 7310 7109)
4(3088 7309 7310 3089)
4(2889 3090 7311 7110)
4(3089 7310 7311 3090)
4(2890 3091 7312 7111)
4(3090 7311 7312 3091)
4(2891 3092 7313 7112)
4(3091 7312 7313 3092)
4(2892 3093 7314 7113)
4(3092 7313 7314 3093)
4(2893 3094 7315 7114)
4(3093 7314 7315 3094)
4(2894 3095 7316 7115)
4(3094 7315 7316 3095)
4(2895 3096 7317 7116)
4(3095 7316 7317 3096)
4(2896 3097 7318 7117)
4(3096 7317 7318 3097)
4(2897 3098 7319 7118)
4(3097 7318 7319 3098)
4(2898 3099 7320 7119)
4(3098 7319 7320 3099)
4(2899 3100 7321 7120)
4(3099 7320 7321 3100)
4(2900 3101 7322 7121)
4(3100 7321 7322 3101)
4(2901 3102 7323 7122)
4(3101 7322 7323 3102)
4(2902 3103 7324 7123)
4(3102 7323 7324 3103)
4(2903 3104 7325 7124)
4(3103 7324 7325 3104)
4(2904 3105 7326 7125)
4(3104 7325 7326 3105)
4(2905 3106 7327 7126)
4(3105 7326 7327 3106)
4(2906 3107 7328 7127)
4(3106 7327 7328 3107)
4(2907 3108 7329 7128)
4(3107 7328 7329 3108)
4(2908 3109 7330 7129)
4(3108 7329 7330 3109)
4(2909 3110 7331 7130)
4(3109 7330 7331 3110)
4(2910 3111 7332 7131)
4(3110 7331 7332 3111)
4(2911 3112 7333 7132)
4(3111 7332 7333 3112)
4(2912 3113 7334 7133)
4(3112 7333 7334 3113)
4(2913 3114 7335 7134)
4(3113 7334 7335 3114)
4(2914 3115 7336 7135)
4(3114 7335 7336 3115)
4(2915 3116 7337 7136)
4(3115 7336 7337 3116)
4(2916 3117 7338 7137)
4(3116 7337 7338 3117)
4(2917 3118 7339 7138)
4(3117 7338 7339 3118)
4(2918 3119 7340 7139)
4(3118 7339 7340 3119)
4(2919 3120 7341 7140)
4(3119 7340 7341 3120)
4(2920 3121 7342 7141)
4(3120 7341 7342 3121)
4(2921 3122 7343 7142)
4(3121 7342 7343 3122)
4(2922 3123 7344 7143)
4(3122 7343 7344 3123)
4(2923 3124 7345 7144)
4(3123 7344 7345 3124)
4(2924 3125 7346 7145)
4(3124 7345 7346 3125)
4(2925 3126 7347 7146)
4(3125 7346 7347 3126)
4(2926 3127 7348 7147)
4(3126 7347 7348 3127)
4(2927 3128 7349 7148)
4(3127 7348 7349 3128)
4(2928 3129 7350 7149)
4(3128 7349 7350 3129)
4(2929 3130 7351 7150)
4(3129 7350 7351 3130)
4(2930 3131 7352 7151)
4(3130 7351 7352 3131)
4(2931 3132 7353 7152)
4(3131 7352 7353 3132)
4(2932 3133 7354 7153)
4(3132 7353 7354 3133)
4(2933 3134 7355 7154)
4(3133 7354 7355 3134)
4(2934 3135 7356 7155)
4(3134 7355 7356 3135)
4(2935 3136 7357 7156)
4(3135 7356 7357 3136)
4(2936 3137 7358 7157)
4(3136 7357 7358 3137)
4(2937 3138 7359 7158)
4(3137 7358 7359 3138)
4(2938 3139 7360 7159)
4(3138 7359 7360 3139)
4(2939 3140 7361 7160)
4(3139 7360 7361 3140)
4(2940 3141 7362 7161)
4(3140 7361 7362 3141)
4(2941 3142 7363 7162)
4(3141 7362 7363 3142)
4(2942 3143 7364 7163)
4(3142 7363 7364 3143)
4(2943 3144 7365 7164)
4(3143 7364 7365 3144)
4(2944 3145 7366 7165)
4(3144 7365 7366 3145)
4(2945 3146 7367 7166)
4(3145 7366 7367 3146)
4(2946 3147 7368 7167)
4(3146 7367 7368 3147)
4(2947 3148 7369 7168)
4(3147 7368 7369 3148)
4(2948 3149 7370 7169)
4(3148 7369 7370 3149)
4(2949 3150 7371 7170)
4(3149 7370 7371 3150)
4(2950 3151 7372 7171)
4(3150 7371 7372 3151)
4(2951 3152 7373 7172)
4(3151 7372 7373 3152)
4(2952 3153 7374 7173)
4(3152 7373 7374 3153)
4(2953 3154 7375 7174)
4(3153 7374 7375 3154)
4(2954 3155 7376 7175)
4(3154 7375 7376 3155)
4(2955 3156 7377 7176)
4(3155 7376 7377 3156)
4(2956 3157 7378 7177)
4(3156 7377 7378 3157)
4(2957 3158 7379 7178)
4(3157 7378 7379 3158)
4(2958 3159 7380 7179)
4(3158 7379 7380 3159)
4(2959 3160 7381 7180)
4(3159 7380 7381 3160)
4(2960 3161 7382 7181)
4(3160 7381 7382 3161)
4(2961 3162 7383 7182)
4(3161 7382 7383 3162)
4(2962 3163 7384 7183)
4(3162 7383 7384 3163)
4(2963 3164 7385 7184)
4(3163 7384 7385 3164)
4(2964 3165 7386 7185)
4(3164 7385 7386 3165)
4(2965 3166 7387 7186)
4(3165 7386 7387 3166)
4(2966 3167 7388 7187)
4(3166 7387 7388 3167)
4(2967 3168 7389 7188)
4(3167 7388 7389 3168)
4(2968 3169 7390 7189)
4(3168 7389 7390 3169)
4(2969 3170 7391 7190)
4(3169 7390 7391 3170)
4(2970 3171 7392 7191)
4(3170 7391 7392 3171)
4(2971 3172 7393 7192)
4(3171 7392 7393 3172)
4(2972 3173 7394 7193)
4(3172 7393 7394 3173)
4(2973 3174 7395 7194)
4(3173 7394 7395 3174)
4(2974 3175 7396 7195)
4(3174 7395 7396 3175)
4(2975 3176 7397 7196)
4(3175 7396 7397 3176)
4(2976 3177 7398 7197)
4(3176 7397 7398 3177)
4(2977 3178 7399 7198)
4(3177 7398 7399 3178)
4(2978 3179 7400 7199)
4(3178 7399 7400 3179)
4(2979 3180 7401 7200)
4(3179 7400 7401 3180)
4(2980 3181 7402 7201)
4(3180 7401 7402 3181)
4(2981 3182 7403 7202)
4(3181 7402 7403 3182)
4(2982 3183 7404 7203)
4(3182 7403 7404 3183)
4(2983 3184 7405 7204)
4(3183 7404 7405 3184)
4(2984 3185 7406 7205)
4(3184 7405 7406 3185)
4(2985 3186 7407 7206)
4(3185 7406 7407 3186)
4(2986 3187 7408 7207)
4(3186 7407 7408 3187)
4(2987 3188 7409 7208)
4(3187 7408 7409 3188)
4(2988 3189 7410 7209)
4(3188 7409 7410 3189)
4(2989 3190 7411 7210)
4(3189 7410 7411 3190)
4(2990 3191 7412 7211)
4(3190 7411 7412 3191)
4(2991 3192 7413 7212)
4(3191 7412 7413 3192)
4(2992 3193 7414 7213)
4(3192 7413 7414 3193)
4(2993 3194 7415 7214)
4(3193 7414 7415 3194)
4(2994 3195 7416 7215)
4(3194 7415 7416 3195)
4(2995 3196 7417 7216)
4(3195 7416 7417 3196)
4(2996 3197 7418 7217)
4(3196 7417 7418 3197)
4(2997 3198 7419 7218)
4(3197 7418 7419 3198)
4(2998 3199 7420 7219)
4(3198 7419 7420 3199)
4(2999 3200 7421 7220)
4(3199 7420 7421 3200)
4(3000 3201 7422 7221)
4(3200 7421 7422 3201)
4(3001 3202 7423 7222)
4(3201 7422 7423 3202)
4(3002 3203 7424 7223)
4(3202 7423 7424 3203)
4(3003 3204 7425 7224)
4(3203 7424 7425 3204)
4(3004 3205 7426 7225)
4(3204 7425 7426 3205)
4(3005 3206 7427 7226)
4(3205 7426 7427 3206)
4(3006 3207 7428 7227)
4(3206 7427 7428 3207)
4(3007 3208 7429 7228)
4(3207 7428 7429 3208)
4(3008 3209 7430 7229)
4(3208 7429 7430 3209)
4(3009 3210 7431 7230)
4(3209 7430 7431 3210)
4(3010 3211 7432 7231)
4(3210 7431 7432 3211)
4(3011 3212 7433 7232)
4(3211 7432 7433 3212)
4(3012 3213 7434 7233)
4(3212 7433 7434 3213)
4(3013 3214 7435 7234)
4(3213 7434 7435 3214)
4(3214 7435 7436 3215)
4(3016 3217 7438 7237)
4(3216 7437 7438 3217)
4(3017 3218 7439 7238)
4(3217 7438 7439 3218)
4(3018 3219 7440 7239)
4(3218 7439 7440 3219)
4(3019 3220 7441 7240)
4(3219 7440 7441 3220)
4(3020 3221 7442 7241)
4(3220 7441 7442 3221)
4(3021 3222 7443 7242)
4(3221 7442 7443 3222)
4(3022 3223 7444 7243)
4(3222 7443 7444 3223)
4(3023 3224 7445 7244)
4(3223 7444 7445 3224)
4(3024 3225 7446 7245)
4(3224 7445 7446 3225)
4(3025 3226 7447 7246)
4(3225 7446 7447 3226)
4(3026 3227 7448 7247)
4(3226 7447 7448 3227)
4(3027 3228 7449 7248)
4(3227 7448 7449 3228)
4(3028 3229 7450 7249)
4(3228 7449 7450 3229)
4(3029 3230 7451 7250)
4(3229 7450 7451 3230)
4(3030 3231 7452 7251)
4(3230 7451 7452 3231)
4(3031 3232 7453 7252)
4(3231 7452 7453 3232)
4(3032 3233 7454 7253)
4(3232 7453 7454 3233)
4(3033 3234 7455 7254)
4(3233 7454 7455 3234)
4(3034 3235 7456 7255)
4(3234 7455 7456 3235)
4(3035 3236 7457 7256)
4(3235 7456 7457 3236)
4(3036 3237 7458 7257)
4(3236 7457 7458 3237)
4(3037 3238 7459 7258)
4(3237 7458 7459 3238)
4(3038 3239 7460 7259)
4(3238 7459 7460 3239)
4(3039 3240 7461 7260)
4(3239 7460 7461 3240)
4(3040 3241 7462 7261)
4(3240 7461 7462 3241)
4(3041 3242 7463 7262)
4(3241 7462 7463 3242)
4(3042 3243 7464 7263)
4(3242 7463 7464 3243)
4(3043 3244 7465 7264)
4(3243 7464 7465 3244)
4(3044 3245 7466 7265)
4(3244 7465 7466 3245)
4(3045 3246 7467 7266)
4(3245 7466 7467 3246)
4(3046 3247 7468 7267)
4(3246 7467 7468 3247)
4(3047 3248 7469 7268)
4(3247 7468 7469 3248)
4(3048 3249 7470 7269)
4(3248 7469 7470 3249)
4(3049 3250 7471 7270)
4(3249 7470 7471 3250)
4(3050 3251 7472 7271)
4(3250 7471 7472 3251)
4(3051 3252 7473 7272)
4(3251 7472 7473 3252)
4(3052 3253 7474 7273)
4(3252 7473 7474 3253)
4(3053 3254 7475 7274)
4(3253 7474 7475 3254)
4(3054 3255 7476 7275)
4(3254 7475 7476 3255)
4(3055 3256 7477 7276)
4(3255 7476 7477 3256)
4(3056 3257 7478 7277)
4(3256 7477 7478 3257)
4(3057 3258 7479 7278)
4(3257 7478 7479 3258)
4(3058 3259 7480 7279)
4(3258 7479 7480 3259)
4(3059 3260 7481 7280)
4(3259 7480 7481 3260)
4(3060 3261 7482 7281)
4(3260 7481 7482 3261)
4(3061 3262 7483 7282)
4(3261 7482 7483 3262)
4(3062 3263 7484 7283)
4(3262 7483 7484 3263)
4(3063 3264 7485 7284)
4(3263 7484 7485 3264)
4(3064 3265 7486 7285)
4(3264 7485 7486 3265)
4(3065 3266 7487 7286)
4(3265 7486 7487 3266)
4(3066 3267 7488 7287)
4(3266 7487 7488 3267)
4(3067 3268 7489 7288)
4(3267 7488 7489 3268)
4(3068 3269 7490 7289)
4(3268 7489 7490 3269)
4(3069 3270 7491 7290)
4(3269 7490 7491 3270)
4(3070 3271 7492 7291)
4(3270 7491 7492 3271)
4(3071 3272 7493 7292)
4(3271 7492 7493 3272)
4(3072 3273 7494 7293)
4(3272 7493 7494 3273)
4(3073 3274 7495 7294)
4(3273 7494 7495 3274)
4(3074 3275 7496 7295)
4(3274 7495 7496 3275)
4(3075 3276 7497 7296)
4(3275 7496 7497 3276)
4(3076 3277 7498 7297)
4(3276 7497 7498 3277)
4(3077 3278 7499 7298)
4(3277 7498 7499 3278)
4(3078 3279 7500 7299)
4(3278 7499 7500 3279)
4(3079 3280 7501 7300)
4(3279 7500 7501 3280)
4(3080 3281 7502 7301)
4(3280 7501 7502 3281)
4(3081 3282 7503 7302)
4(3281 7502 7503 3282)
4(3082 3283 7504 7303)
4(3282 7503 7504 3283)
4(3083 3284 7505 7304)
4(3283 7504 7505 3284)
4(3084 3285 7506 7305)
4(3284 7505 7506 3285)
4(3085 3286 7507 7306)
4(3285 7506 7507 3286)
4(3086 3287 7508 7307)
4(3286 7507 7508 3287)
4(3087 3288 7509 7308)
4(3287 7508 7509 3288)
4(3088 3289 7510 7309)
4(3288 7509 7510 3289)
4(3089 3290 7511 7310)
4(3289 7510 7511 3290)
4(3090 3291 7512 7311)
4(3290 7511 7512 3291)
4(3091 3292 7513 7312)
4(3291 7512 7513 3292)
4(3092 3293 7514 7313)
4(3292 7513 7514 3293)
4(3093 3294 7515 7314)
4(3293 7514 7515 3294)
4(3094 3295 7516 7315)
4(3294 7515 7516 3295)
4(3095 3296 7517 7316)
4(3295 7516 7517 3296)
4(3096 3297 7518 7317)
4(3296 7517 7518 3297)
4(3097 3298 7519 7318)
4(3297 7518 7519 3298)
4(3098 3299 7520 7319)
4(3298 7519 7520 3299)
4(3099 3300 7521 7320)
4(3299 7520 7521 3300)
4(3100 3301 7522 7321)
4(3300 7521 7522 3301)
4(3101 3302 7523 7322)
4(3301 7522 7523 3302)
4(3102 3303 7524 7323)
4(3302 7523 7524 3303)
4(3103 3304 7525 7324)
4(3303 7524 7525 3304)
4(3104 3305 7526 7325)
4(3304 7525 7526 3305)
4(3105 3306 7527 7326)
4(3305 7526 7527 3306)
4(3106 3307 7528 7327)
4(3306 7527 7528 3307)
4(3107 3308 7529 7328)
4(3307 7528 7529 3308)
4(3108 3309 7530 7329)
4(3308 7529 7530 3309)
4(3109 3310 7531 7330)
4(3309 7530 7531 3310)
4(3110 3311 7532 7331)
4(3310 7531 7532 3311)
4(3111 3312 7533 7332)
4(3311 7532 7533 3312)
4(3112 3313 7534 7333)
4(3312 7533 7534 3313)
4(3113 3314 7535 7334)
4(3313 7534 7535 3314)
4(3114 3315 7536 7335)
4(3314 7535 7536 3315)
4(3115 3316 7537 7336)
4(3315 7536 7537 3316)
4(3116 3317 7538 7337)
4(3316 7537 7538 3317)
4(3117 3318 7539 7338)
4(3317 7538 7539 3318)
4(3118 3319 7540 7339)
4(3318 7539 7540 3319)
4(3119 3320 7541 7340)
4(3319 7540 7541 3320)
4(3120 3321 7542 7341)
4(3320 7541 7542 3321)
4(3121 3322 7543 7342)
4(3321 7542 7543 3322)
4(3122 3323 7544 7343)
4(3322 7543 7544 3323)
4(3123 3324 7545 7344)
4(3323 7544 7545 3324)
4(3124 3325 7546 7345)
4(3324 7545 7546 3325)
4(3125 3326 7547 7346)
4(3325 7546 7547 3326)
4(3126 3327 7548 7347)
4(3326 7547 7548 3327)
4(3127 3328 7549 7348)
4(3327 7548 7549 3328)
4(3128 3329 7550 7349)
4(3328 7549 7550 3329)
4(3129 3330 7551 7350)
4(3329 7550 7551 3330)
4(3130 3331 7552 7351)
4(3330 7551 7552 3331)
4(3131 3332 7553 7352)
4(3331 7552 7553 3332)
4(3132 3333 7554 7353)
4(3332 7553 7554 3333)
4(3133 3334 7555 7354)
4(3333 7554 7555 3334)
4(3134 3335 7556 7355)
4(3334 7555 7556 3335)
4(3135 3336 7557 7356)
4(3335 7556 7557 3336)
4(3136 3337 7558 7357)
4(3336 7557 7558 3337)
4(3137 3338 7559 7358)
4(3337 7558 7559 3338)
4(3138 3339 7560 7359)
4(3338 7559 7560 3339)
4(3139 3340 7561 7360)
4(3339 7560 7561 3340)
4(3140 3341 7562 7361)
4(3340 7561 7562 3341)
4(3141 3342 7563 7362)
4(3341 7562 7563 3342)
4(3142 3343 7564 7363)
4(3342 7563 7564 3343)
4(3143 3344 7565 7364)
4(3343 7564 7565 3344)
4(3144 3345 7566 7365)
4(3344 7565 7566 3345)
4(3145 3346 7567 7366)
4(3345 7566 7567 3346)
4(3146 3347 7568 7367)
4(3346 7567 7568 3347)
4(3147 3348 7569 7368)
4(3347 7568 7569 3348)
4(3148 3349 7570 7369)
4(3348 7569 7570 3349)
4(3149 3350 7571 7370)
4(3349 7570 7571 3350)
4(3150 3351 7572 7371)
4(3350 7571 7572 3351)
4(3151 3352 7573 7372)
4(3351 7572 7573 3352)
4(3152 3353 7574 7373)
4(3352 7573 7574 3353)
4(3153 3354 7575 7374)
4(3353 7574 7575 3354)
4(3154 3355 7576 7375)
4(3354 7575 7576 3355)
4(3155 3356 7577 7376)
4(3355 7576 7577 3356)
4(3156 3357 7578 7377)
4(3356 7577 7578 3357)
4(3157 3358 7579 7378)
4(3357 7578 7579 3358)
4(3158 3359 7580 7379)
4(3358 7579 7580 3359)
4(3159 3360 7581 7380)
4(3359 7580 7581 3360)
4(3160 3361 7582 7381)
4(3360 7581 7582 3361)
4(3161 3362 7583 7382)
4(3361 7582 7583 3362)
4(3162 3363 7584 7383)
4(3362 7583 7584 3363)
4(3163 3364 7585 7384)
4(3363 7584 7585 3364)
4(3164 3365 7586 7385)
4(3364 7585 7586 3365)
4(3165 3366 7587 7386)
4(3365 7586 7587 3366)
4(3166 3367 7588 7387)
4(3366 7587 7588 3367)
4(3167 3368 7589 7388)
4(3367 7588 7589 3368)
4(3168 3369 7590 7389)
4(3368 7589 7590 3369)
4(3169 3370 7591 7390)
4(3369 7590 7591 3370)
4(3170 3371 7592 7391)
4(3370 7591 7592 3371)
4(3171 3372 7593 7392)
4(3371 7592 7593 3372)
4(3172 3373 7594 7393)
4(3372 7593 7594 3373)
4(3173 3374 7595 7394)
4(3373 7594 7595 3374)
4(3174 3375 7596 7395)
4(3374 7595 7596 3375)
4(3175 3376 7597 7396)
4(3375 7596 7597 3376)
4(3176 3377 7598 7397)
4(3376 7597 7598 3377)
4(3177 3378 7599 7398)
4(3377 7598 7599 3378)
4(3178 3379 7600 7399)
4(3378 7599 7600 3379)
4(3179 3380 7601 7400)
4(3379 7600 7601 3380)
4(3180 3381 7602 7401)
4(3380 7601 7602 3381)
4(3181 3382 7603 7402)
4(3381 7602 7603 3382)
4(3182 3383 7604 7403)
4(3382 7603 7604 3383)
4(3183 3384 7605 7404)
4(3383 7604 7605 3384)
4(3184 3385 7606 7405)
4(3384 7605 7606 3385)
4(3185 3386 7607 7406)
4(3385 7606 7607 3386)
4(3186 3387 7608 7407)
4(3386 7607 7608 3387)
4(3187 3388 7609 7408)
4(3387 7608 7609 3388)
4(3188 3389 7610 7409)
4(3388 7609 7610 3389)
4(3189 3390 7611 7410)
4(3389 7610 7611 3390)
4(3190 3391 7612 7411)
4(3390 7611 7612 3391)
4(3191 3392 7613 7412)
4(3391 7612 7613 3392)
4(3192 3393 7614 7413)
4(3392 7613 7614 3393)
4(3193 3394 7615 7414)
4(3393 7614 7615 3394)
4(3194 3395 7616 7415)
4(3394 7615 7616 3395)
4(3195 3396 7617 7416)
4(3395 7616 7617 3396)
4(3196 3397 7618 7417)
4(3396 7617 7618 3397)
4(3197 3398 7619 7418)
4(3397 7618 7619 3398)
4(3198 3399 7620 7419)
4(3398 7619 7620 3399)
4(3199 3400 7621 7420)
4(3399 7620 7621 3400)
4(3200 3401 7622 7421)
4(3400 7621 7622 3401)
4(3201 3402 7623 7422)
4(3401 7622 7623 3402)
4(3202 3403 7624 7423)
4(3402 7623 7624 3403)
4(3203 3404 7625 7424)
4(3403 7624 7625 3404)
4(3204 3405 7626 7425)
4(3404 7625 7626 3405)
4(3205 3406 7627 7426)
4(3405 7626 7627 3406)
4(3206 3407 7628 7427)
4(3406 7627 7628 3407)
4(3207 3408 7629 7428)
4(3407 7628 7629 3408)
4(3208 3409 7630 7429)
4(3408 7629 7630 3409)
4(3209 3410 7631 7430)
4(3409 7630 7631 3410)
4(3210 3411 7632 7431)
4(3410 7631 7632 3411)
4(3211 3412 7633 7432)
4(3411 7632 7633 3412)
4(3212 3413 7634 7433)
4(3412 7633 7634 3413)
4(3213 3414 7635 7434)
4(3413 7634 7635 3414)
4(3214 3415 7636 7435)
4(3414 7635 7636 3415)
4(3415 7636 7637 3416)
4(3217 3418 7639 7438)
4(3417 7638 7639 3418)
4(3218 3419 7640 7439)
4(3418 7639 7640 3419)
4(3219 3420 7641 7440)
4(3419 7640 7641 3420)
4(3220 3421 7642 7441)
4(3420 7641 7642 3421)
4(3221 3422 7643 7442)
4(3421 7642 7643 3422)
4(3222 3423 7644 7443)
4(3422 7643 7644 3423)
4(3223 3424 7645 7444)
4(3423 7644 7645 3424)
4(3224 3425 7646 7445)
4(3424 7645 7646 3425)
4(3225 3426 7647 7446)
4(3425 7646 7647 3426)
4(3226 3427 7648 7447)
4(3426 7647 7648 3427)
4(3227 3428 7649 7448)
4(3427 7648 7649 3428)
4(3228 3429 7650 7449)
4(3428 7649 7650 3429)
4(3229 3430 7651 7450)
4(3429 7650 7651 3430)
4(3230 3431 7652 7451)
4(3430 7651 7652 3431)
4(3231 3432 7653 7452)
4(3431 7652 7653 3432)
4(3232 3433 7654 7453)
4(3432 7653 7654 3433)
4(3233 3434 7655 7454)
4(3433 7654 7655 3434)
4(3234 3435 7656 7455)
4(3434 7655 7656 3435)
4(3235 3436 7657 7456)
4(3435 7656 7657 3436)
4(3236 3437 7658 7457)
4(3436 7657 7658 3437)
4(3237 3438 7659 7458)
4(3437 7658 7659 3438)
4(3238 3439 7660 7459)
4(3438 7659 7660 3439)
4(3239 3440 7661 7460)
4(3439 7660 7661 3440)
4(3240 3441 7662 7461)
4(3440 7661 7662 3441)
4(3241 3442 7663 7462)
4(3441 7662 7663 3442)
4(3242 3443 7664 7463)
4(3442 7663 7664 3443)
4(3243 3444 7665 7464)
4(3443 7664 7665 3444)
4(3244 3445 7666 7465)
4(3444 7665 7666 3445)
4(3245 3446 7667 7466)
4(3445 7666 7667 3446)
4(3246 3447 7668 7467)
4(3446 7667 7668 3447)
4(3247 3448 7669 7468)
4(3447 7668 7669 3448)
4(3248 3449 7670 7469)
4(3448 7669 7670 3449)
4(3249 3450 7671 7470)
4(3449 7670 7671 3450)
4(3250 3451 7672 7471)
4(3450 7671 7672 3451)
4(3251 3452 7673 7472)
4(3451 7672 7673 3452)
4(3252 3453 7674 7473)
4(3452 7673 7674 3453)
4(3253 3454 7675 7474)
4(3453 7674 7675 3454)
4(3254 3455 7676 7475)
4(3454 7675 7676 3455)
4(3255 3456 7677 7476)
4(3455 7676 7677 3456)
4(3256 3457 7678 7477)
4(3456 7677 7678 3457)
4(3257 3458 7679 7478)
4(3457 7678 7679 3458)
4(3258 3459 7680 7479)
4(3458 7679 7680 3459)
4(3259 3460 7681 7480)
4(3459 7680 7681 3460)
4(3260 3461 7682 7481)
4(3460 7681 7682 3461)
4(3261 3462 7683 7482)
4(3461 7682 7683 3462)
4(3262 3463 7684 7483)
4(3462 7683 7684 3463)
4(3263 3464 7685 7484)
4(3463 7684 7685 3464)
4(3264 3465 7686 7485)
4(3464 7685 7686 3465)
4(3265 3466 7687 7486)
4(3465 7686 7687 3466)
4(3266 3467 7688 7487)
4(3466 7687 7688 3467)
4(3267 3468 7689 7488)
4(3467 7688 7689 3468)
4(3268 3469 7690 7489)
4(3468 7689 7690 3469)
4(3269 3470 7691 7490)
4(3469 7690 7691 3470)
4(3270 3471 7692 7491)
4(3470 7691 7692 3471)
4(3271 3472 7693 7492)
4(3471 7692 7693 3472)
4(3272 3473 7694 7493)
4(3472 7693 7694 3473)
4(3273 3474 7695 7494)
4(3473 7694 7695 3474)
4(3274 3475 7696 7495)
4(3474 7695 7696 3475)
4(3275 3476 7697 7496)
4(3475 7696 7697 3476)
4(3276 3477 7698 7497)
4(3476 7697 7698 3477)
4(3277 3478 7699 7498)
4(3477 7698 7699 3478)
4(3278 3479 7700 7499)
4(3478 7699 7700 3479)
4(3279 3480 7701 7500)
4(3479 7700 7701 3480)
4(3280 3481 7702 7501)
4(3480 7701 7702 3481)
4(3281 3482 7703 7502)
4(3481 7702 7703 3482)
4(3282 3483 7704 7503)
4(3482 7703 7704 3483)
4(3283 3484 7705 7504)
4(3483 7704 7705 3484)
4(3284 3485 7706 7505)
4(3484 7705 7706 3485)
4(3285 3486 7707 7506)
4(3485 7706 7707 3486)
4(3286 3487 7708 7507)
4(3486 7707 7708 3487)
4(3287 3488 7709 7508)
4(3487 7708 7709 3488)
4(3288 3489 7710 7509)
4(3488 7709 7710 3489)
4(3289 3490 7711 7510)
4(3489 7710 7711 3490)
4(3290 3491 7712 7511)
4(3490 7711 7712 3491)
4(3291 3492 7713 7512)
4(3491 7712 7713 3492)
4(3292 3493 7714 7513)
4(3492 7713 7714 3493)
4(3293 3494 7715 7514)
4(3493 7714 7715 3494)
4(3294 3495 7716 7515)
4(3494 7715 7716 3495)
4(3295 3496 7717 7516)
4(3495 7716 7717 3496)
4(3296 3497 7718 7517)
4(3496 7717 7718 3497)
4(3297 3498 7719 7518)
4(3497 7718 7719 3498)
4(3298 3499 7720 7519)
4(3498 7719 7720 3499)
4(3299 3500 7721 7520)
4(3499 7720 7721 3500)
4(3300 3501 7722 7521)
4(3500 7721 7722 3501)
4(3301 3502 7723 7522)
4(3501 7722 7723 3502)
4(3302 3503 7724 7523)
4(3502 7723 7724 3503)
4(3303 3504 7725 7524)
4(3503 7724 7725 3504)
4(3304 3505 7726 7525)
4(3504 7725 7726 3505)
4(3305 3506 7727 7526)
4(3505 7726 7727 3506)
4(3306 3507 7728 7527)
4(3506 7727 7728 3507)
4(3307 3508 7729 7528)
4(3507 7728 7729 3508)
4(3308 3509 7730 7529)
4(3508 7729 7730 3509)
4(3309 3510 7731 7530)
4(3509 7730 7731 3510)
4(3310 3511 7732 7531)
4(3510 7731 7732 3511)
4(3311 3512 7733 7532)
4(3511 7732 7733 3512)
4(3312 3513 7734 7533)
4(3512 7733 7734 3513)
4(3313 3514 7735 7534)
4(3513 7734 7735 3514)
4(3314 3515 7736 7535)
4(3514 7735 7736 3515)
4(3315 3516 7737 7536)
4(3515 7736 7737 3516)
4(3316 3517 7738 7537)
4(3516 7737 7738 3517)
4(3317 3518 7739 7538)
4(3517 7738 7739 3518)
4(3318 3519 7740 7539)
4(3518 7739 7740 3519)
4(3319 3520 7741 7540)
4(3519 7740 7741 3520)
4(3320 3521 7742 7541)
4(3520 7741 7742 3521)
4(3321 3522 7743 7542)
4(3521 7742 7743 3522)
4(3322 3523 7744 7543)
4(3522 7743 7744 3523)
4(3323 3524 7745 7544)
4(3523 7744 7745 3524)
4(3324 3525 7746 7545)
4(3524 7745 7746 3525)
4(3325 3526 7747 7546)
4(3525 7746 7747 3526)
4(3326 3527 7748 7547)
4(3526 7747 7748 3527)
4(3327 3528 7749 7548)
4(3527 7748 7749 3528)
4(3328 3529 7750 7549)
4(3528 7749 7750 3529)
4(3329 3530 7751 7550)
4(3529 7750 7751 3530)
4(3330 3531 7752 7551)
4(3530 7751 7752 3531)
4(3331 3532 7753 7552)
4(3531 7752 7753 3532)
4(3332 3533 7754 7553)
4(3532 7753 7754 3533)
4(3333 3534 7755 7554)
4(3533 7754 7755 3534)
4(3334 3535 7756 7555)
4(3534 7755 7756 3535)
4(3335 3536 7757 7556)
4(3535 7756 7757 3536)
4(3336 3537 7758 7557)
4(3536 7757 7758 3537)
4(3337 3538 7759 7558)
4(3537 7758 7759 3538)
4(3338 3539 7760 7559)
4(3538 7759 7760 3539)
4(3339 3540 7761 7560)
4(3539 7760 7761 3540)
4(3340 3541 7762 7561)
4(3540 7761 7762 3541)
4(3341 3542 7763 7562)
4(3541 7762 7763 3542)
4(3342 3543 7764 7563)
4(3542 7763 7764 3543)
4(3343 3544 7765 7564)
4(3543 7764 7765 3544)
4(3344 3545 7766 7565)
4(3544 7765 7766 3545)
4(3345 3546 7767 7566)
4(3545 7766 7767 3546)
4(3346 3547 7768 7567)
4(3546 7767 7768 3547)
4(3347 3548 7769 7568)
4(3547 7768 7769 3548)
4(3348 3549 7770 7569)
4(3548 7769 7770 3549)
4(3349 3550 7771 7570)
4(3549 7770 7771 3550)
4(3350 3551 7772 7571)
4(3550 7771 7772 3551)
4(3351 3552 7773 7572)
4(3551 7772 7773 3552)
4(3352 3553 7774 7573)
4(3552 7773 7774 3553)
4(3353 3554 7775 7574)
4(3553 7774 7775 3554)
4(3354 3555 7776 7575)
4(3554 7775 7776 3555)
4(3355 3556 7777 7576)
4(3555 7776 7777 3556)
4(3356 3557 7778 7577)
4(3556 7777 7778 3557)
4(3357 3558 7779 7578)
4(3557 7778 7779 3558)
4(3358 3559 7780 7579)
4(3558 7779 7780 3559)
4(3359 3560 7781 7580)
4(3559 7780 7781 3560)
4(3360 3561 7782 7581)
4(3560 7781 7782 3561)
4(3361 3562 7783 7582)
4(3561 7782 7783 3562)
4(3362 3563 7784 7583)
4(3562 7783 7784 3563)
4(3363 3564 7785 7584)
4(3563 7784 7785 3564)
4(3364 3565 7786 7585)
4(3564 7785 7786 3565)
4(3365 3566 7787 7586)
4(3565 7786 7787 3566)
4(3366 3567 7788 7587)
4(3566 7787 7788 3567)
4(3367 3568 7789 7588)
4(3567 7788 7789 3568)
4(3368 3569 7790 7589)
4(3568 7789 7790 3569)
4(3369 3570 7791 7590)
4(3569 7790 7791 3570)
4(3370 3571 7792 7591)
4(3570 7791 7792 3571)
4(3371 3572 7793 7592)
4(3571 7792 7793 3572)
4(3372 3573 7794 7593)
4(3572 7793 7794 3573)
4(3373 3574 7795 7594)
4(3573 7794 7795 3574)
4(3374 3575 7796 7595)
4(3574 7795 7796 3575)
4(3375 3576 7797 7596)
4(3575 7796 7797 3576)
4(3376 3577 7798 7597)
4(3576 7797 7798 3577)
4(3377 3578 7799 7598)
4(3577 7798 7799 3578)
4(3378 3579 7800 7599)
4(3578 7799 7800 3579)
4(3379 3580 7801 7600)
4(3579 7800 7801 3580)
4(3380 3581 7802 7601)
4(3580 7801 7802 3581)
4(3381 3582 7803 7602)
4(3581 7802 7803 3582)
4(3382 3583 7804 7603)
4(3582 7803 7804 3583)
4(3383 3584 7805 7604)
4(3583 7804 7805 3584)
4(3384 3585 7806 7605)
4(3584 7805 7806 3585)
4(3385 3586 7807 7606)
4(3585 7806 7807 3586)
4(3386 3587 7808 7607)
4(3586 7807 7808 3587)
4(3387 3588 7809 7608)
4(3587 7808 7809 3588)
4(3388 3589 7810 7609)
4(3588 7809 7810 3589)
4(3389 3590 7811 7610)
4(3589 7810 7811 3590)
4(3390 3591 7812 7611)
4(3590 7811 7812 3591)
4(3391 3592 7813 7612)
4(3591 7812 7813 3592)
4(3392 3593 7814 7613)
4(3592 7813 7814 3593)
4(3393 3594 7815 7614)
4(3593 7814 7815 3594)
4(3394 3595 7816 7615)
4(3594 7815 7816 3595)
4(3395 3596 7817 7616)
4(3595 7816 7817 3596)
4(3396 3597 7818 7617)
4(3596 7817 7818 3597)
4(3397 3598 7819 7618)
4(3597 7818 7819 3598)
4(3398 3599 7820 7619)
4(3598 7819 7820 3599)
4(3399 3600 7821 7620)
4(3599 7820 7821 3600)
4(3400 3601 7822 7621)
4(3600 7821 7822 3601)
4(3401 3602 7823 7622)
4(3601 7822 7823 3602)
4(3402 3603 7824 7623)
4(3602 7823 7824 3603)
4(3403 3604 7825 7624)
4(3603 7824 7825 3604)
4(3404 3605 7826 7625)
4(3604 7825 7826 3605)
4(3405 3606 7827 7626)
4(3605 7826 7827 3606)
4(3406 3607 7828 7627)
4(3606 7827 7828 3607)
4(3407 3608 7829 7628)
4(3607 7828 7829 3608)
4(3408 3609 7830 7629)
4(3608 7829 7830 3609)
4(3409 3610 7831 7630)
4(3609 7830 7831 3610)
4(3410 3611 7832 7631)
4(3610 7831 7832 3611)
4(3411 3612 7833 7632)
4(3611 7832 7833 3612)
4(3412 3613 7834 7633)
4(3612 7833 7834 3613)
4(3413 3614 7835 7634)
4(3613 7834 7835 3614)
4(3414 3615 7836 7635)
4(3614 7835 7836 3615)
4(3415 3616 7837 7636)
4(3615 7836 7837 3616)
4(3616 7837 7838 3617)
4(3418 3619 7840 7639)
4(3618 7839 7840 3619)
4(3419 3620 7841 7640)
4(3619 7840 7841 3620)
4(3420 3621 7842 7641)
4(3620 7841 7842 3621)
4(3421 3622 7843 7642)
4(3621 7842 7843 3622)
4(3422 3623 7844 7643)
4(3622 7843 7844 3623)
4(3423 3624 7845 7644)
4(3623 7844 7845 3624)
4(3424 3625 7846 7645)
4(3624 7845 7846 3625)
4(3425 3626 7847 7646)
4(3625 7846 7847 3626)
4(3426 3627 7848 7647)
4(3626 7847 7848 3627)
4(3427 3628 7849 7648)
4(3627 7848 7849 3628)
4(3428 3629 7850 7649)
4(3628 7849 7850 3629)
4(3429 3630 7851 7650)
4(3629 7850 7851 3630)
4(3430 3631 7852 7651)
4(3630 7851 7852 3631)
4(3431 3632 7853 7652)
4(3631 7852 7853 3632)
4(3432 3633 7854 7653)
4(3632 7853 7854 3633)
4(3433 3634 7855 7654)
4(3633 7854 7855 3634)
4(3434 3635 7856 7655)
4(3634 7855 7856 3635)
4(3435 3636 7857 7656)
4(3635 7856 7857 3636)
4(3436 3637 7858 7657)
4(3636 7857 7858 3637)
4(3437 3638 7859 7658)
4(3637 7858 7859 3638)
4(3438 3639 7860 7659)
4(3638 7859 7860 3639)
4(3439 3640 7861 7660)
4(3639 7860 7861 3640)
4(3440 3641 7862 7661)
4(3640 7861 7862 3641)
4(3441 3642 7863 7662)
4(3641 7862 7863 3642)
4(3442 3643 7864 7663)
4(3642 7863 7864 3643)
4(3443 3644 7865 7664)
4(3643 7864 7865 3644)
4(3444 3645 7866 7665)
4(3644 7865 7866 3645)
4(3445 3646 7867 7666)
4(3645 7866 7867 3646)
4(3446 3647 7868 7667)
4(3646 7867 7868 3647)
4(3447 3648 7869 7668)
4(3647 7868 7869 3648)
4(3448 3649 7870 7669)
4(3648 7869 7870 3649)
4(3449 3650 7871 7670)
4(3649 7870 7871 3650)
4(3450 3651 7872 7671)
4(3650 7871 7872 3651)
4(3451 3652 7873 7672)
4(3651 7872 7873 3652)
4(3452 3653 7874 7673)
4(3652 7873 7874 3653)
4(3453 3654 7875 7674)
4(3653 7874 7875 3654)
4(3454 3655 7876 7675)
4(3654 7875 7876 3655)
4(3455 3656 7877 7676)
4(3655 7876 7877 3656)
4(3456 3657 7878 7677)
4(3656 7877 7878 3657)
4(3457 3658 7879 7678)
4(3657 7878 7879 3658)
4(3458 3659 7880 7679)
4(3658 7879 7880 3659)
4(3459 3660 7881 7680)
4(3659 7880 7881 3660)
4(3460 3661 7882 7681)
4(3660 7881 7882 3661)
4(3461 3662 7883 7682)
4(3661 7882 7883 3662)
4(3462 3663 7884 7683)
4(3662 7883 7884 3663)
4(3463 3664 7885 7684)
4(3663 7884 7885 3664)
4(3464 3665 7886 7685)
4(3664 7885 7886 3665)
4(3465 3666 7887 7686)
4(3665 7886 7887 3666)
4(3466 3667 7888 7687)
4(3666 7887 7888 3667)
4(3467 3668 7889 7688)
4(3667 7888 7889 3668)
4(3468 3669 7890 7689)
4(3668 7889 7890 3669)
4(3469 3670 7891 7690)
4(3669 7890 7891 3670)
4(3470 3671 7892 7691)
4(3670 7891 7892 3671)
4(3471 3672 7893 7692)
4(3671 7892 7893 3672)
4(3472 3673 7894 7693)
4(3672 7893 7894 3673)
4(3473 3674 7895 7694)
4(3673 7894 7895 3674)
4(3474 3675 7896 7695)
4(3674 7895 7896 3675)
4(3475 3676 7897 7696)
4(3675 7896 7897 3676)
4(3476 3677 7898 7697)
4(3676 7897 7898 3677)
4(3477 3678 7899 7698)
4(3677 7898 7899 3678)
4(3478 3679 7900 7699)
4(3678 7899 7900 3679)
4(3479 3680 7901 7700)
4(3679 7900 7901 3680)
4(3480 3681 7902 7701)
4(3680 7901 7902 3681)
4(3481 3682 7903 7702)
4(3681 7902 7903 3682)
4(3482 3683 7904 7703)
4(3682 7903 7904 3683)
4(3483 3684 7905 7704)
4(3683 7904 7905 3684)
4(3484 3685 7906 7705)
4(3684 7905 7906 3685)
4(3485 3686 7907 7706)
4(3685 7906 7907 3686)
4(3486 3687 7908 7707)
4(3686 7907 7908 3687)
4(3487 3688 7909 7708)
4(3687 7908 7909 3688)
4(3488 3689 7910 7709)
4(3688 7909 7910 3689)
4(3489 3690 7911 7710)
4(3689 7910 7911 3690)
4(3490 3691 7912 7711)
4(3690 7911 7912 3691)
4(3491 3692 7913 7712)
4(3691 7912 7913 3692)
4(3492 3693 7914 7713)
4(3692 7913 7914 3693)
4(3493 3694 7915 7714)
4(3693 7914 7915 3694)
4(3494 3695 7916 7715)
4(3694 7915 7916 3695)
4(3495 3696 7917 7716)
4(3695 7916 7917 3696)
4(3496 3697 7918 7717)
4(3696 7917 7918 3697)
4(3497 3698 7919 7718)
4(3697 7918 7919 3698)
4(3498 3699 7920 7719)
4(3698 7919 7920 3699)
4(3499 3700 7921 7720)
4(3699 7920 7921 3700)
4(3500 3701 7922 7721)
4(3700 7921 7922 3701)
4(3501 3702 7923 7722)
4(3701 7922 7923 3702)
4(3502 3703 7924 7723)
4(3702 7923 7924 3703)
4(3503 3704 7925 7724)
4(3703 7924 7925 3704)
4(3504 3705 7926 7725)
4(3704 7925 7926 3705)
4(3505 3706 7927 7726)
4(3705 7926 7927 3706)
4(3506 3707 7928 7727)
4(3706 7927 7928 3707)
4(3507 3708 7929 7728)
4(3707 7928 7929 3708)
4(3508 3709 7930 7729)
4(3708 7929 7930 3709)
4(3509 3710 7931 7730)
4(3709 7930 7931 3710)
4(3510 3711 7932 7731)
4(3710 7931 7932 3711)
4(3511 3712 7933 7732)
4(3711 7932 7933 3712)
4(3512 3713 7934 7733)
4(3712 7933 7934 3713)
4(3513 3714 7935 7734)
4(3713 7934 7935 3714)
4(3514 3715 7936 7735)
4(3714 7935 7936 3715)
4(3515 3716 7937 7736)
4(3715 7936 7937 3716)
4(3516 3717 7938 7737)
4(3716 7937 7938 3717)
4(3517 3718 7939 7738)
4(3717 7938 7939 3718)
4(3518 3719 7940 7739)
4(3718 7939 7940 3719)
4(3519 3720 7941 7740)
4(3719 7940 7941 3720)
4(3520 3721 7942 7741)
4(3720 7941 7942 3721)
4(3521 3722 7943 7742)
4(3721 7942 7943 3722)
4(3522 3723 7944 7743)
4(3722 7943 7944 3723)
4(3523 3724 7945 7744)
4(3723 7944 7945 3724)
4(3524 3725 7946 7745)
4(3724 7945 7946 3725)
4(3525 3726 7947 7746)
4(3725 7946 7947 3726)
4(3526 3727 7948 7747)
4(3726 7947 7948 3727)
4(3527 3728 7949 7748)
4(3727 7948 7949 3728)
4(3528 3729 7950 7749)
4(3728 7949 7950 3729)
4(3529 3730 7951 7750)
4(3729 7950 7951 3730)
4(3530 3731 7952 7751)
4(3730 7951 7952 3731)
4(3531 3732 7953 7752)
4(3731 7952 7953 3732)
4(3532 3733 7954 7753)
4(3732 7953 7954 3733)
4(3533 3734 7955 7754)
4(3733 7954 7955 3734)
4(3534 3735 7956 7755)
4(3734 7955 7956 3735)
4(3535 3736 7957 7756)
4(3735 7956 7957 3736)
4(3536 3737 7958 7757)
4(3736 7957 7958 3737)
4(3537 3738 7959 7758)
4(3737 7958 7959 3738)
4(3538 3739 7960 7759)
4(3738 7959 7960 3739)
4(3539 3740 7961 7760)
4(3739 7960 7961 3740)
4(3540 3741 7962 7761)
4(3740 7961 7962 3741)
4(3541 3742 7963 7762)
4(3741 7962 7963 3742)
4(3542 3743 7964 7763)
4(3742 7963 7964 3743)
4(3543 3744 7965 7764)
4(3743 7964 7965 3744)
4(3544 3745 7966 7765)
4(3744 7965 7966 3745)
4(3545 3746 7967 7766)
4(3745 7966 7967 3746)
4(3546 3747 7968 7767)
4(3746 7967 7968 3747)
4(3547 3748 7969 7768)
4(3747 7968 7969 3748)
4(3548 3749 7970 7769)
4(3748 7969 7970 3749)
4(3549 3750 7971 7770)
4(3749 7970 7971 3750)
4(3550 3751 7972 7771)
4(3750 7971 7972 3751)
4(3551 3752 7973 7772)
4(3751 7972 7973 3752)
4(3552 3753 7974 7773)
4(3752 7973 7974 3753)
4(3553 3754 7975 7774)
4(3753 7974 7975 3754)
4(3554 3755 7976 7775)
4(3754 7975 7976 3755)
4(3555 3756 7977 7776)
4(3755 7976 7977 3756)
4(3556 3757 7978 7777)
4(3756 7977 7978 3757)
4(3557 3758 7979 7778)
4(3757 7978 7979 3758)
4(3558 3759 7980 7779)
4(3758 7979 7980 3759)
4(3559 3760 7981 7780)
4(3759 7980 7981 3760)
4(3560 3761 7982 7781)
4(3760 7981 7982 3761)
4(3561 3762 7983 7782)
4(3761 7982 7983 3762)
4(3562 3763 7984 7783)
4(3762 7983 7984 3763)
4(3563 3764 7985 7784)
4(3763 7984 7985 3764)
4(3564 3765 7986 7785)
4(3764 7985 7986 3765)
4(3565 3766 7987 7786)
4(3765 7986 7987 3766)
4(3566 3767 7988 7787)
4(3766 7987 7988 3767)
4(3567 3768 7989 7788)
4(3767 7988 7989 3768)
4(3568 3769 7990 7789)
4(3768 7989 7990 3769)
4(3569 3770 7991 7790)
4(3769 7990 7991 3770)
4(3570 3771 7992 7791)
4(3770 7991 7992 3771)
4(3571 3772 7993 7792)
4(3771 7992 7993 3772)
4(3572 3773 7994 7793)
4(3772 7993 7994 3773)
4(3573 3774 7995 7794)
4(3773 7994 7995 3774)
4(3574 3775 7996 7795)
4(3774 7995 7996 3775)
4(3575 3776 7997 7796)
4(3775 7996 7997 3776)
4(3576 3777 7998 7797)
4(3776 7997 7998 3777)
4(3577 3778 7999 7798)
4(3777 7998 7999 3778)
4(3578 3779 8000 7799)
4(3778 7999 8000 3779)
4(3579 3780 8001 7800)
4(3779 8000 8001 3780)
4(3580 3781 8002 7801)
4(3780 8001 8002 3781)
4(3581 3782 8003 7802)
4(3781 8002 8003 3782)
4(3582 3783 8004 7803)
4(3782 8003 8004 3783)
4(3583 3784 8005 7804)
4(3783 8004 8005 3784)
4(3584 3785 8006 7805)
4(3784 8005 8006 3785)
4(3585 3786 8007 7806)
4(3785 8006 8007 3786)
4(3586 3787 8008 7807)
4(3786 8007 8008 3787)
4(3587 3788 8009 7808)
4(3787 8008 8009 3788)
4(3588 3789 8010 7809)
4(3788 8009 8010 3789)
4(3589 3790 8011 7810)
4(3789 8010 8011 3790)
4(3590 3791 8012 7811)
4(3790 8011 8012 3791)
4(3591 3792 8013 7812)
4(3791 8012 8013 3792)
4(3592 3793 8014 7813)
4(3792 8013 8014 3793)
4(3593 3794 8015 7814)
4(3793 8014 8015 3794)
4(3594 3795 8016 7815)
4(3794 8015 8016 3795)
4(3595 3796 8017 7816)
4(3795 8016 8017 3796)
4(3596 3797 8018 7817)
4(3796 8017 8018 3797)
4(3597 3798 8019 7818)
4(3797 8018 8019 3798)
4(3598 3799 8020 7819)
4(3798 8019 8020 3799)
4(3599 3800 8021 7820)
4(3799 8020 8021 3800)
4(3600 3801 8022 7821)
4(3800 8021 8022 3801)
4(3601 3802 8023 7822)
4(3801 8022 8023 3802)
4(3602 3803 8024 7823)
4(3802 8023 8024 3803)
4(3603 3804 8025 7824)
4(3803 8024 8025 3804)
4(3604 3805 8026 7825)
4(3804 8025 8026 3805)
4(3605 3806 8027 7826)
4(3805 8026 8027 3806)
4(3606 3807 8028 7827)
4(3806 8027 8028 3807)
4(3607 3808 8029 7828)
4(3807 8028 8029 3808)
4(3608 3809 8030 7829)
4(3808 8029 8030 3809)
4(3609 3810 8031 7830)
4(3809 8030 8031 3810)
4(3610 3811 8032 7831)
4(3810 8031 8032 3811)
4(3611 3812 8033 7832)
4(3811 8032 8033 3812)
4(3612 3813 8034 7833)
4(3812 8033 8034 3813)
4(3613 3814 8035 7834)
4(3813 8034 8035 3814)
4(3614 3815 8036 7835)
4(3814 8035 8036 3815)
4(3615 3816 8037 7836)
4(3815 8036 8037 3816)
4(3616 3817 8038 7837)
4(3816 8037 8038 3817)
4(3817 8038 8039 3818)
4(3619 3820 8041 7840)
4(3819 8040 8041 3820)
4(3620 3821 8042 7841)
4(3820 8041 8042 3821)
4(3621 3822 8043 7842)
4(3821 8042 8043 3822)
4(3622 3823 8044 7843)
4(3822 8043 8044 3823)
4(3623 3824 8045 7844)
4(3823 8044 8045 3824)
4(3624 3825 8046 7845)
4(3824 8045 8046 3825)
4(3625 3826 8047 7846)
4(3825 8046 8047 3826)
4(3626 3827 8048 7847)
4(3826 8047 8048 3827)
4(3627 3828 8049 7848)
4(3827 8048 8049 3828)
4(3628 3829 8050 7849)
4(3828 8049 8050 3829)
4(3629 3830 8051 7850)
4(3829 8050 8051 3830)
4(3630 3831 8052 7851)
4(3830 8051 8052 3831)
4(3631 3832 8053 7852)
4(3831 8052 8053 3832)
4(3632 3833 8054 7853)
4(3832 8053 8054 3833)
4(3633 3834 8055 7854)
4(3833 8054 8055 3834)
4(3634 3835 8056 7855)
4(3834 8055 8056 3835)
4(3635 3836 8057 7856)
4(3835 8056 8057 3836)
4(3636 3837 8058 7857)
4(3836 8057 8058 3837)
4(3637 3838 8059 7858)
4(3837 8058 8059 3838)
4(3638 3839 8060 7859)
4(3838 8059 8060 3839)
4(3639 3840 8061 7860)
4(3839 8060 8061 3840)
4(3640 3841 8062 7861)
4(3840 8061 8062 3841)
4(3641 3842 8063 7862)
4(3841 8062 8063 3842)
4(3642 3843 8064 7863)
4(3842 8063 8064 3843)
4(3643 3844 8065 7864)
4(3843 8064 8065 3844)
4(3644 3845 8066 7865)
4(3844 8065 8066 3845)
4(3645 3846 8067 7866)
4(3845 8066 8067 3846)
4(3646 3847 8068 7867)
4(3846 8067 8068 3847)
4(3647 3848 8069 7868)
4(3847 8068 8069 3848)
4(3648 3849 8070 7869)
4(3848 8069 8070 3849)
4(3649 3850 8071 7870)
4(3849 8070 8071 3850)
4(3650 3851 8072 7871)
4(3850 8071 8072 3851)
4(3651 3852 8073 7872)
4(3851 8072 8073 3852)
4(3652 3853 8074 7873)
4(3852 8073 8074 3853)
4(3653 3854 8075 7874)
4(3853 8074 8075 3854)
4(3654 3855 8076 7875)
4(3854 8075 8076 3855)
4(3655 3856 8077 7876)
4(3855 8076 8077 3856)
4(3656 3857 8078 7877)
4(3856 8077 8078 3857)
4(3657 3858 8079 7878)
4(3857 8078 8079 3858)
4(3658 3859 8080 7879)
4(3858 8079 8080 3859)
4(3659 3860 8081 7880)
4(3859 8080 8081 3860)
4(3660 3861 8082 7881)
4(3860 8081 8082 3861)
4(3661 3862 8083 7882)
4(3861 8082 8083 3862)
4(3662 3863 8084 7883)
4(3862 8083 8084 3863)
4(3663 3864 8085 7884)
4(3863 8084 8085 3864)
4(3664 3865 8086 7885)
4(3864 8085 8086 3865)
4(3665 3866 8087 7886)
4(3865 8086 8087 3866)
4(3666 3867 8088 7887)
4(3866 8087 8088 3867)
4(3667 3868 8089 7888)
4(3867 8088 8089 3868)
4(3668 3869 8090 7889)
4(3868 8089 8090 3869)
4(3669 3870 8091 7890)
4(3869 8090 8091 3870)
4(3670 3871 8092 7891)
4(3870 8091 8092 3871)
4(3671 3872 8093 7892)
4(3871 8092 8093 3872)
4(3672 3873 8094 7893)
4(3872 8093 8094 3873)
4(3673 3874 8095 7894)
4(3873 8094 8095 3874)
4(3674 3875 8096 7895)
4(3874 8095 8096 3875)
4(3675 3876 8097 7896)
4(3875 8096 8097 3876)
4(3676 3877 8098 7897)
4(3876 8097 8098 3877)
4(3677 3878 8099 7898)
4(3877 8098 8099 3878)
4(3678 3879 8100 7899)
4(3878 8099 8100 3879)
4(3679 3880 8101 7900)
4(3879 8100 8101 3880)
4(3680 3881 8102 7901)
4(3880 8101 8102 3881)
4(3681 3882 8103 7902)
4(3881 8102 8103 3882)
4(3682 3883 8104 7903)
4(3882 8103 8104 3883)
4(3683 3884 8105 7904)
4(3883 8104 8105 3884)
4(3684 3885 8106 7905)
4(3884 8105 8106 3885)
4(3685 3886 8107 7906)
4(3885 8106 8107 3886)
4(3686 3887 8108 7907)
4(3886 8107 8108 3887)
4(3687 3888 8109 7908)
4(3887 8108 8109 3888)
4(3688 3889 8110 7909)
4(3888 8109 8110 3889)
4(3689 3890 8111 7910)
4(3889 8110 8111 3890)
4(3690 3891 8112 7911)
4(3890 8111 8112 3891)
4(3691 3892 8113 7912)
4(3891 8112 8113 3892)
4(3692 3893 8114 7913)
4(3892 8113 8114 3893)
4(3693 3894 8115 7914)
4(3893 8114 8115 3894)
4(3694 3895 8116 7915)
4(3894 8115 8116 3895)
4(3695 3896 8117 7916)
4(3895 8116 8117 3896)
4(3696 3897 8118 7917)
4(3896 8117 8118 3897)
4(3697 3898 8119 7918)
4(3897 8118 8119 3898)
4(3698 3899 8120 7919)
4(3898 8119 8120 3899)
4(3699 3900 8121 7920)
4(3899 8120 8121 3900)
4(3700 3901 8122 7921)
4(3900 8121 8122 3901)
4(3701 3902 8123 7922)
4(3901 8122 8123 3902)
4(3702 3903 8124 7923)
4(3902 8123 8124 3903)
4(3703 3904 8125 7924)
4(3903 8124 8125 3904)
4(3704 3905 8126 7925)
4(3904 8125 8126 3905)
4(3705 3906 8127 7926)
4(3905 8126 8127 3906)
4(3706 3907 8128 7927)
4(3906 8127 8128 3907)
4(3707 3908 8129 7928)
4(3907 8128 8129 3908)
4(3708 3909 8130 7929)
4(3908 8129 8130 3909)
4(3709 3910 8131 7930)
4(3909 8130 8131 3910)
4(3710 3911 8132 7931)
4(3910 8131 8132 3911)
4(3711 3912 8133 7932)
4(3911 8132 8133 3912)
4(3712 3913 8134 7933)
4(3912 8133 8134 3913)
4(3713 3914 8135 7934)
4(3913 8134 8135 3914)
4(3714 3915 8136 7935)
4(3914 8135 8136 3915)
4(3715 3916 8137 7936)
4(3915 8136 8137 3916)
4(3716 3917 8138 7937)
4(3916 8137 8138 3917)
4(3717 3918 8139 7938)
4(3917 8138 8139 3918)
4(3718 3919 8140 7939)
4(3918 8139 8140 3919)
4(3719 3920 8141 7940)
4(3919 8140 8141 3920)
4(3720 3921 8142 7941)
4(3920 8141 8142 3921)
4(3721 3922 8143 7942)
4(3921 8142 8143 3922)
4(3722 3923 8144 7943)
4(3922 8143 8144 3923)
4(3723 3924 8145 7944)
4(3923 8144 8145 3924)
4(3724 3925 8146 7945)
4(3924 8145 8146 3925)
4(3725 3926 8147 7946)
4(3925 8146 8147 3926)
4(3726 3927 8148 7947)
4(3926 8147 8148 3927)
4(3727 3928 8149 7948)
4(3927 8148 8149 3928)
4(3728 3929 8150 7949)
4(3928 8149 8150 3929)
4(3729 3930 8151 7950)
4(3929 8150 8151 3930)
4(3730 3931 8152 7951)
4(3930 8151 8152 3931)
4(3731 3932 8153 7952)
4(3931 8152 8153 3932)
4(3732 3933 8154 7953)
4(3932 8153 8154 3933)
4(3733 3934 8155 7954)
4(3933 8154 8155 3934)
4(3734 3935 8156 7955)
4(3934 8155 8156 3935)
4(3735 3936 8157 7956)
4(3935 8156 8157 3936)
4(3736 3937 8158 7957)
4(3936 8157 8158 3937)
4(3737 3938 8159 7958)
4(3937 8158 8159 3938)
4(3738 3939 8160 7959)
4(3938 8159 8160 3939)
4(3739 3940 8161 7960)
4(3939 8160 8161 3940)
4(3740 3941 8162 7961)
4(3940 8161 8162 3941)
4(3741 3942 8163 7962)
4(3941 8162 8163 3942)
4(3742 3943 8164 7963)
4(3942 8163 8164 3943)
4(3743 3944 8165 7964)
4(3943 8164 8165 3944)
4(3744 3945 8166 7965)
4(3944 8165 8166 3945)
4(3745 3946 8167 7966)
4(3945 8166 8167 3946)
4(3746 3947 8168 7967)
4(3946 8167 8168 3947)
4(3747 3948 8169 7968)
4(3947 8168 8169 3948)
4(3748 3949 8170 7969)
4(3948 8169 8170 3949)
4(3749 3950 8171 7970)
4(3949 8170 8171 3950)
4(3750 3951 8172 7971)
4(3950 8171 8172 3951)
4(3751 3952 8173 7972)
4(3951 8172 8173 3952)
4(3752 3953 8174 7973)
4(3952 8173 8174 3953)
4(3753 3954 8175 7974)
4(3953 8174 8175 3954)
4(3754 3955 8176 7975)
4(3954 8175 8176 3955)
4(3755 3956 8177 7976)
4(3955 8176 8177 3956)
4(3756 3957 8178 7977)
4(3956 8177 8178 3957)
4(3757 3958 8179 7978)
4(3957 8178 8179 3958)
4(3758 3959 8180 7979)
4(3958 8179 8180 3959)
4(3759 3960 8181 7980)
4(3959 8180 8181 3960)
4(3760 3961 8182 7981)
4(3960 8181 8182 3961)
4(3761 3962 8183 7982)
4(3961 8182 8183 3962)
4(3762 3963 8184 7983)
4(3962 8183 8184 3963)
4(3763 3964 8185 7984)
4(3963 8184 8185 3964)
4(3764 3965 8186 7985)
4(3964 8185 8186 3965)
4(3765 3966 8187 7986)
4(3965 8186 8187 3966)
4(3766 3967 8188 7987)
4(3966 8187 8188 3967)
4(3767 3968 8189 7988)
4(3967 8188 8189 3968)
4(3768 3969 8190 7989)
4(3968 8189 8190 3969)
4(3769 3970 8191 7990)
4(3969 8190 8191 3970)
4(3770 3971 8192 7991)
4(3970 8191 8192 3971)
4(3771 3972 8193 7992)
4(3971 8192 8193 3972)
4(3772 3973 8194 7993)
4(3972 8193 8194 3973)
4(3773 3974 8195 7994)
4(3973 8194 8195 3974)
4(3774 3975 8196 7995)
4(3974 8195 8196 3975)
4(3775 3976 8197 7996)
4(3975 8196 8197 3976)
4(3776 3977 8198 7997)
4(3976 8197 8198 3977)
4(3777 3978 8199 7998)
4(3977 8198 8199 3978)
4(3778 3979 8200 7999)
4(3978 8199 8200 3979)
4(3779 3980 8201 8000)
4(3979 8200 8201 3980)
4(3780 3981 8202 8001)
4(3980 8201 8202 3981)
4(3781 3982 8203 8002)
4(3981 8202 8203 3982)
4(3782 3983 8204 8003)
4(3982 8203 8204 3983)
4(3783 3984 8205 8004)
4(3983 8204 8205 3984)
4(3784 3985 8206 8005)
4(3984 8205 8206 3985)
4(3785 3986 8207 8006)
4(3985 8206 8207 3986)
4(3786 3987 8208 8007)
4(3986 8207 8208 3987)
4(3787 3988 8209 8008)
4(3987 8208 8209 3988)
4(3788 3989 8210 8009)
4(3988 8209 8210 3989)
4(3789 3990 8211 8010)
4(3989 8210 8211 3990)
4(3790 3991 8212 8011)
4(3990 8211 8212 3991)
4(3791 3992 8213 8012)
4(3991 8212 8213 3992)
4(3792 3993 8214 8013)
4(3992 8213 8214 3993)
4(3793 3994 8215 8014)
4(3993 8214 8215 3994)
4(3794 3995 8216 8015)
4(3994 8215 8216 3995)
4(3795 3996 8217 8016)
4(3995 8216 8217 3996)
4(3796 3997 8218 8017)
4(3996 8217 8218 3997)
4(3797 3998 8219 8018)
4(3997 8218 8219 3998)
4(3798 3999 8220 8019)
4(3998 8219 8220 3999)
4(3799 4000 8221 8020)
4(3999 8220 8221 4000)
4(3800 4001 8222 8021)
4(4000 8221 8222 4001)
4(3801 4002 8223 8022)
4(4001 8222 8223 4002)
4(3802 4003 8224 8023)
4(4002 8223 8224 4003)
4(3803 4004 8225 8024)
4(4003 8224 8225 4004)
4(3804 4005 8226 8025)
4(4004 8225 8226 4005)
4(3805 4006 8227 8026)
4(4005 8226 8227 4006)
4(3806 4007 8228 8027)
4(4006 8227 8228 4007)
4(3807 4008 8229 8028)
4(4007 8228 8229 4008)
4(3808 4009 8230 8029)
4(4008 8229 8230 4009)
4(3809 4010 8231 8030)
4(4009 8230 8231 4010)
4(3810 4011 8232 8031)
4(4010 8231 8232 4011)
4(3811 4012 8233 8032)
4(4011 8232 8233 4012)
4(3812 4013 8234 8033)
4(4012 8233 8234 4013)
4(3813 4014 8235 8034)
4(4013 8234 8235 4014)
4(3814 4015 8236 8035)
4(4014 8235 8236 4015)
4(3815 4016 8237 8036)
4(4015 8236 8237 4016)
4(3816 4017 8238 8037)
4(4016 8237 8238 4017)
4(3817 4018 8239 8038)
4(4017 8238 8239 4018)
4(4018 8239 8240 4019)
4(3820 4021 8242 8041)
4(3821 4022 8243 8042)
4(3822 4023 8244 8043)
4(3823 4024 8245 8044)
4(3824 4025 8246 8045)
4(3825 4026 8247 8046)
4(3826 4027 8248 8047)
4(3827 4028 8249 8048)
4(3828 4029 8250 8049)
4(3829 4030 8251 8050)
4(3830 4031 8252 8051)
4(3831 4032 8253 8052)
4(3832 4033 8254 8053)
4(3833 4034 8255 8054)
4(3834 4035 8256 8055)
4(3835 4036 8257 8056)
4(3836 4037 8258 8057)
4(3837 4038 8259 8058)
4(3838 4039 8260 8059)
4(3839 4040 8261 8060)
4(3840 4041 8262 8061)
4(3841 4042 8263 8062)
4(3842 4043 8264 8063)
4(3843 4044 8265 8064)
4(3844 4045 8266 8065)
4(3845 4046 8267 8066)
4(3846 4047 8268 8067)
4(3847 4048 8269 8068)
4(3848 4049 8270 8069)
4(3849 4050 8271 8070)
4(3850 4051 8272 8071)
4(3851 4052 8273 8072)
4(3852 4053 8274 8073)
4(3853 4054 8275 8074)
4(3854 4055 8276 8075)
4(3855 4056 8277 8076)
4(3856 4057 8278 8077)
4(3857 4058 8279 8078)
4(3858 4059 8280 8079)
4(3859 4060 8281 8080)
4(3860 4061 8282 8081)
4(3861 4062 8283 8082)
4(3862 4063 8284 8083)
4(3863 4064 8285 8084)
4(3864 4065 8286 8085)
4(3865 4066 8287 8086)
4(3866 4067 8288 8087)
4(3867 4068 8289 8088)
4(3868 4069 8290 8089)
4(3869 4070 8291 8090)
4(3870 4071 8292 8091)
4(3871 4072 8293 8092)
4(3872 4073 8294 8093)
4(3873 4074 8295 8094)
4(3874 4075 8296 8095)
4(3875 4076 8297 8096)
4(3876 4077 8298 8097)
4(3877 4078 8299 8098)
4(3878 4079 8300 8099)
4(3879 4080 8301 8100)
4(3880 4081 8302 8101)
4(3881 4082 8303 8102)
4(3882 4083 8304 8103)
4(3883 4084 8305 8104)
4(3884 4085 8306 8105)
4(3885 4086 8307 8106)
4(3886 4087 8308 8107)
4(3887 4088 8309 8108)
4(3888 4089 8310 8109)
4(3889 4090 8311 8110)
4(3890 4091 8312 8111)
4(3891 4092 8313 8112)
4(3892 4093 8314 8113)
4(3893 4094 8315 8114)
4(3894 4095 8316 8115)
4(3895 4096 8317 8116)
4(3896 4097 8318 8117)
4(3897 4098 8319 8118)
4(3898 4099 8320 8119)
4(3899 4100 8321 8120)
4(3900 4101 8322 8121)
4(3901 4102 8323 8122)
4(3902 4103 8324 8123)
4(3903 4104 8325 8124)
4(3904 4105 8326 8125)
4(3905 4106 8327 8126)
4(3906 4107 8328 8127)
4(3907 4108 8329 8128)
4(3908 4109 8330 8129)
4(3909 4110 8331 8130)
4(3910 4111 8332 8131)
4(3911 4112 8333 8132)
4(3912 4113 8334 8133)
4(3913 4114 8335 8134)
4(3914 4115 8336 8135)
4(3915 4116 8337 8136)
4(3916 4117 8338 8137)
4(3917 4118 8339 8138)
4(3918 4119 8340 8139)
4(3919 4120 8341 8140)
4(3920 4121 8342 8141)
4(3921 4122 8343 8142)
4(3922 4123 8344 8143)
4(3923 4124 8345 8144)
4(3924 4125 8346 8145)
4(3925 4126 8347 8146)
4(3926 4127 8348 8147)
4(3927 4128 8349 8148)
4(3928 4129 8350 8149)
4(3929 4130 8351 8150)
4(3930 4131 8352 8151)
4(3931 4132 8353 8152)
4(3932 4133 8354 8153)
4(3933 4134 8355 8154)
4(3934 4135 8356 8155)
4(3935 4136 8357 8156)
4(3936 4137 8358 8157)
4(3937 4138 8359 8158)
4(3938 4139 8360 8159)
4(3939 4140 8361 8160)
4(3940 4141 8362 8161)
4(3941 4142 8363 8162)
4(3942 4143 8364 8163)
4(3943 4144 8365 8164)
4(3944 4145 8366 8165)
4(3945 4146 8367 8166)
4(3946 4147 8368 8167)
4(3947 4148 8369 8168)
4(3948 4149 8370 8169)
4(3949 4150 8371 8170)
4(3950 4151 8372 8171)
4(3951 4152 8373 8172)
4(3952 4153 8374 8173)
4(3953 4154 8375 8174)
4(3954 4155 8376 8175)
4(3955 4156 8377 8176)
4(3956 4157 8378 8177)
4(3957 4158 8379 8178)
4(3958 4159 8380 8179)
4(3959 4160 8381 8180)
4(3960 4161 8382 8181)
4(3961 4162 8383 8182)
4(3962 4163 8384 8183)
4(3963 4164 8385 8184)
4(3964 4165 8386 8185)
4(3965 4166 8387 8186)
4(3966 4167 8388 8187)
4(3967 4168 8389 8188)
4(3968 4169 8390 8189)
4(3969 4170 8391 8190)
4(3970 4171 8392 8191)
4(3971 4172 8393 8192)
4(3972 4173 8394 8193)
4(3973 4174 8395 8194)
4(3974 4175 8396 8195)
4(3975 4176 8397 8196)
4(3976 4177 8398 8197)
4(3977 4178 8399 8198)
4(3978 4179 8400 8199)
4(3979 4180 8401 8200)
4(3980 4181 8402 8201)
4(3981 4182 8403 8202)
4(3982 4183 8404 8203)
4(3983 4184 8405 8204)
4(3984 4185 8406 8205)
4(3985 4186 8407 8206)
4(3986 4187 8408 8207)
4(3987 4188 8409 8208)
4(3988 4189 8410 8209)
4(3989 4190 8411 8210)
4(3990 4191 8412 8211)
4(3991 4192 8413 8212)
4(3992 4193 8414 8213)
4(3993 4194 8415 8214)
4(3994 4195 8416 8215)
4(3995 4196 8417 8216)
4(3996 4197 8418 8217)
4(3997 4198 8419 8218)
4(3998 4199 8420 8219)
4(3999 4200 8421 8220)
4(4000 4201 8422 8221)
4(4001 4202 8423 8222)
4(4002 4203 8424 8223)
4(4003 4204 8425 8224)
4(4004 4205 8426 8225)
4(4005 4206 8427 8226)
4(4006 4207 8428 8227)
4(4007 4208 8429 8228)
4(4008 4209 8430 8229)
4(4009 4210 8431 8230)
4(4010 4211 8432 8231)
4(4011 4212 8433 8232)
4(4012 4213 8434 8233)
4(4013 4214 8435 8234)
4(4014 4215 8436 8235)
4(4015 4216 8437 8236)
4(4016 4217 8438 8237)
4(4017 4218 8439 8238)
4(4018 4219 8440 8239)
4(0 4221 4422 201)
4(201 4422 4623 402)
4(402 4623 4824 603)
4(603 4824 5025 804)
4(804 5025 5226 1005)
4(1005 5226 5427 1206)
4(1206 5427 5628 1407)
4(1407 5628 5829 1608)
4(1608 5829 6030 1809)
4(1809 6030 6231 2010)
4(2010 6231 6432 2211)
4(2211 6432 6633 2412)
4(2412 6633 6834 2613)
4(2613 6834 7035 2814)
4(2814 7035 7236 3015)
4(3015 7236 7437 3216)
4(3216 7437 7638 3417)
4(3417 7638 7839 3618)
4(3618 7839 8040 3819)
4(3819 8040 8241 4020)
4(200 401 4622 4421)
4(401 602 4823 4622)
4(602 803 5024 4823)
4(803 1004 5225 5024)
4(1004 1205 5426 5225)
4(1205 1406 5627 5426)
4(1406 1607 5828 5627)
4(1607 1808 6029 5828)
4(1808 2009 6230 6029)
4(2009 2210 6431 6230)
4(2210 2411 6632 6431)
4(2411 2612 6833 6632)
4(2612 2813 7034 6833)
4(2813 3014 7235 7034)
4(3014 3215 7436 7235)
4(3215 3416 7637 7436)
4(3416 3617 7838 7637)
4(3617 3818 8039 7838)
4(3818 4019 8240 8039)
4(4019 4220 8441 8240)
4(0 1 4222 4221)
4(1 2 4223 4222)
4(2 3 4224 4223)
4(3 4 4225 4224)
4(4 5 4226 4225)
4(5 6 4227 4226)
4(6 7 4228 4227)
4(7 8 4229 4228)
4(8 9 4230 4229)
4(9 10 4231 4230)
4(10 11 4232 4231)
4(11 12 4233 4232)
4(12 13 4234 4233)
4(13 14 4235 4234)
4(14 15 4236 4235)
4(15 16 4237 4236)
4(16 17 4238 4237)
4(17 18 4239 4238)
4(18 19 4240 4239)
4(19 20 4241 4240)
4(20 21 4242 4241)
4(21 22 4243 4242)
4(22 23 4244 4243)
4(23 24 4245 4244)
4(24 25 4246 4245)
4(25 26 4247 4246)
4(26 27 4248 4247)
4(27 28 4249 4248)
4(28 29 4250 4249)
4(29 30 4251 4250)
4(30 31 4252 4251)
4(31 32 4253 4252)
4(32 33 4254 4253)
4(33 34 4255 4254)
4(34 35 4256 4255)
4(35 36 4257 4256)
4(36 37 4258 4257)
4(37 38 4259 4258)
4(38 39 4260 4259)
4(39 40 4261 4260)
4(40 41 4262 4261)
4(41 42 4263 4262)
4(42 43 4264 4263)
4(43 44 4265 4264)
4(44 45 4266 4265)
4(45 46 4267 4266)
4(46 47 4268 4267)
4(47 48 4269 4268)
4(48 49 4270 4269)
4(49 50 4271 4270)
4(50 51 4272 4271)
4(51 52 4273 4272)
4(52 53 4274 4273)
4(53 54 4275 4274)
4(54 55 4276 4275)
4(55 56 4277 4276)
4(56 57 4278 4277)
4(57 58 4279 4278)
4(58 59 4280 4279)
4(59 60 4281 4280)
4(60 61 4282 4281)
4(61 62 4283 4282)
4(62 63 4284 4283)
4(63 64 4285 4284)
4(64 65 4286 4285)
4(65 66 4287 4286)
4(66 67 4288 4287)
4(67 68 4289 4288)
4(68 69 4290 4289)
4(69 70 4291 4290)
4(70 71 4292 4291)
4(71 72 4293 4292)
4(72 73 4294 4293)
4(73 74 4295 4294)
4(74 75 4296 4295)
4(75 76 4297 4296)
4(76 77 4298 4297)
4(77 78 4299 4298)
4(78 79 4300 4299)
4(79 80 4301 4300)
4(80 81 4302 4301)
4(81 82 4303 4302)
4(82 83 4304 4303)
4(83 84 4305 4304)
4(84 85 4306 4305)
4(85 86 4307 4306)
4(86 87 4308 4307)
4(87 88 4309 4308)
4(88 89 4310 4309)
4(89 90 4311 4310)
4(90 91 4312 4311)
4(91 92 4313 4312)
4(92 93 4314 4313)
4(93 94 4315 4314)
4(94 95 4316 4315)
4(95 96 4317 4316)
4(96 97 4318 4317)
4(97 98 4319 4318)
4(98 99 4320 4319)
4(99 100 4321 4320)
4(100 101 4322 4321)
4(101 102 4323 4322)
4(102 103 4324 4323)
4(103 104 4325 4324)
4(104 105 4326 4325)
4(105 106 4327 4326)
4(106 107 4328 4327)
4(107 108 4329 4328)
4(108 109 4330 4329)
4(109 110 4331 4330)
4(110 111 4332 4331)
4(111 112 4333 4332)
4(112 113 4334 4333)
4(113 114 4335 4334)
4(114 115 4336 4335)
4(115 116 4337 4336)
4(116 117 4338 4337)
4(117 118 4339 4338)
4(118 119 4340 4339)
4(119 120 4341 4340)
4(120 121 4342 4341)
4(121 122 4343 4342)
4(122 123 4344 4343)
4(123 124 4345 4344)
4(124 125 4346 4345)
4(125 126 4347 4346)
4(126 127 4348 4347)
4(127 128 4349 4348)
4(128 129 4350 4349)
4(129 130 4351 4350)
4(130 131 4352 4351)
4(131 132 4353 4352)
4(132 133 4354 4353)
4(133 134 4355 4354)
4(134 135 4356 4355)
4(135 136 4357 4356)
4(136 137 4358 4357)
4(137 138 4359 4358)
4(138 139 4360 4359)
4(139 140 4361 4360)
4(140 141 4362 4361)
4(141 142 4363 4362)
4(142 143 4364 4363)
4(143 144 4365 4364)
4(144 145 4366 4365)
4(145 146 4367 4366)
4(146 147 4368 4367)
4(147 148 4369 4368)
4(148 149 4370 4369)
4(149 150 4371 4370)
4(150 151 4372 4371)
4(151 152 4373 4372)
4(152 153 4374 4373)
4(153 154 4375 4374)
4(154 155 4376 4375)
4(155 156 4377 4376)
4(156 157 4378 4377)
4(157 158 4379 4378)
4(158 159 4380 4379)
4(159 160 4381 4380)
4(160 161 4382 4381)
4(161 162 4383 4382)
4(162 163 4384 4383)
4(163 164 4385 4384)
4(164 165 4386 4385)
4(165 166 4387 4386)
4(166 167 4388 4387)
4(167 168 4389 4388)
4(168 169 4390 4389)
4(169 170 4391 4390)
4(170 171 4392 4391)
4(171 172 4393 4392)
4(172 173 4394 4393)
4(173 174 4395 4394)
4(174 175 4396 4395)
4(175 176 4397 4396)
4(176 177 4398 4397)
4(177 178 4399 4398)
4(178 179 4400 4399)
4(179 180 4401 4400)
4(180 181 4402 4401)
4(181 182 4403 4402)
4(182 183 4404 4403)
4(183 184 4405 4404)
4(184 185 4406 4405)
4(185 186 4407 4406)
4(186 187 4408 4407)
4(187 188 4409 4408)
4(188 189 4410 4409)
4(189 190 4411 4410)
4(190 191 4412 4411)
4(191 192 4413 4412)
4(192 193 4414 4413)
4(193 194 4415 4414)
4(194 195 4416 4415)
4(195 196 4417 4416)
4(196 197 4418 4417)
4(197 198 4419 4418)
4(198 199 4420 4419)
4(199 200 4421 4420)
4(4020 8241 8242 4021)
4(4021 8242 8243 4022)
4(4022 8243 8244 4023)
4(4023 8244 8245 4024)
4(4024 8245 8246 4025)
4(4025 8246 8247 4026)
4(4026 8247 8248 4027)
4(4027 8248 8249 4028)
4(4028 8249 8250 4029)
4(4029 8250 8251 4030)
4(4030 8251 8252 4031)
4(4031 8252 8253 4032)
4(4032 8253 8254 4033)
4(4033 8254 8255 4034)
4(4034 8255 8256 4035)
4(4035 8256 8257 4036)
4(4036 8257 8258 4037)
4(4037 8258 8259 4038)
4(4038 8259 8260 4039)
4(4039 8260 8261 4040)
4(4040 8261 8262 4041)
4(4041 8262 8263 4042)
4(4042 8263 8264 4043)
4(4043 8264 8265 4044)
4(4044 8265 8266 4045)
4(4045 8266 8267 4046)
4(4046 8267 8268 4047)
4(4047 8268 8269 4048)
4(4048 8269 8270 4049)
4(4049 8270 8271 4050)
4(4050 8271 8272 4051)
4(4051 8272 8273 4052)
4(4052 8273 8274 4053)
4(4053 8274 8275 4054)
4(4054 8275 8276 4055)
4(4055 8276 8277 4056)
4(4056 8277 8278 4057)
4(4057 8278 8279 4058)
4(4058 8279 8280 4059)
4(4059 8280 8281 4060)
4(4060 8281 8282 4061)
4(4061 8282 8283 4062)
4(4062 8283 8284 4063)
4(4063 8284 8285 4064)
4(4064 8285 8286 4065)
4(4065 8286 8287 4066)
4(4066 8287 8288 4067)
4(4067 8288 8289 4068)
4(4068 8289 8290 4069)
4(4069 8290 8291 4070)
4(4070 8291 8292 4071)
4(4071 8292 8293 4072)
4(4072 8293 8294 4073)
4(4073 8294 8295 4074)
4(4074 8295 8296 4075)
4(4075 8296 8297 4076)
4(4076 8297 8298 4077)
4(4077 8298 8299 4078)
4(4078 8299 8300 4079)
4(4079 8300 8301 4080)
4(4080 8301 8302 4081)
4(4081 8302 8303 4082)
4(4082 8303 8304 4083)
4(4083 8304 8305 4084)
4(4084 8305 8306 4085)
4(4085 8306 8307 4086)
4(4086 8307 8308 4087)
4(4087 8308 8309 4088)
4(4088 8309 8310 4089)
4(4089 8310 8311 4090)
4(4090 8311 8312 4091)
4(4091 8312 8313 4092)
4(4092 8313 8314 4093)
4(4093 8314 8315 4094)
4(4094 8315 8316 4095)
4(4095 8316 8317 4096)
4(4096 8317 8318 4097)
4(4097 8318 8319 4098)
4(4098 8319 8320 4099)
4(4099 8320 8321 4100)
4(4100 8321 8322 4101)
4(4101 8322 8323 4102)
4(4102 8323 8324 4103)
4(4103 8324 8325 4104)
4(4104 8325 8326 4105)
4(4105 8326 8327 4106)
4(4106 8327 8328 4107)
4(4107 8328 8329 4108)
4(4108 8329 8330 4109)
4(4109 8330 8331 4110)
4(4110 8331 8332 4111)
4(4111 8332 8333 4112)
4(4112 8333 8334 4113)
4(4113 8334 8335 4114)
4(4114 8335 8336 4115)
4(4115 8336 8337 4116)
4(4116 8337 8338 4117)
4(4117 8338 8339 4118)
4(4118 8339 8340 4119)
4(4119 8340 8341 4120)
4(4120 8341 8342 4121)
4(4121 8342 8343 4122)
4(4122 8343 8344 4123)
4(4123 8344 8345 4124)
4(4124 8345 8346 4125)
4(4125 8346 8347 4126)
4(4126 8347 8348 4127)
4(4127 8348 8349 4128)
4(4128 8349 8350 4129)
4(4129 8350 8351 4130)
4(4130 8351 8352 4131)
4(4131 8352 8353 4132)
4(4132 8353 8354 4133)
4(4133 8354 8355 4134)
4(4134 8355 8356 4135)
4(4135 8356 8357 4136)
4(4136 8357 8358 4137)
4(4137 8358 8359 4138)
4(4138 8359 8360 4139)
4(4139 8360 8361 4140)
4(4140 8361 8362 4141)
4(4141 8362 8363 4142)
4(4142 8363 8364 4143)
4(4143 8364 8365 4144)
4(4144 8365 8366 4145)
4(4145 8366 8367 4146)
4(4146 8367 8368 4147)
4(4147 8368 8369 4148)
4(4148 8369 8370 4149)
4(4149 8370 8371 4150)
4(4150 8371 8372 4151)
4(4151 8372 8373 4152)
4(4152 8373 8374 4153)
4(4153 8374 8375 4154)
4(4154 8375 8376 4155)
4(4155 8376 8377 4156)
4(4156 8377 8378 4157)
4(4157 8378 8379 4158)
4(4158 8379 8380 4159)
4(4159 8380 8381 4160)
4(4160 8381 8382 4161)
4(4161 8382 8383 4162)
4(4162 8383 8384 4163)
4(4163 8384 8385 4164)
4(4164 8385 8386 4165)
4(4165 8386 8387 4166)
4(4166 8387 8388 4167)
4(4167 8388 8389 4168)
4(4168 8389 8390 4169)
4(4169 8390 8391 4170)
4(4170 8391 8392 4171)
4(4171 8392 8393 4172)
4(4172 8393 8394 4173)
4(4173 8394 8395 4174)
4(4174 8395 8396 4175)
4(4175 8396 8397 4176)
4(4176 8397 8398 4177)
4(4177 8398 8399 4178)
4(4178 8399 8400 4179)
4(4179 8400 8401 4180)
4(4180 8401 8402 4181)
4(4181 8402 8403 4182)
4(4182 8403 8404 4183)
4(4183 8404 8405 4184)
4(4184 8405 8406 4185)
4(4185 8406 8407 4186)
4(4186 8407 8408 4187)
4(4187 8408 8409 4188)
4(4188 8409 8410 4189)
4(4189 8410 8411 4190)
4(4190 8411 8412 4191)
4(4191 8412 8413 4192)
4(4192 8413 8414 4193)
4(4193 8414 8415 4194)
4(4194 8415 8416 4195)
4(4195 8416 8417 4196)
4(4196 8417 8418 4197)
4(4197 8418 8419 4198)
4(4198 8419 8420 4199)
4(4199 8420 8421 4200)
4(4200 8421 8422 4201)
4(4201 8422 8423 4202)
4(4202 8423 8424 4203)
4(4203 8424 8425 4204)
4(4204 8425 8426 4205)
4(4205 8426 8427 4206)
4(4206 8427 8428 4207)
4(4207 8428 8429 4208)
4(4208 8429 8430 4209)
4(4209 8430 8431 4210)
4(4210 8431 8432 4211)
4(4211 8432 8433 4212)
4(4212 8433 8434 4213)
4(4213 8434 8435 4214)
4(4214 8435 8436 4215)
4(4215 8436 8437 4216)
4(4216 8437 8438 4217)
4(4217 8438 8439 4218)
4(4218 8439 8440 4219)
4(4219 8440 8441 4220)
4(4221 4222 4423 4422)
4(4422 4423 4624 4623)
4(4623 4624 4825 4824)
4(4824 4825 5026 5025)
4(5025 5026 5227 5226)
4(5226 5227 5428 5427)
4(5427 5428 5629 5628)
4(5628 5629 5830 5829)
4(5829 5830 6031 6030)
4(6030 6031 6232 6231)
4(6231 6232 6433 6432)
4(6432 6433 6634 6633)
4(6633 6634 6835 6834)
4(6834 6835 7036 7035)
4(7035 7036 7237 7236)
4(7236 7237 7438 7437)
4(7437 7438 7639 7638)
4(7638 7639 7840 7839)
4(7839 7840 8041 8040)
4(8040 8041 8242 8241)
4(4222 4223 4424 4423)
4(4423 4424 4625 4624)
4(4624 4625 4826 4825)
4(4825 4826 5027 5026)
4(5026 5027 5228 5227)
4(5227 5228 5429 5428)
4(5428 5429 5630 5629)
4(5629 5630 5831 5830)
4(5830 5831 6032 6031)
4(6031 6032 6233 6232)
4(6232 6233 6434 6433)
4(6433 6434 6635 6634)
4(6634 6635 6836 6835)
4(6835 6836 7037 7036)
4(7036 7037 7238 7237)
4(7237 7238 7439 7438)
4(7438 7439 7640 7639)
4(7639 7640 7841 7840)
4(7840 7841 8042 8041)
4(8041 8042 8243 8242)
4(4223 4224 4425 4424)
4(4424 4425 4626 4625)
4(4625 4626 4827 4826)
4(4826 4827 5028 5027)
4(5027 5028 5229 5228)
4(5228 5229 5430 5429)
4(5429 5430 5631 5630)
4(5630 5631 5832 5831)
4(5831 5832 6033 6032)
4(6032 6033 6234 6233)
4(6233 6234 6435 6434)
4(6434 6435 6636 6635)
4(6635 6636 6837 6836)
4(6836 6837 7038 7037)
4(7037 7038 7239 7238)
4(7238 7239 7440 7439)
4(7439 7440 7641 7640)
4(7640 7641 7842 7841)
4(7841 7842 8043 8042)
4(8042 8043 8244 8243)
4(4224 4225 4426 4425)
4(4425 4426 4627 4626)
4(4626 4627 4828 4827)
4(4827 4828 5029 5028)
4(5028 5029 5230 5229)
4(5229 5230 5431 5430)
4(5430 5431 5632 5631)
4(5631 5632 5833 5832)
4(5832 5833 6034 6033)
4(6033 6034 6235 6234)
4(6234 6235 6436 6435)
4(6435 6436 6637 6636)
4(6636 6637 6838 6837)
4(6837 6838 7039 7038)
4(7038 7039 7240 7239)
4(7239 7240 7441 7440)
4(7440 7441 7642 7641)
4(7641 7642 7843 7842)
4(7842 7843 8044 8043)
4(8043 8044 8245 8244)
4(4225 4226 4427 4426)
4(4426 4427 4628 4627)
4(4627 4628 4829 4828)
4(4828 4829 5030 5029)
4(5029 5030 5231 5230)
4(5230 5231 5432 5431)
4(5431 5432 5633 5632)
4(5632 5633 5834 5833)
4(5833 5834 6035 6034)
4(6034 6035 6236 6235)
4(6235 6236 6437 6436)
4(6436 6437 6638 6637)
4(6637 6638 6839 6838)
4(6838 6839 7040 7039)
4(7039 7040 7241 7240)
4(7240 7241 7442 7441)
4(7441 7442 7643 7642)
4(7642 7643 7844 7843)
4(7843 7844 8045 8044)
4(8044 8045 8246 8245)
4(4226 4227 4428 4427)
4(4427 4428 4629 4628)
4(4628 4629 4830 4829)
4(4829 4830 5031 5030)
4(5030 5031 5232 5231)
4(5231 5232 5433 5432)
4(5432 5433 5634 5633)
4(5633 5634 5835 5834)
4(5834 5835 6036 6035)
4(6035 6036 6237 6236)
4(6236 6237 6438 6437)
4(6437 6438 6639 6638)
4(6638 6639 6840 6839)
4(6839 6840 7041 7040)
4(7040 7041 7242 7241)
4(7241 7242 7443 7442)
4(7442 7443 7644 7643)
4(7643 7644 7845 7844)
4(7844 7845 8046 8045)
4(8045 8046 8247 8246)
4(4227 4228 4429 4428)
4(4428 4429 4630 4629)
4(4629 4630 4831 4830)
4(4830 4831 5032 5031)
4(5031 5032 5233 5232)
4(5232 5233 5434 5433)
4(5433 5434 5635 5634)
4(5634 5635 5836 5835)
4(5835 5836 6037 6036)
4(6036 6037 6238 6237)
4(6237 6238 6439 6438)
4(6438 6439 6640 6639)
4(6639 6640 6841 6840)
4(6840 6841 7042 7041)
4(7041 7042 7243 7242)
4(7242 7243 7444 7443)
4(7443 7444 7645 7644)
4(7644 7645 7846 7845)
4(7845 7846 8047 8046)
4(8046 8047 8248 8247)
4(4228 4229 4430 4429)
4(4429 4430 4631 4630)
4(4630 4631 4832 4831)
4(4831 4832 5033 5032)
4(5032 5033 5234 5233)
4(5233 5234 5435 5434)
4(5434 5435 5636 5635)
4(5635 5636 5837 5836)
4(5836 5837 6038 6037)
4(6037 6038 6239 6238)
4(6238 6239 6440 6439)
4(6439 6440 6641 6640)
4(6640 6641 6842 6841)
4(6841 6842 7043 7042)
4(7042 7043 7244 7243)
4(7243 7244 7445 7444)
4(7444 7445 7646 7645)
4(7645 7646 7847 7846)
4(7846 7847 8048 8047)
4(8047 8048 8249 8248)
4(4229 4230 4431 4430)
4(4430 4431 4632 4631)
4(4631 4632 4833 4832)
4(4832 4833 5034 5033)
4(5033 5034 5235 5234)
4(5234 5235 5436 5435)
4(5435 5436 5637 5636)
4(5636 5637 5838 5837)
4(5837 5838 6039 6038)
4(6038 6039 6240 6239)
4(6239 6240 6441 6440)
4(6440 6441 6642 6641)
4(6641 6642 6843 6842)
4(6842 6843 7044 7043)
4(7043 7044 7245 7244)
4(7244 7245 7446 7445)
4(7445 7446 7647 7646)
4(7646 7647 7848 7847)
4(7847 7848 8049 8048)
4(8048 8049 8250 8249)
4(4230 4231 4432 4431)
4(4431 4432 4633 4632)
4(4632 4633 4834 4833)
4(4833 4834 5035 5034)
4(5034 5035 5236 5235)
4(5235 5236 5437 5436)
4(5436 5437 5638 5637)
4(5637 5638 5839 5838)
4(5838 5839 6040 6039)
4(6039 6040 6241 6240)
4(6240 6241 6442 6441)
4(6441 6442 6643 6642)
4(6642 6643 6844 6843)
4(6843 6844 7045 7044)
4(7044 7045 7246 7245)
4(7245 7246 7447 7446)
4(7446 7447 7648 7647)
4(7647 7648 7849 7848)
4(7848 7849 8050 8049)
4(8049 8050 8251 8250)
4(4231 4232 4433 4432)
4(4432 4433 4634 4633)
4(4633 4634 4835 4834)
4(4834 4835 5036 5035)
4(5035 5036 5237 5236)
4(5236 5237 5438 5437)
4(5437 5438 5639 5638)
4(5638 5639 5840 5839)
4(5839 5840 6041 6040)
4(6040 6041 6242 6241)
4(6241 6242 6443 6442)
4(6442 6443 6644 6643)
4(6643 6644 6845 6844)
4(6844 6845 7046 7045)
4(7045 7046 7247 7246)
4(7246 7247 7448 7447)
4(7447 7448 7649 7648)
4(7648 7649 7850 7849)
4(7849 7850 8051 8050)
4(8050 8051 8252 8251)
4(4232 4233 4434 4433)
4(4433 4434 4635 4634)
4(4634 4635 4836 4835)
4(4835 4836 5037 5036)
4(5036 5037 5238 5237)
4(5237 5238 5439 5438)
4(5438 5439 5640 5639)
4(5639 5640 5841 5840)
4(5840 5841 6042 6041)
4(6041 6042 6243 6242)
4(6242 6243 6444 6443)
4(6443 6444 6645 6644)
4(6644 6645 6846 6845)
4(6845 6846 7047 7046)
4(7046 7047 7248 7247)
4(7247 7248 7449 7448)
4(7448 7449 7650 7649)
4(7649 7650 7851 7850)
4(7850 7851 8052 8051)
4(8051 8052 8253 8252)
4(4233 4234 4435 4434)
4(4434 4435 4636 4635)
4(4635 4636 4837 4836)
4(4836 4837 5038 5037)
4(5037 5038 5239 5238)
4(5238 5239 5440 5439)
4(5439 5440 5641 5640)
4(5640 5641 5842 5841)
4(5841 5842 6043 6042)
4(6042 6043 6244 6243)
4(6243 6244 6445 6444)
4(6444 6445 6646 6645)
4(6645 6646 6847 6846)
4(6846 6847 7048 7047)
4(7047 7048 7249 7248)
4(7248 7249 7450 7449)
4(7449 7450 7651 7650)
4(7650 7651 7852 7851)
4(7851 7852 8053 8052)
4(8052 8053 8254 8253)
4(4234 4235 4436 4435)
4(4435 4436 4637 4636)
4(4636 4637 4838 4837)
4(4837 4838 5039 5038)
4(5038 5039 5240 5239)
4(5239 5240 5441 5440)
4(5440 5441 5642 5641)
4(5641 5642 5843 5842)
4(5842 5843 6044 6043)
4(6043 6044 6245 6244)
4(6244 6245 6446 6445)
4(6445 6446 6647 6646)
4(6646 6647 6848 6847)
4(6847 6848 7049 7048)
4(7048 7049 7250 7249)
4(7249 7250 7451 7450)
4(7450 7451 7652 7651)
4(7651 7652 7853 7852)
4(7852 7853 8054 8053)
4(8053 8054 8255 8254)
4(4235 4236 4437 4436)
4(4436 4437 4638 4637)
4(4637 4638 4839 4838)
4(4838 4839 5040 5039)
4(5039 5040 5241 5240)
4(5240 5241 5442 5441)
4(5441 5442 5643 5642)
4(5642 5643 5844 5843)
4(5843 5844 6045 6044)
4(6044 6045 6246 6245)
4(6245 6246 6447 6446)
4(6446 6447 6648 6647)
4(6647 6648 6849 6848)
4(6848 6849 7050 7049)
4(7049 7050 7251 7250)
4(7250 7251 7452 7451)
4(7451 7452 7653 7652)
4(7652 7653 7854 7853)
4(7853 7854 8055 8054)
4(8054 8055 8256 8255)
4(4236 4237 4438 4437)
4(4437 4438 4639 4638)
4(4638 4639 4840 4839)
4(4839 4840 5041 5040)
4(5040 5041 5242 5241)
4(5241 5242 5443 5442)
4(5442 5443 5644 5643)
4(5643 5644 5845 5844)
4(5844 5845 6046 6045)
4(6045 6046 6247 6246)
4(6246 6247 6448 6447)
4(6447 6448 6649 6648)
4(6648 6649 6850 6849)
4(6849 6850 7051 7050)
4(7050 7051 7252 7251)
4(7251 7252 7453 7452)
4(7452 7453 7654 7653)
4(7653 7654 7855 7854)
4(7854 7855 8056 8055)
4(8055 8056 8257 8256)
4(4237 4238 4439 4438)
4(4438 4439 4640 4639)
4(4639 4640 4841 4840)
4(4840 4841 5042 5041)
4(5041 5042 5243 5242)
4(5242 5243 5444 5443)
4(5443 5444 5645 5644)
4(5644 5645 5846 5845)
4(5845 5846 6047 6046)
4(6046 6047 6248 6247)
4(6247 6248 6449 6448)
4(6448 6449 6650 6649)
4(6649 6650 6851 6850)
4(6850 6851 7052 7051)
4(7051 7052 7253 7252)
4(7252 7253 7454 7453)
4(7453 7454 7655 7654)
4(7654 7655 7856 7855)
4(7855 7856 8057 8056)
4(8056 8057 8258 8257)
4(4238 4239 4440 4439)
4(4439 4440 4641 4640)
4(4640 4641 4842 4841)
4(4841 4842 5043 5042)
4(5042 5043 5244 5243)
4(5243 5244 5445 5444)
4(5444 5445 5646 5645)
4(5645 5646 5847 5846)
4(5846 5847 6048 6047)
4(6047 6048 6249 6248)
4(6248 6249 6450 6449)
4(6449 6450 6651 6650)
4(6650 6651 6852 6851)
4(6851 6852 7053 7052)
4(7052 7053 7254 7253)
4(7253 7254 7455 7454)
4(7454 7455 7656 7655)
4(7655 7656 7857 7856)
4(7856 7857 8058 8057)
4(8057 8058 8259 8258)
4(4239 4240 4441 4440)
4(4440 4441 4642 4641)
4(4641 4642 4843 4842)
4(4842 4843 5044 5043)
4(5043 5044 5245 5244)
4(5244 5245 5446 5445)
4(5445 5446 5647 5646)
4(5646 5647 5848 5847)
4(5847 5848 6049 6048)
4(6048 6049 6250 6249)
4(6249 6250 6451 6450)
4(6450 6451 6652 6651)
4(6651 6652 6853 6852)
4(6852 6853 7054 7053)
4(7053 7054 7255 7254)
4(7254 7255 7456 7455)
4(7455 7456 7657 7656)
4(7656 7657 7858 7857)
4(7857 7858 8059 8058)
4(8058 8059 8260 8259)
4(4240 4241 4442 4441)
4(4441 4442 4643 4642)
4(4642 4643 4844 4843)
4(4843 4844 5045 5044)
4(5044 5045 5246 5245)
4(5245 5246 5447 5446)
4(5446 5447 5648 5647)
4(5647 5648 5849 5848)
4(5848 5849 6050 6049)
4(6049 6050 6251 6250)
4(6250 6251 6452 6451)
4(6451 6452 6653 6652)
4(6652 6653 6854 6853)
4(6853 6854 7055 7054)
4(7054 7055 7256 7255)
4(7255 7256 7457 7456)
4(7456 7457 7658 7657)
4(7657 7658 7859 7858)
4(7858 7859 8060 8059)
4(8059 8060 8261 8260)
4(4241 4242 4443 4442)
4(4442 4443 4644 4643)
4(4643 4644 4845 4844)
4(4844 4845 5046 5045)
4(5045 5046 5247 5246)
4(5246 5247 5448 5447)
4(5447 5448 5649 5648)
4(5648 5649 5850 5849)
4(5849 5850 6051 6050)
4(6050 6051 6252 6251)
4(6251 6252 6453 6452)
4(6452 6453 6654 6653)
4(6653 6654 6855 6854)
4(6854 6855 7056 7055)
4(7055 7056 7257 7256)
4(7256 7257 7458 7457)
4(7457 7458 7659 7658)
4(7658 7659 7860 7859)
4(7859 7860 8061 8060)
4(8060 8061 8262 8261)
4(4242 4243 4444 4443)
4(4443 4444 4645 4644)
4(4644 4645 4846 4845)
4(4845 4846 5047 5046)
4(5046 5047 5248 5247)
4(5247 5248 5449 5448)
4(5448 5449 5650 5649)
4(5649 5650 5851 5850)
4(5850 5851 6052 6051)
4(6051 6052 6253 6252)
4(6252 6253 6454 6453)
4(6453 6454 6655 6654)
4(6654 6655 6856 6855)
4(6855 6856 7057 7056)
4(7056 7057 7258 7257)
4(7257 7258 7459 7458)
4(7458 7459 7660 7659)
4(7659 7660 7861 7860)
4(7860 7861 8062 8061)
4(8061 8062 8263 8262)
4(4243 4244 4445 4444)
4(4444 4445 4646 4645)
4(4645 4646 4847 4846)
4(4846 4847 5048 5047)
4(5047 5048 5249 5248)
4(5248 5249 5450 5449)
4(5449 5450 5651 5650)
4(5650 5651 5852 5851)
4(5851 5852 6053 6052)
4(6052 6053 6254 6253)
4(6253 6254 6455 6454)
4(6454 6455 6656 6655)
4(6655 6656 6857 6856)
4(6856 6857 7058 7057)
4(7057 7058 7259 7258)
4(7258 7259 7460 7459)
4(7459 7460 7661 7660)
4(7660 7661 7862 7861)
4(7861 7862 8063 8062)
4(8062 8063 8264 8263)
4(4244 4245 4446 4445)
4(4445 4446 4647 4646)
4(4646 4647 4848 4847)
4(4847 4848 5049 5048)
4(5048 5049 5250 5249)
4(5249 5250 5451 5450)
4(5450 5451 5652 5651)
4(5651 5652 5853 5852)
4(5852 5853 6054 6053)
4(6053 6054 6255 6254)
4(6254 6255 6456 6455)
4(6455 6456 6657 6656)
4(6656 6657 6858 6857)
4(6857 6858 7059 7058)
4(7058 7059 7260 7259)
4(7259 7260 7461 7460)
4(7460 7461 7662 7661)
4(7661 7662 7863 7862)
4(7862 7863 8064 8063)
4(8063 8064 8265 8264)
4(4245 4246 4447 4446)
4(4446 4447 4648 4647)
4(4647 4648 4849 4848)
4(4848 4849 5050 5049)
4(5049 5050 5251 5250)
4(5250 5251 5452 5451)
4(5451 5452 5653 5652)
4(5652 5653 5854 5853)
4(5853 5854 6055 6054)
4(6054 6055 6256 6255)
4(6255 6256 6457 6456)
4(6456 6457 6658 6657)
4(6657 6658 6859 6858)
4(6858 6859 7060 7059)
4(7059 7060 7261 7260)
4(7260 7261 7462 7461)
4(7461 7462 7663 7662)
4(7662 7663 7864 7863)
4(7863 7864 8065 8064)
4(8064 8065 8266 8265)
4(4246 4247 4448 4447)
4(4447 4448 4649 4648)
4(4648 4649 4850 4849)
4(4849 4850 5051 5050)
4(5050 5051 5252 5251)
4(5251 5252 5453 5452)
4(5452 5453 5654 5653)
4(5653 5654 5855 5854)
4(5854 5855 6056 6055)
4(6055 6056 6257 6256)
4(6256 6257 6458 6457)
4(6457 6458 6659 6658)
4(6658 6659 6860 6859)
4(6859 6860 7061 7060)
4(7060 7061 7262 7261)
4(7261 7262 7463 7462)
4(7462 7463 7664 7663)
4(7663 7664 7865 7864)
4(7864 7865 8066 8065)
4(8065 8066 8267 8266)
4(4247 4248 4449 4448)
4(4448 4449 4650 4649)
4(4649 4650 4851 4850)
4(4850 4851 5052 5051)
4(5051 5052 5253 5252)
4(5252 5253 5454 5453)
4(5453 5454 5655 5654)
4(5654 5655 5856 5855)
4(5855 5856 6057 6056)
4(6056 6057 6258 6257)
4(6257 6258 6459 6458)
4(6458 6459 6660 6659)
4(6659 6660 6861 6860)
4(6860 6861 7062 7061)
4(7061 7062 7263 7262)
4(7262 7263 7464 7463)
4(7463 7464 7665 7664)
4(7664 7665 7866 7865)
4(7865 7866 8067 8066)
4(8066 8067 8268 8267)
4(4248 4249 4450 4449)
4(4449 4450 4651 4650)
4(4650 4651 4852 4851)
4(4851 4852 5053 5052)
4(5052 5053 5254 5253)
4(5253 5254 5455 5454)
4(5454 5455 5656 5655)
4(5655 5656 5857 5856)
4(5856 5857 6058 6057)
4(6057 6058 6259 6258)
4(6258 6259 6460 6459)
4(6459 6460 6661 6660)
4(6660 6661 6862 6861)
4(6861 6862 7063 7062)
4(7062 7063 7264 7263)
4(7263 7264 7465 7464)
4(7464 7465 7666 7665)
4(7665 7666 7867 7866)
4(7866 7867 8068 8067)
4(8067 8068 8269 8268)
4(4249 4250 4451 4450)
4(4450 4451 4652 4651)
4(4651 4652 4853 4852)
4(4852 4853 5054 5053)
4(5053 5054 5255 5254)
4(5254 5255 5456 5455)
4(5455 5456 5657 5656)
4(5656 5657 5858 5857)
4(5857 5858 6059 6058)
4(6058 6059 6260 6259)
4(6259 6260 6461 6460)
4(6460 6461 6662 6661)
4(6661 6662 6863 6862)
4(6862 6863 7064 7063)
4(7063 7064 7265 7264)
4(7264 7265 7466 7465)
4(7465 7466 7667 7666)
4(7666 7667 7868 7867)
4(7867 7868 8069 8068)
4(8068 8069 8270 8269)
4(4250 4251 4452 4451)
4(4451 4452 4653 4652)
4(4652 4653 4854 4853)
4(4853 4854 5055 5054)
4(5054 5055 5256 5255)
4(5255 5256 5457 5456)
4(5456 5457 5658 5657)
4(5657 5658 5859 5858)
4(5858 5859 6060 6059)
4(6059 6060 6261 6260)
4(6260 6261 6462 6461)
4(6461 6462 6663 6662)
4(6662 6663 6864 6863)
4(6863 6864 7065 7064)
4(7064 7065 7266 7265)
4(7265 7266 7467 7466)
4(7466 7467 7668 7667)
4(7667 7668 7869 7868)
4(7868 7869 8070 8069)
4(8069 8070 8271 8270)
4(4251 4252 4453 4452)
4(4452 4453 4654 4653)
4(4653 4654 4855 4854)
4(4854 4855 5056 5055)
4(5055 5056 5257 5256)
4(5256 5257 5458 5457)
4(5457 5458 5659 5658)
4(5658 5659 5860 5859)
4(5859 5860 6061 6060)
4(6060 6061 6262 6261)
4(6261 6262 6463 6462)
4(6462 6463 6664 6663)
4(6663 6664 6865 6864)
4(6864 6865 7066 7065)
4(7065 7066 7267 7266)
4(7266 7267 7468 7467)
4(7467 7468 7669 7668)
4(7668 7669 7870 7869)
4(7869 7870 8071 8070)
4(8070 8071 8272 8271)
4(4252 4253 4454 4453)
4(4453 4454 4655 4654)
4(4654 4655 4856 4855)
4(4855 4856 5057 5056)
4(5056 5057 5258 5257)
4(5257 5258 5459 5458)
4(5458 5459 5660 5659)
4(5659 5660 5861 5860)
4(5860 5861 6062 6061)
4(6061 6062 6263 6262)
4(6262 6263 6464 6463)
4(6463 6464 6665 6664)
4(6664 6665 6866 6865)
4(6865 6866 7067 7066)
4(7066 7067 7268 7267)
4(7267 7268 7469 7468)
4(7468 7469 7670 7669)
4(7669 7670 7871 7870)
4(7870 7871 8072 8071)
4(8071 8072 8273 8272)
4(4253 4254 4455 4454)
4(4454 4455 4656 4655)
4(4655 4656 4857 4856)
4(4856 4857 5058 5057)
4(5057 5058 5259 5258)
4(5258 5259 5460 5459)
4(5459 5460 5661 5660)
4(5660 5661 5862 5861)
4(5861 5862 6063 6062)
4(6062 6063 6264 6263)
4(6263 6264 6465 6464)
4(6464 6465 6666 6665)
4(6665 6666 6867 6866)
4(6866 6867 7068 7067)
4(7067 7068 7269 7268)
4(7268 7269 7470 7469)
4(7469 7470 7671 7670)
4(7670 7671 7872 7871)
4(7871 7872 8073 8072)
4(8072 8073 8274 8273)
4(4254 4255 4456 4455)
4(4455 4456 4657 4656)
4(4656 4657 4858 4857)
4(4857 4858 5059 5058)
4(5058 5059 5260 5259)
4(5259 5260 5461 5460)
4(5460 5461 5662 5661)
4(5661 5662 5863 5862)
4(5862 5863 6064 6063)
4(6063 6064 6265 6264)
4(6264 6265 6466 6465)
4(6465 6466 6667 6666)
4(6666 6667 6868 6867)
4(6867 6868 7069 7068)
4(7068 7069 7270 7269)
4(7269 7270 7471 7470)
4(7470 7471 7672 7671)
4(7671 7672 7873 7872)
4(7872 7873 8074 8073)
4(8073 8074 8275 8274)
4(4255 4256 4457 4456)
4(4456 4457 4658 4657)
4(4657 4658 4859 4858)
4(4858 4859 5060 5059)
4(5059 5060 5261 5260)
4(5260 5261 5462 5461)
4(5461 5462 5663 5662)
4(5662 5663 5864 5863)
4(5863 5864 6065 6064)
4(6064 6065 6266 6265)
4(6265 6266 6467 6466)
4(6466 6467 6668 6667)
4(6667 6668 6869 6868)
4(6868 6869 7070 7069)
4(7069 7070 7271 7270)
4(7270 7271 7472 7471)
4(7471 7472 7673 7672)
4(7672 7673 7874 7873)
4(7873 7874 8075 8074)
4(8074 8075 8276 8275)
4(4256 4257 4458 4457)
4(4457 4458 4659 4658)
4(4658 4659 4860 4859)
4(4859 4860 5061 5060)
4(5060 5061 5262 5261)
4(5261 5262 5463 5462)
4(5462 5463 5664 5663)
4(5663 5664 5865 5864)
4(5864 5865 6066 6065)
4(6065 6066 6267 6266)
4(6266 6267 6468 6467)
4(6467 6468 6669 6668)
4(6668 6669 6870 6869)
4(6869 6870 7071 7070)
4(7070 7071 7272 7271)
4(7271 7272 7473 7472)
4(7472 7473 7674 7673)
4(7673 7674 7875 7874)
4(7874 7875 8076 8075)
4(8075 8076 8277 8276)
4(4257 4258 4459 4458)
4(4458 4459 4660 4659)
4(4659 4660 4861 4860)
4(4860 4861 5062 5061)
4(5061 5062 5263 5262)
4(5262 5263 5464 5463)
4(5463 5464 5665 5664)
4(5664 5665 5866 5865)
4(5865 5866 6067 6066)
4(6066 6067 6268 6267)
4(6267 6268 6469 6468)
4(6468 6469 6670 6669)
4(6669 6670 6871 6870)
4(6870 6871 7072 7071)
4(7071 7072 7273 7272)
4(7272 7273 7474 7473)
4(7473 7474 7675 7674)
4(7674 7675 7876 7875)
4(7875 7876 8077 8076)
4(8076 8077 8278 8277)
4(4258 4259 4460 4459)
4(4459 4460 4661 4660)
4(4660 4661 4862 4861)
4(4861 4862 5063 5062)
4(5062 5063 5264 5263)
4(5263 5264 5465 5464)
4(5464 5465 5666 5665)
4(5665 5666 5867 5866)
4(5866 5867 6068 6067)
4(6067 6068 6269 6268)
4(6268 6269 6470 6469)
4(6469 6470 6671 6670)
4(6670 6671 6872 6871)
4(6871 6872 7073 7072)
4(7072 7073 7274 7273)
4(7273 7274 7475 7474)
4(7474 7475 7676 7675)
4(7675 7676 7877 7876)
4(7876 7877 8078 8077)
4(8077 8078 8279 8278)
4(4259 4260 4461 4460)
4(4460 4461 4662 4661)
4(4661 4662 4863 4862)
4(4862 4863 5064 5063)
4(5063 5064 5265 5264)
4(5264 5265 5466 5465)
4(5465 5466 5667 5666)
4(5666 5667 5868 5867)
4(5867 5868 6069 6068)
4(6068 6069 6270 6269)
4(6269 6270 6471 6470)
4(6470 6471 6672 6671)
4(6671 6672 6873 6872)
4(6872 6873 7074 7073)
4(7073 7074 7275 7274)
4(7274 7275 7476 7475)
4(7475 7476 7677 7676)
4(7676 7677 7878 7877)
4(7877 7878 8079 8078)
4(8078 8079 8280 8279)
4(4260 4261 4462 4461)
4(4461 4462 4663 4662)
4(4662 4663 4864 4863)
4(4863 4864 5065 5064)
4(5064 5065 5266 5265)
4(5265 5266 5467 5466)
4(5466 5467 5668 5667)
4(5667 5668 5869 5868)
4(5868 5869 6070 6069)
4(6069 6070 6271 6270)
4(6270 6271 6472 6471)
4(6471 6472 6673 6672)
4(6672 6673 6874 6873)
4(6873 6874 7075 7074)
4(7074 7075 7276 7275)
4(7275 7276 7477 7476)
4(7476 7477 7678 7677)
4(7677 7678 7879 7878)
4(7878 7879 8080 8079)
4(8079 8080 8281 8280)
4(4261 4262 4463 4462)
4(4462 4463 4664 4663)
4(4663 4664 4865 4864)
4(4864 4865 5066 5065)
4(5065 5066 5267 5266)
4(5266 5267 5468 5467)
4(5467 5468 5669 5668)
4(5668 5669 5870 5869)
4(5869 5870 6071 6070)
4(6070 6071 6272 6271)
4(6271 6272 6473 6472)
4(6472 6473 6674 6673)
4(6673 6674 6875 6874)
4(6874 6875 7076 7075)
4(7075 7076 7277 7276)
4(7276 7277 7478 7477)
4(7477 7478 7679 7678)
4(7678 7679 7880 7879)
4(7879 7880 8081 8080)
4(8080 8081 8282 8281)
4(4262 4263 4464 4463)
4(4463 4464 4665 4664)
4(4664 4665 4866 4865)
4(4865 4866 5067 5066)
4(5066 5067 5268 5267)
4(5267 5268 5469 5468)
4(5468 5469 5670 5669)
4(5669 5670 5871 5870)
4(5870 5871 6072 6071)
4(6071 6072 6273 6272)
4(6272 6273 6474 6473)
4(6473 6474 6675 6674)
4(6674 6675 6876 6875)
4(6875 6876 7077 7076)
4(7076 7077 7278 7277)
4(7277 7278 7479 7478)
4(7478 7479 7680 7679)
4(7679 7680 7881 7880)
4(7880 7881 8082 8081)
4(8081 8082 8283 8282)
4(4263 4264 4465 4464)
4(4464 4465 4666 4665)
4(4665 4666 4867 4866)
4(4866 4867 5068 5067)
4(5067 5068 5269 5268)
4(5268 5269 5470 5469)
4(5469 5470 5671 5670)
4(5670 5671 5872 5871)
4(5871 5872 6073 6072)
4(6072 6073 6274 6273)
4(6273 6274 6475 6474)
4(6474 6475 6676 6675)
4(6675 6676 6877 6876)
4(6876 6877 7078 7077)
4(7077 7078 7279 7278)
4(7278 7279 7480 7479)
4(7479 7480 7681 7680)
4(7680 7681 7882 7881)
4(7881 7882 8083 8082)
4(8082 8083 8284 8283)
4(4264 4265 4466 4465)
4(4465 4466 4667 4666)
4(4666 4667 4868 4867)
4(4867 4868 5069 5068)
4(5068 5069 5270 5269)
4(5269 5270 5471 5470)
4(5470 5471 5672 5671)
4(5671 5672 5873 5872)
4(5872 5873 6074 6073)
4(6073 6074 6275 6274)
4(6274 6275 6476 6475)
4(6475 6476 6677 6676)
4(6676 6677 6878 6877)
4(6877 6878 7079 7078)
4(7078 7079 7280 7279)
4(7279 7280 7481 7480)
4(7480 7481 7682 7681)
4(7681 7682 7883 7882)
4(7882 7883 8084 8083)
4(8083 8084 8285 8284)
4(4265 4266 4467 4466)
4(4466 4467 4668 4667)
4(4667 4668 4869 4868)
4(4868 4869 5070 5069)
4(5069 5070 5271 5270)
4(5270 5271 5472 5471)
4(5471 5472 5673 5672)
4(5672 5673 5874 5873)
4(5873 5874 6075 6074)
4(6074 6075 6276 6275)
4(6275 6276 6477 6476)
4(6476 6477 6678 6677)
4(6677 6678 6879 6878)
4(6878 6879 7080 7079)
4(7079 7080 7281 7280)
4(7280 7281 7482 7481)
4(7481 7482 7683 7682)
4(7682 7683 7884 7883)
4(7883 7884 8085 8084)
4(8084 8085 8286 8285)
4(4266 4267 4468 4467)
4(4467 4468 4669 4668)
4(4668 4669 4870 4869)
4(4869 4870 5071 5070)
4(5070 5071 5272 5271)
4(5271 5272 5473 5472)
4(5472 5473 5674 5673)
4(5673 5674 5875 5874)
4(5874 5875 6076 6075)
4(6075 6076 6277 6276)
4(6276 6277 6478 6477)
4(6477 6478 6679 6678)
4(6678 6679 6880 6879)
4(6879 6880 7081 7080)
4(7080 7081 7282 7281)
4(7281 7282 7483 7482)
4(7482 7483 7684 7683)
4(7683 7684 7885 7884)
4(7884 7885 8086 8085)
4(8085 8086 8287 8286)
4(4267 4268 4469 4468)
4(4468 4469 4670 4669)
4(4669 4670 4871 4870)
4(4870 4871 5072 5071)
4(5071 5072 5273 5272)
4(5272 5273 5474 5473)
4(5473 5474 5675 5674)
4(5674 5675 5876 5875)
4(5875 5876 6077 6076)
4(6076 6077 6278 6277)
4(6277 6278 6479 6478)
4(6478 6479 6680 6679)
4(6679 6680 6881 6880)
4(6880 6881 7082 7081)
4(7081 7082 7283 7282)
4(7282 7283 7484 7483)
4(7483 7484 7685 7684)
4(7684 7685 7886 7885)
4(7885 7886 8087 8086)
4(8086 8087 8288 8287)
4(4268 4269 4470 4469)
4(4469 4470 4671 4670)
4(4670 4671 4872 4871)
4(4871 4872 5073 5072)
4(5072 5073 5274 5273)
4(5273 5274 5475 5474)
4(5474 5475 5676 5675)
4(5675 5676 5877 5876)
4(5876 5877 6078 6077)
4(6077 6078 6279 6278)
4(6278 6279 6480 6479)
4(6479 6480 6681 6680)
4(6680 6681 6882 6881)
4(6881 6882 7083 7082)
4(7082 7083 7284 7283)
4(7283 7284 7485 7484)
4(7484 7485 7686 7685)
4(7685 7686 7887 7886)
4(7886 7887 8088 8087)
4(8087 8088 8289 8288)
4(4269 4270 4471 4470)
4(4470 4471 4672 4671)
4(4671 4672 4873 4872)
4(4872 4873 5074 5073)
4(5073 5074 5275 5274)
4(5274 5275 5476 5475)
4(5475 5476 5677 5676)
4(5676 5677 5878 5877)
4(5877 5878 6079 6078)
4(6078 6079 6280 6279)
4(6279 6280 6481 6480)
4(6480 6481 6682 6681)
4(6681 6682 6883 6882)
4(6882 6883 7084 7083)
4(7083 7084 7285 7284)
4(7284 7285 7486 7485)
4(7485 7486 7687 7686)
4(7686 7687 7888 7887)
4(7887 7888 8089 8088)
4(8088 8089 8290 8289)
4(4270 4271 4472 4471)
4(4471 4472 4673 4672)
4(4672 4673 4874 4873)
4(4873 4874 5075 5074)
4(5074 5075 5276 5275)
4(5275 5276 5477 5476)
4(5476 5477 5678 5677)
4(5677 5678 5879 5878)
4(5878 5879 6080 6079)
4(6079 6080 6281 6280)
4(6280 6281 6482 6481)
4(6481 6482 6683 6682)
4(6682 6683 6884 6883)
4(6883 6884 7085 7084)
4(7084 7085 7286 7285)
4(7285 7286 7487 7486)
4(7486 7487 7688 7687)
4(7687 7688 7889 7888)
4(7888 7889 8090 8089)
4(8089 8090 8291 8290)
4(4271 4272 4473 4472)
4(4472 4473 4674 4673)
4(4673 4674 4875 4874)
4(4874 4875 5076 5075)
4(5075 5076 5277 5276)
4(5276 5277 5478 5477)
4(5477 5478 5679 5678)
4(5678 5679 5880 5879)
4(5879 5880 6081 6080)
4(6080 6081 6282 6281)
4(6281 6282 6483 6482)
4(6482 6483 6684 6683)
4(6683 6684 6885 6884)
4(6884 6885 7086 7085)
4(7085 7086 7287 7286)
4(7286 7287 7488 7487)
4(7487 7488 7689 7688)
4(7688 7689 7890 7889)
4(7889 7890 8091 8090)
4(8090 8091 8292 8291)
4(4272 4273 4474 4473)
4(4473 4474 4675 4674)
4(4674 4675 4876 4875)
4(4875 4876 5077 5076)
4(5076 5077 5278 5277)
4(5277 5278 5479 5478)
4(5478 5479 5680 5679)
4(5679 5680 5881 5880)
4(5880 5881 6082 6081)
4(6081 6082 6283 6282)
4(6282 6283 6484 6483)
4(6483 6484 6685 6684)
4(6684 6685 6886 6885)
4(6885 6886 7087 7086)
4(7086 7087 7288 7287)
4(7287 7288 7489 7488)
4(7488 7489 7690 7689)
4(7689 7690 7891 7890)
4(7890 7891 8092 8091)
4(8091 8092 8293 8292)
4(4273 4274 4475 4474)
4(4474 4475 4676 4675)
4(4675 4676 4877 4876)
4(4876 4877 5078 5077)
4(5077 5078 5279 5278)
4(5278 5279 5480 5479)
4(5479 5480 5681 5680)
4(5680 5681 5882 5881)
4(5881 5882 6083 6082)
4(6082 6083 6284 6283)
4(6283 6284 6485 6484)
4(6484 6485 6686 6685)
4(6685 6686 6887 6886)
4(6886 6887 7088 7087)
4(7087 7088 7289 7288)
4(7288 7289 7490 7489)
4(7489 7490 7691 7690)
4(7690 7691 7892 7891)
4(7891 7892 8093 8092)
4(8092 8093 8294 8293)
4(4274 4275 4476 4475)
4(4475 4476 4677 4676)
4(4676 4677 4878 4877)
4(4877 4878 5079 5078)
4(5078 5079 5280 5279)
4(5279 5280 5481 5480)
4(5480 5481 5682 5681)
4(5681 5682 5883 5882)
4(5882 5883 6084 6083)
4(6083 6084 6285 6284)
4(6284 6285 6486 6485)
4(6485 6486 6687 6686)
4(6686 6687 6888 6887)
4(6887 6888 7089 7088)
4(7088 7089 7290 7289)
4(7289 7290 7491 7490)
4(7490 7491 7692 7691)
4(7691 7692 7893 7892)
4(7892 7893 8094 8093)
4(8093 8094 8295 8294)
4(4275 4276 4477 4476)
4(4476 4477 4678 4677)
4(4677 4678 4879 4878)
4(4878 4879 5080 5079)
4(5079 5080 5281 5280)
4(5280 5281 5482 5481)
4(5481 5482 5683 5682)
4(5682 5683 5884 5883)
4(5883 5884 6085 6084)
4(6084 6085 6286 6285)
4(6285 6286 6487 6486)
4(6486 6487 6688 6687)
4(6687 6688 6889 6888)
4(6888 6889 7090 7089)
4(7089 7090 7291 7290)
4(7290 7291 7492 7491)
4(7491 7492 7693 7692)
4(7692 7693 7894 7893)
4(7893 7894 8095 8094)
4(8094 8095 8296 8295)
4(4276 4277 4478 4477)
4(4477 4478 4679 4678)
4(4678 4679 4880 4879)
4(4879 4880 5081 5080)
4(5080 5081 5282 5281)
4(5281 5282 5483 5482)
4(5482 5483 5684 5683)
4(5683 5684 5885 5884)
4(5884 5885 6086 6085)
4(6085 6086 6287 6286)
4(6286 6287 6488 6487)
4(6487 6488 6689 6688)
4(6688 6689 6890 6889)
4(6889 6890 7091 7090)
4(7090 7091 7292 7291)
4(7291 7292 7493 7492)
4(7492 7493 7694 7693)
4(7693 7694 7895 7894)
4(7894 7895 8096 8095)
4(8095 8096 8297 8296)
4(4277 4278 4479 4478)
4(4478 4479 4680 4679)
4(4679 4680 4881 4880)
4(4880 4881 5082 5081)
4(5081 5082 5283 5282)
4(5282 5283 5484 5483)
4(5483 5484 5685 5684)
4(5684 5685 5886 5885)
4(5885 5886 6087 6086)
4(6086 6087 6288 6287)
4(6287 6288 6489 6488)
4(6488 6489 6690 6689)
4(6689 6690 6891 6890)
4(6890 6891 7092 7091)
4(7091 7092 7293 7292)
4(7292 7293 7494 7493)
4(7493 7494 7695 7694)
4(7694 7695 7896 7895)
4(7895 7896 8097 8096)
4(8096 8097 8298 8297)
4(4278 4279 4480 4479)
4(4479 4480 4681 4680)
4(4680 4681 4882 4881)
4(4881 4882 5083 5082)
4(5082 5083 5284 5283)
4(5283 5284 5485 5484)
4(5484 5485 5686 5685)
4(5685 5686 5887 5886)
4(5886 5887 6088 6087)
4(6087 6088 6289 6288)
4(6288 6289 6490 6489)
4(6489 6490 6691 6690)
4(6690 6691 6892 6891)
4(6891 6892 7093 7092)
4(7092 7093 7294 7293)
4(7293 7294 7495 7494)
4(7494 7495 7696 7695)
4(7695 7696 7897 7896)
4(7896 7897 8098 8097)
4(8097 8098 8299 8298)
4(4279 4280 4481 4480)
4(4480 4481 4682 4681)
4(4681 4682 4883 4882)
4(4882 4883 5084 5083)
4(5083 5084 5285 5284)
4(5284 5285 5486 5485)
4(5485 5486 5687 5686)
4(5686 5687 5888 5887)
4(5887 5888 6089 6088)
4(6088 6089 6290 6289)
4(6289 6290 6491 6490)
4(6490 6491 6692 6691)
4(6691 6692 6893 6892)
4(6892 6893 7094 7093)
4(7093 7094 7295 7294)
4(7294 7295 7496 7495)
4(7495 7496 7697 7696)
4(7696 7697 7898 7897)
4(7897 7898 8099 8098)
4(8098 8099 8300 8299)
4(4280 4281 4482 4481)
4(4481 4482 4683 4682)
4(4682 4683 4884 4883)
4(4883 4884 5085 5084)
4(5084 5085 5286 5285)
4(5285 5286 5487 5486)
4(5486 5487 5688 5687)
4(5687 5688 5889 5888)
4(5888 5889 6090 6089)
4(6089 6090 6291 6290)
4(6290 6291 6492 6491)
4(6491 6492 6693 6692)
4(6692 6693 6894 6893)
4(6893 6894 7095 7094)
4(7094 7095 7296 7295)
4(7295 7296 7497 7496)
4(7496 7497 7698 7697)
4(7697 7698 7899 7898)
4(7898 7899 8100 8099)
4(8099 8100 8301 8300)
4(4281 4282 4483 4482)
4(4482 4483 4684 4683)
4(4683 4684 4885 4884)
4(4884 4885 5086 5085)
4(5085 5086 5287 5286)
4(5286 5287 5488 5487)
4(5487 5488 5689 5688)
4(5688 5689 5890 5889)
4(5889 5890 6091 6090)
4(6090 6091 6292 6291)
4(6291 6292 6493 6492)
4(6492 6493 6694 6693)
4(6693 6694 6895 6894)
4(6894 6895 7096 7095)
4(7095 7096 7297 7296)
4(7296 7297 7498 7497)
4(7497 7498 7699 7698)
4(7698 7699 7900 7899)
4(7899 7900 8101 8100)
4(8100 8101 8302 8301)
4(4282 4283 4484 4483)
4(4483 4484 4685 4684)
4(4684 4685 4886 4885)
4(4885 4886 5087 5086)
4(5086 5087 5288 5287)
4(5287 5288 5489 5488)
4(5488 5489 5690 5689)
4(5689 5690 5891 5890)
4(5890 5891 6092 6091)
4(6091 6092 6293 6292)
4(6292 6293 6494 6493)
4(6493 6494 6695 6694)
4(6694 6695 6896 6895)
4(6895 6896 7097 7096)
4(7096 7097 7298 7297)
4(7297 7298 7499 7498)
4(7498 7499 7700 7699)
4(7699 7700 7901 7900)
4(7900 7901 8102 8101)
4(8101 8102 8303 8302)
4(4283 4284 4485 4484)
4(4484 4485 4686 4685)
4(4685 4686 4887 4886)
4(4886 4887 5088 5087)
4(5087 5088 5289 5288)
4(5288 5289 5490 5489)
4(5489 5490 5691 5690)
4(5690 5691 5892 5891)
4(5891 5892 6093 6092)
4(6092 6093 6294 6293)
4(6293 6294 6495 6494)
4(6494 6495 6696 6695)
4(6695 6696 6897 6896)
4(6896 6897 7098 7097)
4(7097 7098 7299 7298)
4(7298 7299 7500 7499)
4(7499 7500 7701 7700)
4(7700 7701 7902 7901)
4(7901 7902 8103 8102)
4(8102 8103 8304 8303)
4(4284 4285 4486 4485)
4(4485 4486 4687 4686)
4(4686 4687 4888 4887)
4(4887 4888 5089 5088)
4(5088 5089 5290 5289)
4(5289 5290 5491 5490)
4(5490 5491 5692 5691)
4(5691 5692 5893 5892)
4(5892 5893 6094 6093)
4(6093 6094 6295 6294)
4(6294 6295 6496 6495)
4(6495 6496 6697 6696)
4(6696 6697 6898 6897)
4(6897 6898 7099 7098)
4(7098 7099 7300 7299)
4(7299 7300 7501 7500)
4(7500 7501 7702 7701)
4(7701 7702 7903 7902)
4(7902 7903 8104 8103)
4(8103 8104 8305 8304)
4(4285 4286 4487 4486)
4(4486 4487 4688 4687)
4(4687 4688 4889 4888)
4(4888 4889 5090 5089)
4(5089 5090 5291 5290)
4(5290 5291 5492 5491)
4(5491 5492 5693 5692)
4(5692 5693 5894 5893)
4(5893 5894 6095 6094)
4(6094 6095 6296 6295)
4(6295 6296 6497 6496)
4(6496 6497 6698 6697)
4(6697 6698 6899 6898)
4(6898 6899 7100 7099)
4(7099 7100 7301 7300)
4(7300 7301 7502 7501)
4(7501 7502 7703 7702)
4(7702 7703 7904 7903)
4(7903 7904 8105 8104)
4(8104 8105 8306 8305)
4(4286 4287 4488 4487)
4(4487 4488 4689 4688)
4(4688 4689 4890 4889)
4(4889 4890 5091 5090)
4(5090 5091 5292 5291)
4(5291 5292 5493 5492)
4(5492 5493 5694 5693)
4(5693 5694 5895 5894)
4(5894 5895 6096 6095)
4(6095 6096 6297 6296)
4(6296 6297 6498 6497)
4(6497 6498 6699 6698)
4(6698 6699 6900 6899)
4(6899 6900 7101 7100)
4(7100 7101 7302 7301)
4(7301 7302 7503 7502)
4(7502 7503 7704 7703)
4(7703 7704 7905 7904)
4(7904 7905 8106 8105)
4(8105 8106 8307 8306)
4(4287 4288 4489 4488)
4(4488 4489 4690 4689)
4(4689 4690 4891 4890)
4(4890 4891 5092 5091)
4(5091 5092 5293 5292)
4(5292 5293 5494 5493)
4(5493 5494 5695 5694)
4(5694 5695 5896 5895)
4(5895 5896 6097 6096)
4(6096 6097 6298 6297)
4(6297 6298 6499 6498)
4(6498 6499 6700 6699)
4(6699 6700 6901 6900)
4(6900 6901 7102 7101)
4(7101 7102 7303 7302)
4(7302 7303 7504 7503)
4(7503 7504 7705 7704)
4(7704 7705 7906 7905)
4(7905 7906 8107 8106)
4(8106 8107 8308 8307)
4(4288 4289 4490 4489)
4(4489 4490 4691 4690)
4(4690 4691 4892 4891)
4(4891 4892 5093 5092)
4(5092 5093 5294 5293)
4(5293 5294 5495 5494)
4(5494 5495 5696 5695)
4(5695 5696 5897 5896)
4(5896 5897 6098 6097)
4(6097 6098 6299 6298)
4(6298 6299 6500 6499)
4(6499 6500 6701 6700)
4(6700 6701 6902 6901)
4(6901 6902 7103 7102)
4(7102 7103 7304 7303)
4(7303 7304 7505 7504)
4(7504 7505 7706 7705)
4(7705 7706 7907 7906)
4(7906 7907 8108 8107)
4(8107 8108 8309 8308)
4(4289 4290 4491 4490)
4(4490 4491 4692 4691)
4(4691 4692 4893 4892)
4(4892 4893 5094 5093)
4(5093 5094 5295 5294)
4(5294 5295 5496 5495)
4(5495 5496 5697 5696)
4(5696 5697 5898 5897)
4(5897 5898 6099 6098)
4(6098 6099 6300 6299)
4(6299 6300 6501 6500)
4(6500 6501 6702 6701)
4(6701 6702 6903 6902)
4(6902 6903 7104 7103)
4(7103 7104 7305 7304)
4(7304 7305 7506 7505)
4(7505 7506 7707 7706)
4(7706 7707 7908 7907)
4(7907 7908 8109 8108)
4(8108 8109 8310 8309)
4(4290 4291 4492 4491)
4(4491 4492 4693 4692)
4(4692 4693 4894 4893)
4(4893 4894 5095 5094)
4(5094 5095 5296 5295)
4(5295 5296 5497 5496)
4(5496 5497 5698 5697)
4(5697 5698 5899 5898)
4(5898 5899 6100 6099)
4(6099 6100 6301 6300)
4(6300 6301 6502 6501)
4(6501 6502 6703 6702)
4(6702 6703 6904 6903)
4(6903 6904 7105 7104)
4(7104 7105 7306 7305)
4(7305 7306 7507 7506)
4(7506 7507 7708 7707)
4(7707 7708 7909 7908)
4(7908 7909 8110 8109)
4(8109 8110 8311 8310)
4(4291 4292 4493 4492)
4(4492 4493 4694 4693)
4(4693 4694 4895 4894)
4(4894 4895 5096 5095)
4(5095 5096 5297 5296)
4(5296 5297 5498 5497)
4(5497 5498 5699 5698)
4(5698 5699 5900 5899)
4(5899 5900 6101 6100)
4(6100 6101 6302 6301)
4(6301 6302 6503 6502)
4(6502 6503 6704 6703)
4(6703 6704 6905 6904)
4(6904 6905 7106 7105)
4(7105 7106 7307 7306)
4(7306 7307 7508 7507)
4(7507 7508 7709 7708)
4(7708 7709 7910 7909)
4(7909 7910 8111 8110)
4(8110 8111 8312 8311)
4(4292 4293 4494 4493)
4(4493 4494 4695 4694)
4(4694 4695 4896 4895)
4(4895 4896 5097 5096)
4(5096 5097 5298 5297)
4(5297 5298 5499 5498)
4(5498 5499 5700 5699)
4(5699 5700 5901 5900)
4(5900 5901 6102 6101)
4(6101 6102 6303 6302)
4(6302 6303 6504 6503)
4(6503 6504 6705 6704)
4(6704 6705 6906 6905)
4(6905 6906 7107 7106)
4(7106 7107 7308 7307)
4(7307 7308 7509 7508)
4(7508 7509 7710 7709)
4(7709 7710 7911 7910)
4(7910 7911 8112 8111)
4(8111 8112 8313 8312)
4(4293 4294 4495 4494)
4(4494 4495 4696 4695)
4(4695 4696 4897 4896)
4(4896 4897 5098 5097)
4(5097 5098 5299 5298)
4(5298 5299 5500 5499)
4(5499 5500 5701 5700)
4(5700 5701 5902 5901)
4(5901 5902 6103 6102)
4(6102 6103 6304 6303)
4(6303 6304 6505 6504)
4(6504 6505 6706 6705)
4(6705 6706 6907 6906)
4(6906 6907 7108 7107)
4(7107 7108 7309 7308)
4(7308 7309 7510 7509)
4(7509 7510 7711 7710)
4(7710 7711 7912 7911)
4(7911 7912 8113 8112)
4(8112 8113 8314 8313)
4(4294 4295 4496 4495)
4(4495 4496 4697 4696)
4(4696 4697 4898 4897)
4(4897 4898 5099 5098)
4(5098 5099 5300 5299)
4(5299 5300 5501 5500)
4(5500 5501 5702 5701)
4(5701 5702 5903 5902)
4(5902 5903 6104 6103)
4(6103 6104 6305 6304)
4(6304 6305 6506 6505)
4(6505 6506 6707 6706)
4(6706 6707 6908 6907)
4(6907 6908 7109 7108)
4(7108 7109 7310 7309)
4(7309 7310 7511 7510)
4(7510 7511 7712 7711)
4(7711 7712 7913 7912)
4(7912 7913 8114 8113)
4(8113 8114 8315 8314)
4(4295 4296 4497 4496)
4(4496 4497 4698 4697)
4(4697 4698 4899 4898)
4(4898 4899 5100 5099)
4(5099 5100 5301 5300)
4(5300 5301 5502 5501)
4(5501 5502 5703 5702)
4(5702 5703 5904 5903)
4(5903 5904 6105 6104)
4(6104 6105 6306 6305)
4(6305 6306 6507 6506)
4(6506 6507 6708 6707)
4(6707 6708 6909 6908)
4(6908 6909 7110 7109)
4(7109 7110 7311 7310)
4(7310 7311 7512 7511)
4(7511 7512 7713 7712)
4(7712 7713 7914 7913)
4(7913 7914 8115 8114)
4(8114 8115 8316 8315)
4(4296 4297 4498 4497)
4(4497 4498 4699 4698)
4(4698 4699 4900 4899)
4(4899 4900 5101 5100)
4(5100 5101 5302 5301)
4(5301 5302 5503 5502)
4(5502 5503 5704 5703)
4(5703 5704 5905 5904)
4(5904 5905 6106 6105)
4(6105 6106 6307 6306)
4(6306 6307 6508 6507)
4(6507 6508 6709 6708)
4(6708 6709 6910 6909)
4(6909 6910 7111 7110)
4(7110 7111 7312 7311)
4(7311 7312 7513 7512)
4(7512 7513 7714 7713)
4(7713 7714 7915 7914)
4(7914 7915 8116 8115)
4(8115 8116 8317 8316)
4(4297 4298 4499 4498)
4(4498 4499 4700 4699)
4(4699 4700 4901 4900)
4(4900 4901 5102 5101)
4(5101 5102 5303 5302)
4(5302 5303 5504 5503)
4(5503 5504 5705 5704)
4(5704 5705 5906 5905)
4(5905 5906 6107 6106)
4(6106 6107 6308 6307)
4(6307 6308 6509 6508)
4(6508 6509 6710 6709)
4(6709 6710 6911 6910)
4(6910 6911 7112 7111)
4(7111 7112 7313 7312)
4(7312 7313 7514 7513)
4(7513 7514 7715 7714)
4(7714 7715 7916 7915)
4(7915 7916 8117 8116)
4(8116 8117 8318 8317)
4(4298 4299 4500 4499)
4(4499 4500 4701 4700)
4(4700 4701 4902 4901)
4(4901 4902 5103 5102)
4(5102 5103 5304 5303)
4(5303 5304 5505 5504)
4(5504 5505 5706 5705)
4(5705 5706 5907 5906)
4(5906 5907 6108 6107)
4(6107 6108 6309 6308)
4(6308 6309 6510 6509)
4(6509 6510 6711 6710)
4(6710 6711 6912 6911)
4(6911 6912 7113 7112)
4(7112 7113 7314 7313)
4(7313 7314 7515 7514)
4(7514 7515 7716 7715)
4(7715 7716 7917 7916)
4(7916 7917 8118 8117)
4(8117 8118 8319 8318)
4(4299 4300 4501 4500)
4(4500 4501 4702 4701)
4(4701 4702 4903 4902)
4(4902 4903 5104 5103)
4(5103 5104 5305 5304)
4(5304 5305 5506 5505)
4(5505 5506 5707 5706)
4(5706 5707 5908 5907)
4(5907 5908 6109 6108)
4(6108 6109 6310 6309)
4(6309 6310 6511 6510)
4(6510 6511 6712 6711)
4(6711 6712 6913 6912)
4(6912 6913 7114 7113)
4(7113 7114 7315 7314)
4(7314 7315 7516 7515)
4(7515 7516 7717 7716)
4(7716 7717 7918 7917)
4(7917 7918 8119 8118)
4(8118 8119 8320 8319)
4(4300 4301 4502 4501)
4(4501 4502 4703 4702)
4(4702 4703 4904 4903)
4(4903 4904 5105 5104)
4(5104 5105 5306 5305)
4(5305 5306 5507 5506)
4(5506 5507 5708 5707)
4(5707 5708 5909 5908)
4(5908 5909 6110 6109)
4(6109 6110 6311 6310)
4(6310 6311 6512 6511)
4(6511 6512 6713 6712)
4(6712 6713 6914 6913)
4(6913 6914 7115 7114)
4(7114 7115 7316 7315)
4(7315 7316 7517 7516)
4(7516 7517 7718 7717)
4(7717 7718 7919 7918)
4(7918 7919 8120 8119)
4(8119 8120 8321 8320)
4(4301 4302 4503 4502)
4(4502 4503 4704 4703)
4(4703 4704 4905 4904)
4(4904 4905 5106 5105)
4(5105 5106 5307 5306)
4(5306 5307 5508 5507)
4(5507 5508 5709 5708)
4(5708 5709 5910 5909)
4(5909 5910 6111 6110)
4(6110 6111 6312 6311)
4(6311 6312 6513 6512)
4(6512 6513 6714 6713)
4(6713 6714 6915 6914)
4(6914 6915 7116 7115)
4(7115 7116 7317 7316)
4(7316 7317 7518 7517)
4(7517 7518 7719 7718)
4(7718 7719 7920 7919)
4(7919 7920 8121 8120)
4(8120 8121 8322 8321)
4(4302 4303 4504 4503)
4(4503 4504 4705 4704)
4(4704 4705 4906 4905)
4(4905 4906 5107 5106)
4(5106 5107 5308 5307)
4(5307 5308 5509 5508)
4(5508 5509 5710 5709)
4(5709 5710 5911 5910)
4(5910 5911 6112 6111)
4(6111 6112 6313 6312)
4(6312 6313 6514 6513)
4(6513 6514 6715 6714)
4(6714 6715 6916 6915)
4(6915 6916 7117 7116)
4(7116 7117 7318 7317)
4(7317 7318 7519 7518)
4(7518 7519 7720 7719)
4(7719 7720 7921 7920)
4(7920 7921 8122 8121)
4(8121 8122 8323 8322)
4(4303 4304 4505 4504)
4(4504 4505 4706 4705)
4(4705 4706 4907 4906)
4(4906 4907 5108 5107)
4(5107 5108 5309 5308)
4(5308 5309 5510 5509)
4(5509 5510 5711 5710)
4(5710 5711 5912 5911)
4(5911 5912 6113 6112)
4(6112 6113 6314 6313)
4(6313 6314 6515 6514)
4(6514 6515 6716 6715)
4(6715 6716 6917 6916)
4(6916 6917 7118 7117)
4(7117 7118 7319 7318)
4(7318 7319 7520 7519)
4(7519 7520 7721 7720)
4(7720 7721 7922 7921)
4(7921 7922 8123 8122)
4(8122 8123 8324 8323)
4(4304 4305 4506 4505)
4(4505 4506 4707 4706)
4(4706 4707 4908 4907)
4(4907 4908 5109 5108)
4(5108 5109 5310 5309)
4(5309 5310 5511 5510)
4(5510 5511 5712 5711)
4(5711 5712 5913 5912)
4(5912 5913 6114 6113)
4(6113 6114 6315 6314)
4(6314 6315 6516 6515)
4(6515 6516 6717 6716)
4(6716 6717 6918 6917)
4(6917 6918 7119 7118)
4(7118 7119 7320 7319)
4(7319 7320 7521 7520)
4(7520 7521 7722 7721)
4(7721 7722 7923 7922)
4(7922 7923 8124 8123)
4(8123 8124 8325 8324)
4(4305 4306 4507 4506)
4(4506 4507 4708 4707)
4(4707 4708 4909 4908)
4(4908 4909 5110 5109)
4(5109 5110 5311 5310)
4(5310 5311 5512 5511)
4(5511 5512 5713 5712)
4(5712 5713 5914 5913)
4(5913 5914 6115 6114)
4(6114 6115 6316 6315)
4(6315 6316 6517 6516)
4(6516 6517 6718 6717)
4(6717 6718 6919 6918)
4(6918 6919 7120 7119)
4(7119 7120 7321 7320)
4(7320 7321 7522 7521)
4(7521 7522 7723 7722)
4(7722 7723 7924 7923)
4(7923 7924 8125 8124)
4(8124 8125 8326 8325)
4(4306 4307 4508 4507)
4(4507 4508 4709 4708)
4(4708 4709 4910 4909)
4(4909 4910 5111 5110)
4(5110 5111 5312 5311)
4(5311 5312 5513 5512)
4(5512 5513 5714 5713)
4(5713 5714 5915 5914)
4(5914 5915 6116 6115)
4(6115 6116 6317 6316)
4(6316 6317 6518 6517)
4(6517 6518 6719 6718)
4(6718 6719 6920 6919)
4(6919 6920 7121 7120)
4(7120 7121 7322 7321)
4(7321 7322 7523 7522)
4(7522 7523 7724 7723)
4(7723 7724 7925 7924)
4(7924 7925 8126 8125)
4(8125 8126 8327 8326)
4(4307 4308 4509 4508)
4(4508 4509 4710 4709)
4(4709 4710 4911 4910)
4(4910 4911 5112 5111)
4(5111 5112 5313 5312)
4(5312 5313 5514 5513)
4(5513 5514 5715 5714)
4(5714 5715 5916 5915)
4(5915 5916 6117 6116)
4(6116 6117 6318 6317)
4(6317 6318 6519 6518)
4(6518 6519 6720 6719)
4(6719 6720 6921 6920)
4(6920 6921 7122 7121)
4(7121 7122 7323 7322)
4(7322 7323 7524 7523)
4(7523 7524 7725 7724)
4(7724 7725 7926 7925)
4(7925 7926 8127 8126)
4(8126 8127 8328 8327)
4(4308 4309 4510 4509)
4(4509 4510 4711 4710)
4(4710 4711 4912 4911)
4(4911 4912 5113 5112)
4(5112 5113 5314 5313)
4(5313 5314 5515 5514)
4(5514 5515 5716 5715)
4(5715 5716 5917 5916)
4(5916 5917 6118 6117)
4(6117 6118 6319 6318)
4(6318 6319 6520 6519)
4(6519 6520 6721 6720)
4(6720 6721 6922 6921)
4(6921 6922 7123 7122)
4(7122 7123 7324 7323)
4(7323 7324 7525 7524)
4(7524 7525 7726 7725)
4(7725 7726 7927 7926)
4(7926 7927 8128 8127)
4(8127 8128 8329 8328)
4(4309 4310 4511 4510)
4(4510 4511 4712 4711)
4(4711 4712 4913 4912)
4(4912 4913 5114 5113)
4(5113 5114 5315 5314)
4(5314 5315 5516 5515)
4(5515 5516 5717 5716)
4(5716 5717 5918 5917)
4(5917 5918 6119 6118)
4(6118 6119 6320 6319)
4(6319 6320 6521 6520)
4(6520 6521 6722 6721)
4(6721 6722 6923 6922)
4(6922 6923 7124 7123)
4(7123 7124 7325 7324)
4(7324 7325 7526 7525)
4(7525 7526 7727 7726)
4(7726 7727 7928 7927)
4(7927 7928 8129 8128)
4(8128 8129 8330 8329)
4(4310 4311 4512 4511)
4(4511 4512 4713 4712)
4(4712 4713 4914 4913)
4(4913 4914 5115 5114)
4(5114 5115 5316 5315)
4(5315 5316 5517 5516)
4(5516 5517 5718 5717)
4(5717 5718 5919 5918)
4(5918 5919 6120 6119)
4(6119 6120 6321 6320)
4(6320 6321 6522 6521)
4(6521 6522 6723 6722)
4(6722 6723 6924 6923)
4(6923 6924 7125 7124)
4(7124 7125 7326 7325)
4(7325 7326 7527 7526)
4(7526 7527 7728 7727)
4(7727 7728 7929 7928)
4(7928 7929 8130 8129)
4(8129 8130 8331 8330)
4(4311 4312 4513 4512)
4(4512 4513 4714 4713)
4(4713 4714 4915 4914)
4(4914 4915 5116 5115)
4(5115 5116 5317 5316)
4(5316 5317 5518 5517)
4(5517 5518 5719 5718)
4(5718 5719 5920 5919)
4(5919 5920 6121 6120)
4(6120 6121 6322 6321)
4(6321 6322 6523 6522)
4(6522 6523 6724 6723)
4(6723 6724 6925 6924)
4(6924 6925 7126 7125)
4(7125 7126 7327 7326)
4(7326 7327 7528 7527)
4(7527 7528 7729 7728)
4(7728 7729 7930 7929)
4(7929 7930 8131 8130)
4(8130 8131 8332 8331)
4(4312 4313 4514 4513)
4(4513 4514 4715 4714)
4(4714 4715 4916 4915)
4(4915 4916 5117 5116)
4(5116 5117 5318 5317)
4(5317 5318 5519 5518)
4(5518 5519 5720 5719)
4(5719 5720 5921 5920)
4(5920 5921 6122 6121)
4(6121 6122 6323 6322)
4(6322 6323 6524 6523)
4(6523 6524 6725 6724)
4(6724 6725 6926 6925)
4(6925 6926 7127 7126)
4(7126 7127 7328 7327)
4(7327 7328 7529 7528)
4(7528 7529 7730 7729)
4(7729 7730 7931 7930)
4(7930 7931 8132 8131)
4(8131 8132 8333 8332)
4(4313 4314 4515 4514)
4(4514 4515 4716 4715)
4(4715 4716 4917 4916)
4(4916 4917 5118 5117)
4(5117 5118 5319 5318)
4(5318 5319 5520 5519)
4(5519 5520 5721 5720)
4(5720 5721 5922 5921)
4(5921 5922 6123 6122)
4(6122 6123 6324 6323)
4(6323 6324 6525 6524)
4(6524 6525 6726 6725)
4(6725 6726 6927 6926)
4(6926 6927 7128 7127)
4(7127 7128 7329 7328)
4(7328 7329 7530 7529)
4(7529 7530 7731 7730)
4(7730 7731 7932 7931)
4(7931 7932 8133 8132)
4(8132 8133 8334 8333)
4(4314 4315 4516 4515)
4(4515 4516 4717 4716)
4(4716 4717 4918 4917)
4(4917 4918 5119 5118)
4(5118 5119 5320 5319)
4(5319 5320 5521 5520)
4(5520 5521 5722 5721)
4(5721 5722 5923 5922)
4(5922 5923 6124 6123)
4(6123 6124 6325 6324)
4(6324 6325 6526 6525)
4(6525 6526 6727 6726)
4(6726 6727 6928 6927)
4(6927 6928 7129 7128)
4(7128 7129 7330 7329)
4(7329 7330 7531 7530)
4(7530 7531 7732 7731)
4(7731 7732 7933 7932)
4(7932 7933 8134 8133)
4(8133 8134 8335 8334)
4(4315 4316 4517 4516)
4(4516 4517 4718 4717)
4(4717 4718 4919 4918)
4(4918 4919 5120 5119)
4(5119 5120 5321 5320)
4(5320 5321 5522 5521)
4(5521 5522 5723 5722)
4(5722 5723 5924 5923)
4(5923 5924 6125 6124)
4(6124 6125 6326 6325)
4(6325 6326 6527 6526)
4(6526 6527 6728 6727)
4(6727 6728 6929 6928)
4(6928 6929 7130 7129)
4(7129 7130 7331 7330)
4(7330 7331 7532 7531)
4(7531 7532 7733 7732)
4(7732 7733 7934 7933)
4(7933 7934 8135 8134)
4(8134 8135 8336 8335)
4(4316 4317 4518 4517)
4(4517 4518 4719 4718)
4(4718 4719 4920 4919)
4(4919 4920 5121 5120)
4(5120 5121 5322 5321)
4(5321 5322 5523 5522)
4(5522 5523 5724 5723)
4(5723 5724 5925 5924)
4(5924 5925 6126 6125)
4(6125 6126 6327 6326)
4(6326 6327 6528 6527)
4(6527 6528 6729 6728)
4(6728 6729 6930 6929)
4(6929 6930 7131 7130)
4(7130 7131 7332 7331)
4(7331 7332 7533 7532)
4(7532 7533 7734 7733)
4(7733 7734 7935 7934)
4(7934 7935 8136 8135)
4(8135 8136 8337 8336)
4(4317 4318 4519 4518)
4(4518 4519 4720 4719)
4(4719 4720 4921 4920)
4(4920 4921 5122 5121)
4(5121 5122 5323 5322)
4(5322 5323 5524 5523)
4(5523 5524 5725 5724)
4(5724 5725 5926 5925)
4(5925 5926 6127 6126)
4(6126 6127 6328 6327)
4(6327 6328 6529 6528)
4(6528 6529 6730 6729)
4(6729 6730 6931 6930)
4(6930 6931 7132 7131)
4(7131 7132 7333 7332)
4(7332 7333 7534 7533)
4(7533 7534 7735 7734)
4(7734 7735 7936 7935)
4(7935 7936 8137 8136)
4(8136 8137 8338 8337)
4(4318 4319 4520 4519)
4(4519 4520 4721 4720)
4(4720 4721 4922 4921)
4(4921 4922 5123 5122)
4(5122 5123 5324 5323)
4(5323 5324 5525 5524)
4(5524 5525 5726 5725)
4(5725 5726 5927 5926)
4(5926 5927 6128 6127)
4(6127 6128 6329 6328)
4(6328 6329 6530 6529)
4(6529 6530 6731 6730)
4(6730 6731 6932 6931)
4(6931 6932 7133 7132)
4(7132 7133 7334 7333)
4(7333 7334 7535 7534)
4(7534 7535 7736 7735)
4(7735 7736 7937 7936)
4(7936 7937 8138 8137)
4(8137 8138 8339 8338)
4(4319 4320 4521 4520)
4(4520 4521 4722 4721)
4(4721 4722 4923 4922)
4(4922 4923 5124 5123)
4(5123 5124 5325 5324)
4(5324 5325 5526 5525)
4(5525 5526 5727 5726)
4(5726 5727 5928 5927)
4(5927 5928 6129 6128)
4(6128 6129 6330 6329)
4(6329 6330 6531 6530)
4(6530 6531 6732 6731)
4(6731 6732 6933 6932)
4(6932 6933 7134 7133)
4(7133 7134 7335 7334)
4(7334 7335 7536 7535)
4(7535 7536 7737 7736)
4(7736 7737 7938 7937)
4(7937 7938 8139 8138)
4(8138 8139 8340 8339)
4(4320 4321 4522 4521)
4(4521 4522 4723 4722)
4(4722 4723 4924 4923)
4(4923 4924 5125 5124)
4(5124 5125 5326 5325)
4(5325 5326 5527 5526)
4(5526 5527 5728 5727)
4(5727 5728 5929 5928)
4(5928 5929 6130 6129)
4(6129 6130 6331 6330)
4(6330 6331 6532 6531)
4(6531 6532 6733 6732)
4(6732 6733 6934 6933)
4(6933 6934 7135 7134)
4(7134 7135 7336 7335)
4(7335 7336 7537 7536)
4(7536 7537 7738 7737)
4(7737 7738 7939 7938)
4(7938 7939 8140 8139)
4(8139 8140 8341 8340)
4(4321 4322 4523 4522)
4(4522 4523 4724 4723)
4(4723 4724 4925 4924)
4(4924 4925 5126 5125)
4(5125 5126 5327 5326)
4(5326 5327 5528 5527)
4(5527 5528 5729 5728)
4(5728 5729 5930 5929)
4(5929 5930 6131 6130)
4(6130 6131 6332 6331)
4(6331 6332 6533 6532)
4(6532 6533 6734 6733)
4(6733 6734 6935 6934)
4(6934 6935 7136 7135)
4(7135 7136 7337 7336)
4(7336 7337 7538 7537)
4(7537 7538 7739 7738)
4(7738 7739 7940 7939)
4(7939 7940 8141 8140)
4(8140 8141 8342 8341)
4(4322 4323 4524 4523)
4(4523 4524 4725 4724)
4(4724 4725 4926 4925)
4(4925 4926 5127 5126)
4(5126 5127 5328 5327)
4(5327 5328 5529 5528)
4(5528 5529 5730 5729)
4(5729 5730 5931 5930)
4(5930 5931 6132 6131)
4(6131 6132 6333 6332)
4(6332 6333 6534 6533)
4(6533 6534 6735 6734)
4(6734 6735 6936 6935)
4(6935 6936 7137 7136)
4(7136 7137 7338 7337)
4(7337 7338 7539 7538)
4(7538 7539 7740 7739)
4(7739 7740 7941 7940)
4(7940 7941 8142 8141)
4(8141 8142 8343 8342)
4(4323 4324 4525 4524)
4(4524 4525 4726 4725)
4(4725 4726 4927 4926)
4(4926 4927 5128 5127)
4(5127 5128 5329 5328)
4(5328 5329 5530 5529)
4(5529 5530 5731 5730)
4(5730 5731 5932 5931)
4(5931 5932 6133 6132)
4(6132 6133 6334 6333)
4(6333 6334 6535 6534)
4(6534 6535 6736 6735)
4(6735 6736 6937 6936)
4(6936 6937 7138 7137)
4(7137 7138 7339 7338)
4(7338 7339 7540 7539)
4(7539 7540 7741 7740)
4(7740 7741 7942 7941)
4(7941 7942 8143 8142)
4(8142 8143 8344 8343)
4(4324 4325 4526 4525)
4(4525 4526 4727 4726)
4(4726 4727 4928 4927)
4(4927 4928 5129 5128)
4(5128 5129 5330 5329)
4(5329 5330 5531 5530)
4(5530 5531 5732 5731)
4(5731 5732 5933 5932)
4(5932 5933 6134 6133)
4(6133 6134 6335 6334)
4(6334 6335 6536 6535)
4(6535 6536 6737 6736)
4(6736 6737 6938 6937)
4(6937 6938 7139 7138)
4(7138 7139 7340 7339)
4(7339 7340 7541 7540)
4(7540 7541 7742 7741)
4(7741 7742 7943 7942)
4(7942 7943 8144 8143)
4(8143 8144 8345 8344)
4(4325 4326 4527 4526)
4(4526 4527 4728 4727)
4(4727 4728 4929 4928)
4(4928 4929 5130 5129)
4(5129 5130 5331 5330)
4(5330 5331 5532 5531)
4(5531 5532 5733 5732)
4(5732 5733 5934 5933)
4(5933 5934 6135 6134)
4(6134 6135 6336 6335)
4(6335 6336 6537 6536)
4(6536 6537 6738 6737)
4(6737 6738 6939 6938)
4(6938 6939 7140 7139)
4(7139 7140 7341 7340)
4(7340 7341 7542 7541)
4(7541 7542 7743 7742)
4(7742 7743 7944 7943)
4(7943 7944 8145 8144)
4(8144 8145 8346 8345)
4(4326 4327 4528 4527)
4(4527 4528 4729 4728)
4(4728 4729 4930 4929)
4(4929 4930 5131 5130)
4(5130 5131 5332 5331)
4(5331 5332 5533 5532)
4(5532 5533 5734 5733)
4(5733 5734 5935 5934)
4(5934 5935 6136 6135)
4(6135 6136 6337 6336)
4(6336 6337 6538 6537)
4(6537 6538 6739 6738)
4(6738 6739 6940 6939)
4(6939 6940 7141 7140)
4(7140 7141 7342 7341)
4(7341 7342 7543 7542)
4(7542 7543 7744 7743)
4(7743 7744 7945 7944)
4(7944 7945 8146 8145)
4(8145 8146 8347 8346)
4(4327 4328 4529 4528)
4(4528 4529 4730 4729)
4(4729 4730 4931 4930)
4(4930 4931 5132 5131)
4(5131 5132 5333 5332)
4(5332 5333 5534 5533)
4(5533 5534 5735 5734)
4(5734 5735 5936 5935)
4(5935 5936 6137 6136)
4(6136 6137 6338 6337)
4(6337 6338 6539 6538)
4(6538 6539 6740 6739)
4(6739 6740 6941 6940)
4(6940 6941 7142 7141)
4(7141 7142 7343 7342)
4(7342 7343 7544 7543)
4(7543 7544 7745 7744)
4(7744 7745 7946 7945)
4(7945 7946 8147 8146)
4(8146 8147 8348 8347)
4(4328 4329 4530 4529)
4(4529 4530 4731 4730)
4(4730 4731 4932 4931)
4(4931 4932 5133 5132)
4(5132 5133 5334 5333)
4(5333 5334 5535 5534)
4(5534 5535 5736 5735)
4(5735 5736 5937 5936)
4(5936 5937 6138 6137)
4(6137 6138 6339 6338)
4(6338 6339 6540 6539)
4(6539 6540 6741 6740)
4(6740 6741 6942 6941)
4(6941 6942 7143 7142)
4(7142 7143 7344 7343)
4(7343 7344 7545 7544)
4(7544 7545 7746 7745)
4(7745 7746 7947 7946)
4(7946 7947 8148 8147)
4(8147 8148 8349 8348)
4(4329 4330 4531 4530)
4(4530 4531 4732 4731)
4(4731 4732 4933 4932)
4(4932 4933 5134 5133)
4(5133 5134 5335 5334)
4(5334 5335 5536 5535)
4(5535 5536 5737 5736)
4(5736 5737 5938 5937)
4(5937 5938 6139 6138)
4(6138 6139 6340 6339)
4(6339 6340 6541 6540)
4(6540 6541 6742 6741)
4(6741 6742 6943 6942)
4(6942 6943 7144 7143)
4(7143 7144 7345 7344)
4(7344 7345 7546 7545)
4(7545 7546 7747 7746)
4(7746 7747 7948 7947)
4(7947 7948 8149 8148)
4(8148 8149 8350 8349)
4(4330 4331 4532 4531)
4(4531 4532 4733 4732)
4(4732 4733 4934 4933)
4(4933 4934 5135 5134)
4(5134 5135 5336 5335)
4(5335 5336 5537 5536)
4(5536 5537 5738 5737)
4(5737 5738 5939 5938)
4(5938 5939 6140 6139)
4(6139 6140 6341 6340)
4(6340 6341 6542 6541)
4(6541 6542 6743 6742)
4(6742 6743 6944 6943)
4(6943 6944 7145 7144)
4(7144 7145 7346 7345)
4(7345 7346 7547 7546)
4(7546 7547 7748 7747)
4(7747 7748 7949 7948)
4(7948 7949 8150 8149)
4(8149 8150 8351 8350)
4(4331 4332 4533 4532)
4(4532 4533 4734 4733)
4(4733 4734 4935 4934)
4(4934 4935 5136 5135)
4(5135 5136 5337 5336)
4(5336 5337 5538 5537)
4(5537 5538 5739 5738)
4(5738 5739 5940 5939)
4(5939 5940 6141 6140)
4(6140 6141 6342 6341)
4(6341 6342 6543 6542)
4(6542 6543 6744 6743)
4(6743 6744 6945 6944)
4(6944 6945 7146 7145)
4(7145 7146 7347 7346)
4(7346 7347 7548 7547)
4(7547 7548 7749 7748)
4(7748 7749 7950 7949)
4(7949 7950 8151 8150)
4(8150 8151 8352 8351)
4(4332 4333 4534 4533)
4(4533 4534 4735 4734)
4(4734 4735 4936 4935)
4(4935 4936 5137 5136)
4(5136 5137 5338 5337)
4(5337 5338 5539 5538)
4(5538 5539 5740 5739)
4(5739 5740 5941 5940)
4(5940 5941 6142 6141)
4(6141 6142 6343 6342)
4(6342 6343 6544 6543)
4(6543 6544 6745 6744)
4(6744 6745 6946 6945)
4(6945 6946 7147 7146)
4(7146 7147 7348 7347)
4(7347 7348 7549 7548)
4(7548 7549 7750 7749)
4(7749 7750 7951 7950)
4(7950 7951 8152 8151)
4(8151 8152 8353 8352)
4(4333 4334 4535 4534)
4(4534 4535 4736 4735)
4(4735 4736 4937 4936)
4(4936 4937 5138 5137)
4(5137 5138 5339 5338)
4(5338 5339 5540 5539)
4(5539 5540 5741 5740)
4(5740 5741 5942 5941)
4(5941 5942 6143 6142)
4(6142 6143 6344 6343)
4(6343 6344 6545 6544)
4(6544 6545 6746 6745)
4(6745 6746 6947 6946)
4(6946 6947 7148 7147)
4(7147 7148 7349 7348)
4(7348 7349 7550 7549)
4(7549 7550 7751 7750)
4(7750 7751 7952 7951)
4(7951 7952 8153 8152)
4(8152 8153 8354 8353)
4(4334 4335 4536 4535)
4(4535 4536 4737 4736)
4(4736 4737 4938 4937)
4(4937 4938 5139 5138)
4(5138 5139 5340 5339)
4(5339 5340 5541 5540)
4(5540 5541 5742 5741)
4(5741 5742 5943 5942)
4(5942 5943 6144 6143)
4(6143 6144 6345 6344)
4(6344 6345 6546 6545)
4(6545 6546 6747 6746)
4(6746 6747 6948 6947)
4(6947 6948 7149 7148)
4(7148 7149 7350 7349)
4(7349 7350 7551 7550)
4(7550 7551 7752 7751)
4(7751 7752 7953 7952)
4(7952 7953 8154 8153)
4(8153 8154 8355 8354)
4(4335 4336 4537 4536)
4(4536 4537 4738 4737)
4(4737 4738 4939 4938)
4(4938 4939 5140 5139)
4(5139 5140 5341 5340)
4(5340 5341 5542 5541)
4(5541 5542 5743 5742)
4(5742 5743 5944 5943)
4(5943 5944 6145 6144)
4(6144 6145 6346 6345)
4(6345 6346 6547 6546)
4(6546 6547 6748 6747)
4(6747 6748 6949 6948)
4(6948 6949 7150 7149)
4(7149 7150 7351 7350)
4(7350 7351 7552 7551)
4(7551 7552 7753 7752)
4(7752 7753 7954 7953)
4(7953 7954 8155 8154)
4(8154 8155 8356 8355)
4(4336 4337 4538 4537)
4(4537 4538 4739 4738)
4(4738 4739 4940 4939)
4(4939 4940 5141 5140)
4(5140 5141 5342 5341)
4(5341 5342 5543 5542)
4(5542 5543 5744 5743)
4(5743 5744 5945 5944)
4(5944 5945 6146 6145)
4(6145 6146 6347 6346)
4(6346 6347 6548 6547)
4(6547 6548 6749 6748)
4(6748 6749 6950 6949)
4(6949 6950 7151 7150)
4(7150 7151 7352 7351)
4(7351 7352 7553 7552)
4(7552 7553 7754 7753)
4(7753 7754 7955 7954)
4(7954 7955 8156 8155)
4(8155 8156 8357 8356)
4(4337 4338 4539 4538)
4(4538 4539 4740 4739)
4(4739 4740 4941 4940)
4(4940 4941 5142 5141)
4(5141 5142 5343 5342)
4(5342 5343 5544 5543)
4(5543 5544 5745 5744)
4(5744 5745 5946 5945)
4(5945 5946 6147 6146)
4(6146 6147 6348 6347)
4(6347 6348 6549 6548)
4(6548 6549 6750 6749)
4(6749 6750 6951 6950)
4(6950 6951 7152 7151)
4(7151 7152 7353 7352)
4(7352 7353 7554 7553)
4(7553 7554 7755 7754)
4(7754 7755 7956 7955)
4(7955 7956 8157 8156)
4(8156 8157 8358 8357)
4(4338 4339 4540 4539)
4(4539 4540 4741 4740)
4(4740 4741 4942 4941)
4(4941 4942 5143 5142)
4(5142 5143 5344 5343)
4(5343 5344 5545 5544)
4(5544 5545 5746 5745)
4(5745 5746 5947 5946)
4(5946 5947 6148 6147)
4(6147 6148 6349 6348)
4(6348 6349 6550 6549)
4(6549 6550 6751 6750)
4(6750 6751 6952 6951)
4(6951 6952 7153 7152)
4(7152 7153 7354 7353)
4(7353 7354 7555 7554)
4(7554 7555 7756 7755)
4(7755 7756 7957 7956)
4(7956 7957 8158 8157)
4(8157 8158 8359 8358)
4(4339 4340 4541 4540)
4(4540 4541 4742 4741)
4(4741 4742 4943 4942)
4(4942 4943 5144 5143)
4(5143 5144 5345 5344)
4(5344 5345 5546 5545)
4(5545 5546 5747 5746)
4(5746 5747 5948 5947)
4(5947 5948 6149 6148)
4(6148 6149 6350 6349)
4(6349 6350 6551 6550)
4(6550 6551 6752 6751)
4(6751 6752 6953 6952)
4(6952 6953 7154 7153)
4(7153 7154 7355 7354)
4(7354 7355 7556 7555)
4(7555 7556 7757 7756)
4(7756 7757 7958 7957)
4(7957 7958 8159 8158)
4(8158 8159 8360 8359)
4(4340 4341 4542 4541)
4(4541 4542 4743 4742)
4(4742 4743 4944 4943)
4(4943 4944 5145 5144)
4(5144 5145 5346 5345)
4(5345 5346 5547 5546)
4(5546 5547 5748 5747)
4(5747 5748 5949 5948)
4(5948 5949 6150 6149)
4(6149 6150 6351 6350)
4(6350 6351 6552 6551)
4(6551 6552 6753 6752)
4(6752 6753 6954 6953)
4(6953 6954 7155 7154)
4(7154 7155 7356 7355)
4(7355 7356 7557 7556)
4(7556 7557 7758 7757)
4(7757 7758 7959 7958)
4(7958 7959 8160 8159)
4(8159 8160 8361 8360)
4(4341 4342 4543 4542)
4(4542 4543 4744 4743)
4(4743 4744 4945 4944)
4(4944 4945 5146 5145)
4(5145 5146 5347 5346)
4(5346 5347 5548 5547)
4(5547 5548 5749 5748)
4(5748 5749 5950 5949)
4(5949 5950 6151 6150)
4(6150 6151 6352 6351)
4(6351 6352 6553 6552)
4(6552 6553 6754 6753)
4(6753 6754 6955 6954)
4(6954 6955 7156 7155)
4(7155 7156 7357 7356)
4(7356 7357 7558 7557)
4(7557 7558 7759 7758)
4(7758 7759 7960 7959)
4(7959 7960 8161 8160)
4(8160 8161 8362 8361)
4(4342 4343 4544 4543)
4(4543 4544 4745 4744)
4(4744 4745 4946 4945)
4(4945 4946 5147 5146)
4(5146 5147 5348 5347)
4(5347 5348 5549 5548)
4(5548 5549 5750 5749)
4(5749 5750 5951 5950)
4(5950 5951 6152 6151)
4(6151 6152 6353 6352)
4(6352 6353 6554 6553)
4(6553 6554 6755 6754)
4(6754 6755 6956 6955)
4(6955 6956 7157 7156)
4(7156 7157 7358 7357)
4(7357 7358 7559 7558)
4(7558 7559 7760 7759)
4(7759 7760 7961 7960)
4(7960 7961 8162 8161)
4(8161 8162 8363 8362)
4(4343 4344 4545 4544)
4(4544 4545 4746 4745)
4(4745 4746 4947 4946)
4(4946 4947 5148 5147)
4(5147 5148 5349 5348)
4(5348 5349 5550 5549)
4(5549 5550 5751 5750)
4(5750 5751 5952 5951)
4(5951 5952 6153 6152)
4(6152 6153 6354 6353)
4(6353 6354 6555 6554)
4(6554 6555 6756 6755)
4(6755 6756 6957 6956)
4(6956 6957 7158 7157)
4(7157 7158 7359 7358)
4(7358 7359 7560 7559)
4(7559 7560 7761 7760)
4(7760 7761 7962 7961)
4(7961 7962 8163 8162)
4(8162 8163 8364 8363)
4(4344 4345 4546 4545)
4(4545 4546 4747 4746)
4(4746 4747 4948 4947)
4(4947 4948 5149 5148)
4(5148 5149 5350 5349)
4(5349 5350 5551 5550)
4(5550 5551 5752 5751)
4(5751 5752 5953 5952)
4(5952 5953 6154 6153)
4(6153 6154 6355 6354)
4(6354 6355 6556 6555)
4(6555 6556 6757 6756)
4(6756 6757 6958 6957)
4(6957 6958 7159 7158)
4(7158 7159 7360 7359)
4(7359 7360 7561 7560)
4(7560 7561 7762 7761)
4(7761 7762 7963 7962)
4(7962 7963 8164 8163)
4(8163 8164 8365 8364)
4(4345 4346 4547 4546)
4(4546 4547 4748 4747)
4(4747 4748 4949 4948)
4(4948 4949 5150 5149)
4(5149 5150 5351 5350)
4(5350 5351 5552 5551)
4(5551 5552 5753 5752)
4(5752 5753 5954 5953)
4(5953 5954 6155 6154)
4(6154 6155 6356 6355)
4(6355 6356 6557 6556)
4(6556 6557 6758 6757)
4(6757 6758 6959 6958)
4(6958 6959 7160 7159)
4(7159 7160 7361 7360)
4(7360 7361 7562 7561)
4(7561 7562 7763 7762)
4(7762 7763 7964 7963)
4(7963 7964 8165 8164)
4(8164 8165 8366 8365)
4(4346 4347 4548 4547)
4(4547 4548 4749 4748)
4(4748 4749 4950 4949)
4(4949 4950 5151 5150)
4(5150 5151 5352 5351)
4(5351 5352 5553 5552)
4(5552 5553 5754 5753)
4(5753 5754 5955 5954)
4(5954 5955 6156 6155)
4(6155 6156 6357 6356)
4(6356 6357 6558 6557)
4(6557 6558 6759 6758)
4(6758 6759 6960 6959)
4(6959 6960 7161 7160)
4(7160 7161 7362 7361)
4(7361 7362 7563 7562)
4(7562 7563 7764 7763)
4(7763 7764 7965 7964)
4(7964 7965 8166 8165)
4(8165 8166 8367 8366)
4(4347 4348 4549 4548)
4(4548 4549 4750 4749)
4(4749 4750 4951 4950)
4(4950 4951 5152 5151)
4(5151 5152 5353 5352)
4(5352 5353 5554 5553)
4(5553 5554 5755 5754)
4(5754 5755 5956 5955)
4(5955 5956 6157 6156)
4(6156 6157 6358 6357)
4(6357 6358 6559 6558)
4(6558 6559 6760 6759)
4(6759 6760 6961 6960)
4(6960 6961 7162 7161)
4(7161 7162 7363 7362)
4(7362 7363 7564 7563)
4(7563 7564 7765 7764)
4(7764 7765 7966 7965)
4(7965 7966 8167 8166)
4(8166 8167 8368 8367)
4(4348 4349 4550 4549)
4(4549 4550 4751 4750)
4(4750 4751 4952 4951)
4(4951 4952 5153 5152)
4(5152 5153 5354 5353)
4(5353 5354 5555 5554)
4(5554 5555 5756 5755)
4(5755 5756 5957 5956)
4(5956 5957 6158 6157)
4(6157 6158 6359 6358)
4(6358 6359 6560 6559)
4(6559 6560 6761 6760)
4(6760 6761 6962 6961)
4(6961 6962 7163 7162)
4(7162 7163 7364 7363)
4(7363 7364 7565 7564)
4(7564 7565 7766 7765)
4(7765 7766 7967 7966)
4(7966 7967 8168 8167)
4(8167 8168 8369 8368)
4(4349 4350 4551 4550)
4(4550 4551 4752 4751)
4(4751 4752 4953 4952)
4(4952 4953 5154 5153)
4(5153 5154 5355 5354)
4(5354 5355 5556 5555)
4(5555 5556 5757 5756)
4(5756 5757 5958 5957)
4(5957 5958 6159 6158)
4(6158 6159 6360 6359)
4(6359 6360 6561 6560)
4(6560 6561 6762 6761)
4(6761 6762 6963 6962)
4(6962 6963 7164 7163)
4(7163 7164 7365 7364)
4(7364 7365 7566 7565)
4(7565 7566 7767 7766)
4(7766 7767 7968 7967)
4(7967 7968 8169 8168)
4(8168 8169 8370 8369)
4(4350 4351 4552 4551)
4(4551 4552 4753 4752)
4(4752 4753 4954 4953)
4(4953 4954 5155 5154)
4(5154 5155 5356 5355)
4(5355 5356 5557 5556)
4(5556 5557 5758 5757)
4(5757 5758 5959 5958)
4(5958 5959 6160 6159)
4(6159 6160 6361 6360)
4(6360 6361 6562 6561)
4(6561 6562 6763 6762)
4(6762 6763 6964 6963)
4(6963 6964 7165 7164)
4(7164 7165 7366 7365)
4(7365 7366 7567 7566)
4(7566 7567 7768 7767)
4(7767 7768 7969 7968)
4(7968 7969 8170 8169)
4(8169 8170 8371 8370)
4(4351 4352 4553 4552)
4(4552 4553 4754 4753)
4(4753 4754 4955 4954)
4(4954 4955 5156 5155)
4(5155 5156 5357 5356)
4(5356 5357 5558 5557)
4(5557 5558 5759 5758)
4(5758 5759 5960 5959)
4(5959 5960 6161 6160)
4(6160 6161 6362 6361)
4(6361 6362 6563 6562)
4(6562 6563 6764 6763)
4(6763 6764 6965 6964)
4(6964 6965 7166 7165)
4(7165 7166 7367 7366)
4(7366 7367 7568 7567)
4(7567 7568 7769 7768)
4(7768 7769 7970 7969)
4(7969 7970 8171 8170)
4(8170 8171 8372 8371)
4(4352 4353 4554 4553)
4(4553 4554 4755 4754)
4(4754 4755 4956 4955)
4(4955 4956 5157 5156)
4(5156 5157 5358 5357)
4(5357 5358 5559 5558)
4(5558 5559 5760 5759)
4(5759 5760 5961 5960)
4(5960 5961 6162 6161)
4(6161 6162 6363 6362)
4(6362 6363 6564 6563)
4(6563 6564 6765 6764)
4(6764 6765 6966 6965)
4(6965 6966 7167 7166)
4(7166 7167 7368 7367)
4(7367 7368 7569 7568)
4(7568 7569 7770 7769)
4(7769 7770 7971 7970)
4(7970 7971 8172 8171)
4(8171 8172 8373 8372)
4(4353 4354 4555 4554)
4(4554 4555 4756 4755)
4(4755 4756 4957 4956)
4(4956 4957 5158 5157)
4(5157 5158 5359 5358)
4(5358 5359 5560 5559)
4(5559 5560 5761 5760)
4(5760 5761 5962 5961)
4(5961 5962 6163 6162)
4(6162 6163 6364 6363)
4(6363 6364 6565 6564)
4(6564 6565 6766 6765)
4(6765 6766 6967 6966)
4(6966 6967 7168 7167)
4(7167 7168 7369 7368)
4(7368 7369 7570 7569)
4(7569 7570 7771 7770)
4(7770 7771 7972 7971)
4(7971 7972 8173 8172)
4(8172 8173 8374 8373)
4(4354 4355 4556 4555)
4(4555 4556 4757 4756)
4(4756 4757 4958 4957)
4(4957 4958 5159 5158)
4(5158 5159 5360 5359)
4(5359 5360 5561 5560)
4(5560 5561 5762 5761)
4(5761 5762 5963 5962)
4(5962 5963 6164 6163)
4(6163 6164 6365 6364)
4(6364 6365 6566 6565)
4(6565 6566 6767 6766)
4(6766 6767 6968 6967)
4(6967 6968 7169 7168)
4(7168 7169 7370 7369)
4(7369 7370 7571 7570)
4(7570 7571 7772 7771)
4(7771 7772 7973 7972)
4(7972 7973 8174 8173)
4(8173 8174 8375 8374)
4(4355 4356 4557 4556)
4(4556 4557 4758 4757)
4(4757 4758 4959 4958)
4(4958 4959 5160 5159)
4(5159 5160 5361 5360)
4(5360 5361 5562 5561)
4(5561 5562 5763 5762)
4(5762 5763 5964 5963)
4(5963 5964 6165 6164)
4(6164 6165 6366 6365)
4(6365 6366 6567 6566)
4(6566 6567 6768 6767)
4(6767 6768 6969 6968)
4(6968 6969 7170 7169)
4(7169 7170 7371 7370)
4(7370 7371 7572 7571)
4(7571 7572 7773 7772)
4(7772 7773 7974 7973)
4(7973 7974 8175 8174)
4(8174 8175 8376 8375)
4(4356 4357 4558 4557)
4(4557 4558 4759 4758)
4(4758 4759 4960 4959)
4(4959 4960 5161 5160)
4(5160 5161 5362 5361)
4(5361 5362 5563 5562)
4(5562 5563 5764 5763)
4(5763 5764 5965 5964)
4(5964 5965 6166 6165)
4(6165 6166 6367 6366)
4(6366 6367 6568 6567)
4(6567 6568 6769 6768)
4(6768 6769 6970 6969)
4(6969 6970 7171 7170)
4(7170 7171 7372 7371)
4(7371 7372 7573 7572)
4(7572 7573 7774 7773)
4(7773 7774 7975 7974)
4(7974 7975 8176 8175)
4(8175 8176 8377 8376)
4(4357 4358 4559 4558)
4(4558 4559 4760 4759)
4(4759 4760 4961 4960)
4(4960 4961 5162 5161)
4(5161 5162 5363 5362)
4(5362 5363 5564 5563)
4(5563 5564 5765 5764)
4(5764 5765 5966 5965)
4(5965 5966 6167 6166)
4(6166 6167 6368 6367)
4(6367 6368 6569 6568)
4(6568 6569 6770 6769)
4(6769 6770 6971 6970)
4(6970 6971 7172 7171)
4(7171 7172 7373 7372)
4(7372 7373 7574 7573)
4(7573 7574 7775 7774)
4(7774 7775 7976 7975)
4(7975 7976 8177 8176)
4(8176 8177 8378 8377)
4(4358 4359 4560 4559)
4(4559 4560 4761 4760)
4(4760 4761 4962 4961)
4(4961 4962 5163 5162)
4(5162 5163 5364 5363)
4(5363 5364 5565 5564)
4(5564 5565 5766 5765)
4(5765 5766 5967 5966)
4(5966 5967 6168 6167)
4(6167 6168 6369 6368)
4(6368 6369 6570 6569)
4(6569 6570 6771 6770)
4(6770 6771 6972 6971)
4(6971 6972 7173 7172)
4(7172 7173 7374 7373)
4(7373 7374 7575 7574)
4(7574 7575 7776 7775)
4(7775 7776 7977 7976)
4(7976 7977 8178 8177)
4(8177 8178 8379 8378)
4(4359 4360 4561 4560)
4(4560 4561 4762 4761)
4(4761 4762 4963 4962)
4(4962 4963 5164 5163)
4(5163 5164 5365 5364)
4(5364 5365 5566 5565)
4(5565 5566 5767 5766)
4(5766 5767 5968 5967)
4(5967 5968 6169 6168)
4(6168 6169 6370 6369)
4(6369 6370 6571 6570)
4(6570 6571 6772 6771)
4(6771 6772 6973 6972)
4(6972 6973 7174 7173)
4(7173 7174 7375 7374)
4(7374 7375 7576 7575)
4(7575 7576 7777 7776)
4(7776 7777 7978 7977)
4(7977 7978 8179 8178)
4(8178 8179 8380 8379)
4(4360 4361 4562 4561)
4(4561 4562 4763 4762)
4(4762 4763 4964 4963)
4(4963 4964 5165 5164)
4(5164 5165 5366 5365)
4(5365 5366 5567 5566)
4(5566 5567 5768 5767)
4(5767 5768 5969 5968)
4(5968 5969 6170 6169)
4(6169 6170 6371 6370)
4(6370 6371 6572 6571)
4(6571 6572 6773 6772)
4(6772 6773 6974 6973)
4(6973 6974 7175 7174)
4(7174 7175 7376 7375)
4(7375 7376 7577 7576)
4(7576 7577 7778 7777)
4(7777 7778 7979 7978)
4(7978 7979 8180 8179)
4(8179 8180 8381 8380)
4(4361 4362 4563 4562)
4(4562 4563 4764 4763)
4(4763 4764 4965 4964)
4(4964 4965 5166 5165)
4(5165 5166 5367 5366)
4(5366 5367 5568 5567)
4(5567 5568 5769 5768)
4(5768 5769 5970 5969)
4(5969 5970 6171 6170)
4(6170 6171 6372 6371)
4(6371 6372 6573 6572)
4(6572 6573 6774 6773)
4(6773 6774 6975 6974)
4(6974 6975 7176 7175)
4(7175 7176 7377 7376)
4(7376 7377 7578 7577)
4(7577 7578 7779 7778)
4(7778 7779 7980 7979)
4(7979 7980 8181 8180)
4(8180 8181 8382 8381)
4(4362 4363 4564 4563)
4(4563 4564 4765 4764)
4(4764 4765 4966 4965)
4(4965 4966 5167 5166)
4(5166 5167 5368 5367)
4(5367 5368 5569 5568)
4(5568 5569 5770 5769)
4(5769 5770 5971 5970)
4(5970 5971 6172 6171)
4(6171 6172 6373 6372)
4(6372 6373 6574 6573)
4(6573 6574 6775 6774)
4(6774 6775 6976 6975)
4(6975 6976 7177 7176)
4(7176 7177 7378 7377)
4(7377 7378 7579 7578)
4(7578 7579 7780 7779)
4(7779 7780 7981 7980)
4(7980 7981 8182 8181)
4(8181 8182 8383 8382)
4(4363 4364 4565 4564)
4(4564 4565 4766 4765)
4(4765 4766 4967 4966)
4(4966 4967 5168 5167)
4(5167 5168 5369 5368)
4(5368 5369 5570 5569)
4(5569 5570 5771 5770)
4(5770 5771 5972 5971)
4(5971 5972 6173 6172)
4(6172 6173 6374 6373)
4(6373 6374 6575 6574)
4(6574 6575 6776 6775)
4(6775 6776 6977 6976)
4(6976 6977 7178 7177)
4(7177 7178 7379 7378)
4(7378 7379 7580 7579)
4(7579 7580 7781 7780)
4(7780 7781 7982 7981)
4(7981 7982 8183 8182)
4(8182 8183 8384 8383)
4(4364 4365 4566 4565)
4(4565 4566 4767 4766)
4(4766 4767 4968 4967)
4(4967 4968 5169 5168)
4(5168 5169 5370 5369)
4(5369 5370 5571 5570)
4(5570 5571 5772 5771)
4(5771 5772 5973 5972)
4(5972 5973 6174 6173)
4(6173 6174 6375 6374)
4(6374 6375 6576 6575)
4(6575 6576 6777 6776)
4(6776 6777 6978 6977)
4(6977 6978 7179 7178)
4(7178 7179 7380 7379)
4(7379 7380 7581 7580)
4(7580 7581 7782 7781)
4(7781 7782 7983 7982)
4(7982 7983 8184 8183)
4(8183 8184 8385 8384)
4(4365 4366 4567 4566)
4(4566 4567 4768 4767)
4(4767 4768 4969 4968)
4(4968 4969 5170 5169)
4(5169 5170 5371 5370)
4(5370 5371 5572 5571)
4(5571 5572 5773 5772)
4(5772 5773 5974 5973)
4(5973 5974 6175 6174)
4(6174 6175 6376 6375)
4(6375 6376 6577 6576)
4(6576 6577 6778 6777)
4(6777 6778 6979 6978)
4(6978 6979 7180 7179)
4(7179 7180 7381 7380)
4(7380 7381 7582 7581)
4(7581 7582 7783 7782)
4(7782 7783 7984 7983)
4(7983 7984 8185 8184)
4(8184 8185 8386 8385)
4(4366 4367 4568 4567)
4(4567 4568 4769 4768)
4(4768 4769 4970 4969)
4(4969 4970 5171 5170)
4(5170 5171 5372 5371)
4(5371 5372 5573 5572)
4(5572 5573 5774 5773)
4(5773 5774 5975 5974)
4(5974 5975 6176 6175)
4(6175 6176 6377 6376)
4(6376 6377 6578 6577)
4(6577 6578 6779 6778)
4(6778 6779 6980 6979)
4(6979 6980 7181 7180)
4(7180 7181 7382 7381)
4(7381 7382 7583 7582)
4(7582 7583 7784 7783)
4(7783 7784 7985 7984)
4(7984 7985 8186 8185)
4(8185 8186 8387 8386)
4(4367 4368 4569 4568)
4(4568 4569 4770 4769)
4(4769 4770 4971 4970)
4(4970 4971 5172 5171)
4(5171 5172 5373 5372)
4(5372 5373 5574 5573)
4(5573 5574 5775 5774)
4(5774 5775 5976 5975)
4(5975 5976 6177 6176)
4(6176 6177 6378 6377)
4(6377 6378 6579 6578)
4(6578 6579 6780 6779)
4(6779 6780 6981 6980)
4(6980 6981 7182 7181)
4(7181 7182 7383 7382)
4(7382 7383 7584 7583)
4(7583 7584 7785 7784)
4(7784 7785 7986 7985)
4(7985 7986 8187 8186)
4(8186 8187 8388 8387)
4(4368 4369 4570 4569)
4(4569 4570 4771 4770)
4(4770 4771 4972 4971)
4(4971 4972 5173 5172)
4(5172 5173 5374 5373)
4(5373 5374 5575 5574)
4(5574 5575 5776 5775)
4(5775 5776 5977 5976)
4(5976 5977 6178 6177)
4(6177 6178 6379 6378)
4(6378 6379 6580 6579)
4(6579 6580 6781 6780)
4(6780 6781 6982 6981)
4(6981 6982 7183 7182)
4(7182 7183 7384 7383)
4(7383 7384 7585 7584)
4(7584 7585 7786 7785)
4(7785 7786 7987 7986)
4(7986 7987 8188 8187)
4(8187 8188 8389 8388)
4(4369 4370 4571 4570)
4(4570 4571 4772 4771)
4(4771 4772 4973 4972)
4(4972 4973 5174 5173)
4(5173 5174 5375 5374)
4(5374 5375 5576 5575)
4(5575 5576 5777 5776)
4(5776 5777 5978 5977)
4(5977 5978 6179 6178)
4(6178 6179 6380 6379)
4(6379 6380 6581 6580)
4(6580 6581 6782 6781)
4(6781 6782 6983 6982)
4(6982 6983 7184 7183)
4(7183 7184 7385 7384)
4(7384 7385 7586 7585)
4(7585 7586 7787 7786)
4(7786 7787 7988 7987)
4(7987 7988 8189 8188)
4(8188 8189 8390 8389)
4(4370 4371 4572 4571)
4(4571 4572 4773 4772)
4(4772 4773 4974 4973)
4(4973 4974 5175 5174)
4(5174 5175 5376 5375)
4(5375 5376 5577 5576)
4(5576 5577 5778 5777)
4(5777 5778 5979 5978)
4(5978 5979 6180 6179)
4(6179 6180 6381 6380)
4(6380 6381 6582 6581)
4(6581 6582 6783 6782)
4(6782 6783 6984 6983)
4(6983 6984 7185 7184)
4(7184 7185 7386 7385)
4(7385 7386 7587 7586)
4(7586 7587 7788 7787)
4(7787 7788 7989 7988)
4(7988 7989 8190 8189)
4(8189 8190 8391 8390)
4(4371 4372 4573 4572)
4(4572 4573 4774 4773)
4(4773 4774 4975 4974)
4(4974 4975 5176 5175)
4(5175 5176 5377 5376)
4(5376 5377 5578 5577)
4(5577 5578 5779 5778)
4(5778 5779 5980 5979)
4(5979 5980 6181 6180)
4(6180 6181 6382 6381)
4(6381 6382 6583 6582)
4(6582 6583 6784 6783)
4(6783 6784 6985 6984)
4(6984 6985 7186 7185)
4(7185 7186 7387 7386)
4(7386 7387 7588 7587)
4(7587 7588 7789 7788)
4(7788 7789 7990 7989)
4(7989 7990 8191 8190)
4(8190 8191 8392 8391)
4(4372 4373 4574 4573)
4(4573 4574 4775 4774)
4(4774 4775 4976 4975)
4(4975 4976 5177 5176)
4(5176 5177 5378 5377)
4(5377 5378 5579 5578)
4(5578 5579 5780 5779)
4(5779 5780 5981 5980)
4(5980 5981 6182 6181)
4(6181 6182 6383 6382)
4(6382 6383 6584 6583)
4(6583 6584 6785 6784)
4(6784 6785 6986 6985)
4(6985 6986 7187 7186)
4(7186 7187 7388 7387)
4(7387 7388 7589 7588)
4(7588 7589 7790 7789)
4(7789 7790 7991 7990)
4(7990 7991 8192 8191)
4(8191 8192 8393 8392)
4(4373 4374 4575 4574)
4(4574 4575 4776 4775)
4(4775 4776 4977 4976)
4(4976 4977 5178 5177)
4(5177 5178 5379 5378)
4(5378 5379 5580 5579)
4(5579 5580 5781 5780)
4(5780 5781 5982 5981)
4(5981 5982 6183 6182)
4(6182 6183 6384 6383)
4(6383 6384 6585 6584)
4(6584 6585 6786 6785)
4(6785 6786 6987 6986)
4(6986 6987 7188 7187)
4(7187 7188 7389 7388)
4(7388 7389 7590 7589)
4(7589 7590 7791 7790)
4(7790 7791 7992 7991)
4(7991 7992 8193 8192)
4(8192 8193 8394 8393)
4(4374 4375 4576 4575)
4(4575 4576 4777 4776)
4(4776 4777 4978 4977)
4(4977 4978 5179 5178)
4(5178 5179 5380 5379)
4(5379 5380 5581 5580)
4(5580 5581 5782 5781)
4(5781 5782 5983 5982)
4(5982 5983 6184 6183)
4(6183 6184 6385 6384)
4(6384 6385 6586 6585)
4(6585 6586 6787 6786)
4(6786 6787 6988 6987)
4(6987 6988 7189 7188)
4(7188 7189 7390 7389)
4(7389 7390 7591 7590)
4(7590 7591 7792 7791)
4(7791 7792 7993 7992)
4(7992 7993 8194 8193)
4(8193 8194 8395 8394)
4(4375 4376 4577 4576)
4(4576 4577 4778 4777)
4(4777 4778 4979 4978)
4(4978 4979 5180 5179)
4(5179 5180 5381 5380)
4(5380 5381 5582 5581)
4(5581 5582 5783 5782)
4(5782 5783 5984 5983)
4(5983 5984 6185 6184)
4(6184 6185 6386 6385)
4(6385 6386 6587 6586)
4(6586 6587 6788 6787)
4(6787 6788 6989 6988)
4(6988 6989 7190 7189)
4(7189 7190 7391 7390)
4(7390 7391 7592 7591)
4(7591 7592 7793 7792)
4(7792 7793 7994 7993)
4(7993 7994 8195 8194)
4(8194 8195 8396 8395)
4(4376 4377 4578 4577)
4(4577 4578 4779 4778)
4(4778 4779 4980 4979)
4(4979 4980 5181 5180)
4(5180 5181 5382 5381)
4(5381 5382 5583 5582)
4(5582 5583 5784 5783)
4(5783 5784 5985 5984)
4(5984 5985 6186 6185)
4(6185 6186 6387 6386)
4(6386 6387 6588 6587)
4(6587 6588 6789 6788)
4(6788 6789 6990 6989)
4(6989 6990 7191 7190)
4(7190 7191 7392 7391)
4(7391 7392 7593 7592)
4(7592 7593 7794 7793)
4(7793 7794 7995 7994)
4(7994 7995 8196 8195)
4(8195 8196 8397 8396)
4(4377 4378 4579 4578)
4(4578 4579 4780 4779)
4(4779 4780 4981 4980)
4(4980 4981 5182 5181)
4(5181 5182 5383 5382)
4(5382 5383 5584 5583)
4(5583 5584 5785 5784)
4(5784 5785 5986 5985)
4(5985 5986 6187 6186)
4(6186 6187 6388 6387)
4(6387 6388 6589 6588)
4(6588 6589 6790 6789)
4(6789 6790 6991 6990)
4(6990 6991 7192 7191)
4(7191 7192 7393 7392)
4(7392 7393 7594 7593)
4(7593 7594 7795 7794)
4(7794 7795 7996 7995)
4(7995 7996 8197 8196)
4(8196 8197 8398 8397)
4(4378 4379 4580 4579)
4(4579 4580 4781 4780)
4(4780 4781 4982 4981)
4(4981 4982 5183 5182)
4(5182 5183 5384 5383)
4(5383 5384 5585 5584)
4(5584 5585 5786 5785)
4(5785 5786 5987 5986)
4(5986 5987 6188 6187)
4(6187 6188 6389 6388)
4(6388 6389 6590 6589)
4(6589 6590 6791 6790)
4(6790 6791 6992 6991)
4(6991 6992 7193 7192)
4(7192 7193 7394 7393)
4(7393 7394 7595 7594)
4(7594 7595 7796 7795)
4(7795 7796 7997 7996)
4(7996 7997 8198 8197)
4(8197 8198 8399 8398)
4(4379 4380 4581 4580)
4(4580 4581 4782 4781)
4(4781 4782 4983 4982)
4(4982 4983 5184 5183)
4(5183 5184 5385 5384)
4(5384 5385 5586 5585)
4(5585 5586 5787 5786)
4(5786 5787 5988 5987)
4(5987 5988 6189 6188)
4(6188 6189 6390 6389)
4(6389 6390 6591 6590)
4(6590 6591 6792 6791)
4(6791 6792 6993 6992)
4(6992 6993 7194 7193)
4(7193 7194 7395 7394)
4(7394 7395 7596 7595)
4(7595 7596 7797 7796)
4(7796 7797 7998 7997)
4(7997 7998 8199 8198)
4(8198 8199 8400 8399)
4(4380 4381 4582 4581)
4(4581 4582 4783 4782)
4(4782 4783 4984 4983)
4(4983 4984 5185 5184)
4(5184 5185 5386 5385)
4(5385 5386 5587 5586)
4(5586 5587 5788 5787)
4(5787 5788 5989 5988)
4(5988 5989 6190 6189)
4(6189 6190 6391 6390)
4(6390 6391 6592 6591)
4(6591 6592 6793 6792)
4(6792 6793 6994 6993)
4(6993 6994 7195 7194)
4(7194 7195 7396 7395)
4(7395 7396 7597 7596)
4(7596 7597 7798 7797)
4(7797 7798 7999 7998)
4(7998 7999 8200 8199)
4(8199 8200 8401 8400)
4(4381 4382 4583 4582)
4(4582 4583 4784 4783)
4(4783 4784 4985 4984)
4(4984 4985 5186 5185)
4(5185 5186 5387 5386)
4(5386 5387 5588 5587)
4(5587 5588 5789 5788)
4(5788 5789 5990 5989)
4(5989 5990 6191 6190)
4(6190 6191 6392 6391)
4(6391 6392 6593 6592)
4(6592 6593 6794 6793)
4(6793 6794 6995 6994)
4(6994 6995 7196 7195)
4(7195 7196 7397 7396)
4(7396 7397 7598 7597)
4(7597 7598 7799 7798)
4(7798 7799 8000 7999)
4(7999 8000 8201 8200)
4(8200 8201 8402 8401)
4(4382 4383 4584 4583)
4(4583 4584 4785 4784)
4(4784 4785 4986 4985)
4(4985 4986 5187 5186)
4(5186 5187 5388 5387)
4(5387 5388 5589 5588)
4(5588 5589 5790 5789)
4(5789 5790 5991 5990)
4(5990 5991 6192 6191)
4(6191 6192 6393 6392)
4(6392 6393 6594 6593)
4(6593 6594 6795 6794)
4(6794 6795 6996 6995)
4(6995 6996 7197 7196)
4(7196 7197 7398 7397)
4(7397 7398 7599 7598)
4(7598 7599 7800 7799)
4(7799 7800 8001 8000)
4(8000 8001 8202 8201)
4(8201 8202 8403 8402)
4(4383 4384 4585 4584)
4(4584 4585 4786 4785)
4(4785 4786 4987 4986)
4(4986 4987 5188 5187)
4(5187 5188 5389 5388)
4(5388 5389 5590 5589)
4(5589 5590 5791 5790)
4(5790 5791 5992 5991)
4(5991 5992 6193 6192)
4(6192 6193 6394 6393)
4(6393 6394 6595 6594)
4(6594 6595 6796 6795)
4(6795 6796 6997 6996)
4(6996 6997 7198 7197)
4(7197 7198 7399 7398)
4(7398 7399 7600 7599)
4(7599 7600 7801 7800)
4(7800 7801 8002 8001)
4(8001 8002 8203 8202)
4(8202 8203 8404 8403)
4(4384 4385 4586 4585)
4(4585 4586 4787 4786)
4(4786 4787 4988 4987)
4(4987 4988 5189 5188)
4(5188 5189 5390 5389)
4(5389 5390 5591 5590)
4(5590 5591 5792 5791)
4(5791 5792 5993 5992)
4(5992 5993 6194 6193)
4(6193 6194 6395 6394)
4(6394 6395 6596 6595)
4(6595 6596 6797 6796)
4(6796 6797 6998 6997)
4(6997 6998 7199 7198)
4(7198 7199 7400 7399)
4(7399 7400 7601 7600)
4(7600 7601 7802 7801)
4(7801 7802 8003 8002)
4(8002 8003 8204 8203)
4(8203 8204 8405 8404)
4(4385 4386 4587 4586)
4(4586 4587 4788 4787)
4(4787 4788 4989 4988)
4(4988 4989 5190 5189)
4(5189 5190 5391 5390)
4(5390 5391 5592 5591)
4(5591 5592 5793 5792)
4(5792 5793 5994 5993)
4(5993 5994 6195 6194)
4(6194 6195 6396 6395)
4(6395 6396 6597 6596)
4(6596 6597 6798 6797)
4(6797 6798 6999 6998)
4(6998 6999 7200 7199)
4(7199 7200 7401 7400)
4(7400 7401 7602 7601)
4(7601 7602 7803 7802)
4(7802 7803 8004 8003)
4(8003 8004 8205 8204)
4(8204 8205 8406 8405)
4(4386 4387 4588 4587)
4(4587 4588 4789 4788)
4(4788 4789 4990 4989)
4(4989 4990 5191 5190)
4(5190 5191 5392 5391)
4(5391 5392 5593 5592)
4(5592 5593 5794 5793)
4(5793 5794 5995 5994)
4(5994 5995 6196 6195)
4(6195 6196 6397 6396)
4(6396 6397 6598 6597)
4(6597 6598 6799 6798)
4(6798 6799 7000 6999)
4(6999 7000 7201 7200)
4(7200 7201 7402 7401)
4(7401 7402 7603 7602)
4(7602 7603 7804 7803)
4(7803 7804 8005 8004)
4(8004 8005 8206 8205)
4(8205 8206 8407 8406)
4(4387 4388 4589 4588)
4(4588 4589 4790 4789)
4(4789 4790 4991 4990)
4(4990 4991 5192 5191)
4(5191 5192 5393 5392)
4(5392 5393 5594 5593)
4(5593 5594 5795 5794)
4(5794 5795 5996 5995)
4(5995 5996 6197 6196)
4(6196 6197 6398 6397)
4(6397 6398 6599 6598)
4(6598 6599 6800 6799)
4(6799 6800 7001 7000)
4(7000 7001 7202 7201)
4(7201 7202 7403 7402)
4(7402 7403 7604 7603)
4(7603 7604 7805 7804)
4(7804 7805 8006 8005)
4(8005 8006 8207 8206)
4(8206 8207 8408 8407)
4(4388 4389 4590 4589)
4(4589 4590 4791 4790)
4(4790 4791 4992 4991)
4(4991 4992 5193 5192)
4(5192 5193 5394 5393)
4(5393 5394 5595 5594)
4(5594 5595 5796 5795)
4(5795 5796 5997 5996)
4(5996 5997 6198 6197)
4(6197 6198 6399 6398)
4(6398 6399 6600 6599)
4(6599 6600 6801 6800)
4(6800 6801 7002 7001)
4(7001 7002 7203 7202)
4(7202 7203 7404 7403)
4(7403 7404 7605 7604)
4(7604 7605 7806 7805)
4(7805 7806 8007 8006)
4(8006 8007 8208 8207)
4(8207 8208 8409 8408)
4(4389 4390 4591 4590)
4(4590 4591 4792 4791)
4(4791 4792 4993 4992)
4(4992 4993 5194 5193)
4(5193 5194 5395 5394)
4(5394 5395 5596 5595)
4(5595 5596 5797 5796)
4(5796 5797 5998 5997)
4(5997 5998 6199 6198)
4(6198 6199 6400 6399)
4(6399 6400 6601 6600)
4(6600 6601 6802 6801)
4(6801 6802 7003 7002)
4(7002 7003 7204 7203)
4(7203 7204 7405 7404)
4(7404 7405 7606 7605)
4(7605 7606 7807 7806)
4(7806 7807 8008 8007)
4(8007 8008 8209 8208)
4(8208 8209 8410 8409)
4(4390 4391 4592 4591)
4(4591 4592 4793 4792)
4(4792 4793 4994 4993)
4(4993 4994 5195 5194)
4(5194 5195 5396 5395)
4(5395 5396 5597 5596)
4(5596 5597 5798 5797)
4(5797 5798 5999 5998)
4(5998 5999 6200 6199)
4(6199 6200 6401 6400)
4(6400 6401 6602 6601)
4(6601 6602 6803 6802)
4(6802 6803 7004 7003)
4(7003 7004 7205 7204)
4(7204 7205 7406 7405)
4(7405 7406 7607 7606)
4(7606 7607 7808 7807)
4(7807 7808 8009 8008)
4(8008 8009 8210 8209)
4(8209 8210 8411 8410)
4(4391 4392 4593 4592)
4(4592 4593 4794 4793)
4(4793 4794 4995 4994)
4(4994 4995 5196 5195)
4(5195 5196 5397 5396)
4(5396 5397 5598 5597)
4(5597 5598 5799 5798)
4(5798 5799 6000 5999)
4(5999 6000 6201 6200)
4(6200 6201 6402 6401)
4(6401 6402 6603 6602)
4(6602 6603 6804 6803)
4(6803 6804 7005 7004)
4(7004 7005 7206 7205)
4(7205 7206 7407 7406)
4(7406 7407 7608 7607)
4(7607 7608 7809 7808)
4(7808 7809 8010 8009)
4(8009 8010 8211 8210)
4(8210 8211 8412 8411)
4(4392 4393 4594 4593)
4(4593 4594 4795 4794)
4(4794 4795 4996 4995)
4(4995 4996 5197 5196)
4(5196 5197 5398 5397)
4(5397 5398 5599 5598)
4(5598 5599 5800 5799)
4(5799 5800 6001 6000)
4(6000 6001 6202 6201)
4(6201 6202 6403 6402)
4(6402 6403 6604 6603)
4(6603 6604 6805 6804)
4(6804 6805 7006 7005)
4(7005 7006 7207 7206)
4(7206 7207 7408 7407)
4(7407 7408 7609 7608)
4(7608 7609 7810 7809)
4(7809 7810 8011 8010)
4(8010 8011 8212 8211)
4(8211 8212 8413 8412)
4(4393 4394 4595 4594)
4(4594 4595 4796 4795)
4(4795 4796 4997 4996)
4(4996 4997 5198 5197)
4(5197 5198 5399 5398)
4(5398 5399 5600 5599)
4(5599 5600 5801 5800)
4(5800 5801 6002 6001)
4(6001 6002 6203 6202)
4(6202 6203 6404 6403)
4(6403 6404 6605 6604)
4(6604 6605 6806 6805)
4(6805 6806 7007 7006)
4(7006 7007 7208 7207)
4(7207 7208 7409 7408)
4(7408 7409 7610 7609)
4(7609 7610 7811 7810)
4(7810 7811 8012 8011)
4(8011 8012 8213 8212)
4(8212 8213 8414 8413)
4(4394 4395 4596 4595)
4(4595 4596 4797 4796)
4(4796 4797 4998 4997)
4(4997 4998 5199 5198)
4(5198 5199 5400 5399)
4(5399 5400 5601 5600)
4(5600 5601 5802 5801)
4(5801 5802 6003 6002)
4(6002 6003 6204 6203)
4(6203 6204 6405 6404)
4(6404 6405 6606 6605)
4(6605 6606 6807 6806)
4(6806 6807 7008 7007)
4(7007 7008 7209 7208)
4(7208 7209 7410 7409)
4(7409 7410 7611 7610)
4(7610 7611 7812 7811)
4(7811 7812 8013 8012)
4(8012 8013 8214 8213)
4(8213 8214 8415 8414)
4(4395 4396 4597 4596)
4(4596 4597 4798 4797)
4(4797 4798 4999 4998)
4(4998 4999 5200 5199)
4(5199 5200 5401 5400)
4(5400 5401 5602 5601)
4(5601 5602 5803 5802)
4(5802 5803 6004 6003)
4(6003 6004 6205 6204)
4(6204 6205 6406 6405)
4(6405 6406 6607 6606)
4(6606 6607 6808 6807)
4(6807 6808 7009 7008)
4(7008 7009 7210 7209)
4(7209 7210 7411 7410)
4(7410 7411 7612 7611)
4(7611 7612 7813 7812)
4(7812 7813 8014 8013)
4(8013 8014 8215 8214)
4(8214 8215 8416 8415)
4(4396 4397 4598 4597)
4(4597 4598 4799 4798)
4(4798 4799 5000 4999)
4(4999 5000 5201 5200)
4(5200 5201 5402 5401)
4(5401 5402 5603 5602)
4(5602 5603 5804 5803)
4(5803 5804 6005 6004)
4(6004 6005 6206 6205)
4(6205 6206 6407 6406)
4(6406 6407 6608 6607)
4(6607 6608 6809 6808)
4(6808 6809 7010 7009)
4(7009 7010 7211 7210)
4(7210 7211 7412 7411)
4(7411 7412 7613 7612)
4(7612 7613 7814 7813)
4(7813 7814 8015 8014)
4(8014 8015 8216 8215)
4(8215 8216 8417 8416)
4(4397 4398 4599 4598)
4(4598 4599 4800 4799)
4(4799 4800 5001 5000)
4(5000 5001 5202 5201)
4(5201 5202 5403 5402)
4(5402 5403 5604 5603)
4(5603 5604 5805 5804)
4(5804 5805 6006 6005)
4(6005 6006 6207 6206)
4(6206 6207 6408 6407)
4(6407 6408 6609 6608)
4(6608 6609 6810 6809)
4(6809 6810 7011 7010)
4(7010 7011 7212 7211)
4(7211 7212 7413 7412)
4(7412 7413 7614 7613)
4(7613 7614 7815 7814)
4(7814 7815 8016 8015)
4(8015 8016 8217 8216)
4(8216 8217 8418 8417)
4(4398 4399 4600 4599)
4(4599 4600 4801 4800)
4(4800 4801 5002 5001)
4(5001 5002 5203 5202)
4(5202 5203 5404 5403)
4(5403 5404 5605 5604)
4(5604 5605 5806 5805)
4(5805 5806 6007 6006)
4(6006 6007 6208 6207)
4(6207 6208 6409 6408)
4(6408 6409 6610 6609)
4(6609 6610 6811 6810)
4(6810 6811 7012 7011)
4(7011 7012 7213 7212)
4(7212 7213 7414 7413)
4(7413 7414 7615 7614)
4(7614 7615 7816 7815)
4(7815 7816 8017 8016)
4(8016 8017 8218 8217)
4(8217 8218 8419 8418)
4(4399 4400 4601 4600)
4(4600 4601 4802 4801)
4(4801 4802 5003 5002)
4(5002 5003 5204 5203)
4(5203 5204 5405 5404)
4(5404 5405 5606 5605)
4(5605 5606 5807 5806)
4(5806 5807 6008 6007)
4(6007 6008 6209 6208)
4(6208 6209 6410 6409)
4(6409 6410 6611 6610)
4(6610 6611 6812 6811)
4(6811 6812 7013 7012)
4(7012 7013 7214 7213)
4(7213 7214 7415 7414)
4(7414 7415 7616 7615)
4(7615 7616 7817 7816)
4(7816 7817 8018 8017)
4(8017 8018 8219 8218)
4(8218 8219 8420 8419)
4(4400 4401 4602 4601)
4(4601 4602 4803 4802)
4(4802 4803 5004 5003)
4(5003 5004 5205 5204)
4(5204 5205 5406 5405)
4(5405 5406 5607 5606)
4(5606 5607 5808 5807)
4(5807 5808 6009 6008)
4(6008 6009 6210 6209)
4(6209 6210 6411 6410)
4(6410 6411 6612 6611)
4(6611 6612 6813 6812)
4(6812 6813 7014 7013)
4(7013 7014 7215 7214)
4(7214 7215 7416 7415)
4(7415 7416 7617 7616)
4(7616 7617 7818 7817)
4(7817 7818 8019 8018)
4(8018 8019 8220 8219)
4(8219 8220 8421 8420)
4(4401 4402 4603 4602)
4(4602 4603 4804 4803)
4(4803 4804 5005 5004)
4(5004 5005 5206 5205)
4(5205 5206 5407 5406)
4(5406 5407 5608 5607)
4(5607 5608 5809 5808)
4(5808 5809 6010 6009)
4(6009 6010 6211 6210)
4(6210 6211 6412 6411)
4(6411 6412 6613 6612)
4(6612 6613 6814 6813)
4(6813 6814 7015 7014)
4(7014 7015 7216 7215)
4(7215 7216 7417 7416)
4(7416 7417 7618 7617)
4(7617 7618 7819 7818)
4(7818 7819 8020 8019)
4(8019 8020 8221 8220)
4(8220 8221 8422 8421)
4(4402 4403 4604 4603)
4(4603 4604 4805 4804)
4(4804 4805 5006 5005)
4(5005 5006 5207 5206)
4(5206 5207 5408 5407)
4(5407 5408 5609 5608)
4(5608 5609 5810 5809)
4(5809 5810 6011 6010)
4(6010 6011 6212 6211)
4(6211 6212 6413 6412)
4(6412 6413 6614 6613)
4(6613 6614 6815 6814)
4(6814 6815 7016 7015)
4(7015 7016 7217 7216)
4(7216 7217 7418 7417)
4(7417 7418 7619 7618)
4(7618 7619 7820 7819)
4(7819 7820 8021 8020)
4(8020 8021 8222 8221)
4(8221 8222 8423 8422)
4(4403 4404 4605 4604)
4(4604 4605 4806 4805)
4(4805 4806 5007 5006)
4(5006 5007 5208 5207)
4(5207 5208 5409 5408)
4(5408 5409 5610 5609)
4(5609 5610 5811 5810)
4(5810 5811 6012 6011)
4(6011 6012 6213 6212)
4(6212 6213 6414 6413)
4(6413 6414 6615 6614)
4(6614 6615 6816 6815)
4(6815 6816 7017 7016)
4(7016 7017 7218 7217)
4(7217 7218 7419 7418)
4(7418 7419 7620 7619)
4(7619 7620 7821 7820)
4(7820 7821 8022 8021)
4(8021 8022 8223 8222)
4(8222 8223 8424 8423)
4(4404 4405 4606 4605)
4(4605 4606 4807 4806)
4(4806 4807 5008 5007)
4(5007 5008 5209 5208)
4(5208 5209 5410 5409)
4(5409 5410 5611 5610)
4(5610 5611 5812 5811)
4(5811 5812 6013 6012)
4(6012 6013 6214 6213)
4(6213 6214 6415 6414)
4(6414 6415 6616 6615)
4(6615 6616 6817 6816)
4(6816 6817 7018 7017)
4(7017 7018 7219 7218)
4(7218 7219 7420 7419)
4(7419 7420 7621 7620)
4(7620 7621 7822 7821)
4(7821 7822 8023 8022)
4(8022 8023 8224 8223)
4(8223 8224 8425 8424)
4(4405 4406 4607 4606)
4(4606 4607 4808 4807)
4(4807 4808 5009 5008)
4(5008 5009 5210 5209)
4(5209 5210 5411 5410)
4(5410 5411 5612 5611)
4(5611 5612 5813 5812)
4(5812 5813 6014 6013)
4(6013 6014 6215 6214)
4(6214 6215 6416 6415)
4(6415 6416 6617 6616)
4(6616 6617 6818 6817)
4(6817 6818 7019 7018)
4(7018 7019 7220 7219)
4(7219 7220 7421 7420)
4(7420 7421 7622 7621)
4(7621 7622 7823 7822)
4(7822 7823 8024 8023)
4(8023 8024 8225 8224)
4(8224 8225 8426 8425)
4(4406 4407 4608 4607)
4(4607 4608 4809 4808)
4(4808 4809 5010 5009)
4(5009 5010 5211 5210)
4(5210 5211 5412 5411)
4(5411 5412 5613 5612)
4(5612 5613 5814 5813)
4(5813 5814 6015 6014)
4(6014 6015 6216 6215)
4(6215 6216 6417 6416)
4(6416 6417 6618 6617)
4(6617 6618 6819 6818)
4(6818 6819 7020 7019)
4(7019 7020 7221 7220)
4(7220 7221 7422 7421)
4(7421 7422 7623 7622)
4(7622 7623 7824 7823)
4(7823 7824 8025 8024)
4(8024 8025 8226 8225)
4(8225 8226 8427 8426)
4(4407 4408 4609 4608)
4(4608 4609 4810 4809)
4(4809 4810 5011 5010)
4(5010 5011 5212 5211)
4(5211 5212 5413 5412)
4(5412 5413 5614 5613)
4(5613 5614 5815 5814)
4(5814 5815 6016 6015)
4(6015 6016 6217 6216)
4(6216 6217 6418 6417)
4(6417 6418 6619 6618)
4(6618 6619 6820 6819)
4(6819 6820 7021 7020)
4(7020 7021 7222 7221)
4(7221 7222 7423 7422)
4(7422 7423 7624 7623)
4(7623 7624 7825 7824)
4(7824 7825 8026 8025)
4(8025 8026 8227 8226)
4(8226 8227 8428 8427)
4(4408 4409 4610 4609)
4(4609 4610 4811 4810)
4(4810 4811 5012 5011)
4(5011 5012 5213 5212)
4(5212 5213 5414 5413)
4(5413 5414 5615 5614)
4(5614 5615 5816 5815)
4(5815 5816 6017 6016)
4(6016 6017 6218 6217)
4(6217 6218 6419 6418)
4(6418 6419 6620 6619)
4(6619 6620 6821 6820)
4(6820 6821 7022 7021)
4(7021 7022 7223 7222)
4(7222 7223 7424 7423)
4(7423 7424 7625 7624)
4(7624 7625 7826 7825)
4(7825 7826 8027 8026)
4(8026 8027 8228 8227)
4(8227 8228 8429 8428)
4(4409 4410 4611 4610)
4(4610 4611 4812 4811)
4(4811 4812 5013 5012)
4(5012 5013 5214 5213)
4(5213 5214 5415 5414)
4(5414 5415 5616 5615)
4(5615 5616 5817 5816)
4(5816 5817 6018 6017)
4(6017 6018 6219 6218)
4(6218 6219 6420 6419)
4(6419 6420 6621 6620)
4(6620 6621 6822 6821)
4(6821 6822 7023 7022)
4(7022 7023 7224 7223)
4(7223 7224 7425 7424)
4(7424 7425 7626 7625)
4(7625 7626 7827 7826)
4(7826 7827 8028 8027)
4(8027 8028 8229 8228)
4(8228 8229 8430 8429)
4(4410 4411 4612 4611)
4(4611 4612 4813 4812)
4(4812 4813 5014 5013)
4(5013 5014 5215 5214)
4(5214 5215 5416 5415)
4(5415 5416 5617 5616)
4(5616 5617 5818 5817)
4(5817 5818 6019 6018)
4(6018 6019 6220 6219)
4(6219 6220 6421 6420)
4(6420 6421 6622 6621)
4(6621 6622 6823 6822)
4(6822 6823 7024 7023)
4(7023 7024 7225 7224)
4(7224 7225 7426 7425)
4(7425 7426 7627 7626)
4(7626 7627 7828 7827)
4(7827 7828 8029 8028)
4(8028 8029 8230 8229)
4(8229 8230 8431 8430)
4(4411 4412 4613 4612)
4(4612 4613 4814 4813)
4(4813 4814 5015 5014)
4(5014 5015 5216 5215)
4(5215 5216 5417 5416)
4(5416 5417 5618 5617)
4(5617 5618 5819 5818)
4(5818 5819 6020 6019)
4(6019 6020 6221 6220)
4(6220 6221 6422 6421)
4(6421 6422 6623 6622)
4(6622 6623 6824 6823)
4(6823 6824 7025 7024)
4(7024 7025 7226 7225)
4(7225 7226 7427 7426)
4(7426 7427 7628 7627)
4(7627 7628 7829 7828)
4(7828 7829 8030 8029)
4(8029 8030 8231 8230)
4(8230 8231 8432 8431)
4(4412 4413 4614 4613)
4(4613 4614 4815 4814)
4(4814 4815 5016 5015)
4(5015 5016 5217 5216)
4(5216 5217 5418 5417)
4(5417 5418 5619 5618)
4(5618 5619 5820 5819)
4(5819 5820 6021 6020)
4(6020 6021 6222 6221)
4(6221 6222 6423 6422)
4(6422 6423 6624 6623)
4(6623 6624 6825 6824)
4(6824 6825 7026 7025)
4(7025 7026 7227 7226)
4(7226 7227 7428 7427)
4(7427 7428 7629 7628)
4(7628 7629 7830 7829)
4(7829 7830 8031 8030)
4(8030 8031 8232 8231)
4(8231 8232 8433 8432)
4(4413 4414 4615 4614)
4(4614 4615 4816 4815)
4(4815 4816 5017 5016)
4(5016 5017 5218 5217)
4(5217 5218 5419 5418)
4(5418 5419 5620 5619)
4(5619 5620 5821 5820)
4(5820 5821 6022 6021)
4(6021 6022 6223 6222)
4(6222 6223 6424 6423)
4(6423 6424 6625 6624)
4(6624 6625 6826 6825)
4(6825 6826 7027 7026)
4(7026 7027 7228 7227)
4(7227 7228 7429 7428)
4(7428 7429 7630 7629)
4(7629 7630 7831 7830)
4(7830 7831 8032 8031)
4(8031 8032 8233 8232)
4(8232 8233 8434 8433)
4(4414 4415 4616 4615)
4(4615 4616 4817 4816)
4(4816 4817 5018 5017)
4(5017 5018 5219 5218)
4(5218 5219 5420 5419)
4(5419 5420 5621 5620)
4(5620 5621 5822 5821)
4(5821 5822 6023 6022)
4(6022 6023 6224 6223)
4(6223 6224 6425 6424)
4(6424 6425 6626 6625)
4(6625 6626 6827 6826)
4(6826 6827 7028 7027)
4(7027 7028 7229 7228)
4(7228 7229 7430 7429)
4(7429 7430 7631 7630)
4(7630 7631 7832 7831)
4(7831 7832 8033 8032)
4(8032 8033 8234 8233)
4(8233 8234 8435 8434)
4(4415 4416 4617 4616)
4(4616 4617 4818 4817)
4(4817 4818 5019 5018)
4(5018 5019 5220 5219)
4(5219 5220 5421 5420)
4(5420 5421 5622 5621)
4(5621 5622 5823 5822)
4(5822 5823 6024 6023)
4(6023 6024 6225 6224)
4(6224 6225 6426 6425)
4(6425 6426 6627 6626)
4(6626 6627 6828 6827)
4(6827 6828 7029 7028)
4(7028 7029 7230 7229)
4(7229 7230 7431 7430)
4(7430 7431 7632 7631)
4(7631 7632 7833 7832)
4(7832 7833 8034 8033)
4(8033 8034 8235 8234)
4(8234 8235 8436 8435)
4(4416 4417 4618 4617)
4(4617 4618 4819 4818)
4(4818 4819 5020 5019)
4(5019 5020 5221 5220)
4(5220 5221 5422 5421)
4(5421 5422 5623 5622)
4(5622 5623 5824 5823)
4(5823 5824 6025 6024)
4(6024 6025 6226 6225)
4(6225 6226 6427 6426)
4(6426 6427 6628 6627)
4(6627 6628 6829 6828)
4(6828 6829 7030 7029)
4(7029 7030 7231 7230)
4(7230 7231 7432 7431)
4(7431 7432 7633 7632)
4(7632 7633 7834 7833)
4(7833 7834 8035 8034)
4(8034 8035 8236 8235)
4(8235 8236 8437 8436)
4(4417 4418 4619 4618)
4(4618 4619 4820 4819)
4(4819 4820 5021 5020)
4(5020 5021 5222 5221)
4(5221 5222 5423 5422)
4(5422 5423 5624 5623)
4(5623 5624 5825 5824)
4(5824 5825 6026 6025)
4(6025 6026 6227 6226)
4(6226 6227 6428 6427)
4(6427 6428 6629 6628)
4(6628 6629 6830 6829)
4(6829 6830 7031 7030)
4(7030 7031 7232 7231)
4(7231 7232 7433 7432)
4(7432 7433 7634 7633)
4(7633 7634 7835 7834)
4(7834 7835 8036 8035)
4(8035 8036 8237 8236)
4(8236 8237 8438 8437)
4(4418 4419 4620 4619)
4(4619 4620 4821 4820)
4(4820 4821 5022 5021)
4(5021 5022 5223 5222)
4(5222 5223 5424 5423)
4(5423 5424 5625 5624)
4(5624 5625 5826 5825)
4(5825 5826 6027 6026)
4(6026 6027 6228 6227)
4(6227 6228 6429 6428)
4(6428 6429 6630 6629)
4(6629 6630 6831 6830)
4(6830 6831 7032 7031)
4(7031 7032 7233 7232)
4(7232 7233 7434 7433)
4(7433 7434 7635 7634)
4(7634 7635 7836 7835)
4(7835 7836 8037 8036)
4(8036 8037 8238 8237)
4(8237 8238 8439 8438)
4(4419 4420 4621 4620)
4(4620 4621 4822 4821)
4(4821 4822 5023 5022)
4(5022 5023 5224 5223)
4(5223 5224 5425 5424)
4(5424 5425 5626 5625)
4(5625 5626 5827 5826)
4(5826 5827 6028 6027)
4(6027 6028 6229 6228)
4(6228 6229 6430 6429)
4(6429 6430 6631 6630)
4(6630 6631 6832 6831)
4(6831 6832 7033 7032)
4(7032 7033 7234 7233)
4(7233 7234 7435 7434)
4(7434 7435 7636 7635)
4(7635 7636 7837 7836)
4(7836 7837 8038 8037)
4(8037 8038 8239 8238)
4(8238 8239 8440 8439)
4(4420 4421 4622 4621)
4(4621 4622 4823 4822)
4(4822 4823 5024 5023)
4(5023 5024 5225 5224)
4(5224 5225 5426 5425)
4(5425 5426 5627 5626)
4(5626 5627 5828 5827)
4(5827 5828 6029 6028)
4(6028 6029 6230 6229)
4(6229 6230 6431 6430)
4(6430 6431 6632 6631)
4(6631 6632 6833 6832)
4(6832 6833 7034 7033)
4(7033 7034 7235 7234)
4(7234 7235 7436 7435)
4(7435 7436 7637 7636)
4(7636 7637 7838 7837)
4(7837 7838 8039 8038)
4(8038 8039 8240 8239)
4(8239 8240 8441 8440)
4(0 201 202 1)
4(201 402 403 202)
4(402 603 604 403)
4(603 804 805 604)
4(804 1005 1006 805)
4(1005 1206 1207 1006)
4(1206 1407 1408 1207)
4(1407 1608 1609 1408)
4(1608 1809 1810 1609)
4(1809 2010 2011 1810)
4(2010 2211 2212 2011)
4(2211 2412 2413 2212)
4(2412 2613 2614 2413)
4(2613 2814 2815 2614)
4(2814 3015 3016 2815)
4(3015 3216 3217 3016)
4(3216 3417 3418 3217)
4(3417 3618 3619 3418)
4(3618 3819 3820 3619)
4(3819 4020 4021 3820)
4(1 202 203 2)
4(202 403 404 203)
4(403 604 605 404)
4(604 805 806 605)
4(805 1006 1007 806)
4(1006 1207 1208 1007)
4(1207 1408 1409 1208)
4(1408 1609 1610 1409)
4(1609 1810 1811 1610)
4(1810 2011 2012 1811)
4(2011 2212 2213 2012)
4(2212 2413 2414 2213)
4(2413 2614 2615 2414)
4(2614 2815 2816 2615)
4(2815 3016 3017 2816)
4(3016 3217 3218 3017)
4(3217 3418 3419 3218)
4(3418 3619 3620 3419)
4(3619 3820 3821 3620)
4(3820 4021 4022 3821)
4(2 203 204 3)
4(203 404 405 204)
4(404 605 606 405)
4(605 806 807 606)
4(806 1007 1008 807)
4(1007 1208 1209 1008)
4(1208 1409 1410 1209)
4(1409 1610 1611 1410)
4(1610 1811 1812 1611)
4(1811 2012 2013 1812)
4(2012 2213 2214 2013)
4(2213 2414 2415 2214)
4(2414 2615 2616 2415)
4(2615 2816 2817 2616)
4(2816 3017 3018 2817)
4(3017 3218 3219 3018)
4(3218 3419 3420 3219)
4(3419 3620 3621 3420)
4(3620 3821 3822 3621)
4(3821 4022 4023 3822)
4(3 204 205 4)
4(204 405 406 205)
4(405 606 607 406)
4(606 807 808 607)
4(807 1008 1009 808)
4(1008 1209 1210 1009)
4(1209 1410 1411 1210)
4(1410 1611 1612 1411)
4(1611 1812 1813 1612)
4(1812 2013 2014 1813)
4(2013 2214 2215 2014)
4(2214 2415 2416 2215)
4(2415 2616 2617 2416)
4(2616 2817 2818 2617)
4(2817 3018 3019 2818)
4(3018 3219 3220 3019)
4(3219 3420 3421 3220)
4(3420 3621 3622 3421)
4(3621 3822 3823 3622)
4(3822 4023 4024 3823)
4(4 205 206 5)
4(205 406 407 206)
4(406 607 608 407)
4(607 808 809 608)
4(808 1009 1010 809)
4(1009 1210 1211 1010)
4(1210 1411 1412 1211)
4(1411 1612 1613 1412)
4(1612 1813 1814 1613)
4(1813 2014 2015 1814)
4(2014 2215 2216 2015)
4(2215 2416 2417 2216)
4(2416 2617 2618 2417)
4(2617 2818 2819 2618)
4(2818 3019 3020 2819)
4(3019 3220 3221 3020)
4(3220 3421 3422 3221)
4(3421 3622 3623 3422)
4(3622 3823 3824 3623)
4(3823 4024 4025 3824)
4(5 206 207 6)
4(206 407 408 207)
4(407 608 609 408)
4(608 809 810 609)
4(809 1010 1011 810)
4(1010 1211 1212 1011)
4(1211 1412 1413 1212)
4(1412 1613 1614 1413)
4(1613 1814 1815 1614)
4(1814 2015 2016 1815)
4(2015 2216 2217 2016)
4(2216 2417 2418 2217)
4(2417 2618 2619 2418)
4(2618 2819 2820 2619)
4(2819 3020 3021 2820)
4(3020 3221 3222 3021)
4(3221 3422 3423 3222)
4(3422 3623 3624 3423)
4(3623 3824 3825 3624)
4(3824 4025 4026 3825)
4(6 207 208 7)
4(207 408 409 208)
4(408 609 610 409)
4(609 810 811 610)
4(810 1011 1012 811)
4(1011 1212 1213 1012)
4(1212 1413 1414 1213)
4(1413 1614 1615 1414)
4(1614 1815 1816 1615)
4(1815 2016 2017 1816)
4(2016 2217 2218 2017)
4(2217 2418 2419 2218)
4(2418 2619 2620 2419)
4(2619 2820 2821 2620)
4(2820 3021 3022 2821)
4(3021 3222 3223 3022)
4(3222 3423 3424 3223)
4(3423 3624 3625 3424)
4(3624 3825 3826 3625)
4(3825 4026 4027 3826)
4(7 208 209 8)
4(208 409 410 209)
4(409 610 611 410)
4(610 811 812 611)
4(811 1012 1013 812)
4(1012 1213 1214 1013)
4(1213 1414 1415 1214)
4(1414 1615 1616 1415)
4(1615 1816 1817 1616)
4(1816 2017 2018 1817)
4(2017 2218 2219 2018)
4(2218 2419 2420 2219)
4(2419 2620 2621 2420)
4(2620 2821 2822 2621)
4(2821 3022 3023 2822)
4(3022 3223 3224 3023)
4(3223 3424 3425 3224)
4(3424 3625 3626 3425)
4(3625 3826 3827 3626)
4(3826 4027 4028 3827)
4(8 209 210 9)
4(209 410 411 210)
4(410 611 612 411)
4(611 812 813 612)
4(812 1013 1014 813)
4(1013 1214 1215 1014)
4(1214 1415 1416 1215)
4(1415 1616 1617 1416)
4(1616 1817 1818 1617)
4(1817 2018 2019 1818)
4(2018 2219 2220 2019)
4(2219 2420 2421 2220)
4(2420 2621 2622 2421)
4(2621 2822 2823 2622)
4(2822 3023 3024 2823)
4(3023 3224 3225 3024)
4(3224 3425 3426 3225)
4(3425 3626 3627 3426)
4(3626 3827 3828 3627)
4(3827 4028 4029 3828)
4(9 210 211 10)
4(210 411 412 211)
4(411 612 613 412)
4(612 813 814 613)
4(813 1014 1015 814)
4(1014 1215 1216 1015)
4(1215 1416 1417 1216)
4(1416 1617 1618 1417)
4(1617 1818 1819 1618)
4(1818 2019 2020 1819)
4(2019 2220 2221 2020)
4(2220 2421 2422 2221)
4(2421 2622 2623 2422)
4(2622 2823 2824 2623)
4(2823 3024 3025 2824)
4(3024 3225 3226 3025)
4(3225 3426 3427 3226)
4(3426 3627 3628 3427)
4(3627 3828 3829 3628)
4(3828 4029 4030 3829)
4(10 211 212 11)
4(211 412 413 212)
4(412 613 614 413)
4(613 814 815 614)
4(814 1015 1016 815)
4(1015 1216 1217 1016)
4(1216 1417 1418 1217)
4(1417 1618 1619 1418)
4(1618 1819 1820 1619)
4(1819 2020 2021 1820)
4(2020 2221 2222 2021)
4(2221 2422 2423 2222)
4(2422 2623 2624 2423)
4(2623 2824 2825 2624)
4(2824 3025 3026 2825)
4(3025 3226 3227 3026)
4(3226 3427 3428 3227)
4(3427 3628 3629 3428)
4(3628 3829 3830 3629)
4(3829 4030 4031 3830)
4(11 212 213 12)
4(212 413 414 213)
4(413 614 615 414)
4(614 815 816 615)
4(815 1016 1017 816)
4(1016 1217 1218 1017)
4(1217 1418 1419 1218)
4(1418 1619 1620 1419)
4(1619 1820 1821 1620)
4(1820 2021 2022 1821)
4(2021 2222 2223 2022)
4(2222 2423 2424 2223)
4(2423 2624 2625 2424)
4(2624 2825 2826 2625)
4(2825 3026 3027 2826)
4(3026 3227 3228 3027)
4(3227 3428 3429 3228)
4(3428 3629 3630 3429)
4(3629 3830 3831 3630)
4(3830 4031 4032 3831)
4(12 213 214 13)
4(213 414 415 214)
4(414 615 616 415)
4(615 816 817 616)
4(816 1017 1018 817)
4(1017 1218 1219 1018)
4(1218 1419 1420 1219)
4(1419 1620 1621 1420)
4(1620 1821 1822 1621)
4(1821 2022 2023 1822)
4(2022 2223 2224 2023)
4(2223 2424 2425 2224)
4(2424 2625 2626 2425)
4(2625 2826 2827 2626)
4(2826 3027 3028 2827)
4(3027 3228 3229 3028)
4(3228 3429 3430 3229)
4(3429 3630 3631 3430)
4(3630 3831 3832 3631)
4(3831 4032 4033 3832)
4(13 214 215 14)
4(214 415 416 215)
4(415 616 617 416)
4(616 817 818 617)
4(817 1018 1019 818)
4(1018 1219 1220 1019)
4(1219 1420 1421 1220)
4(1420 1621 1622 1421)
4(1621 1822 1823 1622)
4(1822 2023 2024 1823)
4(2023 2224 2225 2024)
4(2224 2425 2426 2225)
4(2425 2626 2627 2426)
4(2626 2827 2828 2627)
4(2827 3028 3029 2828)
4(3028 3229 3230 3029)
4(3229 3430 3431 3230)
4(3430 3631 3632 3431)
4(3631 3832 3833 3632)
4(3832 4033 4034 3833)
4(14 215 216 15)
4(215 416 417 216)
4(416 617 618 417)
4(617 818 819 618)
4(818 1019 1020 819)
4(1019 1220 1221 1020)
4(1220 1421 1422 1221)
4(1421 1622 1623 1422)
4(1622 1823 1824 1623)
4(1823 2024 2025 1824)
4(2024 2225 2226 2025)
4(2225 2426 2427 2226)
4(2426 2627 2628 2427)
4(2627 2828 2829 2628)
4(2828 3029 3030 2829)
4(3029 3230 3231 3030)
4(3230 3431 3432 3231)
4(3431 3632 3633 3432)
4(3632 3833 3834 3633)
4(3833 4034 4035 3834)
4(15 216 217 16)
4(216 417 418 217)
4(417 618 619 418)
4(618 819 820 619)
4(819 1020 1021 820)
4(1020 1221 1222 1021)
4(1221 1422 1423 1222)
4(1422 1623 1624 1423)
4(1623 1824 1825 1624)
4(1824 2025 2026 1825)
4(2025 2226 2227 2026)
4(2226 2427 2428 2227)
4(2427 2628 2629 2428)
4(2628 2829 2830 2629)
4(2829 3030 3031 2830)
4(3030 3231 3232 3031)
4(3231 3432 3433 3232)
4(3432 3633 3634 3433)
4(3633 3834 3835 3634)
4(3834 4035 4036 3835)
4(16 217 218 17)
4(217 418 419 218)
4(418 619 620 419)
4(619 820 821 620)
4(820 1021 1022 821)
4(1021 1222 1223 1022)
4(1222 1423 1424 1223)
4(1423 1624 1625 1424)
4(1624 1825 1826 1625)
4(1825 2026 2027 1826)
4(2026 2227 2228 2027)
4(2227 2428 2429 2228)
4(2428 2629 2630 2429)
4(2629 2830 2831 2630)
4(2830 3031 3032 2831)
4(3031 3232 3233 3032)
4(3232 3433 3434 3233)
4(3433 3634 3635 3434)
4(3634 3835 3836 3635)
4(3835 4036 4037 3836)
4(17 218 219 18)
4(218 419 420 219)
4(419 620 621 420)
4(620 821 822 621)
4(821 1022 1023 822)
4(1022 1223 1224 1023)
4(1223 1424 1425 1224)
4(1424 1625 1626 1425)
4(1625 1826 1827 1626)
4(1826 2027 2028 1827)
4(2027 2228 2229 2028)
4(2228 2429 2430 2229)
4(2429 2630 2631 2430)
4(2630 2831 2832 2631)
4(2831 3032 3033 2832)
4(3032 3233 3234 3033)
4(3233 3434 3435 3234)
4(3434 3635 3636 3435)
4(3635 3836 3837 3636)
4(3836 4037 4038 3837)
4(18 219 220 19)
4(219 420 421 220)
4(420 621 622 421)
4(621 822 823 622)
4(822 1023 1024 823)
4(1023 1224 1225 1024)
4(1224 1425 1426 1225)
4(1425 1626 1627 1426)
4(1626 1827 1828 1627)
4(1827 2028 2029 1828)
4(2028 2229 2230 2029)
4(2229 2430 2431 2230)
4(2430 2631 2632 2431)
4(2631 2832 2833 2632)
4(2832 3033 3034 2833)
4(3033 3234 3235 3034)
4(3234 3435 3436 3235)
4(3435 3636 3637 3436)
4(3636 3837 3838 3637)
4(3837 4038 4039 3838)
4(19 220 221 20)
4(220 421 422 221)
4(421 622 623 422)
4(622 823 824 623)
4(823 1024 1025 824)
4(1024 1225 1226 1025)
4(1225 1426 1427 1226)
4(1426 1627 1628 1427)
4(1627 1828 1829 1628)
4(1828 2029 2030 1829)
4(2029 2230 2231 2030)
4(2230 2431 2432 2231)
4(2431 2632 2633 2432)
4(2632 2833 2834 2633)
4(2833 3034 3035 2834)
4(3034 3235 3236 3035)
4(3235 3436 3437 3236)
4(3436 3637 3638 3437)
4(3637 3838 3839 3638)
4(3838 4039 4040 3839)
4(20 221 222 21)
4(221 422 423 222)
4(422 623 624 423)
4(623 824 825 624)
4(824 1025 1026 825)
4(1025 1226 1227 1026)
4(1226 1427 1428 1227)
4(1427 1628 1629 1428)
4(1628 1829 1830 1629)
4(1829 2030 2031 1830)
4(2030 2231 2232 2031)
4(2231 2432 2433 2232)
4(2432 2633 2634 2433)
4(2633 2834 2835 2634)
4(2834 3035 3036 2835)
4(3035 3236 3237 3036)
4(3236 3437 3438 3237)
4(3437 3638 3639 3438)
4(3638 3839 3840 3639)
4(3839 4040 4041 3840)
4(21 222 223 22)
4(222 423 424 223)
4(423 624 625 424)
4(624 825 826 625)
4(825 1026 1027 826)
4(1026 1227 1228 1027)
4(1227 1428 1429 1228)
4(1428 1629 1630 1429)
4(1629 1830 1831 1630)
4(1830 2031 2032 1831)
4(2031 2232 2233 2032)
4(2232 2433 2434 2233)
4(2433 2634 2635 2434)
4(2634 2835 2836 2635)
4(2835 3036 3037 2836)
4(3036 3237 3238 3037)
4(3237 3438 3439 3238)
4(3438 3639 3640 3439)
4(3639 3840 3841 3640)
4(3840 4041 4042 3841)
4(22 223 224 23)
4(223 424 425 224)
4(424 625 626 425)
4(625 826 827 626)
4(826 1027 1028 827)
4(1027 1228 1229 1028)
4(1228 1429 1430 1229)
4(1429 1630 1631 1430)
4(1630 1831 1832 1631)
4(1831 2032 2033 1832)
4(2032 2233 2234 2033)
4(2233 2434 2435 2234)
4(2434 2635 2636 2435)
4(2635 2836 2837 2636)
4(2836 3037 3038 2837)
4(3037 3238 3239 3038)
4(3238 3439 3440 3239)
4(3439 3640 3641 3440)
4(3640 3841 3842 3641)
4(3841 4042 4043 3842)
4(23 224 225 24)
4(224 425 426 225)
4(425 626 627 426)
4(626 827 828 627)
4(827 1028 1029 828)
4(1028 1229 1230 1029)
4(1229 1430 1431 1230)
4(1430 1631 1632 1431)
4(1631 1832 1833 1632)
4(1832 2033 2034 1833)
4(2033 2234 2235 2034)
4(2234 2435 2436 2235)
4(2435 2636 2637 2436)
4(2636 2837 2838 2637)
4(2837 3038 3039 2838)
4(3038 3239 3240 3039)
4(3239 3440 3441 3240)
4(3440 3641 3642 3441)
4(3641 3842 3843 3642)
4(3842 4043 4044 3843)
4(24 225 226 25)
4(225 426 427 226)
4(426 627 628 427)
4(627 828 829 628)
4(828 1029 1030 829)
4(1029 1230 1231 1030)
4(1230 1431 1432 1231)
4(1431 1632 1633 1432)
4(1632 1833 1834 1633)
4(1833 2034 2035 1834)
4(2034 2235 2236 2035)
4(2235 2436 2437 2236)
4(2436 2637 2638 2437)
4(2637 2838 2839 2638)
4(2838 3039 3040 2839)
4(3039 3240 3241 3040)
4(3240 3441 3442 3241)
4(3441 3642 3643 3442)
4(3642 3843 3844 3643)
4(3843 4044 4045 3844)
4(25 226 227 26)
4(226 427 428 227)
4(427 628 629 428)
4(628 829 830 629)
4(829 1030 1031 830)
4(1030 1231 1232 1031)
4(1231 1432 1433 1232)
4(1432 1633 1634 1433)
4(1633 1834 1835 1634)
4(1834 2035 2036 1835)
4(2035 2236 2237 2036)
4(2236 2437 2438 2237)
4(2437 2638 2639 2438)
4(2638 2839 2840 2639)
4(2839 3040 3041 2840)
4(3040 3241 3242 3041)
4(3241 3442 3443 3242)
4(3442 3643 3644 3443)
4(3643 3844 3845 3644)
4(3844 4045 4046 3845)
4(26 227 228 27)
4(227 428 429 228)
4(428 629 630 429)
4(629 830 831 630)
4(830 1031 1032 831)
4(1031 1232 1233 1032)
4(1232 1433 1434 1233)
4(1433 1634 1635 1434)
4(1634 1835 1836 1635)
4(1835 2036 2037 1836)
4(2036 2237 2238 2037)
4(2237 2438 2439 2238)
4(2438 2639 2640 2439)
4(2639 2840 2841 2640)
4(2840 3041 3042 2841)
4(3041 3242 3243 3042)
4(3242 3443 3444 3243)
4(3443 3644 3645 3444)
4(3644 3845 3846 3645)
4(3845 4046 4047 3846)
4(27 228 229 28)
4(228 429 430 229)
4(429 630 631 430)
4(630 831 832 631)
4(831 1032 1033 832)
4(1032 1233 1234 1033)
4(1233 1434 1435 1234)
4(1434 1635 1636 1435)
4(1635 1836 1837 1636)
4(1836 2037 2038 1837)
4(2037 2238 2239 2038)
4(2238 2439 2440 2239)
4(2439 2640 2641 2440)
4(2640 2841 2842 2641)
4(2841 3042 3043 2842)
4(3042 3243 3244 3043)
4(3243 3444 3445 3244)
4(3444 3645 3646 3445)
4(3645 3846 3847 3646)
4(3846 4047 4048 3847)
4(28 229 230 29)
4(229 430 431 230)
4(430 631 632 431)
4(631 832 833 632)
4(832 1033 1034 833)
4(1033 1234 1235 1034)
4(1234 1435 1436 1235)
4(1435 1636 1637 1436)
4(1636 1837 1838 1637)
4(1837 2038 2039 1838)
4(2038 2239 2240 2039)
4(2239 2440 2441 2240)
4(2440 2641 2642 2441)
4(2641 2842 2843 2642)
4(2842 3043 3044 2843)
4(3043 3244 3245 3044)
4(3244 3445 3446 3245)
4(3445 3646 3647 3446)
4(3646 3847 3848 3647)
4(3847 4048 4049 3848)
4(29 230 231 30)
4(230 431 432 231)
4(431 632 633 432)
4(632 833 834 633)
4(833 1034 1035 834)
4(1034 1235 1236 1035)
4(1235 1436 1437 1236)
4(1436 1637 1638 1437)
4(1637 1838 1839 1638)
4(1838 2039 2040 1839)
4(2039 2240 2241 2040)
4(2240 2441 2442 2241)
4(2441 2642 2643 2442)
4(2642 2843 2844 2643)
4(2843 3044 3045 2844)
4(3044 3245 3246 3045)
4(3245 3446 3447 3246)
4(3446 3647 3648 3447)
4(3647 3848 3849 3648)
4(3848 4049 4050 3849)
4(30 231 232 31)
4(231 432 433 232)
4(432 633 634 433)
4(633 834 835 634)
4(834 1035 1036 835)
4(1035 1236 1237 1036)
4(1236 1437 1438 1237)
4(1437 1638 1639 1438)
4(1638 1839 1840 1639)
4(1839 2040 2041 1840)
4(2040 2241 2242 2041)
4(2241 2442 2443 2242)
4(2442 2643 2644 2443)
4(2643 2844 2845 2644)
4(2844 3045 3046 2845)
4(3045 3246 3247 3046)
4(3246 3447 3448 3247)
4(3447 3648 3649 3448)
4(3648 3849 3850 3649)
4(3849 4050 4051 3850)
4(31 232 233 32)
4(232 433 434 233)
4(433 634 635 434)
4(634 835 836 635)
4(835 1036 1037 836)
4(1036 1237 1238 1037)
4(1237 1438 1439 1238)
4(1438 1639 1640 1439)
4(1639 1840 1841 1640)
4(1840 2041 2042 1841)
4(2041 2242 2243 2042)
4(2242 2443 2444 2243)
4(2443 2644 2645 2444)
4(2644 2845 2846 2645)
4(2845 3046 3047 2846)
4(3046 3247 3248 3047)
4(3247 3448 3449 3248)
4(3448 3649 3650 3449)
4(3649 3850 3851 3650)
4(3850 4051 4052 3851)
4(32 233 234 33)
4(233 434 435 234)
4(434 635 636 435)
4(635 836 837 636)
4(836 1037 1038 837)
4(1037 1238 1239 1038)
4(1238 1439 1440 1239)
4(1439 1640 1641 1440)
4(1640 1841 1842 1641)
4(1841 2042 2043 1842)
4(2042 2243 2244 2043)
4(2243 2444 2445 2244)
4(2444 2645 2646 2445)
4(2645 2846 2847 2646)
4(2846 3047 3048 2847)
4(3047 3248 3249 3048)
4(3248 3449 3450 3249)
4(3449 3650 3651 3450)
4(3650 3851 3852 3651)
4(3851 4052 4053 3852)
4(33 234 235 34)
4(234 435 436 235)
4(435 636 637 436)
4(636 837 838 637)
4(837 1038 1039 838)
4(1038 1239 1240 1039)
4(1239 1440 1441 1240)
4(1440 1641 1642 1441)
4(1641 1842 1843 1642)
4(1842 2043 2044 1843)
4(2043 2244 2245 2044)
4(2244 2445 2446 2245)
4(2445 2646 2647 2446)
4(2646 2847 2848 2647)
4(2847 3048 3049 2848)
4(3048 3249 3250 3049)
4(3249 3450 3451 3250)
4(3450 3651 3652 3451)
4(3651 3852 3853 3652)
4(3852 4053 4054 3853)
4(34 235 236 35)
4(235 436 437 236)
4(436 637 638 437)
4(637 838 839 638)
4(838 1039 1040 839)
4(1039 1240 1241 1040)
4(1240 1441 1442 1241)
4(1441 1642 1643 1442)
4(1642 1843 1844 1643)
4(1843 2044 2045 1844)
4(2044 2245 2246 2045)
4(2245 2446 2447 2246)
4(2446 2647 2648 2447)
4(2647 2848 2849 2648)
4(2848 3049 3050 2849)
4(3049 3250 3251 3050)
4(3250 3451 3452 3251)
4(3451 3652 3653 3452)
4(3652 3853 3854 3653)
4(3853 4054 4055 3854)
4(35 236 237 36)
4(236 437 438 237)
4(437 638 639 438)
4(638 839 840 639)
4(839 1040 1041 840)
4(1040 1241 1242 1041)
4(1241 1442 1443 1242)
4(1442 1643 1644 1443)
4(1643 1844 1845 1644)
4(1844 2045 2046 1845)
4(2045 2246 2247 2046)
4(2246 2447 2448 2247)
4(2447 2648 2649 2448)
4(2648 2849 2850 2649)
4(2849 3050 3051 2850)
4(3050 3251 3252 3051)
4(3251 3452 3453 3252)
4(3452 3653 3654 3453)
4(3653 3854 3855 3654)
4(3854 4055 4056 3855)
4(36 237 238 37)
4(237 438 439 238)
4(438 639 640 439)
4(639 840 841 640)
4(840 1041 1042 841)
4(1041 1242 1243 1042)
4(1242 1443 1444 1243)
4(1443 1644 1645 1444)
4(1644 1845 1846 1645)
4(1845 2046 2047 1846)
4(2046 2247 2248 2047)
4(2247 2448 2449 2248)
4(2448 2649 2650 2449)
4(2649 2850 2851 2650)
4(2850 3051 3052 2851)
4(3051 3252 3253 3052)
4(3252 3453 3454 3253)
4(3453 3654 3655 3454)
4(3654 3855 3856 3655)
4(3855 4056 4057 3856)
4(37 238 239 38)
4(238 439 440 239)
4(439 640 641 440)
4(640 841 842 641)
4(841 1042 1043 842)
4(1042 1243 1244 1043)
4(1243 1444 1445 1244)
4(1444 1645 1646 1445)
4(1645 1846 1847 1646)
4(1846 2047 2048 1847)
4(2047 2248 2249 2048)
4(2248 2449 2450 2249)
4(2449 2650 2651 2450)
4(2650 2851 2852 2651)
4(2851 3052 3053 2852)
4(3052 3253 3254 3053)
4(3253 3454 3455 3254)
4(3454 3655 3656 3455)
4(3655 3856 3857 3656)
4(3856 4057 4058 3857)
4(38 239 240 39)
4(239 440 441 240)
4(440 641 642 441)
4(641 842 843 642)
4(842 1043 1044 843)
4(1043 1244 1245 1044)
4(1244 1445 1446 1245)
4(1445 1646 1647 1446)
4(1646 1847 1848 1647)
4(1847 2048 2049 1848)
4(2048 2249 2250 2049)
4(2249 2450 2451 2250)
4(2450 2651 2652 2451)
4(2651 2852 2853 2652)
4(2852 3053 3054 2853)
4(3053 3254 3255 3054)
4(3254 3455 3456 3255)
4(3455 3656 3657 3456)
4(3656 3857 3858 3657)
4(3857 4058 4059 3858)
4(39 240 241 40)
4(240 441 442 241)
4(441 642 643 442)
4(642 843 844 643)
4(843 1044 1045 844)
4(1044 1245 1246 1045)
4(1245 1446 1447 1246)
4(1446 1647 1648 1447)
4(1647 1848 1849 1648)
4(1848 2049 2050 1849)
4(2049 2250 2251 2050)
4(2250 2451 2452 2251)
4(2451 2652 2653 2452)
4(2652 2853 2854 2653)
4(2853 3054 3055 2854)
4(3054 3255 3256 3055)
4(3255 3456 3457 3256)
4(3456 3657 3658 3457)
4(3657 3858 3859 3658)
4(3858 4059 4060 3859)
4(40 241 242 41)
4(241 442 443 242)
4(442 643 644 443)
4(643 844 845 644)
4(844 1045 1046 845)
4(1045 1246 1247 1046)
4(1246 1447 1448 1247)
4(1447 1648 1649 1448)
4(1648 1849 1850 1649)
4(1849 2050 2051 1850)
4(2050 2251 2252 2051)
4(2251 2452 2453 2252)
4(2452 2653 2654 2453)
4(2653 2854 2855 2654)
4(2854 3055 3056 2855)
4(3055 3256 3257 3056)
4(3256 3457 3458 3257)
4(3457 3658 3659 3458)
4(3658 3859 3860 3659)
4(3859 4060 4061 3860)
4(41 242 243 42)
4(242 443 444 243)
4(443 644 645 444)
4(644 845 846 645)
4(845 1046 1047 846)
4(1046 1247 1248 1047)
4(1247 1448 1449 1248)
4(1448 1649 1650 1449)
4(1649 1850 1851 1650)
4(1850 2051 2052 1851)
4(2051 2252 2253 2052)
4(2252 2453 2454 2253)
4(2453 2654 2655 2454)
4(2654 2855 2856 2655)
4(2855 3056 3057 2856)
4(3056 3257 3258 3057)
4(3257 3458 3459 3258)
4(3458 3659 3660 3459)
4(3659 3860 3861 3660)
4(3860 4061 4062 3861)
4(42 243 244 43)
4(243 444 445 244)
4(444 645 646 445)
4(645 846 847 646)
4(846 1047 1048 847)
4(1047 1248 1249 1048)
4(1248 1449 1450 1249)
4(1449 1650 1651 1450)
4(1650 1851 1852 1651)
4(1851 2052 2053 1852)
4(2052 2253 2254 2053)
4(2253 2454 2455 2254)
4(2454 2655 2656 2455)
4(2655 2856 2857 2656)
4(2856 3057 3058 2857)
4(3057 3258 3259 3058)
4(3258 3459 3460 3259)
4(3459 3660 3661 3460)
4(3660 3861 3862 3661)
4(3861 4062 4063 3862)
4(43 244 245 44)
4(244 445 446 245)
4(445 646 647 446)
4(646 847 848 647)
4(847 1048 1049 848)
4(1048 1249 1250 1049)
4(1249 1450 1451 1250)
4(1450 1651 1652 1451)
4(1651 1852 1853 1652)
4(1852 2053 2054 1853)
4(2053 2254 2255 2054)
4(2254 2455 2456 2255)
4(2455 2656 2657 2456)
4(2656 2857 2858 2657)
4(2857 3058 3059 2858)
4(3058 3259 3260 3059)
4(3259 3460 3461 3260)
4(3460 3661 3662 3461)
4(3661 3862 3863 3662)
4(3862 4063 4064 3863)
4(44 245 246 45)
4(245 446 447 246)
4(446 647 648 447)
4(647 848 849 648)
4(848 1049 1050 849)
4(1049 1250 1251 1050)
4(1250 1451 1452 1251)
4(1451 1652 1653 1452)
4(1652 1853 1854 1653)
4(1853 2054 2055 1854)
4(2054 2255 2256 2055)
4(2255 2456 2457 2256)
4(2456 2657 2658 2457)
4(2657 2858 2859 2658)
4(2858 3059 3060 2859)
4(3059 3260 3261 3060)
4(3260 3461 3462 3261)
4(3461 3662 3663 3462)
4(3662 3863 3864 3663)
4(3863 4064 4065 3864)
4(45 246 247 46)
4(246 447 448 247)
4(447 648 649 448)
4(648 849 850 649)
4(849 1050 1051 850)
4(1050 1251 1252 1051)
4(1251 1452 1453 1252)
4(1452 1653 1654 1453)
4(1653 1854 1855 1654)
4(1854 2055 2056 1855)
4(2055 2256 2257 2056)
4(2256 2457 2458 2257)
4(2457 2658 2659 2458)
4(2658 2859 2860 2659)
4(2859 3060 3061 2860)
4(3060 3261 3262 3061)
4(3261 3462 3463 3262)
4(3462 3663 3664 3463)
4(3663 3864 3865 3664)
4(3864 4065 4066 3865)
4(46 247 248 47)
4(247 448 449 248)
4(448 649 650 449)
4(649 850 851 650)
4(850 1051 1052 851)
4(1051 1252 1253 1052)
4(1252 1453 1454 1253)
4(1453 1654 1655 1454)
4(1654 1855 1856 1655)
4(1855 2056 2057 1856)
4(2056 2257 2258 2057)
4(2257 2458 2459 2258)
4(2458 2659 2660 2459)
4(2659 2860 2861 2660)
4(2860 3061 3062 2861)
4(3061 3262 3263 3062)
4(3262 3463 3464 3263)
4(3463 3664 3665 3464)
4(3664 3865 3866 3665)
4(3865 4066 4067 3866)
4(47 248 249 48)
4(248 449 450 249)
4(449 650 651 450)
4(650 851 852 651)
4(851 1052 1053 852)
4(1052 1253 1254 1053)
4(1253 1454 1455 1254)
4(1454 1655 1656 1455)
4(1655 1856 1857 1656)
4(1856 2057 2058 1857)
4(2057 2258 2259 2058)
4(2258 2459 2460 2259)
4(2459 2660 2661 2460)
4(2660 2861 2862 2661)
4(2861 3062 3063 2862)
4(3062 3263 3264 3063)
4(3263 3464 3465 3264)
4(3464 3665 3666 3465)
4(3665 3866 3867 3666)
4(3866 4067 4068 3867)
4(48 249 250 49)
4(249 450 451 250)
4(450 651 652 451)
4(651 852 853 652)
4(852 1053 1054 853)
4(1053 1254 1255 1054)
4(1254 1455 1456 1255)
4(1455 1656 1657 1456)
4(1656 1857 1858 1657)
4(1857 2058 2059 1858)
4(2058 2259 2260 2059)
4(2259 2460 2461 2260)
4(2460 2661 2662 2461)
4(2661 2862 2863 2662)
4(2862 3063 3064 2863)
4(3063 3264 3265 3064)
4(3264 3465 3466 3265)
4(3465 3666 3667 3466)
4(3666 3867 3868 3667)
4(3867 4068 4069 3868)
4(49 250 251 50)
4(250 451 452 251)
4(451 652 653 452)
4(652 853 854 653)
4(853 1054 1055 854)
4(1054 1255 1256 1055)
4(1255 1456 1457 1256)
4(1456 1657 1658 1457)
4(1657 1858 1859 1658)
4(1858 2059 2060 1859)
4(2059 2260 2261 2060)
4(2260 2461 2462 2261)
4(2461 2662 2663 2462)
4(2662 2863 2864 2663)
4(2863 3064 3065 2864)
4(3064 3265 3266 3065)
4(3265 3466 3467 3266)
4(3466 3667 3668 3467)
4(3667 3868 3869 3668)
4(3868 4069 4070 3869)
4(50 251 252 51)
4(251 452 453 252)
4(452 653 654 453)
4(653 854 855 654)
4(854 1055 1056 855)
4(1055 1256 1257 1056)
4(1256 1457 1458 1257)
4(1457 1658 1659 1458)
4(1658 1859 1860 1659)
4(1859 2060 2061 1860)
4(2060 2261 2262 2061)
4(2261 2462 2463 2262)
4(2462 2663 2664 2463)
4(2663 2864 2865 2664)
4(2864 3065 3066 2865)
4(3065 3266 3267 3066)
4(3266 3467 3468 3267)
4(3467 3668 3669 3468)
4(3668 3869 3870 3669)
4(3869 4070 4071 3870)
4(51 252 253 52)
4(252 453 454 253)
4(453 654 655 454)
4(654 855 856 655)
4(855 1056 1057 856)
4(1056 1257 1258 1057)
4(1257 1458 1459 1258)
4(1458 1659 1660 1459)
4(1659 1860 1861 1660)
4(1860 2061 2062 1861)
4(2061 2262 2263 2062)
4(2262 2463 2464 2263)
4(2463 2664 2665 2464)
4(2664 2865 2866 2665)
4(2865 3066 3067 2866)
4(3066 3267 3268 3067)
4(3267 3468 3469 3268)
4(3468 3669 3670 3469)
4(3669 3870 3871 3670)
4(3870 4071 4072 3871)
4(52 253 254 53)
4(253 454 455 254)
4(454 655 656 455)
4(655 856 857 656)
4(856 1057 1058 857)
4(1057 1258 1259 1058)
4(1258 1459 1460 1259)
4(1459 1660 1661 1460)
4(1660 1861 1862 1661)
4(1861 2062 2063 1862)
4(2062 2263 2264 2063)
4(2263 2464 2465 2264)
4(2464 2665 2666 2465)
4(2665 2866 2867 2666)
4(2866 3067 3068 2867)
4(3067 3268 3269 3068)
4(3268 3469 3470 3269)
4(3469 3670 3671 3470)
4(3670 3871 3872 3671)
4(3871 4072 4073 3872)
4(53 254 255 54)
4(254 455 456 255)
4(455 656 657 456)
4(656 857 858 657)
4(857 1058 1059 858)
4(1058 1259 1260 1059)
4(1259 1460 1461 1260)
4(1460 1661 1662 1461)
4(1661 1862 1863 1662)
4(1862 2063 2064 1863)
4(2063 2264 2265 2064)
4(2264 2465 2466 2265)
4(2465 2666 2667 2466)
4(2666 2867 2868 2667)
4(2867 3068 3069 2868)
4(3068 3269 3270 3069)
4(3269 3470 3471 3270)
4(3470 3671 3672 3471)
4(3671 3872 3873 3672)
4(3872 4073 4074 3873)
4(54 255 256 55)
4(255 456 457 256)
4(456 657 658 457)
4(657 858 859 658)
4(858 1059 1060 859)
4(1059 1260 1261 1060)
4(1260 1461 1462 1261)
4(1461 1662 1663 1462)
4(1662 1863 1864 1663)
4(1863 2064 2065 1864)
4(2064 2265 2266 2065)
4(2265 2466 2467 2266)
4(2466 2667 2668 2467)
4(2667 2868 2869 2668)
4(2868 3069 3070 2869)
4(3069 3270 3271 3070)
4(3270 3471 3472 3271)
4(3471 3672 3673 3472)
4(3672 3873 3874 3673)
4(3873 4074 4075 3874)
4(55 256 257 56)
4(256 457 458 257)
4(457 658 659 458)
4(658 859 860 659)
4(859 1060 1061 860)
4(1060 1261 1262 1061)
4(1261 1462 1463 1262)
4(1462 1663 1664 1463)
4(1663 1864 1865 1664)
4(1864 2065 2066 1865)
4(2065 2266 2267 2066)
4(2266 2467 2468 2267)
4(2467 2668 2669 2468)
4(2668 2869 2870 2669)
4(2869 3070 3071 2870)
4(3070 3271 3272 3071)
4(3271 3472 3473 3272)
4(3472 3673 3674 3473)
4(3673 3874 3875 3674)
4(3874 4075 4076 3875)
4(56 257 258 57)
4(257 458 459 258)
4(458 659 660 459)
4(659 860 861 660)
4(860 1061 1062 861)
4(1061 1262 1263 1062)
4(1262 1463 1464 1263)
4(1463 1664 1665 1464)
4(1664 1865 1866 1665)
4(1865 2066 2067 1866)
4(2066 2267 2268 2067)
4(2267 2468 2469 2268)
4(2468 2669 2670 2469)
4(2669 2870 2871 2670)
4(2870 3071 3072 2871)
4(3071 3272 3273 3072)
4(3272 3473 3474 3273)
4(3473 3674 3675 3474)
4(3674 3875 3876 3675)
4(3875 4076 4077 3876)
4(57 258 259 58)
4(258 459 460 259)
4(459 660 661 460)
4(660 861 862 661)
4(861 1062 1063 862)
4(1062 1263 1264 1063)
4(1263 1464 1465 1264)
4(1464 1665 1666 1465)
4(1665 1866 1867 1666)
4(1866 2067 2068 1867)
4(2067 2268 2269 2068)
4(2268 2469 2470 2269)
4(2469 2670 2671 2470)
4(2670 2871 2872 2671)
4(2871 3072 3073 2872)
4(3072 3273 3274 3073)
4(3273 3474 3475 3274)
4(3474 3675 3676 3475)
4(3675 3876 3877 3676)
4(3876 4077 4078 3877)
4(58 259 260 59)
4(259 460 461 260)
4(460 661 662 461)
4(661 862 863 662)
4(862 1063 1064 863)
4(1063 1264 1265 1064)
4(1264 1465 1466 1265)
4(1465 1666 1667 1466)
4(1666 1867 1868 1667)
4(1867 2068 2069 1868)
4(2068 2269 2270 2069)
4(2269 2470 2471 2270)
4(2470 2671 2672 2471)
4(2671 2872 2873 2672)
4(2872 3073 3074 2873)
4(3073 3274 3275 3074)
4(3274 3475 3476 3275)
4(3475 3676 3677 3476)
4(3676 3877 3878 3677)
4(3877 4078 4079 3878)
4(59 260 261 60)
4(260 461 462 261)
4(461 662 663 462)
4(662 863 864 663)
4(863 1064 1065 864)
4(1064 1265 1266 1065)
4(1265 1466 1467 1266)
4(1466 1667 1668 1467)
4(1667 1868 1869 1668)
4(1868 2069 2070 1869)
4(2069 2270 2271 2070)
4(2270 2471 2472 2271)
4(2471 2672 2673 2472)
4(2672 2873 2874 2673)
4(2873 3074 3075 2874)
4(3074 3275 3276 3075)
4(3275 3476 3477 3276)
4(3476 3677 3678 3477)
4(3677 3878 3879 3678)
4(3878 4079 4080 3879)
4(60 261 262 61)
4(261 462 463 262)
4(462 663 664 463)
4(663 864 865 664)
4(864 1065 1066 865)
4(1065 1266 1267 1066)
4(1266 1467 1468 1267)
4(1467 1668 1669 1468)
4(1668 1869 1870 1669)
4(1869 2070 2071 1870)
4(2070 2271 2272 2071)
4(2271 2472 2473 2272)
4(2472 2673 2674 2473)
4(2673 2874 2875 2674)
4(2874 3075 3076 2875)
4(3075 3276 3277 3076)
4(3276 3477 3478 3277)
4(3477 3678 3679 3478)
4(3678 3879 3880 3679)
4(3879 4080 4081 3880)
4(61 262 263 62)
4(262 463 464 263)
4(463 664 665 464)
4(664 865 866 665)
4(865 1066 1067 866)
4(1066 1267 1268 1067)
4(1267 1468 1469 1268)
4(1468 1669 1670 1469)
4(1669 1870 1871 1670)
4(1870 2071 2072 1871)
4(2071 2272 2273 2072)
4(2272 2473 2474 2273)
4(2473 2674 2675 2474)
4(2674 2875 2876 2675)
4(2875 3076 3077 2876)
4(3076 3277 3278 3077)
4(3277 3478 3479 3278)
4(3478 3679 3680 3479)
4(3679 3880 3881 3680)
4(3880 4081 4082 3881)
4(62 263 264 63)
4(263 464 465 264)
4(464 665 666 465)
4(665 866 867 666)
4(866 1067 1068 867)
4(1067 1268 1269 1068)
4(1268 1469 1470 1269)
4(1469 1670 1671 1470)
4(1670 1871 1872 1671)
4(1871 2072 2073 1872)
4(2072 2273 2274 2073)
4(2273 2474 2475 2274)
4(2474 2675 2676 2475)
4(2675 2876 2877 2676)
4(2876 3077 3078 2877)
4(3077 3278 3279 3078)
4(3278 3479 3480 3279)
4(3479 3680 3681 3480)
4(3680 3881 3882 3681)
4(3881 4082 4083 3882)
4(63 264 265 64)
4(264 465 466 265)
4(465 666 667 466)
4(666 867 868 667)
4(867 1068 1069 868)
4(1068 1269 1270 1069)
4(1269 1470 1471 1270)
4(1470 1671 1672 1471)
4(1671 1872 1873 1672)
4(1872 2073 2074 1873)
4(2073 2274 2275 2074)
4(2274 2475 2476 2275)
4(2475 2676 2677 2476)
4(2676 2877 2878 2677)
4(2877 3078 3079 2878)
4(3078 3279 3280 3079)
4(3279 3480 3481 3280)
4(3480 3681 3682 3481)
4(3681 3882 3883 3682)
4(3882 4083 4084 3883)
4(64 265 266 65)
4(265 466 467 266)
4(466 667 668 467)
4(667 868 869 668)
4(868 1069 1070 869)
4(1069 1270 1271 1070)
4(1270 1471 1472 1271)
4(1471 1672 1673 1472)
4(1672 1873 1874 1673)
4(1873 2074 2075 1874)
4(2074 2275 2276 2075)
4(2275 2476 2477 2276)
4(2476 2677 2678 2477)
4(2677 2878 2879 2678)
4(2878 3079 3080 2879)
4(3079 3280 3281 3080)
4(3280 3481 3482 3281)
4(3481 3682 3683 3482)
4(3682 3883 3884 3683)
4(3883 4084 4085 3884)
4(65 266 267 66)
4(266 467 468 267)
4(467 668 669 468)
4(668 869 870 669)
4(869 1070 1071 870)
4(1070 1271 1272 1071)
4(1271 1472 1473 1272)
4(1472 1673 1674 1473)
4(1673 1874 1875 1674)
4(1874 2075 2076 1875)
4(2075 2276 2277 2076)
4(2276 2477 2478 2277)
4(2477 2678 2679 2478)
4(2678 2879 2880 2679)
4(2879 3080 3081 2880)
4(3080 3281 3282 3081)
4(3281 3482 3483 3282)
4(3482 3683 3684 3483)
4(3683 3884 3885 3684)
4(3884 4085 4086 3885)
4(66 267 268 67)
4(267 468 469 268)
4(468 669 670 469)
4(669 870 871 670)
4(870 1071 1072 871)
4(1071 1272 1273 1072)
4(1272 1473 1474 1273)
4(1473 1674 1675 1474)
4(1674 1875 1876 1675)
4(1875 2076 2077 1876)
4(2076 2277 2278 2077)
4(2277 2478 2479 2278)
4(2478 2679 2680 2479)
4(2679 2880 2881 2680)
4(2880 3081 3082 2881)
4(3081 3282 3283 3082)
4(3282 3483 3484 3283)
4(3483 3684 3685 3484)
4(3684 3885 3886 3685)
4(3885 4086 4087 3886)
4(67 268 269 68)
4(268 469 470 269)
4(469 670 671 470)
4(670 871 872 671)
4(871 1072 1073 872)
4(1072 1273 1274 1073)
4(1273 1474 1475 1274)
4(1474 1675 1676 1475)
4(1675 1876 1877 1676)
4(1876 2077 2078 1877)
4(2077 2278 2279 2078)
4(2278 2479 2480 2279)
4(2479 2680 2681 2480)
4(2680 2881 2882 2681)
4(2881 3082 3083 2882)
4(3082 3283 3284 3083)
4(3283 3484 3485 3284)
4(3484 3685 3686 3485)
4(3685 3886 3887 3686)
4(3886 4087 4088 3887)
4(68 269 270 69)
4(269 470 471 270)
4(470 671 672 471)
4(671 872 873 672)
4(872 1073 1074 873)
4(1073 1274 1275 1074)
4(1274 1475 1476 1275)
4(1475 1676 1677 1476)
4(1676 1877 1878 1677)
4(1877 2078 2079 1878)
4(2078 2279 2280 2079)
4(2279 2480 2481 2280)
4(2480 2681 2682 2481)
4(2681 2882 2883 2682)
4(2882 3083 3084 2883)
4(3083 3284 3285 3084)
4(3284 3485 3486 3285)
4(3485 3686 3687 3486)
4(3686 3887 3888 3687)
4(3887 4088 4089 3888)
4(69 270 271 70)
4(270 471 472 271)
4(471 672 673 472)
4(672 873 874 673)
4(873 1074 1075 874)
4(1074 1275 1276 1075)
4(1275 1476 1477 1276)
4(1476 1677 1678 1477)
4(1677 1878 1879 1678)
4(1878 2079 2080 1879)
4(2079 2280 2281 2080)
4(2280 2481 2482 2281)
4(2481 2682 2683 2482)
4(2682 2883 2884 2683)
4(2883 3084 3085 2884)
4(3084 3285 3286 3085)
4(3285 3486 3487 3286)
4(3486 3687 3688 3487)
4(3687 3888 3889 3688)
4(3888 4089 4090 3889)
4(70 271 272 71)
4(271 472 473 272)
4(472 673 674 473)
4(673 874 875 674)
4(874 1075 1076 875)
4(1075 1276 1277 1076)
4(1276 1477 1478 1277)
4(1477 1678 1679 1478)
4(1678 1879 1880 1679)
4(1879 2080 2081 1880)
4(2080 2281 2282 2081)
4(2281 2482 2483 2282)
4(2482 2683 2684 2483)
4(2683 2884 2885 2684)
4(2884 3085 3086 2885)
4(3085 3286 3287 3086)
4(3286 3487 3488 3287)
4(3487 3688 3689 3488)
4(3688 3889 3890 3689)
4(3889 4090 4091 3890)
4(71 272 273 72)
4(272 473 474 273)
4(473 674 675 474)
4(674 875 876 675)
4(875 1076 1077 876)
4(1076 1277 1278 1077)
4(1277 1478 1479 1278)
4(1478 1679 1680 1479)
4(1679 1880 1881 1680)
4(1880 2081 2082 1881)
4(2081 2282 2283 2082)
4(2282 2483 2484 2283)
4(2483 2684 2685 2484)
4(2684 2885 2886 2685)
4(2885 3086 3087 2886)
4(3086 3287 3288 3087)
4(3287 3488 3489 3288)
4(3488 3689 3690 3489)
4(3689 3890 3891 3690)
4(3890 4091 4092 3891)
4(72 273 274 73)
4(273 474 475 274)
4(474 675 676 475)
4(675 876 877 676)
4(876 1077 1078 877)
4(1077 1278 1279 1078)
4(1278 1479 1480 1279)
4(1479 1680 1681 1480)
4(1680 1881 1882 1681)
4(1881 2082 2083 1882)
4(2082 2283 2284 2083)
4(2283 2484 2485 2284)
4(2484 2685 2686 2485)
4(2685 2886 2887 2686)
4(2886 3087 3088 2887)
4(3087 3288 3289 3088)
4(3288 3489 3490 3289)
4(3489 3690 3691 3490)
4(3690 3891 3892 3691)
4(3891 4092 4093 3892)
4(73 274 275 74)
4(274 475 476 275)
4(475 676 677 476)
4(676 877 878 677)
4(877 1078 1079 878)
4(1078 1279 1280 1079)
4(1279 1480 1481 1280)
4(1480 1681 1682 1481)
4(1681 1882 1883 1682)
4(1882 2083 2084 1883)
4(2083 2284 2285 2084)
4(2284 2485 2486 2285)
4(2485 2686 2687 2486)
4(2686 2887 2888 2687)
4(2887 3088 3089 2888)
4(3088 3289 3290 3089)
4(3289 3490 3491 3290)
4(3490 3691 3692 3491)
4(3691 3892 3893 3692)
4(3892 4093 4094 3893)
4(74 275 276 75)
4(275 476 477 276)
4(476 677 678 477)
4(677 878 879 678)
4(878 1079 1080 879)
4(1079 1280 1281 1080)
4(1280 1481 1482 1281)
4(1481 1682 1683 1482)
4(1682 1883 1884 1683)
4(1883 2084 2085 1884)
4(2084 2285 2286 2085)
4(2285 2486 2487 2286)
4(2486 2687 2688 2487)
4(2687 2888 2889 2688)
4(2888 3089 3090 2889)
4(3089 3290 3291 3090)
4(3290 3491 3492 3291)
4(3491 3692 3693 3492)
4(3692 3893 3894 3693)
4(3893 4094 4095 3894)
4(75 276 277 76)
4(276 477 478 277)
4(477 678 679 478)
4(678 879 880 679)
4(879 1080 1081 880)
4(1080 1281 1282 1081)
4(1281 1482 1483 1282)
4(1482 1683 1684 1483)
4(1683 1884 1885 1684)
4(1884 2085 2086 1885)
4(2085 2286 2287 2086)
4(2286 2487 2488 2287)
4(2487 2688 2689 2488)
4(2688 2889 2890 2689)
4(2889 3090 3091 2890)
4(3090 3291 3292 3091)
4(3291 3492 3493 3292)
4(3492 3693 3694 3493)
4(3693 3894 3895 3694)
4(3894 4095 4096 3895)
4(76 277 278 77)
4(277 478 479 278)
4(478 679 680 479)
4(679 880 881 680)
4(880 1081 1082 881)
4(1081 1282 1283 1082)
4(1282 1483 1484 1283)
4(1483 1684 1685 1484)
4(1684 1885 1886 1685)
4(1885 2086 2087 1886)
4(2086 2287 2288 2087)
4(2287 2488 2489 2288)
4(2488 2689 2690 2489)
4(2689 2890 2891 2690)
4(2890 3091 3092 2891)
4(3091 3292 3293 3092)
4(3292 3493 3494 3293)
4(3493 3694 3695 3494)
4(3694 3895 3896 3695)
4(3895 4096 4097 3896)
4(77 278 279 78)
4(278 479 480 279)
4(479 680 681 480)
4(680 881 882 681)
4(881 1082 1083 882)
4(1082 1283 1284 1083)
4(1283 1484 1485 1284)
4(1484 1685 1686 1485)
4(1685 1886 1887 1686)
4(1886 2087 2088 1887)
4(2087 2288 2289 2088)
4(2288 2489 2490 2289)
4(2489 2690 2691 2490)
4(2690 2891 2892 2691)
4(2891 3092 3093 2892)
4(3092 3293 3294 3093)
4(3293 3494 3495 3294)
4(3494 3695 3696 3495)
4(3695 3896 3897 3696)
4(3896 4097 4098 3897)
4(78 279 280 79)
4(279 480 481 280)
4(480 681 682 481)
4(681 882 883 682)
4(882 1083 1084 883)
4(1083 1284 1285 1084)
4(1284 1485 1486 1285)
4(1485 1686 1687 1486)
4(1686 1887 1888 1687)
4(1887 2088 2089 1888)
4(2088 2289 2290 2089)
4(2289 2490 2491 2290)
4(2490 2691 2692 2491)
4(2691 2892 2893 2692)
4(2892 3093 3094 2893)
4(3093 3294 3295 3094)
4(3294 3495 3496 3295)
4(3495 3696 3697 3496)
4(3696 3897 3898 3697)
4(3897 4098 4099 3898)
4(79 280 281 80)
4(280 481 482 281)
4(481 682 683 482)
4(682 883 884 683)
4(883 1084 1085 884)
4(1084 1285 1286 1085)
4(1285 1486 1487 1286)
4(1486 1687 1688 1487)
4(1687 1888 1889 1688)
4(1888 2089 2090 1889)
4(2089 2290 2291 2090)
4(2290 2491 2492 2291)
4(2491 2692 2693 2492)
4(2692 2893 2894 2693)
4(2893 3094 3095 2894)
4(3094 3295 3296 3095)
4(3295 3496 3497 3296)
4(3496 3697 3698 3497)
4(3697 3898 3899 3698)
4(3898 4099 4100 3899)
4(80 281 282 81)
4(281 482 483 282)
4(482 683 684 483)
4(683 884 885 684)
4(884 1085 1086 885)
4(1085 1286 1287 1086)
4(1286 1487 1488 1287)
4(1487 1688 1689 1488)
4(1688 1889 1890 1689)
4(1889 2090 2091 1890)
4(2090 2291 2292 2091)
4(2291 2492 2493 2292)
4(2492 2693 2694 2493)
4(2693 2894 2895 2694)
4(2894 3095 3096 2895)
4(3095 3296 3297 3096)
4(3296 3497 3498 3297)
4(3497 3698 3699 3498)
4(3698 3899 3900 3699)
4(3899 4100 4101 3900)
4(81 282 283 82)
4(282 483 484 283)
4(483 684 685 484)
4(684 885 886 685)
4(885 1086 1087 886)
4(1086 1287 1288 1087)
4(1287 1488 1489 1288)
4(1488 1689 1690 1489)
4(1689 1890 1891 1690)
4(1890 2091 2092 1891)
4(2091 2292 2293 2092)
4(2292 2493 2494 2293)
4(2493 2694 2695 2494)
4(2694 2895 2896 2695)
4(2895 3096 3097 2896)
4(3096 3297 3298 3097)
4(3297 3498 3499 3298)
4(3498 3699 3700 3499)
4(3699 3900 3901 3700)
4(3900 4101 4102 3901)
4(82 283 284 83)
4(283 484 485 284)
4(484 685 686 485)
4(685 886 887 686)
4(886 1087 1088 887)
4(1087 1288 1289 1088)
4(1288 1489 1490 1289)
4(1489 1690 1691 1490)
4(1690 1891 1892 1691)
4(1891 2092 2093 1892)
4(2092 2293 2294 2093)
4(2293 2494 2495 2294)
4(2494 2695 2696 2495)
4(2695 2896 2897 2696)
4(2896 3097 3098 2897)
4(3097 3298 3299 3098)
4(3298 3499 3500 3299)
4(3499 3700 3701 3500)
4(3700 3901 3902 3701)
4(3901 4102 4103 3902)
4(83 284 285 84)
4(284 485 486 285)
4(485 686 687 486)
4(686 887 888 687)
4(887 1088 1089 888)
4(1088 1289 1290 1089)
4(1289 1490 1491 1290)
4(1490 1691 1692 1491)
4(1691 1892 1893 1692)
4(1892 2093 2094 1893)
4(2093 2294 2295 2094)
4(2294 2495 2496 2295)
4(2495 2696 2697 2496)
4(2696 2897 2898 2697)
4(2897 3098 3099 2898)
4(3098 3299 3300 3099)
4(3299 3500 3501 3300)
4(3500 3701 3702 3501)
4(3701 3902 3903 3702)
4(3902 4103 4104 3903)
4(84 285 286 85)
4(285 486 487 286)
4(486 687 688 487)
4(687 888 889 688)
4(888 1089 1090 889)
4(1089 1290 1291 1090)
4(1290 1491 1492 1291)
4(1491 1692 1693 1492)
4(1692 1893 1894 1693)
4(1893 2094 2095 1894)
4(2094 2295 2296 2095)
4(2295 2496 2497 2296)
4(2496 2697 2698 2497)
4(2697 2898 2899 2698)
4(2898 3099 3100 2899)
4(3099 3300 3301 3100)
4(3300 3501 3502 3301)
4(3501 3702 3703 3502)
4(3702 3903 3904 3703)
4(3903 4104 4105 3904)
4(85 286 287 86)
4(286 487 488 287)
4(487 688 689 488)
4(688 889 890 689)
4(889 1090 1091 890)
4(1090 1291 1292 1091)
4(1291 1492 1493 1292)
4(1492 1693 1694 1493)
4(1693 1894 1895 1694)
4(1894 2095 2096 1895)
4(2095 2296 2297 2096)
4(2296 2497 2498 2297)
4(2497 2698 2699 2498)
4(2698 2899 2900 2699)
4(2899 3100 3101 2900)
4(3100 3301 3302 3101)
4(3301 3502 3503 3302)
4(3502 3703 3704 3503)
4(3703 3904 3905 3704)
4(3904 4105 4106 3905)
4(86 287 288 87)
4(287 488 489 288)
4(488 689 690 489)
4(689 890 891 690)
4(890 1091 1092 891)
4(1091 1292 1293 1092)
4(1292 1493 1494 1293)
4(1493 1694 1695 1494)
4(1694 1895 1896 1695)
4(1895 2096 2097 1896)
4(2096 2297 2298 2097)
4(2297 2498 2499 2298)
4(2498 2699 2700 2499)
4(2699 2900 2901 2700)
4(2900 3101 3102 2901)
4(3101 3302 3303 3102)
4(3302 3503 3504 3303)
4(3503 3704 3705 3504)
4(3704 3905 3906 3705)
4(3905 4106 4107 3906)
4(87 288 289 88)
4(288 489 490 289)
4(489 690 691 490)
4(690 891 892 691)
4(891 1092 1093 892)
4(1092 1293 1294 1093)
4(1293 1494 1495 1294)
4(1494 1695 1696 1495)
4(1695 1896 1897 1696)
4(1896 2097 2098 1897)
4(2097 2298 2299 2098)
4(2298 2499 2500 2299)
4(2499 2700 2701 2500)
4(2700 2901 2902 2701)
4(2901 3102 3103 2902)
4(3102 3303 3304 3103)
4(3303 3504 3505 3304)
4(3504 3705 3706 3505)
4(3705 3906 3907 3706)
4(3906 4107 4108 3907)
4(88 289 290 89)
4(289 490 491 290)
4(490 691 692 491)
4(691 892 893 692)
4(892 1093 1094 893)
4(1093 1294 1295 1094)
4(1294 1495 1496 1295)
4(1495 1696 1697 1496)
4(1696 1897 1898 1697)
4(1897 2098 2099 1898)
4(2098 2299 2300 2099)
4(2299 2500 2501 2300)
4(2500 2701 2702 2501)
4(2701 2902 2903 2702)
4(2902 3103 3104 2903)
4(3103 3304 3305 3104)
4(3304 3505 3506 3305)
4(3505 3706 3707 3506)
4(3706 3907 3908 3707)
4(3907 4108 4109 3908)
4(89 290 291 90)
4(290 491 492 291)
4(491 692 693 492)
4(692 893 894 693)
4(893 1094 1095 894)
4(1094 1295 1296 1095)
4(1295 1496 1497 1296)
4(1496 1697 1698 1497)
4(1697 1898 1899 1698)
4(1898 2099 2100 1899)
4(2099 2300 2301 2100)
4(2300 2501 2502 2301)
4(2501 2702 2703 2502)
4(2702 2903 2904 2703)
4(2903 3104 3105 2904)
4(3104 3305 3306 3105)
4(3305 3506 3507 3306)
4(3506 3707 3708 3507)
4(3707 3908 3909 3708)
4(3908 4109 4110 3909)
4(90 291 292 91)
4(291 492 493 292)
4(492 693 694 493)
4(693 894 895 694)
4(894 1095 1096 895)
4(1095 1296 1297 1096)
4(1296 1497 1498 1297)
4(1497 1698 1699 1498)
4(1698 1899 1900 1699)
4(1899 2100 2101 1900)
4(2100 2301 2302 2101)
4(2301 2502 2503 2302)
4(2502 2703 2704 2503)
4(2703 2904 2905 2704)
4(2904 3105 3106 2905)
4(3105 3306 3307 3106)
4(3306 3507 3508 3307)
4(3507 3708 3709 3508)
4(3708 3909 3910 3709)
4(3909 4110 4111 3910)
4(91 292 293 92)
4(292 493 494 293)
4(493 694 695 494)
4(694 895 896 695)
4(895 1096 1097 896)
4(1096 1297 1298 1097)
4(1297 1498 1499 1298)
4(1498 1699 1700 1499)
4(1699 1900 1901 1700)
4(1900 2101 2102 1901)
4(2101 2302 2303 2102)
4(2302 2503 2504 2303)
4(2503 2704 2705 2504)
4(2704 2905 2906 2705)
4(2905 3106 3107 2906)
4(3106 3307 3308 3107)
4(3307 3508 3509 3308)
4(3508 3709 3710 3509)
4(3709 3910 3911 3710)
4(3910 4111 4112 3911)
4(92 293 294 93)
4(293 494 495 294)
4(494 695 696 495)
4(695 896 897 696)
4(896 1097 1098 897)
4(1097 1298 1299 1098)
4(1298 1499 1500 1299)
4(1499 1700 1701 1500)
4(1700 1901 1902 1701)
4(1901 2102 2103 1902)
4(2102 2303 2304 2103)
4(2303 2504 2505 2304)
4(2504 2705 2706 2505)
4(2705 2906 2907 2706)
4(2906 3107 3108 2907)
4(3107 3308 3309 3108)
4(3308 3509 3510 3309)
4(3509 3710 3711 3510)
4(3710 3911 3912 3711)
4(3911 4112 4113 3912)
4(93 294 295 94)
4(294 495 496 295)
4(495 696 697 496)
4(696 897 898 697)
4(897 1098 1099 898)
4(1098 1299 1300 1099)
4(1299 1500 1501 1300)
4(1500 1701 1702 1501)
4(1701 1902 1903 1702)
4(1902 2103 2104 1903)
4(2103 2304 2305 2104)
4(2304 2505 2506 2305)
4(2505 2706 2707 2506)
4(2706 2907 2908 2707)
4(2907 3108 3109 2908)
4(3108 3309 3310 3109)
4(3309 3510 3511 3310)
4(3510 3711 3712 3511)
4(3711 3912 3913 3712)
4(3912 4113 4114 3913)
4(94 295 296 95)
4(295 496 497 296)
4(496 697 698 497)
4(697 898 899 698)
4(898 1099 1100 899)
4(1099 1300 1301 1100)
4(1300 1501 1502 1301)
4(1501 1702 1703 1502)
4(1702 1903 1904 1703)
4(1903 2104 2105 1904)
4(2104 2305 2306 2105)
4(2305 2506 2507 2306)
4(2506 2707 2708 2507)
4(2707 2908 2909 2708)
4(2908 3109 3110 2909)
4(3109 3310 3311 3110)
4(3310 3511 3512 3311)
4(3511 3712 3713 3512)
4(3712 3913 3914 3713)
4(3913 4114 4115 3914)
4(95 296 297 96)
4(296 497 498 297)
4(497 698 699 498)
4(698 899 900 699)
4(899 1100 1101 900)
4(1100 1301 1302 1101)
4(1301 1502 1503 1302)
4(1502 1703 1704 1503)
4(1703 1904 1905 1704)
4(1904 2105 2106 1905)
4(2105 2306 2307 2106)
4(2306 2507 2508 2307)
4(2507 2708 2709 2508)
4(2708 2909 2910 2709)
4(2909 3110 3111 2910)
4(3110 3311 3312 3111)
4(3311 3512 3513 3312)
4(3512 3713 3714 3513)
4(3713 3914 3915 3714)
4(3914 4115 4116 3915)
4(96 297 298 97)
4(297 498 499 298)
4(498 699 700 499)
4(699 900 901 700)
4(900 1101 1102 901)
4(1101 1302 1303 1102)
4(1302 1503 1504 1303)
4(1503 1704 1705 1504)
4(1704 1905 1906 1705)
4(1905 2106 2107 1906)
4(2106 2307 2308 2107)
4(2307 2508 2509 2308)
4(2508 2709 2710 2509)
4(2709 2910 2911 2710)
4(2910 3111 3112 2911)
4(3111 3312 3313 3112)
4(3312 3513 3514 3313)
4(3513 3714 3715 3514)
4(3714 3915 3916 3715)
4(3915 4116 4117 3916)
4(97 298 299 98)
4(298 499 500 299)
4(499 700 701 500)
4(700 901 902 701)
4(901 1102 1103 902)
4(1102 1303 1304 1103)
4(1303 1504 1505 1304)
4(1504 1705 1706 1505)
4(1705 1906 1907 1706)
4(1906 2107 2108 1907)
4(2107 2308 2309 2108)
4(2308 2509 2510 2309)
4(2509 2710 2711 2510)
4(2710 2911 2912 2711)
4(2911 3112 3113 2912)
4(3112 3313 3314 3113)
4(3313 3514 3515 3314)
4(3514 3715 3716 3515)
4(3715 3916 3917 3716)
4(3916 4117 4118 3917)
4(98 299 300 99)
4(299 500 501 300)
4(500 701 702 501)
4(701 902 903 702)
4(902 1103 1104 903)
4(1103 1304 1305 1104)
4(1304 1505 1506 1305)
4(1505 1706 1707 1506)
4(1706 1907 1908 1707)
4(1907 2108 2109 1908)
4(2108 2309 2310 2109)
4(2309 2510 2511 2310)
4(2510 2711 2712 2511)
4(2711 2912 2913 2712)
4(2912 3113 3114 2913)
4(3113 3314 3315 3114)
4(3314 3515 3516 3315)
4(3515 3716 3717 3516)
4(3716 3917 3918 3717)
4(3917 4118 4119 3918)
4(99 300 301 100)
4(300 501 502 301)
4(501 702 703 502)
4(702 903 904 703)
4(903 1104 1105 904)
4(1104 1305 1306 1105)
4(1305 1506 1507 1306)
4(1506 1707 1708 1507)
4(1707 1908 1909 1708)
4(1908 2109 2110 1909)
4(2109 2310 2311 2110)
4(2310 2511 2512 2311)
4(2511 2712 2713 2512)
4(2712 2913 2914 2713)
4(2913 3114 3115 2914)
4(3114 3315 3316 3115)
4(3315 3516 3517 3316)
4(3516 3717 3718 3517)
4(3717 3918 3919 3718)
4(3918 4119 4120 3919)
4(100 301 302 101)
4(301 502 503 302)
4(502 703 704 503)
4(703 904 905 704)
4(904 1105 1106 905)
4(1105 1306 1307 1106)
4(1306 1507 1508 1307)
4(1507 1708 1709 1508)
4(1708 1909 1910 1709)
4(1909 2110 2111 1910)
4(2110 2311 2312 2111)
4(2311 2512 2513 2312)
4(2512 2713 2714 2513)
4(2713 2914 2915 2714)
4(2914 3115 3116 2915)
4(3115 3316 3317 3116)
4(3316 3517 3518 3317)
4(3517 3718 3719 3518)
4(3718 3919 3920 3719)
4(3919 4120 4121 3920)
4(101 302 303 102)
4(302 503 504 303)
4(503 704 705 504)
4(704 905 906 705)
4(905 1106 1107 906)
4(1106 1307 1308 1107)
4(1307 1508 1509 1308)
4(1508 1709 1710 1509)
4(1709 1910 1911 1710)
4(1910 2111 2112 1911)
4(2111 2312 2313 2112)
4(2312 2513 2514 2313)
4(2513 2714 2715 2514)
4(2714 2915 2916 2715)
4(2915 3116 3117 2916)
4(3116 3317 3318 3117)
4(3317 3518 3519 3318)
4(3518 3719 3720 3519)
4(3719 3920 3921 3720)
4(3920 4121 4122 3921)
4(102 303 304 103)
4(303 504 505 304)
4(504 705 706 505)
4(705 906 907 706)
4(906 1107 1108 907)
4(1107 1308 1309 1108)
4(1308 1509 1510 1309)
4(1509 1710 1711 1510)
4(1710 1911 1912 1711)
4(1911 2112 2113 1912)
4(2112 2313 2314 2113)
4(2313 2514 2515 2314)
4(2514 2715 2716 2515)
4(2715 2916 2917 2716)
4(2916 3117 3118 2917)
4(3117 3318 3319 3118)
4(3318 3519 3520 3319)
4(3519 3720 3721 3520)
4(3720 3921 3922 3721)
4(3921 4122 4123 3922)
4(103 304 305 104)
4(304 505 506 305)
4(505 706 707 506)
4(706 907 908 707)
4(907 1108 1109 908)
4(1108 1309 1310 1109)
4(1309 1510 1511 1310)
4(1510 1711 1712 1511)
4(1711 1912 1913 1712)
4(1912 2113 2114 1913)
4(2113 2314 2315 2114)
4(2314 2515 2516 2315)
4(2515 2716 2717 2516)
4(2716 2917 2918 2717)
4(2917 3118 3119 2918)
4(3118 3319 3320 3119)
4(3319 3520 3521 3320)
4(3520 3721 3722 3521)
4(3721 3922 3923 3722)
4(3922 4123 4124 3923)
4(104 305 306 105)
4(305 506 507 306)
4(506 707 708 507)
4(707 908 909 708)
4(908 1109 1110 909)
4(1109 1310 1311 1110)
4(1310 1511 1512 1311)
4(1511 1712 1713 1512)
4(1712 1913 1914 1713)
4(1913 2114 2115 1914)
4(2114 2315 2316 2115)
4(2315 2516 2517 2316)
4(2516 2717 2718 2517)
4(2717 2918 2919 2718)
4(2918 3119 3120 2919)
4(3119 3320 3321 3120)
4(3320 3521 3522 3321)
4(3521 3722 3723 3522)
4(3722 3923 3924 3723)
4(3923 4124 4125 3924)
4(105 306 307 106)
4(306 507 508 307)
4(507 708 709 508)
4(708 909 910 709)
4(909 1110 1111 910)
4(1110 1311 1312 1111)
4(1311 1512 1513 1312)
4(1512 1713 1714 1513)
4(1713 1914 1915 1714)
4(1914 2115 2116 1915)
4(2115 2316 2317 2116)
4(2316 2517 2518 2317)
4(2517 2718 2719 2518)
4(2718 2919 2920 2719)
4(2919 3120 3121 2920)
4(3120 3321 3322 3121)
4(3321 3522 3523 3322)
4(3522 3723 3724 3523)
4(3723 3924 3925 3724)
4(3924 4125 4126 3925)
4(106 307 308 107)
4(307 508 509 308)
4(508 709 710 509)
4(709 910 911 710)
4(910 1111 1112 911)
4(1111 1312 1313 1112)
4(1312 1513 1514 1313)
4(1513 1714 1715 1514)
4(1714 1915 1916 1715)
4(1915 2116 2117 1916)
4(2116 2317 2318 2117)
4(2317 2518 2519 2318)
4(2518 2719 2720 2519)
4(2719 2920 2921 2720)
4(2920 3121 3122 2921)
4(3121 3322 3323 3122)
4(3322 3523 3524 3323)
4(3523 3724 3725 3524)
4(3724 3925 3926 3725)
4(3925 4126 4127 3926)
4(107 308 309 108)
4(308 509 510 309)
4(509 710 711 510)
4(710 911 912 711)
4(911 1112 1113 912)
4(1112 1313 1314 1113)
4(1313 1514 1515 1314)
4(1514 1715 1716 1515)
4(1715 1916 1917 1716)
4(1916 2117 2118 1917)
4(2117 2318 2319 2118)
4(2318 2519 2520 2319)
4(2519 2720 2721 2520)
4(2720 2921 2922 2721)
4(2921 3122 3123 2922)
4(3122 3323 3324 3123)
4(3323 3524 3525 3324)
4(3524 3725 3726 3525)
4(3725 3926 3927 3726)
4(3926 4127 4128 3927)
4(108 309 310 109)
4(309 510 511 310)
4(510 711 712 511)
4(711 912 913 712)
4(912 1113 1114 913)
4(1113 1314 1315 1114)
4(1314 1515 1516 1315)
4(1515 1716 1717 1516)
4(1716 1917 1918 1717)
4(1917 2118 2119 1918)
4(2118 2319 2320 2119)
4(2319 2520 2521 2320)
4(2520 2721 2722 2521)
4(2721 2922 2923 2722)
4(2922 3123 3124 2923)
4(3123 3324 3325 3124)
4(3324 3525 3526 3325)
4(3525 3726 3727 3526)
4(3726 3927 3928 3727)
4(3927 4128 4129 3928)
4(109 310 311 110)
4(310 511 512 311)
4(511 712 713 512)
4(712 913 914 713)
4(913 1114 1115 914)
4(1114 1315 1316 1115)
4(1315 1516 1517 1316)
4(1516 1717 1718 1517)
4(1717 1918 1919 1718)
4(1918 2119 2120 1919)
4(2119 2320 2321 2120)
4(2320 2521 2522 2321)
4(2521 2722 2723 2522)
4(2722 2923 2924 2723)
4(2923 3124 3125 2924)
4(3124 3325 3326 3125)
4(3325 3526 3527 3326)
4(3526 3727 3728 3527)
4(3727 3928 3929 3728)
4(3928 4129 4130 3929)
4(110 311 312 111)
4(311 512 513 312)
4(512 713 714 513)
4(713 914 915 714)
4(914 1115 1116 915)
4(1115 1316 1317 1116)
4(1316 1517 1518 1317)
4(1517 1718 1719 1518)
4(1718 1919 1920 1719)
4(1919 2120 2121 1920)
4(2120 2321 2322 2121)
4(2321 2522 2523 2322)
4(2522 2723 2724 2523)
4(2723 2924 2925 2724)
4(2924 3125 3126 2925)
4(3125 3326 3327 3126)
4(3326 3527 3528 3327)
4(3527 3728 3729 3528)
4(3728 3929 3930 3729)
4(3929 4130 4131 3930)
4(111 312 313 112)
4(312 513 514 313)
4(513 714 715 514)
4(714 915 916 715)
4(915 1116 1117 916)
4(1116 1317 1318 1117)
4(1317 1518 1519 1318)
4(1518 1719 1720 1519)
4(1719 1920 1921 1720)
4(1920 2121 2122 1921)
4(2121 2322 2323 2122)
4(2322 2523 2524 2323)
4(2523 2724 2725 2524)
4(2724 2925 2926 2725)
4(2925 3126 3127 2926)
4(3126 3327 3328 3127)
4(3327 3528 3529 3328)
4(3528 3729 3730 3529)
4(3729 3930 3931 3730)
4(3930 4131 4132 3931)
4(112 313 314 113)
4(313 514 515 314)
4(514 715 716 515)
4(715 916 917 716)
4(916 1117 1118 917)
4(1117 1318 1319 1118)
4(1318 1519 1520 1319)
4(1519 1720 1721 1520)
4(1720 1921 1922 1721)
4(1921 2122 2123 1922)
4(2122 2323 2324 2123)
4(2323 2524 2525 2324)
4(2524 2725 2726 2525)
4(2725 2926 2927 2726)
4(2926 3127 3128 2927)
4(3127 3328 3329 3128)
4(3328 3529 3530 3329)
4(3529 3730 3731 3530)
4(3730 3931 3932 3731)
4(3931 4132 4133 3932)
4(113 314 315 114)
4(314 515 516 315)
4(515 716 717 516)
4(716 917 918 717)
4(917 1118 1119 918)
4(1118 1319 1320 1119)
4(1319 1520 1521 1320)
4(1520 1721 1722 1521)
4(1721 1922 1923 1722)
4(1922 2123 2124 1923)
4(2123 2324 2325 2124)
4(2324 2525 2526 2325)
4(2525 2726 2727 2526)
4(2726 2927 2928 2727)
4(2927 3128 3129 2928)
4(3128 3329 3330 3129)
4(3329 3530 3531 3330)
4(3530 3731 3732 3531)
4(3731 3932 3933 3732)
4(3932 4133 4134 3933)
4(114 315 316 115)
4(315 516 517 316)
4(516 717 718 517)
4(717 918 919 718)
4(918 1119 1120 919)
4(1119 1320 1321 1120)
4(1320 1521 1522 1321)
4(1521 1722 1723 1522)
4(1722 1923 1924 1723)
4(1923 2124 2125 1924)
4(2124 2325 2326 2125)
4(2325 2526 2527 2326)
4(2526 2727 2728 2527)
4(2727 2928 2929 2728)
4(2928 3129 3130 2929)
4(3129 3330 3331 3130)
4(3330 3531 3532 3331)
4(3531 3732 3733 3532)
4(3732 3933 3934 3733)
4(3933 4134 4135 3934)
4(115 316 317 116)
4(316 517 518 317)
4(517 718 719 518)
4(718 919 920 719)
4(919 1120 1121 920)
4(1120 1321 1322 1121)
4(1321 1522 1523 1322)
4(1522 1723 1724 1523)
4(1723 1924 1925 1724)
4(1924 2125 2126 1925)
4(2125 2326 2327 2126)
4(2326 2527 2528 2327)
4(2527 2728 2729 2528)
4(2728 2929 2930 2729)
4(2929 3130 3131 2930)
4(3130 3331 3332 3131)
4(3331 3532 3533 3332)
4(3532 3733 3734 3533)
4(3733 3934 3935 3734)
4(3934 4135 4136 3935)
4(116 317 318 117)
4(317 518 519 318)
4(518 719 720 519)
4(719 920 921 720)
4(920 1121 1122 921)
4(1121 1322 1323 1122)
4(1322 1523 1524 1323)
4(1523 1724 1725 1524)
4(1724 1925 1926 1725)
4(1925 2126 2127 1926)
4(2126 2327 2328 2127)
4(2327 2528 2529 2328)
4(2528 2729 2730 2529)
4(2729 2930 2931 2730)
4(2930 3131 3132 2931)
4(3131 3332 3333 3132)
4(3332 3533 3534 3333)
4(3533 3734 3735 3534)
4(3734 3935 3936 3735)
4(3935 4136 4137 3936)
4(117 318 319 118)
4(318 519 520 319)
4(519 720 721 520)
4(720 921 922 721)
4(921 1122 1123 922)
4(1122 1323 1324 1123)
4(1323 1524 1525 1324)
4(1524 1725 1726 1525)
4(1725 1926 1927 1726)
4(1926 2127 2128 1927)
4(2127 2328 2329 2128)
4(2328 2529 2530 2329)
4(2529 2730 2731 2530)
4(2730 2931 2932 2731)
4(2931 3132 3133 2932)
4(3132 3333 3334 3133)
4(3333 3534 3535 3334)
4(3534 3735 3736 3535)
4(3735 3936 3937 3736)
4(3936 4137 4138 3937)
4(118 319 320 119)
4(319 520 521 320)
4(520 721 722 521)
4(721 922 923 722)
4(922 1123 1124 923)
4(1123 1324 1325 1124)
4(1324 1525 1526 1325)
4(1525 1726 1727 1526)
4(1726 1927 1928 1727)
4(1927 2128 2129 1928)
4(2128 2329 2330 2129)
4(2329 2530 2531 2330)
4(2530 2731 2732 2531)
4(2731 2932 2933 2732)
4(2932 3133 3134 2933)
4(3133 3334 3335 3134)
4(3334 3535 3536 3335)
4(3535 3736 3737 3536)
4(3736 3937 3938 3737)
4(3937 4138 4139 3938)
4(119 320 321 120)
4(320 521 522 321)
4(521 722 723 522)
4(722 923 924 723)
4(923 1124 1125 924)
4(1124 1325 1326 1125)
4(1325 1526 1527 1326)
4(1526 1727 1728 1527)
4(1727 1928 1929 1728)
4(1928 2129 2130 1929)
4(2129 2330 2331 2130)
4(2330 2531 2532 2331)
4(2531 2732 2733 2532)
4(2732 2933 2934 2733)
4(2933 3134 3135 2934)
4(3134 3335 3336 3135)
4(3335 3536 3537 3336)
4(3536 3737 3738 3537)
4(3737 3938 3939 3738)
4(3938 4139 4140 3939)
4(120 321 322 121)
4(321 522 523 322)
4(522 723 724 523)
4(723 924 925 724)
4(924 1125 1126 925)
4(1125 1326 1327 1126)
4(1326 1527 1528 1327)
4(1527 1728 1729 1528)
4(1728 1929 1930 1729)
4(1929 2130 2131 1930)
4(2130 2331 2332 2131)
4(2331 2532 2533 2332)
4(2532 2733 2734 2533)
4(2733 2934 2935 2734)
4(2934 3135 3136 2935)
4(3135 3336 3337 3136)
4(3336 3537 3538 3337)
4(3537 3738 3739 3538)
4(3738 3939 3940 3739)
4(3939 4140 4141 3940)
4(121 322 323 122)
4(322 523 524 323)
4(523 724 725 524)
4(724 925 926 725)
4(925 1126 1127 926)
4(1126 1327 1328 1127)
4(1327 1528 1529 1328)
4(1528 1729 1730 1529)
4(1729 1930 1931 1730)
4(1930 2131 2132 1931)
4(2131 2332 2333 2132)
4(2332 2533 2534 2333)
4(2533 2734 2735 2534)
4(2734 2935 2936 2735)
4(2935 3136 3137 2936)
4(3136 3337 3338 3137)
4(3337 3538 3539 3338)
4(3538 3739 3740 3539)
4(3739 3940 3941 3740)
4(3940 4141 4142 3941)
4(122 323 324 123)
4(323 524 525 324)
4(524 725 726 525)
4(725 926 927 726)
4(926 1127 1128 927)
4(1127 1328 1329 1128)
4(1328 1529 1530 1329)
4(1529 1730 1731 1530)
4(1730 1931 1932 1731)
4(1931 2132 2133 1932)
4(2132 2333 2334 2133)
4(2333 2534 2535 2334)
4(2534 2735 2736 2535)
4(2735 2936 2937 2736)
4(2936 3137 3138 2937)
4(3137 3338 3339 3138)
4(3338 3539 3540 3339)
4(3539 3740 3741 3540)
4(3740 3941 3942 3741)
4(3941 4142 4143 3942)
4(123 324 325 124)
4(324 525 526 325)
4(525 726 727 526)
4(726 927 928 727)
4(927 1128 1129 928)
4(1128 1329 1330 1129)
4(1329 1530 1531 1330)
4(1530 1731 1732 1531)
4(1731 1932 1933 1732)
4(1932 2133 2134 1933)
4(2133 2334 2335 2134)
4(2334 2535 2536 2335)
4(2535 2736 2737 2536)
4(2736 2937 2938 2737)
4(2937 3138 3139 2938)
4(3138 3339 3340 3139)
4(3339 3540 3541 3340)
4(3540 3741 3742 3541)
4(3741 3942 3943 3742)
4(3942 4143 4144 3943)
4(124 325 326 125)
4(325 526 527 326)
4(526 727 728 527)
4(727 928 929 728)
4(928 1129 1130 929)
4(1129 1330 1331 1130)
4(1330 1531 1532 1331)
4(1531 1732 1733 1532)
4(1732 1933 1934 1733)
4(1933 2134 2135 1934)
4(2134 2335 2336 2135)
4(2335 2536 2537 2336)
4(2536 2737 2738 2537)
4(2737 2938 2939 2738)
4(2938 3139 3140 2939)
4(3139 3340 3341 3140)
4(3340 3541 3542 3341)
4(3541 3742 3743 3542)
4(3742 3943 3944 3743)
4(3943 4144 4145 3944)
4(125 326 327 126)
4(326 527 528 327)
4(527 728 729 528)
4(728 929 930 729)
4(929 1130 1131 930)
4(1130 1331 1332 1131)
4(1331 1532 1533 1332)
4(1532 1733 1734 1533)
4(1733 1934 1935 1734)
4(1934 2135 2136 1935)
4(2135 2336 2337 2136)
4(2336 2537 2538 2337)
4(2537 2738 2739 2538)
4(2738 2939 2940 2739)
4(2939 3140 3141 2940)
4(3140 3341 3342 3141)
4(3341 3542 3543 3342)
4(3542 3743 3744 3543)
4(3743 3944 3945 3744)
4(3944 4145 4146 3945)
4(126 327 328 127)
4(327 528 529 328)
4(528 729 730 529)
4(729 930 931 730)
4(930 1131 1132 931)
4(1131 1332 1333 1132)
4(1332 1533 1534 1333)
4(1533 1734 1735 1534)
4(1734 1935 1936 1735)
4(1935 2136 2137 1936)
4(2136 2337 2338 2137)
4(2337 2538 2539 2338)
4(2538 2739 2740 2539)
4(2739 2940 2941 2740)
4(2940 3141 3142 2941)
4(3141 3342 3343 3142)
4(3342 3543 3544 3343)
4(3543 3744 3745 3544)
4(3744 3945 3946 3745)
4(3945 4146 4147 3946)
4(127 328 329 128)
4(328 529 530 329)
4(529 730 731 530)
4(730 931 932 731)
4(931 1132 1133 932)
4(1132 1333 1334 1133)
4(1333 1534 1535 1334)
4(1534 1735 1736 1535)
4(1735 1936 1937 1736)
4(1936 2137 2138 1937)
4(2137 2338 2339 2138)
4(2338 2539 2540 2339)
4(2539 2740 2741 2540)
4(2740 2941 2942 2741)
4(2941 3142 3143 2942)
4(3142 3343 3344 3143)
4(3343 3544 3545 3344)
4(3544 3745 3746 3545)
4(3745 3946 3947 3746)
4(3946 4147 4148 3947)
4(128 329 330 129)
4(329 530 531 330)
4(530 731 732 531)
4(731 932 933 732)
4(932 1133 1134 933)
4(1133 1334 1335 1134)
4(1334 1535 1536 1335)
4(1535 1736 1737 1536)
4(1736 1937 1938 1737)
4(1937 2138 2139 1938)
4(2138 2339 2340 2139)
4(2339 2540 2541 2340)
4(2540 2741 2742 2541)
4(2741 2942 2943 2742)
4(2942 3143 3144 2943)
4(3143 3344 3345 3144)
4(3344 3545 3546 3345)
4(3545 3746 3747 3546)
4(3746 3947 3948 3747)
4(3947 4148 4149 3948)
4(129 330 331 130)
4(330 531 532 331)
4(531 732 733 532)
4(732 933 934 733)
4(933 1134 1135 934)
4(1134 1335 1336 1135)
4(1335 1536 1537 1336)
4(1536 1737 1738 1537)
4(1737 1938 1939 1738)
4(1938 2139 2140 1939)
4(2139 2340 2341 2140)
4(2340 2541 2542 2341)
4(2541 2742 2743 2542)
4(2742 2943 2944 2743)
4(2943 3144 3145 2944)
4(3144 3345 3346 3145)
4(3345 3546 3547 3346)
4(3546 3747 3748 3547)
4(3747 3948 3949 3748)
4(3948 4149 4150 3949)
4(130 331 332 131)
4(331 532 533 332)
4(532 733 734 533)
4(733 934 935 734)
4(934 1135 1136 935)
4(1135 1336 1337 1136)
4(1336 1537 1538 1337)
4(1537 1738 1739 1538)
4(1738 1939 1940 1739)
4(1939 2140 2141 1940)
4(2140 2341 2342 2141)
4(2341 2542 2543 2342)
4(2542 2743 2744 2543)
4(2743 2944 2945 2744)
4(2944 3145 3146 2945)
4(3145 3346 3347 3146)
4(3346 3547 3548 3347)
4(3547 3748 3749 3548)
4(3748 3949 3950 3749)
4(3949 4150 4151 3950)
4(131 332 333 132)
4(332 533 534 333)
4(533 734 735 534)
4(734 935 936 735)
4(935 1136 1137 936)
4(1136 1337 1338 1137)
4(1337 1538 1539 1338)
4(1538 1739 1740 1539)
4(1739 1940 1941 1740)
4(1940 2141 2142 1941)
4(2141 2342 2343 2142)
4(2342 2543 2544 2343)
4(2543 2744 2745 2544)
4(2744 2945 2946 2745)
4(2945 3146 3147 2946)
4(3146 3347 3348 3147)
4(3347 3548 3549 3348)
4(3548 3749 3750 3549)
4(3749 3950 3951 3750)
4(3950 4151 4152 3951)
4(132 333 334 133)
4(333 534 535 334)
4(534 735 736 535)
4(735 936 937 736)
4(936 1137 1138 937)
4(1137 1338 1339 1138)
4(1338 1539 1540 1339)
4(1539 1740 1741 1540)
4(1740 1941 1942 1741)
4(1941 2142 2143 1942)
4(2142 2343 2344 2143)
4(2343 2544 2545 2344)
4(2544 2745 2746 2545)
4(2745 2946 2947 2746)
4(2946 3147 3148 2947)
4(3147 3348 3349 3148)
4(3348 3549 3550 3349)
4(3549 3750 3751 3550)
4(3750 3951 3952 3751)
4(3951 4152 4153 3952)
4(133 334 335 134)
4(334 535 536 335)
4(535 736 737 536)
4(736 937 938 737)
4(937 1138 1139 938)
4(1138 1339 1340 1139)
4(1339 1540 1541 1340)
4(1540 1741 1742 1541)
4(1741 1942 1943 1742)
4(1942 2143 2144 1943)
4(2143 2344 2345 2144)
4(2344 2545 2546 2345)
4(2545 2746 2747 2546)
4(2746 2947 2948 2747)
4(2947 3148 3149 2948)
4(3148 3349 3350 3149)
4(3349 3550 3551 3350)
4(3550 3751 3752 3551)
4(3751 3952 3953 3752)
4(3952 4153 4154 3953)
4(134 335 336 135)
4(335 536 537 336)
4(536 737 738 537)
4(737 938 939 738)
4(938 1139 1140 939)
4(1139 1340 1341 1140)
4(1340 1541 1542 1341)
4(1541 1742 1743 1542)
4(1742 1943 1944 1743)
4(1943 2144 2145 1944)
4(2144 2345 2346 2145)
4(2345 2546 2547 2346)
4(2546 2747 2748 2547)
4(2747 2948 2949 2748)
4(2948 3149 3150 2949)
4(3149 3350 3351 3150)
4(3350 3551 3552 3351)
4(3551 3752 3753 3552)
4(3752 3953 3954 3753)
4(3953 4154 4155 3954)
4(135 336 337 136)
4(336 537 538 337)
4(537 738 739 538)
4(738 939 940 739)
4(939 1140 1141 940)
4(1140 1341 1342 1141)
4(1341 1542 1543 1342)
4(1542 1743 1744 1543)
4(1743 1944 1945 1744)
4(1944 2145 2146 1945)
4(2145 2346 2347 2146)
4(2346 2547 2548 2347)
4(2547 2748 2749 2548)
4(2748 2949 2950 2749)
4(2949 3150 3151 2950)
4(3150 3351 3352 3151)
4(3351 3552 3553 3352)
4(3552 3753 3754 3553)
4(3753 3954 3955 3754)
4(3954 4155 4156 3955)
4(136 337 338 137)
4(337 538 539 338)
4(538 739 740 539)
4(739 940 941 740)
4(940 1141 1142 941)
4(1141 1342 1343 1142)
4(1342 1543 1544 1343)
4(1543 1744 1745 1544)
4(1744 1945 1946 1745)
4(1945 2146 2147 1946)
4(2146 2347 2348 2147)
4(2347 2548 2549 2348)
4(2548 2749 2750 2549)
4(2749 2950 2951 2750)
4(2950 3151 3152 2951)
4(3151 3352 3353 3152)
4(3352 3553 3554 3353)
4(3553 3754 3755 3554)
4(3754 3955 3956 3755)
4(3955 4156 4157 3956)
4(137 338 339 138)
4(338 539 540 339)
4(539 740 741 540)
4(740 941 942 741)
4(941 1142 1143 942)
4(1142 1343 1344 1143)
4(1343 1544 1545 1344)
4(1544 1745 1746 1545)
4(1745 1946 1947 1746)
4(1946 2147 2148 1947)
4(2147 2348 2349 2148)
4(2348 2549 2550 2349)
4(2549 2750 2751 2550)
4(2750 2951 2952 2751)
4(2951 3152 3153 2952)
4(3152 3353 3354 3153)
4(3353 3554 3555 3354)
4(3554 3755 3756 3555)
4(3755 3956 3957 3756)
4(3956 4157 4158 3957)
4(138 339 340 139)
4(339 540 541 340)
4(540 741 742 541)
4(741 942 943 742)
4(942 1143 1144 943)
4(1143 1344 1345 1144)
4(1344 1545 1546 1345)
4(1545 1746 1747 1546)
4(1746 1947 1948 1747)
4(1947 2148 2149 1948)
4(2148 2349 2350 2149)
4(2349 2550 2551 2350)
4(2550 2751 2752 2551)
4(2751 2952 2953 2752)
4(2952 3153 3154 2953)
4(3153 3354 3355 3154)
4(3354 3555 3556 3355)
4(3555 3756 3757 3556)
4(3756 3957 3958 3757)
4(3957 4158 4159 3958)
4(139 340 341 140)
4(340 541 542 341)
4(541 742 743 542)
4(742 943 944 743)
4(943 1144 1145 944)
4(1144 1345 1346 1145)
4(1345 1546 1547 1346)
4(1546 1747 1748 1547)
4(1747 1948 1949 1748)
4(1948 2149 2150 1949)
4(2149 2350 2351 2150)
4(2350 2551 2552 2351)
4(2551 2752 2753 2552)
4(2752 2953 2954 2753)
4(2953 3154 3155 2954)
4(3154 3355 3356 3155)
4(3355 3556 3557 3356)
4(3556 3757 3758 3557)
4(3757 3958 3959 3758)
4(3958 4159 4160 3959)
4(140 341 342 141)
4(341 542 543 342)
4(542 743 744 543)
4(743 944 945 744)
4(944 1145 1146 945)
4(1145 1346 1347 1146)
4(1346 1547 1548 1347)
4(1547 1748 1749 1548)
4(1748 1949 1950 1749)
4(1949 2150 2151 1950)
4(2150 2351 2352 2151)
4(2351 2552 2553 2352)
4(2552 2753 2754 2553)
4(2753 2954 2955 2754)
4(2954 3155 3156 2955)
4(3155 3356 3357 3156)
4(3356 3557 3558 3357)
4(3557 3758 3759 3558)
4(3758 3959 3960 3759)
4(3959 4160 4161 3960)
4(141 342 343 142)
4(342 543 544 343)
4(543 744 745 544)
4(744 945 946 745)
4(945 1146 1147 946)
4(1146 1347 1348 1147)
4(1347 1548 1549 1348)
4(1548 1749 1750 1549)
4(1749 1950 1951 1750)
4(1950 2151 2152 1951)
4(2151 2352 2353 2152)
4(2352 2553 2554 2353)
4(2553 2754 2755 2554)
4(2754 2955 2956 2755)
4(2955 3156 3157 2956)
4(3156 3357 3358 3157)
4(3357 3558 3559 3358)
4(3558 3759 3760 3559)
4(3759 3960 3961 3760)
4(3960 4161 4162 3961)
4(142 343 344 143)
4(343 544 545 344)
4(544 745 746 545)
4(745 946 947 746)
4(946 1147 1148 947)
4(1147 1348 1349 1148)
4(1348 1549 1550 1349)
4(1549 1750 1751 1550)
4(1750 1951 1952 1751)
4(1951 2152 2153 1952)
4(2152 2353 2354 2153)
4(2353 2554 2555 2354)
4(2554 2755 2756 2555)
4(2755 2956 2957 2756)
4(2956 3157 3158 2957)
4(3157 3358 3359 3158)
4(3358 3559 3560 3359)
4(3559 3760 3761 3560)
4(3760 3961 3962 3761)
4(3961 4162 4163 3962)
4(143 344 345 144)
4(344 545 546 345)
4(545 746 747 546)
4(746 947 948 747)
4(947 1148 1149 948)
4(1148 1349 1350 1149)
4(1349 1550 1551 1350)
4(1550 1751 1752 1551)
4(1751 1952 1953 1752)
4(1952 2153 2154 1953)
4(2153 2354 2355 2154)
4(2354 2555 2556 2355)
4(2555 2756 2757 2556)
4(2756 2957 2958 2757)
4(2957 3158 3159 2958)
4(3158 3359 3360 3159)
4(3359 3560 3561 3360)
4(3560 3761 3762 3561)
4(3761 3962 3963 3762)
4(3962 4163 4164 3963)
4(144 345 346 145)
4(345 546 547 346)
4(546 747 748 547)
4(747 948 949 748)
4(948 1149 1150 949)
4(1149 1350 1351 1150)
4(1350 1551 1552 1351)
4(1551 1752 1753 1552)
4(1752 1953 1954 1753)
4(1953 2154 2155 1954)
4(2154 2355 2356 2155)
4(2355 2556 2557 2356)
4(2556 2757 2758 2557)
4(2757 2958 2959 2758)
4(2958 3159 3160 2959)
4(3159 3360 3361 3160)
4(3360 3561 3562 3361)
4(3561 3762 3763 3562)
4(3762 3963 3964 3763)
4(3963 4164 4165 3964)
4(145 346 347 146)
4(346 547 548 347)
4(547 748 749 548)
4(748 949 950 749)
4(949 1150 1151 950)
4(1150 1351 1352 1151)
4(1351 1552 1553 1352)
4(1552 1753 1754 1553)
4(1753 1954 1955 1754)
4(1954 2155 2156 1955)
4(2155 2356 2357 2156)
4(2356 2557 2558 2357)
4(2557 2758 2759 2558)
4(2758 2959 2960 2759)
4(2959 3160 3161 2960)
4(3160 3361 3362 3161)
4(3361 3562 3563 3362)
4(3562 3763 3764 3563)
4(3763 3964 3965 3764)
4(3964 4165 4166 3965)
4(146 347 348 147)
4(347 548 549 348)
4(548 749 750 549)
4(749 950 951 750)
4(950 1151 1152 951)
4(1151 1352 1353 1152)
4(1352 1553 1554 1353)
4(1553 1754 1755 1554)
4(1754 1955 1956 1755)
4(1955 2156 2157 1956)
4(2156 2357 2358 2157)
4(2357 2558 2559 2358)
4(2558 2759 2760 2559)
4(2759 2960 2961 2760)
4(2960 3161 3162 2961)
4(3161 3362 3363 3162)
4(3362 3563 3564 3363)
4(3563 3764 3765 3564)
4(3764 3965 3966 3765)
4(3965 4166 4167 3966)
4(147 348 349 148)
4(348 549 550 349)
4(549 750 751 550)
4(750 951 952 751)
4(951 1152 1153 952)
4(1152 1353 1354 1153)
4(1353 1554 1555 1354)
4(1554 1755 1756 1555)
4(1755 1956 1957 1756)
4(1956 2157 2158 1957)
4(2157 2358 2359 2158)
4(2358 2559 2560 2359)
4(2559 2760 2761 2560)
4(2760 2961 2962 2761)
4(2961 3162 3163 2962)
4(3162 3363 3364 3163)
4(3363 3564 3565 3364)
4(3564 3765 3766 3565)
4(3765 3966 3967 3766)
4(3966 4167 4168 3967)
4(148 349 350 149)
4(349 550 551 350)
4(550 751 752 551)
4(751 952 953 752)
4(952 1153 1154 953)
4(1153 1354 1355 1154)
4(1354 1555 1556 1355)
4(1555 1756 1757 1556)
4(1756 1957 1958 1757)
4(1957 2158 2159 1958)
4(2158 2359 2360 2159)
4(2359 2560 2561 2360)
4(2560 2761 2762 2561)
4(2761 2962 2963 2762)
4(2962 3163 3164 2963)
4(3163 3364 3365 3164)
4(3364 3565 3566 3365)
4(3565 3766 3767 3566)
4(3766 3967 3968 3767)
4(3967 4168 4169 3968)
4(149 350 351 150)
4(350 551 552 351)
4(551 752 753 552)
4(752 953 954 753)
4(953 1154 1155 954)
4(1154 1355 1356 1155)
4(1355 1556 1557 1356)
4(1556 1757 1758 1557)
4(1757 1958 1959 1758)
4(1958 2159 2160 1959)
4(2159 2360 2361 2160)
4(2360 2561 2562 2361)
4(2561 2762 2763 2562)
4(2762 2963 2964 2763)
4(2963 3164 3165 2964)
4(3164 3365 3366 3165)
4(3365 3566 3567 3366)
4(3566 3767 3768 3567)
4(3767 3968 3969 3768)
4(3968 4169 4170 3969)
4(150 351 352 151)
4(351 552 553 352)
4(552 753 754 553)
4(753 954 955 754)
4(954 1155 1156 955)
4(1155 1356 1357 1156)
4(1356 1557 1558 1357)
4(1557 1758 1759 1558)
4(1758 1959 1960 1759)
4(1959 2160 2161 1960)
4(2160 2361 2362 2161)
4(2361 2562 2563 2362)
4(2562 2763 2764 2563)
4(2763 2964 2965 2764)
4(2964 3165 3166 2965)
4(3165 3366 3367 3166)
4(3366 3567 3568 3367)
4(3567 3768 3769 3568)
4(3768 3969 3970 3769)
4(3969 4170 4171 3970)
4(151 352 353 152)
4(352 553 554 353)
4(553 754 755 554)
4(754 955 956 755)
4(955 1156 1157 956)
4(1156 1357 1358 1157)
4(1357 1558 1559 1358)
4(1558 1759 1760 1559)
4(1759 1960 1961 1760)
4(1960 2161 2162 1961)
4(2161 2362 2363 2162)
4(2362 2563 2564 2363)
4(2563 2764 2765 2564)
4(2764 2965 2966 2765)
4(2965 3166 3167 2966)
4(3166 3367 3368 3167)
4(3367 3568 3569 3368)
4(3568 3769 3770 3569)
4(3769 3970 3971 3770)
4(3970 4171 4172 3971)
4(152 353 354 153)
4(353 554 555 354)
4(554 755 756 555)
4(755 956 957 756)
4(956 1157 1158 957)
4(1157 1358 1359 1158)
4(1358 1559 1560 1359)
4(1559 1760 1761 1560)
4(1760 1961 1962 1761)
4(1961 2162 2163 1962)
4(2162 2363 2364 2163)
4(2363 2564 2565 2364)
4(2564 2765 2766 2565)
4(2765 2966 2967 2766)
4(2966 3167 3168 2967)
4(3167 3368 3369 3168)
4(3368 3569 3570 3369)
4(3569 3770 3771 3570)
4(3770 3971 3972 3771)
4(3971 4172 4173 3972)
4(153 354 355 154)
4(354 555 556 355)
4(555 756 757 556)
4(756 957 958 757)
4(957 1158 1159 958)
4(1158 1359 1360 1159)
4(1359 1560 1561 1360)
4(1560 1761 1762 1561)
4(1761 1962 1963 1762)
4(1962 2163 2164 1963)
4(2163 2364 2365 2164)
4(2364 2565 2566 2365)
4(2565 2766 2767 2566)
4(2766 2967 2968 2767)
4(2967 3168 3169 2968)
4(3168 3369 3370 3169)
4(3369 3570 3571 3370)
4(3570 3771 3772 3571)
4(3771 3972 3973 3772)
4(3972 4173 4174 3973)
4(154 355 356 155)
4(355 556 557 356)
4(556 757 758 557)
4(757 958 959 758)
4(958 1159 1160 959)
4(1159 1360 1361 1160)
4(1360 1561 1562 1361)
4(1561 1762 1763 1562)
4(1762 1963 1964 1763)
4(1963 2164 2165 1964)
4(2164 2365 2366 2165)
4(2365 2566 2567 2366)
4(2566 2767 2768 2567)
4(2767 2968 2969 2768)
4(2968 3169 3170 2969)
4(3169 3370 3371 3170)
4(3370 3571 3572 3371)
4(3571 3772 3773 3572)
4(3772 3973 3974 3773)
4(3973 4174 4175 3974)
4(155 356 357 156)
4(356 557 558 357)
4(557 758 759 558)
4(758 959 960 759)
4(959 1160 1161 960)
4(1160 1361 1362 1161)
4(1361 1562 1563 1362)
4(1562 1763 1764 1563)
4(1763 1964 1965 1764)
4(1964 2165 2166 1965)
4(2165 2366 2367 2166)
4(2366 2567 2568 2367)
4(2567 2768 2769 2568)
4(2768 2969 2970 2769)
4(2969 3170 3171 2970)
4(3170 3371 3372 3171)
4(3371 3572 3573 3372)
4(3572 3773 3774 3573)
4(3773 3974 3975 3774)
4(3974 4175 4176 3975)
4(156 357 358 157)
4(357 558 559 358)
4(558 759 760 559)
4(759 960 961 760)
4(960 1161 1162 961)
4(1161 1362 1363 1162)
4(1362 1563 1564 1363)
4(1563 1764 1765 1564)
4(1764 1965 1966 1765)
4(1965 2166 2167 1966)
4(2166 2367 2368 2167)
4(2367 2568 2569 2368)
4(2568 2769 2770 2569)
4(2769 2970 2971 2770)
4(2970 3171 3172 2971)
4(3171 3372 3373 3172)
4(3372 3573 3574 3373)
4(3573 3774 3775 3574)
4(3774 3975 3976 3775)
4(3975 4176 4177 3976)
4(157 358 359 158)
4(358 559 560 359)
4(559 760 761 560)
4(760 961 962 761)
4(961 1162 1163 962)
4(1162 1363 1364 1163)
4(1363 1564 1565 1364)
4(1564 1765 1766 1565)
4(1765 1966 1967 1766)
4(1966 2167 2168 1967)
4(2167 2368 2369 2168)
4(2368 2569 2570 2369)
4(2569 2770 2771 2570)
4(2770 2971 2972 2771)
4(2971 3172 3173 2972)
4(3172 3373 3374 3173)
4(3373 3574 3575 3374)
4(3574 3775 3776 3575)
4(3775 3976 3977 3776)
4(3976 4177 4178 3977)
4(158 359 360 159)
4(359 560 561 360)
4(560 761 762 561)
4(761 962 963 762)
4(962 1163 1164 963)
4(1163 1364 1365 1164)
4(1364 1565 1566 1365)
4(1565 1766 1767 1566)
4(1766 1967 1968 1767)
4(1967 2168 2169 1968)
4(2168 2369 2370 2169)
4(2369 2570 2571 2370)
4(2570 2771 2772 2571)
4(2771 2972 2973 2772)
4(2972 3173 3174 2973)
4(3173 3374 3375 3174)
4(3374 3575 3576 3375)
4(3575 3776 3777 3576)
4(3776 3977 3978 3777)
4(3977 4178 4179 3978)
4(159 360 361 160)
4(360 561 562 361)
4(561 762 763 562)
4(762 963 964 763)
4(963 1164 1165 964)
4(1164 1365 1366 1165)
4(1365 1566 1567 1366)
4(1566 1767 1768 1567)
4(1767 1968 1969 1768)
4(1968 2169 2170 1969)
4(2169 2370 2371 2170)
4(2370 2571 2572 2371)
4(2571 2772 2773 2572)
4(2772 2973 2974 2773)
4(2973 3174 3175 2974)
4(3174 3375 3376 3175)
4(3375 3576 3577 3376)
4(3576 3777 3778 3577)
4(3777 3978 3979 3778)
4(3978 4179 4180 3979)
4(160 361 362 161)
4(361 562 563 362)
4(562 763 764 563)
4(763 964 965 764)
4(964 1165 1166 965)
4(1165 1366 1367 1166)
4(1366 1567 1568 1367)
4(1567 1768 1769 1568)
4(1768 1969 1970 1769)
4(1969 2170 2171 1970)
4(2170 2371 2372 2171)
4(2371 2572 2573 2372)
4(2572 2773 2774 2573)
4(2773 2974 2975 2774)
4(2974 3175 3176 2975)
4(3175 3376 3377 3176)
4(3376 3577 3578 3377)
4(3577 3778 3779 3578)
4(3778 3979 3980 3779)
4(3979 4180 4181 3980)
4(161 362 363 162)
4(362 563 564 363)
4(563 764 765 564)
4(764 965 966 765)
4(965 1166 1167 966)
4(1166 1367 1368 1167)
4(1367 1568 1569 1368)
4(1568 1769 1770 1569)
4(1769 1970 1971 1770)
4(1970 2171 2172 1971)
4(2171 2372 2373 2172)
4(2372 2573 2574 2373)
4(2573 2774 2775 2574)
4(2774 2975 2976 2775)
4(2975 3176 3177 2976)
4(3176 3377 3378 3177)
4(3377 3578 3579 3378)
4(3578 3779 3780 3579)
4(3779 3980 3981 3780)
4(3980 4181 4182 3981)
4(162 363 364 163)
4(363 564 565 364)
4(564 765 766 565)
4(765 966 967 766)
4(966 1167 1168 967)
4(1167 1368 1369 1168)
4(1368 1569 1570 1369)
4(1569 1770 1771 1570)
4(1770 1971 1972 1771)
4(1971 2172 2173 1972)
4(2172 2373 2374 2173)
4(2373 2574 2575 2374)
4(2574 2775 2776 2575)
4(2775 2976 2977 2776)
4(2976 3177 3178 2977)
4(3177 3378 3379 3178)
4(3378 3579 3580 3379)
4(3579 3780 3781 3580)
4(3780 3981 3982 3781)
4(3981 4182 4183 3982)
4(163 364 365 164)
4(364 565 566 365)
4(565 766 767 566)
4(766 967 968 767)
4(967 1168 1169 968)
4(1168 1369 1370 1169)
4(1369 1570 1571 1370)
4(1570 1771 1772 1571)
4(1771 1972 1973 1772)
4(1972 2173 2174 1973)
4(2173 2374 2375 2174)
4(2374 2575 2576 2375)
4(2575 2776 2777 2576)
4(2776 2977 2978 2777)
4(2977 3178 3179 2978)
4(3178 3379 3380 3179)
4(3379 3580 3581 3380)
4(3580 3781 3782 3581)
4(3781 3982 3983 3782)
4(3982 4183 4184 3983)
4(164 365 366 165)
4(365 566 567 366)
4(566 767 768 567)
4(767 968 969 768)
4(968 1169 1170 969)
4(1169 1370 1371 1170)
4(1370 1571 1572 1371)
4(1571 1772 1773 1572)
4(1772 1973 1974 1773)
4(1973 2174 2175 1974)
4(2174 2375 2376 2175)
4(2375 2576 2577 2376)
4(2576 2777 2778 2577)
4(2777 2978 2979 2778)
4(2978 3179 3180 2979)
4(3179 3380 3381 3180)
4(3380 3581 3582 3381)
4(3581 3782 3783 3582)
4(3782 3983 3984 3783)
4(3983 4184 4185 3984)
4(165 366 367 166)
4(366 567 568 367)
4(567 768 769 568)
4(768 969 970 769)
4(969 1170 1171 970)
4(1170 1371 1372 1171)
4(1371 1572 1573 1372)
4(1572 1773 1774 1573)
4(1773 1974 1975 1774)
4(1974 2175 2176 1975)
4(2175 2376 2377 2176)
4(2376 2577 2578 2377)
4(2577 2778 2779 2578)
4(2778 2979 2980 2779)
4(2979 3180 3181 2980)
4(3180 3381 3382 3181)
4(3381 3582 3583 3382)
4(3582 3783 3784 3583)
4(3783 3984 3985 3784)
4(3984 4185 4186 3985)
4(166 367 368 167)
4(367 568 569 368)
4(568 769 770 569)
4(769 970 971 770)
4(970 1171 1172 971)
4(1171 1372 1373 1172)
4(1372 1573 1574 1373)
4(1573 1774 1775 1574)
4(1774 1975 1976 1775)
4(1975 2176 2177 1976)
4(2176 2377 2378 2177)
4(2377 2578 2579 2378)
4(2578 2779 2780 2579)
4(2779 2980 2981 2780)
4(2980 3181 3182 2981)
4(3181 3382 3383 3182)
4(3382 3583 3584 3383)
4(3583 3784 3785 3584)
4(3784 3985 3986 3785)
4(3985 4186 4187 3986)
4(167 368 369 168)
4(368 569 570 369)
4(569 770 771 570)
4(770 971 972 771)
4(971 1172 1173 972)
4(1172 1373 1374 1173)
4(1373 1574 1575 1374)
4(1574 1775 1776 1575)
4(1775 1976 1977 1776)
4(1976 2177 2178 1977)
4(2177 2378 2379 2178)
4(2378 2579 2580 2379)
4(2579 2780 2781 2580)
4(2780 2981 2982 2781)
4(2981 3182 3183 2982)
4(3182 3383 3384 3183)
4(3383 3584 3585 3384)
4(3584 3785 3786 3585)
4(3785 3986 3987 3786)
4(3986 4187 4188 3987)
4(168 369 370 169)
4(369 570 571 370)
4(570 771 772 571)
4(771 972 973 772)
4(972 1173 1174 973)
4(1173 1374 1375 1174)
4(1374 1575 1576 1375)
4(1575 1776 1777 1576)
4(1776 1977 1978 1777)
4(1977 2178 2179 1978)
4(2178 2379 2380 2179)
4(2379 2580 2581 2380)
4(2580 2781 2782 2581)
4(2781 2982 2983 2782)
4(2982 3183 3184 2983)
4(3183 3384 3385 3184)
4(3384 3585 3586 3385)
4(3585 3786 3787 3586)
4(3786 3987 3988 3787)
4(3987 4188 4189 3988)
4(169 370 371 170)
4(370 571 572 371)
4(571 772 773 572)
4(772 973 974 773)
4(973 1174 1175 974)
4(1174 1375 1376 1175)
4(1375 1576 1577 1376)
4(1576 1777 1778 1577)
4(1777 1978 1979 1778)
4(1978 2179 2180 1979)
4(2179 2380 2381 2180)
4(2380 2581 2582 2381)
4(2581 2782 2783 2582)
4(2782 2983 2984 2783)
4(2983 3184 3185 2984)
4(3184 3385 3386 3185)
4(3385 3586 3587 3386)
4(3586 3787 3788 3587)
4(3787 3988 3989 3788)
4(3988 4189 4190 3989)
4(170 371 372 171)
4(371 572 573 372)
4(572 773 774 573)
4(773 974 975 774)
4(974 1175 1176 975)
4(1175 1376 1377 1176)
4(1376 1577 1578 1377)
4(1577 1778 1779 1578)
4(1778 1979 1980 1779)
4(1979 2180 2181 1980)
4(2180 2381 2382 2181)
4(2381 2582 2583 2382)
4(2582 2783 2784 2583)
4(2783 2984 2985 2784)
4(2984 3185 3186 2985)
4(3185 3386 3387 3186)
4(3386 3587 3588 3387)
4(3587 3788 3789 3588)
4(3788 3989 3990 3789)
4(3989 4190 4191 3990)
4(171 372 373 172)
4(372 573 574 373)
4(573 774 775 574)
4(774 975 976 775)
4(975 1176 1177 976)
4(1176 1377 1378 1177)
4(1377 1578 1579 1378)
4(1578 1779 1780 1579)
4(1779 1980 1981 1780)
4(1980 2181 2182 1981)
4(2181 2382 2383 2182)
4(2382 2583 2584 2383)
4(2583 2784 2785 2584)
4(2784 2985 2986 2785)
4(2985 3186 3187 2986)
4(3186 3387 3388 3187)
4(3387 3588 3589 3388)
4(3588 3789 3790 3589)
4(3789 3990 3991 3790)
4(3990 4191 4192 3991)
4(172 373 374 173)
4(373 574 575 374)
4(574 775 776 575)
4(775 976 977 776)
4(976 1177 1178 977)
4(1177 1378 1379 1178)
4(1378 1579 1580 1379)
4(1579 1780 1781 1580)
4(1780 1981 1982 1781)
4(1981 2182 2183 1982)
4(2182 2383 2384 2183)
4(2383 2584 2585 2384)
4(2584 2785 2786 2585)
4(2785 2986 2987 2786)
4(2986 3187 3188 2987)
4(3187 3388 3389 3188)
4(3388 3589 3590 3389)
4(3589 3790 3791 3590)
4(3790 3991 3992 3791)
4(3991 4192 4193 3992)
4(173 374 375 174)
4(374 575 576 375)
4(575 776 777 576)
4(776 977 978 777)
4(977 1178 1179 978)
4(1178 1379 1380 1179)
4(1379 1580 1581 1380)
4(1580 1781 1782 1581)
4(1781 1982 1983 1782)
4(1982 2183 2184 1983)
4(2183 2384 2385 2184)
4(2384 2585 2586 2385)
4(2585 2786 2787 2586)
4(2786 2987 2988 2787)
4(2987 3188 3189 2988)
4(3188 3389 3390 3189)
4(3389 3590 3591 3390)
4(3590 3791 3792 3591)
4(3791 3992 3993 3792)
4(3992 4193 4194 3993)
4(174 375 376 175)
4(375 576 577 376)
4(576 777 778 577)
4(777 978 979 778)
4(978 1179 1180 979)
4(1179 1380 1381 1180)
4(1380 1581 1582 1381)
4(1581 1782 1783 1582)
4(1782 1983 1984 1783)
4(1983 2184 2185 1984)
4(2184 2385 2386 2185)
4(2385 2586 2587 2386)
4(2586 2787 2788 2587)
4(2787 2988 2989 2788)
4(2988 3189 3190 2989)
4(3189 3390 3391 3190)
4(3390 3591 3592 3391)
4(3591 3792 3793 3592)
4(3792 3993 3994 3793)
4(3993 4194 4195 3994)
4(175 376 377 176)
4(376 577 578 377)
4(577 778 779 578)
4(778 979 980 779)
4(979 1180 1181 980)
4(1180 1381 1382 1181)
4(1381 1582 1583 1382)
4(1582 1783 1784 1583)
4(1783 1984 1985 1784)
4(1984 2185 2186 1985)
4(2185 2386 2387 2186)
4(2386 2587 2588 2387)
4(2587 2788 2789 2588)
4(2788 2989 2990 2789)
4(2989 3190 3191 2990)
4(3190 3391 3392 3191)
4(3391 3592 3593 3392)
4(3592 3793 3794 3593)
4(3793 3994 3995 3794)
4(3994 4195 4196 3995)
4(176 377 378 177)
4(377 578 579 378)
4(578 779 780 579)
4(779 980 981 780)
4(980 1181 1182 981)
4(1181 1382 1383 1182)
4(1382 1583 1584 1383)
4(1583 1784 1785 1584)
4(1784 1985 1986 1785)
4(1985 2186 2187 1986)
4(2186 2387 2388 2187)
4(2387 2588 2589 2388)
4(2588 2789 2790 2589)
4(2789 2990 2991 2790)
4(2990 3191 3192 2991)
4(3191 3392 3393 3192)
4(3392 3593 3594 3393)
4(3593 3794 3795 3594)
4(3794 3995 3996 3795)
4(3995 4196 4197 3996)
4(177 378 379 178)
4(378 579 580 379)
4(579 780 781 580)
4(780 981 982 781)
4(981 1182 1183 982)
4(1182 1383 1384 1183)
4(1383 1584 1585 1384)
4(1584 1785 1786 1585)
4(1785 1986 1987 1786)
4(1986 2187 2188 1987)
4(2187 2388 2389 2188)
4(2388 2589 2590 2389)
4(2589 2790 2791 2590)
4(2790 2991 2992 2791)
4(2991 3192 3193 2992)
4(3192 3393 3394 3193)
4(3393 3594 3595 3394)
4(3594 3795 3796 3595)
4(3795 3996 3997 3796)
4(3996 4197 4198 3997)
4(178 379 380 179)
4(379 580 581 380)
4(580 781 782 581)
4(781 982 983 782)
4(982 1183 1184 983)
4(1183 1384 1385 1184)
4(1384 1585 1586 1385)
4(1585 1786 1787 1586)
4(1786 1987 1988 1787)
4(1987 2188 2189 1988)
4(2188 2389 2390 2189)
4(2389 2590 2591 2390)
4(2590 2791 2792 2591)
4(2791 2992 2993 2792)
4(2992 3193 3194 2993)
4(3193 3394 3395 3194)
4(3394 3595 3596 3395)
4(3595 3796 3797 3596)
4(3796 3997 3998 3797)
4(3997 4198 4199 3998)
4(179 380 381 180)
4(380 581 582 381)
4(581 782 783 582)
4(782 983 984 783)
4(983 1184 1185 984)
4(1184 1385 1386 1185)
4(1385 1586 1587 1386)
4(1586 1787 1788 1587)
4(1787 1988 1989 1788)
4(1988 2189 2190 1989)
4(2189 2390 2391 2190)
4(2390 2591 2592 2391)
4(2591 2792 2793 2592)
4(2792 2993 2994 2793)
4(2993 3194 3195 2994)
4(3194 3395 3396 3195)
4(3395 3596 3597 3396)
4(3596 3797 3798 3597)
4(3797 3998 3999 3798)
4(3998 4199 4200 3999)
4(180 381 382 181)
4(381 582 583 382)
4(582 783 784 583)
4(783 984 985 784)
4(984 1185 1186 985)
4(1185 1386 1387 1186)
4(1386 1587 1588 1387)
4(1587 1788 1789 1588)
4(1788 1989 1990 1789)
4(1989 2190 2191 1990)
4(2190 2391 2392 2191)
4(2391 2592 2593 2392)
4(2592 2793 2794 2593)
4(2793 2994 2995 2794)
4(2994 3195 3196 2995)
4(3195 3396 3397 3196)
4(3396 3597 3598 3397)
4(3597 3798 3799 3598)
4(3798 3999 4000 3799)
4(3999 4200 4201 4000)
4(181 382 383 182)
4(382 583 584 383)
4(583 784 785 584)
4(784 985 986 785)
4(985 1186 1187 986)
4(1186 1387 1388 1187)
4(1387 1588 1589 1388)
4(1588 1789 1790 1589)
4(1789 1990 1991 1790)
4(1990 2191 2192 1991)
4(2191 2392 2393 2192)
4(2392 2593 2594 2393)
4(2593 2794 2795 2594)
4(2794 2995 2996 2795)
4(2995 3196 3197 2996)
4(3196 3397 3398 3197)
4(3397 3598 3599 3398)
4(3598 3799 3800 3599)
4(3799 4000 4001 3800)
4(4000 4201 4202 4001)
4(182 383 384 183)
4(383 584 585 384)
4(584 785 786 585)
4(785 986 987 786)
4(986 1187 1188 987)
4(1187 1388 1389 1188)
4(1388 1589 1590 1389)
4(1589 1790 1791 1590)
4(1790 1991 1992 1791)
4(1991 2192 2193 1992)
4(2192 2393 2394 2193)
4(2393 2594 2595 2394)
4(2594 2795 2796 2595)
4(2795 2996 2997 2796)
4(2996 3197 3198 2997)
4(3197 3398 3399 3198)
4(3398 3599 3600 3399)
4(3599 3800 3801 3600)
4(3800 4001 4002 3801)
4(4001 4202 4203 4002)
4(183 384 385 184)
4(384 585 586 385)
4(585 786 787 586)
4(786 987 988 787)
4(987 1188 1189 988)
4(1188 1389 1390 1189)
4(1389 1590 1591 1390)
4(1590 1791 1792 1591)
4(1791 1992 1993 1792)
4(1992 2193 2194 1993)
4(2193 2394 2395 2194)
4(2394 2595 2596 2395)
4(2595 2796 2797 2596)
4(2796 2997 2998 2797)
4(2997 3198 3199 2998)
4(3198 3399 3400 3199)
4(3399 3600 3601 3400)
4(3600 3801 3802 3601)
4(3801 4002 4003 3802)
4(4002 4203 4204 4003)
4(184 385 386 185)
4(385 586 587 386)
4(586 787 788 587)
4(787 988 989 788)
4(988 1189 1190 989)
4(1189 1390 1391 1190)
4(1390 1591 1592 1391)
4(1591 1792 1793 1592)
4(1792 1993 1994 1793)
4(1993 2194 2195 1994)
4(2194 2395 2396 2195)
4(2395 2596 2597 2396)
4(2596 2797 2798 2597)
4(2797 2998 2999 2798)
4(2998 3199 3200 2999)
4(3199 3400 3401 3200)
4(3400 3601 3602 3401)
4(3601 3802 3803 3602)
4(3802 4003 4004 3803)
4(4003 4204 4205 4004)
4(185 386 387 186)
4(386 587 588 387)
4(587 788 789 588)
4(788 989 990 789)
4(989 1190 1191 990)
4(1190 1391 1392 1191)
4(1391 1592 1593 1392)
4(1592 1793 1794 1593)
4(1793 1994 1995 1794)
4(1994 2195 2196 1995)
4(2195 2396 2397 2196)
4(2396 2597 2598 2397)
4(2597 2798 2799 2598)
4(2798 2999 3000 2799)
4(2999 3200 3201 3000)
4(3200 3401 3402 3201)
4(3401 3602 3603 3402)
4(3602 3803 3804 3603)
4(3803 4004 4005 3804)
4(4004 4205 4206 4005)
4(186 387 388 187)
4(387 588 589 388)
4(588 789 790 589)
4(789 990 991 790)
4(990 1191 1192 991)
4(1191 1392 1393 1192)
4(1392 1593 1594 1393)
4(1593 1794 1795 1594)
4(1794 1995 1996 1795)
4(1995 2196 2197 1996)
4(2196 2397 2398 2197)
4(2397 2598 2599 2398)
4(2598 2799 2800 2599)
4(2799 3000 3001 2800)
4(3000 3201 3202 3001)
4(3201 3402 3403 3202)
4(3402 3603 3604 3403)
4(3603 3804 3805 3604)
4(3804 4005 4006 3805)
4(4005 4206 4207 4006)
4(187 388 389 188)
4(388 589 590 389)
4(589 790 791 590)
4(790 991 992 791)
4(991 1192 1193 992)
4(1192 1393 1394 1193)
4(1393 1594 1595 1394)
4(1594 1795 1796 1595)
4(1795 1996 1997 1796)
4(1996 2197 2198 1997)
4(2197 2398 2399 2198)
4(2398 2599 2600 2399)
4(2599 2800 2801 2600)
4(2800 3001 3002 2801)
4(3001 3202 3203 3002)
4(3202 3403 3404 3203)
4(3403 3604 3605 3404)
4(3604 3805 3806 3605)
4(3805 4006 4007 3806)
4(4006 4207 4208 4007)
4(188 389 390 189)
4(389 590 591 390)
4(590 791 792 591)
4(791 992 993 792)
4(992 1193 1194 993)
4(1193 1394 1395 1194)
4(1394 1595 1596 1395)
4(1595 1796 1797 1596)
4(1796 1997 1998 1797)
4(1997 2198 2199 1998)
4(2198 2399 2400 2199)
4(2399 2600 2601 2400)
4(2600 2801 2802 2601)
4(2801 3002 3003 2802)
4(3002 3203 3204 3003)
4(3203 3404 3405 3204)
4(3404 3605 3606 3405)
4(3605 3806 3807 3606)
4(3806 4007 4008 3807)
4(4007 4208 4209 4008)
4(189 390 391 190)
4(390 591 592 391)
4(591 792 793 592)
4(792 993 994 793)
4(993 1194 1195 994)
4(1194 1395 1396 1195)
4(1395 1596 1597 1396)
4(1596 1797 1798 1597)
4(1797 1998 1999 1798)
4(1998 2199 2200 1999)
4(2199 2400 2401 2200)
4(2400 2601 2602 2401)
4(2601 2802 2803 2602)
4(2802 3003 3004 2803)
4(3003 3204 3205 3004)
4(3204 3405 3406 3205)
4(3405 3606 3607 3406)
4(3606 3807 3808 3607)
4(3807 4008 4009 3808)
4(4008 4209 4210 4009)
4(190 391 392 191)
4(391 592 593 392)
4(592 793 794 593)
4(793 994 995 794)
4(994 1195 1196 995)
4(1195 1396 1397 1196)
4(1396 1597 1598 1397)
4(1597 1798 1799 1598)
4(1798 1999 2000 1799)
4(1999 2200 2201 2000)
4(2200 2401 2402 2201)
4(2401 2602 2603 2402)
4(2602 2803 2804 2603)
4(2803 3004 3005 2804)
4(3004 3205 3206 3005)
4(3205 3406 3407 3206)
4(3406 3607 3608 3407)
4(3607 3808 3809 3608)
4(3808 4009 4010 3809)
4(4009 4210 4211 4010)
4(191 392 393 192)
4(392 593 594 393)
4(593 794 795 594)
4(794 995 996 795)
4(995 1196 1197 996)
4(1196 1397 1398 1197)
4(1397 1598 1599 1398)
4(1598 1799 1800 1599)
4(1799 2000 2001 1800)
4(2000 2201 2202 2001)
4(2201 2402 2403 2202)
4(2402 2603 2604 2403)
4(2603 2804 2805 2604)
4(2804 3005 3006 2805)
4(3005 3206 3207 3006)
4(3206 3407 3408 3207)
4(3407 3608 3609 3408)
4(3608 3809 3810 3609)
4(3809 4010 4011 3810)
4(4010 4211 4212 4011)
4(192 393 394 193)
4(393 594 595 394)
4(594 795 796 595)
4(795 996 997 796)
4(996 1197 1198 997)
4(1197 1398 1399 1198)
4(1398 1599 1600 1399)
4(1599 1800 1801 1600)
4(1800 2001 2002 1801)
4(2001 2202 2203 2002)
4(2202 2403 2404 2203)
4(2403 2604 2605 2404)
4(2604 2805 2806 2605)
4(2805 3006 3007 2806)
4(3006 3207 3208 3007)
4(3207 3408 3409 3208)
4(3408 3609 3610 3409)
4(3609 3810 3811 3610)
4(3810 4011 4012 3811)
4(4011 4212 4213 4012)
4(193 394 395 194)
4(394 595 596 395)
4(595 796 797 596)
4(796 997 998 797)
4(997 1198 1199 998)
4(1198 1399 1400 1199)
4(1399 1600 1601 1400)
4(1600 1801 1802 1601)
4(1801 2002 2003 1802)
4(2002 2203 2204 2003)
4(2203 2404 2405 2204)
4(2404 2605 2606 2405)
4(2605 2806 2807 2606)
4(2806 3007 3008 2807)
4(3007 3208 3209 3008)
4(3208 3409 3410 3209)
4(3409 3610 3611 3410)
4(3610 3811 3812 3611)
4(3811 4012 4013 3812)
4(4012 4213 4214 4013)
4(194 395 396 195)
4(395 596 597 396)
4(596 797 798 597)
4(797 998 999 798)
4(998 1199 1200 999)
4(1199 1400 1401 1200)
4(1400 1601 1602 1401)
4(1601 1802 1803 1602)
4(1802 2003 2004 1803)
4(2003 2204 2205 2004)
4(2204 2405 2406 2205)
4(2405 2606 2607 2406)
4(2606 2807 2808 2607)
4(2807 3008 3009 2808)
4(3008 3209 3210 3009)
4(3209 3410 3411 3210)
4(3410 3611 3612 3411)
4(3611 3812 3813 3612)
4(3812 4013 4014 3813)
4(4013 4214 4215 4014)
4(195 396 397 196)
4(396 597 598 397)
4(597 798 799 598)
4(798 999 1000 799)
4(999 1200 1201 1000)
4(1200 1401 1402 1201)
4(1401 1602 1603 1402)
4(1602 1803 1804 1603)
4(1803 2004 2005 1804)
4(2004 2205 2206 2005)
4(2205 2406 2407 2206)
4(2406 2607 2608 2407)
4(2607 2808 2809 2608)
4(2808 3009 3010 2809)
4(3009 3210 3211 3010)
4(3210 3411 3412 3211)
4(3411 3612 3613 3412)
4(3612 3813 3814 3613)
4(3813 4014 4015 3814)
4(4014 4215 4216 4015)
4(196 397 398 197)
4(397 598 599 398)
4(598 799 800 599)
4(799 1000 1001 800)
4(1000 1201 1202 1001)
4(1201 1402 1403 1202)
4(1402 1603 1604 1403)
4(1603 1804 1805 1604)
4(1804 2005 2006 1805)
4(2005 2206 2207 2006)
4(2206 2407 2408 2207)
4(2407 2608 2609 2408)
4(2608 2809 2810 2609)
4(2809 3010 3011 2810)
4(3010 3211 3212 3011)
4(3211 3412 3413 3212)
4(3412 3613 3614 3413)
4(3613 3814 3815 3614)
4(3814 4015 4016 3815)
4(4015 4216 4217 4016)
4(197 398 399 198)
4(398 599 600 399)
4(599 800 801 600)
4(800 1001 1002 801)
4(1001 1202 1203 1002)
4(1202 1403 1404 1203)
4(1403 1604 1605 1404)
4(1604 1805 1806 1605)
4(1805 2006 2007 1806)
4(2006 2207 2208 2007)
4(2207 2408 2409 2208)
4(2408 2609 2610 2409)
4(2609 2810 2811 2610)
4(2810 3011 3012 2811)
4(3011 3212 3213 3012)
4(3212 3413 3414 3213)
4(3413 3614 3615 3414)
4(3614 3815 3816 3615)
4(3815 4016 4017 3816)
4(4016 4217 4218 4017)
4(198 399 400 199)
4(399 600 601 400)
4(600 801 802 601)
4(801 1002 1003 802)
4(1002 1203 1204 1003)
4(1203 1404 1405 1204)
4(1404 1605 1606 1405)
4(1605 1806 1807 1606)
4(1806 2007 2008 1807)
4(2007 2208 2209 2008)
4(2208 2409 2410 2209)
4(2409 2610 2611 2410)
4(2610 2811 2812 2611)
4(2811 3012 3013 2812)
4(3012 3213 3214 3013)
4(3213 3414 3415 3214)
4(3414 3615 3616 3415)
4(3615 3816 3817 3616)
4(3816 4017 4018 3817)
4(4017 4218 4219 4018)
4(199 400 401 200)
4(400 601 602 401)
4(601 802 803 602)
4(802 1003 1004 803)
4(1003 1204 1205 1004)
4(1204 1405 1406 1205)
4(1405 1606 1607 1406)
4(1606 1807 1808 1607)
4(1807 2008 2009 1808)
4(2008 2209 2210 2009)
4(2209 2410 2411 2210)
4(2410 2611 2612 2411)
4(2611 2812 2813 2612)
4(2812 3013 3014 2813)
4(3013 3214 3215 3014)
4(3214 3415 3416 3215)
4(3415 3616 3617 3416)
4(3616 3817 3818 3617)
4(3817 4018 4019 3818)
4(4018 4219 4220 4019)
)
// ************************************************************************* //
| [
"aniket119955@gmail.com"
] | aniket119955@gmail.com | |
6c98cc9c582faabf195693ba6fb88d3296cecb82 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /content/browser/media/media_redirect_browsertest.cc | 09fe984146e6fd8625e072155303a7e940799b11 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 2,704 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/bind.h"
#include "build/build_config.h"
#include "content/browser/media/media_browsertest.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test_utils.h"
#include "media/base/test_data_util.h"
#include "media/media_buildflags.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/embedded_test_server/http_request.h"
#include "net/test/embedded_test_server/http_response.h"
namespace content {
// Tests that WebMediaPlayer implementations choose the right playback engine
// for content even when the playback extension is not known upfront.
class MediaRedirectTest : public MediaBrowserTest {
public:
void RunRedirectTest(const std::string& media_file) {
std::unique_ptr<net::EmbeddedTestServer> http_test_server(
new net::EmbeddedTestServer());
http_test_server->ServeFilesFromSourceDirectory(media::GetTestDataPath());
CHECK(http_test_server->InitializeAndListen());
const GURL player_url =
http_test_server->GetURL("/player.html?video=" + kHiddenPath);
const GURL dest_url = http_test_server->GetURL("/" + media_file);
http_test_server->RegisterRequestHandler(
base::Bind(&MediaRedirectTest::RedirectResponseHandler,
base::Unretained(this), dest_url));
http_test_server->StartAcceptingConnections();
// Run the normal media playback test.
EXPECT_EQ(media::kEnded, RunTest(player_url, media::kEnded));
}
std::unique_ptr<net::test_server::HttpResponse> RedirectResponseHandler(
const GURL& dest_url,
const net::test_server::HttpRequest& request) {
if (!base::StartsWith(request.relative_url, "/" + kHiddenPath,
base::CompareCase::SENSITIVE)) {
return std::unique_ptr<net::test_server::HttpResponse>();
}
std::unique_ptr<net::test_server::BasicHttpResponse> http_response(
new net::test_server::BasicHttpResponse);
http_response->set_code(net::HTTP_TEMPORARY_REDIRECT);
http_response->AddCustomHeader("Location", dest_url.spec());
return std::move(http_response);
}
private:
const std::string kHiddenPath = "hidden_redirect";
};
IN_PROC_BROWSER_TEST_F(MediaRedirectTest, CanPlayHiddenWebm) {
RunRedirectTest("bear.webm");
}
#if defined(OS_ANDROID) && BUILDFLAG(USE_PROPRIETARY_CODECS)
// Flaky, see http://crbug.com/624005
IN_PROC_BROWSER_TEST_F(MediaRedirectTest, DISABLED_CanPlayHiddenHls) {
RunRedirectTest("bear.m3u8");
}
#endif
} // namespace content
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
e9ffa5959870a728c6e6b538b0ecef3b64b50bd9 | 4130b36e09feb24f16bdbbc1fa3e1d6659c0d439 | /Server/系统模块/服务器组件/游戏服务器/TableFrame.cpp | ea3730a4bcf76b3eb001ec63a1ee63c6589ed8f7 | [] | no_license | cnceo/18_TTL | b48eaf46f93b289047769a89bbdb749c14720a42 | c8fc3fe7b7a0acad2b2cb5e80e96219b6257f0e4 | refs/heads/master | 2020-04-09T04:01:14.354570 | 2018-12-01T06:44:23 | 2018-12-01T06:44:23 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 73,481 | cpp | #include "StdAfx.h"
#include "TableFrame.h"
#include "StockManager.h"
#include "AttemperEngineSink.h"
#include "DataBasePacket.h"
#include "..\..\服务器组件\私人场服务\PrivateTableInfo.h"
//////////////////////////////////////////////////////////////////////////////////
//断线定义
#define IDI_OFF_LINE (TIME_TABLE_SINK_RANGE+1) //断线标识
#define MAX_OFF_LINE 3 //断线次数
#define TIME_OFF_LINE 60000L //断线时间
//////////////////////////////////////////////////////////////////////////////////
//组件变量
CStockManager g_StockManager; //库存管理
//游戏记录
CGameScoreRecordArray CTableFrame::m_GameScoreRecordBuffer;
//////////////////////////////////////////////////////////////////////////////////
//构造函数
CTableFrame::CTableFrame()
{
//固有属性
m_wUserCount = 0;
m_wTableID=0;
m_wChairCount=0;
m_cbStartMode=START_MODE_ALL_READY;
//标志变量
m_bGameStarted=false;
m_bDrawStarted=false;
m_bTableStarted=false;
ZeroMemory(m_bAllowLookon,sizeof(m_bAllowLookon));
ZeroMemory(m_lFrozenedScore,sizeof(m_lFrozenedScore));
//游戏变量
m_lCellScore=0L;
m_cbGameStatus=GAME_STATUS_FREE;
//时间变量
m_dwDrawStartTime=0L;
ZeroMemory(&m_SystemTimeStart,sizeof(m_SystemTimeStart));
//动态属性
m_dwTableOwnerID=0L;
ZeroMemory(m_szEnterPassword,sizeof(m_szEnterPassword));
//断线变量
ZeroMemory(m_wOffLineCount,sizeof(m_wOffLineCount));
ZeroMemory(m_dwOffLineTime,sizeof(m_dwOffLineTime));
//配置信息
m_pGameParameter=NULL;
m_pGameServiceAttrib=NULL;
m_pGameServiceOption=NULL;
//组件接口
m_pITimerEngine=NULL;
m_pITableFrameSink=NULL;
m_pIMainServiceFrame=NULL;
m_pIAndroidUserManager=NULL;
//扩张接口
m_pITableUserAction=NULL;
m_pITableUserRequest=NULL;
m_pIMatchTableAction=NULL;
m_pITableFramePrivate=NULL;
m_pIPrivateTableAction=NULL;
//数据接口
m_pIKernelDataBaseEngine=NULL;
m_pIRecordDataBaseEngine=NULL;
//比赛接口
m_pITableFrameHook=NULL;
//用户数组
ZeroMemory(m_TableUserItemArray,sizeof(m_TableUserItemArray));
m_pITableInfoExtra = NULL;
return;
}
//析构函数
CTableFrame::~CTableFrame()
{
//释放对象
SafeRelease(m_pITableFrameSink);
SafeRelease(m_pITableFrameHook);
SafeRelease(m_pITableFramePrivate);
return;
}
//接口查询
VOID * CTableFrame::QueryInterface(REFGUID Guid, DWORD dwQueryVer)
{
QUERYINTERFACE(ITableFrame,Guid,dwQueryVer);
QUERYINTERFACE_IUNKNOWNEX(ITableFrame,Guid,dwQueryVer);
return NULL;
}
//开始游戏
bool CTableFrame::StartGame()
{
//游戏状态
ASSERT(m_bDrawStarted==false);
if (m_bDrawStarted==true) return false;
//保存变量
bool bGameStarted=m_bGameStarted;
bool bTableStarted=m_bTableStarted;
//设置状态
m_bGameStarted=true;
m_bDrawStarted=true;
m_bTableStarted=true;
//开始时间
GetLocalTime(&m_SystemTimeStart);
m_dwDrawStartTime=(DWORD)time(NULL);
//开始设置
if (bGameStarted==false)
{
//状态变量
ZeroMemory(m_wOffLineCount,sizeof(m_wOffLineCount));
ZeroMemory(m_dwOffLineTime,sizeof(m_dwOffLineTime));
//设置用户
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
//设置用户
if (pIServerUserItem!=NULL)
{
//锁定游戏币
if (m_pGameServiceOption->lServiceScore>0L)
{
m_lFrozenedScore[i]=m_pGameServiceOption->lServiceScore;
pIServerUserItem->FrozenedUserScore(m_pGameServiceOption->lServiceScore);
}
//设置状态
BYTE cbUserStatus=pIServerUserItem->GetUserStatus();
if ((cbUserStatus!=US_OFFLINE)&&(cbUserStatus!=US_PLAYING)) pIServerUserItem->SetUserStatus(US_PLAYING,m_wTableID,i);
}
}
//发送状态
if (bTableStarted!=m_bTableStarted) SendTableStatus();
}
if (m_pITableFrameSink!=NULL)
{
m_pITableFrameSink->RepositionSink();
}
//比赛通知
bool bStart=true;
if(m_pITableFrameHook!=NULL)
{
bStart=m_pITableFrameHook->OnEventGameStart(this, m_wChairCount);
}
//私人场通知
if(m_pITableFramePrivate!=NULL)
{
m_pITableFramePrivate->OnEventGameStart(this, m_wChairCount);
}
//通知事件
ASSERT(m_pITableFrameSink!=NULL);
if (m_pITableFrameSink!=NULL&&bStart)
{
m_pITableFrameSink->OnEventGameStart();
}
return true;
}
//解散游戏
bool CTableFrame::DismissGame()
{
//状态判断
ASSERT(m_bTableStarted==true);
if (m_bTableStarted==false) return false;
//结束游戏
if ((m_bGameStarted==true)&&(m_pITableFrameSink->OnEventGameConclude(INVALID_CHAIR,NULL,GER_DISMISS)==false))
{
ASSERT(FALSE);
return false;
}
//设置状态
if ((m_bGameStarted==false)&&(m_bTableStarted==true))
{
//设置变量
m_bTableStarted=false;
//发送状态
SendTableStatus();
}
return true;
}
//结束游戏
bool CTableFrame::ConcludeGame(BYTE cbGameStatus)
{
//效验状态
ASSERT(m_bGameStarted==true);
if (m_bGameStarted==false) return false;
//保存变量
bool bDrawStarted=m_bDrawStarted;
//设置状态
m_bDrawStarted=false;
m_cbGameStatus=cbGameStatus;
m_bGameStarted=(cbGameStatus>=GAME_STATUS_PLAY)?true:false;
//游戏记录
if (bDrawStarted==true)
{
//写入记录
if (CServerRule::IsRecordGameScore(m_pGameServiceOption->dwServerRule)==true)
{
//变量定义
DBR_GR_GameScoreRecord GameScoreRecord;
//设置变量
if (m_pGameServiceOption->wServerType == GAME_GENRE_EDUCATE) {
if (m_pITableInfoExtra != nullptr) {
GameScoreRecord.wTableID = static_cast<WORD>( (static_cast<PrivateTableInfo*>(m_pITableInfoExtra))->dwRoomNum );
}
}
if (GameScoreRecord.wTableID == 0) {
GameScoreRecord.wTableID = m_wTableID;
}
GameScoreRecord.dwPlayTimeCount=(bDrawStarted==true)?(DWORD)time(NULL)-m_dwDrawStartTime:0;
//游戏时间
GameScoreRecord.SystemTimeStart=m_SystemTimeStart;
GetLocalTime(&GameScoreRecord.SystemTimeConclude);
//用户积分
for (INT_PTR i=0;i<m_GameScoreRecordActive.GetCount();i++)
{
//获取对象
ASSERT(m_GameScoreRecordActive[i]!=NULL);
tagGameScoreRecord * pGameScoreRecord=m_GameScoreRecordActive[i];
//用户数目
if (pGameScoreRecord->cbAndroid==FALSE)
{
GameScoreRecord.wUserCount++;
}
else
{
GameScoreRecord.wAndroidCount++;
}
//奖牌统计
GameScoreRecord.dwUserMemal+=pGameScoreRecord->dwUserMemal;
//统计信息
if (pGameScoreRecord->cbAndroid==FALSE)
{
GameScoreRecord.lWasteCount-=(pGameScoreRecord->lScore+pGameScoreRecord->lRevenue);
GameScoreRecord.lRevenueCount+=pGameScoreRecord->lRevenue;
}
WORD wIndex=GameScoreRecord.wRecordCount++;
GameScoreRecord.GameScoreRecord.push_back(*pGameScoreRecord);
}
//投递数据
if(GameScoreRecord.wUserCount > 0)
{
GameScoreRecord.dataGameDefine = m_UserDefine;
datastream kDataStream;
GameScoreRecord.StreamValue(kDataStream,true);
m_pIRecordDataBaseEngine->PostDataBaseRequest(DBR_GR_GAME_SCORE_RECORD,0,&kDataStream[0],kDataStream.size());
}
}
//清理记录
if (m_GameScoreRecordActive.GetCount()>0L)
{
m_GameScoreRecordBuffer.Append(m_GameScoreRecordActive);
m_GameScoreRecordActive.RemoveAll();
}
}
//结束设置
if (m_bGameStarted==false)
{
//变量定义
bool bOffLineWait=false;
//设置用户
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
//用户处理
if (pIServerUserItem!=NULL)
{
tagTimeInfo* TimeInfo=pIServerUserItem->GetTimeInfo();
//游戏时间
DWORD dwCurrentTime=(DWORD)time(NULL);
TimeInfo->dwEndGameTimer=dwCurrentTime;
//解锁游戏币
if (m_lFrozenedScore[i]!=0L)
{
pIServerUserItem->UnFrozenedUserScore(m_lFrozenedScore[i]);
m_lFrozenedScore[i]=0L;
}
//设置状态
if (pIServerUserItem->GetUserStatus()==US_OFFLINE)
{
//断线处理
bOffLineWait=true;
if(m_pGameServiceOption->wServerType!=GAME_GENRE_MATCH)
{
PerformStandUpAction(pIServerUserItem);
}
else
{
pIServerUserItem->SetClientReady(true);
pIServerUserItem->SetUserStatus(US_SIT,m_wTableID,i);
}
}
else
{
//设置状态
pIServerUserItem->SetUserStatus(US_SIT,m_wTableID,i);
}
}
}
//删除时间
if (bOffLineWait==true) KillGameTimer(IDI_OFF_LINE);
}
//踢出检测
if (m_bGameStarted == false)
{
for (WORD i = 0; i < m_wChairCount; i++)
{
//获取用户
if (m_TableUserItemArray[i] == NULL) continue;
IServerUserItem * pIServerUserItem = m_TableUserItemArray[i];
//积分限制
if ((m_pGameServiceOption->lMinTableScore != 0L) && (pIServerUserItem->GetUserScore() < m_pGameServiceOption->lMinTableScore))
{
//构造提示
TCHAR szDescribe[128] = TEXT("");
if (m_pGameServiceOption->wServerType&GAME_GENRE_GOLD)
{
_sntprintf(szDescribe, CountArray(szDescribe), TEXT("您的游戏币少于 ") SCORE_STRING TEXT(",不能继续游戏!"), m_pGameServiceOption->lMinTableScore);
}
else
{
_sntprintf(szDescribe, CountArray(szDescribe), TEXT("您的游戏积分少于 ") SCORE_STRING TEXT(",不能继续游戏!"), m_pGameServiceOption->lMinTableScore);
}
//发送消息
if (pIServerUserItem->IsAndroidUser() == true)
SendGameMessage(pIServerUserItem, szDescribe, SMT_EJECT);
else
SendGameMessage(pIServerUserItem, szDescribe, SMT_EJECT);
//用户起立
PerformStandUpAction(pIServerUserItem);
continue;
}
//关闭判断
if ((CServerRule::IsForfendGameEnter(m_pGameServiceOption->dwServerRule) == true) && (pIServerUserItem->GetMasterOrder() == 0))
{
//发送消息
LPCTSTR pszMessage = TEXT("由于系统维护,当前游戏桌子禁止用户继续游戏!");
SendGameMessage(pIServerUserItem, pszMessage, SMT_EJECT | SMT_CHAT | SMT_CLOSE_GAME);
//用户起立
PerformStandUpAction(pIServerUserItem);
continue;
}
}
}
//通知比赛
if(m_pITableFrameHook!=NULL) m_pITableFrameHook->OnEventGameEnd(this,0, NULL, cbGameStatus);
//通知比赛
if(m_pITableFramePrivate!=NULL) m_pITableFramePrivate->OnEventGameEnd(this,0, NULL, cbGameStatus);
//重置桌子
ASSERT(m_pITableFrameSink!=NULL);
if (m_pITableFrameSink!=NULL) m_pITableFrameSink->RepositionSink();
//结束桌子
ConcludeTable();
//发送状态
SendTableStatus();
return true;
}
//结束桌子
bool CTableFrame::ConcludeTable()
{
//结束桌子
if ((m_bGameStarted==false)&&(m_bTableStarted==true))
{
//人数判断
WORD wTableUserCount=GetSitUserCount();
if (wTableUserCount==0) m_bTableStarted=false;
if (m_pGameServiceAttrib->wChairCount==MAX_CHAIR) m_bTableStarted=false;
//模式判断
if (m_cbStartMode==START_MODE_FULL_READY) m_bTableStarted=false;
if (m_cbStartMode==START_MODE_PAIR_READY) m_bTableStarted=false;
if (m_cbStartMode==START_MODE_ALL_READY) m_bTableStarted=false;
}
return true;
}
void CTableFrame::SetTableInfoExtra(void* tableInfo)
{
m_pITableInfoExtra = tableInfo;
}
void* CTableFrame::GetTableInfoExtra() {
return m_pITableInfoExtra;
}
void CTableFrame::RemoveTableInfoExtra()
{
m_pITableInfoExtra = NULL;
}
//写入积分
bool CTableFrame::WriteUserScore(WORD wChairID, tagScoreInfo & ScoreInfo)
{
//效验参数
ASSERT((wChairID<m_wChairCount)&&(ScoreInfo.cbType!=SCORE_TYPE_NULL));
if ((wChairID>=m_wChairCount)&&(ScoreInfo.cbType==SCORE_TYPE_NULL)) return false;
//获取用户
ASSERT(GetTableUserItem(wChairID)!=NULL);
IServerUserItem * pIServerUserItem=GetTableUserItem(wChairID);
TCHAR szMessage[128]=TEXT("");
//写入积分
if (pIServerUserItem!=NULL)
{
//变量定义
DWORD dwUserMemal=0L;
SCORE lRevenueScore=__min(m_lFrozenedScore[wChairID],m_pGameServiceOption->lServiceScore);
//扣服务费
if (m_pGameServiceOption->lServiceScore>0L
&& m_pGameServiceOption->wServerType == GAME_GENRE_GOLD
&& m_pITableFrameSink->QueryBuckleServiceCharge(wChairID))
{
//扣服务费
ScoreInfo.lScore-=lRevenueScore;
ScoreInfo.lRevenue+=lRevenueScore;
//解锁游戏币
pIServerUserItem->UnFrozenedUserScore(m_lFrozenedScore[wChairID]);
m_lFrozenedScore[wChairID]=0L;
}
//奖牌计算
if (ScoreInfo.lRevenue>0L)
{
WORD wMedalRate=m_pGameParameter->wMedalRate;
dwUserMemal=(DWORD)(ScoreInfo.lRevenue*wMedalRate/1000L);
}
//游戏时间
DWORD dwCurrentTime=(DWORD)time(NULL);
DWORD dwPlayTimeCount=(m_bDrawStarted==true)?dwCurrentTime-m_dwDrawStartTime:0L;
//变量定义
tagUserProperty * pUserProperty=pIServerUserItem->GetUserProperty();
//道具判断
if(m_pGameServiceOption->wServerType == GAME_GENRE_SCORE)
{
if (ScoreInfo.lScore>0L)
{
//四倍积分
if ((pUserProperty->wPropertyUseMark&PT_USE_MARK_FOURE_SCORE)!=0)
{
//变量定义
DWORD dwValidTime=pUserProperty->PropertyInfo[1].wPropertyCount*pUserProperty->PropertyInfo[1].dwValidNum;
if(pUserProperty->PropertyInfo[1].dwEffectTime+dwValidTime>dwCurrentTime)
{
//积分翻倍
ScoreInfo.lScore *= 4;
_sntprintf(szMessage,CountArray(szMessage),TEXT("[ %s ] 使用了[ 四倍积分卡 ],得分翻四倍!)"),pIServerUserItem->GetNickName());
}
else
{
pUserProperty->wPropertyUseMark&=~PT_USE_MARK_FOURE_SCORE;
}
} //双倍积分
else if ((pUserProperty->wPropertyUseMark&PT_USE_MARK_DOUBLE_SCORE)!=0)
{
//变量定义
DWORD dwValidTime=pUserProperty->PropertyInfo[0].wPropertyCount*pUserProperty->PropertyInfo[0].dwValidNum;
if (pUserProperty->PropertyInfo[0].dwEffectTime+dwValidTime>dwCurrentTime)
{
//积分翻倍
ScoreInfo.lScore*=2L;
_sntprintf(szMessage,CountArray(szMessage),TEXT("[ %s ] 使用了[ 双倍积分卡 ],得分翻倍!"), pIServerUserItem->GetNickName());
}
else
{
pUserProperty->wPropertyUseMark&=~PT_USE_MARK_DOUBLE_SCORE;
}
}
}
else
{
//附身符
if ((pUserProperty->wPropertyUseMark&PT_USE_MARK_POSSESS)!=0)
{
//变量定义
DWORD dwValidTime=pUserProperty->PropertyInfo[3].wPropertyCount*pUserProperty->PropertyInfo[3].dwValidNum;
if(pUserProperty->PropertyInfo[3].dwEffectTime+dwValidTime>dwCurrentTime)
{
//积分翻倍
ScoreInfo.lScore = 0;
_sntprintf(szMessage,CountArray(szMessage),TEXT("[ %s ] 使用了[ 护身符卡 ],积分不变!"),pIServerUserItem->GetNickName());
}
else
{
pUserProperty->wPropertyUseMark &= ~PT_USE_MARK_POSSESS;
}
}
}
}
SCORE lScore = ScoreInfo.lScore;
if (lScore + pIServerUserItem->GetUserScore() < 0)
{
lScore = -pIServerUserItem->GetUserScore();
}
//写入积分
pIServerUserItem->WriteUserScore(lScore,ScoreInfo.lGrade,ScoreInfo.lRevenue,dwUserMemal,ScoreInfo.cbType,dwPlayTimeCount);
#ifdef ROOM_ONLY_COST_GOLD
// if (m_pITableInfoExtra != nullptr) {
// auto tableInfo = static_cast<PrivateTableInfo*>(m_pITableInfoExtra);
// if (pIServerUserItem->GetUserScore() < tableInfo->dwOutMatchNum + 5 * tableInfo->dwBaseScore) {
// SendGameMessage(pIServerUserItem, TEXT("当前游戏金币不足,为了您的游戏体验,请注意及时充值!"), SMT_CHAT);
// }
// }
#endif
//游戏记录
if (pIServerUserItem->IsAndroidUser()==false && CServerRule::IsRecordGameScore(m_pGameServiceOption->dwServerRule)==true)
{
//变量定义
tagGameScoreRecord * pGameScoreRecord=NULL;
//查询库存
if (m_GameScoreRecordBuffer.GetCount()>0L)
{
//获取对象
INT_PTR nCount=m_GameScoreRecordBuffer.GetCount();
pGameScoreRecord=m_GameScoreRecordBuffer[nCount-1];
//删除对象
m_GameScoreRecordBuffer.RemoveAt(nCount-1);
}
//创建对象
if (pGameScoreRecord==NULL)
{
try
{
//创建对象
pGameScoreRecord=new tagGameScoreRecord;
if (pGameScoreRecord==NULL) throw TEXT("游戏记录对象创建失败");
}
catch (...)
{
ASSERT(FALSE);
}
}
//记录数据
if (pGameScoreRecord!=NULL)
{
//用户信息
pGameScoreRecord->wChairID=wChairID;
pGameScoreRecord->dwUserID=pIServerUserItem->GetUserID();
pGameScoreRecord->cbAndroid=(pIServerUserItem->IsAndroidUser()?TRUE:FALSE);
//用户信息
pGameScoreRecord->dwDBQuestID=pIServerUserItem->GetDBQuestID();
pGameScoreRecord->dwInoutIndex=pIServerUserItem->GetInoutIndex();
//成绩信息
pGameScoreRecord->lScore=ScoreInfo.lScore;
pGameScoreRecord->lGrade=ScoreInfo.lGrade;
pGameScoreRecord->lRevenue=ScoreInfo.lRevenue;
//附加信息
pGameScoreRecord->dwUserMemal=dwUserMemal;
pGameScoreRecord->dwPlayTimeCount=dwPlayTimeCount;
//机器人免税
if(pIServerUserItem->IsAndroidUser())
{
pGameScoreRecord->lScore += pGameScoreRecord->lRevenue;
pGameScoreRecord->lRevenue = 0L;
}
//插入数据
m_GameScoreRecordActive.Add(pGameScoreRecord);
}
}
}
else
{
//离开用户
CTraceService::TraceString(TEXT("系统暂时未支持离开用户的补分操作处理!"),TraceLevel_Exception);
return false;
}
//广播消息
if (szMessage[0]!=0)
{
//变量定义
IServerUserItem * pISendUserItem = NULL;
WORD wEnumIndex=0;
//游戏玩家
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
pISendUserItem=GetTableUserItem(i);
if(pISendUserItem==NULL) continue;
//发送消息
SendGameMessage(pISendUserItem, szMessage, SMT_CHAT);
}
//旁观用户
do
{
pISendUserItem=EnumLookonUserItem(wEnumIndex++);
if(pISendUserItem!=NULL)
{
//发送消息
SendGameMessage(pISendUserItem, szMessage, SMT_CHAT);
}
} while (pISendUserItem!=NULL);
}
return true;
}
//写入积分
bool CTableFrame::WriteTableScore(tagScoreInfo ScoreInfoArray[], WORD wScoreCount,datastream kDataStream)
{
//效验参数
ASSERT(wScoreCount==m_wChairCount);
if (wScoreCount!=m_wChairCount) return false;
//写入分数
for (WORD i=0;i<m_wChairCount;i++)
{
if (ScoreInfoArray[i].cbType!=SCORE_TYPE_NULL)
{
WriteUserScore(i,ScoreInfoArray[i]);
}
}
if (m_pITableFramePrivate)
{
m_pITableFramePrivate->WriteTableScore(this,ScoreInfoArray,wScoreCount,kDataStream);
}
return true;
}
//计算税收
SCORE CTableFrame::CalculateRevenue(WORD wChairID, SCORE lScore)
{
//效验参数
ASSERT(wChairID<m_wChairCount);
if (wChairID>=m_wChairCount) return 0L;
//计算税收
if ((m_pGameServiceOption->wRevenueRatio>0)&&(lScore>=REVENUE_BENCHMARK))
{
//获取用户
ASSERT(GetTableUserItem(wChairID)!=NULL);
IServerUserItem * pIServerUserItem=GetTableUserItem(wChairID);
//计算税收
SCORE lRevenue=lScore*m_pGameServiceOption->wRevenueRatio/REVENUE_DENOMINATOR;
return lRevenue;
}
return 0L;
}
//消费限额
SCORE CTableFrame::QueryConsumeQuota(IServerUserItem * pIServerUserItem)
{
//用户效验
ASSERT(pIServerUserItem->GetTableID()==m_wTableID);
if (pIServerUserItem->GetTableID()!=m_wTableID) return 0L;
//查询额度
SCORE lTrusteeScore=pIServerUserItem->GetTrusteeScore();
SCORE lMinEnterScore=m_pGameServiceOption->lMinTableScore;
SCORE lUserConsumeQuota=m_pITableFrameSink->QueryConsumeQuota(pIServerUserItem);
//效验额度
ASSERT((lUserConsumeQuota>=0L)&&(lUserConsumeQuota<=pIServerUserItem->GetUserScore()-lMinEnterScore));
if ((lUserConsumeQuota<0L)||(lUserConsumeQuota>pIServerUserItem->GetUserScore()-lMinEnterScore)) return 0L;
return lUserConsumeQuota+lTrusteeScore;
}
//寻找用户
IServerUserItem * CTableFrame::SearchUserItem(DWORD dwUserID)
{
//变量定义
WORD wEnumIndex=0;
IServerUserItem * pIServerUserItem=NULL;
//桌子用户
for (WORD i=0;i<m_wChairCount;i++)
{
pIServerUserItem=GetTableUserItem(i);
if ((pIServerUserItem!=NULL)&&(pIServerUserItem->GetUserID()==dwUserID)) return pIServerUserItem;
}
//旁观用户
do
{
pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if ((pIServerUserItem!=NULL)&&(pIServerUserItem->GetUserID()==dwUserID)) return pIServerUserItem;
} while (pIServerUserItem!=NULL);
return NULL;
}
//游戏用户
IServerUserItem * CTableFrame::GetTableUserItem(WORD wChairID)
{
//效验参数
ASSERT(wChairID<m_wChairCount);
if (wChairID>=m_wChairCount) return NULL;
//获取用户
return m_TableUserItemArray[wChairID];
}
//旁观用户
IServerUserItem * CTableFrame::EnumLookonUserItem(WORD wEnumIndex)
{
if (wEnumIndex>=m_LookonUserItemArray.GetCount()) return NULL;
return m_LookonUserItemArray[wEnumIndex];
}
//设置时间
bool CTableFrame::SetGameTimer(DWORD dwTimerID, DWORD dwElapse, DWORD dwRepeat, WPARAM dwBindParameter)
{
//效验参数
ASSERT((dwTimerID>0)&&(dwTimerID<TIME_TABLE_MODULE_RANGE));
if ((dwTimerID<=0)||(dwTimerID>=TIME_TABLE_MODULE_RANGE)) return false;
//设置时间
DWORD dwEngineTimerID=IDI_TABLE_MODULE_START+m_wTableID*TIME_TABLE_MODULE_RANGE;
if (m_pITimerEngine!=NULL) m_pITimerEngine->SetTimer(dwEngineTimerID+dwTimerID,dwElapse,dwRepeat,dwBindParameter);
return true;
}
//删除时间
bool CTableFrame::KillGameTimer(DWORD dwTimerID)
{
//效验参数
ASSERT((dwTimerID>0)&&(dwTimerID<=TIME_TABLE_MODULE_RANGE));
if ((dwTimerID<=0)||(dwTimerID>TIME_TABLE_MODULE_RANGE)) return false;
//删除时间
DWORD dwEngineTimerID=IDI_TABLE_MODULE_START+m_wTableID*TIME_TABLE_MODULE_RANGE;
if (m_pITimerEngine!=NULL) m_pITimerEngine->KillTimer(dwEngineTimerID+dwTimerID);
return true;
}
//发送数据
bool CTableFrame::SendUserItemData(IServerUserItem * pIServerUserItem, WORD wSubCmdID)
{
//状态效验
ASSERT((pIServerUserItem!=NULL)&&(pIServerUserItem->IsClientReady()==true));
if ((pIServerUserItem==NULL)&&(pIServerUserItem->IsClientReady()==false)) return false;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,NULL,0);
return true;
}
//发送数据
bool CTableFrame::SendUserItemData(IServerUserItem * pIServerUserItem, WORD wSubCmdID, VOID * pData, WORD wDataSize)
{
//状态效验
ASSERT((pIServerUserItem!=NULL)&&(pIServerUserItem->IsClientReady()==true));
if ((pIServerUserItem==NULL)&&(pIServerUserItem->IsClientReady()==false)) return false;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,pData,wDataSize);
return true;
}
//发送数据
bool CTableFrame::SendTableData(WORD wChairID, WORD wSubCmdID)
{
//用户群发
if (wChairID==INVALID_CHAIR)
{
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if (pIServerUserItem==NULL) continue;
//效验状态
ASSERT(pIServerUserItem->IsClientReady()==true);
if (pIServerUserItem->IsClientReady()==false) continue;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,NULL,0);
}
return true;
}
else
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(wChairID);
if (pIServerUserItem==NULL) return false;
//效验状态
ASSERT(pIServerUserItem->IsClientReady()==true);
if (pIServerUserItem->IsClientReady()==false) return false;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,NULL,0);
return true;
}
return false;
}
//发送数据
bool CTableFrame::SendTableData(WORD wChairID, WORD wSubCmdID, VOID * pData, WORD wDataSize,WORD wMainCmdID)
{
//用户群发
if (wChairID==INVALID_CHAIR)
{
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) continue;
if ((pIServerUserItem==NULL)) continue;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,wMainCmdID,wSubCmdID,pData,wDataSize);
}
return true;
}
else
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(wChairID);
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) return false;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,wMainCmdID,wSubCmdID,pData,wDataSize);
return true;
}
return false;
}
//发送数据
bool CTableFrame::SendLookonData(WORD wChairID, WORD wSubCmdID)
{
//变量定义
WORD wEnumIndex=0;
IServerUserItem * pIServerUserItem=NULL;
//枚举用户
do
{
//获取用户
pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if (pIServerUserItem==NULL) break;
//效验状态
ASSERT(pIServerUserItem->IsClientReady()==true);
if (pIServerUserItem->IsClientReady()==false) return false;
//发送数据
if ((wChairID==INVALID_CHAIR)||(pIServerUserItem->GetChairID()==wChairID))
{
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,NULL,0);
}
} while (true);
return true;
}
//发送数据
bool CTableFrame::SendLookonData(WORD wChairID, WORD wSubCmdID, VOID * pData, WORD wDataSize)
{
//变量定义
WORD wEnumIndex=0;
IServerUserItem * pIServerUserItem=NULL;
//枚举用户
do
{
//获取用户
pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if (pIServerUserItem==NULL) break;
//效验状态
//ASSERT(pIServerUserItem->IsClientReady()==true);
if (pIServerUserItem->IsClientReady()==false) return false;
//发送数据
if ((wChairID==INVALID_CHAIR)||(pIServerUserItem->GetChairID()==wChairID))
{
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_GAME,wSubCmdID,pData,wDataSize);
}
} while (true);
return true;
}
//发送消息
bool CTableFrame::SendGameMessage(LPCTSTR lpszMessage, WORD wType)
{
//变量定义
WORD wEnumIndex=0;
//发送消息
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) continue;
//发送消息
m_pIMainServiceFrame->SendGameMessage(pIServerUserItem,lpszMessage,wType);
}
//枚举用户
do
{
//获取用户
IServerUserItem * pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if (pIServerUserItem==NULL) break;
//效验状态
ASSERT(pIServerUserItem->IsClientReady()==true);
if (pIServerUserItem->IsClientReady()==false) return false;
//发送消息
m_pIMainServiceFrame->SendGameMessage(pIServerUserItem,lpszMessage,wType);
} while (true);
return true;
}
//房间消息
bool CTableFrame::SendRoomMessage(IServerUserItem * pIServerUserItem, LPCTSTR lpszMessage, WORD wType)
{
//用户效验
ASSERT(pIServerUserItem!=NULL);
if (pIServerUserItem==NULL) return false;
//发送消息
m_pIMainServiceFrame->SendRoomMessage(pIServerUserItem,lpszMessage,wType);
return true;
}
//游戏消息
bool CTableFrame::SendGameMessage(IServerUserItem * pIServerUserItem, LPCTSTR lpszMessage, WORD wType)
{
//用户效验
ASSERT(pIServerUserItem!=NULL);
if (pIServerUserItem==NULL) return false;
//发送消息
return m_pIMainServiceFrame->SendGameMessage(pIServerUserItem,lpszMessage,wType);
}
//发送场景
bool CTableFrame::SendGameScene(IServerUserItem * pIServerUserItem, VOID * pData, WORD wDataSize)
{
//用户效验
ASSERT((pIServerUserItem!=NULL)&&(pIServerUserItem->IsClientReady()==true));
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) return false;
//发送场景
ASSERT(m_pIMainServiceFrame!=NULL);
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_GAME_SCENE,pData,wDataSize);
return true;
}
//设置接口
bool CTableFrame::SetTableFrameHook(IUnknownEx * pIUnknownEx)
{
ASSERT(pIUnknownEx!=NULL);
if(pIUnknownEx==NULL) return false;
//类型判断
if((m_pGameServiceOption->wServerType&GAME_GENRE_MATCH)==0) return false;
//查询接口
m_pITableFrameHook=QUERY_OBJECT_PTR_INTERFACE(pIUnknownEx,ITableFrameHook);
m_pIMatchTableAction=QUERY_OBJECT_PTR_INTERFACE(pIUnknownEx,ITableUserAction);
return true;
}
bool CTableFrame::SetTableFramePrivate(IUnknownEx * pIUnknownEx)
{
ASSERT(pIUnknownEx!=NULL);
if(pIUnknownEx==NULL) return false;
//类型判断
if((m_pGameServiceOption->wServerType&GAME_GENRE_EDUCATE)==0) return false;
//查询接口
m_pITableFramePrivate=QUERY_OBJECT_PTR_INTERFACE(pIUnknownEx,ITableFramePrivate);
m_pIPrivateTableAction=QUERY_OBJECT_PTR_INTERFACE(pIUnknownEx,ITableUserAction);
return true;
}
//添加事件
void CTableFrame::AddPrivateAction(DWORD dwChairID,BYTE bActionIdex)
{
if (m_pITableFramePrivate)
{
m_pITableFramePrivate->AddPrivateAction(this,dwChairID,bActionIdex);
}
}
//设置私人场信息
void CTableFrame::SetPrivateInfo(BYTE bGameTypeIdex,DWORD bGameRuleIdex, VOID* pData)
{
if (m_pITableFrameSink)
{
m_pITableFrameSink->SetPrivateInfo(bGameTypeIdex,bGameRuleIdex,pData);
}
}
void CTableFrame::SetCreateUserID(DWORD dwUserID)
{
if (m_pITableFrameSink)
{
m_pITableFrameSink->SetCreateUserID(dwUserID);
}
}
DWORD CTableFrame::GetCreateUserID()
{
if (m_pITableFrameSink)
return m_pITableFrameSink->GetCreateUserID();
else
return 0;
}
bool CTableFrame::SwitchRoomCreater(IServerUserItem * pIServerUserItem)
{
if (m_pITableFrameSink)
return m_pITableFrameSink->SwitchRoomCreater(pIServerUserItem);
return false;
}
//断线事件
bool CTableFrame::OnEventUserOffLine(IServerUserItem * pIServerUserItem)
{
//参数效验
ASSERT(pIServerUserItem!=NULL);
if (pIServerUserItem==NULL) return false;
//用户变量
tagUserInfo * pUserInfo=pIServerUserItem->GetUserInfo();
IServerUserItem * pITableUserItem=m_TableUserItemArray[pUserInfo->wChairID];
//用户属性
WORD wChairID=pIServerUserItem->GetChairID();
BYTE cbUserStatus=pIServerUserItem->GetUserStatus();
//游戏用户
if (cbUserStatus!=US_LOOKON)
{
//效验用户
ASSERT(pIServerUserItem==GetTableUserItem(wChairID));
if (pIServerUserItem!=GetTableUserItem(wChairID)) return false;
//私人类型
if(m_pGameServiceOption->wServerType==GAME_GENRE_EDUCATE)
{
pIServerUserItem->SetUserStatus(US_OFFLINE,m_wTableID,wChairID);
//掉线通知
if(m_pIPrivateTableAction!=NULL) m_pIPrivateTableAction->OnActionUserOffLine(wChairID,pIServerUserItem);
return true;
}
//断线处理
if ((cbUserStatus==US_PLAYING)&&(m_wOffLineCount[wChairID]<MAX_OFF_LINE))
{
//用户设置
pIServerUserItem->SetClientReady(false);
pIServerUserItem->SetUserStatus(US_OFFLINE,m_wTableID,wChairID);
//比赛类型
if(m_pGameServiceOption->wServerType==GAME_GENRE_MATCH)
{
//if(pIServerUserItem->IsTrusteeUser()==false)
{
//设置托管
//pIServerUserItem->SetTrusteeUser(true);
//掉线通知
if(m_pITableUserAction!=NULL) m_pITableUserAction->OnActionUserOffLine(wChairID,pIServerUserItem);
}
return true;
}
//掉线通知
if(m_pITableUserAction!=NULL) m_pITableUserAction->OnActionUserOffLine(wChairID,pIServerUserItem);
//断线处理
if (m_dwOffLineTime[wChairID]==0L)
{
//设置变量
m_wOffLineCount[wChairID]++;
m_dwOffLineTime[wChairID]=(DWORD)time(NULL);
//时间设置
WORD wOffLineCount=GetOffLineUserCount();
if (wOffLineCount==1) SetGameTimer(IDI_OFF_LINE,TIME_OFF_LINE,1,wChairID);
}
return true;
}
}
//用户起立
PerformStandUpAction(pIServerUserItem);
//删除用户
ASSERT(pIServerUserItem->GetUserStatus()==US_FREE);
pIServerUserItem->SetUserStatus(US_NULL,INVALID_TABLE,INVALID_CHAIR);
return true;
}
//积分事件
bool CTableFrame::OnUserScroeNotify(WORD wChairID, IServerUserItem * pIServerUserItem, BYTE cbReason)
{
//通知游戏
return m_pITableFrameSink->OnUserScroeNotify(wChairID,pIServerUserItem,cbReason);
}
//时间事件
bool CTableFrame::OnEventTimer(DWORD dwTimerID, WPARAM dwBindParameter)
{
//回调事件
if ((dwTimerID>=0)&&(dwTimerID<TIME_TABLE_SINK_RANGE))
{
ASSERT(m_pITableFrameSink!=NULL);
return m_pITableFrameSink->OnTimerMessage(dwTimerID,dwBindParameter);
}
//事件处理
switch (dwTimerID)
{
case IDI_OFF_LINE: //断线事件
{
//效验状态
ASSERT(m_bGameStarted==true);
if (m_bGameStarted==false) return false;
//变量定义
DWORD dwOffLineTime=0L;
WORD wOffLineChair=INVALID_CHAIR;
//寻找用户
for (WORD i=0;i<m_wChairCount;i++)
{
if ((m_dwOffLineTime[i]!=0L)&&((m_dwOffLineTime[i]<dwOffLineTime)||(wOffLineChair==INVALID_CHAIR)))
{
wOffLineChair=i;
dwOffLineTime=m_dwOffLineTime[i];
}
}
//位置判断
ASSERT(wOffLineChair!=INVALID_CHAIR);
if (wOffLineChair==INVALID_CHAIR) return false;
//用户判断
ASSERT(dwBindParameter<m_wChairCount);
if (wOffLineChair!=(WORD)dwBindParameter)
{
//时间计算
DWORD dwCurrentTime=(DWORD)time(NULL);
DWORD dwLapseTime=dwCurrentTime-m_dwOffLineTime[wOffLineChair];
//设置时间
dwLapseTime=__min(dwLapseTime,TIME_OFF_LINE-2000L);
SetGameTimer(IDI_OFF_LINE,TIME_OFF_LINE-dwLapseTime,1,wOffLineChair);
return true;
}
//获取用户
ASSERT(GetTableUserItem(wOffLineChair)!=NULL);
IServerUserItem * pIServerUserItem=GetTableUserItem(wOffLineChair);
//结束游戏
if (pIServerUserItem!=NULL)
{
//设置变量
m_dwOffLineTime[wOffLineChair]=0L;
//用户起立
PerformStandUpAction(pIServerUserItem);
}
//继续时间
if (m_bGameStarted==true)
{
//变量定义
DWORD dwOffLineTime=0L;
WORD wOffLineChair=INVALID_CHAIR;
//寻找用户
for (WORD i=0;i<m_wChairCount;i++)
{
if ((m_dwOffLineTime[i]!=0L)&&((m_dwOffLineTime[i]<dwOffLineTime)||(wOffLineChair==INVALID_CHAIR)))
{
wOffLineChair=i;
dwOffLineTime=m_dwOffLineTime[i];
}
}
//设置时间
if (wOffLineChair!=INVALID_CHAIR)
{
//时间计算
DWORD dwCurrentTime=(DWORD)time(NULL);
DWORD dwLapseTime=dwCurrentTime-m_dwOffLineTime[wOffLineChair];
//设置时间
dwLapseTime=__min(dwLapseTime,TIME_OFF_LINE-2000L);
SetGameTimer(IDI_OFF_LINE,TIME_OFF_LINE-dwLapseTime,1,wOffLineChair);
}
}
return true;
}
}
//错误断言
ASSERT(FALSE);
return false;
}
//游戏事件
bool CTableFrame::OnEventSocketGame(WORD wSubCmdID, VOID * pData, WORD wDataSize, IServerUserItem * pIServerUserItem)
{
//效验参数
ASSERT(pIServerUserItem!=NULL);
ASSERT(m_pITableFrameSink!=NULL);
//消息处理
return m_pITableFrameSink->OnGameMessage(wSubCmdID,pData,wDataSize,pIServerUserItem);
}
//框架事件
bool CTableFrame::OnEventSocketFrame(WORD wSubCmdID, VOID * pData, WORD wDataSize, IServerUserItem * pIServerUserItem)
{
//游戏处理
if (m_pITableFrameSink->OnFrameMessage(wSubCmdID,pData,wDataSize,pIServerUserItem)==true) return true;
//默认处理
switch (wSubCmdID)
{
case SUB_GF_GAME_OPTION: //游戏配置
{
//效验参数
ASSERT(wDataSize==sizeof(CMD_GF_GameOption));
if (wDataSize!=sizeof(CMD_GF_GameOption)) return false;
//变量定义
CMD_GF_GameOption * pGameOption=(CMD_GF_GameOption *)pData;
//获取属性
WORD wChairID=pIServerUserItem->GetChairID();
BYTE cbUserStatus=pIServerUserItem->GetUserStatus();
//断线清理
if ((cbUserStatus!=US_LOOKON)&&((m_dwOffLineTime[wChairID]!=0L)))
{
//设置变量
m_dwOffLineTime[wChairID]=0L;
//删除时间
WORD wOffLineCount=GetOffLineUserCount();
if (wOffLineCount==0) KillGameTimer(IDI_OFF_LINE);
}
//设置状态
pIServerUserItem->SetClientReady(true);
if (cbUserStatus!=US_LOOKON) m_bAllowLookon[wChairID]=pGameOption->cbAllowLookon?true:false;
//发送状态
CMD_GF_GameStatus GameStatus;
GameStatus.cbGameStatus=m_cbGameStatus;
GameStatus.cbAllowLookon=m_bAllowLookon[wChairID]?TRUE:FALSE;
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_GAME_STATUS,&GameStatus,sizeof(GameStatus));
////发送消息
//TCHAR szMessage[128]=TEXT("");
//_sntprintf(szMessage,CountArray(szMessage),TEXT("欢迎您进入“%s”游戏,祝您游戏愉快!"),m_pGameServiceAttrib->szGameName);
//m_pIMainServiceFrame->SendGameMessage(pIServerUserItem,szMessage,SMT_CHAT);
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
if (m_TableUserItemArray[i]==NULL) continue;
if (pIServerUserItem==NULL) continue;
IServerUserItem * pSendIServerUserItem=m_TableUserItemArray[i];
m_pIMainServiceFrame->SendUserInfoPacket(pSendIServerUserItem,pIServerUserItem);
if(pSendIServerUserItem != pIServerUserItem)
m_pIMainServiceFrame->SendUserInfoPacket(pIServerUserItem,pSendIServerUserItem);
}
//发送场景
bool bSendSecret=((cbUserStatus!=US_LOOKON)||(m_bAllowLookon[wChairID]==true));
m_pITableFrameSink->OnEventSendGameScene(wChairID,pIServerUserItem,m_cbGameStatus,bSendSecret);
if(m_pITableFramePrivate!=NULL) m_pITableFramePrivate->OnEventClientReady(wChairID,pIServerUserItem);
// //错误的逻辑开始判断
// if (EfficacyStartGame(wChairID)==true)
// {
// StartGame();
// }
return true;
}
case SUB_GF_USER_READY: //用户准备
{
//获取属性
WORD wChairID=pIServerUserItem->GetChairID();
BYTE cbUserStatus=pIServerUserItem->GetUserStatus();
//效验状态
ASSERT(GetTableUserItem(wChairID)==pIServerUserItem);
if (GetTableUserItem(wChairID)!=pIServerUserItem) return false;
//效验状态
//ASSERT(cbUserStatus==US_SIT);
if (cbUserStatus!=US_SIT) return true;
//分组判断
// if ((m_pGameServiceOption->cbDistributeRule&DISTRIBUTE_ALLOW)!=0)
// {
// m_pIMainServiceFrame->InsertDistribute(pIServerUserItem);
// return true;
// }
//事件通知
if (m_pITableUserAction!=NULL)
{
m_pITableUserAction->OnActionUserOnReady(wChairID,pIServerUserItem,pData,wDataSize);
}
//事件通知
if(m_pIMatchTableAction!=NULL && !m_pIMatchTableAction->OnActionUserOnReady(wChairID,pIServerUserItem, pData,wDataSize))
{
return true;
}
//事件通知
if(m_pIPrivateTableAction!=NULL && !m_pIPrivateTableAction->OnActionUserOnReady(wChairID,pIServerUserItem, pData,wDataSize))
{
return true;
}
//开始判断
if (EfficacyStartGame(wChairID)==false)
{
pIServerUserItem->SetUserStatus(US_READY,m_wTableID,wChairID);
}
else
{
StartGame();
}
return true;
}
case SUB_GF_USER_CHAT: //用户聊天
{
//变量定义
CMD_GF_C_UserChat * pUserChat=(CMD_GF_C_UserChat *)pData;
//效验参数
ASSERT(wDataSize<=sizeof(CMD_GF_C_UserChat));
ASSERT(wDataSize>=(sizeof(CMD_GF_C_UserChat)-sizeof(pUserChat->szChatString)));
ASSERT(wDataSize==(sizeof(CMD_GF_C_UserChat)-sizeof(pUserChat->szChatString)+pUserChat->wChatLength*sizeof(pUserChat->szChatString[0])));
//效验参数
if (wDataSize>sizeof(CMD_GF_C_UserChat)) return false;
if (wDataSize<(sizeof(CMD_GF_C_UserChat)-sizeof(pUserChat->szChatString))) return false;
if (wDataSize!=(sizeof(CMD_GF_C_UserChat)-sizeof(pUserChat->szChatString)+pUserChat->wChatLength*sizeof(pUserChat->szChatString[0]))) return false;
//目标用户
if ((pUserChat->dwTargetUserID!=0)&&(SearchUserItem(pUserChat->dwTargetUserID)==NULL))
{
ASSERT(FALSE);
return true;
}
//状态判断
if ((CServerRule::IsForfendGameChat(m_pGameServiceOption->dwServerRule)==true)&&(pIServerUserItem->GetMasterOrder()==0L))
{
SendGameMessage(pIServerUserItem,TEXT("抱歉,当前游戏房间禁止游戏聊天!"),SMT_CHAT);
return true;
}
//权限判断
if (CUserRight::CanRoomChat(pIServerUserItem->GetUserRight())==false)
{
SendGameMessage(pIServerUserItem,TEXT("抱歉,您没有游戏聊天的权限,若需要帮助,请联系游戏客服咨询!"),SMT_EJECT|SMT_CHAT);
return true;
}
//构造消息
CMD_GF_S_UserChat UserChat;
ZeroMemory(&UserChat,sizeof(UserChat));
//字符过滤
m_pIMainServiceFrame->SensitiveWordFilter(pUserChat->szChatString,UserChat.szChatString,CountArray(UserChat.szChatString));
//构造数据
UserChat.dwChatColor=pUserChat->dwChatColor;
UserChat.wChatLength=pUserChat->wChatLength;
UserChat.dwTargetUserID=pUserChat->dwTargetUserID;
UserChat.dwSendUserID=pIServerUserItem->GetUserID();
UserChat.wChatLength=CountStringBuffer(UserChat.szChatString);
//发送数据
WORD wHeadSize=sizeof(UserChat)-sizeof(UserChat.szChatString);
WORD wSendSize=wHeadSize+UserChat.wChatLength*sizeof(UserChat.szChatString[0]);
//游戏用户
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) continue;
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_USER_CHAT,&UserChat,wSendSize);
}
//旁观用户
WORD wEnumIndex=0;
IServerUserItem * pIServerUserItem=NULL;
//枚举用户
do
{
//获取用户
pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if (pIServerUserItem==NULL) break;
//发送数据
if (pIServerUserItem->IsClientReady()==true)
{
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_USER_CHAT,&UserChat,wSendSize);
}
} while (true);
return true;
}
case SUB_GF_USER_EXPRESSION: //用户表情
{
//效验参数
ASSERT(wDataSize==sizeof(CMD_GF_C_UserExpression));
if (wDataSize!=sizeof(CMD_GF_C_UserExpression)) return false;
//变量定义
CMD_GF_C_UserExpression * pUserExpression=(CMD_GF_C_UserExpression *)pData;
//目标用户
if ((pUserExpression->dwTargetUserID!=0)&&(SearchUserItem(pUserExpression->dwTargetUserID)==NULL))
{
ASSERT(FALSE);
return true;
}
//状态判断
if ((CServerRule::IsForfendGameChat(m_pGameServiceOption->dwServerRule)==true)&&(pIServerUserItem->GetMasterOrder()==0L))
{
SendGameMessage(pIServerUserItem,TEXT("抱歉,当前游戏房间禁止游戏聊天!"),SMT_CHAT);
return true;
}
//权限判断
if (CUserRight::CanRoomChat(pIServerUserItem->GetUserRight())==false)
{
SendGameMessage(pIServerUserItem,TEXT("抱歉,您没有游戏聊天的权限,若需要帮助,请联系游戏客服咨询!"),SMT_EJECT|SMT_CHAT);
return true;
}
//构造消息
CMD_GR_S_UserExpression UserExpression;
ZeroMemory(&UserExpression,sizeof(UserExpression));
//构造数据
UserExpression.wItemIndex=pUserExpression->wItemIndex;
UserExpression.dwSendUserID=pIServerUserItem->GetUserID();
UserExpression.dwTargetUserID=pUserExpression->dwTargetUserID;
//游戏用户
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if ((pIServerUserItem==NULL)||(pIServerUserItem->IsClientReady()==false)) continue;
//发送数据
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_USER_EXPRESSION,&UserExpression,sizeof(UserExpression));
}
//旁观用户
WORD wEnumIndex=0;
IServerUserItem * pIServerUserItem=NULL;
//枚举用户
do
{
//获取用户
pIServerUserItem=EnumLookonUserItem(wEnumIndex++);
if (pIServerUserItem==NULL) break;
//发送数据
if (pIServerUserItem->IsClientReady()==true)
{
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GF_FRAME,SUB_GF_USER_EXPRESSION,&UserExpression,sizeof(UserExpression));
}
} while (true);
return true;
}
case SUB_GR_TABLE_TALK: //游戏聊天
{
SendTableData(INVALID_CHAIR,SUB_GR_TABLE_TALK,pData,wDataSize,MDM_GF_FRAME);
return true;
}
case SUB_GF_LOOKON_CONFIG: //旁观配置
{
//效验参数
ASSERT(wDataSize==sizeof(CMD_GF_LookonConfig));
if (wDataSize<sizeof(CMD_GF_LookonConfig)) return false;
//变量定义
CMD_GF_LookonConfig * pLookonConfig=(CMD_GF_LookonConfig *)pData;
//目标用户
if ((pLookonConfig->dwUserID!=0)&&(SearchUserItem(pLookonConfig->dwUserID)==NULL))
{
ASSERT(FALSE);
return true;
}
//用户效验
ASSERT(pIServerUserItem->GetUserStatus()!=US_LOOKON);
if (pIServerUserItem->GetUserStatus()==US_LOOKON) return false;
//旁观处理
if (pLookonConfig->dwUserID!=0L)
{
for (INT_PTR i=0;i<m_LookonUserItemArray.GetCount();i++)
{
//获取用户
IServerUserItem * pILookonUserItem=m_LookonUserItemArray[i];
if (pILookonUserItem->GetUserID()!=pLookonConfig->dwUserID) continue;
if (pILookonUserItem->GetChairID()!=pIServerUserItem->GetChairID()) continue;
//构造消息
CMD_GF_LookonStatus LookonStatus;
LookonStatus.cbAllowLookon=pLookonConfig->cbAllowLookon;
//发送消息
ASSERT(m_pIMainServiceFrame!=NULL);
m_pIMainServiceFrame->SendData(pILookonUserItem,MDM_GF_FRAME,SUB_GF_LOOKON_STATUS,&LookonStatus,sizeof(LookonStatus));
break;
}
}
else
{
//设置判断
bool bAllowLookon=(pLookonConfig->cbAllowLookon==TRUE)?true:false;
if (bAllowLookon==m_bAllowLookon[pIServerUserItem->GetChairID()]) return true;
//设置变量
m_bAllowLookon[pIServerUserItem->GetChairID()]=bAllowLookon;
//构造消息
CMD_GF_LookonStatus LookonStatus;
LookonStatus.cbAllowLookon=pLookonConfig->cbAllowLookon;
//发送消息
for (INT_PTR i=0;i<m_LookonUserItemArray.GetCount();i++)
{
//获取用户
IServerUserItem * pILookonUserItem=m_LookonUserItemArray[i];
if (pILookonUserItem->GetChairID()!=pIServerUserItem->GetChairID()) continue;
//发送消息
ASSERT(m_pIMainServiceFrame!=NULL);
m_pIMainServiceFrame->SendData(pILookonUserItem,MDM_GF_FRAME,SUB_GF_LOOKON_STATUS,&LookonStatus,sizeof(LookonStatus));
}
}
return true;
}
}
return false;
}
//获取空位
WORD CTableFrame::GetNullChairID()
{
//椅子搜索
for (WORD i=0;i<m_wChairCount;i++)
{
if (m_TableUserItemArray[i]==NULL)
{
return i;
}
}
return INVALID_CHAIR;
}
//随机空位
WORD CTableFrame::GetRandNullChairID()
{
//椅子搜索
WORD wIndex = rand()%m_wChairCount;
for (WORD i=wIndex;i<m_wChairCount+wIndex;i++)
{
if (m_TableUserItemArray[i%m_wChairCount]==NULL)
{
return i%m_wChairCount;
}
}
return INVALID_CHAIR;
}
//用户数目
WORD CTableFrame::GetSitUserCount()
{
//变量定义
WORD wUserCount=0;
//数目统计
for (WORD i=0;i<m_wChairCount;i++)
{
if (GetTableUserItem(i)!=NULL)
{
wUserCount++;
}
}
return wUserCount;
}
void CTableFrame::SetCellScore(LONG lCellScore)
{
m_lCellScore=lCellScore;
if (m_pITableFrameSink)
{
m_pITableFrameSink->SetGameBaseScore(lCellScore);
}
}
//旁观数目
WORD CTableFrame::GetLookonUserCount()
{
//获取数目
INT_PTR nLookonCount=m_LookonUserItemArray.GetCount();
return (WORD)(nLookonCount);
}
//断线数目
WORD CTableFrame::GetOffLineUserCount()
{
//变量定义
WORD wOffLineCount=0;
//断线人数
for (WORD i=0;i<m_wChairCount;i++)
{
if (m_dwOffLineTime[i]!=0L)
{
wOffLineCount++;
}
}
return wOffLineCount;
}
//桌子状况
WORD CTableFrame::GetTableUserInfo(tagTableUserInfo & TableUserInfo)
{
//设置变量
ZeroMemory(&TableUserInfo,sizeof(TableUserInfo));
//用户分析
for (WORD i=0;i<m_pGameServiceAttrib->wChairCount;i++)
{
//获取用户
IServerUserItem * pIServerUserItem=GetTableUserItem(i);
if (pIServerUserItem==NULL) continue;
//用户类型
if (pIServerUserItem->IsAndroidUser()==false)
{
TableUserInfo.wTableUserCount++;
}
else
{
TableUserInfo.wTableAndroidCount++;
}
//准备判断
if (pIServerUserItem->GetUserStatus()==US_READY)
{
TableUserInfo.wTableReadyCount++;
}
}
//最少数目
switch (m_cbStartMode)
{
case START_MODE_ALL_READY: //所有准备
{
TableUserInfo.wMinUserCount=m_pGameServiceAttrib->wChairCount;
break;
}
case START_MODE_PAIR_READY: //配对开始
{
TableUserInfo.wMinUserCount=2;
break;
}
case START_MODE_TIME_CONTROL: //时间控制
{
TableUserInfo.wMinUserCount=1;
break;
}
default: //默认模式
{
TableUserInfo.wMinUserCount=m_pGameServiceAttrib->wChairCount;
break;
}
}
return TableUserInfo.wTableAndroidCount+TableUserInfo.wTableUserCount;
}
//配置桌子
bool CTableFrame::InitializationFrame(WORD wTableID, tagTableFrameParameter & TableFrameParameter)
{
//设置变量
m_wTableID=wTableID;
m_wChairCount=TableFrameParameter.pGameServiceAttrib->wChairCount;
//配置参数
m_pGameParameter=TableFrameParameter.pGameParameter;
m_pGameServiceAttrib=TableFrameParameter.pGameServiceAttrib;
m_pGameServiceOption=TableFrameParameter.pGameServiceOption;
//组件接口
m_pITimerEngine=TableFrameParameter.pITimerEngine;
m_pIMainServiceFrame=TableFrameParameter.pIMainServiceFrame;
m_pIAndroidUserManager=TableFrameParameter.pIAndroidUserManager;
m_pIKernelDataBaseEngine=TableFrameParameter.pIKernelDataBaseEngine;
m_pIRecordDataBaseEngine=TableFrameParameter.pIRecordDataBaseEngine;
//创建桌子
IGameServiceManager * pIGameServiceManager=TableFrameParameter.pIGameServiceManager;
m_pITableFrameSink=(ITableFrameSink *)pIGameServiceManager->CreateTableFrameSink(IID_ITableFrameSink,VER_ITableFrameSink);
//错误判断
if (m_pITableFrameSink==NULL)
{
ASSERT(FALSE);
return false;
}
//设置桌子
IUnknownEx * pITableFrame=QUERY_ME_INTERFACE(IUnknownEx);
if (m_pITableFrameSink->Initialization(pITableFrame)==false) return false;
//设置变量
m_lCellScore=m_pGameServiceOption->lCellScore;
//扩展接口
m_pITableUserAction=QUERY_OBJECT_PTR_INTERFACE(m_pITableFrameSink,ITableUserAction);
m_pITableUserRequest=QUERY_OBJECT_PTR_INTERFACE(m_pITableFrameSink,ITableUserRequest);
return true;
}
//起立动作
bool CTableFrame::PerformStandUpAction(IServerUserItem * pIServerUserItem)
{
//私人场类型
if(m_pGameServiceOption->wServerType==GAME_GENRE_EDUCATE)
{
WORD wChairID=pIServerUserItem->GetChairID();
//掉线通知
if(m_pIPrivateTableAction!=NULL && m_pIPrivateTableAction->OnActionUserOffLine(wChairID,pIServerUserItem))
{
return true;
}
}
return PerformStandUpActionReally(pIServerUserItem);
}
//起立动作
bool CTableFrame::PerformStandUpActionReally(IServerUserItem * pIServerUserItem, BOOL bReserveRoom, INT nForceUserStatus)
{
//效验参数
ASSERT(pIServerUserItem != NULL); if (pIServerUserItem == NULL) return true;
ASSERT(pIServerUserItem->GetTableID()==m_wTableID);
ASSERT(pIServerUserItem->GetChairID()<=m_wChairCount);
//用户属性
WORD wChairID=pIServerUserItem->GetChairID();
BYTE cbUserStatus=pIServerUserItem->GetUserStatus();
IServerUserItem * pITableUserItem=GetTableUserItem(wChairID);
//游戏用户
if ((m_bGameStarted==true)&&((cbUserStatus==US_PLAYING)||(cbUserStatus==US_OFFLINE)))
{
//比赛类型
if(m_pGameServiceOption->wServerType==GAME_GENRE_MATCH)
{
//掉线通知
if(m_pITableUserAction!=NULL) m_pITableUserAction->OnActionUserOffLine(wChairID,pIServerUserItem);
return true;
}
//结束游戏
BYTE cbConcludeReason=(cbUserStatus==US_OFFLINE)?GER_NETWORK_ERROR:GER_USER_LEAVE;
m_pITableFrameSink->OnEventGameConclude(wChairID,pIServerUserItem,cbConcludeReason);
//离开判断
if (m_TableUserItemArray[wChairID]!=pIServerUserItem) return true;
}
//设置变量
if (pIServerUserItem==pITableUserItem)
{
//解锁游戏币
if (m_lFrozenedScore[wChairID]!=0L)
{
pIServerUserItem->UnFrozenedUserScore(m_lFrozenedScore[wChairID]);
m_lFrozenedScore[wChairID]=0L;
}
//事件通知
if (m_pITableUserAction!=NULL)
{
m_pITableUserAction->OnActionUserStandUp(wChairID,pIServerUserItem,false);
}
//事件通知
if(m_pIMatchTableAction!=NULL) m_pIMatchTableAction->OnActionUserStandUp(wChairID,pIServerUserItem,false);
//事件通知
if(m_pIPrivateTableAction!=NULL) m_pIPrivateTableAction->OnActionUserStandUp(wChairID,pIServerUserItem,false);
//设置变量
m_TableUserItemArray[wChairID]=NULL;
//用户状态
pIServerUserItem->SetClientReady(false);
if(nForceUserStatus != US_ERROR)
{
pIServerUserItem->SetUserStatus(US_FREE,INVALID_TABLE,INVALID_CHAIR);
pIServerUserItem->SetUserStatus(nForceUserStatus, INVALID_TABLE,INVALID_CHAIR);
}
else//强制设置玩家状态
{
pIServerUserItem->SetUserStatus((cbUserStatus==US_OFFLINE)?US_NULL:US_FREE,INVALID_TABLE,INVALID_CHAIR);
}
//变量定义
bool bTableLocked=IsTableLocked();
bool bTableStarted=IsTableStarted();
WORD wTableUserCount=GetSitUserCount();
//设置变量
m_wUserCount=wTableUserCount;
//桌子信息
if (wTableUserCount==0)
{
m_dwTableOwnerID=0L;
m_szEnterPassword[0]=0;
}
//踢走旁观
if (wTableUserCount==0)
{
for (INT_PTR i=0;i<m_LookonUserItemArray.GetCount();i++)
{
SendGameMessage(m_LookonUserItemArray[i],TEXT("此游戏桌的所有玩家已经离开了!"),SMT_CLOSE_GAME|SMT_EJECT);
}
}
//结束桌子
ConcludeTable();
//开始判断
if (EfficacyStartGame(INVALID_CHAIR)==true)
{
StartGame();
}
//发送状态
if ((bTableLocked!=IsTableLocked())||(bTableStarted!=IsTableStarted()))
{
SendTableStatus();
}
return true;
}
else
{
//起立处理
for (INT_PTR i=0;i<m_LookonUserItemArray.GetCount();i++)
{
if (pIServerUserItem==m_LookonUserItemArray[i])
{
//删除子项
m_LookonUserItemArray.RemoveAt(i);
//事件通知
if (m_pITableUserAction!=NULL)
{
m_pITableUserAction->OnActionUserStandUp(wChairID,pIServerUserItem,true);
}
//事件通知
if(m_pIMatchTableAction!=NULL) m_pIMatchTableAction->OnActionUserStandUp(wChairID,pIServerUserItem,true);
//事件通知
if(m_pIPrivateTableAction!=NULL) m_pIPrivateTableAction->OnActionUserStandUp(wChairID,pIServerUserItem,true);
//用户状态
pIServerUserItem->SetClientReady(false);
pIServerUserItem->SetUserStatus(US_FREE,INVALID_TABLE,INVALID_CHAIR);
return true;
}
}
//错误断言
ASSERT(FALSE);
}
return true;
}
//旁观动作
bool CTableFrame::PerformLookonAction(WORD wChairID, IServerUserItem * pIServerUserItem)
{
//效验参数
ASSERT((pIServerUserItem!=NULL)&&(wChairID<m_wChairCount));
ASSERT((pIServerUserItem->GetTableID()==INVALID_TABLE)&&(pIServerUserItem->GetChairID()==INVALID_CHAIR));
//变量定义
tagUserInfo * pUserInfo=pIServerUserItem->GetUserInfo();
tagUserRule * pUserRule=pIServerUserItem->GetUserRule();
IServerUserItem * pITableUserItem=GetTableUserItem(wChairID);
//游戏状态
if ((m_bGameStarted==false)&&(pIServerUserItem->GetMasterOrder()==0L))
{
SendRequestFailure(pIServerUserItem,TEXT("游戏还没有开始,不能旁观此游戏桌!"),REQUEST_FAILURE_NORMAL);
return false;
}
//模拟处理
if (m_pGameServiceAttrib->wChairCount < MAX_CHAIR && pIServerUserItem->IsAndroidUser()==false)
{
//定义变量
CAttemperEngineSink * pAttemperEngineSink=(CAttemperEngineSink *)m_pIMainServiceFrame;
//查找机器
for (WORD i=0; i<m_pGameServiceAttrib->wChairCount; i++)
{
//获取用户
IServerUserItem *pIUserItem=m_TableUserItemArray[i];
if(pIUserItem==NULL) continue;
if(pIUserItem->IsAndroidUser()==false)break;
//获取参数
tagBindParameter * pBindParameter=pAttemperEngineSink->GetBindParameter(pIUserItem->GetBindIndex());
IAndroidUserItem * pIAndroidUserItem=m_pIAndroidUserManager->SearchAndroidUserItem(pIUserItem->GetUserID(),pBindParameter->dwSocketID);
tagAndroidParameter * pAndroidParameter=pIAndroidUserItem->GetAndroidParameter();
//模拟判断
if((pAndroidParameter->dwServiceGender&ANDROID_SIMULATE)!=0
&& (pAndroidParameter->dwServiceGender&ANDROID_PASSIVITY)==0
&& (pAndroidParameter->dwServiceGender&ANDROID_INITIATIVE)==0)
{
SendRequestFailure(pIServerUserItem,TEXT("抱歉,当前游戏桌子禁止用户旁观!"),REQUEST_FAILURE_NORMAL);
return false;
}
break;
}
}
//旁观判断
if (CServerRule::IsAllowAndroidSimulate(m_pGameServiceOption->dwServerRule)==true
&& (CServerRule::IsAllowAndroidAttend(m_pGameServiceOption->dwServerRule)==false))
{
if ((pITableUserItem!=NULL)&&(pITableUserItem->IsAndroidUser()==true))
{
SendRequestFailure(pIServerUserItem,TEXT("抱歉,当前游戏房间禁止用户旁观!"),REQUEST_FAILURE_NORMAL);
return false;
}
}
//状态判断
if ((CServerRule::IsForfendGameLookon(m_pGameServiceOption->dwServerRule)==true)&&(pIServerUserItem->GetMasterOrder()==0))
{
SendRequestFailure(pIServerUserItem,TEXT("抱歉,当前游戏房间禁止用户旁观!"),REQUEST_FAILURE_NORMAL);
return false;
}
//椅子判断
if ((pITableUserItem==NULL)&&(pIServerUserItem->GetMasterOrder()==0L))
{
SendRequestFailure(pIServerUserItem,TEXT("您所请求的位置没有游戏玩家,无法旁观此游戏桌"),REQUEST_FAILURE_NORMAL);
return false;
}
//密码效验
if ((IsTableLocked()==true)&&(pIServerUserItem->GetMasterOrder()==0L)&&(lstrcmp(pUserRule->szPassword,m_szEnterPassword)!=0))
{
SendRequestFailure(pIServerUserItem,TEXT("游戏桌进入密码不正确,不能旁观游戏!"),REQUEST_FAILURE_PASSWORD);
return false;
}
//扩展效验
if (m_pITableUserRequest!=NULL)
{
//变量定义
tagRequestResult RequestResult;
ZeroMemory(&RequestResult,sizeof(RequestResult));
//坐下效验
if (m_pITableUserRequest->OnUserRequestLookon(wChairID,pIServerUserItem,RequestResult)==false)
{
//发送信息
SendRequestFailure(pIServerUserItem,RequestResult.szFailureReason,RequestResult.cbFailureCode);
return false;
}
}
//设置用户
m_LookonUserItemArray.Add(pIServerUserItem);
//用户状态
pIServerUserItem->SetClientReady(false);
pIServerUserItem->SetUserStatus(US_LOOKON,m_wTableID,wChairID);
//事件通知
if (m_pITableUserAction!=NULL)
{
m_pITableUserAction->OnActionUserSitDown(wChairID,pIServerUserItem,true);
}
//事件通知
if(m_pIMatchTableAction!=NULL) m_pIMatchTableAction->OnActionUserSitDown(wChairID,pIServerUserItem,true);
//事件通知
if(m_pIPrivateTableAction!=NULL) m_pIPrivateTableAction->OnActionUserSitDown(wChairID,pIServerUserItem,true);
return true;
}
//坐下动作
bool CTableFrame::PerformSitDownAction(WORD wChairID, IServerUserItem * pIServerUserItem, LPCTSTR lpszPassword)
{
//效验参数
ASSERT((pIServerUserItem!=NULL)&&(wChairID<m_wChairCount));
ASSERT((pIServerUserItem->GetTableID()==INVALID_TABLE)&&(pIServerUserItem->GetChairID()==INVALID_CHAIR));
//变量定义
tagUserInfo * pUserInfo=pIServerUserItem->GetUserInfo();
tagUserRule * pUserRule=pIServerUserItem->GetUserRule();
IServerUserItem * pITableUserItem=GetTableUserItem(wChairID);
//状态判断
if ((CServerRule::IsForfendGameEnter(m_pGameServiceOption->dwServerRule)==true)&&(pIServerUserItem->GetMasterOrder()==0))
{
SendRequestFailure(pIServerUserItem,TEXT("抱歉,当前游戏桌子禁止用户进入!"),REQUEST_FAILURE_NORMAL);
return false;
}
//模拟处理
if (m_pGameServiceAttrib->wChairCount < MAX_CHAIR && pIServerUserItem->IsAndroidUser()==false)
{
//定义变量
CAttemperEngineSink * pAttemperEngineSink=(CAttemperEngineSink *)m_pIMainServiceFrame;
//查找机器
for (WORD i=0; i<m_pGameServiceAttrib->wChairCount; i++)
{
//获取用户
IServerUserItem *pIUserItem=m_TableUserItemArray[i];
if(pIUserItem==NULL) continue;
if(pIUserItem->IsAndroidUser()==false)break;
//获取参数
tagBindParameter * pBindParameter=pAttemperEngineSink->GetBindParameter(pIUserItem->GetBindIndex());
IAndroidUserItem * pIAndroidUserItem=m_pIAndroidUserManager->SearchAndroidUserItem(pIUserItem->GetUserID(),pBindParameter->dwSocketID);
tagAndroidParameter * pAndroidParameter=pIAndroidUserItem->GetAndroidParameter();
//模拟判断
if((pAndroidParameter->dwServiceGender&ANDROID_SIMULATE)!=0
&& (pAndroidParameter->dwServiceGender&ANDROID_PASSIVITY)==0
&& (pAndroidParameter->dwServiceGender&ANDROID_INITIATIVE)==0)
{
SendRequestFailure(pIServerUserItem,TEXT("抱歉,当前游戏桌子禁止用户进入!"),REQUEST_FAILURE_NORMAL);
return false;
}
break;
}
}
//动态加入
bool bDynamicJoin=true;
if (GetStartMode() != START_MODE_MASTER_CONTROL && m_pGameServiceAttrib->cbDynamicJoin == FALSE) bDynamicJoin = false;
if (GetStartMode() != START_MODE_MASTER_CONTROL && CServerRule::IsAllowDynamicJoin(m_pGameServiceOption->dwServerRule) == false) bDynamicJoin = false;
//游戏状态
if ((m_bGameStarted==true)&&(bDynamicJoin==false))
{
SendRequestFailure(pIServerUserItem,TEXT("游戏已经开始了,现在不能进入游戏桌!"),REQUEST_FAILURE_NORMAL);
return false;
}
//椅子判断
if (pITableUserItem!=NULL)
{
for (int i = 0;i<m_wChairCount;i++)
{
if (!GetTableUserItem(i))
{
wChairID = i;
pITableUserItem = NULL;
break;
}
}
if (pITableUserItem)
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("椅子已经被 [ %s ] 捷足先登了,下次动作要快点了!"),pITableUserItem->GetNickName());
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
}
//积分变量
SCORE lUserScore=pIServerUserItem->GetUserScore();
SCORE lMinTableScore=m_pGameServiceOption->lMinTableScore;
SCORE lLessEnterScore=m_pITableFrameSink->QueryLessEnterScore(wChairID,pIServerUserItem);
//密码效验
if(((IsTableLocked()==true)&&(pIServerUserItem->GetMasterOrder()==0L))
&&((lpszPassword==NULL)||(lstrcmp(lpszPassword,m_szEnterPassword)!=0)))
{
SendRequestFailure(pIServerUserItem,TEXT("游戏桌进入密码不正确,不能加入游戏!"),REQUEST_FAILURE_PASSWORD);
return false;
}
//积分限制
if (((lMinTableScore!=0L)&&(lUserScore<lMinTableScore))||((lLessEnterScore!=0L)&&(lUserScore<lLessEnterScore)))
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
if(m_pGameServiceOption->wServerType==GAME_GENRE_GOLD)
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("加入游戏至少需要 ") SCORE_STRING TEXT(" 的游戏币,您的游戏币不够,不能加入!"),__max(lMinTableScore,lLessEnterScore));
else if(m_pGameServiceOption->wServerType==GAME_GENRE_MATCH)
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("加入游戏至少需要 ") SCORE_STRING TEXT(" 的比赛币,您的比赛币不够,不能加入!"),__max(lMinTableScore,lLessEnterScore));
else
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("加入游戏至少需要 ") SCORE_STRING TEXT(" 的游戏积分,您的积分不够,不能加入!"),__max(lMinTableScore,lLessEnterScore));
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NOSCORE);
return false;
}
//规则效验
if (EfficacyIPAddress(pIServerUserItem)==false) return false;
if (EfficacyScoreRule(pIServerUserItem)==false) return false;
//扩展效验
if (m_pITableUserRequest!=NULL)
{
//变量定义
tagRequestResult RequestResult;
ZeroMemory(&RequestResult,sizeof(RequestResult));
//坐下效验
if (m_pITableUserRequest->OnUserRequestSitDown(wChairID,pIServerUserItem,RequestResult)==false)
{
//发送信息
SendRequestFailure(pIServerUserItem,RequestResult.szFailureReason,RequestResult.cbFailureCode);
return false;
}
}
//设置变量
m_TableUserItemArray[wChairID]=pIServerUserItem;
//用户状态
if ((IsGameStarted()==false)||(m_cbStartMode!=START_MODE_TIME_CONTROL))
{
if (CServerRule::IsAllowAvertCheatMode(m_pGameServiceOption->dwServerRule)==false && (m_pGameServiceOption->wServerType&GAME_GENRE_MATCH)==0)
{
pIServerUserItem->SetClientReady(false); //QY 2016 05 10 如果已经在游戏中再次调用会永远无法开始游戏
pIServerUserItem->SetUserStatus(US_SIT,m_wTableID,wChairID);
}
else
{
pIServerUserItem->SetClientReady(false);
pIServerUserItem->SetUserStatus(US_READY,m_wTableID,wChairID);
}
}
else
{
//设置变量
m_wOffLineCount[wChairID]=0L;
m_dwOffLineTime[wChairID]=0L;
//锁定游戏币
if (m_pGameServiceOption->lServiceScore>0L)
{
m_lFrozenedScore[wChairID]=m_pGameServiceOption->lServiceScore;
pIServerUserItem->FrozenedUserScore(m_pGameServiceOption->lServiceScore);
}
//设置状态
pIServerUserItem->SetClientReady(false);
pIServerUserItem->SetUserStatus(US_PLAYING,m_wTableID,wChairID);
}
m_wUserCount=GetSitUserCount();
//桌子信息
if (GetSitUserCount()==1)
{
//状态变量
bool bTableLocked=IsTableLocked();
//设置变量
m_dwTableOwnerID=pIServerUserItem->GetUserID();
lstrcpyn(m_szEnterPassword,pUserRule->szPassword,CountArray(m_szEnterPassword));
//发送状态
if (bTableLocked!=IsTableLocked()) SendTableStatus();
}
//事件通知
if (m_pITableUserAction!=NULL)
{
m_pITableUserAction->OnActionUserSitDown(wChairID,pIServerUserItem,false);
}
//事件通知
if(m_pIMatchTableAction!=NULL)
{
m_pIMatchTableAction->OnActionUserSitDown(wChairID,pIServerUserItem,false);
}
//事件通知
if(m_pIPrivateTableAction!=NULL)
{
m_pIPrivateTableAction->OnActionUserSitDown(wChairID,pIServerUserItem,false);
}
return true;
}
//桌子状态
bool CTableFrame::SendTableStatus()
{
//变量定义
CMD_GR_TableStatus TableStatus;
ZeroMemory(&TableStatus,sizeof(TableStatus));
//构造数据
TableStatus.wTableID=m_wTableID;
TableStatus.TableStatus.cbTableLock=IsTableLocked()?TRUE:FALSE;
TableStatus.TableStatus.cbPlayStatus=IsTableStarted()?TRUE:FALSE;
//电脑数据
m_pIMainServiceFrame->SendData(BG_COMPUTER,MDM_GR_STATUS,SUB_GR_TABLE_STATUS,&TableStatus,sizeof(TableStatus));
//手机数据
return true;
}
//请求失败
bool CTableFrame::SendRequestFailure(IServerUserItem * pIServerUserItem, LPCTSTR pszDescribe, LONG lErrorCode)
{
//变量定义
CMD_GR_RequestFailure RequestFailure;
ZeroMemory(&RequestFailure,sizeof(RequestFailure));
//构造数据
RequestFailure.lErrorCode=lErrorCode;
lstrcpyn(RequestFailure.szDescribeString,pszDescribe,CountArray(RequestFailure.szDescribeString));
//发送数据
WORD wDataSize=CountStringBuffer(RequestFailure.szDescribeString);
WORD wHeadSize=sizeof(RequestFailure)-sizeof(RequestFailure.szDescribeString);
m_pIMainServiceFrame->SendData(pIServerUserItem,MDM_GR_USER,SUB_GR_SIT_FAILED,&RequestFailure,wHeadSize+wDataSize);
return true;
}
//开始效验
bool CTableFrame::EfficacyStartGame(WORD wReadyChairID)
{
//状态判断
if (m_bGameStarted==true) return false;
//模式过滤
if (m_cbStartMode==START_MODE_TIME_CONTROL) return false;
if (m_cbStartMode==START_MODE_MASTER_CONTROL) return false;
//准备人数
WORD wReadyUserCount=0;
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pITableUserItem=GetTableUserItem(i);
if (pITableUserItem==NULL) continue;
//用户统计
if (pITableUserItem!=NULL)
{
//状态判断
if (pITableUserItem->IsClientReady()==false) return false;
if ((wReadyChairID!=i)&&(pITableUserItem->GetUserStatus()!=US_READY)) return false;
//用户计数
wReadyUserCount++;
}
}
//开始处理
switch (m_cbStartMode)
{
case START_MODE_ALL_READY: //所有准备
{
//数目判断
if (wReadyUserCount==m_wChairCount) return true;
return false;
}
case START_MODE_FULL_READY: //满人开始
{
//人数判断
if (wReadyUserCount==m_wChairCount) return true;
return false;
}
case START_MODE_PAIR_READY: //配对开始
{
//数目判断
if (wReadyUserCount==m_wChairCount) return true;
if ((wReadyUserCount<2L)||(wReadyUserCount%2)!=0) return false;
//位置判断
for (WORD i=0;i<m_wChairCount/2;i++)
{
//获取用户
IServerUserItem * pICurrentUserItem=GetTableUserItem(i);
IServerUserItem * pITowardsUserItem=GetTableUserItem(i+m_wChairCount/2);
//位置过滤
if ((pICurrentUserItem==NULL)&&(pITowardsUserItem!=NULL)) return false;
if ((pICurrentUserItem!=NULL)&&(pITowardsUserItem==NULL)) return false;
}
return true;
}
default:
{
ASSERT(FALSE);
return false;
}
}
return false;
}
//地址效验
bool CTableFrame::EfficacyIPAddress(IServerUserItem * pIServerUserItem)
{
//管理员不受限制
if(pIServerUserItem->GetMasterOrder()!=0) return true;
//规则判断
if (CServerRule::IsForfendGameRule(m_pGameServiceOption->dwServerRule)==true) return true;
//地址效验
const tagUserRule * pUserRule=pIServerUserItem->GetUserRule(),*pTableUserRule=NULL;
bool bCheckSameIP=pUserRule->bLimitSameIP;
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pITableUserItem=GetTableUserItem(i);
if (pITableUserItem!=NULL && (!pITableUserItem->IsAndroidUser()) && (pITableUserItem->GetMasterOrder()==0))
{
pTableUserRule=pITableUserItem->GetUserRule();
if (pTableUserRule->bLimitSameIP==true)
{
bCheckSameIP=true;
break;
}
}
}
//地址效验
if (bCheckSameIP==true)
{
DWORD dwUserIP=pIServerUserItem->GetClientAddr();
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pITableUserItem=GetTableUserItem(i);
if ((pITableUserItem!=NULL)&&(pITableUserItem != pIServerUserItem)&&(!pITableUserItem->IsAndroidUser())&&(pITableUserItem->GetMasterOrder()==0)&&(pITableUserItem->GetClientAddr()==dwUserIP))
{
if (!pUserRule->bLimitSameIP)
{
//发送信息
LPCTSTR pszDescribe=TEXT("此游戏桌玩家设置了不跟相同 IP 地址的玩家游戏,您 IP 地址与此玩家的 IP 地址相同,不能加入游戏!");
SendRequestFailure(pIServerUserItem,pszDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
else
{
//发送信息
LPCTSTR pszDescribe=TEXT("您设置了不跟相同 IP 地址的玩家游戏,此游戏桌存在与您 IP 地址相同的玩家,不能加入游戏!");
SendRequestFailure(pIServerUserItem,pszDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
}
}
for (WORD i=0;i<m_wChairCount-1;i++)
{
//获取用户
IServerUserItem * pITableUserItem=GetTableUserItem(i);
if (pITableUserItem!=NULL && (!pITableUserItem->IsAndroidUser()) && (pITableUserItem->GetMasterOrder()==0))
{
for (WORD j=i+1;j<m_wChairCount;j++)
{
//获取用户
IServerUserItem * pITableNextUserItem=GetTableUserItem(j);
if ((pITableNextUserItem!=NULL) && (!pITableNextUserItem->IsAndroidUser()) && (pITableNextUserItem->GetMasterOrder()==0)&&(pITableUserItem->GetClientAddr()==pITableNextUserItem->GetClientAddr()))
{
LPCTSTR pszDescribe=TEXT("您设置了不跟相同 IP 地址的玩家游戏,此游戏桌存在 IP 地址相同的玩家,不能加入游戏!");
SendRequestFailure(pIServerUserItem,pszDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
}
}
}
}
return true;
}
//积分效验
bool CTableFrame::EfficacyScoreRule(IServerUserItem * pIServerUserItem)
{
//管理员不受限制
if(pIServerUserItem->GetMasterOrder()!=0) return true;
//规则判断
if (CServerRule::IsForfendGameRule(m_pGameServiceOption->dwServerRule)==true) return true;
//变量定义
WORD wWinRate=pIServerUserItem->GetUserWinRate();
WORD wFleeRate=pIServerUserItem->GetUserFleeRate();
//积分范围
for (WORD i=0;i<m_wChairCount;i++)
{
//获取用户
IServerUserItem * pITableUserItem=GetTableUserItem(i);
//规则效验
if (pITableUserItem!=NULL)
{
//获取规则
tagUserRule * pTableUserRule=pITableUserItem->GetUserRule();
//逃率效验
if ((pTableUserRule->bLimitFleeRate)&&(wFleeRate>pTableUserRule->wMaxFleeRate))
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("您的逃跑率太高,与 %s 设置的设置不符,不能加入游戏!"),pITableUserItem->GetNickName());
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
//胜率效验
if ((pTableUserRule->bLimitWinRate)&&(wWinRate<pTableUserRule->wMinWinRate))
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("您的胜率太低,与 %s 设置的设置不符,不能加入游戏!"),pITableUserItem->GetNickName());
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
//积分效验
if (pTableUserRule->bLimitGameScore==true)
{
//最高积分
if (pIServerUserItem->GetUserScore()>pTableUserRule->lMaxGameScore)
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("您的积分太高,与 %s 设置的设置不符,不能加入游戏!"),pITableUserItem->GetNickName());
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
//最低积分
if (pIServerUserItem->GetUserScore()<pTableUserRule->lMinGameScore)
{
//构造信息
TCHAR szDescribe[128]=TEXT("");
_sntprintf(szDescribe,CountArray(szDescribe),TEXT("您的积分太低,与 %s 设置的设置不符,不能加入游戏!"),pITableUserItem->GetNickName());
//发送信息
SendRequestFailure(pIServerUserItem,szDescribe,REQUEST_FAILURE_NORMAL);
return false;
}
}
}
}
return true;
}
void CTableFrame::SetChairCount( WORD wChairCout )
{
m_wChairCount = wChairCout;
}
//////////////////////////////////////////////////////////////////////////////////
| [
"taotingfu819@163.com"
] | taotingfu819@163.com |
c0271ad923348d4414433cc7cf98ffcae3274463 | af965c848c4be0360896acb46309dd0a364b4604 | /card.cpp | a9aa2045a88c749d12bb75cc7a16794d02c997d0 | [] | no_license | coolo/spider | b5df69e8ceb0b5b61f5768b9758f55eb7b3d6f7c | 19fbbe841ca0f3306100b5d9050df212b3a88039 | refs/heads/main | 2023-04-20T09:50:19.904171 | 2021-05-03T17:24:38 | 2021-05-03T17:24:38 | 316,010,195 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,676 | cpp | #include "card.h"
#include <string>
#include <iostream>
std::string Card::toString() const
{
if (is_unknown() && is_faceup())
return "XX";
if (is_unknown())
return "|XX";
std::string ret;
switch (rank())
{
case Ace:
ret += 'A';
break;
case Jack:
ret += 'J';
break;
case Queen:
ret += 'Q';
break;
case King:
ret += 'K';
break;
case Ten:
ret += 'T';
break;
case None:
ret += 'N';
break;
default:
if (rank() < 2 || rank() > 9)
{
printf("rank is out of range\n");
exit(1);
}
ret += ('0' + rank());
break;
}
switch (suit())
{
case Spades:
ret += "S";
break;
case Hearts:
ret += "H";
break;
case Diamonds:
ret += "D";
break;
case Clubs:
ret += "C";
break;
default:
std::cerr << "Invalid suit " << suit() << std::endl;
exit(1);
}
if (!is_faceup())
ret = "|" + ret;
return ret;
}
Suit Card::char2suit(char c)
{
switch (std::toupper(c))
{
case 'S':
return Spades;
case 'H':
return Hearts;
case 'D':
return Diamonds;
case 'C':
return Clubs;
}
std::cerr << "No suit map for " << c << std::endl;
exit(1);
return Spades;
}
Rank Card::char2rank(char c)
{
switch (std::toupper(c))
{
case 'K':
return King;
case 'Q':
return Queen;
case 'A':
return Ace;
case 'T':
return Ten;
case 'J':
return Jack;
case '2':
return Two;
case '3':
return Three;
case '4':
return Four;
case '5':
return Five;
case '6':
return Six;
case '7':
return Seven;
case '8':
return Eight;
case '9':
return Nine;
}
std::cerr << "No rank for " << c << std::endl;
exit(1);
return Ace;
}
Card::Card(const std::string &token_)
{
std::string token = token_;
value = 0;
set_faceup(token.find('|') != 0);
if (!is_faceup())
{
token.erase(0, 1);
}
if (token == "XX" || token == "xx")
{
set_rank(None);
set_suit(Spades);
set_unknown(true);
return;
}
set_rank(char2rank(token[0]));
set_suit(char2suit(token[1]));
set_unknown(false);
}
// to remove known cards from partly unknown decks. We don't care for faceup and unknown
bool Card::operator==(const Card &rhs) const
{
return suit() == rhs.suit() && rank() == rhs.rank();
}
| [
"coolo@suse.de"
] | coolo@suse.de |
a32cb313bf0bc7b483ec1e067c99c674f2d558be | fd57ede0ba18642a730cc862c9e9059ec463320b | /av/drm/common/ReadWriteUtils.cpp | 5e7202f260bf980d23d8ea0841effb16a554f87d | [
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | kailaisi/android-29-framwork | a0c706fc104d62ea5951ca113f868021c6029cd2 | b7090eebdd77595e43b61294725b41310496ff04 | refs/heads/master | 2023-04-27T14:18:52.579620 | 2021-03-08T13:05:27 | 2021-03-08T13:05:27 | 254,380,637 | 1 | 1 | null | 2023-04-15T12:22:31 | 2020-04-09T13:35:49 | C++ | UTF-8 | C++ | false | false | 3,053 | cpp | /*
* Copyright (C) 2010 The Android Open Source Project
*
* 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.
*/
//#define LOG_NDEBUG 0
#define LOG_TAG "ReadWriteUtils"
#include <utils/Log.h>
#include <ReadWriteUtils.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <utils/String8.h>
using namespace android;
#define FAILURE (-1)
String8 ReadWriteUtils::readBytes(const String8& filePath) {
FILE* file = NULL;
file = fopen(filePath.string(), "r");
String8 string("");
if (NULL != file) {
int fd = fileno(file);
struct stat sb;
if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
off64_t length = sb.st_size;
char* bytes = new char[length];
if (length == read(fd, (void*) bytes, length)) {
string.append(bytes, length);
}
delete[] bytes;
}
fclose(file);
}
return string;
}
int ReadWriteUtils::readBytes(const String8& filePath, char** buffer) {
FILE* file = NULL;
file = fopen(filePath.string(), "r");
off64_t length = 0;
if (NULL != file) {
int fd = fileno(file);
struct stat sb;
if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
length = sb.st_size;
*buffer = new char[length];
if (length != read(fd, (void*) *buffer, length)) {
length = FAILURE;
}
}
fclose(file);
}
return length;
}
void ReadWriteUtils::writeToFile(const String8& filePath, const String8& data) {
FILE* file = NULL;
file = fopen(filePath.string(), "w+");
if (NULL != file) {
int fd = fileno(file);
int size = data.size();
if (FAILURE != ftruncate(fd, size)) {
if (size != write(fd, data.string(), size)) {
ALOGE("Failed to write the data to: %s", filePath.string());
}
}
fclose(file);
}
}
void ReadWriteUtils::appendToFile(const String8& filePath, const String8& data) {
FILE* file = NULL;
file = fopen(filePath.string(), "a+");
if (NULL != file) {
int fd = fileno(file);
int size = data.size();
if (size != write(fd, data.string(), size)) {
ALOGE("Failed to write the data to: %s", filePath.string());
}
fclose(file);
}
}
| [
"541018378@qq.com"
] | 541018378@qq.com |
3513e29d1206be163268a76f5cdf6fd3856d0421 | b516d570e74185e1957a65e1ac2a41b10b001892 | /PRO_2019_BER/HW_Engine/modules/core/include/hw/core/handle.h | afa402e6b5316caac5aac4a4b1c5278499ab9116 | [] | no_license | IreNox/games_academy | 1233f096303175e21b86f380e42bde00def96969 | ee55b2c34b300dc6e5e5009ee5eaf95e2d4df4f1 | refs/heads/master | 2023-05-04T03:45:49.011919 | 2021-05-26T15:14:27 | 2021-05-26T15:14:27 | 264,388,147 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 615 | h | #pragma once
#include "hw/core/types.h"
namespace hw
{
template< class TTag, class TStorage, uint32 TIndexBits >
class Handle
{
public:
Handle();
explicit Handle( TStorage value );
Handle( TStorage index, TStorage counter );
bool isValid() const;
bool isInvalid() const;
TStorage getIndex() const;
TStorage getCounter() const;
void set( TStorage index, TStorage counter );
static Handle invalid();
bool operator==( const Handle& rhs ) const;
bool operator!=( const Handle& rhs ) const;
public:
TStorage m_value;
};
}
#include "../../../src/handle.inl"
| [
"mail@timboden.de"
] | mail@timboden.de |
1ee33565478374fc3bb82b457a08a6a5dec9cfa4 | fffdc338e8763560db650ff7151db5db1bd68c0e | /c++/1347.cpp | 1a71b8ace0d0fdf3f1a55cdf806c8be1f6286154 | [] | no_license | michael0432/leetcode | 82f74076d2ea8a36b5bd9dc64c84d9e6975912ee | 791b93bd709177f4af33290f7ef9642bdfd56245 | refs/heads/master | 2020-12-02T01:44:43.933409 | 2020-08-27T03:40:00 | 2020-08-27T03:40:00 | 230,847,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 775 | cpp | class Solution {
public:
int minSteps(string s, string t) {
unordered_map<char, int> m1;
unordered_map<char, int> m2;
int dif = 0;
for (int i = 0; i < s.size(); i++){
if(m1.count(s[i]) == 0)
m1[s[i]] = 1;
else
m1[s[i]]++;
}
for (int j = 0; j < t.size(); j++){
if(m2.count(t[j]) == 0)
m2[t[j]] = 1;
else
m2[t[j]]++;
}
for (auto it = m2.begin(); it != m2.end(); it++){
if(m1.count(it->first) == 0){
dif += it->second;
}
else if(m1[it->first] < it->second)
dif += it->second - m1[it->first];
}
return dif;
}
}; | [
"michael0432@gmail.com"
] | michael0432@gmail.com |
1037f91481838209f3bd29ef68de18c1798bfe5a | b1afcbe64594c16fb2f388ebd91d493f364d4ea0 | /logdevice/common/RandomNodeSetSelector.cpp | b62aef459bb32abef6dd96b568f3748768770ff1 | [
"BSD-3-Clause"
] | permissive | zmyer/LogDevice | b4131968e72fbf045433d11ab5cef4304644f3b7 | ffce34ef7f97e0edc3a6995dfe98ad899197c095 | refs/heads/master | 2020-03-29T14:03:45.181047 | 2018-09-22T21:30:06 | 2018-09-23T07:24:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,533 | cpp | /**
* Copyright (c) 2017-present, Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "RandomNodeSetSelector.h"
#include <algorithm>
#include <chrono>
#include <map>
#include <memory>
#include <numeric>
#include <random>
#include <folly/Memory.h>
#include <folly/String.h>
#include "logdevice/common/commandline_util_chrono.h"
#include "logdevice/common/debug.h"
#include "logdevice/common/util.h"
#include "logdevice/include/types.h"
namespace facebook { namespace logdevice {
// randomly select a nodeset of size @nodeset_size from a pool of candidate
// nodes @eligible_nodes
std::unique_ptr<StorageSet> RandomNodeSetSelector::randomlySelectNodes(
logid_t log_id,
const std::shared_ptr<Configuration>& config,
const NodeSetIndices& eligible_nodes,
size_t nodeset_size,
const Options* options) {
if (nodeset_size > eligible_nodes.size()) {
return nullptr;
}
auto candidates = std::make_unique<StorageSet>();
for (const node_index_t i : eligible_nodes) {
const ServerConfig::Node* node = config->serverConfig()->getNode(i);
if (!node) {
// eligible_nodes should be picked from _config_
ld_check(false);
return nullptr;
}
// filter nodes excluded from @param options
if (options != nullptr && options->exclude_nodes.count(i)) {
// skip the node
continue;
}
if (!node->includeInNodesets()) {
continue;
}
ld_check(node->num_shards > 0);
shard_index_t shard_idx = map_log_to_shard_(log_id, node->num_shards);
candidates->push_back(ShardID(i, shard_idx));
}
if (candidates->size() < nodeset_size) {
ld_error("Cannot select nodeset: Not enough eligible nodes for log %lu "
"after exluding shards from certain nodes. Nodes eligible: %lu, "
"required: %lu",
log_id.val_,
candidates->size(),
nodeset_size);
return nullptr;
}
std::shuffle(candidates->begin(), candidates->end(), rnd_);
candidates->resize(nodeset_size);
ld_check(nodeset_size == candidates->size());
return candidates;
}
storage_set_size_t RandomNodeSetSelector::getStorageSetSize(
logid_t,
const std::shared_ptr<Configuration>& cfg,
folly::Optional<int> storage_set_size_target,
ReplicationProperty replication,
const Options* /*options*/) {
const auto& all_nodes = cfg->serverConfig()->getNodes();
size_t storage_set_count = 0;
for (auto& kv : all_nodes) {
if (kv.second.includeInNodesets()) {
++storage_set_count;
}
}
return std::min(std::max(storage_set_size_target.hasValue()
? storage_set_size_target.value()
: storage_set_count,
size_t(replication.getReplicationFactor())),
storage_set_count);
}
std::tuple<NodeSetSelector::Decision, std::unique_ptr<StorageSet>>
RandomNodeSetSelector::getStorageSet(logid_t log_id,
const std::shared_ptr<Configuration>& cfg,
const StorageSet* prev,
const Options* options) {
auto logcfg = cfg->getLogGroupByIDShared(log_id);
if (!logcfg) {
err = E::NOTFOUND;
return std::make_tuple(Decision::FAILED, nullptr);
}
auto replication_property =
ReplicationProperty::fromLogAttributes(logcfg->attrs());
if (replication_property.getBiggestReplicationScope() !=
NodeLocationScope::NODE) {
ld_error("Cannot select node set for log %lu, this copyset selector "
"does not support cross-domain replication %s.",
log_id.val_,
replication_property.toString().c_str());
return std::make_tuple(Decision::FAILED, nullptr);
}
const auto& all_nodes = cfg->serverConfig()->getNodes();
const size_t nodeset_size = getStorageSetSize(log_id,
cfg,
*logcfg->attrs().nodeSetSize(),
replication_property,
options);
ld_check(nodeset_size > 0);
std::vector<node_index_t> all_nodes_indices;
for (const auto& it : all_nodes) {
all_nodes_indices.push_back(it.first);
}
std::sort(all_nodes_indices.begin(), all_nodes_indices.end());
std::unique_ptr<StorageSet> candidates = randomlySelectNodes(
log_id, cfg, all_nodes_indices, nodeset_size, options);
if (candidates == nullptr) {
// We select from the entire cluster, a valid configuration should
// guarantee that we have enough eligible nodes to pick. However,
// with excluded shards in @param options, this is still possible
return std::make_tuple(Decision::FAILED, nullptr);
}
// sort the nodeset
std::sort(candidates->begin(), candidates->end());
if (!ServerConfig::validStorageSet(
all_nodes, *candidates, replication_property)) {
ld_error("Invalid nodeset %s for log %lu, check nodes weights.",
toString(*candidates).c_str(),
log_id.val_);
return std::make_tuple(Decision::FAILED, nullptr);
}
if (prev && *prev == *candidates) {
return std::make_tuple(Decision::KEEP, nullptr);
}
return std::make_tuple(Decision::NEEDS_CHANGE, std::move(candidates));
}
}} // namespace facebook::logdevice
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
7d2aff879060c1078a7d588ea84c24b51165a62c | 189a609e71ad6a55e231bf58b0c367ff94568cb4 | /src/Serialize/YamlThor.h | 663a1af702cc1e805eea37e20a7c7fe9b5fc0963 | [
"LicenseRef-scancode-public-domain"
] | permissive | aneopsy/ThorsSerializer | 309c2071f9d019e81936e39840e1ebc482af7a2f | b20769713706a2259cd426aa46a9cc8bcf316523 | refs/heads/master | 2021-01-20T14:31:14.842317 | 2017-04-26T05:40:03 | 2017-04-26T05:40:03 | 90,625,022 | 1 | 0 | null | 2017-05-08T12:20:32 | 2017-05-08T12:20:32 | null | UTF-8 | C++ | false | false | 1,158 | h | #ifndef THORS_ANVIL_SERIALIZE_YAML_H
#define THORS_ANVIL_SERIALIZE_YAML_H
/*
* Defines the Yaml Serialization interface
* ThorsAnvil::Serialize::Yaml
* ThorsAnvil::Serialize::yamlExport
* ThorsAnvil::Serialize::yamlImport
*
* Usage:
* std::cout << yamlExport(object); // converts object to Yaml on an output stream
* std::cin >> yamlImport(object); // converts Yaml to a C++ object from an input stream
*/
#include "SerializeConfig.h"
#ifdef HAVE_YAML
#include "YamlParser.h"
#include "YamlPrinter.h"
#include "Exporter.h"
#include "Importer.h"
namespace ThorsAnvil
{
namespace Serialize
{
struct Yaml
{
typedef YamlParser Parser;
typedef YamlPrinter Printer;
};
template<typename T>
Exporter<Yaml, T> yamlExport(T const& value, PrinterInterface::OutputType characteristics = PrinterInterface::OutputType::Default)
{
return Exporter<Yaml, T>(value, characteristics);
}
template<typename T>
Importer<Yaml, T> yamlImport(T& value, ParserInterface::ParseType parseStrictness = ParserInterface::ParseType::Weak)
{
return Importer<Yaml, T>(value, parseStrictness);
}
}
}
#endif
#endif
| [
"Loki.Astari@gmail.com"
] | Loki.Astari@gmail.com |
3b61f58ed278a69d440b61400fe0be3eac1c943e | 033608ba3df28f337a736c39159fab9f4d95233c | /数组赋值与输出/数组赋值与输出.cpp | fb278b6535100fd15f4ac2c834a7f6f539147584 | [] | no_license | SparkLena/Cpp_Study | 2c3479e51127b5fc9988e2d405a108a7ce88e504 | 5a1ff26ea67401c0dbbebee12eacb96890ad1458 | refs/heads/master | 2021-04-29T04:58:33.226720 | 2016-05-23T13:24:42 | 2016-05-23T13:24:42 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 570 | cpp | // 数组赋值与输出.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <stdio.h>
void main()
{
char c[30];
printf("输入多位数:");
int a;
scanf("%d",&a);
sprintf(c,"%d",a);
int bl;
printf("要获得第几位数?:");
scanf("%d",&bl);
int ss=c[bl];
printf("%c\n",'ss');
}
/*
int arr[10]={0};
int i=0;
int num;
printf("输入起始数:");
scanf("%d",&num);
while(i<sizeof(arr)/sizeof(arr[0]))
{
arr[i]=num;
num=num*9;
printf("arr[%d]=%d\n",i,arr[i]);
i++;
}
*/ | [
"pilot_lei@foxmail.com"
] | pilot_lei@foxmail.com |
4a45f15afdd2ac25d61799235ce1cdad96836a0b | faaed80343b89a731c6eead7070ee97ce69685e1 | /project/src/PackageFactory.cc | ee9620c4e6489d50d245045e11f6c7229827c83c | [] | no_license | rishiselvakumaran98/3081_S21_iter3 | 2abf53a6655bac93b1cc712af90a92aee2fb8f16 | 7b84fc682649eb3589548155995383fdde6cdae6 | refs/heads/master | 2023-07-18T05:32:17.535496 | 2021-09-02T15:39:50 | 2021-09-02T15:39:50 | 402,472,983 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 443 | cc | #include "PackageFactory.h"
namespace csci3081 {
// Method checks the picojson of the object and if it is a Package type
// the it proceeds to create a Package entity
IEntity* PackageFactory::CreateEntity(const picojson::object& object) {
if (JsonHelper::GetString(object, "type") == "package") {
std::cout << "Created Package" << std::endl;
return new Package(object);
}
return nullptr;
} //end function
} //end namespace | [
"selva053@umn.edu"
] | selva053@umn.edu |
3bb9d4f6181107a9c389adc3b5f38a0fc671c8dc | a8766db0a50dfb64358ee3a3d4b4903663c3cced | /particle_world/src/RoeLogfile.cpp | 0384f0aee04813dcf4eb8fc3233447a469933c0b | [] | no_license | swantescholz/cpp-games | 0915b8d5acaf01401a93478c1509dce7e95e5b9a | b9814c69ae041c0d746a119cb7039b5b54ddc82d | refs/heads/master | 2020-05-23T07:36:41.172453 | 2019-05-14T20:44:55 | 2019-05-14T20:44:55 | 186,679,964 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,563 | cpp | #include "RoeLogfile.h"
#include "RoeUtil.h"
namespace Roe {
Logfile::Logfile ()
: m_bCreated(false)
, m_colLast(0,0,0,1)
{
}
Logfile::~Logfile ()
{
if (m_bCreated) {
addLine();
write("CORRECT QUITTING", Color::BLUE);
m_tf.pushBack("<br><br>End of logfile</font></body></html>");
m_tf.saveFile();
}
}
void Logfile::createLogfile (const std::string& sLogName) {
m_tf.setFilename(sLogName);
m_tf.pushBack("<html><head><title>Logfile "+sLogName+"</title></head>");
m_tf.pushBack("<body><font face='courier new'>");
m_bCreated = true;
writeTopic ("Logfile", 1);
#ifdef _DEBUG
m_tf.pushBack("<p>BUILD: DEBUG</p>");
#else
m_tf.pushBack("<p>BUILD: RELEASE</p>");
#endif
addLine();
}
void Logfile::writeTopic (const std::string& sTopic, int size) {
if (m_bCreated == false) return;
m_tf.pushBack("<h"+Util::toString(size)+">"+sTopic+"</h"+Util::toString(size)+">");
m_tf.saveFile();
}
void Logfile::write (const std::string& s, Color col) {
if (m_bCreated == false) return;
std::string sNum[3];
sNum[0] = Util::toStringHexNumber(static_cast<int>(col.r * 255.0));
sNum[1] = Util::toStringHexNumber(static_cast<int>(col.g * 255.0));
sNum[2] = Util::toStringHexNumber(static_cast<int>(col.b * 255.0));
for (int i = 0; i < 3; ++i) {
if (sNum[i].length() == 1) {
sNum[i] = "0" + sNum[i];
}
}
m_tf.pushBack("<p style=\"color:#"+sNum[0]+sNum[1]+sNum[2]+"\">"+s+"</p>");
m_tf.saveFile();
}
void Logfile::addLine() {m_tf.pushBack("<hr></hr>");}
} // namespace Roe
| [
"sscholz@mail.uni-paderborn.de"
] | sscholz@mail.uni-paderborn.de |
0490f67c95b1e47c93f76ff67e2fea0fc64a3c68 | 1e5c483f2044741e927396c0b176e9684cbb8052 | /inc/pla.h | 5126309d2659621aafe03e24b02fd4b8be00ff1c | [] | no_license | JCly-rikiu/MLF-hw1-PLA | 7fc1c4224b33d076b457ea74f15c7de9b8f0b31a | 90ff1a70342d9f777960b072a149baeca35a6e96 | refs/heads/master | 2020-08-28T20:00:01.897988 | 2019-11-01T05:52:14 | 2019-11-01T05:52:14 | 217,806,793 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 732 | h | #ifndef _PLA
#define _PLA
#include <vector>
#include <tuple>
#include <random>
#include "vector.h"
std::tuple<Vector, unsigned int> trainPLA(const std::vector<std::tuple<Vector, int>>&, unsigned int);
std::tuple<Vector, unsigned int> trainPLA(const std::vector<std::tuple<Vector, int>>&, unsigned int, unsigned int);
std::tuple<Vector, unsigned int> trainPLA(const std::vector<std::tuple<Vector, int>>&, unsigned int, double);
std::tuple<Vector, unsigned int> trainPLA(const std::vector<std::tuple<Vector, int>>&, unsigned int, unsigned int, double);
Vector trainPocketPLA(const std::vector<std::tuple<Vector, int>>&, unsigned int, unsigned int);
double test(const Vector&, const std::vector<std::tuple<Vector, int>>&);
#endif
| [
"jcly.rikiu@gmail.com"
] | jcly.rikiu@gmail.com |
d1275263b04df205c2320788ba4931cea4f5aff5 | c2b8d47f9464b6f9b1c05603d5ac2e489cc18ed8 | /tinhtongnghichdao.cpp | b3ebaafeed6fcb234cefd6ed3802f6c413363aa6 | [] | no_license | hongkynguyen2018/lap_trinh_05 | c78e82a09eee2a9dee2732a8c72e6687ca822f5c | 4b66b6bb1cbbd2876474484efb22ef18aecc424d | refs/heads/master | 2020-03-28T19:25:17.591074 | 2018-09-16T07:52:47 | 2018-09-16T07:52:47 | 148,974,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | cpp | // sum=1+1/2+...1/n
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int n;
cout<<"nhap 1 so nguyen "<<"\t";
cin>>n;
float sum;
for(float i=1;i<=n;i++){
sum+=(1/i);
}
cout<<"Tong nghich dao "<<sum;
}
| [
"hongkynguyen2018@gmail.com"
] | hongkynguyen2018@gmail.com |
cef62dc39174b50a76536314d174f19165b578d7 | 859416662632ab63cb2fc47fd8e388fd3f084a7e | /HelloWorld/src/TimeTest.cpp | 49de7bda8858819f8ab11ab272f99962799bdaa7 | [] | no_license | MavenPOC/HelloWorldMaven | 3f16c32e0bbd386bed318ea8e1f0a6e4a91845d6 | bfe82565ecd7c4225667a0fa2bf70c1f13290abb | refs/heads/master | 2020-04-05T14:03:03.901168 | 2016-03-01T20:23:00 | 2016-03-01T20:23:00 | 40,592,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 312 | cpp | /*
* TimeTest.cpp
*
* Created on: Dec 18, 2015
* Author: ashmkapo
*/
#include "Time.h"
#include "TimeTest.h"
using namespace CppUnit;
void TimeTest::runTest() {
Time t1(10, 50, 59);
Time t2(10, 50, 59);
bool t3 = true;
CPPUNIT_ASSERT_EQUAL(t1.equals(t2), t3);
}
| [
"ashmkapo@ASHMKAPO-IN.in.oracle.com"
] | ashmkapo@ASHMKAPO-IN.in.oracle.com |
e07a6b1761e0f51a477c5051a6c56ec0abb07353 | b39a7f9355d6cc86d11d2a3ec9afc58bc9fa95dd | /PB14210151_PB14209010/hw4.cpp | a3927bccb5f7e222ff97b4fdaa1986632fb4c058 | [] | no_license | HopeChanger/homework4 | 7a7a430c50c9a4cfc5ee2d755d9180385c45580f | 5cc08f2d20ab8fd017e5e96cf2390f3e49f1102c | refs/heads/master | 2021-08-22T22:34:31.920466 | 2017-12-01T13:30:03 | 2017-12-01T13:30:03 | 112,725,773 | 0 | 0 | null | 2017-12-01T10:13:25 | 2017-12-01T10:13:25 | null | UTF-8 | C++ | false | false | 17,874 | cpp | #include"Find_Contours.h"
#define BIN_TH 120
//#define IMG_SHOW
//#define IMPROVE
////////////////////////////////Connected Detection///////////////////////////////////////////////
//图像二值化
int ustc_Threshold(
Mat grayImg,
Mat& binaryImg,
int th)
{
int height = grayImg.rows;
int width = grayImg.cols;
uchar* data = grayImg.data;
uchar* Bdata = binaryImg.data;
//生成比较数组
uchar* COMP = new uchar[256];
int i = 0;
for (; i < th; i++)
{
COMP[i] = 0;
}
for (; i < 256; i++)
{
COMP[i] = 1;
}
//遍历图像
for (int i_row = 0; i_row < height; i_row++)
{
int temp_width = width - 3;
int j_col = 0;
int mult = i_row * width;
for (; j_col < temp_width; j_col += 4)
{
int indx = mult + j_col;
Bdata[indx] = COMP[data[indx]];
Bdata[indx + 1] = COMP[data[indx + 1]];
Bdata[indx + 2] = COMP[data[indx + 2]];
Bdata[indx + 3] = COMP[data[indx + 3]];
}
for (; j_col < width; j_col++)
{
int indx = mult + j_col;
Bdata[indx] = COMP[data[indx]];
}
}
return MY_OK;
}
////////////////////////////////////////by Lin Zhixian/////////////////////////////////////////////////////
int label_to_min(int* &label_connection_table, int label) {
int label_tmp = label;
int label_pre = label_connection_table[label];
while (label_pre != 0) {
label_tmp = label_pre;
label_pre = label_connection_table[label_tmp];
}
return label_tmp;
}
// the value in curr_pos is already changed to min_new
void set_to_min(int* &label_connection_table, int curr_pos, int min_old, int min_new, int curr_max) {
int i;
//int min_new = label_connection_table[pos_start]; // if it hasn't changed yet
for (i = curr_pos + 1; i <= curr_max; i++) {
if (min_old == label_connection_table[i]) {
label_connection_table[i] = min_new;
}
}
}
bool labelImg_update_round2(Mat labelImg, int* &label_connection_table) {
int width = labelImg.cols;
int height = labelImg.rows;
int last_pixel = width * height - 1;
int curr_pos = last_pixel;
int label_final_tmp = 0;
while (curr_pos >= 0) {
label_final_tmp = label_connection_table[((int *)labelImg.data)[curr_pos]];
if (label_final_tmp == 0) {
label_final_tmp = ((int *)labelImg.data)[curr_pos];
}
((int *)labelImg.data)[curr_pos] = label_final_tmp;
curr_pos--;
}
return true;
}
// case 0: increase_curr_max and set the pixel to label curr_max; no operation needed for label_connection_table
// after this function, () is needed
bool MergeLabels(int* &label_connection_table, int label_low, int label_high, int curr_max) {
// no need to merge, becase they are the same.
if (label_low == label_high) {
return false;
}
int label_tmp = 0;
if (label_low > label_high) {
label_tmp = label_high;
label_high = label_low;
label_low = label_tmp;
}
int label_low_min = label_to_min(label_connection_table, label_low);
int label_old = label_connection_table[label_high];
// no need to update
if (label_old == label_low_min) {
return false;
}
// labels following label_high may have connections with label_high, they should be updated to label_low_min too
set_to_min(label_connection_table, label_high, label_high, label_low_min, curr_max);
if (label_old == 0) {
label_connection_table[label_high] = label_low_min;
}
else { // already has connection with another label, we should refresh the connection recursively
if (label_old > label_low_min) {
label_connection_table[label_high] = label_low_min;
label_connection_table[label_old] = label_low_min;
// labels following label_high may have connections with label_old, they should be updated to label_low_min too
set_to_min(label_connection_table, label_old, label_old, label_low_min, curr_max);
}
else { // label_old <= label_low_min
label_connection_table[label_low_min] = label_old;
// update previous label_low_min to label_old
set_to_min(label_connection_table, label_low_min, label_low_min, label_old, curr_max);
}
}
return true;
}
/////////////////////////////////////////////////////////////////////////////////////////////
//连通域标记
int ustc_ConnectedComponentLabeling(
Mat grayImg, //grayImg:用来进行连通域分析的目标图,8UC1
Mat& labelImg, //labelImg:用来存储标记结果的图像,CV_32SC1,尺寸与grayImg一致
int bin_th) //bin_th:用来对灰度图进行二值化的阈值
{
////////////////////////////参数防御///////////////////////////////////////
//图片传入成功与否判定
if (NULL == grayImg.data || NULL == labelImg.data)
{
std::cout << "ERROR: image is NULL" << std::endl;
return MY_FAIL;
}
//阈值是否合适
if (bin_th <= 0 || bin_th >= 255)
{
std::cout << "ERROR: th is abnormal." << std::endl;
return MY_FAIL;
}
int height = grayImg.rows;
int width = grayImg.cols;
int channel = grayImg.channels();
int Lchannel = labelImg.channels();
//两幅图片大小是否一致
if (height != labelImg.rows || width != labelImg.cols)
{
std::cout << "ERROR: the size of two image is not match" << std::endl;
return MY_FAIL;
}
//通道数是否合法
if (channel != 1 || Lchannel != 1)
{
std::cout << "ERROR: channel != 1" << std::endl;
return MY_FAIL;
}
//////////////////////图像二值化///////////////////////////////////////////
Mat binaryImg(height, width, CV_8UC1);
if (MY_FAIL == ustc_Threshold(grayImg, binaryImg, bin_th))
{
std::cout << "ERROR: ustc_Threshold failed" << std::endl;
return MY_FAIL;
}
//////////////////////二值图像扩充边缘/////////////////////////////////////
Mat Bin_Img(height + 2, width + 2, CV_8UC1);
Mat Label_Img(height + 2, width + 2, CV_32SC1);
copyMakeBorder(binaryImg, Bin_Img, 1, 1, 1, 1, BORDER_CONSTANT, 0);
copyMakeBorder(labelImg, Label_Img, 1, 1, 1, 1, BORDER_CONSTANT, 0);
Label_Img.setTo(0);
///////////////////////连通域查找第一次遍历////////////////////////////////
int len = width * height / 4;
int* Label = new int[len];
memset(Label, 0, sizeof(int) * len);
int curr_max = 0;
int width_plus = width + 2;
int height_plus = height + 2;
for (int i_row = 1; i_row <= height; i_row++)
{
int row_offset = i_row * width_plus;
for (int j_col = 1; j_col <= width; j_col++)
{
int indx = row_offset + j_col;
if (Bin_Img.data[indx])
{
int c1 = Bin_Img.data[indx - 1];
int c2 = Bin_Img.data[indx - 1 - width_plus];
int c3 = Bin_Img.data[indx - width_plus];
int c4 = Bin_Img.data[indx - width_plus + 1];
int result = c1 + (c2 << 1) + (c3 << 2) + (c4 << 3);
int label_low = 0;
int label_high = 0;
switch (result)
{
case 0:
curr_max++;
((int *)(Label_Img.data))[indx] = curr_max;
break;
case 1:
case 3:
case 5:
case 7:
case 13:
case 15:
((int *)(Label_Img.data))[indx] = ((int *)(Label_Img.data))[indx - 1];
break;
case 2:
case 6:
case 14:
((int *)(Label_Img.data))[indx] = ((int *)(Label_Img.data))[indx - 1 - width_plus];
break;
case 12:
case 4:
((int *)(Label_Img.data))[indx] = ((int *)(Label_Img.data))[indx - width_plus];
break;
case 8:
((int *)(Label_Img.data))[indx] = ((int *)(Label_Img.data))[indx - width_plus + 1];
break;
case 9:
label_low = ((int *)(Label_Img.data))[indx - 1];
label_high = ((int *)(Label_Img.data))[indx - width_plus + 1];
#ifdef COMPARE
if (label_low > label_high)
{
int temp = label_low;
label_low = label_high;
label_high = temp;
}
#endif
((int *)(Label_Img.data))[indx] = label_low;
MergeLabels(Label, label_low, label_high, curr_max);
break;
case 10:
case 11:
label_low = ((int *)(Label_Img.data))[indx - width_plus - 1];
label_high = ((int *)(Label_Img.data))[indx - width_plus + 1];
#ifdef COMPARE
if (label_low > label_high)
{
int temp = label_low;
label_low = label_high;
label_high = temp;
}
#endif
((int *)(Label_Img.data))[indx] = label_low;
MergeLabels(Label, label_low, label_high, curr_max);
break;
}
}
}
}
////////////////////////去除label图像边缘//////////////////////////////////
Mat curr_labelImg(height, width, CV_32SC1);
curr_labelImg = Label_Img(Rect(1, 1, width, height)).clone();
/////////////////////////第二次图像遍历////////////////////////////////////
labelImg_update_round2(curr_labelImg, Label);
labelImg = curr_labelImg;
#ifdef IMG_SHOW
//连通域标记图
Mat showImg(height, width, CV_8UC1);
showImg.setTo(0);
for (int i_row = 0; i_row < height; i_row++)
{
int row_offset = i_row * width;
for (int j_col = 0; j_col < width; j_col++)
{
int indx = row_offset + j_col;
int pixel = ((int *)curr_labelImg.data)[indx];
if (pixel)
{
showImg.data[indx] = (pixel * 50) % 255;
}
}
}
//二值化原图
Mat bin_grayImg(height, width, CV_8UC1);
bin_grayImg.setTo(0);
for (int i_row = 0; i_row < height; i_row++)
{
int row_offset = i_row * width;
for (int j_col = 0; j_col < width; j_col++)
{
int indx = row_offset + j_col;
int pixel = grayImg.data[indx];
if (pixel >= bin_th)
{
bin_grayImg.data[indx] = 255;
}
}
}
//imwrite("F:/大四资料/软工/测试图片/grayImg/7-1.png", showImg);
imwrite("F:/大四资料/软工/测试图片/grayImg/7-2.png", bin_grayImg);
//cv::imshow("LabelImg", showImg);
//cv::imshow("binaryImg", bin_grayImg);
//cv::waitKey(0);
#endif //IMG_SHOW
#ifdef DEBUG
for (int i_row = 1; i_row < height; i_row++)
{
int row_offset = i_row * width;
for (int j_col = 1; j_col < width; j_col++)
{
int indx = row_offset + j_col;
int curr_label = ((int *)LabelImg.data)[indx];
if (curr_label >= 40 && curr_label < 49)
{
cout << ((int *)LabelImg.data)[indx] << endl;
}
}
}
cout << "done" << endl;
#endif // DEBUG
return MY_OK;
}
///////////////////////////////////////end of Connected Detection////////////////////////////////////////////////////
// get NeighborIndex 0-7, return -1 if not neighbored
// NeighborIndex matrix
// 0 1 2
// 7 3
// 6 5 4
// difference matrix
// (-1, -1) ( 0, -1) ( 1, -1)
// (-1, 0) ( 0, 0) ( 1, 0)
// (-1, 1) ( 0, 1) ( 1, 1)
// convert to value matrix:
// 0 10 20
// 1 21
// 2 12 22
int Position2NeighborIndex(cv::Point destPt, cv::Point centerPt) {
int index = 0;
// for the difference (x, y), use 10x+y+11 as the switch_on value
int x = destPt.x - centerPt.x;
int y = destPt.y - centerPt.y;
int value = 10 * x + y + 11;
switch (value)
{
case 0:
return 0;
case 10:
return 1;
case 20:
return 2;
case 21:
return 3;
case 22:
return 4;
case 12:
return 5;
case 2:
return 6;
case 1:
return 7;
default:
// illegal value, the destPt is not an 8-neighbored point of the centerPt
return -1;
}
return index;
}
// store point value to destPt
// NeighborIndex 0-7, -1 if not neighbored
// NeighborIndex matrix
// 0 1 2
// 7 3
// 6 5 4
// difference matrix
// (-1, -1) ( 0, -1) ( 1, -1)
// (-1, 0) ( 0, 0) ( 1, 0)
// (-1, 1) ( 0, 1) ( 1, 1)
bool NeighborIndex2Position(Point &destPt, Point centerPt, int index)
{
int center_x = centerPt.x;
int center_y = centerPt.y;
switch (index)
{
case 0:
destPt.x = center_x - 1;
destPt.y = center_y - 1;
return true;
case 1:
destPt.x = center_x;
destPt.y = center_y - 1;
return true;
case 2:
destPt.x = center_x + 1;
destPt.y = center_y - 1;
return true;
case 3:
destPt.x = center_x + 1;
destPt.y = center_y;
return true;
case 4:
destPt.x = center_x + 1;
destPt.y = center_y + 1;
return true;
case 5:
destPt.x = center_x;
destPt.y = center_y + 1;
return true;
case 6:
destPt.x = center_x - 1;
destPt.y = center_y + 1;
return true;
case 7:
destPt.x = center_x - 1;
destPt.y = center_y;
return true;
default:
return false;
}
}
//function to judge the point is edge or not
bool IsEdge(Mat Label_Img, Point curr_point)
{
int x = curr_point.x;
int y = curr_point.y;
int width = Label_Img.cols;
int height = Label_Img.rows;
int index = y * width + x;
int p0 = ((int *)Label_Img.data)[index];
if (!p0)
{
return false;
}
int p1 = ((int *)Label_Img.data)[index - width]; //up
int p2 = ((int *)Label_Img.data)[index - 1]; //left
int p3 = ((int *)Label_Img.data)[index + 1]; //right
int p4 = ((int *)Label_Img.data)[index + width]; //down
if (!p1)
{
return true;
}
if (!p2)
{
return true;
}
if (!p3)
{
return true;
}
if (!p4)
{
return true;
}
return false;
}
#ifdef IMPROVE
//function to save the edge of connected
void SaveEdge(Point edge_point, int &last_row, int &first_col, int &last_col)
{
int x = edge_point.x;
int y = edge_point.y;
last_row = (y > last_row) ? y : last_row;
first_col = (x < first_col) ? x : first_col;
last_col = (x > last_col) ? x : last_col;
}
// function to remove the label -- improved
bool RemoveLabel_0(Mat &Label_Img, int first_row, int last_row, int first_col, int last_col, int label)
{
int width = Label_Img.cols;
int height = Label_Img.rows;
for (int i_row = first_row; i_row <= last_row; i_row++)
{
int row_offset = i_row * width;
for (int j_col = first_col; j_col <= last_col; j_col++)
{
int index = row_offset + j_col;
if (label == ((int *)Label_Img.data)[index])
{
((int *)Label_Img.data)[index] = 0;
}
}
}
return true;
}
#else
// function to remove the label
bool RemoveLabel(Mat &Label_Img, Point first_point, int label)
{
int width = Label_Img.cols;
int height = Label_Img.rows;
for (int i_row = first_point.y; i_row < height; i_row++)
{
int row_offset = i_row * width;
for (int j_col = 0; j_col < width; j_col++)
{
int index = row_offset + j_col;
if (label == ((int *)Label_Img.data)[index])
{
((int *)Label_Img.data)[index] = 0;
}
}
}
return true;
}
#endif // IMPROVE
//function to find next point
int FindNextPoint(Mat Label_Img, Point curr_point, int start_index, Point &next_point)
{
int width = Label_Img.cols;
int height = Label_Img.rows;
Point point_temp;
for (int i = start_index + 1; i <= 7; i++)
{
NeighborIndex2Position(point_temp, curr_point, i);
if (IsEdge(Label_Img, point_temp))
{
next_point = point_temp;
return MY_OK;
}
}
for (int i = 0; i < start_index; i++)
{
NeighborIndex2Position(point_temp, curr_point, i);
if (IsEdge(Label_Img, point_temp))
{
next_point = point_temp;
return MY_OK;
}
}
NeighborIndex2Position(point_temp, curr_point, start_index);
if (IsEdge(Label_Img, point_temp))
{
next_point = point_temp;
return MY_OK;
}
return MY_FAIL;
}
//function to find contours
int USTC_Find_Contours(
Mat binaryImg, //二值图像,8UC1
vector < vector < cv::Point >>& contours)//轮廓存储向量
{
if (NULL == binaryImg.data)
{
cout << "imag is NULL" << endl;
return MY_FAIL;
}
//clear the vector
contours.clear();
vector<Point> curr_contour;
//size of image
int height = binaryImg.rows;
int width = binaryImg.cols;
//////////////////////////////connected detection///////////////////////////////////////
Mat labelImg(height, width, CV_32SC1); //define an image to store the label
ustc_ConnectedComponentLabeling(binaryImg, labelImg, BIN_TH);
///////////////////////////////extend border////////////////////////////////////////////////////////
Mat Label_Img(height + 2, width + 2, CV_32SC1);
copyMakeBorder(labelImg, Label_Img, 1, 1, 1, 1, BORDER_CONSTANT, 0);
//////////////////////////////find contours///////////////////////////////////////////
int width_plus = width + 2;
for (int i_row = 1; i_row <= height; i_row++)
{
int row_offset = i_row * width_plus;
for (int j_col = 1; j_col <= width; j_col++)
{
int index = row_offset + j_col;
int label = ((int *)Label_Img.data)[index];
if (label)
{
Point last_point;
Point curr_point;
Point next_point;
Point first_point = Point(j_col, i_row);
Point original_point; //the position of original image
#ifdef IMPROVE
int first_col = width;
int last_col = 0;
int last_row = 0;
#endif // IMPROVE
if (-1 == FindNextPoint(Label_Img, first_point, 1, curr_point))
{
//contain only one point
((int *)Label_Img.data)[index] = 0;
break;
}//end if
else
{
original_point = first_point - Point(1, 1);
#ifdef IMPROVE
SaveEdge(original_point, last_row, first_col, last_col);
#endif // IMPROVE
curr_contour.push_back(original_point);
last_point = first_point;
while (1)
{
original_point = curr_point - Point(1, 1);
#ifdef IMPROVE
SaveEdge(original_point, last_row, first_col, last_col);
#endif // IMPROVE
curr_contour.push_back(original_point);
int start_index = Position2NeighborIndex(last_point, curr_point);
FindNextPoint(Label_Img, curr_point, start_index, next_point);
if (curr_point == first_point)
{
int index_temp = Position2NeighborIndex(next_point, curr_point);
if (index_temp != 6)
{
break;
}
}
last_point = curr_point;
curr_point = next_point;
}//end while
}//end else
contours.push_back(curr_contour);
#ifdef IMPROVE
RemoveLabel_0(Label_Img, first_point.y, last_row, first_col, last_col, label);
#else
RemoveLabel(Label_Img, first_point, label);
#endif // IMPROVE
}//end if
}//end for cols
}//end for rows
#ifdef IMG_SHOW
Mat contour_Img(height, width, CV_8UC1);
//contour_Img = binaryImg.clone();
contour_Img.setTo(255);
int Len = contours.size();
for (int i = 0; i < Len; i++)
{
int len = contours[i].size();
for (int j = 0; j < len; j++)
{
int index = contours[i][j].y * width + contours[i][j].x;
contour_Img.data[index] = 0;
}
}
namedWindow("contour", 0);
imshow("contour", contour_Img);
waitKey();
#endif // IMG_SHOW
return MY_OK;
}
| [
"noreply@github.com"
] | noreply@github.com |
f5b4d22db68dcd77a142f0307fc2ac7955068a49 | d9f67124079d5dc08de5038fb6ce1106ab2f6284 | /SoftEngRend/Reservation.h | ae455a951f56b5d18da005896bbedc4101b48790 | [] | no_license | PavlidisE/SoftEngRend | 8861a53d86be745a84ca1842dc3093691f26abea | 7cabb1886b587ccc8eb9f341fd804dfb0b9ba7e0 | refs/heads/master | 2022-03-14T18:44:23.964741 | 2019-06-03T11:08:38 | 2019-06-03T11:08:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | h | #ifndef RESERVATION_H
#define RESERVATION_H
#include "User.h"
#include "Store.h"
class Reservation
{
private:
DateTime Date_Reserv;
int numOfPeople;
int numOfParking;
enum status { Pending = 0, Accepted = 1, Completed = 2 };
enum status sts;
User* user;
Store* store;
public:
Reservation(DateTime datetime, int numOfPeople, int numOfPark, Store store, User users);
virtual ~Reservation();
Reservation getReservation();
void updateReservation();
void deleteReservation();
DateTime getDateTime();
void setDateTime(DateTime DTime);
User& getUser();
void setUser(User User);
Store getStore();
void setStore(Store Store);
int getNumOfPeople();
void setNumOfPeople(int numOfPeople);
int getNumOfParking();
void setNumOfParking(int numOfParking);
void setStatus(enum status);
};
#endif | [
"evrispa@gmail.com"
] | evrispa@gmail.com |
54c390447c6a67ce71f857441f0cd64db3d47a1a | a62bdba31dc65c03a2ae00d9842e1b0e45ef92c2 | /TGUI/tests/Texture.cpp | 22b7815b92c9316303dcace20af54bad822f77fb | [
"Zlib"
] | permissive | StarikTenger/libraries | 2dcec05924987f24caaa504e3b0ecf5953d4c347 | 28b6c4e012cdbb4fa790620bfb27a2a35610f4d4 | refs/heads/master | 2021-12-14T23:51:17.082531 | 2021-12-04T19:09:43 | 2021-12-04T19:09:43 | 186,280,405 | 0 | 1 | null | 2021-12-04T19:09:44 | 2019-05-12T16:50:29 | C | UTF-8 | C++ | false | false | 9,262 | cpp | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// TGUI - Texus' Graphical User Interface
// Copyright (C) 2012-2021 Bruno Van de Velde (vdv_b@tgui.eu)
//
// 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.
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "Tests.hpp"
#include <TGUI/Exception.hpp>
#include <TGUI/Texture.hpp>
#include <TGUI/TextureManager.hpp>
TEST_CASE("[Texture]")
{
SECTION("Loading")
{
SECTION("Failure")
{
tgui::Texture texture;
SECTION("No image")
{
REQUIRE_NOTHROW(tgui::Texture());
}
SECTION("Image not found")
{
REQUIRE_THROWS_AS(tgui::Texture("NonExistent.png"), tgui::Exception);
REQUIRE_THROWS_AS(texture.load("NonExistent.png"), tgui::Exception);
}
REQUIRE(texture.getId() == "");
REQUIRE(texture.getData() == nullptr);
REQUIRE(texture.getImageSize() == tgui::Vector2u(0, 0));
REQUIRE(texture.getMiddleRect() == tgui::UIntRect());
}
SECTION("Success")
{
SECTION("constructor")
{
REQUIRE_NOTHROW(tgui::Texture("resources/image.png"));
tgui::Texture texture{"resources/image.png"};
REQUIRE(texture.getId() == "resources/image.png");
REQUIRE(texture.getData() != nullptr);
REQUIRE(texture.getData()->backendTexture != nullptr);
REQUIRE(texture.getPartRect() == tgui::UIntRect(0, 0, 50, 50));
REQUIRE(texture.getImageSize() == tgui::Vector2u(50, 50));
REQUIRE(texture.getMiddleRect() == tgui::UIntRect(0, 0, 50, 50));
REQUIRE(texture.isSmooth() == true);
}
SECTION("load")
{
tgui::Texture texture;
texture.load("resources/image.png", {10, 5, 40, 30}, {6, 5, 28, 20});
REQUIRE(texture.getId() == "resources/image.png");
REQUIRE(texture.getData() != nullptr);
REQUIRE(texture.getData()->backendTexture != nullptr);
REQUIRE(texture.getPartRect() == tgui::UIntRect(10, 5, 40, 30));
REQUIRE(texture.getImageSize() == tgui::Vector2u(40, 30));
REQUIRE(texture.getMiddleRect() == tgui::UIntRect(6, 5, 28, 20));
REQUIRE(texture.isSmooth() == true);
}
}
}
SECTION("Copy and destruct")
{
unsigned int copyCount = 0;
unsigned int destructCount = 0;
{
tgui::Texture texture{"resources/image.png", {}, {10, 0, 30, 50}, false};
texture.setCopyCallback([&](std::shared_ptr<tgui::TextureData> data)
{
copyCount++;
tgui::TextureManager::copyTexture(data);
}
);
texture.setDestructCallback([&](std::shared_ptr<tgui::TextureData> data)
{
destructCount++;
tgui::TextureManager::removeTexture(data);
}
);
REQUIRE(texture.getId() == "resources/image.png");
REQUIRE(texture.getData() != nullptr);
REQUIRE(texture.getData()->backendTexture != nullptr);
REQUIRE(texture.getPartRect() == tgui::UIntRect(0, 0, 50, 50));
REQUIRE(texture.getImageSize() == tgui::Vector2u(50, 50));
REQUIRE(texture.getMiddleRect() == tgui::UIntRect(10, 0, 30, 50));
REQUIRE(texture.isSmooth() == false);
REQUIRE(copyCount == 0);
REQUIRE(destructCount == 0);
{
tgui::Texture textureCopy{texture};
REQUIRE(textureCopy.getId() == "resources/image.png");
REQUIRE(textureCopy.getData() != nullptr);
REQUIRE(textureCopy.getData()->backendTexture != nullptr);
REQUIRE(textureCopy.getPartRect() == tgui::UIntRect(0, 0, 50, 50));
REQUIRE(textureCopy.getImageSize() == tgui::Vector2u(50, 50));
REQUIRE(textureCopy.getMiddleRect() == tgui::UIntRect(10, 0, 30, 50));
REQUIRE(textureCopy.isSmooth() == false);
REQUIRE(copyCount == 1);
REQUIRE(destructCount == 0);
}
REQUIRE(copyCount == 1);
REQUIRE(destructCount == 1);
{
tgui::Texture textureCopy;
REQUIRE(textureCopy.getData() == nullptr);
textureCopy = texture;
REQUIRE(textureCopy.getId() == "resources/image.png");
REQUIRE(textureCopy.getData() != nullptr);
REQUIRE(textureCopy.getData()->backendTexture != nullptr);
REQUIRE(textureCopy.getPartRect() == tgui::UIntRect(0, 0, 50, 50));
REQUIRE(textureCopy.getImageSize() == tgui::Vector2u(50, 50));
REQUIRE(textureCopy.getMiddleRect() == tgui::UIntRect(10, 0, 30, 50));
REQUIRE(textureCopy.isSmooth() == false);
REQUIRE(copyCount == 2);
REQUIRE(destructCount == 1);
}
REQUIRE(copyCount == 2);
REQUIRE(destructCount == 2);
}
REQUIRE(copyCount == 2);
REQUIRE(destructCount == 3);
}
SECTION("MiddleRect")
{
tgui::Texture texture;
REQUIRE(texture.getMiddleRect() == tgui::UIntRect());
texture.load("resources/image.png");
REQUIRE(texture.getMiddleRect() == tgui::UIntRect(0, 0, 50, 50));
}
SECTION("Smooth")
{
// Textures are smoothed by default
REQUIRE(tgui::Texture::getDefaultSmooth());
REQUIRE(tgui::Texture("resources/image.png").isSmooth());
tgui::Texture::setDefaultSmooth(false);
REQUIRE(!tgui::Texture::getDefaultSmooth());
REQUIRE(!tgui::Texture("resources/image.png").isSmooth());
tgui::Texture::setDefaultSmooth(true);
REQUIRE(tgui::Texture::getDefaultSmooth());
REQUIRE(tgui::Texture("resources/image.png").isSmooth());
}
SECTION("Color")
{
tgui::Texture texture{"resources/image.png"};
REQUIRE(texture.getColor() == tgui::Color::White);
texture.setColor("red");
REQUIRE(texture.getColor() == tgui::Color::Red);
}
#if TGUI_HAS_BACKEND_SFML_GRAPHICS
if (std::dynamic_pointer_cast<tgui::BackendRendererSFML>(tgui::getBackend()->getRenderer()))
{
SECTION("Shader")
{
tgui::Texture texture{"resources/image.png"};
REQUIRE(!texture.getShader());
sf::Shader shader;
texture.setShader(&shader);
REQUIRE(texture.getShader() == &shader);
texture.setShader(nullptr);
REQUIRE(!texture.getShader());
}
}
#endif
SECTION("BackendTextureLoader")
{
unsigned int count = 0;
auto oldBackendTextureLoader = tgui::Texture::getBackendTextureLoader();
auto func = [&](tgui::BackendTexture&, const tgui::String& filename, bool) {
REQUIRE(filename == "resources/image.png");
count++;
return true;
};
tgui::Texture::setBackendTextureLoader(func);
REQUIRE_NOTHROW(tgui::Texture{"resources/image.png"});
REQUIRE(count == 1);
tgui::Texture::setBackendTextureLoader(oldBackendTextureLoader);
}
SECTION("TextureLoader")
{
unsigned int count = 0;
auto oldTextureLoader = tgui::Texture::getTextureLoader();
auto func = [&](tgui::Texture& texture, const tgui::String& filename, bool smooth) {
REQUIRE(filename == "resources/image.png");
auto data = std::make_shared<tgui::TextureData>();
data->backendTexture = std::make_shared<tgui::BackendTexture>();
texture.getBackendTextureLoader()(*data->backendTexture, filename, smooth);
count++;
return data;
};
tgui::Texture::setTextureLoader(func);
REQUIRE_NOTHROW(tgui::Texture{"resources/image.png"});
REQUIRE(count == 1);
tgui::Texture::setTextureLoader(oldTextureLoader);
}
}
| [
"71353456+Robby-the-paladin@users.noreply.github.com"
] | 71353456+Robby-the-paladin@users.noreply.github.com |
9fed3f8424d66bad492ee0f44992e75d5dd2ccdb | 58f46a28fc1b58f9cd4904c591b415c29ab2842f | /chromium-courgette-redacted-29.0.1547.57/chrome/renderer/extensions/extension_helper.cc | 2dc8dc6d6e501c7d5d5c7f719826ff31243d0a92 | [
"BSD-3-Clause"
] | permissive | bbmjja8123/chromium-1 | e739ef69d176c636d461e44d54ec66d11ed48f96 | 2a46d8855c48acd51dafc475be7a56420a716477 | refs/heads/master | 2021-01-16T17:50:45.184775 | 2015-03-20T18:38:11 | 2015-03-20T18:42:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,566 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/extensions/extension_helper.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/json/json_string_value_serializer.h"
#include "base/lazy_instance.h"
#include "base/message_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension_messages.h"
#include "chrome/common/render_messages.h"
#include "chrome/common/url_constants.h"
#include "chrome/renderer/extensions/chrome_v8_context.h"
#include "chrome/renderer/extensions/console.h"
#include "chrome/renderer/extensions/dispatcher.h"
#include "chrome/renderer/extensions/miscellaneous_bindings.h"
#include "chrome/renderer/extensions/user_script_scheduler.h"
#include "chrome/renderer/extensions/user_script_slave.h"
#include "chrome/renderer/web_apps.h"
#include "content/public/renderer/render_view.h"
#include "content/public/renderer/render_view_visitor.h"
#include "extensions/common/constants.h"
#include "third_party/WebKit/public/platform/WebURLRequest.h"
#include "third_party/WebKit/public/web/WebConsoleMessage.h"
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebFrame.h"
#include "third_party/WebKit/public/web/WebScopedUserGesture.h"
#include "third_party/WebKit/public/web/WebView.h"
using content::ConsoleMessageLevel;
using WebKit::WebConsoleMessage;
using WebKit::WebDataSource;
using WebKit::WebFrame;
using WebKit::WebURLRequest;
using WebKit::WebScopedUserGesture;
using WebKit::WebView;
namespace extensions {
namespace {
// Keeps a mapping from the frame pointer to a UserScriptScheduler object.
// We store this mapping per process, because a frame can jump from one
// document to another with adoptNode, and so having the object be a
// RenderViewObserver means it might miss some notifications after it moves.
typedef std::map<WebFrame*, UserScriptScheduler*> SchedulerMap;
static base::LazyInstance<SchedulerMap> g_schedulers =
LAZY_INSTANCE_INITIALIZER;
// A RenderViewVisitor class that iterates through the set of available
// views, looking for a view of the given type, in the given browser window
// and within the given extension.
// Used to accumulate the list of views associated with an extension.
class ViewAccumulator : public content::RenderViewVisitor {
public:
ViewAccumulator(const std::string& extension_id,
int browser_window_id,
ViewType view_type)
: extension_id_(extension_id),
browser_window_id_(browser_window_id),
view_type_(view_type) {
}
std::vector<content::RenderView*> views() { return views_; }
// Returns false to terminate the iteration.
virtual bool Visit(content::RenderView* render_view) OVERRIDE {
ExtensionHelper* helper = ExtensionHelper::Get(render_view);
if (!ViewTypeMatches(helper->view_type(), view_type_))
return true;
GURL url = render_view->GetWebView()->mainFrame()->document().url();
if (!url.SchemeIs(kExtensionScheme))
return true;
const std::string& extension_id = url.host();
if (extension_id != extension_id_)
return true;
if (browser_window_id_ != extension_misc::kUnknownWindowId &&
helper->browser_window_id() != browser_window_id_) {
return true;
}
views_.push_back(render_view);
if (view_type_ == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE)
return false; // There can be only one...
return true;
}
private:
// Returns true if |type| "isa" |match|.
static bool ViewTypeMatches(ViewType type, ViewType match) {
if (type == match)
return true;
// INVALID means match all.
if (match == VIEW_TYPE_INVALID)
return true;
return false;
}
std::string extension_id_;
int browser_window_id_;
ViewType view_type_;
std::vector<content::RenderView*> views_;
};
} // namespace
// static
std::vector<content::RenderView*> ExtensionHelper::GetExtensionViews(
const std::string& extension_id,
int browser_window_id,
ViewType view_type) {
ViewAccumulator accumulator(extension_id, browser_window_id, view_type);
content::RenderView::ForEach(&accumulator);
return accumulator.views();
}
// static
content::RenderView* ExtensionHelper::GetBackgroundPage(
const std::string& extension_id) {
ViewAccumulator accumulator(extension_id, extension_misc::kUnknownWindowId,
VIEW_TYPE_EXTENSION_BACKGROUND_PAGE);
content::RenderView::ForEach(&accumulator);
CHECK_LE(accumulator.views().size(), 1u);
if (accumulator.views().size() == 0)
return NULL;
return accumulator.views()[0];
}
ExtensionHelper::ExtensionHelper(content::RenderView* render_view,
Dispatcher* dispatcher)
: content::RenderViewObserver(render_view),
content::RenderViewObserverTracker<ExtensionHelper>(render_view),
dispatcher_(dispatcher),
pending_app_icon_requests_(0),
view_type_(VIEW_TYPE_INVALID),
tab_id_(-1),
browser_window_id_(-1) {
}
ExtensionHelper::~ExtensionHelper() {
}
bool ExtensionHelper::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ExtensionHelper, message)
IPC_MESSAGE_HANDLER(ExtensionMsg_Response, OnExtensionResponse)
IPC_MESSAGE_HANDLER(ExtensionMsg_MessageInvoke, OnExtensionMessageInvoke)
IPC_MESSAGE_HANDLER(ExtensionMsg_DispatchOnConnect,
OnExtensionDispatchOnConnect)
IPC_MESSAGE_HANDLER(ExtensionMsg_DeliverMessage, OnExtensionDeliverMessage)
IPC_MESSAGE_HANDLER(ExtensionMsg_DispatchOnDisconnect,
OnExtensionDispatchOnDisconnect)
IPC_MESSAGE_HANDLER(ExtensionMsg_ExecuteCode, OnExecuteCode)
IPC_MESSAGE_HANDLER(ExtensionMsg_GetApplicationInfo, OnGetApplicationInfo)
IPC_MESSAGE_HANDLER(ExtensionMsg_SetTabId, OnSetTabId)
IPC_MESSAGE_HANDLER(ExtensionMsg_UpdateBrowserWindowId,
OnUpdateBrowserWindowId)
IPC_MESSAGE_HANDLER(ExtensionMsg_NotifyRenderViewType,
OnNotifyRendererViewType)
IPC_MESSAGE_HANDLER(ExtensionMsg_AddMessageToConsole,
OnAddMessageToConsole)
IPC_MESSAGE_HANDLER(ExtensionMsg_AppWindowClosed,
OnAppWindowClosed);
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void ExtensionHelper::DidFinishDocumentLoad(WebFrame* frame) {
dispatcher_->user_script_slave()->InjectScripts(
frame, UserScript::DOCUMENT_END);
SchedulerMap::iterator i = g_schedulers.Get().find(frame);
if (i != g_schedulers.Get().end())
i->second->DidFinishDocumentLoad();
}
void ExtensionHelper::DidFinishLoad(WebKit::WebFrame* frame) {
SchedulerMap::iterator i = g_schedulers.Get().find(frame);
if (i != g_schedulers.Get().end())
i->second->DidFinishLoad();
}
void ExtensionHelper::DidCreateDocumentElement(WebFrame* frame) {
dispatcher_->user_script_slave()->InjectScripts(
frame, UserScript::DOCUMENT_START);
SchedulerMap::iterator i = g_schedulers.Get().find(frame);
if (i != g_schedulers.Get().end())
i->second->DidCreateDocumentElement();
dispatcher_->DidCreateDocumentElement(frame);
}
void ExtensionHelper::DidStartProvisionalLoad(WebKit::WebFrame* frame) {
SchedulerMap::iterator i = g_schedulers.Get().find(frame);
if (i != g_schedulers.Get().end())
i->second->DidStartProvisionalLoad();
}
void ExtensionHelper::DraggableRegionsChanged(WebKit::WebFrame* frame) {
WebKit::WebVector<WebKit::WebDraggableRegion> webregions =
frame->document().draggableRegions();
std::vector<DraggableRegion> regions;
for (size_t i = 0; i < webregions.size(); ++i) {
DraggableRegion region;
region.bounds = webregions[i].bounds;
region.draggable = webregions[i].draggable;
regions.push_back(region);
}
Send(new ExtensionHostMsg_UpdateDraggableRegions(routing_id(), regions));
}
void ExtensionHelper::FrameDetached(WebFrame* frame) {
// This could be called before DidCreateDataSource, in which case the frame
// won't be in the map.
SchedulerMap::iterator i = g_schedulers.Get().find(frame);
if (i == g_schedulers.Get().end())
return;
delete i->second;
g_schedulers.Get().erase(i);
}
void ExtensionHelper::DidCreateDataSource(WebFrame* frame, WebDataSource* ds) {
// Check first if we created a scheduler for the frame, since this function
// gets called for navigations within the document.
if (g_schedulers.Get().count(frame))
return;
g_schedulers.Get()[frame] = new UserScriptScheduler(frame, dispatcher_);
}
void ExtensionHelper::OnExtensionResponse(int request_id,
bool success,
const base::ListValue& response,
const std::string& error) {
dispatcher_->OnExtensionResponse(request_id,
success,
response,
error);
}
void ExtensionHelper::OnExtensionMessageInvoke(const std::string& extension_id,
const std::string& module_name,
const std::string& function_name,
const base::ListValue& args,
bool user_gesture) {
dispatcher_->InvokeModuleSystemMethod(
render_view(), extension_id, module_name, function_name, args,
user_gesture);
}
void ExtensionHelper::OnExtensionDispatchOnConnect(
int target_port_id,
const std::string& channel_name,
const base::DictionaryValue& source_tab,
const ExtensionMsg_ExternalConnectionInfo& info) {
MiscellaneousBindings::DispatchOnConnect(
dispatcher_->v8_context_set().GetAll(),
target_port_id, channel_name, source_tab,
info.source_id, info.target_id, info.source_url,
render_view());
}
void ExtensionHelper::OnExtensionDeliverMessage(int target_id,
const std::string& message) {
MiscellaneousBindings::DeliverMessage(dispatcher_->v8_context_set().GetAll(),
target_id,
message,
render_view());
}
void ExtensionHelper::OnExtensionDispatchOnDisconnect(
int port_id,
const std::string& error_message) {
MiscellaneousBindings::DispatchOnDisconnect(
dispatcher_->v8_context_set().GetAll(),
port_id, error_message,
render_view());
}
void ExtensionHelper::OnExecuteCode(
const ExtensionMsg_ExecuteCode_Params& params) {
WebView* webview = render_view()->GetWebView();
WebFrame* main_frame = webview->mainFrame();
if (!main_frame) {
ListValue val;
Send(new ExtensionHostMsg_ExecuteCodeFinished(routing_id(),
params.request_id,
"No main frame",
-1,
GURL(std::string()),
val));
return;
}
// chrome.tabs.executeScript() only supports execution in either the top frame
// or all frames. We handle both cases in the top frame.
SchedulerMap::iterator i = g_schedulers.Get().find(main_frame);
if (i != g_schedulers.Get().end())
i->second->ExecuteCode(params);
}
void ExtensionHelper::OnGetApplicationInfo(int page_id) {
WebApplicationInfo app_info;
if (page_id == render_view()->GetPageId()) {
string16 error;
web_apps::ParseWebAppFromWebDocument(
render_view()->GetWebView()->mainFrame(), &app_info, &error);
}
// Prune out any data URLs in the set of icons. The browser process expects
// any icon with a data URL to have originated from a favicon. We don't want
// to decode arbitrary data URLs in the browser process. See
// http://b/issue?id=1162972
for (size_t i = 0; i < app_info.icons.size(); ++i) {
if (app_info.icons[i].url.SchemeIs(chrome::kDataScheme)) {
app_info.icons.erase(app_info.icons.begin() + i);
--i;
}
}
Send(new ExtensionHostMsg_DidGetApplicationInfo(
routing_id(), page_id, app_info));
}
void ExtensionHelper::OnNotifyRendererViewType(ViewType type) {
view_type_ = type;
}
void ExtensionHelper::OnSetTabId(int init_tab_id) {
CHECK_EQ(tab_id_, -1);
CHECK_GE(init_tab_id, 0);
tab_id_ = init_tab_id;
}
void ExtensionHelper::OnUpdateBrowserWindowId(int window_id) {
browser_window_id_ = window_id;
}
void ExtensionHelper::OnAddMessageToConsole(ConsoleMessageLevel level,
const std::string& message) {
console::AddMessage(render_view(), level, message);
}
void ExtensionHelper::OnAppWindowClosed() {
v8::HandleScope scope;
v8::Handle<v8::Context> script_context =
render_view()->GetWebView()->mainFrame()->mainWorldScriptContext();
ChromeV8Context* chrome_v8_context =
dispatcher_->v8_context_set().GetByV8Context(script_context);
if (!chrome_v8_context)
return;
chrome_v8_context->module_system()->CallModuleMethod(
"app.window", "onAppWindowClosed");
}
} // namespace extensions
| [
"Khilan.Gudka@cl.cam.ac.uk"
] | Khilan.Gudka@cl.cam.ac.uk |
1909fbeb90e5d265be722f33b123e7c3e0fcb173 | 6df4d47b5c2f3e63c533b9a368a566a92bfe54d1 | /package/libvirt/tools/header2csv.cpp | 4f319efb50e6267d51356935a6ed423697d44963 | [
"BSD-2-Clause"
] | permissive | hisaboh/minikonoha | a144ea46b0435f6537ade5b8d88b0c91a138b7bc | 1ed725b0704655f13e1932238d0f6c63ca8b75f3 | refs/heads/master | 2021-01-17T07:51:33.659002 | 2012-12-07T06:54:51 | 2012-12-07T06:54:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,359 | cpp | #include <clang/Basic/TargetInfo.h>
#include <clang/AST/ASTConsumer.h>
#include <clang/AST/Decl.h>
#include <clang/AST/DeclGroup.h>
#include <string.h>
#include <clang/Frontend/CompilerInstance.h>
#include <clang/Frontend/CompilerInvocation.h>
#include <clang/Parse/ParseAST.h>
#include <iostream>
struct extractor : public clang::ASTConsumer {
bool HandleTopLevelDecl(clang::DeclGroupRef decls) {
for (auto& decl : decls) {
if (auto const* fd = llvm::dyn_cast<clang::FunctionDecl>(decl)) {
handle_functiondecl(fd);
}
}
return true;
}
private:
void handle_functiondecl(clang::FunctionDecl const* fd) const {
std::string name = fd->getName();
if (strncmp(name.c_str(), "vir", 3) == 0) {
handle_mpi_functiondecl(fd);
}
}
void handle_mpi_functiondecl(clang::FunctionDecl const* fd) const {
std::vector<std::string> data;
data.push_back(fd->getName());
data.push_back(fd->getResultType().getAsString());
for(auto I = fd->param_begin(), E = fd->param_end(); I != E; ++I) {
data.push_back((*I)->getType().getAsString());
}
for(std::vector<std::string>::iterator I = data.begin(), E = data.end();
I != E; ++I) {
llvm::outs() << *I << ", ";
}
llvm::outs() << "\n";
}
};
int main(int argc, char** argv) {
clang::CompilerInstance compiler;
compiler.createDiagnostics(argc, argv);
auto& diag = compiler.getDiagnostics();
auto& invocation = compiler.getInvocation();
clang::CompilerInvocation::CreateFromArgs(invocation, argv + 1, argv + argc, diag);
compiler.setTarget(clang::TargetInfo::CreateTargetInfo(diag, compiler.getTargetOpts()));
compiler.createFileManager();
compiler.createSourceManager(compiler.getFileManager());
compiler.createPreprocessor();
compiler.createASTContext();
compiler.setASTConsumer(new extractor);
//compiler.createSema(false, nullptr);
auto& inputs = compiler.getFrontendOpts().Inputs;
if (inputs.size() > 0) {
compiler.InitializeSourceManager(inputs[0].File);
clang::ParseAST(
compiler.getPreprocessor(),
&compiler.getASTConsumer(),
compiler.getASTContext()
);
}
return 0;
}
| [
"imasahiro9@gmail.com"
] | imasahiro9@gmail.com |
6dbdf8d22f68984904b89884cfeb805c8caacf34 | 2f4a4c043f4377c2eb1cee262b82287aa36b1b96 | /C++Learning/函数或方法返回内存/swap.cpp | 08be04eda7795fb89133f4950eb24b51f8898f1f | [] | no_license | Nexoson/Cplus | b529f74d422856dbcafecaa0b9e32baa2992e0af | 5ac1f7fcc239f507dd52c76ec2b3008861ac4422 | refs/heads/master | 2021-07-30T04:41:47.156233 | 2021-07-26T13:59:49 | 2021-07-26T13:59:49 | 221,011,323 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | #include <iostream>
void swap(int *x, int *y);
int main(){
int a, b;
a =3;
b =5;
swap(&a, &b);
std::cout << "a = " << a << "\n";
std::cout << "b = " << b << "\n";
return 0;
}
void swap(int *x, int *y){
# if 0
int temp;
temp = *x;
*x = *Y;
*y = temp;
# endif // 0
*x ^= *y;
*y ^= *x;
*x ^= *y;
}
| [
"1018458278@qq.com"
] | 1018458278@qq.com |
b9f2453c0a8298e3c13a1543148e4c303eafff7a | 8adb0f2d88d6f67e7c47b5291fc36b9f37508d09 | /src/base58.h | c52977dd8b668fc9ad45e2a1ee8ba305e6ed6dee | [
"MIT"
] | permissive | elliena-bulmer/turbogold | dbdc29748fd22782573e6795868e2ec364649d4d | 23db1ba0ac3dd1beb7e3c8ba6b98fc654506fb1f | refs/heads/master | 2020-03-20T22:30:08.961938 | 2018-06-18T20:22:33 | 2018-06-18T20:22:33 | 137,801,945 | 0 | 0 | null | 2018-06-18T20:17:35 | 2018-06-18T20:17:35 | null | UTF-8 | C++ | false | false | 6,249 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Why base-58 instead of standard base-64 encoding?
// - Don't want 0OIl characters that look the same in some fonts and
// could be used to create visually identical looking account numbers.
// - A string with non-alphanumeric characters is not as easily accepted as an account number.
// - E-mail usually won't line-break if there's no punctuation to break at.
// - Double-clicking selects the whole number as one word if it's all alphanumeric.
//
#ifndef BITCOIN_BASE58_H
#define BITCOIN_BASE58_H
#include "chainparams.h"
#include "pubkey.h"
#include "script.h"
#include <string>
#include <vector>
/**
* Encode a byte sequence as a base58-encoded string.
* pbegin and pend cannot be NULL, unless both are.
*/
std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend);
/**
* Encode a byte vector as a base58-encoded string
*/
std::string EncodeBase58(const std::vector<unsigned char>& vch);
/**
* Decode a base58-encoded string (psz) into a byte vector (vchRet).
* return true if decoding is successful.
* psz cannot be NULL.
*/
bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (str) into a byte vector (vchRet).
* return true if decoding is successful.
*/
bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Encode a byte vector into a base58-encoded string, including checksum
*/
std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn);
/**
* Decode a base58-encoded string (psz) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (str) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Base class for all base58-encoded data
*/
class CBase58Data
{
protected:
// the version byte(s)
std::vector<unsigned char> vchVersion;
// the actually encoded data
typedef std::vector<unsigned char, zero_after_free_allocator<unsigned char> > vector_uchar;
vector_uchar vchData;
CBase58Data();
void SetData(const std::vector<unsigned char> &vchVersionIn, const void* pdata, size_t nSize);
void SetData(const std::vector<unsigned char> &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend);
public:
bool SetString(const char* psz, unsigned int nVersionBytes = 1);
bool SetString(const std::string& str);
std::string ToString() const;
int CompareTo(const CBase58Data& b58) const;
bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; }
bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; }
bool operator>=(const CBase58Data& b58) const { return CompareTo(b58) >= 0; }
bool operator< (const CBase58Data& b58) const { return CompareTo(b58) < 0; }
bool operator> (const CBase58Data& b58) const { return CompareTo(b58) > 0; }
};
/** base58-encoded Turbogold addresses.
* Public-key-hash-addresses have version 0 (or 111 testnet).
* The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
* Script-hash-addresses have version 5 (or 196 testnet).
* The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
*/
class CTurbogoldAddress : public CBase58Data {
public:
bool Set(const CKeyID &id);
bool Set(const CScriptID &id);
bool Set(const CTxDestination &dest);
bool IsValid() const;
CTurbogoldAddress() {}
CTurbogoldAddress(const CTxDestination &dest) { Set(dest); }
CTurbogoldAddress(const std::string& strAddress) { SetString(strAddress); }
CTurbogoldAddress(const char* pszAddress) { SetString(pszAddress); }
CTxDestination Get() const;
bool GetKeyID(CKeyID &keyID) const;
bool IsScript() const;
};
/**
* A base58-encoded secret key
*/
class CTurbogoldSecret : public CBase58Data
{
public:
void SetKey(const CKey& vchSecret);
CKey GetKey();
bool IsValid() const;
bool SetString(const char* pszSecret);
bool SetString(const std::string& strSecret);
CTurbogoldSecret(const CKey& vchSecret) { SetKey(vchSecret); }
CTurbogoldSecret() {}
};
template<typename K, int Size, CChainParams::Base58Type Type> class CTurbogoldExtKeyBase : public CBase58Data
{
public:
void SetKey(const K &key) {
unsigned char vch[Size];
key.Encode(vch);
SetData(Params().Base58Prefix(Type), vch, vch+Size);
}
K GetKey() {
K ret;
ret.Decode(&vchData[0], &vchData[Size]);
return ret;
}
CTurbogoldExtKeyBase(const K &key) {
SetKey(key);
}
CTurbogoldExtKeyBase() {}
};
typedef CTurbogoldExtKeyBase<CExtKey, 74, CChainParams::EXT_SECRET_KEY> CTurbogoldExtKey;
typedef CTurbogoldExtKeyBase<CExtPubKey, 74, CChainParams::EXT_PUBLIC_KEY> CTurbogoldExtPubKey;
/** base58-encoded Bitcoin addresses.
* Public-key-hash-addresses have version 0 (or 111 testnet).
* The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
* Script-hash-addresses have version 5 (or 196 testnet).
* The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
*/
class CBitcoinAddress : public CBase58Data {
public:
bool Set(const CKeyID &id);
bool Set(const CScriptID &id);
bool Set(const CTxDestination &dest);
bool IsValid() const;
CBitcoinAddress() {}
CBitcoinAddress(const CTxDestination &dest) { Set(dest); }
CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); }
CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); }
CTxDestination Get() const;
bool GetKeyID(CKeyID &keyID) const;
bool IsScript() const;
};
#endif // BITCOIN_BASE58_H | [
"zero@you-spam.com"
] | zero@you-spam.com |
4ce4c10e6165f260225a4a7412e9de6c67585e93 | afa16a4a40ea256247e486f4870836b533d6983d | /geometry/Vector2.h | af5e90e52235b66cfc8247cca27d43c781fcf625 | [] | no_license | QtOpenGL/Core | f01338a50fe20bd2c260e6b6836e943947ad8d4e | b19ef10e5f0ad3ac4c6fb78aa11895a83fc05b99 | refs/heads/master | 2020-05-04T16:55:47.627146 | 2019-04-06T12:56:43 | 2019-04-06T12:56:43 | 179,292,459 | 0 | 0 | null | 2019-04-06T12:56:44 | 2019-04-03T13:08:59 | C++ | UTF-8 | C++ | false | false | 1,686 | h | #pragma once
#include "../base/VectorStorage.h"
#include "../common/types.h"
#include "Vector2Components.h"
namespace Core {
#define VECTOR2_COMPONENT_COUNT 2
template <typename T, bool customStorage, typename Enable = void>
class Vector2;
template <typename T, bool customStorage>
class Vector2<T, customStorage, Core::enable_if_t<Core::is_numeric<T>::value>> : public VectorStorage<T, VECTOR2_COMPONENT_COUNT, customStorage>,
public Vector2Components<T> {
public:
Vector2() : Vector2(0.0, 0.0) {}
Vector2(const T& x, const T& y) : Vector2Components<T>(this->data, x, y) {}
Vector2(const Vector2<T, true>& src) : Vector2(src.x, src.y) {}
Vector2(const Vector2<T, false>& src) : Vector2(src.x, src.y) {}
Vector2(T* storage) : Vector2(storage, 0.0, 0.0) {}
Vector2(T* storage, const T& x, const T& y) : VectorStorage<T, VECTOR2_COMPONENT_COUNT, true>(storage), Vector2Components<T>(this->data, x, y) {}
Vector2& operator=(const Vector2& other) {
if (this == &other) return *this;
this->copy(other);
return *this;
}
template <Bool otherCustomStorage>
Vector2& operator=(const Vector2<T, otherCustomStorage>& other) {
this->copy(other);
return *this;
}
};
typedef Vector2<Real, false> Vector2r;
typedef Vector2<Real, true> Vector2rs;
typedef Vector2<Int32, false> Vector2i;
typedef Vector2<Int32, true> Vector2is;
typedef Vector2<UInt32, false> Vector2u;
typedef Vector2<UInt32, true> Vector2us;
}
| [
"mkkellogg@gmail.com"
] | mkkellogg@gmail.com |
6b0acb19f6f296c01ebef109cd395271703be46a | c9c3a318e691ec16c98197c1ee72b30b2b9eb8ef | /g53gra.framework/g53gra.framework/Code/HeadLight.hpp | 49e75cfc3a75b4ad685cbc1464301379b174cc22 | [
"MIT"
] | permissive | Hanslen/Mars_base-3D | 21f3f1177d6a2d85885eade1208d67fe90964a0c | b71d564b49df1b8ba3bff0c44d08663b137dbf41 | refs/heads/master | 2020-12-30T15:22:11.538411 | 2018-03-21T22:37:23 | 2018-03-21T22:37:23 | 91,132,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 681 | hpp | //
// HeadLight.hpp
// G53GRA.Framework
//
// Created by Hanslen Chen on 2017/4/17.
// Copyright © 2017年 w.o.c.ward. All rights reserved.
//
#ifndef HeadLight_hpp
#define HeadLight_hpp
#include <stdio.h>
#include "DisplayableObject.h"
#include "Animation.h"
#include <stdio.h>
#include <math.h>
class HeadLight :
public DisplayableObject,
public Animation,
public Input
{
public:
HeadLight(GLenum id);
~HeadLight();
void Display();
void Update(const double& deltaTime);
protected:
GLfloat *_ambient, *_diffuse, *_specular;
GLenum lightId;
void drawPillar(float h, float r, float incline, int cone, int base);
};
#endif /* HeadLight_hpp */
| [
"psyjc3@exmail.nottingham.ac.uk"
] | psyjc3@exmail.nottingham.ac.uk |
a08ed41adbf59c7f769a3123e78f94fe357baf91 | f1af9e8faf2b3386f766f15d00ae5080b648ee1f | /src/client-api/blockchain.cpp | 4a721f7f4529f9f9bddc737ffc5c8e0032ace5b9 | [
"MIT"
] | permissive | Black-NET/xfscore | e7d309fd373bcce56a9f18e8a3d5b7d237f4a09e | a4191203db2fff88c4f64cd5417a0edc47f3a607 | refs/heads/master | 2023-01-12T08:30:52.450009 | 2020-11-19T14:43:11 | 2020-11-19T14:43:11 | 301,507,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,399 | cpp | // Copyright (c) 2018 Tadhg Riordan Zcoin Developer
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "main.h"
#include "client-api/server.h"
#include "client-api/protocol.h"
#include "rpc/server.h"
#include "xfsnode-sync.h"
#include "core_io.h"
#include "wallet/wallet.h"
#include "client-api/wallet.h"
#include "univalue.h"
#include "darksend.h"
#include "chain.h"
using namespace std;
using namespace boost::chrono;
uint32_t AvgBlockTime(){
uint32_t avgBlockTime;
Consensus::Params nParams = Params().GetConsensus();
avgBlockTime = nParams.nPowTargetSpacing;
return avgBlockTime;
}
UniValue blockchain(Type type, const UniValue& data, const UniValue& auth, bool fHelp){
UniValue blockinfoObj(UniValue::VOBJ);
UniValue status(UniValue::VOBJ);
UniValue currentBlock(UniValue::VOBJ);
status.push_back(Pair("isBlockchainSynced", xfsnodeSync.GetBlockchainSynced()));
status.push_back(Pair("isXFSnodeListSynced", xfsnodeSync.IsXFSnodeListSynced()));
status.push_back(Pair("isWinnersListSynced", xfsnodeSync.IsWinnersListSynced()));
status.push_back(Pair("isSynced", xfsnodeSync.IsSynced()));
status.push_back(Pair("isFailed", xfsnodeSync.IsFailed()));
// if coming from PUB, height and time are included in data. otherwise just return chain tip
UniValue height = find_value(data, "nHeight");
UniValue time = find_value(data, "nTime");
if(!(height.isNull() && time.isNull())){
currentBlock.push_back(Pair("height", height));
currentBlock.push_back(Pair("timestamp", stoi(time.get_str())));
}else{
currentBlock.push_back(Pair("height", stoi(to_string(chainActive.Tip()->nHeight))));
currentBlock.push_back(Pair("timestamp", stoi(to_string(chainActive.Tip()->nTime))));
}
blockinfoObj.push_back(Pair("testnet", Params().TestnetToBeDeprecatedFieldRPC()));
blockinfoObj.push_back(Pair("connections", (int)vNodes.size()));
blockinfoObj.push_back(Pair("type","full"));
blockinfoObj.push_back(Pair("status", status));
blockinfoObj.push_back(Pair("currentBlock", currentBlock));
blockinfoObj.push_back(Pair("avgBlockTime", int64_t(AvgBlockTime())));
if(!xfsnodeSync.GetBlockchainSynced()){
unsigned long currentTimestamp = floor(
system_clock::now().time_since_epoch() /
milliseconds(1)/1000);
int blockTimestamp = chainActive.Tip()->nTime;
int timeUntilSynced = currentTimestamp - blockTimestamp;
blockinfoObj.push_back(Pair("timeUntilSynced", timeUntilSynced));
}
return blockinfoObj;
}
UniValue transaction(Type type, const UniValue& data, const UniValue& auth, bool fHelp){
LOCK2(cs_main, pwalletMain->cs_wallet);
//decode transaction
UniValue ret(UniValue::VOBJ);
CTransaction transaction;
if (!DecodeHexTx(transaction, find_value(data, "txRaw").get_str()))
throw JSONAPIError(API_DESERIALIZATION_ERROR, "Error parsing or validating structure in raw format");
const CWalletTx * wtx = pwalletMain->GetWalletTx(transaction.GetHash());
if(wtx==NULL)
throw JSONAPIError(API_INVALID_PARAMETER, "Invalid, missing or duplicate parameter");
ListAPITransactions(*wtx, ret, ISMINE_ALL);
return ret;
}
UniValue block(Type type, const UniValue& data, const UniValue& auth, bool fHelp){
UniValue getblockObj(UniValue::VOBJ);
string blockhash;
try{
blockhash = find_value(data, "hashBlock").get_str();
}catch (const std::exception& e){
throw JSONAPIError(API_WRONG_TYPE_CALLED, "wrong key passed/value type for method");
}
StateBlock(getblockObj, blockhash);
return getblockObj;
}
UniValue rebroadcast(Type type, const UniValue& data, const UniValue& auth, bool fHelp){
UniValue ret(UniValue::VOBJ);
LOCK2(cs_main, pwalletMain->cs_wallet);
uint256 hash = uint256S(find_value(data, "txHash").get_str());
CWalletTx *wtx = const_cast<CWalletTx*>(pwalletMain->GetWalletTx(hash));
if (!wtx || wtx->isAbandoned() || wtx->GetDepthInMainChain() > 0){
ret.push_back(Pair("result", false));
ret.push_back(Pair("error", "Transaction is abandoned or already in chain"));
return ret;
}
if (wtx->GetRequestCount() > 0){
ret.push_back(Pair("result", false));
ret.push_back(Pair("error", "Transaction has already been requested to be rebroadcast"));
return ret;
}
CCoinsViewCache &view = *pcoinsTip;
const CCoins* existingCoins = view.AccessCoins(hash);
bool fHaveMempool = mempool.exists(hash);
bool fHaveChain = existingCoins && existingCoins->nHeight < 1000000000;
if (!fHaveMempool && !fHaveChain) {
// push to local node and sync with wallets
CValidationState state;
bool fMissingInputs;
if (!AcceptToMemoryPool(mempool, state, (CTransaction)*wtx, true, false, &fMissingInputs, true, false, maxTxFee)){
ret.push_back(Pair("result", false));
ret.push_back(Pair("error", "Transaction not accepted to mempool"));
return ret;
}
} else if (fHaveChain) {
ret.push_back(Pair("result", false));
ret.push_back(Pair("error", "transaction already in block chain"));
return ret;
}
RelayTransaction((CTransaction)*wtx);
ret.push_back(Pair("result", true));
return ret;
}
static const CAPICommand commands[] =
{ // category collection actor (function) authPort authPassphrase warmupOk
// --------------------- ------------ ---------------- -------- -------------- --------
{ "blockchain", "blockchain", &blockchain, true, false, false },
{ "blockchain", "block", &block, true, false, false },
{ "blockchain", "rebroadcast", &rebroadcast, true, false, false },
{ "blockchain", "transaction", &transaction, true, false, false }
};
void RegisterBlockchainAPICommands(CAPITable &tableAPI)
{
for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++)
tableAPI.appendCommand(commands[vcidx].collection, &commands[vcidx]);
} | [
"63128435+Black-NET@users.noreply.github.com"
] | 63128435+Black-NET@users.noreply.github.com |
4b04061a7ea17caaceeb5c8cfd7e4bbd23770559 | 9ea53045edab514a735860fd9090f03ab2320dc5 | /Gadgets/PlanetInferno.h | cc9f28a64fe65eaa4fea974ea30bf575a3b15d1d | [
"MIT"
] | permissive | palestar/darkspace | 47b74f0859980c7710624a014d62fd8b6d84017c | 3d88d7318bb20c92cb69464fa5521da93a871b17 | refs/heads/develop | 2023-05-27T06:53:06.020217 | 2023-05-05T12:53:24 | 2023-05-05T12:53:24 | 59,434,431 | 41 | 27 | MIT | 2023-05-01T13:16:38 | 2016-05-22T21:07:16 | C++ | UTF-8 | C++ | false | false | 692 | h | /*
PlanetInferno.h
(c)2000 Palestar, Richard Lyle
*/
#ifndef PLANET_INFERNO_H
#define PLANET_INFERNO_H
#include "DarkSpace/NounPlanet.h"
//----------------------------------------------------------------------------
class PlanetInferno : public NounPlanet
{
public:
DECLARE_WIDGET_CLASS();
// NounPlanet interface
const char * description() const
{
return "Inferno";
}
int maxStructures() const
{
return 0;
}
int maxUnits() const
{
return 0;
}
int maxResources() const
{
return 0;
}
};
//----------------------------------------------------------------------------
#endif
//----------------------------------------------------------------------------
// EOF
| [
"rlyle@palestar.com"
] | rlyle@palestar.com |
465b6ca1a5138473795943e866e39b99049c902a | 22577f58aba49e16d918e267d9e6684d783b4938 | /hello_avro_cpp/source/utils/sd_avro.hpp | 69e3eab9e7f33712419e1ebcfb8947c68da843ce | [] | no_license | elizabethcnfortunato/Curso_Kafka_Cpp | fcf8fd89493dc760bef4ba00424d6989f5d7fa65 | 1617da5b64e995c7b3a8a121779bc1f17f453a6e | refs/heads/main | 2023-03-03T23:26:23.478928 | 2021-02-16T20:08:36 | 2021-02-16T20:08:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 631 | hpp | //
// sd_avro.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~
//
// Developer: Gelson Rodrigues
// geoldery@gmail.com
//
// Class with generic functions
#ifndef SD_AVRO_HPP
#define SD_AVRO_HPP
#include <avro/Specific.hh>
#include <avro/Encoder.hh>
#include <avro/Decoder.hh>
#include <avro/Compiler.hh>
#include <fstream>
#include "Bitcoin/Trade.hpp"
namespace utils
{
namespace avro_utils
{
void load_schema(const std::string &path_file, avro::ValidSchema &sc)
{
std::ifstream file(path_file);
avro::compileJsonSchema(file, sc);
}
} // namespace avro_utils
} // namespace avro
#endif | [
"geoldery@gmail.com"
] | geoldery@gmail.com |
18ecc3dd00e667cabe84b191eaadf34550ba80b8 | 5c8e1da93bb0efeaa046f6e8c830b40418377207 | /TimeMeasurement.h | 7d9b7ae5657730967390cc1af261b29cde18c25e | [] | no_license | yriuss/ACS | 2dce290b7e00907e86dc3c9b33bdee90b689b040 | b4a7effba95da8c78ac021bf802870be6fdd4393 | refs/heads/master | 2023-08-10T17:08:40.733488 | 2021-09-21T16:39:01 | 2021-09-21T16:39:01 | 339,826,207 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 909 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: TimeMeasurement.h
* Author: Daniel de Filgueiras Gomes
*
* Created on 10 de Julho de 2020, 12:26
*/
#ifndef TIMEMEASUREMENT_H
#define TIMEMEASUREMENT_H
#include <ctime>
#include <sys/time.h>
#include <climits>
namespace TimeMeas {
//A incerteza nas medidas de tempo desta função está na faixa de 0.1ms
double t0;
double t1;
double getCurrentRealTimer(void)
{
struct timeval t;
gettimeofday(&t, 0);
return t.tv_sec + t.tv_usec * 1.0e-6;
}
inline void tic(void) {
t0=getCurrentRealTimer();
}
inline double toc(void) {
t1=getCurrentRealTimer();
return (t1-t0);
}
}
#endif /* TIMEMEASUREMENT_H */
| [
"adriel.lins@ufpe.br"
] | adriel.lins@ufpe.br |
0c306ec62e3b35ed384f0a090f175f4f66b43dad | 971269d7280ec718888f21ab187a8980df2ebddd | /Cpp/paulina/zad4.cpp | 3f7362ad5855f40ef3e3b66a38431cac4a80989a | [] | no_license | rekuszk/Duperele | 5fb0b21e5d8fb1de11f7b3b817688cba05bd8b2f | 97d3f0f97940f384a8555082d91355cb1596c4cc | refs/heads/master | 2023-09-01T12:54:03.159711 | 2021-11-04T11:01:51 | 2021-11-04T11:01:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 580 | cpp | #include<iostream>
using namespace std;
//funkcja zamieniająca wartości zmiennych
void zamien(int *a, int *b) {
int pom = *a;
*a = *b;
*b = pom;
}
void sortuj(int *x, int *y, int *z) {
if(*x > *y)
zamien(x,y);
if(*x > *z)
zamien(x,z);
if(*y > *z)
zamien(y,z);
}
int main() {
int x, y, z;
cout<<"Podaj trzy liczby: ";
cin>>x>>y>>z;
sortuj(&x,&y,&z);
cout<<"Liczby posortowane: "<<x<<" "<<y<<" "<<z<<endl;
return 0;
}
| [
"redthreat19@gmail.com"
] | redthreat19@gmail.com |
ef7549724809ab17ec39d919f66ee58acd252cfe | 337d151deb1bfcea4ce04e0907a89d5cd3b4b921 | /pytagoras.cpp | 986913b5da1277af853a22b3e87c47f374ebc880 | [] | no_license | petSzathmary/Project-triangle | 345474a8eb346d0c357b5a3ce5fa4f34e2d316d4 | 34f0cc3c8074153ad0a7d940e08a4140321c94d6 | refs/heads/master | 2021-07-11T17:13:13.760373 | 2017-10-16T11:48:24 | 2017-10-16T11:48:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 394 | cpp | #include <stdio.h>
#include <math.h>
main()
{
int a;
int b;
int c;
int asq;
int bsq;
int csq;
printf("Zadaj 3 strany trojuholnika:\n");
scanf("%d %d %d", &a, &b ,&c);
asq = pow(a, 2);
bsq = pow(b, 2);
csq = pow(c, 2);
if(asq == bsq+csq || bsq == asq+csq || csq == asq+bsq ) {
printf("Trojuholnik je pravouhly");
}
else {
printf("Trojuholnik nieje pravouhly");
}
}
| [
"tomcoondrej@gmail.com"
] | tomcoondrej@gmail.com |
e8a12400ddb11f2d5ab1cd6a18b7f5708e60b137 | e623508cfa0eec11a657b0b835679fed97f9fbb5 | /Sandbox/src/SandboxApp.cpp | bb4891cf82c4bffa21d4e21b6e20854c8de1d2fa | [] | no_license | DPatell/Atlas | 0d8632c016f1563a5d23713e000c986390b4b5ef | 5372a9f62c03fec533d7231069b730b4cf241289 | refs/heads/main | 2023-02-05T07:02:29.808662 | 2020-12-21T06:02:55 | 2020-12-21T06:02:55 | 304,777,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | #include <Atlas.h>
#include "imgui/imgui.h"
class ExampleLayer : public Atlas::Layer
{
public:
ExampleLayer() : Layer("Example")
{
}
void OnUpdate() override
{
if (Atlas::Input::IsKeyPressed(ATL_KEY_TAB))
ATL_TRACE("Tab Key Is Pressed (Poll)!");
}
virtual void OnImGuiRender() override
{
ImGui::Begin("Test");
ImGui::Text("HelloWorld");
ImGui::End();
}
void OnEvent(Atlas::Event& event) override
{
if (event.GetEventType() == Atlas::EventType::KeyPressed)
{
Atlas::KeyPressedEvent& e = (Atlas::KeyPressedEvent&)event;
if (e.GetKeyCode() == ATL_KEY_TAB)
ATL_TRACE("Tab Key Is Pressed (Event)!");
ATL_TRACE("{0}", (char)e.GetKeyCode());
}
}
};
class Sandbox : public Atlas::Application
{
public:
Sandbox()
{
PushLayer(new ExampleLayer());
}
~Sandbox()
{
}
};
Atlas::Application* Atlas::CreateApplication()
{
return new Sandbox();
} | [
"dpatell125521@gmail.com"
] | dpatell125521@gmail.com |
77a1dead19a126631082cf538bf6e8e2bbcfeb10 | 87c69454346b1550da7da37f1b7ebfe5468b587c | /socket/IOCP/GSocket0.85(IOCP+Socket+Server)源码/GSocketDemo/GSockInfo.cpp | dd14b8719ff07e7bb9bf9ea325901d74336a377b | [] | no_license | hnlylmlzh/cs | 4305ae18d35d7fe774ae0ece263a68bea882ab6a | b45154053d46c3b3b1e912946d1acaa65e99089b | refs/heads/master | 2022-03-20T17:45:10.202053 | 2019-04-15T08:54:05 | 2019-04-15T08:54:05 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 19,460 | cpp | // GSockInfo.cpp : 实现文件
//
#include "stdafx.h"
#include "GSocketDemo.h"
#include "GSockInfo.h"
#include "..\GMemory.h"
#include "..\GSocket.h"
#define GMSG_ADD_LISTENER (WM_USER + 101)
#define GMSG_CONNECT (WM_USER + 102)
#define GMSG_DISCONNECT (WM_USER + 103)
#define GMSG_CLEAR_LIST (WM_USER + 104)
CGSockInfo *pGSocketInfo = NULL;
void GInfo_Show(CWnd* pParent)
{
if(pGSocketInfo == NULL)
{
pGSocketInfo = new CGSockInfo;
pGSocketInfo->Create(IDD_GSOCK_INFO_DIALOG, pParent);
pGSocketInfo->ShowWindow(SW_SHOW);
}
}
void GInfo_OnAddListener(DWORD dwListener)
{
if(pGSocketInfo)
PostMessage(pGSocketInfo->m_hWnd, GMSG_ADD_LISTENER, dwListener, 0);
}
void GInfo_OnConnect(DWORD dwClientContext)
{
if(pGSocketInfo)
PostMessage(pGSocketInfo->m_hWnd, GMSG_CONNECT, dwClientContext, 0);
}
void GInfo_OnDisconnect(DWORD dwClientContext)
{
if(pGSocketInfo)
PostMessage(pGSocketInfo->m_hWnd, GMSG_DISCONNECT, dwClientContext, 0);
}
void GInfo_ClearList(void)
{
if(pGSocketInfo)
SendMessage(pGSocketInfo->m_hWnd, GMSG_CLEAR_LIST, 0, 0);
}
// CGSockInfo 对话框
IMPLEMENT_DYNAMIC(CGSockInfo, CDialog)
CGSockInfo::CGSockInfo(CWnd* pParent /*=NULL*/)
: CDialog(CGSockInfo::IDD, pParent)
, m_dwPhyAvail(0)
, m_dwWaitAccept(0)
, m_dwListItemCount(0)
, m_dwThreadTotal(0)
{
}
CGSockInfo::~CGSockInfo()
{
pGSocketInfo = NULL;
}
void CGSockInfo::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_GEDIT_PHY_AVAIL, m_dwPhyAvail);
DDX_Text(pDX, IDC_GEDIT_PHY_FREE, m_fPhyFree);
DDX_Text(pDX, IDC_GEDIT_PHY_PAGE_SIZE, m_dwPhyPageSize);
DDX_Text(pDX, IDC_GEDIT_PHY_USED_PAGE, m_dwPhyUsedPage);
DDX_Text(pDX, IDC_GEDIT_PHY_USED_BYTES, m_dwPhyUsedBytes);
DDX_Text(pDX, IDC_GEDIT_GMEM_PAGE_SIZE, m_dwGMemPageSize);
DDX_Text(pDX, IDC_GEDIT_GMEM_PAGE_NUMBER, m_dwGMemPageNumber);
DDX_Text(pDX, IDC_GEDIT_GMEM_TOTAL, m_dwGMemTotal);
DDX_Text(pDX, IDC_GEDIT_GMEM_USED, m_dwGMemUsed);
DDX_Text(pDX, IDC_GEDIT_GMEM_USED_R, m_fGMemUsedR);
DDX_Text(pDX, IDC_GEDIT_IODT_BYTES, m_dwIodtBytes);
DDX_Text(pDX, IDC_GEDIT_GBUF_SIZE, m_dwGBufSize);
DDX_Text(pDX, IDC_GEDIT_IODT_TOTAL, m_dwIodtTotal);
DDX_Text(pDX, IDC_GEDIT_IODT_USED, m_dwIodtUsed);
DDX_Text(pDX, IDC_GEDIT_IODT_USED_R, m_fIodtUsedR);
DDX_Text(pDX, IDC_GEDIT_HDDT_BYTES, m_dwHddtBytes);
DDX_Text(pDX, IDC_GEDIT_HDDT_SIZE, m_dwHddtSize);
DDX_Text(pDX, IDC_GEDIT_HDDT_TOTAL, m_dwHddtTotal);
DDX_Text(pDX, IDC_GEDIT_HDDT_USED, m_dwHddtUsed);
DDX_Text(pDX, IDC_GEDIT_HDDT_USED_R, m_fHddtUsedR);
DDX_Text(pDX, IDC_GEDIT_LISTENER, m_dwListener);
DDX_Text(pDX, IDC_GEDIT_CLIENT, m_dwClient);
DDX_Text(pDX, IDC_GEDIT_WORKER, m_dwWorker);
DDX_Control(pDX, IDC_GLIST_LISTENER, m_lstListener);
DDX_Control(pDX, IDC_GLIST_CLIENT, m_lstClient);
DDX_Control(pDX, IDC_GLIST_WORKER, m_lstWorker);
DDX_Text(pDX, IDC_GEDIT_WAIT_ACCEPT, m_dwWaitAccept);
DDX_Text(pDX, IDC_GEDIT_WAIT_ACCEPT2, m_dwListItemCount);
DDX_Text(pDX, IDC_GEDIT_WORKER2, m_dwThreadTotal);
}
BEGIN_MESSAGE_MAP(CGSockInfo, CDialog)
ON_BN_CLICKED(IDOK, &CGSockInfo::OnBnClickedOk)
ON_BN_CLICKED(IDCANCEL, &CGSockInfo::OnBnClickedCancel)
ON_WM_TIMER()
ON_WM_PAINT()
END_MESSAGE_MAP()
// CGSockInfo 消息处理程序
void CGSockInfo::OnBnClickedOk()
{
// TODO: 在此添加控件通知处理程序代码
OnOK();
}
void CGSockInfo::OnBnClickedCancel()
{
// TODO: 在此添加控件通知处理程序代码
//OnCancel();
KillTimer(1000);
DestroyWindow();
}
void CGSockInfo::PostNcDestroy()
{
CDialog::PostNcDestroy();
delete this;
}
void SetListCtrlStyle(CListCtrl* pLstCtrl)
{
//获得原有风格
DWORD dwStyle = GetWindowLong(pLstCtrl->m_hWnd, GWL_STYLE);
dwStyle &= ~(LVS_TYPEMASK);
dwStyle &= ~(LVS_EDITLABELS);
//设置新风格
SetWindowLong(pLstCtrl->m_hWnd, GWL_STYLE, dwStyle | LVS_REPORT | LVS_NOLABELWRAP | LVS_SHOWSELALWAYS);
//设置扩展风格
DWORD styles = LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES;
ListView_SetExtendedListViewStyleEx(pLstCtrl->m_hWnd, styles, styles );
}
void CGSockInfo::InitListCtrl(void)
{
LV_COLUMN col;
SetListCtrlStyle(&m_lstListener);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("序号");
col.cx = 40;
m_lstListener.InsertColumn(0, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("IP地址");
col.cx = 120;
m_lstListener.InsertColumn(1, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("端口");
col.cx = 50;
m_lstListener.InsertColumn(2, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("链接");
col.cx = 50;
m_lstListener.InsertColumn(3, &col);
SetListCtrlStyle(&m_lstWorker);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("序号");
col.cx = 40;
m_lstWorker.InsertColumn(0, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("线程名");
col.cx = 105;
m_lstWorker.InsertColumn(1, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("状态");
col.cx = 45;
m_lstWorker.InsertColumn(2, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("活动计数");
col.cx = 65;
m_lstWorker.InsertColumn(3, &col);
SetListCtrlStyle(&m_lstClient);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("序号");
col.cx = 40;
m_lstClient.InsertColumn(0, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("类型");
col.cx = 60;
m_lstClient.InsertColumn(1, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("状态");
col.cx = 50;
m_lstClient.InsertColumn(2, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("本地IP");
col.cx = 115;
m_lstClient.InsertColumn(3, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("本地端口");
col.cx = 65;
m_lstClient.InsertColumn(4, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("远程IP");
col.cx = 115;
m_lstClient.InsertColumn(5, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("远程端口");
col.cx = 65;
m_lstClient.InsertColumn(6, &col);
col.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
col.fmt = LVCFMT_LEFT;
col.iSubItem = 0;
col.pszText = _T("空闲");
col.cx = 45;
m_lstClient.InsertColumn(7, &col);
}
BOOL CGSockInfo::OnInitDialog()
{
CDialog::OnInitDialog();
m_brushRed.CreateSolidBrush(RGB(255, 0, 0));
m_brushGreen.CreateSolidBrush(RGB(0, 255, 0));
m_penGreen.CreatePen(PS_SOLID, 1, RGB(0, 255, 0));
GetClientRect(&m_rect);
m_rect.left += 10;
m_rect.top += 10;
m_rect.bottom = m_rect.top + 30;
m_rect.right -= 10;
InitListCtrl();
GetInfo();
GTcpSvr_TraversalListener((DWORD)this, (PFN_ON_GSOCK_TRAVERSAL)&OnTraversalListener);
GTcpSvr_TraversalClient((DWORD)this, 0, GTcpSvr_GetClientCount(), (PFN_ON_GSOCK_TRAVERSAL)&OnTraversalClient);
GTcpClt_TraversalClient((DWORD)this, 0, GTcpClt_GetClientCount(), (PFN_ON_GSOCK_TRAVERSAL)&OnTraversalClient);
SetTimer(1000, 1000, NULL);
return TRUE;
}
void CGSockInfo::OnTraversalGMem(CGSockInfo* pSockInfo, const void* pAddr, const DWORD dwSize, const BOOL bIsFree)
{
float fWidth;
fWidth = pSockInfo->m_fPixOfSize * dwSize;
if(!bIsFree)
{
pSockInfo->m_fStartX += fWidth;
return;
}
CClientDC *dc = pSockInfo->m_pdc;
CBrush *brushSave;
CPen *penSave;
brushSave = dc->SelectObject(&(pSockInfo->m_brushGreen));
penSave = dc->SelectObject(&pSockInfo->m_penGreen);
dc->SetDCPenColor(RGB(0, 255, 0));
dc->Rectangle(DWORD(pSockInfo->m_rect.left + pSockInfo->m_fStartX), pSockInfo->m_rect.top, DWORD(pSockInfo->m_rect.left + pSockInfo->m_fStartX + fWidth) - 2, pSockInfo->m_rect.bottom);
pSockInfo->m_fStartX += fWidth;
dc->SelectObject(&brushSave);
dc->SelectObject(&penSave);
}
void CGSockInfo::OnPaint()
{
CDialog::OnPaint();
CClientDC dc(this);
m_pdc = &dc;
GetClientRect(&m_rect);
m_rect.left += 10;
m_rect.top += 10;
m_rect.bottom = m_rect.top + 30;
m_rect.right -= 10;
CBrush *brushSave;
brushSave = dc.SelectObject(&m_brushRed);
dc.Rectangle(m_rect.left, m_rect.top, m_rect.right, m_rect.bottom);
dc.SelectObject(&brushSave);
m_dwWidth = (DWORD)m_rect.right - m_rect.left;
m_fSizeOfPix = (float)GMem_GetTotalBytes() / m_dwWidth;
m_fPixOfSize = (float)m_dwWidth / GMem_GetTotalBytes();
m_rect.left += 1;
m_rect.top += 1;
m_rect.bottom -= 1;
m_rect.right -= 1;
m_fStartX = m_fPixOfSize * GMem_GetSysUsedBytes();
GMem_Traversal((DWORD)this, (PFN_ON_GMEM_TRAVERSAL)&OnTraversalGMem);
}
BOOL CGSockInfo::OnTraversalThread(CGSockInfo* pSockInfo, const DWORD dwIndex, const DWORD dwGThreadId)
{
LV_ITEM lvitem;
CString str;
lvitem.mask = LVIF_TEXT;
lvitem.iItem = dwIndex;
lvitem.iSubItem = 0;
str.Format(_T("%d"), dwIndex + 1);
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
pSockInfo->m_lstWorker.InsertItem(&lvitem);
lvitem.mask = LVIF_TEXT;
lvitem.iItem = dwIndex;
lvitem.iSubItem = 1;
str.Format(_T("%s:%d"), GThrd_GetName(dwGThreadId), GThrd_GetThreadId(dwGThreadId));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
pSockInfo->m_lstWorker.SetItem(&lvitem);
lvitem.iItem = dwIndex;
lvitem.iSubItem = 2;
str.Format(_T("%d"), GThrd_GetState(dwGThreadId));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
pSockInfo->m_lstWorker.SetItem(&lvitem);
lvitem.iItem = dwIndex;
lvitem.iSubItem = 3;
str.Format(_T("%d"), GThrd_GetRunCount(dwGThreadId));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
pSockInfo->m_lstWorker.SetItem(&lvitem);
pSockInfo->m_lstWorker.SetItemData(dwIndex, (DWORD_PTR)dwGThreadId);
return(TRUE);
}
BOOL CGSockInfo::OnTraversalListener(CGSockInfo* pSockInfo, const DWORD nIndex, const DWORD dwListenerId)
{
pSockInfo->OnAddListener(dwListenerId);
return(TRUE);
}
BOOL CGSockInfo::OnTraversalClient(CGSockInfo* pSockInfo, const DWORD nIndex, const DWORD dwClientContext)
{
pSockInfo->OnConnect(dwClientContext);
return(TRUE);
}
void CGSockInfo::GetInfo(void)
{
InvalidateRect(&m_rect, FALSE);
DWORD dwPhyTotal;
m_dwPhyAvail = GMem_GetAvailPhyBytes(&dwPhyTotal);
m_fPhyFree = (float)m_dwPhyAvail / dwPhyTotal * 100;
m_dwPhyPageSize = GMem_GetPhyPageSize();
m_dwPhyUsedPage = GMem_GetUsedPhyPageNumber();
m_dwPhyUsedBytes = GMem_GetUsedPhyBytes();
m_dwGMemPageSize = GMem_GetPageSize();
m_dwGMemPageNumber = GMem_GetPageNumber();
m_dwGMemTotal = GMem_GetTotalBytes();
m_dwGMemUsed = GMem_GetUsedBytes();
m_fGMemUsedR = (float)m_dwGMemUsed / (float)m_dwGMemTotal * 100;
m_dwIodtBytes = GIoDat_GetMemBytes();
m_dwGBufSize = GIoDat_GetGBufSize();
m_dwIodtTotal = GIoDat_GetTotal();
m_dwIodtUsed = GIoDat_GetUsed();
m_fIodtUsedR = (float)m_dwIodtUsed / (float)m_dwIodtTotal * 100;
m_dwHddtBytes = GHndDat_GetMemBytes();
m_dwHddtSize = GHndDat_GetSize();
m_dwHddtTotal = GHndDat_GetTotal();
m_dwHddtUsed = GHndDat_GetUsed();
m_fHddtUsedR = (float)m_dwHddtUsed / (float)m_dwHddtTotal * 100;
m_dwListener = GTcpSvr_GetListenerCount();
m_dwClient = GSock_GetClientCount();
m_dwThreadTotal = GThrd_GetThreadCount();
m_dwWorker = GWkrThrd_GetWorkerThreadNumber();
m_dwWaitAccept = GTcpSvr_GetPendingAcceptCount();
m_dwListItemCount = m_lstClient.GetItemCount();
if(m_lstWorker.GetItemCount() != m_dwThreadTotal)
{
m_lstWorker.DeleteAllItems();
GThrd_TraversalThread((DWORD)this, (PFN_ON_GSOCK_TRAVERSAL)&OnTraversalThread);
}
LV_ITEM lvitem;
CString str;
int i;
int nEnd;
lvitem.state = 0;
lvitem.stateMask = 0;
lvitem.mask = LVIF_TEXT | LVIF_IMAGE;
i = m_lstListener.GetTopIndex();
nEnd = i + 4;
if(nEnd > m_lstListener.GetItemCount())
nEnd = m_lstListener.GetItemCount();
while(i < nEnd)
{
lvitem.iItem = i;
lvitem.iSubItem = 3;
str.Format(_T("%d"), GTcpSvr_GetListenerConnectCount((DWORD)m_lstListener.GetItemData(i)));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstListener.SetItem(&lvitem);
i++;
}
i = m_lstWorker.GetTopIndex();
nEnd = i + 4;
if(nEnd > m_lstWorker.GetItemCount())
nEnd = m_lstWorker.GetItemCount();
while(i < nEnd)
{
lvitem.iItem = i;
lvitem.iSubItem = 2;
str.Format(_T("%d"), GThrd_GetState((DWORD)m_lstWorker.GetItemData(i)));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstWorker.SetItem(&lvitem);
lvitem.iItem = i;
lvitem.iSubItem = 3;
str.Format(_T("%d"), GThrd_GetRunCount((DWORD)m_lstWorker.GetItemData(i)));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstWorker.SetItem(&lvitem);
i++;
}
i = m_lstClient.GetTopIndex();
nEnd = i + 4;
if(nEnd > m_lstClient.GetItemCount())
nEnd = m_lstClient.GetItemCount();
while(i < nEnd)
{
lvitem.iItem = i;
lvitem.iSubItem = 2;
DWORD dwClientContext = (DWORD)m_lstClient.GetItemData(i);
switch(GHndDat_GetState(dwClientContext))
{
case GHND_STATE_CONNECTED:
{
lvitem.pszText = _T("在线");
break;
}
case GHND_STATE_CONNECTING:
{
lvitem.pszText = _T("连接中");
break;
}
default:
lvitem.pszText = _T("断线");
}
m_lstClient.SetItem(&lvitem);
lvitem.iItem = i;
lvitem.iSubItem = 7;
str.Format(_T("%d"), GetTickCount() - GHndDat_GetTickCountAcitve(dwClientContext));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstClient.SetItem(&lvitem);
i++;
}
UpdateData(FALSE);
}
void CGSockInfo::OnTimer(UINT_PTR nIDEvent)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
GetInfo();
CDialog::OnTimer(nIDEvent);
}
void CGSockInfo::OnAddListener(DWORD dwListener)
{
LV_ITEM lvitem;
CString str;
int nIndex;
char szIp[30];
nIndex = m_lstListener.GetItemCount();
if(0 > nIndex)
nIndex = 0;
lvitem.state = 0;
lvitem.stateMask = 0;
lvitem.mask = LVIF_TEXT | LVIF_IMAGE;
lvitem.iItem = nIndex;
lvitem.iSubItem = 0;
str.Format(_T("%d"), nIndex + 1);
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstListener.InsertItem(&lvitem);
lvitem.mask = LVIF_TEXT;
lvitem.iItem = nIndex;
lvitem.iSubItem = 1;
GSock_AddrToIp(szIp, 28, GHndDat_GetAddr(dwListener));
lvitem.pszText = szIp;
m_lstListener.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 2;
str.Format(_T("%d"), GHndDat_GetPort(dwListener));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstListener.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 3;
str.Format(_T("%d"), GTcpSvr_GetListenerConnectCount(dwListener));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstListener.SetItem(&lvitem);
m_lstListener.SetItemData(nIndex, (DWORD_PTR)dwListener);
}
void CGSockInfo::OnConnect(DWORD dwClientContext)
{
LV_ITEM lvitem;
CString str;
char szIp[30];
int nIndex;
nIndex = m_lstClient.GetItemCount();
if(0 > nIndex)
nIndex = 0;
lvitem.state = 0;
lvitem.stateMask = 0;
lvitem.mask = LVIF_TEXT | LVIF_IMAGE;
lvitem.iItem = nIndex;
lvitem.iSubItem = 0;
str.Format(_T("%d"), nIndex + 1);
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstClient.InsertItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 1;
GHND_TYPE HndType = GHndDat_GetType(dwClientContext);
switch(HndType)
{
case GHND_TYPE_TCP_SVR_CLIENT:
lvitem.pszText = _T("TCP服务");
break;
case GHND_TYPE_TCP_CLT_CLIENT:
lvitem.pszText = _T("TCP客户");
break;
case GHND_TYPE_UDP_SVR_CLIENT:
lvitem.pszText = _T("UDP服务");
break;
default:
lvitem.pszText = _T("UDP客户");
}
m_lstClient.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 2;
switch(GHndDat_GetState(dwClientContext))
{
case GHND_STATE_CONNECTED:
{
lvitem.pszText = _T("在线");
break;
}
case GHND_STATE_CONNECTING:
{
lvitem.pszText = _T("连接中");
break;
}
default:
lvitem.pszText = _T("断线");
}
m_lstClient.SetItem(&lvitem);
lvitem.mask = LVIF_TEXT;
lvitem.iItem = nIndex;
lvitem.iSubItem = 3;
if((GHND_TYPE_TCP_SVR_CLIENT == HndType) || (GHND_TYPE_UDP_SVR_CLIENT == HndType))
{
GSock_AddrToIp(szIp, 28, GHndDat_GetAddr((DWORD)GHndDat_GetOwner(dwClientContext)));
lvitem.pszText = szIp;
}else
lvitem.pszText = NULL;
m_lstClient.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 4;
if((GHND_TYPE_TCP_SVR_CLIENT == HndType) || (GHND_TYPE_UDP_SVR_CLIENT == HndType))
{
str.Format(_T("%d"), GHndDat_GetPort((DWORD)GHndDat_GetOwner(dwClientContext)));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
}else
lvitem.pszText = NULL;
m_lstClient.SetItem(&lvitem);
lvitem.mask = LVIF_TEXT;
lvitem.iItem = nIndex;
lvitem.iSubItem = 5;
GSock_AddrToIp(szIp, 28, GHndDat_GetAddr(dwClientContext));
lvitem.pszText = szIp;
m_lstClient.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 6;
str.Format(_T("%d"), GHndDat_GetPort(dwClientContext));
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstClient.SetItem(&lvitem);
lvitem.iItem = nIndex;
lvitem.iSubItem = 7;
lvitem.pszText = _T("0");
m_lstClient.SetItem(&lvitem);
m_lstClient.SetItemData(nIndex, (DWORD_PTR)dwClientContext);
}
void CGSockInfo::OnDisconnect(DWORD dwClientContext)
{
int i, nIndex = -1;
for(i = 0; i <= m_lstClient.GetItemCount() - 1; i++)
{
if((DWORD)m_lstClient.GetItemData(i) == dwClientContext)
{
nIndex = i;
m_lstClient.DeleteItem(nIndex);
break;
}
}
if(-1 == nIndex)
return;
LV_ITEM lvitem;
CString str;
lvitem.state = 0;
lvitem.stateMask = 0;
lvitem.mask = LVIF_TEXT | LVIF_IMAGE;
for(i = nIndex; i <= m_lstClient.GetItemCount() - 1; i++)
{
lvitem.iItem = i;
lvitem.iSubItem = 0;
str.Format(_T("%d"), i + 1);
lvitem.pszText = (LPTSTR)(LPCTSTR)str;
m_lstClient.SetItem(&lvitem);
}
}
BOOL CGSockInfo::OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT *pResult)
{
switch(message)
{
case GMSG_ADD_LISTENER:
OnAddListener(wParam);
break;
case GMSG_CONNECT:
OnConnect(wParam);
break;
case GMSG_DISCONNECT:
OnDisconnect(wParam);
break;
case GMSG_CLEAR_LIST:
m_lstListener.DeleteAllItems();
m_lstWorker.DeleteAllItems();
m_lstClient.DeleteAllItems();
break;
}
return(CDialog::OnWndMsg(message, wParam, lParam, pResult));
} | [
"sunyongjie1984@gmail.com"
] | sunyongjie1984@gmail.com |
d1010c0a2816d95ecfec07fa9ab10eb2ffcc28fe | faa5d1d27a89cba2657f6fe53d9106630ef2c104 | /AUOJ/2538.cpp | 684ca9cbd8a8f5b390dc5d4b1cffb9e5cba2bb70 | [] | no_license | xiao-lin52/My-Codes | f4feef04a05b1904a1f31e0e5a04e0a48ee61cb9 | d8fc530ade2bbac32c016a731c667c4189e3c6c7 | refs/heads/main | 2023-03-12T23:32:55.219341 | 2021-03-07T07:31:32 | 2021-03-07T07:31:32 | 304,806,222 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,263 | cpp | #include<bits/stdc++.h>
#define N 1000010
#define M 100010
namespace IO
{
template <typename T> inline void read(T &x)
{
x=0;
register char c=getchar();
while(c<'0'||c>'9')
c=getchar();
while(c>='0'&&c<='9')
x=x*10+c-'0',c=getchar();
}
}
using namespace IO;
using namespace std;
int n,m,k,ans,col[N],dep[N],num[N],sum[N],fa[N],siz[N],top[N],son[N],rk[N],id[N],mxdep[N][4];
vector<int> edge[N],color[M];
void dfs1(int u,int father)
{
fa[u]=father;
rk[++k]=u;
id[u]=k;
siz[u]=1;
num[u]=1;
mxdep[u][3]=mxdep[u][0]=1;
dep[u]=dep[fa[u]]+1;
color[col[u]].push_back(id[u]);
for(int i=0;i<edge[u].size();i++)
{
int v=edge[u][i];
if(v!=father)
{
dfs1(v,u);
son[u]=siz[v]>siz[son[u]] ? v : son[u];
if(mxdep[v][0]+1>mxdep[u][0])
{
mxdep[u][2]=mxdep[u][0];
mxdep[u][0]=mxdep[v][0]+1;
mxdep[u][1]=v;
continue;
}
if(mxdep[v][0]+1>mxdep[u][2])
mxdep[u][2]=mxdep[v][0]+1;
}
}
}
void dfs2(int u,int t)
{
top[u]=t;
if(son[u])
dfs2(son[u],t);
for(int i=0;i<edge[u].size();i++)
{
int v=edge[u][i];
if(v!=fa[u]&&v!=son[u])
dfs2(v,v);
}
}
int lca(int u,int v)
{
while(top[u]!=top[v])
{
if(dep[top[u]]<dep[top[v]])
swap(u,v);
u=fa[top[u]];
}
if(dep[u]>dep[v])
swap(u,v);
return u;
}
void dfs3(int u,int fa)
{
for(int i=0;i<edge[u].size();i++)
{
int v=edge[u][i];
if(v!=fa)
{
if(v!=mxdep[u][1])
mxdep[v][3]=max(mxdep[u][3],mxdep[u][0])+1;
else
mxdep[v][3]=max(mxdep[u][3],mxdep[u][2])+1;
dfs3(v,u);
sum[u]+=sum[v];
num[u]+=num[v];
if(!sum[v])
ans=max(ans,mxdep[v][0]+1);
}
}
if(num[u]==m)
ans=max(ans,mxdep[u][3]);
}
signed main()
{
read(n);
read(m);
for(int i=1;i<=n;i++)
read(col[i]);
for(int i=1;i<=n-1;i++)
{
int u,v;
read(u);
read(v);
edge[u].push_back(v);
edge[v].push_back(u);
}
dfs1(1,0);
dfs2(1,1);
for(int i=1;i<=m;i++)
{
sort(color[i].begin(),color[i].end());
int Lca=rk[color[i][0]];
for(int j=1;j<color[i].size();j++)
Lca=lca(Lca,rk[color[i][j]]);
sum[Lca]++;
}
for(int i=1;i<=m;i++)
{
if(color[i].size()==1)
{
num[rk[color[i][0]]]--;
continue;
}
for(int j=1;j<color[i].size();j++)
num[lca(rk[color[i][j-1]],rk[color[i][j]])]--;
}
dfs3(1,0);
printf("%d",ans);
return 0;
} | [
"2492043904@qq.com"
] | 2492043904@qq.com |
2253eb15385cda079670ddf12804092165ea74be | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/libs/math/src/tr1/nexttoward.cpp | fc14b044babd4c0d40b14800161d0fdede1fe234 | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 871 | cpp | // Copyright John Maddock 2008.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
# include <pch.hpp>
#ifndef BOOST_MATH_TR1_SOURCE
# define BOOST_MATH_TR1_SOURCE
#endif
#include <sstd/boost/math/tr1.hpp>
#include <sstd/boost/math/special_functions/next.hpp>
#include "c_policy.hpp"
namespace boost{ namespace math{ namespace tr1{
extern "C" double BOOST_MATH_TR1_DECL boost_nexttoward BOOST_PREVENT_MACRO_SUBSTITUTION(double x, long double y) BOOST_MATH_C99_THROW_SPEC
{
#ifdef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
return c_policies::nextafter BOOST_PREVENT_MACRO_SUBSTITUTION(x, (double)y);
#else
return (double)c_policies::nextafter BOOST_PREVENT_MACRO_SUBSTITUTION((long double)x, y);
#endif
}
}}}
| [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
ace306ff48d269cc1c5c99528c8ac2e104973120 | 34003d7edf799fe112695e16c4018bf817e7c143 | /include/occa/defines/windows.hpp | 047912516c4b5b42323fd94fbe56692b1b28c3e1 | [
"MIT"
] | permissive | noelchalmers/occa | 9b5186ae8c6cd07554bff62dd277a4d4b5e34bab | 7b9b2a97879c1f2a384c4fed234aece4d331e00d | refs/heads/master | 2023-05-15T06:31:10.451159 | 2020-06-18T03:00:19 | 2020-06-18T03:00:19 | 140,303,059 | 2 | 0 | MIT | 2018-07-09T15:10:46 | 2018-07-09T15:10:45 | null | UTF-8 | C++ | false | false | 1,437 | hpp | /* The MIT License (MIT)
*
* Copyright (c) 2014-2018 David Medina and Tim Warburton
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
#ifndef OCCA_DEFINES_WINDOWS_HEADER
#define OCCA_DEFINES_WINDOWS_HEADER
# if OCCA_OS == OCCA_WINDOWS_OS
// (OCCA_VS_VERSION == 1900) : MSVC++ 14.x - Visual Studio 2015
// (OCCA_VS_VERSION >= 1910) : MSVC++ 15.x - Visual Studio 2017
#define OCCA_VS_VERSION _MSC_VER
# endif
#endif
| [
"dmed256@gmail.com"
] | dmed256@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.