blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
731891c5ae2739ee69f3bd2697abf442d93746ec | d8effd075768aecbf0a590804e6c94127954d01c | /noz/src/noz.pch.h | 560e45b75bf9d76a5567862100f6f4ac600cc9a5 | [] | no_license | nozgames/noz-cpp | 55c88e0ea92408433ca34399f31007418d46a063 | 0466c938f54edf846c01dd195ce870b366821e99 | refs/heads/master | 2022-11-24T04:20:51.348835 | 2020-07-30T21:42:48 | 2020-07-30T21:42:48 | 283,881,452 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 78 | h | #include <noz/noz.h>
#include <map>
#include <cassert>
#include <algorithm>
| [
"bryan.dube@resultstack.com"
] | bryan.dube@resultstack.com |
33c5d85931d90c30e1657bc20b23d9dbdc09467a | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/69/6d0801a4496433/main.cpp | 7dbe7224f67d5de23322d6fa0b52c959204553c7 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | cpp | #include <iostream>
using namespace std;
#include <x86intrin.h>
#include <stdint.h>
typedef unsigned long long u64_t;
template <typename wtype>
void println_af(const wtype* A,size_t L){
if (L == 0){
cout << "{}" << endl;
return;
}
cout << "{";
L--;
for (size_t c = 0; c < L; c++){
cout << A[c] << ",";
}
cout << A[L] << "}" << endl;
}
__attribute__ ((noinline))
u64_t add_nr(u64_t* T,const u64_t* A,const u64_t* B,size_t L,u64_t cin){
char carry = (char)cin;
for (size_t c = 0; c < L; c++){
carry = _addcarry_u64(carry,A[c],B[c],T + c);
}
return carry;
}
int main(){
u64_t A[10];
u64_t B[10] = {0,0,0,0,0,0,0,0,0,0};
for (int c = 0; c < 10; c++){
A[c] = (u64_t)0 - 1;
}
u64_t carry = 1;
carry = add_nr(A,A,B,10,carry);
println_af(A,10);
cout << carry << endl;
}
| [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
d1cc64a073edb93406b8e5436131c11ec218acd2 | 9be246df43e02fba30ee2595c8cec14ac2b355d1 | /utils/studiomdl/studiomdl.h | 8dad3dcda34f8cb455848b67c4c665d877182784 | [] | no_license | Clepoy3/LeakNet | 6bf4c5d5535b3824a350f32352f457d8be87d609 | 8866efcb9b0bf9290b80f7263e2ce2074302640a | refs/heads/master | 2020-05-30T04:53:22.193725 | 2019-04-12T16:06:26 | 2019-04-12T16:06:26 | 189,544,338 | 18 | 5 | null | 2019-05-31T06:59:39 | 2019-05-31T06:59:39 | null | UTF-8 | C++ | false | false | 26,545 | h | /***
*
* Copyright (c) 1998, Valve LLC. All rights reserved.
*
* This product contains software technology licensed from Id
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
* All Rights Reserved.
*
****/
#include <stdio.h>
#include "basetypes.h"
#include "utlvector.h"
#include "utlsymbol.h"
#include "vector.h"
#include "studio.h"
struct LodScriptData_t;
#define IDSTUDIOHEADER (('T'<<24)+('S'<<16)+('D'<<8)+'I')
// little-endian "IDST"
#define IDSTUDIOSEQHEADER (('Q'<<24)+('S'<<16)+('D'<<8)+'I')
// little-endian "IDSQ"
#define MAXSTUDIOANIMATIONS 2000 // max frames per animation
#define MAXSTUDIOSEQUENCES 512 // total animation sequences
#define MAXSTUDIOSRCBONES 512 // bones allowed at source movement
#define MAXSTUDIOMODELS 32 // sub-models per model
#define MAXSTUDIOBODYPARTS 32
#define MAXSTUDIOMESHES 256
#define MAXSTUDIOEVENTS 1024
#define MAXSTUDIOFLEXKEYS 128
#define MAXSTUDIOFLEXRULES 256
#define MAXSTUDIOBONEWEIGHTS 4
#define MAXSTUDIOCMDS 64
#define MAXSTUDIOMOVEKEYS 64
#define MAXSTUDIOIKRULES 64
#define MAXSTUDIONAME 128
#ifndef EXTERN
#define EXTERN extern
#endif
EXTERN char outname[1024];
EXTERN char g_pPlatformName[1024];
EXTERN qboolean cdset;
EXTERN int numdirs;
EXTERN char cddir[32][MAX_PATH];
EXTERN int numcdtextures;
EXTERN char * cdtextures[16];
EXTERN char fullpath[1024];
EXTERN char rootname[MAXSTUDIONAME]; // name of the root bone
EXTERN float g_defaultscale;
EXTERN float g_currentscale;
EXTERN RadianEuler g_defaultrotation;
EXTERN char defaulttexture[16][MAX_PATH];
EXTERN char sourcetexture[16][MAX_PATH];
EXTERN int numrep;
EXTERN int tag_reversed;
EXTERN int tag_normals;
EXTERN int flip_triangles;
EXTERN float normal_blend;
EXTERN int dump_hboxes;
EXTERN int ignore_warnings;
EXTERN Vector eyeposition;
EXTERN Vector illumposition;
EXTERN int illumpositionset;
EXTERN int gflags;
EXTERN Vector bbox[2];
EXTERN Vector cbox[2];
EXTERN bool g_wrotebbox;
EXTERN bool g_wrotecbox;
EXTERN int maxseqgroupsize;
EXTERN int split_textures;
EXTERN int clip_texcoords;
EXTERN bool g_staticprop;
EXTERN bool g_centerstaticprop;
EXTERN bool g_realignbones;
EXTERN bool g_definebones; // VXP
struct s_includemodel_t
{
char name[MAXSTUDIONAME];
};
EXTERN CUtlVector<s_includemodel_t> g_includemodel;
// Methods associated with the key value text block
extern CUtlVector< char > g_KeyValueText;
int KeyValueTextSize( CUtlVector< char > *pKeyValue );
const char *KeyValueText( CUtlVector< char > *pKeyValue );
extern vec_t Q_rint (vec_t in);
extern void WriteFile (void);
void *kalloc( int num, int size );
struct s_trianglevert_t
{
int vertindex;
int normindex; // index into normal array
int s,t;
float u,v;
};
struct s_boneweight_t
{
int numbones;
int bone[MAXSTUDIOBONEWEIGHTS];
float weight[MAXSTUDIOBONEWEIGHTS];
};
struct s_vertexinfo_t
{
// wtf is this doing here?
int material;
int firstref;
int lastref;
int flexmask;
int numflex;
int flexoffset;
};
struct s_tmpface_t
{
int material;
unsigned long a, b, c;
unsigned long ta, tb, tc;
unsigned long na, nb, nc;
};
struct s_face_t
{
unsigned long a, b, c;
};
//============================================================================
// dstudiobone_t bone[MAXSTUDIOBONES];
struct s_bonefixup_t
{
matrix3x4_t m;
};
EXTERN int g_numbones;
struct s_bonetable_t
{
char name[MAXSTUDIONAME]; // bone name for symbolic links
int parent; // parent bone
bool split;
int bonecontroller; // -1 == 0
Vector pos; // default pos
Vector posscale; // pos values scale
RadianEuler rot; // default pos
Vector rotscale; // rotation values scale
int group; // hitgroup
Vector bmin, bmax; // bounding box
bool bPreDefined; // VXP
matrix3x4_t rawLocalOriginal; // VXP: original transform of preDefined bone
matrix3x4_t rawLocal;
matrix3x4_t srcRealign;
bool bPreAligned; // VXP
matrix3x4_t boneToPose;
int flags;
int proceduralindex;
int physicsBoneIndex;
int surfacePropIndex;
Quaternion qAlignment;
bool bDontCollapse; // VXP
};
EXTERN s_bonetable_t g_bonetable[MAXSTUDIOSRCBONES];
extern int findGlobalBone( const char *name ); // finds a named bone in the global bone table
EXTERN int g_numrenamedbones;
struct s_renamebone_t
{
char from[MAXSTUDIONAME];
char to[MAXSTUDIONAME];
};
EXTERN s_renamebone_t g_renamedbone[MAXSTUDIOSRCBONES];
const char *RenameBone( const char *pName ); // returns new name if available, else return pName.
// VXP
EXTERN int g_numimportbones;
struct s_importbone_t
{
char name[MAXSTUDIONAME];
char parent[MAXSTUDIONAME];
matrix3x4_t rawLocal;
bool bPreAligned;
matrix3x4_t srcRealign;
};
EXTERN s_importbone_t g_importbone[MAXSTUDIOSRCBONES];
struct s_bbox_t
{
char name[MAXSTUDIONAME]; // bone name
char hitboxname[MAXSTUDIONAME]; // hitbox name
int bone;
int group; // hitgroup
int model;
Vector bmin, bmax; // bounding box
};
#define MAXSTUDIOHITBOXSETNAME 64
struct s_hitboxset
{
char hitboxsetname[ MAXSTUDIOHITBOXSETNAME ];
int numhitboxes;
s_bbox_t hitbox[MAXSTUDIOSRCBONES];
};
extern CUtlVector< s_hitboxset > g_hitboxsets;
EXTERN int g_numhitgroups;
struct s_hitgroup_t
{
int models;
int group;
char name[MAXSTUDIONAME]; // bone name
};
EXTERN s_hitgroup_t g_hitgroup[MAXSTUDIOSRCBONES];
struct s_bonecontroller_t
{
char name[MAXSTUDIONAME];
int bone;
int type;
int inputfield;
float start;
float end;
};
EXTERN s_bonecontroller_t g_bonecontroller[MAXSTUDIOSRCBONES];
EXTERN int g_numbonecontrollers;
struct s_screenalignedbone_t
{
char name[MAXSTUDIONAME];
int flags;
};
EXTERN s_screenalignedbone_t g_screenalignedbone[MAXSTUDIOSRCBONES];
EXTERN int g_numscreenalignedbones;
struct s_attachment_t
{
char name[MAXSTUDIONAME];
char bonename[MAXSTUDIONAME];
int bone;
int type;
matrix3x4_t local;
int found; // a owning bone has been flagged
};
#define IS_ABSOLUTE 0x0001
#define IS_RIGID 0x0002
EXTERN s_attachment_t g_attachment[MAXSTUDIOSRCBONES];
EXTERN int g_numattachments;
// VXP
struct s_bonemerge_t
{
char bonename[MAXSTUDIONAME];
};
EXTERN CUtlVector< s_bonemerge_t > g_BoneMerge;
struct s_mouth_t
{
char bonename[MAXSTUDIONAME];
int bone;
Vector forward;
int flexdesc;
};
EXTERN s_mouth_t g_mouth[MAXSTUDIOSRCBONES]; // ?? skins?
EXTERN int g_nummouths;
struct s_node_t
{
char name[MAXSTUDIONAME];
int parent;
};
struct s_bone_t
{
Vector pos;
RadianEuler rot;
};
struct s_linearmove_t
{
int endframe; // frame when pos, rot is valid.
int flags; // type of motion. Only linear, linear accel, and linear decel is allowed
float v0;
float v1;
Vector vector; // movement vector
Vector pos; // final position
RadianEuler rot; // final rotation
};
#define CMD_WEIGHTS 1
#define CMD_SUBTRACT 2
#define CMD_AO 3
#define CMD_MATCH 4
#define CMD_FIXUP 5
#define CMD_ANGLE 6
#define CMD_IKFIXUP 7
#define CMD_IKRULE 8
#define CMD_MOTION 9
#define CMD_REFMOTION 10
#define CMD_DERIVATIVE 11
#define CMD_NOANIMATION 12
#define CMD_LINEARDELTA 13
#define CMD_SPLINEDELTA 14
#define CMD_COMPRESS 15
#define CMD_NUMFRAMES 16
struct s_animation_t;
struct s_ikrule_t;
struct s_motion_t
{
int motiontype;
int iStartFrame;// starting frame to apply motion over
int iEndFrame; // end frame to apply motion over
int iSrcFrame; // frame that matches the "reference" animation
s_animation_t *pRefAnim; // animation to match
int iRefFrame; // reference animation's frame to match
};
struct s_animcmd_t
{
int cmd;
union
{
struct
{
int index;
} weightlist;
struct
{
s_animation_t *ref;
int frame;
int flags;
} subtract;
struct
{
s_animation_t *ref;
int motiontype;
int srcframe;
int destframe;
char *pBonename; // VXP
} ao;
struct
{
s_animation_t *ref;
} match;
struct
{
int start;
int end;
} fixuploop;
struct
{
float angle;
} angle;
struct
{
s_ikrule_t *pRule;
} ikfixup;
struct
{
s_ikrule_t *pRule;
} ikrule;
struct
{
float scale;
} derivative;
struct
{
int flags;
} linear;
struct
{
int frames;
} compress;
struct
{
int frames;
} numframes;
struct s_motion_t motion;
} u;
};
struct s_ikerror_t
{
Vector pos;
Quaternion q;
};
struct s_ikrule_t
{
int chain;
int index;
int type;
int slot;
char bonename[MAXSTUDIONAME];
int bone;
Vector pos;
Quaternion q;
float height;
float floor;
float radius;
int start;
int peak;
int tail;
int end;
int contact;
int numerror;
s_ikerror_t *pError;
// VXP
bool usesequence;
bool usesource;
};
EXTERN int g_numikrules;
EXTERN s_ikrule_t g_ikrule[128];
struct s_source_t;
EXTERN int g_numani;
struct s_animation_t
{
bool isimplied;
int index;
char name[MAXSTUDIONAME];
char filename[MAX_PATH];
float fps;
int startframe;
int endframe;
int flags;
// animations processed (time shifted, linearized, and bone adjusted ) from source animations
s_bone_t *sanim[MAXSTUDIOANIMATIONS]; // [frame][bones];
int motiontype;
int fudgeloop;
int looprestart; // new starting frame for looping animations
// piecewise linear motion
int numpiecewisekeys;
s_linearmove_t piecewisemove[MAXSTUDIOMOVEKEYS];
// default adjustments
Vector adjust;
float scale; // ????
RadianEuler rotation;
s_source_t *source;
Vector bmin;
Vector bmax;
// NA???
int numframes;
int numanim[MAXSTUDIOSRCBONES][6];
mstudioanimvalue_t *anim[MAXSTUDIOSRCBONES][6];
int weightlist;
float weight[MAXSTUDIOSRCBONES];
int numcmds;
s_animcmd_t cmds[MAXSTUDIOCMDS];
int numikrules;
s_ikrule_t ikrule[MAXSTUDIOIKRULES];
};
EXTERN s_animation_t *g_panimation[MAXSTUDIOANIMATIONS];
EXTERN int g_numcmdlists;
struct s_cmdlist_t
{
char name[MAXSTUDIONAME];
int numcmds;
s_animcmd_t cmds[MAXSTUDIOCMDS];
};
EXTERN s_cmdlist_t g_cmdlist[MAXSTUDIOANIMATIONS];
struct s_iklock_t
{
char name[MAXSTUDIONAME];
int chain;
float flPosWeight;
float flLocalQWeight;
};
EXTERN int g_numikautoplaylocks;
EXTERN s_iklock_t g_ikautoplaylock[16];
struct s_event_t
{
int event;
int frame;
char options[64];
};
struct s_autolayer_t
{
char name[MAXSTUDIONAME];
int sequence;
int flags;
float start;
float peak;
float tail;
float end;
};
EXTERN int g_numseq;
struct s_sequence_t
{
char name[MAXSTUDIONAME];
char activityname[MAXSTUDIONAME]; // index into the string table, the name of this activity.
int flags;
// float fps;
// int numframes;
int activity;
int actweight;
int numevents;
s_event_t event[MAXSTUDIOEVENTS];
int numblends;
int groupsize[2];
s_animation_t *panim[MAXSTUDIOBLENDS][MAXSTUDIOBLENDS];
int paramindex[2];
float paramstart[2];
float paramend[2];
int paramattachment[2];
int paramcontrol[2];
float param0[MAXSTUDIOBLENDS]; // [MAXSTUDIOBLENDS];
float param1[MAXSTUDIOBLENDS]; // [MAXSTUDIOBLENDS];
s_animation_t *paramanim; // VXP
s_animation_t *paramcompanim; // VXP
s_animation_t *paramcenter; // VXP
// Vector automovepos[MAXSTUDIOANIMATIONS];
// Vector automoveangle[MAXSTUDIOANIMATIONS];
int seqgroup;
int animindex;
Vector bmin;
Vector bmax;
float fadeintime;
float fadeouttime;
int entrynode;
int exitnode;
int nodeflags;
float entryphase;
float exitphase;
int numikrules;
int numautolayers;
s_autolayer_t autolayer[8];
float weight[MAXSTUDIOSRCBONES];
s_iklock_t iklock[8];
int numiklocks;
CUtlVector< char > KeyValue;
};
EXTERN s_sequence_t g_sequence[MAXSTUDIOSEQUENCES];
EXTERN int g_numseqgroups;
struct s_sequencegroup_t
{
char label[MAXSTUDIONAME];
char name[MAXSTUDIONAME];
};
EXTERN s_sequencegroup_t g_sequencegroup[MAXSTUDIOSEQUENCES];
EXTERN int g_numposeparameters;
struct s_poseparameter_t
{
char name[MAXSTUDIONAME];
float min;
float max;
int flags;
float loop;
};
EXTERN s_poseparameter_t g_pose[32]; // FIXME: this shouldn't be hard coded
EXTERN int g_numxnodes;
EXTERN char *g_xnodename[100];
EXTERN int g_xnode[100][100];
EXTERN int g_numxnodeskips;
EXTERN int g_xnodeskip[10000][2];
struct rgb_t
{
byte r, g, b;
};
struct rgb2_t
{
float r, g, b, a;
};
// FIXME: what about texture overrides inline with loading models
struct s_texture_t
{
char name[MAX_PATH];
int flags;
int parent;
int material;
float width;
float height;
float dPdu;
float dPdv;
};
EXTERN s_texture_t g_texture[MAXSTUDIOSKINS];
EXTERN int g_numtextures;
EXTERN int g_material[MAXSTUDIOSKINS]; // link into texture array
EXTERN int g_nummaterials;
EXTERN float g_gamma;
EXTERN int g_numskinref;
EXTERN int g_numskinfamilies;
EXTERN int g_skinref[256][MAXSTUDIOSKINS]; // [skin][skinref], returns texture index
EXTERN int g_numtexturegroups;
EXTERN int g_numtexturelayers[32];
EXTERN int g_numtexturereps[32];
EXTERN int g_texturegroup[32][32][32];
struct s_mesh_t
{
int numvertices;
int vertexoffset;
int numfaces;
int faceoffset;
};
struct s_vertanim_t
{
int vertex;
Vector pos;
Vector normal;
};
// raw off-disk source files. Raw data should be not processed.
struct s_source_t
{
char filename[MAX_PATH];
int time; // time stamp
// local skeleton hierarchy
int numbones;
s_node_t localBone[MAXSTUDIOSRCBONES];
matrix3x4_t boneToPose[MAXSTUDIOSRCBONES]; // converts bone local data into initial pose data
// bone remapping
int boneref[MAXSTUDIOSRCBONES]; // is local bone (or child) referenced with a vertex
int boneLocalToGlobal[MAXSTUDIOSRCBONES]; // bonemap : local bone to world bone mapping
int boneGlobalToLocal[MAXSTUDIOSRCBONES]; // boneimap : world bone to local bone mapping
int texmap[MAXSTUDIOSKINS*4]; // map local MAX materials to unique textures
// per material mesh
int nummeshes;
int meshindex[MAXSTUDIOSKINS]; // mesh to skin index
s_mesh_t mesh[MAXSTUDIOSKINS];
// model global copy of vertices
int numvertices;
s_boneweight_t *localBoneweight; // vertex info about local bone weighting
s_boneweight_t *globalBoneweight; // vertex info about global bone weighting
s_vertexinfo_t *vertexInfo; // generic vertex info
Vector* vertex;
Vector* normal;
Vector4D* tangentS;
Vector2D* texcoord;
int * topLODMeshVertIndex; // garymcthack - need to make sure this starts off NULL
int numfaces;
s_face_t *face; // vertex indexs per face
// raw skeletal animation
int numframes;
int startframe;
int endframe;
s_bone_t *rawanim[MAXSTUDIOANIMATIONS]; // [frame][bones];
// vertex animation
int *vanim_mapcount; // local verts map to N target verts
int **vanim_map; // local vertices to target vertices mapping list
int *vanim_flag; // local vert does animate
int numvanims[MAXSTUDIOANIMATIONS];
s_vertanim_t *vanim[MAXSTUDIOANIMATIONS]; // [frame][vertex]
// texture coord animation
// eyeball placement
};
EXTERN int g_numsources;
EXTERN s_source_t *g_source[MAXSTUDIOSEQUENCES];
struct s_eyeballvert_t
{
int vertex; // vertex index
int texcoord; // texture coordinate index
int normal; // normal index
};
struct s_eyeball_t
{
char name[MAXSTUDIONAME];
int index;
int bone;
Vector org;
float zoffset;
float radius;
Vector up;
Vector forward;
int mesh;
int iris_material;
float iris_scale;
int glint_material; // !!!
int upperflexdesc[3];
int lowerflexdesc[3];
float uppertarget[3];
float lowertarget[3];
int upperflex;
int lowerflex;
int upperlidflexdesc;
int lowerlidflexdesc;
};
struct s_model_t
{
char name[MAXSTUDIONAME];
char filename[MAX_PATH];
// needs local scaling and rotation paramaters
s_source_t *source; // index into source table
float scale; // UNUSED
float boundingradius;
Vector boundingbox[MAXSTUDIOSRCBONES][2];
int numattachments;
s_attachment_t attachment[32];
int numeyeballs;
s_eyeball_t eyeball[4];
int numflexes;
int flexoffset;
};
EXTERN int g_nummodels;
EXTERN int g_nummodelsbeforeLOD;
EXTERN s_model_t *g_model[MAXSTUDIOMODELS];
struct s_flexdesc_t
{
char FACS[MAXSTUDIONAME]; // FACS identifier
};
EXTERN int g_numflexdesc;
EXTERN s_flexdesc_t g_flexdesc[MAXSTUDIOFLEXDESC];
struct s_flexcontroller_t
{
char name[MAXSTUDIONAME];
char type[MAXSTUDIONAME];
float min;
float max;
};
EXTERN int g_numflexcontrollers;
EXTERN s_flexcontroller_t g_flexcontroller[MAXSTUDIOFLEXCTRL];
struct s_flexkey_t
{
int flexdesc;
s_source_t *source; // index into source table
int imodel;
int frame;
float target0;
float target1;
float target2;
float target3;
int original;
float split;
// extracted and remapped vertex animations
int numvanims;
s_vertanim_t *vanim;
int weighttable;
};
EXTERN int g_numflexkeys;
EXTERN s_flexkey_t g_flexkey[MAXSTUDIOFLEXKEYS];
EXTERN s_flexkey_t *g_defaultflexkey;
#define MAX_OPS 128
struct s_flexop_t
{
int op;
union {
int index;
float value;
} d;
};
struct s_flexrule_t
{
int flex;
int numops;
s_flexop_t op[MAX_OPS];
};
EXTERN int g_numflexrules;
EXTERN s_flexrule_t g_flexrule[MAXSTUDIOFLEXRULES];
EXTERN Vector g_defaultadjust;
struct s_bodypart_t
{
char name[MAXSTUDIONAME];
int nummodels;
int base;
s_model_t *pmodel[MAXSTUDIOMODELS];
};
EXTERN int g_numbodyparts;
EXTERN s_bodypart_t g_bodypart[MAXSTUDIOBODYPARTS];
struct s_weightlist_t
{
char name[MAXSTUDIONAME];
int numbones;
char bonename[16][MAXSTUDIONAME];
float boneweight[16];
float weight[MAXSTUDIOBONES]; // unified weightlist
};
EXTERN int g_numweightlist;
EXTERN s_weightlist_t g_weightlist[16];
struct s_iklink_t
{
int bone;
Vector contact;
};
struct s_ikchain_t
{
char name[MAXSTUDIONAME];
char bonename[MAXSTUDIONAME];
int axis;
float value;
int numlinks;
int link[10]; // hip, knee, ankle, toes...
float height;
float radius;
float floor;
};
EXTERN int g_numikchains;
EXTERN s_ikchain_t g_ikchain[16];
struct s_axisinterpbone_t
{
int flags;
char bonename[MAXSTUDIONAME];
int bone;
char controlname[MAXSTUDIONAME];
int control;
int axis;
Vector pos[6];
Quaternion quat[6];
};
EXTERN int g_numaxisinterpbones;
EXTERN s_axisinterpbone_t g_axisinterpbones[MAXSTUDIOBONES];
EXTERN int g_axisinterpbonemap[MAXSTUDIOBONES]; // map used axisinterpbone's to source axisinterpbone's
struct s_quatinterpbone_t
{
int flags;
char bonename[MAXSTUDIONAME];
int bone;
char parentname[MAXSTUDIONAME];
// int parent;
char controlparentname[MAXSTUDIONAME];
// int controlparent;
char controlname[MAXSTUDIONAME];
int control;
int numtriggers;
Vector size;
Vector basepos;
float percentage;
float tolerance[32];
Quaternion trigger[32];
Vector pos[32];
Quaternion quat[32];
};
EXTERN int g_numquatinterpbones;
EXTERN s_quatinterpbone_t g_quatinterpbones[MAXSTUDIOBONES];
EXTERN int g_quatinterpbonemap[MAXSTUDIOBONES]; // map used quatinterpbone's to source axisinterpbone's
struct s_forcedhierarchy_t
{
char parentname[MAXSTUDIONAME];
char childname[MAXSTUDIONAME];
char subparentname[MAXSTUDIONAME];
};
EXTERN int g_numforcedhierarchy;
EXTERN s_forcedhierarchy_t g_forcedhierarchy[MAXSTUDIOBONES];
struct s_forcedrealign_t
{
char name[MAXSTUDIONAME];
RadianEuler rot;
};
EXTERN int g_numforcedrealign;
EXTERN s_forcedrealign_t g_forcedrealign[MAXSTUDIOBONES];
struct s_limitrotation_t
{
char name[MAXSTUDIONAME];
int numseq;
char *sequencename[64];
};
EXTERN int g_numlimitrotation;
EXTERN s_limitrotation_t g_limitrotation[MAXSTUDIOBONES];
extern int BuildTris (s_trianglevert_t (*x)[3], s_mesh_t *y, byte **ppdata );
EXTERN int is_v1support;
int OpenGlobalFile( char *src );
s_source_t *Load_Source( char const *filename, const char *ext, bool reverse = false );
extern int Load_VRM ( s_source_t *psource );
extern int Load_SMD ( s_source_t *psource );
extern int Load_VTA ( s_source_t *psource );
extern void Build_Reference( s_source_t *psource);
extern int Grab_Nodes( s_node_t *pnodes );
extern void Grab_Animation( s_source_t *psource );
extern int lookup_texture( char *texturename );
extern int use_texture_as_material( int textureindex );
extern int material_to_texture( int material );
extern int LookupAttachment( char *name );
extern void ClearModel (void);
extern void SimplifyModel (void);
extern void CollapseBones (void);
extern void Sys_Error (char *error, ...);
extern void adjust_vertex( float *org );
extern void scale_vertex( Vector &org );
extern void clip_rotations( RadianEuler& rot );
extern void clip_rotations( Vector& rot );
extern void *kalloc( int num, int size );
extern void kmemset( void *ptr, int value, int size );
extern char *stristr( const char *string, const char *string2 );
#define strcpyn( a, b ) strncpy( a, b, sizeof( a ) )
bool CompareNormalFuzzy( Vector n1, Vector n2 );
bool ComparePositionFuzzy( const Vector &p1, const Vector &p2 );
bool CompareTexCoordsFuzzy( const Vector2D &t1, const Vector2D &t2 );
bool CompareBoneWeights( const s_boneweight_t &b1, const s_boneweight_t &b2 );
bool CompareBoneWeightsFuzzy( const s_boneweight_t &b1, const s_boneweight_t &b2 );
void CalcBoneTransforms( s_animation_t *panimation, int frame, matrix3x4_t* pBoneToWorld );
void CalcBoneTransforms( s_animation_t *panimation, s_animation_t *pbaseanimation, int frame, matrix3x4_t* pBoneToWorld ); // VXP
// Returns surface property for a given joint
char* GetSurfaceProp ( char const* pJointName );
int GetContents ( char const* pJointName );
char* GetDefaultSurfaceProp ( );
int GetDefaultContents( );
// Did we read 'end'
bool IsEnd( char const* pLine );
// Parses an LOD command
void Cmd_LOD( char const *cmdname );
void Cmd_ShadowLOD( void );
// Fixes up the LOD source files
void FixupLODSources();
// Get model LOD source
s_source_t* GetModelLODSource( const char *pModelName,
const LodScriptData_t& scriptLOD, bool* pFound );
void LoadLODSources( void );
void ConvertBoneTreeCollapsesToReplaceBones( void );
void UnifyLODs( void );
void SpewBoneUsageStats( void );
void MarkParentBoneLODs( void );
/*
=================
=================
*/
extern char g_szFilename[1024];
extern FILE *g_fpInput;
extern char g_szLine[4096];
extern int g_iLinecount;
extern int g_min_faces, g_max_faces;
extern float g_min_resolution, g_max_resolution;
EXTERN int g_numverts;
EXTERN Vector g_vertex[MAXSTUDIOVERTS];
EXTERN mstudioboneweight_t g_bone[MAXSTUDIOVERTS];
EXTERN int g_numnormals;
EXTERN Vector g_normal[MAXSTUDIOVERTS];
EXTERN int g_numtexcoords;
EXTERN Vector2D g_texcoord[MAXSTUDIOVERTS];
EXTERN int g_numfaces;
EXTERN s_tmpface_t g_face[MAXSTUDIOTRIANGLES];
EXTERN s_face_t g_src_uface[MAXSTUDIOTRIANGLES]; // max res unified faces
struct v_unify_t
{
int refcount;
int lastref;
int firstref;
int v;
int m;
int n;
int t;
v_unify_t *next;
};
EXTERN v_unify_t *v_list[MAXSTUDIOVERTS];
EXTERN v_unify_t v_listdata[MAXSTUDIOVERTS];
EXTERN int numvlist;
int SortAndBalanceBones( int iCount, int iMaxCount, int bones[], float weights[] );
extern void BuildIndividualMeshes( s_source_t *psource );
//-----------------------------------------------------------------------------
// A little class used to deal with replacement commands
//-----------------------------------------------------------------------------
class CLodScriptReplacement_t
{
public:
void SetSrcName( const char *pSrcName )
{
if( m_pSrcName )
{
delete [] m_pSrcName;
}
m_pSrcName = new char[strlen( pSrcName ) + 1];
strcpy( m_pSrcName, pSrcName );
}
void SetDstName( const char *pDstName )
{
if( m_pDstName )
{
delete [] m_pDstName;
}
m_pDstName = new char[strlen( pDstName ) + 1];
strcpy( m_pDstName, pDstName );
}
const char *GetSrcName( void ) const
{
return m_pSrcName;
}
const char *GetDstName( void ) const
{
return m_pDstName;
}
CLodScriptReplacement_t()
{
m_pSrcName = NULL;
m_pDstName = NULL;
m_pSource = 0;
}
~CLodScriptReplacement_t()
{
delete [] m_pSrcName;
delete [] m_pDstName;
}
s_source_t* m_pSource;
private:
char *m_pSrcName;
char *m_pDstName;
bool m_bReverse;
};
struct LodScriptData_t
{
public:
float switchValue;
CUtlVector<CLodScriptReplacement_t> modelReplacements;
CUtlVector<CLodScriptReplacement_t> boneReplacements;
CUtlVector<CLodScriptReplacement_t> boneTreeCollapses;
CUtlVector<CLodScriptReplacement_t> materialReplacements;
CUtlVector<CLodScriptReplacement_t> meshRemovals;
void EnableFacialAnimation( bool val )
{
m_bFacialAnimation = val;
}
bool GetFacialAnimationEnabled() const
{
return m_bFacialAnimation;
}
LodScriptData_t()
{
m_bFacialAnimation = true;
}
private:
bool m_bFacialAnimation;
};
EXTERN CUtlVector<LodScriptData_t> g_ScriptLODs;
extern bool g_collapse_bones;
extern bool g_quiet;
extern bool g_bCheckLengths;
extern bool g_bPrintBones;
extern bool g_bPerf;
extern bool g_bFast;
extern bool g_bLockBoneLengths; // VXP
extern bool g_bOverridePreDefinedBones; // VXP
EXTERN int g_numcollapse;
EXTERN char *g_collapse[MAXSTUDIOSRCBONES];
extern float GetCollisionModelMass(); | [
"uavxp29@gmail.com"
] | uavxp29@gmail.com |
2cf75e5f6c485a2f4fa8f69883ddcd58facf9580 | 8cc95381e7c810f0ee4921fb2e6140748dd3ea57 | /300_399/384_shuffle_vec.h | c1371ed3c5c4db3d60bead0b5a4169cb0ff1921c | [] | no_license | wangchenwc/leetcode_cpp | 5691fd6091050cd09ececfa94c02497f78b88293 | 6c0c847f25710781f40a2817cb0e0152002f1755 | refs/heads/master | 2020-04-22T02:36:02.836904 | 2018-11-08T06:13:00 | 2018-11-08T06:13:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 931 | h | //
// 384_shuffle_vec.h
// cpp_code
//
// Created by zhongyingli on 2018/8/13.
// Copyright © 2018 zhongyingli. All rights reserved.
//
#ifndef _84_shuffle_vec_h
#define _84_shuffle_vec_h
class Solution {
public:
Solution(vector<int> nums): v(nums) {}
/** Resets the array to its original configuration and return it. */
vector<int> reset() {
return v;
}
/** Returns a random shuffling of the array. */
vector<int> shuffle() {
vector<int> res = v;
for (int i = 0; i < res.size(); ++i) {
int t = i + rand() % (res.size() - i);
swap(res[i], res[t]);
}
return res;
}
private:
vector<int> v;
};
/**
* Your Solution object will be instantiated and called as such:
* Solution obj = new Solution(nums);
* vector<int> param_1 = obj.reset();
* vector<int> param_2 = obj.shuffle();
*/
#endif /* _84_shuffle_vec_h */
| [
"lizhongying@ofo.com"
] | lizhongying@ofo.com |
84e7b732e675e68acbb5670880b833ad2db9fe72 | 3fafad978d67d18dd83b2367b9b50335b19abab1 | /GetAllWordInstances/CWordWindow.h | 8c87c81af5e1d9c922f02c050cc54141ca3bc337 | [] | no_license | dongfeng86/MFC-Practice | f14b6c40fc06e447507ebd45eaec6e42a411a752 | 2b34b2e69232d729fa9ac540907da84af9eb97b5 | refs/heads/master | 2023-08-30T16:55:55.106300 | 2023-08-24T07:46:45 | 2023-08-24T07:46:45 | 202,539,652 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 15,937 | h | // 从类型库向导中用“添加类”创建的计算机生成的 IDispatch 包装器类
// CWordWindow 包装器类
class CWordWindow : public COleDispatchDriver
{
public:
CWordWindow() {} // 调用 COleDispatchDriver 默认构造函数
CWordWindow(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CWordWindow(const CWordWindow& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// 特性
public:
// 操作
public:
// Window 方法
public:
LPDISPATCH get_Application()
{
LPDISPATCH result;
InvokeHelper(0x3e8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
long get_Creator()
{
long result;
InvokeHelper(0x3e9, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Parent()
{
LPDISPATCH result;
InvokeHelper(0x3ea, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_ActivePane()
{
LPDISPATCH result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Document()
{
LPDISPATCH result;
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Panes()
{
LPDISPATCH result;
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Selection()
{
LPDISPATCH result;
InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
long get_Left()
{
long result;
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_Left(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x5, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_Top()
{
long result;
InvokeHelper(0x6, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_Top(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x6, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_Width()
{
long result;
InvokeHelper(0x7, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_Width(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x7, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_Height()
{
long result;
InvokeHelper(0x8, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_Height(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x8, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_Split()
{
BOOL result;
InvokeHelper(0x9, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_Split(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x9, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_SplitVertical()
{
long result;
InvokeHelper(0xa, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_SplitVertical(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0xa, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
CString get_Caption()
{
CString result;
InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, nullptr);
return result;
}
void put_Caption(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR;
InvokeHelper(0x0, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_WindowState()
{
long result;
InvokeHelper(0xb, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_WindowState(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0xb, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayRulers()
{
BOOL result;
InvokeHelper(0xc, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayRulers(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0xc, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayVerticalRuler()
{
BOOL result;
InvokeHelper(0xd, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayVerticalRuler(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0xd, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
LPDISPATCH get_View()
{
LPDISPATCH result;
InvokeHelper(0xe, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
long get_Type()
{
long result;
InvokeHelper(0xf, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Next()
{
LPDISPATCH result;
InvokeHelper(0x10, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
LPDISPATCH get_Previous()
{
LPDISPATCH result;
InvokeHelper(0x11, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
long get_WindowNumber()
{
long result;
InvokeHelper(0x12, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
BOOL get_DisplayVerticalScrollBar()
{
BOOL result;
InvokeHelper(0x13, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayVerticalScrollBar(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x13, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayHorizontalScrollBar()
{
BOOL result;
InvokeHelper(0x14, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayHorizontalScrollBar(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x14, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
float get_StyleAreaWidth()
{
float result;
InvokeHelper(0x15, DISPATCH_PROPERTYGET, VT_R4, (void*)&result, nullptr);
return result;
}
void put_StyleAreaWidth(float newValue)
{
static BYTE parms[] = VTS_R4;
InvokeHelper(0x15, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayScreenTips()
{
BOOL result;
InvokeHelper(0x16, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayScreenTips(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x16, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_HorizontalPercentScrolled()
{
long result;
InvokeHelper(0x17, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_HorizontalPercentScrolled(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x17, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_VerticalPercentScrolled()
{
long result;
InvokeHelper(0x18, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_VerticalPercentScrolled(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x18, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DocumentMap()
{
BOOL result;
InvokeHelper(0x19, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DocumentMap(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x19, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_Active()
{
BOOL result;
InvokeHelper(0x1a, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
long get_DocumentMapPercentWidth()
{
long result;
InvokeHelper(0x1b, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_DocumentMapPercentWidth(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x1b, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_Index()
{
long result;
InvokeHelper(0x1c, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
long get_IMEMode()
{
long result;
InvokeHelper(0x1e, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_IMEMode(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x1e, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
void Activate()
{
InvokeHelper(0x64, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
void Close(VARIANT * SaveChanges, VARIANT * RouteDocument)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x66, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, SaveChanges, RouteDocument);
}
void LargeScroll(VARIANT * Down, VARIANT * Up, VARIANT * ToRight, VARIANT * ToLeft)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x67, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Down, Up, ToRight, ToLeft);
}
void SmallScroll(VARIANT * Down, VARIANT * Up, VARIANT * ToRight, VARIANT * ToLeft)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x68, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Down, Up, ToRight, ToLeft);
}
LPDISPATCH NewWindow()
{
LPDISPATCH result;
InvokeHelper(0x69, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, nullptr);
return result;
}
void PrintOutOld(VARIANT * Background, VARIANT * Append, VARIANT * Range, VARIANT * OutputFileName, VARIANT * From, VARIANT * To, VARIANT * Item, VARIANT * Copies, VARIANT * Pages, VARIANT * PageType, VARIANT * PrintToFile, VARIANT * Collate, VARIANT * ActivePrinterMacGX, VARIANT * ManualDuplexPrint)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x6b, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Background, Append, Range, OutputFileName, From, To, Item, Copies, Pages, PageType, PrintToFile, Collate, ActivePrinterMacGX, ManualDuplexPrint);
}
void PageScroll(VARIANT * Down, VARIANT * Up)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x6c, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Down, Up);
}
void SetFocus()
{
InvokeHelper(0x6d, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
LPDISPATCH RangeFromPoint(long x, long y)
{
LPDISPATCH result;
static BYTE parms[] = VTS_I4 VTS_I4;
InvokeHelper(0x6e, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms, x, y);
return result;
}
void ScrollIntoView(LPDISPATCH obj, VARIANT * Start)
{
static BYTE parms[] = VTS_DISPATCH VTS_PVARIANT;
InvokeHelper(0x6f, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, obj, Start);
}
void GetPoint(long * ScreenPixelsLeft, long * ScreenPixelsTop, long * ScreenPixelsWidth, long * ScreenPixelsHeight, LPDISPATCH obj)
{
static BYTE parms[] = VTS_PI4 VTS_PI4 VTS_PI4 VTS_PI4 VTS_DISPATCH;
InvokeHelper(0x70, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, ScreenPixelsLeft, ScreenPixelsTop, ScreenPixelsWidth, ScreenPixelsHeight, obj);
}
void PrintOut2000(VARIANT * Background, VARIANT * Append, VARIANT * Range, VARIANT * OutputFileName, VARIANT * From, VARIANT * To, VARIANT * Item, VARIANT * Copies, VARIANT * Pages, VARIANT * PageType, VARIANT * PrintToFile, VARIANT * Collate, VARIANT * ActivePrinterMacGX, VARIANT * ManualDuplexPrint, VARIANT * PrintZoomColumn, VARIANT * PrintZoomRow, VARIANT * PrintZoomPaperWidth, VARIANT * PrintZoomPaperHeight)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x1bc, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Background, Append, Range, OutputFileName, From, To, Item, Copies, Pages, PageType, PrintToFile, Collate, ActivePrinterMacGX, ManualDuplexPrint, PrintZoomColumn, PrintZoomRow, PrintZoomPaperWidth, PrintZoomPaperHeight);
}
long get_UsableWidth()
{
long result;
InvokeHelper(0x1f, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
long get_UsableHeight()
{
long result;
InvokeHelper(0x20, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
BOOL get_EnvelopeVisible()
{
BOOL result;
InvokeHelper(0x21, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_EnvelopeVisible(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x21, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayRightRuler()
{
BOOL result;
InvokeHelper(0x23, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayRightRuler(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x23, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_DisplayLeftScrollBar()
{
BOOL result;
InvokeHelper(0x22, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_DisplayLeftScrollBar(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x22, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
BOOL get_Visible()
{
BOOL result;
InvokeHelper(0x24, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_Visible(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x24, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
void PrintOut(VARIANT * Background, VARIANT * Append, VARIANT * Range, VARIANT * OutputFileName, VARIANT * From, VARIANT * To, VARIANT * Item, VARIANT * Copies, VARIANT * Pages, VARIANT * PageType, VARIANT * PrintToFile, VARIANT * Collate, VARIANT * ActivePrinterMacGX, VARIANT * ManualDuplexPrint, VARIANT * PrintZoomColumn, VARIANT * PrintZoomRow, VARIANT * PrintZoomPaperWidth, VARIANT * PrintZoomPaperHeight)
{
static BYTE parms[] = VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT;
InvokeHelper(0x1bd, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, Background, Append, Range, OutputFileName, From, To, Item, Copies, Pages, PageType, PrintToFile, Collate, ActivePrinterMacGX, ManualDuplexPrint, PrintZoomColumn, PrintZoomRow, PrintZoomPaperWidth, PrintZoomPaperHeight);
}
void ToggleShowAllReviewers()
{
InvokeHelper(0x1be, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
BOOL get_Thumbnails()
{
BOOL result;
InvokeHelper(0x25, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_Thumbnails(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x25, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_ShowSourceDocuments()
{
long result;
InvokeHelper(0x26, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_ShowSourceDocuments(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x26, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
void ToggleRibbon()
{
InvokeHelper(0x1bf, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
long get_Hwnd()
{
long result;
InvokeHelper(0x27, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
void put_DispLog(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR;
InvokeHelper(0x28, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
void put_DispLogPage(long newValue)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x29, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
void EndDispLog()
{
InvokeHelper(0x71, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
void DispLogDirtyPage(long iPage)
{
static BYTE parms[] = VTS_I4;
InvokeHelper(0x72, DISPATCH_METHOD, VT_EMPTY, nullptr, parms, iPage);
}
void DispLogUpdateWwd()
{
InvokeHelper(0x73, DISPATCH_METHOD, VT_EMPTY, nullptr, nullptr);
}
// Window 属性
public:
};
| [
"115949168@qq.com"
] | 115949168@qq.com |
1611ddace582bbcb234f978cd2e521fdc1dbe5a6 | d78c9a394ded0f6d3ca8fd458e079c3bc3aa3f7d | /border.cpp | d3a11511fc7acccc90b311e478bb2e270545a747 | [] | no_license | Prinkagupta/HTML-CSS-Code-Generator | 49ca0ea984503199818f9a5d9ec3f52d8c220dff | fbe30f3a7adf9d366270c05f2e839ba9b9f21765 | refs/heads/master | 2021-05-29T10:51:28.434796 | 2015-09-18T10:47:51 | 2015-09-18T10:47:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,235 | cpp | #include "border.h"
#include "ui_border.h"
#include<QtCore/QFile>
#include<QtCore/QTextStream>
border::border(QWidget *parent) :
QDialog(parent),
ui(new Ui::border)
{
ui->setupUi(this);
ui->cBBorderStyle->addItem("Solid");
ui->cBBorderStyle->addItem("Dotted");
ui->cBBorderStyle->addItem("Double");
ui->cBBorderStyle->addItem("Dashed");
ui->cBBorderColour->addItem("Aqua");
ui->cBBorderColour->addItem("Blue");
ui->cBBorderColour->addItem("Violet");
ui->cBBorderColour->addItem("Pink");
ui->cBBorderColour->addItem("Lime");
ui->cBBorderColour->addItem("Orange");
ui->cBBorderColour->addItem("Red");
ui->cBBorderColour->addItem("Turquoise");
ui->cBBorderColour->addItem("White");
ui->cBBorderColour->addItem("Yellow");
ui->tEBorderWidth->setText("10");
}
border::~border()
{
delete ui;
}
void border::on_backButton_clicked()
{
this->close();
}
void border::on_submitButton_clicked()
{
ui->doneLabel->setText("SUBMITTED");
storeBorderStyle();
storeBorderColour();
storeBorderWidth();
}
void border::storeBorderStyle(){
QFile borderStyle("border.txt");
borderStyle.open(QFile::WriteOnly|QIODevice::Text);
QTextStream borderStyleStream(&borderStyle);
QString borderStyleString = ui->cBBorderStyle->currentText();
if(borderStyleString=="Dotted")
borderStyleStream<<"border-style:dotted;\n";
if(borderStyleString=="Solid")
borderStyleStream<<"border-style:solid;\n";
if(borderStyleString=="Double")
borderStyleStream<<"border-style:double;\n";
if(borderStyleString=="Dashed")
borderStyleStream<<"border-style:dashed;\n";
borderStyle.close();
}
void border::storeBorderColour(){
QFile borderColour("border.txt");
borderColour.open(QFile::Append|QIODevice::Text);
QTextStream borderColourStream(&borderColour);
QString borderColourString = ui->cBBorderColour->currentText();
if(borderColourString=="Aqua")
borderColourStream<<"border-color:#00FFFF;\n";
if(borderColourString=="Blue")
borderColourStream<<"border-color:#0000FF;\n";
if(borderColourString=="Violet")
borderColourStream<<"border-color:#EE82EE;\n";
if(borderColourString=="Pink")
borderColourStream<<"border-color:#FF69B4;\n";
if(borderColourString=="Lime")
borderColourStream<<"border-color:#00FF00;\n";
if(borderColourString=="Orange")
borderColourStream<<"border-color:#FFA500;\n";
if(borderColourString=="Red")
borderColourStream<<"border-color:#FF0000;\n";
if(borderColourString=="Turquoise")
borderColourStream<<"border-color:#40E0D0;\n";
if(borderColourString=="White")
borderColourStream<<"border-color:#FFFFFF;\n";
if(borderColourString=="Yellow")
borderColourStream<<"border-color:#FFFF00;\n";
borderColour.close();
}
void border::storeBorderWidth(){
QFile borderWidth("border.txt");
borderWidth.open(QFile::Append|QIODevice::Text);
QTextStream borderWidthStream(&borderWidth);
QString borderWidthString =ui->tEBorderWidth->toPlainText();
borderWidthStream<<"border-width:"<<borderWidthString<<"px;";
borderWidth.close();
}
| [
"prinkamodi@gmail.com"
] | prinkamodi@gmail.com |
fb164f158e040c1572f8a28ed7ccdaf4f5b9153e | 13bfcfd7492f3f4ee184aeafd0153a098e0e2fa5 | /TIOJ/1248.cpp | 7b978137d91f69417ef38aa4967605c49c991015 | [] | no_license | jqk6/CodeArchive | fc59eb3bdf60f6c7861b82d012d298f2854d7f8e | aca7db126e6e6f24d0bbe667ae9ea2c926ac4a5f | refs/heads/master | 2023-05-05T09:09:54.032436 | 2021-05-20T07:10:02 | 2021-05-20T07:10:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,981 | cpp | #pragma GCC optimize("Ofast")
#pragma loop_opt(on)
#include<cstdio>
#include<cstring>
const int S = 1<<20;
inline char readchar(){
static char buf[S], *p = buf, *q = buf;
if(p==q&&(q=(p=buf)+fread(buf,1,S,stdin))==buf) return EOF;
return *p++;
}
#define BASE 10000
#define BASELEN 4
char inbuf[1000];
struct bigint{
int val[60], len;
bool sign;
bigint(){
val[0] = 0;
len = 1;
sign = false;
}
bool get(){
if(scanf("%s", inbuf) == EOF) return false;
sign = false;
len = -1;
for(int l = strlen(inbuf)-1, cnt = 0, d = 1; l >= 0; --l){
if(cnt == 0) ++len, val[len] = 0, d = 1;
val[len] += (inbuf[l] ^ '0') * d, d *= 10;
++cnt;
if(cnt == BASELEN) cnt = 0;
}
++len;
return true;
}
void print(){
if(sign) putchar('-');
int l = len-1;
printf("%d", val[l--]);
while(l >= 0) printf("%04d", val[l--]);
}
bool operator<(const bigint &rhs){
if(sign != rhs.sign) return sign > rhs.sign;
if(len != rhs.len) return (len < rhs.len) ^ (!sign);
for(int i = len-1; i >= 0; --i)
if(val[i] != rhs.val[i]) return (val[i] < rhs.val[i]) ^ (!sign);
return false;
}
void trim(){
while(len > 0 and val[len-1] == 0) --len;
if(len == 0) len = 1, sign = false;
}
};
bigint add(bigint a, bigint b){
return bigint();
}
bigint sub(bigint a, bigint b){
if(a < b){
bigint c = sub(b, a);
c.sign = true;
return c;
}
return bigint();
}
bigint mul(bigint a, bigint b){
return bigint();
}
bigint div(bigint a, bigint b){
return bigint();
}
bigint mod(bigint a, bigint b){
bigint c = div(a, b);
bigint d = mul(b, c);
return sub(a, d);
}
bigint a, b, c, d;
char move;
int main(){
while(a.get()){
move = 0;
while(move!='+' and move!='-' and move!='*' and move!='/') move = getchar();
b.get();
if(move == '+') c = add(a, b);
else if(move == '-') c = sub(a, b);
else if(move == '8') c = mul(a, b);
else if(move == '/') c = div(a, b), d = mod(a, b);
c.print();
if(move == '/') printf("..."), d.print();
puts("");
}
} | [
"froghackervirus@gmail.com"
] | froghackervirus@gmail.com |
06f0317ed2f03157c857bf4079390d8265c3e23d | 2e0d4ed544f8e370d1dd0010370655358ed02660 | /Defren/lsg/AnimationNode.h | a1e32b64a0976bfc42f1ac7e359a5721a53b2f29 | [] | no_license | lucaas/Defren | 0e2370a7612fdaf24464bc4e8915de77b78915e2 | 79882658adefe924b5e415d978b198e121c37695 | refs/heads/master | 2020-04-05T23:25:50.747862 | 2011-06-06T21:38:18 | 2011-06-06T21:38:18 | 1,640,162 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 147 | h | #pragma once
#include "Node.h"
class AnimationNode : public Node
{
public:
AnimationNode(void);
~AnimationNode(void);
void render(void);
};
| [
"lucaaas@gmail.com"
] | lucaaas@gmail.com |
187c1314a496da6f2793b9bc4fe2e7171b242ed0 | 8df5cf0ae46a719174218110b83b87217be4068d | /qtTeamTalk/userinfodlg.h | 6523d0626f2f654f4797e9567b337b1874e93de2 | [] | no_license | androidlearners/TeamTalk5 | 7aad741554c3d6a42b7881e86adaed43d38e79c4 | 5ce4a042318d696b01051302f37dc08afaee9937 | refs/heads/master | 2020-12-25T21:44:49.112147 | 2014-11-04T07:01:15 | 2014-11-04T07:01:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 909 | h | /*
* Copyright (c) 2005-2014, BearWare.dk
*
* Contact Information:
*
* Bjoern D. Rasmussen
* Skanderborgvej 40 4-2
* DK-8000 Aarhus C
* Denmark
* Email: contact@bearware.dk
* Phone: +45 20 20 54 59
* Web: http://www.bearware.dk
*
* This source code is part of the TeamTalk 5 SDK owned by
* BearWare.dk. All copyright statements may not be removed
* or altered from any source distribution. If you use this
* software in a product, an acknowledgment in the product
* documentation is required.
*
*/
#ifndef USERINFODLG_H
#define USERINFODLG_H
#include "common.h"
#include "ui_userinfo.h"
class UserInfoDlg : public QDialog
{
Q_OBJECT
public:
UserInfoDlg(int userid, QWidget * parent = 0);
protected:
void timerEvent(QTimerEvent *event);
private:
int m_userid;
Ui::UserInfoDlg ui;
void updateUser();
};
#endif
| [
"contact@bearware.dk"
] | contact@bearware.dk |
2b9e8d1de9a238f0ab16267177b4be01aca95942 | 22f8ce70cc780eda7cb11f93803058831f43c7c5 | /Plugins/SimpleThread/Source/SimpleThread/Public/Abandonable/SimpleAbandonable.h | 1209374d4dfdf268188a319cc323c94274e8fd67 | [] | no_license | VegetableWithChicken/SomeTest | 4d26ebc44fbf8a387bec2ec9677d51485c7c9668 | 8659f9b99ec05f3e235ec9d7839671751c85cbf8 | refs/heads/dev | 2023-03-16T05:40:16.603350 | 2020-11-02T07:04:52 | 2020-11-02T07:04:52 | 508,117,547 | 1 | 0 | null | 2022-06-28T01:42:35 | 2022-06-28T01:42:34 | null | GB18030 | C++ | false | false | 1,273 | h | #pragma once
/*
下面的网址讲解了如何使用本套插件
DocURL: https://zhuanlan.zhihu.com/p/78023533
下面的网址讲解如何开发当前的插件
MarketplaceURL : http://www.aboutcg.org/course/tut_ue4suite_190813/?action=
如果想了解更多关于UE4教程请参考:
URL : https://zhuanlan.zhihu.com/p/60117613
如果想系统了解人宅系列教程以及相关插件迭代更新 可以关注我的博客
URL : http://renzhai.net/
如果想了解我们下一节的课程安排可以 可以在微信公众号搜所 人宅 关注即可 我们会推送很多富有技术的文章
新浪博客 https://weibo.com/BZRZ/profile?s=6cm7D0 //这个博客从16年到现在 有三四年没怎么用过 以后说不定可以重新启用 先发个连接
*/
#include "CoreMinimal.h"
#include "Async/AsyncWork.h"
//同步异步线程,该线程使用轻巧便捷
struct SIMPLETHREAD_API FSimpleAbandonable :FNonAbandonableTask
{
FSimpleAbandonable(const FSimpleDelegate &InThreadDelegate);
//线程真正执行逻辑的地方
void DoWork();
//ID
FORCEINLINE TStatId GetStatId() const
{
RETURN_QUICK_DECLARE_CYCLE_STAT(FSimpleAbandonable, STATGROUP_ThreadPoolAsyncTasks);
}
protected:
//绑定的事件
FSimpleDelegate ThreadDelegate;
}; | [
"563412673@qq.com"
] | 563412673@qq.com |
d4970c1e7e86038b21422148354c4acd7d34867c | 86bfffa80fa639f6277dda62bb5f202ad501c58c | /Herschels/src/gui/SweepEffectsDialog.cpp | 7109b55084e27c53b4011867b980375dec96ad8e | [
"CC0-1.0"
] | permissive | Adolfo1519/Herschels | 2dd3bb1a73e4044d497c1dd126a753a58ab30d4a | 729853f90f1b2fbce80d5b509e6447b557effe14 | refs/heads/master | 2021-06-02T10:02:11.580122 | 2021-06-01T13:48:03 | 2021-06-01T13:48:03 | 134,487,772 | 3 | 3 | null | 2021-06-01T13:48:04 | 2018-05-22T23:47:00 | C++ | UTF-8 | C++ | false | false | 7,080 | cpp |
//load in the dialog header and .ui file
#include "SweepEffectsDialog.hpp"
#include "ui_sweepEffectsDialog.h"
#include "Herschels.hpp"
#include "Oculars.hpp"
#include "StelApp.hpp"
#include "StelGui.hpp"
#include "StelFileMgr.hpp"
#include "StelModuleMgr.hpp"
#include "StelMainView.hpp"
#include "StelMainScriptAPI.hpp"
#include "StelMovementMgr.hpp"
#include "StelTranslator.hpp"
#include "StelActionMgr.hpp"
#include "StelUtils.hpp"
#include <QAbstractItemModel>
#include <QDataWidgetMapper>
#include <QDebug>
#include <QFrame>
#include <QModelIndex>
#include <QSettings>
#include <QStandardItemModel>
#include <limits>
#include <QRegExpValidator>
SweepEffectsDialog::SweepEffectsDialog(Herschels* pluginPtr,
HerschelsDialog* herschelsDialogPtr,
QList<Sweep *> sweeps)
: StelDialog("SweepEffects")
, plugin(pluginPtr)
, herschelsDialog(herschelsDialogPtr)
{
ui = new Ui_sweepEffectsDialogForm();
//I changed the default height. it was 661, now it is 249
this->sweeps = sweeps;
}
SweepEffectsDialog::~SweepEffectsDialog()
{
delete ui;
ui = Q_NULLPTR;
}
void SweepEffectsDialog::updateCircles()
{
StelCore *core = StelApp::getInstance().getCore();
QBrush nightBrush(Qt::darkBlue);
QPen outlinePen(Qt::white);
outlinePen.setWidth(2);
const StelProjectorP prj = core->getProjection(StelCore::FrameAltAz);
QString currentlyAt;
Vec2i centerScreen(prj->getViewportPosX() + prj->getViewportWidth() / 2,
prj->getViewportPosY() + prj->getViewportHeight() / 2);
Vec3d centerPosition;
prj->unProject(centerScreen[0], centerScreen[1], centerPosition);
double cx, cy;
StelUtils::rectToSphe(&cx,&cy,core->j2000ToEquinoxEqu(core->altAzToJ2000(centerPosition,StelCore::RefractionOff),StelCore::RefractionOff));//centerPosition);
//core->equinoxEquToJ2000(centerPosition, StelCore::RefractionOff)); // Calculate RA/DE (J2000.0) and show it...
double currentX = cx;//plugin->cx;
double currentY = cy;//plugin->cy;
if (startRARads > 3.14159265) {startRARads-=2*3.14159265;}
newX = (scene->width())*(currentX - startRARads)/deltaRARads;
newY = ((scene->height())*(currentY - startDecRads)/deltaDecRads)-(radiusY/2.0)-(ui->refreshSweep->height()/2.0);
//qWarning() << "current location is " << currentX << ", " << currentY << ": " << currentX*180/3.14159 << ", " << currentY*180/3.14159;
//qWarning() << "starting positions were " << startRARads << ", " << startDecRads;
//qWarning() << "window parameters are " << deltaRARads << ", " << deltaDecRads;
//qWarning() << "NewX and NewY are " << newX << ", " << newY;
ellipse->setPos(newX, newY);
}
/* ********************************************************************* */
#if 0
#pragma mark -
#pragma mark StelModule Methods
#endif
/* ********************************************************************* */
void SweepEffectsDialog::retranslate()
{
if (dialog) {
ui->retranslateUi(dialog);
initAboutText();
}
}
/* ********************************************************************* */
#if 0
#pragma mark -
#pragma mark Slot Methods
#endif
/* ********************************************************************* */
void SweepEffectsDialog::closeWindow()
{
setVisible(false);
StelMainView::getInstance().scene()->setActiveWindow(0);
}
//********************************************************************
/* ********************************************************************* */
#if 0
#pragma mark -
#pragma mark Protected Methods
#endif
/* ********************************************************************* */
void SweepEffectsDialog::createDialogContent()
{
ui->setupUi(dialog);
connect(&StelApp::getInstance(), SIGNAL(languageChanged()), this, SLOT(retranslate()));
//Uncomment this line if you want to hide the title bar of the dialog
// ui->TitleBar->hide();
#ifdef Q_OS_WIN
//Kinetic scrolling for tablet pc and pc
QList<QWidget *> addscroll;
addscroll << ui->textBrowser << ui->sweepListView ;
installKineticScrolling(addscroll);
#endif
//Now the rest of the actions.
connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close()));
connect(ui->TitleBar, SIGNAL(movedTo(QPoint)), this, SLOT(handleMovedTo(QPoint)));
//*************************************************************
scene = new QGraphicsScene(dialog);
ui->sweepView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
ui->sweepView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
ui->sweepView->setScene(scene);
qWarning() << "Setting up the Sweep Effects Dialog";
QBrush blackBrush(Qt::black);
QBrush nightBrush(Qt::darkBlue);
QPen outlinePen(Qt::black);
QPen ocularPen(Qt::white);
outlinePen.setWidth(2);
scene->setBackgroundBrush(blackBrush);
dialog->setFixedHeight(249+ui->refreshSweep->height());
dialog->setFixedWidth(650);
//get box sweep parameters from Herschels
int index = plugin->getSelectedSweepIndex();
sweep = sweeps[index];
int screenHeight = 249; //(dialog->height()/2) - (ui->refreshSweep->height())/2.0
int screenWidth = 650; //dialog->width()
scene->setSceneRect(0, 0, screenWidth, screenHeight);//-ui->refreshSweep->height(), screenWidth, screenHeight);
qWarning() << "The scene size is " << scene->width() << ", " << scene->height();
setUpScene(sweep);
newX = -radiusX/2.0;//-(dialogWidth);
newY = 0;//radiusY/2.0-ui->refreshSweep->height();//(-dialog->height()/2.0) + radiusY/2.0-ui->refreshSweep->height();//dialogHeight;
ellipse = scene->addEllipse(newX, newY, radiusX, radiusY, ocularPen, nightBrush);
//****************************************************************
initAboutText();
connect(ui->refreshSweep, SIGNAL(pressed()), herschelsDialog, SLOT(resetSweep()));
}
//**************************************************************
//Don't worry about the "about" text portion, either. Just leave it as is, or delete it. I don't care.
void SweepEffectsDialog::initAboutText()
{
}
void SweepEffectsDialog::setUpScene(Sweep* sweepEx)
{
StelCore *core = StelApp::getInstance().getCore();
StelMovementMgr * stelMovementMgr=core->getMovementMgr();
startRARads = StelUtils::getDecAngle(sweepEx->startRA());
endRARads = StelUtils::getDecAngle(sweepEx->endRA());
deltaRARads = endRARads - startRARads;
if (deltaRARads < -3.14159)
{
startRARads -= 2.0*3.14159265;
deltaRARads = endRARads - startRARads;
}
startDecRads = StelUtils::getDecAngle(sweepEx->startDec());
endDecRads = StelUtils::getDecAngle(sweepEx->endDec());
deltaDecRads = endDecRads-startDecRads;
double fovRads = (stelMovementMgr->getAimFov())*3.14159265/180.0;
radiusX = (scene->width())*fovRads/(std::abs(deltaRARads));
radiusY = (scene->height())*fovRads/(std::abs(deltaDecRads));
qWarning() << "ellipse parameters are " << radiusX << ", " << radiusY << ": fov is " << fovRads;
}
| [
"asc5@rice.edu"
] | asc5@rice.edu |
ac4b6640f847100ad3f9bc93c3cc12e850326d1b | 6197740e6297da2f3d0c8ffd2a1d7ef5d8b3d2cb | /DotNet/Foundations of C++CLI/Chapter11/generic_function.cpp | eb2480dab8febf91192275445c48730aa4459dfe | [] | no_license | ssh352/cppcode | 1159d4137b68ada253678718b3d416639d3849ba | 5b7c28963286295dfc9af087bed51ac35cd79ce6 | refs/heads/master | 2020-11-24T18:07:17.587795 | 2016-07-15T13:13:05 | 2016-07-15T13:13:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 122 | cpp | // generic_function.cpp
using namespace System;
generic <typename T>
void F(T t, int i, String^ s)
{
// ...
}
| [
"qq410029478@ff87cf93-6e24-4a51-a1f1-68835326ac4f"
] | qq410029478@ff87cf93-6e24-4a51-a1f1-68835326ac4f |
de717bc8b39aaf763c03deb1df0a3a4793637de4 | 640ce20729b8d7466525be49412af7f4bd6efc2c | /367_perfect_square.cpp | 82cff3042114ba0dbe89f3ea1b0f48df0c7bda29 | [] | no_license | howardplus/leetcode | 782cc614bec736b671479bee254b16b6d478ca84 | 0c041dbf899a3075e6499fd393d368b7b4879bb3 | refs/heads/master | 2021-01-02T08:48:55.943535 | 2020-01-22T07:30:10 | 2020-01-22T07:30:10 | 99,068,703 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 677 | cpp | /*
* https://leetcode.com/problems/valid-perfect-square/description/
*
* Given a positive integer num, write a function which returns True if num is
* a perfect square else False.
*/
#include <iostream>
using namespace std;
class Solution {
public:
bool isPerfectSquare(int num) {
for (long sum = 0, i = 1; sum < num; i += 2) {
sum += i;
if (sum == num) return true;
}
return false;
}
};
int main()
{
Solution s;
cout << s.isPerfectSquare(1) << endl;
cout << s.isPerfectSquare(4) << endl;
cout << s.isPerfectSquare(15) << endl;
cout << s.isPerfectSquare(2147483647) << endl;
return 0;
}
| [
"howardplus@gmail.com"
] | howardplus@gmail.com |
995edb0e7eb5dbcc6146fb8d1f61b4cfdab70f2a | 391cf73bb13a1cf457650a0c3b8605bb35fc00f2 | /src/stats.cpp | 9939c3e8c1450370847336b283005c7eb0b29d43 | [
"NCSA"
] | permissive | YunMoZhang/neo | b275d6bbaecd31fb4f6996af8d50d1d831b47e24 | 8601491e81e5b0cb1375a226ba8ae414477733d5 | refs/heads/master | 2023-03-18T01:51:08.339146 | 2021-03-09T00:09:05 | 2021-03-09T00:09:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,962 | cpp | #include "stats.hpp"
#include <unistd.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <fstream>
#include "lib/logger.hpp"
#include "policy/policy.hpp"
using namespace std::chrono;
/********************* private definitions *********************/
bool Stats::record_latencies = false; // no latency recording by defualt
std::chrono::high_resolution_clock::time_point Stats::total_t1;
std::chrono::microseconds Stats::total_time;
long Stats::total_maxrss;
std::chrono::high_resolution_clock::time_point Stats::policy_t1;
std::chrono::microseconds Stats::policy_time;
long Stats::policy_maxrss;
std::chrono::high_resolution_clock::time_point Stats::ec_t1;
std::chrono::microseconds Stats::ec_time;
long Stats::ec_maxrss;
std::chrono::high_resolution_clock::time_point Stats::overall_lat_t1;
std::chrono::high_resolution_clock::time_point Stats::rewind_lat_t1;
std::chrono::high_resolution_clock::time_point Stats::pkt_lat_t1;
std::vector<std::chrono::nanoseconds> Stats::overall_latencies;
std::vector<std::chrono::nanoseconds> Stats::rewind_latencies;
std::vector<int> Stats::rewind_injection_count;
std::vector<std::chrono::nanoseconds> Stats::pkt_latencies;
high_resolution_clock::duration
Stats::get_duration(const high_resolution_clock::time_point& t1)
{
if (t1.time_since_epoch().count() == 0) {
Logger::error("t1 not set");
}
return high_resolution_clock::now() - t1;
}
/********************* control functions *********************/
void Stats::enable_latency_recording()
{
record_latencies = true;
}
void Stats::output_main_stats()
{
Logger::info("====================");
Logger::info("Time: " + std::to_string(total_time.count()) + " microseconds");
Logger::info("Memory: " + std::to_string(total_maxrss) + " kilobytes");
}
void Stats::output_policy_stats(int nodes, int links, Policy *policy)
{
const std::string filename = "policy.stats.csv";
std::ofstream outfile(filename, std::ios_base::app);
if (outfile.fail()) {
Logger::error("Failed to open " + filename);
}
outfile << "# of nodes, # of links, Policy, # of ECs, # of communications, "
"Time (microseconds), Memory (kilobytes)" << std::endl
<< nodes << ", "
<< links << ", "
<< policy->get_id() << ", "
<< policy->num_ecs() << ", "
<< policy->num_comms() << ", "
<< policy_time.count() << ", "
<< policy_maxrss << std::endl;
}
void Stats::output_ec_stats()
{
const std::string filename = std::to_string(getpid()) + ".stats.csv";
std::ofstream outfile(filename, std::ios_base::app);
if (outfile.fail()) {
Logger::error("Failed to open " + filename);
}
outfile << "Time (microseconds), Memory (kilobytes)" << std::endl
<< ec_time.count() << ", " << ec_maxrss << std::endl;
if (record_latencies) {
outfile << "Overall latency (nanoseconds), "
"Rewind latency (nanoseconds), "
"Rewind injection count, "
"Packet latency (nanoseconds)" << std::endl;
for (size_t i = 0; i < overall_latencies.size(); ++i) {
outfile << overall_latencies[i].count() << ", "
<< rewind_latencies[i].count() << ", "
<< rewind_injection_count[i] << ", "
<< pkt_latencies[i].count() << std::endl;
}
}
}
/********************* main process measurements *********************/
void Stats::set_total_t1()
{
total_t1 = high_resolution_clock::now();
}
void Stats::set_total_time()
{
total_time = duration_cast<microseconds>(get_duration(total_t1));
}
void Stats::set_total_maxrss()
{
struct rusage ru;
if (getrusage(RUSAGE_CHILDREN, &ru) < 0) {
Logger::error("getrusage()", errno);
}
total_maxrss = ru.ru_maxrss;
}
/******************** policy process measurements ********************/
void Stats::set_policy_t1()
{
policy_t1 = high_resolution_clock::now();
}
void Stats::set_policy_time()
{
policy_time = duration_cast<microseconds>(get_duration(policy_t1));
}
void Stats::set_policy_maxrss()
{
struct rusage ru;
if (getrusage(RUSAGE_CHILDREN, &ru) < 0) {
Logger::error("getrusage()", errno);
}
policy_maxrss = ru.ru_maxrss;
}
/********************** EC process measurements **********************/
void Stats::set_ec_t1()
{
ec_t1 = high_resolution_clock::now();
}
void Stats::set_ec_time()
{
ec_time = duration_cast<microseconds>(get_duration(ec_t1));
}
void Stats::set_ec_maxrss()
{
struct rusage ru;
if (getrusage(RUSAGE_SELF, &ru) < 0) {
Logger::error("getrusage()", errno);
}
ec_maxrss = ru.ru_maxrss;
}
/********************** latency measurements **********************/
void Stats::set_overall_lat_t1()
{
if (record_latencies) {
overall_lat_t1 = high_resolution_clock::now();
}
}
void Stats::set_overall_latency()
{
if (record_latencies) {
auto overall_latency = duration_cast<nanoseconds>(get_duration(overall_lat_t1));
overall_latencies.push_back(overall_latency);
}
}
void Stats::set_rewind_lat_t1()
{
if (record_latencies) {
rewind_lat_t1 = high_resolution_clock::now();
}
}
void Stats::set_rewind_latency()
{
if (record_latencies) {
auto rewind_latency = duration_cast<nanoseconds>(get_duration(rewind_lat_t1));
rewind_latencies.push_back(rewind_latency);
}
}
void Stats::set_rewind_injection_count(int count)
{
if (record_latencies) {
rewind_injection_count.push_back(count);
}
}
void Stats::set_pkt_lat_t1()
{
if (record_latencies) {
pkt_lat_t1 = high_resolution_clock::now();
}
}
void Stats::set_pkt_latency()
{
if (record_latencies) {
auto pkt_latency = duration_cast<nanoseconds>(get_duration(pkt_lat_t1));
pkt_latencies.push_back(pkt_latency);
}
}
| [
"kuanyenchou@gmail.com"
] | kuanyenchou@gmail.com |
c84d3b544f3a21a0161458b4ed80506fe2b21745 | 8d85bd979c08a6313c31d00fd3f10bbe836d691d | /wpilibc/src/main/native/cpp/trajectory/constraint/CentripetalAccelerationConstraint.cpp | bf45c349a27ff57a9de9bce7eff2a0cfc54a9c45 | [
"BSD-3-Clause"
] | permissive | Aaquib111/allwpilib | e7c1a9eb0693867287494da2c38125354b295476 | 59507b12dc6aec05167fb9c086c3a70c9e5ed632 | refs/heads/master | 2020-09-11T20:59:51.018124 | 2019-11-16T05:51:31 | 2019-11-16T05:51:31 | 222,188,562 | 2 | 0 | NOASSERTION | 2019-11-17T02:52:19 | 2019-11-17T02:52:19 | null | UTF-8 | C++ | false | false | 1,655 | cpp | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "frc/trajectory/constraint/CentripetalAccelerationConstraint.h"
using namespace frc;
CentripetalAccelerationConstraint::CentripetalAccelerationConstraint(
units::meters_per_second_squared_t maxCentripetalAcceleration)
: m_maxCentripetalAcceleration(maxCentripetalAcceleration) {}
units::meters_per_second_t CentripetalAccelerationConstraint::MaxVelocity(
const Pose2d& pose, curvature_t curvature,
units::meters_per_second_t velocity) {
// ac = v^2 / r
// k (curvature) = 1 / r
// therefore, ac = v^2 * k
// ac / k = v^2
// v = std::sqrt(ac / k)
// We have to multiply by 1_rad here to get the units to cancel out nicely.
// The units library defines a unit for radians although it is technically
// unitless.
return units::math::sqrt(m_maxCentripetalAcceleration /
units::math::abs(curvature) * 1_rad);
}
TrajectoryConstraint::MinMax
CentripetalAccelerationConstraint::MinMaxAcceleration(
const Pose2d& pose, curvature_t curvature,
units::meters_per_second_t speed) {
// The acceleration of the robot has no impact on the centripetal acceleration
// of the robot.
return {};
}
| [
"johnson.peter@gmail.com"
] | johnson.peter@gmail.com |
d5c54c7dc1a8b53e01402eace0c3b6f9802d4827 | 44ab57520bb1a9b48045cb1ee9baee8816b44a5b | /Engine/Code/Mathematics/Base/FastNegativeExpAchieve.h | 8f7b4551c652fa8e37c7c26ec1efe6295476a708 | [
"BSD-3-Clause"
] | permissive | WuyangPeng/Engine | d5d81fd4ec18795679ce99552ab9809f3b205409 | 738fde5660449e87ccd4f4878f7bf2a443ae9f1f | refs/heads/master | 2023-08-17T17:01:41.765963 | 2023-08-16T07:27:05 | 2023-08-16T07:27:05 | 246,266,843 | 10 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,562 | h | /// Copyright (c) 2010-2023
/// Threading Core Render Engine
///
/// 作者:彭武阳,彭晔恩,彭晔泽
/// 联系作者:94458936@qq.com
///
/// 标准:std:c++20
/// 引擎版本:0.9.0.11 (2023/05/30 14:54)
#ifndef MATHEMATICS_BASE_FAST_NEGATIVE_EXP_ACHIEVE_H
#define MATHEMATICS_BASE_FAST_NEGATIVE_EXP_ACHIEVE_H
#include "FastNegativeExp.h"
#include "MathDetail.h"
#include "CoreTools/Helper/Assertion/MathematicsCustomAssertMacro.h"
template <typename Real>
requires std::is_floating_point_v<Real>
Real Mathematics::FastNegativeExp<Real>::FastNegativeExpMoreRoughCalculation(Real value) noexcept(gAssert < 3 || gMathematicsAssert < 3)
{
MATHEMATICS_ASSERTION_3(Math::GetValue(0) <= value, "输入值必须在范围[0,无穷大)!\n");
auto result = static_cast<Real>(0.0038278);
result *= value;
result += static_cast<Real>(0.0292732);
result *= value;
result += static_cast<Real>(0.2507213);
result *= value;
result += static_cast<Real>(1.0);
result *= result;
result *= result;
result = static_cast<Real>(1.0) / result;
return result;
}
template <typename Real>
requires std::is_floating_point_v<Real>
Real Mathematics::FastNegativeExp<Real>::FastNegativeExpRoughCalculation(Real value) noexcept(gAssert < 3 || gMathematicsAssert < 3)
{
MATHEMATICS_ASSERTION_3(Math::GetValue(0) <= value, "输入值必须在范围[0,无穷大)!\n");
auto result = static_cast<Real>(0.00026695);
result *= value;
result += static_cast<Real>(0.00227723);
result *= value;
result += static_cast<Real>(0.03158565);
result *= value;
result += static_cast<Real>(0.24991035);
result *= value;
result += static_cast<Real>(1.0);
result *= result;
result *= result;
result = static_cast<Real>(1.0) / result;
return result;
}
template <typename Real>
requires std::is_floating_point_v<Real>
Real Mathematics::FastNegativeExp<Real>::FastNegativeExpPreciseCalculation(Real value) noexcept(gAssert < 3 || gMathematicsAssert < 3)
{
MATHEMATICS_ASSERTION_3(Math::GetValue(0) <= value, "输入值必须在范围[0,无穷大)!\n");
auto result = static_cast<Real>(0.000014876);
result *= value;
result += static_cast<Real>(0.000127992);
result *= value;
result += static_cast<Real>(0.002673255);
result *= value;
result += static_cast<Real>(0.031198056);
result *= value;
result += static_cast<Real>(0.250010936);
result *= value;
result += static_cast<Real>(1.0);
result *= result;
result *= result;
result = static_cast<Real>(1.0) / result;
return result;
}
template <typename Real>
requires std::is_floating_point_v<Real>
Real Mathematics::FastNegativeExp<Real>::FastNegativeExpMorePreciseCalculation(Real value) noexcept(gAssert < 3 || gMathematicsAssert < 3)
{
MATHEMATICS_ASSERTION_3(Math::GetValue(0) <= value, "输入值必须在范围[0,无穷大)!\n");
auto result = static_cast<Real>(0.0000006906);
result *= value;
result += static_cast<Real>(0.0000054302);
result *= value;
result += static_cast<Real>(0.0001715620);
result *= value;
result += static_cast<Real>(0.0025913712);
result *= value;
result += static_cast<Real>(0.0312575832);
result *= value;
result += static_cast<Real>(0.2499986842);
result *= value;
result += static_cast<Real>(1.0);
result *= result;
result *= result;
result = static_cast<Real>(1.0) / result;
return result;
}
#endif // MATHEMATICS_BASE_FAST_NEGATIVE_EXP_ACHIEVE_H | [
"94458936@qq.com"
] | 94458936@qq.com |
afa6aabd5998233d9a4111c905f03b65fa20f58a | 6af50a4b5b928211880dd9f1c6ce92c2afea828b | /scripts/kconfig/qconf.cc | 9d3b04b0769cbef51bfdcfcc75ac60cc2e1b67d1 | [
"Apache-2.0"
] | permissive | erwango/zephyr | 1c7aa447f613de76439291ba9dde1e4dc7c5786e | 162f4574c781ae17d3fecfd4ac10df111e90ae3c | refs/heads/arm | 2023-08-11T10:29:20.031948 | 2017-05-10T09:50:21 | 2017-05-10T14:22:48 | 76,642,373 | 6 | 0 | Apache-2.0 | 2020-02-04T19:16:46 | 2016-12-16T09:52:08 | C | UTF-8 | C++ | false | false | 44,484 | cc | /*
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
* Released under the terms of the GNU GPL v2.0.
*/
#include <qglobal.h>
#if QT_VERSION < 0x040000
#include <stddef.h>
#include <qmainwindow.h>
#include <qvbox.h>
#include <qvaluelist.h>
#include <qtextbrowser.h>
#include <qaction.h>
#include <qheader.h>
#include <qfiledialog.h>
#include <qdragobject.h>
#include <qpopupmenu.h>
#else
#include <q3mainwindow.h>
#include <q3vbox.h>
#include <q3valuelist.h>
#include <q3textbrowser.h>
#include <q3action.h>
#include <q3header.h>
#include <q3filedialog.h>
#include <q3dragobject.h>
#include <q3popupmenu.h>
#endif
#include <qapplication.h>
#include <qdesktopwidget.h>
#include <qtoolbar.h>
#include <qlayout.h>
#include <qsplitter.h>
#include <qlineedit.h>
#include <qlabel.h>
#include <qpushbutton.h>
#include <qmenubar.h>
#include <qmessagebox.h>
#include <qregexp.h>
#include <qevent.h>
#include <stdlib.h>
#include "lkc.h"
#include "qconf.h"
#include "qconf.moc"
#include "images.c"
#ifdef _
# undef _
# define _ qgettext
#endif
static QApplication *configApp;
static ConfigSettings *configSettings;
Q3Action *ConfigMainWindow::saveAction;
static inline QString qgettext(const char* str)
{
return QString::fromLocal8Bit(gettext(str));
}
static inline QString qgettext(const QString& str)
{
return QString::fromLocal8Bit(gettext(str.latin1()));
}
ConfigSettings::ConfigSettings()
: QSettings("kernel.org", "qconf")
{
}
/**
* Reads a list of integer values from the application settings.
*/
Q3ValueList<int> ConfigSettings::readSizes(const QString& key, bool *ok)
{
Q3ValueList<int> result;
QStringList entryList = readListEntry(key, ok);
QStringList::Iterator it;
for (it = entryList.begin(); it != entryList.end(); ++it)
result.push_back((*it).toInt());
return result;
}
/**
* Writes a list of integer values to the application settings.
*/
bool ConfigSettings::writeSizes(const QString& key, const Q3ValueList<int>& value)
{
QStringList stringList;
Q3ValueList<int>::ConstIterator it;
for (it = value.begin(); it != value.end(); ++it)
stringList.push_back(QString::number(*it));
return writeEntry(key, stringList);
}
/*
* set the new data
* TODO check the value
*/
void ConfigItem::okRename(int col)
{
Parent::okRename(col);
sym_set_string_value(menu->sym, text(dataColIdx).latin1());
listView()->updateList(this);
}
/*
* update the displayed of a menu entry
*/
void ConfigItem::updateMenu(void)
{
ConfigList* list;
struct symbol* sym;
struct property *prop;
QString prompt;
int type;
tristate expr;
list = listView();
if (goParent) {
setPixmap(promptColIdx, list->menuBackPix);
prompt = "..";
goto set_prompt;
}
sym = menu->sym;
prop = menu->prompt;
prompt = _(menu_get_prompt(menu));
if (prop) switch (prop->type) {
case P_MENU:
if (list->mode == singleMode || list->mode == symbolMode) {
/* a menuconfig entry is displayed differently
* depending whether it's at the view root or a child.
*/
if (sym && list->rootEntry == menu)
break;
setPixmap(promptColIdx, list->menuPix);
} else {
if (sym)
break;
setPixmap(promptColIdx, 0);
}
goto set_prompt;
case P_COMMENT:
setPixmap(promptColIdx, 0);
goto set_prompt;
default:
;
}
if (!sym)
goto set_prompt;
setText(nameColIdx, QString::fromLocal8Bit(sym->name));
type = sym_get_type(sym);
switch (type) {
case S_BOOLEAN:
case S_TRISTATE:
char ch;
if (!sym_is_changable(sym) && list->optMode == normalOpt) {
setPixmap(promptColIdx, 0);
setText(noColIdx, QString::null);
setText(modColIdx, QString::null);
setText(yesColIdx, QString::null);
break;
}
expr = sym_get_tristate_value(sym);
switch (expr) {
case yes:
if (sym_is_choice_value(sym) && type == S_BOOLEAN)
setPixmap(promptColIdx, list->choiceYesPix);
else
setPixmap(promptColIdx, list->symbolYesPix);
setText(yesColIdx, "Y");
ch = 'Y';
break;
case mod:
setPixmap(promptColIdx, list->symbolModPix);
setText(modColIdx, "M");
ch = 'M';
break;
default:
if (sym_is_choice_value(sym) && type == S_BOOLEAN)
setPixmap(promptColIdx, list->choiceNoPix);
else
setPixmap(promptColIdx, list->symbolNoPix);
setText(noColIdx, "N");
ch = 'N';
break;
}
if (expr != no)
setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0);
if (expr != mod)
setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0);
if (expr != yes)
setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0);
setText(dataColIdx, QChar(ch));
break;
case S_INT:
case S_HEX:
case S_STRING:
const char* data;
data = sym_get_string_value(sym);
int i = list->mapIdx(dataColIdx);
if (i >= 0)
setRenameEnabled(i, TRUE);
setText(dataColIdx, data);
if (type == S_STRING)
prompt = QString("%1: %2").arg(prompt).arg(data);
else
prompt = QString("(%2) %1").arg(prompt).arg(data);
break;
}
if (!sym_has_value(sym) && visible)
prompt += _(" (NEW)");
set_prompt:
setText(promptColIdx, prompt);
}
void ConfigItem::testUpdateMenu(bool v)
{
ConfigItem* i;
visible = v;
if (!menu)
return;
sym_calc_value(menu->sym);
if (menu->flags & MENU_CHANGED) {
/* the menu entry changed, so update all list items */
menu->flags &= ~MENU_CHANGED;
for (i = (ConfigItem*)menu->data; i; i = i->nextItem)
i->updateMenu();
} else if (listView()->updateAll)
updateMenu();
}
void ConfigItem::paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align)
{
ConfigList* list = listView();
if (visible) {
if (isSelected() && !list->hasFocus() && list->mode == menuMode)
Parent::paintCell(p, list->inactivedColorGroup, column, width, align);
else
Parent::paintCell(p, cg, column, width, align);
} else
Parent::paintCell(p, list->disabledColorGroup, column, width, align);
}
/*
* construct a menu entry
*/
void ConfigItem::init(void)
{
if (menu) {
ConfigList* list = listView();
nextItem = (ConfigItem*)menu->data;
menu->data = this;
if (list->mode != fullMode)
setOpen(TRUE);
sym_calc_value(menu->sym);
}
updateMenu();
}
/*
* destruct a menu entry
*/
ConfigItem::~ConfigItem(void)
{
if (menu) {
ConfigItem** ip = (ConfigItem**)&menu->data;
for (; *ip; ip = &(*ip)->nextItem) {
if (*ip == this) {
*ip = nextItem;
break;
}
}
}
}
ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
: Parent(parent)
{
connect(this, SIGNAL(lostFocus()), SLOT(hide()));
}
void ConfigLineEdit::show(ConfigItem* i)
{
item = i;
if (sym_get_string_value(item->menu->sym))
setText(QString::fromLocal8Bit(sym_get_string_value(item->menu->sym)));
else
setText(QString::null);
Parent::show();
setFocus();
}
void ConfigLineEdit::keyPressEvent(QKeyEvent* e)
{
switch (e->key()) {
case Qt::Key_Escape:
break;
case Qt::Key_Return:
case Qt::Key_Enter:
sym_set_string_value(item->menu->sym, text().latin1());
parent()->updateList(item);
break;
default:
Parent::keyPressEvent(e);
return;
}
e->accept();
parent()->list->setFocus();
hide();
}
ConfigList::ConfigList(ConfigView* p, const char *name)
: Parent(p, name),
updateAll(false),
symbolYesPix(xpm_symbol_yes), symbolModPix(xpm_symbol_mod), symbolNoPix(xpm_symbol_no),
choiceYesPix(xpm_choice_yes), choiceNoPix(xpm_choice_no),
menuPix(xpm_menu), menuInvPix(xpm_menu_inv), menuBackPix(xpm_menuback), voidPix(xpm_void),
showName(false), showRange(false), showData(false), optMode(normalOpt),
rootEntry(0), headerPopup(0)
{
int i;
setSorting(-1);
setRootIsDecorated(TRUE);
disabledColorGroup = palette().active();
disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text());
inactivedColorGroup = palette().active();
inactivedColorGroup.setColor(QColorGroup::Highlight, palette().disabled().highlight());
connect(this, SIGNAL(selectionChanged(void)),
SLOT(updateSelection(void)));
if (name) {
configSettings->beginGroup(name);
showName = configSettings->readBoolEntry("/showName", false);
showRange = configSettings->readBoolEntry("/showRange", false);
showData = configSettings->readBoolEntry("/showData", false);
optMode = (enum optionMode)configSettings->readNumEntry("/optionMode", false);
configSettings->endGroup();
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
}
for (i = 0; i < colNr; i++)
colMap[i] = colRevMap[i] = -1;
addColumn(promptColIdx, _("Option"));
reinit();
}
bool ConfigList::menuSkip(struct menu *menu)
{
if (optMode == normalOpt && menu_is_visible(menu))
return false;
if (optMode == promptOpt && menu_has_prompt(menu))
return false;
if (optMode == allOpt)
return false;
return true;
}
void ConfigList::reinit(void)
{
removeColumn(dataColIdx);
removeColumn(yesColIdx);
removeColumn(modColIdx);
removeColumn(noColIdx);
removeColumn(nameColIdx);
if (showName)
addColumn(nameColIdx, _("Name"));
if (showRange) {
addColumn(noColIdx, "N");
addColumn(modColIdx, "M");
addColumn(yesColIdx, "Y");
}
if (showData)
addColumn(dataColIdx, _("Value"));
updateListAll();
}
void ConfigList::saveSettings(void)
{
if (name()) {
configSettings->beginGroup(name());
configSettings->writeEntry("/showName", showName);
configSettings->writeEntry("/showRange", showRange);
configSettings->writeEntry("/showData", showData);
configSettings->writeEntry("/optionMode", (int)optMode);
configSettings->endGroup();
}
}
ConfigItem* ConfigList::findConfigItem(struct menu *menu)
{
ConfigItem* item = (ConfigItem*)menu->data;
for (; item; item = item->nextItem) {
if (this == item->listView())
break;
}
return item;
}
void ConfigList::updateSelection(void)
{
struct menu *menu;
enum prop_type type;
ConfigItem* item = (ConfigItem*)selectedItem();
if (!item)
return;
menu = item->menu;
emit menuChanged(menu);
if (!menu)
return;
type = menu->prompt ? menu->prompt->type : P_UNKNOWN;
if (mode == menuMode && type == P_MENU)
emit menuSelected(menu);
}
void ConfigList::updateList(ConfigItem* item)
{
ConfigItem* last = 0;
if (!rootEntry) {
if (mode != listMode)
goto update;
Q3ListViewItemIterator it(this);
ConfigItem* item;
for (; it.current(); ++it) {
item = (ConfigItem*)it.current();
if (!item->menu)
continue;
item->testUpdateMenu(menu_is_visible(item->menu));
}
return;
}
if (rootEntry != &rootmenu && (mode == singleMode ||
(mode == symbolMode && rootEntry->parent != &rootmenu))) {
item = firstChild();
if (!item)
item = new ConfigItem(this, 0, true);
last = item;
}
if ((mode == singleMode || (mode == symbolMode && !(rootEntry->flags & MENU_ROOT))) &&
rootEntry->sym && rootEntry->prompt) {
item = last ? last->nextSibling() : firstChild();
if (!item)
item = new ConfigItem(this, last, rootEntry, true);
else
item->testUpdateMenu(true);
updateMenuList(item, rootEntry);
triggerUpdate();
return;
}
update:
updateMenuList(this, rootEntry);
triggerUpdate();
}
void ConfigList::setValue(ConfigItem* item, tristate val)
{
struct symbol* sym;
int type;
tristate oldval;
sym = item->menu ? item->menu->sym : 0;
if (!sym)
return;
type = sym_get_type(sym);
switch (type) {
case S_BOOLEAN:
case S_TRISTATE:
oldval = sym_get_tristate_value(sym);
if (!sym_set_tristate_value(sym, val))
return;
if (oldval == no && item->menu->list)
item->setOpen(TRUE);
parent()->updateList(item);
break;
}
}
void ConfigList::changeValue(ConfigItem* item)
{
struct symbol* sym;
struct menu* menu;
int type, oldexpr, newexpr;
menu = item->menu;
if (!menu)
return;
sym = menu->sym;
if (!sym) {
if (item->menu->list)
item->setOpen(!item->isOpen());
return;
}
type = sym_get_type(sym);
switch (type) {
case S_BOOLEAN:
case S_TRISTATE:
oldexpr = sym_get_tristate_value(sym);
newexpr = sym_toggle_tristate_value(sym);
if (item->menu->list) {
if (oldexpr == newexpr)
item->setOpen(!item->isOpen());
else if (oldexpr == no)
item->setOpen(TRUE);
}
if (oldexpr != newexpr)
parent()->updateList(item);
break;
case S_INT:
case S_HEX:
case S_STRING:
if (colMap[dataColIdx] >= 0)
item->startRename(colMap[dataColIdx]);
else
parent()->lineEdit->show(item);
break;
}
}
void ConfigList::setRootMenu(struct menu *menu)
{
enum prop_type type;
if (rootEntry == menu)
return;
type = menu && menu->prompt ? menu->prompt->type : P_UNKNOWN;
if (type != P_MENU)
return;
updateMenuList(this, 0);
rootEntry = menu;
updateListAll();
setSelected(currentItem(), hasFocus());
ensureItemVisible(currentItem());
}
void ConfigList::setParentMenu(void)
{
ConfigItem* item;
struct menu *oldroot;
oldroot = rootEntry;
if (rootEntry == &rootmenu)
return;
setRootMenu(menu_get_parent_menu(rootEntry->parent));
Q3ListViewItemIterator it(this);
for (; (item = (ConfigItem*)it.current()); it++) {
if (item->menu == oldroot) {
setCurrentItem(item);
ensureItemVisible(item);
break;
}
}
}
/*
* update all the children of a menu entry
* removes/adds the entries from the parent widget as necessary
*
* parent: either the menu list widget or a menu entry widget
* menu: entry to be updated
*/
template <class P>
void ConfigList::updateMenuList(P* parent, struct menu* menu)
{
struct menu* child;
ConfigItem* item;
ConfigItem* last;
bool visible;
enum prop_type type;
if (!menu) {
while ((item = parent->firstChild()))
delete item;
return;
}
last = parent->firstChild();
if (last && !last->goParent)
last = 0;
for (child = menu->list; child; child = child->next) {
item = last ? last->nextSibling() : parent->firstChild();
type = child->prompt ? child->prompt->type : P_UNKNOWN;
switch (mode) {
case menuMode:
if (!(child->flags & MENU_ROOT))
goto hide;
break;
case symbolMode:
if (child->flags & MENU_ROOT)
goto hide;
break;
default:
break;
}
visible = menu_is_visible(child);
if (!menuSkip(child)) {
if (!child->sym && !child->list && !child->prompt)
continue;
if (!item || item->menu != child)
item = new ConfigItem(parent, last, child, visible);
else
item->testUpdateMenu(visible);
if (mode == fullMode || mode == menuMode || type != P_MENU)
updateMenuList(item, child);
else
updateMenuList(item, 0);
last = item;
continue;
}
hide:
if (item && item->menu == child) {
last = parent->firstChild();
if (last == item)
last = 0;
else while (last->nextSibling() != item)
last = last->nextSibling();
delete item;
}
}
}
void ConfigList::keyPressEvent(QKeyEvent* ev)
{
Q3ListViewItem* i = currentItem();
ConfigItem* item;
struct menu *menu;
enum prop_type type;
if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) {
emit parentSelected();
ev->accept();
return;
}
if (!i) {
Parent::keyPressEvent(ev);
return;
}
item = (ConfigItem*)i;
switch (ev->key()) {
case Qt::Key_Return:
case Qt::Key_Enter:
if (item->goParent) {
emit parentSelected();
break;
}
menu = item->menu;
if (!menu)
break;
type = menu->prompt ? menu->prompt->type : P_UNKNOWN;
if (type == P_MENU && rootEntry != menu &&
mode != fullMode && mode != menuMode) {
emit menuSelected(menu);
break;
}
case Qt::Key_Space:
changeValue(item);
break;
case Qt::Key_N:
setValue(item, no);
break;
case Qt::Key_M:
setValue(item, mod);
break;
case Qt::Key_Y:
setValue(item, yes);
break;
default:
Parent::keyPressEvent(ev);
return;
}
ev->accept();
}
void ConfigList::contentsMousePressEvent(QMouseEvent* e)
{
//QPoint p(contentsToViewport(e->pos()));
//printf("contentsMousePressEvent: %d,%d\n", p.x(), p.y());
Parent::contentsMousePressEvent(e);
}
void ConfigList::contentsMouseReleaseEvent(QMouseEvent* e)
{
QPoint p(contentsToViewport(e->pos()));
ConfigItem* item = (ConfigItem*)itemAt(p);
struct menu *menu;
enum prop_type ptype;
const QPixmap* pm;
int idx, x;
if (!item)
goto skip;
menu = item->menu;
x = header()->offset() + p.x();
idx = colRevMap[header()->sectionAt(x)];
switch (idx) {
case promptColIdx:
pm = item->pixmap(promptColIdx);
if (pm) {
int off = header()->sectionPos(0) + itemMargin() +
treeStepSize() * (item->depth() + (rootIsDecorated() ? 1 : 0));
if (x >= off && x < off + pm->width()) {
if (item->goParent) {
emit parentSelected();
break;
} else if (!menu)
break;
ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN;
if (ptype == P_MENU && rootEntry != menu &&
mode != fullMode && mode != menuMode)
emit menuSelected(menu);
else
changeValue(item);
}
}
break;
case noColIdx:
setValue(item, no);
break;
case modColIdx:
setValue(item, mod);
break;
case yesColIdx:
setValue(item, yes);
break;
case dataColIdx:
changeValue(item);
break;
}
skip:
//printf("contentsMouseReleaseEvent: %d,%d\n", p.x(), p.y());
Parent::contentsMouseReleaseEvent(e);
}
void ConfigList::contentsMouseMoveEvent(QMouseEvent* e)
{
//QPoint p(contentsToViewport(e->pos()));
//printf("contentsMouseMoveEvent: %d,%d\n", p.x(), p.y());
Parent::contentsMouseMoveEvent(e);
}
void ConfigList::contentsMouseDoubleClickEvent(QMouseEvent* e)
{
QPoint p(contentsToViewport(e->pos()));
ConfigItem* item = (ConfigItem*)itemAt(p);
struct menu *menu;
enum prop_type ptype;
if (!item)
goto skip;
if (item->goParent) {
emit parentSelected();
goto skip;
}
menu = item->menu;
if (!menu)
goto skip;
ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN;
if (ptype == P_MENU && (mode == singleMode || mode == symbolMode))
emit menuSelected(menu);
else if (menu->sym)
changeValue(item);
skip:
//printf("contentsMouseDoubleClickEvent: %d,%d\n", p.x(), p.y());
Parent::contentsMouseDoubleClickEvent(e);
}
void ConfigList::focusInEvent(QFocusEvent *e)
{
struct menu *menu = NULL;
Parent::focusInEvent(e);
ConfigItem* item = (ConfigItem *)currentItem();
if (item) {
setSelected(item, TRUE);
menu = item->menu;
}
emit gotFocus(menu);
}
void ConfigList::contextMenuEvent(QContextMenuEvent *e)
{
if (e->y() <= header()->geometry().bottom()) {
if (!headerPopup) {
Q3Action *action;
headerPopup = new Q3PopupMenu(this);
action = new Q3Action(NULL, _("Show Name"), 0, this);
action->setToggleAction(TRUE);
connect(action, SIGNAL(toggled(bool)),
parent(), SLOT(setShowName(bool)));
connect(parent(), SIGNAL(showNameChanged(bool)),
action, SLOT(setOn(bool)));
action->setOn(showName);
action->addTo(headerPopup);
action = new Q3Action(NULL, _("Show Range"), 0, this);
action->setToggleAction(TRUE);
connect(action, SIGNAL(toggled(bool)),
parent(), SLOT(setShowRange(bool)));
connect(parent(), SIGNAL(showRangeChanged(bool)),
action, SLOT(setOn(bool)));
action->setOn(showRange);
action->addTo(headerPopup);
action = new Q3Action(NULL, _("Show Data"), 0, this);
action->setToggleAction(TRUE);
connect(action, SIGNAL(toggled(bool)),
parent(), SLOT(setShowData(bool)));
connect(parent(), SIGNAL(showDataChanged(bool)),
action, SLOT(setOn(bool)));
action->setOn(showData);
action->addTo(headerPopup);
}
headerPopup->exec(e->globalPos());
e->accept();
} else
e->ignore();
}
ConfigView*ConfigView::viewList;
QAction *ConfigView::showNormalAction;
QAction *ConfigView::showAllAction;
QAction *ConfigView::showPromptAction;
ConfigView::ConfigView(QWidget* parent, const char *name)
: Parent(parent, name)
{
list = new ConfigList(this, name);
lineEdit = new ConfigLineEdit(this);
lineEdit->hide();
this->nextView = viewList;
viewList = this;
}
ConfigView::~ConfigView(void)
{
ConfigView** vp;
for (vp = &viewList; *vp; vp = &(*vp)->nextView) {
if (*vp == this) {
*vp = nextView;
break;
}
}
}
void ConfigView::setOptionMode(QAction *act)
{
if (act == showNormalAction)
list->optMode = normalOpt;
else if (act == showAllAction)
list->optMode = allOpt;
else
list->optMode = promptOpt;
list->updateListAll();
}
void ConfigView::setShowName(bool b)
{
if (list->showName != b) {
list->showName = b;
list->reinit();
emit showNameChanged(b);
}
}
void ConfigView::setShowRange(bool b)
{
if (list->showRange != b) {
list->showRange = b;
list->reinit();
emit showRangeChanged(b);
}
}
void ConfigView::setShowData(bool b)
{
if (list->showData != b) {
list->showData = b;
list->reinit();
emit showDataChanged(b);
}
}
void ConfigList::setAllOpen(bool open)
{
Q3ListViewItemIterator it(this);
for (; it.current(); it++)
it.current()->setOpen(open);
}
void ConfigView::updateList(ConfigItem* item)
{
ConfigView* v;
for (v = viewList; v; v = v->nextView)
v->list->updateList(item);
}
void ConfigView::updateListAll(void)
{
ConfigView* v;
for (v = viewList; v; v = v->nextView)
v->list->updateListAll();
}
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
: Parent(parent, name), sym(0), _menu(0)
{
if (name) {
configSettings->beginGroup(name);
_showDebug = configSettings->readBoolEntry("/showDebug", false);
configSettings->endGroup();
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
}
}
void ConfigInfoView::saveSettings(void)
{
if (name()) {
configSettings->beginGroup(name());
configSettings->writeEntry("/showDebug", showDebug());
configSettings->endGroup();
}
}
void ConfigInfoView::setShowDebug(bool b)
{
if (_showDebug != b) {
_showDebug = b;
if (_menu)
menuInfo();
else if (sym)
symbolInfo();
emit showDebugChanged(b);
}
}
void ConfigInfoView::setInfo(struct menu *m)
{
if (_menu == m)
return;
_menu = m;
sym = NULL;
if (!_menu)
clear();
else
menuInfo();
}
void ConfigInfoView::symbolInfo(void)
{
QString str;
str += "<big>Symbol: <b>";
str += print_filter(sym->name);
str += "</b></big><br><br>value: ";
str += print_filter(sym_get_string_value(sym));
str += "<br>visibility: ";
str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n";
str += "<br>";
str += debug_info(sym);
setText(str);
}
void ConfigInfoView::menuInfo(void)
{
struct symbol* sym;
QString head, debug, help;
sym = _menu->sym;
if (sym) {
if (_menu->prompt) {
head += "<big><b>";
head += print_filter(_(_menu->prompt->text));
head += "</b></big>";
if (sym->name) {
head += " (";
if (showDebug())
head += QString().sprintf("<a href=\"s%p\">", sym);
head += print_filter(sym->name);
if (showDebug())
head += "</a>";
head += ")";
}
} else if (sym->name) {
head += "<big><b>";
if (showDebug())
head += QString().sprintf("<a href=\"s%p\">", sym);
head += print_filter(sym->name);
if (showDebug())
head += "</a>";
head += "</b></big>";
}
head += "<br><br>";
if (showDebug())
debug = debug_info(sym);
struct gstr help_gstr = str_new();
menu_get_ext_help(_menu, &help_gstr);
help = print_filter(str_get(&help_gstr));
str_free(&help_gstr);
} else if (_menu->prompt) {
head += "<big><b>";
head += print_filter(_(_menu->prompt->text));
head += "</b></big><br><br>";
if (showDebug()) {
if (_menu->prompt->visible.expr) {
debug += " dep: ";
expr_print(_menu->prompt->visible.expr, expr_print_help, &debug, E_NONE);
debug += "<br><br>";
}
}
}
if (showDebug())
debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
setText(head + debug + help);
}
QString ConfigInfoView::debug_info(struct symbol *sym)
{
QString debug;
debug += "type: ";
debug += print_filter(sym_type_name(sym->type));
if (sym_is_choice(sym))
debug += " (choice)";
debug += "<br>";
if (sym->rev_dep.expr) {
debug += "reverse dep: ";
expr_print(sym->rev_dep.expr, expr_print_help, &debug, E_NONE);
debug += "<br>";
}
for (struct property *prop = sym->prop; prop; prop = prop->next) {
switch (prop->type) {
case P_PROMPT:
case P_MENU:
debug += QString().sprintf("prompt: <a href=\"m%p\">", prop->menu);
debug += print_filter(_(prop->text));
debug += "</a><br>";
break;
case P_DEFAULT:
case P_SELECT:
case P_RANGE:
case P_ENV:
debug += prop_get_type_name(prop->type);
debug += ": ";
expr_print(prop->expr, expr_print_help, &debug, E_NONE);
debug += "<br>";
break;
case P_CHOICE:
if (sym_is_choice(sym)) {
debug += "choice: ";
expr_print(prop->expr, expr_print_help, &debug, E_NONE);
debug += "<br>";
}
break;
default:
debug += "unknown property: ";
debug += prop_get_type_name(prop->type);
debug += "<br>";
}
if (prop->visible.expr) {
debug += " dep: ";
expr_print(prop->visible.expr, expr_print_help, &debug, E_NONE);
debug += "<br>";
}
}
debug += "<br>";
return debug;
}
QString ConfigInfoView::print_filter(const QString &str)
{
QRegExp re("[<>&\"\\n]");
QString res = str;
for (int i = 0; (i = res.find(re, i)) >= 0;) {
switch (res[i].latin1()) {
case '<':
res.replace(i, 1, "<");
i += 4;
break;
case '>':
res.replace(i, 1, ">");
i += 4;
break;
case '&':
res.replace(i, 1, "&");
i += 5;
break;
case '"':
res.replace(i, 1, """);
i += 6;
break;
case '\n':
res.replace(i, 1, "<br>");
i += 4;
break;
}
}
return res;
}
void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str)
{
QString* text = reinterpret_cast<QString*>(data);
QString str2 = print_filter(str);
if (sym && sym->name && !(sym->flags & SYMBOL_CONST)) {
*text += QString().sprintf("<a href=\"s%p\">", sym);
*text += str2;
*text += "</a>";
} else
*text += str2;
}
Q3PopupMenu* ConfigInfoView::createPopupMenu(const QPoint& pos)
{
Q3PopupMenu* popup = Parent::createPopupMenu(pos);
Q3Action* action = new Q3Action(NULL, _("Show Debug Info"), 0, popup);
action->setToggleAction(TRUE);
connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
action->setOn(showDebug());
popup->insertSeparator();
action->addTo(popup);
return popup;
}
void ConfigInfoView::contentsContextMenuEvent(QContextMenuEvent *e)
{
Parent::contentsContextMenuEvent(e);
}
ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name)
: Parent(parent, name), result(NULL)
{
setCaption("Search Config");
QVBoxLayout* layout1 = new QVBoxLayout(this, 11, 6);
QHBoxLayout* layout2 = new QHBoxLayout(0, 0, 6);
layout2->addWidget(new QLabel(_("Find:"), this));
editField = new QLineEdit(this);
connect(editField, SIGNAL(returnPressed()), SLOT(search()));
layout2->addWidget(editField);
searchButton = new QPushButton(_("Search"), this);
searchButton->setAutoDefault(FALSE);
connect(searchButton, SIGNAL(clicked()), SLOT(search()));
layout2->addWidget(searchButton);
layout1->addLayout(layout2);
split = new QSplitter(this);
split->setOrientation(Qt::Vertical);
list = new ConfigView(split, name);
list->list->mode = listMode;
info = new ConfigInfoView(split, name);
connect(list->list, SIGNAL(menuChanged(struct menu *)),
info, SLOT(setInfo(struct menu *)));
connect(list->list, SIGNAL(menuChanged(struct menu *)),
parent, SLOT(setMenuLink(struct menu *)));
layout1->addWidget(split);
if (name) {
int x, y, width, height;
bool ok;
configSettings->beginGroup(name);
width = configSettings->readNumEntry("/window width", parent->width() / 2);
height = configSettings->readNumEntry("/window height", parent->height() / 2);
resize(width, height);
x = configSettings->readNumEntry("/window x", 0, &ok);
if (ok)
y = configSettings->readNumEntry("/window y", 0, &ok);
if (ok)
move(x, y);
Q3ValueList<int> sizes = configSettings->readSizes("/split", &ok);
if (ok)
split->setSizes(sizes);
configSettings->endGroup();
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
}
}
void ConfigSearchWindow::saveSettings(void)
{
if (name()) {
configSettings->beginGroup(name());
configSettings->writeEntry("/window x", pos().x());
configSettings->writeEntry("/window y", pos().y());
configSettings->writeEntry("/window width", size().width());
configSettings->writeEntry("/window height", size().height());
configSettings->writeSizes("/split", split->sizes());
configSettings->endGroup();
}
}
void ConfigSearchWindow::search(void)
{
struct symbol **p;
struct property *prop;
ConfigItem *lastItem = NULL;
free(result);
list->list->clear();
info->clear();
result = sym_re_search(editField->text().latin1());
if (!result)
return;
for (p = result; *p; p++) {
for_all_prompts((*p), prop)
lastItem = new ConfigItem(list->list, lastItem, prop->menu,
menu_is_visible(prop->menu));
}
}
/*
* Construct the complete config widget
*/
ConfigMainWindow::ConfigMainWindow(void)
: searchWindow(0)
{
QMenuBar* menu;
bool ok;
int x, y, width, height;
char title[256];
QDesktopWidget *d = configApp->desktop();
snprintf(title, sizeof(title), "%s%s",
rootmenu.prompt->text,
#if QT_VERSION < 0x040000
" (Qt3)"
#else
""
#endif
);
setCaption(title);
width = configSettings->readNumEntry("/window width", d->width() - 64);
height = configSettings->readNumEntry("/window height", d->height() - 64);
resize(width, height);
x = configSettings->readNumEntry("/window x", 0, &ok);
if (ok)
y = configSettings->readNumEntry("/window y", 0, &ok);
if (ok)
move(x, y);
split1 = new QSplitter(this);
split1->setOrientation(Qt::Horizontal);
setCentralWidget(split1);
menuView = new ConfigView(split1, "menu");
menuList = menuView->list;
split2 = new QSplitter(split1);
split2->setOrientation(Qt::Vertical);
// create config tree
configView = new ConfigView(split2, "config");
configList = configView->list;
helpText = new ConfigInfoView(split2, "help");
helpText->setTextFormat(Qt::RichText);
setTabOrder(configList, helpText);
configList->setFocus();
menu = menuBar();
toolBar = new Q3ToolBar("Tools", this);
backAction = new Q3Action("Back", QPixmap(xpm_back), _("Back"), 0, this);
connect(backAction, SIGNAL(activated()), SLOT(goBack()));
backAction->setEnabled(FALSE);
Q3Action *quitAction = new Q3Action("Quit", _("&Quit"), Qt::CTRL + Qt::Key_Q, this);
connect(quitAction, SIGNAL(activated()), SLOT(close()));
Q3Action *loadAction = new Q3Action("Load", QPixmap(xpm_load), _("&Load"), Qt::CTRL + Qt::Key_L, this);
connect(loadAction, SIGNAL(activated()), SLOT(loadConfig()));
saveAction = new Q3Action("Save", QPixmap(xpm_save), _("&Save"), Qt::CTRL + Qt::Key_S, this);
connect(saveAction, SIGNAL(activated()), SLOT(saveConfig()));
conf_set_changed_callback(conf_changed);
// Set saveAction's initial state
conf_changed();
Q3Action *saveAsAction = new Q3Action("Save As...", _("Save &As..."), 0, this);
connect(saveAsAction, SIGNAL(activated()), SLOT(saveConfigAs()));
Q3Action *searchAction = new Q3Action("Find", _("&Find"), Qt::CTRL + Qt::Key_F, this);
connect(searchAction, SIGNAL(activated()), SLOT(searchConfig()));
Q3Action *singleViewAction = new Q3Action("Single View", QPixmap(xpm_single_view), _("Single View"), 0, this);
connect(singleViewAction, SIGNAL(activated()), SLOT(showSingleView()));
Q3Action *splitViewAction = new Q3Action("Split View", QPixmap(xpm_split_view), _("Split View"), 0, this);
connect(splitViewAction, SIGNAL(activated()), SLOT(showSplitView()));
Q3Action *fullViewAction = new Q3Action("Full View", QPixmap(xpm_tree_view), _("Full View"), 0, this);
connect(fullViewAction, SIGNAL(activated()), SLOT(showFullView()));
Q3Action *showNameAction = new Q3Action(NULL, _("Show Name"), 0, this);
showNameAction->setToggleAction(TRUE);
connect(showNameAction, SIGNAL(toggled(bool)), configView, SLOT(setShowName(bool)));
connect(configView, SIGNAL(showNameChanged(bool)), showNameAction, SLOT(setOn(bool)));
showNameAction->setOn(configView->showName());
Q3Action *showRangeAction = new Q3Action(NULL, _("Show Range"), 0, this);
showRangeAction->setToggleAction(TRUE);
connect(showRangeAction, SIGNAL(toggled(bool)), configView, SLOT(setShowRange(bool)));
connect(configView, SIGNAL(showRangeChanged(bool)), showRangeAction, SLOT(setOn(bool)));
showRangeAction->setOn(configList->showRange);
Q3Action *showDataAction = new Q3Action(NULL, _("Show Data"), 0, this);
showDataAction->setToggleAction(TRUE);
connect(showDataAction, SIGNAL(toggled(bool)), configView, SLOT(setShowData(bool)));
connect(configView, SIGNAL(showDataChanged(bool)), showDataAction, SLOT(setOn(bool)));
showDataAction->setOn(configList->showData);
QActionGroup *optGroup = new QActionGroup(this);
optGroup->setExclusive(TRUE);
connect(optGroup, SIGNAL(selected(QAction *)), configView,
SLOT(setOptionMode(QAction *)));
connect(optGroup, SIGNAL(selected(QAction *)), menuView,
SLOT(setOptionMode(QAction *)));
#if QT_VERSION >= 0x040000
configView->showNormalAction = new QAction(_("Show Normal Options"), optGroup);
configView->showAllAction = new QAction(_("Show All Options"), optGroup);
configView->showPromptAction = new QAction(_("Show Prompt Options"), optGroup);
#else
configView->showNormalAction = new QAction(_("Show Normal Options"), 0, optGroup);
configView->showAllAction = new QAction(_("Show All Options"), 0, optGroup);
configView->showPromptAction = new QAction(_("Show Prompt Options"), 0, optGroup);
#endif
configView->showNormalAction->setToggleAction(TRUE);
configView->showNormalAction->setOn(configList->optMode == normalOpt);
configView->showAllAction->setToggleAction(TRUE);
configView->showAllAction->setOn(configList->optMode == allOpt);
configView->showPromptAction->setToggleAction(TRUE);
configView->showPromptAction->setOn(configList->optMode == promptOpt);
Q3Action *showDebugAction = new Q3Action(NULL, _("Show Debug Info"), 0, this);
showDebugAction->setToggleAction(TRUE);
connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
connect(helpText, SIGNAL(showDebugChanged(bool)), showDebugAction, SLOT(setOn(bool)));
showDebugAction->setOn(helpText->showDebug());
Q3Action *showIntroAction = new Q3Action(NULL, _("Introduction"), 0, this);
connect(showIntroAction, SIGNAL(activated()), SLOT(showIntro()));
Q3Action *showAboutAction = new Q3Action(NULL, _("About"), 0, this);
connect(showAboutAction, SIGNAL(activated()), SLOT(showAbout()));
// init tool bar
backAction->addTo(toolBar);
toolBar->addSeparator();
loadAction->addTo(toolBar);
saveAction->addTo(toolBar);
toolBar->addSeparator();
singleViewAction->addTo(toolBar);
splitViewAction->addTo(toolBar);
fullViewAction->addTo(toolBar);
// create config menu
Q3PopupMenu* config = new Q3PopupMenu(this);
menu->insertItem(_("&File"), config);
loadAction->addTo(config);
saveAction->addTo(config);
saveAsAction->addTo(config);
config->insertSeparator();
quitAction->addTo(config);
// create edit menu
Q3PopupMenu* editMenu = new Q3PopupMenu(this);
menu->insertItem(_("&Edit"), editMenu);
searchAction->addTo(editMenu);
// create options menu
Q3PopupMenu* optionMenu = new Q3PopupMenu(this);
menu->insertItem(_("&Option"), optionMenu);
showNameAction->addTo(optionMenu);
showRangeAction->addTo(optionMenu);
showDataAction->addTo(optionMenu);
optionMenu->insertSeparator();
optGroup->addTo(optionMenu);
optionMenu->insertSeparator();
// create help menu
Q3PopupMenu* helpMenu = new Q3PopupMenu(this);
menu->insertSeparator();
menu->insertItem(_("&Help"), helpMenu);
showIntroAction->addTo(helpMenu);
showAboutAction->addTo(helpMenu);
connect(configList, SIGNAL(menuChanged(struct menu *)),
helpText, SLOT(setInfo(struct menu *)));
connect(configList, SIGNAL(menuSelected(struct menu *)),
SLOT(changeMenu(struct menu *)));
connect(configList, SIGNAL(parentSelected()),
SLOT(goBack()));
connect(menuList, SIGNAL(menuChanged(struct menu *)),
helpText, SLOT(setInfo(struct menu *)));
connect(menuList, SIGNAL(menuSelected(struct menu *)),
SLOT(changeMenu(struct menu *)));
connect(configList, SIGNAL(gotFocus(struct menu *)),
helpText, SLOT(setInfo(struct menu *)));
connect(menuList, SIGNAL(gotFocus(struct menu *)),
helpText, SLOT(setInfo(struct menu *)));
connect(menuList, SIGNAL(gotFocus(struct menu *)),
SLOT(listFocusChanged(void)));
connect(helpText, SIGNAL(menuSelected(struct menu *)),
SLOT(setMenuLink(struct menu *)));
QString listMode = configSettings->readEntry("/listMode", "symbol");
if (listMode == "single")
showSingleView();
else if (listMode == "full")
showFullView();
else /*if (listMode == "split")*/
showSplitView();
// UI setup done, restore splitter positions
Q3ValueList<int> sizes = configSettings->readSizes("/split1", &ok);
if (ok)
split1->setSizes(sizes);
sizes = configSettings->readSizes("/split2", &ok);
if (ok)
split2->setSizes(sizes);
}
void ConfigMainWindow::loadConfig(void)
{
QString s = Q3FileDialog::getOpenFileName(conf_get_configname(), NULL, this);
if (s.isNull())
return;
if (conf_read(QFile::encodeName(s)))
QMessageBox::information(this, "qconf", _("Unable to load configuration!"));
ConfigView::updateListAll();
}
bool ConfigMainWindow::saveConfig(void)
{
if (conf_write(NULL)) {
QMessageBox::information(this, "qconf", _("Unable to save configuration!"));
return false;
}
return true;
}
void ConfigMainWindow::saveConfigAs(void)
{
QString s = Q3FileDialog::getSaveFileName(conf_get_configname(), NULL, this);
if (s.isNull())
return;
saveConfig();
}
void ConfigMainWindow::searchConfig(void)
{
if (!searchWindow)
searchWindow = new ConfigSearchWindow(this, "search");
searchWindow->show();
}
void ConfigMainWindow::changeMenu(struct menu *menu)
{
configList->setRootMenu(menu);
if (configList->rootEntry->parent == &rootmenu)
backAction->setEnabled(FALSE);
else
backAction->setEnabled(TRUE);
}
void ConfigMainWindow::setMenuLink(struct menu *menu)
{
struct menu *parent;
ConfigList* list = NULL;
ConfigItem* item;
if (configList->menuSkip(menu))
return;
switch (configList->mode) {
case singleMode:
list = configList;
parent = menu_get_parent_menu(menu);
if (!parent)
return;
list->setRootMenu(parent);
break;
case symbolMode:
if (menu->flags & MENU_ROOT) {
configList->setRootMenu(menu);
configList->clearSelection();
list = menuList;
} else {
list = configList;
parent = menu_get_parent_menu(menu->parent);
if (!parent)
return;
item = menuList->findConfigItem(parent);
if (item) {
menuList->setSelected(item, TRUE);
menuList->ensureItemVisible(item);
}
list->setRootMenu(parent);
}
break;
case fullMode:
list = configList;
break;
default:
break;
}
if (list) {
item = list->findConfigItem(menu);
if (item) {
list->setSelected(item, TRUE);
list->ensureItemVisible(item);
list->setFocus();
}
}
}
void ConfigMainWindow::listFocusChanged(void)
{
if (menuList->mode == menuMode)
configList->clearSelection();
}
void ConfigMainWindow::goBack(void)
{
ConfigItem* item;
configList->setParentMenu();
if (configList->rootEntry == &rootmenu)
backAction->setEnabled(FALSE);
item = (ConfigItem*)menuList->selectedItem();
while (item) {
if (item->menu == configList->rootEntry) {
menuList->setSelected(item, TRUE);
break;
}
item = (ConfigItem*)item->parent();
}
}
void ConfigMainWindow::showSingleView(void)
{
menuView->hide();
menuList->setRootMenu(0);
configList->mode = singleMode;
if (configList->rootEntry == &rootmenu)
configList->updateListAll();
else
configList->setRootMenu(&rootmenu);
configList->setAllOpen(TRUE);
configList->setFocus();
}
void ConfigMainWindow::showSplitView(void)
{
configList->mode = symbolMode;
if (configList->rootEntry == &rootmenu)
configList->updateListAll();
else
configList->setRootMenu(&rootmenu);
configList->setAllOpen(TRUE);
configApp->processEvents();
menuList->mode = menuMode;
menuList->setRootMenu(&rootmenu);
menuList->setAllOpen(TRUE);
menuView->show();
menuList->setFocus();
}
void ConfigMainWindow::showFullView(void)
{
menuView->hide();
menuList->setRootMenu(0);
configList->mode = fullMode;
if (configList->rootEntry == &rootmenu)
configList->updateListAll();
else
configList->setRootMenu(&rootmenu);
configList->setAllOpen(FALSE);
configList->setFocus();
}
/*
* ask for saving configuration before quitting
* TODO ask only when something changed
*/
void ConfigMainWindow::closeEvent(QCloseEvent* e)
{
if (!conf_get_changed()) {
e->accept();
return;
}
QMessageBox mb("qconf", _("Save configuration?"), QMessageBox::Warning,
QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape);
mb.setButtonText(QMessageBox::Yes, _("&Save Changes"));
mb.setButtonText(QMessageBox::No, _("&Discard Changes"));
mb.setButtonText(QMessageBox::Cancel, _("Cancel Exit"));
switch (mb.exec()) {
case QMessageBox::Yes:
if (saveConfig())
e->accept();
else
e->ignore();
break;
case QMessageBox::No:
e->accept();
break;
case QMessageBox::Cancel:
e->ignore();
break;
}
}
void ConfigMainWindow::showIntro(void)
{
static const QString str = _("Welcome to the qconf graphical configuration tool.\n\n"
"For each option, a blank box indicates the feature is disabled, a check\n"
"indicates it is enabled, and a dot indicates that it is to be compiled\n"
"as a module. Clicking on the box will cycle through the three states.\n\n"
"If you do not see an option (e.g., a device driver) that you believe\n"
"should be present, try turning on Show All Options under the Options menu.\n"
"Although there is no cross reference yet to help you figure out what other\n"
"options must be enabled to support the option you are interested in, you can\n"
"still view the help of a grayed-out option.\n\n"
"Toggling Show Debug Info under the Options menu will show the dependencies,\n"
"which you can then match by examining other options.\n\n");
QMessageBox::information(this, "qconf", str);
}
void ConfigMainWindow::showAbout(void)
{
static const QString str = _("qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\n"
"Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n");
QMessageBox::information(this, "qconf", str);
}
void ConfigMainWindow::saveSettings(void)
{
configSettings->writeEntry("/window x", pos().x());
configSettings->writeEntry("/window y", pos().y());
configSettings->writeEntry("/window width", size().width());
configSettings->writeEntry("/window height", size().height());
QString entry;
switch(configList->mode) {
case singleMode :
entry = "single";
break;
case symbolMode :
entry = "split";
break;
case fullMode :
entry = "full";
break;
default:
break;
}
configSettings->writeEntry("/listMode", entry);
configSettings->writeSizes("/split1", split1->sizes());
configSettings->writeSizes("/split2", split2->sizes());
}
void ConfigMainWindow::conf_changed(void)
{
if (saveAction)
saveAction->setEnabled(conf_get_changed());
}
void fixup_rootmenu(struct menu *menu)
{
struct menu *child;
static int menu_cnt = 0;
menu->flags |= MENU_ROOT;
for (child = menu->list; child; child = child->next) {
if (child->prompt && child->prompt->type == P_MENU) {
menu_cnt++;
fixup_rootmenu(child);
menu_cnt--;
} else if (!menu_cnt)
fixup_rootmenu(child);
}
}
static const char *progname;
static void usage(void)
{
printf(_("%s <config>\n"), progname);
exit(0);
}
int main(int ac, char** av)
{
ConfigMainWindow* v;
const char *name;
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
progname = av[0];
configApp = new QApplication(ac, av);
if (ac > 1 && av[1][0] == '-') {
switch (av[1][1]) {
case 'h':
case '?':
usage();
}
name = av[2];
} else
name = av[1];
if (!name)
usage();
conf_parse(name);
fixup_rootmenu(&rootmenu);
conf_read(NULL);
//zconfdump(stdout);
configSettings = new ConfigSettings();
configSettings->beginGroup("/kconfig/qconf");
v = new ConfigMainWindow();
//zconfdump(stdout);
configApp->setMainWidget(v);
configApp->connect(configApp, SIGNAL(lastWindowClosed()), SLOT(quit()));
configApp->connect(configApp, SIGNAL(aboutToQuit()), v, SLOT(saveSettings()));
v->show();
configApp->exec();
configSettings->endGroup();
delete configSettings;
return 0;
}
| [
"inaky.perez-gonzalez@intel.com"
] | inaky.perez-gonzalez@intel.com |
9f4ec280dbc7c0a5d91267f9ee6ad91c926eb325 | ed22bf7a0120f702fb812943852ebbe0060746b2 | /lib/PacketCreator/PacketCreator.h | 4a9eb6d849fa6aee19e1e16e884cdbd54ba0723e | [] | no_license | yoeshi/BTW-Robot | a80a99b3126044d3aa75c52177ea848f4f799d93 | 6a0175179ad5dabae72e2109b5729ac48d868ab2 | refs/heads/master | 2023-05-09T12:59:27.690538 | 2021-05-28T15:11:51 | 2021-05-28T15:11:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 408 | h | #include <ArduinoJson.h>
#include <ReceivedDataPacket.h>
namespace PacketCreator
{
String feedbackDataToJsonString(float leftVelocity, float rightVelocity, float angle, float speedPidP, float speedPidI, float anglePidP, float anglePidD, int delay);
String infoMessageToJsonString(String message);
String createTelemetryPacket(float=0.0f,float=0.0f,float=0.0f,float=0.0f,float=0.0f,float=0.0f);
}; | [
"dawid199912@gmail.com"
] | dawid199912@gmail.com |
76ce115a572d2cdcf60d112c3ce000434d5f654e | 30013e4f0def356c3ddad242f9bff0a155cbb039 | /rxDev/src/tagItems/argItem.h | d2b3dafa6868bc0e1c930d0ae3838fc57c1decf1 | [] | no_license | songxuchao/rxdeveloper-ros-pkg | 972c56b11d28d452d7272984454503cfa63e06e2 | 917c7874b16b9727eba9cfbfc64c5f98262db390 | refs/heads/master | 2021-01-10T20:14:17.495579 | 2012-04-14T13:02:10 | 2012-04-14T13:02:10 | 34,845,885 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,857 | h | #ifndef ARGITEM_H
#define ARGITEM_H
#include <QGraphicsRectItem>
#include <QGraphicsTextItem>
#include <QGraphicsSceneHoverEvent>
#include <QGraphicsSceneMouseEvent>
#include <QKeyEvent>
#include <QColor>
#include <QPainter>
#include <QPen>
#include <QPointF>
#include <QGraphicsWidget>
QT_BEGIN_NAMESPACE
class QPixmap;
class QGraphicsPolygonItem;
class QGraphicsScene;
class QTextEdit;
class QGraphicsSceneMouseEvent;
class QMenu;
class QGraphicsSceneContextMenuEvent;
class QPainter;
class QStyleOptionGraphicsItem;
class QWidget;
class QPolygonF;
QT_END_NAMESPACE
class ArgItem : public QGraphicsWidget
{
Q_OBJECT
public:
enum { Type = UserType + 9 };
ArgItem(QGraphicsScene *scene = 0);
void setLocation(QPointF point);
void setColor(QColor color);
int type() const
{ return Type;}
QGraphicsTextItem _title;
QGraphicsTextItem _name; ///< sample text to go in the title area.
QGraphicsTextItem _value; ///< sample text to go in the title area.
QGraphicsTextItem _value_or_default; ///< sample text to go in the title area.
QString getName();
void setName(QString newName);
QString getValue();
void setValue(QString newValue);
QString getIf();
void setIf(QString newIf);
QString getUnless();
void setUnless(QString newUnless);
int getValue_or_default();
void setValue_or_default(int valueOr);
bool getArgData();
void updateArgItem();
protected:
QPointF _location;
qreal _width;
int _gridSpace;
QColor _outterborderColor; ///< the hover event handlers will toggle this between red and black
QPen _outterborderPen; ///< the pen is used to paint the red/black border
QPointF _dragStart;
qreal _height;
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent * event );
virtual void mousePressEvent (QGraphicsSceneMouseEvent * event );
virtual void mouseReleaseEvent (QGraphicsSceneMouseEvent * event );
virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * event );
virtual void hoverEnterEvent ( QGraphicsSceneHoverEvent * event ); ///< must be re-implemented to handle mouse hover enter events
virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * event ); ///< must be re-implemented to handle mouse hover leave events
virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
virtual QRectF boundingRect() const; ///< must be re-implemented in this class to provide the diminsions of the box to the QGraphicsView
virtual void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); ///< must be re-implemented here to pain the box on the paint-event
private:
QString _nameString;
QString _valueString;
QString _ifString;
QString _unlessString;
int _value_or_defaultInt;
};
#endif // ARGITEM_H
| [
"F.Muellers@gmail.com@1a7593b6-376c-c873-a36f-2cc06b3c3c74"
] | F.Muellers@gmail.com@1a7593b6-376c-c873-a36f-2cc06b3c3c74 |
0bc5a8656d48bb7fb633d6e34f0be47c549d9456 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/11_964_70.cpp | d5c4af9f666edd0b7904659dc284e36d859a813f | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,255 | cpp | #include <cstdio>
#include <cstring>
using namespace std;
#define FOR(i,a,b) for(int i=a,_b=b;i<=_b;i++)
#define REP(i,a) FOR(i,0,a-1)
#define FORD(i,a,b) for(int i=a,_b=b;i>=_b;i--)
#define REPD(i,a) FORD(i,a-1,0)
#define _m(a,b) memset(a,b,sizeof(a))
#define MAX 200
int main (void) {
int T; scanf("%d", &T);
int C, D, N;
char CS[5], DS[5], NS[102];
char MC[MAX][MAX], MD[MAX][MAX];
char iS, S[102], A, B, F;
FOR(iT, 1, T) {
_m(MC, -1);
scanf("%d", &C);
REP(i, C) {
scanf("%s", &CS);
MC[CS[0]][CS[1]] = MC[CS[1]][CS[0]] = CS[2];
}
_m(MD, 0);
scanf("%d", &D);
REP(i, D) {
scanf("%s", &DS);
MD[DS[0]][DS[1]] = MD[DS[1]][DS[0]] = 1;
}
scanf("%d %s\n", &N, &NS);
iS=0;
REP(i, N) {
S[iS++] = NS[i];
F = 1;
while(iS > 1 && F) {
F = 0;
A = S[iS - 2];
B = S[iS - 1];
if(MC[A][B] != -1 || MC[B][A] != -1) {
S[iS-2] = MC[A][B];
iS--;
F = 1;
} else {
REPD(j, iS-1)
if(MD[B][S[j]] || MD[S[j]][B]) {
iS = 0;
break;
}
}
}
}
printf("Case #%d: [", iT);
REP(i, iS) printf("%s%c", (i?", ":""), S[i]);
printf("]\n");
}
return 0;
}
| [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
734ceb9995caa6f350c91128e502ca5b94b16a34 | 40d23f6f47eef750c37949c523324d82a5923f28 | /token.h | 454487f4036aaeeac070beb539d3b21d74d93fad | [] | no_license | Moulten/EventDataBase-Yandex | 065e0fb2a9434fd2bc37185d1d379799c5790dbb | 97b2d234ef5902dc307cc2be02f7cb09689ea7f3 | refs/heads/master | 2022-12-07T11:30:16.254612 | 2020-08-27T20:37:09 | 2020-08-27T20:37:09 | 290,871,507 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | #pragma once
#include <sstream>
#include <vector>
using namespace std;
enum class TokenType {
DATE,
EVENT,
COLUMN,
LOGICAL_OP,
COMPARE_OP,
PAREN_LEFT,
PAREN_RIGHT,
};
enum class Comparison {
Less,
LessOrEqual,
Greater,
GreaterOrEqual,
Equal,
NotEqual,
};
enum class LogicalOperation {
Or,
And,
};
struct Token {
const string value;
const TokenType type;
};
vector<Token> Tokenize(istream& cl);
| [
"g.a.poyarkov@gmail.com"
] | g.a.poyarkov@gmail.com |
ce3efae8e684acb59984531466c4502758b74deb | 0f971a91b4ad423748bba8c7159940ccf3064a7b | /VoxelEngine/VoxelEngine/src/engine/graphics/TileMap.h | 5f7621b01f3a7592b04c3f7dcad8e13865378a44 | [
"MIT"
] | permissive | LucidSigma/Voxel-Engine | f437e76bf76f180cc06b836026007b6397590716 | 5cb7fdf280f2f9029ec218d458ee887d9aceff75 | refs/heads/master | 2021-01-16T14:57:18.145591 | 2020-02-26T03:58:41 | 2020-02-26T03:58:41 | 243,160,006 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 810 | h | #pragma once
#ifndef TILE_MAP_H
#define TILE_MAP_H
#include "../interfaces/INoncopyable.h"
#include <glm/glm.hpp>
#include <cstddef>
#include <string_view>
#include <unordered_map>
#include <utility>
#include <vector>
#include "TextureArray.h"
class TileMap
: private INoncopyable
{
private:
const TextureArray* m_textureAtlas = nullptr;
unsigned int m_tileColumns = 0;
unsigned int m_tileRows = 0;
std::unordered_map<std::string_view, size_t> m_tileNames;
public:
TileMap(const TextureArray& textureAtlas, const glm::uvec2& tileSize, const std::vector<std::string_view>& tileNames);
TileMap(TileMap&& other) noexcept;
TileMap& operator =(TileMap&& other) noexcept;
~TileMap() noexcept = default;
void Bind() const;
size_t GetTileIndex(const std::string_view& tileName) const;
};
#endif | [
"lucidsigma17@gmail.com"
] | lucidsigma17@gmail.com |
52e6dd66f7291af7c198d935960503b959bdf47d | 469c0632d0df5393a801c6239f17b501cef0bdfc | /src/xbeereader.cpp | cf6b0f60203082dec5bce89edf367761e4cc860a | [] | no_license | notzain/QtZigbeeHelper | cab71bd2343b46e12b6b0273c772e89f73ee4cb9 | 4bebd10dc1da69bced2eb91e731a2028c1c34f77 | refs/heads/master | 2021-05-06T00:18:36.638268 | 2018-01-12T12:15:29 | 2018-01-12T12:15:29 | 117,237,305 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,173 | cpp | #include "xbeereader.h"
#include "xbeeframe.h"
#include "xbeereceiveframe.h"
#include <QChar>
#include <QDebug>
void XbeeReader::read( const QByteArray& data )
{
static bool escaped = false;
const auto hexData = data.toHex();
qDebug() << hexData;
for ( const QChar byteAsUnicode : data ) {
// QString hex = hexData.mid( i, 2 );
// int byte = hex.toUInt( nullptr, 16 );
// qDebug() << QString( "Hex: %1, Int: %2" ).arg( hex ).arg( byte );
int byte = byteAsUnicode.unicode();
if ( byte == XbeeFrame::SpecialBytes::ESCAPE ) {
escaped = true;
continue;
}
if ( escaped ) {
byte = byte ^ 0x20;
escaped = false;
}
switch ( auto curSize = mData.length() ) {
case 0: {
if ( byte != XbeeFrame::SpecialBytes::START ) {
continue;
}
mData.append( byte );
break;
}
case 2: {
mExpectedLength = byte + 4;
mData.append( byte );
break;
}
default: {
mData.append( byte );
if ( curSize >= mExpectedLength - 1 ) {
processPacket();
}
break;
}
}
}
}
void XbeeReader::processPacket()
{
const int type = QChar( mData.at( XbeeFrame::Position::FRAMETYPE ) ).unicode();
switch ( type ) {
case 0x90: {
auto* frame = new XbeeReceiveFrame{
mData.at( XbeeFrame::Position::LENGTH_MSB ), //
mData.at( XbeeFrame::Position::LENGTH_LSB ), //
mData.mid( XbeeReceiveFrame::Position::ADDRESS64, 8 ), //
mData.mid( XbeeReceiveFrame::Position::ADDRESS16, 2 ), //
mData.at( XbeeReceiveFrame::Position::OPTIONS ), //
mData.mid( XbeeReceiveFrame::Position::MESSAGE, mData.size() - 2 ), //
mData.at( mData.size() - 1 ) //
};
auto ptr = QSharedPointer<XbeeFrame>( frame );
mData.clear();
emit receivedRxPacket( ptr );
break;
}
}
}
XbeeFrame* XbeeReader::getFrame()
{
return nullptr;
}
| [
"zain.ahmad@tno.nl"
] | zain.ahmad@tno.nl |
607c318675d83895092c2b81af7d9970d55aba24 | 38a2a5b11186f2cde0a9fdf42b2a3edff818e276 | /KDIS/DataTypes/IOEffect.h | 687440cda1468249fe94a851b912991058222e05 | [
"BSD-2-Clause"
] | permissive | cdit-ma/kdis | 7f9afaa07da1d64ff960f5841710cb1445cdebe1 | f722221cee0e5ea6869f9e923ad1cdb93d5d289f | refs/heads/master | 2022-01-06T08:42:33.244560 | 2019-08-14T03:09:07 | 2019-08-14T03:09:07 | 202,251,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,636 | h | /*********************************************************************
Copyright 2013 Karl Jones
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
For Further Information Please Contact me at
Karljj1@yahoo.com
http://p.sf.net/kdis/UserGuide
*********************************************************************/
/********************************************************************
class: IOEffect
created: 05/12/2010
author: Karl Jones
purpose: Identification of IO effects on an entity when calculated by an IO simulation.
size: 128 bits / 16 octets
*********************************************************************/
#pragma once
#include "./StandardVariable.h"
namespace KDIS {
namespace DATA_TYPE {
class KDIS_EXPORT IOEffect : public StandardVariable
{
protected:
KUINT8 m_ui8Status;
KUINT8 m_ui8LnkTyp;
KUINT8 m_ui8Eff;
KUINT8 m_ui8EffDtyCyc;
KUINT16 m_ui16EffDur;
KUINT16 m_ui16Proc;
KUINT16 m_ui16Padding;
public:
static const KUINT16 IO_EFFECT_TYPE_SIZE = 16;
IOEffect( KDIS::DATA_TYPE::ENUMS::IOStatus S, KDIS::DATA_TYPE::ENUMS::IOLinkType LT, KDIS::DATA_TYPE::ENUMS::IOEffectType ET,
KUINT8 DutyCycle, KUINT16 Duration, KUINT16 Process ) throw( KException );
IOEffect();
IOEffect( KDataStream & stream ) throw( KException );
virtual ~IOEffect();
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetStatus
// KDIS::DATA_TYPE::IOEffect::GetStatus
// Description: Indicates whether the IO effect has an effect on the sender,
// receiver, message(s) or some combination of them.
// Parameter: IOStatus S
//************************************
void SetStatus( KDIS::DATA_TYPE::ENUMS::IOStatus S );
KDIS::DATA_TYPE::ENUMS::IOStatus GetStatus() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetLinkType
// KDIS::DATA_TYPE::IOEffect::GetLinkType
// Description: The IO link type as a logical or physical link or node.
// Parameter: IOLinkType LT
//************************************
void SetLinkType( KDIS::DATA_TYPE::ENUMS::IOLinkType LT );
KDIS::DATA_TYPE::ENUMS::IOLinkType GetLinkType() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetEffectType
// KDIS::DATA_TYPE::IOEffect::GetEffectType
// Description: The IO effect associated with this IO attack.
// Parameter: IOEffectType ET
//************************************
void SetEffectType( KDIS::DATA_TYPE::ENUMS::IOEffectType ET );
KDIS::DATA_TYPE::ENUMS::IOEffectType GetEffectType() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetEffectDutyCycle
// KDIS::DATA_TYPE::IOEffect::GetEffectDutyCycle
// Description: The IO effect duty cycle represented as a percentage in
// the range of 0 - 100% in one-percent increments.
// Throws OUT_OF_BOUNDS exception if value is > 100.
// Parameter: KUINT8 EDC
//************************************
void SetEffectDutyCycle( KUINT8 EDC ) throw( KException );
KUINT8 GetEffectDutyCycle() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetEffectDuration
// KDIS::DATA_TYPE::IOEffect::GetEffectDuration
// Description: Indicates the duration of the IO effect in seconds, from 1
// to 65534 seconds.
// It shall be set to indicate UNTIL_FURTHER_NOTICE (65535) if
// the duration has no fixed amount of time.
// It shall be set to zero only if the IO Effect field is set
// to Terminate Effect(255).
// Parameter: KUINT16 ED
//************************************
void SetEffectDuration( KUINT16 ED );
KUINT16 GetEffectDuration() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::SetProcess
// KDIS::DATA_TYPE::IOEffect::GetProcess
// Description: The IO process being performed.
// Parameter: KUINT16 P
//************************************
void SetProcess( KUINT16 P );
KUINT16 GetProcess() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::GetAsString
// Description: Returns a string representation.
//************************************
virtual KString GetAsString() const;
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::Decode
// Description: Convert From Network Data.
// Parameter: KDataStream & stream
//************************************
virtual void Decode( KDataStream & stream ) throw( KException );
//************************************
// FullName: KDIS::DATA_TYPE::IOEffect::Encode
// Description: Convert To Network Data.
// Parameter: KDataStream & stream
//************************************
virtual KDataStream Encode() const;
virtual void Encode( KDataStream & stream ) const;
KBOOL operator == ( const IOEffect & Value ) const;
KBOOL operator != ( const IOEffect & Value ) const;
};
} // END namespace DATA_TYPES
} // END namespace KDIS
| [
"mitchell.w.conrad@gmail.com"
] | mitchell.w.conrad@gmail.com |
502bf6096e4425679ec75b89da96f04c0664f501 | 166c162c14562a1dcd8e9fd8c138c461608b4402 | /array/move_negative_to_end.cpp | 5370173fad637446ea2e5ed45fa6503448e6fee3 | [] | no_license | shibajyoti17/Cpp-Data-Structure-and-algorithms | 56a631ffdbc6fbdd5e507aebce42fb3b6c2592ee | 4b45a6006c39ebd425f795fa88764dd45d3e35e4 | refs/heads/master | 2023-06-26T11:12:54.527407 | 2021-08-03T05:53:38 | 2021-08-03T05:53:38 | 380,946,195 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 587 | cpp | #include<iostream>
using namespace std;
void swap(int &a, int &b) {
int temp = a;
a = b;
b = temp;
}
int main() {
int n;
cout << "Enter the number of elements: " << endl;
cin >> n;
int arr[n];
for(int i = 0; i < n; i++) {
cin >> arr[i];
}
int low = 0, high = n-1;
while(low < high) {
if( arr[low] < 0) {
swap(arr[low], arr[high]);
high--;
}
else {
low++;
}
}
for(int i = 0; i < n; i++) {
cout << arr[i] << " ";
}
cout << "\n";
return 0;
}
| [
"shibajyotim@gmail.com"
] | shibajyotim@gmail.com |
021f152f59c61200ff5a8e8ab9f6a34a5defb12d | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/llvm/3.5.0/include/llvm/ADT/DepthFirstIterator.h | dfba43f3ac85c926de09dff67649d78e4e7231a3 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 9,624 | h | //===- llvm/ADT/DepthFirstIterator.h - Depth First iterator -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file builds on the ADT/GraphTraits.h file to build generic depth
// first graph iterator. This file exposes the following functions/types:
//
// df_begin/df_end/df_iterator
// * Normal depth-first iteration - visit a node and then all of its children.
//
// idf_begin/idf_end/idf_iterator
// * Depth-first iteration on the 'inverse' graph.
//
// df_ext_begin/df_ext_end/df_ext_iterator
// * Normal depth-first iteration - visit a node and then all of its children.
// This iterator stores the 'visited' set in an external set, which allows
// it to be more efficient, and allows external clients to use the set for
// other purposes.
//
// idf_ext_begin/idf_ext_end/idf_ext_iterator
// * Depth-first iteration on the 'inverse' graph.
// This iterator stores the 'visited' set in an external set, which allows
// it to be more efficient, and allows external clients to use the set for
// other purposes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_ADT_DEPTHFIRSTITERATOR_H
#define LLVM_ADT_DEPTHFIRSTITERATOR_H
#include "llvm/ADT/iterator_range.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/PointerIntPair.h"
#include "llvm/ADT/SmallPtrSet.h"
#include <set>
#include <vector>
namespace llvm {
// df_iterator_storage - A private class which is used to figure out where to
// store the visited set.
template<class SetType, bool External> // Non-external set
class df_iterator_storage {
public:
SetType Visited;
};
template<class SetType>
class df_iterator_storage<SetType, true> {
public:
df_iterator_storage(SetType &VSet) : Visited(VSet) {}
df_iterator_storage(const df_iterator_storage &S) : Visited(S.Visited) {}
SetType &Visited;
};
// Generic Depth First Iterator
template<class GraphT,
class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
bool ExtStorage = false, class GT = GraphTraits<GraphT> >
class df_iterator : public std::iterator<std::forward_iterator_tag,
typename GT::NodeType, ptrdiff_t>,
public df_iterator_storage<SetType, ExtStorage> {
typedef std::iterator<std::forward_iterator_tag,
typename GT::NodeType, ptrdiff_t> super;
typedef typename GT::NodeType NodeType;
typedef typename GT::ChildIteratorType ChildItTy;
typedef PointerIntPair<NodeType*, 1> PointerIntTy;
// VisitStack - Used to maintain the ordering. Top = current block
// First element is node pointer, second is the 'next child' to visit
// if the int in PointerIntTy is 0, the 'next child' to visit is invalid
std::vector<std::pair<PointerIntTy, ChildItTy> > VisitStack;
private:
inline df_iterator(NodeType *Node) {
this->Visited.insert(Node);
VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
GT::child_begin(Node)));
}
inline df_iterator() {
// End is when stack is empty
}
inline df_iterator(NodeType *Node, SetType &S)
: df_iterator_storage<SetType, ExtStorage>(S) {
if (!S.count(Node)) {
VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
GT::child_begin(Node)));
this->Visited.insert(Node);
}
}
inline df_iterator(SetType &S)
: df_iterator_storage<SetType, ExtStorage>(S) {
// End is when stack is empty
}
inline void toNext() {
do {
std::pair<PointerIntTy, ChildItTy> &Top = VisitStack.back();
NodeType *Node = Top.first.getPointer();
ChildItTy &It = Top.second;
if (!Top.first.getInt()) {
// now retrieve the real begin of the children before we dive in
It = GT::child_begin(Node);
Top.first.setInt(1);
}
while (It != GT::child_end(Node)) {
NodeType *Next = *It++;
// Has our next sibling been visited?
if (Next && !this->Visited.count(Next)) {
// No, do it now.
this->Visited.insert(Next);
VisitStack.push_back(std::make_pair(PointerIntTy(Next, 0),
GT::child_begin(Next)));
return;
}
}
// Oops, ran out of successors... go up a level on the stack.
VisitStack.pop_back();
} while (!VisitStack.empty());
}
public:
typedef typename super::pointer pointer;
typedef df_iterator<GraphT, SetType, ExtStorage, GT> _Self;
// Provide static begin and end methods as our public "constructors"
static inline _Self begin(const GraphT& G) {
return _Self(GT::getEntryNode(G));
}
static inline _Self end(const GraphT& G) { return _Self(); }
// Static begin and end methods as our public ctors for external iterators
static inline _Self begin(const GraphT& G, SetType &S) {
return _Self(GT::getEntryNode(G), S);
}
static inline _Self end(const GraphT& G, SetType &S) { return _Self(S); }
inline bool operator==(const _Self& x) const {
return VisitStack == x.VisitStack;
}
inline bool operator!=(const _Self& x) const { return !operator==(x); }
inline pointer operator*() const {
return VisitStack.back().first.getPointer();
}
// This is a nonstandard operator-> that dereferences the pointer an extra
// time... so that you can actually call methods ON the Node, because
// the contained type is a pointer. This allows BBIt->getTerminator() f.e.
//
inline NodeType *operator->() const { return operator*(); }
inline _Self& operator++() { // Preincrement
toNext();
return *this;
}
// skips all children of the current node and traverses to next node
//
inline _Self& skipChildren() {
VisitStack.pop_back();
if (!VisitStack.empty())
toNext();
return *this;
}
inline _Self operator++(int) { // Postincrement
_Self tmp = *this; ++*this; return tmp;
}
// nodeVisited - return true if this iterator has already visited the
// specified node. This is public, and will probably be used to iterate over
// nodes that a depth first iteration did not find: ie unreachable nodes.
//
inline bool nodeVisited(NodeType *Node) const {
return this->Visited.count(Node) != 0;
}
/// getPathLength - Return the length of the path from the entry node to the
/// current node, counting both nodes.
unsigned getPathLength() const { return VisitStack.size(); }
/// getPath - Return the n'th node in the path from the entry node to the
/// current node.
NodeType *getPath(unsigned n) const {
return VisitStack[n].first.getPointer();
}
};
// Provide global constructors that automatically figure out correct types...
//
template <class T>
df_iterator<T> df_begin(const T& G) {
return df_iterator<T>::begin(G);
}
template <class T>
df_iterator<T> df_end(const T& G) {
return df_iterator<T>::end(G);
}
// Provide an accessor method to use them in range-based patterns.
template <class T>
iterator_range<df_iterator<T>> depth_first(const T& G) {
return iterator_range<df_iterator<T>>(df_begin(G), df_end(G));
}
// Provide global definitions of external depth first iterators...
template <class T, class SetTy = std::set<typename GraphTraits<T>::NodeType*> >
struct df_ext_iterator : public df_iterator<T, SetTy, true> {
df_ext_iterator(const df_iterator<T, SetTy, true> &V)
: df_iterator<T, SetTy, true>(V) {}
};
template <class T, class SetTy>
df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) {
return df_ext_iterator<T, SetTy>::begin(G, S);
}
template <class T, class SetTy>
df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) {
return df_ext_iterator<T, SetTy>::end(G, S);
}
// Provide global definitions of inverse depth first iterators...
template <class T,
class SetTy = llvm::SmallPtrSet<typename GraphTraits<T>::NodeType*, 8>,
bool External = false>
struct idf_iterator : public df_iterator<Inverse<T>, SetTy, External> {
idf_iterator(const df_iterator<Inverse<T>, SetTy, External> &V)
: df_iterator<Inverse<T>, SetTy, External>(V) {}
};
template <class T>
idf_iterator<T> idf_begin(const T& G) {
return idf_iterator<T>::begin(Inverse<T>(G));
}
template <class T>
idf_iterator<T> idf_end(const T& G){
return idf_iterator<T>::end(Inverse<T>(G));
}
// Provide an accessor method to use them in range-based patterns.
template <class T>
iterator_range<idf_iterator<T>> inverse_depth_first(const T& G) {
return iterator_range<idf_iterator<T>>(idf_begin(G), idf_end(G));
}
// Provide global definitions of external inverse depth first iterators...
template <class T, class SetTy = std::set<typename GraphTraits<T>::NodeType*> >
struct idf_ext_iterator : public idf_iterator<T, SetTy, true> {
idf_ext_iterator(const idf_iterator<T, SetTy, true> &V)
: idf_iterator<T, SetTy, true>(V) {}
idf_ext_iterator(const df_iterator<Inverse<T>, SetTy, true> &V)
: idf_iterator<T, SetTy, true>(V) {}
};
template <class T, class SetTy>
idf_ext_iterator<T, SetTy> idf_ext_begin(const T& G, SetTy &S) {
return idf_ext_iterator<T, SetTy>::begin(Inverse<T>(G), S);
}
template <class T, class SetTy>
idf_ext_iterator<T, SetTy> idf_ext_end(const T& G, SetTy &S) {
return idf_ext_iterator<T, SetTy>::end(Inverse<T>(G), S);
}
} // End llvm namespace
#endif
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
9fddccd54bb66ca577863dab5b8d57dc19cc237b | fad536c75f9871b42a91ad5f7d24cabeaf8351e9 | /heshTab/main.cpp | e155e4c3944b007dd4322f5837b2fc51fa41cf4f | [] | no_license | eeeris/Dictionary_test_task_drweb | 1b85bc0905d77cd40e78b23a1bfe8bc9f7c035d1 | 50e3aa2afa49449805dd7bef9164f45d47cd666e | refs/heads/master | 2022-11-30T18:02:57.209634 | 2020-08-13T16:49:24 | 2020-08-13T16:49:24 | 287,062,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 104 | cpp |
#include <iostream>
#include "HashTable.h"
using namespace std;
int main()
{
return 0;
}
| [
"eeris@mail.ru"
] | eeris@mail.ru |
92275fdc4e831340a73a6312f46856c8586c3134 | 856a204d4561446e0538e4e08eb91fe8956d4ad0 | /checkin.cpp | 615985b9c844f185804f95874fa96653965b550e | [] | no_license | TwinkleChow/Encrypted-File-System | 2810a973d022ae59117a8606331d9eb9b97e75c2 | 7afd6432e4a6ebe604f943c28f1016061f3e3026 | refs/heads/master | 2021-01-19T14:22:25.317926 | 2017-04-14T06:18:45 | 2017-04-14T06:18:45 | 88,154,960 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,095 | cpp | #include "libefs.h"
int main(int ac, char **av)
{
if(ac != 3)
{
printf("\nUsage: %s <filename> <password>\n\n", av[0]);
exit(-1);
}
FILE *fp = fopen(av[1], "r");
if(fp == NULL)
{
printf("\nUnable to open source file %s\n\n", av[1]);
exit(-1);
}
// Load the file system
initFS("part.dsk",av[2]);
// Get the FS metadata
TFileSystemStruct *fs = getFSInfo();
char *buffer;
// Allocate the buffer for reading
buffer = makeDataBuffer();
// Read the file
unsigned long len = fread(buffer, sizeof(char), fs->blockSize, fp);
//write file
int fp2 = openFile(av[1],MODE_NORMAL);
if(fp2==-1){
//file does not exit
//create the file
fp2 = openFile(av[1],MODE_CREATE);
if(fp2==-1){
//not enough space in disk
printf("Not enough space in disk\n");
exit(-1);
}
else{
//file created
//write to the newly created file
writeFile(fp2,buffer,sizeof(char),len);
//close the file
closeFile(fp2);
closeFS();
free(buffer);
return 0;
}
}
else{
//file already exist
printf("DUPLICATE FILE ERROR\n");
exit(-1);
}
}
| [
"timelimitsecret@gmail.com"
] | timelimitsecret@gmail.com |
1dbe3cfad6ead5367ca825752fb9245d98344f6c | 42141a2b991a8d7242817143860fc59080b1e5c6 | /src/network/receiver.h | 9d1c6569e1a059036d63f6b926b9d52fcd923399 | [] | no_license | earlgreyz/SIK-siktacka | 378fd4f2614b8a684ab4595b0c7d127d94ea2ac4 | bb6cea66d3d1ec6b292c0dc02f1030b7a9e8a02d | refs/heads/master | 2018-12-19T19:42:16.650014 | 2017-06-20T17:28:50 | 2017-06-20T17:28:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 726 | h | #ifndef SIK_RECEIVER_H
#define SIK_RECEIVER_H
#include <string>
#include <netinet/in.h>
#include "types.h"
namespace network {
/**
* Class for receiving messages from socket.
*/
class Receiver {
private:
/// Socket to receive data from
int sock;
public:
/**
* Creates new receiver.
* @param sock socket to send data to.
*/
Receiver(int sock) noexcept;
/**
* Receives message from socket.
* @param address sender address.
* @return received message
* @throws runtime_error if recvfrom finishes with error
*/
buffer_t receive_message(sockaddr_storage *address);
};
}
#endif | [
"mikiwalczak@gmail.com"
] | mikiwalczak@gmail.com |
8f1959c012375533d5952468279dc384421887c3 | 024c74f395b4a749b26cf2719b1e4efecd5331fc | /Codeforces/136B.cpp | 13da4631052ad66f8c5f5a9f26fdfe5ffb5a70a4 | [] | no_license | thisisrajat/competitive-programming | 28ed70f77e2c3892ee1d005341ef7d37930caad9 | 422cc7fac78a9908ca7a95a7c6eae724ed4a0631 | refs/heads/master | 2021-01-01T18:12:10.693796 | 2017-01-01T17:42:53 | 2017-01-01T17:42:53 | 17,668,936 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,214 | cpp | #include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <sstream>
#include <utility>
#include <functional>
#include <numeric>
#include <stack>
#include <queue>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cassert>
#include <bitset>
#include <list>
#include <memory.h>
using namespace std;
string ternary(int n) {
string t = "";
while(n) {
char ch = (n % 3 + '0');
t = ch + t;
n /= 3;
}
return t;
}
long long calc(const string &u, const string &v) {
vector< int > s;
for(int i = 0; i < (int) u.size(); i++) {
int x = u[i] - '0';
int y = v[i] - '0';
int tmp = (y - x + 3) % 3;
s.push_back(tmp);
}
int num = 0;
long long power = 3;
if(s.empty()) {
printf("0\n");
exit(0);
}
num = s[s.size() - 1];
for(int i = s.size() - 2; i >= 0; i--) {
num += power * (s[i]);
power *= 3;
}
return num;
}
int main() {
int a, b;
cin >> a >> b;
string u = ternary(a);
string v = ternary(b);
while(u.size() < v.size()) {
u = '0' + u;
}
while(v.size() < u.size()) {
v = '0' + v;
}
cout << calc(u, v) << '\n';
} | [
"rajat.rj10@gmail.com"
] | rajat.rj10@gmail.com |
ce40b601014a88028d83bd14a88a85c0385d8153 | d0a5a6e3f5f57a537bce6c4b9cf60e92923ca756 | /helper code/fastvector.cpp | 55391a8e7e02c844b638d47dc7c5117a6cea9d5e | [] | no_license | bbackspace/codechef | 0c8435b839296e727e1030c90b0420509374823f | 8cea9d903eb79b534a507facbbedb70b489526e2 | refs/heads/master | 2016-09-06T00:32:52.923699 | 2015-06-19T12:50:13 | 2015-06-19T12:50:13 | 28,696,031 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 896 | cpp | #include<cstdio>
#include<cstdlib>
template <class T>
class FastVector
{
private:
T *vec;
size_t *from;
size_t *to;
size_t top;
T init_val;
size_t len;
public:
T& at(size_t i)
{
if (from[i] < top && to[from[i]] == i)
return vec[i];
else
{
from[i] = top;
to[top] = i;
top++;
vec[i] = init_val;
return vec[i];
}
}
FastVector(size_t len_, T init_val_)
{
vec = new T[len_];
from = new size_t[len_];
to = new size_t[len_];
setAll(init_val_);
len = len_;
}
void setAll(T init_val_)
{
top = 0;
init_val = init_val_;
}
~FastVector()
{
delete[] vec;
delete[] from;
delete[] to;
}
};
int main()
{
FastVector<double> v(100000000,0);
v.setAll(0.0);
v.at(0) = 0.0;
v.at(1) = 1.0;
for(int i = 2; i < 100000000; ++i)
{
v.at(i) = v.at(i - 2) + v.at(i - 1);
if(i % 1000000 == 0)
printf("%d: %0.0lf\n", i, v.at(i));
}
return 0;
} | [
"joelm.pinto@gmail.com"
] | joelm.pinto@gmail.com |
f09b593285b7688351187fd469dff34bf043944e | 5c12bfe2c4b661986d2740aa48a402fd2fd01703 | /src/bin/make-fullctx-ali-dnn.cc | 9f0de9014908265a49c89d7f17da608679aef345 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | oplatek/idlak | fea41d797b862f5382bd17c0ca8349b346cb44d7 | 02b24dc6f79b84779e423bfbb17bdf8e70c95aec | refs/heads/import-svn-idlak | 2021-01-11T04:41:39.367915 | 2016-09-14T18:13:52 | 2016-09-14T18:13:52 | 71,112,898 | 0 | 0 | NOASSERTION | 2020-02-20T13:09:34 | 2016-10-17T07:48:11 | C++ | UTF-8 | C++ | false | false | 11,144 | cc | // bin/make-fullctx-ali.cc
// Copyright 2013 CereProc Ltd. (Author: Matthew Aylett)
// 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
//
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
// MERCHANTABLITY OR NON-INFRINGEMENT.
// See the Apache 2 License for the specific language governing permissions and
// limitations under the License.
//
// Full context alignments have the form
// <phone contexts> <full context> <state no> as an integer vector for
// each frame.
// Full context is output by cex idlak voice build module and assigns a
// full context for each phone.
// the align idlak voice build module produces a standard quin phone alignment
// by transition id.
// This program takes this alignment, extracts the phone context and state no
// for each frame and merges it with the phone full context information.
// The process is complicated by the fact that initial and final pauses may be
// missing from the data while assummed in the full context information.
// Current policy is to remove context information for leading and final pauses
// if they are not in the alignment and set all context information to 0.
// Models in any built tree for silence data are then ignored.
#include "base/kaldi-common.h"
#include "util/common-utils.h"
#include "gmm/am-diag-gmm.h"
#include "hmm/transition-model.h"
#include "hmm/hmm-utils.h"
#include "hmm/tree-accu.h" // for ReadPhoneMap
#define PHONECONTEXT 5
#define MIDCONTEXT 2
double fuzzy_position(double fuzzy_factor, int position, int duration) {
double real_position = ((double)position + 0.5) / (double)duration;
return round(real_position / fuzzy_factor) /* * fuzzy_factor */;
}
int main(int argc, char *argv[]) {
using namespace kaldi;
typedef kaldi::int32 int32;
int32 phone_index, j, k, last_phone, last_state, curlen_phone, curlen_state;
std::vector< std::vector<int32> >::iterator v;
try {
const char *usage =
"Merges output from context extraction with a standard alignment\n"
"Usage: make-fullctx-ali model old-alignments-rspecifier \n"
" full-contexts-rspecifier fullcontext-alignments-wspecifier\n"
"e.g.: \n"
" make-fullctx-ali model.mdl ark:old.ali ark,t:cex.ark ark:new.ali\n";
std::string phone_map_rxfilename;
int phonecontext = 5;
int midcontext = 2;
int maxsilphone = 1;
BaseFloat phone_fuzz_factor = 0.1;
BaseFloat state_fuzz_factor = 0.2;
ParseOptions po(usage);
po.Register("phone-context", &phonecontext, "Size of the phone context, e.g. 3 for triphone.");
po.Register("mid-context", &midcontext, "Position of the middle phone, e.g. 1 for triphone.");
po.Register("max-sil-phone", &maxsilphone, "Maximum value of silence phone");
po.Register("phone-fuzz-factor", &phone_fuzz_factor, "Rounding value for phone positioning");
po.Register("state-fuzz-factor", &state_fuzz_factor, "Rounding value for state positioning");
po.Read(argc, argv);
if (po.NumArgs() != 4) {
po.PrintUsage();
exit(1);
}
std::string model_filename = po.GetArg(1);
std::string old_alignments_rspecifier = po.GetArg(2);
std::string contexts_rspecifier = po.GetArg(3);
std::string new_alignments_wspecifier = po.GetArg(4);
TransitionModel trans_model;
ReadKaldiObject(model_filename, &trans_model);
SequentialInt32VectorReader alignment_reader(old_alignments_rspecifier);
SequentialInt32VectorVectorReader contexts_reader(contexts_rspecifier);
Int32VectorVectorWriter alignment_writer(new_alignments_wspecifier);
int num_success = 0, num_fail = 0;
for (; !contexts_reader.Done() && !alignment_reader.Done();
contexts_reader.Next(), alignment_reader.Next()) {
std::string ctxkey = contexts_reader.Key();
const std::vector< std::vector<int32> > &contexts =
contexts_reader.Value();
std::string key = alignment_reader.Key();
std::vector<int32> old_alignment = alignment_reader.Value();
// Check the keys are the same
if (ctxkey != key) {
KALDI_WARN << "Could not merge alignment and contexts for key " << key
<<" (missing data?)";
num_fail++;
continue;
}
/*std::cout << ctxkey << " " << key << "\n";*/
std::vector< std::vector<int32> > phone_windows;
std::vector<int32> phones;
std::vector<int32> states;
std::vector< std::vector<int32> > output;
std::vector<int32> curphone;
for (size_t i = 0; i < old_alignment.size(); i++)
states.push_back(trans_model.TransitionIdToHmmState(old_alignment[i]));
if (!GetPhoneWindows(trans_model,
old_alignment,
phonecontext,
midcontext,
true,
&phone_windows,
&phones)) {
KALDI_WARN << "Could not convert alignment for key " << key
<<" (possibly truncated alignment?)";
num_fail++;
continue;
}
/* Start processing alignment and label */
last_phone = -1;
last_state = -1;
phone_index = 0;
/* Duration (in frames) of current phone and state */
curlen_phone = -1;
curlen_state = -1;
bool new_phone = false, new_state = false;
for (v = phone_windows.begin(), j = 0;
v != phone_windows.end();
v++, j++) {
curlen_phone++;
curlen_state++;
curphone = *v;
/* We have a new phone if the phone identity change, or
if the state decreases within a non-silence phone */
if ( last_phone >= 0 &&
(curphone[midcontext] != last_phone ||
(last_phone > maxsilphone && states[j] < last_state))) {
/* What to do when we have a new phone:
1. advance phone index
2. output phone / state durations
3. reset curlen_phone, curlen_state */
phone_index++;
new_phone = true;
new_state = true;
}
else if (last_state >= 0 &&
states[j] != last_state) {
new_state = true;
}
// check we have a silence at start of utt if not
// skip silence in context data
if (!phone_index && curphone[midcontext] > maxsilphone)
phone_index++;
/*std::cout << phone_index << " " << curphone[midcontext] << "\n";*/
// Recreate context structure, add state
std::vector<int32> outphone;
if (phone_index < contexts.size()) {
for (k = 0; k < contexts[phone_index].size(); k++)
outphone.push_back(contexts[phone_index][k]);
} else {
for (k = 0; k < contexts[contexts.size() - 1].size(); k++)
outphone.push_back(contexts[contexts.size() - 1][k]);
}
outphone.push_back(states[j]);
output.push_back(outphone);
// Add position / duration information for state
if (new_state) {
for (int32 k = 0; k < curlen_state; k++) {
float position = fuzzy_position(state_fuzz_factor, k, curlen_state);
// State duration
output[j - curlen_state + k].push_back(curlen_state);
// Position within the state
output[j - curlen_state + k].push_back(position);
}
curlen_state = 0;
new_state = false;
}
/* Last iteration of the loop: force the update of phone / state info */
if (phone_index >= contexts.size() || (v + 1 == phone_windows.end())) {
new_state = true;
new_phone = true;
j++;
curlen_phone++;
curlen_state++;
}
// Add position / duration information for state / phone
// Note: the state is only added here in the final iteration
if (new_state) {
for (int32 k = 0; k < curlen_state; k++) {
float position = fuzzy_position(state_fuzz_factor, k, curlen_state);
// State duration
output[j - curlen_state + k].push_back(curlen_state);
// Position within the state
output[j - curlen_state + k].push_back(position);
}
curlen_state = 0;
new_state = false;
}
if (new_phone) {
for (int32 k = 0; k < curlen_phone; k++) {
float position = fuzzy_position(phone_fuzz_factor, k, curlen_phone);
// Phone duration
output[j - curlen_phone + k].push_back(curlen_phone);
// Position within the state
output[j - curlen_phone + k].push_back(position);
}
curlen_phone = 0;
new_phone = false;
}
if (phone_index >= contexts.size()) {
break;
}
last_phone = curphone[midcontext];
last_state = states[j];
}
// check we have a silence at end of utt; if not
// skip silence in context data
if (curphone[midcontext] > maxsilphone) phone_index++;
// phone_index should be pointing at the final silence...
if (phone_index + 1 != contexts.size()) {
/*if (phone_index != contexts.size()) {*/
KALDI_WARN << "Merge of alignment and contexts failed for key " << key
<<" mismatching number of phones contexts:"
<< contexts.size()
<<" alignment:" << phone_index + 1;
num_fail++;
continue;
/*// Or maybe right after it? In which case, there probably was no silence here
// in the first place!
else {
KALDI_WARN << "It seems sentence for key " << key
<<" had no final silence in context. The sentence was"
<<" *not* discarded.";
}*/
}
/*for (k = 0; k < output.size(); k++) {
KALDI_LOG << k << " : " << output[k].size();
}*/
alignment_writer.Write(key, output);
num_success++;
}
} catch(const std::exception &e) {
std::cerr << e.what();
return -1;
}
}
| [
"blaise@cereproc.com"
] | blaise@cereproc.com |
82ca5153aaa0a19f177213f6d14d4909f39ddf71 | b82474817f17f5053890cafb09dd510c2b9c735e | /src/cv-helpers.hpp | 5a2a04d68d039216289fb22d15e529a1592357b7 | [
"MIT"
] | permissive | yushijinhun/rs-armor-detector | 6f7f4adb975fa026852ce6ba6177b801d22c3b7e | 17e1ff353f9e97108b2b34577518dca86d415dfb | refs/heads/master | 2023-05-14T20:29:05.432657 | 2021-06-06T16:04:54 | 2021-06-06T16:04:54 | 374,403,085 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,460 | hpp | // License: Apache 2.0
// Copyright(c) 2017 Intel Corporation. All Rights Reserved.
// From https://github.com/IntelRealSense/librealsense/blob/8fc9ad20da01e926ba610ce4ee1b058e61b86655/wrappers/opencv/cv-helpers.hpp
#pragma once
#include <librealsense2/rs.hpp>
#include <opencv2/opencv.hpp>
#include <exception>
// Convert rs2::frame to cv::Mat
static cv::Mat frame_to_mat(const rs2::frame& f)
{
using namespace cv;
using namespace rs2;
auto vf = f.as<video_frame>();
const int w = vf.get_width();
const int h = vf.get_height();
if (f.get_profile().format() == RS2_FORMAT_BGR8)
{
return Mat(Size(w, h), CV_8UC3, (void*)f.get_data(), Mat::AUTO_STEP);
}
else if (f.get_profile().format() == RS2_FORMAT_RGB8)
{
auto r_rgb = Mat(Size(w, h), CV_8UC3, (void*)f.get_data(), Mat::AUTO_STEP);
Mat r_bgr;
cvtColor(r_rgb, r_bgr, COLOR_RGB2BGR);
return r_bgr;
}
else if (f.get_profile().format() == RS2_FORMAT_Z16)
{
return Mat(Size(w, h), CV_16UC1, (void*)f.get_data(), Mat::AUTO_STEP);
}
else if (f.get_profile().format() == RS2_FORMAT_Y8)
{
return Mat(Size(w, h), CV_8UC1, (void*)f.get_data(), Mat::AUTO_STEP);
}
else if (f.get_profile().format() == RS2_FORMAT_DISPARITY32)
{
return Mat(Size(w, h), CV_32FC1, (void*)f.get_data(), Mat::AUTO_STEP);
}
throw std::runtime_error("Frame format is not supported yet!");
}
| [
"yushijinhun@gmail.com"
] | yushijinhun@gmail.com |
cb69e41ca057ec13219d2c9cad2dc6e1c21043b3 | 20f6693bed8e559b32b5b649f7393908964932de | /SDK/BP_Menu_Slasher18_parameters.h | 27af0f6c7ae2a864c1bb96b385d89e1d852c8cf2 | [] | no_license | xnf4o/DBD_SDK_502 | 9e0e210490e2f7b9bc9b021f48972e252d66f0c7 | c7da68275286e53b9a24d6b8afbb6e932fc93407 | refs/heads/main | 2023-05-31T18:55:45.805581 | 2021-07-01T14:23:54 | 2021-07-01T14:23:54 | 382,058,835 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,631 | h | #pragma once
// Name: dbd, Version: 502
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SM_SetOniEmissiveParameter
struct UBP_Menu_Slasher18_C_SM_SetOniEmissiveParameter_Params
{
struct FLinearColor Emissive; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SK_SetOniEmissiveParameter
struct UBP_Menu_Slasher18_C_SK_SetOniEmissiveParameter_Params
{
struct FLinearColor Emissive; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ShowDemonModeCusto
struct UBP_Menu_Slasher18_C_ShowDemonModeCusto_Params
{
bool isInDemonMode; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
bool IsInNormalMode; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SaveOniEmissiveParameter
struct UBP_Menu_Slasher18_C_SaveOniEmissiveParameter_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.GetDemonModeCusto
struct UBP_Menu_Slasher18_C_GetDemonModeCusto_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_KatanaDissolve__FinishedFunc
struct UBP_Menu_Slasher18_C_TML_KatanaDissolve__FinishedFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_KatanaDissolve__UpdateFunc
struct UBP_Menu_Slasher18_C_TML_KatanaDissolve__UpdateFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_DemonModeCusto__FinishedFunc
struct UBP_Menu_Slasher18_C_TML_DemonModeCusto__FinishedFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_DemonModeCusto__UpdateFunc
struct UBP_Menu_Slasher18_C_TML_DemonModeCusto__UpdateFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_DemonModeCusto__Switch Normal__EventFunc
struct UBP_Menu_Slasher18_C_TML_DemonModeCusto__Switch_Normal__EventFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.TML_DemonModeCusto__Switch Demon__EventFunc
struct UBP_Menu_Slasher18_C_TML_DemonModeCusto__Switch_Demon__EventFunc_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateEndGameVignette
struct UBP_Menu_Slasher18_C_ActivateEndGameVignette_Params
{
bool isActive; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivatePlayerExposedVFX
struct UBP_Menu_Slasher18_C_ActivatePlayerExposedVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateLocalPlayerExposedVFX
struct UBP_Menu_Slasher18_C_ActivateLocalPlayerExposedVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SetPlayerExposedVFX
struct UBP_Menu_Slasher18_C_SetPlayerExposedVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SetHighlightedVFX
struct UBP_Menu_Slasher18_C_SetHighlightedVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivatePlayerLightningVFX
struct UBP_Menu_Slasher18_C_ActivatePlayerLightningVFX_Params
{
class UMaterialInstanceDynamic* LightningFX; // (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool Intense; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivatePlayerGlitchVFX
struct UBP_Menu_Slasher18_C_ActivatePlayerGlitchVFX_Params
{
class UMaterialInstanceDynamic* GlitchFX; // (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool Face; // (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
bool Madness; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
bool Killer; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Start Travelling PP
struct UBP_Menu_Slasher18_C_Start_Travelling_PP_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Start Travelling Dissolve
struct UBP_Menu_Slasher18_C_Start_Travelling_Dissolve_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Stop Travelling Dissolve
struct UBP_Menu_Slasher18_C_Stop_Travelling_Dissolve_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Start Pounce VFX
struct UBP_Menu_Slasher18_C_Start_Pounce_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Stop Pounce VFX
struct UBP_Menu_Slasher18_C_Stop_Pounce_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Start Saliva VFX
struct UBP_Menu_Slasher18_C_Start_Saliva_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Stop Saliva VFX
struct UBP_Menu_Slasher18_C_Stop_Saliva_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Stop Travelling PP
struct UBP_Menu_Slasher18_C_Stop_Travelling_PP_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivatePounceStateVFX
struct UBP_Menu_Slasher18_C_ActivatePounceStateVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Destroy Blood Orb
struct UBP_Menu_Slasher18_C_Destroy_Blood_Orb_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Switch Oni Weapons To Normal
struct UBP_Menu_Slasher18_C_Switch_Oni_Weapons_To_Normal_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.DisableDemonMode
struct UBP_Menu_Slasher18_C_DisableDemonMode_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ReturnToDemonMode
struct UBP_Menu_Slasher18_C_ReturnToDemonMode_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Hide Oni Katana_TPV
struct UBP_Menu_Slasher18_C_Hide_Oni_Katana_TPV_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ShowGunBullet
struct UBP_Menu_Slasher18_C_ShowGunBullet_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.HideGunBullet
struct UBP_Menu_Slasher18_C_HideGunBullet_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SpawnFakeBullet
struct UBP_Menu_Slasher18_C_SpawnFakeBullet_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateSacrificeCamBlood
struct UBP_Menu_Slasher18_C_ActivateSacrificeCamBlood_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.StartDeathBedDissolve
struct UBP_Menu_Slasher18_C_StartDeathBedDissolve_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.DeactivateKnockoutVFX
struct UBP_Menu_Slasher18_C_DeactivateKnockoutVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateKnockoutVFX
struct UBP_Menu_Slasher18_C_ActivateKnockoutVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.SpawnFullScreenBlood
struct UBP_Menu_Slasher18_C_SpawnFullScreenBlood_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.StartDeathBedRelocateVignette
struct UBP_Menu_Slasher18_C_StartDeathBedRelocateVignette_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateAttemptEscapeVFX
struct UBP_Menu_Slasher18_C_ActivateAttemptEscapeVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ShowSyringe
struct UBP_Menu_Slasher18_C_ShowSyringe_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.HideSyringe
struct UBP_Menu_Slasher18_C_HideSyringe_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.AnimateLiquidSyringe
struct UBP_Menu_Slasher18_C_AnimateLiquidSyringe_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ActivateVignetteOnWallCollision
struct UBP_Menu_Slasher18_C_ActivateVignetteOnWallCollision_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.HideSyringeOnStun
struct UBP_Menu_Slasher18_C_HideSyringeOnStun_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_SpawnWipeVFX
struct UBP_Menu_Slasher18_C_K22_SpawnWipeVFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_HighlightDormantMain
struct UBP_Menu_Slasher18_C_K22_HighlightDormantMain_Params
{
bool IsDormantMain_; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_HighlightDormant
struct UBP_Menu_Slasher18_C_K22_HighlightDormant_Params
{
bool IsDormant_; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_HighlightMissJump
struct UBP_Menu_Slasher18_C_K22_HighlightMissJump_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_DormantAttachedSlasher
struct UBP_Menu_Slasher18_C_K22_DormantAttachedSlasher_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_JumpTrail_Activate
struct UBP_Menu_Slasher18_C_K22_JumpTrail_Activate_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_JumpTrail_Deactivate
struct UBP_Menu_Slasher18_C_K22_JumpTrail_Deactivate_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_ReleaseBrother
struct UBP_Menu_Slasher18_C_K22_ReleaseBrother_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_MembraneRecovery
struct UBP_Menu_Slasher18_C_K22_MembraneRecovery_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_MembraneDelete
struct UBP_Menu_Slasher18_C_K22_MembraneDelete_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_BabyBloodDissolve
struct UBP_Menu_Slasher18_C_K22_BabyBloodDissolve_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_BabyRespawn
struct UBP_Menu_Slasher18_C_K22_BabyRespawn_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_Jump_Active
struct UBP_Menu_Slasher18_C_K22_Jump_Active_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_Jump_Inactive
struct UBP_Menu_Slasher18_C_K22_Jump_Inactive_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.On Execution
struct UBP_Menu_Slasher18_C_On_Execution_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K05_SetTrap
struct UBP_Menu_Slasher18_C_K05_SetTrap_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K05_TrapImpact
struct UBP_Menu_Slasher18_C_K05_TrapImpact_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K05_TrapImpactOff
struct UBP_Menu_Slasher18_C_K05_TrapImpactOff_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K05_BloodDrops
struct UBP_Menu_Slasher18_C_K05_BloodDrops_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K07_TreatmentStart
struct UBP_Menu_Slasher18_C_K07_TreatmentStart_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K04_InvisibleOn
struct UBP_Menu_Slasher18_C_K04_InvisibleOn_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K04_InvisibleOff
struct UBP_Menu_Slasher18_C_K04_InvisibleOff_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K04_TelekinesisOn
struct UBP_Menu_Slasher18_C_K04_TelekinesisOn_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K04_TelekinesisOff
struct UBP_Menu_Slasher18_C_K04_TelekinesisOff_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_WrongLanding
struct UBP_Menu_Slasher18_C_K22_WrongLanding_Params
{
bool Wrong_Landing; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_AttachedToSurvivor_VFX
struct UBP_Menu_Slasher18_C_K22_AttachedToSurvivor_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_DetachedFromSurvivor_VFX
struct UBP_Menu_Slasher18_C_K22_DetachedFromSurvivor_VFX_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_WrongLandingVignette
struct UBP_Menu_Slasher18_C_K22_WrongLandingVignette_Params
{
bool WrongLanding; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_GetToxinVignette
struct UBP_Menu_Slasher18_C_K12_GetToxinVignette_Params
{
TheClown_EBombType Bomb_Type; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_GetAntidoteVignette
struct UBP_Menu_Slasher18_C_K12_GetAntidoteVignette_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_Killer_AntidoteEnd
struct UBP_Menu_Slasher18_C_K12_Killer_AntidoteEnd_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_Killer_AntidoteBegin
struct UBP_Menu_Slasher18_C_K12_Killer_AntidoteBegin_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_Killer_BombSmokeColor
struct UBP_Menu_Slasher18_C_K12_Killer_BombSmokeColor_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_Killer_RemoveVignette
struct UBP_Menu_Slasher18_C_K12_Killer_RemoveVignette_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K12_Killer_PlaceVignette
struct UBP_Menu_Slasher18_C_K12_Killer_PlaceVignette_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_QuickDissolveBrother
struct UBP_Menu_Slasher18_C_K22_QuickDissolveBrother_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Killer_LungeAttack_Start
struct UBP_Menu_Slasher18_C_Killer_LungeAttack_Start_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Killer_LungeAttack_End
struct UBP_Menu_Slasher18_C_Killer_LungeAttack_End_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Camper_AntidoteBoostVignette_Start
struct UBP_Menu_Slasher18_C_Camper_AntidoteBoostVignette_Start_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Camper_AntidoteBoostVignette_End
struct UBP_Menu_Slasher18_C_Camper_AntidoteBoostVignette_End_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_BrotherDissolveLocker
struct UBP_Menu_Slasher18_C_K22_BrotherDissolveLocker_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_HighlightMissJump_Stop
struct UBP_Menu_Slasher18_C_K22_HighlightMissJump_Stop_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_CamperHitByKnife
struct UBP_Menu_Slasher18_C_K23_CamperHitByKnife_Params
{
bool isLocallyObserved; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
float LacerationPercent; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool IsDangerous; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K22_IsAttachedLocker
struct UBP_Menu_Slasher18_C_K22_IsAttachedLocker_Params
{
bool IsAttachedLocker; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_ShowKnifeLT
struct UBP_Menu_Slasher18_C_K23_ShowKnifeLT_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_ShowKnifeRT
struct UBP_Menu_Slasher18_C_K23_ShowKnifeRT_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_ShowBat
struct UBP_Menu_Slasher18_C_K23_ShowBat_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_HideBat
struct UBP_Menu_Slasher18_C_K23_HideBat_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_HideKnifeRT
struct UBP_Menu_Slasher18_C_K23_HideKnifeRT_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.K23_HideKnifeLT
struct UBP_Menu_Slasher18_C_K23_HideKnifeLT_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.AddBloodDrippingGKMoriMale
struct UBP_Menu_Slasher18_C_AddBloodDrippingGKMoriMale_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ReceiveBeginPlay
struct UBP_Menu_Slasher18_C_ReceiveBeginPlay_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Switch Kanobo To Demon Mode
struct UBP_Menu_Slasher18_C_Switch_Kanobo_To_Demon_Mode_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Switch Kanobo to Normal Mode
struct UBP_Menu_Slasher18_C_Switch_Kanobo_to_Normal_Mode_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Show Oni Katana
struct UBP_Menu_Slasher18_C_Show_Oni_Katana_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.Hide Oni Katana
struct UBP_Menu_Slasher18_C_Hide_Oni_Katana_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.On Customisation Updated
struct UBP_Menu_Slasher18_C_On_Customisation_Updated_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ShowDemonCosmetic
struct UBP_Menu_Slasher18_C_ShowDemonCosmetic_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.HideDemonCosmetic
struct UBP_Menu_Slasher18_C_HideDemonCosmetic_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ReturnOniToNormal
struct UBP_Menu_Slasher18_C_ReturnOniToNormal_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.StopTransformation
struct UBP_Menu_Slasher18_C_StopTransformation_Params
{
};
// Function BP_Menu_Slasher18.BP_Menu_Slasher18_C.ExecuteUbergraph_BP_Menu_Slasher18
struct UBP_Menu_Slasher18_C_ExecuteUbergraph_BP_Menu_Slasher18_Params
{
int EntryPoint; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"xnf4o@inbox.ru"
] | xnf4o@inbox.ru |
4b5455dbd69156301f07bfe8a7f686554af2aa95 | b415bbe2313a7b46483d5c40f96f737d8cad01fb | /nozzlesimulations/R3_Re2.01M_Pr1.84_M1/constant/polyMesh/owner | 4b0e15e6b0501da2ab560df361729c7cda6817ba | [] | no_license | JingboYang/EngineSimulation | 10d7cddba6b76752359c02aaf9b6523f21afc04e | c8eee8c86305782498d72e0fe229d9ecd31454be | refs/heads/master | 2021-05-28T00:01:53.666347 | 2014-11-15T14:46:36 | 2014-11-15T14:46:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,277,207 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
note "nPoints: 111660 nCells: 54800 nFaces: 220230 nInternalFaces: 108570";
location "constant/polyMesh";
object owner;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
220230
(
0
0
0
1
1
1
2
2
2
3
3
3
4
4
4
5
5
5
6
6
6
7
7
7
8
8
8
9
9
9
10
10
10
11
11
11
12
12
12
13
13
13
14
14
14
15
15
15
16
16
16
17
17
17
18
18
18
19
19
19
20
20
20
21
21
21
22
22
22
23
23
23
24
24
24
25
25
25
26
26
26
27
27
27
28
28
28
29
29
29
30
30
30
31
31
31
32
32
32
33
33
33
34
34
34
35
35
35
36
36
36
37
37
37
38
38
38
39
39
39
40
40
40
41
41
41
42
42
42
43
43
43
44
44
44
45
45
45
46
46
46
47
47
47
48
48
48
49
49
49
50
50
50
51
51
51
52
52
52
53
53
53
54
54
54
55
55
55
56
56
56
57
57
57
58
58
58
59
59
59
60
60
60
61
61
61
62
62
62
63
63
63
64
64
64
65
65
65
66
66
66
67
67
67
68
68
68
69
69
69
70
70
70
71
71
71
72
72
72
73
73
73
74
74
74
75
75
75
76
76
76
77
77
77
78
78
78
79
79
79
80
80
80
81
81
81
82
82
82
83
83
83
84
84
84
85
85
85
86
86
86
87
87
87
88
88
88
89
89
89
90
90
90
91
91
91
92
92
92
93
93
93
94
94
94
95
95
95
96
96
96
97
97
97
98
98
98
99
99
99
100
100
100
101
101
101
102
102
102
103
103
103
104
104
104
105
105
105
106
106
106
107
107
107
108
108
108
109
109
109
110
110
110
111
111
111
112
112
112
113
113
113
114
114
114
115
115
115
116
116
116
117
117
117
118
118
118
119
119
119
120
120
120
121
121
121
122
122
122
123
123
123
124
124
124
125
125
125
126
126
126
127
127
127
128
128
128
129
129
129
130
130
130
131
131
131
132
132
132
133
133
133
134
134
134
135
135
135
136
136
136
137
137
137
138
138
138
139
139
139
140
140
140
141
141
141
142
142
142
143
143
143
144
144
144
145
145
145
146
146
146
147
147
147
148
148
148
149
149
149
150
150
150
151
151
151
152
152
152
153
153
153
154
154
154
155
155
155
156
156
156
157
157
157
158
158
158
159
159
159
160
160
160
161
161
161
162
162
162
163
163
163
164
164
164
165
165
165
166
166
166
167
167
167
168
168
168
169
169
169
170
170
170
171
171
171
172
172
172
173
173
173
174
174
174
175
175
176
176
177
177
178
178
179
179
180
180
181
181
182
182
183
183
184
184
185
185
186
186
187
187
188
188
189
189
190
190
191
191
192
192
193
193
194
194
195
195
196
196
197
197
198
198
199
199
200
200
201
201
202
202
203
203
204
204
205
205
206
206
207
207
208
208
209
209
210
210
211
211
212
212
213
213
214
214
215
215
216
216
217
217
218
218
219
219
220
220
221
221
222
222
223
223
224
224
225
225
226
226
227
227
228
228
229
229
230
230
231
231
232
232
233
233
234
234
235
235
236
236
237
237
238
238
239
239
240
240
241
241
242
242
243
243
244
244
245
245
246
246
247
247
248
248
249
249
250
250
251
251
252
252
253
253
254
254
255
255
256
256
257
257
258
258
259
259
260
260
261
261
262
262
263
263
264
264
265
265
266
266
267
267
268
268
269
269
270
270
271
271
272
272
273
273
274
274
275
275
276
276
277
277
278
278
279
279
280
280
281
281
282
282
283
283
284
284
285
285
286
286
287
287
288
288
289
289
290
290
291
291
292
292
293
293
294
294
295
295
296
296
297
297
298
298
299
299
300
300
301
301
302
302
303
303
304
304
305
305
306
306
307
307
308
308
309
309
310
310
311
311
312
312
313
313
314
314
315
315
316
316
317
317
318
318
319
319
320
320
321
321
322
322
323
323
324
324
325
325
326
326
327
327
328
328
329
329
330
330
331
331
332
332
333
333
334
334
335
335
336
336
337
337
338
338
339
339
340
340
341
341
342
342
343
343
344
344
345
345
346
346
347
347
348
348
349
349
350
350
351
351
352
352
353
353
354
354
355
355
356
356
357
357
358
358
359
359
360
360
361
361
362
362
363
363
364
364
365
365
366
366
367
367
368
368
369
369
370
370
371
371
372
372
373
373
374
374
375
375
376
376
377
377
378
378
379
379
380
380
381
381
382
382
383
383
384
384
385
385
386
386
387
387
388
388
389
389
390
390
391
391
392
392
393
393
394
394
395
395
396
396
397
397
398
398
399
399
400
400
401
401
402
402
403
403
404
404
405
405
406
406
407
407
408
408
409
409
410
410
411
411
412
412
413
413
414
414
415
415
416
416
417
417
418
418
419
419
420
420
421
421
422
422
423
423
424
424
425
425
426
426
427
427
428
428
429
429
430
430
431
431
432
432
433
433
434
434
435
435
436
436
437
437
438
438
439
439
440
440
441
441
442
442
443
443
444
444
445
445
446
446
447
447
448
448
449
449
450
450
451
451
452
452
453
453
454
454
455
455
456
456
457
457
458
458
459
459
460
460
461
461
462
462
463
463
464
464
465
465
466
466
467
467
468
468
469
469
470
470
471
471
472
472
473
473
474
474
475
475
476
476
477
477
478
478
479
479
480
480
481
481
482
482
483
483
484
484
485
485
486
486
487
487
488
488
489
489
490
490
491
491
492
492
493
493
494
494
495
495
496
496
497
497
498
498
499
499
500
500
501
501
502
502
503
503
504
504
505
505
506
506
507
507
508
508
509
509
510
510
511
511
512
512
513
513
514
514
515
515
516
516
517
517
518
518
519
519
520
520
521
521
522
522
523
523
524
524
525
525
526
526
527
527
528
528
529
529
530
530
531
531
532
532
533
533
534
534
535
535
536
536
537
537
538
538
539
539
540
540
541
541
542
542
543
543
544
544
545
545
546
546
547
547
548
548
549
549
550
550
551
551
552
552
553
553
554
554
555
555
556
556
557
557
558
558
559
559
560
560
561
561
562
562
563
563
564
564
565
565
566
566
567
567
568
568
569
569
570
570
571
571
572
572
573
573
574
574
575
575
576
576
577
577
578
578
579
579
580
580
581
581
582
582
583
583
584
584
585
585
586
586
587
587
588
588
589
589
590
590
591
591
592
592
593
593
594
594
595
595
596
596
597
597
598
598
599
599
600
600
601
601
602
602
603
603
604
604
605
605
606
606
607
607
608
608
609
609
610
610
611
611
612
612
613
613
614
614
615
615
616
616
617
617
618
618
619
619
620
620
621
621
622
622
623
623
624
624
625
625
626
626
627
627
628
628
629
629
630
630
631
631
632
632
633
633
634
634
635
635
636
636
637
637
638
638
639
639
640
640
641
641
642
642
643
643
644
644
645
645
646
646
647
647
648
648
649
649
650
650
651
651
652
652
653
653
654
654
655
655
656
656
657
657
658
658
659
659
660
660
661
661
662
662
663
663
664
664
665
665
666
666
667
667
668
668
669
669
670
670
671
671
672
672
673
673
674
674
675
675
676
676
677
677
678
678
679
679
680
680
681
681
682
682
683
683
684
684
685
685
686
686
687
687
688
688
689
689
690
690
691
691
692
692
693
693
694
694
695
695
696
696
697
697
698
698
699
699
700
700
701
701
702
702
703
703
704
704
705
705
706
706
707
707
708
708
709
709
710
710
711
711
712
712
713
713
714
714
715
715
716
716
717
717
718
718
719
719
720
720
721
721
722
722
723
723
724
724
725
725
726
726
727
727
728
728
729
729
730
730
731
731
732
732
733
733
734
734
735
735
736
736
737
737
738
738
739
739
740
740
741
741
742
742
743
743
744
744
745
745
746
746
747
747
748
748
749
749
750
750
751
751
752
752
753
753
754
754
755
755
756
756
757
757
758
758
759
759
760
760
761
761
762
762
763
763
764
764
765
765
766
766
767
767
768
768
769
769
770
770
771
771
772
772
773
773
774
774
775
775
776
776
777
777
778
778
779
779
780
780
781
781
782
782
783
783
784
784
785
785
786
786
787
787
788
788
789
789
790
790
791
791
792
792
793
793
794
794
795
795
796
796
797
797
798
798
799
799
800
800
801
801
802
802
803
803
804
804
805
805
806
806
807
807
808
808
809
809
810
810
811
811
812
812
813
813
814
814
815
815
816
816
817
817
818
818
819
819
820
820
821
821
822
822
823
823
824
824
825
825
826
826
827
827
828
828
829
829
830
830
831
831
832
832
833
833
834
834
835
835
836
836
837
837
838
838
839
839
840
840
841
841
842
842
843
843
844
844
845
845
846
846
847
847
848
848
849
849
850
850
851
851
852
852
853
853
854
854
855
855
856
856
857
857
858
858
859
859
860
860
861
861
862
862
863
863
864
864
865
865
866
866
867
867
868
868
869
869
870
870
871
871
872
872
873
873
874
874
875
875
876
876
877
877
878
878
879
879
880
880
881
881
882
882
883
883
884
884
885
885
886
886
887
887
888
888
889
889
890
890
891
891
892
892
893
893
894
894
895
895
896
896
897
897
898
898
899
899
900
900
901
901
902
902
903
903
904
904
905
905
906
906
907
907
908
908
909
909
910
910
911
911
912
912
913
913
914
914
915
915
916
916
917
917
918
918
919
919
920
920
921
921
922
922
923
923
924
924
925
925
926
926
927
927
928
928
929
929
930
930
931
931
932
932
933
933
934
934
935
935
936
936
937
937
938
938
939
939
940
940
941
941
942
942
943
943
944
944
945
945
946
946
947
947
948
948
949
949
950
950
951
951
952
952
953
953
954
954
955
955
956
956
957
957
958
958
959
959
960
960
961
961
962
962
963
963
964
964
965
965
966
966
967
967
968
968
969
969
970
970
971
971
972
972
973
973
974
974
975
975
976
976
977
977
978
978
979
979
980
980
981
981
982
982
983
983
984
984
985
985
986
986
987
987
988
988
989
989
990
990
991
991
992
992
993
993
994
994
995
995
996
996
997
997
998
998
999
999
1000
1000
1001
1001
1002
1002
1003
1003
1004
1004
1005
1005
1006
1006
1007
1007
1008
1008
1009
1009
1010
1010
1011
1011
1012
1012
1013
1013
1014
1014
1015
1015
1016
1016
1017
1017
1018
1018
1019
1019
1020
1020
1021
1021
1022
1022
1023
1023
1024
1024
1025
1025
1026
1026
1027
1027
1028
1028
1029
1029
1030
1030
1031
1031
1032
1032
1033
1033
1034
1034
1035
1035
1036
1036
1037
1037
1038
1038
1039
1039
1040
1040
1041
1041
1042
1042
1043
1043
1044
1044
1045
1045
1046
1046
1047
1047
1048
1048
1049
1049
1050
1050
1051
1051
1052
1052
1053
1053
1054
1054
1055
1055
1056
1056
1057
1057
1058
1058
1059
1059
1060
1060
1061
1061
1062
1062
1063
1063
1064
1064
1065
1065
1066
1066
1067
1067
1068
1068
1069
1069
1070
1070
1071
1071
1072
1072
1073
1073
1074
1074
1075
1075
1076
1076
1077
1077
1078
1078
1079
1079
1080
1080
1081
1081
1082
1082
1083
1083
1084
1084
1085
1085
1086
1086
1087
1087
1088
1088
1089
1089
1090
1090
1091
1091
1092
1092
1093
1093
1094
1094
1095
1095
1096
1096
1097
1097
1098
1098
1099
1099
1100
1100
1101
1101
1102
1102
1103
1103
1104
1104
1105
1105
1106
1106
1107
1107
1108
1108
1109
1109
1110
1110
1111
1111
1112
1112
1113
1113
1114
1114
1115
1115
1116
1116
1117
1117
1118
1118
1119
1119
1120
1120
1121
1121
1122
1122
1123
1123
1124
1124
1125
1125
1126
1126
1127
1127
1128
1128
1129
1129
1130
1130
1131
1131
1132
1132
1133
1133
1134
1134
1135
1135
1136
1136
1137
1137
1138
1138
1139
1139
1140
1140
1141
1141
1142
1142
1143
1143
1144
1144
1145
1145
1146
1146
1147
1147
1148
1148
1149
1149
1150
1150
1151
1151
1152
1152
1153
1153
1154
1154
1155
1155
1156
1156
1157
1157
1158
1158
1159
1159
1160
1160
1161
1161
1162
1162
1163
1163
1164
1164
1165
1165
1166
1166
1167
1167
1168
1168
1169
1169
1170
1170
1171
1171
1172
1172
1173
1173
1174
1174
1175
1175
1176
1176
1177
1177
1178
1178
1179
1179
1180
1180
1181
1181
1182
1182
1183
1183
1184
1184
1185
1185
1186
1186
1187
1187
1188
1188
1189
1189
1190
1190
1191
1191
1192
1192
1193
1193
1194
1194
1195
1195
1196
1196
1197
1197
1198
1198
1199
1199
1200
1200
1201
1201
1202
1202
1203
1203
1204
1204
1205
1205
1206
1206
1207
1207
1208
1208
1209
1209
1210
1210
1211
1211
1212
1212
1213
1213
1214
1214
1215
1215
1216
1216
1217
1217
1218
1218
1219
1219
1220
1220
1221
1221
1222
1222
1223
1223
1224
1224
1225
1225
1226
1226
1227
1227
1228
1228
1229
1229
1230
1230
1231
1231
1232
1232
1233
1233
1234
1234
1235
1235
1236
1236
1237
1237
1238
1238
1239
1239
1240
1240
1241
1241
1242
1242
1243
1243
1244
1244
1245
1245
1246
1246
1247
1247
1248
1248
1249
1249
1250
1250
1251
1251
1252
1252
1253
1253
1254
1254
1255
1255
1256
1256
1257
1257
1258
1258
1259
1259
1260
1260
1261
1261
1262
1262
1263
1263
1264
1264
1265
1265
1266
1266
1267
1267
1268
1268
1269
1269
1270
1270
1271
1271
1272
1272
1273
1273
1274
1274
1275
1275
1276
1276
1277
1277
1278
1278
1279
1279
1280
1280
1281
1281
1282
1282
1283
1283
1284
1284
1285
1285
1286
1286
1287
1287
1288
1288
1289
1289
1290
1290
1291
1291
1292
1292
1293
1293
1294
1294
1295
1295
1296
1296
1297
1297
1298
1298
1299
1299
1300
1300
1301
1301
1302
1302
1303
1303
1304
1304
1305
1305
1306
1306
1307
1307
1308
1308
1309
1309
1310
1310
1311
1311
1312
1312
1313
1313
1314
1314
1315
1315
1316
1316
1317
1317
1318
1318
1319
1319
1320
1320
1321
1321
1322
1322
1323
1323
1324
1324
1325
1325
1326
1326
1327
1327
1328
1328
1329
1329
1330
1330
1331
1331
1332
1332
1333
1333
1334
1334
1335
1335
1336
1336
1337
1337
1338
1338
1339
1339
1340
1340
1341
1341
1342
1342
1343
1343
1344
1344
1345
1345
1346
1346
1347
1347
1348
1348
1349
1349
1350
1350
1351
1351
1352
1352
1353
1353
1354
1354
1355
1355
1356
1356
1357
1357
1358
1358
1359
1359
1360
1360
1361
1361
1362
1362
1363
1363
1364
1364
1365
1365
1366
1366
1367
1367
1368
1368
1369
1369
1370
1370
1371
1371
1372
1372
1373
1373
1374
1374
1375
1375
1376
1376
1377
1377
1378
1378
1379
1379
1380
1380
1381
1381
1382
1382
1383
1383
1384
1384
1385
1385
1386
1386
1387
1387
1388
1388
1389
1389
1390
1390
1391
1391
1392
1392
1393
1393
1394
1394
1395
1395
1396
1396
1397
1397
1398
1398
1399
1399
1400
1400
1401
1401
1402
1402
1403
1403
1404
1404
1405
1405
1406
1406
1407
1407
1408
1408
1409
1409
1410
1410
1411
1411
1412
1412
1413
1413
1414
1414
1415
1415
1416
1416
1417
1417
1418
1418
1419
1419
1420
1420
1421
1421
1422
1422
1423
1423
1424
1424
1425
1425
1426
1426
1427
1427
1428
1428
1429
1429
1430
1430
1431
1431
1432
1432
1433
1433
1434
1434
1435
1435
1436
1436
1437
1437
1438
1438
1439
1439
1440
1440
1441
1441
1442
1442
1443
1443
1444
1444
1445
1445
1446
1446
1447
1447
1448
1448
1449
1449
1450
1450
1451
1451
1452
1452
1453
1453
1454
1454
1455
1455
1456
1456
1457
1457
1458
1458
1459
1459
1460
1460
1461
1461
1462
1462
1463
1463
1464
1464
1465
1465
1466
1466
1467
1467
1468
1468
1469
1469
1470
1470
1471
1471
1472
1472
1473
1473
1474
1474
1475
1475
1476
1476
1477
1477
1478
1478
1479
1479
1480
1480
1481
1481
1482
1482
1483
1483
1484
1484
1485
1485
1486
1486
1487
1487
1488
1488
1489
1489
1490
1490
1491
1491
1492
1492
1493
1493
1494
1494
1495
1495
1496
1496
1497
1497
1498
1498
1499
1499
1500
1500
1501
1501
1502
1502
1503
1503
1504
1504
1505
1505
1506
1506
1507
1507
1508
1508
1509
1509
1510
1510
1511
1511
1512
1512
1513
1513
1514
1514
1515
1515
1516
1516
1517
1517
1518
1518
1519
1519
1520
1520
1521
1521
1522
1522
1523
1523
1524
1524
1525
1525
1526
1526
1527
1527
1528
1528
1529
1529
1530
1530
1531
1531
1532
1532
1533
1533
1534
1534
1535
1535
1536
1536
1537
1537
1538
1538
1539
1539
1540
1540
1541
1541
1542
1542
1543
1543
1544
1544
1545
1545
1546
1546
1547
1547
1548
1548
1549
1549
1550
1550
1551
1551
1552
1552
1553
1553
1554
1554
1555
1555
1556
1556
1557
1557
1558
1558
1559
1559
1560
1560
1561
1561
1562
1562
1563
1563
1564
1564
1565
1565
1566
1566
1567
1567
1568
1568
1569
1569
1570
1570
1571
1571
1572
1572
1573
1573
1574
1574
1575
1575
1576
1576
1577
1577
1578
1578
1579
1579
1580
1580
1581
1581
1582
1582
1583
1583
1584
1584
1585
1585
1586
1586
1587
1587
1588
1588
1589
1589
1590
1590
1591
1591
1592
1592
1593
1593
1594
1594
1595
1595
1596
1596
1597
1597
1598
1598
1599
1599
1600
1600
1601
1601
1602
1602
1603
1603
1604
1604
1605
1605
1606
1606
1607
1607
1608
1608
1609
1609
1610
1610
1611
1611
1612
1612
1613
1613
1614
1614
1615
1615
1616
1616
1617
1617
1618
1618
1619
1619
1620
1620
1621
1621
1622
1622
1623
1623
1624
1624
1625
1625
1626
1626
1627
1627
1628
1628
1629
1629
1630
1630
1631
1631
1632
1632
1633
1633
1634
1634
1635
1635
1636
1636
1637
1637
1638
1638
1639
1639
1640
1640
1641
1641
1642
1642
1643
1643
1644
1644
1645
1645
1646
1646
1647
1647
1648
1648
1649
1649
1650
1650
1651
1651
1652
1652
1653
1653
1654
1654
1655
1655
1656
1656
1657
1657
1658
1658
1659
1659
1660
1660
1661
1661
1662
1662
1663
1663
1664
1664
1665
1665
1666
1666
1667
1667
1668
1668
1669
1669
1670
1670
1671
1671
1672
1672
1673
1673
1674
1674
1675
1675
1676
1676
1677
1677
1678
1678
1679
1679
1680
1680
1681
1681
1682
1682
1683
1683
1684
1684
1685
1685
1686
1686
1687
1687
1688
1688
1689
1689
1690
1690
1691
1691
1692
1692
1693
1693
1694
1694
1695
1695
1696
1696
1697
1697
1698
1698
1699
1699
1700
1700
1701
1701
1702
1702
1703
1703
1704
1704
1705
1705
1706
1706
1707
1707
1708
1708
1709
1709
1710
1710
1711
1711
1712
1712
1713
1713
1714
1714
1715
1715
1716
1716
1717
1717
1718
1718
1719
1719
1720
1720
1721
1721
1722
1722
1723
1723
1724
1724
1725
1725
1726
1726
1727
1727
1728
1728
1729
1729
1730
1730
1731
1731
1732
1732
1733
1733
1734
1734
1735
1735
1736
1736
1737
1737
1738
1738
1739
1739
1740
1740
1741
1741
1742
1742
1743
1743
1744
1744
1745
1745
1746
1746
1747
1747
1748
1748
1749
1749
1750
1750
1751
1751
1752
1752
1753
1753
1754
1754
1755
1755
1756
1756
1757
1757
1758
1758
1759
1759
1760
1760
1761
1761
1762
1762
1763
1763
1764
1764
1765
1765
1766
1766
1767
1767
1768
1768
1769
1769
1770
1770
1771
1771
1772
1772
1773
1773
1774
1774
1775
1775
1776
1776
1777
1777
1778
1778
1779
1779
1780
1780
1781
1781
1782
1782
1783
1783
1784
1784
1785
1785
1786
1786
1787
1787
1788
1788
1789
1789
1790
1790
1791
1791
1792
1792
1793
1793
1794
1794
1795
1795
1796
1796
1797
1797
1798
1798
1799
1799
1800
1800
1801
1801
1802
1802
1803
1803
1804
1804
1805
1805
1806
1806
1807
1807
1808
1808
1809
1809
1810
1810
1811
1811
1812
1812
1813
1813
1814
1814
1815
1815
1816
1816
1817
1817
1818
1818
1819
1819
1820
1820
1821
1821
1822
1822
1823
1823
1824
1824
1825
1825
1826
1826
1827
1827
1828
1828
1829
1829
1830
1830
1831
1831
1832
1832
1833
1833
1834
1834
1835
1835
1836
1836
1837
1837
1838
1838
1839
1839
1840
1840
1841
1841
1842
1842
1843
1843
1844
1844
1845
1845
1846
1846
1847
1847
1848
1848
1849
1849
1850
1850
1851
1851
1852
1852
1853
1853
1854
1854
1855
1855
1856
1856
1857
1857
1858
1858
1859
1859
1860
1860
1861
1861
1862
1862
1863
1863
1864
1864
1865
1865
1866
1866
1867
1867
1868
1868
1869
1869
1870
1870
1871
1871
1872
1872
1873
1873
1874
1874
1875
1875
1876
1876
1877
1877
1878
1878
1879
1879
1880
1880
1881
1881
1882
1882
1883
1883
1884
1884
1885
1885
1886
1886
1887
1887
1888
1888
1889
1889
1890
1890
1891
1891
1892
1892
1893
1893
1894
1894
1895
1895
1896
1896
1897
1897
1898
1898
1899
1899
1900
1900
1901
1901
1902
1902
1903
1903
1904
1904
1905
1905
1906
1906
1907
1907
1908
1908
1909
1909
1910
1910
1911
1911
1912
1912
1913
1913
1914
1914
1915
1915
1916
1916
1917
1917
1918
1918
1919
1919
1920
1920
1921
1921
1922
1922
1923
1923
1924
1924
1925
1925
1926
1926
1927
1927
1928
1928
1929
1929
1930
1930
1931
1931
1932
1932
1933
1933
1934
1934
1935
1935
1936
1936
1937
1937
1938
1938
1939
1939
1940
1940
1941
1941
1942
1942
1943
1943
1944
1944
1945
1945
1946
1946
1947
1947
1948
1948
1949
1949
1950
1950
1951
1951
1952
1952
1953
1953
1954
1954
1955
1955
1956
1956
1957
1957
1958
1958
1959
1959
1960
1960
1961
1961
1962
1962
1963
1963
1964
1964
1965
1965
1966
1966
1967
1967
1968
1968
1969
1969
1970
1970
1971
1971
1972
1972
1973
1973
1974
1974
1975
1975
1976
1976
1977
1977
1978
1978
1979
1979
1980
1980
1981
1981
1982
1982
1983
1983
1984
1984
1985
1985
1986
1986
1987
1987
1988
1988
1989
1989
1990
1990
1991
1991
1992
1992
1993
1993
1994
1994
1995
1995
1996
1996
1997
1997
1998
1998
1999
1999
2000
2000
2001
2001
2002
2002
2003
2003
2004
2004
2005
2005
2006
2006
2007
2007
2008
2008
2009
2009
2010
2010
2011
2011
2012
2012
2013
2013
2014
2014
2015
2015
2016
2016
2017
2017
2018
2018
2019
2019
2020
2020
2021
2021
2022
2022
2023
2023
2024
2024
2025
2025
2026
2026
2027
2027
2028
2028
2029
2029
2030
2030
2031
2031
2032
2032
2033
2033
2034
2034
2035
2035
2036
2036
2037
2037
2038
2038
2039
2039
2040
2040
2041
2041
2042
2042
2043
2043
2044
2044
2045
2045
2046
2046
2047
2047
2048
2048
2049
2049
2050
2050
2051
2051
2052
2052
2053
2053
2054
2054
2055
2055
2056
2056
2057
2057
2058
2058
2059
2059
2060
2060
2061
2061
2062
2062
2063
2063
2064
2064
2065
2065
2066
2066
2067
2067
2068
2068
2069
2069
2070
2070
2071
2071
2072
2072
2073
2073
2074
2074
2075
2075
2076
2076
2077
2077
2078
2078
2079
2079
2080
2080
2081
2081
2082
2082
2083
2083
2084
2084
2085
2085
2086
2086
2087
2087
2088
2088
2089
2089
2090
2090
2091
2091
2092
2092
2093
2093
2094
2094
2095
2095
2096
2096
2097
2097
2098
2098
2099
2099
2100
2100
2101
2101
2102
2102
2103
2103
2104
2104
2105
2105
2106
2106
2107
2107
2108
2108
2109
2109
2110
2110
2111
2111
2112
2112
2113
2113
2114
2114
2115
2115
2116
2116
2117
2117
2118
2118
2119
2119
2120
2120
2121
2121
2122
2122
2123
2123
2124
2124
2125
2125
2126
2126
2127
2127
2128
2128
2129
2129
2130
2130
2131
2131
2132
2132
2133
2133
2134
2134
2135
2135
2136
2136
2137
2137
2138
2138
2139
2139
2140
2140
2141
2141
2142
2142
2143
2143
2144
2144
2145
2145
2146
2146
2147
2147
2148
2148
2149
2149
2150
2150
2151
2151
2152
2152
2153
2153
2154
2154
2155
2155
2156
2156
2157
2157
2158
2158
2159
2159
2160
2160
2161
2161
2162
2162
2163
2163
2164
2164
2165
2165
2166
2166
2167
2167
2168
2168
2169
2169
2170
2170
2171
2171
2172
2172
2173
2173
2174
2174
2175
2175
2176
2176
2177
2177
2178
2178
2179
2179
2180
2180
2181
2181
2182
2182
2183
2183
2184
2184
2185
2185
2186
2186
2187
2187
2188
2188
2189
2189
2190
2190
2191
2191
2192
2192
2193
2193
2194
2194
2195
2195
2196
2196
2197
2197
2198
2198
2199
2199
2200
2200
2201
2201
2202
2202
2203
2203
2204
2204
2205
2205
2206
2206
2207
2207
2208
2208
2209
2209
2210
2210
2211
2211
2212
2212
2213
2213
2214
2214
2215
2215
2216
2216
2217
2217
2218
2218
2219
2219
2220
2220
2221
2221
2222
2222
2223
2223
2224
2224
2225
2225
2226
2226
2227
2227
2228
2228
2229
2229
2230
2230
2231
2231
2232
2232
2233
2233
2234
2234
2235
2235
2236
2236
2237
2237
2238
2238
2239
2239
2240
2240
2241
2241
2242
2242
2243
2243
2244
2244
2245
2245
2246
2246
2247
2247
2248
2248
2249
2249
2250
2250
2251
2251
2252
2252
2253
2253
2254
2254
2255
2255
2256
2256
2257
2257
2258
2258
2259
2259
2260
2260
2261
2261
2262
2262
2263
2263
2264
2264
2265
2265
2266
2266
2267
2267
2268
2268
2269
2269
2270
2270
2271
2271
2272
2272
2273
2273
2274
2274
2275
2275
2276
2276
2277
2277
2278
2278
2279
2279
2280
2280
2281
2281
2282
2282
2283
2283
2284
2284
2285
2285
2286
2286
2287
2287
2288
2288
2289
2289
2290
2290
2291
2291
2292
2292
2293
2293
2294
2294
2295
2295
2296
2296
2297
2297
2298
2298
2299
2299
2300
2300
2301
2301
2302
2302
2303
2303
2304
2304
2305
2305
2306
2306
2307
2307
2308
2308
2309
2309
2310
2310
2311
2311
2312
2312
2313
2313
2314
2314
2315
2315
2316
2316
2317
2317
2318
2318
2319
2319
2320
2320
2321
2321
2322
2322
2323
2323
2324
2324
2325
2325
2326
2326
2327
2327
2328
2328
2329
2329
2330
2330
2331
2331
2332
2332
2333
2333
2334
2334
2335
2335
2336
2336
2337
2337
2338
2338
2339
2339
2340
2340
2341
2341
2342
2342
2343
2343
2344
2344
2345
2345
2346
2346
2347
2347
2348
2348
2349
2349
2350
2350
2351
2351
2352
2352
2353
2353
2354
2354
2355
2355
2356
2356
2357
2357
2358
2358
2359
2359
2360
2360
2361
2361
2362
2362
2363
2363
2364
2364
2365
2365
2366
2366
2367
2367
2368
2368
2369
2369
2370
2370
2371
2371
2372
2372
2373
2373
2374
2374
2375
2375
2376
2376
2377
2377
2378
2378
2379
2379
2380
2380
2381
2381
2382
2382
2383
2383
2384
2384
2385
2385
2386
2386
2387
2387
2388
2388
2389
2389
2390
2390
2391
2391
2392
2392
2393
2393
2394
2394
2395
2395
2396
2396
2397
2397
2398
2398
2399
2399
2400
2400
2401
2401
2402
2402
2403
2403
2404
2404
2405
2405
2406
2406
2407
2407
2408
2408
2409
2409
2410
2410
2411
2411
2412
2412
2413
2413
2414
2414
2415
2415
2416
2416
2417
2417
2418
2418
2419
2419
2420
2420
2421
2421
2422
2422
2423
2423
2424
2424
2425
2425
2426
2426
2427
2427
2428
2428
2429
2429
2430
2430
2431
2431
2432
2432
2433
2433
2434
2434
2435
2435
2436
2436
2437
2437
2438
2438
2439
2439
2440
2440
2441
2441
2442
2442
2443
2443
2444
2444
2445
2445
2446
2446
2447
2447
2448
2448
2449
2449
2450
2450
2451
2451
2452
2452
2453
2453
2454
2454
2455
2455
2456
2456
2457
2457
2458
2458
2459
2459
2460
2460
2461
2461
2462
2462
2463
2463
2464
2464
2465
2465
2466
2466
2467
2467
2468
2468
2469
2469
2470
2470
2471
2471
2472
2472
2473
2473
2474
2474
2475
2475
2476
2476
2477
2477
2478
2478
2479
2479
2480
2480
2481
2481
2482
2482
2483
2483
2484
2484
2485
2485
2486
2486
2487
2487
2488
2488
2489
2489
2490
2490
2491
2491
2492
2492
2493
2493
2494
2494
2495
2495
2496
2496
2497
2497
2498
2498
2499
2499
2500
2500
2501
2501
2502
2502
2503
2503
2504
2504
2505
2505
2506
2506
2507
2507
2508
2508
2509
2509
2510
2510
2511
2511
2512
2512
2513
2513
2514
2514
2515
2515
2516
2516
2517
2517
2518
2518
2519
2519
2520
2520
2521
2521
2522
2522
2523
2523
2524
2524
2525
2525
2526
2526
2527
2527
2528
2528
2529
2529
2530
2530
2531
2531
2532
2532
2533
2533
2534
2534
2535
2535
2536
2536
2537
2537
2538
2538
2539
2539
2540
2540
2541
2541
2542
2542
2543
2543
2544
2544
2545
2545
2546
2546
2547
2547
2548
2548
2549
2549
2550
2550
2551
2551
2552
2552
2553
2553
2554
2554
2555
2555
2556
2556
2557
2557
2558
2558
2559
2559
2560
2560
2561
2561
2562
2562
2563
2563
2564
2564
2565
2565
2566
2566
2567
2567
2568
2568
2569
2569
2570
2570
2571
2571
2572
2572
2573
2573
2574
2574
2575
2575
2576
2576
2577
2577
2578
2578
2579
2579
2580
2580
2581
2581
2582
2582
2583
2583
2584
2584
2585
2585
2586
2586
2587
2587
2588
2588
2589
2589
2590
2590
2591
2591
2592
2592
2593
2593
2594
2594
2595
2595
2596
2596
2597
2597
2598
2598
2599
2599
2600
2600
2601
2601
2602
2602
2603
2603
2604
2604
2605
2605
2606
2606
2607
2607
2608
2608
2609
2609
2610
2610
2611
2611
2612
2612
2613
2613
2614
2614
2615
2615
2616
2616
2617
2617
2618
2618
2619
2619
2620
2620
2621
2621
2622
2622
2623
2623
2624
2624
2625
2625
2626
2626
2627
2627
2628
2628
2629
2629
2630
2630
2631
2631
2632
2632
2633
2633
2634
2634
2635
2635
2636
2636
2637
2637
2638
2638
2639
2639
2640
2640
2641
2641
2642
2642
2643
2643
2644
2644
2645
2645
2646
2646
2647
2647
2648
2648
2649
2649
2650
2650
2651
2651
2652
2652
2653
2653
2654
2654
2655
2655
2656
2656
2657
2657
2658
2658
2659
2659
2660
2660
2661
2661
2662
2662
2663
2663
2664
2664
2665
2665
2666
2666
2667
2667
2668
2668
2669
2669
2670
2670
2671
2671
2672
2672
2673
2673
2674
2674
2675
2675
2676
2676
2677
2677
2678
2678
2679
2679
2680
2680
2681
2681
2682
2682
2683
2683
2684
2684
2685
2685
2686
2686
2687
2687
2688
2688
2689
2689
2690
2690
2691
2691
2692
2692
2693
2693
2694
2694
2695
2695
2696
2696
2697
2697
2698
2698
2699
2699
2700
2700
2701
2701
2702
2702
2703
2703
2704
2704
2705
2705
2706
2706
2707
2707
2708
2708
2709
2709
2710
2710
2711
2711
2712
2712
2713
2713
2714
2714
2715
2715
2716
2716
2717
2717
2718
2718
2719
2719
2720
2720
2721
2721
2722
2722
2723
2723
2724
2724
2725
2725
2726
2726
2727
2727
2728
2728
2729
2729
2730
2730
2731
2731
2732
2732
2733
2733
2734
2734
2735
2735
2736
2736
2737
2737
2738
2738
2739
2739
2740
2740
2741
2741
2742
2742
2743
2743
2744
2744
2745
2745
2746
2746
2747
2747
2748
2748
2749
2749
2750
2750
2751
2751
2752
2752
2753
2753
2754
2754
2755
2755
2756
2756
2757
2757
2758
2758
2759
2759
2760
2760
2761
2761
2762
2762
2763
2763
2764
2764
2765
2765
2766
2766
2767
2767
2768
2768
2769
2769
2770
2770
2771
2771
2772
2772
2773
2773
2774
2774
2775
2775
2776
2776
2777
2777
2778
2778
2779
2779
2780
2780
2781
2781
2782
2782
2783
2783
2784
2784
2785
2785
2786
2786
2787
2787
2788
2788
2789
2789
2790
2790
2791
2791
2792
2792
2793
2793
2794
2794
2795
2795
2796
2796
2797
2797
2798
2798
2799
2799
2800
2800
2801
2801
2802
2802
2803
2803
2804
2804
2805
2805
2806
2806
2807
2807
2808
2808
2809
2809
2810
2810
2811
2811
2812
2812
2813
2813
2814
2814
2815
2815
2816
2816
2817
2817
2818
2818
2819
2819
2820
2820
2821
2821
2822
2822
2823
2823
2824
2824
2825
2825
2826
2826
2827
2827
2828
2828
2829
2829
2830
2830
2831
2831
2832
2832
2833
2833
2834
2834
2835
2835
2836
2836
2837
2837
2838
2838
2839
2839
2840
2840
2841
2841
2842
2842
2843
2843
2844
2844
2845
2845
2846
2846
2847
2847
2848
2848
2849
2849
2850
2850
2851
2851
2852
2852
2853
2853
2854
2854
2855
2855
2856
2856
2857
2857
2858
2858
2859
2859
2860
2860
2861
2861
2862
2862
2863
2863
2864
2864
2865
2865
2866
2866
2867
2867
2868
2868
2869
2869
2870
2870
2871
2871
2872
2872
2873
2873
2874
2874
2875
2875
2876
2876
2877
2877
2878
2878
2879
2879
2880
2880
2881
2881
2882
2882
2883
2883
2884
2884
2885
2885
2886
2886
2887
2887
2888
2888
2889
2889
2890
2890
2891
2891
2892
2892
2893
2893
2894
2894
2895
2895
2896
2896
2897
2897
2898
2898
2899
2899
2900
2900
2901
2901
2902
2902
2903
2903
2904
2904
2905
2905
2906
2906
2907
2907
2908
2908
2909
2909
2910
2910
2911
2911
2912
2912
2913
2913
2914
2914
2915
2915
2916
2916
2917
2917
2918
2918
2919
2919
2920
2920
2921
2921
2922
2922
2923
2923
2924
2924
2925
2925
2926
2926
2927
2927
2928
2928
2929
2929
2930
2930
2931
2931
2932
2932
2933
2933
2934
2934
2935
2935
2936
2936
2937
2937
2938
2938
2939
2939
2940
2940
2941
2941
2942
2942
2943
2943
2944
2944
2945
2945
2946
2946
2947
2947
2948
2948
2949
2949
2950
2950
2951
2951
2952
2952
2953
2953
2954
2954
2955
2955
2956
2956
2957
2957
2958
2958
2959
2959
2960
2960
2961
2961
2962
2962
2963
2963
2964
2964
2965
2965
2966
2966
2967
2967
2968
2968
2969
2969
2970
2970
2971
2971
2972
2972
2973
2973
2974
2974
2975
2975
2976
2976
2977
2977
2978
2978
2979
2979
2980
2980
2981
2981
2982
2982
2983
2983
2984
2984
2985
2985
2986
2986
2987
2987
2988
2988
2989
2989
2990
2990
2991
2991
2992
2992
2993
2993
2994
2994
2995
2995
2996
2996
2997
2997
2998
2998
2999
2999
3000
3000
3001
3001
3002
3002
3003
3003
3004
3004
3005
3005
3006
3006
3007
3007
3008
3008
3009
3009
3010
3010
3011
3011
3012
3012
3013
3013
3014
3014
3015
3015
3016
3016
3017
3017
3018
3018
3019
3019
3020
3020
3021
3021
3022
3022
3023
3023
3024
3024
3025
3025
3026
3026
3027
3027
3028
3028
3029
3029
3030
3030
3031
3031
3032
3032
3033
3033
3034
3034
3035
3035
3036
3036
3037
3037
3038
3038
3039
3039
3040
3040
3041
3041
3042
3042
3043
3043
3044
3044
3045
3045
3046
3046
3047
3047
3048
3048
3049
3049
3050
3050
3051
3051
3052
3052
3053
3053
3054
3054
3055
3055
3056
3056
3057
3057
3058
3058
3059
3059
3060
3060
3061
3061
3062
3062
3063
3063
3064
3064
3065
3065
3066
3066
3067
3067
3068
3068
3069
3069
3070
3070
3071
3071
3072
3072
3073
3073
3074
3074
3075
3075
3076
3076
3077
3077
3078
3078
3079
3079
3080
3080
3081
3081
3082
3082
3083
3083
3084
3084
3085
3085
3086
3086
3087
3087
3088
3088
3089
3089
3090
3090
3091
3091
3092
3092
3093
3093
3094
3094
3095
3095
3096
3096
3097
3097
3098
3098
3099
3099
3100
3100
3101
3101
3102
3102
3103
3103
3104
3104
3105
3105
3106
3106
3107
3107
3108
3108
3109
3109
3110
3110
3111
3111
3112
3112
3113
3113
3114
3114
3115
3115
3116
3116
3117
3117
3118
3118
3119
3119
3120
3120
3121
3121
3122
3122
3123
3123
3124
3124
3125
3125
3126
3126
3127
3127
3128
3128
3129
3129
3130
3130
3131
3131
3132
3132
3133
3133
3134
3134
3135
3135
3136
3136
3137
3137
3138
3138
3139
3139
3140
3140
3141
3141
3142
3142
3143
3143
3144
3144
3145
3145
3146
3146
3147
3147
3148
3148
3149
3149
3150
3150
3151
3151
3152
3152
3153
3153
3154
3154
3155
3155
3156
3156
3157
3157
3158
3158
3159
3159
3160
3160
3161
3161
3162
3162
3163
3163
3164
3164
3165
3165
3166
3166
3167
3167
3168
3168
3169
3169
3170
3170
3171
3171
3172
3172
3173
3173
3174
3174
3175
3175
3176
3176
3177
3177
3178
3178
3179
3179
3180
3180
3181
3181
3182
3182
3183
3183
3184
3184
3185
3185
3186
3186
3187
3187
3188
3188
3189
3189
3190
3190
3191
3191
3192
3192
3193
3193
3194
3194
3195
3195
3196
3196
3197
3197
3198
3198
3199
3199
3200
3200
3201
3201
3202
3202
3203
3203
3204
3204
3205
3205
3206
3206
3207
3207
3208
3208
3209
3209
3210
3210
3211
3211
3212
3212
3213
3213
3214
3214
3215
3215
3216
3216
3217
3217
3218
3218
3219
3219
3220
3220
3221
3221
3222
3222
3223
3223
3224
3224
3225
3225
3226
3226
3227
3227
3228
3228
3229
3229
3230
3230
3231
3231
3232
3232
3233
3233
3234
3234
3235
3235
3236
3236
3237
3237
3238
3238
3239
3239
3240
3240
3241
3241
3242
3242
3243
3243
3244
3244
3245
3245
3246
3246
3247
3247
3248
3248
3249
3249
3250
3250
3251
3251
3252
3252
3253
3253
3254
3254
3255
3255
3256
3256
3257
3257
3258
3258
3259
3259
3260
3260
3261
3261
3262
3262
3263
3263
3264
3264
3265
3265
3266
3266
3267
3267
3268
3268
3269
3269
3270
3270
3271
3271
3272
3272
3273
3273
3274
3274
3275
3275
3276
3276
3277
3277
3278
3278
3279
3279
3280
3280
3281
3281
3282
3282
3283
3283
3284
3284
3285
3285
3286
3286
3287
3287
3288
3288
3289
3289
3290
3290
3291
3291
3292
3292
3293
3293
3294
3294
3295
3295
3296
3296
3297
3297
3298
3298
3299
3299
3300
3300
3301
3301
3302
3302
3303
3303
3304
3304
3305
3305
3306
3306
3307
3307
3308
3308
3309
3309
3310
3310
3311
3311
3312
3312
3313
3313
3314
3314
3315
3315
3316
3316
3317
3317
3318
3318
3319
3319
3320
3320
3321
3321
3322
3322
3323
3323
3324
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3500
3500
3501
3501
3501
3502
3502
3502
3503
3503
3503
3504
3504
3504
3505
3505
3505
3506
3506
3506
3507
3507
3507
3508
3508
3508
3509
3509
3509
3510
3510
3510
3511
3511
3511
3512
3512
3512
3513
3513
3513
3514
3514
3514
3515
3515
3515
3516
3516
3516
3517
3517
3517
3518
3518
3518
3519
3519
3519
3520
3520
3520
3521
3521
3521
3522
3522
3522
3523
3523
3523
3524
3524
3524
3525
3525
3525
3526
3526
3526
3527
3527
3527
3528
3528
3528
3529
3529
3529
3530
3530
3531
3531
3532
3532
3533
3533
3534
3534
3535
3535
3536
3536
3537
3537
3538
3538
3539
3539
3540
3540
3541
3541
3542
3542
3543
3543
3544
3544
3545
3545
3546
3546
3547
3547
3548
3548
3549
3549
3550
3550
3551
3551
3552
3552
3553
3553
3554
3554
3555
3555
3556
3556
3557
3557
3558
3558
3559
3559
3560
3560
3561
3561
3562
3562
3563
3563
3564
3564
3565
3565
3566
3566
3567
3567
3568
3568
3569
3569
3570
3570
3571
3571
3572
3572
3573
3573
3574
3574
3575
3575
3576
3576
3577
3577
3578
3578
3579
3579
3580
3580
3581
3581
3582
3582
3583
3583
3584
3584
3585
3585
3586
3586
3587
3587
3588
3588
3589
3589
3590
3590
3591
3591
3592
3592
3593
3593
3594
3594
3595
3595
3596
3596
3597
3597
3598
3598
3599
3599
3600
3600
3601
3601
3602
3602
3603
3603
3604
3604
3605
3605
3606
3606
3607
3607
3608
3608
3609
3609
3610
3610
3611
3611
3612
3612
3613
3613
3614
3614
3615
3615
3616
3616
3617
3617
3618
3618
3619
3619
3620
3620
3621
3621
3622
3622
3623
3623
3624
3624
3625
3625
3626
3626
3627
3627
3628
3628
3629
3629
3630
3630
3631
3631
3632
3632
3633
3633
3634
3634
3635
3635
3636
3636
3637
3637
3638
3638
3639
3639
3640
3640
3641
3641
3642
3642
3643
3643
3644
3644
3645
3645
3646
3646
3647
3647
3648
3648
3649
3649
3650
3650
3651
3651
3652
3652
3653
3653
3654
3654
3655
3655
3656
3656
3657
3657
3658
3658
3659
3659
3660
3660
3661
3661
3662
3662
3663
3663
3664
3664
3665
3665
3666
3666
3667
3667
3668
3668
3669
3669
3670
3670
3671
3671
3672
3672
3673
3673
3674
3674
3675
3675
3676
3676
3677
3677
3678
3678
3679
3679
3680
3680
3681
3681
3682
3682
3683
3683
3684
3684
3685
3685
3686
3686
3687
3687
3688
3688
3689
3689
3690
3690
3691
3691
3692
3692
3693
3693
3694
3694
3695
3695
3696
3696
3697
3697
3698
3698
3699
3699
3700
3700
3701
3701
3702
3702
3703
3703
3704
3704
3705
3705
3706
3706
3707
3707
3708
3708
3709
3709
3710
3710
3711
3711
3712
3712
3713
3713
3714
3714
3715
3715
3716
3716
3717
3717
3718
3718
3719
3719
3720
3720
3721
3721
3722
3722
3723
3723
3724
3724
3725
3725
3726
3726
3727
3727
3728
3728
3729
3729
3730
3730
3731
3731
3732
3732
3733
3733
3734
3734
3735
3735
3736
3736
3737
3737
3738
3738
3739
3739
3740
3740
3741
3741
3742
3742
3743
3743
3744
3744
3745
3745
3746
3746
3747
3747
3748
3748
3749
3749
3750
3750
3751
3751
3752
3752
3753
3753
3754
3754
3755
3755
3756
3756
3757
3757
3758
3758
3759
3759
3760
3760
3761
3761
3762
3762
3763
3763
3764
3764
3765
3765
3766
3766
3767
3767
3768
3768
3769
3769
3770
3770
3771
3771
3772
3772
3773
3773
3774
3774
3775
3775
3776
3776
3777
3777
3778
3778
3779
3779
3780
3780
3781
3781
3782
3782
3783
3783
3784
3784
3785
3785
3786
3786
3787
3787
3788
3788
3789
3789
3790
3790
3791
3791
3792
3792
3793
3793
3794
3794
3795
3795
3796
3796
3797
3797
3798
3798
3799
3799
3800
3800
3801
3801
3802
3802
3803
3803
3804
3804
3805
3805
3806
3806
3807
3807
3808
3808
3809
3809
3810
3810
3811
3811
3812
3812
3813
3813
3814
3814
3815
3815
3816
3816
3817
3817
3818
3818
3819
3819
3820
3820
3821
3821
3822
3822
3823
3823
3824
3824
3825
3825
3826
3826
3827
3827
3828
3828
3829
3829
3830
3830
3831
3831
3832
3832
3833
3833
3834
3834
3835
3835
3836
3836
3837
3837
3838
3838
3839
3839
3840
3840
3841
3841
3842
3842
3843
3843
3844
3844
3845
3845
3846
3846
3847
3847
3848
3848
3849
3849
3850
3850
3851
3851
3852
3852
3853
3853
3854
3854
3855
3855
3856
3856
3857
3857
3858
3858
3859
3859
3860
3860
3861
3861
3862
3862
3863
3863
3864
3864
3865
3865
3866
3866
3867
3867
3868
3868
3869
3869
3870
3870
3871
3871
3872
3872
3873
3873
3874
3874
3875
3875
3876
3876
3877
3877
3878
3878
3879
3879
3880
3880
3881
3881
3882
3882
3883
3883
3884
3884
3885
3885
3886
3886
3887
3887
3888
3888
3889
3889
3890
3890
3891
3891
3892
3892
3893
3893
3894
3894
3895
3895
3896
3896
3897
3897
3898
3898
3899
3899
3900
3900
3901
3901
3902
3902
3903
3903
3904
3904
3905
3905
3906
3906
3907
3907
3908
3908
3909
3909
3910
3910
3911
3911
3912
3912
3913
3913
3914
3914
3915
3915
3916
3916
3917
3917
3918
3918
3919
3919
3920
3920
3921
3921
3922
3922
3923
3923
3924
3924
3925
3925
3926
3926
3927
3927
3928
3928
3929
3929
3930
3930
3931
3931
3932
3932
3933
3933
3934
3934
3935
3935
3936
3936
3937
3937
3938
3938
3939
3939
3940
3940
3941
3941
3942
3942
3943
3943
3944
3944
3945
3945
3946
3946
3947
3947
3948
3948
3949
3949
3950
3950
3951
3951
3952
3952
3953
3953
3954
3954
3955
3955
3956
3956
3957
3957
3958
3958
3959
3959
3960
3960
3961
3961
3962
3962
3963
3963
3964
3964
3965
3965
3966
3966
3967
3967
3968
3968
3969
3969
3970
3970
3971
3971
3972
3972
3973
3973
3974
3974
3975
3975
3976
3976
3977
3977
3978
3978
3979
3979
3980
3980
3981
3981
3982
3982
3983
3983
3984
3984
3985
3985
3986
3986
3987
3987
3988
3988
3989
3989
3990
3990
3991
3991
3992
3992
3993
3993
3994
3994
3995
3995
3996
3996
3997
3997
3998
3998
3999
3999
4000
4000
4001
4001
4002
4002
4003
4003
4004
4004
4005
4005
4006
4006
4007
4007
4008
4008
4009
4009
4010
4010
4011
4011
4012
4012
4013
4013
4014
4014
4015
4015
4016
4016
4017
4017
4018
4018
4019
4019
4020
4020
4021
4021
4022
4022
4023
4023
4024
4024
4025
4025
4026
4026
4027
4027
4028
4028
4029
4029
4030
4030
4031
4031
4032
4032
4033
4033
4034
4034
4035
4035
4036
4036
4037
4037
4038
4038
4039
4039
4040
4040
4041
4041
4042
4042
4043
4043
4044
4044
4045
4045
4046
4046
4047
4047
4048
4048
4049
4049
4050
4050
4051
4051
4052
4052
4053
4053
4054
4054
4055
4055
4056
4056
4057
4057
4058
4058
4059
4059
4060
4060
4061
4061
4062
4062
4063
4063
4064
4064
4065
4065
4066
4066
4067
4067
4068
4068
4069
4069
4070
4070
4071
4071
4072
4072
4073
4073
4074
4074
4075
4075
4076
4076
4077
4077
4078
4078
4079
4079
4080
4080
4081
4081
4082
4082
4083
4083
4084
4084
4085
4085
4086
4086
4087
4087
4088
4088
4089
4089
4090
4090
4091
4091
4092
4092
4093
4093
4094
4094
4095
4095
4096
4096
4097
4097
4098
4098
4099
4099
4100
4100
4100
4101
4101
4101
4102
4102
4102
4103
4103
4103
4104
4104
4104
4105
4105
4105
4106
4106
4106
4107
4107
4107
4108
4108
4108
4109
4109
4109
4110
4110
4110
4111
4111
4111
4112
4112
4112
4113
4113
4113
4114
4114
4114
4115
4115
4115
4116
4116
4116
4117
4117
4117
4118
4118
4118
4119
4119
4119
4120
4120
4120
4121
4121
4121
4122
4122
4122
4123
4123
4123
4124
4124
4124
4125
4125
4125
4126
4126
4126
4127
4127
4127
4128
4128
4128
4129
4129
4130
4130
4131
4131
4132
4132
4133
4133
4134
4134
4135
4135
4136
4136
4137
4137
4138
4138
4139
4139
4140
4140
4141
4141
4142
4142
4143
4143
4144
4144
4145
4145
4146
4146
4147
4147
4148
4148
4149
4149
4150
4150
4151
4151
4152
4152
4153
4153
4154
4154
4155
4155
4156
4156
4157
4157
4158
4158
4159
4160
4160
4161
4161
4162
4162
4163
4163
4164
4164
4165
4165
4166
4166
4167
4167
4168
4168
4169
4169
4170
4170
4171
4171
4172
4172
4173
4173
4174
4174
4175
4175
4176
4176
4177
4177
4178
4178
4179
4179
4180
4180
4181
4181
4182
4182
4183
4183
4184
4184
4185
4185
4186
4186
4187
4187
4188
4188
4189
4190
4190
4191
4191
4192
4192
4193
4193
4194
4194
4195
4195
4196
4196
4197
4197
4198
4198
4199
4199
4200
4200
4201
4201
4202
4202
4203
4203
4204
4204
4205
4205
4206
4206
4207
4207
4208
4208
4209
4209
4210
4210
4211
4211
4212
4212
4213
4213
4214
4214
4215
4215
4216
4216
4217
4217
4218
4218
4219
4220
4220
4221
4221
4222
4222
4223
4223
4224
4224
4225
4225
4226
4226
4227
4227
4228
4228
4229
4229
4230
4230
4231
4231
4232
4232
4233
4233
4234
4234
4235
4235
4236
4236
4237
4237
4238
4238
4239
4239
4240
4240
4241
4241
4242
4242
4243
4243
4244
4244
4245
4245
4246
4246
4247
4247
4248
4248
4249
4250
4250
4251
4251
4252
4252
4253
4253
4254
4254
4255
4255
4256
4256
4257
4257
4258
4258
4259
4259
4260
4260
4261
4261
4262
4262
4263
4263
4264
4264
4265
4265
4266
4266
4267
4267
4268
4268
4269
4269
4270
4270
4271
4271
4272
4272
4273
4273
4274
4274
4275
4275
4276
4276
4277
4277
4278
4278
4279
4280
4280
4281
4281
4282
4282
4283
4283
4284
4284
4285
4285
4286
4286
4287
4287
4288
4288
4289
4289
4290
4290
4291
4291
4292
4292
4293
4293
4294
4294
4295
4295
4296
4296
4297
4297
4298
4298
4299
4299
4300
4300
4301
4301
4302
4302
4303
4303
4304
4304
4305
4305
4306
4306
4307
4307
4308
4308
4309
4310
4310
4311
4311
4312
4312
4313
4313
4314
4314
4315
4315
4316
4316
4317
4317
4318
4318
4319
4319
4320
4320
4321
4321
4322
4322
4323
4323
4324
4324
4325
4325
4326
4326
4327
4327
4328
4328
4329
4329
4330
4330
4331
4331
4332
4332
4333
4333
4334
4334
4335
4335
4336
4336
4337
4337
4338
4338
4339
4340
4340
4341
4341
4342
4342
4343
4343
4344
4344
4345
4345
4346
4346
4347
4347
4348
4348
4349
4349
4350
4350
4351
4351
4352
4352
4353
4353
4354
4354
4355
4355
4356
4356
4357
4357
4358
4358
4359
4359
4360
4360
4361
4361
4362
4362
4363
4363
4364
4364
4365
4365
4366
4366
4367
4367
4368
4368
4369
4370
4370
4371
4371
4372
4372
4373
4373
4374
4374
4375
4375
4376
4376
4377
4377
4378
4378
4379
4379
4380
4380
4381
4381
4382
4382
4383
4383
4384
4384
4385
4385
4386
4386
4387
4387
4388
4388
4389
4389
4390
4390
4391
4391
4392
4392
4393
4393
4394
4394
4395
4395
4396
4396
4397
4397
4398
4398
4399
4400
4400
4401
4401
4402
4402
4403
4403
4404
4404
4405
4405
4406
4406
4407
4407
4408
4408
4409
4409
4410
4410
4411
4411
4412
4412
4413
4413
4414
4414
4415
4415
4416
4416
4417
4417
4418
4418
4419
4419
4420
4420
4421
4421
4422
4422
4423
4423
4424
4424
4425
4425
4426
4426
4427
4427
4428
4428
4429
4430
4430
4431
4431
4432
4432
4433
4433
4434
4434
4435
4435
4436
4436
4437
4437
4438
4438
4439
4439
4440
4440
4441
4441
4442
4442
4443
4443
4444
4444
4445
4445
4446
4446
4447
4447
4448
4448
4449
4449
4450
4450
4451
4451
4452
4452
4453
4453
4454
4454
4455
4455
4456
4456
4457
4457
4458
4458
4459
4460
4460
4461
4461
4462
4462
4463
4463
4464
4464
4465
4465
4466
4466
4467
4467
4468
4468
4469
4469
4470
4470
4471
4471
4472
4472
4473
4473
4474
4474
4475
4475
4476
4476
4477
4477
4478
4478
4479
4479
4480
4480
4481
4481
4482
4482
4483
4483
4484
4484
4485
4485
4486
4486
4487
4487
4488
4488
4489
4490
4490
4491
4491
4492
4492
4493
4493
4494
4494
4495
4495
4496
4496
4497
4497
4498
4498
4499
4499
4500
4500
4501
4501
4502
4502
4503
4503
4504
4504
4505
4505
4506
4506
4507
4507
4508
4508
4509
4509
4510
4510
4511
4511
4512
4512
4513
4513
4514
4514
4515
4515
4516
4516
4517
4517
4518
4518
4519
4520
4520
4521
4521
4522
4522
4523
4523
4524
4524
4525
4525
4526
4526
4527
4527
4528
4528
4529
4529
4530
4530
4531
4531
4532
4532
4533
4533
4534
4534
4535
4535
4536
4536
4537
4537
4538
4538
4539
4539
4540
4540
4541
4541
4542
4542
4543
4543
4544
4544
4545
4545
4546
4546
4547
4547
4548
4548
4549
4550
4550
4551
4551
4552
4552
4553
4553
4554
4554
4555
4555
4556
4556
4557
4557
4558
4558
4559
4559
4560
4560
4561
4561
4562
4562
4563
4563
4564
4564
4565
4565
4566
4566
4567
4567
4568
4568
4569
4569
4570
4570
4571
4571
4572
4572
4573
4573
4574
4574
4575
4575
4576
4576
4577
4577
4578
4578
4579
4580
4580
4581
4581
4582
4582
4583
4583
4584
4584
4585
4585
4586
4586
4587
4587
4588
4588
4589
4589
4590
4590
4591
4591
4592
4592
4593
4593
4594
4594
4595
4595
4596
4596
4597
4597
4598
4598
4599
4599
4600
4600
4601
4601
4602
4602
4603
4603
4604
4604
4605
4605
4606
4606
4607
4607
4608
4608
4609
4610
4610
4611
4611
4612
4612
4613
4613
4614
4614
4615
4615
4616
4616
4617
4617
4618
4618
4619
4619
4620
4620
4621
4621
4622
4622
4623
4623
4624
4624
4625
4625
4626
4626
4627
4627
4628
4628
4629
4629
4630
4630
4631
4631
4632
4632
4633
4633
4634
4634
4635
4635
4636
4636
4637
4637
4638
4638
4639
4640
4640
4641
4641
4642
4642
4643
4643
4644
4644
4645
4645
4646
4646
4647
4647
4648
4648
4649
4649
4650
4650
4651
4651
4652
4652
4653
4653
4654
4654
4655
4655
4656
4656
4657
4657
4658
4658
4659
4659
4660
4660
4661
4661
4662
4662
4663
4663
4664
4664
4665
4665
4666
4666
4667
4667
4668
4668
4669
4670
4670
4671
4671
4672
4672
4673
4673
4674
4674
4675
4675
4676
4676
4677
4677
4678
4678
4679
4679
4680
4680
4681
4681
4682
4682
4683
4683
4684
4684
4685
4685
4686
4686
4687
4687
4688
4688
4689
4689
4690
4690
4691
4691
4692
4692
4693
4693
4694
4694
4695
4695
4696
4696
4697
4697
4698
4698
4699
4700
4700
4700
4701
4701
4702
4702
4703
4703
4704
4704
4705
4705
4706
4706
4707
4707
4708
4708
4709
4709
4710
4710
4711
4711
4712
4712
4713
4713
4714
4714
4715
4715
4716
4716
4717
4717
4718
4718
4719
4719
4720
4720
4721
4721
4722
4722
4723
4723
4724
4724
4725
4725
4726
4726
4727
4727
4728
4728
4729
4730
4730
4730
4731
4731
4732
4732
4733
4733
4734
4734
4735
4735
4736
4736
4737
4737
4738
4738
4739
4739
4740
4740
4741
4741
4742
4742
4743
4743
4744
4744
4745
4745
4746
4746
4747
4747
4748
4748
4749
4749
4750
4750
4751
4751
4752
4752
4753
4753
4754
4754
4755
4755
4756
4756
4757
4757
4758
4758
4759
4760
4760
4760
4761
4761
4762
4762
4763
4763
4764
4764
4765
4765
4766
4766
4767
4767
4768
4768
4769
4769
4770
4770
4771
4771
4772
4772
4773
4773
4774
4774
4775
4775
4776
4776
4777
4777
4778
4778
4779
4779
4780
4780
4781
4781
4782
4782
4783
4783
4784
4784
4785
4785
4786
4786
4787
4787
4788
4788
4789
4790
4790
4790
4791
4791
4792
4792
4793
4793
4794
4794
4795
4795
4796
4796
4797
4797
4798
4798
4799
4799
4800
4800
4801
4801
4802
4802
4803
4803
4804
4804
4805
4805
4806
4806
4807
4807
4808
4808
4809
4809
4810
4810
4811
4811
4812
4812
4813
4813
4814
4814
4815
4815
4816
4816
4817
4817
4818
4818
4819
4820
4820
4820
4821
4821
4822
4822
4823
4823
4824
4824
4825
4825
4826
4826
4827
4827
4828
4828
4829
4829
4830
4830
4831
4831
4832
4832
4833
4833
4834
4834
4835
4835
4836
4836
4837
4837
4838
4838
4839
4839
4840
4840
4841
4841
4842
4842
4843
4843
4844
4844
4845
4845
4846
4846
4847
4847
4848
4848
4849
4850
4850
4850
4851
4851
4852
4852
4853
4853
4854
4854
4855
4855
4856
4856
4857
4857
4858
4858
4859
4859
4860
4860
4861
4861
4862
4862
4863
4863
4864
4864
4865
4865
4866
4866
4867
4867
4868
4868
4869
4869
4870
4870
4871
4871
4872
4872
4873
4873
4874
4874
4875
4875
4876
4876
4877
4877
4878
4878
4879
4880
4880
4880
4881
4881
4882
4882
4883
4883
4884
4884
4885
4885
4886
4886
4887
4887
4888
4888
4889
4889
4890
4890
4891
4891
4892
4892
4893
4893
4894
4894
4895
4895
4896
4896
4897
4897
4898
4898
4899
4899
4900
4900
4901
4901
4902
4902
4903
4903
4904
4904
4905
4905
4906
4906
4907
4907
4908
4908
4909
4910
4910
4910
4911
4911
4912
4912
4913
4913
4914
4914
4915
4915
4916
4916
4917
4917
4918
4918
4919
4919
4920
4920
4921
4921
4922
4922
4923
4923
4924
4924
4925
4925
4926
4926
4927
4927
4928
4928
4929
4929
4930
4930
4931
4931
4932
4932
4933
4933
4934
4934
4935
4935
4936
4936
4937
4937
4938
4938
4939
4940
4940
4940
4941
4941
4942
4942
4943
4943
4944
4944
4945
4945
4946
4946
4947
4947
4948
4948
4949
4949
4950
4950
4951
4951
4952
4952
4953
4953
4954
4954
4955
4955
4956
4956
4957
4957
4958
4958
4959
4959
4960
4960
4961
4961
4962
4962
4963
4963
4964
4964
4965
4965
4966
4966
4967
4967
4968
4968
4969
4970
4970
4970
4971
4971
4972
4972
4973
4973
4974
4974
4975
4975
4976
4976
4977
4977
4978
4978
4979
4979
4980
4980
4981
4981
4982
4982
4983
4983
4984
4984
4985
4985
4986
4986
4987
4987
4988
4988
4989
4989
4990
4990
4991
4991
4992
4992
4993
4993
4994
4994
4995
4995
4996
4996
4997
4997
4998
4998
4999
5000
5000
5000
5001
5001
5002
5002
5003
5003
5004
5004
5005
5005
5006
5006
5007
5007
5008
5008
5009
5009
5010
5010
5011
5011
5012
5012
5013
5013
5014
5014
5015
5015
5016
5016
5017
5017
5018
5018
5019
5019
5020
5020
5021
5021
5022
5022
5023
5023
5024
5024
5025
5025
5026
5026
5027
5027
5028
5028
5029
5030
5030
5030
5031
5031
5032
5032
5033
5033
5034
5034
5035
5035
5036
5036
5037
5037
5038
5038
5039
5039
5040
5040
5041
5041
5042
5042
5043
5043
5044
5044
5045
5045
5046
5046
5047
5047
5048
5048
5049
5049
5050
5050
5051
5051
5052
5052
5053
5053
5054
5054
5055
5055
5056
5056
5057
5057
5058
5058
5059
5060
5060
5060
5061
5061
5062
5062
5063
5063
5064
5064
5065
5065
5066
5066
5067
5067
5068
5068
5069
5069
5070
5070
5071
5071
5072
5072
5073
5073
5074
5074
5075
5075
5076
5076
5077
5077
5078
5078
5079
5079
5080
5080
5081
5081
5082
5082
5083
5083
5084
5084
5085
5085
5086
5086
5087
5087
5088
5088
5089
5090
5090
5090
5091
5091
5092
5092
5093
5093
5094
5094
5095
5095
5096
5096
5097
5097
5098
5098
5099
5099
5100
5100
5101
5101
5102
5102
5103
5103
5104
5104
5105
5105
5106
5106
5107
5107
5108
5108
5109
5109
5110
5110
5111
5111
5112
5112
5113
5113
5114
5114
5115
5115
5116
5116
5117
5117
5118
5118
5119
5120
5120
5120
5121
5121
5122
5122
5123
5123
5124
5124
5125
5125
5126
5126
5127
5127
5128
5128
5129
5129
5130
5130
5131
5131
5132
5132
5133
5133
5134
5134
5135
5135
5136
5136
5137
5137
5138
5138
5139
5139
5140
5140
5141
5141
5142
5142
5143
5143
5144
5144
5145
5145
5146
5146
5147
5147
5148
5148
5149
5150
5150
5150
5151
5151
5152
5152
5153
5153
5154
5154
5155
5155
5156
5156
5157
5157
5158
5158
5159
5159
5160
5160
5161
5161
5162
5162
5163
5163
5164
5164
5165
5165
5166
5166
5167
5167
5168
5168
5169
5169
5170
5170
5171
5171
5172
5172
5173
5173
5174
5174
5175
5175
5176
5176
5177
5177
5178
5178
5179
5180
5180
5180
5181
5181
5182
5182
5183
5183
5184
5184
5185
5185
5186
5186
5187
5187
5188
5188
5189
5189
5190
5190
5191
5191
5192
5192
5193
5193
5194
5194
5195
5195
5196
5196
5197
5197
5198
5198
5199
5199
5200
5200
5201
5201
5202
5202
5203
5203
5204
5204
5205
5205
5206
5206
5207
5207
5208
5208
5209
5210
5210
5210
5211
5211
5212
5212
5213
5213
5214
5214
5215
5215
5216
5216
5217
5217
5218
5218
5219
5219
5220
5220
5221
5221
5222
5222
5223
5223
5224
5224
5225
5225
5226
5226
5227
5227
5228
5228
5229
5229
5230
5230
5231
5231
5232
5232
5233
5233
5234
5234
5235
5235
5236
5236
5237
5237
5238
5238
5239
5240
5240
5240
5241
5241
5242
5242
5243
5243
5244
5244
5245
5245
5246
5246
5247
5247
5248
5248
5249
5249
5250
5250
5251
5251
5252
5252
5253
5253
5254
5254
5255
5255
5256
5256
5257
5257
5258
5258
5259
5259
5260
5260
5261
5261
5262
5262
5263
5263
5264
5264
5265
5265
5266
5266
5267
5267
5268
5268
5269
5270
5270
5270
5271
5271
5272
5272
5273
5273
5274
5274
5275
5275
5276
5276
5277
5277
5278
5278
5279
5279
5280
5280
5281
5281
5282
5282
5283
5283
5284
5284
5285
5285
5286
5286
5287
5287
5288
5288
5289
5289
5290
5290
5291
5291
5292
5292
5293
5293
5294
5294
5295
5295
5296
5296
5297
5297
5298
5298
5299
5300
5300
5300
5301
5301
5302
5302
5303
5303
5304
5304
5305
5305
5306
5306
5307
5307
5308
5308
5309
5309
5310
5310
5311
5311
5312
5312
5313
5313
5314
5314
5315
5315
5316
5316
5317
5317
5318
5318
5319
5319
5320
5320
5321
5321
5322
5322
5323
5323
5324
5324
5325
5325
5326
5326
5327
5327
5328
5328
5329
5330
5330
5330
5331
5331
5332
5332
5333
5333
5334
5334
5335
5335
5336
5336
5337
5337
5338
5338
5339
5339
5340
5340
5341
5341
5342
5342
5343
5343
5344
5344
5345
5345
5346
5346
5347
5347
5348
5348
5349
5349
5350
5350
5351
5351
5352
5352
5353
5353
5354
5354
5355
5355
5356
5356
5357
5357
5358
5358
5359
5360
5360
5360
5361
5361
5362
5362
5363
5363
5364
5364
5365
5365
5366
5366
5367
5367
5368
5368
5369
5369
5370
5370
5371
5371
5372
5372
5373
5373
5374
5374
5375
5375
5376
5376
5377
5377
5378
5378
5379
5379
5380
5380
5381
5381
5382
5382
5383
5383
5384
5384
5385
5385
5386
5386
5387
5387
5388
5388
5389
5390
5390
5390
5391
5391
5392
5392
5393
5393
5394
5394
5395
5395
5396
5396
5397
5397
5398
5398
5399
5399
5400
5400
5401
5401
5402
5402
5403
5403
5404
5404
5405
5405
5406
5406
5407
5407
5408
5408
5409
5409
5410
5410
5411
5411
5412
5412
5413
5413
5414
5414
5415
5415
5416
5416
5417
5417
5418
5418
5419
5420
5420
5420
5421
5421
5422
5422
5423
5423
5424
5424
5425
5425
5426
5426
5427
5427
5428
5428
5429
5429
5430
5430
5431
5431
5432
5432
5433
5433
5434
5434
5435
5435
5436
5436
5437
5437
5438
5438
5439
5439
5440
5440
5441
5441
5442
5442
5443
5443
5444
5444
5445
5445
5446
5446
5447
5447
5448
5448
5449
5450
5450
5450
5451
5451
5452
5452
5453
5453
5454
5454
5455
5455
5456
5456
5457
5457
5458
5458
5459
5459
5460
5460
5461
5461
5462
5462
5463
5463
5464
5464
5465
5465
5466
5466
5467
5467
5468
5468
5469
5469
5470
5470
5471
5471
5472
5472
5473
5473
5474
5474
5475
5475
5476
5476
5477
5477
5478
5478
5479
5480
5480
5480
5481
5481
5482
5482
5483
5483
5484
5484
5485
5485
5486
5486
5487
5487
5488
5488
5489
5489
5490
5490
5491
5491
5492
5492
5493
5493
5494
5494
5495
5495
5496
5496
5497
5497
5498
5498
5499
5499
5500
5500
5501
5501
5502
5502
5503
5503
5504
5504
5505
5505
5506
5506
5507
5507
5508
5508
5509
5510
5510
5510
5511
5511
5512
5512
5513
5513
5514
5514
5515
5515
5516
5516
5517
5517
5518
5518
5519
5519
5520
5520
5521
5521
5522
5522
5523
5523
5524
5524
5525
5525
5526
5526
5527
5527
5528
5528
5529
5529
5530
5530
5531
5531
5532
5532
5533
5533
5534
5534
5535
5535
5536
5536
5537
5537
5538
5538
5539
5540
5540
5540
5541
5541
5542
5542
5543
5543
5544
5544
5545
5545
5546
5546
5547
5547
5548
5548
5549
5549
5550
5550
5551
5551
5552
5552
5553
5553
5554
5554
5555
5555
5556
5556
5557
5557
5558
5558
5559
5559
5560
5560
5561
5561
5562
5562
5563
5563
5564
5564
5565
5565
5566
5566
5567
5567
5568
5568
5569
5570
5570
5570
5571
5571
5572
5572
5573
5573
5574
5574
5575
5575
5576
5576
5577
5577
5578
5578
5579
5579
5580
5580
5581
5581
5582
5582
5583
5583
5584
5584
5585
5585
5586
5586
5587
5587
5588
5588
5589
5589
5590
5590
5591
5591
5592
5592
5593
5593
5594
5594
5595
5595
5596
5596
5597
5597
5598
5598
5599
5600
5600
5600
5601
5601
5602
5602
5603
5603
5604
5604
5605
5605
5606
5606
5607
5607
5608
5608
5609
5609
5610
5610
5611
5611
5612
5612
5613
5613
5614
5614
5615
5615
5616
5616
5617
5617
5618
5618
5619
5619
5620
5620
5621
5621
5622
5622
5623
5623
5624
5624
5625
5625
5626
5626
5627
5627
5628
5628
5629
5630
5630
5630
5631
5631
5632
5632
5633
5633
5634
5634
5635
5635
5636
5636
5637
5637
5638
5638
5639
5639
5640
5640
5641
5641
5642
5642
5643
5643
5644
5644
5645
5645
5646
5646
5647
5647
5648
5648
5649
5649
5650
5650
5651
5651
5652
5652
5653
5653
5654
5654
5655
5655
5656
5656
5657
5657
5658
5658
5659
5660
5660
5660
5661
5661
5662
5662
5663
5663
5664
5664
5665
5665
5666
5666
5667
5667
5668
5668
5669
5669
5670
5670
5671
5671
5672
5672
5673
5673
5674
5674
5675
5675
5676
5676
5677
5677
5678
5678
5679
5679
5680
5680
5681
5681
5682
5682
5683
5683
5684
5684
5685
5685
5686
5686
5687
5687
5688
5688
5689
5690
5690
5690
5691
5691
5692
5692
5693
5693
5694
5694
5695
5695
5696
5696
5697
5697
5698
5698
5699
5699
5700
5700
5701
5701
5702
5702
5703
5703
5704
5704
5705
5705
5706
5706
5707
5707
5708
5708
5709
5709
5710
5710
5711
5711
5712
5712
5713
5713
5714
5714
5715
5715
5716
5716
5717
5717
5718
5718
5719
5720
5720
5720
5721
5721
5722
5722
5723
5723
5724
5724
5725
5725
5726
5726
5727
5727
5728
5728
5729
5729
5730
5730
5731
5731
5732
5732
5733
5733
5734
5734
5735
5735
5736
5736
5737
5737
5738
5738
5739
5739
5740
5740
5741
5741
5742
5742
5743
5743
5744
5744
5745
5745
5746
5746
5747
5747
5748
5748
5749
5750
5750
5750
5751
5751
5752
5752
5753
5753
5754
5754
5755
5755
5756
5756
5757
5757
5758
5758
5759
5759
5760
5760
5761
5761
5762
5762
5763
5763
5764
5764
5765
5765
5766
5766
5767
5767
5768
5768
5769
5769
5770
5770
5771
5771
5772
5772
5773
5773
5774
5774
5775
5775
5776
5776
5777
5777
5778
5778
5779
5780
5780
5780
5781
5781
5782
5782
5783
5783
5784
5784
5785
5785
5786
5786
5787
5787
5788
5788
5789
5789
5790
5790
5791
5791
5792
5792
5793
5793
5794
5794
5795
5795
5796
5796
5797
5797
5798
5798
5799
5799
5800
5800
5801
5801
5802
5802
5803
5803
5804
5804
5805
5805
5806
5806
5807
5807
5808
5808
5809
5810
5810
5810
5811
5811
5812
5812
5813
5813
5814
5814
5815
5815
5816
5816
5817
5817
5818
5818
5819
5819
5820
5820
5821
5821
5822
5822
5823
5823
5824
5824
5825
5825
5826
5826
5827
5827
5828
5828
5829
5829
5830
5830
5831
5831
5832
5832
5833
5833
5834
5834
5835
5835
5836
5836
5837
5837
5838
5838
5839
5840
5840
5840
5841
5841
5842
5842
5843
5843
5844
5844
5845
5845
5846
5846
5847
5847
5848
5848
5849
5849
5850
5850
5851
5851
5852
5852
5853
5853
5854
5854
5855
5855
5856
5856
5857
5857
5858
5858
5859
5859
5860
5860
5861
5861
5862
5862
5863
5863
5864
5864
5865
5865
5866
5866
5867
5867
5868
5868
5869
5870
5870
5870
5871
5871
5872
5872
5873
5873
5874
5874
5875
5875
5876
5876
5877
5877
5878
5878
5879
5879
5880
5880
5881
5881
5882
5882
5883
5883
5884
5884
5885
5885
5886
5886
5887
5887
5888
5888
5889
5889
5890
5890
5891
5891
5892
5892
5893
5893
5894
5894
5895
5895
5896
5896
5897
5897
5898
5898
5899
5900
5900
5900
5901
5901
5902
5902
5903
5903
5904
5904
5905
5905
5906
5906
5907
5907
5908
5908
5909
5909
5910
5910
5911
5911
5912
5912
5913
5913
5914
5914
5915
5915
5916
5916
5917
5917
5918
5918
5919
5919
5920
5920
5921
5921
5922
5922
5923
5923
5924
5924
5925
5925
5926
5926
5927
5927
5928
5928
5929
5930
5930
5930
5931
5931
5932
5932
5933
5933
5934
5934
5935
5935
5936
5936
5937
5937
5938
5938
5939
5939
5940
5940
5941
5941
5942
5942
5943
5943
5944
5944
5945
5945
5946
5946
5947
5947
5948
5948
5949
5949
5950
5950
5951
5951
5952
5952
5953
5953
5954
5954
5955
5955
5956
5956
5957
5957
5958
5958
5959
5960
5960
5960
5961
5961
5962
5962
5963
5963
5964
5964
5965
5965
5966
5966
5967
5967
5968
5968
5969
5969
5970
5970
5971
5971
5972
5972
5973
5973
5974
5974
5975
5975
5976
5976
5977
5977
5978
5978
5979
5979
5980
5980
5981
5981
5982
5982
5983
5983
5984
5984
5985
5985
5986
5986
5987
5987
5988
5988
5989
5990
5990
5990
5991
5991
5992
5992
5993
5993
5994
5994
5995
5995
5996
5996
5997
5997
5998
5998
5999
5999
6000
6000
6001
6001
6002
6002
6003
6003
6004
6004
6005
6005
6006
6006
6007
6007
6008
6008
6009
6009
6010
6010
6011
6011
6012
6012
6013
6013
6014
6014
6015
6015
6016
6016
6017
6017
6018
6018
6019
6020
6020
6020
6021
6021
6022
6022
6023
6023
6024
6024
6025
6025
6026
6026
6027
6027
6028
6028
6029
6029
6030
6030
6031
6031
6032
6032
6033
6033
6034
6034
6035
6035
6036
6036
6037
6037
6038
6038
6039
6039
6040
6040
6041
6041
6042
6042
6043
6043
6044
6044
6045
6045
6046
6046
6047
6047
6048
6048
6049
6050
6050
6050
6051
6051
6052
6052
6053
6053
6054
6054
6055
6055
6056
6056
6057
6057
6058
6058
6059
6059
6060
6060
6061
6061
6062
6062
6063
6063
6064
6064
6065
6065
6066
6066
6067
6067
6068
6068
6069
6069
6070
6070
6071
6071
6072
6072
6073
6073
6074
6074
6075
6075
6076
6076
6077
6077
6078
6078
6079
6080
6080
6080
6081
6081
6082
6082
6083
6083
6084
6084
6085
6085
6086
6086
6087
6087
6088
6088
6089
6089
6090
6090
6091
6091
6092
6092
6093
6093
6094
6094
6095
6095
6096
6096
6097
6097
6098
6098
6099
6099
6100
6100
6101
6101
6102
6102
6103
6103
6104
6104
6105
6105
6106
6106
6107
6107
6108
6108
6109
6110
6110
6110
6111
6111
6112
6112
6113
6113
6114
6114
6115
6115
6116
6116
6117
6117
6118
6118
6119
6119
6120
6120
6121
6121
6122
6122
6123
6123
6124
6124
6125
6125
6126
6126
6127
6127
6128
6128
6129
6129
6130
6130
6131
6131
6132
6132
6133
6133
6134
6134
6135
6135
6136
6136
6137
6137
6138
6138
6139
6140
6140
6140
6141
6141
6142
6142
6143
6143
6144
6144
6145
6145
6146
6146
6147
6147
6148
6148
6149
6149
6150
6150
6151
6151
6152
6152
6153
6153
6154
6154
6155
6155
6156
6156
6157
6157
6158
6158
6159
6159
6160
6160
6161
6161
6162
6162
6163
6163
6164
6164
6165
6165
6166
6166
6167
6167
6168
6168
6169
6170
6170
6170
6171
6171
6172
6172
6173
6173
6174
6174
6175
6175
6176
6176
6177
6177
6178
6178
6179
6179
6180
6180
6181
6181
6182
6182
6183
6183
6184
6184
6185
6185
6186
6186
6187
6187
6188
6188
6189
6189
6190
6190
6191
6191
6192
6192
6193
6193
6194
6194
6195
6195
6196
6196
6197
6197
6198
6198
6199
6200
6200
6200
6201
6201
6202
6202
6203
6203
6204
6204
6205
6205
6206
6206
6207
6207
6208
6208
6209
6209
6210
6210
6211
6211
6212
6212
6213
6213
6214
6214
6215
6215
6216
6216
6217
6217
6218
6218
6219
6219
6220
6220
6221
6221
6222
6222
6223
6223
6224
6224
6225
6225
6226
6226
6227
6227
6228
6228
6229
6230
6230
6230
6231
6231
6232
6232
6233
6233
6234
6234
6235
6235
6236
6236
6237
6237
6238
6238
6239
6239
6240
6240
6241
6241
6242
6242
6243
6243
6244
6244
6245
6245
6246
6246
6247
6247
6248
6248
6249
6249
6250
6250
6251
6251
6252
6252
6253
6253
6254
6254
6255
6255
6256
6256
6257
6257
6258
6258
6259
6260
6260
6260
6261
6261
6262
6262
6263
6263
6264
6264
6265
6265
6266
6266
6267
6267
6268
6268
6269
6269
6270
6270
6271
6271
6272
6272
6273
6273
6274
6274
6275
6275
6276
6276
6277
6277
6278
6278
6279
6279
6280
6280
6281
6281
6282
6282
6283
6283
6284
6284
6285
6285
6286
6286
6287
6287
6288
6288
6289
6290
6290
6290
6291
6291
6292
6292
6293
6293
6294
6294
6295
6295
6296
6296
6297
6297
6298
6298
6299
6299
6300
6300
6301
6301
6302
6302
6303
6303
6304
6304
6305
6305
6306
6306
6307
6307
6308
6308
6309
6309
6310
6310
6311
6311
6312
6312
6313
6313
6314
6314
6315
6315
6316
6316
6317
6317
6318
6318
6319
6320
6320
6320
6321
6321
6322
6322
6323
6323
6324
6324
6325
6325
6326
6326
6327
6327
6328
6328
6329
6329
6330
6330
6331
6331
6332
6332
6333
6333
6334
6334
6335
6335
6336
6336
6337
6337
6338
6338
6339
6339
6340
6340
6341
6341
6342
6342
6343
6343
6344
6344
6345
6345
6346
6346
6347
6347
6348
6348
6349
6350
6350
6350
6351
6351
6352
6352
6353
6353
6354
6354
6355
6355
6356
6356
6357
6357
6358
6358
6359
6359
6360
6360
6361
6361
6362
6362
6363
6363
6364
6364
6365
6365
6366
6366
6367
6367
6368
6368
6369
6369
6370
6370
6371
6371
6372
6372
6373
6373
6374
6374
6375
6375
6376
6376
6377
6377
6378
6378
6379
6380
6380
6380
6381
6381
6382
6382
6383
6383
6384
6384
6385
6385
6386
6386
6387
6387
6388
6388
6389
6389
6390
6390
6391
6391
6392
6392
6393
6393
6394
6394
6395
6395
6396
6396
6397
6397
6398
6398
6399
6399
6400
6400
6401
6401
6402
6402
6403
6403
6404
6404
6405
6405
6406
6406
6407
6407
6408
6408
6409
6410
6410
6410
6411
6411
6412
6412
6413
6413
6414
6414
6415
6415
6416
6416
6417
6417
6418
6418
6419
6419
6420
6420
6421
6421
6422
6422
6423
6423
6424
6424
6425
6425
6426
6426
6427
6427
6428
6428
6429
6429
6430
6430
6431
6431
6432
6432
6433
6433
6434
6434
6435
6435
6436
6436
6437
6437
6438
6438
6439
6440
6440
6440
6441
6441
6442
6442
6443
6443
6444
6444
6445
6445
6446
6446
6447
6447
6448
6448
6449
6449
6450
6450
6451
6451
6452
6452
6453
6453
6454
6454
6455
6455
6456
6456
6457
6457
6458
6458
6459
6459
6460
6460
6461
6461
6462
6462
6463
6463
6464
6464
6465
6465
6466
6466
6467
6467
6468
6468
6469
6470
6470
6470
6471
6471
6472
6472
6473
6473
6474
6474
6475
6475
6476
6476
6477
6477
6478
6478
6479
6479
6480
6480
6481
6481
6482
6482
6483
6483
6484
6484
6485
6485
6486
6486
6487
6487
6488
6488
6489
6489
6490
6490
6491
6491
6492
6492
6493
6493
6494
6494
6495
6495
6496
6496
6497
6497
6498
6498
6499
6500
6500
6500
6501
6501
6502
6502
6503
6503
6504
6504
6505
6505
6506
6506
6507
6507
6508
6508
6509
6509
6510
6510
6511
6511
6512
6512
6513
6513
6514
6514
6515
6515
6516
6516
6517
6517
6518
6518
6519
6519
6520
6520
6521
6521
6522
6522
6523
6523
6524
6524
6525
6525
6526
6526
6527
6527
6528
6528
6529
6530
6530
6530
6531
6531
6532
6532
6533
6533
6534
6534
6535
6535
6536
6536
6537
6537
6538
6538
6539
6539
6540
6540
6541
6541
6542
6542
6543
6543
6544
6544
6545
6545
6546
6546
6547
6547
6548
6548
6549
6549
6550
6550
6551
6551
6552
6552
6553
6553
6554
6554
6555
6555
6556
6556
6557
6557
6558
6558
6559
6560
6560
6560
6561
6561
6562
6562
6563
6563
6564
6564
6565
6565
6566
6566
6567
6567
6568
6568
6569
6569
6570
6570
6571
6571
6572
6572
6573
6573
6574
6574
6575
6575
6576
6576
6577
6577
6578
6578
6579
6579
6580
6580
6581
6581
6582
6582
6583
6583
6584
6584
6585
6585
6586
6586
6587
6587
6588
6588
6589
6590
6590
6590
6591
6591
6592
6592
6593
6593
6594
6594
6595
6595
6596
6596
6597
6597
6598
6598
6599
6599
6600
6600
6601
6601
6602
6602
6603
6603
6604
6604
6605
6605
6606
6606
6607
6607
6608
6608
6609
6609
6610
6610
6611
6611
6612
6612
6613
6613
6614
6614
6615
6615
6616
6616
6617
6617
6618
6618
6619
6620
6620
6620
6621
6621
6622
6622
6623
6623
6624
6624
6625
6625
6626
6626
6627
6627
6628
6628
6629
6629
6630
6630
6631
6631
6632
6632
6633
6633
6634
6634
6635
6635
6636
6636
6637
6637
6638
6638
6639
6639
6640
6640
6641
6641
6642
6642
6643
6643
6644
6644
6645
6645
6646
6646
6647
6647
6648
6648
6649
6650
6650
6650
6651
6651
6652
6652
6653
6653
6654
6654
6655
6655
6656
6656
6657
6657
6658
6658
6659
6659
6660
6660
6661
6661
6662
6662
6663
6663
6664
6664
6665
6665
6666
6666
6667
6667
6668
6668
6669
6669
6670
6670
6671
6671
6672
6672
6673
6673
6674
6674
6675
6675
6676
6676
6677
6677
6678
6678
6679
6680
6680
6680
6681
6681
6682
6682
6683
6683
6684
6684
6685
6685
6686
6686
6687
6687
6688
6688
6689
6689
6690
6690
6691
6691
6692
6692
6693
6693
6694
6694
6695
6695
6696
6696
6697
6697
6698
6698
6699
6699
6700
6700
6701
6701
6702
6702
6703
6703
6704
6704
6705
6705
6706
6706
6707
6707
6708
6708
6709
6710
6710
6710
6711
6711
6712
6712
6713
6713
6714
6714
6715
6715
6716
6716
6717
6717
6718
6718
6719
6719
6720
6720
6721
6721
6722
6722
6723
6723
6724
6724
6725
6725
6726
6726
6727
6727
6728
6728
6729
6729
6730
6730
6731
6731
6732
6732
6733
6733
6734
6734
6735
6735
6736
6736
6737
6737
6738
6738
6739
6740
6740
6740
6741
6741
6742
6742
6743
6743
6744
6744
6745
6745
6746
6746
6747
6747
6748
6748
6749
6749
6750
6750
6751
6751
6752
6752
6753
6753
6754
6754
6755
6755
6756
6756
6757
6757
6758
6758
6759
6759
6760
6760
6761
6761
6762
6762
6763
6763
6764
6764
6765
6765
6766
6766
6767
6767
6768
6768
6769
6770
6770
6770
6771
6771
6772
6772
6773
6773
6774
6774
6775
6775
6776
6776
6777
6777
6778
6778
6779
6779
6780
6780
6781
6781
6782
6782
6783
6783
6784
6784
6785
6785
6786
6786
6787
6787
6788
6788
6789
6789
6790
6790
6791
6791
6792
6792
6793
6793
6794
6794
6795
6795
6796
6796
6797
6797
6798
6798
6799
6800
6800
6800
6801
6801
6802
6802
6803
6803
6804
6804
6805
6805
6806
6806
6807
6807
6808
6808
6809
6809
6810
6810
6811
6811
6812
6812
6813
6813
6814
6814
6815
6815
6816
6816
6817
6817
6818
6818
6819
6819
6820
6820
6821
6821
6822
6822
6823
6823
6824
6824
6825
6825
6826
6826
6827
6827
6828
6828
6829
6830
6830
6830
6831
6831
6832
6832
6833
6833
6834
6834
6835
6835
6836
6836
6837
6837
6838
6838
6839
6839
6840
6840
6841
6841
6842
6842
6843
6843
6844
6844
6845
6845
6846
6846
6847
6847
6848
6848
6849
6849
6850
6850
6851
6851
6852
6852
6853
6853
6854
6854
6855
6855
6856
6856
6857
6857
6858
6858
6859
6860
6860
6860
6861
6861
6862
6862
6863
6863
6864
6864
6865
6865
6866
6866
6867
6867
6868
6868
6869
6869
6870
6870
6871
6871
6872
6872
6873
6873
6874
6874
6875
6875
6876
6876
6877
6877
6878
6878
6879
6879
6880
6880
6881
6881
6882
6882
6883
6883
6884
6884
6885
6885
6886
6886
6887
6887
6888
6888
6889
6890
6890
6890
6891
6891
6892
6892
6893
6893
6894
6894
6895
6895
6896
6896
6897
6897
6898
6898
6899
6899
6900
6900
6901
6901
6902
6902
6903
6903
6904
6904
6905
6905
6906
6906
6907
6907
6908
6908
6909
6909
6910
6910
6911
6911
6912
6912
6913
6913
6914
6914
6915
6915
6916
6916
6917
6917
6918
6918
6919
6920
6920
6920
6921
6921
6922
6922
6923
6923
6924
6924
6925
6925
6926
6926
6927
6927
6928
6928
6929
6929
6930
6930
6931
6931
6932
6932
6933
6933
6934
6934
6935
6935
6936
6936
6937
6937
6938
6938
6939
6939
6940
6940
6941
6941
6942
6942
6943
6943
6944
6944
6945
6945
6946
6946
6947
6947
6948
6948
6949
6950
6950
6950
6951
6951
6952
6952
6953
6953
6954
6954
6955
6955
6956
6956
6957
6957
6958
6958
6959
6959
6960
6960
6961
6961
6962
6962
6963
6963
6964
6964
6965
6965
6966
6966
6967
6967
6968
6968
6969
6969
6970
6970
6971
6971
6972
6972
6973
6973
6974
6974
6975
6975
6976
6976
6977
6977
6978
6978
6979
6980
6980
6980
6981
6981
6982
6982
6983
6983
6984
6984
6985
6985
6986
6986
6987
6987
6988
6988
6989
6989
6990
6990
6991
6991
6992
6992
6993
6993
6994
6994
6995
6995
6996
6996
6997
6997
6998
6998
6999
6999
7000
7000
7001
7001
7002
7002
7003
7003
7004
7004
7005
7005
7006
7006
7007
7007
7008
7008
7009
7010
7010
7010
7011
7011
7012
7012
7013
7013
7014
7014
7015
7015
7016
7016
7017
7017
7018
7018
7019
7019
7020
7020
7021
7021
7022
7022
7023
7023
7024
7024
7025
7025
7026
7026
7027
7027
7028
7028
7029
7029
7030
7030
7031
7031
7032
7032
7033
7033
7034
7034
7035
7035
7036
7036
7037
7037
7038
7038
7039
7040
7040
7040
7041
7041
7042
7042
7043
7043
7044
7044
7045
7045
7046
7046
7047
7047
7048
7048
7049
7049
7050
7050
7051
7051
7052
7052
7053
7053
7054
7054
7055
7055
7056
7056
7057
7057
7058
7058
7059
7059
7060
7060
7061
7061
7062
7062
7063
7063
7064
7064
7065
7065
7066
7066
7067
7067
7068
7068
7069
7070
7070
7070
7071
7071
7072
7072
7073
7073
7074
7074
7075
7075
7076
7076
7077
7077
7078
7078
7079
7079
7080
7080
7081
7081
7082
7082
7083
7083
7084
7084
7085
7085
7086
7086
7087
7087
7088
7088
7089
7089
7090
7090
7091
7091
7092
7092
7093
7093
7094
7094
7095
7095
7096
7096
7097
7097
7098
7098
7099
7100
7100
7100
7101
7101
7102
7102
7103
7103
7104
7104
7105
7105
7106
7106
7107
7107
7108
7108
7109
7109
7110
7110
7111
7111
7112
7112
7113
7113
7114
7114
7115
7115
7116
7116
7117
7117
7118
7118
7119
7119
7120
7120
7121
7121
7122
7122
7123
7123
7124
7124
7125
7125
7126
7126
7127
7127
7128
7128
7129
7130
7130
7130
7131
7131
7132
7132
7133
7133
7134
7134
7135
7135
7136
7136
7137
7137
7138
7138
7139
7139
7140
7140
7141
7141
7142
7142
7143
7143
7144
7144
7145
7145
7146
7146
7147
7147
7148
7148
7149
7149
7150
7150
7151
7151
7152
7152
7153
7153
7154
7154
7155
7155
7156
7156
7157
7157
7158
7158
7159
7160
7160
7160
7161
7161
7162
7162
7163
7163
7164
7164
7165
7165
7166
7166
7167
7167
7168
7168
7169
7169
7170
7170
7171
7171
7172
7172
7173
7173
7174
7174
7175
7175
7176
7176
7177
7177
7178
7178
7179
7179
7180
7180
7181
7181
7182
7182
7183
7183
7184
7184
7185
7185
7186
7186
7187
7187
7188
7188
7189
7190
7190
7190
7191
7191
7192
7192
7193
7193
7194
7194
7195
7195
7196
7196
7197
7197
7198
7198
7199
7199
7200
7200
7201
7201
7202
7202
7203
7203
7204
7204
7205
7205
7206
7206
7207
7207
7208
7208
7209
7209
7210
7210
7211
7211
7212
7212
7213
7213
7214
7214
7215
7215
7216
7216
7217
7217
7218
7218
7219
7220
7220
7220
7221
7221
7222
7222
7223
7223
7224
7224
7225
7225
7226
7226
7227
7227
7228
7228
7229
7229
7230
7230
7231
7231
7232
7232
7233
7233
7234
7234
7235
7235
7236
7236
7237
7237
7238
7238
7239
7239
7240
7240
7241
7241
7242
7242
7243
7243
7244
7244
7245
7245
7246
7246
7247
7247
7248
7248
7249
7250
7250
7250
7251
7251
7252
7252
7253
7253
7254
7254
7255
7255
7256
7256
7257
7257
7258
7258
7259
7259
7260
7260
7261
7261
7262
7262
7263
7263
7264
7264
7265
7265
7266
7266
7267
7267
7268
7268
7269
7269
7270
7270
7271
7271
7272
7272
7273
7273
7274
7274
7275
7275
7276
7276
7277
7277
7278
7278
7279
7280
7280
7280
7281
7281
7282
7282
7283
7283
7284
7284
7285
7285
7286
7286
7287
7287
7288
7288
7289
7289
7290
7290
7291
7291
7292
7292
7293
7293
7294
7294
7295
7295
7296
7296
7297
7297
7298
7298
7299
7299
7300
7300
7301
7301
7302
7302
7303
7303
7304
7304
7305
7305
7306
7306
7307
7307
7308
7308
7309
7310
7310
7310
7311
7311
7312
7312
7313
7313
7314
7314
7315
7315
7316
7316
7317
7317
7318
7318
7319
7319
7320
7320
7321
7321
7322
7322
7323
7323
7324
7324
7325
7325
7326
7326
7327
7327
7328
7328
7329
7329
7330
7330
7331
7331
7332
7332
7333
7333
7334
7334
7335
7335
7336
7336
7337
7337
7338
7338
7339
7340
7340
7340
7341
7341
7342
7342
7343
7343
7344
7344
7345
7345
7346
7346
7347
7347
7348
7348
7349
7349
7350
7350
7351
7351
7352
7352
7353
7353
7354
7354
7355
7355
7356
7356
7357
7357
7358
7358
7359
7359
7360
7360
7361
7361
7362
7362
7363
7363
7364
7364
7365
7365
7366
7366
7367
7367
7368
7368
7369
7370
7370
7370
7371
7371
7372
7372
7373
7373
7374
7374
7375
7375
7376
7376
7377
7377
7378
7378
7379
7379
7380
7380
7381
7381
7382
7382
7383
7383
7384
7384
7385
7385
7386
7386
7387
7387
7388
7388
7389
7389
7390
7390
7391
7391
7392
7392
7393
7393
7394
7394
7395
7395
7396
7396
7397
7397
7398
7398
7399
7400
7400
7400
7401
7401
7402
7402
7403
7403
7404
7404
7405
7405
7406
7406
7407
7407
7408
7408
7409
7409
7410
7410
7411
7411
7412
7412
7413
7413
7414
7414
7415
7415
7416
7416
7417
7417
7418
7418
7419
7419
7420
7420
7421
7421
7422
7422
7423
7423
7424
7424
7425
7425
7426
7426
7427
7427
7428
7428
7429
7430
7430
7430
7431
7431
7432
7432
7433
7433
7434
7434
7435
7435
7436
7436
7437
7437
7438
7438
7439
7439
7440
7440
7441
7441
7442
7442
7443
7443
7444
7444
7445
7445
7446
7446
7447
7447
7448
7448
7449
7449
7450
7450
7451
7451
7452
7452
7453
7453
7454
7454
7455
7455
7456
7456
7457
7457
7458
7458
7459
7460
7460
7460
7461
7461
7462
7462
7463
7463
7464
7464
7465
7465
7466
7466
7467
7467
7468
7468
7469
7469
7470
7470
7471
7471
7472
7472
7473
7473
7474
7474
7475
7475
7476
7476
7477
7477
7478
7478
7479
7479
7480
7480
7481
7481
7482
7482
7483
7483
7484
7484
7485
7485
7486
7486
7487
7487
7488
7488
7489
7490
7490
7490
7491
7491
7492
7492
7493
7493
7494
7494
7495
7495
7496
7496
7497
7497
7498
7498
7499
7499
7500
7500
7501
7501
7502
7502
7503
7503
7504
7504
7505
7505
7506
7506
7507
7507
7508
7508
7509
7509
7510
7510
7511
7511
7512
7512
7513
7513
7514
7514
7515
7515
7516
7516
7517
7517
7518
7518
7519
7520
7520
7520
7521
7521
7522
7522
7523
7523
7524
7524
7525
7525
7526
7526
7527
7527
7528
7528
7529
7529
7530
7530
7531
7531
7532
7532
7533
7533
7534
7534
7535
7535
7536
7536
7537
7537
7538
7538
7539
7539
7540
7540
7541
7541
7542
7542
7543
7543
7544
7544
7545
7545
7546
7546
7547
7547
7548
7548
7549
7550
7550
7550
7551
7551
7552
7552
7553
7553
7554
7554
7555
7555
7556
7556
7557
7557
7558
7558
7559
7559
7560
7560
7561
7561
7562
7562
7563
7563
7564
7564
7565
7565
7566
7566
7567
7567
7568
7568
7569
7569
7570
7570
7571
7571
7572
7572
7573
7573
7574
7574
7575
7575
7576
7576
7577
7577
7578
7578
7579
7580
7580
7580
7581
7581
7582
7582
7583
7583
7584
7584
7585
7585
7586
7586
7587
7587
7588
7588
7589
7589
7590
7590
7591
7591
7592
7592
7593
7593
7594
7594
7595
7595
7596
7596
7597
7597
7598
7598
7599
7599
7600
7600
7601
7601
7602
7602
7603
7603
7604
7604
7605
7605
7606
7606
7607
7607
7608
7608
7609
7610
7610
7610
7611
7611
7612
7612
7613
7613
7614
7614
7615
7615
7616
7616
7617
7617
7618
7618
7619
7619
7620
7620
7621
7621
7622
7622
7623
7623
7624
7624
7625
7625
7626
7626
7627
7627
7628
7628
7629
7629
7630
7630
7631
7631
7632
7632
7633
7633
7634
7634
7635
7635
7636
7636
7637
7637
7638
7638
7639
7640
7640
7640
7641
7641
7642
7642
7643
7643
7644
7644
7645
7645
7646
7646
7647
7647
7648
7648
7649
7649
7650
7650
7651
7651
7652
7652
7653
7653
7654
7654
7655
7655
7656
7656
7657
7657
7658
7658
7659
7659
7660
7660
7661
7661
7662
7662
7663
7663
7664
7664
7665
7665
7666
7666
7667
7667
7668
7668
7669
7670
7670
7670
7671
7671
7672
7672
7673
7673
7674
7674
7675
7675
7676
7676
7677
7677
7678
7678
7679
7679
7680
7680
7681
7681
7682
7682
7683
7683
7684
7684
7685
7685
7686
7686
7687
7687
7688
7688
7689
7689
7690
7690
7691
7691
7692
7692
7693
7693
7694
7694
7695
7695
7696
7696
7697
7697
7698
7698
7699
7700
7700
7700
7701
7701
7702
7702
7703
7703
7704
7704
7705
7705
7706
7706
7707
7707
7708
7708
7709
7709
7710
7710
7711
7711
7712
7712
7713
7713
7714
7714
7715
7715
7716
7716
7717
7717
7718
7718
7719
7719
7720
7720
7721
7721
7722
7722
7723
7723
7724
7724
7725
7725
7726
7726
7727
7727
7728
7728
7729
7730
7730
7730
7731
7731
7732
7732
7733
7733
7734
7734
7735
7735
7736
7736
7737
7737
7738
7738
7739
7739
7740
7740
7741
7741
7742
7742
7743
7743
7744
7744
7745
7745
7746
7746
7747
7747
7748
7748
7749
7749
7750
7750
7751
7751
7752
7752
7753
7753
7754
7754
7755
7755
7756
7756
7757
7757
7758
7758
7759
7760
7760
7760
7761
7761
7762
7762
7763
7763
7764
7764
7765
7765
7766
7766
7767
7767
7768
7768
7769
7769
7770
7770
7771
7771
7772
7772
7773
7773
7774
7774
7775
7775
7776
7776
7777
7777
7778
7778
7779
7779
7780
7780
7781
7781
7782
7782
7783
7783
7784
7784
7785
7785
7786
7786
7787
7787
7788
7788
7789
7790
7790
7790
7791
7791
7792
7792
7793
7793
7794
7794
7795
7795
7796
7796
7797
7797
7798
7798
7799
7799
7800
7800
7801
7801
7802
7802
7803
7803
7804
7804
7805
7805
7806
7806
7807
7807
7808
7808
7809
7809
7810
7810
7811
7811
7812
7812
7813
7813
7814
7814
7815
7815
7816
7816
7817
7817
7818
7818
7819
7820
7820
7820
7821
7821
7822
7822
7823
7823
7824
7824
7825
7825
7826
7826
7827
7827
7828
7828
7829
7829
7830
7830
7831
7831
7832
7832
7833
7833
7834
7834
7835
7835
7836
7836
7837
7837
7838
7838
7839
7839
7840
7840
7841
7841
7842
7842
7843
7843
7844
7844
7845
7845
7846
7846
7847
7847
7848
7848
7849
7850
7850
7850
7851
7851
7852
7852
7853
7853
7854
7854
7855
7855
7856
7856
7857
7857
7858
7858
7859
7859
7860
7860
7861
7861
7862
7862
7863
7863
7864
7864
7865
7865
7866
7866
7867
7867
7868
7868
7869
7869
7870
7870
7871
7871
7872
7872
7873
7873
7874
7874
7875
7875
7876
7876
7877
7877
7878
7878
7879
7880
7880
7880
7881
7881
7882
7882
7883
7883
7884
7884
7885
7885
7886
7886
7887
7887
7888
7888
7889
7889
7890
7890
7891
7891
7892
7892
7893
7893
7894
7894
7895
7895
7896
7896
7897
7897
7898
7898
7899
7899
7900
7900
7901
7901
7902
7902
7903
7903
7904
7904
7905
7905
7906
7906
7907
7907
7908
7908
7909
7910
7910
7910
7911
7911
7912
7912
7913
7913
7914
7914
7915
7915
7916
7916
7917
7917
7918
7918
7919
7919
7920
7920
7921
7921
7922
7922
7923
7923
7924
7924
7925
7925
7926
7926
7927
7927
7928
7928
7929
7929
7930
7930
7931
7931
7932
7932
7933
7933
7934
7934
7935
7935
7936
7936
7937
7937
7938
7938
7939
7940
7940
7940
7941
7941
7942
7942
7943
7943
7944
7944
7945
7945
7946
7946
7947
7947
7948
7948
7949
7949
7950
7950
7951
7951
7952
7952
7953
7953
7954
7954
7955
7955
7956
7956
7957
7957
7958
7958
7959
7959
7960
7960
7961
7961
7962
7962
7963
7963
7964
7964
7965
7965
7966
7966
7967
7967
7968
7968
7969
7970
7970
7970
7971
7971
7972
7972
7973
7973
7974
7974
7975
7975
7976
7976
7977
7977
7978
7978
7979
7979
7980
7980
7981
7981
7982
7982
7983
7983
7984
7984
7985
7985
7986
7986
7987
7987
7988
7988
7989
7989
7990
7990
7991
7991
7992
7992
7993
7993
7994
7994
7995
7995
7996
7996
7997
7997
7998
7998
7999
8000
8000
8000
8001
8001
8002
8002
8003
8003
8004
8004
8005
8005
8006
8006
8007
8007
8008
8008
8009
8009
8010
8010
8011
8011
8012
8012
8013
8013
8014
8014
8015
8015
8016
8016
8017
8017
8018
8018
8019
8019
8020
8020
8021
8021
8022
8022
8023
8023
8024
8024
8025
8025
8026
8026
8027
8027
8028
8028
8029
8030
8030
8030
8031
8031
8032
8032
8033
8033
8034
8034
8035
8035
8036
8036
8037
8037
8038
8038
8039
8039
8040
8040
8041
8041
8042
8042
8043
8043
8044
8044
8045
8045
8046
8046
8047
8047
8048
8048
8049
8049
8050
8050
8051
8051
8052
8052
8053
8053
8054
8054
8055
8055
8056
8056
8057
8057
8058
8058
8059
8060
8060
8060
8061
8061
8062
8062
8063
8063
8064
8064
8065
8065
8066
8066
8067
8067
8068
8068
8069
8069
8070
8070
8071
8071
8072
8072
8073
8073
8074
8074
8075
8075
8076
8076
8077
8077
8078
8078
8079
8079
8080
8080
8081
8081
8082
8082
8083
8083
8084
8084
8085
8085
8086
8086
8087
8087
8088
8088
8089
8090
8090
8090
8091
8091
8092
8092
8093
8093
8094
8094
8095
8095
8096
8096
8097
8097
8098
8098
8099
8099
8100
8100
8101
8101
8102
8102
8103
8103
8104
8104
8105
8105
8106
8106
8107
8107
8108
8108
8109
8109
8110
8110
8111
8111
8112
8112
8113
8113
8114
8114
8115
8115
8116
8116
8117
8117
8118
8118
8119
8120
8120
8120
8121
8121
8122
8122
8123
8123
8124
8124
8125
8125
8126
8126
8127
8127
8128
8128
8129
8129
8130
8130
8131
8131
8132
8132
8133
8133
8134
8134
8135
8135
8136
8136
8137
8137
8138
8138
8139
8139
8140
8140
8141
8141
8142
8142
8143
8143
8144
8144
8145
8145
8146
8146
8147
8147
8148
8148
8149
8150
8150
8150
8151
8151
8152
8152
8153
8153
8154
8154
8155
8155
8156
8156
8157
8157
8158
8158
8159
8159
8160
8160
8161
8161
8162
8162
8163
8163
8164
8164
8165
8165
8166
8166
8167
8167
8168
8168
8169
8169
8170
8170
8171
8171
8172
8172
8173
8173
8174
8174
8175
8175
8176
8176
8177
8177
8178
8178
8179
8180
8180
8180
8181
8181
8182
8182
8183
8183
8184
8184
8185
8185
8186
8186
8187
8187
8188
8188
8189
8189
8190
8190
8191
8191
8192
8192
8193
8193
8194
8194
8195
8195
8196
8196
8197
8197
8198
8198
8199
8199
8200
8200
8201
8201
8202
8202
8203
8203
8204
8204
8205
8205
8206
8206
8207
8207
8208
8208
8209
8210
8210
8210
8211
8211
8212
8212
8213
8213
8214
8214
8215
8215
8216
8216
8217
8217
8218
8218
8219
8219
8220
8220
8221
8221
8222
8222
8223
8223
8224
8224
8225
8225
8226
8226
8227
8227
8228
8228
8229
8229
8230
8230
8231
8231
8232
8232
8233
8233
8234
8234
8235
8235
8236
8236
8237
8237
8238
8238
8239
8240
8240
8240
8241
8241
8242
8242
8243
8243
8244
8244
8245
8245
8246
8246
8247
8247
8248
8248
8249
8249
8250
8250
8251
8251
8252
8252
8253
8253
8254
8254
8255
8255
8256
8256
8257
8257
8258
8258
8259
8259
8260
8260
8261
8261
8262
8262
8263
8263
8264
8264
8265
8265
8266
8266
8267
8267
8268
8268
8269
8270
8270
8270
8271
8271
8272
8272
8273
8273
8274
8274
8275
8275
8276
8276
8277
8277
8278
8278
8279
8279
8280
8280
8281
8281
8282
8282
8283
8283
8284
8284
8285
8285
8286
8286
8287
8287
8288
8288
8289
8289
8290
8290
8291
8291
8292
8292
8293
8293
8294
8294
8295
8295
8296
8296
8297
8297
8298
8298
8299
8300
8300
8300
8301
8301
8302
8302
8303
8303
8304
8304
8305
8305
8306
8306
8307
8307
8308
8308
8309
8309
8310
8310
8311
8311
8312
8312
8313
8313
8314
8314
8315
8315
8316
8316
8317
8317
8318
8318
8319
8319
8320
8320
8321
8321
8322
8322
8323
8323
8324
8324
8325
8325
8326
8326
8327
8327
8328
8328
8329
8330
8330
8330
8331
8331
8332
8332
8333
8333
8334
8334
8335
8335
8336
8336
8337
8337
8338
8338
8339
8339
8340
8340
8341
8341
8342
8342
8343
8343
8344
8344
8345
8345
8346
8346
8347
8347
8348
8348
8349
8349
8350
8350
8351
8351
8352
8352
8353
8353
8354
8354
8355
8355
8356
8356
8357
8357
8358
8358
8359
8360
8360
8360
8361
8361
8362
8362
8363
8363
8364
8364
8365
8365
8366
8366
8367
8367
8368
8368
8369
8369
8370
8370
8371
8371
8372
8372
8373
8373
8374
8374
8375
8375
8376
8376
8377
8377
8378
8378
8379
8379
8380
8380
8381
8381
8382
8382
8383
8383
8384
8384
8385
8385
8386
8386
8387
8387
8388
8388
8389
8390
8390
8390
8391
8391
8392
8392
8393
8393
8394
8394
8395
8395
8396
8396
8397
8397
8398
8398
8399
8399
8400
8400
8401
8401
8402
8402
8403
8403
8404
8404
8405
8405
8406
8406
8407
8407
8408
8408
8409
8409
8410
8410
8411
8411
8412
8412
8413
8413
8414
8414
8415
8415
8416
8416
8417
8417
8418
8418
8419
8420
8420
8420
8421
8421
8422
8422
8423
8423
8424
8424
8425
8425
8426
8426
8427
8427
8428
8428
8429
8429
8430
8430
8431
8431
8432
8432
8433
8433
8434
8434
8435
8435
8436
8436
8437
8437
8438
8438
8439
8439
8440
8440
8441
8441
8442
8442
8443
8443
8444
8444
8445
8445
8446
8446
8447
8447
8448
8448
8449
8450
8450
8450
8451
8451
8452
8452
8453
8453
8454
8454
8455
8455
8456
8456
8457
8457
8458
8458
8459
8459
8460
8460
8461
8461
8462
8462
8463
8463
8464
8464
8465
8465
8466
8466
8467
8467
8468
8468
8469
8469
8470
8470
8471
8471
8472
8472
8473
8473
8474
8474
8475
8475
8476
8476
8477
8477
8478
8478
8479
8480
8480
8480
8481
8481
8482
8482
8483
8483
8484
8484
8485
8485
8486
8486
8487
8487
8488
8488
8489
8489
8490
8490
8491
8491
8492
8492
8493
8493
8494
8494
8495
8495
8496
8496
8497
8497
8498
8498
8499
8499
8500
8500
8501
8501
8502
8502
8503
8503
8504
8504
8505
8505
8506
8506
8507
8507
8508
8508
8509
8510
8510
8510
8511
8511
8512
8512
8513
8513
8514
8514
8515
8515
8516
8516
8517
8517
8518
8518
8519
8519
8520
8520
8521
8521
8522
8522
8523
8523
8524
8524
8525
8525
8526
8526
8527
8527
8528
8528
8529
8529
8530
8530
8531
8531
8532
8532
8533
8533
8534
8534
8535
8535
8536
8536
8537
8537
8538
8538
8539
8540
8540
8540
8541
8541
8542
8542
8543
8543
8544
8544
8545
8545
8546
8546
8547
8547
8548
8548
8549
8549
8550
8550
8551
8551
8552
8552
8553
8553
8554
8554
8555
8555
8556
8556
8557
8557
8558
8558
8559
8559
8560
8560
8561
8561
8562
8562
8563
8563
8564
8564
8565
8565
8566
8566
8567
8567
8568
8568
8569
8570
8570
8570
8571
8571
8572
8572
8573
8573
8574
8574
8575
8575
8576
8576
8577
8577
8578
8578
8579
8579
8580
8580
8581
8581
8582
8582
8583
8583
8584
8584
8585
8585
8586
8586
8587
8587
8588
8588
8589
8589
8590
8590
8591
8591
8592
8592
8593
8593
8594
8594
8595
8595
8596
8596
8597
8597
8598
8598
8599
8600
8600
8600
8601
8601
8602
8602
8603
8603
8604
8604
8605
8605
8606
8606
8607
8607
8608
8608
8609
8609
8610
8610
8611
8611
8612
8612
8613
8613
8614
8614
8615
8615
8616
8616
8617
8617
8618
8618
8619
8619
8620
8620
8621
8621
8622
8622
8623
8623
8624
8624
8625
8625
8626
8626
8627
8627
8628
8628
8629
8630
8630
8630
8631
8631
8632
8632
8633
8633
8634
8634
8635
8635
8636
8636
8637
8637
8638
8638
8639
8639
8640
8640
8641
8641
8642
8642
8643
8643
8644
8644
8645
8645
8646
8646
8647
8647
8648
8648
8649
8649
8650
8650
8651
8651
8652
8652
8653
8653
8654
8654
8655
8655
8656
8656
8657
8657
8658
8658
8659
8660
8660
8660
8661
8661
8662
8662
8663
8663
8664
8664
8665
8665
8666
8666
8667
8667
8668
8668
8669
8669
8670
8670
8671
8671
8672
8672
8673
8673
8674
8674
8675
8675
8676
8676
8677
8677
8678
8678
8679
8679
8680
8680
8681
8681
8682
8682
8683
8683
8684
8684
8685
8685
8686
8686
8687
8687
8688
8688
8689
8690
8690
8690
8691
8691
8692
8692
8693
8693
8694
8694
8695
8695
8696
8696
8697
8697
8698
8698
8699
8699
8700
8700
8701
8701
8702
8702
8703
8703
8704
8704
8705
8705
8706
8706
8707
8707
8708
8708
8709
8709
8710
8710
8711
8711
8712
8712
8713
8713
8714
8714
8715
8715
8716
8716
8717
8717
8718
8718
8719
8720
8720
8720
8721
8721
8722
8722
8723
8723
8724
8724
8725
8725
8726
8726
8727
8727
8728
8728
8729
8729
8730
8730
8731
8731
8732
8732
8733
8733
8734
8734
8735
8735
8736
8736
8737
8737
8738
8738
8739
8739
8740
8740
8741
8741
8742
8742
8743
8743
8744
8744
8745
8745
8746
8746
8747
8747
8748
8748
8749
8750
8750
8750
8751
8751
8752
8752
8753
8753
8754
8754
8755
8755
8756
8756
8757
8757
8758
8758
8759
8759
8760
8760
8761
8761
8762
8762
8763
8763
8764
8764
8765
8765
8766
8766
8767
8767
8768
8768
8769
8769
8770
8770
8771
8771
8772
8772
8773
8773
8774
8774
8775
8775
8776
8776
8777
8777
8778
8778
8779
8780
8780
8780
8781
8781
8782
8782
8783
8783
8784
8784
8785
8785
8786
8786
8787
8787
8788
8788
8789
8789
8790
8790
8791
8791
8792
8792
8793
8793
8794
8794
8795
8795
8796
8796
8797
8797
8798
8798
8799
8799
8800
8800
8801
8801
8802
8802
8803
8803
8804
8804
8805
8805
8806
8806
8807
8807
8808
8808
8809
8810
8810
8810
8811
8811
8812
8812
8813
8813
8814
8814
8815
8815
8816
8816
8817
8817
8818
8818
8819
8819
8820
8820
8821
8821
8822
8822
8823
8823
8824
8824
8825
8825
8826
8826
8827
8827
8828
8828
8829
8829
8830
8830
8831
8831
8832
8832
8833
8833
8834
8834
8835
8835
8836
8836
8837
8837
8838
8838
8839
8840
8840
8840
8841
8841
8842
8842
8843
8843
8844
8844
8845
8845
8846
8846
8847
8847
8848
8848
8849
8849
8850
8850
8851
8851
8852
8852
8853
8853
8854
8854
8855
8855
8856
8856
8857
8857
8858
8858
8859
8859
8860
8860
8861
8861
8862
8862
8863
8863
8864
8864
8865
8865
8866
8866
8867
8867
8868
8868
8869
8870
8870
8870
8871
8871
8872
8872
8873
8873
8874
8874
8875
8875
8876
8876
8877
8877
8878
8878
8879
8879
8880
8880
8881
8881
8882
8882
8883
8883
8884
8884
8885
8885
8886
8886
8887
8887
8888
8888
8889
8889
8890
8890
8891
8891
8892
8892
8893
8893
8894
8894
8895
8895
8896
8896
8897
8897
8898
8898
8899
8900
8900
8900
8901
8901
8902
8902
8903
8903
8904
8904
8905
8905
8906
8906
8907
8907
8908
8908
8909
8909
8910
8910
8911
8911
8912
8912
8913
8913
8914
8914
8915
8915
8916
8916
8917
8917
8918
8918
8919
8919
8920
8920
8921
8921
8922
8922
8923
8923
8924
8924
8925
8925
8926
8926
8927
8927
8928
8928
8929
8930
8930
8930
8931
8931
8932
8932
8933
8933
8934
8934
8935
8935
8936
8936
8937
8937
8938
8938
8939
8939
8940
8940
8941
8941
8942
8942
8943
8943
8944
8944
8945
8945
8946
8946
8947
8947
8948
8948
8949
8949
8950
8950
8951
8951
8952
8952
8953
8953
8954
8954
8955
8955
8956
8956
8957
8957
8958
8958
8959
8960
8960
8960
8961
8961
8962
8962
8963
8963
8964
8964
8965
8965
8966
8966
8967
8967
8968
8968
8969
8969
8970
8970
8971
8971
8972
8972
8973
8973
8974
8974
8975
8975
8976
8976
8977
8977
8978
8978
8979
8979
8980
8980
8981
8981
8982
8982
8983
8983
8984
8984
8985
8985
8986
8986
8987
8987
8988
8988
8989
8990
8990
8990
8991
8991
8992
8992
8993
8993
8994
8994
8995
8995
8996
8996
8997
8997
8998
8998
8999
8999
9000
9000
9001
9001
9002
9002
9003
9003
9004
9004
9005
9005
9006
9006
9007
9007
9008
9008
9009
9009
9010
9010
9011
9011
9012
9012
9013
9013
9014
9014
9015
9015
9016
9016
9017
9017
9018
9018
9019
9020
9020
9020
9021
9021
9022
9022
9023
9023
9024
9024
9025
9025
9026
9026
9027
9027
9028
9028
9029
9029
9030
9030
9031
9031
9032
9032
9033
9033
9034
9034
9035
9035
9036
9036
9037
9037
9038
9038
9039
9039
9040
9040
9041
9041
9042
9042
9043
9043
9044
9044
9045
9045
9046
9046
9047
9047
9048
9048
9049
9050
9050
9050
9051
9051
9052
9052
9053
9053
9054
9054
9055
9055
9056
9056
9057
9057
9058
9058
9059
9059
9060
9060
9061
9061
9062
9062
9063
9063
9064
9064
9065
9065
9066
9066
9067
9067
9068
9068
9069
9069
9070
9070
9071
9071
9072
9072
9073
9073
9074
9074
9075
9075
9076
9076
9077
9077
9078
9078
9079
9080
9080
9080
9081
9081
9082
9082
9083
9083
9084
9084
9085
9085
9086
9086
9087
9087
9088
9088
9089
9089
9090
9090
9091
9091
9092
9092
9093
9093
9094
9094
9095
9095
9096
9096
9097
9097
9098
9098
9099
9099
9100
9100
9101
9101
9102
9102
9103
9103
9104
9104
9105
9105
9106
9106
9107
9107
9108
9108
9109
9110
9110
9110
9111
9111
9112
9112
9113
9113
9114
9114
9115
9115
9116
9116
9117
9117
9118
9118
9119
9119
9120
9120
9121
9121
9122
9122
9123
9123
9124
9124
9125
9125
9126
9126
9127
9127
9128
9128
9129
9129
9130
9130
9131
9131
9132
9132
9133
9133
9134
9134
9135
9135
9136
9136
9137
9137
9138
9138
9139
9140
9140
9140
9141
9141
9142
9142
9143
9143
9144
9144
9145
9145
9146
9146
9147
9147
9148
9148
9149
9149
9150
9150
9151
9151
9152
9152
9153
9153
9154
9154
9155
9155
9156
9156
9157
9157
9158
9158
9159
9159
9160
9160
9161
9161
9162
9162
9163
9163
9164
9164
9165
9165
9166
9166
9167
9167
9168
9168
9169
9170
9170
9170
9171
9171
9172
9172
9173
9173
9174
9174
9175
9175
9176
9176
9177
9177
9178
9178
9179
9179
9180
9180
9181
9181
9182
9182
9183
9183
9184
9184
9185
9185
9186
9186
9187
9187
9188
9188
9189
9189
9190
9190
9191
9191
9192
9192
9193
9193
9194
9194
9195
9195
9196
9196
9197
9197
9198
9198
9199
9200
9200
9201
9201
9202
9202
9203
9203
9204
9204
9205
9205
9206
9206
9207
9207
9208
9208
9209
9209
9210
9210
9211
9211
9212
9212
9213
9213
9214
9214
9215
9215
9216
9216
9217
9217
9218
9218
9219
9219
9220
9220
9221
9221
9222
9222
9223
9223
9224
9224
9225
9225
9226
9226
9227
9227
9228
9228
9229
9230
9230
9231
9231
9232
9232
9233
9233
9234
9234
9235
9235
9236
9236
9237
9237
9238
9238
9239
9239
9240
9240
9241
9241
9242
9242
9243
9243
9244
9244
9245
9245
9246
9246
9247
9247
9248
9248
9249
9249
9250
9250
9251
9251
9252
9252
9253
9253
9254
9254
9255
9255
9256
9256
9257
9257
9258
9258
9259
9260
9260
9261
9261
9262
9262
9263
9263
9264
9264
9265
9265
9266
9266
9267
9267
9268
9268
9269
9269
9270
9270
9271
9271
9272
9272
9273
9273
9274
9274
9275
9275
9276
9276
9277
9277
9278
9278
9279
9279
9280
9280
9281
9281
9282
9282
9283
9283
9284
9284
9285
9285
9286
9286
9287
9287
9288
9288
9289
9290
9290
9291
9291
9292
9292
9293
9293
9294
9294
9295
9295
9296
9296
9297
9297
9298
9298
9299
9299
9300
9300
9301
9301
9302
9302
9303
9303
9304
9304
9305
9305
9306
9306
9307
9307
9308
9308
9309
9309
9310
9310
9311
9311
9312
9312
9313
9313
9314
9314
9315
9315
9316
9316
9317
9317
9318
9318
9319
9320
9320
9321
9321
9322
9322
9323
9323
9324
9324
9325
9325
9326
9326
9327
9327
9328
9328
9329
9329
9330
9330
9331
9331
9332
9332
9333
9333
9334
9334
9335
9335
9336
9336
9337
9337
9338
9338
9339
9339
9340
9340
9341
9341
9342
9342
9343
9343
9344
9344
9345
9345
9346
9346
9347
9347
9348
9348
9349
9350
9350
9351
9351
9352
9352
9353
9353
9354
9354
9355
9355
9356
9356
9357
9357
9358
9358
9359
9359
9360
9360
9361
9361
9362
9362
9363
9363
9364
9364
9365
9365
9366
9366
9367
9367
9368
9368
9369
9369
9370
9370
9371
9371
9372
9372
9373
9373
9374
9374
9375
9375
9376
9376
9377
9377
9378
9378
9379
9380
9380
9381
9381
9382
9382
9383
9383
9384
9384
9385
9385
9386
9386
9387
9387
9388
9388
9389
9389
9390
9390
9391
9391
9392
9392
9393
9393
9394
9394
9395
9395
9396
9396
9397
9397
9398
9398
9399
9399
9400
9400
9401
9401
9402
9402
9403
9403
9404
9404
9405
9405
9406
9406
9407
9407
9408
9408
9409
9410
9410
9411
9411
9412
9412
9413
9413
9414
9414
9415
9415
9416
9416
9417
9417
9418
9418
9419
9419
9420
9420
9421
9421
9422
9422
9423
9423
9424
9424
9425
9425
9426
9426
9427
9427
9428
9428
9429
9429
9430
9430
9431
9431
9432
9432
9433
9433
9434
9434
9435
9435
9436
9436
9437
9437
9438
9438
9439
9440
9440
9441
9441
9442
9442
9443
9443
9444
9444
9445
9445
9446
9446
9447
9447
9448
9448
9449
9449
9450
9450
9451
9451
9452
9452
9453
9453
9454
9454
9455
9455
9456
9456
9457
9457
9458
9458
9459
9459
9460
9460
9461
9461
9462
9462
9463
9463
9464
9464
9465
9465
9466
9466
9467
9467
9468
9468
9469
9470
9470
9471
9471
9472
9472
9473
9473
9474
9474
9475
9475
9476
9476
9477
9477
9478
9478
9479
9479
9480
9480
9481
9481
9482
9482
9483
9483
9484
9484
9485
9485
9486
9486
9487
9487
9488
9488
9489
9489
9490
9490
9491
9491
9492
9492
9493
9493
9494
9494
9495
9495
9496
9496
9497
9497
9498
9498
9499
9500
9500
9501
9501
9502
9502
9503
9503
9504
9504
9505
9505
9506
9506
9507
9507
9508
9508
9509
9509
9510
9510
9511
9511
9512
9512
9513
9513
9514
9514
9515
9515
9516
9516
9517
9517
9518
9518
9519
9519
9520
9520
9521
9521
9522
9522
9523
9523
9524
9524
9525
9525
9526
9526
9527
9527
9528
9528
9529
9530
9530
9531
9531
9532
9532
9533
9533
9534
9534
9535
9535
9536
9536
9537
9537
9538
9538
9539
9539
9540
9540
9541
9541
9542
9542
9543
9543
9544
9544
9545
9545
9546
9546
9547
9547
9548
9548
9549
9549
9550
9550
9551
9551
9552
9552
9553
9553
9554
9554
9555
9555
9556
9556
9557
9557
9558
9558
9559
9560
9560
9561
9561
9562
9562
9563
9563
9564
9564
9565
9565
9566
9566
9567
9567
9568
9568
9569
9569
9570
9570
9571
9571
9572
9572
9573
9573
9574
9574
9575
9575
9576
9576
9577
9577
9578
9578
9579
9579
9580
9580
9581
9581
9582
9582
9583
9583
9584
9584
9585
9585
9586
9586
9587
9587
9588
9588
9589
9590
9590
9591
9591
9592
9592
9593
9593
9594
9594
9595
9595
9596
9596
9597
9597
9598
9598
9599
9599
9600
9600
9601
9601
9602
9602
9603
9603
9604
9604
9605
9605
9606
9606
9607
9607
9608
9608
9609
9609
9610
9610
9611
9611
9612
9612
9613
9613
9614
9614
9615
9615
9616
9616
9617
9617
9618
9618
9619
9620
9620
9621
9621
9622
9622
9623
9623
9624
9624
9625
9625
9626
9626
9627
9627
9628
9628
9629
9629
9630
9630
9631
9631
9632
9632
9633
9633
9634
9634
9635
9635
9636
9636
9637
9637
9638
9638
9639
9639
9640
9640
9641
9641
9642
9642
9643
9643
9644
9644
9645
9645
9646
9646
9647
9647
9648
9648
9649
9650
9650
9651
9651
9652
9652
9653
9653
9654
9654
9655
9655
9656
9656
9657
9657
9658
9658
9659
9659
9660
9660
9661
9661
9662
9662
9663
9663
9664
9664
9665
9665
9666
9666
9667
9667
9668
9668
9669
9669
9670
9670
9671
9671
9672
9672
9673
9673
9674
9674
9675
9675
9676
9676
9677
9677
9678
9678
9679
9680
9680
9681
9681
9682
9682
9683
9683
9684
9684
9685
9685
9686
9686
9687
9687
9688
9688
9689
9689
9690
9690
9691
9691
9692
9692
9693
9693
9694
9694
9695
9695
9696
9696
9697
9697
9698
9698
9699
9699
9700
9700
9701
9701
9702
9702
9703
9703
9704
9704
9705
9705
9706
9706
9707
9707
9708
9708
9709
9710
9710
9711
9711
9712
9712
9713
9713
9714
9714
9715
9715
9716
9716
9717
9717
9718
9718
9719
9719
9720
9720
9721
9721
9722
9722
9723
9723
9724
9724
9725
9725
9726
9726
9727
9727
9728
9728
9729
9729
9730
9730
9731
9731
9732
9732
9733
9733
9734
9734
9735
9735
9736
9736
9737
9737
9738
9738
9739
9740
9740
9741
9741
9742
9742
9743
9743
9744
9744
9745
9745
9746
9746
9747
9747
9748
9748
9749
9749
9750
9750
9751
9751
9752
9752
9753
9753
9754
9754
9755
9755
9756
9756
9757
9757
9758
9758
9759
9759
9760
9760
9761
9761
9762
9762
9763
9763
9764
9764
9765
9765
9766
9766
9767
9767
9768
9768
9769
9770
9770
9771
9771
9772
9772
9773
9773
9774
9774
9775
9775
9776
9776
9777
9777
9778
9778
9779
9779
9780
9780
9781
9781
9782
9782
9783
9783
9784
9784
9785
9785
9786
9786
9787
9787
9788
9788
9789
9789
9790
9790
9791
9791
9792
9792
9793
9793
9794
9794
9795
9795
9796
9796
9797
9797
9798
9798
9799
9800
9800
9801
9801
9802
9802
9803
9803
9804
9804
9805
9805
9806
9806
9807
9807
9808
9808
9809
9809
9810
9810
9811
9811
9812
9812
9813
9813
9814
9814
9815
9815
9816
9816
9817
9817
9818
9818
9819
9819
9820
9820
9821
9821
9822
9822
9823
9823
9824
9824
9825
9825
9826
9826
9827
9827
9828
9828
9829
9830
9830
9831
9831
9832
9832
9833
9833
9834
9834
9835
9835
9836
9836
9837
9837
9838
9838
9839
9839
9840
9840
9841
9841
9842
9842
9843
9843
9844
9844
9845
9845
9846
9846
9847
9847
9848
9848
9849
9849
9850
9850
9851
9851
9852
9852
9853
9853
9854
9854
9855
9855
9856
9856
9857
9857
9858
9858
9859
9860
9860
9861
9861
9862
9862
9863
9863
9864
9864
9865
9865
9866
9866
9867
9867
9868
9868
9869
9869
9870
9870
9871
9871
9872
9872
9873
9873
9874
9874
9875
9875
9876
9876
9877
9877
9878
9878
9879
9879
9880
9880
9881
9881
9882
9882
9883
9883
9884
9884
9885
9885
9886
9886
9887
9887
9888
9888
9889
9890
9890
9891
9891
9892
9892
9893
9893
9894
9894
9895
9895
9896
9896
9897
9897
9898
9898
9899
9899
9900
9900
9901
9901
9902
9902
9903
9903
9904
9904
9905
9905
9906
9906
9907
9907
9908
9908
9909
9909
9910
9910
9911
9911
9912
9912
9913
9913
9914
9914
9915
9915
9916
9916
9917
9917
9918
9918
9919
9920
9920
9921
9921
9922
9922
9923
9923
9924
9924
9925
9925
9926
9926
9927
9927
9928
9928
9929
9929
9930
9930
9931
9931
9932
9932
9933
9933
9934
9934
9935
9935
9936
9936
9937
9937
9938
9938
9939
9939
9940
9940
9941
9941
9942
9942
9943
9943
9944
9944
9945
9945
9946
9946
9947
9947
9948
9948
9949
9950
9950
9951
9951
9952
9952
9953
9953
9954
9954
9955
9955
9956
9956
9957
9957
9958
9958
9959
9959
9960
9960
9961
9961
9962
9962
9963
9963
9964
9964
9965
9965
9966
9966
9967
9967
9968
9968
9969
9969
9970
9970
9971
9971
9972
9972
9973
9973
9974
9974
9975
9975
9976
9976
9977
9977
9978
9978
9979
9980
9980
9981
9981
9982
9982
9983
9983
9984
9984
9985
9985
9986
9986
9987
9987
9988
9988
9989
9989
9990
9990
9991
9991
9992
9992
9993
9993
9994
9994
9995
9995
9996
9996
9997
9997
9998
9998
9999
9999
10000
10000
10001
10001
10002
10002
10003
10003
10004
10004
10005
10005
10006
10006
10007
10007
10008
10008
10009
10010
10010
10011
10011
10012
10012
10013
10013
10014
10014
10015
10015
10016
10016
10017
10017
10018
10018
10019
10019
10020
10020
10021
10021
10022
10022
10023
10023
10024
10024
10025
10025
10026
10026
10027
10027
10028
10028
10029
10029
10030
10030
10031
10031
10032
10032
10033
10033
10034
10034
10035
10035
10036
10036
10037
10037
10038
10038
10039
10040
10040
10041
10041
10042
10042
10043
10043
10044
10044
10045
10045
10046
10046
10047
10047
10048
10048
10049
10049
10050
10050
10051
10051
10052
10052
10053
10053
10054
10054
10055
10055
10056
10056
10057
10057
10058
10058
10059
10059
10060
10060
10061
10061
10062
10062
10063
10063
10064
10064
10065
10065
10066
10066
10067
10067
10068
10068
10069
10070
10070
10071
10071
10072
10072
10073
10073
10074
10074
10075
10075
10076
10076
10077
10077
10078
10078
10079
10079
10080
10080
10081
10081
10082
10082
10083
10083
10084
10084
10085
10085
10086
10086
10087
10087
10088
10088
10089
10089
10090
10090
10091
10091
10092
10092
10093
10093
10094
10094
10095
10095
10096
10096
10097
10097
10098
10098
10099
10100
10100
10101
10101
10102
10102
10103
10103
10104
10104
10105
10105
10106
10106
10107
10107
10108
10108
10109
10109
10110
10110
10111
10111
10112
10112
10113
10113
10114
10114
10115
10115
10116
10116
10117
10117
10118
10118
10119
10119
10120
10120
10121
10121
10122
10122
10123
10123
10124
10124
10125
10125
10126
10126
10127
10127
10128
10128
10129
10130
10130
10131
10131
10132
10132
10133
10133
10134
10134
10135
10135
10136
10136
10137
10137
10138
10138
10139
10139
10140
10140
10141
10141
10142
10142
10143
10143
10144
10144
10145
10145
10146
10146
10147
10147
10148
10148
10149
10149
10150
10150
10151
10151
10152
10152
10153
10153
10154
10154
10155
10155
10156
10156
10157
10157
10158
10158
10159
10160
10160
10161
10161
10162
10162
10163
10163
10164
10164
10165
10165
10166
10166
10167
10167
10168
10168
10169
10169
10170
10170
10171
10171
10172
10172
10173
10173
10174
10174
10175
10175
10176
10176
10177
10177
10178
10178
10179
10179
10180
10180
10181
10181
10182
10182
10183
10183
10184
10184
10185
10185
10186
10186
10187
10187
10188
10188
10189
10190
10190
10191
10191
10192
10192
10193
10193
10194
10194
10195
10195
10196
10196
10197
10197
10198
10198
10199
10199
10200
10200
10201
10201
10202
10202
10203
10203
10204
10204
10205
10205
10206
10206
10207
10207
10208
10208
10209
10209
10210
10210
10211
10211
10212
10212
10213
10213
10214
10214
10215
10215
10216
10216
10217
10217
10218
10218
10219
10220
10220
10221
10221
10222
10222
10223
10223
10224
10224
10225
10225
10226
10226
10227
10227
10228
10228
10229
10229
10230
10230
10231
10231
10232
10232
10233
10233
10234
10234
10235
10235
10236
10236
10237
10237
10238
10238
10239
10239
10240
10240
10241
10241
10242
10242
10243
10243
10244
10244
10245
10245
10246
10246
10247
10247
10248
10248
10249
10250
10250
10251
10251
10252
10252
10253
10253
10254
10254
10255
10255
10256
10256
10257
10257
10258
10258
10259
10259
10260
10260
10261
10261
10262
10262
10263
10263
10264
10264
10265
10265
10266
10266
10267
10267
10268
10268
10269
10269
10270
10270
10271
10271
10272
10272
10273
10273
10274
10274
10275
10275
10276
10276
10277
10277
10278
10278
10279
10280
10280
10281
10281
10282
10282
10283
10283
10284
10284
10285
10285
10286
10286
10287
10287
10288
10288
10289
10289
10290
10290
10291
10291
10292
10292
10293
10293
10294
10294
10295
10295
10296
10296
10297
10297
10298
10298
10299
10299
10300
10300
10301
10301
10302
10302
10303
10303
10304
10304
10305
10305
10306
10306
10307
10307
10308
10308
10309
10310
10310
10311
10311
10312
10312
10313
10313
10314
10314
10315
10315
10316
10316
10317
10317
10318
10318
10319
10319
10320
10320
10321
10321
10322
10322
10323
10323
10324
10324
10325
10325
10326
10326
10327
10327
10328
10328
10329
10329
10330
10330
10331
10331
10332
10332
10333
10333
10334
10334
10335
10335
10336
10336
10337
10337
10338
10338
10339
10340
10340
10341
10341
10342
10342
10343
10343
10344
10344
10345
10345
10346
10346
10347
10347
10348
10348
10349
10349
10350
10350
10351
10351
10352
10352
10353
10353
10354
10354
10355
10355
10356
10356
10357
10357
10358
10358
10359
10359
10360
10360
10361
10361
10362
10362
10363
10363
10364
10364
10365
10365
10366
10366
10367
10367
10368
10368
10369
10370
10370
10371
10371
10372
10372
10373
10373
10374
10374
10375
10375
10376
10376
10377
10377
10378
10378
10379
10379
10380
10380
10381
10381
10382
10382
10383
10383
10384
10384
10385
10385
10386
10386
10387
10387
10388
10388
10389
10389
10390
10390
10391
10391
10392
10392
10393
10393
10394
10394
10395
10395
10396
10396
10397
10397
10398
10398
10399
10400
10400
10401
10401
10402
10402
10403
10403
10404
10404
10405
10405
10406
10406
10407
10407
10408
10408
10409
10409
10410
10410
10411
10411
10412
10412
10413
10413
10414
10414
10415
10415
10416
10416
10417
10417
10418
10418
10419
10419
10420
10420
10421
10421
10422
10422
10423
10423
10424
10424
10425
10425
10426
10426
10427
10427
10428
10428
10429
10430
10430
10431
10431
10432
10432
10433
10433
10434
10434
10435
10435
10436
10436
10437
10437
10438
10438
10439
10439
10440
10440
10441
10441
10442
10442
10443
10443
10444
10444
10445
10445
10446
10446
10447
10447
10448
10448
10449
10449
10450
10450
10451
10451
10452
10452
10453
10453
10454
10454
10455
10455
10456
10456
10457
10457
10458
10458
10459
10460
10460
10461
10461
10462
10462
10463
10463
10464
10464
10465
10465
10466
10466
10467
10467
10468
10468
10469
10469
10470
10470
10471
10471
10472
10472
10473
10473
10474
10474
10475
10475
10476
10476
10477
10477
10478
10478
10479
10479
10480
10480
10481
10481
10482
10482
10483
10483
10484
10484
10485
10485
10486
10486
10487
10487
10488
10488
10489
10490
10490
10491
10491
10492
10492
10493
10493
10494
10494
10495
10495
10496
10496
10497
10497
10498
10498
10499
10499
10500
10500
10501
10501
10502
10502
10503
10503
10504
10504
10505
10505
10506
10506
10507
10507
10508
10508
10509
10509
10510
10510
10511
10511
10512
10512
10513
10513
10514
10514
10515
10515
10516
10516
10517
10517
10518
10518
10519
10520
10520
10521
10521
10522
10522
10523
10523
10524
10524
10525
10525
10526
10526
10527
10527
10528
10528
10529
10529
10530
10530
10531
10531
10532
10532
10533
10533
10534
10534
10535
10535
10536
10536
10537
10537
10538
10538
10539
10539
10540
10540
10541
10541
10542
10542
10543
10543
10544
10544
10545
10545
10546
10546
10547
10547
10548
10548
10549
10550
10550
10551
10551
10552
10552
10553
10553
10554
10554
10555
10555
10556
10556
10557
10557
10558
10558
10559
10559
10560
10560
10561
10561
10562
10562
10563
10563
10564
10564
10565
10565
10566
10566
10567
10567
10568
10568
10569
10569
10570
10570
10571
10571
10572
10572
10573
10573
10574
10574
10575
10575
10576
10576
10577
10577
10578
10578
10579
10580
10580
10581
10581
10582
10582
10583
10583
10584
10584
10585
10585
10586
10586
10587
10587
10588
10588
10589
10589
10590
10590
10591
10591
10592
10592
10593
10593
10594
10594
10595
10595
10596
10596
10597
10597
10598
10598
10599
10599
10600
10600
10601
10601
10602
10602
10603
10603
10604
10604
10605
10605
10606
10606
10607
10607
10608
10608
10609
10610
10610
10611
10611
10612
10612
10613
10613
10614
10614
10615
10615
10616
10616
10617
10617
10618
10618
10619
10619
10620
10620
10621
10621
10622
10622
10623
10623
10624
10624
10625
10625
10626
10626
10627
10627
10628
10628
10629
10629
10630
10630
10631
10631
10632
10632
10633
10633
10634
10634
10635
10635
10636
10636
10637
10637
10638
10638
10639
10640
10640
10641
10641
10642
10642
10643
10643
10644
10644
10645
10645
10646
10646
10647
10647
10648
10648
10649
10649
10650
10650
10651
10651
10652
10652
10653
10653
10654
10654
10655
10655
10656
10656
10657
10657
10658
10658
10659
10659
10660
10660
10661
10661
10662
10662
10663
10663
10664
10664
10665
10665
10666
10666
10667
10667
10668
10668
10669
10670
10670
10671
10671
10672
10672
10673
10673
10674
10674
10675
10675
10676
10676
10677
10677
10678
10678
10679
10679
10680
10680
10681
10681
10682
10682
10683
10683
10684
10684
10685
10685
10686
10686
10687
10687
10688
10688
10689
10689
10690
10690
10691
10691
10692
10692
10693
10693
10694
10694
10695
10695
10696
10696
10697
10697
10698
10698
10699
10700
10700
10701
10701
10702
10702
10703
10703
10704
10704
10705
10705
10706
10706
10707
10707
10708
10708
10709
10709
10710
10710
10711
10711
10712
10712
10713
10713
10714
10714
10715
10715
10716
10716
10717
10717
10718
10718
10719
10719
10720
10720
10721
10721
10722
10722
10723
10723
10724
10724
10725
10725
10726
10726
10727
10727
10728
10728
10729
10730
10730
10731
10731
10732
10732
10733
10733
10734
10734
10735
10735
10736
10736
10737
10737
10738
10738
10739
10739
10740
10740
10741
10741
10742
10742
10743
10743
10744
10744
10745
10745
10746
10746
10747
10747
10748
10748
10749
10749
10750
10750
10751
10751
10752
10752
10753
10753
10754
10754
10755
10755
10756
10756
10757
10757
10758
10758
10759
10760
10760
10761
10761
10762
10762
10763
10763
10764
10764
10765
10765
10766
10766
10767
10767
10768
10768
10769
10769
10770
10770
10771
10771
10772
10772
10773
10773
10774
10774
10775
10775
10776
10776
10777
10777
10778
10778
10779
10779
10780
10780
10781
10781
10782
10782
10783
10783
10784
10784
10785
10785
10786
10786
10787
10787
10788
10788
10789
10790
10790
10791
10791
10792
10792
10793
10793
10794
10794
10795
10795
10796
10796
10797
10797
10798
10798
10799
10799
10800
10800
10801
10801
10802
10802
10803
10803
10804
10804
10805
10805
10806
10806
10807
10807
10808
10808
10809
10809
10810
10810
10811
10811
10812
10812
10813
10813
10814
10814
10815
10815
10816
10816
10817
10817
10818
10818
10819
10820
10820
10821
10821
10822
10822
10823
10823
10824
10824
10825
10825
10826
10826
10827
10827
10828
10828
10829
10829
10830
10830
10831
10831
10832
10832
10833
10833
10834
10834
10835
10835
10836
10836
10837
10837
10838
10838
10839
10839
10840
10840
10841
10841
10842
10842
10843
10843
10844
10844
10845
10845
10846
10846
10847
10847
10848
10848
10849
10850
10850
10851
10851
10852
10852
10853
10853
10854
10854
10855
10855
10856
10856
10857
10857
10858
10858
10859
10859
10860
10860
10861
10861
10862
10862
10863
10863
10864
10864
10865
10865
10866
10866
10867
10867
10868
10868
10869
10869
10870
10870
10871
10871
10872
10872
10873
10873
10874
10874
10875
10875
10876
10876
10877
10877
10878
10878
10879
10880
10880
10881
10881
10882
10882
10883
10883
10884
10884
10885
10885
10886
10886
10887
10887
10888
10888
10889
10889
10890
10890
10891
10891
10892
10892
10893
10893
10894
10894
10895
10895
10896
10896
10897
10897
10898
10898
10899
10899
10900
10900
10901
10901
10902
10902
10903
10903
10904
10904
10905
10905
10906
10906
10907
10907
10908
10908
10909
10910
10910
10911
10911
10912
10912
10913
10913
10914
10914
10915
10915
10916
10916
10917
10917
10918
10918
10919
10919
10920
10920
10921
10921
10922
10922
10923
10923
10924
10924
10925
10925
10926
10926
10927
10927
10928
10928
10929
10929
10930
10930
10931
10931
10932
10932
10933
10933
10934
10934
10935
10935
10936
10936
10937
10937
10938
10938
10939
10940
10940
10941
10941
10942
10942
10943
10943
10944
10944
10945
10945
10946
10946
10947
10947
10948
10948
10949
10949
10950
10950
10951
10951
10952
10952
10953
10953
10954
10954
10955
10955
10956
10956
10957
10957
10958
10958
10959
10959
10960
10960
10961
10961
10962
10962
10963
10963
10964
10964
10965
10965
10966
10966
10967
10967
10968
10968
10969
10970
10970
10971
10971
10972
10972
10973
10973
10974
10974
10975
10975
10976
10976
10977
10977
10978
10978
10979
10979
10980
10980
10981
10981
10982
10982
10983
10983
10984
10984
10985
10985
10986
10986
10987
10987
10988
10988
10989
10989
10990
10990
10991
10991
10992
10992
10993
10993
10994
10994
10995
10995
10996
10996
10997
10997
10998
10998
10999
11000
11000
11001
11001
11002
11002
11003
11003
11004
11004
11005
11005
11006
11006
11007
11007
11008
11008
11009
11009
11010
11010
11011
11011
11012
11012
11013
11013
11014
11014
11015
11015
11016
11016
11017
11017
11018
11018
11019
11019
11020
11020
11021
11021
11022
11022
11023
11023
11024
11024
11025
11025
11026
11026
11027
11027
11028
11028
11029
11030
11030
11031
11031
11032
11032
11033
11033
11034
11034
11035
11035
11036
11036
11037
11037
11038
11038
11039
11039
11040
11040
11041
11041
11042
11042
11043
11043
11044
11044
11045
11045
11046
11046
11047
11047
11048
11048
11049
11049
11050
11050
11051
11051
11052
11052
11053
11053
11054
11054
11055
11055
11056
11056
11057
11057
11058
11058
11059
11060
11060
11061
11061
11062
11062
11063
11063
11064
11064
11065
11065
11066
11066
11067
11067
11068
11068
11069
11069
11070
11070
11071
11071
11072
11072
11073
11073
11074
11074
11075
11075
11076
11076
11077
11077
11078
11078
11079
11079
11080
11080
11081
11081
11082
11082
11083
11083
11084
11084
11085
11085
11086
11086
11087
11087
11088
11088
11089
11090
11090
11091
11091
11092
11092
11093
11093
11094
11094
11095
11095
11096
11096
11097
11097
11098
11098
11099
11099
11100
11100
11101
11101
11102
11102
11103
11103
11104
11104
11105
11105
11106
11106
11107
11107
11108
11108
11109
11109
11110
11110
11111
11111
11112
11112
11113
11113
11114
11114
11115
11115
11116
11116
11117
11117
11118
11118
11119
11120
11120
11121
11121
11122
11122
11123
11123
11124
11124
11125
11125
11126
11126
11127
11127
11128
11128
11129
11129
11130
11130
11131
11131
11132
11132
11133
11133
11134
11134
11135
11135
11136
11136
11137
11137
11138
11138
11139
11139
11140
11140
11141
11141
11142
11142
11143
11143
11144
11144
11145
11145
11146
11146
11147
11147
11148
11148
11149
11150
11150
11151
11151
11152
11152
11153
11153
11154
11154
11155
11155
11156
11156
11157
11157
11158
11158
11159
11159
11160
11160
11161
11161
11162
11162
11163
11163
11164
11164
11165
11165
11166
11166
11167
11167
11168
11168
11169
11169
11170
11170
11171
11171
11172
11172
11173
11173
11174
11174
11175
11175
11176
11176
11177
11177
11178
11178
11179
11180
11180
11181
11181
11182
11182
11183
11183
11184
11184
11185
11185
11186
11186
11187
11187
11188
11188
11189
11189
11190
11190
11191
11191
11192
11192
11193
11193
11194
11194
11195
11195
11196
11196
11197
11197
11198
11198
11199
11199
11200
11200
11201
11201
11202
11202
11203
11203
11204
11204
11205
11205
11206
11206
11207
11207
11208
11208
11209
11210
11210
11211
11211
11212
11212
11213
11213
11214
11214
11215
11215
11216
11216
11217
11217
11218
11218
11219
11219
11220
11220
11221
11221
11222
11222
11223
11223
11224
11224
11225
11225
11226
11226
11227
11227
11228
11228
11229
11229
11230
11230
11231
11231
11232
11232
11233
11233
11234
11234
11235
11235
11236
11236
11237
11237
11238
11238
11239
11240
11240
11241
11241
11242
11242
11243
11243
11244
11244
11245
11245
11246
11246
11247
11247
11248
11248
11249
11249
11250
11250
11251
11251
11252
11252
11253
11253
11254
11254
11255
11255
11256
11256
11257
11257
11258
11258
11259
11259
11260
11260
11261
11261
11262
11262
11263
11263
11264
11264
11265
11265
11266
11266
11267
11267
11268
11268
11269
11270
11270
11271
11271
11272
11272
11273
11273
11274
11274
11275
11275
11276
11276
11277
11277
11278
11278
11279
11279
11280
11280
11281
11281
11282
11282
11283
11283
11284
11284
11285
11285
11286
11286
11287
11287
11288
11288
11289
11289
11290
11290
11291
11291
11292
11292
11293
11293
11294
11294
11295
11295
11296
11296
11297
11297
11298
11298
11299
11300
11300
11301
11301
11302
11302
11303
11303
11304
11304
11305
11305
11306
11306
11307
11307
11308
11308
11309
11309
11310
11310
11311
11311
11312
11312
11313
11313
11314
11314
11315
11315
11316
11316
11317
11317
11318
11318
11319
11319
11320
11320
11321
11321
11322
11322
11323
11323
11324
11324
11325
11325
11326
11326
11327
11327
11328
11328
11329
11330
11330
11331
11331
11332
11332
11333
11333
11334
11334
11335
11335
11336
11336
11337
11337
11338
11338
11339
11339
11340
11340
11341
11341
11342
11342
11343
11343
11344
11344
11345
11345
11346
11346
11347
11347
11348
11348
11349
11349
11350
11350
11351
11351
11352
11352
11353
11353
11354
11354
11355
11355
11356
11356
11357
11357
11358
11358
11359
11360
11360
11361
11361
11362
11362
11363
11363
11364
11364
11365
11365
11366
11366
11367
11367
11368
11368
11369
11369
11370
11370
11371
11371
11372
11372
11373
11373
11374
11374
11375
11375
11376
11376
11377
11377
11378
11378
11379
11379
11380
11380
11381
11381
11382
11382
11383
11383
11384
11384
11385
11385
11386
11386
11387
11387
11388
11388
11389
11390
11390
11391
11391
11392
11392
11393
11393
11394
11394
11395
11395
11396
11396
11397
11397
11398
11398
11399
11399
11400
11400
11401
11401
11402
11402
11403
11403
11404
11404
11405
11405
11406
11406
11407
11407
11408
11408
11409
11409
11410
11410
11411
11411
11412
11412
11413
11413
11414
11414
11415
11415
11416
11416
11417
11417
11418
11418
11419
11420
11420
11421
11421
11422
11422
11423
11423
11424
11424
11425
11425
11426
11426
11427
11427
11428
11428
11429
11429
11430
11430
11431
11431
11432
11432
11433
11433
11434
11434
11435
11435
11436
11436
11437
11437
11438
11438
11439
11439
11440
11440
11441
11441
11442
11442
11443
11443
11444
11444
11445
11445
11446
11446
11447
11447
11448
11448
11449
11450
11450
11451
11451
11452
11452
11453
11453
11454
11454
11455
11455
11456
11456
11457
11457
11458
11458
11459
11459
11460
11460
11461
11461
11462
11462
11463
11463
11464
11464
11465
11465
11466
11466
11467
11467
11468
11468
11469
11469
11470
11470
11471
11471
11472
11472
11473
11473
11474
11474
11475
11475
11476
11476
11477
11477
11478
11478
11479
11480
11480
11481
11481
11482
11482
11483
11483
11484
11484
11485
11485
11486
11486
11487
11487
11488
11488
11489
11489
11490
11490
11491
11491
11492
11492
11493
11493
11494
11494
11495
11495
11496
11496
11497
11497
11498
11498
11499
11499
11500
11500
11501
11501
11502
11502
11503
11503
11504
11504
11505
11505
11506
11506
11507
11507
11508
11508
11509
11510
11510
11511
11511
11512
11512
11513
11513
11514
11514
11515
11515
11516
11516
11517
11517
11518
11518
11519
11519
11520
11520
11521
11521
11522
11522
11523
11523
11524
11524
11525
11525
11526
11526
11527
11527
11528
11528
11529
11529
11530
11530
11531
11531
11532
11532
11533
11533
11534
11534
11535
11535
11536
11536
11537
11537
11538
11538
11539
11540
11540
11541
11541
11542
11542
11543
11543
11544
11544
11545
11545
11546
11546
11547
11547
11548
11548
11549
11549
11550
11550
11551
11551
11552
11552
11553
11553
11554
11554
11555
11555
11556
11556
11557
11557
11558
11558
11559
11559
11560
11560
11561
11561
11562
11562
11563
11563
11564
11564
11565
11565
11566
11566
11567
11567
11568
11568
11569
11570
11570
11571
11571
11572
11572
11573
11573
11574
11574
11575
11575
11576
11576
11577
11577
11578
11578
11579
11579
11580
11580
11581
11581
11582
11582
11583
11583
11584
11584
11585
11585
11586
11586
11587
11587
11588
11588
11589
11589
11590
11590
11591
11591
11592
11592
11593
11593
11594
11594
11595
11595
11596
11596
11597
11597
11598
11598
11599
11600
11600
11601
11601
11602
11602
11603
11603
11604
11604
11605
11605
11606
11606
11607
11607
11608
11608
11609
11609
11610
11610
11611
11611
11612
11612
11613
11613
11614
11614
11615
11615
11616
11616
11617
11617
11618
11618
11619
11619
11620
11620
11621
11621
11622
11622
11623
11623
11624
11624
11625
11625
11626
11626
11627
11627
11628
11628
11629
11630
11630
11631
11631
11632
11632
11633
11633
11634
11634
11635
11635
11636
11636
11637
11637
11638
11638
11639
11639
11640
11640
11641
11641
11642
11642
11643
11643
11644
11644
11645
11645
11646
11646
11647
11647
11648
11648
11649
11649
11650
11650
11651
11651
11652
11652
11653
11653
11654
11654
11655
11655
11656
11656
11657
11657
11658
11658
11659
11660
11660
11661
11661
11662
11662
11663
11663
11664
11664
11665
11665
11666
11666
11667
11667
11668
11668
11669
11669
11670
11670
11671
11671
11672
11672
11673
11673
11674
11674
11675
11675
11676
11676
11677
11677
11678
11678
11679
11679
11680
11680
11681
11681
11682
11682
11683
11683
11684
11684
11685
11685
11686
11686
11687
11687
11688
11688
11689
11690
11690
11691
11691
11692
11692
11693
11693
11694
11694
11695
11695
11696
11696
11697
11697
11698
11698
11699
11699
11700
11700
11701
11701
11702
11702
11703
11703
11704
11704
11705
11705
11706
11706
11707
11707
11708
11708
11709
11709
11710
11710
11711
11711
11712
11712
11713
11713
11714
11714
11715
11715
11716
11716
11717
11717
11718
11718
11719
11720
11720
11721
11721
11722
11722
11723
11723
11724
11724
11725
11725
11726
11726
11727
11727
11728
11728
11729
11729
11730
11730
11731
11731
11732
11732
11733
11733
11734
11734
11735
11735
11736
11736
11737
11737
11738
11738
11739
11739
11740
11740
11741
11741
11742
11742
11743
11743
11744
11744
11745
11745
11746
11746
11747
11747
11748
11748
11749
11750
11750
11751
11751
11752
11752
11753
11753
11754
11754
11755
11755
11756
11756
11757
11757
11758
11758
11759
11759
11760
11760
11761
11761
11762
11762
11763
11763
11764
11764
11765
11765
11766
11766
11767
11767
11768
11768
11769
11769
11770
11770
11771
11771
11772
11772
11773
11773
11774
11774
11775
11775
11776
11776
11777
11777
11778
11778
11779
11780
11780
11781
11781
11782
11782
11783
11783
11784
11784
11785
11785
11786
11786
11787
11787
11788
11788
11789
11789
11790
11790
11791
11791
11792
11792
11793
11793
11794
11794
11795
11795
11796
11796
11797
11797
11798
11798
11799
11799
11800
11800
11801
11801
11802
11802
11803
11803
11804
11804
11805
11805
11806
11806
11807
11807
11808
11808
11809
11810
11810
11811
11811
11812
11812
11813
11813
11814
11814
11815
11815
11816
11816
11817
11817
11818
11818
11819
11819
11820
11820
11821
11821
11822
11822
11823
11823
11824
11824
11825
11825
11826
11826
11827
11827
11828
11828
11829
11829
11830
11830
11831
11831
11832
11832
11833
11833
11834
11834
11835
11835
11836
11836
11837
11837
11838
11838
11839
11840
11840
11841
11841
11842
11842
11843
11843
11844
11844
11845
11845
11846
11846
11847
11847
11848
11848
11849
11849
11850
11850
11851
11851
11852
11852
11853
11853
11854
11854
11855
11855
11856
11856
11857
11857
11858
11858
11859
11859
11860
11860
11861
11861
11862
11862
11863
11863
11864
11864
11865
11865
11866
11866
11867
11867
11868
11868
11869
11870
11870
11871
11871
11872
11872
11873
11873
11874
11874
11875
11875
11876
11876
11877
11877
11878
11878
11879
11879
11880
11880
11881
11881
11882
11882
11883
11883
11884
11884
11885
11885
11886
11886
11887
11887
11888
11888
11889
11889
11890
11890
11891
11891
11892
11892
11893
11893
11894
11894
11895
11895
11896
11896
11897
11897
11898
11898
11899
11900
11900
11901
11901
11902
11902
11903
11903
11904
11904
11905
11905
11906
11906
11907
11907
11908
11908
11909
11909
11910
11910
11911
11911
11912
11912
11913
11913
11914
11914
11915
11915
11916
11916
11917
11917
11918
11918
11919
11919
11920
11920
11921
11921
11922
11922
11923
11923
11924
11924
11925
11925
11926
11926
11927
11927
11928
11928
11929
11930
11930
11931
11931
11932
11932
11933
11933
11934
11934
11935
11935
11936
11936
11937
11937
11938
11938
11939
11939
11940
11940
11941
11941
11942
11942
11943
11943
11944
11944
11945
11945
11946
11946
11947
11947
11948
11948
11949
11949
11950
11950
11951
11951
11952
11952
11953
11953
11954
11954
11955
11955
11956
11956
11957
11957
11958
11958
11959
11960
11960
11961
11961
11962
11962
11963
11963
11964
11964
11965
11965
11966
11966
11967
11967
11968
11968
11969
11969
11970
11970
11971
11971
11972
11972
11973
11973
11974
11974
11975
11975
11976
11976
11977
11977
11978
11978
11979
11979
11980
11980
11981
11981
11982
11982
11983
11983
11984
11984
11985
11985
11986
11986
11987
11987
11988
11988
11989
11990
11990
11991
11991
11992
11992
11993
11993
11994
11994
11995
11995
11996
11996
11997
11997
11998
11998
11999
11999
12000
12000
12001
12001
12002
12002
12003
12003
12004
12004
12005
12005
12006
12006
12007
12007
12008
12008
12009
12009
12010
12010
12011
12011
12012
12012
12013
12013
12014
12014
12015
12015
12016
12016
12017
12017
12018
12018
12019
12020
12020
12021
12021
12022
12022
12023
12023
12024
12024
12025
12025
12026
12026
12027
12027
12028
12028
12029
12029
12030
12030
12031
12031
12032
12032
12033
12033
12034
12034
12035
12035
12036
12036
12037
12037
12038
12038
12039
12039
12040
12040
12041
12041
12042
12042
12043
12043
12044
12044
12045
12045
12046
12046
12047
12047
12048
12048
12049
12050
12050
12051
12051
12052
12052
12053
12053
12054
12054
12055
12055
12056
12056
12057
12057
12058
12058
12059
12059
12060
12060
12061
12061
12062
12062
12063
12063
12064
12064
12065
12065
12066
12066
12067
12067
12068
12068
12069
12069
12070
12070
12071
12071
12072
12072
12073
12073
12074
12074
12075
12075
12076
12076
12077
12077
12078
12078
12079
12080
12080
12081
12081
12082
12082
12083
12083
12084
12084
12085
12085
12086
12086
12087
12087
12088
12088
12089
12089
12090
12090
12091
12091
12092
12092
12093
12093
12094
12094
12095
12095
12096
12096
12097
12097
12098
12098
12099
12099
12100
12100
12101
12101
12102
12102
12103
12103
12104
12104
12105
12105
12106
12106
12107
12107
12108
12108
12109
12110
12110
12111
12111
12112
12112
12113
12113
12114
12114
12115
12115
12116
12116
12117
12117
12118
12118
12119
12119
12120
12120
12121
12121
12122
12122
12123
12123
12124
12124
12125
12125
12126
12126
12127
12127
12128
12128
12129
12129
12130
12130
12131
12131
12132
12132
12133
12133
12134
12134
12135
12135
12136
12136
12137
12137
12138
12138
12139
12140
12140
12141
12141
12142
12142
12143
12143
12144
12144
12145
12145
12146
12146
12147
12147
12148
12148
12149
12149
12150
12150
12151
12151
12152
12152
12153
12153
12154
12154
12155
12155
12156
12156
12157
12157
12158
12158
12159
12159
12160
12160
12161
12161
12162
12162
12163
12163
12164
12164
12165
12165
12166
12166
12167
12167
12168
12168
12169
12170
12170
12171
12171
12172
12172
12173
12173
12174
12174
12175
12175
12176
12176
12177
12177
12178
12178
12179
12179
12180
12180
12181
12181
12182
12182
12183
12183
12184
12184
12185
12185
12186
12186
12187
12187
12188
12188
12189
12189
12190
12190
12191
12191
12192
12192
12193
12193
12194
12194
12195
12195
12196
12196
12197
12197
12198
12198
12199
12200
12200
12201
12201
12202
12202
12203
12203
12204
12204
12205
12205
12206
12206
12207
12207
12208
12208
12209
12209
12210
12210
12211
12211
12212
12212
12213
12213
12214
12214
12215
12215
12216
12216
12217
12217
12218
12218
12219
12219
12220
12220
12221
12221
12222
12222
12223
12223
12224
12224
12225
12225
12226
12226
12227
12227
12228
12228
12229
12230
12230
12231
12231
12232
12232
12233
12233
12234
12234
12235
12235
12236
12236
12237
12237
12238
12238
12239
12239
12240
12240
12241
12241
12242
12242
12243
12243
12244
12244
12245
12245
12246
12246
12247
12247
12248
12248
12249
12249
12250
12250
12251
12251
12252
12252
12253
12253
12254
12254
12255
12255
12256
12256
12257
12257
12258
12258
12259
12260
12260
12261
12261
12262
12262
12263
12263
12264
12264
12265
12265
12266
12266
12267
12267
12268
12268
12269
12269
12270
12270
12271
12271
12272
12272
12273
12273
12274
12274
12275
12275
12276
12276
12277
12277
12278
12278
12279
12279
12280
12280
12281
12281
12282
12282
12283
12283
12284
12284
12285
12285
12286
12286
12287
12287
12288
12288
12289
12290
12290
12291
12291
12292
12292
12293
12293
12294
12294
12295
12295
12296
12296
12297
12297
12298
12298
12299
12299
12300
12300
12301
12301
12302
12302
12303
12303
12304
12304
12305
12305
12306
12306
12307
12307
12308
12308
12309
12309
12310
12310
12311
12311
12312
12312
12313
12313
12314
12314
12315
12315
12316
12316
12317
12317
12318
12318
12319
12320
12320
12321
12321
12322
12322
12323
12323
12324
12324
12325
12325
12326
12326
12327
12327
12328
12328
12329
12329
12330
12330
12331
12331
12332
12332
12333
12333
12334
12334
12335
12335
12336
12336
12337
12337
12338
12338
12339
12339
12340
12340
12341
12341
12342
12342
12343
12343
12344
12344
12345
12345
12346
12346
12347
12347
12348
12348
12349
12350
12350
12351
12351
12352
12352
12353
12353
12354
12354
12355
12355
12356
12356
12357
12357
12358
12358
12359
12359
12360
12360
12361
12361
12362
12362
12363
12363
12364
12364
12365
12365
12366
12366
12367
12367
12368
12368
12369
12369
12370
12370
12371
12371
12372
12372
12373
12373
12374
12374
12375
12375
12376
12376
12377
12377
12378
12378
12379
12380
12380
12381
12381
12382
12382
12383
12383
12384
12384
12385
12385
12386
12386
12387
12387
12388
12388
12389
12389
12390
12390
12391
12391
12392
12392
12393
12393
12394
12394
12395
12395
12396
12396
12397
12397
12398
12398
12399
12399
12400
12400
12401
12401
12402
12402
12403
12403
12404
12404
12405
12405
12406
12406
12407
12407
12408
12408
12409
12410
12410
12411
12411
12412
12412
12413
12413
12414
12414
12415
12415
12416
12416
12417
12417
12418
12418
12419
12419
12420
12420
12421
12421
12422
12422
12423
12423
12424
12424
12425
12425
12426
12426
12427
12427
12428
12428
12429
12429
12430
12430
12431
12431
12432
12432
12433
12433
12434
12434
12435
12435
12436
12436
12437
12437
12438
12438
12439
12440
12440
12441
12441
12442
12442
12443
12443
12444
12444
12445
12445
12446
12446
12447
12447
12448
12448
12449
12449
12450
12450
12451
12451
12452
12452
12453
12453
12454
12454
12455
12455
12456
12456
12457
12457
12458
12458
12459
12459
12460
12460
12461
12461
12462
12462
12463
12463
12464
12464
12465
12465
12466
12466
12467
12467
12468
12468
12469
12470
12470
12471
12471
12472
12472
12473
12473
12474
12474
12475
12475
12476
12476
12477
12477
12478
12478
12479
12479
12480
12480
12481
12481
12482
12482
12483
12483
12484
12484
12485
12485
12486
12486
12487
12487
12488
12488
12489
12489
12490
12490
12491
12491
12492
12492
12493
12493
12494
12494
12495
12495
12496
12496
12497
12497
12498
12498
12499
12500
12500
12501
12501
12502
12502
12503
12503
12504
12504
12505
12505
12506
12506
12507
12507
12508
12508
12509
12509
12510
12510
12511
12511
12512
12512
12513
12513
12514
12514
12515
12515
12516
12516
12517
12517
12518
12518
12519
12519
12520
12520
12521
12521
12522
12522
12523
12523
12524
12524
12525
12525
12526
12526
12527
12527
12528
12528
12529
12530
12530
12531
12531
12532
12532
12533
12533
12534
12534
12535
12535
12536
12536
12537
12537
12538
12538
12539
12539
12540
12540
12541
12541
12542
12542
12543
12543
12544
12544
12545
12545
12546
12546
12547
12547
12548
12548
12549
12549
12550
12550
12551
12551
12552
12552
12553
12553
12554
12554
12555
12555
12556
12556
12557
12557
12558
12558
12559
12560
12560
12561
12561
12562
12562
12563
12563
12564
12564
12565
12565
12566
12566
12567
12567
12568
12568
12569
12569
12570
12570
12571
12571
12572
12572
12573
12573
12574
12574
12575
12575
12576
12576
12577
12577
12578
12578
12579
12579
12580
12580
12581
12581
12582
12582
12583
12583
12584
12584
12585
12585
12586
12586
12587
12587
12588
12588
12589
12590
12590
12591
12591
12592
12592
12593
12593
12594
12594
12595
12595
12596
12596
12597
12597
12598
12598
12599
12599
12600
12600
12601
12601
12602
12602
12603
12603
12604
12604
12605
12605
12606
12606
12607
12607
12608
12608
12609
12609
12610
12610
12611
12611
12612
12612
12613
12613
12614
12614
12615
12615
12616
12616
12617
12617
12618
12618
12619
12620
12620
12621
12621
12622
12622
12623
12623
12624
12624
12625
12625
12626
12626
12627
12627
12628
12628
12629
12629
12630
12630
12631
12631
12632
12632
12633
12633
12634
12634
12635
12635
12636
12636
12637
12637
12638
12638
12639
12639
12640
12640
12641
12641
12642
12642
12643
12643
12644
12644
12645
12645
12646
12646
12647
12647
12648
12648
12649
12650
12650
12651
12651
12652
12652
12653
12653
12654
12654
12655
12655
12656
12656
12657
12657
12658
12658
12659
12659
12660
12660
12661
12661
12662
12662
12663
12663
12664
12664
12665
12665
12666
12666
12667
12667
12668
12668
12669
12669
12670
12670
12671
12671
12672
12672
12673
12673
12674
12674
12675
12675
12676
12676
12677
12677
12678
12678
12679
12680
12680
12681
12681
12682
12682
12683
12683
12684
12684
12685
12685
12686
12686
12687
12687
12688
12688
12689
12689
12690
12690
12691
12691
12692
12692
12693
12693
12694
12694
12695
12695
12696
12696
12697
12697
12698
12698
12699
12699
12700
12700
12701
12701
12702
12702
12703
12703
12704
12704
12705
12705
12706
12706
12707
12707
12708
12708
12709
12710
12710
12711
12711
12712
12712
12713
12713
12714
12714
12715
12715
12716
12716
12717
12717
12718
12718
12719
12719
12720
12720
12721
12721
12722
12722
12723
12723
12724
12724
12725
12725
12726
12726
12727
12727
12728
12728
12729
12729
12730
12730
12731
12731
12732
12732
12733
12733
12734
12734
12735
12735
12736
12736
12737
12737
12738
12738
12739
12740
12740
12741
12741
12742
12742
12743
12743
12744
12744
12745
12745
12746
12746
12747
12747
12748
12748
12749
12749
12750
12750
12751
12751
12752
12752
12753
12753
12754
12754
12755
12755
12756
12756
12757
12757
12758
12758
12759
12759
12760
12760
12761
12761
12762
12762
12763
12763
12764
12764
12765
12765
12766
12766
12767
12767
12768
12768
12769
12770
12770
12771
12771
12772
12772
12773
12773
12774
12774
12775
12775
12776
12776
12777
12777
12778
12778
12779
12779
12780
12780
12781
12781
12782
12782
12783
12783
12784
12784
12785
12785
12786
12786
12787
12787
12788
12788
12789
12789
12790
12790
12791
12791
12792
12792
12793
12793
12794
12794
12795
12795
12796
12796
12797
12797
12798
12798
12799
12800
12800
12801
12801
12802
12802
12803
12803
12804
12804
12805
12805
12806
12806
12807
12807
12808
12808
12809
12809
12810
12810
12811
12811
12812
12812
12813
12813
12814
12814
12815
12815
12816
12816
12817
12817
12818
12818
12819
12819
12820
12820
12821
12821
12822
12822
12823
12823
12824
12824
12825
12825
12826
12826
12827
12827
12828
12828
12829
12830
12830
12831
12831
12832
12832
12833
12833
12834
12834
12835
12835
12836
12836
12837
12837
12838
12838
12839
12839
12840
12840
12841
12841
12842
12842
12843
12843
12844
12844
12845
12845
12846
12846
12847
12847
12848
12848
12849
12849
12850
12850
12851
12851
12852
12852
12853
12853
12854
12854
12855
12855
12856
12856
12857
12857
12858
12858
12859
12860
12860
12861
12861
12862
12862
12863
12863
12864
12864
12865
12865
12866
12866
12867
12867
12868
12868
12869
12869
12870
12870
12871
12871
12872
12872
12873
12873
12874
12874
12875
12875
12876
12876
12877
12877
12878
12878
12879
12879
12880
12880
12881
12881
12882
12882
12883
12883
12884
12884
12885
12885
12886
12886
12887
12887
12888
12888
12889
12890
12890
12891
12891
12892
12892
12893
12893
12894
12894
12895
12895
12896
12896
12897
12897
12898
12898
12899
12899
12900
12900
12901
12901
12902
12902
12903
12903
12904
12904
12905
12905
12906
12906
12907
12907
12908
12908
12909
12909
12910
12910
12911
12911
12912
12912
12913
12913
12914
12914
12915
12915
12916
12916
12917
12917
12918
12918
12919
12920
12920
12921
12921
12922
12922
12923
12923
12924
12924
12925
12925
12926
12926
12927
12927
12928
12928
12929
12929
12930
12930
12931
12931
12932
12932
12933
12933
12934
12934
12935
12935
12936
12936
12937
12937
12938
12938
12939
12939
12940
12940
12941
12941
12942
12942
12943
12943
12944
12944
12945
12945
12946
12946
12947
12947
12948
12948
12949
12950
12950
12951
12951
12952
12952
12953
12953
12954
12954
12955
12955
12956
12956
12957
12957
12958
12958
12959
12959
12960
12960
12961
12961
12962
12962
12963
12963
12964
12964
12965
12965
12966
12966
12967
12967
12968
12968
12969
12969
12970
12970
12971
12971
12972
12972
12973
12973
12974
12974
12975
12975
12976
12976
12977
12977
12978
12978
12979
12980
12980
12981
12981
12982
12982
12983
12983
12984
12984
12985
12985
12986
12986
12987
12987
12988
12988
12989
12989
12990
12990
12991
12991
12992
12992
12993
12993
12994
12994
12995
12995
12996
12996
12997
12997
12998
12998
12999
12999
13000
13000
13001
13001
13002
13002
13003
13003
13004
13004
13005
13005
13006
13006
13007
13007
13008
13008
13009
13010
13010
13011
13011
13012
13012
13013
13013
13014
13014
13015
13015
13016
13016
13017
13017
13018
13018
13019
13019
13020
13020
13021
13021
13022
13022
13023
13023
13024
13024
13025
13025
13026
13026
13027
13027
13028
13028
13029
13029
13030
13030
13031
13031
13032
13032
13033
13033
13034
13034
13035
13035
13036
13036
13037
13037
13038
13038
13039
13040
13040
13041
13041
13042
13042
13043
13043
13044
13044
13045
13045
13046
13046
13047
13047
13048
13048
13049
13049
13050
13050
13051
13051
13052
13052
13053
13053
13054
13054
13055
13055
13056
13056
13057
13057
13058
13058
13059
13059
13060
13060
13061
13061
13062
13062
13063
13063
13064
13064
13065
13065
13066
13066
13067
13067
13068
13068
13069
13070
13070
13071
13071
13072
13072
13073
13073
13074
13074
13075
13075
13076
13076
13077
13077
13078
13078
13079
13079
13080
13080
13081
13081
13082
13082
13083
13083
13084
13084
13085
13085
13086
13086
13087
13087
13088
13088
13089
13089
13090
13090
13091
13091
13092
13092
13093
13093
13094
13094
13095
13095
13096
13096
13097
13097
13098
13098
13099
13100
13100
13101
13101
13102
13102
13103
13103
13104
13104
13105
13105
13106
13106
13107
13107
13108
13108
13109
13109
13110
13110
13111
13111
13112
13112
13113
13113
13114
13114
13115
13115
13116
13116
13117
13117
13118
13118
13119
13119
13120
13120
13121
13121
13122
13122
13123
13123
13124
13124
13125
13125
13126
13126
13127
13127
13128
13128
13129
13130
13130
13131
13131
13132
13132
13133
13133
13134
13134
13135
13135
13136
13136
13137
13137
13138
13138
13139
13139
13140
13140
13141
13141
13142
13142
13143
13143
13144
13144
13145
13145
13146
13146
13147
13147
13148
13148
13149
13149
13150
13150
13151
13151
13152
13152
13153
13153
13154
13154
13155
13155
13156
13156
13157
13157
13158
13158
13159
13160
13160
13161
13161
13162
13162
13163
13163
13164
13164
13165
13165
13166
13166
13167
13167
13168
13168
13169
13169
13170
13170
13171
13171
13172
13172
13173
13173
13174
13174
13175
13175
13176
13176
13177
13177
13178
13178
13179
13179
13180
13180
13181
13181
13182
13182
13183
13183
13184
13184
13185
13185
13186
13186
13187
13187
13188
13188
13189
13190
13190
13191
13191
13192
13192
13193
13193
13194
13194
13195
13195
13196
13196
13197
13197
13198
13198
13199
13199
13200
13200
13201
13201
13202
13202
13203
13203
13204
13204
13205
13205
13206
13206
13207
13207
13208
13208
13209
13209
13210
13210
13211
13211
13212
13212
13213
13213
13214
13214
13215
13215
13216
13216
13217
13217
13218
13218
13219
13220
13220
13221
13221
13222
13222
13223
13223
13224
13224
13225
13225
13226
13226
13227
13227
13228
13228
13229
13229
13230
13230
13231
13231
13232
13232
13233
13233
13234
13234
13235
13235
13236
13236
13237
13237
13238
13238
13239
13239
13240
13240
13241
13241
13242
13242
13243
13243
13244
13244
13245
13245
13246
13246
13247
13247
13248
13248
13249
13250
13250
13251
13251
13252
13252
13253
13253
13254
13254
13255
13255
13256
13256
13257
13257
13258
13258
13259
13259
13260
13260
13261
13261
13262
13262
13263
13263
13264
13264
13265
13265
13266
13266
13267
13267
13268
13268
13269
13269
13270
13270
13271
13271
13272
13272
13273
13273
13274
13274
13275
13275
13276
13276
13277
13277
13278
13278
13279
13280
13280
13281
13281
13282
13282
13283
13283
13284
13284
13285
13285
13286
13286
13287
13287
13288
13288
13289
13289
13290
13290
13291
13291
13292
13292
13293
13293
13294
13294
13295
13295
13296
13296
13297
13297
13298
13298
13299
13299
13300
13300
13301
13301
13302
13302
13303
13303
13304
13304
13305
13305
13306
13306
13307
13307
13308
13308
13309
13310
13310
13311
13311
13312
13312
13313
13313
13314
13314
13315
13315
13316
13316
13317
13317
13318
13318
13319
13319
13320
13320
13321
13321
13322
13322
13323
13323
13324
13324
13325
13325
13326
13326
13327
13327
13328
13328
13329
13329
13330
13330
13331
13331
13332
13332
13333
13333
13334
13334
13335
13335
13336
13336
13337
13337
13338
13338
13339
13340
13340
13341
13341
13342
13342
13343
13343
13344
13344
13345
13345
13346
13346
13347
13347
13348
13348
13349
13349
13350
13350
13351
13351
13352
13352
13353
13353
13354
13354
13355
13355
13356
13356
13357
13357
13358
13358
13359
13359
13360
13360
13361
13361
13362
13362
13363
13363
13364
13364
13365
13365
13366
13366
13367
13367
13368
13368
13369
13370
13370
13371
13371
13372
13372
13373
13373
13374
13374
13375
13375
13376
13376
13377
13377
13378
13378
13379
13379
13380
13380
13381
13381
13382
13382
13383
13383
13384
13384
13385
13385
13386
13386
13387
13387
13388
13388
13389
13389
13390
13390
13391
13391
13392
13392
13393
13393
13394
13394
13395
13395
13396
13396
13397
13397
13398
13398
13399
13400
13400
13401
13401
13402
13402
13403
13403
13404
13404
13405
13405
13406
13406
13407
13407
13408
13408
13409
13409
13410
13410
13411
13411
13412
13412
13413
13413
13414
13414
13415
13415
13416
13416
13417
13417
13418
13418
13419
13419
13420
13420
13421
13421
13422
13422
13423
13423
13424
13424
13425
13425
13426
13426
13427
13427
13428
13428
13429
13430
13430
13431
13431
13432
13432
13433
13433
13434
13434
13435
13435
13436
13436
13437
13437
13438
13438
13439
13439
13440
13440
13441
13441
13442
13442
13443
13443
13444
13444
13445
13445
13446
13446
13447
13447
13448
13448
13449
13449
13450
13450
13451
13451
13452
13452
13453
13453
13454
13454
13455
13455
13456
13456
13457
13457
13458
13458
13459
13460
13460
13461
13461
13462
13462
13463
13463
13464
13464
13465
13465
13466
13466
13467
13467
13468
13468
13469
13469
13470
13470
13471
13471
13472
13472
13473
13473
13474
13474
13475
13475
13476
13476
13477
13477
13478
13478
13479
13479
13480
13480
13481
13481
13482
13482
13483
13483
13484
13484
13485
13485
13486
13486
13487
13487
13488
13488
13489
13490
13490
13491
13491
13492
13492
13493
13493
13494
13494
13495
13495
13496
13496
13497
13497
13498
13498
13499
13499
13500
13500
13501
13501
13502
13502
13503
13503
13504
13504
13505
13505
13506
13506
13507
13507
13508
13508
13509
13509
13510
13510
13511
13511
13512
13512
13513
13513
13514
13514
13515
13515
13516
13516
13517
13517
13518
13518
13519
13520
13520
13521
13521
13522
13522
13523
13523
13524
13524
13525
13525
13526
13526
13527
13527
13528
13528
13529
13529
13530
13530
13531
13531
13532
13532
13533
13533
13534
13534
13535
13535
13536
13536
13537
13537
13538
13538
13539
13539
13540
13540
13541
13541
13542
13542
13543
13543
13544
13544
13545
13545
13546
13546
13547
13547
13548
13548
13549
13550
13550
13551
13551
13552
13552
13553
13553
13554
13554
13555
13555
13556
13556
13557
13557
13558
13558
13559
13559
13560
13560
13561
13561
13562
13562
13563
13563
13564
13564
13565
13565
13566
13566
13567
13567
13568
13568
13569
13569
13570
13570
13571
13571
13572
13572
13573
13573
13574
13574
13575
13575
13576
13576
13577
13577
13578
13578
13579
13580
13580
13581
13581
13582
13582
13583
13583
13584
13584
13585
13585
13586
13586
13587
13587
13588
13588
13589
13589
13590
13590
13591
13591
13592
13592
13593
13593
13594
13594
13595
13595
13596
13596
13597
13597
13598
13598
13599
13599
13600
13600
13601
13601
13602
13602
13603
13603
13604
13604
13605
13605
13606
13606
13607
13607
13608
13608
13609
13610
13610
13611
13611
13612
13612
13613
13613
13614
13614
13615
13615
13616
13616
13617
13617
13618
13618
13619
13619
13620
13620
13621
13621
13622
13622
13623
13623
13624
13624
13625
13625
13626
13626
13627
13627
13628
13628
13629
13629
13630
13630
13631
13631
13632
13632
13633
13633
13634
13634
13635
13635
13636
13636
13637
13637
13638
13638
13639
13640
13640
13641
13641
13642
13642
13643
13643
13644
13644
13645
13645
13646
13646
13647
13647
13648
13648
13649
13649
13650
13650
13651
13651
13652
13652
13653
13653
13654
13654
13655
13655
13656
13656
13657
13657
13658
13658
13659
13659
13660
13660
13661
13661
13662
13662
13663
13663
13664
13664
13665
13665
13666
13666
13667
13667
13668
13668
13669
13670
13670
13671
13671
13672
13672
13673
13673
13674
13674
13675
13675
13676
13676
13677
13677
13678
13678
13679
13679
13680
13680
13681
13681
13682
13682
13683
13683
13684
13684
13685
13685
13686
13686
13687
13687
13688
13688
13689
13689
13690
13690
13691
13691
13692
13692
13693
13693
13694
13694
13695
13695
13696
13696
13697
13697
13698
13698
13699
13700
13700
13701
13701
13702
13702
13703
13703
13704
13704
13705
13705
13706
13706
13707
13707
13708
13708
13709
13709
13710
13710
13711
13711
13712
13712
13713
13713
13714
13714
13715
13715
13716
13716
13717
13717
13718
13718
13719
13719
13720
13720
13721
13721
13722
13722
13723
13723
13724
13724
13725
13725
13726
13726
13727
13727
13728
13728
13729
13729
13730
13730
13731
13731
13732
13732
13733
13733
13734
13734
13735
13735
13736
13736
13737
13737
13738
13738
13739
13739
13740
13740
13741
13741
13742
13742
13743
13743
13744
13744
13745
13745
13746
13746
13747
13747
13748
13748
13749
13749
13750
13750
13751
13751
13752
13752
13753
13753
13754
13754
13755
13755
13756
13756
13757
13757
13758
13758
13759
13759
13760
13760
13761
13761
13762
13762
13763
13763
13764
13764
13765
13765
13766
13766
13767
13767
13768
13768
13769
13769
13770
13770
13771
13771
13772
13772
13773
13773
13774
13774
13775
13775
13776
13776
13777
13777
13778
13778
13779
13779
13780
13780
13781
13781
13782
13782
13783
13783
13784
13784
13785
13785
13786
13786
13787
13787
13788
13788
13789
13789
13790
13790
13791
13791
13792
13792
13793
13793
13794
13794
13795
13795
13796
13796
13797
13797
13798
13798
13799
13799
13800
13800
13801
13801
13802
13802
13803
13803
13804
13804
13805
13805
13806
13806
13807
13807
13808
13808
13809
13809
13810
13810
13811
13811
13812
13812
13813
13813
13814
13814
13815
13815
13816
13816
13817
13817
13818
13818
13819
13819
13820
13820
13821
13821
13822
13822
13823
13823
13824
13824
13825
13825
13826
13826
13827
13827
13828
13828
13829
13829
13830
13830
13831
13831
13832
13832
13833
13833
13834
13834
13835
13835
13836
13836
13837
13837
13838
13838
13839
13839
13840
13840
13841
13841
13842
13842
13843
13843
13844
13844
13845
13845
13846
13846
13847
13847
13848
13848
13849
13849
13850
13850
13851
13851
13852
13852
13853
13853
13854
13854
13855
13855
13856
13856
13857
13857
13858
13858
13859
13859
13860
13860
13861
13861
13862
13862
13863
13863
13864
13864
13865
13865
13866
13866
13867
13867
13868
13868
13869
13869
13870
13870
13871
13871
13872
13872
13873
13873
13874
13874
13875
13875
13876
13876
13877
13877
13878
13878
13879
13879
13880
13880
13881
13881
13882
13882
13883
13883
13884
13884
13885
13885
13886
13886
13887
13887
13888
13888
13889
13889
13890
13890
13891
13891
13892
13892
13893
13893
13894
13894
13895
13895
13896
13896
13897
13897
13898
13898
13899
13899
13900
13900
13901
13901
13902
13902
13903
13903
13904
13904
13905
13905
13906
13906
13907
13907
13908
13908
13909
13909
13910
13910
13911
13911
13912
13912
13913
13913
13914
13914
13915
13915
13916
13916
13917
13917
13918
13918
13919
13919
13920
13920
13921
13921
13922
13922
13923
13923
13924
13924
13925
13925
13926
13926
13927
13927
13928
13928
13929
13929
13930
13930
13931
13931
13932
13932
13933
13933
13934
13934
13935
13935
13936
13936
13937
13937
13938
13938
13939
13939
13940
13940
13941
13941
13942
13942
13943
13943
13944
13944
13945
13945
13946
13946
13947
13947
13948
13948
13949
13949
13950
13950
13951
13951
13952
13952
13953
13953
13954
13954
13955
13955
13956
13956
13957
13957
13958
13958
13959
13959
13960
13960
13961
13961
13962
13962
13963
13963
13964
13964
13965
13965
13966
13966
13967
13967
13968
13968
13969
13969
13970
13970
13971
13971
13972
13972
13973
13973
13974
13974
13975
13975
13976
13976
13977
13977
13978
13978
13979
13979
13980
13980
13981
13981
13982
13982
13983
13983
13984
13984
13985
13985
13986
13986
13987
13987
13988
13988
13989
13989
13990
13990
13991
13991
13992
13992
13993
13993
13994
13994
13995
13995
13996
13996
13997
13997
13998
13998
13999
13999
14000
14000
14001
14001
14002
14002
14003
14003
14004
14004
14005
14005
14006
14006
14007
14007
14008
14008
14009
14009
14010
14010
14011
14011
14012
14012
14013
14013
14014
14014
14015
14015
14016
14016
14017
14017
14018
14018
14019
14019
14020
14020
14021
14021
14022
14022
14023
14023
14024
14024
14025
14025
14026
14026
14027
14027
14028
14028
14029
14029
14030
14030
14031
14031
14032
14032
14033
14033
14034
14034
14035
14035
14036
14036
14037
14037
14038
14038
14039
14039
14040
14040
14041
14041
14042
14042
14043
14043
14044
14044
14045
14045
14046
14046
14047
14047
14048
14048
14049
14049
14050
14050
14051
14051
14052
14052
14053
14053
14054
14054
14055
14055
14056
14056
14057
14057
14058
14058
14059
14059
14060
14060
14061
14061
14062
14062
14063
14063
14064
14064
14065
14065
14066
14066
14067
14067
14068
14068
14069
14069
14070
14070
14071
14071
14072
14072
14073
14073
14074
14074
14075
14075
14076
14076
14077
14077
14078
14078
14079
14079
14080
14080
14081
14081
14082
14082
14083
14083
14084
14084
14085
14085
14086
14086
14087
14087
14088
14088
14089
14089
14090
14090
14091
14091
14092
14092
14093
14093
14094
14094
14095
14095
14096
14096
14097
14097
14098
14098
14099
14099
14100
14100
14101
14101
14102
14102
14103
14103
14104
14104
14105
14105
14106
14106
14107
14107
14108
14108
14109
14109
14110
14110
14111
14111
14112
14112
14113
14113
14114
14114
14115
14115
14116
14116
14117
14117
14118
14118
14119
14119
14120
14120
14121
14121
14122
14122
14123
14123
14124
14124
14125
14125
14126
14126
14127
14127
14128
14128
14129
14129
14130
14130
14131
14131
14132
14132
14133
14133
14134
14134
14135
14135
14136
14136
14137
14137
14138
14138
14139
14139
14140
14140
14141
14141
14142
14142
14143
14143
14144
14144
14145
14145
14146
14146
14147
14147
14148
14148
14149
14149
14150
14150
14151
14151
14152
14152
14153
14153
14154
14154
14155
14155
14156
14156
14157
14157
14158
14158
14159
14159
14160
14160
14161
14161
14162
14162
14163
14163
14164
14164
14165
14165
14166
14166
14167
14167
14168
14168
14169
14169
14170
14170
14171
14171
14172
14172
14173
14173
14174
14174
14175
14175
14176
14176
14177
14177
14178
14178
14179
14179
14180
14180
14181
14181
14182
14182
14183
14183
14184
14184
14185
14185
14186
14186
14187
14187
14188
14188
14189
14189
14190
14190
14191
14191
14192
14192
14193
14193
14194
14194
14195
14195
14196
14196
14197
14197
14198
14198
14199
14199
14200
14200
14201
14201
14202
14202
14203
14203
14204
14204
14205
14205
14206
14206
14207
14207
14208
14208
14209
14209
14210
14210
14211
14211
14212
14212
14213
14213
14214
14214
14215
14215
14216
14216
14217
14217
14218
14218
14219
14219
14220
14220
14221
14221
14222
14222
14223
14223
14224
14224
14225
14225
14226
14226
14227
14227
14228
14228
14229
14229
14230
14230
14231
14231
14232
14232
14233
14233
14234
14234
14235
14235
14236
14236
14237
14237
14238
14238
14239
14239
14240
14240
14241
14241
14242
14242
14243
14243
14244
14244
14245
14245
14246
14246
14247
14247
14248
14248
14249
14249
14250
14250
14251
14251
14252
14252
14253
14253
14254
14254
14255
14255
14256
14256
14257
14257
14258
14258
14259
14259
14260
14260
14261
14261
14262
14262
14263
14263
14264
14264
14265
14265
14266
14266
14267
14267
14268
14268
14269
14269
14270
14270
14271
14271
14272
14272
14273
14273
14274
14274
14275
14275
14276
14276
14277
14277
14278
14278
14279
14279
14280
14280
14281
14281
14282
14282
14283
14283
14284
14284
14285
14285
14286
14286
14287
14287
14288
14288
14289
14289
14290
14290
14291
14291
14292
14292
14293
14293
14294
14294
14295
14295
14296
14296
14297
14297
14298
14298
14299
14299
14300
14300
14301
14301
14302
14302
14303
14303
14304
14304
14305
14305
14306
14306
14307
14307
14308
14308
14309
14309
14310
14310
14311
14311
14312
14312
14313
14313
14314
14314
14315
14315
14316
14316
14317
14317
14318
14318
14319
14319
14320
14320
14321
14321
14322
14322
14323
14323
14324
14324
14325
14325
14326
14326
14327
14327
14328
14328
14329
14329
14330
14330
14331
14331
14332
14332
14333
14333
14334
14334
14335
14335
14336
14336
14337
14337
14338
14338
14339
14339
14340
14340
14341
14341
14342
14342
14343
14343
14344
14344
14345
14345
14346
14346
14347
14347
14348
14348
14349
14349
14350
14350
14351
14351
14352
14352
14353
14353
14354
14354
14355
14355
14356
14356
14357
14357
14358
14358
14359
14359
14360
14360
14361
14361
14362
14362
14363
14363
14364
14364
14365
14365
14366
14366
14367
14367
14368
14368
14369
14369
14370
14370
14371
14371
14372
14372
14373
14373
14374
14374
14375
14375
14376
14376
14377
14377
14378
14378
14379
14379
14380
14380
14381
14381
14382
14382
14383
14383
14384
14384
14385
14385
14386
14386
14387
14387
14388
14388
14389
14389
14390
14390
14391
14391
14392
14392
14393
14393
14394
14394
14395
14395
14396
14396
14397
14397
14398
14398
14399
14399
14400
14400
14401
14401
14402
14402
14403
14403
14404
14404
14405
14405
14406
14406
14407
14407
14408
14408
14409
14409
14410
14410
14411
14411
14412
14412
14413
14413
14414
14414
14415
14415
14416
14416
14417
14417
14418
14418
14419
14419
14420
14420
14421
14421
14422
14422
14423
14423
14424
14424
14425
14425
14426
14426
14427
14427
14428
14428
14429
14429
14430
14430
14431
14431
14432
14432
14433
14433
14434
14434
14435
14435
14436
14436
14437
14437
14438
14438
14439
14439
14440
14440
14441
14441
14442
14442
14443
14443
14444
14444
14445
14445
14446
14446
14447
14447
14448
14448
14449
14449
14450
14450
14451
14451
14452
14452
14453
14453
14454
14454
14455
14455
14456
14456
14457
14457
14458
14458
14459
14459
14460
14460
14461
14461
14462
14462
14463
14463
14464
14464
14465
14465
14466
14466
14467
14467
14468
14468
14469
14469
14470
14470
14471
14471
14472
14472
14473
14473
14474
14474
14475
14475
14476
14476
14477
14477
14478
14478
14479
14479
14480
14480
14481
14481
14482
14482
14483
14483
14484
14484
14485
14485
14486
14486
14487
14487
14488
14488
14489
14489
14490
14490
14491
14491
14492
14492
14493
14493
14494
14494
14495
14495
14496
14496
14497
14497
14498
14498
14499
14499
14500
14500
14501
14501
14502
14502
14503
14503
14504
14504
14505
14505
14506
14506
14507
14507
14508
14508
14509
14509
14510
14510
14511
14511
14512
14512
14513
14513
14514
14514
14515
14515
14516
14516
14517
14517
14518
14518
14519
14519
14520
14520
14521
14521
14522
14522
14523
14523
14524
14524
14525
14525
14526
14526
14527
14527
14528
14528
14529
14529
14530
14530
14531
14531
14532
14532
14533
14533
14534
14534
14535
14535
14536
14536
14537
14537
14538
14538
14539
14539
14540
14540
14541
14541
14542
14542
14543
14543
14544
14544
14545
14545
14546
14546
14547
14547
14548
14548
14549
14549
14550
14550
14551
14551
14552
14552
14553
14553
14554
14554
14555
14555
14556
14556
14557
14557
14558
14558
14559
14559
14560
14560
14561
14561
14562
14562
14563
14563
14564
14564
14565
14565
14566
14566
14567
14567
14568
14568
14569
14569
14570
14570
14571
14571
14572
14572
14573
14573
14574
14574
14575
14575
14576
14576
14577
14577
14578
14578
14579
14579
14580
14580
14581
14581
14582
14582
14583
14583
14584
14584
14585
14585
14586
14586
14587
14587
14588
14588
14589
14589
14590
14590
14591
14591
14592
14592
14593
14593
14594
14594
14595
14595
14596
14596
14597
14597
14598
14598
14599
14599
14600
14600
14601
14601
14602
14602
14603
14603
14604
14604
14605
14605
14606
14606
14607
14607
14608
14608
14609
14609
14610
14610
14611
14611
14612
14612
14613
14613
14614
14614
14615
14615
14616
14616
14617
14617
14618
14618
14619
14619
14620
14620
14621
14621
14622
14622
14623
14623
14624
14624
14625
14625
14626
14626
14627
14627
14628
14628
14629
14629
14630
14630
14631
14631
14632
14632
14633
14633
14634
14634
14635
14635
14636
14636
14637
14637
14638
14638
14639
14639
14640
14640
14641
14641
14642
14642
14643
14643
14644
14644
14645
14645
14646
14646
14647
14647
14648
14648
14649
14649
14650
14650
14651
14651
14652
14652
14653
14653
14654
14654
14655
14655
14656
14656
14657
14657
14658
14658
14659
14659
14660
14660
14661
14661
14662
14662
14663
14663
14664
14664
14665
14665
14666
14666
14667
14667
14668
14668
14669
14669
14670
14670
14671
14671
14672
14672
14673
14673
14674
14674
14675
14675
14676
14676
14677
14677
14678
14678
14679
14679
14680
14680
14681
14681
14682
14682
14683
14683
14684
14684
14685
14685
14686
14686
14687
14687
14688
14688
14689
14689
14690
14690
14691
14691
14692
14692
14693
14693
14694
14694
14695
14695
14696
14696
14697
14697
14698
14698
14699
14699
14700
14700
14701
14701
14702
14702
14703
14703
14704
14704
14705
14705
14706
14706
14707
14707
14708
14708
14709
14709
14710
14710
14711
14711
14712
14712
14713
14713
14714
14714
14715
14715
14716
14716
14717
14717
14718
14718
14719
14719
14720
14720
14721
14721
14722
14722
14723
14723
14724
14724
14725
14725
14726
14726
14727
14727
14728
14728
14729
14729
14730
14730
14731
14731
14732
14732
14733
14733
14734
14734
14735
14735
14736
14736
14737
14737
14738
14738
14739
14739
14740
14740
14741
14741
14742
14742
14743
14743
14744
14744
14745
14745
14746
14746
14747
14747
14748
14748
14749
14749
14750
14750
14751
14751
14752
14752
14753
14753
14754
14754
14755
14755
14756
14756
14757
14757
14758
14758
14759
14759
14760
14760
14761
14761
14762
14762
14763
14763
14764
14764
14765
14765
14766
14766
14767
14767
14768
14768
14769
14769
14770
14770
14771
14771
14772
14772
14773
14773
14774
14774
14775
14775
14776
14776
14777
14777
14778
14778
14779
14779
14780
14780
14781
14781
14782
14782
14783
14783
14784
14784
14785
14785
14786
14786
14787
14787
14788
14788
14789
14789
14790
14790
14791
14791
14792
14792
14793
14793
14794
14794
14795
14795
14796
14796
14797
14797
14798
14798
14799
14799
14800
14800
14801
14801
14802
14802
14803
14803
14804
14804
14805
14805
14806
14806
14807
14807
14808
14808
14809
14809
14810
14810
14811
14811
14812
14812
14813
14813
14814
14814
14815
14815
14816
14816
14817
14817
14818
14818
14819
14819
14820
14820
14821
14821
14822
14822
14823
14823
14824
14824
14825
14825
14826
14826
14827
14827
14828
14828
14829
14829
14830
14830
14831
14831
14832
14832
14833
14833
14834
14834
14835
14835
14836
14836
14837
14837
14838
14838
14839
14839
14840
14840
14841
14841
14842
14842
14843
14843
14844
14844
14845
14845
14846
14846
14847
14847
14848
14848
14849
14849
14850
14850
14851
14851
14852
14852
14853
14853
14854
14854
14855
14855
14856
14856
14857
14857
14858
14858
14859
14859
14860
14860
14861
14861
14862
14862
14863
14863
14864
14864
14865
14865
14866
14866
14867
14867
14868
14868
14869
14869
14870
14870
14871
14871
14872
14872
14873
14873
14874
14874
14875
14875
14876
14876
14877
14877
14878
14878
14879
14879
14880
14880
14881
14881
14882
14882
14883
14883
14884
14884
14885
14885
14886
14886
14887
14887
14888
14888
14889
14889
14890
14890
14891
14891
14892
14892
14893
14893
14894
14894
14895
14895
14896
14896
14897
14897
14898
14898
14899
14899
14900
14900
14901
14901
14902
14902
14903
14903
14904
14904
14905
14905
14906
14906
14907
14907
14908
14908
14909
14909
14910
14910
14911
14911
14912
14912
14913
14913
14914
14914
14915
14915
14916
14916
14917
14917
14918
14918
14919
14919
14920
14920
14921
14921
14922
14922
14923
14923
14924
14924
14925
14925
14926
14926
14927
14927
14928
14928
14929
14929
14930
14930
14931
14931
14932
14932
14933
14933
14934
14934
14935
14935
14936
14936
14937
14937
14938
14938
14939
14939
14940
14940
14941
14941
14942
14942
14943
14943
14944
14944
14945
14945
14946
14946
14947
14947
14948
14948
14949
14949
14950
14950
14951
14951
14952
14952
14953
14953
14954
14954
14955
14955
14956
14956
14957
14957
14958
14958
14959
14959
14960
14960
14961
14961
14962
14962
14963
14963
14964
14964
14965
14965
14966
14966
14967
14967
14968
14968
14969
14969
14970
14970
14971
14971
14972
14972
14973
14973
14974
14974
14975
14975
14976
14976
14977
14977
14978
14978
14979
14979
14980
14980
14981
14981
14982
14982
14983
14983
14984
14984
14985
14985
14986
14986
14987
14987
14988
14988
14989
14989
14990
14990
14991
14991
14992
14992
14993
14993
14994
14994
14995
14995
14996
14996
14997
14997
14998
14998
14999
14999
15000
15000
15001
15001
15002
15002
15003
15003
15004
15004
15005
15005
15006
15006
15007
15007
15008
15008
15009
15009
15010
15010
15011
15011
15012
15012
15013
15013
15014
15014
15015
15015
15016
15016
15017
15017
15018
15018
15019
15019
15020
15020
15021
15021
15022
15022
15023
15023
15024
15024
15025
15025
15026
15026
15027
15027
15028
15028
15029
15029
15030
15030
15031
15031
15032
15032
15033
15033
15034
15034
15035
15035
15036
15036
15037
15037
15038
15038
15039
15039
15040
15040
15041
15041
15042
15042
15043
15043
15044
15044
15045
15045
15046
15046
15047
15047
15048
15048
15049
15049
15050
15050
15051
15051
15052
15052
15053
15053
15054
15054
15055
15055
15056
15056
15057
15057
15058
15058
15059
15059
15060
15060
15061
15061
15062
15062
15063
15063
15064
15064
15065
15065
15066
15066
15067
15067
15068
15068
15069
15069
15070
15070
15071
15071
15072
15072
15073
15073
15074
15074
15075
15075
15076
15076
15077
15077
15078
15078
15079
15079
15080
15080
15081
15081
15082
15082
15083
15083
15084
15084
15085
15085
15086
15086
15087
15087
15088
15088
15089
15089
15090
15090
15091
15091
15092
15092
15093
15093
15094
15094
15095
15095
15096
15096
15097
15097
15098
15098
15099
15099
15100
15100
15101
15101
15102
15102
15103
15103
15104
15104
15105
15105
15106
15106
15107
15107
15108
15108
15109
15109
15110
15110
15111
15111
15112
15112
15113
15113
15114
15114
15115
15115
15116
15116
15117
15117
15118
15118
15119
15119
15120
15120
15121
15121
15122
15122
15123
15123
15124
15124
15125
15125
15126
15126
15127
15127
15128
15128
15129
15129
15130
15130
15131
15131
15132
15132
15133
15133
15134
15134
15135
15135
15136
15136
15137
15137
15138
15138
15139
15139
15140
15140
15141
15141
15142
15142
15143
15143
15144
15144
15145
15145
15146
15146
15147
15147
15148
15148
15149
15149
15150
15150
15151
15151
15152
15152
15153
15153
15154
15154
15155
15155
15156
15156
15157
15157
15158
15158
15159
15159
15160
15160
15161
15161
15162
15162
15163
15163
15164
15164
15165
15165
15166
15166
15167
15167
15168
15168
15169
15169
15170
15170
15171
15171
15172
15172
15173
15173
15174
15174
15175
15175
15176
15176
15177
15177
15178
15178
15179
15179
15180
15180
15181
15181
15182
15182
15183
15183
15184
15184
15185
15185
15186
15186
15187
15187
15188
15188
15189
15189
15190
15190
15191
15191
15192
15192
15193
15193
15194
15194
15195
15195
15196
15196
15197
15197
15198
15198
15199
15199
15200
15200
15201
15201
15202
15202
15203
15203
15204
15204
15205
15205
15206
15206
15207
15207
15208
15208
15209
15209
15210
15210
15211
15211
15212
15212
15213
15213
15214
15214
15215
15215
15216
15216
15217
15217
15218
15218
15219
15219
15220
15220
15221
15221
15222
15222
15223
15223
15224
15224
15225
15225
15226
15226
15227
15227
15228
15228
15229
15229
15230
15230
15231
15231
15232
15232
15233
15233
15234
15234
15235
15235
15236
15236
15237
15237
15238
15238
15239
15239
15240
15240
15241
15241
15242
15242
15243
15243
15244
15244
15245
15245
15246
15246
15247
15247
15248
15248
15249
15249
15250
15250
15251
15251
15252
15252
15253
15253
15254
15254
15255
15255
15256
15256
15257
15257
15258
15258
15259
15259
15260
15260
15261
15261
15262
15262
15263
15263
15264
15264
15265
15265
15266
15266
15267
15267
15268
15268
15269
15269
15270
15270
15271
15271
15272
15272
15273
15273
15274
15274
15275
15275
15276
15276
15277
15277
15278
15278
15279
15279
15280
15280
15281
15281
15282
15282
15283
15283
15284
15284
15285
15285
15286
15286
15287
15287
15288
15288
15289
15289
15290
15290
15291
15291
15292
15292
15293
15293
15294
15294
15295
15295
15296
15296
15297
15297
15298
15298
15299
15299
15300
15300
15301
15301
15302
15302
15303
15303
15304
15304
15305
15305
15306
15306
15307
15307
15308
15308
15309
15309
15310
15310
15311
15311
15312
15312
15313
15313
15314
15314
15315
15315
15316
15316
15317
15317
15318
15318
15319
15319
15320
15320
15321
15321
15322
15322
15323
15323
15324
15324
15325
15325
15326
15326
15327
15327
15328
15328
15329
15329
15330
15330
15331
15331
15332
15332
15333
15333
15334
15334
15335
15335
15336
15336
15337
15337
15338
15338
15339
15339
15340
15340
15341
15341
15342
15342
15343
15343
15344
15344
15345
15345
15346
15346
15347
15347
15348
15348
15349
15349
15350
15350
15351
15351
15352
15352
15353
15353
15354
15354
15355
15355
15356
15356
15357
15357
15358
15358
15359
15359
15360
15360
15361
15361
15362
15362
15363
15363
15364
15364
15365
15365
15366
15366
15367
15367
15368
15368
15369
15369
15370
15370
15371
15371
15372
15372
15373
15373
15374
15374
15375
15375
15376
15376
15377
15377
15378
15378
15379
15379
15380
15380
15381
15381
15382
15382
15383
15383
15384
15384
15385
15385
15386
15386
15387
15387
15388
15388
15389
15389
15390
15390
15391
15391
15392
15392
15393
15393
15394
15394
15395
15395
15396
15396
15397
15397
15398
15398
15399
15399
15400
15400
15401
15401
15402
15402
15403
15403
15404
15404
15405
15405
15406
15406
15407
15407
15408
15408
15409
15409
15410
15410
15411
15411
15412
15412
15413
15413
15414
15414
15415
15415
15416
15416
15417
15417
15418
15418
15419
15419
15420
15420
15421
15421
15422
15422
15423
15423
15424
15424
15425
15425
15426
15426
15427
15427
15428
15428
15429
15429
15430
15430
15431
15431
15432
15432
15433
15433
15434
15434
15435
15435
15436
15436
15437
15437
15438
15438
15439
15439
15440
15440
15441
15441
15442
15442
15443
15443
15444
15444
15445
15445
15446
15446
15447
15447
15448
15448
15449
15449
15450
15450
15451
15451
15452
15452
15453
15453
15454
15454
15455
15455
15456
15456
15457
15457
15458
15458
15459
15459
15460
15460
15461
15461
15462
15462
15463
15463
15464
15464
15465
15465
15466
15466
15467
15467
15468
15468
15469
15469
15470
15470
15471
15471
15472
15472
15473
15473
15474
15474
15475
15475
15476
15476
15477
15477
15478
15478
15479
15479
15480
15480
15481
15481
15482
15482
15483
15483
15484
15484
15485
15485
15486
15486
15487
15487
15488
15488
15489
15489
15490
15490
15491
15491
15492
15492
15493
15493
15494
15494
15495
15495
15496
15496
15497
15497
15498
15498
15499
15499
15500
15500
15501
15501
15502
15502
15503
15503
15504
15504
15505
15505
15506
15506
15507
15507
15508
15508
15509
15509
15510
15510
15511
15511
15512
15512
15513
15513
15514
15514
15515
15515
15516
15516
15517
15517
15518
15518
15519
15519
15520
15520
15521
15521
15522
15522
15523
15523
15524
15524
15525
15525
15526
15526
15527
15527
15528
15528
15529
15529
15530
15530
15531
15531
15532
15532
15533
15533
15534
15534
15535
15535
15536
15536
15537
15537
15538
15538
15539
15539
15540
15540
15541
15541
15542
15542
15543
15543
15544
15544
15545
15545
15546
15546
15547
15547
15548
15548
15549
15549
15550
15550
15551
15551
15552
15552
15553
15553
15554
15554
15555
15555
15556
15556
15557
15557
15558
15558
15559
15559
15560
15560
15561
15561
15562
15562
15563
15563
15564
15564
15565
15565
15566
15566
15567
15567
15568
15568
15569
15569
15570
15570
15571
15571
15572
15572
15573
15573
15574
15574
15575
15575
15576
15576
15577
15577
15578
15578
15579
15579
15580
15580
15581
15581
15582
15582
15583
15583
15584
15584
15585
15585
15586
15586
15587
15587
15588
15588
15589
15589
15590
15590
15591
15591
15592
15592
15593
15593
15594
15594
15595
15595
15596
15596
15597
15597
15598
15598
15599
15599
15600
15600
15601
15601
15602
15602
15603
15603
15604
15604
15605
15605
15606
15606
15607
15607
15608
15608
15609
15609
15610
15610
15611
15611
15612
15612
15613
15613
15614
15614
15615
15615
15616
15616
15617
15617
15618
15618
15619
15619
15620
15620
15621
15621
15622
15622
15623
15623
15624
15624
15625
15625
15626
15626
15627
15627
15628
15628
15629
15629
15630
15630
15631
15631
15632
15632
15633
15633
15634
15634
15635
15635
15636
15636
15637
15637
15638
15638
15639
15639
15640
15640
15641
15641
15642
15642
15643
15643
15644
15644
15645
15645
15646
15646
15647
15647
15648
15648
15649
15649
15650
15650
15651
15651
15652
15652
15653
15653
15654
15654
15655
15655
15656
15656
15657
15657
15658
15658
15659
15659
15660
15660
15661
15661
15662
15662
15663
15663
15664
15664
15665
15665
15666
15666
15667
15667
15668
15668
15669
15669
15670
15670
15671
15671
15672
15672
15673
15673
15674
15674
15675
15675
15676
15676
15677
15677
15678
15678
15679
15679
15680
15680
15681
15681
15682
15682
15683
15683
15684
15684
15685
15685
15686
15686
15687
15687
15688
15688
15689
15689
15690
15690
15691
15691
15692
15692
15693
15693
15694
15694
15695
15695
15696
15696
15697
15697
15698
15698
15699
15699
15700
15700
15701
15701
15702
15702
15703
15703
15704
15704
15705
15705
15706
15706
15707
15707
15708
15708
15709
15709
15710
15710
15711
15711
15712
15712
15713
15713
15714
15714
15715
15715
15716
15716
15717
15717
15718
15718
15719
15719
15720
15720
15721
15721
15722
15722
15723
15723
15724
15724
15725
15725
15726
15726
15727
15727
15728
15728
15729
15729
15730
15730
15731
15731
15732
15732
15733
15733
15734
15734
15735
15735
15736
15736
15737
15737
15738
15738
15739
15739
15740
15740
15741
15741
15742
15742
15743
15743
15744
15744
15745
15745
15746
15746
15747
15747
15748
15748
15749
15749
15750
15750
15751
15751
15752
15752
15753
15753
15754
15754
15755
15755
15756
15756
15757
15757
15758
15758
15759
15759
15760
15760
15761
15761
15762
15762
15763
15763
15764
15764
15765
15765
15766
15766
15767
15767
15768
15768
15769
15769
15770
15770
15771
15771
15772
15772
15773
15773
15774
15774
15775
15775
15776
15776
15777
15777
15778
15778
15779
15779
15780
15780
15781
15781
15782
15782
15783
15783
15784
15784
15785
15785
15786
15786
15787
15787
15788
15788
15789
15789
15790
15790
15791
15791
15792
15792
15793
15793
15794
15794
15795
15795
15796
15796
15797
15797
15798
15798
15799
15799
15800
15800
15801
15801
15802
15802
15803
15803
15804
15804
15805
15805
15806
15806
15807
15807
15808
15808
15809
15809
15810
15810
15811
15811
15812
15812
15813
15813
15814
15814
15815
15815
15816
15816
15817
15817
15818
15818
15819
15819
15820
15820
15821
15821
15822
15822
15823
15823
15824
15824
15825
15825
15826
15826
15827
15827
15828
15828
15829
15829
15830
15830
15831
15831
15832
15832
15833
15833
15834
15834
15835
15835
15836
15836
15837
15837
15838
15838
15839
15839
15840
15840
15841
15841
15842
15842
15843
15843
15844
15844
15845
15845
15846
15846
15847
15847
15848
15848
15849
15849
15850
15850
15851
15851
15852
15852
15853
15853
15854
15854
15855
15855
15856
15856
15857
15857
15858
15858
15859
15859
15860
15860
15861
15861
15862
15862
15863
15863
15864
15864
15865
15865
15866
15866
15867
15867
15868
15868
15869
15869
15870
15870
15871
15871
15872
15872
15873
15873
15874
15874
15875
15875
15876
15876
15877
15877
15878
15878
15879
15879
15880
15880
15881
15881
15882
15882
15883
15883
15884
15884
15885
15885
15886
15886
15887
15887
15888
15888
15889
15889
15890
15890
15891
15891
15892
15892
15893
15893
15894
15894
15895
15895
15896
15896
15897
15897
15898
15898
15899
15899
15900
15900
15901
15901
15902
15902
15903
15903
15904
15904
15905
15905
15906
15906
15907
15907
15908
15908
15909
15909
15910
15910
15911
15911
15912
15912
15913
15913
15914
15914
15915
15915
15916
15916
15917
15917
15918
15918
15919
15919
15920
15920
15921
15921
15922
15922
15923
15923
15924
15924
15925
15925
15926
15926
15927
15927
15928
15928
15929
15929
15930
15930
15931
15931
15932
15932
15933
15933
15934
15934
15935
15935
15936
15936
15937
15937
15938
15938
15939
15939
15940
15940
15941
15941
15942
15942
15943
15943
15944
15944
15945
15945
15946
15946
15947
15947
15948
15948
15949
15949
15950
15950
15951
15951
15952
15952
15953
15953
15954
15954
15955
15955
15956
15956
15957
15957
15958
15958
15959
15959
15960
15960
15961
15961
15962
15962
15963
15963
15964
15964
15965
15965
15966
15966
15967
15967
15968
15968
15969
15969
15970
15970
15971
15971
15972
15972
15973
15973
15974
15974
15975
15975
15976
15976
15977
15977
15978
15978
15979
15979
15980
15980
15981
15981
15982
15982
15983
15983
15984
15984
15985
15985
15986
15986
15987
15987
15988
15988
15989
15989
15990
15990
15991
15991
15992
15992
15993
15993
15994
15994
15995
15995
15996
15996
15997
15997
15998
15998
15999
15999
16000
16000
16001
16001
16002
16002
16003
16003
16004
16004
16005
16005
16006
16006
16007
16007
16008
16008
16009
16009
16010
16010
16011
16011
16012
16012
16013
16013
16014
16014
16015
16015
16016
16016
16017
16017
16018
16018
16019
16019
16020
16020
16021
16021
16022
16022
16023
16023
16024
16024
16025
16025
16026
16026
16027
16027
16028
16028
16029
16029
16030
16030
16031
16031
16032
16032
16033
16033
16034
16034
16035
16035
16036
16036
16037
16037
16038
16038
16039
16039
16040
16040
16041
16041
16042
16042
16043
16043
16044
16044
16045
16045
16046
16046
16047
16047
16048
16048
16049
16049
16050
16050
16051
16051
16052
16052
16053
16053
16054
16054
16055
16055
16056
16056
16057
16057
16058
16058
16059
16059
16060
16060
16061
16061
16062
16062
16063
16063
16064
16064
16065
16065
16066
16066
16067
16067
16068
16068
16069
16069
16070
16070
16071
16071
16072
16072
16073
16073
16074
16074
16075
16075
16076
16076
16077
16077
16078
16078
16079
16079
16080
16080
16081
16081
16082
16082
16083
16083
16084
16084
16085
16085
16086
16086
16087
16087
16088
16088
16089
16089
16090
16090
16091
16091
16092
16092
16093
16093
16094
16094
16095
16095
16096
16096
16097
16097
16098
16098
16099
16099
16100
16100
16101
16101
16102
16102
16103
16103
16104
16104
16105
16105
16106
16106
16107
16107
16108
16108
16109
16109
16110
16110
16111
16111
16112
16112
16113
16113
16114
16114
16115
16115
16116
16116
16117
16117
16118
16118
16119
16119
16120
16120
16121
16121
16122
16122
16123
16123
16124
16124
16125
16125
16126
16126
16127
16127
16128
16128
16129
16129
16130
16130
16131
16131
16132
16132
16133
16133
16134
16134
16135
16135
16136
16136
16137
16137
16138
16138
16139
16139
16140
16140
16141
16141
16142
16142
16143
16143
16144
16144
16145
16145
16146
16146
16147
16147
16148
16148
16149
16149
16150
16150
16151
16151
16152
16152
16153
16153
16154
16154
16155
16155
16156
16156
16157
16157
16158
16158
16159
16159
16160
16160
16161
16161
16162
16162
16163
16163
16164
16164
16165
16165
16166
16166
16167
16167
16168
16168
16169
16169
16170
16170
16171
16171
16172
16172
16173
16173
16174
16174
16175
16175
16176
16176
16177
16177
16178
16178
16179
16179
16180
16180
16181
16181
16182
16182
16183
16183
16184
16184
16185
16185
16186
16186
16187
16187
16188
16188
16189
16189
16190
16190
16191
16191
16192
16192
16193
16193
16194
16194
16195
16195
16196
16196
16197
16197
16198
16198
16199
16199
16200
16200
16201
16201
16202
16202
16203
16203
16204
16204
16205
16205
16206
16206
16207
16207
16208
16208
16209
16209
16210
16210
16211
16211
16212
16212
16213
16213
16214
16214
16215
16215
16216
16216
16217
16217
16218
16218
16219
16219
16220
16220
16221
16221
16222
16222
16223
16223
16224
16224
16225
16225
16226
16226
16227
16227
16228
16228
16229
16229
16230
16230
16231
16231
16232
16232
16233
16233
16234
16234
16235
16235
16236
16236
16237
16237
16238
16238
16239
16239
16240
16240
16241
16241
16242
16242
16243
16243
16244
16244
16245
16245
16246
16246
16247
16247
16248
16248
16249
16249
16250
16250
16251
16251
16252
16252
16253
16253
16254
16254
16255
16255
16256
16256
16257
16257
16258
16258
16259
16259
16260
16260
16261
16261
16262
16262
16263
16263
16264
16264
16265
16265
16266
16266
16267
16267
16268
16268
16269
16269
16270
16270
16271
16271
16272
16272
16273
16273
16274
16274
16275
16275
16276
16276
16277
16277
16278
16278
16279
16279
16280
16280
16281
16281
16282
16282
16283
16283
16284
16284
16285
16285
16286
16286
16287
16287
16288
16288
16289
16289
16290
16290
16291
16291
16292
16292
16293
16293
16294
16294
16295
16295
16296
16296
16297
16297
16298
16298
16299
16299
16300
16300
16301
16301
16302
16302
16303
16303
16304
16304
16305
16305
16306
16306
16307
16307
16308
16308
16309
16309
16310
16310
16311
16311
16312
16312
16313
16313
16314
16314
16315
16315
16316
16316
16317
16317
16318
16318
16319
16319
16320
16320
16321
16321
16322
16322
16323
16323
16324
16324
16325
16325
16326
16326
16327
16327
16328
16328
16329
16329
16330
16330
16331
16331
16332
16332
16333
16333
16334
16334
16335
16335
16336
16336
16337
16337
16338
16338
16339
16339
16340
16340
16341
16341
16342
16342
16343
16343
16344
16344
16345
16345
16346
16346
16347
16347
16348
16348
16349
16349
16350
16350
16351
16351
16352
16352
16353
16353
16354
16354
16355
16355
16356
16356
16357
16357
16358
16358
16359
16359
16360
16360
16361
16361
16362
16362
16363
16363
16364
16364
16365
16365
16366
16366
16367
16367
16368
16368
16369
16369
16370
16370
16371
16371
16372
16372
16373
16373
16374
16374
16375
16375
16376
16376
16377
16377
16378
16378
16379
16379
16380
16380
16381
16381
16382
16382
16383
16383
16384
16384
16385
16385
16386
16386
16387
16387
16388
16388
16389
16389
16390
16390
16391
16391
16392
16392
16393
16393
16394
16394
16395
16395
16396
16396
16397
16397
16398
16398
16399
16399
16400
16400
16401
16401
16402
16402
16403
16403
16404
16404
16405
16405
16406
16406
16407
16407
16408
16408
16409
16409
16410
16410
16411
16411
16412
16412
16413
16413
16414
16414
16415
16415
16416
16416
16417
16417
16418
16418
16419
16419
16420
16420
16421
16421
16422
16422
16423
16423
16424
16424
16425
16425
16426
16426
16427
16427
16428
16428
16429
16429
16430
16430
16431
16431
16432
16432
16433
16433
16434
16434
16435
16435
16436
16436
16437
16437
16438
16438
16439
16439
16440
16440
16441
16441
16442
16442
16443
16443
16444
16444
16445
16445
16446
16446
16447
16447
16448
16448
16449
16449
16450
16450
16451
16451
16452
16452
16453
16453
16454
16454
16455
16455
16456
16456
16457
16457
16458
16458
16459
16459
16460
16460
16461
16461
16462
16462
16463
16463
16464
16464
16465
16465
16466
16466
16467
16467
16468
16468
16469
16469
16470
16470
16471
16471
16472
16472
16473
16473
16474
16474
16475
16475
16476
16476
16477
16477
16478
16478
16479
16479
16480
16480
16481
16481
16482
16482
16483
16483
16484
16484
16485
16485
16486
16486
16487
16487
16488
16488
16489
16489
16490
16490
16491
16491
16492
16492
16493
16493
16494
16494
16495
16495
16496
16496
16497
16497
16498
16498
16499
16499
16500
16500
16501
16501
16502
16502
16503
16503
16504
16504
16505
16505
16506
16506
16507
16507
16508
16508
16509
16509
16510
16510
16511
16511
16512
16512
16513
16513
16514
16514
16515
16515
16516
16516
16517
16517
16518
16518
16519
16519
16520
16520
16521
16521
16522
16522
16523
16523
16524
16524
16525
16525
16526
16526
16527
16527
16528
16528
16529
16529
16530
16530
16531
16531
16532
16532
16533
16533
16534
16534
16535
16535
16536
16536
16537
16537
16538
16538
16539
16539
16540
16540
16541
16541
16542
16542
16543
16543
16544
16544
16545
16545
16546
16546
16547
16547
16548
16548
16549
16549
16550
16550
16551
16551
16552
16552
16553
16553
16554
16554
16555
16555
16556
16556
16557
16557
16558
16558
16559
16559
16560
16560
16561
16561
16562
16562
16563
16563
16564
16564
16565
16565
16566
16566
16567
16567
16568
16568
16569
16569
16570
16570
16571
16571
16572
16572
16573
16573
16574
16574
16575
16575
16576
16576
16577
16577
16578
16578
16579
16579
16580
16580
16581
16581
16582
16582
16583
16583
16584
16584
16585
16585
16586
16586
16587
16587
16588
16588
16589
16589
16590
16590
16591
16591
16592
16592
16593
16593
16594
16594
16595
16595
16596
16596
16597
16597
16598
16598
16599
16599
16600
16600
16601
16601
16602
16602
16603
16603
16604
16604
16605
16605
16606
16606
16607
16607
16608
16608
16609
16609
16610
16610
16611
16611
16612
16612
16613
16613
16614
16614
16615
16615
16616
16616
16617
16617
16618
16618
16619
16619
16620
16620
16621
16621
16622
16622
16623
16623
16624
16624
16625
16625
16626
16626
16627
16627
16628
16628
16629
16629
16630
16630
16631
16631
16632
16632
16633
16633
16634
16634
16635
16635
16636
16636
16637
16637
16638
16638
16639
16639
16640
16640
16641
16641
16642
16642
16643
16643
16644
16644
16645
16645
16646
16646
16647
16647
16648
16648
16649
16649
16650
16650
16651
16651
16652
16652
16653
16653
16654
16654
16655
16655
16656
16656
16657
16657
16658
16658
16659
16659
16660
16660
16661
16661
16662
16662
16663
16663
16664
16664
16665
16665
16666
16666
16667
16667
16668
16668
16669
16669
16670
16670
16671
16671
16672
16672
16673
16673
16674
16674
16675
16675
16676
16676
16677
16677
16678
16678
16679
16679
16680
16680
16681
16681
16682
16682
16683
16683
16684
16684
16685
16685
16686
16686
16687
16687
16688
16688
16689
16689
16690
16690
16691
16691
16692
16692
16693
16693
16694
16694
16695
16695
16696
16696
16697
16697
16698
16698
16699
16699
16700
16700
16701
16701
16702
16702
16703
16703
16704
16704
16705
16705
16706
16706
16707
16707
16708
16708
16709
16709
16710
16710
16711
16711
16712
16712
16713
16713
16714
16714
16715
16715
16716
16716
16717
16717
16718
16718
16719
16719
16720
16720
16721
16721
16722
16722
16723
16723
16724
16724
16725
16725
16726
16726
16727
16727
16728
16728
16729
16729
16730
16730
16731
16731
16732
16732
16733
16733
16734
16734
16735
16735
16736
16736
16737
16737
16738
16738
16739
16739
16740
16740
16741
16741
16742
16742
16743
16743
16744
16744
16745
16745
16746
16746
16747
16747
16748
16748
16749
16749
16750
16750
16751
16751
16752
16752
16753
16753
16754
16754
16755
16755
16756
16756
16757
16757
16758
16758
16759
16759
16760
16760
16761
16761
16762
16762
16763
16763
16764
16764
16765
16765
16766
16766
16767
16767
16768
16768
16769
16769
16770
16770
16771
16771
16772
16772
16773
16773
16774
16774
16775
16775
16776
16776
16777
16777
16778
16778
16779
16779
16780
16780
16781
16781
16782
16782
16783
16783
16784
16784
16785
16785
16786
16786
16787
16787
16788
16788
16789
16789
16790
16790
16791
16791
16792
16792
16793
16793
16794
16794
16795
16795
16796
16796
16797
16797
16798
16798
16799
16799
16800
16800
16801
16801
16802
16802
16803
16803
16804
16804
16805
16805
16806
16806
16807
16807
16808
16808
16809
16809
16810
16810
16811
16811
16812
16812
16813
16813
16814
16814
16815
16815
16816
16816
16817
16817
16818
16818
16819
16819
16820
16820
16821
16821
16822
16822
16823
16823
16824
16824
16825
16825
16826
16826
16827
16827
16828
16828
16829
16829
16830
16830
16831
16831
16832
16832
16833
16833
16834
16834
16835
16835
16836
16836
16837
16837
16838
16838
16839
16839
16840
16840
16841
16841
16842
16842
16843
16843
16844
16844
16845
16845
16846
16846
16847
16847
16848
16848
16849
16849
16850
16850
16851
16851
16852
16852
16853
16853
16854
16854
16855
16855
16856
16856
16857
16857
16858
16858
16859
16859
16860
16860
16861
16861
16862
16862
16863
16863
16864
16864
16865
16865
16866
16866
16867
16867
16868
16868
16869
16869
16870
16870
16871
16871
16872
16872
16873
16873
16874
16874
16875
16875
16876
16876
16877
16877
16878
16878
16879
16879
16880
16880
16881
16881
16882
16882
16883
16883
16884
16884
16885
16885
16886
16886
16887
16887
16888
16888
16889
16889
16890
16890
16891
16891
16892
16892
16893
16893
16894
16894
16895
16895
16896
16896
16897
16897
16898
16898
16899
16899
16900
16900
16901
16901
16902
16902
16903
16903
16904
16904
16905
16905
16906
16906
16907
16907
16908
16908
16909
16909
16910
16910
16911
16911
16912
16912
16913
16913
16914
16914
16915
16915
16916
16916
16917
16917
16918
16918
16919
16919
16920
16920
16921
16921
16922
16922
16923
16923
16924
16924
16925
16925
16926
16926
16927
16927
16928
16928
16929
16929
16930
16930
16931
16931
16932
16932
16933
16933
16934
16934
16935
16935
16936
16936
16937
16937
16938
16938
16939
16939
16940
16940
16941
16941
16942
16942
16943
16943
16944
16944
16945
16945
16946
16946
16947
16947
16948
16948
16949
16949
16950
16950
16951
16951
16952
16952
16953
16953
16954
16954
16955
16955
16956
16956
16957
16957
16958
16958
16959
16959
16960
16960
16961
16961
16962
16962
16963
16963
16964
16964
16965
16965
16966
16966
16967
16967
16968
16968
16969
16969
16970
16970
16971
16971
16972
16972
16973
16973
16974
16974
16975
16975
16976
16976
16977
16977
16978
16978
16979
16979
16980
16980
16981
16981
16982
16982
16983
16983
16984
16984
16985
16985
16986
16986
16987
16987
16988
16988
16989
16989
16990
16990
16991
16991
16992
16992
16993
16993
16994
16994
16995
16995
16996
16996
16997
16997
16998
16998
16999
16999
17000
17000
17001
17001
17002
17002
17003
17003
17004
17004
17005
17005
17006
17006
17007
17007
17008
17008
17009
17009
17010
17010
17011
17011
17012
17012
17013
17013
17014
17014
17015
17015
17016
17016
17017
17017
17018
17018
17019
17019
17020
17020
17021
17021
17022
17022
17023
17023
17024
17024
17025
17025
17026
17026
17027
17027
17028
17028
17029
17029
17030
17030
17031
17031
17032
17032
17033
17033
17034
17034
17035
17035
17036
17036
17037
17037
17038
17038
17039
17039
17040
17040
17041
17041
17042
17042
17043
17043
17044
17044
17045
17045
17046
17046
17047
17047
17048
17048
17049
17049
17050
17050
17051
17051
17052
17052
17053
17053
17054
17054
17055
17055
17056
17056
17057
17057
17058
17058
17059
17059
17060
17060
17061
17061
17062
17062
17063
17063
17064
17064
17065
17065
17066
17066
17067
17067
17068
17068
17069
17069
17070
17070
17071
17071
17072
17072
17073
17073
17074
17074
17075
17075
17076
17076
17077
17077
17078
17078
17079
17079
17080
17080
17081
17081
17082
17082
17083
17083
17084
17084
17085
17085
17086
17086
17087
17087
17088
17088
17089
17089
17090
17090
17091
17091
17092
17092
17093
17093
17094
17094
17095
17095
17096
17096
17097
17097
17098
17098
17099
17099
17100
17100
17101
17101
17102
17102
17103
17103
17104
17104
17105
17105
17106
17106
17107
17107
17108
17108
17109
17109
17110
17110
17111
17111
17112
17112
17113
17113
17114
17114
17115
17115
17116
17116
17117
17117
17118
17118
17119
17119
17120
17120
17121
17121
17122
17122
17123
17123
17124
17124
17125
17125
17126
17126
17127
17127
17128
17128
17129
17129
17130
17130
17131
17131
17132
17132
17133
17133
17134
17134
17135
17135
17136
17136
17137
17137
17138
17138
17139
17139
17140
17140
17141
17141
17142
17142
17143
17143
17144
17144
17145
17145
17146
17146
17147
17147
17148
17148
17149
17149
17150
17150
17151
17151
17152
17152
17153
17153
17154
17154
17155
17155
17156
17156
17157
17157
17158
17158
17159
17159
17160
17160
17161
17161
17162
17162
17163
17163
17164
17164
17165
17165
17166
17166
17167
17167
17168
17168
17169
17169
17170
17170
17171
17171
17172
17172
17173
17173
17174
17174
17175
17175
17176
17176
17177
17177
17178
17178
17179
17179
17180
17180
17181
17181
17182
17182
17183
17183
17184
17184
17185
17185
17186
17186
17187
17187
17188
17188
17189
17189
17190
17190
17191
17191
17192
17192
17193
17193
17194
17194
17195
17195
17196
17196
17197
17197
17198
17198
17199
17199
17200
17200
17201
17201
17202
17202
17203
17203
17204
17204
17205
17205
17206
17206
17207
17207
17208
17208
17209
17209
17210
17210
17211
17211
17212
17212
17213
17213
17214
17214
17215
17215
17216
17216
17217
17217
17218
17218
17219
17219
17220
17220
17221
17221
17222
17222
17223
17223
17224
17224
17225
17225
17226
17226
17227
17227
17228
17228
17229
17229
17230
17230
17231
17231
17232
17232
17233
17233
17234
17234
17235
17235
17236
17236
17237
17237
17238
17238
17239
17239
17240
17240
17241
17241
17242
17242
17243
17243
17244
17244
17245
17245
17246
17246
17247
17247
17248
17248
17249
17249
17250
17250
17251
17251
17252
17252
17253
17253
17254
17254
17255
17255
17256
17256
17257
17257
17258
17258
17259
17259
17260
17260
17261
17261
17262
17262
17263
17263
17264
17264
17265
17265
17266
17266
17267
17267
17268
17268
17269
17269
17270
17270
17271
17271
17272
17272
17273
17273
17274
17274
17275
17275
17276
17276
17277
17277
17278
17278
17279
17279
17280
17280
17281
17281
17282
17282
17283
17283
17284
17284
17285
17285
17286
17286
17287
17287
17288
17288
17289
17289
17290
17290
17291
17291
17292
17292
17293
17293
17294
17294
17295
17295
17296
17296
17297
17297
17298
17298
17299
17299
17300
17300
17301
17301
17302
17302
17303
17303
17304
17304
17305
17305
17306
17306
17307
17307
17308
17308
17309
17309
17310
17310
17311
17311
17312
17312
17313
17313
17314
17314
17315
17315
17316
17316
17317
17317
17318
17318
17319
17319
17320
17320
17321
17321
17322
17322
17323
17323
17324
17324
17325
17325
17326
17326
17327
17327
17328
17328
17329
17329
17330
17330
17331
17331
17332
17332
17333
17333
17334
17334
17335
17335
17336
17336
17337
17337
17338
17338
17339
17339
17340
17340
17341
17341
17342
17342
17343
17343
17344
17344
17345
17345
17346
17346
17347
17347
17348
17348
17349
17349
17350
17350
17351
17351
17352
17352
17353
17353
17354
17354
17355
17355
17356
17356
17357
17357
17358
17358
17359
17359
17360
17360
17361
17361
17362
17362
17363
17363
17364
17364
17365
17365
17366
17366
17367
17367
17368
17368
17369
17369
17370
17370
17371
17371
17372
17372
17373
17373
17374
17374
17375
17375
17376
17376
17377
17377
17378
17378
17379
17379
17380
17380
17381
17381
17382
17382
17383
17383
17384
17384
17385
17385
17386
17386
17387
17387
17388
17388
17389
17389
17390
17390
17391
17391
17392
17392
17393
17393
17394
17394
17395
17395
17396
17396
17397
17397
17398
17398
17399
17399
17400
17400
17401
17401
17402
17402
17403
17403
17404
17404
17405
17405
17406
17406
17407
17407
17408
17408
17409
17409
17410
17410
17411
17411
17412
17412
17413
17413
17414
17414
17415
17415
17416
17416
17417
17417
17418
17418
17419
17419
17420
17420
17421
17421
17422
17422
17423
17423
17424
17424
17425
17425
17426
17426
17427
17427
17428
17428
17429
17429
17430
17430
17431
17431
17432
17432
17433
17433
17434
17434
17435
17435
17436
17436
17437
17437
17438
17438
17439
17439
17440
17440
17441
17441
17442
17442
17443
17443
17444
17444
17445
17445
17446
17446
17447
17447
17448
17448
17449
17449
17450
17450
17451
17451
17452
17452
17453
17453
17454
17454
17455
17455
17456
17456
17457
17457
17458
17458
17459
17459
17460
17460
17461
17461
17462
17462
17463
17463
17464
17464
17465
17465
17466
17466
17467
17467
17468
17468
17469
17469
17470
17470
17471
17471
17472
17472
17473
17473
17474
17474
17475
17475
17476
17476
17477
17477
17478
17478
17479
17479
17480
17480
17481
17481
17482
17482
17483
17483
17484
17484
17485
17485
17486
17486
17487
17487
17488
17488
17489
17489
17490
17490
17491
17491
17492
17492
17493
17493
17494
17494
17495
17495
17496
17496
17497
17497
17498
17498
17499
17499
17500
17500
17501
17501
17502
17502
17503
17503
17504
17504
17505
17505
17506
17506
17507
17507
17508
17508
17509
17509
17510
17510
17511
17511
17512
17512
17513
17513
17514
17514
17515
17515
17516
17516
17517
17517
17518
17518
17519
17519
17520
17520
17521
17521
17522
17522
17523
17523
17524
17524
17525
17525
17526
17526
17527
17527
17528
17528
17529
17529
17530
17530
17531
17531
17532
17532
17533
17533
17534
17534
17535
17535
17536
17536
17537
17537
17538
17538
17539
17539
17540
17540
17541
17541
17542
17542
17543
17543
17544
17544
17545
17545
17546
17546
17547
17547
17548
17548
17549
17549
17550
17550
17551
17551
17552
17552
17553
17553
17554
17554
17555
17555
17556
17556
17557
17557
17558
17558
17559
17559
17560
17560
17561
17561
17562
17562
17563
17563
17564
17564
17565
17565
17566
17566
17567
17567
17568
17568
17569
17569
17570
17570
17571
17571
17572
17572
17573
17573
17574
17574
17575
17575
17576
17576
17577
17577
17578
17578
17579
17579
17580
17580
17581
17581
17582
17582
17583
17583
17584
17584
17585
17585
17586
17586
17587
17587
17588
17588
17589
17589
17590
17590
17591
17591
17592
17592
17593
17593
17594
17594
17595
17595
17596
17596
17597
17597
17598
17598
17599
17599
17600
17600
17601
17601
17602
17602
17603
17603
17604
17604
17605
17605
17606
17606
17607
17607
17608
17608
17609
17609
17610
17610
17611
17611
17612
17612
17613
17613
17614
17614
17615
17615
17616
17616
17617
17617
17618
17618
17619
17619
17620
17620
17621
17621
17622
17622
17623
17623
17624
17624
17625
17625
17626
17626
17627
17627
17628
17628
17629
17629
17630
17630
17631
17631
17632
17632
17633
17633
17634
17634
17635
17635
17636
17636
17637
17637
17638
17638
17639
17639
17640
17640
17641
17641
17642
17642
17643
17643
17644
17644
17645
17645
17646
17646
17647
17647
17648
17648
17649
17649
17650
17650
17651
17651
17652
17652
17653
17653
17654
17654
17655
17655
17656
17656
17657
17657
17658
17658
17659
17659
17660
17660
17661
17661
17662
17662
17663
17663
17664
17664
17665
17665
17666
17666
17667
17667
17668
17668
17669
17669
17670
17670
17671
17671
17672
17672
17673
17673
17674
17674
17675
17675
17676
17676
17677
17677
17678
17678
17679
17679
17680
17680
17681
17681
17682
17682
17683
17683
17684
17684
17685
17685
17686
17686
17687
17687
17688
17688
17689
17689
17690
17690
17691
17691
17692
17692
17693
17693
17694
17694
17695
17695
17696
17696
17697
17697
17698
17698
17699
17699
17700
17700
17701
17701
17702
17702
17703
17703
17704
17704
17705
17705
17706
17706
17707
17707
17708
17708
17709
17709
17710
17710
17711
17711
17712
17712
17713
17713
17714
17714
17715
17715
17716
17716
17717
17717
17718
17718
17719
17719
17720
17720
17721
17721
17722
17722
17723
17723
17724
17724
17725
17725
17726
17726
17727
17727
17728
17728
17729
17729
17730
17730
17731
17731
17732
17732
17733
17733
17734
17734
17735
17735
17736
17736
17737
17737
17738
17738
17739
17739
17740
17740
17741
17741
17742
17742
17743
17743
17744
17744
17745
17745
17746
17746
17747
17747
17748
17748
17749
17749
17750
17750
17751
17751
17752
17752
17753
17753
17754
17754
17755
17755
17756
17756
17757
17757
17758
17758
17759
17759
17760
17760
17761
17761
17762
17762
17763
17763
17764
17764
17765
17765
17766
17766
17767
17767
17768
17768
17769
17769
17770
17770
17771
17771
17772
17772
17773
17773
17774
17774
17775
17775
17776
17776
17777
17777
17778
17778
17779
17779
17780
17780
17781
17781
17782
17782
17783
17783
17784
17784
17785
17785
17786
17786
17787
17787
17788
17788
17789
17789
17790
17790
17791
17791
17792
17792
17793
17793
17794
17794
17795
17795
17796
17796
17797
17797
17798
17798
17799
17799
17800
17800
17801
17801
17802
17802
17803
17803
17804
17804
17805
17805
17806
17806
17807
17807
17808
17808
17809
17809
17810
17810
17811
17811
17812
17812
17813
17813
17814
17814
17815
17815
17816
17816
17817
17817
17818
17818
17819
17819
17820
17820
17821
17821
17822
17822
17823
17823
17824
17824
17825
17825
17826
17826
17827
17827
17828
17828
17829
17829
17830
17830
17831
17831
17832
17832
17833
17833
17834
17834
17835
17835
17836
17836
17837
17837
17838
17838
17839
17839
17840
17840
17841
17841
17842
17842
17843
17843
17844
17844
17845
17845
17846
17846
17847
17847
17848
17848
17849
17849
17850
17850
17851
17851
17852
17852
17853
17853
17854
17854
17855
17855
17856
17856
17857
17857
17858
17858
17859
17859
17860
17860
17861
17861
17862
17862
17863
17863
17864
17864
17865
17865
17866
17866
17867
17867
17868
17868
17869
17869
17870
17870
17871
17871
17872
17872
17873
17873
17874
17874
17875
17875
17876
17876
17877
17877
17878
17878
17879
17879
17880
17880
17881
17881
17882
17882
17883
17883
17884
17884
17885
17885
17886
17886
17887
17887
17888
17888
17889
17889
17890
17890
17891
17891
17892
17892
17893
17893
17894
17894
17895
17895
17896
17896
17897
17897
17898
17898
17899
17899
17900
17900
17901
17901
17902
17902
17903
17903
17904
17904
17905
17905
17906
17906
17907
17907
17908
17908
17909
17909
17910
17910
17911
17911
17912
17912
17913
17913
17914
17914
17915
17915
17916
17916
17917
17917
17918
17918
17919
17919
17920
17920
17921
17921
17922
17922
17923
17923
17924
17924
17925
17925
17926
17926
17927
17927
17928
17928
17929
17929
17930
17930
17931
17931
17932
17932
17933
17933
17934
17934
17935
17935
17936
17936
17937
17937
17938
17938
17939
17939
17940
17940
17941
17941
17942
17942
17943
17943
17944
17944
17945
17945
17946
17946
17947
17947
17948
17948
17949
17949
17950
17950
17951
17951
17952
17952
17953
17953
17954
17954
17955
17955
17956
17956
17957
17957
17958
17958
17959
17959
17960
17960
17961
17961
17962
17962
17963
17963
17964
17964
17965
17965
17966
17966
17967
17967
17968
17968
17969
17969
17970
17970
17971
17971
17972
17972
17973
17973
17974
17974
17975
17975
17976
17976
17977
17977
17978
17978
17979
17979
17980
17980
17981
17981
17982
17982
17983
17983
17984
17984
17985
17985
17986
17986
17987
17987
17988
17988
17989
17989
17990
17990
17991
17991
17992
17992
17993
17993
17994
17994
17995
17995
17996
17996
17997
17997
17998
17998
17999
17999
18000
18000
18001
18001
18002
18002
18003
18003
18004
18004
18005
18005
18006
18006
18007
18007
18008
18008
18009
18009
18010
18010
18011
18011
18012
18012
18013
18013
18014
18014
18015
18015
18016
18016
18017
18017
18018
18018
18019
18019
18020
18020
18021
18021
18022
18022
18023
18023
18024
18024
18025
18025
18026
18026
18027
18027
18028
18028
18029
18029
18030
18030
18031
18031
18032
18032
18033
18033
18034
18034
18035
18035
18036
18036
18037
18037
18038
18038
18039
18039
18040
18040
18041
18041
18042
18042
18043
18043
18044
18044
18045
18045
18046
18046
18047
18047
18048
18048
18049
18049
18050
18050
18051
18051
18052
18052
18053
18053
18054
18054
18055
18055
18056
18056
18057
18057
18058
18058
18059
18059
18060
18060
18061
18061
18062
18062
18063
18063
18064
18064
18065
18065
18066
18066
18067
18067
18068
18068
18069
18069
18070
18070
18071
18071
18072
18072
18073
18073
18074
18074
18075
18075
18076
18076
18077
18077
18078
18078
18079
18079
18080
18080
18081
18081
18082
18082
18083
18083
18084
18084
18085
18085
18086
18086
18087
18087
18088
18088
18089
18089
18090
18090
18091
18091
18092
18092
18093
18093
18094
18094
18095
18095
18096
18096
18097
18097
18098
18098
18099
18099
18100
18100
18101
18101
18102
18102
18103
18103
18104
18104
18105
18105
18106
18106
18107
18107
18108
18108
18109
18109
18110
18110
18111
18111
18112
18112
18113
18113
18114
18114
18115
18115
18116
18116
18117
18117
18118
18118
18119
18119
18120
18120
18121
18121
18122
18122
18123
18123
18124
18124
18125
18125
18126
18126
18127
18127
18128
18128
18129
18129
18130
18130
18131
18131
18132
18132
18133
18133
18134
18134
18135
18135
18136
18136
18137
18137
18138
18138
18139
18139
18140
18140
18141
18141
18142
18142
18143
18143
18144
18144
18145
18145
18146
18146
18147
18147
18148
18148
18149
18149
18150
18150
18151
18151
18152
18152
18153
18153
18154
18154
18155
18155
18156
18156
18157
18157
18158
18158
18159
18159
18160
18160
18161
18161
18162
18162
18163
18163
18164
18164
18165
18165
18166
18166
18167
18167
18168
18168
18169
18169
18170
18170
18171
18171
18172
18172
18173
18173
18174
18174
18175
18175
18176
18176
18177
18177
18178
18178
18179
18179
18180
18180
18181
18181
18182
18182
18183
18183
18184
18184
18185
18185
18186
18186
18187
18187
18188
18188
18189
18189
18190
18190
18191
18191
18192
18192
18193
18193
18194
18194
18195
18195
18196
18196
18197
18197
18198
18198
18199
18199
18200
18200
18201
18201
18202
18202
18203
18203
18204
18204
18205
18205
18206
18206
18207
18207
18208
18208
18209
18209
18210
18210
18211
18211
18212
18212
18213
18213
18214
18214
18215
18215
18216
18216
18217
18217
18218
18218
18219
18219
18220
18220
18221
18221
18222
18222
18223
18223
18224
18224
18225
18225
18226
18226
18227
18227
18228
18228
18229
18229
18230
18230
18231
18231
18232
18232
18233
18233
18234
18234
18235
18235
18236
18236
18237
18237
18238
18238
18239
18239
18240
18240
18241
18241
18242
18242
18243
18243
18244
18244
18245
18245
18246
18246
18247
18247
18248
18248
18249
18249
18250
18250
18251
18251
18252
18252
18253
18253
18254
18254
18255
18255
18256
18256
18257
18257
18258
18258
18259
18259
18260
18260
18261
18261
18262
18262
18263
18263
18264
18264
18265
18265
18266
18266
18267
18267
18268
18268
18269
18269
18270
18270
18271
18271
18272
18272
18273
18273
18274
18274
18275
18275
18276
18276
18277
18277
18278
18278
18279
18279
18280
18280
18281
18281
18282
18282
18283
18283
18284
18284
18285
18285
18286
18286
18287
18287
18288
18288
18289
18289
18290
18290
18291
18291
18292
18292
18293
18293
18294
18294
18295
18295
18296
18296
18297
18297
18298
18298
18299
18299
18300
18300
18301
18301
18302
18302
18303
18303
18304
18304
18305
18305
18306
18306
18307
18307
18308
18308
18309
18309
18310
18310
18311
18311
18312
18312
18313
18313
18314
18314
18315
18315
18316
18316
18317
18317
18318
18318
18319
18319
18320
18320
18321
18321
18322
18322
18323
18323
18324
18324
18325
18325
18326
18326
18327
18327
18328
18328
18329
18329
18330
18330
18331
18331
18332
18332
18333
18333
18334
18334
18335
18335
18336
18336
18337
18337
18338
18338
18339
18339
18340
18340
18341
18341
18342
18342
18343
18343
18344
18344
18345
18345
18346
18346
18347
18347
18348
18348
18349
18349
18350
18350
18351
18351
18352
18352
18353
18353
18354
18354
18355
18355
18356
18356
18357
18357
18358
18358
18359
18359
18360
18360
18361
18361
18362
18362
18363
18363
18364
18364
18365
18365
18366
18366
18367
18367
18368
18368
18369
18369
18370
18370
18371
18371
18372
18372
18373
18373
18374
18374
18375
18375
18376
18376
18377
18377
18378
18378
18379
18379
18380
18380
18381
18381
18382
18382
18383
18383
18384
18384
18385
18385
18386
18386
18387
18387
18388
18388
18389
18389
18390
18390
18391
18391
18392
18392
18393
18393
18394
18394
18395
18395
18396
18396
18397
18397
18398
18398
18399
18399
18400
18400
18401
18401
18402
18402
18403
18403
18404
18404
18405
18405
18406
18406
18407
18407
18408
18408
18409
18409
18410
18410
18411
18411
18412
18412
18413
18413
18414
18414
18415
18415
18416
18416
18417
18417
18418
18418
18419
18419
18420
18420
18421
18421
18422
18422
18423
18423
18424
18424
18425
18425
18426
18426
18427
18427
18428
18428
18429
18429
18430
18430
18431
18431
18432
18432
18433
18433
18434
18434
18435
18435
18436
18436
18437
18437
18438
18438
18439
18439
18440
18440
18441
18441
18442
18442
18443
18443
18444
18444
18445
18445
18446
18446
18447
18447
18448
18448
18449
18449
18450
18450
18451
18451
18452
18452
18453
18453
18454
18454
18455
18455
18456
18456
18457
18457
18458
18458
18459
18459
18460
18460
18461
18461
18462
18462
18463
18463
18464
18464
18465
18465
18466
18466
18467
18467
18468
18468
18469
18469
18470
18470
18471
18471
18472
18472
18473
18473
18474
18474
18475
18475
18476
18476
18477
18477
18478
18478
18479
18479
18480
18480
18481
18481
18482
18482
18483
18483
18484
18484
18485
18485
18486
18486
18487
18487
18488
18488
18489
18489
18490
18490
18491
18491
18492
18492
18493
18493
18494
18494
18495
18495
18496
18496
18497
18497
18498
18498
18499
18499
18500
18500
18501
18501
18502
18502
18503
18503
18504
18504
18505
18505
18506
18506
18507
18507
18508
18508
18509
18509
18510
18510
18511
18511
18512
18512
18513
18513
18514
18514
18515
18515
18516
18516
18517
18517
18518
18518
18519
18519
18520
18520
18521
18521
18522
18522
18523
18523
18524
18524
18525
18525
18526
18526
18527
18527
18528
18528
18529
18529
18530
18530
18531
18531
18532
18532
18533
18533
18534
18534
18535
18535
18536
18536
18537
18537
18538
18538
18539
18539
18540
18540
18541
18541
18542
18542
18543
18543
18544
18544
18545
18545
18546
18546
18547
18547
18548
18548
18549
18549
18550
18550
18551
18551
18552
18552
18553
18553
18554
18554
18555
18555
18556
18556
18557
18557
18558
18558
18559
18559
18560
18560
18561
18561
18562
18562
18563
18563
18564
18564
18565
18565
18566
18566
18567
18567
18568
18568
18569
18569
18570
18570
18571
18571
18572
18572
18573
18573
18574
18574
18575
18575
18576
18576
18577
18577
18578
18578
18579
18579
18580
18580
18581
18581
18582
18582
18583
18583
18584
18584
18585
18585
18586
18586
18587
18587
18588
18588
18589
18589
18590
18590
18591
18591
18592
18592
18593
18593
18594
18594
18595
18595
18596
18596
18597
18597
18598
18598
18599
18599
18600
18600
18601
18601
18602
18602
18603
18603
18604
18604
18605
18605
18606
18606
18607
18607
18608
18608
18609
18609
18610
18610
18611
18611
18612
18612
18613
18613
18614
18614
18615
18615
18616
18616
18617
18617
18618
18618
18619
18619
18620
18620
18621
18621
18622
18622
18623
18623
18624
18624
18625
18625
18626
18626
18627
18627
18628
18628
18629
18629
18630
18630
18631
18631
18632
18632
18633
18633
18634
18634
18635
18635
18636
18636
18637
18637
18638
18638
18639
18639
18640
18640
18641
18641
18642
18642
18643
18643
18644
18644
18645
18645
18646
18646
18647
18647
18648
18648
18649
18649
18650
18650
18651
18651
18652
18652
18653
18653
18654
18654
18655
18655
18656
18656
18657
18657
18658
18658
18659
18659
18660
18660
18661
18661
18662
18662
18663
18663
18664
18664
18665
18665
18666
18666
18667
18667
18668
18668
18669
18669
18670
18670
18671
18671
18672
18672
18673
18673
18674
18674
18675
18675
18676
18676
18677
18677
18678
18678
18679
18679
18680
18680
18681
18681
18682
18682
18683
18683
18684
18684
18685
18685
18686
18686
18687
18687
18688
18688
18689
18689
18690
18690
18691
18691
18692
18692
18693
18693
18694
18694
18695
18695
18696
18696
18697
18697
18698
18698
18699
18699
18700
18700
18701
18701
18702
18702
18703
18703
18704
18704
18705
18705
18706
18706
18707
18707
18708
18708
18709
18709
18710
18710
18711
18711
18712
18712
18713
18713
18714
18714
18715
18715
18716
18716
18717
18717
18718
18718
18719
18719
18720
18720
18721
18721
18722
18722
18723
18723
18724
18724
18725
18725
18726
18726
18727
18727
18728
18728
18729
18729
18730
18730
18731
18731
18732
18732
18733
18733
18734
18734
18735
18735
18736
18736
18737
18737
18738
18738
18739
18739
18740
18740
18741
18741
18742
18742
18743
18743
18744
18744
18745
18745
18746
18746
18747
18747
18748
18748
18749
18749
18750
18750
18751
18751
18752
18752
18753
18753
18754
18754
18755
18755
18756
18756
18757
18757
18758
18758
18759
18759
18760
18760
18761
18761
18762
18762
18763
18763
18764
18764
18765
18765
18766
18766
18767
18767
18768
18768
18769
18769
18770
18770
18771
18771
18772
18772
18773
18773
18774
18774
18775
18775
18776
18776
18777
18777
18778
18778
18779
18779
18780
18780
18781
18781
18782
18782
18783
18783
18784
18784
18785
18785
18786
18786
18787
18787
18788
18788
18789
18789
18790
18790
18791
18791
18792
18792
18793
18793
18794
18794
18795
18795
18796
18796
18797
18797
18798
18798
18799
18799
18800
18800
18801
18801
18802
18802
18803
18803
18804
18804
18805
18805
18806
18806
18807
18807
18808
18808
18809
18809
18810
18810
18811
18811
18812
18812
18813
18813
18814
18814
18815
18815
18816
18816
18817
18817
18818
18818
18819
18819
18820
18820
18821
18821
18822
18822
18823
18823
18824
18824
18825
18825
18826
18826
18827
18827
18828
18828
18829
18829
18830
18830
18831
18831
18832
18832
18833
18833
18834
18834
18835
18835
18836
18836
18837
18837
18838
18838
18839
18839
18840
18840
18841
18841
18842
18842
18843
18843
18844
18844
18845
18845
18846
18846
18847
18847
18848
18848
18849
18849
18850
18850
18851
18851
18852
18852
18853
18853
18854
18854
18855
18855
18856
18856
18857
18857
18858
18858
18859
18859
18860
18860
18861
18861
18862
18862
18863
18863
18864
18864
18865
18865
18866
18866
18867
18867
18868
18868
18869
18869
18870
18870
18871
18871
18872
18872
18873
18873
18874
18874
18875
18875
18876
18876
18877
18877
18878
18878
18879
18879
18880
18880
18881
18881
18882
18882
18883
18883
18884
18884
18885
18885
18886
18886
18887
18887
18888
18888
18889
18889
18890
18890
18891
18891
18892
18892
18893
18893
18894
18894
18895
18895
18896
18896
18897
18897
18898
18898
18899
18899
18900
18900
18901
18901
18902
18902
18903
18903
18904
18904
18905
18905
18906
18906
18907
18907
18908
18908
18909
18909
18910
18910
18911
18911
18912
18912
18913
18913
18914
18914
18915
18915
18916
18916
18917
18917
18918
18918
18919
18919
18920
18920
18921
18921
18922
18922
18923
18923
18924
18924
18925
18925
18926
18926
18927
18927
18928
18928
18929
18929
18930
18930
18931
18931
18932
18932
18933
18933
18934
18934
18935
18935
18936
18936
18937
18937
18938
18938
18939
18939
18940
18940
18941
18941
18942
18942
18943
18943
18944
18944
18945
18945
18946
18946
18947
18947
18948
18948
18949
18949
18950
18950
18951
18951
18952
18952
18953
18953
18954
18954
18955
18955
18956
18956
18957
18957
18958
18958
18959
18959
18960
18960
18961
18961
18962
18962
18963
18963
18964
18964
18965
18965
18966
18966
18967
18967
18968
18968
18969
18969
18970
18970
18971
18971
18972
18972
18973
18973
18974
18974
18975
18975
18976
18976
18977
18977
18978
18978
18979
18979
18980
18980
18981
18981
18982
18982
18983
18983
18984
18984
18985
18985
18986
18986
18987
18987
18988
18988
18989
18989
18990
18990
18991
18991
18992
18992
18993
18993
18994
18994
18995
18995
18996
18996
18997
18997
18998
18998
18999
18999
19000
19000
19001
19001
19002
19002
19003
19003
19004
19004
19005
19005
19006
19006
19007
19007
19008
19008
19009
19009
19010
19010
19011
19011
19012
19012
19013
19013
19014
19014
19015
19015
19016
19016
19017
19017
19018
19018
19019
19019
19020
19020
19021
19021
19022
19022
19023
19023
19024
19024
19025
19025
19026
19026
19027
19027
19028
19028
19029
19029
19030
19030
19031
19031
19032
19032
19033
19033
19034
19034
19035
19035
19036
19036
19037
19037
19038
19038
19039
19039
19040
19040
19041
19041
19042
19042
19043
19043
19044
19044
19045
19045
19046
19046
19047
19047
19048
19048
19049
19049
19050
19050
19051
19051
19052
19052
19053
19053
19054
19054
19055
19055
19056
19056
19057
19057
19058
19058
19059
19059
19060
19060
19061
19061
19062
19062
19063
19063
19064
19064
19065
19065
19066
19066
19067
19067
19068
19068
19069
19069
19070
19070
19071
19071
19072
19072
19073
19073
19074
19074
19075
19075
19076
19076
19077
19077
19078
19078
19079
19079
19080
19080
19081
19081
19082
19082
19083
19083
19084
19084
19085
19085
19086
19086
19087
19087
19088
19088
19089
19089
19090
19090
19091
19091
19092
19092
19093
19093
19094
19094
19095
19095
19096
19096
19097
19097
19098
19098
19099
19099
19100
19100
19101
19101
19102
19102
19103
19103
19104
19104
19105
19105
19106
19106
19107
19107
19108
19108
19109
19109
19110
19110
19111
19111
19112
19112
19113
19113
19114
19114
19115
19115
19116
19116
19117
19117
19118
19118
19119
19119
19120
19120
19121
19121
19122
19122
19123
19123
19124
19124
19125
19125
19126
19126
19127
19127
19128
19128
19129
19129
19130
19130
19131
19131
19132
19132
19133
19133
19134
19134
19135
19135
19136
19136
19137
19137
19138
19138
19139
19139
19140
19140
19141
19141
19142
19142
19143
19143
19144
19144
19145
19145
19146
19146
19147
19147
19148
19148
19149
19149
19150
19150
19151
19151
19152
19152
19153
19153
19154
19154
19155
19155
19156
19156
19157
19157
19158
19158
19159
19159
19160
19160
19161
19161
19162
19162
19163
19163
19164
19164
19165
19165
19166
19166
19167
19167
19168
19168
19169
19169
19170
19170
19171
19171
19172
19172
19173
19173
19174
19174
19175
19175
19176
19176
19177
19177
19178
19178
19179
19179
19180
19180
19181
19181
19182
19182
19183
19183
19184
19184
19185
19185
19186
19186
19187
19187
19188
19188
19189
19189
19190
19190
19191
19191
19192
19192
19193
19193
19194
19194
19195
19195
19196
19196
19197
19197
19198
19198
19199
19199
19200
19200
19201
19201
19202
19202
19203
19203
19204
19204
19205
19205
19206
19206
19207
19207
19208
19208
19209
19209
19210
19210
19211
19211
19212
19212
19213
19213
19214
19214
19215
19215
19216
19216
19217
19217
19218
19218
19219
19219
19220
19220
19221
19221
19222
19222
19223
19223
19224
19224
19225
19225
19226
19226
19227
19227
19228
19228
19229
19229
19230
19230
19231
19231
19232
19232
19233
19233
19234
19234
19235
19235
19236
19236
19237
19237
19238
19238
19239
19239
19240
19240
19241
19241
19242
19242
19243
19243
19244
19244
19245
19245
19246
19246
19247
19247
19248
19248
19249
19249
19250
19250
19251
19251
19252
19252
19253
19253
19254
19254
19255
19255
19256
19256
19257
19257
19258
19258
19259
19259
19260
19260
19261
19261
19262
19262
19263
19263
19264
19264
19265
19265
19266
19266
19267
19267
19268
19268
19269
19269
19270
19270
19271
19271
19272
19272
19273
19273
19274
19274
19275
19275
19276
19276
19277
19277
19278
19278
19279
19279
19280
19280
19281
19281
19282
19282
19283
19283
19284
19284
19285
19285
19286
19286
19287
19287
19288
19288
19289
19289
19290
19290
19291
19291
19292
19292
19293
19293
19294
19294
19295
19295
19296
19296
19297
19297
19298
19298
19299
19299
19300
19300
19301
19301
19302
19302
19303
19303
19304
19304
19305
19305
19306
19306
19307
19307
19308
19308
19309
19309
19310
19310
19311
19311
19312
19312
19313
19313
19314
19314
19315
19315
19316
19316
19317
19317
19318
19318
19319
19319
19320
19320
19321
19321
19322
19322
19323
19323
19324
19324
19325
19325
19326
19326
19327
19327
19328
19328
19329
19329
19330
19330
19331
19331
19332
19332
19333
19333
19334
19334
19335
19335
19336
19336
19337
19337
19338
19338
19339
19339
19340
19340
19341
19341
19342
19342
19343
19343
19344
19344
19345
19345
19346
19346
19347
19347
19348
19348
19349
19349
19350
19350
19351
19351
19352
19352
19353
19353
19354
19354
19355
19355
19356
19356
19357
19357
19358
19358
19359
19359
19360
19360
19361
19361
19362
19362
19363
19363
19364
19364
19365
19365
19366
19366
19367
19367
19368
19368
19369
19369
19370
19370
19371
19371
19372
19372
19373
19373
19374
19374
19375
19375
19376
19376
19377
19377
19378
19378
19379
19379
19380
19380
19381
19381
19382
19382
19383
19383
19384
19384
19385
19385
19386
19386
19387
19387
19388
19388
19389
19389
19390
19390
19391
19391
19392
19392
19393
19393
19394
19394
19395
19395
19396
19396
19397
19397
19398
19398
19399
19399
19400
19400
19401
19401
19402
19402
19403
19403
19404
19404
19405
19405
19406
19406
19407
19407
19408
19408
19409
19409
19410
19410
19411
19411
19412
19412
19413
19413
19414
19414
19415
19415
19416
19416
19417
19417
19418
19418
19419
19419
19420
19420
19421
19421
19422
19422
19423
19423
19424
19424
19425
19425
19426
19426
19427
19427
19428
19428
19429
19429
19430
19430
19431
19431
19432
19432
19433
19433
19434
19434
19435
19435
19436
19436
19437
19437
19438
19438
19439
19439
19440
19440
19441
19441
19442
19442
19443
19443
19444
19444
19445
19445
19446
19446
19447
19447
19448
19448
19449
19449
19450
19450
19451
19451
19452
19452
19453
19453
19454
19454
19455
19455
19456
19456
19457
19457
19458
19458
19459
19459
19460
19460
19461
19461
19462
19462
19463
19463
19464
19464
19465
19465
19466
19466
19467
19467
19468
19468
19469
19469
19470
19470
19471
19471
19472
19472
19473
19473
19474
19474
19475
19475
19476
19476
19477
19477
19478
19478
19479
19479
19480
19480
19481
19481
19482
19482
19483
19483
19484
19484
19485
19485
19486
19486
19487
19487
19488
19488
19489
19489
19490
19490
19491
19491
19492
19492
19493
19493
19494
19494
19495
19495
19496
19496
19497
19497
19498
19498
19499
19499
19500
19500
19501
19501
19502
19502
19503
19503
19504
19504
19505
19505
19506
19506
19507
19507
19508
19508
19509
19509
19510
19510
19511
19511
19512
19512
19513
19513
19514
19514
19515
19515
19516
19516
19517
19517
19518
19518
19519
19519
19520
19520
19521
19521
19522
19522
19523
19523
19524
19524
19525
19525
19526
19526
19527
19527
19528
19528
19529
19529
19530
19530
19531
19531
19532
19532
19533
19533
19534
19534
19535
19535
19536
19536
19537
19537
19538
19538
19539
19539
19540
19540
19541
19541
19542
19542
19543
19543
19544
19544
19545
19545
19546
19546
19547
19547
19548
19548
19549
19549
19550
19550
19551
19551
19552
19552
19553
19553
19554
19554
19555
19555
19556
19556
19557
19557
19558
19558
19559
19559
19560
19560
19561
19561
19562
19562
19563
19563
19564
19564
19565
19565
19566
19566
19567
19567
19568
19568
19569
19569
19570
19570
19571
19571
19572
19572
19573
19573
19574
19574
19575
19575
19576
19576
19577
19577
19578
19578
19579
19579
19580
19580
19581
19581
19582
19582
19583
19583
19584
19584
19585
19585
19586
19586
19587
19587
19588
19588
19589
19589
19590
19590
19591
19591
19592
19592
19593
19593
19594
19594
19595
19595
19596
19596
19597
19597
19598
19598
19599
19599
19600
19600
19601
19601
19602
19602
19603
19603
19604
19604
19605
19605
19606
19606
19607
19607
19608
19608
19609
19609
19610
19610
19611
19611
19612
19612
19613
19613
19614
19614
19615
19615
19616
19616
19617
19617
19618
19618
19619
19619
19620
19620
19621
19621
19622
19622
19623
19623
19624
19624
19625
19625
19626
19626
19627
19627
19628
19628
19629
19629
19630
19630
19631
19631
19632
19632
19633
19633
19634
19634
19635
19635
19636
19636
19637
19637
19638
19638
19639
19639
19640
19640
19641
19641
19642
19642
19643
19643
19644
19644
19645
19645
19646
19646
19647
19647
19648
19648
19649
19649
19650
19650
19651
19651
19652
19652
19653
19653
19654
19654
19655
19655
19656
19656
19657
19657
19658
19658
19659
19659
19660
19660
19661
19661
19662
19662
19663
19663
19664
19664
19665
19665
19666
19666
19667
19667
19668
19668
19669
19669
19670
19670
19671
19671
19672
19672
19673
19673
19674
19674
19675
19675
19676
19676
19677
19677
19678
19678
19679
19679
19680
19680
19681
19681
19682
19682
19683
19683
19684
19684
19685
19685
19686
19686
19687
19687
19688
19688
19689
19689
19690
19690
19691
19691
19692
19692
19693
19693
19694
19694
19695
19695
19696
19696
19697
19697
19698
19698
19699
19699
19700
19700
19701
19701
19702
19702
19703
19703
19704
19704
19705
19705
19706
19706
19707
19707
19708
19708
19709
19709
19710
19710
19711
19711
19712
19712
19713
19713
19714
19714
19715
19715
19716
19716
19717
19717
19718
19718
19719
19719
19720
19720
19721
19721
19722
19722
19723
19723
19724
19724
19725
19725
19726
19726
19727
19727
19728
19728
19729
19729
19730
19730
19731
19731
19732
19732
19733
19733
19734
19734
19735
19735
19736
19736
19737
19737
19738
19738
19739
19739
19740
19740
19741
19741
19742
19742
19743
19743
19744
19744
19745
19745
19746
19746
19747
19747
19748
19748
19749
19749
19750
19750
19751
19751
19752
19752
19753
19753
19754
19754
19755
19755
19756
19756
19757
19757
19758
19758
19759
19759
19760
19760
19761
19761
19762
19762
19763
19763
19764
19764
19765
19765
19766
19766
19767
19767
19768
19768
19769
19769
19770
19770
19771
19771
19772
19772
19773
19773
19774
19774
19775
19775
19776
19776
19777
19777
19778
19778
19779
19779
19780
19780
19781
19781
19782
19782
19783
19783
19784
19784
19785
19785
19786
19786
19787
19787
19788
19788
19789
19789
19790
19790
19791
19791
19792
19792
19793
19793
19794
19794
19795
19795
19796
19796
19797
19797
19798
19798
19799
19799
19800
19800
19801
19801
19802
19802
19803
19803
19804
19804
19805
19805
19806
19806
19807
19807
19808
19808
19809
19809
19810
19810
19811
19811
19812
19812
19813
19813
19814
19814
19815
19815
19816
19816
19817
19817
19818
19818
19819
19819
19820
19820
19821
19821
19822
19822
19823
19823
19824
19824
19825
19825
19826
19826
19827
19827
19828
19828
19829
19829
19830
19830
19831
19831
19832
19832
19833
19833
19834
19834
19835
19835
19836
19836
19837
19837
19838
19838
19839
19839
19840
19840
19841
19841
19842
19842
19843
19843
19844
19844
19845
19845
19846
19846
19847
19847
19848
19848
19849
19849
19850
19850
19851
19851
19852
19852
19853
19853
19854
19854
19855
19855
19856
19856
19857
19857
19858
19858
19859
19859
19860
19860
19861
19861
19862
19862
19863
19863
19864
19864
19865
19865
19866
19866
19867
19867
19868
19868
19869
19869
19870
19870
19871
19871
19872
19872
19873
19873
19874
19874
19875
19875
19876
19876
19877
19877
19878
19878
19879
19879
19880
19880
19881
19881
19882
19882
19883
19883
19884
19884
19885
19885
19886
19886
19887
19887
19888
19888
19889
19889
19890
19890
19891
19891
19892
19892
19893
19893
19894
19894
19895
19895
19896
19896
19897
19897
19898
19898
19899
19899
19900
19900
19901
19901
19902
19902
19903
19903
19904
19904
19905
19905
19906
19906
19907
19907
19908
19908
19909
19909
19910
19910
19911
19911
19912
19912
19913
19913
19914
19914
19915
19915
19916
19916
19917
19917
19918
19918
19919
19919
19920
19920
19921
19921
19922
19922
19923
19923
19924
19924
19925
19925
19926
19926
19927
19927
19928
19928
19929
19929
19930
19930
19931
19931
19932
19932
19933
19933
19934
19934
19935
19935
19936
19936
19937
19937
19938
19938
19939
19939
19940
19940
19941
19941
19942
19942
19943
19943
19944
19944
19945
19945
19946
19946
19947
19947
19948
19948
19949
19949
19950
19950
19951
19951
19952
19952
19953
19953
19954
19954
19955
19955
19956
19956
19957
19957
19958
19958
19959
19959
19960
19960
19961
19961
19962
19962
19963
19963
19964
19964
19965
19965
19966
19966
19967
19967
19968
19968
19969
19969
19970
19970
19971
19971
19972
19972
19973
19973
19974
19974
19975
19975
19976
19976
19977
19977
19978
19978
19979
19979
19980
19980
19981
19981
19982
19982
19983
19983
19984
19984
19985
19985
19986
19986
19987
19987
19988
19988
19989
19989
19990
19990
19991
19991
19992
19992
19993
19993
19994
19994
19995
19995
19996
19996
19997
19997
19998
19998
19999
19999
20000
20000
20001
20001
20002
20002
20003
20003
20004
20004
20005
20005
20006
20006
20007
20007
20008
20008
20009
20009
20010
20010
20011
20011
20012
20012
20013
20013
20014
20014
20015
20015
20016
20016
20017
20017
20018
20018
20019
20019
20020
20020
20021
20021
20022
20022
20023
20023
20024
20024
20025
20025
20026
20026
20027
20027
20028
20028
20029
20029
20030
20030
20031
20031
20032
20032
20033
20033
20034
20034
20035
20035
20036
20036
20037
20037
20038
20038
20039
20039
20040
20040
20041
20041
20042
20042
20043
20043
20044
20044
20045
20045
20046
20046
20047
20047
20048
20048
20049
20049
20050
20050
20051
20051
20052
20052
20053
20053
20054
20054
20055
20055
20056
20056
20057
20057
20058
20058
20059
20059
20060
20060
20061
20061
20062
20062
20063
20063
20064
20064
20065
20065
20066
20066
20067
20067
20068
20068
20069
20069
20070
20070
20071
20071
20072
20072
20073
20073
20074
20074
20075
20075
20076
20076
20077
20077
20078
20078
20079
20079
20080
20080
20081
20081
20082
20082
20083
20083
20084
20084
20085
20085
20086
20086
20087
20087
20088
20088
20089
20089
20090
20090
20091
20091
20092
20092
20093
20093
20094
20094
20095
20095
20096
20096
20097
20097
20098
20098
20099
20099
20100
20100
20101
20101
20102
20102
20103
20103
20104
20104
20105
20105
20106
20106
20107
20107
20108
20108
20109
20109
20110
20110
20111
20111
20112
20112
20113
20113
20114
20114
20115
20115
20116
20116
20117
20117
20118
20118
20119
20119
20120
20120
20121
20121
20122
20122
20123
20123
20124
20124
20125
20125
20126
20126
20127
20127
20128
20128
20129
20129
20130
20130
20131
20131
20132
20132
20133
20133
20134
20134
20135
20135
20136
20136
20137
20137
20138
20138
20139
20139
20140
20140
20141
20141
20142
20142
20143
20143
20144
20144
20145
20145
20146
20146
20147
20147
20148
20148
20149
20149
20150
20150
20151
20151
20152
20152
20153
20153
20154
20154
20155
20155
20156
20156
20157
20157
20158
20158
20159
20159
20160
20160
20161
20161
20162
20162
20163
20163
20164
20164
20165
20165
20166
20166
20167
20167
20168
20168
20169
20169
20170
20170
20171
20171
20172
20172
20173
20173
20174
20174
20175
20175
20176
20176
20177
20177
20178
20178
20179
20179
20180
20180
20181
20181
20182
20182
20183
20183
20184
20184
20185
20185
20186
20186
20187
20187
20188
20188
20189
20189
20190
20190
20191
20191
20192
20192
20193
20193
20194
20194
20195
20195
20196
20196
20197
20197
20198
20198
20199
20199
20200
20200
20201
20201
20202
20202
20203
20203
20204
20204
20205
20205
20206
20206
20207
20207
20208
20208
20209
20209
20210
20210
20211
20211
20212
20212
20213
20213
20214
20214
20215
20215
20216
20216
20217
20217
20218
20218
20219
20219
20220
20220
20221
20221
20222
20222
20223
20223
20224
20224
20225
20225
20226
20226
20227
20227
20228
20228
20229
20229
20230
20230
20231
20231
20232
20232
20233
20233
20234
20234
20235
20235
20236
20236
20237
20237
20238
20238
20239
20239
20240
20240
20241
20241
20242
20242
20243
20243
20244
20244
20245
20245
20246
20246
20247
20247
20248
20248
20249
20249
20250
20250
20251
20251
20252
20252
20253
20253
20254
20254
20255
20255
20256
20256
20257
20257
20258
20258
20259
20259
20260
20260
20261
20261
20262
20262
20263
20263
20264
20264
20265
20265
20266
20266
20267
20267
20268
20268
20269
20269
20270
20270
20271
20271
20272
20272
20273
20273
20274
20274
20275
20275
20276
20276
20277
20277
20278
20278
20279
20279
20280
20280
20281
20281
20282
20282
20283
20283
20284
20284
20285
20285
20286
20286
20287
20287
20288
20288
20289
20289
20290
20290
20291
20291
20292
20292
20293
20293
20294
20294
20295
20295
20296
20296
20297
20297
20298
20298
20299
20299
20300
20300
20301
20301
20302
20302
20303
20303
20304
20304
20305
20305
20306
20306
20307
20307
20308
20308
20309
20309
20310
20310
20311
20311
20312
20312
20313
20313
20314
20314
20315
20315
20316
20316
20317
20317
20318
20318
20319
20319
20320
20320
20321
20321
20322
20322
20323
20323
20324
20324
20325
20325
20326
20326
20327
20327
20328
20328
20329
20329
20330
20330
20331
20331
20332
20332
20333
20333
20334
20334
20335
20335
20336
20336
20337
20337
20338
20338
20339
20339
20340
20340
20341
20341
20342
20342
20343
20343
20344
20344
20345
20345
20346
20346
20347
20347
20348
20348
20349
20349
20350
20350
20351
20351
20352
20352
20353
20353
20354
20354
20355
20355
20356
20356
20357
20357
20358
20358
20359
20359
20360
20360
20361
20361
20362
20362
20363
20363
20364
20364
20365
20365
20366
20366
20367
20367
20368
20368
20369
20369
20370
20370
20371
20371
20372
20372
20373
20373
20374
20374
20375
20375
20376
20376
20377
20377
20378
20378
20379
20379
20380
20380
20381
20381
20382
20382
20383
20383
20384
20384
20385
20385
20386
20386
20387
20387
20388
20388
20389
20389
20390
20390
20391
20391
20392
20392
20393
20393
20394
20394
20395
20395
20396
20396
20397
20397
20398
20398
20399
20399
20400
20400
20401
20401
20402
20402
20403
20403
20404
20404
20405
20405
20406
20406
20407
20407
20408
20408
20409
20409
20410
20410
20411
20411
20412
20412
20413
20413
20414
20414
20415
20415
20416
20416
20417
20417
20418
20418
20419
20419
20420
20420
20421
20421
20422
20422
20423
20423
20424
20424
20425
20425
20426
20426
20427
20427
20428
20428
20429
20429
20430
20430
20431
20431
20432
20432
20433
20433
20434
20434
20435
20435
20436
20436
20437
20437
20438
20438
20439
20439
20440
20440
20441
20441
20442
20442
20443
20443
20444
20444
20445
20445
20446
20446
20447
20447
20448
20448
20449
20449
20450
20450
20451
20451
20452
20452
20453
20453
20454
20454
20455
20455
20456
20456
20457
20457
20458
20458
20459
20459
20460
20460
20461
20461
20462
20462
20463
20463
20464
20464
20465
20465
20466
20466
20467
20467
20468
20468
20469
20469
20470
20470
20471
20471
20472
20472
20473
20473
20474
20474
20475
20475
20476
20476
20477
20477
20478
20478
20479
20479
20480
20480
20481
20481
20482
20482
20483
20483
20484
20484
20485
20485
20486
20486
20487
20487
20488
20488
20489
20489
20490
20490
20491
20491
20492
20492
20493
20493
20494
20494
20495
20495
20496
20496
20497
20497
20498
20498
20499
20499
20500
20500
20501
20501
20502
20502
20503
20503
20504
20504
20505
20505
20506
20506
20507
20507
20508
20508
20509
20509
20510
20510
20511
20511
20512
20512
20513
20513
20514
20514
20515
20515
20516
20516
20517
20517
20518
20518
20519
20519
20520
20520
20521
20521
20522
20522
20523
20523
20524
20524
20525
20525
20526
20526
20527
20527
20528
20528
20529
20529
20530
20530
20531
20531
20532
20532
20533
20533
20534
20534
20535
20535
20536
20536
20537
20537
20538
20538
20539
20539
20540
20540
20541
20541
20542
20542
20543
20543
20544
20544
20545
20545
20546
20546
20547
20547
20548
20548
20549
20549
20550
20550
20551
20551
20552
20552
20553
20553
20554
20554
20555
20555
20556
20556
20557
20557
20558
20558
20559
20559
20560
20560
20561
20561
20562
20562
20563
20563
20564
20564
20565
20565
20566
20566
20567
20567
20568
20568
20569
20569
20570
20570
20571
20571
20572
20572
20573
20573
20574
20574
20575
20575
20576
20576
20577
20577
20578
20578
20579
20579
20580
20580
20581
20581
20582
20582
20583
20583
20584
20584
20585
20585
20586
20586
20587
20587
20588
20588
20589
20589
20590
20590
20591
20591
20592
20592
20593
20593
20594
20594
20595
20595
20596
20596
20597
20597
20598
20598
20599
20599
20600
20600
20601
20601
20602
20602
20603
20603
20604
20604
20605
20605
20606
20606
20607
20607
20608
20608
20609
20609
20610
20610
20611
20611
20612
20612
20613
20613
20614
20614
20615
20615
20616
20616
20617
20617
20618
20618
20619
20619
20620
20620
20621
20621
20622
20622
20623
20623
20624
20624
20625
20625
20626
20626
20627
20627
20628
20628
20629
20629
20630
20630
20631
20631
20632
20632
20633
20633
20634
20634
20635
20635
20636
20636
20637
20637
20638
20638
20639
20639
20640
20640
20641
20641
20642
20642
20643
20643
20644
20644
20645
20645
20646
20646
20647
20647
20648
20648
20649
20649
20650
20650
20651
20651
20652
20652
20653
20653
20654
20654
20655
20655
20656
20656
20657
20657
20658
20658
20659
20659
20660
20660
20661
20661
20662
20662
20663
20663
20664
20664
20665
20665
20666
20666
20667
20667
20668
20668
20669
20669
20670
20670
20671
20671
20672
20672
20673
20673
20674
20674
20675
20675
20676
20676
20677
20677
20678
20678
20679
20679
20680
20680
20681
20681
20682
20682
20683
20683
20684
20684
20685
20685
20686
20686
20687
20687
20688
20688
20689
20689
20690
20690
20691
20691
20692
20692
20693
20693
20694
20694
20695
20695
20696
20696
20697
20697
20698
20698
20699
20699
20700
20700
20701
20701
20702
20702
20703
20703
20704
20704
20705
20705
20706
20706
20707
20707
20708
20708
20709
20709
20710
20710
20711
20711
20712
20712
20713
20713
20714
20714
20715
20715
20716
20716
20717
20717
20718
20718
20719
20719
20720
20720
20721
20721
20722
20722
20723
20723
20724
20724
20725
20725
20726
20726
20727
20727
20728
20728
20729
20729
20730
20730
20731
20731
20732
20732
20733
20733
20734
20734
20735
20735
20736
20736
20737
20737
20738
20738
20739
20739
20740
20740
20741
20741
20742
20742
20743
20743
20744
20744
20745
20745
20746
20746
20747
20747
20748
20748
20749
20749
20750
20750
20751
20751
20752
20752
20753
20753
20754
20754
20755
20755
20756
20756
20757
20757
20758
20758
20759
20759
20760
20760
20761
20761
20762
20762
20763
20763
20764
20764
20765
20765
20766
20766
20767
20767
20768
20768
20769
20769
20770
20770
20771
20771
20772
20772
20773
20773
20774
20774
20775
20775
20776
20776
20777
20777
20778
20778
20779
20779
20780
20780
20781
20781
20782
20782
20783
20783
20784
20784
20785
20785
20786
20786
20787
20787
20788
20788
20789
20789
20790
20790
20791
20791
20792
20792
20793
20793
20794
20794
20795
20795
20796
20796
20797
20797
20798
20798
20799
20799
20800
20800
20801
20801
20802
20802
20803
20803
20804
20804
20805
20805
20806
20806
20807
20807
20808
20808
20809
20809
20810
20810
20811
20811
20812
20812
20813
20813
20814
20814
20815
20815
20816
20816
20817
20817
20818
20818
20819
20819
20820
20820
20821
20821
20822
20822
20823
20823
20824
20824
20825
20825
20826
20826
20827
20827
20828
20828
20829
20829
20830
20830
20831
20831
20832
20832
20833
20833
20834
20834
20835
20835
20836
20836
20837
20837
20838
20838
20839
20839
20840
20840
20841
20841
20842
20842
20843
20843
20844
20844
20845
20845
20846
20846
20847
20847
20848
20848
20849
20849
20850
20850
20851
20851
20852
20852
20853
20853
20854
20854
20855
20855
20856
20856
20857
20857
20858
20858
20859
20859
20860
20860
20861
20861
20862
20862
20863
20863
20864
20864
20865
20865
20866
20866
20867
20867
20868
20868
20869
20869
20870
20870
20871
20871
20872
20872
20873
20873
20874
20874
20875
20875
20876
20876
20877
20877
20878
20878
20879
20879
20880
20880
20881
20881
20882
20882
20883
20883
20884
20884
20885
20885
20886
20886
20887
20887
20888
20888
20889
20889
20890
20890
20891
20891
20892
20892
20893
20893
20894
20894
20895
20895
20896
20896
20897
20897
20898
20898
20899
20899
20900
20900
20901
20901
20902
20902
20903
20903
20904
20904
20905
20905
20906
20906
20907
20907
20908
20908
20909
20909
20910
20910
20911
20911
20912
20912
20913
20913
20914
20914
20915
20915
20916
20916
20917
20917
20918
20918
20919
20919
20920
20920
20921
20921
20922
20922
20923
20923
20924
20924
20925
20925
20926
20926
20927
20927
20928
20928
20929
20929
20930
20930
20931
20931
20932
20932
20933
20933
20934
20934
20935
20935
20936
20936
20937
20937
20938
20938
20939
20939
20940
20940
20941
20941
20942
20942
20943
20943
20944
20944
20945
20945
20946
20946
20947
20947
20948
20948
20949
20949
20950
20950
20951
20951
20952
20952
20953
20953
20954
20954
20955
20955
20956
20956
20957
20957
20958
20958
20959
20959
20960
20960
20961
20961
20962
20962
20963
20963
20964
20964
20965
20965
20966
20966
20967
20967
20968
20968
20969
20969
20970
20970
20971
20971
20972
20972
20973
20973
20974
20974
20975
20975
20976
20976
20977
20977
20978
20978
20979
20979
20980
20980
20981
20981
20982
20982
20983
20983
20984
20984
20985
20985
20986
20986
20987
20987
20988
20988
20989
20989
20990
20990
20991
20991
20992
20992
20993
20993
20994
20994
20995
20995
20996
20996
20997
20997
20998
20998
20999
20999
21000
21000
21001
21001
21002
21002
21003
21003
21004
21004
21005
21005
21006
21006
21007
21007
21008
21008
21009
21009
21010
21010
21011
21011
21012
21012
21013
21013
21014
21014
21015
21015
21016
21016
21017
21017
21018
21018
21019
21019
21020
21020
21021
21021
21022
21022
21023
21023
21024
21024
21025
21025
21026
21026
21027
21027
21028
21028
21029
21029
21030
21030
21031
21031
21032
21032
21033
21033
21034
21034
21035
21035
21036
21036
21037
21037
21038
21038
21039
21039
21040
21040
21041
21041
21042
21042
21043
21043
21044
21044
21045
21045
21046
21046
21047
21047
21048
21048
21049
21049
21050
21050
21051
21051
21052
21052
21053
21053
21054
21054
21055
21055
21056
21056
21057
21057
21058
21058
21059
21059
21060
21060
21061
21061
21062
21062
21063
21063
21064
21064
21065
21065
21066
21066
21067
21067
21068
21068
21069
21069
21070
21070
21071
21071
21072
21072
21073
21073
21074
21074
21075
21075
21076
21076
21077
21077
21078
21078
21079
21079
21080
21080
21081
21081
21082
21082
21083
21083
21084
21084
21085
21085
21086
21086
21087
21087
21088
21088
21089
21089
21090
21090
21091
21091
21092
21092
21093
21093
21094
21094
21095
21095
21096
21096
21097
21097
21098
21098
21099
21099
21100
21100
21101
21101
21102
21102
21103
21103
21104
21104
21105
21105
21106
21106
21107
21107
21108
21108
21109
21109
21110
21110
21111
21111
21112
21112
21113
21113
21114
21114
21115
21115
21116
21116
21117
21117
21118
21118
21119
21119
21120
21120
21121
21121
21122
21122
21123
21123
21124
21124
21125
21125
21126
21126
21127
21127
21128
21128
21129
21129
21130
21130
21131
21131
21132
21132
21133
21133
21134
21134
21135
21135
21136
21136
21137
21137
21138
21138
21139
21139
21140
21140
21141
21141
21142
21142
21143
21143
21144
21144
21145
21145
21146
21146
21147
21147
21148
21148
21149
21149
21150
21150
21151
21151
21152
21152
21153
21153
21154
21154
21155
21155
21156
21156
21157
21157
21158
21158
21159
21159
21160
21160
21161
21161
21162
21162
21163
21163
21164
21164
21165
21165
21166
21166
21167
21167
21168
21168
21169
21169
21170
21170
21171
21171
21172
21172
21173
21173
21174
21174
21175
21175
21176
21176
21177
21177
21178
21178
21179
21179
21180
21180
21181
21181
21182
21182
21183
21183
21184
21184
21185
21185
21186
21186
21187
21187
21188
21188
21189
21189
21190
21190
21191
21191
21192
21192
21193
21193
21194
21194
21195
21195
21196
21196
21197
21197
21198
21198
21199
21199
21200
21200
21201
21201
21202
21202
21203
21203
21204
21204
21205
21205
21206
21206
21207
21207
21208
21208
21209
21209
21210
21210
21211
21211
21212
21212
21213
21213
21214
21214
21215
21215
21216
21216
21217
21217
21218
21218
21219
21219
21220
21220
21221
21221
21222
21222
21223
21223
21224
21224
21225
21225
21226
21226
21227
21227
21228
21228
21229
21229
21230
21230
21231
21231
21232
21232
21233
21233
21234
21234
21235
21235
21236
21236
21237
21237
21238
21238
21239
21239
21240
21240
21241
21241
21242
21242
21243
21243
21244
21244
21245
21245
21246
21246
21247
21247
21248
21248
21249
21249
21250
21250
21251
21251
21252
21252
21253
21253
21254
21254
21255
21255
21256
21256
21257
21257
21258
21258
21259
21259
21260
21260
21261
21261
21262
21262
21263
21263
21264
21264
21265
21265
21266
21266
21267
21267
21268
21268
21269
21269
21270
21270
21271
21271
21272
21272
21273
21273
21274
21274
21275
21275
21276
21276
21277
21277
21278
21278
21279
21279
21280
21280
21281
21281
21282
21282
21283
21283
21284
21284
21285
21285
21286
21286
21287
21287
21288
21288
21289
21289
21290
21290
21291
21291
21292
21292
21293
21293
21294
21294
21295
21295
21296
21296
21297
21297
21298
21298
21299
21299
21300
21300
21301
21301
21302
21302
21303
21303
21304
21304
21305
21305
21306
21306
21307
21307
21308
21308
21309
21309
21310
21310
21311
21311
21312
21312
21313
21313
21314
21314
21315
21315
21316
21316
21317
21317
21318
21318
21319
21319
21320
21320
21321
21321
21322
21322
21323
21323
21324
21324
21325
21325
21326
21326
21327
21327
21328
21328
21329
21329
21330
21330
21331
21331
21332
21332
21333
21333
21334
21334
21335
21335
21336
21336
21337
21337
21338
21338
21339
21339
21340
21340
21341
21341
21342
21342
21343
21343
21344
21344
21345
21345
21346
21346
21347
21347
21348
21348
21349
21349
21350
21350
21351
21351
21352
21352
21353
21353
21354
21354
21355
21355
21356
21356
21357
21357
21358
21358
21359
21359
21360
21360
21361
21361
21362
21362
21363
21363
21364
21364
21365
21365
21366
21366
21367
21367
21368
21368
21369
21369
21370
21370
21371
21371
21372
21372
21373
21373
21374
21374
21375
21375
21376
21376
21377
21377
21378
21378
21379
21379
21380
21380
21381
21381
21382
21382
21383
21383
21384
21384
21385
21385
21386
21386
21387
21387
21388
21388
21389
21389
21390
21390
21391
21391
21392
21392
21393
21393
21394
21394
21395
21395
21396
21396
21397
21397
21398
21398
21399
21399
21400
21400
21401
21401
21402
21402
21403
21403
21404
21404
21405
21405
21406
21406
21407
21407
21408
21408
21409
21409
21410
21410
21411
21411
21412
21412
21413
21413
21414
21414
21415
21415
21416
21416
21417
21417
21418
21418
21419
21419
21420
21420
21421
21421
21422
21422
21423
21423
21424
21424
21425
21425
21426
21426
21427
21427
21428
21428
21429
21429
21430
21430
21431
21431
21432
21432
21433
21433
21434
21434
21435
21435
21436
21436
21437
21437
21438
21438
21439
21439
21440
21440
21441
21441
21442
21442
21443
21443
21444
21444
21445
21445
21446
21446
21447
21447
21448
21448
21449
21449
21450
21450
21451
21451
21452
21452
21453
21453
21454
21454
21455
21455
21456
21456
21457
21457
21458
21458
21459
21459
21460
21460
21461
21461
21462
21462
21463
21463
21464
21464
21465
21465
21466
21466
21467
21467
21468
21468
21469
21469
21470
21470
21471
21471
21472
21472
21473
21473
21474
21474
21475
21475
21476
21476
21477
21477
21478
21478
21479
21479
21480
21480
21481
21481
21482
21482
21483
21483
21484
21484
21485
21485
21486
21486
21487
21487
21488
21488
21489
21489
21490
21490
21491
21491
21492
21492
21493
21493
21494
21494
21495
21495
21496
21496
21497
21497
21498
21498
21499
21499
21500
21500
21501
21501
21502
21502
21503
21503
21504
21504
21505
21505
21506
21506
21507
21507
21508
21508
21509
21509
21510
21510
21511
21511
21512
21512
21513
21513
21514
21514
21515
21515
21516
21516
21517
21517
21518
21518
21519
21519
21520
21520
21521
21521
21522
21522
21523
21523
21524
21524
21525
21525
21526
21526
21527
21527
21528
21528
21529
21529
21530
21530
21531
21531
21532
21532
21533
21533
21534
21534
21535
21535
21536
21536
21537
21537
21538
21538
21539
21539
21540
21540
21541
21541
21542
21542
21543
21543
21544
21544
21545
21545
21546
21546
21547
21547
21548
21548
21549
21549
21550
21550
21551
21551
21552
21552
21553
21553
21554
21554
21555
21555
21556
21556
21557
21557
21558
21558
21559
21559
21560
21560
21561
21561
21562
21562
21563
21563
21564
21564
21565
21565
21566
21566
21567
21567
21568
21568
21569
21569
21570
21570
21571
21571
21572
21572
21573
21573
21574
21574
21575
21575
21576
21576
21577
21577
21578
21578
21579
21579
21580
21580
21581
21581
21582
21582
21583
21583
21584
21584
21585
21585
21586
21586
21587
21587
21588
21588
21589
21589
21590
21590
21591
21591
21592
21592
21593
21593
21594
21594
21595
21595
21596
21596
21597
21597
21598
21598
21599
21599
21600
21600
21601
21601
21602
21602
21603
21603
21604
21604
21605
21605
21606
21606
21607
21607
21608
21608
21609
21609
21610
21610
21611
21611
21612
21612
21613
21613
21614
21614
21615
21615
21616
21616
21617
21617
21618
21618
21619
21619
21620
21620
21621
21621
21622
21622
21623
21623
21624
21624
21625
21625
21626
21626
21627
21627
21628
21628
21629
21629
21630
21630
21631
21631
21632
21632
21633
21633
21634
21634
21635
21635
21636
21636
21637
21637
21638
21638
21639
21639
21640
21640
21641
21641
21642
21642
21643
21643
21644
21644
21645
21645
21646
21646
21647
21647
21648
21648
21649
21649
21650
21650
21651
21651
21652
21652
21653
21653
21654
21654
21655
21655
21656
21656
21657
21657
21658
21658
21659
21659
21660
21660
21661
21661
21662
21662
21663
21663
21664
21664
21665
21665
21666
21666
21667
21667
21668
21668
21669
21669
21670
21670
21671
21671
21672
21672
21673
21673
21674
21674
21675
21675
21676
21676
21677
21677
21678
21678
21679
21679
21680
21680
21681
21681
21682
21682
21683
21683
21684
21684
21685
21685
21686
21686
21687
21687
21688
21688
21689
21689
21690
21690
21691
21691
21692
21692
21693
21693
21694
21694
21695
21695
21696
21696
21697
21697
21698
21698
21699
21699
21700
21700
21701
21701
21702
21702
21703
21703
21704
21704
21705
21705
21706
21706
21707
21707
21708
21708
21709
21709
21710
21710
21711
21711
21712
21712
21713
21713
21714
21714
21715
21715
21716
21716
21717
21717
21718
21718
21719
21719
21720
21720
21721
21721
21722
21722
21723
21723
21724
21724
21725
21725
21726
21726
21727
21727
21728
21728
21729
21729
21730
21730
21731
21731
21732
21732
21733
21733
21734
21734
21735
21735
21736
21736
21737
21737
21738
21738
21739
21739
21740
21740
21741
21741
21742
21742
21743
21743
21744
21744
21745
21745
21746
21746
21747
21747
21748
21748
21749
21749
21750
21750
21751
21751
21752
21752
21753
21753
21754
21754
21755
21755
21756
21756
21757
21757
21758
21758
21759
21759
21760
21760
21761
21761
21762
21762
21763
21763
21764
21764
21765
21765
21766
21766
21767
21767
21768
21768
21769
21769
21770
21770
21771
21771
21772
21772
21773
21773
21774
21774
21775
21775
21776
21776
21777
21777
21778
21778
21779
21779
21780
21780
21781
21781
21782
21782
21783
21783
21784
21784
21785
21785
21786
21786
21787
21787
21788
21788
21789
21789
21790
21790
21791
21791
21792
21792
21793
21793
21794
21794
21795
21795
21796
21796
21797
21797
21798
21798
21799
21799
21800
21800
21801
21801
21802
21802
21803
21803
21804
21804
21805
21805
21806
21806
21807
21807
21808
21808
21809
21809
21810
21810
21811
21811
21812
21812
21813
21813
21814
21814
21815
21815
21816
21816
21817
21817
21818
21818
21819
21819
21820
21820
21821
21821
21822
21822
21823
21823
21824
21824
21825
21825
21826
21826
21827
21827
21828
21828
21829
21829
21830
21830
21831
21831
21832
21832
21833
21833
21834
21834
21835
21835
21836
21836
21837
21837
21838
21838
21839
21839
21840
21840
21841
21841
21842
21842
21843
21843
21844
21844
21845
21845
21846
21846
21847
21847
21848
21848
21849
21849
21850
21850
21851
21851
21852
21852
21853
21853
21854
21854
21855
21855
21856
21856
21857
21857
21858
21858
21859
21859
21860
21860
21861
21861
21862
21862
21863
21863
21864
21864
21865
21865
21866
21866
21867
21867
21868
21868
21869
21869
21870
21870
21871
21871
21872
21872
21873
21873
21874
21874
21875
21875
21876
21876
21877
21877
21878
21878
21879
21879
21880
21880
21881
21881
21882
21882
21883
21883
21884
21884
21885
21885
21886
21886
21887
21887
21888
21888
21889
21889
21890
21890
21891
21891
21892
21892
21893
21893
21894
21894
21895
21895
21896
21896
21897
21897
21898
21898
21899
21899
21900
21900
21901
21901
21902
21902
21903
21903
21904
21904
21905
21905
21906
21906
21907
21907
21908
21908
21909
21909
21910
21910
21911
21911
21912
21912
21913
21913
21914
21914
21915
21915
21916
21916
21917
21917
21918
21918
21919
21919
21920
21920
21921
21921
21922
21922
21923
21923
21924
21924
21925
21925
21926
21926
21927
21927
21928
21928
21929
21929
21930
21930
21931
21931
21932
21932
21933
21933
21934
21934
21935
21935
21936
21936
21937
21937
21938
21938
21939
21939
21940
21940
21941
21941
21942
21942
21943
21943
21944
21944
21945
21945
21946
21946
21947
21947
21948
21948
21949
21949
21950
21950
21951
21951
21952
21952
21953
21953
21954
21954
21955
21955
21956
21956
21957
21957
21958
21958
21959
21959
21960
21960
21961
21961
21962
21962
21963
21963
21964
21964
21965
21965
21966
21966
21967
21967
21968
21968
21969
21969
21970
21970
21971
21971
21972
21972
21973
21973
21974
21974
21975
21975
21976
21976
21977
21977
21978
21978
21979
21979
21980
21980
21981
21981
21982
21982
21983
21983
21984
21984
21985
21985
21986
21986
21987
21987
21988
21988
21989
21989
21990
21990
21991
21991
21992
21992
21993
21993
21994
21994
21995
21995
21996
21996
21997
21997
21998
21998
21999
21999
22000
22000
22001
22001
22002
22002
22003
22003
22004
22004
22005
22005
22006
22006
22007
22007
22008
22008
22009
22009
22010
22010
22011
22011
22012
22012
22013
22013
22014
22014
22015
22015
22016
22016
22017
22017
22018
22018
22019
22019
22020
22020
22021
22021
22022
22022
22023
22023
22024
22024
22025
22025
22026
22026
22027
22027
22028
22028
22029
22029
22030
22030
22031
22031
22032
22032
22033
22033
22034
22034
22035
22035
22036
22036
22037
22037
22038
22038
22039
22039
22040
22040
22041
22041
22042
22042
22043
22043
22044
22044
22045
22045
22046
22046
22047
22047
22048
22048
22049
22049
22050
22050
22051
22051
22052
22052
22053
22053
22054
22054
22055
22055
22056
22056
22057
22057
22058
22058
22059
22059
22060
22060
22061
22061
22062
22062
22063
22063
22064
22064
22065
22065
22066
22066
22067
22067
22068
22068
22069
22069
22070
22070
22071
22071
22072
22072
22073
22073
22074
22074
22075
22075
22076
22076
22077
22077
22078
22078
22079
22079
22080
22080
22081
22081
22082
22082
22083
22083
22084
22084
22085
22085
22086
22086
22087
22087
22088
22088
22089
22089
22090
22090
22091
22091
22092
22092
22093
22093
22094
22094
22095
22095
22096
22096
22097
22097
22098
22098
22099
22099
22100
22100
22101
22101
22102
22102
22103
22103
22104
22104
22105
22105
22106
22106
22107
22107
22108
22108
22109
22109
22110
22110
22111
22111
22112
22112
22113
22113
22114
22114
22115
22115
22116
22116
22117
22117
22118
22118
22119
22119
22120
22120
22121
22121
22122
22122
22123
22123
22124
22124
22125
22125
22126
22126
22127
22127
22128
22128
22129
22129
22130
22130
22131
22131
22132
22132
22133
22133
22134
22134
22135
22135
22136
22136
22137
22137
22138
22138
22139
22139
22140
22140
22141
22141
22142
22142
22143
22143
22144
22144
22145
22145
22146
22146
22147
22147
22148
22148
22149
22149
22150
22150
22151
22151
22152
22152
22153
22153
22154
22154
22155
22155
22156
22156
22157
22157
22158
22158
22159
22159
22160
22160
22161
22161
22162
22162
22163
22163
22164
22164
22165
22165
22166
22166
22167
22167
22168
22168
22169
22169
22170
22170
22171
22171
22172
22172
22173
22173
22174
22174
22175
22175
22176
22176
22177
22177
22178
22178
22179
22179
22180
22180
22181
22181
22182
22182
22183
22183
22184
22184
22185
22185
22186
22186
22187
22187
22188
22188
22189
22189
22190
22190
22191
22191
22192
22192
22193
22193
22194
22194
22195
22195
22196
22196
22197
22197
22198
22198
22199
22199
22200
22200
22201
22201
22202
22202
22203
22203
22204
22204
22205
22205
22206
22206
22207
22207
22208
22208
22209
22209
22210
22210
22211
22211
22212
22212
22213
22213
22214
22214
22215
22215
22216
22216
22217
22217
22218
22218
22219
22219
22220
22220
22221
22221
22222
22222
22223
22223
22224
22224
22225
22225
22226
22226
22227
22227
22228
22228
22229
22229
22230
22230
22231
22231
22232
22232
22233
22233
22234
22234
22235
22235
22236
22236
22237
22237
22238
22238
22239
22239
22240
22240
22241
22241
22242
22242
22243
22243
22244
22244
22245
22245
22246
22246
22247
22247
22248
22248
22249
22249
22250
22250
22251
22251
22252
22252
22253
22253
22254
22254
22255
22255
22256
22256
22257
22257
22258
22258
22259
22259
22260
22260
22261
22261
22262
22262
22263
22263
22264
22264
22265
22265
22266
22266
22267
22267
22268
22268
22269
22269
22270
22270
22271
22271
22272
22272
22273
22273
22274
22274
22275
22275
22276
22276
22277
22277
22278
22278
22279
22279
22280
22280
22281
22281
22282
22282
22283
22283
22284
22284
22285
22285
22286
22286
22287
22287
22288
22288
22289
22289
22290
22290
22291
22291
22292
22292
22293
22293
22294
22294
22295
22295
22296
22296
22297
22297
22298
22298
22299
22299
22300
22300
22301
22301
22302
22302
22303
22303
22304
22304
22305
22305
22306
22306
22307
22307
22308
22308
22309
22309
22310
22310
22311
22311
22312
22312
22313
22313
22314
22314
22315
22315
22316
22316
22317
22317
22318
22318
22319
22319
22320
22320
22321
22321
22322
22322
22323
22323
22324
22324
22325
22325
22326
22326
22327
22327
22328
22328
22329
22329
22330
22330
22331
22331
22332
22332
22333
22333
22334
22334
22335
22335
22336
22336
22337
22337
22338
22338
22339
22339
22340
22340
22341
22341
22342
22342
22343
22343
22344
22344
22345
22345
22346
22346
22347
22347
22348
22348
22349
22349
22350
22350
22351
22351
22352
22352
22353
22353
22354
22354
22355
22355
22356
22356
22357
22357
22358
22358
22359
22359
22360
22360
22361
22361
22362
22362
22363
22363
22364
22364
22365
22365
22366
22366
22367
22367
22368
22368
22369
22369
22370
22370
22371
22371
22372
22372
22373
22373
22374
22374
22375
22375
22376
22376
22377
22377
22378
22378
22379
22379
22380
22380
22381
22381
22382
22382
22383
22383
22384
22384
22385
22385
22386
22386
22387
22387
22388
22388
22389
22389
22390
22390
22391
22391
22392
22392
22393
22393
22394
22394
22395
22395
22396
22396
22397
22397
22398
22398
22399
22399
22400
22400
22401
22401
22402
22402
22403
22403
22404
22404
22405
22405
22406
22406
22407
22407
22408
22408
22409
22409
22410
22410
22411
22411
22412
22412
22413
22413
22414
22414
22415
22415
22416
22416
22417
22417
22418
22418
22419
22419
22420
22420
22421
22421
22422
22422
22423
22423
22424
22424
22425
22425
22426
22426
22427
22427
22428
22428
22429
22429
22430
22430
22431
22431
22432
22432
22433
22433
22434
22434
22435
22435
22436
22436
22437
22437
22438
22438
22439
22439
22440
22440
22441
22441
22442
22442
22443
22443
22444
22444
22445
22445
22446
22446
22447
22447
22448
22448
22449
22449
22450
22450
22451
22451
22452
22452
22453
22453
22454
22454
22455
22455
22456
22456
22457
22457
22458
22458
22459
22459
22460
22460
22461
22461
22462
22462
22463
22463
22464
22464
22465
22465
22466
22466
22467
22467
22468
22468
22469
22469
22470
22470
22471
22471
22472
22472
22473
22473
22474
22474
22475
22475
22476
22476
22477
22477
22478
22478
22479
22479
22480
22480
22481
22481
22482
22482
22483
22483
22484
22484
22485
22485
22486
22486
22487
22487
22488
22488
22489
22489
22490
22490
22491
22491
22492
22492
22493
22493
22494
22494
22495
22495
22496
22496
22497
22497
22498
22498
22499
22499
22500
22500
22501
22501
22502
22502
22503
22503
22504
22504
22505
22505
22506
22506
22507
22507
22508
22508
22509
22509
22510
22510
22511
22511
22512
22512
22513
22513
22514
22514
22515
22515
22516
22516
22517
22517
22518
22518
22519
22519
22520
22520
22521
22521
22522
22522
22523
22523
22524
22524
22525
22525
22526
22526
22527
22527
22528
22528
22529
22529
22530
22530
22531
22531
22532
22532
22533
22533
22534
22534
22535
22535
22536
22536
22537
22537
22538
22538
22539
22539
22540
22540
22541
22541
22542
22542
22543
22543
22544
22544
22545
22545
22546
22546
22547
22547
22548
22548
22549
22549
22550
22551
22552
22553
22554
22555
22556
22557
22558
22559
22560
22561
22562
22563
22564
22565
22566
22567
22568
22569
22570
22571
22572
22573
22574
22575
22576
22577
22578
22579
22580
22581
22582
22583
22584
22585
22586
22587
22588
22589
22590
22591
22592
22593
22594
22595
22596
22597
22598
22599
22600
22601
22602
22603
22604
22605
22606
22607
22608
22609
22610
22611
22612
22613
22614
22615
22616
22617
22618
22619
22620
22621
22622
22623
22624
22625
22626
22627
22628
22629
22630
22631
22632
22633
22634
22635
22636
22637
22638
22639
22640
22641
22642
22643
22644
22645
22646
22647
22648
22649
22650
22651
22652
22653
22654
22655
22656
22657
22658
22659
22660
22661
22662
22663
22664
22665
22666
22667
22668
22669
22670
22671
22672
22673
22674
22675
22676
22677
22678
22679
22680
22681
22682
22683
22684
22685
22686
22687
22688
22689
22690
22691
22692
22693
22694
22695
22696
22697
22698
22699
22700
22700
22700
22701
22701
22701
22702
22702
22702
22703
22703
22703
22704
22704
22704
22705
22705
22705
22706
22706
22706
22707
22707
22707
22708
22708
22708
22709
22709
22709
22710
22710
22710
22711
22711
22711
22712
22712
22712
22713
22713
22713
22714
22714
22714
22715
22715
22715
22716
22716
22716
22717
22717
22717
22718
22718
22718
22719
22719
22719
22720
22720
22720
22721
22721
22721
22722
22722
22722
22723
22723
22723
22724
22724
22724
22725
22725
22725
22726
22726
22726
22727
22727
22727
22728
22728
22728
22729
22729
22729
22730
22730
22731
22731
22732
22732
22733
22733
22734
22734
22735
22735
22736
22736
22737
22737
22738
22738
22739
22739
22740
22740
22741
22741
22742
22742
22743
22743
22744
22744
22745
22745
22746
22746
22747
22747
22748
22748
22749
22749
22750
22750
22751
22751
22752
22752
22753
22753
22754
22754
22755
22755
22756
22756
22757
22757
22758
22758
22759
22759
22760
22760
22761
22761
22762
22762
22763
22763
22764
22764
22765
22765
22766
22766
22767
22767
22768
22768
22769
22769
22770
22770
22771
22771
22772
22772
22773
22773
22774
22774
22775
22775
22776
22776
22777
22777
22778
22778
22779
22779
22780
22780
22781
22781
22782
22782
22783
22783
22784
22784
22785
22785
22786
22786
22787
22787
22788
22788
22789
22789
22790
22790
22791
22791
22792
22792
22793
22793
22794
22794
22795
22795
22796
22796
22797
22797
22798
22798
22799
22799
22800
22800
22801
22801
22802
22802
22803
22803
22804
22804
22805
22805
22806
22806
22807
22807
22808
22808
22809
22809
22810
22810
22811
22811
22812
22812
22813
22813
22814
22814
22815
22815
22816
22816
22817
22817
22818
22818
22819
22819
22820
22820
22821
22821
22822
22822
22823
22823
22824
22824
22825
22825
22826
22826
22827
22827
22828
22828
22829
22829
22830
22830
22831
22831
22832
22832
22833
22833
22834
22834
22835
22835
22836
22836
22837
22837
22838
22838
22839
22839
22840
22840
22841
22841
22842
22842
22843
22843
22844
22844
22845
22845
22846
22846
22847
22847
22848
22848
22849
22849
22850
22850
22851
22851
22852
22852
22853
22853
22854
22854
22855
22855
22856
22856
22857
22857
22858
22858
22859
22859
22860
22860
22861
22861
22862
22862
22863
22863
22864
22864
22865
22865
22866
22866
22867
22867
22868
22868
22869
22869
22870
22870
22871
22871
22872
22872
22873
22873
22874
22874
22875
22875
22876
22876
22877
22877
22878
22878
22879
22879
22880
22880
22881
22881
22882
22882
22883
22883
22884
22884
22885
22885
22886
22886
22887
22887
22888
22888
22889
22889
22890
22890
22891
22891
22892
22892
22893
22893
22894
22894
22895
22895
22896
22896
22897
22897
22898
22898
22899
22899
22900
22900
22901
22901
22902
22902
22903
22903
22904
22904
22905
22905
22906
22906
22907
22907
22908
22908
22909
22909
22910
22910
22911
22911
22912
22912
22913
22913
22914
22914
22915
22915
22916
22916
22917
22917
22918
22918
22919
22919
22920
22920
22921
22921
22922
22922
22923
22923
22924
22924
22925
22925
22926
22926
22927
22927
22928
22928
22929
22929
22930
22930
22931
22931
22932
22932
22933
22933
22934
22934
22935
22935
22936
22936
22937
22937
22938
22938
22939
22939
22940
22940
22941
22941
22942
22942
22943
22943
22944
22944
22945
22945
22946
22946
22947
22947
22948
22948
22949
22949
22950
22950
22951
22951
22952
22952
22953
22953
22954
22954
22955
22955
22956
22956
22957
22957
22958
22958
22959
22959
22960
22960
22961
22961
22962
22962
22963
22963
22964
22964
22965
22965
22966
22966
22967
22967
22968
22968
22969
22969
22970
22970
22971
22971
22972
22972
22973
22973
22974
22974
22975
22975
22976
22976
22977
22977
22978
22978
22979
22979
22980
22980
22981
22981
22982
22982
22983
22983
22984
22984
22985
22985
22986
22986
22987
22987
22988
22988
22989
22989
22990
22990
22991
22991
22992
22992
22993
22993
22994
22994
22995
22995
22996
22996
22997
22997
22998
22998
22999
22999
23000
23000
23001
23001
23002
23002
23003
23003
23004
23004
23005
23005
23006
23006
23007
23007
23008
23008
23009
23009
23010
23010
23011
23011
23012
23012
23013
23013
23014
23014
23015
23015
23016
23016
23017
23017
23018
23018
23019
23019
23020
23020
23021
23021
23022
23022
23023
23023
23024
23024
23025
23025
23026
23026
23027
23027
23028
23028
23029
23029
23030
23030
23031
23031
23032
23032
23033
23033
23034
23034
23035
23035
23036
23036
23037
23037
23038
23038
23039
23039
23040
23040
23041
23041
23042
23042
23043
23043
23044
23044
23045
23045
23046
23046
23047
23047
23048
23048
23049
23049
23050
23050
23051
23051
23052
23052
23053
23053
23054
23054
23055
23055
23056
23056
23057
23057
23058
23058
23059
23059
23060
23060
23061
23061
23062
23062
23063
23063
23064
23064
23065
23065
23066
23066
23067
23067
23068
23068
23069
23069
23070
23070
23071
23071
23072
23072
23073
23073
23074
23074
23075
23075
23076
23076
23077
23077
23078
23078
23079
23079
23080
23080
23081
23081
23082
23082
23083
23083
23084
23084
23085
23085
23086
23086
23087
23087
23088
23088
23089
23089
23090
23090
23091
23091
23092
23092
23093
23093
23094
23094
23095
23095
23096
23096
23097
23097
23098
23098
23099
23099
23100
23100
23101
23101
23102
23102
23103
23103
23104
23104
23105
23105
23106
23106
23107
23107
23108
23108
23109
23109
23110
23110
23111
23111
23112
23112
23113
23113
23114
23114
23115
23115
23116
23116
23117
23117
23118
23118
23119
23119
23120
23120
23121
23121
23122
23122
23123
23123
23124
23124
23125
23125
23126
23126
23127
23127
23128
23128
23129
23129
23130
23130
23131
23131
23132
23132
23133
23133
23134
23134
23135
23135
23136
23136
23137
23137
23138
23138
23139
23139
23140
23140
23141
23141
23142
23142
23143
23143
23144
23144
23145
23145
23146
23146
23147
23147
23148
23148
23149
23149
23150
23150
23151
23151
23152
23152
23153
23153
23154
23154
23155
23155
23156
23156
23157
23157
23158
23158
23159
23159
23160
23160
23161
23161
23162
23162
23163
23163
23164
23164
23165
23165
23166
23166
23167
23167
23168
23168
23169
23169
23170
23170
23171
23171
23172
23172
23173
23173
23174
23174
23175
23175
23176
23176
23177
23177
23178
23178
23179
23179
23180
23180
23181
23181
23182
23182
23183
23183
23184
23184
23185
23185
23186
23186
23187
23187
23188
23188
23189
23189
23190
23190
23191
23191
23192
23192
23193
23193
23194
23194
23195
23195
23196
23196
23197
23197
23198
23198
23199
23199
23200
23200
23201
23201
23202
23202
23203
23203
23204
23204
23205
23205
23206
23206
23207
23207
23208
23208
23209
23209
23210
23210
23211
23211
23212
23212
23213
23213
23214
23214
23215
23215
23216
23216
23217
23217
23218
23218
23219
23219
23220
23220
23221
23221
23222
23222
23223
23223
23224
23224
23225
23225
23226
23226
23227
23227
23228
23228
23229
23229
23230
23230
23231
23231
23232
23232
23233
23233
23234
23234
23235
23235
23236
23236
23237
23237
23238
23238
23239
23239
23240
23240
23241
23241
23242
23242
23243
23243
23244
23244
23245
23245
23246
23246
23247
23247
23248
23248
23249
23249
23250
23250
23251
23251
23252
23252
23253
23253
23254
23254
23255
23255
23256
23256
23257
23257
23258
23258
23259
23259
23260
23260
23261
23261
23262
23262
23263
23263
23264
23264
23265
23265
23266
23266
23267
23267
23268
23268
23269
23269
23270
23271
23272
23273
23274
23275
23276
23277
23278
23279
23280
23281
23282
23283
23284
23285
23286
23287
23288
23289
23290
23291
23292
23293
23294
23295
23296
23297
23298
23299
23300
23300
23300
23301
23301
23301
23302
23302
23302
23303
23303
23303
23304
23304
23304
23305
23305
23305
23306
23306
23306
23307
23307
23307
23308
23308
23308
23309
23309
23309
23310
23310
23310
23311
23311
23311
23312
23312
23312
23313
23313
23313
23314
23314
23314
23315
23315
23315
23316
23316
23316
23317
23317
23317
23318
23318
23318
23319
23319
23319
23320
23320
23320
23321
23321
23321
23322
23322
23322
23323
23323
23323
23324
23324
23324
23325
23325
23325
23326
23326
23326
23327
23327
23327
23328
23328
23328
23329
23329
23329
23330
23330
23331
23331
23332
23332
23333
23333
23334
23334
23335
23335
23336
23336
23337
23337
23338
23338
23339
23339
23340
23340
23341
23341
23342
23342
23343
23343
23344
23344
23345
23345
23346
23346
23347
23347
23348
23348
23349
23349
23350
23350
23351
23351
23352
23352
23353
23353
23354
23354
23355
23355
23356
23356
23357
23357
23358
23358
23359
23359
23360
23360
23361
23361
23362
23362
23363
23363
23364
23364
23365
23365
23366
23366
23367
23367
23368
23368
23369
23369
23370
23370
23371
23371
23372
23372
23373
23373
23374
23374
23375
23375
23376
23376
23377
23377
23378
23378
23379
23379
23380
23380
23381
23381
23382
23382
23383
23383
23384
23384
23385
23385
23386
23386
23387
23387
23388
23388
23389
23389
23390
23390
23391
23391
23392
23392
23393
23393
23394
23394
23395
23395
23396
23396
23397
23397
23398
23398
23399
23399
23400
23400
23401
23401
23402
23402
23403
23403
23404
23404
23405
23405
23406
23406
23407
23407
23408
23408
23409
23409
23410
23410
23411
23411
23412
23412
23413
23413
23414
23414
23415
23415
23416
23416
23417
23417
23418
23418
23419
23419
23420
23420
23421
23421
23422
23422
23423
23423
23424
23424
23425
23425
23426
23426
23427
23427
23428
23428
23429
23429
23430
23430
23431
23431
23432
23432
23433
23433
23434
23434
23435
23435
23436
23436
23437
23437
23438
23438
23439
23439
23440
23440
23441
23441
23442
23442
23443
23443
23444
23444
23445
23445
23446
23446
23447
23447
23448
23448
23449
23449
23450
23450
23451
23451
23452
23452
23453
23453
23454
23454
23455
23455
23456
23456
23457
23457
23458
23458
23459
23459
23460
23460
23461
23461
23462
23462
23463
23463
23464
23464
23465
23465
23466
23466
23467
23467
23468
23468
23469
23469
23470
23470
23471
23471
23472
23472
23473
23473
23474
23474
23475
23475
23476
23476
23477
23477
23478
23478
23479
23479
23480
23480
23481
23481
23482
23482
23483
23483
23484
23484
23485
23485
23486
23486
23487
23487
23488
23488
23489
23489
23490
23490
23491
23491
23492
23492
23493
23493
23494
23494
23495
23495
23496
23496
23497
23497
23498
23498
23499
23499
23500
23500
23501
23501
23502
23502
23503
23503
23504
23504
23505
23505
23506
23506
23507
23507
23508
23508
23509
23509
23510
23510
23511
23511
23512
23512
23513
23513
23514
23514
23515
23515
23516
23516
23517
23517
23518
23518
23519
23519
23520
23520
23521
23521
23522
23522
23523
23523
23524
23524
23525
23525
23526
23526
23527
23527
23528
23528
23529
23529
23530
23530
23531
23531
23532
23532
23533
23533
23534
23534
23535
23535
23536
23536
23537
23537
23538
23538
23539
23539
23540
23540
23541
23541
23542
23542
23543
23543
23544
23544
23545
23545
23546
23546
23547
23547
23548
23548
23549
23549
23550
23550
23551
23551
23552
23552
23553
23553
23554
23554
23555
23555
23556
23556
23557
23557
23558
23558
23559
23559
23560
23560
23561
23561
23562
23562
23563
23563
23564
23564
23565
23565
23566
23566
23567
23567
23568
23568
23569
23569
23570
23570
23571
23571
23572
23572
23573
23573
23574
23574
23575
23575
23576
23576
23577
23577
23578
23578
23579
23579
23580
23580
23581
23581
23582
23582
23583
23583
23584
23584
23585
23585
23586
23586
23587
23587
23588
23588
23589
23589
23590
23590
23591
23591
23592
23592
23593
23593
23594
23594
23595
23595
23596
23596
23597
23597
23598
23598
23599
23599
23600
23600
23601
23601
23602
23602
23603
23603
23604
23604
23605
23605
23606
23606
23607
23607
23608
23608
23609
23609
23610
23610
23611
23611
23612
23612
23613
23613
23614
23614
23615
23615
23616
23616
23617
23617
23618
23618
23619
23619
23620
23620
23621
23621
23622
23622
23623
23623
23624
23624
23625
23625
23626
23626
23627
23627
23628
23628
23629
23629
23630
23630
23631
23631
23632
23632
23633
23633
23634
23634
23635
23635
23636
23636
23637
23637
23638
23638
23639
23639
23640
23640
23641
23641
23642
23642
23643
23643
23644
23644
23645
23645
23646
23646
23647
23647
23648
23648
23649
23649
23650
23650
23651
23651
23652
23652
23653
23653
23654
23654
23655
23655
23656
23656
23657
23657
23658
23658
23659
23659
23660
23660
23661
23661
23662
23662
23663
23663
23664
23664
23665
23665
23666
23666
23667
23667
23668
23668
23669
23669
23670
23670
23671
23671
23672
23672
23673
23673
23674
23674
23675
23675
23676
23676
23677
23677
23678
23678
23679
23679
23680
23680
23681
23681
23682
23682
23683
23683
23684
23684
23685
23685
23686
23686
23687
23687
23688
23688
23689
23689
23690
23690
23691
23691
23692
23692
23693
23693
23694
23694
23695
23695
23696
23696
23697
23697
23698
23698
23699
23699
23700
23700
23701
23701
23702
23702
23703
23703
23704
23704
23705
23705
23706
23706
23707
23707
23708
23708
23709
23709
23710
23710
23711
23711
23712
23712
23713
23713
23714
23714
23715
23715
23716
23716
23717
23717
23718
23718
23719
23719
23720
23720
23721
23721
23722
23722
23723
23723
23724
23724
23725
23725
23726
23726
23727
23727
23728
23728
23729
23729
23730
23730
23731
23731
23732
23732
23733
23733
23734
23734
23735
23735
23736
23736
23737
23737
23738
23738
23739
23739
23740
23740
23741
23741
23742
23742
23743
23743
23744
23744
23745
23745
23746
23746
23747
23747
23748
23748
23749
23749
23750
23750
23751
23751
23752
23752
23753
23753
23754
23754
23755
23755
23756
23756
23757
23757
23758
23758
23759
23759
23760
23760
23761
23761
23762
23762
23763
23763
23764
23764
23765
23765
23766
23766
23767
23767
23768
23768
23769
23769
23770
23770
23771
23771
23772
23772
23773
23773
23774
23774
23775
23775
23776
23776
23777
23777
23778
23778
23779
23779
23780
23780
23781
23781
23782
23782
23783
23783
23784
23784
23785
23785
23786
23786
23787
23787
23788
23788
23789
23789
23790
23790
23791
23791
23792
23792
23793
23793
23794
23794
23795
23795
23796
23796
23797
23797
23798
23798
23799
23799
23800
23800
23801
23801
23802
23802
23803
23803
23804
23804
23805
23805
23806
23806
23807
23807
23808
23808
23809
23809
23810
23810
23811
23811
23812
23812
23813
23813
23814
23814
23815
23815
23816
23816
23817
23817
23818
23818
23819
23819
23820
23820
23821
23821
23822
23822
23823
23823
23824
23824
23825
23825
23826
23826
23827
23827
23828
23828
23829
23829
23830
23830
23831
23831
23832
23832
23833
23833
23834
23834
23835
23835
23836
23836
23837
23837
23838
23838
23839
23839
23840
23840
23841
23841
23842
23842
23843
23843
23844
23844
23845
23845
23846
23846
23847
23847
23848
23848
23849
23849
23850
23850
23851
23851
23852
23852
23853
23853
23854
23854
23855
23855
23856
23856
23857
23857
23858
23858
23859
23859
23860
23860
23861
23861
23862
23862
23863
23863
23864
23864
23865
23865
23866
23866
23867
23867
23868
23868
23869
23869
23870
23871
23872
23873
23874
23875
23876
23877
23878
23879
23880
23881
23882
23883
23884
23885
23886
23887
23888
23889
23890
23891
23892
23893
23894
23895
23896
23897
23898
23899
23900
23900
23900
23901
23901
23901
23902
23902
23902
23903
23903
23903
23904
23904
23904
23905
23905
23905
23906
23906
23906
23907
23907
23907
23908
23908
23908
23909
23909
23909
23910
23910
23910
23911
23911
23911
23912
23912
23912
23913
23913
23913
23914
23914
23914
23915
23915
23915
23916
23916
23916
23917
23917
23917
23918
23918
23918
23919
23919
23919
23920
23920
23920
23921
23921
23921
23922
23922
23922
23923
23923
23923
23924
23924
23924
23925
23925
23925
23926
23926
23926
23927
23927
23927
23928
23928
23928
23929
23929
23929
23930
23930
23930
23931
23931
23931
23932
23932
23932
23933
23933
23933
23934
23934
23934
23935
23935
23935
23936
23936
23936
23937
23937
23937
23938
23938
23938
23939
23939
23939
23940
23940
23940
23941
23941
23941
23942
23942
23942
23943
23943
23943
23944
23944
23944
23945
23945
23945
23946
23946
23946
23947
23947
23947
23948
23948
23948
23949
23949
23949
23950
23950
23950
23951
23951
23951
23952
23952
23952
23953
23953
23953
23954
23954
23954
23955
23955
23955
23956
23956
23956
23957
23957
23957
23958
23958
23958
23959
23959
23959
23960
23960
23960
23961
23961
23961
23962
23962
23962
23963
23963
23963
23964
23964
23964
23965
23965
23965
23966
23966
23966
23967
23967
23967
23968
23968
23968
23969
23969
23969
23970
23970
23970
23971
23971
23971
23972
23972
23972
23973
23973
23973
23974
23974
23974
23975
23975
23975
23976
23976
23976
23977
23977
23977
23978
23978
23978
23979
23979
23979
23980
23980
23980
23981
23981
23981
23982
23982
23982
23983
23983
23983
23984
23984
23984
23985
23985
23985
23986
23986
23986
23987
23987
23987
23988
23988
23988
23989
23989
23989
23990
23990
23990
23991
23991
23991
23992
23992
23992
23993
23993
23993
23994
23994
23994
23995
23995
23995
23996
23996
23996
23997
23997
23997
23998
23998
23998
23999
23999
23999
24000
24000
24000
24001
24001
24001
24002
24002
24002
24003
24003
24003
24004
24004
24004
24005
24005
24005
24006
24006
24006
24007
24007
24007
24008
24008
24008
24009
24009
24009
24010
24010
24010
24011
24011
24011
24012
24012
24012
24013
24013
24013
24014
24014
24014
24015
24015
24015
24016
24016
24016
24017
24017
24017
24018
24018
24018
24019
24019
24019
24020
24020
24020
24021
24021
24021
24022
24022
24022
24023
24023
24023
24024
24024
24024
24025
24025
24025
24026
24026
24026
24027
24027
24027
24028
24028
24028
24029
24029
24029
24030
24030
24030
24031
24031
24031
24032
24032
24032
24033
24033
24033
24034
24034
24034
24035
24035
24035
24036
24036
24036
24037
24037
24037
24038
24038
24038
24039
24039
24039
24040
24040
24040
24041
24041
24041
24042
24042
24042
24043
24043
24043
24044
24044
24044
24045
24045
24045
24046
24046
24046
24047
24047
24047
24048
24048
24048
24049
24049
24049
24050
24050
24050
24051
24051
24051
24052
24052
24052
24053
24053
24053
24054
24054
24054
24055
24055
24055
24056
24056
24056
24057
24057
24057
24058
24058
24058
24059
24059
24059
24060
24060
24060
24061
24061
24061
24062
24062
24062
24063
24063
24063
24064
24064
24064
24065
24065
24065
24066
24066
24066
24067
24067
24067
24068
24068
24068
24069
24069
24069
24070
24070
24070
24071
24071
24071
24072
24072
24072
24073
24073
24073
24074
24074
24075
24075
24076
24076
24077
24077
24078
24078
24079
24079
24080
24080
24081
24081
24082
24082
24083
24083
24084
24084
24085
24085
24086
24086
24087
24087
24088
24088
24089
24089
24090
24090
24091
24091
24092
24092
24093
24093
24094
24094
24095
24095
24096
24096
24097
24097
24098
24098
24099
24099
24100
24100
24101
24101
24102
24102
24103
24103
24104
24104
24105
24105
24106
24106
24107
24107
24108
24108
24109
24109
24110
24110
24111
24111
24112
24112
24113
24113
24114
24114
24115
24115
24116
24116
24117
24117
24118
24118
24119
24119
24120
24120
24121
24121
24122
24122
24123
24123
24124
24124
24125
24125
24126
24126
24127
24127
24128
24128
24129
24129
24130
24130
24131
24131
24132
24132
24133
24133
24134
24134
24135
24135
24136
24136
24137
24137
24138
24138
24139
24139
24140
24140
24141
24141
24142
24142
24143
24143
24144
24144
24145
24145
24146
24146
24147
24147
24148
24148
24149
24149
24150
24150
24151
24151
24152
24152
24153
24153
24154
24154
24155
24155
24156
24156
24157
24157
24158
24158
24159
24159
24160
24160
24161
24161
24162
24162
24163
24163
24164
24164
24165
24165
24166
24166
24167
24167
24168
24168
24169
24169
24170
24170
24171
24171
24172
24172
24173
24173
24174
24174
24175
24175
24176
24176
24177
24177
24178
24178
24179
24179
24180
24180
24181
24181
24182
24182
24183
24183
24184
24184
24185
24185
24186
24186
24187
24187
24188
24188
24189
24189
24190
24190
24191
24191
24192
24192
24193
24193
24194
24194
24195
24195
24196
24196
24197
24197
24198
24198
24199
24199
24200
24200
24201
24201
24202
24202
24203
24203
24204
24204
24205
24205
24206
24206
24207
24207
24208
24208
24209
24209
24210
24210
24211
24211
24212
24212
24213
24213
24214
24214
24215
24215
24216
24216
24217
24217
24218
24218
24219
24219
24220
24220
24221
24221
24222
24222
24223
24223
24224
24224
24225
24225
24226
24226
24227
24227
24228
24228
24229
24229
24230
24230
24231
24231
24232
24232
24233
24233
24234
24234
24235
24235
24236
24236
24237
24237
24238
24238
24239
24239
24240
24240
24241
24241
24242
24242
24243
24243
24244
24244
24245
24245
24246
24246
24247
24247
24248
24248
24249
24250
24250
24251
24251
24252
24252
24253
24253
24254
24254
24255
24255
24256
24256
24257
24257
24258
24258
24259
24259
24260
24260
24261
24261
24262
24262
24263
24263
24264
24264
24265
24265
24266
24266
24267
24267
24268
24268
24269
24269
24270
24270
24271
24271
24272
24272
24273
24273
24274
24274
24275
24275
24276
24276
24277
24277
24278
24278
24279
24279
24280
24280
24281
24281
24282
24282
24283
24283
24284
24284
24285
24285
24286
24286
24287
24287
24288
24288
24289
24289
24290
24290
24291
24291
24292
24292
24293
24293
24294
24294
24295
24295
24296
24296
24297
24297
24298
24298
24299
24299
24300
24300
24301
24301
24302
24302
24303
24303
24304
24304
24305
24305
24306
24306
24307
24307
24308
24308
24309
24309
24310
24310
24311
24311
24312
24312
24313
24313
24314
24314
24315
24315
24316
24316
24317
24317
24318
24318
24319
24319
24320
24320
24321
24321
24322
24322
24323
24323
24324
24324
24325
24325
24326
24326
24327
24327
24328
24328
24329
24329
24330
24330
24331
24331
24332
24332
24333
24333
24334
24334
24335
24335
24336
24336
24337
24337
24338
24338
24339
24339
24340
24340
24341
24341
24342
24342
24343
24343
24344
24344
24345
24345
24346
24346
24347
24347
24348
24348
24349
24349
24350
24350
24351
24351
24352
24352
24353
24353
24354
24354
24355
24355
24356
24356
24357
24357
24358
24358
24359
24359
24360
24360
24361
24361
24362
24362
24363
24363
24364
24364
24365
24365
24366
24366
24367
24367
24368
24368
24369
24369
24370
24370
24371
24371
24372
24372
24373
24373
24374
24374
24375
24375
24376
24376
24377
24377
24378
24378
24379
24379
24380
24380
24381
24381
24382
24382
24383
24383
24384
24384
24385
24385
24386
24386
24387
24387
24388
24388
24389
24389
24390
24390
24391
24391
24392
24392
24393
24393
24394
24394
24395
24395
24396
24396
24397
24397
24398
24398
24399
24399
24400
24400
24401
24401
24402
24402
24403
24403
24404
24404
24405
24405
24406
24406
24407
24407
24408
24408
24409
24409
24410
24410
24411
24411
24412
24412
24413
24413
24414
24414
24415
24415
24416
24416
24417
24417
24418
24418
24419
24419
24420
24420
24421
24421
24422
24422
24423
24423
24424
24425
24425
24426
24426
24427
24427
24428
24428
24429
24429
24430
24430
24431
24431
24432
24432
24433
24433
24434
24434
24435
24435
24436
24436
24437
24437
24438
24438
24439
24439
24440
24440
24441
24441
24442
24442
24443
24443
24444
24444
24445
24445
24446
24446
24447
24447
24448
24448
24449
24449
24450
24450
24451
24451
24452
24452
24453
24453
24454
24454
24455
24455
24456
24456
24457
24457
24458
24458
24459
24459
24460
24460
24461
24461
24462
24462
24463
24463
24464
24464
24465
24465
24466
24466
24467
24467
24468
24468
24469
24469
24470
24470
24471
24471
24472
24472
24473
24473
24474
24474
24475
24475
24476
24476
24477
24477
24478
24478
24479
24479
24480
24480
24481
24481
24482
24482
24483
24483
24484
24484
24485
24485
24486
24486
24487
24487
24488
24488
24489
24489
24490
24490
24491
24491
24492
24492
24493
24493
24494
24494
24495
24495
24496
24496
24497
24497
24498
24498
24499
24499
24500
24500
24501
24501
24502
24502
24503
24503
24504
24504
24505
24505
24506
24506
24507
24507
24508
24508
24509
24509
24510
24510
24511
24511
24512
24512
24513
24513
24514
24514
24515
24515
24516
24516
24517
24517
24518
24518
24519
24519
24520
24520
24521
24521
24522
24522
24523
24523
24524
24524
24525
24525
24526
24526
24527
24527
24528
24528
24529
24529
24530
24530
24531
24531
24532
24532
24533
24533
24534
24534
24535
24535
24536
24536
24537
24537
24538
24538
24539
24539
24540
24540
24541
24541
24542
24542
24543
24543
24544
24544
24545
24545
24546
24546
24547
24547
24548
24548
24549
24549
24550
24550
24551
24551
24552
24552
24553
24553
24554
24554
24555
24555
24556
24556
24557
24557
24558
24558
24559
24559
24560
24560
24561
24561
24562
24562
24563
24563
24564
24564
24565
24565
24566
24566
24567
24567
24568
24568
24569
24569
24570
24570
24571
24571
24572
24572
24573
24573
24574
24574
24575
24575
24576
24576
24577
24577
24578
24578
24579
24579
24580
24580
24581
24581
24582
24582
24583
24583
24584
24584
24585
24585
24586
24586
24587
24587
24588
24588
24589
24589
24590
24590
24591
24591
24592
24592
24593
24593
24594
24594
24595
24595
24596
24596
24597
24597
24598
24598
24599
24600
24600
24601
24601
24602
24602
24603
24603
24604
24604
24605
24605
24606
24606
24607
24607
24608
24608
24609
24609
24610
24610
24611
24611
24612
24612
24613
24613
24614
24614
24615
24615
24616
24616
24617
24617
24618
24618
24619
24619
24620
24620
24621
24621
24622
24622
24623
24623
24624
24624
24625
24625
24626
24626
24627
24627
24628
24628
24629
24629
24630
24630
24631
24631
24632
24632
24633
24633
24634
24634
24635
24635
24636
24636
24637
24637
24638
24638
24639
24639
24640
24640
24641
24641
24642
24642
24643
24643
24644
24644
24645
24645
24646
24646
24647
24647
24648
24648
24649
24649
24650
24650
24651
24651
24652
24652
24653
24653
24654
24654
24655
24655
24656
24656
24657
24657
24658
24658
24659
24659
24660
24660
24661
24661
24662
24662
24663
24663
24664
24664
24665
24665
24666
24666
24667
24667
24668
24668
24669
24669
24670
24670
24671
24671
24672
24672
24673
24673
24674
24674
24675
24675
24676
24676
24677
24677
24678
24678
24679
24679
24680
24680
24681
24681
24682
24682
24683
24683
24684
24684
24685
24685
24686
24686
24687
24687
24688
24688
24689
24689
24690
24690
24691
24691
24692
24692
24693
24693
24694
24694
24695
24695
24696
24696
24697
24697
24698
24698
24699
24699
24700
24700
24701
24701
24702
24702
24703
24703
24704
24704
24705
24705
24706
24706
24707
24707
24708
24708
24709
24709
24710
24710
24711
24711
24712
24712
24713
24713
24714
24714
24715
24715
24716
24716
24717
24717
24718
24718
24719
24719
24720
24720
24721
24721
24722
24722
24723
24723
24724
24724
24725
24725
24726
24726
24727
24727
24728
24728
24729
24729
24730
24730
24731
24731
24732
24732
24733
24733
24734
24734
24735
24735
24736
24736
24737
24737
24738
24738
24739
24739
24740
24740
24741
24741
24742
24742
24743
24743
24744
24744
24745
24745
24746
24746
24747
24747
24748
24748
24749
24749
24750
24750
24751
24751
24752
24752
24753
24753
24754
24754
24755
24755
24756
24756
24757
24757
24758
24758
24759
24759
24760
24760
24761
24761
24762
24762
24763
24763
24764
24764
24765
24765
24766
24766
24767
24767
24768
24768
24769
24769
24770
24770
24771
24771
24772
24772
24773
24773
24774
24775
24775
24776
24776
24777
24777
24778
24778
24779
24779
24780
24780
24781
24781
24782
24782
24783
24783
24784
24784
24785
24785
24786
24786
24787
24787
24788
24788
24789
24789
24790
24790
24791
24791
24792
24792
24793
24793
24794
24794
24795
24795
24796
24796
24797
24797
24798
24798
24799
24799
24800
24800
24801
24801
24802
24802
24803
24803
24804
24804
24805
24805
24806
24806
24807
24807
24808
24808
24809
24809
24810
24810
24811
24811
24812
24812
24813
24813
24814
24814
24815
24815
24816
24816
24817
24817
24818
24818
24819
24819
24820
24820
24821
24821
24822
24822
24823
24823
24824
24824
24825
24825
24826
24826
24827
24827
24828
24828
24829
24829
24830
24830
24831
24831
24832
24832
24833
24833
24834
24834
24835
24835
24836
24836
24837
24837
24838
24838
24839
24839
24840
24840
24841
24841
24842
24842
24843
24843
24844
24844
24845
24845
24846
24846
24847
24847
24848
24848
24849
24849
24850
24850
24851
24851
24852
24852
24853
24853
24854
24854
24855
24855
24856
24856
24857
24857
24858
24858
24859
24859
24860
24860
24861
24861
24862
24862
24863
24863
24864
24864
24865
24865
24866
24866
24867
24867
24868
24868
24869
24869
24870
24870
24871
24871
24872
24872
24873
24873
24874
24874
24875
24875
24876
24876
24877
24877
24878
24878
24879
24879
24880
24880
24881
24881
24882
24882
24883
24883
24884
24884
24885
24885
24886
24886
24887
24887
24888
24888
24889
24889
24890
24890
24891
24891
24892
24892
24893
24893
24894
24894
24895
24895
24896
24896
24897
24897
24898
24898
24899
24899
24900
24900
24901
24901
24902
24902
24903
24903
24904
24904
24905
24905
24906
24906
24907
24907
24908
24908
24909
24909
24910
24910
24911
24911
24912
24912
24913
24913
24914
24914
24915
24915
24916
24916
24917
24917
24918
24918
24919
24919
24920
24920
24921
24921
24922
24922
24923
24923
24924
24924
24925
24925
24926
24926
24927
24927
24928
24928
24929
24929
24930
24930
24931
24931
24932
24932
24933
24933
24934
24934
24935
24935
24936
24936
24937
24937
24938
24938
24939
24939
24940
24940
24941
24941
24942
24942
24943
24943
24944
24944
24945
24945
24946
24946
24947
24947
24948
24948
24949
24950
24950
24951
24951
24952
24952
24953
24953
24954
24954
24955
24955
24956
24956
24957
24957
24958
24958
24959
24959
24960
24960
24961
24961
24962
24962
24963
24963
24964
24964
24965
24965
24966
24966
24967
24967
24968
24968
24969
24969
24970
24970
24971
24971
24972
24972
24973
24973
24974
24974
24975
24975
24976
24976
24977
24977
24978
24978
24979
24979
24980
24980
24981
24981
24982
24982
24983
24983
24984
24984
24985
24985
24986
24986
24987
24987
24988
24988
24989
24989
24990
24990
24991
24991
24992
24992
24993
24993
24994
24994
24995
24995
24996
24996
24997
24997
24998
24998
24999
24999
25000
25000
25001
25001
25002
25002
25003
25003
25004
25004
25005
25005
25006
25006
25007
25007
25008
25008
25009
25009
25010
25010
25011
25011
25012
25012
25013
25013
25014
25014
25015
25015
25016
25016
25017
25017
25018
25018
25019
25019
25020
25020
25021
25021
25022
25022
25023
25023
25024
25024
25025
25025
25026
25026
25027
25027
25028
25028
25029
25029
25030
25030
25031
25031
25032
25032
25033
25033
25034
25034
25035
25035
25036
25036
25037
25037
25038
25038
25039
25039
25040
25040
25041
25041
25042
25042
25043
25043
25044
25044
25045
25045
25046
25046
25047
25047
25048
25048
25049
25049
25050
25050
25051
25051
25052
25052
25053
25053
25054
25054
25055
25055
25056
25056
25057
25057
25058
25058
25059
25059
25060
25060
25061
25061
25062
25062
25063
25063
25064
25064
25065
25065
25066
25066
25067
25067
25068
25068
25069
25069
25070
25070
25071
25071
25072
25072
25073
25073
25074
25074
25075
25075
25076
25076
25077
25077
25078
25078
25079
25079
25080
25080
25081
25081
25082
25082
25083
25083
25084
25084
25085
25085
25086
25086
25087
25087
25088
25088
25089
25089
25090
25090
25091
25091
25092
25092
25093
25093
25094
25094
25095
25095
25096
25096
25097
25097
25098
25098
25099
25099
25100
25100
25101
25101
25102
25102
25103
25103
25104
25104
25105
25105
25106
25106
25107
25107
25108
25108
25109
25109
25110
25110
25111
25111
25112
25112
25113
25113
25114
25114
25115
25115
25116
25116
25117
25117
25118
25118
25119
25119
25120
25120
25121
25121
25122
25122
25123
25123
25124
25125
25125
25126
25126
25127
25127
25128
25128
25129
25129
25130
25130
25131
25131
25132
25132
25133
25133
25134
25134
25135
25135
25136
25136
25137
25137
25138
25138
25139
25139
25140
25140
25141
25141
25142
25142
25143
25143
25144
25144
25145
25145
25146
25146
25147
25147
25148
25148
25149
25149
25150
25150
25151
25151
25152
25152
25153
25153
25154
25154
25155
25155
25156
25156
25157
25157
25158
25158
25159
25159
25160
25160
25161
25161
25162
25162
25163
25163
25164
25164
25165
25165
25166
25166
25167
25167
25168
25168
25169
25169
25170
25170
25171
25171
25172
25172
25173
25173
25174
25174
25175
25175
25176
25176
25177
25177
25178
25178
25179
25179
25180
25180
25181
25181
25182
25182
25183
25183
25184
25184
25185
25185
25186
25186
25187
25187
25188
25188
25189
25189
25190
25190
25191
25191
25192
25192
25193
25193
25194
25194
25195
25195
25196
25196
25197
25197
25198
25198
25199
25199
25200
25200
25201
25201
25202
25202
25203
25203
25204
25204
25205
25205
25206
25206
25207
25207
25208
25208
25209
25209
25210
25210
25211
25211
25212
25212
25213
25213
25214
25214
25215
25215
25216
25216
25217
25217
25218
25218
25219
25219
25220
25220
25221
25221
25222
25222
25223
25223
25224
25224
25225
25225
25226
25226
25227
25227
25228
25228
25229
25229
25230
25230
25231
25231
25232
25232
25233
25233
25234
25234
25235
25235
25236
25236
25237
25237
25238
25238
25239
25239
25240
25240
25241
25241
25242
25242
25243
25243
25244
25244
25245
25245
25246
25246
25247
25247
25248
25248
25249
25249
25250
25250
25251
25251
25252
25252
25253
25253
25254
25254
25255
25255
25256
25256
25257
25257
25258
25258
25259
25259
25260
25260
25261
25261
25262
25262
25263
25263
25264
25264
25265
25265
25266
25266
25267
25267
25268
25268
25269
25269
25270
25270
25271
25271
25272
25272
25273
25273
25274
25274
25275
25275
25276
25276
25277
25277
25278
25278
25279
25279
25280
25280
25281
25281
25282
25282
25283
25283
25284
25284
25285
25285
25286
25286
25287
25287
25288
25288
25289
25289
25290
25290
25291
25291
25292
25292
25293
25293
25294
25294
25295
25295
25296
25296
25297
25297
25298
25298
25299
25300
25300
25301
25301
25302
25302
25303
25303
25304
25304
25305
25305
25306
25306
25307
25307
25308
25308
25309
25309
25310
25310
25311
25311
25312
25312
25313
25313
25314
25314
25315
25315
25316
25316
25317
25317
25318
25318
25319
25319
25320
25320
25321
25321
25322
25322
25323
25323
25324
25324
25325
25325
25326
25326
25327
25327
25328
25328
25329
25329
25330
25330
25331
25331
25332
25332
25333
25333
25334
25334
25335
25335
25336
25336
25337
25337
25338
25338
25339
25339
25340
25340
25341
25341
25342
25342
25343
25343
25344
25344
25345
25345
25346
25346
25347
25347
25348
25348
25349
25349
25350
25350
25351
25351
25352
25352
25353
25353
25354
25354
25355
25355
25356
25356
25357
25357
25358
25358
25359
25359
25360
25360
25361
25361
25362
25362
25363
25363
25364
25364
25365
25365
25366
25366
25367
25367
25368
25368
25369
25369
25370
25370
25371
25371
25372
25372
25373
25373
25374
25374
25375
25375
25376
25376
25377
25377
25378
25378
25379
25379
25380
25380
25381
25381
25382
25382
25383
25383
25384
25384
25385
25385
25386
25386
25387
25387
25388
25388
25389
25389
25390
25390
25391
25391
25392
25392
25393
25393
25394
25394
25395
25395
25396
25396
25397
25397
25398
25398
25399
25399
25400
25400
25401
25401
25402
25402
25403
25403
25404
25404
25405
25405
25406
25406
25407
25407
25408
25408
25409
25409
25410
25410
25411
25411
25412
25412
25413
25413
25414
25414
25415
25415
25416
25416
25417
25417
25418
25418
25419
25419
25420
25420
25421
25421
25422
25422
25423
25423
25424
25424
25425
25425
25426
25426
25427
25427
25428
25428
25429
25429
25430
25430
25431
25431
25432
25432
25433
25433
25434
25434
25435
25435
25436
25436
25437
25437
25438
25438
25439
25439
25440
25440
25441
25441
25442
25442
25443
25443
25444
25444
25445
25445
25446
25446
25447
25447
25448
25448
25449
25449
25450
25450
25451
25451
25452
25452
25453
25453
25454
25454
25455
25455
25456
25456
25457
25457
25458
25458
25459
25459
25460
25460
25461
25461
25462
25462
25463
25463
25464
25464
25465
25465
25466
25466
25467
25467
25468
25468
25469
25469
25470
25470
25471
25471
25472
25472
25473
25473
25474
25475
25475
25476
25476
25477
25477
25478
25478
25479
25479
25480
25480
25481
25481
25482
25482
25483
25483
25484
25484
25485
25485
25486
25486
25487
25487
25488
25488
25489
25489
25490
25490
25491
25491
25492
25492
25493
25493
25494
25494
25495
25495
25496
25496
25497
25497
25498
25498
25499
25499
25500
25500
25501
25501
25502
25502
25503
25503
25504
25504
25505
25505
25506
25506
25507
25507
25508
25508
25509
25509
25510
25510
25511
25511
25512
25512
25513
25513
25514
25514
25515
25515
25516
25516
25517
25517
25518
25518
25519
25519
25520
25520
25521
25521
25522
25522
25523
25523
25524
25524
25525
25525
25526
25526
25527
25527
25528
25528
25529
25529
25530
25530
25531
25531
25532
25532
25533
25533
25534
25534
25535
25535
25536
25536
25537
25537
25538
25538
25539
25539
25540
25540
25541
25541
25542
25542
25543
25543
25544
25544
25545
25545
25546
25546
25547
25547
25548
25548
25549
25549
25550
25550
25551
25551
25552
25552
25553
25553
25554
25554
25555
25555
25556
25556
25557
25557
25558
25558
25559
25559
25560
25560
25561
25561
25562
25562
25563
25563
25564
25564
25565
25565
25566
25566
25567
25567
25568
25568
25569
25569
25570
25570
25571
25571
25572
25572
25573
25573
25574
25574
25575
25575
25576
25576
25577
25577
25578
25578
25579
25579
25580
25580
25581
25581
25582
25582
25583
25583
25584
25584
25585
25585
25586
25586
25587
25587
25588
25588
25589
25589
25590
25590
25591
25591
25592
25592
25593
25593
25594
25594
25595
25595
25596
25596
25597
25597
25598
25598
25599
25599
25600
25600
25601
25601
25602
25602
25603
25603
25604
25604
25605
25605
25606
25606
25607
25607
25608
25608
25609
25609
25610
25610
25611
25611
25612
25612
25613
25613
25614
25614
25615
25615
25616
25616
25617
25617
25618
25618
25619
25619
25620
25620
25621
25621
25622
25622
25623
25623
25624
25624
25625
25625
25626
25626
25627
25627
25628
25628
25629
25629
25630
25630
25631
25631
25632
25632
25633
25633
25634
25634
25635
25635
25636
25636
25637
25637
25638
25638
25639
25639
25640
25640
25641
25641
25642
25642
25643
25643
25644
25644
25645
25645
25646
25646
25647
25647
25648
25648
25649
25650
25650
25651
25651
25652
25652
25653
25653
25654
25654
25655
25655
25656
25656
25657
25657
25658
25658
25659
25659
25660
25660
25661
25661
25662
25662
25663
25663
25664
25664
25665
25665
25666
25666
25667
25667
25668
25668
25669
25669
25670
25670
25671
25671
25672
25672
25673
25673
25674
25674
25675
25675
25676
25676
25677
25677
25678
25678
25679
25679
25680
25680
25681
25681
25682
25682
25683
25683
25684
25684
25685
25685
25686
25686
25687
25687
25688
25688
25689
25689
25690
25690
25691
25691
25692
25692
25693
25693
25694
25694
25695
25695
25696
25696
25697
25697
25698
25698
25699
25699
25700
25700
25701
25701
25702
25702
25703
25703
25704
25704
25705
25705
25706
25706
25707
25707
25708
25708
25709
25709
25710
25710
25711
25711
25712
25712
25713
25713
25714
25714
25715
25715
25716
25716
25717
25717
25718
25718
25719
25719
25720
25720
25721
25721
25722
25722
25723
25723
25724
25724
25725
25725
25726
25726
25727
25727
25728
25728
25729
25729
25730
25730
25731
25731
25732
25732
25733
25733
25734
25734
25735
25735
25736
25736
25737
25737
25738
25738
25739
25739
25740
25740
25741
25741
25742
25742
25743
25743
25744
25744
25745
25745
25746
25746
25747
25747
25748
25748
25749
25749
25750
25750
25751
25751
25752
25752
25753
25753
25754
25754
25755
25755
25756
25756
25757
25757
25758
25758
25759
25759
25760
25760
25761
25761
25762
25762
25763
25763
25764
25764
25765
25765
25766
25766
25767
25767
25768
25768
25769
25769
25770
25770
25771
25771
25772
25772
25773
25773
25774
25774
25775
25775
25776
25776
25777
25777
25778
25778
25779
25779
25780
25780
25781
25781
25782
25782
25783
25783
25784
25784
25785
25785
25786
25786
25787
25787
25788
25788
25789
25789
25790
25790
25791
25791
25792
25792
25793
25793
25794
25794
25795
25795
25796
25796
25797
25797
25798
25798
25799
25799
25800
25800
25801
25801
25802
25802
25803
25803
25804
25804
25805
25805
25806
25806
25807
25807
25808
25808
25809
25809
25810
25810
25811
25811
25812
25812
25813
25813
25814
25814
25815
25815
25816
25816
25817
25817
25818
25818
25819
25819
25820
25820
25821
25821
25822
25822
25823
25823
25824
25825
25825
25826
25826
25827
25827
25828
25828
25829
25829
25830
25830
25831
25831
25832
25832
25833
25833
25834
25834
25835
25835
25836
25836
25837
25837
25838
25838
25839
25839
25840
25840
25841
25841
25842
25842
25843
25843
25844
25844
25845
25845
25846
25846
25847
25847
25848
25848
25849
25849
25850
25850
25851
25851
25852
25852
25853
25853
25854
25854
25855
25855
25856
25856
25857
25857
25858
25858
25859
25859
25860
25860
25861
25861
25862
25862
25863
25863
25864
25864
25865
25865
25866
25866
25867
25867
25868
25868
25869
25869
25870
25870
25871
25871
25872
25872
25873
25873
25874
25874
25875
25875
25876
25876
25877
25877
25878
25878
25879
25879
25880
25880
25881
25881
25882
25882
25883
25883
25884
25884
25885
25885
25886
25886
25887
25887
25888
25888
25889
25889
25890
25890
25891
25891
25892
25892
25893
25893
25894
25894
25895
25895
25896
25896
25897
25897
25898
25898
25899
25899
25900
25900
25901
25901
25902
25902
25903
25903
25904
25904
25905
25905
25906
25906
25907
25907
25908
25908
25909
25909
25910
25910
25911
25911
25912
25912
25913
25913
25914
25914
25915
25915
25916
25916
25917
25917
25918
25918
25919
25919
25920
25920
25921
25921
25922
25922
25923
25923
25924
25924
25925
25925
25926
25926
25927
25927
25928
25928
25929
25929
25930
25930
25931
25931
25932
25932
25933
25933
25934
25934
25935
25935
25936
25936
25937
25937
25938
25938
25939
25939
25940
25940
25941
25941
25942
25942
25943
25943
25944
25944
25945
25945
25946
25946
25947
25947
25948
25948
25949
25949
25950
25950
25951
25951
25952
25952
25953
25953
25954
25954
25955
25955
25956
25956
25957
25957
25958
25958
25959
25959
25960
25960
25961
25961
25962
25962
25963
25963
25964
25964
25965
25965
25966
25966
25967
25967
25968
25968
25969
25969
25970
25970
25971
25971
25972
25972
25973
25973
25974
25974
25975
25975
25976
25976
25977
25977
25978
25978
25979
25979
25980
25980
25981
25981
25982
25982
25983
25983
25984
25984
25985
25985
25986
25986
25987
25987
25988
25988
25989
25989
25990
25990
25991
25991
25992
25992
25993
25993
25994
25994
25995
25995
25996
25996
25997
25997
25998
25998
25999
26000
26000
26001
26001
26002
26002
26003
26003
26004
26004
26005
26005
26006
26006
26007
26007
26008
26008
26009
26009
26010
26010
26011
26011
26012
26012
26013
26013
26014
26014
26015
26015
26016
26016
26017
26017
26018
26018
26019
26019
26020
26020
26021
26021
26022
26022
26023
26023
26024
26024
26025
26025
26026
26026
26027
26027
26028
26028
26029
26029
26030
26030
26031
26031
26032
26032
26033
26033
26034
26034
26035
26035
26036
26036
26037
26037
26038
26038
26039
26039
26040
26040
26041
26041
26042
26042
26043
26043
26044
26044
26045
26045
26046
26046
26047
26047
26048
26048
26049
26049
26050
26050
26051
26051
26052
26052
26053
26053
26054
26054
26055
26055
26056
26056
26057
26057
26058
26058
26059
26059
26060
26060
26061
26061
26062
26062
26063
26063
26064
26064
26065
26065
26066
26066
26067
26067
26068
26068
26069
26069
26070
26070
26071
26071
26072
26072
26073
26073
26074
26074
26075
26075
26076
26076
26077
26077
26078
26078
26079
26079
26080
26080
26081
26081
26082
26082
26083
26083
26084
26084
26085
26085
26086
26086
26087
26087
26088
26088
26089
26089
26090
26090
26091
26091
26092
26092
26093
26093
26094
26094
26095
26095
26096
26096
26097
26097
26098
26098
26099
26099
26100
26100
26101
26101
26102
26102
26103
26103
26104
26104
26105
26105
26106
26106
26107
26107
26108
26108
26109
26109
26110
26110
26111
26111
26112
26112
26113
26113
26114
26114
26115
26115
26116
26116
26117
26117
26118
26118
26119
26119
26120
26120
26121
26121
26122
26122
26123
26123
26124
26124
26125
26125
26126
26126
26127
26127
26128
26128
26129
26129
26130
26130
26131
26131
26132
26132
26133
26133
26134
26134
26135
26135
26136
26136
26137
26137
26138
26138
26139
26139
26140
26140
26141
26141
26142
26142
26143
26143
26144
26144
26145
26145
26146
26146
26147
26147
26148
26148
26149
26149
26150
26150
26151
26151
26152
26152
26153
26153
26154
26154
26155
26155
26156
26156
26157
26157
26158
26158
26159
26159
26160
26160
26161
26161
26162
26162
26163
26163
26164
26164
26165
26165
26166
26166
26167
26167
26168
26168
26169
26169
26170
26170
26171
26171
26172
26172
26173
26173
26174
26175
26175
26176
26176
26177
26177
26178
26178
26179
26179
26180
26180
26181
26181
26182
26182
26183
26183
26184
26184
26185
26185
26186
26186
26187
26187
26188
26188
26189
26189
26190
26190
26191
26191
26192
26192
26193
26193
26194
26194
26195
26195
26196
26196
26197
26197
26198
26198
26199
26199
26200
26200
26201
26201
26202
26202
26203
26203
26204
26204
26205
26205
26206
26206
26207
26207
26208
26208
26209
26209
26210
26210
26211
26211
26212
26212
26213
26213
26214
26214
26215
26215
26216
26216
26217
26217
26218
26218
26219
26219
26220
26220
26221
26221
26222
26222
26223
26223
26224
26224
26225
26225
26226
26226
26227
26227
26228
26228
26229
26229
26230
26230
26231
26231
26232
26232
26233
26233
26234
26234
26235
26235
26236
26236
26237
26237
26238
26238
26239
26239
26240
26240
26241
26241
26242
26242
26243
26243
26244
26244
26245
26245
26246
26246
26247
26247
26248
26248
26249
26249
26250
26250
26251
26251
26252
26252
26253
26253
26254
26254
26255
26255
26256
26256
26257
26257
26258
26258
26259
26259
26260
26260
26261
26261
26262
26262
26263
26263
26264
26264
26265
26265
26266
26266
26267
26267
26268
26268
26269
26269
26270
26270
26271
26271
26272
26272
26273
26273
26274
26274
26275
26275
26276
26276
26277
26277
26278
26278
26279
26279
26280
26280
26281
26281
26282
26282
26283
26283
26284
26284
26285
26285
26286
26286
26287
26287
26288
26288
26289
26289
26290
26290
26291
26291
26292
26292
26293
26293
26294
26294
26295
26295
26296
26296
26297
26297
26298
26298
26299
26299
26300
26300
26301
26301
26302
26302
26303
26303
26304
26304
26305
26305
26306
26306
26307
26307
26308
26308
26309
26309
26310
26310
26311
26311
26312
26312
26313
26313
26314
26314
26315
26315
26316
26316
26317
26317
26318
26318
26319
26319
26320
26320
26321
26321
26322
26322
26323
26323
26324
26324
26325
26325
26326
26326
26327
26327
26328
26328
26329
26329
26330
26330
26331
26331
26332
26332
26333
26333
26334
26334
26335
26335
26336
26336
26337
26337
26338
26338
26339
26339
26340
26340
26341
26341
26342
26342
26343
26343
26344
26344
26345
26345
26346
26346
26347
26347
26348
26348
26349
26350
26350
26351
26351
26352
26352
26353
26353
26354
26354
26355
26355
26356
26356
26357
26357
26358
26358
26359
26359
26360
26360
26361
26361
26362
26362
26363
26363
26364
26364
26365
26365
26366
26366
26367
26367
26368
26368
26369
26369
26370
26370
26371
26371
26372
26372
26373
26373
26374
26374
26375
26375
26376
26376
26377
26377
26378
26378
26379
26379
26380
26380
26381
26381
26382
26382
26383
26383
26384
26384
26385
26385
26386
26386
26387
26387
26388
26388
26389
26389
26390
26390
26391
26391
26392
26392
26393
26393
26394
26394
26395
26395
26396
26396
26397
26397
26398
26398
26399
26399
26400
26400
26401
26401
26402
26402
26403
26403
26404
26404
26405
26405
26406
26406
26407
26407
26408
26408
26409
26409
26410
26410
26411
26411
26412
26412
26413
26413
26414
26414
26415
26415
26416
26416
26417
26417
26418
26418
26419
26419
26420
26420
26421
26421
26422
26422
26423
26423
26424
26424
26425
26425
26426
26426
26427
26427
26428
26428
26429
26429
26430
26430
26431
26431
26432
26432
26433
26433
26434
26434
26435
26435
26436
26436
26437
26437
26438
26438
26439
26439
26440
26440
26441
26441
26442
26442
26443
26443
26444
26444
26445
26445
26446
26446
26447
26447
26448
26448
26449
26449
26450
26450
26451
26451
26452
26452
26453
26453
26454
26454
26455
26455
26456
26456
26457
26457
26458
26458
26459
26459
26460
26460
26461
26461
26462
26462
26463
26463
26464
26464
26465
26465
26466
26466
26467
26467
26468
26468
26469
26469
26470
26470
26471
26471
26472
26472
26473
26473
26474
26474
26475
26475
26476
26476
26477
26477
26478
26478
26479
26479
26480
26480
26481
26481
26482
26482
26483
26483
26484
26484
26485
26485
26486
26486
26487
26487
26488
26488
26489
26489
26490
26490
26491
26491
26492
26492
26493
26493
26494
26494
26495
26495
26496
26496
26497
26497
26498
26498
26499
26499
26500
26500
26501
26501
26502
26502
26503
26503
26504
26504
26505
26505
26506
26506
26507
26507
26508
26508
26509
26509
26510
26510
26511
26511
26512
26512
26513
26513
26514
26514
26515
26515
26516
26516
26517
26517
26518
26518
26519
26519
26520
26520
26521
26521
26522
26522
26523
26523
26524
26525
26525
26526
26526
26527
26527
26528
26528
26529
26529
26530
26530
26531
26531
26532
26532
26533
26533
26534
26534
26535
26535
26536
26536
26537
26537
26538
26538
26539
26539
26540
26540
26541
26541
26542
26542
26543
26543
26544
26544
26545
26545
26546
26546
26547
26547
26548
26548
26549
26549
26550
26550
26551
26551
26552
26552
26553
26553
26554
26554
26555
26555
26556
26556
26557
26557
26558
26558
26559
26559
26560
26560
26561
26561
26562
26562
26563
26563
26564
26564
26565
26565
26566
26566
26567
26567
26568
26568
26569
26569
26570
26570
26571
26571
26572
26572
26573
26573
26574
26574
26575
26575
26576
26576
26577
26577
26578
26578
26579
26579
26580
26580
26581
26581
26582
26582
26583
26583
26584
26584
26585
26585
26586
26586
26587
26587
26588
26588
26589
26589
26590
26590
26591
26591
26592
26592
26593
26593
26594
26594
26595
26595
26596
26596
26597
26597
26598
26598
26599
26599
26600
26600
26601
26601
26602
26602
26603
26603
26604
26604
26605
26605
26606
26606
26607
26607
26608
26608
26609
26609
26610
26610
26611
26611
26612
26612
26613
26613
26614
26614
26615
26615
26616
26616
26617
26617
26618
26618
26619
26619
26620
26620
26621
26621
26622
26622
26623
26623
26624
26624
26625
26625
26626
26626
26627
26627
26628
26628
26629
26629
26630
26630
26631
26631
26632
26632
26633
26633
26634
26634
26635
26635
26636
26636
26637
26637
26638
26638
26639
26639
26640
26640
26641
26641
26642
26642
26643
26643
26644
26644
26645
26645
26646
26646
26647
26647
26648
26648
26649
26649
26650
26650
26651
26651
26652
26652
26653
26653
26654
26654
26655
26655
26656
26656
26657
26657
26658
26658
26659
26659
26660
26660
26661
26661
26662
26662
26663
26663
26664
26664
26665
26665
26666
26666
26667
26667
26668
26668
26669
26669
26670
26670
26671
26671
26672
26672
26673
26673
26674
26674
26675
26675
26676
26676
26677
26677
26678
26678
26679
26679
26680
26680
26681
26681
26682
26682
26683
26683
26684
26684
26685
26685
26686
26686
26687
26687
26688
26688
26689
26689
26690
26690
26691
26691
26692
26692
26693
26693
26694
26694
26695
26695
26696
26696
26697
26697
26698
26698
26699
26700
26700
26701
26701
26702
26702
26703
26703
26704
26704
26705
26705
26706
26706
26707
26707
26708
26708
26709
26709
26710
26710
26711
26711
26712
26712
26713
26713
26714
26714
26715
26715
26716
26716
26717
26717
26718
26718
26719
26719
26720
26720
26721
26721
26722
26722
26723
26723
26724
26724
26725
26725
26726
26726
26727
26727
26728
26728
26729
26729
26730
26730
26731
26731
26732
26732
26733
26733
26734
26734
26735
26735
26736
26736
26737
26737
26738
26738
26739
26739
26740
26740
26741
26741
26742
26742
26743
26743
26744
26744
26745
26745
26746
26746
26747
26747
26748
26748
26749
26749
26750
26750
26751
26751
26752
26752
26753
26753
26754
26754
26755
26755
26756
26756
26757
26757
26758
26758
26759
26759
26760
26760
26761
26761
26762
26762
26763
26763
26764
26764
26765
26765
26766
26766
26767
26767
26768
26768
26769
26769
26770
26770
26771
26771
26772
26772
26773
26773
26774
26774
26775
26775
26776
26776
26777
26777
26778
26778
26779
26779
26780
26780
26781
26781
26782
26782
26783
26783
26784
26784
26785
26785
26786
26786
26787
26787
26788
26788
26789
26789
26790
26790
26791
26791
26792
26792
26793
26793
26794
26794
26795
26795
26796
26796
26797
26797
26798
26798
26799
26799
26800
26800
26801
26801
26802
26802
26803
26803
26804
26804
26805
26805
26806
26806
26807
26807
26808
26808
26809
26809
26810
26810
26811
26811
26812
26812
26813
26813
26814
26814
26815
26815
26816
26816
26817
26817
26818
26818
26819
26819
26820
26820
26821
26821
26822
26822
26823
26823
26824
26824
26825
26825
26826
26826
26827
26827
26828
26828
26829
26829
26830
26830
26831
26831
26832
26832
26833
26833
26834
26834
26835
26835
26836
26836
26837
26837
26838
26838
26839
26839
26840
26840
26841
26841
26842
26842
26843
26843
26844
26844
26845
26845
26846
26846
26847
26847
26848
26848
26849
26849
26850
26850
26851
26851
26852
26852
26853
26853
26854
26854
26855
26855
26856
26856
26857
26857
26858
26858
26859
26859
26860
26860
26861
26861
26862
26862
26863
26863
26864
26864
26865
26865
26866
26866
26867
26867
26868
26868
26869
26869
26870
26870
26871
26871
26872
26872
26873
26873
26874
26875
26875
26876
26876
26877
26877
26878
26878
26879
26879
26880
26880
26881
26881
26882
26882
26883
26883
26884
26884
26885
26885
26886
26886
26887
26887
26888
26888
26889
26889
26890
26890
26891
26891
26892
26892
26893
26893
26894
26894
26895
26895
26896
26896
26897
26897
26898
26898
26899
26899
26900
26900
26901
26901
26902
26902
26903
26903
26904
26904
26905
26905
26906
26906
26907
26907
26908
26908
26909
26909
26910
26910
26911
26911
26912
26912
26913
26913
26914
26914
26915
26915
26916
26916
26917
26917
26918
26918
26919
26919
26920
26920
26921
26921
26922
26922
26923
26923
26924
26924
26925
26925
26926
26926
26927
26927
26928
26928
26929
26929
26930
26930
26931
26931
26932
26932
26933
26933
26934
26934
26935
26935
26936
26936
26937
26937
26938
26938
26939
26939
26940
26940
26941
26941
26942
26942
26943
26943
26944
26944
26945
26945
26946
26946
26947
26947
26948
26948
26949
26949
26950
26950
26951
26951
26952
26952
26953
26953
26954
26954
26955
26955
26956
26956
26957
26957
26958
26958
26959
26959
26960
26960
26961
26961
26962
26962
26963
26963
26964
26964
26965
26965
26966
26966
26967
26967
26968
26968
26969
26969
26970
26970
26971
26971
26972
26972
26973
26973
26974
26974
26975
26975
26976
26976
26977
26977
26978
26978
26979
26979
26980
26980
26981
26981
26982
26982
26983
26983
26984
26984
26985
26985
26986
26986
26987
26987
26988
26988
26989
26989
26990
26990
26991
26991
26992
26992
26993
26993
26994
26994
26995
26995
26996
26996
26997
26997
26998
26998
26999
26999
27000
27000
27001
27001
27002
27002
27003
27003
27004
27004
27005
27005
27006
27006
27007
27007
27008
27008
27009
27009
27010
27010
27011
27011
27012
27012
27013
27013
27014
27014
27015
27015
27016
27016
27017
27017
27018
27018
27019
27019
27020
27020
27021
27021
27022
27022
27023
27023
27024
27024
27025
27025
27026
27026
27027
27027
27028
27028
27029
27029
27030
27030
27031
27031
27032
27032
27033
27033
27034
27034
27035
27035
27036
27036
27037
27037
27038
27038
27039
27039
27040
27040
27041
27041
27042
27042
27043
27043
27044
27044
27045
27045
27046
27046
27047
27047
27048
27048
27049
27050
27050
27051
27051
27052
27052
27053
27053
27054
27054
27055
27055
27056
27056
27057
27057
27058
27058
27059
27059
27060
27060
27061
27061
27062
27062
27063
27063
27064
27064
27065
27065
27066
27066
27067
27067
27068
27068
27069
27069
27070
27070
27071
27071
27072
27072
27073
27073
27074
27074
27075
27075
27076
27076
27077
27077
27078
27078
27079
27079
27080
27080
27081
27081
27082
27082
27083
27083
27084
27084
27085
27085
27086
27086
27087
27087
27088
27088
27089
27089
27090
27090
27091
27091
27092
27092
27093
27093
27094
27094
27095
27095
27096
27096
27097
27097
27098
27098
27099
27099
27100
27100
27101
27101
27102
27102
27103
27103
27104
27104
27105
27105
27106
27106
27107
27107
27108
27108
27109
27109
27110
27110
27111
27111
27112
27112
27113
27113
27114
27114
27115
27115
27116
27116
27117
27117
27118
27118
27119
27119
27120
27120
27121
27121
27122
27122
27123
27123
27124
27124
27125
27125
27126
27126
27127
27127
27128
27128
27129
27129
27130
27130
27131
27131
27132
27132
27133
27133
27134
27134
27135
27135
27136
27136
27137
27137
27138
27138
27139
27139
27140
27140
27141
27141
27142
27142
27143
27143
27144
27144
27145
27145
27146
27146
27147
27147
27148
27148
27149
27149
27150
27150
27151
27151
27152
27152
27153
27153
27154
27154
27155
27155
27156
27156
27157
27157
27158
27158
27159
27159
27160
27160
27161
27161
27162
27162
27163
27163
27164
27164
27165
27165
27166
27166
27167
27167
27168
27168
27169
27169
27170
27170
27171
27171
27172
27172
27173
27173
27174
27174
27175
27175
27176
27176
27177
27177
27178
27178
27179
27179
27180
27180
27181
27181
27182
27182
27183
27183
27184
27184
27185
27185
27186
27186
27187
27187
27188
27188
27189
27189
27190
27190
27191
27191
27192
27192
27193
27193
27194
27194
27195
27195
27196
27196
27197
27197
27198
27198
27199
27199
27200
27200
27201
27201
27202
27202
27203
27203
27204
27204
27205
27205
27206
27206
27207
27207
27208
27208
27209
27209
27210
27210
27211
27211
27212
27212
27213
27213
27214
27214
27215
27215
27216
27216
27217
27217
27218
27218
27219
27219
27220
27220
27221
27221
27222
27222
27223
27223
27224
27225
27226
27227
27228
27229
27230
27231
27232
27233
27234
27235
27236
27237
27238
27239
27240
27241
27242
27243
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259
27260
27261
27262
27263
27264
27265
27266
27267
27268
27269
27270
27271
27272
27273
27274
27275
27276
27277
27278
27279
27280
27281
27282
27283
27284
27285
27286
27287
27288
27289
27290
27291
27292
27293
27294
27295
27296
27297
27298
27299
27300
27301
27302
27303
27304
27305
27306
27307
27308
27309
27310
27311
27312
27313
27314
27315
27316
27317
27318
27319
27320
27321
27322
27323
27324
27325
27326
27327
27328
27329
27330
27331
27332
27333
27334
27335
27336
27337
27338
27339
27340
27341
27342
27343
27344
27345
27346
27347
27348
27349
27350
27351
27352
27353
27354
27355
27356
27357
27358
27359
27360
27361
27362
27363
27364
27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
27376
27377
27378
27379
27380
27381
27382
27383
27384
27385
27386
27387
27388
27389
27390
27391
27392
27393
27394
27395
27396
27397
27398
27400
27400
27401
27401
27402
27402
27403
27403
27404
27404
27405
27405
27406
27406
27407
27407
27408
27408
27409
27409
27410
27410
27411
27411
27412
27412
27413
27413
27414
27414
27415
27415
27416
27416
27417
27417
27418
27418
27419
27419
27420
27420
27421
27421
27422
27422
27423
27423
27424
27424
27425
27425
27426
27426
27427
27427
27428
27428
27429
27429
27430
27430
27431
27431
27432
27432
27433
27433
27434
27434
27435
27435
27436
27436
27437
27437
27438
27438
27439
27439
27440
27440
27441
27441
27442
27442
27443
27443
27444
27444
27445
27445
27446
27446
27447
27447
27448
27448
27449
27449
27450
27450
27451
27451
27452
27452
27453
27453
27454
27454
27455
27455
27456
27456
27457
27457
27458
27458
27459
27459
27460
27460
27461
27461
27462
27462
27463
27463
27464
27464
27465
27465
27466
27466
27467
27467
27468
27468
27469
27469
27470
27470
27471
27471
27472
27472
27473
27473
27474
27474
27475
27475
27476
27476
27477
27477
27478
27478
27479
27479
27480
27480
27481
27481
27482
27482
27483
27483
27484
27484
27485
27485
27486
27486
27487
27487
27488
27488
27489
27489
27490
27490
27491
27491
27492
27492
27493
27493
27494
27494
27495
27495
27496
27496
27497
27497
27498
27498
27499
27499
27500
27500
27501
27501
27502
27502
27503
27503
27504
27504
27505
27505
27506
27506
27507
27507
27508
27508
27509
27509
27510
27510
27511
27511
27512
27512
27513
27513
27514
27514
27515
27515
27516
27516
27517
27517
27518
27518
27519
27519
27520
27520
27521
27521
27522
27522
27523
27523
27524
27524
27525
27525
27526
27526
27527
27527
27528
27528
27529
27529
27530
27530
27531
27531
27532
27532
27533
27533
27534
27534
27535
27535
27536
27536
27537
27537
27538
27538
27539
27539
27540
27540
27541
27541
27542
27542
27543
27543
27544
27544
27545
27545
27546
27546
27547
27547
27548
27548
27549
27549
27550
27550
27551
27551
27552
27552
27553
27553
27554
27554
27555
27555
27556
27556
27557
27557
27558
27558
27559
27559
27560
27560
27561
27561
27562
27562
27563
27563
27564
27564
27565
27565
27566
27566
27567
27567
27568
27568
27569
27569
27570
27570
27571
27571
27572
27572
27573
27573
27574
27574
27575
27575
27576
27576
27577
27577
27578
27578
27579
27579
27580
27580
27581
27581
27582
27582
27583
27583
27584
27584
27585
27585
27586
27586
27587
27587
27588
27588
27589
27589
27590
27590
27591
27591
27592
27592
27593
27593
27594
27594
27595
27595
27596
27596
27597
27597
27598
27598
27599
27599
27600
27600
27601
27601
27602
27602
27603
27603
27604
27604
27605
27605
27606
27606
27607
27607
27608
27608
27609
27609
27610
27610
27611
27611
27612
27612
27613
27613
27614
27614
27615
27615
27616
27616
27617
27617
27618
27618
27619
27619
27620
27620
27621
27621
27622
27622
27623
27623
27624
27624
27625
27625
27626
27626
27627
27627
27628
27628
27629
27629
27630
27630
27631
27631
27632
27632
27633
27633
27634
27634
27635
27635
27636
27636
27637
27637
27638
27638
27639
27639
27640
27640
27641
27641
27642
27642
27643
27643
27644
27644
27645
27645
27646
27646
27647
27647
27648
27648
27649
27649
27650
27650
27651
27651
27652
27652
27653
27653
27654
27654
27655
27655
27656
27656
27657
27657
27658
27658
27659
27659
27660
27660
27661
27661
27662
27662
27663
27663
27664
27664
27665
27665
27666
27666
27667
27667
27668
27668
27669
27669
27670
27670
27671
27671
27672
27672
27673
27673
27674
27674
27675
27675
27676
27676
27677
27677
27678
27678
27679
27679
27680
27680
27681
27681
27682
27682
27683
27683
27684
27684
27685
27685
27686
27686
27687
27687
27688
27688
27689
27689
27690
27690
27691
27691
27692
27692
27693
27693
27694
27694
27695
27695
27696
27696
27697
27697
27698
27698
27699
27699
27700
27700
27701
27701
27702
27702
27703
27703
27704
27704
27705
27705
27706
27706
27707
27707
27708
27708
27709
27709
27710
27710
27711
27711
27712
27712
27713
27713
27714
27714
27715
27715
27716
27716
27717
27717
27718
27718
27719
27719
27720
27720
27721
27721
27722
27722
27723
27723
27724
27724
27725
27725
27726
27726
27727
27727
27728
27728
27729
27729
27730
27730
27731
27731
27732
27732
27733
27733
27734
27734
27735
27735
27736
27736
27737
27737
27738
27738
27739
27739
27740
27740
27741
27741
27742
27742
27743
27743
27744
27744
27745
27745
27746
27746
27747
27747
27748
27748
27749
27749
27750
27750
27751
27751
27752
27752
27753
27753
27754
27754
27755
27755
27756
27756
27757
27757
27758
27758
27759
27759
27760
27760
27761
27761
27762
27762
27763
27763
27764
27764
27765
27765
27766
27766
27767
27767
27768
27768
27769
27769
27770
27770
27771
27771
27772
27772
27773
27773
27774
27774
27775
27775
27776
27776
27777
27777
27778
27778
27779
27779
27780
27780
27781
27781
27782
27782
27783
27783
27784
27784
27785
27785
27786
27786
27787
27787
27788
27788
27789
27789
27790
27790
27791
27791
27792
27792
27793
27793
27794
27794
27795
27795
27796
27796
27797
27797
27798
27798
27799
27799
27800
27800
27801
27801
27802
27802
27803
27803
27804
27804
27805
27805
27806
27806
27807
27807
27808
27808
27809
27809
27810
27810
27811
27811
27812
27812
27813
27813
27814
27814
27815
27815
27816
27816
27817
27817
27818
27818
27819
27819
27820
27820
27821
27821
27822
27822
27823
27823
27824
27824
27825
27825
27826
27826
27827
27827
27828
27828
27829
27829
27830
27830
27831
27831
27832
27832
27833
27833
27834
27834
27835
27835
27836
27836
27837
27837
27838
27838
27839
27839
27840
27840
27841
27841
27842
27842
27843
27843
27844
27844
27845
27845
27846
27846
27847
27847
27848
27848
27849
27849
27850
27850
27851
27851
27852
27852
27853
27853
27854
27854
27855
27855
27856
27856
27857
27857
27858
27858
27859
27859
27860
27860
27861
27861
27862
27862
27863
27863
27864
27864
27865
27865
27866
27866
27867
27867
27868
27868
27869
27869
27870
27870
27871
27871
27872
27872
27873
27873
27874
27874
27875
27875
27876
27876
27877
27877
27878
27878
27879
27879
27880
27880
27881
27881
27882
27882
27883
27883
27884
27884
27885
27885
27886
27886
27887
27887
27888
27888
27889
27889
27890
27890
27891
27891
27892
27892
27893
27893
27894
27894
27895
27895
27896
27896
27897
27897
27898
27898
27899
27899
27900
27900
27901
27901
27902
27902
27903
27903
27904
27904
27905
27905
27906
27906
27907
27907
27908
27908
27909
27909
27910
27910
27911
27911
27912
27912
27913
27913
27914
27914
27915
27915
27916
27916
27917
27917
27918
27918
27919
27919
27920
27920
27921
27921
27922
27922
27923
27923
27924
27924
27925
27925
27926
27926
27927
27927
27928
27928
27929
27929
27930
27930
27931
27931
27932
27932
27933
27933
27934
27934
27935
27935
27936
27936
27937
27937
27938
27938
27939
27939
27940
27940
27941
27941
27942
27942
27943
27943
27944
27944
27945
27945
27946
27946
27947
27947
27948
27948
27949
27949
27950
27950
27951
27951
27952
27952
27953
27953
27954
27954
27955
27955
27956
27956
27957
27957
27958
27958
27959
27959
27960
27960
27961
27961
27962
27962
27963
27963
27964
27964
27965
27965
27966
27966
27967
27967
27968
27968
27969
27969
27970
27970
27971
27971
27972
27972
27973
27973
27974
27974
27975
27975
27976
27976
27977
27977
27978
27978
27979
27979
27980
27980
27981
27981
27982
27982
27983
27983
27984
27984
27985
27985
27986
27986
27987
27987
27988
27988
27989
27989
27990
27990
27991
27991
27992
27992
27993
27993
27994
27994
27995
27995
27996
27996
27997
27997
27998
27998
27999
27999
28000
28000
28001
28001
28002
28002
28003
28003
28004
28004
28005
28005
28006
28006
28007
28007
28008
28008
28009
28009
28010
28010
28011
28011
28012
28012
28013
28013
28014
28014
28015
28015
28016
28016
28017
28017
28018
28018
28019
28019
28020
28020
28021
28021
28022
28022
28023
28023
28024
28024
28025
28025
28026
28026
28027
28027
28028
28028
28029
28029
28030
28030
28031
28031
28032
28032
28033
28033
28034
28034
28035
28035
28036
28036
28037
28037
28038
28038
28039
28039
28040
28040
28041
28041
28042
28042
28043
28043
28044
28044
28045
28045
28046
28046
28047
28047
28048
28048
28049
28049
28050
28050
28051
28051
28052
28052
28053
28053
28054
28054
28055
28055
28056
28056
28057
28057
28058
28058
28059
28059
28060
28060
28061
28061
28062
28062
28063
28063
28064
28064
28065
28065
28066
28066
28067
28067
28068
28068
28069
28069
28070
28070
28071
28071
28072
28072
28073
28073
28074
28074
28075
28075
28076
28076
28077
28077
28078
28078
28079
28079
28080
28080
28081
28081
28082
28082
28083
28083
28084
28084
28085
28085
28086
28086
28087
28087
28088
28088
28089
28089
28090
28090
28091
28091
28092
28092
28093
28093
28094
28094
28095
28095
28096
28096
28097
28097
28098
28098
28099
28099
28100
28100
28101
28101
28102
28102
28103
28103
28104
28104
28105
28105
28106
28106
28107
28107
28108
28108
28109
28109
28110
28110
28111
28111
28112
28112
28113
28113
28114
28114
28115
28115
28116
28116
28117
28117
28118
28118
28119
28119
28120
28120
28121
28121
28122
28122
28123
28123
28124
28124
28125
28125
28126
28126
28127
28127
28128
28128
28129
28129
28130
28130
28131
28131
28132
28132
28133
28133
28134
28134
28135
28135
28136
28136
28137
28137
28138
28138
28139
28139
28140
28140
28141
28141
28142
28142
28143
28143
28144
28144
28145
28145
28146
28146
28147
28147
28148
28148
28149
28149
28150
28150
28151
28151
28152
28152
28153
28153
28154
28154
28155
28155
28156
28156
28157
28157
28158
28158
28159
28159
28160
28160
28161
28161
28162
28162
28163
28163
28164
28164
28165
28165
28166
28166
28167
28167
28168
28168
28169
28169
28170
28170
28171
28171
28172
28172
28173
28173
28174
28174
28175
28175
28176
28176
28177
28177
28178
28178
28179
28179
28180
28180
28181
28181
28182
28182
28183
28183
28184
28184
28185
28185
28186
28186
28187
28187
28188
28188
28189
28189
28190
28190
28191
28191
28192
28192
28193
28193
28194
28194
28195
28195
28196
28196
28197
28197
28198
28198
28199
28199
28200
28200
28201
28201
28202
28202
28203
28203
28204
28204
28205
28205
28206
28206
28207
28207
28208
28208
28209
28209
28210
28210
28211
28211
28212
28212
28213
28213
28214
28214
28215
28215
28216
28216
28217
28217
28218
28218
28219
28219
28220
28220
28221
28221
28222
28222
28223
28223
28224
28224
28225
28225
28226
28226
28227
28227
28228
28228
28229
28229
28230
28230
28231
28231
28232
28232
28233
28233
28234
28234
28235
28235
28236
28236
28237
28237
28238
28238
28239
28239
28240
28240
28241
28241
28242
28242
28243
28243
28244
28244
28245
28245
28246
28246
28247
28247
28248
28248
28249
28249
28250
28250
28251
28251
28252
28252
28253
28253
28254
28254
28255
28255
28256
28256
28257
28257
28258
28258
28259
28259
28260
28260
28261
28261
28262
28262
28263
28263
28264
28264
28265
28265
28266
28266
28267
28267
28268
28268
28269
28269
28270
28270
28271
28271
28272
28272
28273
28273
28274
28274
28275
28275
28276
28276
28277
28277
28278
28278
28279
28279
28280
28280
28281
28281
28282
28282
28283
28283
28284
28284
28285
28285
28286
28286
28287
28287
28288
28288
28289
28289
28290
28290
28291
28291
28292
28292
28293
28293
28294
28294
28295
28295
28296
28296
28297
28297
28298
28298
28299
28299
28300
28300
28301
28301
28302
28302
28303
28303
28304
28304
28305
28305
28306
28306
28307
28307
28308
28308
28309
28309
28310
28310
28311
28311
28312
28312
28313
28313
28314
28314
28315
28315
28316
28316
28317
28317
28318
28318
28319
28319
28320
28320
28321
28321
28322
28322
28323
28323
28324
28324
28325
28325
28326
28326
28327
28327
28328
28328
28329
28329
28330
28330
28331
28331
28332
28332
28333
28333
28334
28334
28335
28335
28336
28336
28337
28337
28338
28338
28339
28339
28340
28340
28341
28341
28342
28342
28343
28343
28344
28344
28345
28345
28346
28346
28347
28347
28348
28348
28349
28349
28350
28350
28351
28351
28352
28352
28353
28353
28354
28354
28355
28355
28356
28356
28357
28357
28358
28358
28359
28359
28360
28360
28361
28361
28362
28362
28363
28363
28364
28364
28365
28365
28366
28366
28367
28367
28368
28368
28369
28369
28370
28370
28371
28371
28372
28372
28373
28373
28374
28374
28375
28375
28376
28376
28377
28377
28378
28378
28379
28379
28380
28380
28381
28381
28382
28382
28383
28383
28384
28384
28385
28385
28386
28386
28387
28387
28388
28388
28389
28389
28390
28390
28391
28391
28392
28392
28393
28393
28394
28394
28395
28395
28396
28396
28397
28397
28398
28398
28399
28399
28400
28400
28401
28401
28402
28402
28403
28403
28404
28404
28405
28405
28406
28406
28407
28407
28408
28408
28409
28409
28410
28410
28411
28411
28412
28412
28413
28413
28414
28414
28415
28415
28416
28416
28417
28417
28418
28418
28419
28419
28420
28420
28421
28421
28422
28422
28423
28423
28424
28424
28425
28425
28426
28426
28427
28427
28428
28428
28429
28429
28430
28430
28431
28431
28432
28432
28433
28433
28434
28434
28435
28435
28436
28436
28437
28437
28438
28438
28439
28439
28440
28440
28441
28441
28442
28442
28443
28443
28444
28444
28445
28445
28446
28446
28447
28447
28448
28448
28449
28449
28450
28450
28451
28451
28452
28452
28453
28453
28454
28454
28455
28455
28456
28456
28457
28457
28458
28458
28459
28459
28460
28460
28461
28461
28462
28462
28463
28463
28464
28464
28465
28465
28466
28466
28467
28467
28468
28468
28469
28469
28470
28470
28471
28471
28472
28472
28473
28473
28474
28474
28475
28475
28476
28476
28477
28477
28478
28478
28479
28479
28480
28480
28481
28481
28482
28482
28483
28483
28484
28484
28485
28485
28486
28486
28487
28487
28488
28488
28489
28489
28490
28490
28491
28491
28492
28492
28493
28493
28494
28494
28495
28495
28496
28496
28497
28497
28498
28498
28499
28499
28500
28500
28501
28501
28502
28502
28503
28503
28504
28504
28505
28505
28506
28506
28507
28507
28508
28508
28509
28509
28510
28510
28511
28511
28512
28512
28513
28513
28514
28514
28515
28515
28516
28516
28517
28517
28518
28518
28519
28519
28520
28520
28521
28521
28522
28522
28523
28523
28524
28524
28525
28525
28526
28526
28527
28527
28528
28528
28529
28529
28530
28530
28531
28531
28532
28532
28533
28533
28534
28534
28535
28535
28536
28536
28537
28537
28538
28538
28539
28539
28540
28540
28541
28541
28542
28542
28543
28543
28544
28544
28545
28545
28546
28546
28547
28547
28548
28548
28549
28549
28550
28550
28551
28551
28552
28552
28553
28553
28554
28554
28555
28555
28556
28556
28557
28557
28558
28558
28559
28559
28560
28560
28561
28561
28562
28562
28563
28563
28564
28564
28565
28565
28566
28566
28567
28567
28568
28568
28569
28569
28570
28570
28571
28571
28572
28572
28573
28573
28574
28574
28575
28575
28576
28576
28577
28577
28578
28578
28579
28579
28580
28580
28581
28581
28582
28582
28583
28583
28584
28584
28585
28585
28586
28586
28587
28587
28588
28588
28589
28589
28590
28590
28591
28591
28592
28592
28593
28593
28594
28594
28595
28595
28596
28596
28597
28597
28598
28598
28599
28599
28600
28600
28601
28601
28602
28602
28603
28603
28604
28604
28605
28605
28606
28606
28607
28607
28608
28608
28609
28609
28610
28610
28611
28611
28612
28612
28613
28613
28614
28614
28615
28615
28616
28616
28617
28617
28618
28618
28619
28619
28620
28620
28621
28621
28622
28622
28623
28623
28624
28624
28625
28625
28626
28626
28627
28627
28628
28628
28629
28629
28630
28630
28631
28631
28632
28632
28633
28633
28634
28634
28635
28635
28636
28636
28637
28637
28638
28638
28639
28639
28640
28640
28641
28641
28642
28642
28643
28643
28644
28644
28645
28645
28646
28646
28647
28647
28648
28648
28649
28649
28650
28650
28651
28651
28652
28652
28653
28653
28654
28654
28655
28655
28656
28656
28657
28657
28658
28658
28659
28659
28660
28660
28661
28661
28662
28662
28663
28663
28664
28664
28665
28665
28666
28666
28667
28667
28668
28668
28669
28669
28670
28670
28671
28671
28672
28672
28673
28673
28674
28674
28675
28675
28676
28676
28677
28677
28678
28678
28679
28679
28680
28680
28681
28681
28682
28682
28683
28683
28684
28684
28685
28685
28686
28686
28687
28687
28688
28688
28689
28689
28690
28690
28691
28691
28692
28692
28693
28693
28694
28694
28695
28695
28696
28696
28697
28697
28698
28698
28699
28699
28700
28700
28701
28701
28702
28702
28703
28703
28704
28704
28705
28705
28706
28706
28707
28707
28708
28708
28709
28709
28710
28710
28711
28711
28712
28712
28713
28713
28714
28714
28715
28715
28716
28716
28717
28717
28718
28718
28719
28719
28720
28720
28721
28721
28722
28722
28723
28723
28724
28724
28725
28725
28726
28726
28727
28727
28728
28728
28729
28729
28730
28730
28731
28731
28732
28732
28733
28733
28734
28734
28735
28735
28736
28736
28737
28737
28738
28738
28739
28739
28740
28740
28741
28741
28742
28742
28743
28743
28744
28744
28745
28745
28746
28746
28747
28747
28748
28748
28749
28749
28750
28750
28751
28751
28752
28752
28753
28753
28754
28754
28755
28755
28756
28756
28757
28757
28758
28758
28759
28759
28760
28760
28761
28761
28762
28762
28763
28763
28764
28764
28765
28765
28766
28766
28767
28767
28768
28768
28769
28769
28770
28770
28771
28771
28772
28772
28773
28773
28774
28774
28775
28775
28776
28776
28777
28777
28778
28778
28779
28779
28780
28780
28781
28781
28782
28782
28783
28783
28784
28784
28785
28785
28786
28786
28787
28787
28788
28788
28789
28789
28790
28790
28791
28791
28792
28792
28793
28793
28794
28794
28795
28795
28796
28796
28797
28797
28798
28798
28799
28799
28800
28800
28801
28801
28802
28802
28803
28803
28804
28804
28805
28805
28806
28806
28807
28807
28808
28808
28809
28809
28810
28810
28811
28811
28812
28812
28813
28813
28814
28814
28815
28815
28816
28816
28817
28817
28818
28818
28819
28819
28820
28820
28821
28821
28822
28822
28823
28823
28824
28824
28825
28825
28826
28826
28827
28827
28828
28828
28829
28829
28830
28830
28831
28831
28832
28832
28833
28833
28834
28834
28835
28835
28836
28836
28837
28837
28838
28838
28839
28839
28840
28840
28841
28841
28842
28842
28843
28843
28844
28844
28845
28845
28846
28846
28847
28847
28848
28848
28849
28849
28850
28850
28851
28851
28852
28852
28853
28853
28854
28854
28855
28855
28856
28856
28857
28857
28858
28858
28859
28859
28860
28860
28861
28861
28862
28862
28863
28863
28864
28864
28865
28865
28866
28866
28867
28867
28868
28868
28869
28869
28870
28870
28871
28871
28872
28872
28873
28873
28874
28874
28875
28875
28876
28876
28877
28877
28878
28878
28879
28879
28880
28880
28881
28881
28882
28882
28883
28883
28884
28884
28885
28885
28886
28886
28887
28887
28888
28888
28889
28889
28890
28890
28891
28891
28892
28892
28893
28893
28894
28894
28895
28895
28896
28896
28897
28897
28898
28898
28899
28899
28900
28900
28901
28901
28902
28902
28903
28903
28904
28904
28905
28905
28906
28906
28907
28907
28908
28908
28909
28909
28910
28910
28911
28911
28912
28912
28913
28913
28914
28914
28915
28915
28916
28916
28917
28917
28918
28918
28919
28919
28920
28920
28921
28921
28922
28922
28923
28923
28924
28924
28925
28925
28926
28926
28927
28927
28928
28928
28929
28929
28930
28930
28931
28931
28932
28932
28933
28933
28934
28934
28935
28935
28936
28936
28937
28937
28938
28938
28939
28939
28940
28940
28941
28941
28942
28942
28943
28943
28944
28944
28945
28945
28946
28946
28947
28947
28948
28948
28949
28949
28950
28950
28951
28951
28952
28952
28953
28953
28954
28954
28955
28955
28956
28956
28957
28957
28958
28958
28959
28959
28960
28960
28961
28961
28962
28962
28963
28963
28964
28964
28965
28965
28966
28966
28967
28967
28968
28968
28969
28969
28970
28970
28971
28971
28972
28972
28973
28973
28974
28974
28975
28975
28976
28976
28977
28977
28978
28978
28979
28979
28980
28980
28981
28981
28982
28982
28983
28983
28984
28984
28985
28985
28986
28986
28987
28987
28988
28988
28989
28989
28990
28990
28991
28991
28992
28992
28993
28993
28994
28994
28995
28995
28996
28996
28997
28997
28998
28998
28999
28999
29000
29000
29001
29001
29002
29002
29003
29003
29004
29004
29005
29005
29006
29006
29007
29007
29008
29008
29009
29009
29010
29010
29011
29011
29012
29012
29013
29013
29014
29014
29015
29015
29016
29016
29017
29017
29018
29018
29019
29019
29020
29020
29021
29021
29022
29022
29023
29023
29024
29024
29025
29025
29026
29026
29027
29027
29028
29028
29029
29029
29030
29030
29031
29031
29032
29032
29033
29033
29034
29034
29035
29035
29036
29036
29037
29037
29038
29038
29039
29039
29040
29040
29041
29041
29042
29042
29043
29043
29044
29044
29045
29045
29046
29046
29047
29047
29048
29048
29049
29049
29050
29050
29051
29051
29052
29052
29053
29053
29054
29054
29055
29055
29056
29056
29057
29057
29058
29058
29059
29059
29060
29060
29061
29061
29062
29062
29063
29063
29064
29064
29065
29065
29066
29066
29067
29067
29068
29068
29069
29069
29070
29070
29071
29071
29072
29072
29073
29073
29074
29074
29075
29075
29076
29076
29077
29077
29078
29078
29079
29079
29080
29080
29081
29081
29082
29082
29083
29083
29084
29084
29085
29085
29086
29086
29087
29087
29088
29088
29089
29089
29090
29090
29091
29091
29092
29092
29093
29093
29094
29094
29095
29095
29096
29096
29097
29097
29098
29098
29099
29099
29100
29100
29101
29101
29102
29102
29103
29103
29104
29104
29105
29105
29106
29106
29107
29107
29108
29108
29109
29109
29110
29110
29111
29111
29112
29112
29113
29113
29114
29114
29115
29115
29116
29116
29117
29117
29118
29118
29119
29119
29120
29120
29121
29121
29122
29122
29123
29123
29124
29124
29125
29125
29126
29126
29127
29127
29128
29128
29129
29129
29130
29130
29131
29131
29132
29132
29133
29133
29134
29134
29135
29135
29136
29136
29137
29137
29138
29138
29139
29139
29140
29140
29141
29141
29142
29142
29143
29143
29144
29144
29145
29145
29146
29146
29147
29147
29148
29148
29149
29149
29150
29150
29151
29151
29152
29152
29153
29153
29154
29154
29155
29155
29156
29156
29157
29157
29158
29158
29159
29159
29160
29160
29161
29161
29162
29162
29163
29163
29164
29164
29165
29165
29166
29166
29167
29167
29168
29168
29169
29169
29170
29170
29171
29171
29172
29172
29173
29173
29174
29174
29175
29175
29176
29176
29177
29177
29178
29178
29179
29179
29180
29180
29181
29181
29182
29182
29183
29183
29184
29184
29185
29185
29186
29186
29187
29187
29188
29188
29189
29189
29190
29190
29191
29191
29192
29192
29193
29193
29194
29194
29195
29195
29196
29196
29197
29197
29198
29198
29199
29199
29200
29200
29201
29201
29202
29202
29203
29203
29204
29204
29205
29205
29206
29206
29207
29207
29208
29208
29209
29209
29210
29210
29211
29211
29212
29212
29213
29213
29214
29214
29215
29215
29216
29216
29217
29217
29218
29218
29219
29219
29220
29220
29221
29221
29222
29222
29223
29223
29224
29224
29225
29225
29226
29226
29227
29227
29228
29228
29229
29229
29230
29230
29231
29231
29232
29232
29233
29233
29234
29234
29235
29235
29236
29236
29237
29237
29238
29238
29239
29239
29240
29240
29241
29241
29242
29242
29243
29243
29244
29244
29245
29245
29246
29246
29247
29247
29248
29248
29249
29249
29250
29250
29251
29251
29252
29252
29253
29253
29254
29254
29255
29255
29256
29256
29257
29257
29258
29258
29259
29259
29260
29260
29261
29261
29262
29262
29263
29263
29264
29264
29265
29265
29266
29266
29267
29267
29268
29268
29269
29269
29270
29270
29271
29271
29272
29272
29273
29273
29274
29274
29275
29275
29276
29276
29277
29277
29278
29278
29279
29279
29280
29280
29281
29281
29282
29282
29283
29283
29284
29284
29285
29285
29286
29286
29287
29287
29288
29288
29289
29289
29290
29290
29291
29291
29292
29292
29293
29293
29294
29294
29295
29295
29296
29296
29297
29297
29298
29298
29299
29299
29300
29300
29301
29301
29302
29302
29303
29303
29304
29304
29305
29305
29306
29306
29307
29307
29308
29308
29309
29309
29310
29310
29311
29311
29312
29312
29313
29313
29314
29314
29315
29315
29316
29316
29317
29317
29318
29318
29319
29319
29320
29320
29321
29321
29322
29322
29323
29323
29324
29324
29325
29325
29326
29326
29327
29327
29328
29328
29329
29329
29330
29330
29331
29331
29332
29332
29333
29333
29334
29334
29335
29335
29336
29336
29337
29337
29338
29338
29339
29339
29340
29340
29341
29341
29342
29342
29343
29343
29344
29344
29345
29345
29346
29346
29347
29347
29348
29348
29349
29349
29350
29350
29351
29351
29352
29352
29353
29353
29354
29354
29355
29355
29356
29356
29357
29357
29358
29358
29359
29359
29360
29360
29361
29361
29362
29362
29363
29363
29364
29364
29365
29365
29366
29366
29367
29367
29368
29368
29369
29369
29370
29370
29371
29371
29372
29372
29373
29373
29374
29374
29375
29375
29376
29376
29377
29377
29378
29378
29379
29379
29380
29380
29381
29381
29382
29382
29383
29383
29384
29384
29385
29385
29386
29386
29387
29387
29388
29388
29389
29389
29390
29390
29391
29391
29392
29392
29393
29393
29394
29394
29395
29395
29396
29396
29397
29397
29398
29398
29399
29399
29400
29400
29401
29401
29402
29402
29403
29403
29404
29404
29405
29405
29406
29406
29407
29407
29408
29408
29409
29409
29410
29410
29411
29411
29412
29412
29413
29413
29414
29414
29415
29415
29416
29416
29417
29417
29418
29418
29419
29419
29420
29420
29421
29421
29422
29422
29423
29423
29424
29424
29425
29425
29426
29426
29427
29427
29428
29428
29429
29429
29430
29430
29431
29431
29432
29432
29433
29433
29434
29434
29435
29435
29436
29436
29437
29437
29438
29438
29439
29439
29440
29440
29441
29441
29442
29442
29443
29443
29444
29444
29445
29445
29446
29446
29447
29447
29448
29448
29449
29449
29450
29450
29451
29451
29452
29452
29453
29453
29454
29454
29455
29455
29456
29456
29457
29457
29458
29458
29459
29459
29460
29460
29461
29461
29462
29462
29463
29463
29464
29464
29465
29465
29466
29466
29467
29467
29468
29468
29469
29469
29470
29470
29471
29471
29472
29472
29473
29473
29474
29474
29475
29475
29476
29476
29477
29477
29478
29478
29479
29479
29480
29480
29481
29481
29482
29482
29483
29483
29484
29484
29485
29485
29486
29486
29487
29487
29488
29488
29489
29489
29490
29490
29491
29491
29492
29492
29493
29493
29494
29494
29495
29495
29496
29496
29497
29497
29498
29498
29499
29499
29500
29500
29501
29501
29502
29502
29503
29503
29504
29504
29505
29505
29506
29506
29507
29507
29508
29508
29509
29509
29510
29510
29511
29511
29512
29512
29513
29513
29514
29514
29515
29515
29516
29516
29517
29517
29518
29518
29519
29519
29520
29520
29521
29521
29522
29522
29523
29523
29524
29524
29525
29525
29526
29526
29527
29527
29528
29528
29529
29529
29530
29530
29531
29531
29532
29532
29533
29533
29534
29534
29535
29535
29536
29536
29537
29537
29538
29538
29539
29539
29540
29540
29541
29541
29542
29542
29543
29543
29544
29544
29545
29545
29546
29546
29547
29547
29548
29548
29549
29549
29550
29550
29551
29551
29552
29552
29553
29553
29554
29554
29555
29555
29556
29556
29557
29557
29558
29558
29559
29559
29560
29560
29561
29561
29562
29562
29563
29563
29564
29564
29565
29565
29566
29566
29567
29567
29568
29568
29569
29569
29570
29570
29571
29571
29572
29572
29573
29573
29574
29574
29575
29575
29576
29576
29577
29577
29578
29578
29579
29579
29580
29580
29581
29581
29582
29582
29583
29583
29584
29584
29585
29585
29586
29586
29587
29587
29588
29588
29589
29589
29590
29590
29591
29591
29592
29592
29593
29593
29594
29594
29595
29595
29596
29596
29597
29597
29598
29598
29599
29599
29600
29600
29601
29601
29602
29602
29603
29603
29604
29604
29605
29605
29606
29606
29607
29607
29608
29608
29609
29609
29610
29610
29611
29611
29612
29612
29613
29613
29614
29614
29615
29615
29616
29616
29617
29617
29618
29618
29619
29619
29620
29620
29621
29621
29622
29622
29623
29623
29624
29624
29625
29625
29626
29626
29627
29627
29628
29628
29629
29629
29630
29630
29631
29631
29632
29632
29633
29633
29634
29634
29635
29635
29636
29636
29637
29637
29638
29638
29639
29639
29640
29640
29641
29641
29642
29642
29643
29643
29644
29644
29645
29645
29646
29646
29647
29647
29648
29648
29649
29649
29650
29650
29651
29651
29652
29652
29653
29653
29654
29654
29655
29655
29656
29656
29657
29657
29658
29658
29659
29659
29660
29660
29661
29661
29662
29662
29663
29663
29664
29664
29665
29665
29666
29666
29667
29667
29668
29668
29669
29669
29670
29670
29671
29671
29672
29672
29673
29673
29674
29674
29675
29675
29676
29676
29677
29677
29678
29678
29679
29679
29680
29680
29681
29681
29682
29682
29683
29683
29684
29684
29685
29685
29686
29686
29687
29687
29688
29688
29689
29689
29690
29690
29691
29691
29692
29692
29693
29693
29694
29694
29695
29695
29696
29696
29697
29697
29698
29698
29699
29699
29700
29700
29701
29701
29702
29702
29703
29703
29704
29704
29705
29705
29706
29706
29707
29707
29708
29708
29709
29709
29710
29710
29711
29711
29712
29712
29713
29713
29714
29714
29715
29715
29716
29716
29717
29717
29718
29718
29719
29719
29720
29720
29721
29721
29722
29722
29723
29723
29724
29724
29725
29725
29726
29726
29727
29727
29728
29728
29729
29729
29730
29730
29731
29731
29732
29732
29733
29733
29734
29734
29735
29735
29736
29736
29737
29737
29738
29738
29739
29739
29740
29740
29741
29741
29742
29742
29743
29743
29744
29744
29745
29745
29746
29746
29747
29747
29748
29748
29749
29749
29750
29750
29751
29751
29752
29752
29753
29753
29754
29754
29755
29755
29756
29756
29757
29757
29758
29758
29759
29759
29760
29760
29761
29761
29762
29762
29763
29763
29764
29764
29765
29765
29766
29766
29767
29767
29768
29768
29769
29769
29770
29770
29771
29771
29772
29772
29773
29773
29774
29774
29775
29775
29776
29776
29777
29777
29778
29778
29779
29779
29780
29780
29781
29781
29782
29782
29783
29783
29784
29784
29785
29785
29786
29786
29787
29787
29788
29788
29789
29789
29790
29790
29791
29791
29792
29792
29793
29793
29794
29794
29795
29795
29796
29796
29797
29797
29798
29798
29799
29799
29800
29800
29801
29801
29802
29802
29803
29803
29804
29804
29805
29805
29806
29806
29807
29807
29808
29808
29809
29809
29810
29810
29811
29811
29812
29812
29813
29813
29814
29814
29815
29815
29816
29816
29817
29817
29818
29818
29819
29819
29820
29820
29821
29821
29822
29822
29823
29823
29824
29824
29825
29825
29826
29826
29827
29827
29828
29828
29829
29829
29830
29830
29831
29831
29832
29832
29833
29833
29834
29834
29835
29835
29836
29836
29837
29837
29838
29838
29839
29839
29840
29840
29841
29841
29842
29842
29843
29843
29844
29844
29845
29845
29846
29846
29847
29847
29848
29848
29849
29849
29850
29850
29851
29851
29852
29852
29853
29853
29854
29854
29855
29855
29856
29856
29857
29857
29858
29858
29859
29859
29860
29860
29861
29861
29862
29862
29863
29863
29864
29864
29865
29865
29866
29866
29867
29867
29868
29868
29869
29869
29870
29870
29871
29871
29872
29872
29873
29873
29874
29874
29875
29875
29876
29876
29877
29877
29878
29878
29879
29879
29880
29880
29881
29881
29882
29882
29883
29883
29884
29884
29885
29885
29886
29886
29887
29887
29888
29888
29889
29889
29890
29890
29891
29891
29892
29892
29893
29893
29894
29894
29895
29895
29896
29896
29897
29897
29898
29898
29899
29899
29900
29900
29901
29901
29902
29902
29903
29903
29904
29904
29905
29905
29906
29906
29907
29907
29908
29908
29909
29909
29910
29910
29911
29911
29912
29912
29913
29913
29914
29914
29915
29915
29916
29916
29917
29917
29918
29918
29919
29919
29920
29920
29921
29921
29922
29922
29923
29923
29924
29924
29925
29925
29926
29926
29927
29927
29928
29928
29929
29929
29930
29930
29931
29931
29932
29932
29933
29933
29934
29934
29935
29935
29936
29936
29937
29937
29938
29938
29939
29939
29940
29940
29941
29941
29942
29942
29943
29943
29944
29944
29945
29945
29946
29946
29947
29947
29948
29948
29949
29949
29950
29950
29951
29951
29952
29952
29953
29953
29954
29954
29955
29955
29956
29956
29957
29957
29958
29958
29959
29959
29960
29960
29961
29961
29962
29962
29963
29963
29964
29964
29965
29965
29966
29966
29967
29967
29968
29968
29969
29969
29970
29970
29971
29971
29972
29972
29973
29973
29974
29974
29975
29975
29976
29976
29977
29977
29978
29978
29979
29979
29980
29980
29981
29981
29982
29982
29983
29983
29984
29984
29985
29985
29986
29986
29987
29987
29988
29988
29989
29989
29990
29990
29991
29991
29992
29992
29993
29993
29994
29994
29995
29995
29996
29996
29997
29997
29998
29998
29999
29999
30000
30000
30001
30001
30002
30002
30003
30003
30004
30004
30005
30005
30006
30006
30007
30007
30008
30008
30009
30009
30010
30010
30011
30011
30012
30012
30013
30013
30014
30014
30015
30015
30016
30016
30017
30017
30018
30018
30019
30019
30020
30020
30021
30021
30022
30022
30023
30023
30024
30024
30025
30025
30026
30026
30027
30027
30028
30028
30029
30029
30030
30030
30031
30031
30032
30032
30033
30033
30034
30034
30035
30035
30036
30036
30037
30037
30038
30038
30039
30039
30040
30040
30041
30041
30042
30042
30043
30043
30044
30044
30045
30045
30046
30046
30047
30047
30048
30048
30049
30049
30050
30050
30051
30051
30052
30052
30053
30053
30054
30054
30055
30055
30056
30056
30057
30057
30058
30058
30059
30059
30060
30060
30061
30061
30062
30062
30063
30063
30064
30064
30065
30065
30066
30066
30067
30067
30068
30068
30069
30069
30070
30070
30071
30071
30072
30072
30073
30073
30074
30074
30075
30075
30076
30076
30077
30077
30078
30078
30079
30079
30080
30080
30081
30081
30082
30082
30083
30083
30084
30084
30085
30085
30086
30086
30087
30087
30088
30088
30089
30089
30090
30090
30091
30091
30092
30092
30093
30093
30094
30094
30095
30095
30096
30096
30097
30097
30098
30098
30099
30099
30100
30100
30101
30101
30102
30102
30103
30103
30104
30104
30105
30105
30106
30106
30107
30107
30108
30108
30109
30109
30110
30110
30111
30111
30112
30112
30113
30113
30114
30114
30115
30115
30116
30116
30117
30117
30118
30118
30119
30119
30120
30120
30121
30121
30122
30122
30123
30123
30124
30124
30125
30125
30126
30126
30127
30127
30128
30128
30129
30129
30130
30130
30131
30131
30132
30132
30133
30133
30134
30134
30135
30135
30136
30136
30137
30137
30138
30138
30139
30139
30140
30140
30141
30141
30142
30142
30143
30143
30144
30144
30145
30145
30146
30146
30147
30147
30148
30148
30149
30149
30150
30150
30151
30151
30152
30152
30153
30153
30154
30154
30155
30155
30156
30156
30157
30157
30158
30158
30159
30159
30160
30160
30161
30161
30162
30162
30163
30163
30164
30164
30165
30165
30166
30166
30167
30167
30168
30168
30169
30169
30170
30170
30171
30171
30172
30172
30173
30173
30174
30174
30175
30175
30176
30176
30177
30177
30178
30178
30179
30179
30180
30180
30181
30181
30182
30182
30183
30183
30184
30184
30185
30185
30186
30186
30187
30187
30188
30188
30189
30189
30190
30190
30191
30191
30192
30192
30193
30193
30194
30194
30195
30195
30196
30196
30197
30197
30198
30198
30199
30199
30200
30200
30201
30201
30202
30202
30203
30203
30204
30204
30205
30205
30206
30206
30207
30207
30208
30208
30209
30209
30210
30210
30211
30211
30212
30212
30213
30213
30214
30214
30215
30215
30216
30216
30217
30217
30218
30218
30219
30219
30220
30220
30221
30221
30222
30222
30223
30223
30224
30224
30225
30225
30226
30226
30227
30227
30228
30228
30229
30229
30230
30230
30231
30231
30232
30232
30233
30233
30234
30234
30235
30235
30236
30236
30237
30237
30238
30238
30239
30239
30240
30240
30241
30241
30242
30242
30243
30243
30244
30244
30245
30245
30246
30246
30247
30247
30248
30248
30249
30249
30250
30250
30251
30251
30252
30252
30253
30253
30254
30254
30255
30255
30256
30256
30257
30257
30258
30258
30259
30259
30260
30260
30261
30261
30262
30262
30263
30263
30264
30264
30265
30265
30266
30266
30267
30267
30268
30268
30269
30269
30270
30270
30271
30271
30272
30272
30273
30273
30274
30274
30275
30275
30276
30276
30277
30277
30278
30278
30279
30279
30280
30280
30281
30281
30282
30282
30283
30283
30284
30284
30285
30285
30286
30286
30287
30287
30288
30288
30289
30289
30290
30290
30291
30291
30292
30292
30293
30293
30294
30294
30295
30295
30296
30296
30297
30297
30298
30298
30299
30299
30300
30300
30301
30301
30302
30302
30303
30303
30304
30304
30305
30305
30306
30306
30307
30307
30308
30308
30309
30309
30310
30310
30311
30311
30312
30312
30313
30313
30314
30314
30315
30315
30316
30316
30317
30317
30318
30318
30319
30319
30320
30320
30321
30321
30322
30322
30323
30323
30324
30324
30325
30325
30326
30326
30327
30327
30328
30328
30329
30329
30330
30330
30331
30331
30332
30332
30333
30333
30334
30334
30335
30335
30336
30336
30337
30337
30338
30338
30339
30339
30340
30340
30341
30341
30342
30342
30343
30343
30344
30344
30345
30345
30346
30346
30347
30347
30348
30348
30349
30349
30350
30350
30351
30351
30352
30352
30353
30353
30354
30354
30355
30355
30356
30356
30357
30357
30358
30358
30359
30359
30360
30360
30361
30361
30362
30362
30363
30363
30364
30364
30365
30365
30366
30366
30367
30367
30368
30368
30369
30369
30370
30370
30371
30371
30372
30372
30373
30373
30374
30374
30375
30375
30376
30376
30377
30377
30378
30378
30379
30379
30380
30380
30381
30381
30382
30382
30383
30383
30384
30384
30385
30385
30386
30386
30387
30387
30388
30388
30389
30389
30390
30390
30391
30391
30392
30392
30393
30393
30394
30394
30395
30395
30396
30396
30397
30397
30398
30398
30399
30399
30400
30400
30401
30401
30402
30402
30403
30403
30404
30404
30405
30405
30406
30406
30407
30407
30408
30408
30409
30409
30410
30410
30411
30411
30412
30412
30413
30413
30414
30414
30415
30415
30416
30416
30417
30417
30418
30418
30419
30419
30420
30420
30421
30421
30422
30422
30423
30423
30424
30424
30425
30425
30426
30426
30427
30427
30428
30428
30429
30429
30430
30430
30431
30431
30432
30432
30433
30433
30434
30434
30435
30435
30436
30436
30437
30437
30438
30438
30439
30439
30440
30440
30441
30441
30442
30442
30443
30443
30444
30444
30445
30445
30446
30446
30447
30447
30448
30448
30449
30449
30450
30450
30451
30451
30452
30452
30453
30453
30454
30454
30455
30455
30456
30456
30457
30457
30458
30458
30459
30459
30460
30460
30461
30461
30462
30462
30463
30463
30464
30464
30465
30465
30466
30466
30467
30467
30468
30468
30469
30469
30470
30470
30471
30471
30472
30472
30473
30473
30474
30474
30475
30475
30476
30476
30477
30477
30478
30478
30479
30479
30480
30480
30481
30481
30482
30482
30483
30483
30484
30484
30485
30485
30486
30486
30487
30487
30488
30488
30489
30489
30490
30490
30491
30491
30492
30492
30493
30493
30494
30494
30495
30495
30496
30496
30497
30497
30498
30498
30499
30499
30500
30500
30501
30501
30502
30502
30503
30503
30504
30504
30505
30505
30506
30506
30507
30507
30508
30508
30509
30509
30510
30510
30511
30511
30512
30512
30513
30513
30514
30514
30515
30515
30516
30516
30517
30517
30518
30518
30519
30519
30520
30520
30521
30521
30522
30522
30523
30523
30524
30524
30525
30525
30526
30526
30527
30527
30528
30528
30529
30529
30530
30530
30531
30531
30532
30532
30533
30533
30534
30534
30535
30535
30536
30536
30537
30537
30538
30538
30539
30539
30540
30540
30541
30541
30542
30542
30543
30543
30544
30544
30545
30545
30546
30546
30547
30547
30548
30548
30549
30549
30550
30550
30551
30551
30552
30552
30553
30553
30554
30554
30555
30555
30556
30556
30557
30557
30558
30558
30559
30559
30560
30560
30561
30561
30562
30562
30563
30563
30564
30564
30565
30565
30566
30566
30567
30567
30568
30568
30569
30569
30570
30570
30571
30571
30572
30572
30573
30573
30574
30574
30575
30575
30576
30576
30577
30577
30578
30578
30579
30579
30580
30580
30581
30581
30582
30582
30583
30583
30584
30584
30585
30585
30586
30586
30587
30587
30588
30588
30589
30589
30590
30590
30591
30591
30592
30592
30593
30593
30594
30594
30595
30595
30596
30596
30597
30597
30598
30598
30599
30599
30600
30600
30601
30601
30602
30602
30603
30603
30604
30604
30605
30605
30606
30606
30607
30607
30608
30608
30609
30609
30610
30610
30611
30611
30612
30612
30613
30613
30614
30614
30615
30615
30616
30616
30617
30617
30618
30618
30619
30619
30620
30620
30621
30621
30622
30622
30623
30623
30624
30624
30625
30625
30626
30626
30627
30627
30628
30628
30629
30629
30630
30630
30631
30631
30632
30632
30633
30633
30634
30634
30635
30635
30636
30636
30637
30637
30638
30638
30639
30639
30640
30640
30641
30641
30642
30642
30643
30643
30644
30644
30645
30645
30646
30646
30647
30647
30648
30648
30649
30649
30650
30650
30651
30651
30652
30652
30653
30653
30654
30654
30655
30655
30656
30656
30657
30657
30658
30658
30659
30659
30660
30660
30661
30661
30662
30662
30663
30663
30664
30664
30665
30665
30666
30666
30667
30667
30668
30668
30669
30669
30670
30670
30671
30671
30672
30672
30673
30673
30674
30674
30675
30675
30676
30676
30677
30677
30678
30678
30679
30679
30680
30680
30681
30681
30682
30682
30683
30683
30684
30684
30685
30685
30686
30686
30687
30687
30688
30688
30689
30689
30690
30690
30691
30691
30692
30692
30693
30693
30694
30694
30695
30695
30696
30696
30697
30697
30698
30698
30699
30699
30700
30700
30701
30701
30702
30702
30703
30703
30704
30704
30705
30705
30706
30706
30707
30707
30708
30708
30709
30709
30710
30710
30711
30711
30712
30712
30713
30713
30714
30714
30715
30715
30716
30716
30717
30717
30718
30718
30719
30719
30720
30720
30721
30721
30722
30722
30723
30723
30724
30724
30725
30726
30727
30728
30729
30730
30731
30732
30733
30734
30735
30736
30737
30738
30739
30740
30741
30742
30743
30744
30745
30746
30747
30748
30749
30750
30751
30752
30753
30754
30755
30756
30757
30758
30759
30760
30761
30762
30763
30764
30765
30766
30767
30768
30769
30770
30771
30772
30773
30774
30775
30776
30777
30778
30779
30780
30781
30782
30783
30784
30785
30786
30787
30788
30789
30790
30791
30792
30793
30794
30795
30796
30797
30798
30799
30800
30801
30802
30803
30804
30805
30806
30807
30808
30809
30810
30811
30812
30813
30814
30815
30816
30817
30818
30819
30820
30821
30822
30823
30824
30825
30826
30827
30828
30829
30830
30831
30832
30833
30834
30835
30836
30837
30838
30839
30840
30841
30842
30843
30844
30845
30846
30847
30848
30849
30850
30851
30852
30853
30854
30855
30856
30857
30858
30859
30860
30861
30862
30863
30864
30865
30866
30867
30868
30869
30870
30871
30872
30873
30874
30875
30876
30877
30878
30879
30880
30881
30882
30883
30884
30885
30886
30887
30888
30889
30890
30891
30892
30893
30894
30895
30896
30897
30898
30899
30900
30900
30900
30901
30901
30901
30902
30902
30902
30903
30903
30903
30904
30904
30904
30905
30905
30905
30906
30906
30906
30907
30907
30907
30908
30908
30908
30909
30909
30909
30910
30910
30910
30911
30911
30911
30912
30912
30912
30913
30913
30913
30914
30914
30914
30915
30915
30915
30916
30916
30916
30917
30917
30917
30918
30918
30918
30919
30919
30919
30920
30920
30920
30921
30921
30921
30922
30922
30922
30923
30923
30923
30924
30924
30924
30925
30925
30925
30926
30926
30926
30927
30927
30927
30928
30928
30928
30929
30929
30929
30930
30930
30931
30931
30932
30932
30933
30933
30934
30934
30935
30935
30936
30936
30937
30937
30938
30938
30939
30939
30940
30940
30941
30941
30942
30942
30943
30943
30944
30944
30945
30945
30946
30946
30947
30947
30948
30948
30949
30949
30950
30950
30951
30951
30952
30952
30953
30953
30954
30954
30955
30955
30956
30956
30957
30957
30958
30958
30959
30959
30960
30960
30961
30961
30962
30962
30963
30963
30964
30964
30965
30965
30966
30966
30967
30967
30968
30968
30969
30969
30970
30970
30971
30971
30972
30972
30973
30973
30974
30974
30975
30975
30976
30976
30977
30977
30978
30978
30979
30979
30980
30980
30981
30981
30982
30982
30983
30983
30984
30984
30985
30985
30986
30986
30987
30987
30988
30988
30989
30989
30990
30990
30991
30991
30992
30992
30993
30993
30994
30994
30995
30995
30996
30996
30997
30997
30998
30998
30999
30999
31000
31000
31001
31001
31002
31002
31003
31003
31004
31004
31005
31005
31006
31006
31007
31007
31008
31008
31009
31009
31010
31010
31011
31011
31012
31012
31013
31013
31014
31014
31015
31015
31016
31016
31017
31017
31018
31018
31019
31019
31020
31020
31021
31021
31022
31022
31023
31023
31024
31024
31025
31025
31026
31026
31027
31027
31028
31028
31029
31029
31030
31030
31031
31031
31032
31032
31033
31033
31034
31034
31035
31035
31036
31036
31037
31037
31038
31038
31039
31039
31040
31040
31041
31041
31042
31042
31043
31043
31044
31044
31045
31045
31046
31046
31047
31047
31048
31048
31049
31049
31050
31050
31051
31051
31052
31052
31053
31053
31054
31054
31055
31055
31056
31056
31057
31057
31058
31058
31059
31059
31060
31060
31061
31061
31062
31062
31063
31063
31064
31064
31065
31065
31066
31066
31067
31067
31068
31068
31069
31069
31070
31070
31071
31071
31072
31072
31073
31073
31074
31074
31075
31075
31076
31076
31077
31077
31078
31078
31079
31079
31080
31080
31081
31081
31082
31082
31083
31083
31084
31084
31085
31085
31086
31086
31087
31087
31088
31088
31089
31089
31090
31090
31091
31091
31092
31092
31093
31093
31094
31094
31095
31095
31096
31096
31097
31097
31098
31098
31099
31099
31100
31100
31101
31101
31102
31102
31103
31103
31104
31104
31105
31105
31106
31106
31107
31107
31108
31108
31109
31109
31110
31110
31111
31111
31112
31112
31113
31113
31114
31114
31115
31115
31116
31116
31117
31117
31118
31118
31119
31119
31120
31120
31121
31121
31122
31122
31123
31123
31124
31124
31125
31125
31126
31126
31127
31127
31128
31128
31129
31129
31130
31130
31131
31131
31132
31132
31133
31133
31134
31134
31135
31135
31136
31136
31137
31137
31138
31138
31139
31139
31140
31140
31141
31141
31142
31142
31143
31143
31144
31144
31145
31145
31146
31146
31147
31147
31148
31148
31149
31149
31150
31150
31151
31151
31152
31152
31153
31153
31154
31154
31155
31155
31156
31156
31157
31157
31158
31158
31159
31159
31160
31160
31161
31161
31162
31162
31163
31163
31164
31164
31165
31165
31166
31166
31167
31167
31168
31168
31169
31169
31170
31170
31171
31171
31172
31172
31173
31173
31174
31174
31175
31175
31176
31176
31177
31177
31178
31178
31179
31179
31180
31180
31181
31181
31182
31182
31183
31183
31184
31184
31185
31185
31186
31186
31187
31187
31188
31188
31189
31189
31190
31190
31191
31191
31192
31192
31193
31193
31194
31194
31195
31195
31196
31196
31197
31197
31198
31198
31199
31199
31200
31200
31201
31201
31202
31202
31203
31203
31204
31204
31205
31205
31206
31206
31207
31207
31208
31208
31209
31209
31210
31210
31211
31211
31212
31212
31213
31213
31214
31214
31215
31215
31216
31216
31217
31217
31218
31218
31219
31219
31220
31220
31221
31221
31222
31222
31223
31223
31224
31224
31225
31225
31226
31226
31227
31227
31228
31228
31229
31229
31230
31230
31231
31231
31232
31232
31233
31233
31234
31234
31235
31235
31236
31236
31237
31237
31238
31238
31239
31239
31240
31240
31241
31241
31242
31242
31243
31243
31244
31244
31245
31245
31246
31246
31247
31247
31248
31248
31249
31249
31250
31250
31251
31251
31252
31252
31253
31253
31254
31254
31255
31255
31256
31256
31257
31257
31258
31258
31259
31259
31260
31260
31261
31261
31262
31262
31263
31263
31264
31264
31265
31265
31266
31266
31267
31267
31268
31268
31269
31269
31270
31270
31271
31271
31272
31272
31273
31273
31274
31274
31275
31275
31276
31276
31277
31277
31278
31278
31279
31279
31280
31280
31281
31281
31282
31282
31283
31283
31284
31284
31285
31285
31286
31286
31287
31287
31288
31288
31289
31289
31290
31290
31291
31291
31292
31292
31293
31293
31294
31294
31295
31295
31296
31296
31297
31297
31298
31298
31299
31299
31300
31300
31301
31301
31302
31302
31303
31303
31304
31304
31305
31305
31306
31306
31307
31307
31308
31308
31309
31309
31310
31310
31311
31311
31312
31312
31313
31313
31314
31314
31315
31315
31316
31316
31317
31317
31318
31318
31319
31319
31320
31320
31321
31321
31322
31322
31323
31323
31324
31324
31325
31325
31326
31326
31327
31327
31328
31328
31329
31329
31330
31330
31331
31331
31332
31332
31333
31333
31334
31334
31335
31335
31336
31336
31337
31337
31338
31338
31339
31339
31340
31340
31341
31341
31342
31342
31343
31343
31344
31344
31345
31345
31346
31346
31347
31347
31348
31348
31349
31349
31350
31350
31351
31351
31352
31352
31353
31353
31354
31354
31355
31355
31356
31356
31357
31357
31358
31358
31359
31359
31360
31360
31361
31361
31362
31362
31363
31363
31364
31364
31365
31365
31366
31366
31367
31367
31368
31368
31369
31369
31370
31370
31371
31371
31372
31372
31373
31373
31374
31374
31375
31375
31376
31376
31377
31377
31378
31378
31379
31379
31380
31380
31381
31381
31382
31382
31383
31383
31384
31384
31385
31385
31386
31386
31387
31387
31388
31388
31389
31389
31390
31390
31391
31391
31392
31392
31393
31393
31394
31394
31395
31395
31396
31396
31397
31397
31398
31398
31399
31399
31400
31400
31401
31401
31402
31402
31403
31403
31404
31404
31405
31405
31406
31406
31407
31407
31408
31408
31409
31409
31410
31410
31411
31411
31412
31412
31413
31413
31414
31414
31415
31415
31416
31416
31417
31417
31418
31418
31419
31419
31420
31420
31421
31421
31422
31422
31423
31423
31424
31424
31425
31425
31426
31426
31427
31427
31428
31428
31429
31429
31430
31430
31431
31431
31432
31432
31433
31433
31434
31434
31435
31435
31436
31436
31437
31437
31438
31438
31439
31439
31440
31440
31441
31441
31442
31442
31443
31443
31444
31444
31445
31445
31446
31446
31447
31447
31448
31448
31449
31449
31450
31450
31451
31451
31452
31452
31453
31453
31454
31454
31455
31455
31456
31456
31457
31457
31458
31458
31459
31459
31460
31460
31461
31461
31462
31462
31463
31463
31464
31464
31465
31465
31466
31466
31467
31467
31468
31468
31469
31469
31470
31471
31472
31473
31474
31475
31476
31477
31478
31479
31480
31481
31482
31483
31484
31485
31486
31487
31488
31489
31490
31491
31492
31493
31494
31495
31496
31497
31498
31499
31500
31500
31500
31501
31501
31501
31502
31502
31502
31503
31503
31503
31504
31504
31504
31505
31505
31505
31506
31506
31506
31507
31507
31507
31508
31508
31508
31509
31509
31509
31510
31510
31510
31511
31511
31511
31512
31512
31512
31513
31513
31513
31514
31514
31514
31515
31515
31515
31516
31516
31516
31517
31517
31517
31518
31518
31518
31519
31519
31519
31520
31520
31520
31521
31521
31521
31522
31522
31522
31523
31523
31523
31524
31524
31524
31525
31525
31525
31526
31526
31526
31527
31527
31527
31528
31528
31528
31529
31529
31530
31530
31531
31531
31532
31532
31533
31533
31534
31534
31535
31535
31536
31536
31537
31537
31538
31538
31539
31539
31540
31540
31541
31541
31542
31542
31543
31543
31544
31544
31545
31545
31546
31546
31547
31547
31548
31548
31549
31549
31550
31550
31551
31551
31552
31552
31553
31553
31554
31554
31555
31555
31556
31556
31557
31557
31558
31558
31559
31560
31560
31561
31561
31562
31562
31563
31563
31564
31564
31565
31565
31566
31566
31567
31567
31568
31568
31569
31569
31570
31570
31571
31571
31572
31572
31573
31573
31574
31574
31575
31575
31576
31576
31577
31577
31578
31578
31579
31579
31580
31580
31581
31581
31582
31582
31583
31583
31584
31584
31585
31585
31586
31586
31587
31587
31588
31588
31589
31590
31590
31591
31591
31592
31592
31593
31593
31594
31594
31595
31595
31596
31596
31597
31597
31598
31598
31599
31599
31600
31600
31601
31601
31602
31602
31603
31603
31604
31604
31605
31605
31606
31606
31607
31607
31608
31608
31609
31609
31610
31610
31611
31611
31612
31612
31613
31613
31614
31614
31615
31615
31616
31616
31617
31617
31618
31618
31619
31620
31620
31621
31621
31622
31622
31623
31623
31624
31624
31625
31625
31626
31626
31627
31627
31628
31628
31629
31629
31630
31630
31631
31631
31632
31632
31633
31633
31634
31634
31635
31635
31636
31636
31637
31637
31638
31638
31639
31639
31640
31640
31641
31641
31642
31642
31643
31643
31644
31644
31645
31645
31646
31646
31647
31647
31648
31648
31649
31650
31650
31651
31651
31652
31652
31653
31653
31654
31654
31655
31655
31656
31656
31657
31657
31658
31658
31659
31659
31660
31660
31661
31661
31662
31662
31663
31663
31664
31664
31665
31665
31666
31666
31667
31667
31668
31668
31669
31669
31670
31670
31671
31671
31672
31672
31673
31673
31674
31674
31675
31675
31676
31676
31677
31677
31678
31678
31679
31680
31680
31681
31681
31682
31682
31683
31683
31684
31684
31685
31685
31686
31686
31687
31687
31688
31688
31689
31689
31690
31690
31691
31691
31692
31692
31693
31693
31694
31694
31695
31695
31696
31696
31697
31697
31698
31698
31699
31699
31700
31700
31701
31701
31702
31702
31703
31703
31704
31704
31705
31705
31706
31706
31707
31707
31708
31708
31709
31710
31710
31711
31711
31712
31712
31713
31713
31714
31714
31715
31715
31716
31716
31717
31717
31718
31718
31719
31719
31720
31720
31721
31721
31722
31722
31723
31723
31724
31724
31725
31725
31726
31726
31727
31727
31728
31728
31729
31729
31730
31730
31731
31731
31732
31732
31733
31733
31734
31734
31735
31735
31736
31736
31737
31737
31738
31738
31739
31740
31740
31741
31741
31742
31742
31743
31743
31744
31744
31745
31745
31746
31746
31747
31747
31748
31748
31749
31749
31750
31750
31751
31751
31752
31752
31753
31753
31754
31754
31755
31755
31756
31756
31757
31757
31758
31758
31759
31759
31760
31760
31761
31761
31762
31762
31763
31763
31764
31764
31765
31765
31766
31766
31767
31767
31768
31768
31769
31770
31770
31771
31771
31772
31772
31773
31773
31774
31774
31775
31775
31776
31776
31777
31777
31778
31778
31779
31779
31780
31780
31781
31781
31782
31782
31783
31783
31784
31784
31785
31785
31786
31786
31787
31787
31788
31788
31789
31789
31790
31790
31791
31791
31792
31792
31793
31793
31794
31794
31795
31795
31796
31796
31797
31797
31798
31798
31799
31800
31800
31801
31801
31802
31802
31803
31803
31804
31804
31805
31805
31806
31806
31807
31807
31808
31808
31809
31809
31810
31810
31811
31811
31812
31812
31813
31813
31814
31814
31815
31815
31816
31816
31817
31817
31818
31818
31819
31819
31820
31820
31821
31821
31822
31822
31823
31823
31824
31824
31825
31825
31826
31826
31827
31827
31828
31828
31829
31830
31830
31831
31831
31832
31832
31833
31833
31834
31834
31835
31835
31836
31836
31837
31837
31838
31838
31839
31839
31840
31840
31841
31841
31842
31842
31843
31843
31844
31844
31845
31845
31846
31846
31847
31847
31848
31848
31849
31849
31850
31850
31851
31851
31852
31852
31853
31853
31854
31854
31855
31855
31856
31856
31857
31857
31858
31858
31859
31860
31860
31861
31861
31862
31862
31863
31863
31864
31864
31865
31865
31866
31866
31867
31867
31868
31868
31869
31869
31870
31870
31871
31871
31872
31872
31873
31873
31874
31874
31875
31875
31876
31876
31877
31877
31878
31878
31879
31879
31880
31880
31881
31881
31882
31882
31883
31883
31884
31884
31885
31885
31886
31886
31887
31887
31888
31888
31889
31890
31890
31891
31891
31892
31892
31893
31893
31894
31894
31895
31895
31896
31896
31897
31897
31898
31898
31899
31899
31900
31900
31901
31901
31902
31902
31903
31903
31904
31904
31905
31905
31906
31906
31907
31907
31908
31908
31909
31909
31910
31910
31911
31911
31912
31912
31913
31913
31914
31914
31915
31915
31916
31916
31917
31917
31918
31918
31919
31920
31920
31921
31921
31922
31922
31923
31923
31924
31924
31925
31925
31926
31926
31927
31927
31928
31928
31929
31929
31930
31930
31931
31931
31932
31932
31933
31933
31934
31934
31935
31935
31936
31936
31937
31937
31938
31938
31939
31939
31940
31940
31941
31941
31942
31942
31943
31943
31944
31944
31945
31945
31946
31946
31947
31947
31948
31948
31949
31950
31950
31951
31951
31952
31952
31953
31953
31954
31954
31955
31955
31956
31956
31957
31957
31958
31958
31959
31959
31960
31960
31961
31961
31962
31962
31963
31963
31964
31964
31965
31965
31966
31966
31967
31967
31968
31968
31969
31969
31970
31970
31971
31971
31972
31972
31973
31973
31974
31974
31975
31975
31976
31976
31977
31977
31978
31978
31979
31980
31980
31981
31981
31982
31982
31983
31983
31984
31984
31985
31985
31986
31986
31987
31987
31988
31988
31989
31989
31990
31990
31991
31991
31992
31992
31993
31993
31994
31994
31995
31995
31996
31996
31997
31997
31998
31998
31999
31999
32000
32000
32001
32001
32002
32002
32003
32003
32004
32004
32005
32005
32006
32006
32007
32007
32008
32008
32009
32010
32010
32011
32011
32012
32012
32013
32013
32014
32014
32015
32015
32016
32016
32017
32017
32018
32018
32019
32019
32020
32020
32021
32021
32022
32022
32023
32023
32024
32024
32025
32025
32026
32026
32027
32027
32028
32028
32029
32029
32030
32030
32031
32031
32032
32032
32033
32033
32034
32034
32035
32035
32036
32036
32037
32037
32038
32038
32039
32040
32040
32041
32041
32042
32042
32043
32043
32044
32044
32045
32045
32046
32046
32047
32047
32048
32048
32049
32049
32050
32050
32051
32051
32052
32052
32053
32053
32054
32054
32055
32055
32056
32056
32057
32057
32058
32058
32059
32059
32060
32060
32061
32061
32062
32062
32063
32063
32064
32064
32065
32065
32066
32066
32067
32067
32068
32068
32069
32070
32071
32072
32073
32074
32075
32076
32077
32078
32079
32080
32081
32082
32083
32084
32085
32086
32087
32088
32089
32090
32091
32092
32093
32094
32095
32096
32097
32098
32100
32100
32101
32101
32102
32102
32103
32103
32104
32104
32105
32105
32106
32106
32107
32107
32108
32108
32109
32109
32110
32110
32111
32111
32112
32112
32113
32113
32114
32114
32115
32115
32116
32116
32117
32117
32118
32118
32119
32119
32120
32120
32121
32121
32122
32122
32123
32123
32124
32124
32125
32125
32126
32126
32127
32127
32128
32128
32129
32129
32130
32130
32131
32131
32132
32132
32133
32133
32134
32134
32135
32135
32136
32136
32137
32137
32138
32138
32139
32139
32140
32140
32141
32141
32142
32142
32143
32143
32144
32144
32145
32145
32146
32146
32147
32147
32148
32148
32149
32149
32150
32150
32151
32151
32152
32152
32153
32153
32154
32154
32155
32155
32156
32156
32157
32157
32158
32158
32159
32159
32160
32160
32161
32161
32162
32162
32163
32163
32164
32164
32165
32165
32166
32166
32167
32167
32168
32168
32169
32169
32170
32170
32171
32171
32172
32172
32173
32173
32174
32174
32175
32175
32176
32176
32177
32177
32178
32178
32179
32179
32180
32180
32181
32181
32182
32182
32183
32183
32184
32184
32185
32185
32186
32186
32187
32187
32188
32188
32189
32189
32190
32190
32191
32191
32192
32192
32193
32193
32194
32194
32195
32195
32196
32196
32197
32197
32198
32198
32199
32199
32200
32200
32201
32201
32202
32202
32203
32203
32204
32204
32205
32205
32206
32206
32207
32207
32208
32208
32209
32209
32210
32210
32211
32211
32212
32212
32213
32213
32214
32214
32215
32215
32216
32216
32217
32217
32218
32218
32219
32219
32220
32220
32221
32221
32222
32222
32223
32223
32224
32224
32225
32225
32226
32226
32227
32227
32228
32228
32229
32229
32230
32230
32231
32231
32232
32232
32233
32233
32234
32234
32235
32235
32236
32236
32237
32237
32238
32238
32239
32239
32240
32240
32241
32241
32242
32242
32243
32243
32244
32244
32245
32245
32246
32246
32247
32247
32248
32248
32249
32249
32250
32250
32251
32251
32252
32252
32253
32253
32254
32254
32255
32255
32256
32256
32257
32257
32258
32258
32259
32259
32260
32260
32261
32261
32262
32262
32263
32263
32264
32264
32265
32265
32266
32266
32267
32267
32268
32268
32269
32269
32270
32270
32271
32271
32272
32272
32273
32273
32274
32274
32275
32275
32276
32276
32277
32277
32278
32278
32279
32279
32280
32280
32281
32281
32282
32282
32283
32283
32284
32284
32285
32285
32286
32286
32287
32287
32288
32288
32289
32289
32290
32290
32291
32291
32292
32292
32293
32293
32294
32294
32295
32295
32296
32296
32297
32297
32298
32298
32299
32299
32300
32300
32301
32301
32302
32302
32303
32303
32304
32304
32305
32305
32306
32306
32307
32307
32308
32308
32309
32309
32310
32310
32311
32311
32312
32312
32313
32313
32314
32314
32315
32315
32316
32316
32317
32317
32318
32318
32319
32319
32320
32320
32321
32321
32322
32322
32323
32323
32324
32324
32325
32325
32326
32326
32327
32327
32328
32328
32329
32329
32330
32330
32331
32331
32332
32332
32333
32333
32334
32334
32335
32335
32336
32336
32337
32337
32338
32338
32339
32339
32340
32340
32341
32341
32342
32342
32343
32343
32344
32344
32345
32345
32346
32346
32347
32347
32348
32348
32349
32349
32350
32350
32351
32351
32352
32352
32353
32353
32354
32354
32355
32355
32356
32356
32357
32357
32358
32358
32359
32359
32360
32360
32361
32361
32362
32362
32363
32363
32364
32364
32365
32365
32366
32366
32367
32367
32368
32368
32369
32369
32370
32370
32371
32371
32372
32372
32373
32373
32374
32374
32375
32375
32376
32376
32377
32377
32378
32378
32379
32379
32380
32380
32381
32381
32382
32382
32383
32383
32384
32384
32385
32385
32386
32386
32387
32387
32388
32388
32389
32389
32390
32390
32391
32391
32392
32392
32393
32393
32394
32394
32395
32395
32396
32396
32397
32397
32398
32398
32399
32399
32400
32400
32401
32401
32402
32402
32403
32403
32404
32404
32405
32405
32406
32406
32407
32407
32408
32408
32409
32409
32410
32410
32411
32411
32412
32412
32413
32413
32414
32414
32415
32415
32416
32416
32417
32417
32418
32418
32419
32419
32420
32420
32421
32421
32422
32422
32423
32423
32424
32424
32425
32425
32426
32426
32427
32427
32428
32428
32429
32429
32430
32430
32431
32431
32432
32432
32433
32433
32434
32434
32435
32435
32436
32436
32437
32437
32438
32438
32439
32439
32440
32440
32441
32441
32442
32442
32443
32443
32444
32444
32445
32445
32446
32446
32447
32447
32448
32448
32449
32449
32450
32450
32451
32451
32452
32452
32453
32453
32454
32454
32455
32455
32456
32456
32457
32457
32458
32458
32459
32459
32460
32460
32461
32461
32462
32462
32463
32463
32464
32464
32465
32465
32466
32466
32467
32467
32468
32468
32469
32469
32470
32470
32471
32471
32472
32472
32473
32473
32474
32474
32475
32475
32476
32476
32477
32477
32478
32478
32479
32479
32480
32480
32481
32481
32482
32482
32483
32483
32484
32484
32485
32485
32486
32486
32487
32487
32488
32488
32489
32489
32490
32490
32491
32491
32492
32492
32493
32493
32494
32494
32495
32495
32496
32496
32497
32497
32498
32498
32499
32499
32500
32500
32501
32501
32502
32502
32503
32503
32504
32504
32505
32505
32506
32506
32507
32507
32508
32508
32509
32509
32510
32510
32511
32511
32512
32512
32513
32513
32514
32514
32515
32515
32516
32516
32517
32517
32518
32518
32519
32519
32520
32520
32521
32521
32522
32522
32523
32523
32524
32524
32525
32525
32526
32526
32527
32527
32528
32528
32529
32529
32530
32530
32531
32531
32532
32532
32533
32533
32534
32534
32535
32535
32536
32536
32537
32537
32538
32538
32539
32539
32540
32540
32541
32541
32542
32542
32543
32543
32544
32544
32545
32545
32546
32546
32547
32547
32548
32548
32549
32549
32550
32550
32551
32551
32552
32552
32553
32553
32554
32554
32555
32555
32556
32556
32557
32557
32558
32558
32559
32559
32560
32560
32561
32561
32562
32562
32563
32563
32564
32564
32565
32565
32566
32566
32567
32567
32568
32568
32569
32569
32570
32570
32571
32571
32572
32572
32573
32573
32574
32574
32575
32575
32576
32576
32577
32577
32578
32578
32579
32579
32580
32580
32581
32581
32582
32582
32583
32583
32584
32584
32585
32585
32586
32586
32587
32587
32588
32588
32589
32589
32590
32590
32591
32591
32592
32592
32593
32593
32594
32594
32595
32595
32596
32596
32597
32597
32598
32598
32599
32599
32600
32600
32601
32601
32602
32602
32603
32603
32604
32604
32605
32605
32606
32606
32607
32607
32608
32608
32609
32609
32610
32610
32611
32611
32612
32612
32613
32613
32614
32614
32615
32615
32616
32616
32617
32617
32618
32618
32619
32619
32620
32620
32621
32621
32622
32622
32623
32623
32624
32624
32625
32625
32626
32626
32627
32627
32628
32628
32629
32629
32630
32630
32631
32631
32632
32632
32633
32633
32634
32634
32635
32635
32636
32636
32637
32637
32638
32638
32639
32639
32640
32640
32641
32641
32642
32642
32643
32643
32644
32644
32645
32645
32646
32646
32647
32647
32648
32648
32649
32649
32650
32650
32651
32651
32652
32652
32653
32653
32654
32654
32655
32655
32656
32656
32657
32657
32658
32658
32659
32659
32660
32660
32661
32661
32662
32662
32663
32663
32664
32664
32665
32665
32666
32666
32667
32667
32668
32668
32669
32669
32670
32670
32671
32671
32672
32672
32673
32673
32674
32674
32675
32675
32676
32676
32677
32677
32678
32678
32679
32679
32680
32680
32681
32681
32682
32682
32683
32683
32684
32684
32685
32685
32686
32686
32687
32687
32688
32688
32689
32689
32690
32690
32691
32691
32692
32692
32693
32693
32694
32694
32695
32695
32696
32696
32697
32697
32698
32698
32699
32699
32700
32700
32701
32701
32702
32702
32703
32703
32704
32704
32705
32705
32706
32706
32707
32707
32708
32708
32709
32709
32710
32710
32711
32711
32712
32712
32713
32713
32714
32714
32715
32715
32716
32716
32717
32717
32718
32718
32719
32719
32720
32720
32721
32721
32722
32722
32723
32723
32724
32724
32725
32725
32726
32726
32727
32727
32728
32728
32729
32729
32730
32730
32731
32731
32732
32732
32733
32733
32734
32734
32735
32735
32736
32736
32737
32737
32738
32738
32739
32739
32740
32740
32741
32741
32742
32742
32743
32743
32744
32744
32745
32745
32746
32746
32747
32747
32748
32748
32749
32749
32750
32750
32751
32751
32752
32752
32753
32753
32754
32754
32755
32755
32756
32756
32757
32757
32758
32758
32759
32759
32760
32760
32761
32761
32762
32762
32763
32763
32764
32764
32765
32765
32766
32766
32767
32767
32768
32768
32769
32769
32770
32770
32771
32771
32772
32772
32773
32773
32774
32774
32775
32775
32776
32776
32777
32777
32778
32778
32779
32779
32780
32780
32781
32781
32782
32782
32783
32783
32784
32784
32785
32785
32786
32786
32787
32787
32788
32788
32789
32789
32790
32790
32791
32791
32792
32792
32793
32793
32794
32794
32795
32795
32796
32796
32797
32797
32798
32798
32799
32799
32800
32800
32801
32801
32802
32802
32803
32803
32804
32804
32805
32805
32806
32806
32807
32807
32808
32808
32809
32809
32810
32810
32811
32811
32812
32812
32813
32813
32814
32814
32815
32815
32816
32816
32817
32817
32818
32818
32819
32819
32820
32820
32821
32821
32822
32822
32823
32823
32824
32824
32825
32825
32826
32826
32827
32827
32828
32828
32829
32829
32830
32830
32831
32831
32832
32832
32833
32833
32834
32834
32835
32835
32836
32836
32837
32837
32838
32838
32839
32839
32840
32840
32841
32841
32842
32842
32843
32843
32844
32844
32845
32845
32846
32846
32847
32847
32848
32848
32849
32849
32850
32850
32851
32851
32852
32852
32853
32853
32854
32854
32855
32855
32856
32856
32857
32857
32858
32858
32859
32859
32860
32860
32861
32861
32862
32862
32863
32863
32864
32864
32865
32865
32866
32866
32867
32867
32868
32868
32869
32869
32870
32870
32871
32871
32872
32872
32873
32873
32874
32874
32875
32875
32876
32876
32877
32877
32878
32878
32879
32879
32880
32880
32881
32881
32882
32882
32883
32883
32884
32884
32885
32885
32886
32886
32887
32887
32888
32888
32889
32889
32890
32890
32891
32891
32892
32892
32893
32893
32894
32894
32895
32895
32896
32896
32897
32897
32898
32898
32899
32899
32900
32900
32901
32901
32902
32902
32903
32903
32904
32904
32905
32905
32906
32906
32907
32907
32908
32908
32909
32909
32910
32910
32911
32911
32912
32912
32913
32913
32914
32914
32915
32915
32916
32916
32917
32917
32918
32918
32919
32919
32920
32920
32921
32921
32922
32922
32923
32923
32924
32924
32925
32925
32926
32926
32927
32927
32928
32928
32929
32929
32930
32930
32931
32931
32932
32932
32933
32933
32934
32934
32935
32935
32936
32936
32937
32937
32938
32938
32939
32939
32940
32940
32941
32941
32942
32942
32943
32943
32944
32944
32945
32945
32946
32946
32947
32947
32948
32948
32949
32949
32950
32950
32951
32951
32952
32952
32953
32953
32954
32954
32955
32955
32956
32956
32957
32957
32958
32958
32959
32959
32960
32960
32961
32961
32962
32962
32963
32963
32964
32964
32965
32965
32966
32966
32967
32967
32968
32968
32969
32969
32970
32970
32971
32971
32972
32972
32973
32973
32974
32974
32975
32975
32976
32976
32977
32977
32978
32978
32979
32979
32980
32980
32981
32981
32982
32982
32983
32983
32984
32984
32985
32985
32986
32986
32987
32987
32988
32988
32989
32989
32990
32990
32991
32991
32992
32992
32993
32993
32994
32994
32995
32995
32996
32996
32997
32997
32998
32998
32999
32999
33000
33000
33001
33001
33002
33002
33003
33003
33004
33004
33005
33005
33006
33006
33007
33007
33008
33008
33009
33009
33010
33010
33011
33011
33012
33012
33013
33013
33014
33014
33015
33015
33016
33016
33017
33017
33018
33018
33019
33019
33020
33020
33021
33021
33022
33022
33023
33023
33024
33024
33025
33025
33026
33026
33027
33027
33028
33028
33029
33029
33030
33030
33031
33031
33032
33032
33033
33033
33034
33034
33035
33035
33036
33036
33037
33037
33038
33038
33039
33039
33040
33040
33041
33041
33042
33042
33043
33043
33044
33044
33045
33045
33046
33046
33047
33047
33048
33048
33049
33049
33050
33050
33051
33051
33052
33052
33053
33053
33054
33054
33055
33055
33056
33056
33057
33057
33058
33058
33059
33059
33060
33060
33061
33061
33062
33062
33063
33063
33064
33064
33065
33065
33066
33066
33067
33067
33068
33068
33069
33069
33070
33070
33071
33071
33072
33072
33073
33073
33074
33074
33075
33075
33076
33076
33077
33077
33078
33078
33079
33079
33080
33080
33081
33081
33082
33082
33083
33083
33084
33084
33085
33085
33086
33086
33087
33087
33088
33088
33089
33089
33090
33090
33091
33091
33092
33092
33093
33093
33094
33094
33095
33095
33096
33096
33097
33097
33098
33098
33099
33099
33100
33100
33101
33101
33102
33102
33103
33103
33104
33104
33105
33105
33106
33106
33107
33107
33108
33108
33109
33109
33110
33110
33111
33111
33112
33112
33113
33113
33114
33114
33115
33115
33116
33116
33117
33117
33118
33118
33119
33119
33120
33120
33121
33121
33122
33122
33123
33123
33124
33124
33125
33125
33126
33126
33127
33127
33128
33128
33129
33129
33130
33130
33131
33131
33132
33132
33133
33133
33134
33134
33135
33135
33136
33136
33137
33137
33138
33138
33139
33139
33140
33140
33141
33141
33142
33142
33143
33143
33144
33144
33145
33145
33146
33146
33147
33147
33148
33148
33149
33149
33150
33150
33151
33151
33152
33152
33153
33153
33154
33154
33155
33155
33156
33156
33157
33157
33158
33158
33159
33159
33160
33160
33161
33161
33162
33162
33163
33163
33164
33164
33165
33165
33166
33166
33167
33167
33168
33168
33169
33169
33170
33170
33171
33171
33172
33172
33173
33173
33174
33174
33175
33175
33176
33176
33177
33177
33178
33178
33179
33179
33180
33180
33181
33181
33182
33182
33183
33183
33184
33184
33185
33185
33186
33186
33187
33187
33188
33188
33189
33189
33190
33190
33191
33191
33192
33192
33193
33193
33194
33194
33195
33195
33196
33196
33197
33197
33198
33198
33199
33199
33200
33200
33201
33201
33202
33202
33203
33203
33204
33204
33205
33205
33206
33206
33207
33207
33208
33208
33209
33209
33210
33210
33211
33211
33212
33212
33213
33213
33214
33214
33215
33215
33216
33216
33217
33217
33218
33218
33219
33219
33220
33220
33221
33221
33222
33222
33223
33223
33224
33224
33225
33225
33226
33226
33227
33227
33228
33228
33229
33229
33230
33230
33231
33231
33232
33232
33233
33233
33234
33234
33235
33235
33236
33236
33237
33237
33238
33238
33239
33239
33240
33240
33241
33241
33242
33242
33243
33243
33244
33244
33245
33245
33246
33246
33247
33247
33248
33248
33249
33249
33250
33250
33251
33251
33252
33252
33253
33253
33254
33254
33255
33255
33256
33256
33257
33257
33258
33258
33259
33259
33260
33260
33261
33261
33262
33262
33263
33263
33264
33264
33265
33265
33266
33266
33267
33267
33268
33268
33269
33269
33270
33270
33271
33271
33272
33272
33273
33273
33274
33274
33275
33275
33276
33276
33277
33277
33278
33278
33279
33279
33280
33280
33281
33281
33282
33282
33283
33283
33284
33284
33285
33285
33286
33286
33287
33287
33288
33288
33289
33289
33290
33290
33291
33291
33292
33292
33293
33293
33294
33294
33295
33295
33296
33296
33297
33297
33298
33298
33299
33299
33300
33300
33301
33301
33302
33302
33303
33303
33304
33304
33305
33305
33306
33306
33307
33307
33308
33308
33309
33309
33310
33310
33311
33311
33312
33312
33313
33313
33314
33314
33315
33315
33316
33316
33317
33317
33318
33318
33319
33319
33320
33320
33321
33321
33322
33322
33323
33323
33324
33324
33325
33325
33326
33326
33327
33327
33328
33328
33329
33329
33330
33330
33331
33331
33332
33332
33333
33333
33334
33334
33335
33335
33336
33336
33337
33337
33338
33338
33339
33339
33340
33340
33341
33341
33342
33342
33343
33343
33344
33344
33345
33345
33346
33346
33347
33347
33348
33348
33349
33349
33350
33350
33351
33351
33352
33352
33353
33353
33354
33354
33355
33355
33356
33356
33357
33357
33358
33358
33359
33359
33360
33360
33361
33361
33362
33362
33363
33363
33364
33364
33365
33365
33366
33366
33367
33367
33368
33368
33369
33369
33370
33370
33371
33371
33372
33372
33373
33373
33374
33374
33375
33375
33376
33376
33377
33377
33378
33378
33379
33379
33380
33380
33381
33381
33382
33382
33383
33383
33384
33384
33385
33385
33386
33386
33387
33387
33388
33388
33389
33389
33390
33390
33391
33391
33392
33392
33393
33393
33394
33394
33395
33395
33396
33396
33397
33397
33398
33398
33399
33399
33400
33400
33401
33401
33402
33402
33403
33403
33404
33404
33405
33405
33406
33406
33407
33407
33408
33408
33409
33409
33410
33410
33411
33411
33412
33412
33413
33413
33414
33414
33415
33415
33416
33416
33417
33417
33418
33418
33419
33419
33420
33420
33421
33421
33422
33422
33423
33423
33424
33424
33425
33425
33426
33426
33427
33427
33428
33428
33429
33429
33430
33430
33431
33431
33432
33432
33433
33433
33434
33434
33435
33435
33436
33436
33437
33437
33438
33438
33439
33439
33440
33440
33441
33441
33442
33442
33443
33443
33444
33444
33445
33445
33446
33446
33447
33447
33448
33448
33449
33449
33450
33450
33451
33451
33452
33452
33453
33453
33454
33454
33455
33455
33456
33456
33457
33457
33458
33458
33459
33459
33460
33460
33461
33461
33462
33462
33463
33463
33464
33464
33465
33465
33466
33466
33467
33467
33468
33468
33469
33469
33470
33470
33471
33471
33472
33472
33473
33473
33474
33474
33475
33475
33476
33476
33477
33477
33478
33478
33479
33479
33480
33480
33481
33481
33482
33482
33483
33483
33484
33484
33485
33485
33486
33486
33487
33487
33488
33488
33489
33489
33490
33490
33491
33491
33492
33492
33493
33493
33494
33494
33495
33495
33496
33496
33497
33497
33498
33498
33499
33499
33500
33500
33501
33501
33502
33502
33503
33503
33504
33504
33505
33505
33506
33506
33507
33507
33508
33508
33509
33509
33510
33510
33511
33511
33512
33512
33513
33513
33514
33514
33515
33515
33516
33516
33517
33517
33518
33518
33519
33519
33520
33520
33521
33521
33522
33522
33523
33523
33524
33524
33525
33525
33526
33526
33527
33527
33528
33528
33529
33529
33530
33530
33531
33531
33532
33532
33533
33533
33534
33534
33535
33535
33536
33536
33537
33537
33538
33538
33539
33539
33540
33540
33541
33541
33542
33542
33543
33543
33544
33544
33545
33545
33546
33546
33547
33547
33548
33548
33549
33549
33550
33550
33551
33551
33552
33552
33553
33553
33554
33554
33555
33555
33556
33556
33557
33557
33558
33558
33559
33559
33560
33560
33561
33561
33562
33562
33563
33563
33564
33564
33565
33565
33566
33566
33567
33567
33568
33568
33569
33569
33570
33570
33571
33571
33572
33572
33573
33573
33574
33574
33575
33575
33576
33576
33577
33577
33578
33578
33579
33579
33580
33580
33581
33581
33582
33582
33583
33583
33584
33584
33585
33585
33586
33586
33587
33587
33588
33588
33589
33589
33590
33590
33591
33591
33592
33592
33593
33593
33594
33594
33595
33595
33596
33596
33597
33597
33598
33598
33599
33599
33600
33600
33601
33601
33602
33602
33603
33603
33604
33604
33605
33605
33606
33606
33607
33607
33608
33608
33609
33609
33610
33610
33611
33611
33612
33612
33613
33613
33614
33614
33615
33615
33616
33616
33617
33617
33618
33618
33619
33619
33620
33620
33621
33621
33622
33622
33623
33623
33624
33624
33625
33625
33626
33626
33627
33627
33628
33628
33629
33629
33630
33630
33631
33631
33632
33632
33633
33633
33634
33634
33635
33635
33636
33636
33637
33637
33638
33638
33639
33639
33640
33640
33641
33641
33642
33642
33643
33643
33644
33644
33645
33645
33646
33646
33647
33647
33648
33648
33649
33649
33650
33650
33651
33651
33652
33652
33653
33653
33654
33654
33655
33655
33656
33656
33657
33657
33658
33658
33659
33659
33660
33660
33661
33661
33662
33662
33663
33663
33664
33664
33665
33665
33666
33666
33667
33667
33668
33668
33669
33669
33670
33670
33671
33671
33672
33672
33673
33673
33674
33674
33675
33675
33676
33676
33677
33677
33678
33678
33679
33679
33680
33680
33681
33681
33682
33682
33683
33683
33684
33684
33685
33685
33686
33686
33687
33687
33688
33688
33689
33689
33690
33690
33691
33691
33692
33692
33693
33693
33694
33694
33695
33695
33696
33696
33697
33697
33698
33698
33699
33699
33700
33700
33701
33701
33702
33702
33703
33703
33704
33704
33705
33705
33706
33706
33707
33707
33708
33708
33709
33709
33710
33710
33711
33711
33712
33712
33713
33713
33714
33714
33715
33715
33716
33716
33717
33717
33718
33718
33719
33719
33720
33720
33721
33721
33722
33722
33723
33723
33724
33724
33725
33725
33726
33726
33727
33727
33728
33728
33729
33729
33730
33730
33731
33731
33732
33732
33733
33733
33734
33734
33735
33735
33736
33736
33737
33737
33738
33738
33739
33739
33740
33740
33741
33741
33742
33742
33743
33743
33744
33744
33745
33745
33746
33746
33747
33747
33748
33748
33749
33749
33750
33750
33751
33751
33752
33752
33753
33753
33754
33754
33755
33755
33756
33756
33757
33757
33758
33758
33759
33759
33760
33760
33761
33761
33762
33762
33763
33763
33764
33764
33765
33765
33766
33766
33767
33767
33768
33768
33769
33769
33770
33770
33771
33771
33772
33772
33773
33773
33774
33774
33775
33775
33776
33776
33777
33777
33778
33778
33779
33779
33780
33780
33781
33781
33782
33782
33783
33783
33784
33784
33785
33785
33786
33786
33787
33787
33788
33788
33789
33789
33790
33790
33791
33791
33792
33792
33793
33793
33794
33794
33795
33795
33796
33796
33797
33797
33798
33798
33799
33799
33800
33800
33801
33801
33802
33802
33803
33803
33804
33804
33805
33805
33806
33806
33807
33807
33808
33808
33809
33809
33810
33810
33811
33811
33812
33812
33813
33813
33814
33814
33815
33815
33816
33816
33817
33817
33818
33818
33819
33819
33820
33820
33821
33821
33822
33822
33823
33823
33824
33824
33825
33825
33826
33826
33827
33827
33828
33828
33829
33829
33830
33830
33831
33831
33832
33832
33833
33833
33834
33834
33835
33835
33836
33836
33837
33837
33838
33838
33839
33839
33840
33840
33841
33841
33842
33842
33843
33843
33844
33844
33845
33845
33846
33846
33847
33847
33848
33848
33849
33849
33850
33850
33851
33851
33852
33852
33853
33853
33854
33854
33855
33855
33856
33856
33857
33857
33858
33858
33859
33859
33860
33860
33861
33861
33862
33862
33863
33863
33864
33864
33865
33865
33866
33866
33867
33867
33868
33868
33869
33869
33870
33870
33871
33871
33872
33872
33873
33873
33874
33874
33875
33875
33876
33876
33877
33877
33878
33878
33879
33879
33880
33880
33881
33881
33882
33882
33883
33883
33884
33884
33885
33885
33886
33886
33887
33887
33888
33888
33889
33889
33890
33890
33891
33891
33892
33892
33893
33893
33894
33894
33895
33895
33896
33896
33897
33897
33898
33898
33899
33899
33900
33900
33901
33901
33902
33902
33903
33903
33904
33904
33905
33905
33906
33906
33907
33907
33908
33908
33909
33909
33910
33910
33911
33911
33912
33912
33913
33913
33914
33914
33915
33915
33916
33916
33917
33917
33918
33918
33919
33919
33920
33920
33921
33921
33922
33922
33923
33923
33924
33924
33925
33925
33926
33926
33927
33927
33928
33928
33929
33929
33930
33930
33931
33931
33932
33932
33933
33933
33934
33934
33935
33935
33936
33936
33937
33937
33938
33938
33939
33939
33940
33940
33941
33941
33942
33942
33943
33943
33944
33944
33945
33945
33946
33946
33947
33947
33948
33948
33949
33949
33950
33950
33951
33951
33952
33952
33953
33953
33954
33954
33955
33955
33956
33956
33957
33957
33958
33958
33959
33959
33960
33960
33961
33961
33962
33962
33963
33963
33964
33964
33965
33965
33966
33966
33967
33967
33968
33968
33969
33969
33970
33970
33971
33971
33972
33972
33973
33973
33974
33974
33975
33975
33976
33976
33977
33977
33978
33978
33979
33979
33980
33980
33981
33981
33982
33982
33983
33983
33984
33984
33985
33985
33986
33986
33987
33987
33988
33988
33989
33989
33990
33990
33991
33991
33992
33992
33993
33993
33994
33994
33995
33995
33996
33996
33997
33997
33998
33998
33999
33999
34000
34000
34001
34001
34002
34002
34003
34003
34004
34004
34005
34005
34006
34006
34007
34007
34008
34008
34009
34009
34010
34010
34011
34011
34012
34012
34013
34013
34014
34014
34015
34015
34016
34016
34017
34017
34018
34018
34019
34019
34020
34020
34021
34021
34022
34022
34023
34023
34024
34024
34025
34025
34026
34026
34027
34027
34028
34028
34029
34029
34030
34030
34031
34031
34032
34032
34033
34033
34034
34034
34035
34035
34036
34036
34037
34037
34038
34038
34039
34039
34040
34040
34041
34041
34042
34042
34043
34043
34044
34044
34045
34045
34046
34046
34047
34047
34048
34048
34049
34049
34050
34050
34051
34051
34052
34052
34053
34053
34054
34054
34055
34055
34056
34056
34057
34057
34058
34058
34059
34059
34060
34060
34061
34061
34062
34062
34063
34063
34064
34064
34065
34065
34066
34066
34067
34067
34068
34068
34069
34069
34070
34070
34071
34071
34072
34072
34073
34073
34074
34074
34075
34075
34076
34076
34077
34077
34078
34078
34079
34079
34080
34080
34081
34081
34082
34082
34083
34083
34084
34084
34085
34085
34086
34086
34087
34087
34088
34088
34089
34089
34090
34090
34091
34091
34092
34092
34093
34093
34094
34094
34095
34095
34096
34096
34097
34097
34098
34098
34099
34099
34100
34100
34101
34101
34102
34102
34103
34103
34104
34104
34105
34105
34106
34106
34107
34107
34108
34108
34109
34109
34110
34110
34111
34111
34112
34112
34113
34113
34114
34114
34115
34115
34116
34116
34117
34117
34118
34118
34119
34119
34120
34120
34121
34121
34122
34122
34123
34123
34124
34124
34125
34125
34126
34126
34127
34127
34128
34128
34129
34129
34130
34130
34131
34131
34132
34132
34133
34133
34134
34134
34135
34135
34136
34136
34137
34137
34138
34138
34139
34139
34140
34140
34141
34141
34142
34142
34143
34143
34144
34144
34145
34145
34146
34146
34147
34147
34148
34148
34149
34149
34150
34150
34151
34151
34152
34152
34153
34153
34154
34154
34155
34155
34156
34156
34157
34157
34158
34158
34159
34159
34160
34160
34161
34161
34162
34162
34163
34163
34164
34164
34165
34165
34166
34166
34167
34167
34168
34168
34169
34169
34170
34170
34171
34171
34172
34172
34173
34173
34174
34174
34175
34175
34176
34176
34177
34177
34178
34178
34179
34179
34180
34180
34181
34181
34182
34182
34183
34183
34184
34184
34185
34185
34186
34186
34187
34187
34188
34188
34189
34189
34190
34190
34191
34191
34192
34192
34193
34193
34194
34194
34195
34195
34196
34196
34197
34197
34198
34198
34199
34199
34200
34200
34201
34201
34202
34202
34203
34203
34204
34204
34205
34205
34206
34206
34207
34207
34208
34208
34209
34209
34210
34210
34211
34211
34212
34212
34213
34213
34214
34214
34215
34215
34216
34216
34217
34217
34218
34218
34219
34219
34220
34220
34221
34221
34222
34222
34223
34223
34224
34224
34225
34225
34226
34226
34227
34227
34228
34228
34229
34229
34230
34230
34231
34231
34232
34232
34233
34233
34234
34234
34235
34235
34236
34236
34237
34237
34238
34238
34239
34239
34240
34240
34241
34241
34242
34242
34243
34243
34244
34244
34245
34245
34246
34246
34247
34247
34248
34248
34249
34249
34250
34250
34251
34251
34252
34252
34253
34253
34254
34254
34255
34255
34256
34256
34257
34257
34258
34258
34259
34259
34260
34260
34261
34261
34262
34262
34263
34263
34264
34264
34265
34265
34266
34266
34267
34267
34268
34268
34269
34269
34270
34270
34271
34271
34272
34272
34273
34273
34274
34274
34275
34275
34276
34276
34277
34277
34278
34278
34279
34279
34280
34280
34281
34281
34282
34282
34283
34283
34284
34284
34285
34285
34286
34286
34287
34287
34288
34288
34289
34289
34290
34290
34291
34291
34292
34292
34293
34293
34294
34294
34295
34295
34296
34296
34297
34297
34298
34298
34299
34299
34300
34300
34301
34301
34302
34302
34303
34303
34304
34304
34305
34305
34306
34306
34307
34307
34308
34308
34309
34309
34310
34310
34311
34311
34312
34312
34313
34313
34314
34314
34315
34315
34316
34316
34317
34317
34318
34318
34319
34319
34320
34320
34321
34321
34322
34322
34323
34323
34324
34324
34325
34325
34326
34326
34327
34327
34328
34328
34329
34329
34330
34330
34331
34331
34332
34332
34333
34333
34334
34334
34335
34335
34336
34336
34337
34337
34338
34338
34339
34339
34340
34340
34341
34341
34342
34342
34343
34343
34344
34344
34345
34345
34346
34346
34347
34347
34348
34348
34349
34349
34350
34350
34351
34351
34352
34352
34353
34353
34354
34354
34355
34355
34356
34356
34357
34357
34358
34358
34359
34359
34360
34360
34361
34361
34362
34362
34363
34363
34364
34364
34365
34365
34366
34366
34367
34367
34368
34368
34369
34369
34370
34370
34371
34371
34372
34372
34373
34373
34374
34374
34375
34375
34376
34376
34377
34377
34378
34378
34379
34379
34380
34380
34381
34381
34382
34382
34383
34383
34384
34384
34385
34385
34386
34386
34387
34387
34388
34388
34389
34389
34390
34390
34391
34391
34392
34392
34393
34393
34394
34394
34395
34395
34396
34396
34397
34397
34398
34398
34399
34399
34400
34400
34401
34401
34402
34402
34403
34403
34404
34404
34405
34405
34406
34406
34407
34407
34408
34408
34409
34409
34410
34410
34411
34411
34412
34412
34413
34413
34414
34414
34415
34415
34416
34416
34417
34417
34418
34418
34419
34419
34420
34420
34421
34421
34422
34422
34423
34423
34424
34424
34425
34425
34426
34426
34427
34427
34428
34428
34429
34429
34430
34430
34431
34431
34432
34432
34433
34433
34434
34434
34435
34435
34436
34436
34437
34437
34438
34438
34439
34439
34440
34440
34441
34441
34442
34442
34443
34443
34444
34444
34445
34445
34446
34446
34447
34447
34448
34448
34449
34449
34450
34450
34451
34451
34452
34452
34453
34453
34454
34454
34455
34455
34456
34456
34457
34457
34458
34458
34459
34459
34460
34460
34461
34461
34462
34462
34463
34463
34464
34464
34465
34465
34466
34466
34467
34467
34468
34468
34469
34469
34470
34470
34471
34471
34472
34472
34473
34473
34474
34474
34475
34475
34476
34476
34477
34477
34478
34478
34479
34479
34480
34480
34481
34481
34482
34482
34483
34483
34484
34484
34485
34485
34486
34486
34487
34487
34488
34488
34489
34489
34490
34490
34491
34491
34492
34492
34493
34493
34494
34494
34495
34495
34496
34496
34497
34497
34498
34498
34499
34499
34500
34500
34501
34501
34502
34502
34503
34503
34504
34504
34505
34505
34506
34506
34507
34507
34508
34508
34509
34509
34510
34510
34511
34511
34512
34512
34513
34513
34514
34514
34515
34515
34516
34516
34517
34517
34518
34518
34519
34519
34520
34520
34521
34521
34522
34522
34523
34523
34524
34524
34525
34525
34526
34526
34527
34527
34528
34528
34529
34529
34530
34530
34531
34531
34532
34532
34533
34533
34534
34534
34535
34535
34536
34536
34537
34537
34538
34538
34539
34539
34540
34540
34541
34541
34542
34542
34543
34543
34544
34544
34545
34545
34546
34546
34547
34547
34548
34548
34549
34549
34550
34550
34551
34551
34552
34552
34553
34553
34554
34554
34555
34555
34556
34556
34557
34557
34558
34558
34559
34559
34560
34560
34561
34561
34562
34562
34563
34563
34564
34564
34565
34565
34566
34566
34567
34567
34568
34568
34569
34569
34570
34570
34571
34571
34572
34572
34573
34573
34574
34574
34575
34575
34576
34576
34577
34577
34578
34578
34579
34579
34580
34580
34581
34581
34582
34582
34583
34583
34584
34584
34585
34585
34586
34586
34587
34587
34588
34588
34589
34589
34590
34590
34591
34591
34592
34592
34593
34593
34594
34594
34595
34595
34596
34596
34597
34597
34598
34598
34599
34599
34600
34600
34601
34601
34602
34602
34603
34603
34604
34604
34605
34605
34606
34606
34607
34607
34608
34608
34609
34609
34610
34610
34611
34611
34612
34612
34613
34613
34614
34614
34615
34615
34616
34616
34617
34617
34618
34618
34619
34619
34620
34620
34621
34621
34622
34622
34623
34623
34624
34624
34625
34625
34626
34626
34627
34627
34628
34628
34629
34629
34630
34630
34631
34631
34632
34632
34633
34633
34634
34634
34635
34635
34636
34636
34637
34637
34638
34638
34639
34639
34640
34640
34641
34641
34642
34642
34643
34643
34644
34644
34645
34645
34646
34646
34647
34647
34648
34648
34649
34649
34650
34650
34651
34651
34652
34652
34653
34653
34654
34654
34655
34655
34656
34656
34657
34657
34658
34658
34659
34659
34660
34660
34661
34661
34662
34662
34663
34663
34664
34664
34665
34665
34666
34666
34667
34667
34668
34668
34669
34669
34670
34670
34671
34671
34672
34672
34673
34673
34674
34674
34675
34675
34676
34676
34677
34677
34678
34678
34679
34679
34680
34680
34681
34681
34682
34682
34683
34683
34684
34684
34685
34685
34686
34686
34687
34687
34688
34688
34689
34689
34690
34690
34691
34691
34692
34692
34693
34693
34694
34694
34695
34695
34696
34696
34697
34697
34698
34698
34699
34699
34700
34700
34701
34701
34702
34702
34703
34703
34704
34704
34705
34705
34706
34706
34707
34707
34708
34708
34709
34709
34710
34710
34711
34711
34712
34712
34713
34713
34714
34714
34715
34715
34716
34716
34717
34717
34718
34718
34719
34719
34720
34720
34721
34721
34722
34722
34723
34723
34724
34724
34725
34725
34726
34726
34727
34727
34728
34728
34729
34729
34730
34730
34731
34731
34732
34732
34733
34733
34734
34734
34735
34735
34736
34736
34737
34737
34738
34738
34739
34739
34740
34740
34741
34741
34742
34742
34743
34743
34744
34744
34745
34745
34746
34746
34747
34747
34748
34748
34749
34749
34750
34750
34751
34751
34752
34752
34753
34753
34754
34754
34755
34755
34756
34756
34757
34757
34758
34758
34759
34759
34760
34760
34761
34761
34762
34762
34763
34763
34764
34764
34765
34765
34766
34766
34767
34767
34768
34768
34769
34769
34770
34770
34771
34771
34772
34772
34773
34773
34774
34774
34775
34775
34776
34776
34777
34777
34778
34778
34779
34779
34780
34780
34781
34781
34782
34782
34783
34783
34784
34784
34785
34785
34786
34786
34787
34787
34788
34788
34789
34789
34790
34790
34791
34791
34792
34792
34793
34793
34794
34794
34795
34795
34796
34796
34797
34797
34798
34798
34799
34799
34800
34800
34801
34801
34802
34802
34803
34803
34804
34804
34805
34805
34806
34806
34807
34807
34808
34808
34809
34809
34810
34810
34811
34811
34812
34812
34813
34813
34814
34814
34815
34815
34816
34816
34817
34817
34818
34818
34819
34819
34820
34820
34821
34821
34822
34822
34823
34823
34824
34824
34825
34825
34826
34826
34827
34827
34828
34828
34829
34829
34830
34830
34831
34831
34832
34832
34833
34833
34834
34834
34835
34835
34836
34836
34837
34837
34838
34838
34839
34839
34840
34840
34841
34841
34842
34842
34843
34843
34844
34844
34845
34845
34846
34846
34847
34847
34848
34848
34849
34849
34850
34850
34851
34851
34852
34852
34853
34853
34854
34854
34855
34855
34856
34856
34857
34857
34858
34858
34859
34859
34860
34860
34861
34861
34862
34862
34863
34863
34864
34864
34865
34865
34866
34866
34867
34867
34868
34868
34869
34869
34870
34870
34871
34871
34872
34872
34873
34873
34874
34874
34875
34875
34876
34876
34877
34877
34878
34878
34879
34879
34880
34880
34881
34881
34882
34882
34883
34883
34884
34884
34885
34885
34886
34886
34887
34887
34888
34888
34889
34889
34890
34890
34891
34891
34892
34892
34893
34893
34894
34894
34895
34895
34896
34896
34897
34897
34898
34898
34899
34899
34900
34900
34901
34901
34902
34902
34903
34903
34904
34904
34905
34905
34906
34906
34907
34907
34908
34908
34909
34909
34910
34910
34911
34911
34912
34912
34913
34913
34914
34914
34915
34915
34916
34916
34917
34917
34918
34918
34919
34919
34920
34920
34921
34921
34922
34922
34923
34923
34924
34924
34925
34925
34926
34926
34927
34927
34928
34928
34929
34929
34930
34930
34931
34931
34932
34932
34933
34933
34934
34934
34935
34935
34936
34936
34937
34937
34938
34938
34939
34939
34940
34940
34941
34941
34942
34942
34943
34943
34944
34944
34945
34945
34946
34946
34947
34947
34948
34948
34949
34949
34950
34950
34951
34951
34952
34952
34953
34953
34954
34954
34955
34955
34956
34956
34957
34957
34958
34958
34959
34959
34960
34960
34961
34961
34962
34962
34963
34963
34964
34964
34965
34965
34966
34966
34967
34967
34968
34968
34969
34969
34970
34970
34971
34971
34972
34972
34973
34973
34974
34974
34975
34975
34976
34976
34977
34977
34978
34978
34979
34979
34980
34980
34981
34981
34982
34982
34983
34983
34984
34984
34985
34985
34986
34986
34987
34987
34988
34988
34989
34989
34990
34990
34991
34991
34992
34992
34993
34993
34994
34994
34995
34995
34996
34996
34997
34997
34998
34998
34999
34999
35000
35000
35001
35001
35002
35002
35003
35003
35004
35004
35005
35005
35006
35006
35007
35007
35008
35008
35009
35009
35010
35010
35011
35011
35012
35012
35013
35013
35014
35014
35015
35015
35016
35016
35017
35017
35018
35018
35019
35019
35020
35020
35021
35021
35022
35022
35023
35023
35024
35024
35025
35025
35026
35026
35027
35027
35028
35028
35029
35029
35030
35030
35031
35031
35032
35032
35033
35033
35034
35034
35035
35035
35036
35036
35037
35037
35038
35038
35039
35039
35040
35040
35041
35041
35042
35042
35043
35043
35044
35044
35045
35045
35046
35046
35047
35047
35048
35048
35049
35049
35050
35050
35051
35051
35052
35052
35053
35053
35054
35054
35055
35055
35056
35056
35057
35057
35058
35058
35059
35059
35060
35060
35061
35061
35062
35062
35063
35063
35064
35064
35065
35065
35066
35066
35067
35067
35068
35068
35069
35069
35070
35070
35071
35071
35072
35072
35073
35073
35074
35074
35075
35075
35076
35076
35077
35077
35078
35078
35079
35079
35080
35080
35081
35081
35082
35082
35083
35083
35084
35084
35085
35085
35086
35086
35087
35087
35088
35088
35089
35089
35090
35090
35091
35091
35092
35092
35093
35093
35094
35094
35095
35095
35096
35096
35097
35097
35098
35098
35099
35099
35100
35100
35101
35101
35102
35102
35103
35103
35104
35104
35105
35105
35106
35106
35107
35107
35108
35108
35109
35109
35110
35110
35111
35111
35112
35112
35113
35113
35114
35114
35115
35115
35116
35116
35117
35117
35118
35118
35119
35119
35120
35120
35121
35121
35122
35122
35123
35123
35124
35124
35125
35125
35126
35126
35127
35127
35128
35128
35129
35129
35130
35130
35131
35131
35132
35132
35133
35133
35134
35134
35135
35135
35136
35136
35137
35137
35138
35138
35139
35139
35140
35140
35141
35141
35142
35142
35143
35143
35144
35144
35145
35145
35146
35146
35147
35147
35148
35148
35149
35149
35150
35150
35151
35151
35152
35152
35153
35153
35154
35154
35155
35155
35156
35156
35157
35157
35158
35158
35159
35159
35160
35160
35161
35161
35162
35162
35163
35163
35164
35164
35165
35165
35166
35166
35167
35167
35168
35168
35169
35169
35170
35170
35171
35171
35172
35172
35173
35173
35174
35174
35175
35175
35176
35176
35177
35177
35178
35178
35179
35179
35180
35180
35181
35181
35182
35182
35183
35183
35184
35184
35185
35185
35186
35186
35187
35187
35188
35188
35189
35189
35190
35190
35191
35191
35192
35192
35193
35193
35194
35194
35195
35195
35196
35196
35197
35197
35198
35198
35199
35199
35200
35200
35201
35201
35202
35202
35203
35203
35204
35204
35205
35205
35206
35206
35207
35207
35208
35208
35209
35209
35210
35210
35211
35211
35212
35212
35213
35213
35214
35214
35215
35215
35216
35216
35217
35217
35218
35218
35219
35219
35220
35220
35221
35221
35222
35222
35223
35223
35224
35224
35225
35225
35226
35226
35227
35227
35228
35228
35229
35229
35230
35230
35231
35231
35232
35232
35233
35233
35234
35234
35235
35235
35236
35236
35237
35237
35238
35238
35239
35239
35240
35240
35241
35241
35242
35242
35243
35243
35244
35244
35245
35245
35246
35246
35247
35247
35248
35248
35249
35249
35250
35250
35251
35251
35252
35252
35253
35253
35254
35254
35255
35255
35256
35256
35257
35257
35258
35258
35259
35259
35260
35260
35261
35261
35262
35262
35263
35263
35264
35264
35265
35265
35266
35266
35267
35267
35268
35268
35269
35269
35270
35270
35271
35271
35272
35272
35273
35273
35274
35274
35275
35275
35276
35276
35277
35277
35278
35278
35279
35279
35280
35280
35281
35281
35282
35282
35283
35283
35284
35284
35285
35285
35286
35286
35287
35287
35288
35288
35289
35289
35290
35290
35291
35291
35292
35292
35293
35293
35294
35294
35295
35295
35296
35296
35297
35297
35298
35298
35299
35299
35300
35300
35301
35301
35302
35302
35303
35303
35304
35304
35305
35305
35306
35306
35307
35307
35308
35308
35309
35309
35310
35310
35311
35311
35312
35312
35313
35313
35314
35314
35315
35315
35316
35316
35317
35317
35318
35318
35319
35319
35320
35320
35321
35321
35322
35322
35323
35323
35324
35324
35325
35325
35326
35326
35327
35327
35328
35328
35329
35329
35330
35330
35331
35331
35332
35332
35333
35333
35334
35334
35335
35335
35336
35336
35337
35337
35338
35338
35339
35339
35340
35340
35341
35341
35342
35342
35343
35343
35344
35344
35345
35345
35346
35346
35347
35347
35348
35348
35349
35349
35350
35350
35351
35351
35352
35352
35353
35353
35354
35354
35355
35355
35356
35356
35357
35357
35358
35358
35359
35359
35360
35360
35361
35361
35362
35362
35363
35363
35364
35364
35365
35365
35366
35366
35367
35367
35368
35368
35369
35369
35370
35370
35371
35371
35372
35372
35373
35373
35374
35374
35375
35375
35376
35376
35377
35377
35378
35378
35379
35379
35380
35380
35381
35381
35382
35382
35383
35383
35384
35384
35385
35385
35386
35386
35387
35387
35388
35388
35389
35389
35390
35390
35391
35391
35392
35392
35393
35393
35394
35394
35395
35395
35396
35396
35397
35397
35398
35398
35399
35399
35400
35400
35401
35401
35402
35402
35403
35403
35404
35404
35405
35405
35406
35406
35407
35407
35408
35408
35409
35409
35410
35410
35411
35411
35412
35412
35413
35413
35414
35414
35415
35415
35416
35416
35417
35417
35418
35418
35419
35419
35420
35420
35421
35421
35422
35422
35423
35423
35424
35424
35425
35425
35426
35426
35427
35427
35428
35428
35429
35429
35430
35430
35431
35431
35432
35432
35433
35433
35434
35434
35435
35435
35436
35436
35437
35437
35438
35438
35439
35439
35440
35440
35441
35441
35442
35442
35443
35443
35444
35444
35445
35445
35446
35446
35447
35447
35448
35448
35449
35449
35450
35450
35451
35451
35452
35452
35453
35453
35454
35454
35455
35455
35456
35456
35457
35457
35458
35458
35459
35459
35460
35460
35461
35461
35462
35462
35463
35463
35464
35464
35465
35465
35466
35466
35467
35467
35468
35468
35469
35469
35470
35470
35471
35471
35472
35472
35473
35473
35474
35474
35475
35475
35476
35476
35477
35477
35478
35478
35479
35479
35480
35480
35481
35481
35482
35482
35483
35483
35484
35484
35485
35485
35486
35486
35487
35487
35488
35488
35489
35489
35490
35490
35491
35491
35492
35492
35493
35493
35494
35494
35495
35495
35496
35496
35497
35497
35498
35498
35499
35499
35500
35500
35501
35501
35502
35502
35503
35503
35504
35504
35505
35505
35506
35506
35507
35507
35508
35508
35509
35509
35510
35510
35511
35511
35512
35512
35513
35513
35514
35514
35515
35515
35516
35516
35517
35517
35518
35518
35519
35519
35520
35520
35521
35521
35522
35522
35523
35523
35524
35524
35525
35525
35526
35526
35527
35527
35528
35528
35529
35529
35530
35530
35531
35531
35532
35532
35533
35533
35534
35534
35535
35535
35536
35536
35537
35537
35538
35538
35539
35539
35540
35540
35541
35541
35542
35542
35543
35543
35544
35544
35545
35545
35546
35546
35547
35547
35548
35548
35549
35549
35550
35550
35551
35551
35552
35552
35553
35553
35554
35554
35555
35555
35556
35556
35557
35557
35558
35558
35559
35559
35560
35560
35561
35561
35562
35562
35563
35563
35564
35564
35565
35565
35566
35566
35567
35567
35568
35568
35569
35569
35570
35570
35571
35571
35572
35572
35573
35573
35574
35574
35575
35575
35576
35576
35577
35577
35578
35578
35579
35579
35580
35580
35581
35581
35582
35582
35583
35583
35584
35584
35585
35585
35586
35586
35587
35587
35588
35588
35589
35589
35590
35590
35591
35591
35592
35592
35593
35593
35594
35594
35595
35595
35596
35596
35597
35597
35598
35598
35599
35599
35600
35600
35601
35601
35602
35602
35603
35603
35604
35604
35605
35605
35606
35606
35607
35607
35608
35608
35609
35609
35610
35610
35611
35611
35612
35612
35613
35613
35614
35614
35615
35615
35616
35616
35617
35617
35618
35618
35619
35619
35620
35620
35621
35621
35622
35622
35623
35623
35624
35624
35625
35625
35626
35626
35627
35627
35628
35628
35629
35629
35630
35630
35631
35631
35632
35632
35633
35633
35634
35634
35635
35635
35636
35636
35637
35637
35638
35638
35639
35639
35640
35640
35641
35641
35642
35642
35643
35643
35644
35644
35645
35645
35646
35646
35647
35647
35648
35648
35649
35649
35650
35650
35651
35651
35652
35652
35653
35653
35654
35654
35655
35655
35656
35656
35657
35657
35658
35658
35659
35659
35660
35660
35661
35661
35662
35662
35663
35663
35664
35664
35665
35665
35666
35666
35667
35667
35668
35668
35669
35669
35670
35670
35671
35671
35672
35672
35673
35673
35674
35674
35675
35675
35676
35676
35677
35677
35678
35678
35679
35679
35680
35680
35681
35681
35682
35682
35683
35683
35684
35684
35685
35685
35686
35686
35687
35687
35688
35688
35689
35689
35690
35690
35691
35691
35692
35692
35693
35693
35694
35694
35695
35695
35696
35696
35697
35697
35698
35698
35699
35699
35700
35700
35701
35701
35702
35702
35703
35703
35704
35704
35705
35705
35706
35706
35707
35707
35708
35708
35709
35709
35710
35710
35711
35711
35712
35712
35713
35713
35714
35714
35715
35715
35716
35716
35717
35717
35718
35718
35719
35719
35720
35720
35721
35721
35722
35722
35723
35723
35724
35724
35725
35725
35726
35726
35727
35727
35728
35728
35729
35729
35730
35730
35731
35731
35732
35732
35733
35733
35734
35734
35735
35735
35736
35736
35737
35737
35738
35738
35739
35739
35740
35740
35741
35741
35742
35742
35743
35743
35744
35744
35745
35745
35746
35746
35747
35747
35748
35748
35749
35749
35750
35750
35751
35751
35752
35752
35753
35753
35754
35754
35755
35755
35756
35756
35757
35757
35758
35758
35759
35759
35760
35760
35761
35761
35762
35762
35763
35763
35764
35764
35765
35765
35766
35766
35767
35767
35768
35768
35769
35769
35770
35770
35771
35771
35772
35772
35773
35773
35774
35774
35775
35775
35776
35776
35777
35777
35778
35778
35779
35779
35780
35780
35781
35781
35782
35782
35783
35783
35784
35784
35785
35785
35786
35786
35787
35787
35788
35788
35789
35789
35790
35790
35791
35791
35792
35792
35793
35793
35794
35794
35795
35795
35796
35796
35797
35797
35798
35798
35799
35799
35800
35800
35801
35801
35802
35802
35803
35803
35804
35804
35805
35805
35806
35806
35807
35807
35808
35808
35809
35809
35810
35810
35811
35811
35812
35812
35813
35813
35814
35814
35815
35815
35816
35816
35817
35817
35818
35818
35819
35819
35820
35820
35821
35821
35822
35822
35823
35823
35824
35824
35825
35825
35826
35826
35827
35827
35828
35828
35829
35829
35830
35830
35831
35831
35832
35832
35833
35833
35834
35834
35835
35835
35836
35836
35837
35837
35838
35838
35839
35839
35840
35840
35841
35841
35842
35842
35843
35843
35844
35844
35845
35845
35846
35846
35847
35847
35848
35848
35849
35849
35850
35850
35851
35851
35852
35852
35853
35853
35854
35854
35855
35855
35856
35856
35857
35857
35858
35858
35859
35859
35860
35860
35861
35861
35862
35862
35863
35863
35864
35864
35865
35865
35866
35866
35867
35867
35868
35868
35869
35869
35870
35870
35871
35871
35872
35872
35873
35873
35874
35874
35875
35875
35876
35876
35877
35877
35878
35878
35879
35879
35880
35880
35881
35881
35882
35882
35883
35883
35884
35884
35885
35885
35886
35886
35887
35887
35888
35888
35889
35889
35890
35890
35891
35891
35892
35892
35893
35893
35894
35894
35895
35895
35896
35896
35897
35897
35898
35898
35899
35899
35900
35900
35901
35901
35902
35902
35903
35903
35904
35904
35905
35905
35906
35906
35907
35907
35908
35908
35909
35909
35910
35910
35911
35911
35912
35912
35913
35913
35914
35914
35915
35915
35916
35916
35917
35917
35918
35918
35919
35919
35920
35920
35921
35921
35922
35922
35923
35923
35924
35924
35925
35925
35926
35926
35927
35927
35928
35928
35929
35929
35930
35930
35931
35931
35932
35932
35933
35933
35934
35934
35935
35935
35936
35936
35937
35937
35938
35938
35939
35939
35940
35940
35941
35941
35942
35942
35943
35943
35944
35944
35945
35945
35946
35946
35947
35947
35948
35948
35949
35949
35950
35950
35951
35951
35952
35952
35953
35953
35954
35954
35955
35955
35956
35956
35957
35957
35958
35958
35959
35959
35960
35960
35961
35961
35962
35962
35963
35963
35964
35964
35965
35965
35966
35966
35967
35967
35968
35968
35969
35969
35970
35970
35971
35971
35972
35972
35973
35973
35974
35974
35975
35975
35976
35976
35977
35977
35978
35978
35979
35979
35980
35980
35981
35981
35982
35982
35983
35983
35984
35984
35985
35985
35986
35986
35987
35987
35988
35988
35989
35989
35990
35990
35991
35991
35992
35992
35993
35993
35994
35994
35995
35995
35996
35996
35997
35997
35998
35998
35999
35999
36000
36000
36001
36001
36002
36002
36003
36003
36004
36004
36005
36005
36006
36006
36007
36007
36008
36008
36009
36009
36010
36010
36011
36011
36012
36012
36013
36013
36014
36014
36015
36015
36016
36016
36017
36017
36018
36018
36019
36019
36020
36020
36021
36021
36022
36022
36023
36023
36024
36024
36025
36025
36026
36026
36027
36027
36028
36028
36029
36029
36030
36030
36031
36031
36032
36032
36033
36033
36034
36034
36035
36035
36036
36036
36037
36037
36038
36038
36039
36039
36040
36040
36041
36041
36042
36042
36043
36043
36044
36044
36045
36045
36046
36046
36047
36047
36048
36048
36049
36049
36050
36050
36051
36051
36052
36052
36053
36053
36054
36054
36055
36055
36056
36056
36057
36057
36058
36058
36059
36059
36060
36060
36061
36061
36062
36062
36063
36063
36064
36064
36065
36065
36066
36066
36067
36067
36068
36068
36069
36069
36070
36070
36071
36071
36072
36072
36073
36073
36074
36074
36075
36075
36076
36076
36077
36077
36078
36078
36079
36079
36080
36080
36081
36081
36082
36082
36083
36083
36084
36084
36085
36085
36086
36086
36087
36087
36088
36088
36089
36089
36090
36090
36091
36091
36092
36092
36093
36093
36094
36094
36095
36095
36096
36096
36097
36097
36098
36098
36099
36099
36100
36100
36101
36101
36102
36102
36103
36103
36104
36104
36105
36105
36106
36106
36107
36107
36108
36108
36109
36109
36110
36110
36111
36111
36112
36112
36113
36113
36114
36114
36115
36115
36116
36116
36117
36117
36118
36118
36119
36119
36120
36120
36121
36121
36122
36122
36123
36123
36124
36124
36125
36125
36126
36126
36127
36127
36128
36128
36129
36129
36130
36130
36131
36131
36132
36132
36133
36133
36134
36134
36135
36135
36136
36136
36137
36137
36138
36138
36139
36139
36140
36140
36141
36141
36142
36142
36143
36143
36144
36144
36145
36145
36146
36146
36147
36147
36148
36148
36149
36149
36150
36150
36151
36151
36152
36152
36153
36153
36154
36154
36155
36155
36156
36156
36157
36157
36158
36158
36159
36159
36160
36160
36161
36161
36162
36162
36163
36163
36164
36164
36165
36165
36166
36166
36167
36167
36168
36168
36169
36169
36170
36170
36171
36171
36172
36172
36173
36173
36174
36174
36175
36175
36176
36176
36177
36177
36178
36178
36179
36179
36180
36180
36181
36181
36182
36182
36183
36183
36184
36184
36185
36185
36186
36186
36187
36187
36188
36188
36189
36189
36190
36190
36191
36191
36192
36192
36193
36193
36194
36194
36195
36195
36196
36196
36197
36197
36198
36198
36199
36199
36200
36200
36201
36201
36202
36202
36203
36203
36204
36204
36205
36205
36206
36206
36207
36207
36208
36208
36209
36209
36210
36210
36211
36211
36212
36212
36213
36213
36214
36214
36215
36215
36216
36216
36217
36217
36218
36218
36219
36219
36220
36220
36221
36221
36222
36222
36223
36223
36224
36224
36225
36225
36226
36226
36227
36227
36228
36228
36229
36229
36230
36230
36231
36231
36232
36232
36233
36233
36234
36234
36235
36235
36236
36236
36237
36237
36238
36238
36239
36239
36240
36240
36241
36241
36242
36242
36243
36243
36244
36244
36245
36245
36246
36246
36247
36247
36248
36248
36249
36249
36250
36250
36251
36251
36252
36252
36253
36253
36254
36254
36255
36255
36256
36256
36257
36257
36258
36258
36259
36259
36260
36260
36261
36261
36262
36262
36263
36263
36264
36264
36265
36265
36266
36266
36267
36267
36268
36268
36269
36269
36270
36270
36271
36271
36272
36272
36273
36273
36274
36274
36275
36275
36276
36276
36277
36277
36278
36278
36279
36279
36280
36280
36281
36281
36282
36282
36283
36283
36284
36284
36285
36285
36286
36286
36287
36287
36288
36288
36289
36289
36290
36290
36291
36291
36292
36292
36293
36293
36294
36294
36295
36295
36296
36296
36297
36297
36298
36298
36299
36299
36300
36300
36301
36301
36302
36302
36303
36303
36304
36304
36305
36305
36306
36306
36307
36307
36308
36308
36309
36309
36310
36310
36311
36311
36312
36312
36313
36313
36314
36314
36315
36315
36316
36316
36317
36317
36318
36318
36319
36319
36320
36320
36321
36321
36322
36322
36323
36323
36324
36324
36325
36325
36326
36326
36327
36327
36328
36328
36329
36329
36330
36330
36331
36331
36332
36332
36333
36333
36334
36334
36335
36335
36336
36336
36337
36337
36338
36338
36339
36339
36340
36340
36341
36341
36342
36342
36343
36343
36344
36344
36345
36345
36346
36346
36347
36347
36348
36348
36349
36349
36350
36350
36351
36351
36352
36352
36353
36353
36354
36354
36355
36355
36356
36356
36357
36357
36358
36358
36359
36359
36360
36360
36361
36361
36362
36362
36363
36363
36364
36364
36365
36365
36366
36366
36367
36367
36368
36368
36369
36369
36370
36370
36371
36371
36372
36372
36373
36373
36374
36374
36375
36375
36376
36376
36377
36377
36378
36378
36379
36379
36380
36380
36381
36381
36382
36382
36383
36383
36384
36384
36385
36385
36386
36386
36387
36387
36388
36388
36389
36389
36390
36390
36391
36391
36392
36392
36393
36393
36394
36394
36395
36395
36396
36396
36397
36397
36398
36398
36399
36399
36400
36400
36401
36401
36402
36402
36403
36403
36404
36404
36405
36405
36406
36406
36407
36407
36408
36408
36409
36409
36410
36410
36411
36411
36412
36412
36413
36413
36414
36414
36415
36415
36416
36416
36417
36417
36418
36418
36419
36419
36420
36420
36421
36421
36422
36422
36423
36423
36424
36424
36425
36425
36426
36426
36427
36427
36428
36428
36429
36429
36430
36430
36431
36431
36432
36432
36433
36433
36434
36434
36435
36435
36436
36436
36437
36437
36438
36438
36439
36439
36440
36440
36441
36441
36442
36442
36443
36443
36444
36444
36445
36445
36446
36446
36447
36447
36448
36448
36449
36449
36450
36450
36451
36451
36452
36452
36453
36453
36454
36454
36455
36455
36456
36456
36457
36457
36458
36458
36459
36459
36460
36460
36461
36461
36462
36462
36463
36463
36464
36464
36465
36465
36466
36466
36467
36467
36468
36468
36469
36469
36470
36470
36471
36471
36472
36472
36473
36473
36474
36474
36475
36475
36476
36476
36477
36477
36478
36478
36479
36479
36480
36480
36481
36481
36482
36482
36483
36483
36484
36484
36485
36485
36486
36486
36487
36487
36488
36488
36489
36489
36490
36490
36491
36491
36492
36492
36493
36493
36494
36494
36495
36495
36496
36496
36497
36497
36498
36498
36499
36499
36500
36500
36501
36501
36502
36502
36503
36503
36504
36504
36505
36505
36506
36506
36507
36507
36508
36508
36509
36509
36510
36510
36511
36511
36512
36512
36513
36513
36514
36514
36515
36515
36516
36516
36517
36517
36518
36518
36519
36519
36520
36520
36521
36521
36522
36522
36523
36523
36524
36524
36525
36525
36526
36526
36527
36527
36528
36528
36529
36529
36530
36530
36531
36531
36532
36532
36533
36533
36534
36534
36535
36535
36536
36536
36537
36537
36538
36538
36539
36539
36540
36540
36541
36541
36542
36542
36543
36543
36544
36544
36545
36545
36546
36546
36547
36547
36548
36548
36549
36549
36550
36550
36551
36551
36552
36552
36553
36553
36554
36554
36555
36555
36556
36556
36557
36557
36558
36558
36559
36559
36560
36560
36561
36561
36562
36562
36563
36563
36564
36564
36565
36565
36566
36566
36567
36567
36568
36568
36569
36569
36570
36570
36571
36571
36572
36572
36573
36573
36574
36574
36575
36575
36576
36576
36577
36577
36578
36578
36579
36579
36580
36580
36581
36581
36582
36582
36583
36583
36584
36584
36585
36585
36586
36586
36587
36587
36588
36588
36589
36589
36590
36590
36591
36591
36592
36592
36593
36593
36594
36594
36595
36595
36596
36596
36597
36597
36598
36598
36599
36599
36600
36600
36601
36601
36602
36602
36603
36603
36604
36604
36605
36605
36606
36606
36607
36607
36608
36608
36609
36609
36610
36610
36611
36611
36612
36612
36613
36613
36614
36614
36615
36615
36616
36616
36617
36617
36618
36618
36619
36619
36620
36620
36621
36621
36622
36622
36623
36623
36624
36624
36625
36625
36626
36626
36627
36627
36628
36628
36629
36629
36630
36630
36631
36631
36632
36632
36633
36633
36634
36634
36635
36635
36636
36636
36637
36637
36638
36638
36639
36639
36640
36640
36641
36641
36642
36642
36643
36643
36644
36644
36645
36645
36646
36646
36647
36647
36648
36648
36649
36649
36650
36650
36651
36651
36652
36652
36653
36653
36654
36654
36655
36655
36656
36656
36657
36657
36658
36658
36659
36659
36660
36660
36661
36661
36662
36662
36663
36663
36664
36664
36665
36665
36666
36666
36667
36667
36668
36668
36669
36669
36670
36670
36671
36671
36672
36672
36673
36673
36674
36674
36675
36675
36676
36676
36677
36677
36678
36678
36679
36679
36680
36680
36681
36681
36682
36682
36683
36683
36684
36684
36685
36685
36686
36686
36687
36687
36688
36688
36689
36689
36690
36690
36691
36691
36692
36692
36693
36693
36694
36694
36695
36695
36696
36696
36697
36697
36698
36698
36699
36699
36700
36700
36701
36701
36702
36702
36703
36703
36704
36704
36705
36705
36706
36706
36707
36707
36708
36708
36709
36709
36710
36710
36711
36711
36712
36712
36713
36713
36714
36714
36715
36715
36716
36716
36717
36717
36718
36718
36719
36719
36720
36720
36721
36721
36722
36722
36723
36723
36724
36724
36725
36725
36726
36726
36727
36727
36728
36728
36729
36729
36730
36730
36731
36731
36732
36732
36733
36733
36734
36734
36735
36735
36736
36736
36737
36737
36738
36738
36739
36739
36740
36740
36741
36741
36742
36742
36743
36743
36744
36744
36745
36745
36746
36746
36747
36747
36748
36748
36749
36749
36750
36750
36751
36751
36752
36752
36753
36753
36754
36754
36755
36755
36756
36756
36757
36757
36758
36758
36759
36759
36760
36760
36761
36761
36762
36762
36763
36763
36764
36764
36765
36765
36766
36766
36767
36767
36768
36768
36769
36769
36770
36770
36771
36771
36772
36772
36773
36773
36774
36774
36775
36775
36776
36776
36777
36777
36778
36778
36779
36779
36780
36780
36781
36781
36782
36782
36783
36783
36784
36784
36785
36785
36786
36786
36787
36787
36788
36788
36789
36789
36790
36790
36791
36791
36792
36792
36793
36793
36794
36794
36795
36795
36796
36796
36797
36797
36798
36798
36799
36799
36800
36800
36801
36801
36802
36802
36803
36803
36804
36804
36805
36805
36806
36806
36807
36807
36808
36808
36809
36809
36810
36810
36811
36811
36812
36812
36813
36813
36814
36814
36815
36815
36816
36816
36817
36817
36818
36818
36819
36819
36820
36820
36821
36821
36822
36822
36823
36823
36824
36824
36825
36825
36826
36826
36827
36827
36828
36828
36829
36829
36830
36830
36831
36831
36832
36832
36833
36833
36834
36834
36835
36835
36836
36836
36837
36837
36838
36838
36839
36839
36840
36840
36841
36841
36842
36842
36843
36843
36844
36844
36845
36845
36846
36846
36847
36847
36848
36848
36849
36849
36850
36850
36851
36851
36852
36852
36853
36853
36854
36854
36855
36855
36856
36856
36857
36857
36858
36858
36859
36859
36860
36860
36861
36861
36862
36862
36863
36863
36864
36864
36865
36865
36866
36866
36867
36867
36868
36868
36869
36869
36870
36870
36871
36871
36872
36872
36873
36873
36874
36874
36875
36875
36876
36876
36877
36877
36878
36878
36879
36879
36880
36880
36881
36881
36882
36882
36883
36883
36884
36884
36885
36885
36886
36886
36887
36887
36888
36888
36889
36889
36890
36890
36891
36891
36892
36892
36893
36893
36894
36894
36895
36895
36896
36896
36897
36897
36898
36898
36899
36899
36900
36900
36901
36901
36902
36902
36903
36903
36904
36904
36905
36905
36906
36906
36907
36907
36908
36908
36909
36909
36910
36910
36911
36911
36912
36912
36913
36913
36914
36914
36915
36915
36916
36916
36917
36917
36918
36918
36919
36919
36920
36920
36921
36921
36922
36922
36923
36923
36924
36924
36925
36925
36926
36926
36927
36927
36928
36928
36929
36929
36930
36930
36931
36931
36932
36932
36933
36933
36934
36934
36935
36935
36936
36936
36937
36937
36938
36938
36939
36939
36940
36940
36941
36941
36942
36942
36943
36943
36944
36944
36945
36945
36946
36946
36947
36947
36948
36948
36949
36949
36950
36950
36951
36951
36952
36952
36953
36953
36954
36954
36955
36955
36956
36956
36957
36957
36958
36958
36959
36959
36960
36960
36961
36961
36962
36962
36963
36963
36964
36964
36965
36965
36966
36966
36967
36967
36968
36968
36969
36969
36970
36970
36971
36971
36972
36972
36973
36973
36974
36974
36975
36975
36976
36976
36977
36977
36978
36978
36979
36979
36980
36980
36981
36981
36982
36982
36983
36983
36984
36984
36985
36985
36986
36986
36987
36987
36988
36988
36989
36989
36990
36990
36991
36991
36992
36992
36993
36993
36994
36994
36995
36995
36996
36996
36997
36997
36998
36998
36999
36999
37000
37000
37001
37001
37002
37002
37003
37003
37004
37004
37005
37005
37006
37006
37007
37007
37008
37008
37009
37009
37010
37010
37011
37011
37012
37012
37013
37013
37014
37014
37015
37015
37016
37016
37017
37017
37018
37018
37019
37019
37020
37020
37021
37021
37022
37022
37023
37023
37024
37024
37025
37025
37026
37026
37027
37027
37028
37028
37029
37029
37030
37030
37031
37031
37032
37032
37033
37033
37034
37034
37035
37035
37036
37036
37037
37037
37038
37038
37039
37039
37040
37040
37041
37041
37042
37042
37043
37043
37044
37044
37045
37045
37046
37046
37047
37047
37048
37048
37049
37049
37050
37050
37051
37051
37052
37052
37053
37053
37054
37054
37055
37055
37056
37056
37057
37057
37058
37058
37059
37059
37060
37060
37061
37061
37062
37062
37063
37063
37064
37064
37065
37065
37066
37066
37067
37067
37068
37068
37069
37069
37070
37070
37071
37071
37072
37072
37073
37073
37074
37074
37075
37075
37076
37076
37077
37077
37078
37078
37079
37079
37080
37080
37081
37081
37082
37082
37083
37083
37084
37084
37085
37085
37086
37086
37087
37087
37088
37088
37089
37089
37090
37090
37091
37091
37092
37092
37093
37093
37094
37094
37095
37095
37096
37096
37097
37097
37098
37098
37099
37099
37100
37100
37101
37101
37102
37102
37103
37103
37104
37104
37105
37105
37106
37106
37107
37107
37108
37108
37109
37109
37110
37110
37111
37111
37112
37112
37113
37113
37114
37114
37115
37115
37116
37116
37117
37117
37118
37118
37119
37119
37120
37120
37121
37121
37122
37122
37123
37123
37124
37124
37125
37125
37126
37126
37127
37127
37128
37128
37129
37129
37130
37130
37131
37131
37132
37132
37133
37133
37134
37134
37135
37135
37136
37136
37137
37137
37138
37138
37139
37139
37140
37140
37141
37141
37142
37142
37143
37143
37144
37144
37145
37145
37146
37146
37147
37147
37148
37148
37149
37149
37150
37150
37151
37151
37152
37152
37153
37153
37154
37154
37155
37155
37156
37156
37157
37157
37158
37158
37159
37159
37160
37160
37161
37161
37162
37162
37163
37163
37164
37164
37165
37165
37166
37166
37167
37167
37168
37168
37169
37169
37170
37170
37171
37171
37172
37172
37173
37173
37174
37174
37175
37175
37176
37176
37177
37177
37178
37178
37179
37179
37180
37180
37181
37181
37182
37182
37183
37183
37184
37184
37185
37185
37186
37186
37187
37187
37188
37188
37189
37189
37190
37190
37191
37191
37192
37192
37193
37193
37194
37194
37195
37195
37196
37196
37197
37197
37198
37198
37199
37199
37200
37200
37201
37201
37202
37202
37203
37203
37204
37204
37205
37205
37206
37206
37207
37207
37208
37208
37209
37209
37210
37210
37211
37211
37212
37212
37213
37213
37214
37214
37215
37215
37216
37216
37217
37217
37218
37218
37219
37219
37220
37220
37221
37221
37222
37222
37223
37223
37224
37224
37225
37225
37226
37226
37227
37227
37228
37228
37229
37229
37230
37230
37231
37231
37232
37232
37233
37233
37234
37234
37235
37235
37236
37236
37237
37237
37238
37238
37239
37239
37240
37240
37241
37241
37242
37242
37243
37243
37244
37244
37245
37245
37246
37246
37247
37247
37248
37248
37249
37249
37250
37250
37251
37251
37252
37252
37253
37253
37254
37254
37255
37255
37256
37256
37257
37257
37258
37258
37259
37259
37260
37260
37261
37261
37262
37262
37263
37263
37264
37264
37265
37265
37266
37266
37267
37267
37268
37268
37269
37269
37270
37270
37271
37271
37272
37272
37273
37273
37274
37274
37275
37275
37276
37276
37277
37277
37278
37278
37279
37279
37280
37280
37281
37281
37282
37282
37283
37283
37284
37284
37285
37285
37286
37286
37287
37287
37288
37288
37289
37289
37290
37290
37291
37291
37292
37292
37293
37293
37294
37294
37295
37295
37296
37296
37297
37297
37298
37298
37299
37299
37300
37300
37301
37301
37302
37302
37303
37303
37304
37304
37305
37305
37306
37306
37307
37307
37308
37308
37309
37309
37310
37310
37311
37311
37312
37312
37313
37313
37314
37314
37315
37315
37316
37316
37317
37317
37318
37318
37319
37319
37320
37320
37321
37321
37322
37322
37323
37323
37324
37324
37325
37325
37326
37326
37327
37327
37328
37328
37329
37329
37330
37330
37331
37331
37332
37332
37333
37333
37334
37334
37335
37335
37336
37336
37337
37337
37338
37338
37339
37339
37340
37340
37341
37341
37342
37342
37343
37343
37344
37344
37345
37345
37346
37346
37347
37347
37348
37348
37349
37349
37350
37350
37351
37351
37352
37352
37353
37353
37354
37354
37355
37355
37356
37356
37357
37357
37358
37358
37359
37359
37360
37360
37361
37361
37362
37362
37363
37363
37364
37364
37365
37365
37366
37366
37367
37367
37368
37368
37369
37369
37370
37370
37371
37371
37372
37372
37373
37373
37374
37374
37375
37375
37376
37376
37377
37377
37378
37378
37379
37379
37380
37380
37381
37381
37382
37382
37383
37383
37384
37384
37385
37385
37386
37386
37387
37387
37388
37388
37389
37389
37390
37390
37391
37391
37392
37392
37393
37393
37394
37394
37395
37395
37396
37396
37397
37397
37398
37398
37399
37399
37400
37400
37401
37401
37402
37402
37403
37403
37404
37404
37405
37405
37406
37406
37407
37407
37408
37408
37409
37409
37410
37410
37411
37411
37412
37412
37413
37413
37414
37414
37415
37415
37416
37416
37417
37417
37418
37418
37419
37419
37420
37420
37421
37421
37422
37422
37423
37423
37424
37424
37425
37425
37426
37426
37427
37427
37428
37428
37429
37429
37430
37430
37431
37431
37432
37432
37433
37433
37434
37434
37435
37435
37436
37436
37437
37437
37438
37438
37439
37439
37440
37440
37441
37441
37442
37442
37443
37443
37444
37444
37445
37445
37446
37446
37447
37447
37448
37448
37449
37449
37450
37450
37451
37451
37452
37452
37453
37453
37454
37454
37455
37455
37456
37456
37457
37457
37458
37458
37459
37459
37460
37460
37461
37461
37462
37462
37463
37463
37464
37464
37465
37465
37466
37466
37467
37467
37468
37468
37469
37469
37470
37470
37471
37471
37472
37472
37473
37473
37474
37474
37475
37475
37476
37476
37477
37477
37478
37478
37479
37479
37480
37480
37481
37481
37482
37482
37483
37483
37484
37484
37485
37485
37486
37486
37487
37487
37488
37488
37489
37489
37490
37490
37491
37491
37492
37492
37493
37493
37494
37494
37495
37495
37496
37496
37497
37497
37498
37498
37499
37499
37500
37500
37501
37501
37502
37502
37503
37503
37504
37504
37505
37505
37506
37506
37507
37507
37508
37508
37509
37509
37510
37510
37511
37511
37512
37512
37513
37513
37514
37514
37515
37515
37516
37516
37517
37517
37518
37518
37519
37519
37520
37520
37521
37521
37522
37522
37523
37523
37524
37524
37525
37525
37526
37526
37527
37527
37528
37528
37529
37529
37530
37530
37531
37531
37532
37532
37533
37533
37534
37534
37535
37535
37536
37536
37537
37537
37538
37538
37539
37539
37540
37540
37541
37541
37542
37542
37543
37543
37544
37544
37545
37545
37546
37546
37547
37547
37548
37548
37549
37549
37550
37550
37551
37551
37552
37552
37553
37553
37554
37554
37555
37555
37556
37556
37557
37557
37558
37558
37559
37559
37560
37560
37561
37561
37562
37562
37563
37563
37564
37564
37565
37565
37566
37566
37567
37567
37568
37568
37569
37569
37570
37570
37571
37571
37572
37572
37573
37573
37574
37574
37575
37575
37576
37576
37577
37577
37578
37578
37579
37579
37580
37580
37581
37581
37582
37582
37583
37583
37584
37584
37585
37585
37586
37586
37587
37587
37588
37588
37589
37589
37590
37590
37591
37591
37592
37592
37593
37593
37594
37594
37595
37595
37596
37596
37597
37597
37598
37598
37599
37599
37600
37600
37601
37601
37602
37602
37603
37603
37604
37604
37605
37605
37606
37606
37607
37607
37608
37608
37609
37609
37610
37610
37611
37611
37612
37612
37613
37613
37614
37614
37615
37615
37616
37616
37617
37617
37618
37618
37619
37619
37620
37620
37621
37621
37622
37622
37623
37623
37624
37624
37625
37625
37626
37626
37627
37627
37628
37628
37629
37629
37630
37630
37631
37631
37632
37632
37633
37633
37634
37634
37635
37635
37636
37636
37637
37637
37638
37638
37639
37639
37640
37640
37641
37641
37642
37642
37643
37643
37644
37644
37645
37645
37646
37646
37647
37647
37648
37648
37649
37649
37650
37650
37651
37651
37652
37652
37653
37653
37654
37654
37655
37655
37656
37656
37657
37657
37658
37658
37659
37659
37660
37660
37661
37661
37662
37662
37663
37663
37664
37664
37665
37665
37666
37666
37667
37667
37668
37668
37669
37669
37670
37670
37671
37671
37672
37672
37673
37673
37674
37674
37675
37675
37676
37676
37677
37677
37678
37678
37679
37679
37680
37680
37681
37681
37682
37682
37683
37683
37684
37684
37685
37685
37686
37686
37687
37687
37688
37688
37689
37689
37690
37690
37691
37691
37692
37692
37693
37693
37694
37694
37695
37695
37696
37696
37697
37697
37698
37698
37699
37699
37700
37700
37701
37701
37702
37702
37703
37703
37704
37704
37705
37705
37706
37706
37707
37707
37708
37708
37709
37709
37710
37710
37711
37711
37712
37712
37713
37713
37714
37714
37715
37715
37716
37716
37717
37717
37718
37718
37719
37719
37720
37720
37721
37721
37722
37722
37723
37723
37724
37724
37725
37725
37726
37726
37727
37727
37728
37728
37729
37729
37730
37730
37731
37731
37732
37732
37733
37733
37734
37734
37735
37735
37736
37736
37737
37737
37738
37738
37739
37739
37740
37740
37741
37741
37742
37742
37743
37743
37744
37744
37745
37745
37746
37746
37747
37747
37748
37748
37749
37749
37750
37750
37751
37751
37752
37752
37753
37753
37754
37754
37755
37755
37756
37756
37757
37757
37758
37758
37759
37759
37760
37760
37761
37761
37762
37762
37763
37763
37764
37764
37765
37765
37766
37766
37767
37767
37768
37768
37769
37769
37770
37770
37771
37771
37772
37772
37773
37773
37774
37774
37775
37775
37776
37776
37777
37777
37778
37778
37779
37779
37780
37780
37781
37781
37782
37782
37783
37783
37784
37784
37785
37785
37786
37786
37787
37787
37788
37788
37789
37789
37790
37790
37791
37791
37792
37792
37793
37793
37794
37794
37795
37795
37796
37796
37797
37797
37798
37798
37799
37799
37800
37800
37801
37801
37802
37802
37803
37803
37804
37804
37805
37805
37806
37806
37807
37807
37808
37808
37809
37809
37810
37810
37811
37811
37812
37812
37813
37813
37814
37814
37815
37815
37816
37816
37817
37817
37818
37818
37819
37819
37820
37820
37821
37821
37822
37822
37823
37823
37824
37824
37825
37825
37826
37826
37827
37827
37828
37828
37829
37829
37830
37830
37831
37831
37832
37832
37833
37833
37834
37834
37835
37835
37836
37836
37837
37837
37838
37838
37839
37839
37840
37840
37841
37841
37842
37842
37843
37843
37844
37844
37845
37845
37846
37846
37847
37847
37848
37848
37849
37849
37850
37850
37851
37851
37852
37852
37853
37853
37854
37854
37855
37855
37856
37856
37857
37857
37858
37858
37859
37859
37860
37860
37861
37861
37862
37862
37863
37863
37864
37864
37865
37865
37866
37866
37867
37867
37868
37868
37869
37869
37870
37870
37871
37871
37872
37872
37873
37873
37874
37874
37875
37875
37876
37876
37877
37877
37878
37878
37879
37879
37880
37880
37881
37881
37882
37882
37883
37883
37884
37884
37885
37885
37886
37886
37887
37887
37888
37888
37889
37889
37890
37890
37891
37891
37892
37892
37893
37893
37894
37894
37895
37895
37896
37896
37897
37897
37898
37898
37899
37899
37900
37900
37901
37901
37902
37902
37903
37903
37904
37904
37905
37905
37906
37906
37907
37907
37908
37908
37909
37909
37910
37910
37911
37911
37912
37912
37913
37913
37914
37914
37915
37915
37916
37916
37917
37917
37918
37918
37919
37919
37920
37920
37921
37921
37922
37922
37923
37923
37924
37924
37925
37925
37926
37926
37927
37927
37928
37928
37929
37929
37930
37930
37931
37931
37932
37932
37933
37933
37934
37934
37935
37935
37936
37936
37937
37937
37938
37938
37939
37939
37940
37940
37941
37941
37942
37942
37943
37943
37944
37944
37945
37945
37946
37946
37947
37947
37948
37948
37949
37949
37950
37950
37951
37951
37952
37952
37953
37953
37954
37954
37955
37955
37956
37956
37957
37957
37958
37958
37959
37959
37960
37960
37961
37961
37962
37962
37963
37963
37964
37964
37965
37965
37966
37966
37967
37967
37968
37968
37969
37969
37970
37970
37971
37971
37972
37972
37973
37973
37974
37974
37975
37975
37976
37976
37977
37977
37978
37978
37979
37979
37980
37980
37981
37981
37982
37982
37983
37983
37984
37984
37985
37985
37986
37986
37987
37987
37988
37988
37989
37989
37990
37990
37991
37991
37992
37992
37993
37993
37994
37994
37995
37995
37996
37996
37997
37997
37998
37998
37999
37999
38000
38000
38001
38001
38002
38002
38003
38003
38004
38004
38005
38005
38006
38006
38007
38007
38008
38008
38009
38009
38010
38010
38011
38011
38012
38012
38013
38013
38014
38014
38015
38015
38016
38016
38017
38017
38018
38018
38019
38019
38020
38020
38021
38021
38022
38022
38023
38023
38024
38024
38025
38025
38026
38026
38027
38027
38028
38028
38029
38029
38030
38030
38031
38031
38032
38032
38033
38033
38034
38034
38035
38035
38036
38036
38037
38037
38038
38038
38039
38039
38040
38040
38041
38041
38042
38042
38043
38043
38044
38044
38045
38045
38046
38046
38047
38047
38048
38048
38049
38049
38050
38050
38051
38051
38052
38052
38053
38053
38054
38054
38055
38055
38056
38056
38057
38057
38058
38058
38059
38059
38060
38060
38061
38061
38062
38062
38063
38063
38064
38064
38065
38065
38066
38066
38067
38067
38068
38068
38069
38069
38070
38070
38071
38071
38072
38072
38073
38073
38074
38074
38075
38075
38076
38076
38077
38077
38078
38078
38079
38079
38080
38080
38081
38081
38082
38082
38083
38083
38084
38084
38085
38085
38086
38086
38087
38087
38088
38088
38089
38089
38090
38090
38091
38091
38092
38092
38093
38093
38094
38094
38095
38095
38096
38096
38097
38097
38098
38098
38099
38099
38100
38100
38101
38101
38102
38102
38103
38103
38104
38104
38105
38105
38106
38106
38107
38107
38108
38108
38109
38109
38110
38110
38111
38111
38112
38112
38113
38113
38114
38114
38115
38115
38116
38116
38117
38117
38118
38118
38119
38119
38120
38120
38121
38121
38122
38122
38123
38123
38124
38124
38125
38125
38126
38126
38127
38127
38128
38128
38129
38129
38130
38130
38131
38131
38132
38132
38133
38133
38134
38134
38135
38135
38136
38136
38137
38137
38138
38138
38139
38139
38140
38140
38141
38141
38142
38142
38143
38143
38144
38144
38145
38145
38146
38146
38147
38147
38148
38148
38149
38149
38150
38150
38151
38151
38152
38152
38153
38153
38154
38154
38155
38155
38156
38156
38157
38157
38158
38158
38159
38159
38160
38160
38161
38161
38162
38162
38163
38163
38164
38164
38165
38165
38166
38166
38167
38167
38168
38168
38169
38169
38170
38170
38171
38171
38172
38172
38173
38173
38174
38174
38175
38175
38176
38176
38177
38177
38178
38178
38179
38179
38180
38180
38181
38181
38182
38182
38183
38183
38184
38184
38185
38185
38186
38186
38187
38187
38188
38188
38189
38189
38190
38190
38191
38191
38192
38192
38193
38193
38194
38194
38195
38195
38196
38196
38197
38197
38198
38198
38199
38199
38200
38200
38201
38201
38202
38202
38203
38203
38204
38204
38205
38205
38206
38206
38207
38207
38208
38208
38209
38209
38210
38210
38211
38211
38212
38212
38213
38213
38214
38214
38215
38215
38216
38216
38217
38217
38218
38218
38219
38219
38220
38220
38221
38221
38222
38222
38223
38223
38224
38224
38225
38225
38226
38226
38227
38227
38228
38228
38229
38229
38230
38230
38231
38231
38232
38232
38233
38233
38234
38234
38235
38235
38236
38236
38237
38237
38238
38238
38239
38239
38240
38240
38241
38241
38242
38242
38243
38243
38244
38244
38245
38245
38246
38246
38247
38247
38248
38248
38249
38249
38250
38250
38251
38251
38252
38252
38253
38253
38254
38254
38255
38255
38256
38256
38257
38257
38258
38258
38259
38259
38260
38260
38261
38261
38262
38262
38263
38263
38264
38264
38265
38265
38266
38266
38267
38267
38268
38268
38269
38269
38270
38270
38271
38271
38272
38272
38273
38273
38274
38274
38275
38275
38276
38276
38277
38277
38278
38278
38279
38279
38280
38280
38281
38281
38282
38282
38283
38283
38284
38284
38285
38285
38286
38286
38287
38287
38288
38288
38289
38289
38290
38290
38291
38291
38292
38292
38293
38293
38294
38294
38295
38295
38296
38296
38297
38297
38298
38298
38299
38299
38300
38300
38301
38301
38302
38302
38303
38303
38304
38304
38305
38305
38306
38306
38307
38307
38308
38308
38309
38309
38310
38310
38311
38311
38312
38312
38313
38313
38314
38314
38315
38315
38316
38316
38317
38317
38318
38318
38319
38319
38320
38320
38321
38321
38322
38322
38323
38323
38324
38324
38325
38325
38326
38326
38327
38327
38328
38328
38329
38329
38330
38330
38331
38331
38332
38332
38333
38333
38334
38334
38335
38335
38336
38336
38337
38337
38338
38338
38339
38339
38340
38340
38341
38341
38342
38342
38343
38343
38344
38344
38345
38345
38346
38346
38347
38347
38348
38348
38349
38349
38350
38350
38351
38351
38352
38352
38353
38353
38354
38354
38355
38355
38356
38356
38357
38357
38358
38358
38359
38359
38360
38360
38361
38361
38362
38362
38363
38363
38364
38364
38365
38365
38366
38366
38367
38367
38368
38368
38369
38369
38370
38370
38371
38371
38372
38372
38373
38373
38374
38374
38375
38375
38376
38376
38377
38377
38378
38378
38379
38379
38380
38380
38381
38381
38382
38382
38383
38383
38384
38384
38385
38385
38386
38386
38387
38387
38388
38388
38389
38389
38390
38390
38391
38391
38392
38392
38393
38393
38394
38394
38395
38395
38396
38396
38397
38397
38398
38398
38399
38399
38400
38400
38401
38401
38402
38402
38403
38403
38404
38404
38405
38405
38406
38406
38407
38407
38408
38408
38409
38409
38410
38410
38411
38411
38412
38412
38413
38413
38414
38414
38415
38415
38416
38416
38417
38417
38418
38418
38419
38419
38420
38420
38421
38421
38422
38422
38423
38423
38424
38424
38425
38425
38426
38426
38427
38427
38428
38428
38429
38429
38430
38430
38431
38431
38432
38432
38433
38433
38434
38434
38435
38435
38436
38436
38437
38437
38438
38438
38439
38439
38440
38440
38441
38441
38442
38442
38443
38443
38444
38444
38445
38445
38446
38446
38447
38447
38448
38448
38449
38449
38450
38450
38451
38451
38452
38452
38453
38453
38454
38454
38455
38455
38456
38456
38457
38457
38458
38458
38459
38459
38460
38460
38461
38461
38462
38462
38463
38463
38464
38464
38465
38465
38466
38466
38467
38467
38468
38468
38469
38469
38470
38470
38471
38471
38472
38472
38473
38473
38474
38474
38475
38475
38476
38476
38477
38477
38478
38478
38479
38479
38480
38480
38481
38481
38482
38482
38483
38483
38484
38484
38485
38485
38486
38486
38487
38487
38488
38488
38489
38489
38490
38490
38491
38491
38492
38492
38493
38493
38494
38494
38495
38495
38496
38496
38497
38497
38498
38498
38499
38499
38500
38500
38501
38501
38502
38502
38503
38503
38504
38504
38505
38505
38506
38506
38507
38507
38508
38508
38509
38509
38510
38510
38511
38511
38512
38512
38513
38513
38514
38514
38515
38515
38516
38516
38517
38517
38518
38518
38519
38519
38520
38520
38521
38521
38522
38522
38523
38523
38524
38524
38525
38525
38526
38526
38527
38527
38528
38528
38529
38529
38530
38530
38531
38531
38532
38532
38533
38533
38534
38534
38535
38535
38536
38536
38537
38537
38538
38538
38539
38539
38540
38540
38541
38541
38542
38542
38543
38543
38544
38544
38545
38545
38546
38546
38547
38547
38548
38548
38549
38549
38550
38550
38551
38551
38552
38552
38553
38553
38554
38554
38555
38555
38556
38556
38557
38557
38558
38558
38559
38559
38560
38560
38561
38561
38562
38562
38563
38563
38564
38564
38565
38565
38566
38566
38567
38567
38568
38568
38569
38569
38570
38570
38571
38571
38572
38572
38573
38573
38574
38574
38575
38575
38576
38576
38577
38577
38578
38578
38579
38579
38580
38580
38581
38581
38582
38582
38583
38583
38584
38584
38585
38585
38586
38586
38587
38587
38588
38588
38589
38589
38590
38590
38591
38591
38592
38592
38593
38593
38594
38594
38595
38595
38596
38596
38597
38597
38598
38598
38599
38599
38600
38600
38601
38601
38602
38602
38603
38603
38604
38604
38605
38605
38606
38606
38607
38607
38608
38608
38609
38609
38610
38610
38611
38611
38612
38612
38613
38613
38614
38614
38615
38615
38616
38616
38617
38617
38618
38618
38619
38619
38620
38620
38621
38621
38622
38622
38623
38623
38624
38624
38625
38625
38626
38626
38627
38627
38628
38628
38629
38629
38630
38630
38631
38631
38632
38632
38633
38633
38634
38634
38635
38635
38636
38636
38637
38637
38638
38638
38639
38639
38640
38640
38641
38641
38642
38642
38643
38643
38644
38644
38645
38645
38646
38646
38647
38647
38648
38648
38649
38649
38650
38650
38651
38651
38652
38652
38653
38653
38654
38654
38655
38655
38656
38656
38657
38657
38658
38658
38659
38659
38660
38660
38661
38661
38662
38662
38663
38663
38664
38664
38665
38665
38666
38666
38667
38667
38668
38668
38669
38669
38670
38670
38671
38671
38672
38672
38673
38673
38674
38674
38675
38675
38676
38676
38677
38677
38678
38678
38679
38679
38680
38680
38681
38681
38682
38682
38683
38683
38684
38684
38685
38685
38686
38686
38687
38687
38688
38688
38689
38689
38690
38690
38691
38691
38692
38692
38693
38693
38694
38694
38695
38695
38696
38696
38697
38697
38698
38698
38699
38699
38700
38700
38701
38701
38702
38702
38703
38703
38704
38704
38705
38705
38706
38706
38707
38707
38708
38708
38709
38709
38710
38710
38711
38711
38712
38712
38713
38713
38714
38714
38715
38715
38716
38716
38717
38717
38718
38718
38719
38719
38720
38720
38721
38721
38722
38722
38723
38723
38724
38724
38725
38725
38726
38726
38727
38727
38728
38728
38729
38729
38730
38730
38731
38731
38732
38732
38733
38733
38734
38734
38735
38735
38736
38736
38737
38737
38738
38738
38739
38739
38740
38740
38741
38741
38742
38742
38743
38743
38744
38744
38745
38745
38746
38746
38747
38747
38748
38748
38749
38749
38750
38750
38751
38751
38752
38752
38753
38753
38754
38754
38755
38755
38756
38756
38757
38757
38758
38758
38759
38759
38760
38760
38761
38761
38762
38762
38763
38763
38764
38764
38765
38765
38766
38766
38767
38767
38768
38768
38769
38769
38770
38770
38771
38771
38772
38772
38773
38773
38774
38774
38775
38775
38776
38776
38777
38777
38778
38778
38779
38779
38780
38780
38781
38781
38782
38782
38783
38783
38784
38784
38785
38785
38786
38786
38787
38787
38788
38788
38789
38789
38790
38790
38791
38791
38792
38792
38793
38793
38794
38794
38795
38795
38796
38796
38797
38797
38798
38798
38799
38799
38800
38800
38801
38801
38802
38802
38803
38803
38804
38804
38805
38805
38806
38806
38807
38807
38808
38808
38809
38809
38810
38810
38811
38811
38812
38812
38813
38813
38814
38814
38815
38815
38816
38816
38817
38817
38818
38818
38819
38819
38820
38820
38821
38821
38822
38822
38823
38823
38824
38824
38825
38825
38826
38826
38827
38827
38828
38828
38829
38829
38830
38830
38831
38831
38832
38832
38833
38833
38834
38834
38835
38835
38836
38836
38837
38837
38838
38838
38839
38839
38840
38840
38841
38841
38842
38842
38843
38843
38844
38844
38845
38845
38846
38846
38847
38847
38848
38848
38849
38849
38850
38850
38851
38851
38852
38852
38853
38853
38854
38854
38855
38855
38856
38856
38857
38857
38858
38858
38859
38859
38860
38860
38861
38861
38862
38862
38863
38863
38864
38864
38865
38865
38866
38866
38867
38867
38868
38868
38869
38869
38870
38870
38871
38871
38872
38872
38873
38873
38874
38874
38875
38875
38876
38876
38877
38877
38878
38878
38879
38879
38880
38880
38881
38881
38882
38882
38883
38883
38884
38884
38885
38885
38886
38886
38887
38887
38888
38888
38889
38889
38890
38890
38891
38891
38892
38892
38893
38893
38894
38894
38895
38895
38896
38896
38897
38897
38898
38898
38899
38899
38900
38900
38901
38901
38902
38902
38903
38903
38904
38904
38905
38905
38906
38906
38907
38907
38908
38908
38909
38909
38910
38910
38911
38911
38912
38912
38913
38913
38914
38914
38915
38915
38916
38916
38917
38917
38918
38918
38919
38919
38920
38920
38921
38921
38922
38922
38923
38923
38924
38924
38925
38925
38926
38926
38927
38927
38928
38928
38929
38929
38930
38930
38931
38931
38932
38932
38933
38933
38934
38934
38935
38935
38936
38936
38937
38937
38938
38938
38939
38939
38940
38940
38941
38941
38942
38942
38943
38943
38944
38944
38945
38945
38946
38946
38947
38947
38948
38948
38949
38949
38950
38950
38951
38951
38952
38952
38953
38953
38954
38954
38955
38955
38956
38956
38957
38957
38958
38958
38959
38959
38960
38960
38961
38961
38962
38962
38963
38963
38964
38964
38965
38965
38966
38966
38967
38967
38968
38968
38969
38969
38970
38970
38971
38971
38972
38972
38973
38973
38974
38974
38975
38975
38976
38976
38977
38977
38978
38978
38979
38979
38980
38980
38981
38981
38982
38982
38983
38983
38984
38984
38985
38985
38986
38986
38987
38987
38988
38988
38989
38989
38990
38990
38991
38991
38992
38992
38993
38993
38994
38994
38995
38995
38996
38996
38997
38997
38998
38998
38999
38999
39000
39000
39001
39001
39002
39002
39003
39003
39004
39004
39005
39005
39006
39006
39007
39007
39008
39008
39009
39009
39010
39010
39011
39011
39012
39012
39013
39013
39014
39014
39015
39015
39016
39016
39017
39017
39018
39018
39019
39019
39020
39020
39021
39021
39022
39022
39023
39023
39024
39024
39025
39025
39026
39026
39027
39027
39028
39028
39029
39029
39030
39030
39031
39031
39032
39032
39033
39033
39034
39034
39035
39035
39036
39036
39037
39037
39038
39038
39039
39039
39040
39040
39041
39041
39042
39042
39043
39043
39044
39044
39045
39045
39046
39046
39047
39047
39048
39048
39049
39049
39050
39050
39051
39051
39052
39052
39053
39053
39054
39054
39055
39055
39056
39056
39057
39057
39058
39058
39059
39059
39060
39060
39061
39061
39062
39062
39063
39063
39064
39064
39065
39065
39066
39066
39067
39067
39068
39068
39069
39069
39070
39070
39071
39071
39072
39072
39073
39073
39074
39074
39075
39075
39076
39076
39077
39077
39078
39078
39079
39079
39080
39080
39081
39081
39082
39082
39083
39083
39084
39084
39085
39085
39086
39086
39087
39087
39088
39088
39089
39089
39090
39090
39091
39091
39092
39092
39093
39093
39094
39094
39095
39095
39096
39096
39097
39097
39098
39098
39099
39099
39100
39100
39101
39101
39102
39102
39103
39103
39104
39104
39105
39105
39106
39106
39107
39107
39108
39108
39109
39109
39110
39110
39111
39111
39112
39112
39113
39113
39114
39114
39115
39115
39116
39116
39117
39117
39118
39118
39119
39119
39120
39120
39121
39121
39122
39122
39123
39123
39124
39124
39125
39125
39126
39126
39127
39127
39128
39128
39129
39129
39130
39130
39131
39131
39132
39132
39133
39133
39134
39134
39135
39135
39136
39136
39137
39137
39138
39138
39139
39139
39140
39140
39141
39141
39142
39142
39143
39143
39144
39144
39145
39145
39146
39146
39147
39147
39148
39148
39149
39149
39150
39150
39151
39151
39152
39152
39153
39153
39154
39154
39155
39155
39156
39156
39157
39157
39158
39158
39159
39159
39160
39160
39161
39161
39162
39162
39163
39163
39164
39164
39165
39165
39166
39166
39167
39167
39168
39168
39169
39169
39170
39170
39171
39171
39172
39172
39173
39173
39174
39174
39175
39175
39176
39176
39177
39177
39178
39178
39179
39179
39180
39180
39181
39181
39182
39182
39183
39183
39184
39184
39185
39185
39186
39186
39187
39187
39188
39188
39189
39189
39190
39190
39191
39191
39192
39192
39193
39193
39194
39194
39195
39195
39196
39196
39197
39197
39198
39198
39199
39199
39200
39200
39201
39201
39202
39202
39203
39203
39204
39204
39205
39205
39206
39206
39207
39207
39208
39208
39209
39209
39210
39210
39211
39211
39212
39212
39213
39213
39214
39214
39215
39215
39216
39216
39217
39217
39218
39218
39219
39219
39220
39220
39221
39221
39222
39222
39223
39223
39224
39224
39225
39225
39226
39226
39227
39227
39228
39228
39229
39229
39230
39230
39231
39231
39232
39232
39233
39233
39234
39234
39235
39235
39236
39236
39237
39237
39238
39238
39239
39239
39240
39240
39241
39241
39242
39242
39243
39243
39244
39244
39245
39245
39246
39246
39247
39247
39248
39248
39249
39249
39250
39250
39251
39251
39252
39252
39253
39253
39254
39254
39255
39255
39256
39256
39257
39257
39258
39258
39259
39259
39260
39260
39261
39261
39262
39262
39263
39263
39264
39264
39265
39265
39266
39266
39267
39267
39268
39268
39269
39269
39270
39270
39271
39271
39272
39272
39273
39273
39274
39274
39275
39275
39276
39276
39277
39277
39278
39278
39279
39279
39280
39280
39281
39281
39282
39282
39283
39283
39284
39284
39285
39285
39286
39286
39287
39287
39288
39288
39289
39289
39290
39290
39291
39291
39292
39292
39293
39293
39294
39294
39295
39295
39296
39296
39297
39297
39298
39298
39299
39299
39300
39300
39301
39301
39302
39302
39303
39303
39304
39304
39305
39305
39306
39306
39307
39307
39308
39308
39309
39309
39310
39310
39311
39311
39312
39312
39313
39313
39314
39314
39315
39315
39316
39316
39317
39317
39318
39318
39319
39319
39320
39320
39321
39321
39322
39322
39323
39323
39324
39324
39325
39325
39326
39326
39327
39327
39328
39328
39329
39329
39330
39330
39331
39331
39332
39332
39333
39333
39334
39334
39335
39335
39336
39336
39337
39337
39338
39338
39339
39339
39340
39340
39341
39341
39342
39342
39343
39343
39344
39344
39345
39345
39346
39346
39347
39347
39348
39348
39349
39349
39350
39350
39351
39351
39352
39352
39353
39353
39354
39354
39355
39355
39356
39356
39357
39357
39358
39358
39359
39359
39360
39360
39361
39361
39362
39362
39363
39363
39364
39364
39365
39365
39366
39366
39367
39367
39368
39368
39369
39369
39370
39370
39371
39371
39372
39372
39373
39373
39374
39374
39375
39375
39376
39376
39377
39377
39378
39378
39379
39379
39380
39380
39381
39381
39382
39382
39383
39383
39384
39384
39385
39385
39386
39386
39387
39387
39388
39388
39389
39389
39390
39390
39391
39391
39392
39392
39393
39393
39394
39394
39395
39395
39396
39396
39397
39397
39398
39398
39399
39399
39400
39400
39401
39401
39402
39402
39403
39403
39404
39404
39405
39405
39406
39406
39407
39407
39408
39408
39409
39409
39410
39410
39411
39411
39412
39412
39413
39413
39414
39414
39415
39415
39416
39416
39417
39417
39418
39418
39419
39419
39420
39420
39421
39421
39422
39422
39423
39423
39424
39424
39425
39425
39426
39426
39427
39427
39428
39428
39429
39429
39430
39430
39431
39431
39432
39432
39433
39433
39434
39434
39435
39435
39436
39436
39437
39437
39438
39438
39439
39439
39440
39440
39441
39441
39442
39442
39443
39443
39444
39444
39445
39445
39446
39446
39447
39447
39448
39448
39449
39449
39450
39450
39451
39451
39452
39452
39453
39453
39454
39454
39455
39455
39456
39456
39457
39457
39458
39458
39459
39459
39460
39460
39461
39461
39462
39462
39463
39463
39464
39464
39465
39465
39466
39466
39467
39467
39468
39468
39469
39469
39470
39470
39471
39471
39472
39472
39473
39473
39474
39474
39475
39475
39476
39476
39477
39477
39478
39478
39479
39479
39480
39480
39481
39481
39482
39482
39483
39483
39484
39484
39485
39485
39486
39486
39487
39487
39488
39488
39489
39489
39490
39490
39491
39491
39492
39492
39493
39493
39494
39494
39495
39495
39496
39496
39497
39497
39498
39498
39499
39499
39500
39500
39501
39501
39502
39502
39503
39503
39504
39504
39505
39505
39506
39506
39507
39507
39508
39508
39509
39509
39510
39510
39511
39511
39512
39512
39513
39513
39514
39514
39515
39515
39516
39516
39517
39517
39518
39518
39519
39519
39520
39520
39521
39521
39522
39522
39523
39523
39524
39524
39525
39525
39526
39526
39527
39527
39528
39528
39529
39529
39530
39530
39531
39531
39532
39532
39533
39533
39534
39534
39535
39535
39536
39536
39537
39537
39538
39538
39539
39539
39540
39540
39541
39541
39542
39542
39543
39543
39544
39544
39545
39545
39546
39546
39547
39547
39548
39548
39549
39549
39550
39550
39551
39551
39552
39552
39553
39553
39554
39554
39555
39555
39556
39556
39557
39557
39558
39558
39559
39559
39560
39560
39561
39561
39562
39562
39563
39563
39564
39564
39565
39565
39566
39566
39567
39567
39568
39568
39569
39569
39570
39570
39571
39571
39572
39572
39573
39573
39574
39574
39575
39575
39576
39576
39577
39577
39578
39578
39579
39579
39580
39580
39581
39581
39582
39582
39583
39583
39584
39584
39585
39585
39586
39586
39587
39587
39588
39588
39589
39589
39590
39590
39591
39591
39592
39592
39593
39593
39594
39594
39595
39595
39596
39596
39597
39597
39598
39598
39599
39599
39600
39600
39601
39601
39602
39602
39603
39603
39604
39604
39605
39605
39606
39606
39607
39607
39608
39608
39609
39609
39610
39610
39611
39611
39612
39612
39613
39613
39614
39614
39615
39615
39616
39616
39617
39617
39618
39618
39619
39619
39620
39620
39621
39621
39622
39622
39623
39623
39624
39624
39625
39625
39626
39626
39627
39627
39628
39628
39629
39629
39630
39630
39631
39631
39632
39632
39633
39633
39634
39634
39635
39635
39636
39636
39637
39637
39638
39638
39639
39639
39640
39640
39641
39641
39642
39642
39643
39643
39644
39644
39645
39645
39646
39646
39647
39647
39648
39648
39649
39649
39650
39650
39651
39651
39652
39652
39653
39653
39654
39654
39655
39655
39656
39656
39657
39657
39658
39658
39659
39659
39660
39660
39661
39661
39662
39662
39663
39663
39664
39664
39665
39665
39666
39666
39667
39667
39668
39668
39669
39669
39670
39670
39671
39671
39672
39672
39673
39673
39674
39674
39675
39675
39676
39676
39677
39677
39678
39678
39679
39679
39680
39680
39681
39681
39682
39682
39683
39683
39684
39684
39685
39685
39686
39686
39687
39687
39688
39688
39689
39689
39690
39690
39691
39691
39692
39692
39693
39693
39694
39694
39695
39695
39696
39696
39697
39697
39698
39698
39699
39699
39700
39700
39701
39701
39702
39702
39703
39703
39704
39704
39705
39705
39706
39706
39707
39707
39708
39708
39709
39709
39710
39710
39711
39711
39712
39712
39713
39713
39714
39714
39715
39715
39716
39716
39717
39717
39718
39718
39719
39719
39720
39720
39721
39721
39722
39722
39723
39723
39724
39724
39725
39725
39726
39726
39727
39727
39728
39728
39729
39729
39730
39730
39731
39731
39732
39732
39733
39733
39734
39734
39735
39735
39736
39736
39737
39737
39738
39738
39739
39739
39740
39740
39741
39741
39742
39742
39743
39743
39744
39744
39745
39745
39746
39746
39747
39747
39748
39748
39749
39749
39750
39750
39751
39751
39752
39752
39753
39753
39754
39754
39755
39755
39756
39756
39757
39757
39758
39758
39759
39759
39760
39760
39761
39761
39762
39762
39763
39763
39764
39764
39765
39765
39766
39766
39767
39767
39768
39768
39769
39769
39770
39770
39771
39771
39772
39772
39773
39773
39774
39774
39775
39775
39776
39776
39777
39777
39778
39778
39779
39779
39780
39780
39781
39781
39782
39782
39783
39783
39784
39784
39785
39785
39786
39786
39787
39787
39788
39788
39789
39789
39790
39790
39791
39791
39792
39792
39793
39793
39794
39794
39795
39795
39796
39796
39797
39797
39798
39798
39799
39799
39800
39800
39801
39801
39802
39802
39803
39803
39804
39804
39805
39805
39806
39806
39807
39807
39808
39808
39809
39809
39810
39810
39811
39811
39812
39812
39813
39813
39814
39814
39815
39815
39816
39816
39817
39817
39818
39818
39819
39819
39820
39820
39821
39821
39822
39822
39823
39823
39824
39824
39825
39825
39826
39826
39827
39827
39828
39828
39829
39829
39830
39830
39831
39831
39832
39832
39833
39833
39834
39834
39835
39835
39836
39836
39837
39837
39838
39838
39839
39839
39840
39840
39841
39841
39842
39842
39843
39843
39844
39844
39845
39845
39846
39846
39847
39847
39848
39848
39849
39849
39850
39850
39851
39851
39852
39852
39853
39853
39854
39854
39855
39855
39856
39856
39857
39857
39858
39858
39859
39859
39860
39860
39861
39861
39862
39862
39863
39863
39864
39864
39865
39865
39866
39866
39867
39867
39868
39868
39869
39869
39870
39870
39871
39871
39872
39872
39873
39873
39874
39874
39875
39875
39876
39876
39877
39877
39878
39878
39879
39879
39880
39880
39881
39881
39882
39882
39883
39883
39884
39884
39885
39885
39886
39886
39887
39887
39888
39888
39889
39889
39890
39890
39891
39891
39892
39892
39893
39893
39894
39894
39895
39895
39896
39896
39897
39897
39898
39898
39899
39899
39900
39900
39901
39901
39902
39902
39903
39903
39904
39904
39905
39905
39906
39906
39907
39907
39908
39908
39909
39909
39910
39910
39911
39911
39912
39912
39913
39913
39914
39914
39915
39915
39916
39916
39917
39917
39918
39918
39919
39919
39920
39920
39921
39921
39922
39922
39923
39923
39924
39924
39925
39925
39926
39926
39927
39927
39928
39928
39929
39929
39930
39930
39931
39931
39932
39932
39933
39933
39934
39934
39935
39935
39936
39936
39937
39937
39938
39938
39939
39939
39940
39940
39941
39941
39942
39942
39943
39943
39944
39944
39945
39945
39946
39946
39947
39947
39948
39948
39949
39949
39950
39950
39951
39951
39952
39952
39953
39953
39954
39954
39955
39955
39956
39956
39957
39957
39958
39958
39959
39959
39960
39960
39961
39961
39962
39962
39963
39963
39964
39964
39965
39965
39966
39966
39967
39967
39968
39968
39969
39969
39970
39970
39971
39971
39972
39972
39973
39973
39974
39974
39975
39975
39976
39976
39977
39977
39978
39978
39979
39979
39980
39980
39981
39981
39982
39982
39983
39983
39984
39984
39985
39985
39986
39986
39987
39987
39988
39988
39989
39989
39990
39990
39991
39991
39992
39992
39993
39993
39994
39994
39995
39995
39996
39996
39997
39997
39998
39998
39999
39999
40000
40000
40001
40001
40002
40002
40003
40003
40004
40004
40005
40005
40006
40006
40007
40007
40008
40008
40009
40009
40010
40010
40011
40011
40012
40012
40013
40013
40014
40014
40015
40015
40016
40016
40017
40017
40018
40018
40019
40019
40020
40020
40021
40021
40022
40022
40023
40023
40024
40024
40025
40025
40026
40026
40027
40027
40028
40028
40029
40029
40030
40030
40031
40031
40032
40032
40033
40033
40034
40034
40035
40035
40036
40036
40037
40037
40038
40038
40039
40039
40040
40040
40041
40041
40042
40042
40043
40043
40044
40044
40045
40045
40046
40046
40047
40047
40048
40048
40049
40049
40050
40050
40051
40051
40052
40052
40053
40053
40054
40054
40055
40055
40056
40056
40057
40057
40058
40058
40059
40059
40060
40060
40061
40061
40062
40062
40063
40063
40064
40064
40065
40065
40066
40066
40067
40067
40068
40068
40069
40069
40070
40070
40071
40071
40072
40072
40073
40073
40074
40074
40075
40075
40076
40076
40077
40077
40078
40078
40079
40079
40080
40080
40081
40081
40082
40082
40083
40083
40084
40084
40085
40085
40086
40086
40087
40087
40088
40088
40089
40089
40090
40090
40091
40091
40092
40092
40093
40093
40094
40094
40095
40095
40096
40096
40097
40097
40098
40098
40099
40099
40100
40100
40101
40101
40102
40102
40103
40103
40104
40104
40105
40105
40106
40106
40107
40107
40108
40108
40109
40109
40110
40110
40111
40111
40112
40112
40113
40113
40114
40114
40115
40115
40116
40116
40117
40117
40118
40118
40119
40119
40120
40120
40121
40121
40122
40122
40123
40123
40124
40124
40125
40125
40126
40126
40127
40127
40128
40128
40129
40129
40130
40130
40131
40131
40132
40132
40133
40133
40134
40134
40135
40135
40136
40136
40137
40137
40138
40138
40139
40139
40140
40140
40141
40141
40142
40142
40143
40143
40144
40144
40145
40145
40146
40146
40147
40147
40148
40148
40149
40149
40150
40150
40151
40151
40152
40152
40153
40153
40154
40154
40155
40155
40156
40156
40157
40157
40158
40158
40159
40159
40160
40160
40161
40161
40162
40162
40163
40163
40164
40164
40165
40165
40166
40166
40167
40167
40168
40168
40169
40169
40170
40170
40171
40171
40172
40172
40173
40173
40174
40174
40175
40175
40176
40176
40177
40177
40178
40178
40179
40179
40180
40180
40181
40181
40182
40182
40183
40183
40184
40184
40185
40185
40186
40186
40187
40187
40188
40188
40189
40189
40190
40190
40191
40191
40192
40192
40193
40193
40194
40194
40195
40195
40196
40196
40197
40197
40198
40198
40199
40199
40200
40200
40201
40201
40202
40202
40203
40203
40204
40204
40205
40205
40206
40206
40207
40207
40208
40208
40209
40209
40210
40210
40211
40211
40212
40212
40213
40213
40214
40214
40215
40215
40216
40216
40217
40217
40218
40218
40219
40219
40220
40220
40221
40221
40222
40222
40223
40223
40224
40224
40225
40225
40226
40226
40227
40227
40228
40228
40229
40229
40230
40230
40231
40231
40232
40232
40233
40233
40234
40234
40235
40235
40236
40236
40237
40237
40238
40238
40239
40239
40240
40240
40241
40241
40242
40242
40243
40243
40244
40244
40245
40245
40246
40246
40247
40247
40248
40248
40249
40249
40250
40250
40251
40251
40252
40252
40253
40253
40254
40254
40255
40255
40256
40256
40257
40257
40258
40258
40259
40259
40260
40260
40261
40261
40262
40262
40263
40263
40264
40264
40265
40265
40266
40266
40267
40267
40268
40268
40269
40269
40270
40270
40271
40271
40272
40272
40273
40273
40274
40274
40275
40275
40276
40276
40277
40277
40278
40278
40279
40279
40280
40280
40281
40281
40282
40282
40283
40283
40284
40284
40285
40285
40286
40286
40287
40287
40288
40288
40289
40289
40290
40290
40291
40291
40292
40292
40293
40293
40294
40294
40295
40295
40296
40296
40297
40297
40298
40298
40299
40299
40300
40300
40301
40301
40302
40302
40303
40303
40304
40304
40305
40305
40306
40306
40307
40307
40308
40308
40309
40309
40310
40310
40311
40311
40312
40312
40313
40313
40314
40314
40315
40315
40316
40316
40317
40317
40318
40318
40319
40319
40320
40320
40321
40321
40322
40322
40323
40323
40324
40324
40325
40325
40326
40326
40327
40327
40328
40328
40329
40329
40330
40330
40331
40331
40332
40332
40333
40333
40334
40334
40335
40335
40336
40336
40337
40337
40338
40338
40339
40339
40340
40340
40341
40341
40342
40342
40343
40343
40344
40344
40345
40345
40346
40346
40347
40347
40348
40348
40349
40349
40350
40350
40351
40351
40352
40352
40353
40353
40354
40354
40355
40355
40356
40356
40357
40357
40358
40358
40359
40359
40360
40360
40361
40361
40362
40362
40363
40363
40364
40364
40365
40365
40366
40366
40367
40367
40368
40368
40369
40369
40370
40370
40371
40371
40372
40372
40373
40373
40374
40374
40375
40375
40376
40376
40377
40377
40378
40378
40379
40379
40380
40380
40381
40381
40382
40382
40383
40383
40384
40384
40385
40385
40386
40386
40387
40387
40388
40388
40389
40389
40390
40390
40391
40391
40392
40392
40393
40393
40394
40394
40395
40395
40396
40396
40397
40397
40398
40398
40399
40399
40400
40400
40401
40401
40402
40402
40403
40403
40404
40404
40405
40405
40406
40406
40407
40407
40408
40408
40409
40409
40410
40410
40411
40411
40412
40412
40413
40413
40414
40414
40415
40415
40416
40416
40417
40417
40418
40418
40419
40419
40420
40420
40421
40421
40422
40422
40423
40423
40424
40424
40425
40425
40426
40426
40427
40427
40428
40428
40429
40429
40430
40430
40431
40431
40432
40432
40433
40433
40434
40434
40435
40435
40436
40436
40437
40437
40438
40438
40439
40439
40440
40440
40441
40441
40442
40442
40443
40443
40444
40444
40445
40445
40446
40446
40447
40447
40448
40448
40449
40449
40450
40450
40451
40451
40452
40452
40453
40453
40454
40454
40455
40455
40456
40456
40457
40457
40458
40458
40459
40459
40460
40460
40461
40461
40462
40462
40463
40463
40464
40464
40465
40465
40466
40466
40467
40467
40468
40468
40469
40469
40470
40470
40471
40471
40472
40472
40473
40473
40474
40474
40475
40475
40476
40476
40477
40477
40478
40478
40479
40479
40480
40480
40481
40481
40482
40482
40483
40483
40484
40484
40485
40485
40486
40486
40487
40487
40488
40488
40489
40489
40490
40490
40491
40491
40492
40492
40493
40493
40494
40494
40495
40495
40496
40496
40497
40497
40498
40498
40499
40499
40500
40500
40501
40501
40502
40502
40503
40503
40504
40504
40505
40505
40506
40506
40507
40507
40508
40508
40509
40509
40510
40510
40511
40511
40512
40512
40513
40513
40514
40514
40515
40515
40516
40516
40517
40517
40518
40518
40519
40519
40520
40520
40521
40521
40522
40522
40523
40523
40524
40524
40525
40525
40526
40526
40527
40527
40528
40528
40529
40529
40530
40530
40531
40531
40532
40532
40533
40533
40534
40534
40535
40535
40536
40536
40537
40537
40538
40538
40539
40539
40540
40540
40541
40541
40542
40542
40543
40543
40544
40544
40545
40545
40546
40546
40547
40547
40548
40548
40549
40549
40550
40550
40551
40551
40552
40552
40553
40553
40554
40554
40555
40555
40556
40556
40557
40557
40558
40558
40559
40559
40560
40560
40561
40561
40562
40562
40563
40563
40564
40564
40565
40565
40566
40566
40567
40567
40568
40568
40569
40569
40570
40570
40571
40571
40572
40572
40573
40573
40574
40574
40575
40575
40576
40576
40577
40577
40578
40578
40579
40579
40580
40580
40581
40581
40582
40582
40583
40583
40584
40584
40585
40585
40586
40586
40587
40587
40588
40588
40589
40589
40590
40590
40591
40591
40592
40592
40593
40593
40594
40594
40595
40595
40596
40596
40597
40597
40598
40598
40599
40599
40600
40600
40601
40601
40602
40602
40603
40603
40604
40604
40605
40605
40606
40606
40607
40607
40608
40608
40609
40609
40610
40610
40611
40611
40612
40612
40613
40613
40614
40614
40615
40615
40616
40616
40617
40617
40618
40618
40619
40619
40620
40620
40621
40621
40622
40622
40623
40623
40624
40624
40625
40625
40626
40626
40627
40627
40628
40628
40629
40629
40630
40630
40631
40631
40632
40632
40633
40633
40634
40634
40635
40635
40636
40636
40637
40637
40638
40638
40639
40639
40640
40640
40641
40641
40642
40642
40643
40643
40644
40644
40645
40645
40646
40646
40647
40647
40648
40648
40649
40649
40650
40650
40651
40651
40652
40652
40653
40653
40654
40654
40655
40655
40656
40656
40657
40657
40658
40658
40659
40659
40660
40660
40661
40661
40662
40662
40663
40663
40664
40664
40665
40665
40666
40666
40667
40667
40668
40668
40669
40669
40670
40670
40671
40671
40672
40672
40673
40673
40674
40674
40675
40675
40676
40676
40677
40677
40678
40678
40679
40679
40680
40680
40681
40681
40682
40682
40683
40683
40684
40684
40685
40685
40686
40686
40687
40687
40688
40688
40689
40689
40690
40690
40691
40691
40692
40692
40693
40693
40694
40694
40695
40695
40696
40696
40697
40697
40698
40698
40699
40699
40700
40700
40701
40701
40702
40702
40703
40703
40704
40704
40705
40705
40706
40706
40707
40707
40708
40708
40709
40709
40710
40710
40711
40711
40712
40712
40713
40713
40714
40714
40715
40715
40716
40716
40717
40717
40718
40718
40719
40719
40720
40720
40721
40721
40722
40722
40723
40723
40724
40724
40725
40725
40726
40726
40727
40727
40728
40728
40729
40729
40730
40730
40731
40731
40732
40732
40733
40733
40734
40734
40735
40735
40736
40736
40737
40737
40738
40738
40739
40739
40740
40740
40741
40741
40742
40742
40743
40743
40744
40744
40745
40745
40746
40746
40747
40747
40748
40748
40749
40749
40750
40750
40751
40751
40752
40752
40753
40753
40754
40754
40755
40755
40756
40756
40757
40757
40758
40758
40759
40759
40760
40760
40761
40761
40762
40762
40763
40763
40764
40764
40765
40765
40766
40766
40767
40767
40768
40768
40769
40769
40770
40770
40771
40771
40772
40772
40773
40773
40774
40774
40775
40775
40776
40776
40777
40777
40778
40778
40779
40779
40780
40780
40781
40781
40782
40782
40783
40783
40784
40784
40785
40785
40786
40786
40787
40787
40788
40788
40789
40789
40790
40790
40791
40791
40792
40792
40793
40793
40794
40794
40795
40795
40796
40796
40797
40797
40798
40798
40799
40799
40800
40800
40801
40801
40802
40802
40803
40803
40804
40804
40805
40805
40806
40806
40807
40807
40808
40808
40809
40809
40810
40810
40811
40811
40812
40812
40813
40813
40814
40814
40815
40815
40816
40816
40817
40817
40818
40818
40819
40819
40820
40820
40821
40821
40822
40822
40823
40823
40824
40824
40825
40825
40826
40826
40827
40827
40828
40828
40829
40829
40830
40830
40831
40831
40832
40832
40833
40833
40834
40834
40835
40835
40836
40836
40837
40837
40838
40838
40839
40839
40840
40840
40841
40841
40842
40842
40843
40843
40844
40844
40845
40845
40846
40846
40847
40847
40848
40848
40849
40849
40850
40850
40851
40851
40852
40852
40853
40853
40854
40854
40855
40855
40856
40856
40857
40857
40858
40858
40859
40859
40860
40860
40861
40861
40862
40862
40863
40863
40864
40864
40865
40865
40866
40866
40867
40867
40868
40868
40869
40869
40870
40870
40871
40871
40872
40872
40873
40873
40874
40874
40875
40875
40876
40876
40877
40877
40878
40878
40879
40879
40880
40880
40881
40881
40882
40882
40883
40883
40884
40884
40885
40885
40886
40886
40887
40887
40888
40888
40889
40889
40890
40890
40891
40891
40892
40892
40893
40893
40894
40894
40895
40895
40896
40896
40897
40897
40898
40898
40899
40899
40900
40900
40901
40901
40902
40902
40903
40903
40904
40904
40905
40905
40906
40906
40907
40907
40908
40908
40909
40909
40910
40910
40911
40911
40912
40912
40913
40913
40914
40914
40915
40915
40916
40916
40917
40917
40918
40918
40919
40919
40920
40920
40921
40921
40922
40922
40923
40923
40924
40924
40925
40925
40926
40926
40927
40927
40928
40928
40929
40929
40930
40930
40931
40931
40932
40932
40933
40933
40934
40934
40935
40935
40936
40936
40937
40937
40938
40938
40939
40939
40940
40940
40941
40941
40942
40942
40943
40943
40944
40944
40945
40945
40946
40946
40947
40947
40948
40948
40949
40949
40950
40951
40952
40953
40954
40955
40956
40957
40958
40959
40960
40961
40962
40963
40964
40965
40966
40967
40968
40969
40970
40971
40972
40973
40974
40975
40976
40977
40978
40979
40980
40981
40982
40983
40984
40985
40986
40987
40988
40989
40990
40991
40992
40993
40994
40995
40996
40997
40998
40999
41000
41001
41002
41003
41004
41005
41006
41007
41008
41009
41010
41011
41012
41013
41014
41015
41016
41017
41018
41019
41020
41021
41022
41023
41024
41025
41026
41027
41028
41029
41030
41031
41032
41033
41034
41035
41036
41037
41038
41039
41040
41041
41042
41043
41044
41045
41046
41047
41048
41049
41050
41051
41052
41053
41054
41055
41056
41057
41058
41059
41060
41061
41062
41063
41064
41065
41066
41067
41068
41069
41070
41071
41072
41073
41074
41075
41076
41077
41078
41079
41080
41081
41082
41083
41084
41085
41086
41087
41088
41089
41090
41091
41092
41093
41094
41095
41096
41097
41098
41099
41100
41100
41100
41101
41101
41101
41102
41102
41102
41103
41103
41103
41104
41104
41104
41105
41105
41105
41106
41106
41106
41107
41107
41107
41108
41108
41108
41109
41109
41109
41110
41110
41110
41111
41111
41111
41112
41112
41112
41113
41113
41113
41114
41114
41114
41115
41115
41115
41116
41116
41116
41117
41117
41117
41118
41118
41118
41119
41119
41119
41120
41120
41120
41121
41121
41121
41122
41122
41122
41123
41123
41123
41124
41124
41124
41125
41125
41125
41126
41126
41126
41127
41127
41127
41128
41128
41128
41129
41129
41129
41130
41130
41130
41131
41131
41131
41132
41132
41132
41133
41133
41133
41134
41134
41134
41135
41135
41135
41136
41136
41136
41137
41137
41137
41138
41138
41138
41139
41139
41139
41140
41140
41140
41141
41141
41141
41142
41142
41142
41143
41143
41143
41144
41144
41144
41145
41145
41145
41146
41146
41146
41147
41147
41147
41148
41148
41148
41149
41149
41149
41150
41150
41150
41151
41151
41151
41152
41152
41152
41153
41153
41153
41154
41154
41154
41155
41155
41155
41156
41156
41156
41157
41157
41157
41158
41158
41158
41159
41159
41159
41160
41160
41160
41161
41161
41161
41162
41162
41162
41163
41163
41163
41164
41164
41164
41165
41165
41165
41166
41166
41166
41167
41167
41167
41168
41168
41168
41169
41169
41169
41170
41170
41170
41171
41171
41171
41172
41172
41172
41173
41173
41173
41174
41174
41174
41175
41175
41175
41176
41176
41176
41177
41177
41177
41178
41178
41178
41179
41179
41179
41180
41180
41180
41181
41181
41181
41182
41182
41182
41183
41183
41183
41184
41184
41184
41185
41185
41185
41186
41186
41186
41187
41187
41187
41188
41188
41188
41189
41189
41189
41190
41190
41190
41191
41191
41191
41192
41192
41192
41193
41193
41193
41194
41194
41194
41195
41195
41195
41196
41196
41196
41197
41197
41197
41198
41198
41198
41199
41199
41199
41200
41200
41200
41201
41201
41201
41202
41202
41202
41203
41203
41203
41204
41204
41204
41205
41205
41205
41206
41206
41206
41207
41207
41207
41208
41208
41208
41209
41209
41209
41210
41210
41210
41211
41211
41211
41212
41212
41212
41213
41213
41213
41214
41214
41214
41215
41215
41215
41216
41216
41216
41217
41217
41217
41218
41218
41218
41219
41219
41219
41220
41220
41220
41221
41221
41221
41222
41222
41222
41223
41223
41223
41224
41224
41224
41225
41225
41225
41226
41226
41226
41227
41227
41227
41228
41228
41228
41229
41229
41229
41230
41230
41230
41231
41231
41231
41232
41232
41232
41233
41233
41233
41234
41234
41234
41235
41235
41235
41236
41236
41236
41237
41237
41237
41238
41238
41238
41239
41239
41239
41240
41240
41240
41241
41241
41241
41242
41242
41242
41243
41243
41243
41244
41244
41244
41245
41245
41245
41246
41246
41246
41247
41247
41247
41248
41248
41248
41249
41249
41249
41250
41250
41251
41251
41252
41252
41253
41253
41254
41254
41255
41255
41256
41256
41257
41257
41258
41258
41259
41259
41260
41260
41261
41261
41262
41262
41263
41263
41264
41264
41265
41265
41266
41266
41267
41267
41268
41268
41269
41269
41270
41270
41271
41271
41272
41272
41273
41273
41274
41274
41275
41275
41276
41276
41277
41277
41278
41278
41279
41279
41280
41280
41281
41281
41282
41282
41283
41283
41284
41284
41285
41285
41286
41286
41287
41287
41288
41288
41289
41289
41290
41290
41291
41291
41292
41292
41293
41293
41294
41294
41295
41295
41296
41296
41297
41297
41298
41298
41299
41299
41300
41300
41301
41301
41302
41302
41303
41303
41304
41304
41305
41305
41306
41306
41307
41307
41308
41308
41309
41309
41310
41310
41311
41311
41312
41312
41313
41313
41314
41314
41315
41315
41316
41316
41317
41317
41318
41318
41319
41319
41320
41320
41321
41321
41322
41322
41323
41323
41324
41324
41325
41325
41326
41326
41327
41327
41328
41328
41329
41329
41330
41330
41331
41331
41332
41332
41333
41333
41334
41334
41335
41335
41336
41336
41337
41337
41338
41338
41339
41339
41340
41340
41341
41341
41342
41342
41343
41343
41344
41344
41345
41345
41346
41346
41347
41347
41348
41348
41349
41349
41350
41350
41351
41351
41352
41352
41353
41353
41354
41354
41355
41355
41356
41356
41357
41357
41358
41358
41359
41359
41360
41360
41361
41361
41362
41362
41363
41363
41364
41364
41365
41365
41366
41366
41367
41367
41368
41368
41369
41369
41370
41370
41371
41371
41372
41372
41373
41373
41374
41374
41375
41375
41376
41376
41377
41377
41378
41378
41379
41379
41380
41380
41381
41381
41382
41382
41383
41383
41384
41384
41385
41385
41386
41386
41387
41387
41388
41388
41389
41389
41390
41390
41391
41391
41392
41392
41393
41393
41394
41394
41395
41395
41396
41396
41397
41397
41398
41398
41399
41399
41400
41400
41401
41401
41402
41402
41403
41403
41404
41404
41405
41405
41406
41406
41407
41407
41408
41408
41409
41409
41410
41410
41411
41411
41412
41412
41413
41413
41414
41414
41415
41415
41416
41416
41417
41417
41418
41418
41419
41419
41420
41420
41421
41421
41422
41422
41423
41423
41424
41424
41425
41425
41426
41426
41427
41427
41428
41428
41429
41429
41430
41430
41431
41431
41432
41432
41433
41433
41434
41434
41435
41435
41436
41436
41437
41437
41438
41438
41439
41439
41440
41440
41441
41441
41442
41442
41443
41443
41444
41444
41445
41445
41446
41446
41447
41447
41448
41448
41449
41449
41450
41450
41451
41451
41452
41452
41453
41453
41454
41454
41455
41455
41456
41456
41457
41457
41458
41458
41459
41459
41460
41460
41461
41461
41462
41462
41463
41463
41464
41464
41465
41465
41466
41466
41467
41467
41468
41468
41469
41469
41470
41470
41471
41471
41472
41472
41473
41473
41474
41474
41475
41475
41476
41476
41477
41477
41478
41478
41479
41479
41480
41480
41481
41481
41482
41482
41483
41483
41484
41484
41485
41485
41486
41486
41487
41487
41488
41488
41489
41489
41490
41490
41491
41491
41492
41492
41493
41493
41494
41494
41495
41495
41496
41496
41497
41497
41498
41498
41499
41499
41500
41500
41501
41501
41502
41502
41503
41503
41504
41504
41505
41505
41506
41506
41507
41507
41508
41508
41509
41509
41510
41510
41511
41511
41512
41512
41513
41513
41514
41514
41515
41515
41516
41516
41517
41517
41518
41518
41519
41519
41520
41520
41521
41521
41522
41522
41523
41523
41524
41524
41525
41525
41526
41526
41527
41527
41528
41528
41529
41529
41530
41530
41531
41531
41532
41532
41533
41533
41534
41534
41535
41535
41536
41536
41537
41537
41538
41538
41539
41539
41540
41540
41541
41541
41542
41542
41543
41543
41544
41544
41545
41545
41546
41546
41547
41547
41548
41548
41549
41549
41550
41550
41551
41551
41552
41552
41553
41553
41554
41554
41555
41555
41556
41556
41557
41557
41558
41558
41559
41559
41560
41560
41561
41561
41562
41562
41563
41563
41564
41564
41565
41565
41566
41566
41567
41567
41568
41568
41569
41569
41570
41570
41571
41571
41572
41572
41573
41573
41574
41574
41575
41575
41576
41576
41577
41577
41578
41578
41579
41579
41580
41580
41581
41581
41582
41582
41583
41583
41584
41584
41585
41585
41586
41586
41587
41587
41588
41588
41589
41589
41590
41590
41591
41591
41592
41592
41593
41593
41594
41594
41595
41595
41596
41596
41597
41597
41598
41598
41599
41599
41600
41600
41601
41601
41602
41602
41603
41603
41604
41604
41605
41605
41606
41606
41607
41607
41608
41608
41609
41609
41610
41610
41611
41611
41612
41612
41613
41613
41614
41614
41615
41615
41616
41616
41617
41617
41618
41618
41619
41619
41620
41620
41621
41621
41622
41622
41623
41623
41624
41624
41625
41625
41626
41626
41627
41627
41628
41628
41629
41629
41630
41630
41631
41631
41632
41632
41633
41633
41634
41634
41635
41635
41636
41636
41637
41637
41638
41638
41639
41639
41640
41640
41641
41641
41642
41642
41643
41643
41644
41644
41645
41645
41646
41646
41647
41647
41648
41648
41649
41649
41650
41650
41651
41651
41652
41652
41653
41653
41654
41654
41655
41655
41656
41656
41657
41657
41658
41658
41659
41659
41660
41660
41661
41661
41662
41662
41663
41663
41664
41664
41665
41665
41666
41666
41667
41667
41668
41668
41669
41669
41670
41670
41671
41671
41672
41672
41673
41673
41674
41674
41675
41675
41676
41676
41677
41677
41678
41678
41679
41679
41680
41680
41681
41681
41682
41682
41683
41683
41684
41684
41685
41685
41686
41686
41687
41687
41688
41688
41689
41689
41690
41690
41691
41691
41692
41692
41693
41693
41694
41694
41695
41695
41696
41696
41697
41697
41698
41698
41699
41699
41700
41700
41701
41701
41702
41702
41703
41703
41704
41704
41705
41705
41706
41706
41707
41707
41708
41708
41709
41709
41710
41710
41711
41711
41712
41712
41713
41713
41714
41714
41715
41715
41716
41716
41717
41717
41718
41718
41719
41719
41720
41720
41721
41721
41722
41722
41723
41723
41724
41724
41725
41725
41726
41726
41727
41727
41728
41728
41729
41729
41730
41730
41731
41731
41732
41732
41733
41733
41734
41734
41735
41735
41736
41736
41737
41737
41738
41738
41739
41739
41740
41740
41741
41741
41742
41742
41743
41743
41744
41744
41745
41745
41746
41746
41747
41747
41748
41748
41749
41749
41750
41750
41751
41751
41752
41752
41753
41753
41754
41754
41755
41755
41756
41756
41757
41757
41758
41758
41759
41759
41760
41760
41761
41761
41762
41762
41763
41763
41764
41764
41765
41765
41766
41766
41767
41767
41768
41768
41769
41769
41770
41770
41771
41771
41772
41772
41773
41773
41774
41774
41775
41775
41776
41776
41777
41777
41778
41778
41779
41779
41780
41780
41781
41781
41782
41782
41783
41783
41784
41784
41785
41785
41786
41786
41787
41787
41788
41788
41789
41789
41790
41790
41791
41791
41792
41792
41793
41793
41794
41794
41795
41795
41796
41796
41797
41797
41798
41798
41799
41799
41800
41800
41801
41801
41802
41802
41803
41803
41804
41804
41805
41805
41806
41806
41807
41807
41808
41808
41809
41809
41810
41810
41811
41811
41812
41812
41813
41813
41814
41814
41815
41815
41816
41816
41817
41817
41818
41818
41819
41819
41820
41820
41821
41821
41822
41822
41823
41823
41824
41824
41825
41825
41826
41826
41827
41827
41828
41828
41829
41829
41830
41830
41831
41831
41832
41832
41833
41833
41834
41834
41835
41835
41836
41836
41837
41837
41838
41838
41839
41839
41840
41840
41841
41841
41842
41842
41843
41843
41844
41844
41845
41845
41846
41846
41847
41847
41848
41848
41849
41849
41850
41850
41851
41851
41852
41852
41853
41853
41854
41854
41855
41855
41856
41856
41857
41857
41858
41858
41859
41859
41860
41860
41861
41861
41862
41862
41863
41863
41864
41864
41865
41865
41866
41866
41867
41867
41868
41868
41869
41869
41870
41870
41871
41871
41872
41872
41873
41873
41874
41874
41875
41875
41876
41876
41877
41877
41878
41878
41879
41879
41880
41880
41881
41881
41882
41882
41883
41883
41884
41884
41885
41885
41886
41886
41887
41887
41888
41888
41889
41889
41890
41890
41891
41891
41892
41892
41893
41893
41894
41894
41895
41895
41896
41896
41897
41897
41898
41898
41899
41899
41900
41900
41901
41901
41902
41902
41903
41903
41904
41904
41905
41905
41906
41906
41907
41907
41908
41908
41909
41909
41910
41910
41911
41911
41912
41912
41913
41913
41914
41914
41915
41915
41916
41916
41917
41917
41918
41918
41919
41919
41920
41920
41921
41921
41922
41922
41923
41923
41924
41924
41925
41925
41926
41926
41927
41927
41928
41928
41929
41929
41930
41930
41931
41931
41932
41932
41933
41933
41934
41934
41935
41935
41936
41936
41937
41937
41938
41938
41939
41939
41940
41940
41941
41941
41942
41942
41943
41943
41944
41944
41945
41945
41946
41946
41947
41947
41948
41948
41949
41949
41950
41950
41951
41951
41952
41952
41953
41953
41954
41954
41955
41955
41956
41956
41957
41957
41958
41958
41959
41959
41960
41960
41961
41961
41962
41962
41963
41963
41964
41964
41965
41965
41966
41966
41967
41967
41968
41968
41969
41969
41970
41970
41971
41971
41972
41972
41973
41973
41974
41974
41975
41975
41976
41976
41977
41977
41978
41978
41979
41979
41980
41980
41981
41981
41982
41982
41983
41983
41984
41984
41985
41985
41986
41986
41987
41987
41988
41988
41989
41989
41990
41990
41991
41991
41992
41992
41993
41993
41994
41994
41995
41995
41996
41996
41997
41997
41998
41998
41999
41999
42000
42000
42001
42001
42002
42002
42003
42003
42004
42004
42005
42005
42006
42006
42007
42007
42008
42008
42009
42009
42010
42010
42011
42011
42012
42012
42013
42013
42014
42014
42015
42015
42016
42016
42017
42017
42018
42018
42019
42019
42020
42020
42021
42021
42022
42022
42023
42023
42024
42024
42025
42025
42026
42026
42027
42027
42028
42028
42029
42029
42030
42030
42031
42031
42032
42032
42033
42033
42034
42034
42035
42035
42036
42036
42037
42037
42038
42038
42039
42039
42040
42040
42041
42041
42042
42042
42043
42043
42044
42044
42045
42045
42046
42046
42047
42047
42048
42048
42049
42049
42050
42050
42051
42051
42052
42052
42053
42053
42054
42054
42055
42055
42056
42056
42057
42057
42058
42058
42059
42059
42060
42060
42061
42061
42062
42062
42063
42063
42064
42064
42065
42065
42066
42066
42067
42067
42068
42068
42069
42069
42070
42070
42071
42071
42072
42072
42073
42073
42074
42074
42075
42075
42076
42076
42077
42077
42078
42078
42079
42079
42080
42080
42081
42081
42082
42082
42083
42083
42084
42084
42085
42085
42086
42086
42087
42087
42088
42088
42089
42089
42090
42090
42091
42091
42092
42092
42093
42093
42094
42094
42095
42095
42096
42096
42097
42097
42098
42098
42099
42099
42100
42100
42101
42101
42102
42102
42103
42103
42104
42104
42105
42105
42106
42106
42107
42107
42108
42108
42109
42109
42110
42110
42111
42111
42112
42112
42113
42113
42114
42114
42115
42115
42116
42116
42117
42117
42118
42118
42119
42119
42120
42120
42121
42121
42122
42122
42123
42123
42124
42124
42125
42125
42126
42126
42127
42127
42128
42128
42129
42129
42130
42130
42131
42131
42132
42132
42133
42133
42134
42134
42135
42135
42136
42136
42137
42137
42138
42138
42139
42139
42140
42140
42141
42141
42142
42142
42143
42143
42144
42144
42145
42145
42146
42146
42147
42147
42148
42148
42149
42149
42150
42150
42151
42151
42152
42152
42153
42153
42154
42154
42155
42155
42156
42156
42157
42157
42158
42158
42159
42159
42160
42160
42161
42161
42162
42162
42163
42163
42164
42164
42165
42165
42166
42166
42167
42167
42168
42168
42169
42169
42170
42170
42171
42171
42172
42172
42173
42173
42174
42174
42175
42175
42176
42176
42177
42177
42178
42178
42179
42179
42180
42180
42181
42181
42182
42182
42183
42183
42184
42184
42185
42185
42186
42186
42187
42187
42188
42188
42189
42189
42190
42190
42191
42191
42192
42192
42193
42193
42194
42194
42195
42195
42196
42196
42197
42197
42198
42198
42199
42199
42200
42200
42201
42201
42202
42202
42203
42203
42204
42204
42205
42205
42206
42206
42207
42207
42208
42208
42209
42209
42210
42210
42211
42211
42212
42212
42213
42213
42214
42214
42215
42215
42216
42216
42217
42217
42218
42218
42219
42219
42220
42220
42221
42221
42222
42222
42223
42223
42224
42224
42225
42225
42226
42226
42227
42227
42228
42228
42229
42229
42230
42230
42231
42231
42232
42232
42233
42233
42234
42234
42235
42235
42236
42236
42237
42237
42238
42238
42239
42239
42240
42240
42241
42241
42242
42242
42243
42243
42244
42244
42245
42245
42246
42246
42247
42247
42248
42248
42249
42249
42250
42250
42251
42251
42252
42252
42253
42253
42254
42254
42255
42255
42256
42256
42257
42257
42258
42258
42259
42259
42260
42260
42261
42261
42262
42262
42263
42263
42264
42264
42265
42265
42266
42266
42267
42267
42268
42268
42269
42269
42270
42270
42271
42271
42272
42272
42273
42273
42274
42274
42275
42275
42276
42276
42277
42277
42278
42278
42279
42279
42280
42280
42281
42281
42282
42282
42283
42283
42284
42284
42285
42285
42286
42286
42287
42287
42288
42288
42289
42289
42290
42290
42291
42291
42292
42292
42293
42293
42294
42294
42295
42295
42296
42296
42297
42297
42298
42298
42299
42299
42300
42300
42301
42301
42302
42302
42303
42303
42304
42304
42305
42305
42306
42306
42307
42307
42308
42308
42309
42309
42310
42310
42311
42311
42312
42312
42313
42313
42314
42314
42315
42315
42316
42316
42317
42317
42318
42318
42319
42319
42320
42320
42321
42321
42322
42322
42323
42323
42324
42324
42325
42325
42326
42326
42327
42327
42328
42328
42329
42329
42330
42330
42331
42331
42332
42332
42333
42333
42334
42334
42335
42335
42336
42336
42337
42337
42338
42338
42339
42339
42340
42340
42341
42341
42342
42342
42343
42343
42344
42344
42345
42345
42346
42346
42347
42347
42348
42348
42349
42349
42350
42350
42351
42351
42352
42352
42353
42353
42354
42354
42355
42355
42356
42356
42357
42357
42358
42358
42359
42359
42360
42360
42361
42361
42362
42362
42363
42363
42364
42364
42365
42365
42366
42366
42367
42367
42368
42368
42369
42369
42370
42370
42371
42371
42372
42372
42373
42373
42374
42374
42375
42375
42376
42376
42377
42377
42378
42378
42379
42379
42380
42380
42381
42381
42382
42382
42383
42383
42384
42384
42385
42385
42386
42386
42387
42387
42388
42388
42389
42389
42390
42390
42391
42391
42392
42392
42393
42393
42394
42394
42395
42395
42396
42396
42397
42397
42398
42398
42399
42399
42400
42400
42401
42401
42402
42402
42403
42403
42404
42404
42405
42405
42406
42406
42407
42407
42408
42408
42409
42409
42410
42410
42411
42411
42412
42412
42413
42413
42414
42414
42415
42415
42416
42416
42417
42417
42418
42418
42419
42419
42420
42420
42421
42421
42422
42422
42423
42423
42424
42424
42425
42425
42426
42426
42427
42427
42428
42428
42429
42429
42430
42430
42431
42431
42432
42432
42433
42433
42434
42434
42435
42435
42436
42436
42437
42437
42438
42438
42439
42439
42440
42440
42441
42441
42442
42442
42443
42443
42444
42444
42445
42445
42446
42446
42447
42447
42448
42448
42449
42449
42450
42450
42451
42451
42452
42452
42453
42453
42454
42454
42455
42455
42456
42456
42457
42457
42458
42458
42459
42459
42460
42460
42461
42461
42462
42462
42463
42463
42464
42464
42465
42465
42466
42466
42467
42467
42468
42468
42469
42469
42470
42470
42471
42471
42472
42472
42473
42473
42474
42474
42475
42475
42476
42476
42477
42477
42478
42478
42479
42479
42480
42480
42481
42481
42482
42482
42483
42483
42484
42484
42485
42485
42486
42486
42487
42487
42488
42488
42489
42489
42490
42490
42491
42491
42492
42492
42493
42493
42494
42494
42495
42495
42496
42496
42497
42497
42498
42498
42499
42499
42500
42500
42501
42501
42502
42502
42503
42503
42504
42504
42505
42505
42506
42506
42507
42507
42508
42508
42509
42509
42510
42510
42511
42511
42512
42512
42513
42513
42514
42514
42515
42515
42516
42516
42517
42517
42518
42518
42519
42519
42520
42520
42521
42521
42522
42522
42523
42523
42524
42524
42525
42525
42526
42526
42527
42527
42528
42528
42529
42529
42530
42530
42531
42531
42532
42532
42533
42533
42534
42534
42535
42535
42536
42536
42537
42537
42538
42538
42539
42539
42540
42540
42541
42541
42542
42542
42543
42543
42544
42544
42545
42545
42546
42546
42547
42547
42548
42548
42549
42549
42550
42550
42551
42551
42552
42552
42553
42553
42554
42554
42555
42555
42556
42556
42557
42557
42558
42558
42559
42559
42560
42560
42561
42561
42562
42562
42563
42563
42564
42564
42565
42565
42566
42566
42567
42567
42568
42568
42569
42569
42570
42570
42571
42571
42572
42572
42573
42573
42574
42574
42575
42575
42576
42576
42577
42577
42578
42578
42579
42579
42580
42580
42581
42581
42582
42582
42583
42583
42584
42584
42585
42585
42586
42586
42587
42587
42588
42588
42589
42589
42590
42590
42591
42591
42592
42592
42593
42593
42594
42594
42595
42595
42596
42596
42597
42597
42598
42598
42599
42599
42600
42600
42601
42601
42602
42602
42603
42603
42604
42604
42605
42605
42606
42606
42607
42607
42608
42608
42609
42609
42610
42610
42611
42611
42612
42612
42613
42613
42614
42614
42615
42615
42616
42616
42617
42617
42618
42618
42619
42619
42620
42620
42621
42621
42622
42622
42623
42623
42624
42624
42625
42625
42626
42626
42627
42627
42628
42628
42629
42629
42630
42630
42631
42631
42632
42632
42633
42633
42634
42634
42635
42635
42636
42636
42637
42637
42638
42638
42639
42639
42640
42640
42641
42641
42642
42642
42643
42643
42644
42644
42645
42645
42646
42646
42647
42647
42648
42648
42649
42649
42650
42650
42651
42651
42652
42652
42653
42653
42654
42654
42655
42655
42656
42656
42657
42657
42658
42658
42659
42659
42660
42660
42661
42661
42662
42662
42663
42663
42664
42664
42665
42665
42666
42666
42667
42667
42668
42668
42669
42669
42670
42670
42671
42671
42672
42672
42673
42673
42674
42674
42675
42675
42676
42676
42677
42677
42678
42678
42679
42679
42680
42680
42681
42681
42682
42682
42683
42683
42684
42684
42685
42685
42686
42686
42687
42687
42688
42688
42689
42689
42690
42690
42691
42691
42692
42692
42693
42693
42694
42694
42695
42695
42696
42696
42697
42697
42698
42698
42699
42699
42700
42700
42701
42701
42702
42702
42703
42703
42704
42704
42705
42705
42706
42706
42707
42707
42708
42708
42709
42709
42710
42710
42711
42711
42712
42712
42713
42713
42714
42714
42715
42715
42716
42716
42717
42717
42718
42718
42719
42719
42720
42720
42721
42721
42722
42722
42723
42723
42724
42724
42725
42725
42726
42726
42727
42727
42728
42728
42729
42729
42730
42730
42731
42731
42732
42732
42733
42733
42734
42734
42735
42735
42736
42736
42737
42737
42738
42738
42739
42739
42740
42740
42741
42741
42742
42742
42743
42743
42744
42744
42745
42745
42746
42746
42747
42747
42748
42748
42749
42749
42750
42750
42751
42751
42752
42752
42753
42753
42754
42754
42755
42755
42756
42756
42757
42757
42758
42758
42759
42759
42760
42760
42761
42761
42762
42762
42763
42763
42764
42764
42765
42765
42766
42766
42767
42767
42768
42768
42769
42769
42770
42770
42771
42771
42772
42772
42773
42773
42774
42774
42775
42775
42776
42776
42777
42777
42778
42778
42779
42779
42780
42780
42781
42781
42782
42782
42783
42783
42784
42784
42785
42785
42786
42786
42787
42787
42788
42788
42789
42789
42790
42790
42791
42791
42792
42792
42793
42793
42794
42794
42795
42795
42796
42796
42797
42797
42798
42798
42799
42799
42800
42800
42801
42801
42802
42802
42803
42803
42804
42804
42805
42805
42806
42806
42807
42807
42808
42808
42809
42809
42810
42810
42811
42811
42812
42812
42813
42813
42814
42814
42815
42815
42816
42816
42817
42817
42818
42818
42819
42819
42820
42820
42821
42821
42822
42822
42823
42823
42824
42824
42825
42825
42826
42826
42827
42827
42828
42828
42829
42829
42830
42830
42831
42831
42832
42832
42833
42833
42834
42834
42835
42835
42836
42836
42837
42837
42838
42838
42839
42839
42840
42840
42841
42841
42842
42842
42843
42843
42844
42844
42845
42845
42846
42846
42847
42847
42848
42848
42849
42849
42850
42850
42851
42851
42852
42852
42853
42853
42854
42854
42855
42855
42856
42856
42857
42857
42858
42858
42859
42859
42860
42860
42861
42861
42862
42862
42863
42863
42864
42864
42865
42865
42866
42866
42867
42867
42868
42868
42869
42869
42870
42870
42871
42871
42872
42872
42873
42873
42874
42874
42875
42875
42876
42876
42877
42877
42878
42878
42879
42879
42880
42880
42881
42881
42882
42882
42883
42883
42884
42884
42885
42885
42886
42886
42887
42887
42888
42888
42889
42889
42890
42890
42891
42891
42892
42892
42893
42893
42894
42894
42895
42895
42896
42896
42897
42897
42898
42898
42899
42899
42900
42900
42901
42901
42902
42902
42903
42903
42904
42904
42905
42905
42906
42906
42907
42907
42908
42908
42909
42909
42910
42910
42911
42911
42912
42912
42913
42913
42914
42914
42915
42915
42916
42916
42917
42917
42918
42918
42919
42919
42920
42920
42921
42921
42922
42922
42923
42923
42924
42924
42925
42925
42926
42926
42927
42927
42928
42928
42929
42929
42930
42930
42931
42931
42932
42932
42933
42933
42934
42934
42935
42935
42936
42936
42937
42937
42938
42938
42939
42939
42940
42940
42941
42941
42942
42942
42943
42943
42944
42944
42945
42945
42946
42946
42947
42947
42948
42948
42949
42949
42950
42950
42951
42951
42952
42952
42953
42953
42954
42954
42955
42955
42956
42956
42957
42957
42958
42958
42959
42959
42960
42960
42961
42961
42962
42962
42963
42963
42964
42964
42965
42965
42966
42966
42967
42967
42968
42968
42969
42969
42970
42970
42971
42971
42972
42972
42973
42973
42974
42974
42975
42975
42976
42976
42977
42977
42978
42978
42979
42979
42980
42980
42981
42981
42982
42982
42983
42983
42984
42984
42985
42985
42986
42986
42987
42987
42988
42988
42989
42989
42990
42990
42991
42991
42992
42992
42993
42993
42994
42994
42995
42995
42996
42996
42997
42997
42998
42998
42999
42999
43000
43000
43001
43001
43002
43002
43003
43003
43004
43004
43005
43005
43006
43006
43007
43007
43008
43008
43009
43009
43010
43010
43011
43011
43012
43012
43013
43013
43014
43014
43015
43015
43016
43016
43017
43017
43018
43018
43019
43019
43020
43020
43021
43021
43022
43022
43023
43023
43024
43024
43025
43025
43026
43026
43027
43027
43028
43028
43029
43029
43030
43030
43031
43031
43032
43032
43033
43033
43034
43034
43035
43035
43036
43036
43037
43037
43038
43038
43039
43039
43040
43040
43041
43041
43042
43042
43043
43043
43044
43044
43045
43045
43046
43046
43047
43047
43048
43048
43049
43049
43050
43050
43051
43051
43052
43052
43053
43053
43054
43054
43055
43055
43056
43056
43057
43057
43058
43058
43059
43059
43060
43060
43061
43061
43062
43062
43063
43063
43064
43064
43065
43065
43066
43066
43067
43067
43068
43068
43069
43069
43070
43070
43071
43071
43072
43072
43073
43073
43074
43074
43075
43075
43076
43076
43077
43077
43078
43078
43079
43079
43080
43080
43081
43081
43082
43082
43083
43083
43084
43084
43085
43085
43086
43086
43087
43087
43088
43088
43089
43089
43090
43090
43091
43091
43092
43092
43093
43093
43094
43094
43095
43095
43096
43096
43097
43097
43098
43098
43099
43099
43100
43100
43101
43101
43102
43102
43103
43103
43104
43104
43105
43105
43106
43106
43107
43107
43108
43108
43109
43109
43110
43110
43111
43111
43112
43112
43113
43113
43114
43114
43115
43115
43116
43116
43117
43117
43118
43118
43119
43119
43120
43120
43121
43121
43122
43122
43123
43123
43124
43124
43125
43125
43126
43126
43127
43127
43128
43128
43129
43129
43130
43130
43131
43131
43132
43132
43133
43133
43134
43134
43135
43135
43136
43136
43137
43137
43138
43138
43139
43139
43140
43140
43141
43141
43142
43142
43143
43143
43144
43144
43145
43145
43146
43146
43147
43147
43148
43148
43149
43149
43150
43150
43151
43151
43152
43152
43153
43153
43154
43154
43155
43155
43156
43156
43157
43157
43158
43158
43159
43159
43160
43160
43161
43161
43162
43162
43163
43163
43164
43164
43165
43165
43166
43166
43167
43167
43168
43168
43169
43169
43170
43170
43171
43171
43172
43172
43173
43173
43174
43174
43175
43175
43176
43176
43177
43177
43178
43178
43179
43179
43180
43180
43181
43181
43182
43182
43183
43183
43184
43184
43185
43185
43186
43186
43187
43187
43188
43188
43189
43189
43190
43190
43191
43191
43192
43192
43193
43193
43194
43194
43195
43195
43196
43196
43197
43197
43198
43198
43199
43199
43200
43200
43201
43201
43202
43202
43203
43203
43204
43204
43205
43205
43206
43206
43207
43207
43208
43208
43209
43209
43210
43210
43211
43211
43212
43212
43213
43213
43214
43214
43215
43215
43216
43216
43217
43217
43218
43218
43219
43219
43220
43220
43221
43221
43222
43222
43223
43223
43224
43224
43225
43225
43226
43226
43227
43227
43228
43228
43229
43229
43230
43230
43231
43231
43232
43232
43233
43233
43234
43234
43235
43235
43236
43236
43237
43237
43238
43238
43239
43239
43240
43240
43241
43241
43242
43242
43243
43243
43244
43244
43245
43245
43246
43246
43247
43247
43248
43248
43249
43249
43250
43250
43251
43251
43252
43252
43253
43253
43254
43254
43255
43255
43256
43256
43257
43257
43258
43258
43259
43259
43260
43260
43261
43261
43262
43262
43263
43263
43264
43264
43265
43265
43266
43266
43267
43267
43268
43268
43269
43269
43270
43270
43271
43271
43272
43272
43273
43273
43274
43274
43275
43275
43276
43276
43277
43277
43278
43278
43279
43279
43280
43280
43281
43281
43282
43282
43283
43283
43284
43284
43285
43285
43286
43286
43287
43287
43288
43288
43289
43289
43290
43290
43291
43291
43292
43292
43293
43293
43294
43294
43295
43295
43296
43296
43297
43297
43298
43298
43299
43299
43300
43300
43301
43301
43302
43302
43303
43303
43304
43304
43305
43305
43306
43306
43307
43307
43308
43308
43309
43309
43310
43310
43311
43311
43312
43312
43313
43313
43314
43314
43315
43315
43316
43316
43317
43317
43318
43318
43319
43319
43320
43320
43321
43321
43322
43322
43323
43323
43324
43324
43325
43325
43326
43326
43327
43327
43328
43328
43329
43329
43330
43330
43331
43331
43332
43332
43333
43333
43334
43334
43335
43335
43336
43336
43337
43337
43338
43338
43339
43339
43340
43340
43341
43341
43342
43342
43343
43343
43344
43344
43345
43345
43346
43346
43347
43347
43348
43348
43349
43349
43350
43350
43351
43351
43352
43352
43353
43353
43354
43354
43355
43355
43356
43356
43357
43357
43358
43358
43359
43359
43360
43360
43361
43361
43362
43362
43363
43363
43364
43364
43365
43365
43366
43366
43367
43367
43368
43368
43369
43369
43370
43370
43371
43371
43372
43372
43373
43373
43374
43374
43375
43375
43376
43376
43377
43377
43378
43378
43379
43379
43380
43380
43381
43381
43382
43382
43383
43383
43384
43384
43385
43385
43386
43386
43387
43387
43388
43388
43389
43389
43390
43390
43391
43391
43392
43392
43393
43393
43394
43394
43395
43395
43396
43396
43397
43397
43398
43398
43399
43399
43400
43400
43401
43401
43402
43402
43403
43403
43404
43404
43405
43405
43406
43406
43407
43407
43408
43408
43409
43409
43410
43410
43411
43411
43412
43412
43413
43413
43414
43414
43415
43415
43416
43416
43417
43417
43418
43418
43419
43419
43420
43420
43421
43421
43422
43422
43423
43423
43424
43424
43425
43425
43426
43426
43427
43427
43428
43428
43429
43429
43430
43430
43431
43431
43432
43432
43433
43433
43434
43434
43435
43435
43436
43436
43437
43437
43438
43438
43439
43439
43440
43440
43441
43441
43442
43442
43443
43443
43444
43444
43445
43445
43446
43446
43447
43447
43448
43448
43449
43449
43450
43450
43451
43451
43452
43452
43453
43453
43454
43454
43455
43455
43456
43456
43457
43457
43458
43458
43459
43459
43460
43460
43461
43461
43462
43462
43463
43463
43464
43464
43465
43465
43466
43466
43467
43467
43468
43468
43469
43469
43470
43470
43471
43471
43472
43472
43473
43473
43474
43474
43475
43475
43476
43476
43477
43477
43478
43478
43479
43479
43480
43480
43481
43481
43482
43482
43483
43483
43484
43484
43485
43485
43486
43486
43487
43487
43488
43488
43489
43489
43490
43490
43491
43491
43492
43492
43493
43493
43494
43494
43495
43495
43496
43496
43497
43497
43498
43498
43499
43499
43500
43500
43501
43501
43502
43502
43503
43503
43504
43504
43505
43505
43506
43506
43507
43507
43508
43508
43509
43509
43510
43510
43511
43511
43512
43512
43513
43513
43514
43514
43515
43515
43516
43516
43517
43517
43518
43518
43519
43519
43520
43520
43521
43521
43522
43522
43523
43523
43524
43524
43525
43525
43526
43526
43527
43527
43528
43528
43529
43529
43530
43530
43531
43531
43532
43532
43533
43533
43534
43534
43535
43535
43536
43536
43537
43537
43538
43538
43539
43539
43540
43540
43541
43541
43542
43542
43543
43543
43544
43544
43545
43545
43546
43546
43547
43547
43548
43548
43549
43549
43550
43550
43551
43551
43552
43552
43553
43553
43554
43554
43555
43555
43556
43556
43557
43557
43558
43558
43559
43559
43560
43560
43561
43561
43562
43562
43563
43563
43564
43564
43565
43565
43566
43566
43567
43567
43568
43568
43569
43569
43570
43570
43571
43571
43572
43572
43573
43573
43574
43574
43575
43575
43576
43576
43577
43577
43578
43578
43579
43579
43580
43580
43581
43581
43582
43582
43583
43583
43584
43584
43585
43585
43586
43586
43587
43587
43588
43588
43589
43589
43590
43590
43591
43591
43592
43592
43593
43593
43594
43594
43595
43595
43596
43596
43597
43597
43598
43598
43599
43599
43600
43600
43601
43601
43602
43602
43603
43603
43604
43604
43605
43605
43606
43606
43607
43607
43608
43608
43609
43609
43610
43610
43611
43611
43612
43612
43613
43613
43614
43614
43615
43615
43616
43616
43617
43617
43618
43618
43619
43619
43620
43620
43621
43621
43622
43622
43623
43623
43624
43624
43625
43625
43626
43626
43627
43627
43628
43628
43629
43629
43630
43630
43631
43631
43632
43632
43633
43633
43634
43634
43635
43635
43636
43636
43637
43637
43638
43638
43639
43639
43640
43640
43641
43641
43642
43642
43643
43643
43644
43644
43645
43645
43646
43646
43647
43647
43648
43648
43649
43649
43650
43650
43651
43651
43652
43652
43653
43653
43654
43654
43655
43655
43656
43656
43657
43657
43658
43658
43659
43659
43660
43660
43661
43661
43662
43662
43663
43663
43664
43664
43665
43665
43666
43666
43667
43667
43668
43668
43669
43669
43670
43670
43671
43671
43672
43672
43673
43673
43674
43674
43675
43675
43676
43676
43677
43677
43678
43678
43679
43679
43680
43680
43681
43681
43682
43682
43683
43683
43684
43684
43685
43685
43686
43686
43687
43687
43688
43688
43689
43689
43690
43690
43691
43691
43692
43692
43693
43693
43694
43694
43695
43695
43696
43696
43697
43697
43698
43698
43699
43699
43700
43700
43701
43701
43702
43702
43703
43703
43704
43704
43705
43705
43706
43706
43707
43707
43708
43708
43709
43709
43710
43710
43711
43711
43712
43712
43713
43713
43714
43714
43715
43715
43716
43716
43717
43717
43718
43718
43719
43719
43720
43720
43721
43721
43722
43722
43723
43723
43724
43724
43725
43725
43726
43726
43727
43727
43728
43728
43729
43729
43730
43730
43731
43731
43732
43732
43733
43733
43734
43734
43735
43735
43736
43736
43737
43737
43738
43738
43739
43739
43740
43740
43741
43741
43742
43742
43743
43743
43744
43744
43745
43745
43746
43746
43747
43747
43748
43748
43749
43749
43750
43750
43751
43751
43752
43752
43753
43753
43754
43754
43755
43755
43756
43756
43757
43757
43758
43758
43759
43759
43760
43760
43761
43761
43762
43762
43763
43763
43764
43764
43765
43765
43766
43766
43767
43767
43768
43768
43769
43769
43770
43770
43771
43771
43772
43772
43773
43773
43774
43774
43775
43775
43776
43776
43777
43777
43778
43778
43779
43779
43780
43780
43781
43781
43782
43782
43783
43783
43784
43784
43785
43785
43786
43786
43787
43787
43788
43788
43789
43789
43790
43790
43791
43791
43792
43792
43793
43793
43794
43794
43795
43795
43796
43796
43797
43797
43798
43798
43799
43799
43800
43800
43801
43801
43802
43802
43803
43803
43804
43804
43805
43805
43806
43806
43807
43807
43808
43808
43809
43809
43810
43810
43811
43811
43812
43812
43813
43813
43814
43814
43815
43815
43816
43816
43817
43817
43818
43818
43819
43819
43820
43820
43821
43821
43822
43822
43823
43823
43824
43824
43825
43825
43826
43826
43827
43827
43828
43828
43829
43829
43830
43830
43831
43831
43832
43832
43833
43833
43834
43834
43835
43835
43836
43836
43837
43837
43838
43838
43839
43839
43840
43840
43841
43841
43842
43842
43843
43843
43844
43844
43845
43845
43846
43846
43847
43847
43848
43848
43849
43849
43850
43850
43851
43851
43852
43852
43853
43853
43854
43854
43855
43855
43856
43856
43857
43857
43858
43858
43859
43859
43860
43860
43861
43861
43862
43862
43863
43863
43864
43864
43865
43865
43866
43866
43867
43867
43868
43868
43869
43869
43870
43870
43871
43871
43872
43872
43873
43873
43874
43874
43875
43875
43876
43876
43877
43877
43878
43878
43879
43879
43880
43880
43881
43881
43882
43882
43883
43883
43884
43884
43885
43885
43886
43886
43887
43887
43888
43888
43889
43889
43890
43890
43891
43891
43892
43892
43893
43893
43894
43894
43895
43895
43896
43896
43897
43897
43898
43898
43899
43899
43900
43900
43901
43901
43902
43902
43903
43903
43904
43904
43905
43905
43906
43906
43907
43907
43908
43908
43909
43909
43910
43910
43911
43911
43912
43912
43913
43913
43914
43914
43915
43915
43916
43916
43917
43917
43918
43918
43919
43919
43920
43920
43921
43921
43922
43922
43923
43923
43924
43924
43925
43925
43926
43926
43927
43927
43928
43928
43929
43929
43930
43930
43931
43931
43932
43932
43933
43933
43934
43934
43935
43935
43936
43936
43937
43937
43938
43938
43939
43939
43940
43940
43941
43941
43942
43942
43943
43943
43944
43944
43945
43945
43946
43946
43947
43947
43948
43948
43949
43949
43950
43950
43951
43951
43952
43952
43953
43953
43954
43954
43955
43955
43956
43956
43957
43957
43958
43958
43959
43959
43960
43960
43961
43961
43962
43962
43963
43963
43964
43964
43965
43965
43966
43966
43967
43967
43968
43968
43969
43969
43970
43970
43971
43971
43972
43972
43973
43973
43974
43974
43975
43975
43976
43976
43977
43977
43978
43978
43979
43979
43980
43980
43981
43981
43982
43982
43983
43983
43984
43984
43985
43985
43986
43986
43987
43987
43988
43988
43989
43989
43990
43990
43991
43991
43992
43992
43993
43993
43994
43994
43995
43995
43996
43996
43997
43997
43998
43998
43999
43999
44000
44000
44001
44001
44002
44002
44003
44003
44004
44004
44005
44005
44006
44006
44007
44007
44008
44008
44009
44009
44010
44010
44011
44011
44012
44012
44013
44013
44014
44014
44015
44015
44016
44016
44017
44017
44018
44018
44019
44019
44020
44020
44021
44021
44022
44022
44023
44023
44024
44024
44025
44025
44026
44026
44027
44027
44028
44028
44029
44029
44030
44030
44031
44031
44032
44032
44033
44033
44034
44034
44035
44035
44036
44036
44037
44037
44038
44038
44039
44039
44040
44040
44041
44041
44042
44042
44043
44043
44044
44044
44045
44045
44046
44046
44047
44047
44048
44048
44049
44049
44050
44050
44051
44051
44052
44052
44053
44053
44054
44054
44055
44055
44056
44056
44057
44057
44058
44058
44059
44059
44060
44060
44061
44061
44062
44062
44063
44063
44064
44064
44065
44065
44066
44066
44067
44067
44068
44068
44069
44069
44070
44070
44071
44071
44072
44072
44073
44073
44074
44074
44075
44075
44076
44076
44077
44077
44078
44078
44079
44079
44080
44080
44081
44081
44082
44082
44083
44083
44084
44084
44085
44085
44086
44086
44087
44087
44088
44088
44089
44089
44090
44090
44091
44091
44092
44092
44093
44093
44094
44094
44095
44095
44096
44096
44097
44097
44098
44098
44099
44099
44100
44100
44101
44101
44102
44102
44103
44103
44104
44104
44105
44105
44106
44106
44107
44107
44108
44108
44109
44109
44110
44110
44111
44111
44112
44112
44113
44113
44114
44114
44115
44115
44116
44116
44117
44117
44118
44118
44119
44119
44120
44120
44121
44121
44122
44122
44123
44123
44124
44124
44125
44125
44126
44126
44127
44127
44128
44128
44129
44129
44130
44130
44131
44131
44132
44132
44133
44133
44134
44134
44135
44135
44136
44136
44137
44137
44138
44138
44139
44139
44140
44140
44141
44141
44142
44142
44143
44143
44144
44144
44145
44145
44146
44146
44147
44147
44148
44148
44149
44149
44150
44150
44151
44151
44152
44152
44153
44153
44154
44154
44155
44155
44156
44156
44157
44157
44158
44158
44159
44159
44160
44160
44161
44161
44162
44162
44163
44163
44164
44164
44165
44165
44166
44166
44167
44167
44168
44168
44169
44169
44170
44170
44171
44171
44172
44172
44173
44173
44174
44174
44175
44175
44176
44176
44177
44177
44178
44178
44179
44179
44180
44180
44181
44181
44182
44182
44183
44183
44184
44184
44185
44185
44186
44186
44187
44187
44188
44188
44189
44189
44190
44190
44191
44191
44192
44192
44193
44193
44194
44194
44195
44195
44196
44196
44197
44197
44198
44198
44199
44199
44200
44200
44201
44201
44202
44202
44203
44203
44204
44204
44205
44205
44206
44206
44207
44207
44208
44208
44209
44209
44210
44210
44211
44211
44212
44212
44213
44213
44214
44214
44215
44215
44216
44216
44217
44217
44218
44218
44219
44219
44220
44220
44221
44221
44222
44222
44223
44223
44224
44224
44225
44225
44226
44226
44227
44227
44228
44228
44229
44229
44230
44230
44231
44231
44232
44232
44233
44233
44234
44234
44235
44235
44236
44236
44237
44237
44238
44238
44239
44239
44240
44240
44241
44241
44242
44242
44243
44243
44244
44244
44245
44245
44246
44246
44247
44247
44248
44248
44249
44249
44250
44250
44251
44251
44252
44252
44253
44253
44254
44254
44255
44255
44256
44256
44257
44257
44258
44258
44259
44259
44260
44260
44261
44261
44262
44262
44263
44263
44264
44264
44265
44265
44266
44266
44267
44267
44268
44268
44269
44269
44270
44270
44271
44271
44272
44272
44273
44273
44274
44274
44275
44275
44276
44276
44277
44277
44278
44278
44279
44279
44280
44280
44281
44281
44282
44282
44283
44283
44284
44284
44285
44285
44286
44286
44287
44287
44288
44288
44289
44289
44290
44290
44291
44291
44292
44292
44293
44293
44294
44294
44295
44295
44296
44296
44297
44297
44298
44298
44299
44299
44300
44300
44301
44301
44302
44302
44303
44303
44304
44304
44305
44305
44306
44306
44307
44307
44308
44308
44309
44309
44310
44310
44311
44311
44312
44312
44313
44313
44314
44314
44315
44315
44316
44316
44317
44317
44318
44318
44319
44319
44320
44320
44321
44321
44322
44322
44323
44323
44324
44324
44325
44325
44326
44326
44327
44327
44328
44328
44329
44329
44330
44330
44331
44331
44332
44332
44333
44333
44334
44334
44335
44335
44336
44336
44337
44337
44338
44338
44339
44339
44340
44340
44341
44341
44342
44342
44343
44343
44344
44344
44345
44345
44346
44346
44347
44347
44348
44348
44349
44349
44350
44350
44351
44351
44352
44352
44353
44353
44354
44354
44355
44355
44356
44356
44357
44357
44358
44358
44359
44359
44360
44360
44361
44361
44362
44362
44363
44363
44364
44364
44365
44365
44366
44366
44367
44367
44368
44368
44369
44369
44370
44370
44371
44371
44372
44372
44373
44373
44374
44374
44375
44375
44376
44376
44377
44377
44378
44378
44379
44379
44380
44380
44381
44381
44382
44382
44383
44383
44384
44384
44385
44385
44386
44386
44387
44387
44388
44388
44389
44389
44390
44390
44391
44391
44392
44392
44393
44393
44394
44394
44395
44395
44396
44396
44397
44397
44398
44398
44399
44399
44400
44400
44401
44401
44402
44402
44403
44403
44404
44404
44405
44405
44406
44406
44407
44407
44408
44408
44409
44409
44410
44410
44411
44411
44412
44412
44413
44413
44414
44414
44415
44415
44416
44416
44417
44417
44418
44418
44419
44419
44420
44420
44421
44421
44422
44422
44423
44423
44424
44424
44425
44425
44426
44426
44427
44427
44428
44428
44429
44429
44430
44430
44431
44431
44432
44432
44433
44433
44434
44434
44435
44435
44436
44436
44437
44437
44438
44438
44439
44439
44440
44440
44441
44441
44442
44442
44443
44443
44444
44444
44445
44445
44446
44446
44447
44447
44448
44448
44449
44449
44450
44450
44451
44451
44452
44452
44453
44453
44454
44454
44455
44455
44456
44456
44457
44457
44458
44458
44459
44459
44460
44460
44461
44461
44462
44462
44463
44463
44464
44464
44465
44465
44466
44466
44467
44467
44468
44468
44469
44469
44470
44470
44471
44471
44472
44472
44473
44473
44474
44474
44475
44475
44476
44476
44477
44477
44478
44478
44479
44479
44480
44480
44481
44481
44482
44482
44483
44483
44484
44484
44485
44485
44486
44486
44487
44487
44488
44488
44489
44489
44490
44490
44491
44491
44492
44492
44493
44493
44494
44494
44495
44495
44496
44496
44497
44497
44498
44498
44499
44499
44500
44500
44501
44501
44502
44502
44503
44503
44504
44504
44505
44505
44506
44506
44507
44507
44508
44508
44509
44509
44510
44510
44511
44511
44512
44512
44513
44513
44514
44514
44515
44515
44516
44516
44517
44517
44518
44518
44519
44519
44520
44520
44521
44521
44522
44522
44523
44523
44524
44524
44525
44525
44526
44526
44527
44527
44528
44528
44529
44529
44530
44530
44531
44531
44532
44532
44533
44533
44534
44534
44535
44535
44536
44536
44537
44537
44538
44538
44539
44539
44540
44540
44541
44541
44542
44542
44543
44543
44544
44544
44545
44545
44546
44546
44547
44547
44548
44548
44549
44549
44550
44550
44551
44551
44552
44552
44553
44553
44554
44554
44555
44555
44556
44556
44557
44557
44558
44558
44559
44559
44560
44560
44561
44561
44562
44562
44563
44563
44564
44564
44565
44565
44566
44566
44567
44567
44568
44568
44569
44569
44570
44570
44571
44571
44572
44572
44573
44573
44574
44574
44575
44575
44576
44576
44577
44577
44578
44578
44579
44579
44580
44580
44581
44581
44582
44582
44583
44583
44584
44584
44585
44585
44586
44586
44587
44587
44588
44588
44589
44589
44590
44590
44591
44591
44592
44592
44593
44593
44594
44594
44595
44595
44596
44596
44597
44597
44598
44598
44599
44599
44600
44600
44601
44601
44602
44602
44603
44603
44604
44604
44605
44605
44606
44606
44607
44607
44608
44608
44609
44609
44610
44610
44611
44611
44612
44612
44613
44613
44614
44614
44615
44615
44616
44616
44617
44617
44618
44618
44619
44619
44620
44620
44621
44621
44622
44622
44623
44623
44624
44624
44625
44625
44626
44626
44627
44627
44628
44628
44629
44629
44630
44630
44631
44631
44632
44632
44633
44633
44634
44634
44635
44635
44636
44636
44637
44637
44638
44638
44639
44639
44640
44640
44641
44641
44642
44642
44643
44643
44644
44644
44645
44645
44646
44646
44647
44647
44648
44648
44649
44649
44650
44650
44651
44651
44652
44652
44653
44653
44654
44654
44655
44655
44656
44656
44657
44657
44658
44658
44659
44659
44660
44660
44661
44661
44662
44662
44663
44663
44664
44664
44665
44665
44666
44666
44667
44667
44668
44668
44669
44669
44670
44670
44671
44671
44672
44672
44673
44673
44674
44674
44675
44675
44676
44676
44677
44677
44678
44678
44679
44679
44680
44680
44681
44681
44682
44682
44683
44683
44684
44684
44685
44685
44686
44686
44687
44687
44688
44688
44689
44689
44690
44690
44691
44691
44692
44692
44693
44693
44694
44694
44695
44695
44696
44696
44697
44697
44698
44698
44699
44699
44700
44700
44701
44701
44702
44702
44703
44703
44704
44704
44705
44705
44706
44706
44707
44707
44708
44708
44709
44709
44710
44710
44711
44711
44712
44712
44713
44713
44714
44714
44715
44715
44716
44716
44717
44717
44718
44718
44719
44719
44720
44720
44721
44721
44722
44722
44723
44723
44724
44724
44725
44725
44726
44726
44727
44727
44728
44728
44729
44729
44730
44730
44731
44731
44732
44732
44733
44733
44734
44734
44735
44735
44736
44736
44737
44737
44738
44738
44739
44739
44740
44740
44741
44741
44742
44742
44743
44743
44744
44744
44745
44745
44746
44746
44747
44747
44748
44748
44749
44749
44750
44750
44751
44751
44752
44752
44753
44753
44754
44754
44755
44755
44756
44756
44757
44757
44758
44758
44759
44759
44760
44760
44761
44761
44762
44762
44763
44763
44764
44764
44765
44765
44766
44766
44767
44767
44768
44768
44769
44769
44770
44770
44771
44771
44772
44772
44773
44773
44774
44774
44775
44775
44776
44776
44777
44777
44778
44778
44779
44779
44780
44780
44781
44781
44782
44782
44783
44783
44784
44784
44785
44785
44786
44786
44787
44787
44788
44788
44789
44789
44790
44790
44791
44791
44792
44792
44793
44793
44794
44794
44795
44795
44796
44796
44797
44797
44798
44798
44799
44799
44800
44800
44801
44801
44802
44802
44803
44803
44804
44804
44805
44805
44806
44806
44807
44807
44808
44808
44809
44809
44810
44810
44811
44811
44812
44812
44813
44813
44814
44814
44815
44815
44816
44816
44817
44817
44818
44818
44819
44819
44820
44820
44821
44821
44822
44822
44823
44823
44824
44824
44825
44825
44826
44826
44827
44827
44828
44828
44829
44829
44830
44830
44831
44831
44832
44832
44833
44833
44834
44834
44835
44835
44836
44836
44837
44837
44838
44838
44839
44839
44840
44840
44841
44841
44842
44842
44843
44843
44844
44844
44845
44845
44846
44846
44847
44847
44848
44848
44849
44849
44850
44850
44851
44851
44852
44852
44853
44853
44854
44854
44855
44855
44856
44856
44857
44857
44858
44858
44859
44859
44860
44860
44861
44861
44862
44862
44863
44863
44864
44864
44865
44865
44866
44866
44867
44867
44868
44868
44869
44869
44870
44870
44871
44871
44872
44872
44873
44873
44874
44874
44875
44875
44876
44876
44877
44877
44878
44878
44879
44879
44880
44880
44881
44881
44882
44882
44883
44883
44884
44884
44885
44885
44886
44886
44887
44887
44888
44888
44889
44889
44890
44890
44891
44891
44892
44892
44893
44893
44894
44894
44895
44895
44896
44896
44897
44897
44898
44898
44899
44899
44900
44900
44901
44901
44902
44902
44903
44903
44904
44904
44905
44905
44906
44906
44907
44907
44908
44908
44909
44909
44910
44910
44911
44911
44912
44912
44913
44913
44914
44914
44915
44915
44916
44916
44917
44917
44918
44918
44919
44919
44920
44920
44921
44921
44922
44922
44923
44923
44924
44924
44925
44925
44926
44926
44927
44927
44928
44928
44929
44929
44930
44930
44931
44931
44932
44932
44933
44933
44934
44934
44935
44935
44936
44936
44937
44937
44938
44938
44939
44939
44940
44940
44941
44941
44942
44942
44943
44943
44944
44944
44945
44945
44946
44946
44947
44947
44948
44948
44949
44949
44950
44950
44951
44951
44952
44952
44953
44953
44954
44954
44955
44955
44956
44956
44957
44957
44958
44958
44959
44959
44960
44960
44961
44961
44962
44962
44963
44963
44964
44964
44965
44965
44966
44966
44967
44967
44968
44968
44969
44969
44970
44970
44971
44971
44972
44972
44973
44973
44974
44974
44975
44975
44976
44976
44977
44977
44978
44978
44979
44979
44980
44980
44981
44981
44982
44982
44983
44983
44984
44984
44985
44985
44986
44986
44987
44987
44988
44988
44989
44989
44990
44990
44991
44991
44992
44992
44993
44993
44994
44994
44995
44995
44996
44996
44997
44997
44998
44998
44999
44999
45000
45000
45001
45001
45002
45002
45003
45003
45004
45004
45005
45005
45006
45006
45007
45007
45008
45008
45009
45009
45010
45010
45011
45011
45012
45012
45013
45013
45014
45014
45015
45015
45016
45016
45017
45017
45018
45018
45019
45019
45020
45020
45021
45021
45022
45022
45023
45023
45024
45024
45025
45025
45026
45026
45027
45027
45028
45028
45029
45029
45030
45030
45031
45031
45032
45032
45033
45033
45034
45034
45035
45035
45036
45036
45037
45037
45038
45038
45039
45039
45040
45040
45041
45041
45042
45042
45043
45043
45044
45044
45045
45045
45046
45046
45047
45047
45048
45048
45049
45049
45050
45050
45051
45051
45052
45052
45053
45053
45054
45054
45055
45055
45056
45056
45057
45057
45058
45058
45059
45059
45060
45060
45061
45061
45062
45062
45063
45063
45064
45064
45065
45065
45066
45066
45067
45067
45068
45068
45069
45069
45070
45070
45071
45071
45072
45072
45073
45073
45074
45074
45075
45075
45076
45076
45077
45077
45078
45078
45079
45079
45080
45080
45081
45081
45082
45082
45083
45083
45084
45084
45085
45085
45086
45086
45087
45087
45088
45088
45089
45089
45090
45090
45091
45091
45092
45092
45093
45093
45094
45094
45095
45095
45096
45096
45097
45097
45098
45098
45099
45099
45100
45100
45101
45101
45102
45102
45103
45103
45104
45104
45105
45105
45106
45106
45107
45107
45108
45108
45109
45109
45110
45110
45111
45111
45112
45112
45113
45113
45114
45114
45115
45115
45116
45116
45117
45117
45118
45118
45119
45119
45120
45120
45121
45121
45122
45122
45123
45123
45124
45124
45125
45125
45126
45126
45127
45127
45128
45128
45129
45129
45130
45130
45131
45131
45132
45132
45133
45133
45134
45134
45135
45135
45136
45136
45137
45137
45138
45138
45139
45139
45140
45140
45141
45141
45142
45142
45143
45143
45144
45144
45145
45145
45146
45146
45147
45147
45148
45148
45149
45149
45150
45150
45151
45151
45152
45152
45153
45153
45154
45154
45155
45155
45156
45156
45157
45157
45158
45158
45159
45159
45160
45160
45161
45161
45162
45162
45163
45163
45164
45164
45165
45165
45166
45166
45167
45167
45168
45168
45169
45169
45170
45170
45171
45171
45172
45172
45173
45173
45174
45174
45175
45175
45176
45176
45177
45177
45178
45178
45179
45179
45180
45180
45181
45181
45182
45182
45183
45183
45184
45184
45185
45185
45186
45186
45187
45187
45188
45188
45189
45189
45190
45190
45191
45191
45192
45192
45193
45193
45194
45194
45195
45195
45196
45196
45197
45197
45198
45198
45199
45199
45200
45200
45201
45201
45202
45202
45203
45203
45204
45204
45205
45205
45206
45206
45207
45207
45208
45208
45209
45209
45210
45210
45211
45211
45212
45212
45213
45213
45214
45214
45215
45215
45216
45216
45217
45217
45218
45218
45219
45219
45220
45220
45221
45221
45222
45222
45223
45223
45224
45224
45225
45225
45226
45226
45227
45227
45228
45228
45229
45229
45230
45230
45231
45231
45232
45232
45233
45233
45234
45234
45235
45235
45236
45236
45237
45237
45238
45238
45239
45239
45240
45240
45241
45241
45242
45242
45243
45243
45244
45244
45245
45245
45246
45246
45247
45247
45248
45248
45249
45249
45250
45250
45251
45251
45252
45252
45253
45253
45254
45254
45255
45255
45256
45256
45257
45257
45258
45258
45259
45259
45260
45260
45261
45261
45262
45262
45263
45263
45264
45264
45265
45265
45266
45266
45267
45267
45268
45268
45269
45269
45270
45270
45271
45271
45272
45272
45273
45273
45274
45274
45275
45275
45276
45276
45277
45277
45278
45278
45279
45279
45280
45280
45281
45281
45282
45282
45283
45283
45284
45284
45285
45285
45286
45286
45287
45287
45288
45288
45289
45289
45290
45290
45291
45291
45292
45292
45293
45293
45294
45294
45295
45295
45296
45296
45297
45297
45298
45298
45299
45299
45300
45300
45301
45301
45302
45302
45303
45303
45304
45304
45305
45305
45306
45306
45307
45307
45308
45308
45309
45309
45310
45310
45311
45311
45312
45312
45313
45313
45314
45314
45315
45315
45316
45316
45317
45317
45318
45318
45319
45319
45320
45320
45321
45321
45322
45322
45323
45323
45324
45324
45325
45325
45326
45326
45327
45327
45328
45328
45329
45329
45330
45330
45331
45331
45332
45332
45333
45333
45334
45334
45335
45335
45336
45336
45337
45337
45338
45338
45339
45339
45340
45340
45341
45341
45342
45342
45343
45343
45344
45344
45345
45345
45346
45346
45347
45347
45348
45348
45349
45349
45350
45350
45351
45351
45352
45352
45353
45353
45354
45354
45355
45355
45356
45356
45357
45357
45358
45358
45359
45359
45360
45360
45361
45361
45362
45362
45363
45363
45364
45364
45365
45365
45366
45366
45367
45367
45368
45368
45369
45369
45370
45370
45371
45371
45372
45372
45373
45373
45374
45374
45375
45375
45376
45376
45377
45377
45378
45378
45379
45379
45380
45380
45381
45381
45382
45382
45383
45383
45384
45384
45385
45385
45386
45386
45387
45387
45388
45388
45389
45389
45390
45390
45391
45391
45392
45392
45393
45393
45394
45394
45395
45395
45396
45396
45397
45397
45398
45398
45399
45399
45400
45400
45401
45401
45402
45402
45403
45403
45404
45404
45405
45405
45406
45406
45407
45407
45408
45408
45409
45409
45410
45410
45411
45411
45412
45412
45413
45413
45414
45414
45415
45415
45416
45416
45417
45417
45418
45418
45419
45419
45420
45420
45421
45421
45422
45422
45423
45423
45424
45424
45425
45425
45426
45426
45427
45427
45428
45428
45429
45429
45430
45430
45431
45431
45432
45432
45433
45433
45434
45434
45435
45435
45436
45436
45437
45437
45438
45438
45439
45439
45440
45440
45441
45441
45442
45442
45443
45443
45444
45444
45445
45445
45446
45446
45447
45447
45448
45448
45449
45449
45450
45451
45452
45453
45454
45455
45456
45457
45458
45459
45460
45461
45462
45463
45464
45465
45466
45467
45468
45469
45470
45471
45472
45473
45474
45475
45476
45477
45478
45479
45480
45481
45482
45483
45484
45485
45486
45487
45488
45489
45490
45491
45492
45493
45494
45495
45496
45497
45498
45499
45500
45501
45502
45503
45504
45505
45506
45507
45508
45509
45510
45511
45512
45513
45514
45515
45516
45517
45518
45519
45520
45521
45522
45523
45524
45525
45526
45527
45528
45529
45530
45531
45532
45533
45534
45535
45536
45537
45538
45539
45540
45541
45542
45543
45544
45545
45546
45547
45548
45549
45550
45551
45552
45553
45554
45555
45556
45557
45558
45559
45560
45561
45562
45563
45564
45565
45566
45567
45568
45569
45570
45571
45572
45573
45574
45575
45576
45577
45578
45579
45580
45581
45582
45583
45584
45585
45586
45587
45588
45589
45590
45591
45592
45593
45594
45595
45596
45597
45598
45599
45600
45600
45601
45601
45602
45602
45603
45603
45604
45604
45605
45605
45606
45606
45607
45607
45608
45608
45609
45609
45610
45610
45611
45611
45612
45612
45613
45613
45614
45614
45615
45615
45616
45616
45617
45617
45618
45618
45619
45619
45620
45620
45621
45621
45622
45622
45623
45623
45624
45624
45625
45625
45626
45626
45627
45627
45628
45628
45629
45629
45630
45630
45631
45631
45632
45632
45633
45633
45634
45634
45635
45635
45636
45636
45637
45637
45638
45638
45639
45639
45640
45640
45641
45641
45642
45642
45643
45643
45644
45644
45645
45645
45646
45646
45647
45647
45648
45648
45649
45649
45650
45650
45651
45651
45652
45652
45653
45653
45654
45654
45655
45655
45656
45656
45657
45657
45658
45658
45659
45659
45660
45660
45661
45661
45662
45662
45663
45663
45664
45664
45665
45665
45666
45666
45667
45667
45668
45668
45669
45669
45670
45670
45671
45671
45672
45672
45673
45673
45674
45674
45675
45675
45676
45676
45677
45677
45678
45678
45679
45679
45680
45680
45681
45681
45682
45682
45683
45683
45684
45684
45685
45685
45686
45686
45687
45687
45688
45688
45689
45689
45690
45690
45691
45691
45692
45692
45693
45693
45694
45694
45695
45695
45696
45696
45697
45697
45698
45698
45699
45699
45700
45700
45701
45701
45702
45702
45703
45703
45704
45704
45705
45705
45706
45706
45707
45707
45708
45708
45709
45709
45710
45710
45711
45711
45712
45712
45713
45713
45714
45714
45715
45715
45716
45716
45717
45717
45718
45718
45719
45719
45720
45720
45721
45721
45722
45722
45723
45723
45724
45724
45725
45725
45726
45726
45727
45727
45728
45728
45729
45729
45730
45730
45731
45731
45732
45732
45733
45733
45734
45734
45735
45735
45736
45736
45737
45737
45738
45738
45739
45739
45740
45740
45741
45741
45742
45742
45743
45743
45744
45744
45745
45745
45746
45746
45747
45747
45748
45748
45749
45749
45750
45750
45751
45751
45752
45752
45753
45753
45754
45754
45755
45755
45756
45756
45757
45757
45758
45758
45759
45759
45760
45760
45761
45761
45762
45762
45763
45763
45764
45764
45765
45765
45766
45766
45767
45767
45768
45768
45769
45769
45770
45770
45771
45771
45772
45772
45773
45773
45774
45774
45775
45775
45776
45776
45777
45777
45778
45778
45779
45779
45780
45780
45781
45781
45782
45782
45783
45783
45784
45784
45785
45785
45786
45786
45787
45787
45788
45788
45789
45789
45790
45790
45791
45791
45792
45792
45793
45793
45794
45794
45795
45795
45796
45796
45797
45797
45798
45798
45799
45799
45800
45800
45801
45801
45802
45802
45803
45803
45804
45804
45805
45805
45806
45806
45807
45807
45808
45808
45809
45809
45810
45810
45811
45811
45812
45812
45813
45813
45814
45814
45815
45815
45816
45816
45817
45817
45818
45818
45819
45819
45820
45820
45821
45821
45822
45822
45823
45823
45824
45824
45825
45825
45826
45826
45827
45827
45828
45828
45829
45829
45830
45830
45831
45831
45832
45832
45833
45833
45834
45834
45835
45835
45836
45836
45837
45837
45838
45838
45839
45839
45840
45840
45841
45841
45842
45842
45843
45843
45844
45844
45845
45845
45846
45846
45847
45847
45848
45848
45849
45849
45850
45850
45851
45851
45852
45852
45853
45853
45854
45854
45855
45855
45856
45856
45857
45857
45858
45858
45859
45859
45860
45860
45861
45861
45862
45862
45863
45863
45864
45864
45865
45865
45866
45866
45867
45867
45868
45868
45869
45869
45870
45870
45871
45871
45872
45872
45873
45873
45874
45874
45875
45875
45876
45876
45877
45877
45878
45878
45879
45879
45880
45880
45881
45881
45882
45882
45883
45883
45884
45884
45885
45885
45886
45886
45887
45887
45888
45888
45889
45889
45890
45890
45891
45891
45892
45892
45893
45893
45894
45894
45895
45895
45896
45896
45897
45897
45898
45898
45899
45899
45900
45900
45901
45901
45902
45902
45903
45903
45904
45904
45905
45905
45906
45906
45907
45907
45908
45908
45909
45909
45910
45910
45911
45911
45912
45912
45913
45913
45914
45914
45915
45915
45916
45916
45917
45917
45918
45918
45919
45919
45920
45920
45921
45921
45922
45922
45923
45923
45924
45924
45925
45925
45926
45926
45927
45927
45928
45928
45929
45929
45930
45930
45931
45931
45932
45932
45933
45933
45934
45934
45935
45935
45936
45936
45937
45937
45938
45938
45939
45939
45940
45940
45941
45941
45942
45942
45943
45943
45944
45944
45945
45945
45946
45946
45947
45947
45948
45948
45949
45949
45950
45950
45951
45951
45952
45952
45953
45953
45954
45954
45955
45955
45956
45956
45957
45957
45958
45958
45959
45959
45960
45960
45961
45961
45962
45962
45963
45963
45964
45964
45965
45965
45966
45966
45967
45967
45968
45968
45969
45969
45970
45970
45971
45971
45972
45972
45973
45973
45974
45974
45975
45975
45976
45976
45977
45977
45978
45978
45979
45979
45980
45980
45981
45981
45982
45982
45983
45983
45984
45984
45985
45985
45986
45986
45987
45987
45988
45988
45989
45989
45990
45990
45991
45991
45992
45992
45993
45993
45994
45994
45995
45995
45996
45996
45997
45997
45998
45998
45999
45999
46000
46000
46001
46001
46002
46002
46003
46003
46004
46004
46005
46005
46006
46006
46007
46007
46008
46008
46009
46009
46010
46010
46011
46011
46012
46012
46013
46013
46014
46014
46015
46015
46016
46016
46017
46017
46018
46018
46019
46019
46020
46020
46021
46021
46022
46022
46023
46023
46024
46024
46025
46025
46026
46026
46027
46027
46028
46028
46029
46029
46030
46030
46031
46031
46032
46032
46033
46033
46034
46034
46035
46035
46036
46036
46037
46037
46038
46038
46039
46039
46040
46040
46041
46041
46042
46042
46043
46043
46044
46044
46045
46045
46046
46046
46047
46047
46048
46048
46049
46049
46050
46050
46051
46051
46052
46052
46053
46053
46054
46054
46055
46055
46056
46056
46057
46057
46058
46058
46059
46059
46060
46060
46061
46061
46062
46062
46063
46063
46064
46064
46065
46065
46066
46066
46067
46067
46068
46068
46069
46069
46070
46070
46071
46071
46072
46072
46073
46073
46074
46074
46075
46075
46076
46076
46077
46077
46078
46078
46079
46079
46080
46080
46081
46081
46082
46082
46083
46083
46084
46084
46085
46085
46086
46086
46087
46087
46088
46088
46089
46089
46090
46090
46091
46091
46092
46092
46093
46093
46094
46094
46095
46095
46096
46096
46097
46097
46098
46098
46099
46099
46100
46100
46101
46101
46102
46102
46103
46103
46104
46104
46105
46105
46106
46106
46107
46107
46108
46108
46109
46109
46110
46110
46111
46111
46112
46112
46113
46113
46114
46114
46115
46115
46116
46116
46117
46117
46118
46118
46119
46119
46120
46120
46121
46121
46122
46122
46123
46123
46124
46124
46125
46125
46126
46126
46127
46127
46128
46128
46129
46129
46130
46130
46131
46131
46132
46132
46133
46133
46134
46134
46135
46135
46136
46136
46137
46137
46138
46138
46139
46139
46140
46140
46141
46141
46142
46142
46143
46143
46144
46144
46145
46145
46146
46146
46147
46147
46148
46148
46149
46149
46150
46150
46151
46151
46152
46152
46153
46153
46154
46154
46155
46155
46156
46156
46157
46157
46158
46158
46159
46159
46160
46160
46161
46161
46162
46162
46163
46163
46164
46164
46165
46165
46166
46166
46167
46167
46168
46168
46169
46169
46170
46170
46171
46171
46172
46172
46173
46173
46174
46174
46175
46175
46176
46176
46177
46177
46178
46178
46179
46179
46180
46180
46181
46181
46182
46182
46183
46183
46184
46184
46185
46185
46186
46186
46187
46187
46188
46188
46189
46189
46190
46190
46191
46191
46192
46192
46193
46193
46194
46194
46195
46195
46196
46196
46197
46197
46198
46198
46199
46199
46200
46200
46201
46201
46202
46202
46203
46203
46204
46204
46205
46205
46206
46206
46207
46207
46208
46208
46209
46209
46210
46210
46211
46211
46212
46212
46213
46213
46214
46214
46215
46215
46216
46216
46217
46217
46218
46218
46219
46219
46220
46220
46221
46221
46222
46222
46223
46223
46224
46224
46225
46225
46226
46226
46227
46227
46228
46228
46229
46229
46230
46230
46231
46231
46232
46232
46233
46233
46234
46234
46235
46235
46236
46236
46237
46237
46238
46238
46239
46239
46240
46240
46241
46241
46242
46242
46243
46243
46244
46244
46245
46245
46246
46246
46247
46247
46248
46248
46249
46249
46250
46250
46251
46251
46252
46252
46253
46253
46254
46254
46255
46255
46256
46256
46257
46257
46258
46258
46259
46259
46260
46260
46261
46261
46262
46262
46263
46263
46264
46264
46265
46265
46266
46266
46267
46267
46268
46268
46269
46269
46270
46270
46271
46271
46272
46272
46273
46273
46274
46274
46275
46275
46276
46276
46277
46277
46278
46278
46279
46279
46280
46280
46281
46281
46282
46282
46283
46283
46284
46284
46285
46285
46286
46286
46287
46287
46288
46288
46289
46289
46290
46290
46291
46291
46292
46292
46293
46293
46294
46294
46295
46295
46296
46296
46297
46297
46298
46298
46299
46299
46300
46300
46301
46301
46302
46302
46303
46303
46304
46304
46305
46305
46306
46306
46307
46307
46308
46308
46309
46309
46310
46310
46311
46311
46312
46312
46313
46313
46314
46314
46315
46315
46316
46316
46317
46317
46318
46318
46319
46319
46320
46320
46321
46321
46322
46322
46323
46323
46324
46324
46325
46325
46326
46326
46327
46327
46328
46328
46329
46329
46330
46330
46331
46331
46332
46332
46333
46333
46334
46334
46335
46335
46336
46336
46337
46337
46338
46338
46339
46339
46340
46340
46341
46341
46342
46342
46343
46343
46344
46344
46345
46345
46346
46346
46347
46347
46348
46348
46349
46349
46350
46350
46351
46351
46352
46352
46353
46353
46354
46354
46355
46355
46356
46356
46357
46357
46358
46358
46359
46359
46360
46360
46361
46361
46362
46362
46363
46363
46364
46364
46365
46365
46366
46366
46367
46367
46368
46368
46369
46369
46370
46370
46371
46371
46372
46372
46373
46373
46374
46374
46375
46375
46376
46376
46377
46377
46378
46378
46379
46379
46380
46380
46381
46381
46382
46382
46383
46383
46384
46384
46385
46385
46386
46386
46387
46387
46388
46388
46389
46389
46390
46390
46391
46391
46392
46392
46393
46393
46394
46394
46395
46395
46396
46396
46397
46397
46398
46398
46399
46399
46400
46400
46401
46401
46402
46402
46403
46403
46404
46404
46405
46405
46406
46406
46407
46407
46408
46408
46409
46409
46410
46410
46411
46411
46412
46412
46413
46413
46414
46414
46415
46415
46416
46416
46417
46417
46418
46418
46419
46419
46420
46420
46421
46421
46422
46422
46423
46423
46424
46424
46425
46425
46426
46426
46427
46427
46428
46428
46429
46429
46430
46430
46431
46431
46432
46432
46433
46433
46434
46434
46435
46435
46436
46436
46437
46437
46438
46438
46439
46439
46440
46440
46441
46441
46442
46442
46443
46443
46444
46444
46445
46445
46446
46446
46447
46447
46448
46448
46449
46449
46450
46450
46451
46451
46452
46452
46453
46453
46454
46454
46455
46455
46456
46456
46457
46457
46458
46458
46459
46459
46460
46460
46461
46461
46462
46462
46463
46463
46464
46464
46465
46465
46466
46466
46467
46467
46468
46468
46469
46469
46470
46470
46471
46471
46472
46472
46473
46473
46474
46474
46475
46475
46476
46476
46477
46477
46478
46478
46479
46479
46480
46480
46481
46481
46482
46482
46483
46483
46484
46484
46485
46485
46486
46486
46487
46487
46488
46488
46489
46489
46490
46490
46491
46491
46492
46492
46493
46493
46494
46494
46495
46495
46496
46496
46497
46497
46498
46498
46499
46499
46500
46500
46501
46501
46502
46502
46503
46503
46504
46504
46505
46505
46506
46506
46507
46507
46508
46508
46509
46509
46510
46510
46511
46511
46512
46512
46513
46513
46514
46514
46515
46515
46516
46516
46517
46517
46518
46518
46519
46519
46520
46520
46521
46521
46522
46522
46523
46523
46524
46524
46525
46525
46526
46526
46527
46527
46528
46528
46529
46529
46530
46530
46531
46531
46532
46532
46533
46533
46534
46534
46535
46535
46536
46536
46537
46537
46538
46538
46539
46539
46540
46540
46541
46541
46542
46542
46543
46543
46544
46544
46545
46545
46546
46546
46547
46547
46548
46548
46549
46549
46550
46550
46551
46551
46552
46552
46553
46553
46554
46554
46555
46555
46556
46556
46557
46557
46558
46558
46559
46559
46560
46560
46561
46561
46562
46562
46563
46563
46564
46564
46565
46565
46566
46566
46567
46567
46568
46568
46569
46569
46570
46570
46571
46571
46572
46572
46573
46573
46574
46574
46575
46575
46576
46576
46577
46577
46578
46578
46579
46579
46580
46580
46581
46581
46582
46582
46583
46583
46584
46584
46585
46585
46586
46586
46587
46587
46588
46588
46589
46589
46590
46590
46591
46591
46592
46592
46593
46593
46594
46594
46595
46595
46596
46596
46597
46597
46598
46598
46599
46599
46600
46600
46601
46601
46602
46602
46603
46603
46604
46604
46605
46605
46606
46606
46607
46607
46608
46608
46609
46609
46610
46610
46611
46611
46612
46612
46613
46613
46614
46614
46615
46615
46616
46616
46617
46617
46618
46618
46619
46619
46620
46620
46621
46621
46622
46622
46623
46623
46624
46624
46625
46625
46626
46626
46627
46627
46628
46628
46629
46629
46630
46630
46631
46631
46632
46632
46633
46633
46634
46634
46635
46635
46636
46636
46637
46637
46638
46638
46639
46639
46640
46640
46641
46641
46642
46642
46643
46643
46644
46644
46645
46645
46646
46646
46647
46647
46648
46648
46649
46649
46650
46650
46651
46651
46652
46652
46653
46653
46654
46654
46655
46655
46656
46656
46657
46657
46658
46658
46659
46659
46660
46660
46661
46661
46662
46662
46663
46663
46664
46664
46665
46665
46666
46666
46667
46667
46668
46668
46669
46669
46670
46670
46671
46671
46672
46672
46673
46673
46674
46674
46675
46675
46676
46676
46677
46677
46678
46678
46679
46679
46680
46680
46681
46681
46682
46682
46683
46683
46684
46684
46685
46685
46686
46686
46687
46687
46688
46688
46689
46689
46690
46690
46691
46691
46692
46692
46693
46693
46694
46694
46695
46695
46696
46696
46697
46697
46698
46698
46699
46699
46700
46700
46701
46701
46702
46702
46703
46703
46704
46704
46705
46705
46706
46706
46707
46707
46708
46708
46709
46709
46710
46710
46711
46711
46712
46712
46713
46713
46714
46714
46715
46715
46716
46716
46717
46717
46718
46718
46719
46719
46720
46720
46721
46721
46722
46722
46723
46723
46724
46724
46725
46725
46726
46726
46727
46727
46728
46728
46729
46729
46730
46730
46731
46731
46732
46732
46733
46733
46734
46734
46735
46735
46736
46736
46737
46737
46738
46738
46739
46739
46740
46740
46741
46741
46742
46742
46743
46743
46744
46744
46745
46745
46746
46746
46747
46747
46748
46748
46749
46749
46750
46750
46751
46751
46752
46752
46753
46753
46754
46754
46755
46755
46756
46756
46757
46757
46758
46758
46759
46759
46760
46760
46761
46761
46762
46762
46763
46763
46764
46764
46765
46765
46766
46766
46767
46767
46768
46768
46769
46769
46770
46770
46771
46771
46772
46772
46773
46773
46774
46774
46775
46775
46776
46776
46777
46777
46778
46778
46779
46779
46780
46780
46781
46781
46782
46782
46783
46783
46784
46784
46785
46785
46786
46786
46787
46787
46788
46788
46789
46789
46790
46790
46791
46791
46792
46792
46793
46793
46794
46794
46795
46795
46796
46796
46797
46797
46798
46798
46799
46799
46800
46800
46801
46801
46802
46802
46803
46803
46804
46804
46805
46805
46806
46806
46807
46807
46808
46808
46809
46809
46810
46810
46811
46811
46812
46812
46813
46813
46814
46814
46815
46815
46816
46816
46817
46817
46818
46818
46819
46819
46820
46820
46821
46821
46822
46822
46823
46823
46824
46824
46825
46825
46826
46826
46827
46827
46828
46828
46829
46829
46830
46830
46831
46831
46832
46832
46833
46833
46834
46834
46835
46835
46836
46836
46837
46837
46838
46838
46839
46839
46840
46840
46841
46841
46842
46842
46843
46843
46844
46844
46845
46845
46846
46846
46847
46847
46848
46848
46849
46849
46850
46850
46851
46851
46852
46852
46853
46853
46854
46854
46855
46855
46856
46856
46857
46857
46858
46858
46859
46859
46860
46860
46861
46861
46862
46862
46863
46863
46864
46864
46865
46865
46866
46866
46867
46867
46868
46868
46869
46869
46870
46870
46871
46871
46872
46872
46873
46873
46874
46874
46875
46875
46876
46876
46877
46877
46878
46878
46879
46879
46880
46880
46881
46881
46882
46882
46883
46883
46884
46884
46885
46885
46886
46886
46887
46887
46888
46888
46889
46889
46890
46890
46891
46891
46892
46892
46893
46893
46894
46894
46895
46895
46896
46896
46897
46897
46898
46898
46899
46899
46900
46900
46901
46901
46902
46902
46903
46903
46904
46904
46905
46905
46906
46906
46907
46907
46908
46908
46909
46909
46910
46910
46911
46911
46912
46912
46913
46913
46914
46914
46915
46915
46916
46916
46917
46917
46918
46918
46919
46919
46920
46920
46921
46921
46922
46922
46923
46923
46924
46924
46925
46925
46926
46926
46927
46927
46928
46928
46929
46929
46930
46930
46931
46931
46932
46932
46933
46933
46934
46934
46935
46935
46936
46936
46937
46937
46938
46938
46939
46939
46940
46940
46941
46941
46942
46942
46943
46943
46944
46944
46945
46945
46946
46946
46947
46947
46948
46948
46949
46949
46950
46950
46951
46951
46952
46952
46953
46953
46954
46954
46955
46955
46956
46956
46957
46957
46958
46958
46959
46959
46960
46960
46961
46961
46962
46962
46963
46963
46964
46964
46965
46965
46966
46966
46967
46967
46968
46968
46969
46969
46970
46970
46971
46971
46972
46972
46973
46973
46974
46974
46975
46975
46976
46976
46977
46977
46978
46978
46979
46979
46980
46980
46981
46981
46982
46982
46983
46983
46984
46984
46985
46985
46986
46986
46987
46987
46988
46988
46989
46989
46990
46990
46991
46991
46992
46992
46993
46993
46994
46994
46995
46995
46996
46996
46997
46997
46998
46998
46999
46999
47000
47000
47001
47001
47002
47002
47003
47003
47004
47004
47005
47005
47006
47006
47007
47007
47008
47008
47009
47009
47010
47010
47011
47011
47012
47012
47013
47013
47014
47014
47015
47015
47016
47016
47017
47017
47018
47018
47019
47019
47020
47020
47021
47021
47022
47022
47023
47023
47024
47024
47025
47025
47026
47026
47027
47027
47028
47028
47029
47029
47030
47030
47031
47031
47032
47032
47033
47033
47034
47034
47035
47035
47036
47036
47037
47037
47038
47038
47039
47039
47040
47040
47041
47041
47042
47042
47043
47043
47044
47044
47045
47045
47046
47046
47047
47047
47048
47048
47049
47049
47050
47050
47051
47051
47052
47052
47053
47053
47054
47054
47055
47055
47056
47056
47057
47057
47058
47058
47059
47059
47060
47060
47061
47061
47062
47062
47063
47063
47064
47064
47065
47065
47066
47066
47067
47067
47068
47068
47069
47069
47070
47070
47071
47071
47072
47072
47073
47073
47074
47074
47075
47075
47076
47076
47077
47077
47078
47078
47079
47079
47080
47080
47081
47081
47082
47082
47083
47083
47084
47084
47085
47085
47086
47086
47087
47087
47088
47088
47089
47089
47090
47090
47091
47091
47092
47092
47093
47093
47094
47094
47095
47095
47096
47096
47097
47097
47098
47098
47099
47099
47100
47100
47101
47101
47102
47102
47103
47103
47104
47104
47105
47105
47106
47106
47107
47107
47108
47108
47109
47109
47110
47110
47111
47111
47112
47112
47113
47113
47114
47114
47115
47115
47116
47116
47117
47117
47118
47118
47119
47119
47120
47120
47121
47121
47122
47122
47123
47123
47124
47124
47125
47125
47126
47126
47127
47127
47128
47128
47129
47129
47130
47130
47131
47131
47132
47132
47133
47133
47134
47134
47135
47135
47136
47136
47137
47137
47138
47138
47139
47139
47140
47140
47141
47141
47142
47142
47143
47143
47144
47144
47145
47145
47146
47146
47147
47147
47148
47148
47149
47149
47150
47150
47151
47151
47152
47152
47153
47153
47154
47154
47155
47155
47156
47156
47157
47157
47158
47158
47159
47159
47160
47160
47161
47161
47162
47162
47163
47163
47164
47164
47165
47165
47166
47166
47167
47167
47168
47168
47169
47169
47170
47170
47171
47171
47172
47172
47173
47173
47174
47174
47175
47175
47176
47176
47177
47177
47178
47178
47179
47179
47180
47180
47181
47181
47182
47182
47183
47183
47184
47184
47185
47185
47186
47186
47187
47187
47188
47188
47189
47189
47190
47190
47191
47191
47192
47192
47193
47193
47194
47194
47195
47195
47196
47196
47197
47197
47198
47198
47199
47199
47200
47200
47201
47201
47202
47202
47203
47203
47204
47204
47205
47205
47206
47206
47207
47207
47208
47208
47209
47209
47210
47210
47211
47211
47212
47212
47213
47213
47214
47214
47215
47215
47216
47216
47217
47217
47218
47218
47219
47219
47220
47220
47221
47221
47222
47222
47223
47223
47224
47224
47225
47225
47226
47226
47227
47227
47228
47228
47229
47229
47230
47230
47231
47231
47232
47232
47233
47233
47234
47234
47235
47235
47236
47236
47237
47237
47238
47238
47239
47239
47240
47240
47241
47241
47242
47242
47243
47243
47244
47244
47245
47245
47246
47246
47247
47247
47248
47248
47249
47249
47250
47250
47251
47251
47252
47252
47253
47253
47254
47254
47255
47255
47256
47256
47257
47257
47258
47258
47259
47259
47260
47260
47261
47261
47262
47262
47263
47263
47264
47264
47265
47265
47266
47266
47267
47267
47268
47268
47269
47269
47270
47270
47271
47271
47272
47272
47273
47273
47274
47274
47275
47275
47276
47276
47277
47277
47278
47278
47279
47279
47280
47280
47281
47281
47282
47282
47283
47283
47284
47284
47285
47285
47286
47286
47287
47287
47288
47288
47289
47289
47290
47290
47291
47291
47292
47292
47293
47293
47294
47294
47295
47295
47296
47296
47297
47297
47298
47298
47299
47299
47300
47300
47301
47301
47302
47302
47303
47303
47304
47304
47305
47305
47306
47306
47307
47307
47308
47308
47309
47309
47310
47310
47311
47311
47312
47312
47313
47313
47314
47314
47315
47315
47316
47316
47317
47317
47318
47318
47319
47319
47320
47320
47321
47321
47322
47322
47323
47323
47324
47324
47325
47325
47326
47326
47327
47327
47328
47328
47329
47329
47330
47330
47331
47331
47332
47332
47333
47333
47334
47334
47335
47335
47336
47336
47337
47337
47338
47338
47339
47339
47340
47340
47341
47341
47342
47342
47343
47343
47344
47344
47345
47345
47346
47346
47347
47347
47348
47348
47349
47349
47350
47350
47351
47351
47352
47352
47353
47353
47354
47354
47355
47355
47356
47356
47357
47357
47358
47358
47359
47359
47360
47360
47361
47361
47362
47362
47363
47363
47364
47364
47365
47365
47366
47366
47367
47367
47368
47368
47369
47369
47370
47370
47371
47371
47372
47372
47373
47373
47374
47374
47375
47375
47376
47376
47377
47377
47378
47378
47379
47379
47380
47380
47381
47381
47382
47382
47383
47383
47384
47384
47385
47385
47386
47386
47387
47387
47388
47388
47389
47389
47390
47390
47391
47391
47392
47392
47393
47393
47394
47394
47395
47395
47396
47396
47397
47397
47398
47398
47399
47399
47400
47400
47401
47401
47402
47402
47403
47403
47404
47404
47405
47405
47406
47406
47407
47407
47408
47408
47409
47409
47410
47410
47411
47411
47412
47412
47413
47413
47414
47414
47415
47415
47416
47416
47417
47417
47418
47418
47419
47419
47420
47420
47421
47421
47422
47422
47423
47423
47424
47424
47425
47425
47426
47426
47427
47427
47428
47428
47429
47429
47430
47430
47431
47431
47432
47432
47433
47433
47434
47434
47435
47435
47436
47436
47437
47437
47438
47438
47439
47439
47440
47440
47441
47441
47442
47442
47443
47443
47444
47444
47445
47445
47446
47446
47447
47447
47448
47448
47449
47449
47450
47450
47451
47451
47452
47452
47453
47453
47454
47454
47455
47455
47456
47456
47457
47457
47458
47458
47459
47459
47460
47460
47461
47461
47462
47462
47463
47463
47464
47464
47465
47465
47466
47466
47467
47467
47468
47468
47469
47469
47470
47470
47471
47471
47472
47472
47473
47473
47474
47474
47475
47475
47476
47476
47477
47477
47478
47478
47479
47479
47480
47480
47481
47481
47482
47482
47483
47483
47484
47484
47485
47485
47486
47486
47487
47487
47488
47488
47489
47489
47490
47490
47491
47491
47492
47492
47493
47493
47494
47494
47495
47495
47496
47496
47497
47497
47498
47498
47499
47499
47500
47500
47501
47501
47502
47502
47503
47503
47504
47504
47505
47505
47506
47506
47507
47507
47508
47508
47509
47509
47510
47510
47511
47511
47512
47512
47513
47513
47514
47514
47515
47515
47516
47516
47517
47517
47518
47518
47519
47519
47520
47520
47521
47521
47522
47522
47523
47523
47524
47524
47525
47525
47526
47526
47527
47527
47528
47528
47529
47529
47530
47530
47531
47531
47532
47532
47533
47533
47534
47534
47535
47535
47536
47536
47537
47537
47538
47538
47539
47539
47540
47540
47541
47541
47542
47542
47543
47543
47544
47544
47545
47545
47546
47546
47547
47547
47548
47548
47549
47549
47550
47550
47551
47551
47552
47552
47553
47553
47554
47554
47555
47555
47556
47556
47557
47557
47558
47558
47559
47559
47560
47560
47561
47561
47562
47562
47563
47563
47564
47564
47565
47565
47566
47566
47567
47567
47568
47568
47569
47569
47570
47570
47571
47571
47572
47572
47573
47573
47574
47574
47575
47575
47576
47576
47577
47577
47578
47578
47579
47579
47580
47580
47581
47581
47582
47582
47583
47583
47584
47584
47585
47585
47586
47586
47587
47587
47588
47588
47589
47589
47590
47590
47591
47591
47592
47592
47593
47593
47594
47594
47595
47595
47596
47596
47597
47597
47598
47598
47599
47599
47600
47600
47601
47601
47602
47602
47603
47603
47604
47604
47605
47605
47606
47606
47607
47607
47608
47608
47609
47609
47610
47610
47611
47611
47612
47612
47613
47613
47614
47614
47615
47615
47616
47616
47617
47617
47618
47618
47619
47619
47620
47620
47621
47621
47622
47622
47623
47623
47624
47624
47625
47625
47626
47626
47627
47627
47628
47628
47629
47629
47630
47630
47631
47631
47632
47632
47633
47633
47634
47634
47635
47635
47636
47636
47637
47637
47638
47638
47639
47639
47640
47640
47641
47641
47642
47642
47643
47643
47644
47644
47645
47645
47646
47646
47647
47647
47648
47648
47649
47649
47650
47650
47651
47651
47652
47652
47653
47653
47654
47654
47655
47655
47656
47656
47657
47657
47658
47658
47659
47659
47660
47660
47661
47661
47662
47662
47663
47663
47664
47664
47665
47665
47666
47666
47667
47667
47668
47668
47669
47669
47670
47670
47671
47671
47672
47672
47673
47673
47674
47674
47675
47675
47676
47676
47677
47677
47678
47678
47679
47679
47680
47680
47681
47681
47682
47682
47683
47683
47684
47684
47685
47685
47686
47686
47687
47687
47688
47688
47689
47689
47690
47690
47691
47691
47692
47692
47693
47693
47694
47694
47695
47695
47696
47696
47697
47697
47698
47698
47699
47699
47700
47700
47701
47701
47702
47702
47703
47703
47704
47704
47705
47705
47706
47706
47707
47707
47708
47708
47709
47709
47710
47710
47711
47711
47712
47712
47713
47713
47714
47714
47715
47715
47716
47716
47717
47717
47718
47718
47719
47719
47720
47720
47721
47721
47722
47722
47723
47723
47724
47724
47725
47725
47726
47726
47727
47727
47728
47728
47729
47729
47730
47730
47731
47731
47732
47732
47733
47733
47734
47734
47735
47735
47736
47736
47737
47737
47738
47738
47739
47739
47740
47740
47741
47741
47742
47742
47743
47743
47744
47744
47745
47745
47746
47746
47747
47747
47748
47748
47749
47749
47750
47750
47751
47751
47752
47752
47753
47753
47754
47754
47755
47755
47756
47756
47757
47757
47758
47758
47759
47759
47760
47760
47761
47761
47762
47762
47763
47763
47764
47764
47765
47765
47766
47766
47767
47767
47768
47768
47769
47769
47770
47770
47771
47771
47772
47772
47773
47773
47774
47774
47775
47775
47776
47776
47777
47777
47778
47778
47779
47779
47780
47780
47781
47781
47782
47782
47783
47783
47784
47784
47785
47785
47786
47786
47787
47787
47788
47788
47789
47789
47790
47790
47791
47791
47792
47792
47793
47793
47794
47794
47795
47795
47796
47796
47797
47797
47798
47798
47799
47799
47800
47800
47801
47801
47802
47802
47803
47803
47804
47804
47805
47805
47806
47806
47807
47807
47808
47808
47809
47809
47810
47810
47811
47811
47812
47812
47813
47813
47814
47814
47815
47815
47816
47816
47817
47817
47818
47818
47819
47819
47820
47820
47821
47821
47822
47822
47823
47823
47824
47824
47825
47825
47826
47826
47827
47827
47828
47828
47829
47829
47830
47830
47831
47831
47832
47832
47833
47833
47834
47834
47835
47835
47836
47836
47837
47837
47838
47838
47839
47839
47840
47840
47841
47841
47842
47842
47843
47843
47844
47844
47845
47845
47846
47846
47847
47847
47848
47848
47849
47849
47850
47850
47851
47851
47852
47852
47853
47853
47854
47854
47855
47855
47856
47856
47857
47857
47858
47858
47859
47859
47860
47860
47861
47861
47862
47862
47863
47863
47864
47864
47865
47865
47866
47866
47867
47867
47868
47868
47869
47869
47870
47870
47871
47871
47872
47872
47873
47873
47874
47874
47875
47875
47876
47876
47877
47877
47878
47878
47879
47879
47880
47880
47881
47881
47882
47882
47883
47883
47884
47884
47885
47885
47886
47886
47887
47887
47888
47888
47889
47889
47890
47890
47891
47891
47892
47892
47893
47893
47894
47894
47895
47895
47896
47896
47897
47897
47898
47898
47899
47899
47900
47900
47901
47901
47902
47902
47903
47903
47904
47904
47905
47905
47906
47906
47907
47907
47908
47908
47909
47909
47910
47910
47911
47911
47912
47912
47913
47913
47914
47914
47915
47915
47916
47916
47917
47917
47918
47918
47919
47919
47920
47920
47921
47921
47922
47922
47923
47923
47924
47924
47925
47925
47926
47926
47927
47927
47928
47928
47929
47929
47930
47930
47931
47931
47932
47932
47933
47933
47934
47934
47935
47935
47936
47936
47937
47937
47938
47938
47939
47939
47940
47940
47941
47941
47942
47942
47943
47943
47944
47944
47945
47945
47946
47946
47947
47947
47948
47948
47949
47949
47950
47950
47951
47951
47952
47952
47953
47953
47954
47954
47955
47955
47956
47956
47957
47957
47958
47958
47959
47959
47960
47960
47961
47961
47962
47962
47963
47963
47964
47964
47965
47965
47966
47966
47967
47967
47968
47968
47969
47969
47970
47970
47971
47971
47972
47972
47973
47973
47974
47974
47975
47975
47976
47976
47977
47977
47978
47978
47979
47979
47980
47980
47981
47981
47982
47982
47983
47983
47984
47984
47985
47985
47986
47986
47987
47987
47988
47988
47989
47989
47990
47990
47991
47991
47992
47992
47993
47993
47994
47994
47995
47995
47996
47996
47997
47997
47998
47998
47999
47999
48000
48000
48001
48001
48002
48002
48003
48003
48004
48004
48005
48005
48006
48006
48007
48007
48008
48008
48009
48009
48010
48010
48011
48011
48012
48012
48013
48013
48014
48014
48015
48015
48016
48016
48017
48017
48018
48018
48019
48019
48020
48020
48021
48021
48022
48022
48023
48023
48024
48024
48025
48025
48026
48026
48027
48027
48028
48028
48029
48029
48030
48030
48031
48031
48032
48032
48033
48033
48034
48034
48035
48035
48036
48036
48037
48037
48038
48038
48039
48039
48040
48040
48041
48041
48042
48042
48043
48043
48044
48044
48045
48045
48046
48046
48047
48047
48048
48048
48049
48049
48050
48050
48051
48051
48052
48052
48053
48053
48054
48054
48055
48055
48056
48056
48057
48057
48058
48058
48059
48059
48060
48060
48061
48061
48062
48062
48063
48063
48064
48064
48065
48065
48066
48066
48067
48067
48068
48068
48069
48069
48070
48070
48071
48071
48072
48072
48073
48073
48074
48074
48075
48075
48076
48076
48077
48077
48078
48078
48079
48079
48080
48080
48081
48081
48082
48082
48083
48083
48084
48084
48085
48085
48086
48086
48087
48087
48088
48088
48089
48089
48090
48090
48091
48091
48092
48092
48093
48093
48094
48094
48095
48095
48096
48096
48097
48097
48098
48098
48099
48099
48100
48100
48101
48101
48102
48102
48103
48103
48104
48104
48105
48105
48106
48106
48107
48107
48108
48108
48109
48109
48110
48110
48111
48111
48112
48112
48113
48113
48114
48114
48115
48115
48116
48116
48117
48117
48118
48118
48119
48119
48120
48120
48121
48121
48122
48122
48123
48123
48124
48124
48125
48125
48126
48126
48127
48127
48128
48128
48129
48129
48130
48130
48131
48131
48132
48132
48133
48133
48134
48134
48135
48135
48136
48136
48137
48137
48138
48138
48139
48139
48140
48140
48141
48141
48142
48142
48143
48143
48144
48144
48145
48145
48146
48146
48147
48147
48148
48148
48149
48149
48150
48150
48151
48151
48152
48152
48153
48153
48154
48154
48155
48155
48156
48156
48157
48157
48158
48158
48159
48159
48160
48160
48161
48161
48162
48162
48163
48163
48164
48164
48165
48165
48166
48166
48167
48167
48168
48168
48169
48169
48170
48170
48171
48171
48172
48172
48173
48173
48174
48174
48175
48175
48176
48176
48177
48177
48178
48178
48179
48179
48180
48180
48181
48181
48182
48182
48183
48183
48184
48184
48185
48185
48186
48186
48187
48187
48188
48188
48189
48189
48190
48190
48191
48191
48192
48192
48193
48193
48194
48194
48195
48195
48196
48196
48197
48197
48198
48198
48199
48199
48200
48200
48201
48201
48202
48202
48203
48203
48204
48204
48205
48205
48206
48206
48207
48207
48208
48208
48209
48209
48210
48210
48211
48211
48212
48212
48213
48213
48214
48214
48215
48215
48216
48216
48217
48217
48218
48218
48219
48219
48220
48220
48221
48221
48222
48222
48223
48223
48224
48224
48225
48225
48226
48226
48227
48227
48228
48228
48229
48229
48230
48230
48231
48231
48232
48232
48233
48233
48234
48234
48235
48235
48236
48236
48237
48237
48238
48238
48239
48239
48240
48240
48241
48241
48242
48242
48243
48243
48244
48244
48245
48245
48246
48246
48247
48247
48248
48248
48249
48249
48250
48250
48251
48251
48252
48252
48253
48253
48254
48254
48255
48255
48256
48256
48257
48257
48258
48258
48259
48259
48260
48260
48261
48261
48262
48262
48263
48263
48264
48264
48265
48265
48266
48266
48267
48267
48268
48268
48269
48269
48270
48270
48271
48271
48272
48272
48273
48273
48274
48274
48275
48275
48276
48276
48277
48277
48278
48278
48279
48279
48280
48280
48281
48281
48282
48282
48283
48283
48284
48284
48285
48285
48286
48286
48287
48287
48288
48288
48289
48289
48290
48290
48291
48291
48292
48292
48293
48293
48294
48294
48295
48295
48296
48296
48297
48297
48298
48298
48299
48299
48300
48300
48301
48301
48302
48302
48303
48303
48304
48304
48305
48305
48306
48306
48307
48307
48308
48308
48309
48309
48310
48310
48311
48311
48312
48312
48313
48313
48314
48314
48315
48315
48316
48316
48317
48317
48318
48318
48319
48319
48320
48320
48321
48321
48322
48322
48323
48323
48324
48324
48325
48325
48326
48326
48327
48327
48328
48328
48329
48329
48330
48330
48331
48331
48332
48332
48333
48333
48334
48334
48335
48335
48336
48336
48337
48337
48338
48338
48339
48339
48340
48340
48341
48341
48342
48342
48343
48343
48344
48344
48345
48345
48346
48346
48347
48347
48348
48348
48349
48349
48350
48350
48351
48351
48352
48352
48353
48353
48354
48354
48355
48355
48356
48356
48357
48357
48358
48358
48359
48359
48360
48360
48361
48361
48362
48362
48363
48363
48364
48364
48365
48365
48366
48366
48367
48367
48368
48368
48369
48369
48370
48370
48371
48371
48372
48372
48373
48373
48374
48374
48375
48375
48376
48376
48377
48377
48378
48378
48379
48379
48380
48380
48381
48381
48382
48382
48383
48383
48384
48384
48385
48385
48386
48386
48387
48387
48388
48388
48389
48389
48390
48390
48391
48391
48392
48392
48393
48393
48394
48394
48395
48395
48396
48396
48397
48397
48398
48398
48399
48399
48400
48400
48401
48401
48402
48402
48403
48403
48404
48404
48405
48405
48406
48406
48407
48407
48408
48408
48409
48409
48410
48410
48411
48411
48412
48412
48413
48413
48414
48414
48415
48415
48416
48416
48417
48417
48418
48418
48419
48419
48420
48420
48421
48421
48422
48422
48423
48423
48424
48424
48425
48425
48426
48426
48427
48427
48428
48428
48429
48429
48430
48430
48431
48431
48432
48432
48433
48433
48434
48434
48435
48435
48436
48436
48437
48437
48438
48438
48439
48439
48440
48440
48441
48441
48442
48442
48443
48443
48444
48444
48445
48445
48446
48446
48447
48447
48448
48448
48449
48449
48450
48450
48451
48451
48452
48452
48453
48453
48454
48454
48455
48455
48456
48456
48457
48457
48458
48458
48459
48459
48460
48460
48461
48461
48462
48462
48463
48463
48464
48464
48465
48465
48466
48466
48467
48467
48468
48468
48469
48469
48470
48470
48471
48471
48472
48472
48473
48473
48474
48474
48475
48475
48476
48476
48477
48477
48478
48478
48479
48479
48480
48480
48481
48481
48482
48482
48483
48483
48484
48484
48485
48485
48486
48486
48487
48487
48488
48488
48489
48489
48490
48490
48491
48491
48492
48492
48493
48493
48494
48494
48495
48495
48496
48496
48497
48497
48498
48498
48499
48499
48500
48500
48501
48501
48502
48502
48503
48503
48504
48504
48505
48505
48506
48506
48507
48507
48508
48508
48509
48509
48510
48510
48511
48511
48512
48512
48513
48513
48514
48514
48515
48515
48516
48516
48517
48517
48518
48518
48519
48519
48520
48520
48521
48521
48522
48522
48523
48523
48524
48524
48525
48525
48526
48526
48527
48527
48528
48528
48529
48529
48530
48530
48531
48531
48532
48532
48533
48533
48534
48534
48535
48535
48536
48536
48537
48537
48538
48538
48539
48539
48540
48540
48541
48541
48542
48542
48543
48543
48544
48544
48545
48545
48546
48546
48547
48547
48548
48548
48549
48549
48550
48550
48551
48551
48552
48552
48553
48553
48554
48554
48555
48555
48556
48556
48557
48557
48558
48558
48559
48559
48560
48560
48561
48561
48562
48562
48563
48563
48564
48564
48565
48565
48566
48566
48567
48567
48568
48568
48569
48569
48570
48570
48571
48571
48572
48572
48573
48573
48574
48574
48575
48575
48576
48576
48577
48577
48578
48578
48579
48579
48580
48580
48581
48581
48582
48582
48583
48583
48584
48584
48585
48585
48586
48586
48587
48587
48588
48588
48589
48589
48590
48590
48591
48591
48592
48592
48593
48593
48594
48594
48595
48595
48596
48596
48597
48597
48598
48598
48599
48599
48600
48600
48601
48601
48602
48602
48603
48603
48604
48604
48605
48605
48606
48606
48607
48607
48608
48608
48609
48609
48610
48610
48611
48611
48612
48612
48613
48613
48614
48614
48615
48615
48616
48616
48617
48617
48618
48618
48619
48619
48620
48620
48621
48621
48622
48622
48623
48623
48624
48624
48625
48625
48626
48626
48627
48627
48628
48628
48629
48629
48630
48630
48631
48631
48632
48632
48633
48633
48634
48634
48635
48635
48636
48636
48637
48637
48638
48638
48639
48639
48640
48640
48641
48641
48642
48642
48643
48643
48644
48644
48645
48645
48646
48646
48647
48647
48648
48648
48649
48649
48650
48650
48651
48651
48652
48652
48653
48653
48654
48654
48655
48655
48656
48656
48657
48657
48658
48658
48659
48659
48660
48660
48661
48661
48662
48662
48663
48663
48664
48664
48665
48665
48666
48666
48667
48667
48668
48668
48669
48669
48670
48670
48671
48671
48672
48672
48673
48673
48674
48674
48675
48675
48676
48676
48677
48677
48678
48678
48679
48679
48680
48680
48681
48681
48682
48682
48683
48683
48684
48684
48685
48685
48686
48686
48687
48687
48688
48688
48689
48689
48690
48690
48691
48691
48692
48692
48693
48693
48694
48694
48695
48695
48696
48696
48697
48697
48698
48698
48699
48699
48700
48700
48701
48701
48702
48702
48703
48703
48704
48704
48705
48705
48706
48706
48707
48707
48708
48708
48709
48709
48710
48710
48711
48711
48712
48712
48713
48713
48714
48714
48715
48715
48716
48716
48717
48717
48718
48718
48719
48719
48720
48720
48721
48721
48722
48722
48723
48723
48724
48724
48725
48725
48726
48726
48727
48727
48728
48728
48729
48729
48730
48730
48731
48731
48732
48732
48733
48733
48734
48734
48735
48735
48736
48736
48737
48737
48738
48738
48739
48739
48740
48740
48741
48741
48742
48742
48743
48743
48744
48744
48745
48745
48746
48746
48747
48747
48748
48748
48749
48749
48750
48750
48751
48751
48752
48752
48753
48753
48754
48754
48755
48755
48756
48756
48757
48757
48758
48758
48759
48759
48760
48760
48761
48761
48762
48762
48763
48763
48764
48764
48765
48765
48766
48766
48767
48767
48768
48768
48769
48769
48770
48770
48771
48771
48772
48772
48773
48773
48774
48774
48775
48775
48776
48776
48777
48777
48778
48778
48779
48779
48780
48780
48781
48781
48782
48782
48783
48783
48784
48784
48785
48785
48786
48786
48787
48787
48788
48788
48789
48789
48790
48790
48791
48791
48792
48792
48793
48793
48794
48794
48795
48795
48796
48796
48797
48797
48798
48798
48799
48799
48800
48800
48801
48801
48802
48802
48803
48803
48804
48804
48805
48805
48806
48806
48807
48807
48808
48808
48809
48809
48810
48810
48811
48811
48812
48812
48813
48813
48814
48814
48815
48815
48816
48816
48817
48817
48818
48818
48819
48819
48820
48820
48821
48821
48822
48822
48823
48823
48824
48824
48825
48825
48826
48826
48827
48827
48828
48828
48829
48829
48830
48830
48831
48831
48832
48832
48833
48833
48834
48834
48835
48835
48836
48836
48837
48837
48838
48838
48839
48839
48840
48840
48841
48841
48842
48842
48843
48843
48844
48844
48845
48845
48846
48846
48847
48847
48848
48848
48849
48849
48850
48850
48851
48851
48852
48852
48853
48853
48854
48854
48855
48855
48856
48856
48857
48857
48858
48858
48859
48859
48860
48860
48861
48861
48862
48862
48863
48863
48864
48864
48865
48865
48866
48866
48867
48867
48868
48868
48869
48869
48870
48870
48871
48871
48872
48872
48873
48873
48874
48874
48875
48875
48876
48876
48877
48877
48878
48878
48879
48879
48880
48880
48881
48881
48882
48882
48883
48883
48884
48884
48885
48885
48886
48886
48887
48887
48888
48888
48889
48889
48890
48890
48891
48891
48892
48892
48893
48893
48894
48894
48895
48895
48896
48896
48897
48897
48898
48898
48899
48899
48900
48900
48901
48901
48902
48902
48903
48903
48904
48904
48905
48905
48906
48906
48907
48907
48908
48908
48909
48909
48910
48910
48911
48911
48912
48912
48913
48913
48914
48914
48915
48915
48916
48916
48917
48917
48918
48918
48919
48919
48920
48920
48921
48921
48922
48922
48923
48923
48924
48924
48925
48925
48926
48926
48927
48927
48928
48928
48929
48929
48930
48930
48931
48931
48932
48932
48933
48933
48934
48934
48935
48935
48936
48936
48937
48937
48938
48938
48939
48939
48940
48940
48941
48941
48942
48942
48943
48943
48944
48944
48945
48945
48946
48946
48947
48947
48948
48948
48949
48949
48950
48950
48951
48951
48952
48952
48953
48953
48954
48954
48955
48955
48956
48956
48957
48957
48958
48958
48959
48959
48960
48960
48961
48961
48962
48962
48963
48963
48964
48964
48965
48965
48966
48966
48967
48967
48968
48968
48969
48969
48970
48970
48971
48971
48972
48972
48973
48973
48974
48974
48975
48975
48976
48976
48977
48977
48978
48978
48979
48979
48980
48980
48981
48981
48982
48982
48983
48983
48984
48984
48985
48985
48986
48986
48987
48987
48988
48988
48989
48989
48990
48990
48991
48991
48992
48992
48993
48993
48994
48994
48995
48995
48996
48996
48997
48997
48998
48998
48999
48999
49000
49000
49001
49001
49002
49002
49003
49003
49004
49004
49005
49005
49006
49006
49007
49007
49008
49008
49009
49009
49010
49010
49011
49011
49012
49012
49013
49013
49014
49014
49015
49015
49016
49016
49017
49017
49018
49018
49019
49019
49020
49020
49021
49021
49022
49022
49023
49023
49024
49024
49025
49025
49026
49026
49027
49027
49028
49028
49029
49029
49030
49030
49031
49031
49032
49032
49033
49033
49034
49034
49035
49035
49036
49036
49037
49037
49038
49038
49039
49039
49040
49040
49041
49041
49042
49042
49043
49043
49044
49044
49045
49045
49046
49046
49047
49047
49048
49048
49049
49049
49050
49050
49051
49051
49052
49052
49053
49053
49054
49054
49055
49055
49056
49056
49057
49057
49058
49058
49059
49059
49060
49060
49061
49061
49062
49062
49063
49063
49064
49064
49065
49065
49066
49066
49067
49067
49068
49068
49069
49069
49070
49070
49071
49071
49072
49072
49073
49073
49074
49074
49075
49075
49076
49076
49077
49077
49078
49078
49079
49079
49080
49080
49081
49081
49082
49082
49083
49083
49084
49084
49085
49085
49086
49086
49087
49087
49088
49088
49089
49089
49090
49090
49091
49091
49092
49092
49093
49093
49094
49094
49095
49095
49096
49096
49097
49097
49098
49098
49099
49099
49100
49100
49101
49101
49102
49102
49103
49103
49104
49104
49105
49105
49106
49106
49107
49107
49108
49108
49109
49109
49110
49110
49111
49111
49112
49112
49113
49113
49114
49114
49115
49115
49116
49116
49117
49117
49118
49118
49119
49119
49120
49120
49121
49121
49122
49122
49123
49123
49124
49124
49125
49125
49126
49126
49127
49127
49128
49128
49129
49129
49130
49130
49131
49131
49132
49132
49133
49133
49134
49134
49135
49135
49136
49136
49137
49137
49138
49138
49139
49139
49140
49140
49141
49141
49142
49142
49143
49143
49144
49144
49145
49145
49146
49146
49147
49147
49148
49148
49149
49149
49150
49150
49151
49151
49152
49152
49153
49153
49154
49154
49155
49155
49156
49156
49157
49157
49158
49158
49159
49159
49160
49160
49161
49161
49162
49162
49163
49163
49164
49164
49165
49165
49166
49166
49167
49167
49168
49168
49169
49169
49170
49170
49171
49171
49172
49172
49173
49173
49174
49174
49175
49175
49176
49176
49177
49177
49178
49178
49179
49179
49180
49180
49181
49181
49182
49182
49183
49183
49184
49184
49185
49185
49186
49186
49187
49187
49188
49188
49189
49189
49190
49190
49191
49191
49192
49192
49193
49193
49194
49194
49195
49195
49196
49196
49197
49197
49198
49198
49199
49199
49200
49200
49201
49201
49202
49202
49203
49203
49204
49204
49205
49205
49206
49206
49207
49207
49208
49208
49209
49209
49210
49210
49211
49211
49212
49212
49213
49213
49214
49214
49215
49215
49216
49216
49217
49217
49218
49218
49219
49219
49220
49220
49221
49221
49222
49222
49223
49223
49224
49224
49225
49225
49226
49226
49227
49227
49228
49228
49229
49229
49230
49230
49231
49231
49232
49232
49233
49233
49234
49234
49235
49235
49236
49236
49237
49237
49238
49238
49239
49239
49240
49240
49241
49241
49242
49242
49243
49243
49244
49244
49245
49245
49246
49246
49247
49247
49248
49248
49249
49249
49250
49250
49251
49251
49252
49252
49253
49253
49254
49254
49255
49255
49256
49256
49257
49257
49258
49258
49259
49259
49260
49260
49261
49261
49262
49262
49263
49263
49264
49264
49265
49265
49266
49266
49267
49267
49268
49268
49269
49269
49270
49270
49271
49271
49272
49272
49273
49273
49274
49274
49275
49275
49276
49276
49277
49277
49278
49278
49279
49279
49280
49280
49281
49281
49282
49282
49283
49283
49284
49284
49285
49285
49286
49286
49287
49287
49288
49288
49289
49289
49290
49290
49291
49291
49292
49292
49293
49293
49294
49294
49295
49295
49296
49296
49297
49297
49298
49298
49299
49299
49300
49300
49301
49301
49302
49302
49303
49303
49304
49304
49305
49305
49306
49306
49307
49307
49308
49308
49309
49309
49310
49310
49311
49311
49312
49312
49313
49313
49314
49314
49315
49315
49316
49316
49317
49317
49318
49318
49319
49319
49320
49320
49321
49321
49322
49322
49323
49323
49324
49324
49325
49325
49326
49326
49327
49327
49328
49328
49329
49329
49330
49330
49331
49331
49332
49332
49333
49333
49334
49334
49335
49335
49336
49336
49337
49337
49338
49338
49339
49339
49340
49340
49341
49341
49342
49342
49343
49343
49344
49344
49345
49345
49346
49346
49347
49347
49348
49348
49349
49349
49350
49350
49351
49351
49352
49352
49353
49353
49354
49354
49355
49355
49356
49356
49357
49357
49358
49358
49359
49359
49360
49360
49361
49361
49362
49362
49363
49363
49364
49364
49365
49365
49366
49366
49367
49367
49368
49368
49369
49369
49370
49370
49371
49371
49372
49372
49373
49373
49374
49374
49375
49375
49376
49376
49377
49377
49378
49378
49379
49379
49380
49380
49381
49381
49382
49382
49383
49383
49384
49384
49385
49385
49386
49386
49387
49387
49388
49388
49389
49389
49390
49390
49391
49391
49392
49392
49393
49393
49394
49394
49395
49395
49396
49396
49397
49397
49398
49398
49399
49399
49400
49400
49401
49401
49402
49402
49403
49403
49404
49404
49405
49405
49406
49406
49407
49407
49408
49408
49409
49409
49410
49410
49411
49411
49412
49412
49413
49413
49414
49414
49415
49415
49416
49416
49417
49417
49418
49418
49419
49419
49420
49420
49421
49421
49422
49422
49423
49423
49424
49424
49425
49425
49426
49426
49427
49427
49428
49428
49429
49429
49430
49430
49431
49431
49432
49432
49433
49433
49434
49434
49435
49435
49436
49436
49437
49437
49438
49438
49439
49439
49440
49440
49441
49441
49442
49442
49443
49443
49444
49444
49445
49445
49446
49446
49447
49447
49448
49448
49449
49449
49450
49450
49451
49451
49452
49452
49453
49453
49454
49454
49455
49455
49456
49456
49457
49457
49458
49458
49459
49459
49460
49460
49461
49461
49462
49462
49463
49463
49464
49464
49465
49465
49466
49466
49467
49467
49468
49468
49469
49469
49470
49470
49471
49471
49472
49472
49473
49473
49474
49474
49475
49475
49476
49476
49477
49477
49478
49478
49479
49479
49480
49480
49481
49481
49482
49482
49483
49483
49484
49484
49485
49485
49486
49486
49487
49487
49488
49488
49489
49489
49490
49490
49491
49491
49492
49492
49493
49493
49494
49494
49495
49495
49496
49496
49497
49497
49498
49498
49499
49499
49500
49500
49501
49501
49502
49502
49503
49503
49504
49504
49505
49505
49506
49506
49507
49507
49508
49508
49509
49509
49510
49510
49511
49511
49512
49512
49513
49513
49514
49514
49515
49515
49516
49516
49517
49517
49518
49518
49519
49519
49520
49520
49521
49521
49522
49522
49523
49523
49524
49524
49525
49525
49526
49526
49527
49527
49528
49528
49529
49529
49530
49530
49531
49531
49532
49532
49533
49533
49534
49534
49535
49535
49536
49536
49537
49537
49538
49538
49539
49539
49540
49540
49541
49541
49542
49542
49543
49543
49544
49544
49545
49545
49546
49546
49547
49547
49548
49548
49549
49549
49550
49550
49551
49551
49552
49552
49553
49553
49554
49554
49555
49555
49556
49556
49557
49557
49558
49558
49559
49559
49560
49560
49561
49561
49562
49562
49563
49563
49564
49564
49565
49565
49566
49566
49567
49567
49568
49568
49569
49569
49570
49570
49571
49571
49572
49572
49573
49573
49574
49574
49575
49575
49576
49576
49577
49577
49578
49578
49579
49579
49580
49580
49581
49581
49582
49582
49583
49583
49584
49584
49585
49585
49586
49586
49587
49587
49588
49588
49589
49589
49590
49590
49591
49591
49592
49592
49593
49593
49594
49594
49595
49595
49596
49596
49597
49597
49598
49598
49599
49599
49600
49600
49601
49601
49602
49602
49603
49603
49604
49604
49605
49605
49606
49606
49607
49607
49608
49608
49609
49609
49610
49610
49611
49611
49612
49612
49613
49613
49614
49614
49615
49615
49616
49616
49617
49617
49618
49618
49619
49619
49620
49620
49621
49621
49622
49622
49623
49623
49624
49624
49625
49625
49626
49626
49627
49627
49628
49628
49629
49629
49630
49630
49631
49631
49632
49632
49633
49633
49634
49634
49635
49635
49636
49636
49637
49637
49638
49638
49639
49639
49640
49640
49641
49641
49642
49642
49643
49643
49644
49644
49645
49645
49646
49646
49647
49647
49648
49648
49649
49649
49650
49650
49651
49651
49652
49652
49653
49653
49654
49654
49655
49655
49656
49656
49657
49657
49658
49658
49659
49659
49660
49660
49661
49661
49662
49662
49663
49663
49664
49664
49665
49665
49666
49666
49667
49667
49668
49668
49669
49669
49670
49670
49671
49671
49672
49672
49673
49673
49674
49674
49675
49675
49676
49676
49677
49677
49678
49678
49679
49679
49680
49680
49681
49681
49682
49682
49683
49683
49684
49684
49685
49685
49686
49686
49687
49687
49688
49688
49689
49689
49690
49690
49691
49691
49692
49692
49693
49693
49694
49694
49695
49695
49696
49696
49697
49697
49698
49698
49699
49699
49700
49700
49701
49701
49702
49702
49703
49703
49704
49704
49705
49705
49706
49706
49707
49707
49708
49708
49709
49709
49710
49710
49711
49711
49712
49712
49713
49713
49714
49714
49715
49715
49716
49716
49717
49717
49718
49718
49719
49719
49720
49720
49721
49721
49722
49722
49723
49723
49724
49724
49725
49725
49726
49726
49727
49727
49728
49728
49729
49729
49730
49730
49731
49731
49732
49732
49733
49733
49734
49734
49735
49735
49736
49736
49737
49737
49738
49738
49739
49739
49740
49740
49741
49741
49742
49742
49743
49743
49744
49744
49745
49745
49746
49746
49747
49747
49748
49748
49749
49749
49750
49750
49751
49751
49752
49752
49753
49753
49754
49754
49755
49755
49756
49756
49757
49757
49758
49758
49759
49759
49760
49760
49761
49761
49762
49762
49763
49763
49764
49764
49765
49765
49766
49766
49767
49767
49768
49768
49769
49769
49770
49770
49771
49771
49772
49772
49773
49773
49774
49774
49775
49775
49776
49776
49777
49777
49778
49778
49779
49779
49780
49780
49781
49781
49782
49782
49783
49783
49784
49784
49785
49785
49786
49786
49787
49787
49788
49788
49789
49789
49790
49790
49791
49791
49792
49792
49793
49793
49794
49794
49795
49795
49796
49796
49797
49797
49798
49798
49799
49799
49800
49800
49801
49801
49802
49802
49803
49803
49804
49804
49805
49805
49806
49806
49807
49807
49808
49808
49809
49809
49810
49810
49811
49811
49812
49812
49813
49813
49814
49814
49815
49815
49816
49816
49817
49817
49818
49818
49819
49819
49820
49820
49821
49821
49822
49822
49823
49823
49824
49824
49825
49825
49826
49826
49827
49827
49828
49828
49829
49829
49830
49830
49831
49831
49832
49832
49833
49833
49834
49834
49835
49835
49836
49836
49837
49837
49838
49838
49839
49839
49840
49840
49841
49841
49842
49842
49843
49843
49844
49844
49845
49845
49846
49846
49847
49847
49848
49848
49849
49849
49850
49850
49851
49851
49852
49852
49853
49853
49854
49854
49855
49855
49856
49856
49857
49857
49858
49858
49859
49859
49860
49860
49861
49861
49862
49862
49863
49863
49864
49864
49865
49865
49866
49866
49867
49867
49868
49868
49869
49869
49870
49870
49871
49871
49872
49872
49873
49873
49874
49874
49875
49875
49876
49876
49877
49877
49878
49878
49879
49879
49880
49880
49881
49881
49882
49882
49883
49883
49884
49884
49885
49885
49886
49886
49887
49887
49888
49888
49889
49889
49890
49890
49891
49891
49892
49892
49893
49893
49894
49894
49895
49895
49896
49896
49897
49897
49898
49898
49899
49899
49900
49900
49901
49901
49902
49902
49903
49903
49904
49904
49905
49905
49906
49906
49907
49907
49908
49908
49909
49909
49910
49910
49911
49911
49912
49912
49913
49913
49914
49914
49915
49915
49916
49916
49917
49917
49918
49918
49919
49919
49920
49920
49921
49921
49922
49922
49923
49923
49924
49924
49925
49925
49926
49926
49927
49927
49928
49928
49929
49929
49930
49930
49931
49931
49932
49932
49933
49933
49934
49934
49935
49935
49936
49936
49937
49937
49938
49938
49939
49939
49940
49940
49941
49941
49942
49942
49943
49943
49944
49944
49945
49945
49946
49946
49947
49947
49948
49948
49949
49949
49950
49951
49952
49953
49954
49955
49956
49957
49958
49959
49960
49961
49962
49963
49964
49965
49966
49967
49968
49969
49970
49971
49972
49973
49974
49975
49976
49977
49978
49979
49980
49981
49982
49983
49984
49985
49986
49987
49988
49989
49990
49991
49992
49993
49994
49995
49996
49997
49998
49999
50000
50001
50002
50003
50004
50005
50006
50007
50008
50009
50010
50011
50012
50013
50014
50015
50016
50017
50018
50019
50020
50021
50022
50023
50024
50025
50026
50027
50028
50029
50030
50031
50032
50033
50034
50035
50036
50037
50038
50039
50040
50041
50042
50043
50044
50045
50046
50047
50048
50049
50050
50051
50052
50053
50054
50055
50056
50057
50058
50059
50060
50061
50062
50063
50064
50065
50066
50067
50068
50069
50070
50071
50072
50073
50074
50075
50076
50077
50078
50079
50080
50081
50082
50083
50084
50085
50086
50087
50088
50089
50090
50091
50092
50093
50094
50095
50096
50097
50098
50099
50100
50100
50101
50101
50102
50102
50103
50103
50104
50104
50105
50105
50106
50106
50107
50107
50108
50108
50109
50109
50110
50110
50111
50111
50112
50112
50113
50113
50114
50114
50115
50115
50116
50116
50117
50117
50118
50118
50119
50119
50120
50120
50121
50121
50122
50122
50123
50123
50124
50124
50125
50125
50126
50126
50127
50127
50128
50128
50129
50129
50130
50130
50131
50131
50132
50132
50133
50133
50134
50134
50135
50135
50136
50136
50137
50137
50138
50138
50139
50139
50140
50140
50141
50141
50142
50142
50143
50143
50144
50144
50145
50145
50146
50146
50147
50147
50148
50148
50149
50149
50150
50150
50151
50151
50152
50152
50153
50153
50154
50154
50155
50155
50156
50156
50157
50157
50158
50158
50159
50159
50160
50160
50161
50161
50162
50162
50163
50163
50164
50164
50165
50165
50166
50166
50167
50167
50168
50168
50169
50169
50170
50170
50171
50171
50172
50172
50173
50173
50174
50174
50175
50175
50176
50176
50177
50177
50178
50178
50179
50179
50180
50180
50181
50181
50182
50182
50183
50183
50184
50184
50185
50185
50186
50186
50187
50187
50188
50188
50189
50189
50190
50190
50191
50191
50192
50192
50193
50193
50194
50194
50195
50195
50196
50196
50197
50197
50198
50198
50199
50199
50200
50200
50201
50201
50202
50202
50203
50203
50204
50204
50205
50205
50206
50206
50207
50207
50208
50208
50209
50209
50210
50210
50211
50211
50212
50212
50213
50213
50214
50214
50215
50215
50216
50216
50217
50217
50218
50218
50219
50219
50220
50220
50221
50221
50222
50222
50223
50223
50224
50224
50225
50225
50226
50226
50227
50227
50228
50228
50229
50229
50230
50230
50231
50231
50232
50232
50233
50233
50234
50234
50235
50235
50236
50236
50237
50237
50238
50238
50239
50239
50240
50240
50241
50241
50242
50242
50243
50243
50244
50244
50245
50245
50246
50246
50247
50247
50248
50248
50249
50249
50250
50250
50251
50251
50252
50252
50253
50253
50254
50254
50255
50255
50256
50256
50257
50257
50258
50258
50259
50259
50260
50260
50261
50261
50262
50262
50263
50263
50264
50264
50265
50265
50266
50266
50267
50267
50268
50268
50269
50269
50270
50270
50271
50271
50272
50272
50273
50273
50274
50274
50275
50275
50276
50276
50277
50277
50278
50278
50279
50279
50280
50280
50281
50281
50282
50282
50283
50283
50284
50284
50285
50285
50286
50286
50287
50287
50288
50288
50289
50289
50290
50290
50291
50291
50292
50292
50293
50293
50294
50294
50295
50295
50296
50296
50297
50297
50298
50298
50299
50299
50300
50300
50301
50301
50302
50302
50303
50303
50304
50304
50305
50305
50306
50306
50307
50307
50308
50308
50309
50309
50310
50310
50311
50311
50312
50312
50313
50313
50314
50314
50315
50315
50316
50316
50317
50317
50318
50318
50319
50319
50320
50320
50321
50321
50322
50322
50323
50323
50324
50324
50325
50325
50326
50326
50327
50327
50328
50328
50329
50329
50330
50330
50331
50331
50332
50332
50333
50333
50334
50334
50335
50335
50336
50336
50337
50337
50338
50338
50339
50339
50340
50340
50341
50341
50342
50342
50343
50343
50344
50344
50345
50345
50346
50346
50347
50347
50348
50348
50349
50349
50350
50350
50351
50351
50352
50352
50353
50353
50354
50354
50355
50355
50356
50356
50357
50357
50358
50358
50359
50359
50360
50360
50361
50361
50362
50362
50363
50363
50364
50364
50365
50365
50366
50366
50367
50367
50368
50368
50369
50369
50370
50370
50371
50371
50372
50372
50373
50373
50374
50374
50375
50375
50376
50376
50377
50377
50378
50378
50379
50379
50380
50380
50381
50381
50382
50382
50383
50383
50384
50384
50385
50385
50386
50386
50387
50387
50388
50388
50389
50389
50390
50390
50391
50391
50392
50392
50393
50393
50394
50394
50395
50395
50396
50396
50397
50397
50398
50398
50399
50399
50400
50400
50401
50401
50402
50402
50403
50403
50404
50404
50405
50405
50406
50406
50407
50407
50408
50408
50409
50409
50410
50410
50411
50411
50412
50412
50413
50413
50414
50414
50415
50415
50416
50416
50417
50417
50418
50418
50419
50419
50420
50420
50421
50421
50422
50422
50423
50423
50424
50424
50425
50425
50426
50426
50427
50427
50428
50428
50429
50429
50430
50430
50431
50431
50432
50432
50433
50433
50434
50434
50435
50435
50436
50436
50437
50437
50438
50438
50439
50439
50440
50440
50441
50441
50442
50442
50443
50443
50444
50444
50445
50445
50446
50446
50447
50447
50448
50448
50449
50449
50450
50450
50451
50451
50452
50452
50453
50453
50454
50454
50455
50455
50456
50456
50457
50457
50458
50458
50459
50459
50460
50460
50461
50461
50462
50462
50463
50463
50464
50464
50465
50465
50466
50466
50467
50467
50468
50468
50469
50469
50470
50470
50471
50471
50472
50472
50473
50473
50474
50474
50475
50475
50476
50476
50477
50477
50478
50478
50479
50479
50480
50480
50481
50481
50482
50482
50483
50483
50484
50484
50485
50485
50486
50486
50487
50487
50488
50488
50489
50489
50490
50490
50491
50491
50492
50492
50493
50493
50494
50494
50495
50495
50496
50496
50497
50497
50498
50498
50499
50499
50500
50500
50501
50501
50502
50502
50503
50503
50504
50504
50505
50505
50506
50506
50507
50507
50508
50508
50509
50509
50510
50510
50511
50511
50512
50512
50513
50513
50514
50514
50515
50515
50516
50516
50517
50517
50518
50518
50519
50519
50520
50520
50521
50521
50522
50522
50523
50523
50524
50524
50525
50525
50526
50526
50527
50527
50528
50528
50529
50529
50530
50530
50531
50531
50532
50532
50533
50533
50534
50534
50535
50535
50536
50536
50537
50537
50538
50538
50539
50539
50540
50540
50541
50541
50542
50542
50543
50543
50544
50544
50545
50545
50546
50546
50547
50547
50548
50548
50549
50549
50550
50550
50551
50551
50552
50552
50553
50553
50554
50554
50555
50555
50556
50556
50557
50557
50558
50558
50559
50559
50560
50560
50561
50561
50562
50562
50563
50563
50564
50564
50565
50565
50566
50566
50567
50567
50568
50568
50569
50569
50570
50570
50571
50571
50572
50572
50573
50573
50574
50574
50575
50575
50576
50576
50577
50577
50578
50578
50579
50579
50580
50580
50581
50581
50582
50582
50583
50583
50584
50584
50585
50585
50586
50586
50587
50587
50588
50588
50589
50589
50590
50590
50591
50591
50592
50592
50593
50593
50594
50594
50595
50595
50596
50596
50597
50597
50598
50598
50599
50599
50600
50600
50601
50601
50602
50602
50603
50603
50604
50604
50605
50605
50606
50606
50607
50607
50608
50608
50609
50609
50610
50610
50611
50611
50612
50612
50613
50613
50614
50614
50615
50615
50616
50616
50617
50617
50618
50618
50619
50619
50620
50620
50621
50621
50622
50622
50623
50623
50624
50624
50625
50625
50626
50626
50627
50627
50628
50628
50629
50629
50630
50630
50631
50631
50632
50632
50633
50633
50634
50634
50635
50635
50636
50636
50637
50637
50638
50638
50639
50639
50640
50640
50641
50641
50642
50642
50643
50643
50644
50644
50645
50645
50646
50646
50647
50647
50648
50648
50649
50649
50650
50650
50651
50651
50652
50652
50653
50653
50654
50654
50655
50655
50656
50656
50657
50657
50658
50658
50659
50659
50660
50660
50661
50661
50662
50662
50663
50663
50664
50664
50665
50665
50666
50666
50667
50667
50668
50668
50669
50669
50670
50671
50672
50673
50674
50675
50676
50677
50678
50679
50680
50681
50682
50683
50684
50685
50686
50687
50688
50689
50690
50691
50692
50693
50694
50695
50696
50697
50698
50699
50700
50700
50701
50701
50702
50702
50703
50703
50704
50704
50705
50705
50706
50706
50707
50707
50708
50708
50709
50709
50710
50710
50711
50711
50712
50712
50713
50713
50714
50714
50715
50715
50716
50716
50717
50717
50718
50718
50719
50719
50720
50720
50721
50721
50722
50722
50723
50723
50724
50724
50725
50725
50726
50726
50727
50727
50728
50728
50729
50729
50730
50730
50731
50731
50732
50732
50733
50733
50734
50734
50735
50735
50736
50736
50737
50737
50738
50738
50739
50739
50740
50740
50741
50741
50742
50742
50743
50743
50744
50744
50745
50745
50746
50746
50747
50747
50748
50748
50749
50749
50750
50750
50751
50751
50752
50752
50753
50753
50754
50754
50755
50755
50756
50756
50757
50757
50758
50758
50759
50759
50760
50760
50761
50761
50762
50762
50763
50763
50764
50764
50765
50765
50766
50766
50767
50767
50768
50768
50769
50769
50770
50770
50771
50771
50772
50772
50773
50773
50774
50774
50775
50775
50776
50776
50777
50777
50778
50778
50779
50779
50780
50780
50781
50781
50782
50782
50783
50783
50784
50784
50785
50785
50786
50786
50787
50787
50788
50788
50789
50789
50790
50790
50791
50791
50792
50792
50793
50793
50794
50794
50795
50795
50796
50796
50797
50797
50798
50798
50799
50799
50800
50800
50801
50801
50802
50802
50803
50803
50804
50804
50805
50805
50806
50806
50807
50807
50808
50808
50809
50809
50810
50810
50811
50811
50812
50812
50813
50813
50814
50814
50815
50815
50816
50816
50817
50817
50818
50818
50819
50819
50820
50820
50821
50821
50822
50822
50823
50823
50824
50824
50825
50825
50826
50826
50827
50827
50828
50828
50829
50829
50830
50830
50831
50831
50832
50832
50833
50833
50834
50834
50835
50835
50836
50836
50837
50837
50838
50838
50839
50839
50840
50840
50841
50841
50842
50842
50843
50843
50844
50844
50845
50845
50846
50846
50847
50847
50848
50848
50849
50849
50850
50850
50851
50851
50852
50852
50853
50853
50854
50854
50855
50855
50856
50856
50857
50857
50858
50858
50859
50859
50860
50860
50861
50861
50862
50862
50863
50863
50864
50864
50865
50865
50866
50866
50867
50867
50868
50868
50869
50869
50870
50870
50871
50871
50872
50872
50873
50873
50874
50874
50875
50875
50876
50876
50877
50877
50878
50878
50879
50879
50880
50880
50881
50881
50882
50882
50883
50883
50884
50884
50885
50885
50886
50886
50887
50887
50888
50888
50889
50889
50890
50890
50891
50891
50892
50892
50893
50893
50894
50894
50895
50895
50896
50896
50897
50897
50898
50898
50899
50899
50900
50900
50901
50901
50902
50902
50903
50903
50904
50904
50905
50905
50906
50906
50907
50907
50908
50908
50909
50909
50910
50910
50911
50911
50912
50912
50913
50913
50914
50914
50915
50915
50916
50916
50917
50917
50918
50918
50919
50919
50920
50920
50921
50921
50922
50922
50923
50923
50924
50924
50925
50925
50926
50926
50927
50927
50928
50928
50929
50929
50930
50930
50931
50931
50932
50932
50933
50933
50934
50934
50935
50935
50936
50936
50937
50937
50938
50938
50939
50939
50940
50940
50941
50941
50942
50942
50943
50943
50944
50944
50945
50945
50946
50946
50947
50947
50948
50948
50949
50949
50950
50950
50951
50951
50952
50952
50953
50953
50954
50954
50955
50955
50956
50956
50957
50957
50958
50958
50959
50959
50960
50960
50961
50961
50962
50962
50963
50963
50964
50964
50965
50965
50966
50966
50967
50967
50968
50968
50969
50969
50970
50970
50971
50971
50972
50972
50973
50973
50974
50974
50975
50975
50976
50976
50977
50977
50978
50978
50979
50979
50980
50980
50981
50981
50982
50982
50983
50983
50984
50984
50985
50985
50986
50986
50987
50987
50988
50988
50989
50989
50990
50990
50991
50991
50992
50992
50993
50993
50994
50994
50995
50995
50996
50996
50997
50997
50998
50998
50999
50999
51000
51000
51001
51001
51002
51002
51003
51003
51004
51004
51005
51005
51006
51006
51007
51007
51008
51008
51009
51009
51010
51010
51011
51011
51012
51012
51013
51013
51014
51014
51015
51015
51016
51016
51017
51017
51018
51018
51019
51019
51020
51020
51021
51021
51022
51022
51023
51023
51024
51024
51025
51025
51026
51026
51027
51027
51028
51028
51029
51029
51030
51030
51031
51031
51032
51032
51033
51033
51034
51034
51035
51035
51036
51036
51037
51037
51038
51038
51039
51039
51040
51040
51041
51041
51042
51042
51043
51043
51044
51044
51045
51045
51046
51046
51047
51047
51048
51048
51049
51049
51050
51050
51051
51051
51052
51052
51053
51053
51054
51054
51055
51055
51056
51056
51057
51057
51058
51058
51059
51059
51060
51060
51061
51061
51062
51062
51063
51063
51064
51064
51065
51065
51066
51066
51067
51067
51068
51068
51069
51069
51070
51070
51071
51071
51072
51072
51073
51073
51074
51074
51075
51075
51076
51076
51077
51077
51078
51078
51079
51079
51080
51080
51081
51081
51082
51082
51083
51083
51084
51084
51085
51085
51086
51086
51087
51087
51088
51088
51089
51089
51090
51090
51091
51091
51092
51092
51093
51093
51094
51094
51095
51095
51096
51096
51097
51097
51098
51098
51099
51099
51100
51100
51101
51101
51102
51102
51103
51103
51104
51104
51105
51105
51106
51106
51107
51107
51108
51108
51109
51109
51110
51110
51111
51111
51112
51112
51113
51113
51114
51114
51115
51115
51116
51116
51117
51117
51118
51118
51119
51119
51120
51120
51121
51121
51122
51122
51123
51123
51124
51124
51125
51125
51126
51126
51127
51127
51128
51128
51129
51129
51130
51130
51131
51131
51132
51132
51133
51133
51134
51134
51135
51135
51136
51136
51137
51137
51138
51138
51139
51139
51140
51140
51141
51141
51142
51142
51143
51143
51144
51144
51145
51145
51146
51146
51147
51147
51148
51148
51149
51149
51150
51150
51151
51151
51152
51152
51153
51153
51154
51154
51155
51155
51156
51156
51157
51157
51158
51158
51159
51159
51160
51160
51161
51161
51162
51162
51163
51163
51164
51164
51165
51165
51166
51166
51167
51167
51168
51168
51169
51169
51170
51170
51171
51171
51172
51172
51173
51173
51174
51174
51175
51175
51176
51176
51177
51177
51178
51178
51179
51179
51180
51180
51181
51181
51182
51182
51183
51183
51184
51184
51185
51185
51186
51186
51187
51187
51188
51188
51189
51189
51190
51190
51191
51191
51192
51192
51193
51193
51194
51194
51195
51195
51196
51196
51197
51197
51198
51198
51199
51199
51200
51200
51201
51201
51202
51202
51203
51203
51204
51204
51205
51205
51206
51206
51207
51207
51208
51208
51209
51209
51210
51210
51211
51211
51212
51212
51213
51213
51214
51214
51215
51215
51216
51216
51217
51217
51218
51218
51219
51219
51220
51220
51221
51221
51222
51222
51223
51223
51224
51224
51225
51225
51226
51226
51227
51227
51228
51228
51229
51229
51230
51230
51231
51231
51232
51232
51233
51233
51234
51234
51235
51235
51236
51236
51237
51237
51238
51238
51239
51239
51240
51240
51241
51241
51242
51242
51243
51243
51244
51244
51245
51245
51246
51246
51247
51247
51248
51248
51249
51249
51250
51250
51251
51251
51252
51252
51253
51253
51254
51254
51255
51255
51256
51256
51257
51257
51258
51258
51259
51259
51260
51260
51261
51261
51262
51262
51263
51263
51264
51264
51265
51265
51266
51266
51267
51267
51268
51268
51269
51269
51270
51271
51272
51273
51274
51275
51276
51277
51278
51279
51280
51281
51282
51283
51284
51285
51286
51287
51288
51289
51290
51291
51292
51293
51294
51295
51296
51297
51298
51299
51300
51300
51301
51301
51302
51302
51303
51303
51304
51304
51305
51305
51306
51306
51307
51307
51308
51308
51309
51309
51310
51310
51311
51311
51312
51312
51313
51313
51314
51314
51315
51315
51316
51316
51317
51317
51318
51318
51319
51319
51320
51320
51321
51321
51322
51322
51323
51323
51324
51324
51325
51325
51326
51326
51327
51327
51328
51328
51329
51329
51330
51330
51331
51331
51332
51332
51333
51333
51334
51334
51335
51335
51336
51336
51337
51337
51338
51338
51339
51339
51340
51340
51341
51341
51342
51342
51343
51343
51344
51344
51345
51345
51346
51346
51347
51347
51348
51348
51349
51349
51350
51350
51351
51351
51352
51352
51353
51353
51354
51354
51355
51355
51356
51356
51357
51357
51358
51358
51359
51359
51360
51360
51361
51361
51362
51362
51363
51363
51364
51364
51365
51365
51366
51366
51367
51367
51368
51368
51369
51369
51370
51370
51371
51371
51372
51372
51373
51373
51374
51374
51375
51375
51376
51376
51377
51377
51378
51378
51379
51379
51380
51380
51381
51381
51382
51382
51383
51383
51384
51384
51385
51385
51386
51386
51387
51387
51388
51388
51389
51389
51390
51390
51391
51391
51392
51392
51393
51393
51394
51394
51395
51395
51396
51396
51397
51397
51398
51398
51399
51399
51400
51400
51401
51401
51402
51402
51403
51403
51404
51404
51405
51405
51406
51406
51407
51407
51408
51408
51409
51409
51410
51410
51411
51411
51412
51412
51413
51413
51414
51414
51415
51415
51416
51416
51417
51417
51418
51418
51419
51419
51420
51420
51421
51421
51422
51422
51423
51423
51424
51424
51425
51425
51426
51426
51427
51427
51428
51428
51429
51429
51430
51430
51431
51431
51432
51432
51433
51433
51434
51434
51435
51435
51436
51436
51437
51437
51438
51438
51439
51439
51440
51440
51441
51441
51442
51442
51443
51443
51444
51444
51445
51445
51446
51446
51447
51447
51448
51448
51449
51449
51450
51450
51451
51451
51452
51452
51453
51453
51454
51454
51455
51455
51456
51456
51457
51457
51458
51458
51459
51459
51460
51460
51461
51461
51462
51462
51463
51463
51464
51464
51465
51465
51466
51466
51467
51467
51468
51468
51469
51469
51470
51470
51471
51471
51472
51472
51473
51473
51474
51475
51475
51476
51476
51477
51477
51478
51478
51479
51479
51480
51480
51481
51481
51482
51482
51483
51483
51484
51484
51485
51485
51486
51486
51487
51487
51488
51488
51489
51489
51490
51490
51491
51491
51492
51492
51493
51493
51494
51494
51495
51495
51496
51496
51497
51497
51498
51498
51499
51499
51500
51500
51501
51501
51502
51502
51503
51503
51504
51504
51505
51505
51506
51506
51507
51507
51508
51508
51509
51509
51510
51510
51511
51511
51512
51512
51513
51513
51514
51514
51515
51515
51516
51516
51517
51517
51518
51518
51519
51519
51520
51520
51521
51521
51522
51522
51523
51523
51524
51524
51525
51525
51526
51526
51527
51527
51528
51528
51529
51529
51530
51530
51531
51531
51532
51532
51533
51533
51534
51534
51535
51535
51536
51536
51537
51537
51538
51538
51539
51539
51540
51540
51541
51541
51542
51542
51543
51543
51544
51544
51545
51545
51546
51546
51547
51547
51548
51548
51549
51549
51550
51550
51551
51551
51552
51552
51553
51553
51554
51554
51555
51555
51556
51556
51557
51557
51558
51558
51559
51559
51560
51560
51561
51561
51562
51562
51563
51563
51564
51564
51565
51565
51566
51566
51567
51567
51568
51568
51569
51569
51570
51570
51571
51571
51572
51572
51573
51573
51574
51574
51575
51575
51576
51576
51577
51577
51578
51578
51579
51579
51580
51580
51581
51581
51582
51582
51583
51583
51584
51584
51585
51585
51586
51586
51587
51587
51588
51588
51589
51589
51590
51590
51591
51591
51592
51592
51593
51593
51594
51594
51595
51595
51596
51596
51597
51597
51598
51598
51599
51599
51600
51600
51601
51601
51602
51602
51603
51603
51604
51604
51605
51605
51606
51606
51607
51607
51608
51608
51609
51609
51610
51610
51611
51611
51612
51612
51613
51613
51614
51614
51615
51615
51616
51616
51617
51617
51618
51618
51619
51619
51620
51620
51621
51621
51622
51622
51623
51623
51624
51624
51625
51625
51626
51626
51627
51627
51628
51628
51629
51629
51630
51630
51631
51631
51632
51632
51633
51633
51634
51634
51635
51635
51636
51636
51637
51637
51638
51638
51639
51639
51640
51640
51641
51641
51642
51642
51643
51643
51644
51644
51645
51645
51646
51646
51647
51647
51648
51648
51649
51650
51650
51651
51651
51652
51652
51653
51653
51654
51654
51655
51655
51656
51656
51657
51657
51658
51658
51659
51659
51660
51660
51661
51661
51662
51662
51663
51663
51664
51664
51665
51665
51666
51666
51667
51667
51668
51668
51669
51669
51670
51670
51671
51671
51672
51672
51673
51673
51674
51674
51675
51675
51676
51676
51677
51677
51678
51678
51679
51679
51680
51680
51681
51681
51682
51682
51683
51683
51684
51684
51685
51685
51686
51686
51687
51687
51688
51688
51689
51689
51690
51690
51691
51691
51692
51692
51693
51693
51694
51694
51695
51695
51696
51696
51697
51697
51698
51698
51699
51699
51700
51700
51701
51701
51702
51702
51703
51703
51704
51704
51705
51705
51706
51706
51707
51707
51708
51708
51709
51709
51710
51710
51711
51711
51712
51712
51713
51713
51714
51714
51715
51715
51716
51716
51717
51717
51718
51718
51719
51719
51720
51720
51721
51721
51722
51722
51723
51723
51724
51724
51725
51725
51726
51726
51727
51727
51728
51728
51729
51729
51730
51730
51731
51731
51732
51732
51733
51733
51734
51734
51735
51735
51736
51736
51737
51737
51738
51738
51739
51739
51740
51740
51741
51741
51742
51742
51743
51743
51744
51744
51745
51745
51746
51746
51747
51747
51748
51748
51749
51749
51750
51750
51751
51751
51752
51752
51753
51753
51754
51754
51755
51755
51756
51756
51757
51757
51758
51758
51759
51759
51760
51760
51761
51761
51762
51762
51763
51763
51764
51764
51765
51765
51766
51766
51767
51767
51768
51768
51769
51769
51770
51770
51771
51771
51772
51772
51773
51773
51774
51774
51775
51775
51776
51776
51777
51777
51778
51778
51779
51779
51780
51780
51781
51781
51782
51782
51783
51783
51784
51784
51785
51785
51786
51786
51787
51787
51788
51788
51789
51789
51790
51790
51791
51791
51792
51792
51793
51793
51794
51794
51795
51795
51796
51796
51797
51797
51798
51798
51799
51799
51800
51800
51801
51801
51802
51802
51803
51803
51804
51804
51805
51805
51806
51806
51807
51807
51808
51808
51809
51809
51810
51810
51811
51811
51812
51812
51813
51813
51814
51814
51815
51815
51816
51816
51817
51817
51818
51818
51819
51819
51820
51820
51821
51821
51822
51822
51823
51823
51824
51825
51825
51826
51826
51827
51827
51828
51828
51829
51829
51830
51830
51831
51831
51832
51832
51833
51833
51834
51834
51835
51835
51836
51836
51837
51837
51838
51838
51839
51839
51840
51840
51841
51841
51842
51842
51843
51843
51844
51844
51845
51845
51846
51846
51847
51847
51848
51848
51849
51849
51850
51850
51851
51851
51852
51852
51853
51853
51854
51854
51855
51855
51856
51856
51857
51857
51858
51858
51859
51859
51860
51860
51861
51861
51862
51862
51863
51863
51864
51864
51865
51865
51866
51866
51867
51867
51868
51868
51869
51869
51870
51870
51871
51871
51872
51872
51873
51873
51874
51874
51875
51875
51876
51876
51877
51877
51878
51878
51879
51879
51880
51880
51881
51881
51882
51882
51883
51883
51884
51884
51885
51885
51886
51886
51887
51887
51888
51888
51889
51889
51890
51890
51891
51891
51892
51892
51893
51893
51894
51894
51895
51895
51896
51896
51897
51897
51898
51898
51899
51899
51900
51900
51901
51901
51902
51902
51903
51903
51904
51904
51905
51905
51906
51906
51907
51907
51908
51908
51909
51909
51910
51910
51911
51911
51912
51912
51913
51913
51914
51914
51915
51915
51916
51916
51917
51917
51918
51918
51919
51919
51920
51920
51921
51921
51922
51922
51923
51923
51924
51924
51925
51925
51926
51926
51927
51927
51928
51928
51929
51929
51930
51930
51931
51931
51932
51932
51933
51933
51934
51934
51935
51935
51936
51936
51937
51937
51938
51938
51939
51939
51940
51940
51941
51941
51942
51942
51943
51943
51944
51944
51945
51945
51946
51946
51947
51947
51948
51948
51949
51949
51950
51950
51951
51951
51952
51952
51953
51953
51954
51954
51955
51955
51956
51956
51957
51957
51958
51958
51959
51959
51960
51960
51961
51961
51962
51962
51963
51963
51964
51964
51965
51965
51966
51966
51967
51967
51968
51968
51969
51969
51970
51970
51971
51971
51972
51972
51973
51973
51974
51974
51975
51975
51976
51976
51977
51977
51978
51978
51979
51979
51980
51980
51981
51981
51982
51982
51983
51983
51984
51984
51985
51985
51986
51986
51987
51987
51988
51988
51989
51989
51990
51990
51991
51991
51992
51992
51993
51993
51994
51994
51995
51995
51996
51996
51997
51997
51998
51998
51999
52000
52000
52001
52001
52002
52002
52003
52003
52004
52004
52005
52005
52006
52006
52007
52007
52008
52008
52009
52009
52010
52010
52011
52011
52012
52012
52013
52013
52014
52014
52015
52015
52016
52016
52017
52017
52018
52018
52019
52019
52020
52020
52021
52021
52022
52022
52023
52023
52024
52024
52025
52025
52026
52026
52027
52027
52028
52028
52029
52029
52030
52030
52031
52031
52032
52032
52033
52033
52034
52034
52035
52035
52036
52036
52037
52037
52038
52038
52039
52039
52040
52040
52041
52041
52042
52042
52043
52043
52044
52044
52045
52045
52046
52046
52047
52047
52048
52048
52049
52049
52050
52050
52051
52051
52052
52052
52053
52053
52054
52054
52055
52055
52056
52056
52057
52057
52058
52058
52059
52059
52060
52060
52061
52061
52062
52062
52063
52063
52064
52064
52065
52065
52066
52066
52067
52067
52068
52068
52069
52069
52070
52070
52071
52071
52072
52072
52073
52073
52074
52074
52075
52075
52076
52076
52077
52077
52078
52078
52079
52079
52080
52080
52081
52081
52082
52082
52083
52083
52084
52084
52085
52085
52086
52086
52087
52087
52088
52088
52089
52089
52090
52090
52091
52091
52092
52092
52093
52093
52094
52094
52095
52095
52096
52096
52097
52097
52098
52098
52099
52099
52100
52100
52101
52101
52102
52102
52103
52103
52104
52104
52105
52105
52106
52106
52107
52107
52108
52108
52109
52109
52110
52110
52111
52111
52112
52112
52113
52113
52114
52114
52115
52115
52116
52116
52117
52117
52118
52118
52119
52119
52120
52120
52121
52121
52122
52122
52123
52123
52124
52124
52125
52125
52126
52126
52127
52127
52128
52128
52129
52129
52130
52130
52131
52131
52132
52132
52133
52133
52134
52134
52135
52135
52136
52136
52137
52137
52138
52138
52139
52139
52140
52140
52141
52141
52142
52142
52143
52143
52144
52144
52145
52145
52146
52146
52147
52147
52148
52148
52149
52149
52150
52150
52151
52151
52152
52152
52153
52153
52154
52154
52155
52155
52156
52156
52157
52157
52158
52158
52159
52159
52160
52160
52161
52161
52162
52162
52163
52163
52164
52164
52165
52165
52166
52166
52167
52167
52168
52168
52169
52169
52170
52170
52171
52171
52172
52172
52173
52173
52174
52175
52175
52176
52176
52177
52177
52178
52178
52179
52179
52180
52180
52181
52181
52182
52182
52183
52183
52184
52184
52185
52185
52186
52186
52187
52187
52188
52188
52189
52189
52190
52190
52191
52191
52192
52192
52193
52193
52194
52194
52195
52195
52196
52196
52197
52197
52198
52198
52199
52199
52200
52200
52201
52201
52202
52202
52203
52203
52204
52204
52205
52205
52206
52206
52207
52207
52208
52208
52209
52209
52210
52210
52211
52211
52212
52212
52213
52213
52214
52214
52215
52215
52216
52216
52217
52217
52218
52218
52219
52219
52220
52220
52221
52221
52222
52222
52223
52223
52224
52224
52225
52225
52226
52226
52227
52227
52228
52228
52229
52229
52230
52230
52231
52231
52232
52232
52233
52233
52234
52234
52235
52235
52236
52236
52237
52237
52238
52238
52239
52239
52240
52240
52241
52241
52242
52242
52243
52243
52244
52244
52245
52245
52246
52246
52247
52247
52248
52248
52249
52249
52250
52250
52251
52251
52252
52252
52253
52253
52254
52254
52255
52255
52256
52256
52257
52257
52258
52258
52259
52259
52260
52260
52261
52261
52262
52262
52263
52263
52264
52264
52265
52265
52266
52266
52267
52267
52268
52268
52269
52269
52270
52270
52271
52271
52272
52272
52273
52273
52274
52274
52275
52275
52276
52276
52277
52277
52278
52278
52279
52279
52280
52280
52281
52281
52282
52282
52283
52283
52284
52284
52285
52285
52286
52286
52287
52287
52288
52288
52289
52289
52290
52290
52291
52291
52292
52292
52293
52293
52294
52294
52295
52295
52296
52296
52297
52297
52298
52298
52299
52299
52300
52300
52301
52301
52302
52302
52303
52303
52304
52304
52305
52305
52306
52306
52307
52307
52308
52308
52309
52309
52310
52310
52311
52311
52312
52312
52313
52313
52314
52314
52315
52315
52316
52316
52317
52317
52318
52318
52319
52319
52320
52320
52321
52321
52322
52322
52323
52323
52324
52324
52325
52325
52326
52326
52327
52327
52328
52328
52329
52329
52330
52330
52331
52331
52332
52332
52333
52333
52334
52334
52335
52335
52336
52336
52337
52337
52338
52338
52339
52339
52340
52340
52341
52341
52342
52342
52343
52343
52344
52344
52345
52345
52346
52346
52347
52347
52348
52348
52349
52350
52350
52351
52351
52352
52352
52353
52353
52354
52354
52355
52355
52356
52356
52357
52357
52358
52358
52359
52359
52360
52360
52361
52361
52362
52362
52363
52363
52364
52364
52365
52365
52366
52366
52367
52367
52368
52368
52369
52369
52370
52370
52371
52371
52372
52372
52373
52373
52374
52374
52375
52375
52376
52376
52377
52377
52378
52378
52379
52379
52380
52380
52381
52381
52382
52382
52383
52383
52384
52384
52385
52385
52386
52386
52387
52387
52388
52388
52389
52389
52390
52390
52391
52391
52392
52392
52393
52393
52394
52394
52395
52395
52396
52396
52397
52397
52398
52398
52399
52399
52400
52400
52401
52401
52402
52402
52403
52403
52404
52404
52405
52405
52406
52406
52407
52407
52408
52408
52409
52409
52410
52410
52411
52411
52412
52412
52413
52413
52414
52414
52415
52415
52416
52416
52417
52417
52418
52418
52419
52419
52420
52420
52421
52421
52422
52422
52423
52423
52424
52424
52425
52425
52426
52426
52427
52427
52428
52428
52429
52429
52430
52430
52431
52431
52432
52432
52433
52433
52434
52434
52435
52435
52436
52436
52437
52437
52438
52438
52439
52439
52440
52440
52441
52441
52442
52442
52443
52443
52444
52444
52445
52445
52446
52446
52447
52447
52448
52448
52449
52449
52450
52450
52451
52451
52452
52452
52453
52453
52454
52454
52455
52455
52456
52456
52457
52457
52458
52458
52459
52459
52460
52460
52461
52461
52462
52462
52463
52463
52464
52464
52465
52465
52466
52466
52467
52467
52468
52468
52469
52469
52470
52470
52471
52471
52472
52472
52473
52473
52474
52474
52475
52475
52476
52476
52477
52477
52478
52478
52479
52479
52480
52480
52481
52481
52482
52482
52483
52483
52484
52484
52485
52485
52486
52486
52487
52487
52488
52488
52489
52489
52490
52490
52491
52491
52492
52492
52493
52493
52494
52494
52495
52495
52496
52496
52497
52497
52498
52498
52499
52499
52500
52500
52501
52501
52502
52502
52503
52503
52504
52504
52505
52505
52506
52506
52507
52507
52508
52508
52509
52509
52510
52510
52511
52511
52512
52512
52513
52513
52514
52514
52515
52515
52516
52516
52517
52517
52518
52518
52519
52519
52520
52520
52521
52521
52522
52522
52523
52523
52524
52525
52525
52526
52526
52527
52527
52528
52528
52529
52529
52530
52530
52531
52531
52532
52532
52533
52533
52534
52534
52535
52535
52536
52536
52537
52537
52538
52538
52539
52539
52540
52540
52541
52541
52542
52542
52543
52543
52544
52544
52545
52545
52546
52546
52547
52547
52548
52548
52549
52549
52550
52550
52551
52551
52552
52552
52553
52553
52554
52554
52555
52555
52556
52556
52557
52557
52558
52558
52559
52559
52560
52560
52561
52561
52562
52562
52563
52563
52564
52564
52565
52565
52566
52566
52567
52567
52568
52568
52569
52569
52570
52570
52571
52571
52572
52572
52573
52573
52574
52574
52575
52575
52576
52576
52577
52577
52578
52578
52579
52579
52580
52580
52581
52581
52582
52582
52583
52583
52584
52584
52585
52585
52586
52586
52587
52587
52588
52588
52589
52589
52590
52590
52591
52591
52592
52592
52593
52593
52594
52594
52595
52595
52596
52596
52597
52597
52598
52598
52599
52599
52600
52600
52601
52601
52602
52602
52603
52603
52604
52604
52605
52605
52606
52606
52607
52607
52608
52608
52609
52609
52610
52610
52611
52611
52612
52612
52613
52613
52614
52614
52615
52615
52616
52616
52617
52617
52618
52618
52619
52619
52620
52620
52621
52621
52622
52622
52623
52623
52624
52624
52625
52625
52626
52626
52627
52627
52628
52628
52629
52629
52630
52630
52631
52631
52632
52632
52633
52633
52634
52634
52635
52635
52636
52636
52637
52637
52638
52638
52639
52639
52640
52640
52641
52641
52642
52642
52643
52643
52644
52644
52645
52645
52646
52646
52647
52647
52648
52648
52649
52649
52650
52650
52651
52651
52652
52652
52653
52653
52654
52654
52655
52655
52656
52656
52657
52657
52658
52658
52659
52659
52660
52660
52661
52661
52662
52662
52663
52663
52664
52664
52665
52665
52666
52666
52667
52667
52668
52668
52669
52669
52670
52670
52671
52671
52672
52672
52673
52673
52674
52674
52675
52675
52676
52676
52677
52677
52678
52678
52679
52679
52680
52680
52681
52681
52682
52682
52683
52683
52684
52684
52685
52685
52686
52686
52687
52687
52688
52688
52689
52689
52690
52690
52691
52691
52692
52692
52693
52693
52694
52694
52695
52695
52696
52696
52697
52697
52698
52698
52699
52700
52700
52701
52701
52702
52702
52703
52703
52704
52704
52705
52705
52706
52706
52707
52707
52708
52708
52709
52709
52710
52710
52711
52711
52712
52712
52713
52713
52714
52714
52715
52715
52716
52716
52717
52717
52718
52718
52719
52719
52720
52720
52721
52721
52722
52722
52723
52723
52724
52724
52725
52725
52726
52726
52727
52727
52728
52728
52729
52729
52730
52730
52731
52731
52732
52732
52733
52733
52734
52734
52735
52735
52736
52736
52737
52737
52738
52738
52739
52739
52740
52740
52741
52741
52742
52742
52743
52743
52744
52744
52745
52745
52746
52746
52747
52747
52748
52748
52749
52749
52750
52750
52751
52751
52752
52752
52753
52753
52754
52754
52755
52755
52756
52756
52757
52757
52758
52758
52759
52759
52760
52760
52761
52761
52762
52762
52763
52763
52764
52764
52765
52765
52766
52766
52767
52767
52768
52768
52769
52769
52770
52770
52771
52771
52772
52772
52773
52773
52774
52774
52775
52775
52776
52776
52777
52777
52778
52778
52779
52779
52780
52780
52781
52781
52782
52782
52783
52783
52784
52784
52785
52785
52786
52786
52787
52787
52788
52788
52789
52789
52790
52790
52791
52791
52792
52792
52793
52793
52794
52794
52795
52795
52796
52796
52797
52797
52798
52798
52799
52799
52800
52800
52801
52801
52802
52802
52803
52803
52804
52804
52805
52805
52806
52806
52807
52807
52808
52808
52809
52809
52810
52810
52811
52811
52812
52812
52813
52813
52814
52814
52815
52815
52816
52816
52817
52817
52818
52818
52819
52819
52820
52820
52821
52821
52822
52822
52823
52823
52824
52824
52825
52825
52826
52826
52827
52827
52828
52828
52829
52829
52830
52830
52831
52831
52832
52832
52833
52833
52834
52834
52835
52835
52836
52836
52837
52837
52838
52838
52839
52839
52840
52840
52841
52841
52842
52842
52843
52843
52844
52844
52845
52845
52846
52846
52847
52847
52848
52848
52849
52849
52850
52850
52851
52851
52852
52852
52853
52853
52854
52854
52855
52855
52856
52856
52857
52857
52858
52858
52859
52859
52860
52860
52861
52861
52862
52862
52863
52863
52864
52864
52865
52865
52866
52866
52867
52867
52868
52868
52869
52869
52870
52870
52871
52871
52872
52872
52873
52873
52874
52875
52875
52876
52876
52877
52877
52878
52878
52879
52879
52880
52880
52881
52881
52882
52882
52883
52883
52884
52884
52885
52885
52886
52886
52887
52887
52888
52888
52889
52889
52890
52890
52891
52891
52892
52892
52893
52893
52894
52894
52895
52895
52896
52896
52897
52897
52898
52898
52899
52899
52900
52900
52901
52901
52902
52902
52903
52903
52904
52904
52905
52905
52906
52906
52907
52907
52908
52908
52909
52909
52910
52910
52911
52911
52912
52912
52913
52913
52914
52914
52915
52915
52916
52916
52917
52917
52918
52918
52919
52919
52920
52920
52921
52921
52922
52922
52923
52923
52924
52924
52925
52925
52926
52926
52927
52927
52928
52928
52929
52929
52930
52930
52931
52931
52932
52932
52933
52933
52934
52934
52935
52935
52936
52936
52937
52937
52938
52938
52939
52939
52940
52940
52941
52941
52942
52942
52943
52943
52944
52944
52945
52945
52946
52946
52947
52947
52948
52948
52949
52949
52950
52950
52951
52951
52952
52952
52953
52953
52954
52954
52955
52955
52956
52956
52957
52957
52958
52958
52959
52959
52960
52960
52961
52961
52962
52962
52963
52963
52964
52964
52965
52965
52966
52966
52967
52967
52968
52968
52969
52969
52970
52970
52971
52971
52972
52972
52973
52973
52974
52974
52975
52975
52976
52976
52977
52977
52978
52978
52979
52979
52980
52980
52981
52981
52982
52982
52983
52983
52984
52984
52985
52985
52986
52986
52987
52987
52988
52988
52989
52989
52990
52990
52991
52991
52992
52992
52993
52993
52994
52994
52995
52995
52996
52996
52997
52997
52998
52998
52999
52999
53000
53000
53001
53001
53002
53002
53003
53003
53004
53004
53005
53005
53006
53006
53007
53007
53008
53008
53009
53009
53010
53010
53011
53011
53012
53012
53013
53013
53014
53014
53015
53015
53016
53016
53017
53017
53018
53018
53019
53019
53020
53020
53021
53021
53022
53022
53023
53023
53024
53024
53025
53025
53026
53026
53027
53027
53028
53028
53029
53029
53030
53030
53031
53031
53032
53032
53033
53033
53034
53034
53035
53035
53036
53036
53037
53037
53038
53038
53039
53039
53040
53040
53041
53041
53042
53042
53043
53043
53044
53044
53045
53045
53046
53046
53047
53047
53048
53048
53049
53050
53050
53051
53051
53052
53052
53053
53053
53054
53054
53055
53055
53056
53056
53057
53057
53058
53058
53059
53059
53060
53060
53061
53061
53062
53062
53063
53063
53064
53064
53065
53065
53066
53066
53067
53067
53068
53068
53069
53069
53070
53070
53071
53071
53072
53072
53073
53073
53074
53074
53075
53075
53076
53076
53077
53077
53078
53078
53079
53079
53080
53080
53081
53081
53082
53082
53083
53083
53084
53084
53085
53085
53086
53086
53087
53087
53088
53088
53089
53089
53090
53090
53091
53091
53092
53092
53093
53093
53094
53094
53095
53095
53096
53096
53097
53097
53098
53098
53099
53099
53100
53100
53101
53101
53102
53102
53103
53103
53104
53104
53105
53105
53106
53106
53107
53107
53108
53108
53109
53109
53110
53110
53111
53111
53112
53112
53113
53113
53114
53114
53115
53115
53116
53116
53117
53117
53118
53118
53119
53119
53120
53120
53121
53121
53122
53122
53123
53123
53124
53124
53125
53125
53126
53126
53127
53127
53128
53128
53129
53129
53130
53130
53131
53131
53132
53132
53133
53133
53134
53134
53135
53135
53136
53136
53137
53137
53138
53138
53139
53139
53140
53140
53141
53141
53142
53142
53143
53143
53144
53144
53145
53145
53146
53146
53147
53147
53148
53148
53149
53149
53150
53150
53151
53151
53152
53152
53153
53153
53154
53154
53155
53155
53156
53156
53157
53157
53158
53158
53159
53159
53160
53160
53161
53161
53162
53162
53163
53163
53164
53164
53165
53165
53166
53166
53167
53167
53168
53168
53169
53169
53170
53170
53171
53171
53172
53172
53173
53173
53174
53174
53175
53175
53176
53176
53177
53177
53178
53178
53179
53179
53180
53180
53181
53181
53182
53182
53183
53183
53184
53184
53185
53185
53186
53186
53187
53187
53188
53188
53189
53189
53190
53190
53191
53191
53192
53192
53193
53193
53194
53194
53195
53195
53196
53196
53197
53197
53198
53198
53199
53199
53200
53200
53201
53201
53202
53202
53203
53203
53204
53204
53205
53205
53206
53206
53207
53207
53208
53208
53209
53209
53210
53210
53211
53211
53212
53212
53213
53213
53214
53214
53215
53215
53216
53216
53217
53217
53218
53218
53219
53219
53220
53220
53221
53221
53222
53222
53223
53223
53224
53225
53225
53226
53226
53227
53227
53228
53228
53229
53229
53230
53230
53231
53231
53232
53232
53233
53233
53234
53234
53235
53235
53236
53236
53237
53237
53238
53238
53239
53239
53240
53240
53241
53241
53242
53242
53243
53243
53244
53244
53245
53245
53246
53246
53247
53247
53248
53248
53249
53249
53250
53250
53251
53251
53252
53252
53253
53253
53254
53254
53255
53255
53256
53256
53257
53257
53258
53258
53259
53259
53260
53260
53261
53261
53262
53262
53263
53263
53264
53264
53265
53265
53266
53266
53267
53267
53268
53268
53269
53269
53270
53270
53271
53271
53272
53272
53273
53273
53274
53274
53275
53275
53276
53276
53277
53277
53278
53278
53279
53279
53280
53280
53281
53281
53282
53282
53283
53283
53284
53284
53285
53285
53286
53286
53287
53287
53288
53288
53289
53289
53290
53290
53291
53291
53292
53292
53293
53293
53294
53294
53295
53295
53296
53296
53297
53297
53298
53298
53299
53299
53300
53300
53301
53301
53302
53302
53303
53303
53304
53304
53305
53305
53306
53306
53307
53307
53308
53308
53309
53309
53310
53310
53311
53311
53312
53312
53313
53313
53314
53314
53315
53315
53316
53316
53317
53317
53318
53318
53319
53319
53320
53320
53321
53321
53322
53322
53323
53323
53324
53324
53325
53325
53326
53326
53327
53327
53328
53328
53329
53329
53330
53330
53331
53331
53332
53332
53333
53333
53334
53334
53335
53335
53336
53336
53337
53337
53338
53338
53339
53339
53340
53340
53341
53341
53342
53342
53343
53343
53344
53344
53345
53345
53346
53346
53347
53347
53348
53348
53349
53349
53350
53350
53351
53351
53352
53352
53353
53353
53354
53354
53355
53355
53356
53356
53357
53357
53358
53358
53359
53359
53360
53360
53361
53361
53362
53362
53363
53363
53364
53364
53365
53365
53366
53366
53367
53367
53368
53368
53369
53369
53370
53370
53371
53371
53372
53372
53373
53373
53374
53374
53375
53375
53376
53376
53377
53377
53378
53378
53379
53379
53380
53380
53381
53381
53382
53382
53383
53383
53384
53384
53385
53385
53386
53386
53387
53387
53388
53388
53389
53389
53390
53390
53391
53391
53392
53392
53393
53393
53394
53394
53395
53395
53396
53396
53397
53397
53398
53398
53399
53400
53400
53401
53401
53402
53402
53403
53403
53404
53404
53405
53405
53406
53406
53407
53407
53408
53408
53409
53409
53410
53410
53411
53411
53412
53412
53413
53413
53414
53414
53415
53415
53416
53416
53417
53417
53418
53418
53419
53419
53420
53420
53421
53421
53422
53422
53423
53423
53424
53424
53425
53425
53426
53426
53427
53427
53428
53428
53429
53429
53430
53430
53431
53431
53432
53432
53433
53433
53434
53434
53435
53435
53436
53436
53437
53437
53438
53438
53439
53439
53440
53440
53441
53441
53442
53442
53443
53443
53444
53444
53445
53445
53446
53446
53447
53447
53448
53448
53449
53449
53450
53450
53451
53451
53452
53452
53453
53453
53454
53454
53455
53455
53456
53456
53457
53457
53458
53458
53459
53459
53460
53460
53461
53461
53462
53462
53463
53463
53464
53464
53465
53465
53466
53466
53467
53467
53468
53468
53469
53469
53470
53470
53471
53471
53472
53472
53473
53473
53474
53474
53475
53475
53476
53476
53477
53477
53478
53478
53479
53479
53480
53480
53481
53481
53482
53482
53483
53483
53484
53484
53485
53485
53486
53486
53487
53487
53488
53488
53489
53489
53490
53490
53491
53491
53492
53492
53493
53493
53494
53494
53495
53495
53496
53496
53497
53497
53498
53498
53499
53499
53500
53500
53501
53501
53502
53502
53503
53503
53504
53504
53505
53505
53506
53506
53507
53507
53508
53508
53509
53509
53510
53510
53511
53511
53512
53512
53513
53513
53514
53514
53515
53515
53516
53516
53517
53517
53518
53518
53519
53519
53520
53520
53521
53521
53522
53522
53523
53523
53524
53524
53525
53525
53526
53526
53527
53527
53528
53528
53529
53529
53530
53530
53531
53531
53532
53532
53533
53533
53534
53534
53535
53535
53536
53536
53537
53537
53538
53538
53539
53539
53540
53540
53541
53541
53542
53542
53543
53543
53544
53544
53545
53545
53546
53546
53547
53547
53548
53548
53549
53549
53550
53550
53551
53551
53552
53552
53553
53553
53554
53554
53555
53555
53556
53556
53557
53557
53558
53558
53559
53559
53560
53560
53561
53561
53562
53562
53563
53563
53564
53564
53565
53565
53566
53566
53567
53567
53568
53568
53569
53569
53570
53570
53571
53571
53572
53572
53573
53573
53574
53575
53575
53576
53576
53577
53577
53578
53578
53579
53579
53580
53580
53581
53581
53582
53582
53583
53583
53584
53584
53585
53585
53586
53586
53587
53587
53588
53588
53589
53589
53590
53590
53591
53591
53592
53592
53593
53593
53594
53594
53595
53595
53596
53596
53597
53597
53598
53598
53599
53599
53600
53600
53601
53601
53602
53602
53603
53603
53604
53604
53605
53605
53606
53606
53607
53607
53608
53608
53609
53609
53610
53610
53611
53611
53612
53612
53613
53613
53614
53614
53615
53615
53616
53616
53617
53617
53618
53618
53619
53619
53620
53620
53621
53621
53622
53622
53623
53623
53624
53624
53625
53625
53626
53626
53627
53627
53628
53628
53629
53629
53630
53630
53631
53631
53632
53632
53633
53633
53634
53634
53635
53635
53636
53636
53637
53637
53638
53638
53639
53639
53640
53640
53641
53641
53642
53642
53643
53643
53644
53644
53645
53645
53646
53646
53647
53647
53648
53648
53649
53649
53650
53650
53651
53651
53652
53652
53653
53653
53654
53654
53655
53655
53656
53656
53657
53657
53658
53658
53659
53659
53660
53660
53661
53661
53662
53662
53663
53663
53664
53664
53665
53665
53666
53666
53667
53667
53668
53668
53669
53669
53670
53670
53671
53671
53672
53672
53673
53673
53674
53674
53675
53675
53676
53676
53677
53677
53678
53678
53679
53679
53680
53680
53681
53681
53682
53682
53683
53683
53684
53684
53685
53685
53686
53686
53687
53687
53688
53688
53689
53689
53690
53690
53691
53691
53692
53692
53693
53693
53694
53694
53695
53695
53696
53696
53697
53697
53698
53698
53699
53699
53700
53700
53701
53701
53702
53702
53703
53703
53704
53704
53705
53705
53706
53706
53707
53707
53708
53708
53709
53709
53710
53710
53711
53711
53712
53712
53713
53713
53714
53714
53715
53715
53716
53716
53717
53717
53718
53718
53719
53719
53720
53720
53721
53721
53722
53722
53723
53723
53724
53724
53725
53725
53726
53726
53727
53727
53728
53728
53729
53729
53730
53730
53731
53731
53732
53732
53733
53733
53734
53734
53735
53735
53736
53736
53737
53737
53738
53738
53739
53739
53740
53740
53741
53741
53742
53742
53743
53743
53744
53744
53745
53745
53746
53746
53747
53747
53748
53748
53749
53750
53750
53751
53751
53752
53752
53753
53753
53754
53754
53755
53755
53756
53756
53757
53757
53758
53758
53759
53759
53760
53760
53761
53761
53762
53762
53763
53763
53764
53764
53765
53765
53766
53766
53767
53767
53768
53768
53769
53769
53770
53770
53771
53771
53772
53772
53773
53773
53774
53774
53775
53775
53776
53776
53777
53777
53778
53778
53779
53779
53780
53780
53781
53781
53782
53782
53783
53783
53784
53784
53785
53785
53786
53786
53787
53787
53788
53788
53789
53789
53790
53790
53791
53791
53792
53792
53793
53793
53794
53794
53795
53795
53796
53796
53797
53797
53798
53798
53799
53799
53800
53800
53801
53801
53802
53802
53803
53803
53804
53804
53805
53805
53806
53806
53807
53807
53808
53808
53809
53809
53810
53810
53811
53811
53812
53812
53813
53813
53814
53814
53815
53815
53816
53816
53817
53817
53818
53818
53819
53819
53820
53820
53821
53821
53822
53822
53823
53823
53824
53824
53825
53825
53826
53826
53827
53827
53828
53828
53829
53829
53830
53830
53831
53831
53832
53832
53833
53833
53834
53834
53835
53835
53836
53836
53837
53837
53838
53838
53839
53839
53840
53840
53841
53841
53842
53842
53843
53843
53844
53844
53845
53845
53846
53846
53847
53847
53848
53848
53849
53849
53850
53850
53851
53851
53852
53852
53853
53853
53854
53854
53855
53855
53856
53856
53857
53857
53858
53858
53859
53859
53860
53860
53861
53861
53862
53862
53863
53863
53864
53864
53865
53865
53866
53866
53867
53867
53868
53868
53869
53869
53870
53870
53871
53871
53872
53872
53873
53873
53874
53874
53875
53875
53876
53876
53877
53877
53878
53878
53879
53879
53880
53880
53881
53881
53882
53882
53883
53883
53884
53884
53885
53885
53886
53886
53887
53887
53888
53888
53889
53889
53890
53890
53891
53891
53892
53892
53893
53893
53894
53894
53895
53895
53896
53896
53897
53897
53898
53898
53899
53899
53900
53900
53901
53901
53902
53902
53903
53903
53904
53904
53905
53905
53906
53906
53907
53907
53908
53908
53909
53909
53910
53910
53911
53911
53912
53912
53913
53913
53914
53914
53915
53915
53916
53916
53917
53917
53918
53918
53919
53919
53920
53920
53921
53921
53922
53922
53923
53923
53924
53925
53925
53926
53926
53927
53927
53928
53928
53929
53929
53930
53930
53931
53931
53932
53932
53933
53933
53934
53934
53935
53935
53936
53936
53937
53937
53938
53938
53939
53939
53940
53940
53941
53941
53942
53942
53943
53943
53944
53944
53945
53945
53946
53946
53947
53947
53948
53948
53949
53949
53950
53950
53951
53951
53952
53952
53953
53953
53954
53954
53955
53955
53956
53956
53957
53957
53958
53958
53959
53959
53960
53960
53961
53961
53962
53962
53963
53963
53964
53964
53965
53965
53966
53966
53967
53967
53968
53968
53969
53969
53970
53970
53971
53971
53972
53972
53973
53973
53974
53974
53975
53975
53976
53976
53977
53977
53978
53978
53979
53979
53980
53980
53981
53981
53982
53982
53983
53983
53984
53984
53985
53985
53986
53986
53987
53987
53988
53988
53989
53989
53990
53990
53991
53991
53992
53992
53993
53993
53994
53994
53995
53995
53996
53996
53997
53997
53998
53998
53999
53999
54000
54000
54001
54001
54002
54002
54003
54003
54004
54004
54005
54005
54006
54006
54007
54007
54008
54008
54009
54009
54010
54010
54011
54011
54012
54012
54013
54013
54014
54014
54015
54015
54016
54016
54017
54017
54018
54018
54019
54019
54020
54020
54021
54021
54022
54022
54023
54023
54024
54024
54025
54025
54026
54026
54027
54027
54028
54028
54029
54029
54030
54030
54031
54031
54032
54032
54033
54033
54034
54034
54035
54035
54036
54036
54037
54037
54038
54038
54039
54039
54040
54040
54041
54041
54042
54042
54043
54043
54044
54044
54045
54045
54046
54046
54047
54047
54048
54048
54049
54049
54050
54050
54051
54051
54052
54052
54053
54053
54054
54054
54055
54055
54056
54056
54057
54057
54058
54058
54059
54059
54060
54060
54061
54061
54062
54062
54063
54063
54064
54064
54065
54065
54066
54066
54067
54067
54068
54068
54069
54069
54070
54070
54071
54071
54072
54072
54073
54073
54074
54074
54075
54075
54076
54076
54077
54077
54078
54078
54079
54079
54080
54080
54081
54081
54082
54082
54083
54083
54084
54084
54085
54085
54086
54086
54087
54087
54088
54088
54089
54089
54090
54090
54091
54091
54092
54092
54093
54093
54094
54094
54095
54095
54096
54096
54097
54097
54098
54098
54099
54100
54100
54101
54101
54102
54102
54103
54103
54104
54104
54105
54105
54106
54106
54107
54107
54108
54108
54109
54109
54110
54110
54111
54111
54112
54112
54113
54113
54114
54114
54115
54115
54116
54116
54117
54117
54118
54118
54119
54119
54120
54120
54121
54121
54122
54122
54123
54123
54124
54124
54125
54125
54126
54126
54127
54127
54128
54128
54129
54129
54130
54130
54131
54131
54132
54132
54133
54133
54134
54134
54135
54135
54136
54136
54137
54137
54138
54138
54139
54139
54140
54140
54141
54141
54142
54142
54143
54143
54144
54144
54145
54145
54146
54146
54147
54147
54148
54148
54149
54149
54150
54150
54151
54151
54152
54152
54153
54153
54154
54154
54155
54155
54156
54156
54157
54157
54158
54158
54159
54159
54160
54160
54161
54161
54162
54162
54163
54163
54164
54164
54165
54165
54166
54166
54167
54167
54168
54168
54169
54169
54170
54170
54171
54171
54172
54172
54173
54173
54174
54174
54175
54175
54176
54176
54177
54177
54178
54178
54179
54179
54180
54180
54181
54181
54182
54182
54183
54183
54184
54184
54185
54185
54186
54186
54187
54187
54188
54188
54189
54189
54190
54190
54191
54191
54192
54192
54193
54193
54194
54194
54195
54195
54196
54196
54197
54197
54198
54198
54199
54199
54200
54200
54201
54201
54202
54202
54203
54203
54204
54204
54205
54205
54206
54206
54207
54207
54208
54208
54209
54209
54210
54210
54211
54211
54212
54212
54213
54213
54214
54214
54215
54215
54216
54216
54217
54217
54218
54218
54219
54219
54220
54220
54221
54221
54222
54222
54223
54223
54224
54224
54225
54225
54226
54226
54227
54227
54228
54228
54229
54229
54230
54230
54231
54231
54232
54232
54233
54233
54234
54234
54235
54235
54236
54236
54237
54237
54238
54238
54239
54239
54240
54240
54241
54241
54242
54242
54243
54243
54244
54244
54245
54245
54246
54246
54247
54247
54248
54248
54249
54249
54250
54250
54251
54251
54252
54252
54253
54253
54254
54254
54255
54255
54256
54256
54257
54257
54258
54258
54259
54259
54260
54260
54261
54261
54262
54262
54263
54263
54264
54264
54265
54265
54266
54266
54267
54267
54268
54268
54269
54269
54270
54270
54271
54271
54272
54272
54273
54273
54274
54275
54275
54276
54276
54277
54277
54278
54278
54279
54279
54280
54280
54281
54281
54282
54282
54283
54283
54284
54284
54285
54285
54286
54286
54287
54287
54288
54288
54289
54289
54290
54290
54291
54291
54292
54292
54293
54293
54294
54294
54295
54295
54296
54296
54297
54297
54298
54298
54299
54299
54300
54300
54301
54301
54302
54302
54303
54303
54304
54304
54305
54305
54306
54306
54307
54307
54308
54308
54309
54309
54310
54310
54311
54311
54312
54312
54313
54313
54314
54314
54315
54315
54316
54316
54317
54317
54318
54318
54319
54319
54320
54320
54321
54321
54322
54322
54323
54323
54324
54324
54325
54325
54326
54326
54327
54327
54328
54328
54329
54329
54330
54330
54331
54331
54332
54332
54333
54333
54334
54334
54335
54335
54336
54336
54337
54337
54338
54338
54339
54339
54340
54340
54341
54341
54342
54342
54343
54343
54344
54344
54345
54345
54346
54346
54347
54347
54348
54348
54349
54349
54350
54350
54351
54351
54352
54352
54353
54353
54354
54354
54355
54355
54356
54356
54357
54357
54358
54358
54359
54359
54360
54360
54361
54361
54362
54362
54363
54363
54364
54364
54365
54365
54366
54366
54367
54367
54368
54368
54369
54369
54370
54370
54371
54371
54372
54372
54373
54373
54374
54374
54375
54375
54376
54376
54377
54377
54378
54378
54379
54379
54380
54380
54381
54381
54382
54382
54383
54383
54384
54384
54385
54385
54386
54386
54387
54387
54388
54388
54389
54389
54390
54390
54391
54391
54392
54392
54393
54393
54394
54394
54395
54395
54396
54396
54397
54397
54398
54398
54399
54399
54400
54400
54401
54401
54402
54402
54403
54403
54404
54404
54405
54405
54406
54406
54407
54407
54408
54408
54409
54409
54410
54410
54411
54411
54412
54412
54413
54413
54414
54414
54415
54415
54416
54416
54417
54417
54418
54418
54419
54419
54420
54420
54421
54421
54422
54422
54423
54423
54424
54424
54425
54425
54426
54426
54427
54427
54428
54428
54429
54429
54430
54430
54431
54431
54432
54432
54433
54433
54434
54434
54435
54435
54436
54436
54437
54437
54438
54438
54439
54439
54440
54440
54441
54441
54442
54442
54443
54443
54444
54444
54445
54445
54446
54446
54447
54447
54448
54448
54449
54450
54450
54451
54451
54452
54452
54453
54453
54454
54454
54455
54455
54456
54456
54457
54457
54458
54458
54459
54459
54460
54460
54461
54461
54462
54462
54463
54463
54464
54464
54465
54465
54466
54466
54467
54467
54468
54468
54469
54469
54470
54470
54471
54471
54472
54472
54473
54473
54474
54474
54475
54475
54476
54476
54477
54477
54478
54478
54479
54479
54480
54480
54481
54481
54482
54482
54483
54483
54484
54484
54485
54485
54486
54486
54487
54487
54488
54488
54489
54489
54490
54490
54491
54491
54492
54492
54493
54493
54494
54494
54495
54495
54496
54496
54497
54497
54498
54498
54499
54499
54500
54500
54501
54501
54502
54502
54503
54503
54504
54504
54505
54505
54506
54506
54507
54507
54508
54508
54509
54509
54510
54510
54511
54511
54512
54512
54513
54513
54514
54514
54515
54515
54516
54516
54517
54517
54518
54518
54519
54519
54520
54520
54521
54521
54522
54522
54523
54523
54524
54524
54525
54525
54526
54526
54527
54527
54528
54528
54529
54529
54530
54530
54531
54531
54532
54532
54533
54533
54534
54534
54535
54535
54536
54536
54537
54537
54538
54538
54539
54539
54540
54540
54541
54541
54542
54542
54543
54543
54544
54544
54545
54545
54546
54546
54547
54547
54548
54548
54549
54549
54550
54550
54551
54551
54552
54552
54553
54553
54554
54554
54555
54555
54556
54556
54557
54557
54558
54558
54559
54559
54560
54560
54561
54561
54562
54562
54563
54563
54564
54564
54565
54565
54566
54566
54567
54567
54568
54568
54569
54569
54570
54570
54571
54571
54572
54572
54573
54573
54574
54574
54575
54575
54576
54576
54577
54577
54578
54578
54579
54579
54580
54580
54581
54581
54582
54582
54583
54583
54584
54584
54585
54585
54586
54586
54587
54587
54588
54588
54589
54589
54590
54590
54591
54591
54592
54592
54593
54593
54594
54594
54595
54595
54596
54596
54597
54597
54598
54598
54599
54599
54600
54600
54601
54601
54602
54602
54603
54603
54604
54604
54605
54605
54606
54606
54607
54607
54608
54608
54609
54609
54610
54610
54611
54611
54612
54612
54613
54613
54614
54614
54615
54615
54616
54616
54617
54617
54618
54618
54619
54619
54620
54620
54621
54621
54622
54622
54623
54623
54624
54625
54626
54627
54628
54629
54630
54631
54632
54633
54634
54635
54636
54637
54638
54639
54640
54641
54642
54643
54644
54645
54646
54647
54648
54649
54650
54651
54652
54653
54654
54655
54656
54657
54658
54659
54660
54661
54662
54663
54664
54665
54666
54667
54668
54669
54670
54671
54672
54673
54674
54675
54676
54677
54678
54679
54680
54681
54682
54683
54684
54685
54686
54687
54688
54689
54690
54691
54692
54693
54694
54695
54696
54697
54698
54699
54700
54701
54702
54703
54704
54705
54706
54707
54708
54709
54710
54711
54712
54713
54714
54715
54716
54717
54718
54719
54720
54721
54722
54723
54724
54725
54726
54727
54728
54729
54730
54731
54732
54733
54734
54735
54736
54737
54738
54739
54740
54741
54742
54743
54744
54745
54746
54747
54748
54749
54750
54751
54752
54753
54754
54755
54756
54757
54758
54759
54760
54761
54762
54763
54764
54765
54766
54767
54768
54769
54770
54771
54772
54773
54774
54775
54776
54777
54778
54779
54780
54781
54782
54783
54784
54785
54786
54787
54788
54789
54790
54791
54792
54793
54794
54795
54796
54797
54798
0
175
350
525
700
875
1050
1225
1400
1575
1750
1925
2100
2275
2450
2625
2800
2975
3150
3325
27400
27575
27750
27925
28100
28275
28450
28625
28800
28975
29150
29325
29500
29675
29850
30025
30200
30375
30550
30725
24074
24249
24424
24599
24774
24949
25124
25299
25474
25649
25824
25999
26174
26349
26524
26699
26874
27049
27224
27399
51474
51649
51824
51999
52174
52349
52524
52699
52874
53049
53224
53399
53574
53749
53924
54099
54274
54449
54624
54799
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
9200
9230
9260
9290
9320
9350
9380
9410
9440
9470
9500
9530
9560
9590
9620
9650
9680
9710
9740
9770
9800
9830
9860
9890
9920
9950
9980
10010
10040
10070
10100
10130
10160
10190
10220
10250
10280
10310
10340
10370
10400
10430
10460
10490
10520
10550
10580
10610
10640
10670
10700
10730
10760
10790
10820
10850
10880
10910
10940
10970
11000
11030
11060
11090
11120
11150
11180
11210
11240
11270
11300
11330
11360
11390
11420
11450
11480
11510
11540
11570
11600
11630
11660
11690
11720
11750
11780
11810
11840
11870
11900
11930
11960
11990
12020
12050
12080
12110
12140
12170
12200
12230
12260
12290
12320
12350
12380
12410
12440
12470
12500
12530
12560
12590
12620
12650
12680
12710
12740
12770
12800
12830
12860
12890
12920
12950
12980
13010
13040
13070
13100
13130
13160
13190
13220
13250
13280
13310
13340
13370
13400
13430
13460
13490
13520
13550
13580
13610
13640
13670
22550
22551
22552
22553
22554
22555
22556
22557
22558
22559
22560
22561
22562
22563
22564
22565
22566
22567
22568
22569
22570
22571
22572
22573
22574
22575
22576
22577
22578
22579
22580
22581
22582
22583
22584
22585
22586
22587
22588
22589
22590
22591
22592
22593
22594
22595
22596
22597
22598
22599
22600
22601
22602
22603
22604
22605
22606
22607
22608
22609
22610
22611
22612
22613
22614
22615
22616
22617
22618
22619
22620
22621
22622
22623
22624
22625
22626
22627
22628
22629
22630
22631
22632
22633
22634
22635
22636
22637
22638
22639
22640
22641
22642
22643
22644
22645
22646
22647
22648
22649
22650
22651
22652
22653
22654
22655
22656
22657
22658
22659
22660
22661
22662
22663
22664
22665
22666
22667
22668
22669
22670
22671
22672
22673
22674
22675
22676
22677
22678
22679
22680
22681
22682
22683
22684
22685
22686
22687
22688
22689
22690
22691
22692
22693
22694
22695
22696
22697
22698
22699
27225
27226
27227
27228
27229
27230
27231
27232
27233
27234
27235
27236
27237
27238
27239
27240
27241
27242
27243
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259
27260
27261
27262
27263
27264
27265
27266
27267
27268
27269
27270
27271
27272
27273
27274
27275
27276
27277
27278
27279
27280
27281
27282
27283
27284
27285
27286
27287
27288
27289
27290
27291
27292
27293
27294
27295
27296
27297
27298
27299
27300
27301
27302
27303
27304
27305
27306
27307
27308
27309
27310
27311
27312
27313
27314
27315
27316
27317
27318
27319
27320
27321
27322
27323
27324
27325
27326
27327
27328
27329
27330
27331
27332
27333
27334
27335
27336
27337
27338
27339
27340
27341
27342
27343
27344
27345
27346
27347
27348
27349
27350
27351
27352
27353
27354
27355
27356
27357
27358
27359
27360
27361
27362
27363
27364
27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
27376
27377
27378
27379
27380
27381
27382
27383
27384
27385
27386
27387
27388
27389
27390
27391
27392
27393
27394
27395
27396
27397
27398
27399
27400
27401
27402
27403
27404
27405
27406
27407
27408
27409
27410
27411
27412
27413
27414
27415
27416
27417
27418
27419
27420
27421
27422
27423
27424
27425
27426
27427
27428
27429
27430
27431
27432
27433
27434
27435
27436
27437
27438
27439
27440
27441
27442
27443
27444
27445
27446
27447
27448
27449
27450
27451
27452
27453
27454
27455
27456
27457
27458
27459
27460
27461
27462
27463
27464
27465
27466
27467
27468
27469
27470
27471
27472
27473
27474
27475
27476
27477
27478
27479
27480
27481
27482
27483
27484
27485
27486
27487
27488
27489
27490
27491
27492
27493
27494
27495
27496
27497
27498
27499
27500
27501
27502
27503
27504
27505
27506
27507
27508
27509
27510
27511
27512
27513
27514
27515
27516
27517
27518
27519
27520
27521
27522
27523
27524
27525
27526
27527
27528
27529
27530
27531
27532
27533
27534
27535
27536
27537
27538
27539
27540
27541
27542
27543
27544
27545
27546
27547
27548
27549
27550
27551
27552
27553
27554
27555
27556
27557
27558
27559
27560
27561
27562
27563
27564
27565
27566
27567
27568
27569
27570
27571
27572
27573
27574
32100
32101
32102
32103
32104
32105
32106
32107
32108
32109
32110
32111
32112
32113
32114
32115
32116
32117
32118
32119
32120
32121
32122
32123
32124
32125
32126
32127
32128
32129
32130
32131
32132
32133
32134
32135
32136
32137
32138
32139
32140
32141
32142
32143
32144
32145
32146
32147
32148
32149
32150
32151
32152
32153
32154
32155
32156
32157
32158
32159
32160
32161
32162
32163
32164
32165
32166
32167
32168
32169
32170
32171
32172
32173
32174
32175
32176
32177
32178
32179
32180
32181
32182
32183
32184
32185
32186
32187
32188
32189
32190
32191
32192
32193
32194
32195
32196
32197
32198
32199
32200
32201
32202
32203
32204
32205
32206
32207
32208
32209
32210
32211
32212
32213
32214
32215
32216
32217
32218
32219
32220
32221
32222
32223
32224
32225
32226
32227
32228
32229
32230
32231
32232
32233
32234
32235
32236
32237
32238
32239
32240
32241
32242
32243
32244
32245
32246
32247
32248
32249
45600
45601
45602
45603
45604
45605
45606
45607
45608
45609
45610
45611
45612
45613
45614
45615
45616
45617
45618
45619
45620
45621
45622
45623
45624
45625
45626
45627
45628
45629
45630
45631
45632
45633
45634
45635
45636
45637
45638
45639
45640
45641
45642
45643
45644
45645
45646
45647
45648
45649
45650
45651
45652
45653
45654
45655
45656
45657
45658
45659
45660
45661
45662
45663
45664
45665
45666
45667
45668
45669
45670
45671
45672
45673
45674
45675
45676
45677
45678
45679
45680
45681
45682
45683
45684
45685
45686
45687
45688
45689
45690
45691
45692
45693
45694
45695
45696
45697
45698
45699
45700
45701
45702
45703
45704
45705
45706
45707
45708
45709
45710
45711
45712
45713
45714
45715
45716
45717
45718
45719
45720
45721
45722
45723
45724
45725
45726
45727
45728
45729
45730
45731
45732
45733
45734
45735
45736
45737
45738
45739
45740
45741
45742
45743
45744
45745
45746
45747
45748
45749
51300
51301
51302
51303
51304
51305
51306
51307
51308
51309
51310
51311
51312
51313
51314
51315
51316
51317
51318
51319
51320
51321
51322
51323
51324
51325
51326
51327
51328
51329
51330
51331
51332
51333
51334
51335
51336
51337
51338
51339
51340
51341
51342
51343
51344
51345
51346
51347
51348
51349
51350
51351
51352
51353
51354
51355
51356
51357
51358
51359
51360
51361
51362
51363
51364
51365
51366
51367
51368
51369
51370
51371
51372
51373
51374
51375
51376
51377
51378
51379
51380
51381
51382
51383
51384
51385
51386
51387
51388
51389
51390
51391
51392
51393
51394
51395
51396
51397
51398
51399
51400
51401
51402
51403
51404
51405
51406
51407
51408
51409
51410
51411
51412
51413
51414
51415
51416
51417
51418
51419
51420
51421
51422
51423
51424
51425
51426
51427
51428
51429
51430
51431
51432
51433
51434
51435
51436
51437
51438
51439
51440
51441
51442
51443
51444
51445
51446
51447
51448
51449
51450
51451
51452
51453
51454
51455
51456
51457
51458
51459
51460
51461
51462
51463
51464
51465
51466
51467
51468
51469
51470
51471
51472
51473
51474
4129
4159
4189
4219
4249
4279
4309
4339
4369
4399
4429
4459
4489
4519
4549
4579
4609
4639
4669
4699
4729
4759
4789
4819
4849
4879
4909
4939
4969
4999
5029
5059
5089
5119
5149
5179
5209
5239
5269
5299
5329
5359
5389
5419
5449
5479
5509
5539
5569
5599
5629
5659
5689
5719
5749
5779
5809
5839
5869
5899
5929
5959
5989
6019
6049
6079
6109
6139
6169
6199
6229
6259
6289
6319
6349
6379
6409
6439
6469
6499
6529
6559
6589
6619
6649
6679
6709
6739
6769
6799
6829
6859
6889
6919
6949
6979
7009
7039
7069
7099
7129
7159
7189
7219
7249
7279
7309
7339
7369
7399
7429
7459
7489
7519
7549
7579
7609
7639
7669
7699
7729
7759
7789
7819
7849
7879
7909
7939
7969
7999
8029
8059
8089
8119
8149
8179
8209
8239
8269
8299
8329
8359
8389
8419
8449
8479
8509
8539
8569
8599
8629
8659
8689
8719
8749
8779
8809
8839
8869
8899
8929
8959
8989
9019
9049
9079
9109
9139
9169
9199
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
22700
22730
22760
22790
22820
22850
22880
22910
22940
22970
23000
23030
23060
23090
23120
23150
23180
23210
23240
23270
31529
31559
31589
31619
31649
31679
31709
31739
31769
31799
31829
31859
31889
31919
31949
31979
32009
32039
32069
32099
40950
40951
40952
40953
40954
40955
40956
40957
40958
40959
40960
40961
40962
40963
40964
40965
40966
40967
40968
40969
40970
40971
40972
40973
40974
40975
40976
40977
40978
40979
40980
40981
40982
40983
40984
40985
40986
40987
40988
40989
40990
40991
40992
40993
40994
40995
40996
40997
40998
40999
41000
41001
41002
41003
41004
41005
41006
41007
41008
41009
41010
41011
41012
41013
41014
41015
41016
41017
41018
41019
41020
41021
41022
41023
41024
41025
41026
41027
41028
41029
41030
41031
41032
41033
41034
41035
41036
41037
41038
41039
41040
41041
41042
41043
41044
41045
41046
41047
41048
41049
41050
41051
41052
41053
41054
41055
41056
41057
41058
41059
41060
41061
41062
41063
41064
41065
41066
41067
41068
41069
41070
41071
41072
41073
41074
41075
41076
41077
41078
41079
41080
41081
41082
41083
41084
41085
41086
41087
41088
41089
41090
41091
41092
41093
41094
41095
41096
41097
41098
41099
45450
45451
45452
45453
45454
45455
45456
45457
45458
45459
45460
45461
45462
45463
45464
45465
45466
45467
45468
45469
45470
45471
45472
45473
45474
45475
45476
45477
45478
45479
45480
45481
45482
45483
45484
45485
45486
45487
45488
45489
45490
45491
45492
45493
45494
45495
45496
45497
45498
45499
45500
45501
45502
45503
45504
45505
45506
45507
45508
45509
45510
45511
45512
45513
45514
45515
45516
45517
45518
45519
45520
45521
45522
45523
45524
45525
45526
45527
45528
45529
45530
45531
45532
45533
45534
45535
45536
45537
45538
45539
45540
45541
45542
45543
45544
45545
45546
45547
45548
45549
45550
45551
45552
45553
45554
45555
45556
45557
45558
45559
45560
45561
45562
45563
45564
45565
45566
45567
45568
45569
45570
45571
45572
45573
45574
45575
45576
45577
45578
45579
45580
45581
45582
45583
45584
45585
45586
45587
45588
45589
45590
45591
45592
45593
45594
45595
45596
45597
45598
45599
50100
50130
50160
50190
50220
50250
50280
50310
50340
50370
50400
50430
50460
50490
50520
50550
50580
50610
50640
50670
0
175
350
525
700
875
1050
1225
1400
1575
1750
1925
2100
2275
2450
2625
2800
2975
3150
3325
1
176
351
526
701
876
1051
1226
1401
1576
1751
1926
2101
2276
2451
2626
2801
2976
3151
3326
2
177
352
527
702
877
1052
1227
1402
1577
1752
1927
2102
2277
2452
2627
2802
2977
3152
3327
3
178
353
528
703
878
1053
1228
1403
1578
1753
1928
2103
2278
2453
2628
2803
2978
3153
3328
4
179
354
529
704
879
1054
1229
1404
1579
1754
1929
2104
2279
2454
2629
2804
2979
3154
3329
5
180
355
530
705
880
1055
1230
1405
1580
1755
1930
2105
2280
2455
2630
2805
2980
3155
3330
6
181
356
531
706
881
1056
1231
1406
1581
1756
1931
2106
2281
2456
2631
2806
2981
3156
3331
7
182
357
532
707
882
1057
1232
1407
1582
1757
1932
2107
2282
2457
2632
2807
2982
3157
3332
8
183
358
533
708
883
1058
1233
1408
1583
1758
1933
2108
2283
2458
2633
2808
2983
3158
3333
9
184
359
534
709
884
1059
1234
1409
1584
1759
1934
2109
2284
2459
2634
2809
2984
3159
3334
10
185
360
535
710
885
1060
1235
1410
1585
1760
1935
2110
2285
2460
2635
2810
2985
3160
3335
11
186
361
536
711
886
1061
1236
1411
1586
1761
1936
2111
2286
2461
2636
2811
2986
3161
3336
12
187
362
537
712
887
1062
1237
1412
1587
1762
1937
2112
2287
2462
2637
2812
2987
3162
3337
13
188
363
538
713
888
1063
1238
1413
1588
1763
1938
2113
2288
2463
2638
2813
2988
3163
3338
14
189
364
539
714
889
1064
1239
1414
1589
1764
1939
2114
2289
2464
2639
2814
2989
3164
3339
15
190
365
540
715
890
1065
1240
1415
1590
1765
1940
2115
2290
2465
2640
2815
2990
3165
3340
16
191
366
541
716
891
1066
1241
1416
1591
1766
1941
2116
2291
2466
2641
2816
2991
3166
3341
17
192
367
542
717
892
1067
1242
1417
1592
1767
1942
2117
2292
2467
2642
2817
2992
3167
3342
18
193
368
543
718
893
1068
1243
1418
1593
1768
1943
2118
2293
2468
2643
2818
2993
3168
3343
19
194
369
544
719
894
1069
1244
1419
1594
1769
1944
2119
2294
2469
2644
2819
2994
3169
3344
20
195
370
545
720
895
1070
1245
1420
1595
1770
1945
2120
2295
2470
2645
2820
2995
3170
3345
21
196
371
546
721
896
1071
1246
1421
1596
1771
1946
2121
2296
2471
2646
2821
2996
3171
3346
22
197
372
547
722
897
1072
1247
1422
1597
1772
1947
2122
2297
2472
2647
2822
2997
3172
3347
23
198
373
548
723
898
1073
1248
1423
1598
1773
1948
2123
2298
2473
2648
2823
2998
3173
3348
24
199
374
549
724
899
1074
1249
1424
1599
1774
1949
2124
2299
2474
2649
2824
2999
3174
3349
25
200
375
550
725
900
1075
1250
1425
1600
1775
1950
2125
2300
2475
2650
2825
3000
3175
3350
26
201
376
551
726
901
1076
1251
1426
1601
1776
1951
2126
2301
2476
2651
2826
3001
3176
3351
27
202
377
552
727
902
1077
1252
1427
1602
1777
1952
2127
2302
2477
2652
2827
3002
3177
3352
28
203
378
553
728
903
1078
1253
1428
1603
1778
1953
2128
2303
2478
2653
2828
3003
3178
3353
29
204
379
554
729
904
1079
1254
1429
1604
1779
1954
2129
2304
2479
2654
2829
3004
3179
3354
30
205
380
555
730
905
1080
1255
1430
1605
1780
1955
2130
2305
2480
2655
2830
3005
3180
3355
31
206
381
556
731
906
1081
1256
1431
1606
1781
1956
2131
2306
2481
2656
2831
3006
3181
3356
32
207
382
557
732
907
1082
1257
1432
1607
1782
1957
2132
2307
2482
2657
2832
3007
3182
3357
33
208
383
558
733
908
1083
1258
1433
1608
1783
1958
2133
2308
2483
2658
2833
3008
3183
3358
34
209
384
559
734
909
1084
1259
1434
1609
1784
1959
2134
2309
2484
2659
2834
3009
3184
3359
35
210
385
560
735
910
1085
1260
1435
1610
1785
1960
2135
2310
2485
2660
2835
3010
3185
3360
36
211
386
561
736
911
1086
1261
1436
1611
1786
1961
2136
2311
2486
2661
2836
3011
3186
3361
37
212
387
562
737
912
1087
1262
1437
1612
1787
1962
2137
2312
2487
2662
2837
3012
3187
3362
38
213
388
563
738
913
1088
1263
1438
1613
1788
1963
2138
2313
2488
2663
2838
3013
3188
3363
39
214
389
564
739
914
1089
1264
1439
1614
1789
1964
2139
2314
2489
2664
2839
3014
3189
3364
40
215
390
565
740
915
1090
1265
1440
1615
1790
1965
2140
2315
2490
2665
2840
3015
3190
3365
41
216
391
566
741
916
1091
1266
1441
1616
1791
1966
2141
2316
2491
2666
2841
3016
3191
3366
42
217
392
567
742
917
1092
1267
1442
1617
1792
1967
2142
2317
2492
2667
2842
3017
3192
3367
43
218
393
568
743
918
1093
1268
1443
1618
1793
1968
2143
2318
2493
2668
2843
3018
3193
3368
44
219
394
569
744
919
1094
1269
1444
1619
1794
1969
2144
2319
2494
2669
2844
3019
3194
3369
45
220
395
570
745
920
1095
1270
1445
1620
1795
1970
2145
2320
2495
2670
2845
3020
3195
3370
46
221
396
571
746
921
1096
1271
1446
1621
1796
1971
2146
2321
2496
2671
2846
3021
3196
3371
47
222
397
572
747
922
1097
1272
1447
1622
1797
1972
2147
2322
2497
2672
2847
3022
3197
3372
48
223
398
573
748
923
1098
1273
1448
1623
1798
1973
2148
2323
2498
2673
2848
3023
3198
3373
49
224
399
574
749
924
1099
1274
1449
1624
1799
1974
2149
2324
2499
2674
2849
3024
3199
3374
50
225
400
575
750
925
1100
1275
1450
1625
1800
1975
2150
2325
2500
2675
2850
3025
3200
3375
51
226
401
576
751
926
1101
1276
1451
1626
1801
1976
2151
2326
2501
2676
2851
3026
3201
3376
52
227
402
577
752
927
1102
1277
1452
1627
1802
1977
2152
2327
2502
2677
2852
3027
3202
3377
53
228
403
578
753
928
1103
1278
1453
1628
1803
1978
2153
2328
2503
2678
2853
3028
3203
3378
54
229
404
579
754
929
1104
1279
1454
1629
1804
1979
2154
2329
2504
2679
2854
3029
3204
3379
55
230
405
580
755
930
1105
1280
1455
1630
1805
1980
2155
2330
2505
2680
2855
3030
3205
3380
56
231
406
581
756
931
1106
1281
1456
1631
1806
1981
2156
2331
2506
2681
2856
3031
3206
3381
57
232
407
582
757
932
1107
1282
1457
1632
1807
1982
2157
2332
2507
2682
2857
3032
3207
3382
58
233
408
583
758
933
1108
1283
1458
1633
1808
1983
2158
2333
2508
2683
2858
3033
3208
3383
59
234
409
584
759
934
1109
1284
1459
1634
1809
1984
2159
2334
2509
2684
2859
3034
3209
3384
60
235
410
585
760
935
1110
1285
1460
1635
1810
1985
2160
2335
2510
2685
2860
3035
3210
3385
61
236
411
586
761
936
1111
1286
1461
1636
1811
1986
2161
2336
2511
2686
2861
3036
3211
3386
62
237
412
587
762
937
1112
1287
1462
1637
1812
1987
2162
2337
2512
2687
2862
3037
3212
3387
63
238
413
588
763
938
1113
1288
1463
1638
1813
1988
2163
2338
2513
2688
2863
3038
3213
3388
64
239
414
589
764
939
1114
1289
1464
1639
1814
1989
2164
2339
2514
2689
2864
3039
3214
3389
65
240
415
590
765
940
1115
1290
1465
1640
1815
1990
2165
2340
2515
2690
2865
3040
3215
3390
66
241
416
591
766
941
1116
1291
1466
1641
1816
1991
2166
2341
2516
2691
2866
3041
3216
3391
67
242
417
592
767
942
1117
1292
1467
1642
1817
1992
2167
2342
2517
2692
2867
3042
3217
3392
68
243
418
593
768
943
1118
1293
1468
1643
1818
1993
2168
2343
2518
2693
2868
3043
3218
3393
69
244
419
594
769
944
1119
1294
1469
1644
1819
1994
2169
2344
2519
2694
2869
3044
3219
3394
70
245
420
595
770
945
1120
1295
1470
1645
1820
1995
2170
2345
2520
2695
2870
3045
3220
3395
71
246
421
596
771
946
1121
1296
1471
1646
1821
1996
2171
2346
2521
2696
2871
3046
3221
3396
72
247
422
597
772
947
1122
1297
1472
1647
1822
1997
2172
2347
2522
2697
2872
3047
3222
3397
73
248
423
598
773
948
1123
1298
1473
1648
1823
1998
2173
2348
2523
2698
2873
3048
3223
3398
74
249
424
599
774
949
1124
1299
1474
1649
1824
1999
2174
2349
2524
2699
2874
3049
3224
3399
75
250
425
600
775
950
1125
1300
1475
1650
1825
2000
2175
2350
2525
2700
2875
3050
3225
3400
76
251
426
601
776
951
1126
1301
1476
1651
1826
2001
2176
2351
2526
2701
2876
3051
3226
3401
77
252
427
602
777
952
1127
1302
1477
1652
1827
2002
2177
2352
2527
2702
2877
3052
3227
3402
78
253
428
603
778
953
1128
1303
1478
1653
1828
2003
2178
2353
2528
2703
2878
3053
3228
3403
79
254
429
604
779
954
1129
1304
1479
1654
1829
2004
2179
2354
2529
2704
2879
3054
3229
3404
80
255
430
605
780
955
1130
1305
1480
1655
1830
2005
2180
2355
2530
2705
2880
3055
3230
3405
81
256
431
606
781
956
1131
1306
1481
1656
1831
2006
2181
2356
2531
2706
2881
3056
3231
3406
82
257
432
607
782
957
1132
1307
1482
1657
1832
2007
2182
2357
2532
2707
2882
3057
3232
3407
83
258
433
608
783
958
1133
1308
1483
1658
1833
2008
2183
2358
2533
2708
2883
3058
3233
3408
84
259
434
609
784
959
1134
1309
1484
1659
1834
2009
2184
2359
2534
2709
2884
3059
3234
3409
85
260
435
610
785
960
1135
1310
1485
1660
1835
2010
2185
2360
2535
2710
2885
3060
3235
3410
86
261
436
611
786
961
1136
1311
1486
1661
1836
2011
2186
2361
2536
2711
2886
3061
3236
3411
87
262
437
612
787
962
1137
1312
1487
1662
1837
2012
2187
2362
2537
2712
2887
3062
3237
3412
88
263
438
613
788
963
1138
1313
1488
1663
1838
2013
2188
2363
2538
2713
2888
3063
3238
3413
89
264
439
614
789
964
1139
1314
1489
1664
1839
2014
2189
2364
2539
2714
2889
3064
3239
3414
90
265
440
615
790
965
1140
1315
1490
1665
1840
2015
2190
2365
2540
2715
2890
3065
3240
3415
91
266
441
616
791
966
1141
1316
1491
1666
1841
2016
2191
2366
2541
2716
2891
3066
3241
3416
92
267
442
617
792
967
1142
1317
1492
1667
1842
2017
2192
2367
2542
2717
2892
3067
3242
3417
93
268
443
618
793
968
1143
1318
1493
1668
1843
2018
2193
2368
2543
2718
2893
3068
3243
3418
94
269
444
619
794
969
1144
1319
1494
1669
1844
2019
2194
2369
2544
2719
2894
3069
3244
3419
95
270
445
620
795
970
1145
1320
1495
1670
1845
2020
2195
2370
2545
2720
2895
3070
3245
3420
96
271
446
621
796
971
1146
1321
1496
1671
1846
2021
2196
2371
2546
2721
2896
3071
3246
3421
97
272
447
622
797
972
1147
1322
1497
1672
1847
2022
2197
2372
2547
2722
2897
3072
3247
3422
98
273
448
623
798
973
1148
1323
1498
1673
1848
2023
2198
2373
2548
2723
2898
3073
3248
3423
99
274
449
624
799
974
1149
1324
1499
1674
1849
2024
2199
2374
2549
2724
2899
3074
3249
3424
100
275
450
625
800
975
1150
1325
1500
1675
1850
2025
2200
2375
2550
2725
2900
3075
3250
3425
101
276
451
626
801
976
1151
1326
1501
1676
1851
2026
2201
2376
2551
2726
2901
3076
3251
3426
102
277
452
627
802
977
1152
1327
1502
1677
1852
2027
2202
2377
2552
2727
2902
3077
3252
3427
103
278
453
628
803
978
1153
1328
1503
1678
1853
2028
2203
2378
2553
2728
2903
3078
3253
3428
104
279
454
629
804
979
1154
1329
1504
1679
1854
2029
2204
2379
2554
2729
2904
3079
3254
3429
105
280
455
630
805
980
1155
1330
1505
1680
1855
2030
2205
2380
2555
2730
2905
3080
3255
3430
106
281
456
631
806
981
1156
1331
1506
1681
1856
2031
2206
2381
2556
2731
2906
3081
3256
3431
107
282
457
632
807
982
1157
1332
1507
1682
1857
2032
2207
2382
2557
2732
2907
3082
3257
3432
108
283
458
633
808
983
1158
1333
1508
1683
1858
2033
2208
2383
2558
2733
2908
3083
3258
3433
109
284
459
634
809
984
1159
1334
1509
1684
1859
2034
2209
2384
2559
2734
2909
3084
3259
3434
110
285
460
635
810
985
1160
1335
1510
1685
1860
2035
2210
2385
2560
2735
2910
3085
3260
3435
111
286
461
636
811
986
1161
1336
1511
1686
1861
2036
2211
2386
2561
2736
2911
3086
3261
3436
112
287
462
637
812
987
1162
1337
1512
1687
1862
2037
2212
2387
2562
2737
2912
3087
3262
3437
113
288
463
638
813
988
1163
1338
1513
1688
1863
2038
2213
2388
2563
2738
2913
3088
3263
3438
114
289
464
639
814
989
1164
1339
1514
1689
1864
2039
2214
2389
2564
2739
2914
3089
3264
3439
115
290
465
640
815
990
1165
1340
1515
1690
1865
2040
2215
2390
2565
2740
2915
3090
3265
3440
116
291
466
641
816
991
1166
1341
1516
1691
1866
2041
2216
2391
2566
2741
2916
3091
3266
3441
117
292
467
642
817
992
1167
1342
1517
1692
1867
2042
2217
2392
2567
2742
2917
3092
3267
3442
118
293
468
643
818
993
1168
1343
1518
1693
1868
2043
2218
2393
2568
2743
2918
3093
3268
3443
119
294
469
644
819
994
1169
1344
1519
1694
1869
2044
2219
2394
2569
2744
2919
3094
3269
3444
120
295
470
645
820
995
1170
1345
1520
1695
1870
2045
2220
2395
2570
2745
2920
3095
3270
3445
121
296
471
646
821
996
1171
1346
1521
1696
1871
2046
2221
2396
2571
2746
2921
3096
3271
3446
122
297
472
647
822
997
1172
1347
1522
1697
1872
2047
2222
2397
2572
2747
2922
3097
3272
3447
123
298
473
648
823
998
1173
1348
1523
1698
1873
2048
2223
2398
2573
2748
2923
3098
3273
3448
124
299
474
649
824
999
1174
1349
1524
1699
1874
2049
2224
2399
2574
2749
2924
3099
3274
3449
125
300
475
650
825
1000
1175
1350
1525
1700
1875
2050
2225
2400
2575
2750
2925
3100
3275
3450
126
301
476
651
826
1001
1176
1351
1526
1701
1876
2051
2226
2401
2576
2751
2926
3101
3276
3451
127
302
477
652
827
1002
1177
1352
1527
1702
1877
2052
2227
2402
2577
2752
2927
3102
3277
3452
128
303
478
653
828
1003
1178
1353
1528
1703
1878
2053
2228
2403
2578
2753
2928
3103
3278
3453
129
304
479
654
829
1004
1179
1354
1529
1704
1879
2054
2229
2404
2579
2754
2929
3104
3279
3454
130
305
480
655
830
1005
1180
1355
1530
1705
1880
2055
2230
2405
2580
2755
2930
3105
3280
3455
131
306
481
656
831
1006
1181
1356
1531
1706
1881
2056
2231
2406
2581
2756
2931
3106
3281
3456
132
307
482
657
832
1007
1182
1357
1532
1707
1882
2057
2232
2407
2582
2757
2932
3107
3282
3457
133
308
483
658
833
1008
1183
1358
1533
1708
1883
2058
2233
2408
2583
2758
2933
3108
3283
3458
134
309
484
659
834
1009
1184
1359
1534
1709
1884
2059
2234
2409
2584
2759
2934
3109
3284
3459
135
310
485
660
835
1010
1185
1360
1535
1710
1885
2060
2235
2410
2585
2760
2935
3110
3285
3460
136
311
486
661
836
1011
1186
1361
1536
1711
1886
2061
2236
2411
2586
2761
2936
3111
3286
3461
137
312
487
662
837
1012
1187
1362
1537
1712
1887
2062
2237
2412
2587
2762
2937
3112
3287
3462
138
313
488
663
838
1013
1188
1363
1538
1713
1888
2063
2238
2413
2588
2763
2938
3113
3288
3463
139
314
489
664
839
1014
1189
1364
1539
1714
1889
2064
2239
2414
2589
2764
2939
3114
3289
3464
140
315
490
665
840
1015
1190
1365
1540
1715
1890
2065
2240
2415
2590
2765
2940
3115
3290
3465
141
316
491
666
841
1016
1191
1366
1541
1716
1891
2066
2241
2416
2591
2766
2941
3116
3291
3466
142
317
492
667
842
1017
1192
1367
1542
1717
1892
2067
2242
2417
2592
2767
2942
3117
3292
3467
143
318
493
668
843
1018
1193
1368
1543
1718
1893
2068
2243
2418
2593
2768
2943
3118
3293
3468
144
319
494
669
844
1019
1194
1369
1544
1719
1894
2069
2244
2419
2594
2769
2944
3119
3294
3469
145
320
495
670
845
1020
1195
1370
1545
1720
1895
2070
2245
2420
2595
2770
2945
3120
3295
3470
146
321
496
671
846
1021
1196
1371
1546
1721
1896
2071
2246
2421
2596
2771
2946
3121
3296
3471
147
322
497
672
847
1022
1197
1372
1547
1722
1897
2072
2247
2422
2597
2772
2947
3122
3297
3472
148
323
498
673
848
1023
1198
1373
1548
1723
1898
2073
2248
2423
2598
2773
2948
3123
3298
3473
149
324
499
674
849
1024
1199
1374
1549
1724
1899
2074
2249
2424
2599
2774
2949
3124
3299
3474
150
325
500
675
850
1025
1200
1375
1550
1725
1900
2075
2250
2425
2600
2775
2950
3125
3300
3475
151
326
501
676
851
1026
1201
1376
1551
1726
1901
2076
2251
2426
2601
2776
2951
3126
3301
3476
152
327
502
677
852
1027
1202
1377
1552
1727
1902
2077
2252
2427
2602
2777
2952
3127
3302
3477
153
328
503
678
853
1028
1203
1378
1553
1728
1903
2078
2253
2428
2603
2778
2953
3128
3303
3478
154
329
504
679
854
1029
1204
1379
1554
1729
1904
2079
2254
2429
2604
2779
2954
3129
3304
3479
155
330
505
680
855
1030
1205
1380
1555
1730
1905
2080
2255
2430
2605
2780
2955
3130
3305
3480
156
331
506
681
856
1031
1206
1381
1556
1731
1906
2081
2256
2431
2606
2781
2956
3131
3306
3481
157
332
507
682
857
1032
1207
1382
1557
1732
1907
2082
2257
2432
2607
2782
2957
3132
3307
3482
158
333
508
683
858
1033
1208
1383
1558
1733
1908
2083
2258
2433
2608
2783
2958
3133
3308
3483
159
334
509
684
859
1034
1209
1384
1559
1734
1909
2084
2259
2434
2609
2784
2959
3134
3309
3484
160
335
510
685
860
1035
1210
1385
1560
1735
1910
2085
2260
2435
2610
2785
2960
3135
3310
3485
161
336
511
686
861
1036
1211
1386
1561
1736
1911
2086
2261
2436
2611
2786
2961
3136
3311
3486
162
337
512
687
862
1037
1212
1387
1562
1737
1912
2087
2262
2437
2612
2787
2962
3137
3312
3487
163
338
513
688
863
1038
1213
1388
1563
1738
1913
2088
2263
2438
2613
2788
2963
3138
3313
3488
164
339
514
689
864
1039
1214
1389
1564
1739
1914
2089
2264
2439
2614
2789
2964
3139
3314
3489
165
340
515
690
865
1040
1215
1390
1565
1740
1915
2090
2265
2440
2615
2790
2965
3140
3315
3490
166
341
516
691
866
1041
1216
1391
1566
1741
1916
2091
2266
2441
2616
2791
2966
3141
3316
3491
167
342
517
692
867
1042
1217
1392
1567
1742
1917
2092
2267
2442
2617
2792
2967
3142
3317
3492
168
343
518
693
868
1043
1218
1393
1568
1743
1918
2093
2268
2443
2618
2793
2968
3143
3318
3493
169
344
519
694
869
1044
1219
1394
1569
1744
1919
2094
2269
2444
2619
2794
2969
3144
3319
3494
170
345
520
695
870
1045
1220
1395
1570
1745
1920
2095
2270
2445
2620
2795
2970
3145
3320
3495
171
346
521
696
871
1046
1221
1396
1571
1746
1921
2096
2271
2446
2621
2796
2971
3146
3321
3496
172
347
522
697
872
1047
1222
1397
1572
1747
1922
2097
2272
2447
2622
2797
2972
3147
3322
3497
173
348
523
698
873
1048
1223
1398
1573
1748
1923
2098
2273
2448
2623
2798
2973
3148
3323
3498
174
349
524
699
874
1049
1224
1399
1574
1749
1924
2099
2274
2449
2624
2799
2974
3149
3324
3499
3500
3530
3560
3590
3620
3650
3680
3710
3740
3770
3800
3830
3860
3890
3920
3950
3980
4010
4040
4070
3501
3531
3561
3591
3621
3651
3681
3711
3741
3771
3801
3831
3861
3891
3921
3951
3981
4011
4041
4071
3502
3532
3562
3592
3622
3652
3682
3712
3742
3772
3802
3832
3862
3892
3922
3952
3982
4012
4042
4072
3503
3533
3563
3593
3623
3653
3683
3713
3743
3773
3803
3833
3863
3893
3923
3953
3983
4013
4043
4073
3504
3534
3564
3594
3624
3654
3684
3714
3744
3774
3804
3834
3864
3894
3924
3954
3984
4014
4044
4074
3505
3535
3565
3595
3625
3655
3685
3715
3745
3775
3805
3835
3865
3895
3925
3955
3985
4015
4045
4075
3506
3536
3566
3596
3626
3656
3686
3716
3746
3776
3806
3836
3866
3896
3926
3956
3986
4016
4046
4076
3507
3537
3567
3597
3627
3657
3687
3717
3747
3777
3807
3837
3867
3897
3927
3957
3987
4017
4047
4077
3508
3538
3568
3598
3628
3658
3688
3718
3748
3778
3808
3838
3868
3898
3928
3958
3988
4018
4048
4078
3509
3539
3569
3599
3629
3659
3689
3719
3749
3779
3809
3839
3869
3899
3929
3959
3989
4019
4049
4079
3510
3540
3570
3600
3630
3660
3690
3720
3750
3780
3810
3840
3870
3900
3930
3960
3990
4020
4050
4080
3511
3541
3571
3601
3631
3661
3691
3721
3751
3781
3811
3841
3871
3901
3931
3961
3991
4021
4051
4081
3512
3542
3572
3602
3632
3662
3692
3722
3752
3782
3812
3842
3872
3902
3932
3962
3992
4022
4052
4082
3513
3543
3573
3603
3633
3663
3693
3723
3753
3783
3813
3843
3873
3903
3933
3963
3993
4023
4053
4083
3514
3544
3574
3604
3634
3664
3694
3724
3754
3784
3814
3844
3874
3904
3934
3964
3994
4024
4054
4084
3515
3545
3575
3605
3635
3665
3695
3725
3755
3785
3815
3845
3875
3905
3935
3965
3995
4025
4055
4085
3516
3546
3576
3606
3636
3666
3696
3726
3756
3786
3816
3846
3876
3906
3936
3966
3996
4026
4056
4086
3517
3547
3577
3607
3637
3667
3697
3727
3757
3787
3817
3847
3877
3907
3937
3967
3997
4027
4057
4087
3518
3548
3578
3608
3638
3668
3698
3728
3758
3788
3818
3848
3878
3908
3938
3968
3998
4028
4058
4088
3519
3549
3579
3609
3639
3669
3699
3729
3759
3789
3819
3849
3879
3909
3939
3969
3999
4029
4059
4089
3520
3550
3580
3610
3640
3670
3700
3730
3760
3790
3820
3850
3880
3910
3940
3970
4000
4030
4060
4090
3521
3551
3581
3611
3641
3671
3701
3731
3761
3791
3821
3851
3881
3911
3941
3971
4001
4031
4061
4091
3522
3552
3582
3612
3642
3672
3702
3732
3762
3792
3822
3852
3882
3912
3942
3972
4002
4032
4062
4092
3523
3553
3583
3613
3643
3673
3703
3733
3763
3793
3823
3853
3883
3913
3943
3973
4003
4033
4063
4093
3524
3554
3584
3614
3644
3674
3704
3734
3764
3794
3824
3854
3884
3914
3944
3974
4004
4034
4064
4094
3525
3555
3585
3615
3645
3675
3705
3735
3765
3795
3825
3855
3885
3915
3945
3975
4005
4035
4065
4095
3526
3556
3586
3616
3646
3676
3706
3736
3766
3796
3826
3856
3886
3916
3946
3976
4006
4036
4066
4096
3527
3557
3587
3617
3647
3677
3707
3737
3767
3797
3827
3857
3887
3917
3947
3977
4007
4037
4067
4097
3528
3558
3588
3618
3648
3678
3708
3738
3768
3798
3828
3858
3888
3918
3948
3978
4008
4038
4068
4098
3529
3559
3589
3619
3649
3679
3709
3739
3769
3799
3829
3859
3889
3919
3949
3979
4009
4039
4069
4099
4100
4130
4160
4190
4220
4250
4280
4310
4340
4370
4400
4430
4460
4490
4520
4550
4580
4610
4640
4670
4101
4131
4161
4191
4221
4251
4281
4311
4341
4371
4401
4431
4461
4491
4521
4551
4581
4611
4641
4671
4102
4132
4162
4192
4222
4252
4282
4312
4342
4372
4402
4432
4462
4492
4522
4552
4582
4612
4642
4672
4103
4133
4163
4193
4223
4253
4283
4313
4343
4373
4403
4433
4463
4493
4523
4553
4583
4613
4643
4673
4104
4134
4164
4194
4224
4254
4284
4314
4344
4374
4404
4434
4464
4494
4524
4554
4584
4614
4644
4674
4105
4135
4165
4195
4225
4255
4285
4315
4345
4375
4405
4435
4465
4495
4525
4555
4585
4615
4645
4675
4106
4136
4166
4196
4226
4256
4286
4316
4346
4376
4406
4436
4466
4496
4526
4556
4586
4616
4646
4676
4107
4137
4167
4197
4227
4257
4287
4317
4347
4377
4407
4437
4467
4497
4527
4557
4587
4617
4647
4677
4108
4138
4168
4198
4228
4258
4288
4318
4348
4378
4408
4438
4468
4498
4528
4558
4588
4618
4648
4678
4109
4139
4169
4199
4229
4259
4289
4319
4349
4379
4409
4439
4469
4499
4529
4559
4589
4619
4649
4679
4110
4140
4170
4200
4230
4260
4290
4320
4350
4380
4410
4440
4470
4500
4530
4560
4590
4620
4650
4680
4111
4141
4171
4201
4231
4261
4291
4321
4351
4381
4411
4441
4471
4501
4531
4561
4591
4621
4651
4681
4112
4142
4172
4202
4232
4262
4292
4322
4352
4382
4412
4442
4472
4502
4532
4562
4592
4622
4652
4682
4113
4143
4173
4203
4233
4263
4293
4323
4353
4383
4413
4443
4473
4503
4533
4563
4593
4623
4653
4683
4114
4144
4174
4204
4234
4264
4294
4324
4354
4384
4414
4444
4474
4504
4534
4564
4594
4624
4654
4684
4115
4145
4175
4205
4235
4265
4295
4325
4355
4385
4415
4445
4475
4505
4535
4565
4595
4625
4655
4685
4116
4146
4176
4206
4236
4266
4296
4326
4356
4386
4416
4446
4476
4506
4536
4566
4596
4626
4656
4686
4117
4147
4177
4207
4237
4267
4297
4327
4357
4387
4417
4447
4477
4507
4537
4567
4597
4627
4657
4687
4118
4148
4178
4208
4238
4268
4298
4328
4358
4388
4418
4448
4478
4508
4538
4568
4598
4628
4658
4688
4119
4149
4179
4209
4239
4269
4299
4329
4359
4389
4419
4449
4479
4509
4539
4569
4599
4629
4659
4689
4120
4150
4180
4210
4240
4270
4300
4330
4360
4390
4420
4450
4480
4510
4540
4570
4600
4630
4660
4690
4121
4151
4181
4211
4241
4271
4301
4331
4361
4391
4421
4451
4481
4511
4541
4571
4601
4631
4661
4691
4122
4152
4182
4212
4242
4272
4302
4332
4362
4392
4422
4452
4482
4512
4542
4572
4602
4632
4662
4692
4123
4153
4183
4213
4243
4273
4303
4333
4363
4393
4423
4453
4483
4513
4543
4573
4603
4633
4663
4693
4124
4154
4184
4214
4244
4274
4304
4334
4364
4394
4424
4454
4484
4514
4544
4574
4604
4634
4664
4694
4125
4155
4185
4215
4245
4275
4305
4335
4365
4395
4425
4455
4485
4515
4545
4575
4605
4635
4665
4695
4126
4156
4186
4216
4246
4276
4306
4336
4366
4396
4426
4456
4486
4516
4546
4576
4606
4636
4666
4696
4127
4157
4187
4217
4247
4277
4307
4337
4367
4397
4427
4457
4487
4517
4547
4577
4607
4637
4667
4697
4128
4158
4188
4218
4248
4278
4308
4338
4368
4398
4428
4458
4488
4518
4548
4578
4608
4638
4668
4698
4129
4159
4189
4219
4249
4279
4309
4339
4369
4399
4429
4459
4489
4519
4549
4579
4609
4639
4669
4699
9200
9230
9260
9290
9320
9350
9380
9410
9440
9470
9500
9530
9560
9590
9620
9650
9680
9710
9740
9770
9800
9830
9860
9890
9920
9950
9980
10010
10040
10070
10100
10130
10160
10190
10220
10250
10280
10310
10340
10370
10400
10430
10460
10490
10520
10550
10580
10610
10640
10670
10700
10730
10760
10790
10820
10850
10880
10910
10940
10970
11000
11030
11060
11090
11120
11150
11180
11210
11240
11270
11300
11330
11360
11390
11420
11450
11480
11510
11540
11570
11600
11630
11660
11690
11720
11750
11780
11810
11840
11870
11900
11930
11960
11990
12020
12050
12080
12110
12140
12170
12200
12230
12260
12290
12320
12350
12380
12410
12440
12470
12500
12530
12560
12590
12620
12650
12680
12710
12740
12770
12800
12830
12860
12890
12920
12950
12980
13010
13040
13070
13100
13130
13160
13190
13220
13250
13280
13310
13340
13370
13400
13430
13460
13490
13520
13550
13580
13610
13640
13670
9201
9231
9261
9291
9321
9351
9381
9411
9441
9471
9501
9531
9561
9591
9621
9651
9681
9711
9741
9771
9801
9831
9861
9891
9921
9951
9981
10011
10041
10071
10101
10131
10161
10191
10221
10251
10281
10311
10341
10371
10401
10431
10461
10491
10521
10551
10581
10611
10641
10671
10701
10731
10761
10791
10821
10851
10881
10911
10941
10971
11001
11031
11061
11091
11121
11151
11181
11211
11241
11271
11301
11331
11361
11391
11421
11451
11481
11511
11541
11571
11601
11631
11661
11691
11721
11751
11781
11811
11841
11871
11901
11931
11961
11991
12021
12051
12081
12111
12141
12171
12201
12231
12261
12291
12321
12351
12381
12411
12441
12471
12501
12531
12561
12591
12621
12651
12681
12711
12741
12771
12801
12831
12861
12891
12921
12951
12981
13011
13041
13071
13101
13131
13161
13191
13221
13251
13281
13311
13341
13371
13401
13431
13461
13491
13521
13551
13581
13611
13641
13671
9202
9232
9262
9292
9322
9352
9382
9412
9442
9472
9502
9532
9562
9592
9622
9652
9682
9712
9742
9772
9802
9832
9862
9892
9922
9952
9982
10012
10042
10072
10102
10132
10162
10192
10222
10252
10282
10312
10342
10372
10402
10432
10462
10492
10522
10552
10582
10612
10642
10672
10702
10732
10762
10792
10822
10852
10882
10912
10942
10972
11002
11032
11062
11092
11122
11152
11182
11212
11242
11272
11302
11332
11362
11392
11422
11452
11482
11512
11542
11572
11602
11632
11662
11692
11722
11752
11782
11812
11842
11872
11902
11932
11962
11992
12022
12052
12082
12112
12142
12172
12202
12232
12262
12292
12322
12352
12382
12412
12442
12472
12502
12532
12562
12592
12622
12652
12682
12712
12742
12772
12802
12832
12862
12892
12922
12952
12982
13012
13042
13072
13102
13132
13162
13192
13222
13252
13282
13312
13342
13372
13402
13432
13462
13492
13522
13552
13582
13612
13642
13672
9203
9233
9263
9293
9323
9353
9383
9413
9443
9473
9503
9533
9563
9593
9623
9653
9683
9713
9743
9773
9803
9833
9863
9893
9923
9953
9983
10013
10043
10073
10103
10133
10163
10193
10223
10253
10283
10313
10343
10373
10403
10433
10463
10493
10523
10553
10583
10613
10643
10673
10703
10733
10763
10793
10823
10853
10883
10913
10943
10973
11003
11033
11063
11093
11123
11153
11183
11213
11243
11273
11303
11333
11363
11393
11423
11453
11483
11513
11543
11573
11603
11633
11663
11693
11723
11753
11783
11813
11843
11873
11903
11933
11963
11993
12023
12053
12083
12113
12143
12173
12203
12233
12263
12293
12323
12353
12383
12413
12443
12473
12503
12533
12563
12593
12623
12653
12683
12713
12743
12773
12803
12833
12863
12893
12923
12953
12983
13013
13043
13073
13103
13133
13163
13193
13223
13253
13283
13313
13343
13373
13403
13433
13463
13493
13523
13553
13583
13613
13643
13673
9204
9234
9264
9294
9324
9354
9384
9414
9444
9474
9504
9534
9564
9594
9624
9654
9684
9714
9744
9774
9804
9834
9864
9894
9924
9954
9984
10014
10044
10074
10104
10134
10164
10194
10224
10254
10284
10314
10344
10374
10404
10434
10464
10494
10524
10554
10584
10614
10644
10674
10704
10734
10764
10794
10824
10854
10884
10914
10944
10974
11004
11034
11064
11094
11124
11154
11184
11214
11244
11274
11304
11334
11364
11394
11424
11454
11484
11514
11544
11574
11604
11634
11664
11694
11724
11754
11784
11814
11844
11874
11904
11934
11964
11994
12024
12054
12084
12114
12144
12174
12204
12234
12264
12294
12324
12354
12384
12414
12444
12474
12504
12534
12564
12594
12624
12654
12684
12714
12744
12774
12804
12834
12864
12894
12924
12954
12984
13014
13044
13074
13104
13134
13164
13194
13224
13254
13284
13314
13344
13374
13404
13434
13464
13494
13524
13554
13584
13614
13644
13674
9205
9235
9265
9295
9325
9355
9385
9415
9445
9475
9505
9535
9565
9595
9625
9655
9685
9715
9745
9775
9805
9835
9865
9895
9925
9955
9985
10015
10045
10075
10105
10135
10165
10195
10225
10255
10285
10315
10345
10375
10405
10435
10465
10495
10525
10555
10585
10615
10645
10675
10705
10735
10765
10795
10825
10855
10885
10915
10945
10975
11005
11035
11065
11095
11125
11155
11185
11215
11245
11275
11305
11335
11365
11395
11425
11455
11485
11515
11545
11575
11605
11635
11665
11695
11725
11755
11785
11815
11845
11875
11905
11935
11965
11995
12025
12055
12085
12115
12145
12175
12205
12235
12265
12295
12325
12355
12385
12415
12445
12475
12505
12535
12565
12595
12625
12655
12685
12715
12745
12775
12805
12835
12865
12895
12925
12955
12985
13015
13045
13075
13105
13135
13165
13195
13225
13255
13285
13315
13345
13375
13405
13435
13465
13495
13525
13555
13585
13615
13645
13675
9206
9236
9266
9296
9326
9356
9386
9416
9446
9476
9506
9536
9566
9596
9626
9656
9686
9716
9746
9776
9806
9836
9866
9896
9926
9956
9986
10016
10046
10076
10106
10136
10166
10196
10226
10256
10286
10316
10346
10376
10406
10436
10466
10496
10526
10556
10586
10616
10646
10676
10706
10736
10766
10796
10826
10856
10886
10916
10946
10976
11006
11036
11066
11096
11126
11156
11186
11216
11246
11276
11306
11336
11366
11396
11426
11456
11486
11516
11546
11576
11606
11636
11666
11696
11726
11756
11786
11816
11846
11876
11906
11936
11966
11996
12026
12056
12086
12116
12146
12176
12206
12236
12266
12296
12326
12356
12386
12416
12446
12476
12506
12536
12566
12596
12626
12656
12686
12716
12746
12776
12806
12836
12866
12896
12926
12956
12986
13016
13046
13076
13106
13136
13166
13196
13226
13256
13286
13316
13346
13376
13406
13436
13466
13496
13526
13556
13586
13616
13646
13676
9207
9237
9267
9297
9327
9357
9387
9417
9447
9477
9507
9537
9567
9597
9627
9657
9687
9717
9747
9777
9807
9837
9867
9897
9927
9957
9987
10017
10047
10077
10107
10137
10167
10197
10227
10257
10287
10317
10347
10377
10407
10437
10467
10497
10527
10557
10587
10617
10647
10677
10707
10737
10767
10797
10827
10857
10887
10917
10947
10977
11007
11037
11067
11097
11127
11157
11187
11217
11247
11277
11307
11337
11367
11397
11427
11457
11487
11517
11547
11577
11607
11637
11667
11697
11727
11757
11787
11817
11847
11877
11907
11937
11967
11997
12027
12057
12087
12117
12147
12177
12207
12237
12267
12297
12327
12357
12387
12417
12447
12477
12507
12537
12567
12597
12627
12657
12687
12717
12747
12777
12807
12837
12867
12897
12927
12957
12987
13017
13047
13077
13107
13137
13167
13197
13227
13257
13287
13317
13347
13377
13407
13437
13467
13497
13527
13557
13587
13617
13647
13677
9208
9238
9268
9298
9328
9358
9388
9418
9448
9478
9508
9538
9568
9598
9628
9658
9688
9718
9748
9778
9808
9838
9868
9898
9928
9958
9988
10018
10048
10078
10108
10138
10168
10198
10228
10258
10288
10318
10348
10378
10408
10438
10468
10498
10528
10558
10588
10618
10648
10678
10708
10738
10768
10798
10828
10858
10888
10918
10948
10978
11008
11038
11068
11098
11128
11158
11188
11218
11248
11278
11308
11338
11368
11398
11428
11458
11488
11518
11548
11578
11608
11638
11668
11698
11728
11758
11788
11818
11848
11878
11908
11938
11968
11998
12028
12058
12088
12118
12148
12178
12208
12238
12268
12298
12328
12358
12388
12418
12448
12478
12508
12538
12568
12598
12628
12658
12688
12718
12748
12778
12808
12838
12868
12898
12928
12958
12988
13018
13048
13078
13108
13138
13168
13198
13228
13258
13288
13318
13348
13378
13408
13438
13468
13498
13528
13558
13588
13618
13648
13678
9209
9239
9269
9299
9329
9359
9389
9419
9449
9479
9509
9539
9569
9599
9629
9659
9689
9719
9749
9779
9809
9839
9869
9899
9929
9959
9989
10019
10049
10079
10109
10139
10169
10199
10229
10259
10289
10319
10349
10379
10409
10439
10469
10499
10529
10559
10589
10619
10649
10679
10709
10739
10769
10799
10829
10859
10889
10919
10949
10979
11009
11039
11069
11099
11129
11159
11189
11219
11249
11279
11309
11339
11369
11399
11429
11459
11489
11519
11549
11579
11609
11639
11669
11699
11729
11759
11789
11819
11849
11879
11909
11939
11969
11999
12029
12059
12089
12119
12149
12179
12209
12239
12269
12299
12329
12359
12389
12419
12449
12479
12509
12539
12569
12599
12629
12659
12689
12719
12749
12779
12809
12839
12869
12899
12929
12959
12989
13019
13049
13079
13109
13139
13169
13199
13229
13259
13289
13319
13349
13379
13409
13439
13469
13499
13529
13559
13589
13619
13649
13679
9210
9240
9270
9300
9330
9360
9390
9420
9450
9480
9510
9540
9570
9600
9630
9660
9690
9720
9750
9780
9810
9840
9870
9900
9930
9960
9990
10020
10050
10080
10110
10140
10170
10200
10230
10260
10290
10320
10350
10380
10410
10440
10470
10500
10530
10560
10590
10620
10650
10680
10710
10740
10770
10800
10830
10860
10890
10920
10950
10980
11010
11040
11070
11100
11130
11160
11190
11220
11250
11280
11310
11340
11370
11400
11430
11460
11490
11520
11550
11580
11610
11640
11670
11700
11730
11760
11790
11820
11850
11880
11910
11940
11970
12000
12030
12060
12090
12120
12150
12180
12210
12240
12270
12300
12330
12360
12390
12420
12450
12480
12510
12540
12570
12600
12630
12660
12690
12720
12750
12780
12810
12840
12870
12900
12930
12960
12990
13020
13050
13080
13110
13140
13170
13200
13230
13260
13290
13320
13350
13380
13410
13440
13470
13500
13530
13560
13590
13620
13650
13680
9211
9241
9271
9301
9331
9361
9391
9421
9451
9481
9511
9541
9571
9601
9631
9661
9691
9721
9751
9781
9811
9841
9871
9901
9931
9961
9991
10021
10051
10081
10111
10141
10171
10201
10231
10261
10291
10321
10351
10381
10411
10441
10471
10501
10531
10561
10591
10621
10651
10681
10711
10741
10771
10801
10831
10861
10891
10921
10951
10981
11011
11041
11071
11101
11131
11161
11191
11221
11251
11281
11311
11341
11371
11401
11431
11461
11491
11521
11551
11581
11611
11641
11671
11701
11731
11761
11791
11821
11851
11881
11911
11941
11971
12001
12031
12061
12091
12121
12151
12181
12211
12241
12271
12301
12331
12361
12391
12421
12451
12481
12511
12541
12571
12601
12631
12661
12691
12721
12751
12781
12811
12841
12871
12901
12931
12961
12991
13021
13051
13081
13111
13141
13171
13201
13231
13261
13291
13321
13351
13381
13411
13441
13471
13501
13531
13561
13591
13621
13651
13681
9212
9242
9272
9302
9332
9362
9392
9422
9452
9482
9512
9542
9572
9602
9632
9662
9692
9722
9752
9782
9812
9842
9872
9902
9932
9962
9992
10022
10052
10082
10112
10142
10172
10202
10232
10262
10292
10322
10352
10382
10412
10442
10472
10502
10532
10562
10592
10622
10652
10682
10712
10742
10772
10802
10832
10862
10892
10922
10952
10982
11012
11042
11072
11102
11132
11162
11192
11222
11252
11282
11312
11342
11372
11402
11432
11462
11492
11522
11552
11582
11612
11642
11672
11702
11732
11762
11792
11822
11852
11882
11912
11942
11972
12002
12032
12062
12092
12122
12152
12182
12212
12242
12272
12302
12332
12362
12392
12422
12452
12482
12512
12542
12572
12602
12632
12662
12692
12722
12752
12782
12812
12842
12872
12902
12932
12962
12992
13022
13052
13082
13112
13142
13172
13202
13232
13262
13292
13322
13352
13382
13412
13442
13472
13502
13532
13562
13592
13622
13652
13682
9213
9243
9273
9303
9333
9363
9393
9423
9453
9483
9513
9543
9573
9603
9633
9663
9693
9723
9753
9783
9813
9843
9873
9903
9933
9963
9993
10023
10053
10083
10113
10143
10173
10203
10233
10263
10293
10323
10353
10383
10413
10443
10473
10503
10533
10563
10593
10623
10653
10683
10713
10743
10773
10803
10833
10863
10893
10923
10953
10983
11013
11043
11073
11103
11133
11163
11193
11223
11253
11283
11313
11343
11373
11403
11433
11463
11493
11523
11553
11583
11613
11643
11673
11703
11733
11763
11793
11823
11853
11883
11913
11943
11973
12003
12033
12063
12093
12123
12153
12183
12213
12243
12273
12303
12333
12363
12393
12423
12453
12483
12513
12543
12573
12603
12633
12663
12693
12723
12753
12783
12813
12843
12873
12903
12933
12963
12993
13023
13053
13083
13113
13143
13173
13203
13233
13263
13293
13323
13353
13383
13413
13443
13473
13503
13533
13563
13593
13623
13653
13683
9214
9244
9274
9304
9334
9364
9394
9424
9454
9484
9514
9544
9574
9604
9634
9664
9694
9724
9754
9784
9814
9844
9874
9904
9934
9964
9994
10024
10054
10084
10114
10144
10174
10204
10234
10264
10294
10324
10354
10384
10414
10444
10474
10504
10534
10564
10594
10624
10654
10684
10714
10744
10774
10804
10834
10864
10894
10924
10954
10984
11014
11044
11074
11104
11134
11164
11194
11224
11254
11284
11314
11344
11374
11404
11434
11464
11494
11524
11554
11584
11614
11644
11674
11704
11734
11764
11794
11824
11854
11884
11914
11944
11974
12004
12034
12064
12094
12124
12154
12184
12214
12244
12274
12304
12334
12364
12394
12424
12454
12484
12514
12544
12574
12604
12634
12664
12694
12724
12754
12784
12814
12844
12874
12904
12934
12964
12994
13024
13054
13084
13114
13144
13174
13204
13234
13264
13294
13324
13354
13384
13414
13444
13474
13504
13534
13564
13594
13624
13654
13684
9215
9245
9275
9305
9335
9365
9395
9425
9455
9485
9515
9545
9575
9605
9635
9665
9695
9725
9755
9785
9815
9845
9875
9905
9935
9965
9995
10025
10055
10085
10115
10145
10175
10205
10235
10265
10295
10325
10355
10385
10415
10445
10475
10505
10535
10565
10595
10625
10655
10685
10715
10745
10775
10805
10835
10865
10895
10925
10955
10985
11015
11045
11075
11105
11135
11165
11195
11225
11255
11285
11315
11345
11375
11405
11435
11465
11495
11525
11555
11585
11615
11645
11675
11705
11735
11765
11795
11825
11855
11885
11915
11945
11975
12005
12035
12065
12095
12125
12155
12185
12215
12245
12275
12305
12335
12365
12395
12425
12455
12485
12515
12545
12575
12605
12635
12665
12695
12725
12755
12785
12815
12845
12875
12905
12935
12965
12995
13025
13055
13085
13115
13145
13175
13205
13235
13265
13295
13325
13355
13385
13415
13445
13475
13505
13535
13565
13595
13625
13655
13685
9216
9246
9276
9306
9336
9366
9396
9426
9456
9486
9516
9546
9576
9606
9636
9666
9696
9726
9756
9786
9816
9846
9876
9906
9936
9966
9996
10026
10056
10086
10116
10146
10176
10206
10236
10266
10296
10326
10356
10386
10416
10446
10476
10506
10536
10566
10596
10626
10656
10686
10716
10746
10776
10806
10836
10866
10896
10926
10956
10986
11016
11046
11076
11106
11136
11166
11196
11226
11256
11286
11316
11346
11376
11406
11436
11466
11496
11526
11556
11586
11616
11646
11676
11706
11736
11766
11796
11826
11856
11886
11916
11946
11976
12006
12036
12066
12096
12126
12156
12186
12216
12246
12276
12306
12336
12366
12396
12426
12456
12486
12516
12546
12576
12606
12636
12666
12696
12726
12756
12786
12816
12846
12876
12906
12936
12966
12996
13026
13056
13086
13116
13146
13176
13206
13236
13266
13296
13326
13356
13386
13416
13446
13476
13506
13536
13566
13596
13626
13656
13686
9217
9247
9277
9307
9337
9367
9397
9427
9457
9487
9517
9547
9577
9607
9637
9667
9697
9727
9757
9787
9817
9847
9877
9907
9937
9967
9997
10027
10057
10087
10117
10147
10177
10207
10237
10267
10297
10327
10357
10387
10417
10447
10477
10507
10537
10567
10597
10627
10657
10687
10717
10747
10777
10807
10837
10867
10897
10927
10957
10987
11017
11047
11077
11107
11137
11167
11197
11227
11257
11287
11317
11347
11377
11407
11437
11467
11497
11527
11557
11587
11617
11647
11677
11707
11737
11767
11797
11827
11857
11887
11917
11947
11977
12007
12037
12067
12097
12127
12157
12187
12217
12247
12277
12307
12337
12367
12397
12427
12457
12487
12517
12547
12577
12607
12637
12667
12697
12727
12757
12787
12817
12847
12877
12907
12937
12967
12997
13027
13057
13087
13117
13147
13177
13207
13237
13267
13297
13327
13357
13387
13417
13447
13477
13507
13537
13567
13597
13627
13657
13687
9218
9248
9278
9308
9338
9368
9398
9428
9458
9488
9518
9548
9578
9608
9638
9668
9698
9728
9758
9788
9818
9848
9878
9908
9938
9968
9998
10028
10058
10088
10118
10148
10178
10208
10238
10268
10298
10328
10358
10388
10418
10448
10478
10508
10538
10568
10598
10628
10658
10688
10718
10748
10778
10808
10838
10868
10898
10928
10958
10988
11018
11048
11078
11108
11138
11168
11198
11228
11258
11288
11318
11348
11378
11408
11438
11468
11498
11528
11558
11588
11618
11648
11678
11708
11738
11768
11798
11828
11858
11888
11918
11948
11978
12008
12038
12068
12098
12128
12158
12188
12218
12248
12278
12308
12338
12368
12398
12428
12458
12488
12518
12548
12578
12608
12638
12668
12698
12728
12758
12788
12818
12848
12878
12908
12938
12968
12998
13028
13058
13088
13118
13148
13178
13208
13238
13268
13298
13328
13358
13388
13418
13448
13478
13508
13538
13568
13598
13628
13658
13688
9219
9249
9279
9309
9339
9369
9399
9429
9459
9489
9519
9549
9579
9609
9639
9669
9699
9729
9759
9789
9819
9849
9879
9909
9939
9969
9999
10029
10059
10089
10119
10149
10179
10209
10239
10269
10299
10329
10359
10389
10419
10449
10479
10509
10539
10569
10599
10629
10659
10689
10719
10749
10779
10809
10839
10869
10899
10929
10959
10989
11019
11049
11079
11109
11139
11169
11199
11229
11259
11289
11319
11349
11379
11409
11439
11469
11499
11529
11559
11589
11619
11649
11679
11709
11739
11769
11799
11829
11859
11889
11919
11949
11979
12009
12039
12069
12099
12129
12159
12189
12219
12249
12279
12309
12339
12369
12399
12429
12459
12489
12519
12549
12579
12609
12639
12669
12699
12729
12759
12789
12819
12849
12879
12909
12939
12969
12999
13029
13059
13089
13119
13149
13179
13209
13239
13269
13299
13329
13359
13389
13419
13449
13479
13509
13539
13569
13599
13629
13659
13689
9220
9250
9280
9310
9340
9370
9400
9430
9460
9490
9520
9550
9580
9610
9640
9670
9700
9730
9760
9790
9820
9850
9880
9910
9940
9970
10000
10030
10060
10090
10120
10150
10180
10210
10240
10270
10300
10330
10360
10390
10420
10450
10480
10510
10540
10570
10600
10630
10660
10690
10720
10750
10780
10810
10840
10870
10900
10930
10960
10990
11020
11050
11080
11110
11140
11170
11200
11230
11260
11290
11320
11350
11380
11410
11440
11470
11500
11530
11560
11590
11620
11650
11680
11710
11740
11770
11800
11830
11860
11890
11920
11950
11980
12010
12040
12070
12100
12130
12160
12190
12220
12250
12280
12310
12340
12370
12400
12430
12460
12490
12520
12550
12580
12610
12640
12670
12700
12730
12760
12790
12820
12850
12880
12910
12940
12970
13000
13030
13060
13090
13120
13150
13180
13210
13240
13270
13300
13330
13360
13390
13420
13450
13480
13510
13540
13570
13600
13630
13660
13690
9221
9251
9281
9311
9341
9371
9401
9431
9461
9491
9521
9551
9581
9611
9641
9671
9701
9731
9761
9791
9821
9851
9881
9911
9941
9971
10001
10031
10061
10091
10121
10151
10181
10211
10241
10271
10301
10331
10361
10391
10421
10451
10481
10511
10541
10571
10601
10631
10661
10691
10721
10751
10781
10811
10841
10871
10901
10931
10961
10991
11021
11051
11081
11111
11141
11171
11201
11231
11261
11291
11321
11351
11381
11411
11441
11471
11501
11531
11561
11591
11621
11651
11681
11711
11741
11771
11801
11831
11861
11891
11921
11951
11981
12011
12041
12071
12101
12131
12161
12191
12221
12251
12281
12311
12341
12371
12401
12431
12461
12491
12521
12551
12581
12611
12641
12671
12701
12731
12761
12791
12821
12851
12881
12911
12941
12971
13001
13031
13061
13091
13121
13151
13181
13211
13241
13271
13301
13331
13361
13391
13421
13451
13481
13511
13541
13571
13601
13631
13661
13691
9222
9252
9282
9312
9342
9372
9402
9432
9462
9492
9522
9552
9582
9612
9642
9672
9702
9732
9762
9792
9822
9852
9882
9912
9942
9972
10002
10032
10062
10092
10122
10152
10182
10212
10242
10272
10302
10332
10362
10392
10422
10452
10482
10512
10542
10572
10602
10632
10662
10692
10722
10752
10782
10812
10842
10872
10902
10932
10962
10992
11022
11052
11082
11112
11142
11172
11202
11232
11262
11292
11322
11352
11382
11412
11442
11472
11502
11532
11562
11592
11622
11652
11682
11712
11742
11772
11802
11832
11862
11892
11922
11952
11982
12012
12042
12072
12102
12132
12162
12192
12222
12252
12282
12312
12342
12372
12402
12432
12462
12492
12522
12552
12582
12612
12642
12672
12702
12732
12762
12792
12822
12852
12882
12912
12942
12972
13002
13032
13062
13092
13122
13152
13182
13212
13242
13272
13302
13332
13362
13392
13422
13452
13482
13512
13542
13572
13602
13632
13662
13692
9223
9253
9283
9313
9343
9373
9403
9433
9463
9493
9523
9553
9583
9613
9643
9673
9703
9733
9763
9793
9823
9853
9883
9913
9943
9973
10003
10033
10063
10093
10123
10153
10183
10213
10243
10273
10303
10333
10363
10393
10423
10453
10483
10513
10543
10573
10603
10633
10663
10693
10723
10753
10783
10813
10843
10873
10903
10933
10963
10993
11023
11053
11083
11113
11143
11173
11203
11233
11263
11293
11323
11353
11383
11413
11443
11473
11503
11533
11563
11593
11623
11653
11683
11713
11743
11773
11803
11833
11863
11893
11923
11953
11983
12013
12043
12073
12103
12133
12163
12193
12223
12253
12283
12313
12343
12373
12403
12433
12463
12493
12523
12553
12583
12613
12643
12673
12703
12733
12763
12793
12823
12853
12883
12913
12943
12973
13003
13033
13063
13093
13123
13153
13183
13213
13243
13273
13303
13333
13363
13393
13423
13453
13483
13513
13543
13573
13603
13633
13663
13693
9224
9254
9284
9314
9344
9374
9404
9434
9464
9494
9524
9554
9584
9614
9644
9674
9704
9734
9764
9794
9824
9854
9884
9914
9944
9974
10004
10034
10064
10094
10124
10154
10184
10214
10244
10274
10304
10334
10364
10394
10424
10454
10484
10514
10544
10574
10604
10634
10664
10694
10724
10754
10784
10814
10844
10874
10904
10934
10964
10994
11024
11054
11084
11114
11144
11174
11204
11234
11264
11294
11324
11354
11384
11414
11444
11474
11504
11534
11564
11594
11624
11654
11684
11714
11744
11774
11804
11834
11864
11894
11924
11954
11984
12014
12044
12074
12104
12134
12164
12194
12224
12254
12284
12314
12344
12374
12404
12434
12464
12494
12524
12554
12584
12614
12644
12674
12704
12734
12764
12794
12824
12854
12884
12914
12944
12974
13004
13034
13064
13094
13124
13154
13184
13214
13244
13274
13304
13334
13364
13394
13424
13454
13484
13514
13544
13574
13604
13634
13664
13694
9225
9255
9285
9315
9345
9375
9405
9435
9465
9495
9525
9555
9585
9615
9645
9675
9705
9735
9765
9795
9825
9855
9885
9915
9945
9975
10005
10035
10065
10095
10125
10155
10185
10215
10245
10275
10305
10335
10365
10395
10425
10455
10485
10515
10545
10575
10605
10635
10665
10695
10725
10755
10785
10815
10845
10875
10905
10935
10965
10995
11025
11055
11085
11115
11145
11175
11205
11235
11265
11295
11325
11355
11385
11415
11445
11475
11505
11535
11565
11595
11625
11655
11685
11715
11745
11775
11805
11835
11865
11895
11925
11955
11985
12015
12045
12075
12105
12135
12165
12195
12225
12255
12285
12315
12345
12375
12405
12435
12465
12495
12525
12555
12585
12615
12645
12675
12705
12735
12765
12795
12825
12855
12885
12915
12945
12975
13005
13035
13065
13095
13125
13155
13185
13215
13245
13275
13305
13335
13365
13395
13425
13455
13485
13515
13545
13575
13605
13635
13665
13695
9226
9256
9286
9316
9346
9376
9406
9436
9466
9496
9526
9556
9586
9616
9646
9676
9706
9736
9766
9796
9826
9856
9886
9916
9946
9976
10006
10036
10066
10096
10126
10156
10186
10216
10246
10276
10306
10336
10366
10396
10426
10456
10486
10516
10546
10576
10606
10636
10666
10696
10726
10756
10786
10816
10846
10876
10906
10936
10966
10996
11026
11056
11086
11116
11146
11176
11206
11236
11266
11296
11326
11356
11386
11416
11446
11476
11506
11536
11566
11596
11626
11656
11686
11716
11746
11776
11806
11836
11866
11896
11926
11956
11986
12016
12046
12076
12106
12136
12166
12196
12226
12256
12286
12316
12346
12376
12406
12436
12466
12496
12526
12556
12586
12616
12646
12676
12706
12736
12766
12796
12826
12856
12886
12916
12946
12976
13006
13036
13066
13096
13126
13156
13186
13216
13246
13276
13306
13336
13366
13396
13426
13456
13486
13516
13546
13576
13606
13636
13666
13696
9227
9257
9287
9317
9347
9377
9407
9437
9467
9497
9527
9557
9587
9617
9647
9677
9707
9737
9767
9797
9827
9857
9887
9917
9947
9977
10007
10037
10067
10097
10127
10157
10187
10217
10247
10277
10307
10337
10367
10397
10427
10457
10487
10517
10547
10577
10607
10637
10667
10697
10727
10757
10787
10817
10847
10877
10907
10937
10967
10997
11027
11057
11087
11117
11147
11177
11207
11237
11267
11297
11327
11357
11387
11417
11447
11477
11507
11537
11567
11597
11627
11657
11687
11717
11747
11777
11807
11837
11867
11897
11927
11957
11987
12017
12047
12077
12107
12137
12167
12197
12227
12257
12287
12317
12347
12377
12407
12437
12467
12497
12527
12557
12587
12617
12647
12677
12707
12737
12767
12797
12827
12857
12887
12917
12947
12977
13007
13037
13067
13097
13127
13157
13187
13217
13247
13277
13307
13337
13367
13397
13427
13457
13487
13517
13547
13577
13607
13637
13667
13697
9228
9258
9288
9318
9348
9378
9408
9438
9468
9498
9528
9558
9588
9618
9648
9678
9708
9738
9768
9798
9828
9858
9888
9918
9948
9978
10008
10038
10068
10098
10128
10158
10188
10218
10248
10278
10308
10338
10368
10398
10428
10458
10488
10518
10548
10578
10608
10638
10668
10698
10728
10758
10788
10818
10848
10878
10908
10938
10968
10998
11028
11058
11088
11118
11148
11178
11208
11238
11268
11298
11328
11358
11388
11418
11448
11478
11508
11538
11568
11598
11628
11658
11688
11718
11748
11778
11808
11838
11868
11898
11928
11958
11988
12018
12048
12078
12108
12138
12168
12198
12228
12258
12288
12318
12348
12378
12408
12438
12468
12498
12528
12558
12588
12618
12648
12678
12708
12738
12768
12798
12828
12858
12888
12918
12948
12978
13008
13038
13068
13098
13128
13158
13188
13218
13248
13278
13308
13338
13368
13398
13428
13458
13488
13518
13548
13578
13608
13638
13668
13698
9229
9259
9289
9319
9349
9379
9409
9439
9469
9499
9529
9559
9589
9619
9649
9679
9709
9739
9769
9799
9829
9859
9889
9919
9949
9979
10009
10039
10069
10099
10129
10159
10189
10219
10249
10279
10309
10339
10369
10399
10429
10459
10489
10519
10549
10579
10609
10639
10669
10699
10729
10759
10789
10819
10849
10879
10909
10939
10969
10999
11029
11059
11089
11119
11149
11179
11209
11239
11269
11299
11329
11359
11389
11419
11449
11479
11509
11539
11569
11599
11629
11659
11689
11719
11749
11779
11809
11839
11869
11899
11929
11959
11989
12019
12049
12079
12109
12139
12169
12199
12229
12259
12289
12319
12349
12379
12409
12439
12469
12499
12529
12559
12589
12619
12649
12679
12709
12739
12769
12799
12829
12859
12889
12919
12949
12979
13009
13039
13069
13099
13129
13159
13189
13219
13249
13279
13309
13339
13369
13399
13429
13459
13489
13519
13549
13579
13609
13639
13669
13699
4700
4730
4760
4790
4820
4850
4880
4910
4940
4970
5000
5030
5060
5090
5120
5150
5180
5210
5240
5270
5300
5330
5360
5390
5420
5450
5480
5510
5540
5570
5600
5630
5660
5690
5720
5750
5780
5810
5840
5870
5900
5930
5960
5990
6020
6050
6080
6110
6140
6170
6200
6230
6260
6290
6320
6350
6380
6410
6440
6470
6500
6530
6560
6590
6620
6650
6680
6710
6740
6770
6800
6830
6860
6890
6920
6950
6980
7010
7040
7070
7100
7130
7160
7190
7220
7250
7280
7310
7340
7370
7400
7430
7460
7490
7520
7550
7580
7610
7640
7670
7700
7730
7760
7790
7820
7850
7880
7910
7940
7970
8000
8030
8060
8090
8120
8150
8180
8210
8240
8270
8300
8330
8360
8390
8420
8450
8480
8510
8540
8570
8600
8630
8660
8690
8720
8750
8780
8810
8840
8870
8900
8930
8960
8990
9020
9050
9080
9110
9140
9170
4701
4731
4761
4791
4821
4851
4881
4911
4941
4971
5001
5031
5061
5091
5121
5151
5181
5211
5241
5271
5301
5331
5361
5391
5421
5451
5481
5511
5541
5571
5601
5631
5661
5691
5721
5751
5781
5811
5841
5871
5901
5931
5961
5991
6021
6051
6081
6111
6141
6171
6201
6231
6261
6291
6321
6351
6381
6411
6441
6471
6501
6531
6561
6591
6621
6651
6681
6711
6741
6771
6801
6831
6861
6891
6921
6951
6981
7011
7041
7071
7101
7131
7161
7191
7221
7251
7281
7311
7341
7371
7401
7431
7461
7491
7521
7551
7581
7611
7641
7671
7701
7731
7761
7791
7821
7851
7881
7911
7941
7971
8001
8031
8061
8091
8121
8151
8181
8211
8241
8271
8301
8331
8361
8391
8421
8451
8481
8511
8541
8571
8601
8631
8661
8691
8721
8751
8781
8811
8841
8871
8901
8931
8961
8991
9021
9051
9081
9111
9141
9171
4702
4732
4762
4792
4822
4852
4882
4912
4942
4972
5002
5032
5062
5092
5122
5152
5182
5212
5242
5272
5302
5332
5362
5392
5422
5452
5482
5512
5542
5572
5602
5632
5662
5692
5722
5752
5782
5812
5842
5872
5902
5932
5962
5992
6022
6052
6082
6112
6142
6172
6202
6232
6262
6292
6322
6352
6382
6412
6442
6472
6502
6532
6562
6592
6622
6652
6682
6712
6742
6772
6802
6832
6862
6892
6922
6952
6982
7012
7042
7072
7102
7132
7162
7192
7222
7252
7282
7312
7342
7372
7402
7432
7462
7492
7522
7552
7582
7612
7642
7672
7702
7732
7762
7792
7822
7852
7882
7912
7942
7972
8002
8032
8062
8092
8122
8152
8182
8212
8242
8272
8302
8332
8362
8392
8422
8452
8482
8512
8542
8572
8602
8632
8662
8692
8722
8752
8782
8812
8842
8872
8902
8932
8962
8992
9022
9052
9082
9112
9142
9172
4703
4733
4763
4793
4823
4853
4883
4913
4943
4973
5003
5033
5063
5093
5123
5153
5183
5213
5243
5273
5303
5333
5363
5393
5423
5453
5483
5513
5543
5573
5603
5633
5663
5693
5723
5753
5783
5813
5843
5873
5903
5933
5963
5993
6023
6053
6083
6113
6143
6173
6203
6233
6263
6293
6323
6353
6383
6413
6443
6473
6503
6533
6563
6593
6623
6653
6683
6713
6743
6773
6803
6833
6863
6893
6923
6953
6983
7013
7043
7073
7103
7133
7163
7193
7223
7253
7283
7313
7343
7373
7403
7433
7463
7493
7523
7553
7583
7613
7643
7673
7703
7733
7763
7793
7823
7853
7883
7913
7943
7973
8003
8033
8063
8093
8123
8153
8183
8213
8243
8273
8303
8333
8363
8393
8423
8453
8483
8513
8543
8573
8603
8633
8663
8693
8723
8753
8783
8813
8843
8873
8903
8933
8963
8993
9023
9053
9083
9113
9143
9173
4704
4734
4764
4794
4824
4854
4884
4914
4944
4974
5004
5034
5064
5094
5124
5154
5184
5214
5244
5274
5304
5334
5364
5394
5424
5454
5484
5514
5544
5574
5604
5634
5664
5694
5724
5754
5784
5814
5844
5874
5904
5934
5964
5994
6024
6054
6084
6114
6144
6174
6204
6234
6264
6294
6324
6354
6384
6414
6444
6474
6504
6534
6564
6594
6624
6654
6684
6714
6744
6774
6804
6834
6864
6894
6924
6954
6984
7014
7044
7074
7104
7134
7164
7194
7224
7254
7284
7314
7344
7374
7404
7434
7464
7494
7524
7554
7584
7614
7644
7674
7704
7734
7764
7794
7824
7854
7884
7914
7944
7974
8004
8034
8064
8094
8124
8154
8184
8214
8244
8274
8304
8334
8364
8394
8424
8454
8484
8514
8544
8574
8604
8634
8664
8694
8724
8754
8784
8814
8844
8874
8904
8934
8964
8994
9024
9054
9084
9114
9144
9174
4705
4735
4765
4795
4825
4855
4885
4915
4945
4975
5005
5035
5065
5095
5125
5155
5185
5215
5245
5275
5305
5335
5365
5395
5425
5455
5485
5515
5545
5575
5605
5635
5665
5695
5725
5755
5785
5815
5845
5875
5905
5935
5965
5995
6025
6055
6085
6115
6145
6175
6205
6235
6265
6295
6325
6355
6385
6415
6445
6475
6505
6535
6565
6595
6625
6655
6685
6715
6745
6775
6805
6835
6865
6895
6925
6955
6985
7015
7045
7075
7105
7135
7165
7195
7225
7255
7285
7315
7345
7375
7405
7435
7465
7495
7525
7555
7585
7615
7645
7675
7705
7735
7765
7795
7825
7855
7885
7915
7945
7975
8005
8035
8065
8095
8125
8155
8185
8215
8245
8275
8305
8335
8365
8395
8425
8455
8485
8515
8545
8575
8605
8635
8665
8695
8725
8755
8785
8815
8845
8875
8905
8935
8965
8995
9025
9055
9085
9115
9145
9175
4706
4736
4766
4796
4826
4856
4886
4916
4946
4976
5006
5036
5066
5096
5126
5156
5186
5216
5246
5276
5306
5336
5366
5396
5426
5456
5486
5516
5546
5576
5606
5636
5666
5696
5726
5756
5786
5816
5846
5876
5906
5936
5966
5996
6026
6056
6086
6116
6146
6176
6206
6236
6266
6296
6326
6356
6386
6416
6446
6476
6506
6536
6566
6596
6626
6656
6686
6716
6746
6776
6806
6836
6866
6896
6926
6956
6986
7016
7046
7076
7106
7136
7166
7196
7226
7256
7286
7316
7346
7376
7406
7436
7466
7496
7526
7556
7586
7616
7646
7676
7706
7736
7766
7796
7826
7856
7886
7916
7946
7976
8006
8036
8066
8096
8126
8156
8186
8216
8246
8276
8306
8336
8366
8396
8426
8456
8486
8516
8546
8576
8606
8636
8666
8696
8726
8756
8786
8816
8846
8876
8906
8936
8966
8996
9026
9056
9086
9116
9146
9176
4707
4737
4767
4797
4827
4857
4887
4917
4947
4977
5007
5037
5067
5097
5127
5157
5187
5217
5247
5277
5307
5337
5367
5397
5427
5457
5487
5517
5547
5577
5607
5637
5667
5697
5727
5757
5787
5817
5847
5877
5907
5937
5967
5997
6027
6057
6087
6117
6147
6177
6207
6237
6267
6297
6327
6357
6387
6417
6447
6477
6507
6537
6567
6597
6627
6657
6687
6717
6747
6777
6807
6837
6867
6897
6927
6957
6987
7017
7047
7077
7107
7137
7167
7197
7227
7257
7287
7317
7347
7377
7407
7437
7467
7497
7527
7557
7587
7617
7647
7677
7707
7737
7767
7797
7827
7857
7887
7917
7947
7977
8007
8037
8067
8097
8127
8157
8187
8217
8247
8277
8307
8337
8367
8397
8427
8457
8487
8517
8547
8577
8607
8637
8667
8697
8727
8757
8787
8817
8847
8877
8907
8937
8967
8997
9027
9057
9087
9117
9147
9177
4708
4738
4768
4798
4828
4858
4888
4918
4948
4978
5008
5038
5068
5098
5128
5158
5188
5218
5248
5278
5308
5338
5368
5398
5428
5458
5488
5518
5548
5578
5608
5638
5668
5698
5728
5758
5788
5818
5848
5878
5908
5938
5968
5998
6028
6058
6088
6118
6148
6178
6208
6238
6268
6298
6328
6358
6388
6418
6448
6478
6508
6538
6568
6598
6628
6658
6688
6718
6748
6778
6808
6838
6868
6898
6928
6958
6988
7018
7048
7078
7108
7138
7168
7198
7228
7258
7288
7318
7348
7378
7408
7438
7468
7498
7528
7558
7588
7618
7648
7678
7708
7738
7768
7798
7828
7858
7888
7918
7948
7978
8008
8038
8068
8098
8128
8158
8188
8218
8248
8278
8308
8338
8368
8398
8428
8458
8488
8518
8548
8578
8608
8638
8668
8698
8728
8758
8788
8818
8848
8878
8908
8938
8968
8998
9028
9058
9088
9118
9148
9178
4709
4739
4769
4799
4829
4859
4889
4919
4949
4979
5009
5039
5069
5099
5129
5159
5189
5219
5249
5279
5309
5339
5369
5399
5429
5459
5489
5519
5549
5579
5609
5639
5669
5699
5729
5759
5789
5819
5849
5879
5909
5939
5969
5999
6029
6059
6089
6119
6149
6179
6209
6239
6269
6299
6329
6359
6389
6419
6449
6479
6509
6539
6569
6599
6629
6659
6689
6719
6749
6779
6809
6839
6869
6899
6929
6959
6989
7019
7049
7079
7109
7139
7169
7199
7229
7259
7289
7319
7349
7379
7409
7439
7469
7499
7529
7559
7589
7619
7649
7679
7709
7739
7769
7799
7829
7859
7889
7919
7949
7979
8009
8039
8069
8099
8129
8159
8189
8219
8249
8279
8309
8339
8369
8399
8429
8459
8489
8519
8549
8579
8609
8639
8669
8699
8729
8759
8789
8819
8849
8879
8909
8939
8969
8999
9029
9059
9089
9119
9149
9179
4710
4740
4770
4800
4830
4860
4890
4920
4950
4980
5010
5040
5070
5100
5130
5160
5190
5220
5250
5280
5310
5340
5370
5400
5430
5460
5490
5520
5550
5580
5610
5640
5670
5700
5730
5760
5790
5820
5850
5880
5910
5940
5970
6000
6030
6060
6090
6120
6150
6180
6210
6240
6270
6300
6330
6360
6390
6420
6450
6480
6510
6540
6570
6600
6630
6660
6690
6720
6750
6780
6810
6840
6870
6900
6930
6960
6990
7020
7050
7080
7110
7140
7170
7200
7230
7260
7290
7320
7350
7380
7410
7440
7470
7500
7530
7560
7590
7620
7650
7680
7710
7740
7770
7800
7830
7860
7890
7920
7950
7980
8010
8040
8070
8100
8130
8160
8190
8220
8250
8280
8310
8340
8370
8400
8430
8460
8490
8520
8550
8580
8610
8640
8670
8700
8730
8760
8790
8820
8850
8880
8910
8940
8970
9000
9030
9060
9090
9120
9150
9180
4711
4741
4771
4801
4831
4861
4891
4921
4951
4981
5011
5041
5071
5101
5131
5161
5191
5221
5251
5281
5311
5341
5371
5401
5431
5461
5491
5521
5551
5581
5611
5641
5671
5701
5731
5761
5791
5821
5851
5881
5911
5941
5971
6001
6031
6061
6091
6121
6151
6181
6211
6241
6271
6301
6331
6361
6391
6421
6451
6481
6511
6541
6571
6601
6631
6661
6691
6721
6751
6781
6811
6841
6871
6901
6931
6961
6991
7021
7051
7081
7111
7141
7171
7201
7231
7261
7291
7321
7351
7381
7411
7441
7471
7501
7531
7561
7591
7621
7651
7681
7711
7741
7771
7801
7831
7861
7891
7921
7951
7981
8011
8041
8071
8101
8131
8161
8191
8221
8251
8281
8311
8341
8371
8401
8431
8461
8491
8521
8551
8581
8611
8641
8671
8701
8731
8761
8791
8821
8851
8881
8911
8941
8971
9001
9031
9061
9091
9121
9151
9181
4712
4742
4772
4802
4832
4862
4892
4922
4952
4982
5012
5042
5072
5102
5132
5162
5192
5222
5252
5282
5312
5342
5372
5402
5432
5462
5492
5522
5552
5582
5612
5642
5672
5702
5732
5762
5792
5822
5852
5882
5912
5942
5972
6002
6032
6062
6092
6122
6152
6182
6212
6242
6272
6302
6332
6362
6392
6422
6452
6482
6512
6542
6572
6602
6632
6662
6692
6722
6752
6782
6812
6842
6872
6902
6932
6962
6992
7022
7052
7082
7112
7142
7172
7202
7232
7262
7292
7322
7352
7382
7412
7442
7472
7502
7532
7562
7592
7622
7652
7682
7712
7742
7772
7802
7832
7862
7892
7922
7952
7982
8012
8042
8072
8102
8132
8162
8192
8222
8252
8282
8312
8342
8372
8402
8432
8462
8492
8522
8552
8582
8612
8642
8672
8702
8732
8762
8792
8822
8852
8882
8912
8942
8972
9002
9032
9062
9092
9122
9152
9182
4713
4743
4773
4803
4833
4863
4893
4923
4953
4983
5013
5043
5073
5103
5133
5163
5193
5223
5253
5283
5313
5343
5373
5403
5433
5463
5493
5523
5553
5583
5613
5643
5673
5703
5733
5763
5793
5823
5853
5883
5913
5943
5973
6003
6033
6063
6093
6123
6153
6183
6213
6243
6273
6303
6333
6363
6393
6423
6453
6483
6513
6543
6573
6603
6633
6663
6693
6723
6753
6783
6813
6843
6873
6903
6933
6963
6993
7023
7053
7083
7113
7143
7173
7203
7233
7263
7293
7323
7353
7383
7413
7443
7473
7503
7533
7563
7593
7623
7653
7683
7713
7743
7773
7803
7833
7863
7893
7923
7953
7983
8013
8043
8073
8103
8133
8163
8193
8223
8253
8283
8313
8343
8373
8403
8433
8463
8493
8523
8553
8583
8613
8643
8673
8703
8733
8763
8793
8823
8853
8883
8913
8943
8973
9003
9033
9063
9093
9123
9153
9183
4714
4744
4774
4804
4834
4864
4894
4924
4954
4984
5014
5044
5074
5104
5134
5164
5194
5224
5254
5284
5314
5344
5374
5404
5434
5464
5494
5524
5554
5584
5614
5644
5674
5704
5734
5764
5794
5824
5854
5884
5914
5944
5974
6004
6034
6064
6094
6124
6154
6184
6214
6244
6274
6304
6334
6364
6394
6424
6454
6484
6514
6544
6574
6604
6634
6664
6694
6724
6754
6784
6814
6844
6874
6904
6934
6964
6994
7024
7054
7084
7114
7144
7174
7204
7234
7264
7294
7324
7354
7384
7414
7444
7474
7504
7534
7564
7594
7624
7654
7684
7714
7744
7774
7804
7834
7864
7894
7924
7954
7984
8014
8044
8074
8104
8134
8164
8194
8224
8254
8284
8314
8344
8374
8404
8434
8464
8494
8524
8554
8584
8614
8644
8674
8704
8734
8764
8794
8824
8854
8884
8914
8944
8974
9004
9034
9064
9094
9124
9154
9184
4715
4745
4775
4805
4835
4865
4895
4925
4955
4985
5015
5045
5075
5105
5135
5165
5195
5225
5255
5285
5315
5345
5375
5405
5435
5465
5495
5525
5555
5585
5615
5645
5675
5705
5735
5765
5795
5825
5855
5885
5915
5945
5975
6005
6035
6065
6095
6125
6155
6185
6215
6245
6275
6305
6335
6365
6395
6425
6455
6485
6515
6545
6575
6605
6635
6665
6695
6725
6755
6785
6815
6845
6875
6905
6935
6965
6995
7025
7055
7085
7115
7145
7175
7205
7235
7265
7295
7325
7355
7385
7415
7445
7475
7505
7535
7565
7595
7625
7655
7685
7715
7745
7775
7805
7835
7865
7895
7925
7955
7985
8015
8045
8075
8105
8135
8165
8195
8225
8255
8285
8315
8345
8375
8405
8435
8465
8495
8525
8555
8585
8615
8645
8675
8705
8735
8765
8795
8825
8855
8885
8915
8945
8975
9005
9035
9065
9095
9125
9155
9185
4716
4746
4776
4806
4836
4866
4896
4926
4956
4986
5016
5046
5076
5106
5136
5166
5196
5226
5256
5286
5316
5346
5376
5406
5436
5466
5496
5526
5556
5586
5616
5646
5676
5706
5736
5766
5796
5826
5856
5886
5916
5946
5976
6006
6036
6066
6096
6126
6156
6186
6216
6246
6276
6306
6336
6366
6396
6426
6456
6486
6516
6546
6576
6606
6636
6666
6696
6726
6756
6786
6816
6846
6876
6906
6936
6966
6996
7026
7056
7086
7116
7146
7176
7206
7236
7266
7296
7326
7356
7386
7416
7446
7476
7506
7536
7566
7596
7626
7656
7686
7716
7746
7776
7806
7836
7866
7896
7926
7956
7986
8016
8046
8076
8106
8136
8166
8196
8226
8256
8286
8316
8346
8376
8406
8436
8466
8496
8526
8556
8586
8616
8646
8676
8706
8736
8766
8796
8826
8856
8886
8916
8946
8976
9006
9036
9066
9096
9126
9156
9186
4717
4747
4777
4807
4837
4867
4897
4927
4957
4987
5017
5047
5077
5107
5137
5167
5197
5227
5257
5287
5317
5347
5377
5407
5437
5467
5497
5527
5557
5587
5617
5647
5677
5707
5737
5767
5797
5827
5857
5887
5917
5947
5977
6007
6037
6067
6097
6127
6157
6187
6217
6247
6277
6307
6337
6367
6397
6427
6457
6487
6517
6547
6577
6607
6637
6667
6697
6727
6757
6787
6817
6847
6877
6907
6937
6967
6997
7027
7057
7087
7117
7147
7177
7207
7237
7267
7297
7327
7357
7387
7417
7447
7477
7507
7537
7567
7597
7627
7657
7687
7717
7747
7777
7807
7837
7867
7897
7927
7957
7987
8017
8047
8077
8107
8137
8167
8197
8227
8257
8287
8317
8347
8377
8407
8437
8467
8497
8527
8557
8587
8617
8647
8677
8707
8737
8767
8797
8827
8857
8887
8917
8947
8977
9007
9037
9067
9097
9127
9157
9187
4718
4748
4778
4808
4838
4868
4898
4928
4958
4988
5018
5048
5078
5108
5138
5168
5198
5228
5258
5288
5318
5348
5378
5408
5438
5468
5498
5528
5558
5588
5618
5648
5678
5708
5738
5768
5798
5828
5858
5888
5918
5948
5978
6008
6038
6068
6098
6128
6158
6188
6218
6248
6278
6308
6338
6368
6398
6428
6458
6488
6518
6548
6578
6608
6638
6668
6698
6728
6758
6788
6818
6848
6878
6908
6938
6968
6998
7028
7058
7088
7118
7148
7178
7208
7238
7268
7298
7328
7358
7388
7418
7448
7478
7508
7538
7568
7598
7628
7658
7688
7718
7748
7778
7808
7838
7868
7898
7928
7958
7988
8018
8048
8078
8108
8138
8168
8198
8228
8258
8288
8318
8348
8378
8408
8438
8468
8498
8528
8558
8588
8618
8648
8678
8708
8738
8768
8798
8828
8858
8888
8918
8948
8978
9008
9038
9068
9098
9128
9158
9188
4719
4749
4779
4809
4839
4869
4899
4929
4959
4989
5019
5049
5079
5109
5139
5169
5199
5229
5259
5289
5319
5349
5379
5409
5439
5469
5499
5529
5559
5589
5619
5649
5679
5709
5739
5769
5799
5829
5859
5889
5919
5949
5979
6009
6039
6069
6099
6129
6159
6189
6219
6249
6279
6309
6339
6369
6399
6429
6459
6489
6519
6549
6579
6609
6639
6669
6699
6729
6759
6789
6819
6849
6879
6909
6939
6969
6999
7029
7059
7089
7119
7149
7179
7209
7239
7269
7299
7329
7359
7389
7419
7449
7479
7509
7539
7569
7599
7629
7659
7689
7719
7749
7779
7809
7839
7869
7899
7929
7959
7989
8019
8049
8079
8109
8139
8169
8199
8229
8259
8289
8319
8349
8379
8409
8439
8469
8499
8529
8559
8589
8619
8649
8679
8709
8739
8769
8799
8829
8859
8889
8919
8949
8979
9009
9039
9069
9099
9129
9159
9189
4720
4750
4780
4810
4840
4870
4900
4930
4960
4990
5020
5050
5080
5110
5140
5170
5200
5230
5260
5290
5320
5350
5380
5410
5440
5470
5500
5530
5560
5590
5620
5650
5680
5710
5740
5770
5800
5830
5860
5890
5920
5950
5980
6010
6040
6070
6100
6130
6160
6190
6220
6250
6280
6310
6340
6370
6400
6430
6460
6490
6520
6550
6580
6610
6640
6670
6700
6730
6760
6790
6820
6850
6880
6910
6940
6970
7000
7030
7060
7090
7120
7150
7180
7210
7240
7270
7300
7330
7360
7390
7420
7450
7480
7510
7540
7570
7600
7630
7660
7690
7720
7750
7780
7810
7840
7870
7900
7930
7960
7990
8020
8050
8080
8110
8140
8170
8200
8230
8260
8290
8320
8350
8380
8410
8440
8470
8500
8530
8560
8590
8620
8650
8680
8710
8740
8770
8800
8830
8860
8890
8920
8950
8980
9010
9040
9070
9100
9130
9160
9190
4721
4751
4781
4811
4841
4871
4901
4931
4961
4991
5021
5051
5081
5111
5141
5171
5201
5231
5261
5291
5321
5351
5381
5411
5441
5471
5501
5531
5561
5591
5621
5651
5681
5711
5741
5771
5801
5831
5861
5891
5921
5951
5981
6011
6041
6071
6101
6131
6161
6191
6221
6251
6281
6311
6341
6371
6401
6431
6461
6491
6521
6551
6581
6611
6641
6671
6701
6731
6761
6791
6821
6851
6881
6911
6941
6971
7001
7031
7061
7091
7121
7151
7181
7211
7241
7271
7301
7331
7361
7391
7421
7451
7481
7511
7541
7571
7601
7631
7661
7691
7721
7751
7781
7811
7841
7871
7901
7931
7961
7991
8021
8051
8081
8111
8141
8171
8201
8231
8261
8291
8321
8351
8381
8411
8441
8471
8501
8531
8561
8591
8621
8651
8681
8711
8741
8771
8801
8831
8861
8891
8921
8951
8981
9011
9041
9071
9101
9131
9161
9191
4722
4752
4782
4812
4842
4872
4902
4932
4962
4992
5022
5052
5082
5112
5142
5172
5202
5232
5262
5292
5322
5352
5382
5412
5442
5472
5502
5532
5562
5592
5622
5652
5682
5712
5742
5772
5802
5832
5862
5892
5922
5952
5982
6012
6042
6072
6102
6132
6162
6192
6222
6252
6282
6312
6342
6372
6402
6432
6462
6492
6522
6552
6582
6612
6642
6672
6702
6732
6762
6792
6822
6852
6882
6912
6942
6972
7002
7032
7062
7092
7122
7152
7182
7212
7242
7272
7302
7332
7362
7392
7422
7452
7482
7512
7542
7572
7602
7632
7662
7692
7722
7752
7782
7812
7842
7872
7902
7932
7962
7992
8022
8052
8082
8112
8142
8172
8202
8232
8262
8292
8322
8352
8382
8412
8442
8472
8502
8532
8562
8592
8622
8652
8682
8712
8742
8772
8802
8832
8862
8892
8922
8952
8982
9012
9042
9072
9102
9132
9162
9192
4723
4753
4783
4813
4843
4873
4903
4933
4963
4993
5023
5053
5083
5113
5143
5173
5203
5233
5263
5293
5323
5353
5383
5413
5443
5473
5503
5533
5563
5593
5623
5653
5683
5713
5743
5773
5803
5833
5863
5893
5923
5953
5983
6013
6043
6073
6103
6133
6163
6193
6223
6253
6283
6313
6343
6373
6403
6433
6463
6493
6523
6553
6583
6613
6643
6673
6703
6733
6763
6793
6823
6853
6883
6913
6943
6973
7003
7033
7063
7093
7123
7153
7183
7213
7243
7273
7303
7333
7363
7393
7423
7453
7483
7513
7543
7573
7603
7633
7663
7693
7723
7753
7783
7813
7843
7873
7903
7933
7963
7993
8023
8053
8083
8113
8143
8173
8203
8233
8263
8293
8323
8353
8383
8413
8443
8473
8503
8533
8563
8593
8623
8653
8683
8713
8743
8773
8803
8833
8863
8893
8923
8953
8983
9013
9043
9073
9103
9133
9163
9193
4724
4754
4784
4814
4844
4874
4904
4934
4964
4994
5024
5054
5084
5114
5144
5174
5204
5234
5264
5294
5324
5354
5384
5414
5444
5474
5504
5534
5564
5594
5624
5654
5684
5714
5744
5774
5804
5834
5864
5894
5924
5954
5984
6014
6044
6074
6104
6134
6164
6194
6224
6254
6284
6314
6344
6374
6404
6434
6464
6494
6524
6554
6584
6614
6644
6674
6704
6734
6764
6794
6824
6854
6884
6914
6944
6974
7004
7034
7064
7094
7124
7154
7184
7214
7244
7274
7304
7334
7364
7394
7424
7454
7484
7514
7544
7574
7604
7634
7664
7694
7724
7754
7784
7814
7844
7874
7904
7934
7964
7994
8024
8054
8084
8114
8144
8174
8204
8234
8264
8294
8324
8354
8384
8414
8444
8474
8504
8534
8564
8594
8624
8654
8684
8714
8744
8774
8804
8834
8864
8894
8924
8954
8984
9014
9044
9074
9104
9134
9164
9194
4725
4755
4785
4815
4845
4875
4905
4935
4965
4995
5025
5055
5085
5115
5145
5175
5205
5235
5265
5295
5325
5355
5385
5415
5445
5475
5505
5535
5565
5595
5625
5655
5685
5715
5745
5775
5805
5835
5865
5895
5925
5955
5985
6015
6045
6075
6105
6135
6165
6195
6225
6255
6285
6315
6345
6375
6405
6435
6465
6495
6525
6555
6585
6615
6645
6675
6705
6735
6765
6795
6825
6855
6885
6915
6945
6975
7005
7035
7065
7095
7125
7155
7185
7215
7245
7275
7305
7335
7365
7395
7425
7455
7485
7515
7545
7575
7605
7635
7665
7695
7725
7755
7785
7815
7845
7875
7905
7935
7965
7995
8025
8055
8085
8115
8145
8175
8205
8235
8265
8295
8325
8355
8385
8415
8445
8475
8505
8535
8565
8595
8625
8655
8685
8715
8745
8775
8805
8835
8865
8895
8925
8955
8985
9015
9045
9075
9105
9135
9165
9195
4726
4756
4786
4816
4846
4876
4906
4936
4966
4996
5026
5056
5086
5116
5146
5176
5206
5236
5266
5296
5326
5356
5386
5416
5446
5476
5506
5536
5566
5596
5626
5656
5686
5716
5746
5776
5806
5836
5866
5896
5926
5956
5986
6016
6046
6076
6106
6136
6166
6196
6226
6256
6286
6316
6346
6376
6406
6436
6466
6496
6526
6556
6586
6616
6646
6676
6706
6736
6766
6796
6826
6856
6886
6916
6946
6976
7006
7036
7066
7096
7126
7156
7186
7216
7246
7276
7306
7336
7366
7396
7426
7456
7486
7516
7546
7576
7606
7636
7666
7696
7726
7756
7786
7816
7846
7876
7906
7936
7966
7996
8026
8056
8086
8116
8146
8176
8206
8236
8266
8296
8326
8356
8386
8416
8446
8476
8506
8536
8566
8596
8626
8656
8686
8716
8746
8776
8806
8836
8866
8896
8926
8956
8986
9016
9046
9076
9106
9136
9166
9196
4727
4757
4787
4817
4847
4877
4907
4937
4967
4997
5027
5057
5087
5117
5147
5177
5207
5237
5267
5297
5327
5357
5387
5417
5447
5477
5507
5537
5567
5597
5627
5657
5687
5717
5747
5777
5807
5837
5867
5897
5927
5957
5987
6017
6047
6077
6107
6137
6167
6197
6227
6257
6287
6317
6347
6377
6407
6437
6467
6497
6527
6557
6587
6617
6647
6677
6707
6737
6767
6797
6827
6857
6887
6917
6947
6977
7007
7037
7067
7097
7127
7157
7187
7217
7247
7277
7307
7337
7367
7397
7427
7457
7487
7517
7547
7577
7607
7637
7667
7697
7727
7757
7787
7817
7847
7877
7907
7937
7967
7997
8027
8057
8087
8117
8147
8177
8207
8237
8267
8297
8327
8357
8387
8417
8447
8477
8507
8537
8567
8597
8627
8657
8687
8717
8747
8777
8807
8837
8867
8897
8927
8957
8987
9017
9047
9077
9107
9137
9167
9197
4728
4758
4788
4818
4848
4878
4908
4938
4968
4998
5028
5058
5088
5118
5148
5178
5208
5238
5268
5298
5328
5358
5388
5418
5448
5478
5508
5538
5568
5598
5628
5658
5688
5718
5748
5778
5808
5838
5868
5898
5928
5958
5988
6018
6048
6078
6108
6138
6168
6198
6228
6258
6288
6318
6348
6378
6408
6438
6468
6498
6528
6558
6588
6618
6648
6678
6708
6738
6768
6798
6828
6858
6888
6918
6948
6978
7008
7038
7068
7098
7128
7158
7188
7218
7248
7278
7308
7338
7368
7398
7428
7458
7488
7518
7548
7578
7608
7638
7668
7698
7728
7758
7788
7818
7848
7878
7908
7938
7968
7998
8028
8058
8088
8118
8148
8178
8208
8238
8268
8298
8328
8358
8388
8418
8448
8478
8508
8538
8568
8598
8628
8658
8688
8718
8748
8778
8808
8838
8868
8898
8928
8958
8988
9018
9048
9078
9108
9138
9168
9198
4729
4759
4789
4819
4849
4879
4909
4939
4969
4999
5029
5059
5089
5119
5149
5179
5209
5239
5269
5299
5329
5359
5389
5419
5449
5479
5509
5539
5569
5599
5629
5659
5689
5719
5749
5779
5809
5839
5869
5899
5929
5959
5989
6019
6049
6079
6109
6139
6169
6199
6229
6259
6289
6319
6349
6379
6409
6439
6469
6499
6529
6559
6589
6619
6649
6679
6709
6739
6769
6799
6829
6859
6889
6919
6949
6979
7009
7039
7069
7099
7129
7159
7189
7219
7249
7279
7309
7339
7369
7399
7429
7459
7489
7519
7549
7579
7609
7639
7669
7699
7729
7759
7789
7819
7849
7879
7909
7939
7969
7999
8029
8059
8089
8119
8149
8179
8209
8239
8269
8299
8329
8359
8389
8419
8449
8479
8509
8539
8569
8599
8629
8659
8689
8719
8749
8779
8809
8839
8869
8899
8929
8959
8989
9019
9049
9079
9109
9139
9169
9199
18200
18350
18500
18650
18800
18950
19100
19250
19400
19550
19700
19850
20000
20150
20300
20450
20600
20750
20900
21050
21200
21350
21500
21650
21800
21950
22100
22250
22400
22550
18201
18351
18501
18651
18801
18951
19101
19251
19401
19551
19701
19851
20001
20151
20301
20451
20601
20751
20901
21051
21201
21351
21501
21651
21801
21951
22101
22251
22401
22551
18202
18352
18502
18652
18802
18952
19102
19252
19402
19552
19702
19852
20002
20152
20302
20452
20602
20752
20902
21052
21202
21352
21502
21652
21802
21952
22102
22252
22402
22552
18203
18353
18503
18653
18803
18953
19103
19253
19403
19553
19703
19853
20003
20153
20303
20453
20603
20753
20903
21053
21203
21353
21503
21653
21803
21953
22103
22253
22403
22553
18204
18354
18504
18654
18804
18954
19104
19254
19404
19554
19704
19854
20004
20154
20304
20454
20604
20754
20904
21054
21204
21354
21504
21654
21804
21954
22104
22254
22404
22554
18205
18355
18505
18655
18805
18955
19105
19255
19405
19555
19705
19855
20005
20155
20305
20455
20605
20755
20905
21055
21205
21355
21505
21655
21805
21955
22105
22255
22405
22555
18206
18356
18506
18656
18806
18956
19106
19256
19406
19556
19706
19856
20006
20156
20306
20456
20606
20756
20906
21056
21206
21356
21506
21656
21806
21956
22106
22256
22406
22556
18207
18357
18507
18657
18807
18957
19107
19257
19407
19557
19707
19857
20007
20157
20307
20457
20607
20757
20907
21057
21207
21357
21507
21657
21807
21957
22107
22257
22407
22557
18208
18358
18508
18658
18808
18958
19108
19258
19408
19558
19708
19858
20008
20158
20308
20458
20608
20758
20908
21058
21208
21358
21508
21658
21808
21958
22108
22258
22408
22558
18209
18359
18509
18659
18809
18959
19109
19259
19409
19559
19709
19859
20009
20159
20309
20459
20609
20759
20909
21059
21209
21359
21509
21659
21809
21959
22109
22259
22409
22559
18210
18360
18510
18660
18810
18960
19110
19260
19410
19560
19710
19860
20010
20160
20310
20460
20610
20760
20910
21060
21210
21360
21510
21660
21810
21960
22110
22260
22410
22560
18211
18361
18511
18661
18811
18961
19111
19261
19411
19561
19711
19861
20011
20161
20311
20461
20611
20761
20911
21061
21211
21361
21511
21661
21811
21961
22111
22261
22411
22561
18212
18362
18512
18662
18812
18962
19112
19262
19412
19562
19712
19862
20012
20162
20312
20462
20612
20762
20912
21062
21212
21362
21512
21662
21812
21962
22112
22262
22412
22562
18213
18363
18513
18663
18813
18963
19113
19263
19413
19563
19713
19863
20013
20163
20313
20463
20613
20763
20913
21063
21213
21363
21513
21663
21813
21963
22113
22263
22413
22563
18214
18364
18514
18664
18814
18964
19114
19264
19414
19564
19714
19864
20014
20164
20314
20464
20614
20764
20914
21064
21214
21364
21514
21664
21814
21964
22114
22264
22414
22564
18215
18365
18515
18665
18815
18965
19115
19265
19415
19565
19715
19865
20015
20165
20315
20465
20615
20765
20915
21065
21215
21365
21515
21665
21815
21965
22115
22265
22415
22565
18216
18366
18516
18666
18816
18966
19116
19266
19416
19566
19716
19866
20016
20166
20316
20466
20616
20766
20916
21066
21216
21366
21516
21666
21816
21966
22116
22266
22416
22566
18217
18367
18517
18667
18817
18967
19117
19267
19417
19567
19717
19867
20017
20167
20317
20467
20617
20767
20917
21067
21217
21367
21517
21667
21817
21967
22117
22267
22417
22567
18218
18368
18518
18668
18818
18968
19118
19268
19418
19568
19718
19868
20018
20168
20318
20468
20618
20768
20918
21068
21218
21368
21518
21668
21818
21968
22118
22268
22418
22568
18219
18369
18519
18669
18819
18969
19119
19269
19419
19569
19719
19869
20019
20169
20319
20469
20619
20769
20919
21069
21219
21369
21519
21669
21819
21969
22119
22269
22419
22569
18220
18370
18520
18670
18820
18970
19120
19270
19420
19570
19720
19870
20020
20170
20320
20470
20620
20770
20920
21070
21220
21370
21520
21670
21820
21970
22120
22270
22420
22570
18221
18371
18521
18671
18821
18971
19121
19271
19421
19571
19721
19871
20021
20171
20321
20471
20621
20771
20921
21071
21221
21371
21521
21671
21821
21971
22121
22271
22421
22571
18222
18372
18522
18672
18822
18972
19122
19272
19422
19572
19722
19872
20022
20172
20322
20472
20622
20772
20922
21072
21222
21372
21522
21672
21822
21972
22122
22272
22422
22572
18223
18373
18523
18673
18823
18973
19123
19273
19423
19573
19723
19873
20023
20173
20323
20473
20623
20773
20923
21073
21223
21373
21523
21673
21823
21973
22123
22273
22423
22573
18224
18374
18524
18674
18824
18974
19124
19274
19424
19574
19724
19874
20024
20174
20324
20474
20624
20774
20924
21074
21224
21374
21524
21674
21824
21974
22124
22274
22424
22574
18225
18375
18525
18675
18825
18975
19125
19275
19425
19575
19725
19875
20025
20175
20325
20475
20625
20775
20925
21075
21225
21375
21525
21675
21825
21975
22125
22275
22425
22575
18226
18376
18526
18676
18826
18976
19126
19276
19426
19576
19726
19876
20026
20176
20326
20476
20626
20776
20926
21076
21226
21376
21526
21676
21826
21976
22126
22276
22426
22576
18227
18377
18527
18677
18827
18977
19127
19277
19427
19577
19727
19877
20027
20177
20327
20477
20627
20777
20927
21077
21227
21377
21527
21677
21827
21977
22127
22277
22427
22577
18228
18378
18528
18678
18828
18978
19128
19278
19428
19578
19728
19878
20028
20178
20328
20478
20628
20778
20928
21078
21228
21378
21528
21678
21828
21978
22128
22278
22428
22578
18229
18379
18529
18679
18829
18979
19129
19279
19429
19579
19729
19879
20029
20179
20329
20479
20629
20779
20929
21079
21229
21379
21529
21679
21829
21979
22129
22279
22429
22579
18230
18380
18530
18680
18830
18980
19130
19280
19430
19580
19730
19880
20030
20180
20330
20480
20630
20780
20930
21080
21230
21380
21530
21680
21830
21980
22130
22280
22430
22580
18231
18381
18531
18681
18831
18981
19131
19281
19431
19581
19731
19881
20031
20181
20331
20481
20631
20781
20931
21081
21231
21381
21531
21681
21831
21981
22131
22281
22431
22581
18232
18382
18532
18682
18832
18982
19132
19282
19432
19582
19732
19882
20032
20182
20332
20482
20632
20782
20932
21082
21232
21382
21532
21682
21832
21982
22132
22282
22432
22582
18233
18383
18533
18683
18833
18983
19133
19283
19433
19583
19733
19883
20033
20183
20333
20483
20633
20783
20933
21083
21233
21383
21533
21683
21833
21983
22133
22283
22433
22583
18234
18384
18534
18684
18834
18984
19134
19284
19434
19584
19734
19884
20034
20184
20334
20484
20634
20784
20934
21084
21234
21384
21534
21684
21834
21984
22134
22284
22434
22584
18235
18385
18535
18685
18835
18985
19135
19285
19435
19585
19735
19885
20035
20185
20335
20485
20635
20785
20935
21085
21235
21385
21535
21685
21835
21985
22135
22285
22435
22585
18236
18386
18536
18686
18836
18986
19136
19286
19436
19586
19736
19886
20036
20186
20336
20486
20636
20786
20936
21086
21236
21386
21536
21686
21836
21986
22136
22286
22436
22586
18237
18387
18537
18687
18837
18987
19137
19287
19437
19587
19737
19887
20037
20187
20337
20487
20637
20787
20937
21087
21237
21387
21537
21687
21837
21987
22137
22287
22437
22587
18238
18388
18538
18688
18838
18988
19138
19288
19438
19588
19738
19888
20038
20188
20338
20488
20638
20788
20938
21088
21238
21388
21538
21688
21838
21988
22138
22288
22438
22588
18239
18389
18539
18689
18839
18989
19139
19289
19439
19589
19739
19889
20039
20189
20339
20489
20639
20789
20939
21089
21239
21389
21539
21689
21839
21989
22139
22289
22439
22589
18240
18390
18540
18690
18840
18990
19140
19290
19440
19590
19740
19890
20040
20190
20340
20490
20640
20790
20940
21090
21240
21390
21540
21690
21840
21990
22140
22290
22440
22590
18241
18391
18541
18691
18841
18991
19141
19291
19441
19591
19741
19891
20041
20191
20341
20491
20641
20791
20941
21091
21241
21391
21541
21691
21841
21991
22141
22291
22441
22591
18242
18392
18542
18692
18842
18992
19142
19292
19442
19592
19742
19892
20042
20192
20342
20492
20642
20792
20942
21092
21242
21392
21542
21692
21842
21992
22142
22292
22442
22592
18243
18393
18543
18693
18843
18993
19143
19293
19443
19593
19743
19893
20043
20193
20343
20493
20643
20793
20943
21093
21243
21393
21543
21693
21843
21993
22143
22293
22443
22593
18244
18394
18544
18694
18844
18994
19144
19294
19444
19594
19744
19894
20044
20194
20344
20494
20644
20794
20944
21094
21244
21394
21544
21694
21844
21994
22144
22294
22444
22594
18245
18395
18545
18695
18845
18995
19145
19295
19445
19595
19745
19895
20045
20195
20345
20495
20645
20795
20945
21095
21245
21395
21545
21695
21845
21995
22145
22295
22445
22595
18246
18396
18546
18696
18846
18996
19146
19296
19446
19596
19746
19896
20046
20196
20346
20496
20646
20796
20946
21096
21246
21396
21546
21696
21846
21996
22146
22296
22446
22596
18247
18397
18547
18697
18847
18997
19147
19297
19447
19597
19747
19897
20047
20197
20347
20497
20647
20797
20947
21097
21247
21397
21547
21697
21847
21997
22147
22297
22447
22597
18248
18398
18548
18698
18848
18998
19148
19298
19448
19598
19748
19898
20048
20198
20348
20498
20648
20798
20948
21098
21248
21398
21548
21698
21848
21998
22148
22298
22448
22598
18249
18399
18549
18699
18849
18999
19149
19299
19449
19599
19749
19899
20049
20199
20349
20499
20649
20799
20949
21099
21249
21399
21549
21699
21849
21999
22149
22299
22449
22599
18250
18400
18550
18700
18850
19000
19150
19300
19450
19600
19750
19900
20050
20200
20350
20500
20650
20800
20950
21100
21250
21400
21550
21700
21850
22000
22150
22300
22450
22600
18251
18401
18551
18701
18851
19001
19151
19301
19451
19601
19751
19901
20051
20201
20351
20501
20651
20801
20951
21101
21251
21401
21551
21701
21851
22001
22151
22301
22451
22601
18252
18402
18552
18702
18852
19002
19152
19302
19452
19602
19752
19902
20052
20202
20352
20502
20652
20802
20952
21102
21252
21402
21552
21702
21852
22002
22152
22302
22452
22602
18253
18403
18553
18703
18853
19003
19153
19303
19453
19603
19753
19903
20053
20203
20353
20503
20653
20803
20953
21103
21253
21403
21553
21703
21853
22003
22153
22303
22453
22603
18254
18404
18554
18704
18854
19004
19154
19304
19454
19604
19754
19904
20054
20204
20354
20504
20654
20804
20954
21104
21254
21404
21554
21704
21854
22004
22154
22304
22454
22604
18255
18405
18555
18705
18855
19005
19155
19305
19455
19605
19755
19905
20055
20205
20355
20505
20655
20805
20955
21105
21255
21405
21555
21705
21855
22005
22155
22305
22455
22605
18256
18406
18556
18706
18856
19006
19156
19306
19456
19606
19756
19906
20056
20206
20356
20506
20656
20806
20956
21106
21256
21406
21556
21706
21856
22006
22156
22306
22456
22606
18257
18407
18557
18707
18857
19007
19157
19307
19457
19607
19757
19907
20057
20207
20357
20507
20657
20807
20957
21107
21257
21407
21557
21707
21857
22007
22157
22307
22457
22607
18258
18408
18558
18708
18858
19008
19158
19308
19458
19608
19758
19908
20058
20208
20358
20508
20658
20808
20958
21108
21258
21408
21558
21708
21858
22008
22158
22308
22458
22608
18259
18409
18559
18709
18859
19009
19159
19309
19459
19609
19759
19909
20059
20209
20359
20509
20659
20809
20959
21109
21259
21409
21559
21709
21859
22009
22159
22309
22459
22609
18260
18410
18560
18710
18860
19010
19160
19310
19460
19610
19760
19910
20060
20210
20360
20510
20660
20810
20960
21110
21260
21410
21560
21710
21860
22010
22160
22310
22460
22610
18261
18411
18561
18711
18861
19011
19161
19311
19461
19611
19761
19911
20061
20211
20361
20511
20661
20811
20961
21111
21261
21411
21561
21711
21861
22011
22161
22311
22461
22611
18262
18412
18562
18712
18862
19012
19162
19312
19462
19612
19762
19912
20062
20212
20362
20512
20662
20812
20962
21112
21262
21412
21562
21712
21862
22012
22162
22312
22462
22612
18263
18413
18563
18713
18863
19013
19163
19313
19463
19613
19763
19913
20063
20213
20363
20513
20663
20813
20963
21113
21263
21413
21563
21713
21863
22013
22163
22313
22463
22613
18264
18414
18564
18714
18864
19014
19164
19314
19464
19614
19764
19914
20064
20214
20364
20514
20664
20814
20964
21114
21264
21414
21564
21714
21864
22014
22164
22314
22464
22614
18265
18415
18565
18715
18865
19015
19165
19315
19465
19615
19765
19915
20065
20215
20365
20515
20665
20815
20965
21115
21265
21415
21565
21715
21865
22015
22165
22315
22465
22615
18266
18416
18566
18716
18866
19016
19166
19316
19466
19616
19766
19916
20066
20216
20366
20516
20666
20816
20966
21116
21266
21416
21566
21716
21866
22016
22166
22316
22466
22616
18267
18417
18567
18717
18867
19017
19167
19317
19467
19617
19767
19917
20067
20217
20367
20517
20667
20817
20967
21117
21267
21417
21567
21717
21867
22017
22167
22317
22467
22617
18268
18418
18568
18718
18868
19018
19168
19318
19468
19618
19768
19918
20068
20218
20368
20518
20668
20818
20968
21118
21268
21418
21568
21718
21868
22018
22168
22318
22468
22618
18269
18419
18569
18719
18869
19019
19169
19319
19469
19619
19769
19919
20069
20219
20369
20519
20669
20819
20969
21119
21269
21419
21569
21719
21869
22019
22169
22319
22469
22619
18270
18420
18570
18720
18870
19020
19170
19320
19470
19620
19770
19920
20070
20220
20370
20520
20670
20820
20970
21120
21270
21420
21570
21720
21870
22020
22170
22320
22470
22620
18271
18421
18571
18721
18871
19021
19171
19321
19471
19621
19771
19921
20071
20221
20371
20521
20671
20821
20971
21121
21271
21421
21571
21721
21871
22021
22171
22321
22471
22621
18272
18422
18572
18722
18872
19022
19172
19322
19472
19622
19772
19922
20072
20222
20372
20522
20672
20822
20972
21122
21272
21422
21572
21722
21872
22022
22172
22322
22472
22622
18273
18423
18573
18723
18873
19023
19173
19323
19473
19623
19773
19923
20073
20223
20373
20523
20673
20823
20973
21123
21273
21423
21573
21723
21873
22023
22173
22323
22473
22623
18274
18424
18574
18724
18874
19024
19174
19324
19474
19624
19774
19924
20074
20224
20374
20524
20674
20824
20974
21124
21274
21424
21574
21724
21874
22024
22174
22324
22474
22624
18275
18425
18575
18725
18875
19025
19175
19325
19475
19625
19775
19925
20075
20225
20375
20525
20675
20825
20975
21125
21275
21425
21575
21725
21875
22025
22175
22325
22475
22625
18276
18426
18576
18726
18876
19026
19176
19326
19476
19626
19776
19926
20076
20226
20376
20526
20676
20826
20976
21126
21276
21426
21576
21726
21876
22026
22176
22326
22476
22626
18277
18427
18577
18727
18877
19027
19177
19327
19477
19627
19777
19927
20077
20227
20377
20527
20677
20827
20977
21127
21277
21427
21577
21727
21877
22027
22177
22327
22477
22627
18278
18428
18578
18728
18878
19028
19178
19328
19478
19628
19778
19928
20078
20228
20378
20528
20678
20828
20978
21128
21278
21428
21578
21728
21878
22028
22178
22328
22478
22628
18279
18429
18579
18729
18879
19029
19179
19329
19479
19629
19779
19929
20079
20229
20379
20529
20679
20829
20979
21129
21279
21429
21579
21729
21879
22029
22179
22329
22479
22629
18280
18430
18580
18730
18880
19030
19180
19330
19480
19630
19780
19930
20080
20230
20380
20530
20680
20830
20980
21130
21280
21430
21580
21730
21880
22030
22180
22330
22480
22630
18281
18431
18581
18731
18881
19031
19181
19331
19481
19631
19781
19931
20081
20231
20381
20531
20681
20831
20981
21131
21281
21431
21581
21731
21881
22031
22181
22331
22481
22631
18282
18432
18582
18732
18882
19032
19182
19332
19482
19632
19782
19932
20082
20232
20382
20532
20682
20832
20982
21132
21282
21432
21582
21732
21882
22032
22182
22332
22482
22632
18283
18433
18583
18733
18883
19033
19183
19333
19483
19633
19783
19933
20083
20233
20383
20533
20683
20833
20983
21133
21283
21433
21583
21733
21883
22033
22183
22333
22483
22633
18284
18434
18584
18734
18884
19034
19184
19334
19484
19634
19784
19934
20084
20234
20384
20534
20684
20834
20984
21134
21284
21434
21584
21734
21884
22034
22184
22334
22484
22634
18285
18435
18585
18735
18885
19035
19185
19335
19485
19635
19785
19935
20085
20235
20385
20535
20685
20835
20985
21135
21285
21435
21585
21735
21885
22035
22185
22335
22485
22635
18286
18436
18586
18736
18886
19036
19186
19336
19486
19636
19786
19936
20086
20236
20386
20536
20686
20836
20986
21136
21286
21436
21586
21736
21886
22036
22186
22336
22486
22636
18287
18437
18587
18737
18887
19037
19187
19337
19487
19637
19787
19937
20087
20237
20387
20537
20687
20837
20987
21137
21287
21437
21587
21737
21887
22037
22187
22337
22487
22637
18288
18438
18588
18738
18888
19038
19188
19338
19488
19638
19788
19938
20088
20238
20388
20538
20688
20838
20988
21138
21288
21438
21588
21738
21888
22038
22188
22338
22488
22638
18289
18439
18589
18739
18889
19039
19189
19339
19489
19639
19789
19939
20089
20239
20389
20539
20689
20839
20989
21139
21289
21439
21589
21739
21889
22039
22189
22339
22489
22639
18290
18440
18590
18740
18890
19040
19190
19340
19490
19640
19790
19940
20090
20240
20390
20540
20690
20840
20990
21140
21290
21440
21590
21740
21890
22040
22190
22340
22490
22640
18291
18441
18591
18741
18891
19041
19191
19341
19491
19641
19791
19941
20091
20241
20391
20541
20691
20841
20991
21141
21291
21441
21591
21741
21891
22041
22191
22341
22491
22641
18292
18442
18592
18742
18892
19042
19192
19342
19492
19642
19792
19942
20092
20242
20392
20542
20692
20842
20992
21142
21292
21442
21592
21742
21892
22042
22192
22342
22492
22642
18293
18443
18593
18743
18893
19043
19193
19343
19493
19643
19793
19943
20093
20243
20393
20543
20693
20843
20993
21143
21293
21443
21593
21743
21893
22043
22193
22343
22493
22643
18294
18444
18594
18744
18894
19044
19194
19344
19494
19644
19794
19944
20094
20244
20394
20544
20694
20844
20994
21144
21294
21444
21594
21744
21894
22044
22194
22344
22494
22644
18295
18445
18595
18745
18895
19045
19195
19345
19495
19645
19795
19945
20095
20245
20395
20545
20695
20845
20995
21145
21295
21445
21595
21745
21895
22045
22195
22345
22495
22645
18296
18446
18596
18746
18896
19046
19196
19346
19496
19646
19796
19946
20096
20246
20396
20546
20696
20846
20996
21146
21296
21446
21596
21746
21896
22046
22196
22346
22496
22646
18297
18447
18597
18747
18897
19047
19197
19347
19497
19647
19797
19947
20097
20247
20397
20547
20697
20847
20997
21147
21297
21447
21597
21747
21897
22047
22197
22347
22497
22647
18298
18448
18598
18748
18898
19048
19198
19348
19498
19648
19798
19948
20098
20248
20398
20548
20698
20848
20998
21148
21298
21448
21598
21748
21898
22048
22198
22348
22498
22648
18299
18449
18599
18749
18899
19049
19199
19349
19499
19649
19799
19949
20099
20249
20399
20549
20699
20849
20999
21149
21299
21449
21599
21749
21899
22049
22199
22349
22499
22649
18300
18450
18600
18750
18900
19050
19200
19350
19500
19650
19800
19950
20100
20250
20400
20550
20700
20850
21000
21150
21300
21450
21600
21750
21900
22050
22200
22350
22500
22650
18301
18451
18601
18751
18901
19051
19201
19351
19501
19651
19801
19951
20101
20251
20401
20551
20701
20851
21001
21151
21301
21451
21601
21751
21901
22051
22201
22351
22501
22651
18302
18452
18602
18752
18902
19052
19202
19352
19502
19652
19802
19952
20102
20252
20402
20552
20702
20852
21002
21152
21302
21452
21602
21752
21902
22052
22202
22352
22502
22652
18303
18453
18603
18753
18903
19053
19203
19353
19503
19653
19803
19953
20103
20253
20403
20553
20703
20853
21003
21153
21303
21453
21603
21753
21903
22053
22203
22353
22503
22653
18304
18454
18604
18754
18904
19054
19204
19354
19504
19654
19804
19954
20104
20254
20404
20554
20704
20854
21004
21154
21304
21454
21604
21754
21904
22054
22204
22354
22504
22654
18305
18455
18605
18755
18905
19055
19205
19355
19505
19655
19805
19955
20105
20255
20405
20555
20705
20855
21005
21155
21305
21455
21605
21755
21905
22055
22205
22355
22505
22655
18306
18456
18606
18756
18906
19056
19206
19356
19506
19656
19806
19956
20106
20256
20406
20556
20706
20856
21006
21156
21306
21456
21606
21756
21906
22056
22206
22356
22506
22656
18307
18457
18607
18757
18907
19057
19207
19357
19507
19657
19807
19957
20107
20257
20407
20557
20707
20857
21007
21157
21307
21457
21607
21757
21907
22057
22207
22357
22507
22657
18308
18458
18608
18758
18908
19058
19208
19358
19508
19658
19808
19958
20108
20258
20408
20558
20708
20858
21008
21158
21308
21458
21608
21758
21908
22058
22208
22358
22508
22658
18309
18459
18609
18759
18909
19059
19209
19359
19509
19659
19809
19959
20109
20259
20409
20559
20709
20859
21009
21159
21309
21459
21609
21759
21909
22059
22209
22359
22509
22659
18310
18460
18610
18760
18910
19060
19210
19360
19510
19660
19810
19960
20110
20260
20410
20560
20710
20860
21010
21160
21310
21460
21610
21760
21910
22060
22210
22360
22510
22660
18311
18461
18611
18761
18911
19061
19211
19361
19511
19661
19811
19961
20111
20261
20411
20561
20711
20861
21011
21161
21311
21461
21611
21761
21911
22061
22211
22361
22511
22661
18312
18462
18612
18762
18912
19062
19212
19362
19512
19662
19812
19962
20112
20262
20412
20562
20712
20862
21012
21162
21312
21462
21612
21762
21912
22062
22212
22362
22512
22662
18313
18463
18613
18763
18913
19063
19213
19363
19513
19663
19813
19963
20113
20263
20413
20563
20713
20863
21013
21163
21313
21463
21613
21763
21913
22063
22213
22363
22513
22663
18314
18464
18614
18764
18914
19064
19214
19364
19514
19664
19814
19964
20114
20264
20414
20564
20714
20864
21014
21164
21314
21464
21614
21764
21914
22064
22214
22364
22514
22664
18315
18465
18615
18765
18915
19065
19215
19365
19515
19665
19815
19965
20115
20265
20415
20565
20715
20865
21015
21165
21315
21465
21615
21765
21915
22065
22215
22365
22515
22665
18316
18466
18616
18766
18916
19066
19216
19366
19516
19666
19816
19966
20116
20266
20416
20566
20716
20866
21016
21166
21316
21466
21616
21766
21916
22066
22216
22366
22516
22666
18317
18467
18617
18767
18917
19067
19217
19367
19517
19667
19817
19967
20117
20267
20417
20567
20717
20867
21017
21167
21317
21467
21617
21767
21917
22067
22217
22367
22517
22667
18318
18468
18618
18768
18918
19068
19218
19368
19518
19668
19818
19968
20118
20268
20418
20568
20718
20868
21018
21168
21318
21468
21618
21768
21918
22068
22218
22368
22518
22668
18319
18469
18619
18769
18919
19069
19219
19369
19519
19669
19819
19969
20119
20269
20419
20569
20719
20869
21019
21169
21319
21469
21619
21769
21919
22069
22219
22369
22519
22669
18320
18470
18620
18770
18920
19070
19220
19370
19520
19670
19820
19970
20120
20270
20420
20570
20720
20870
21020
21170
21320
21470
21620
21770
21920
22070
22220
22370
22520
22670
18321
18471
18621
18771
18921
19071
19221
19371
19521
19671
19821
19971
20121
20271
20421
20571
20721
20871
21021
21171
21321
21471
21621
21771
21921
22071
22221
22371
22521
22671
18322
18472
18622
18772
18922
19072
19222
19372
19522
19672
19822
19972
20122
20272
20422
20572
20722
20872
21022
21172
21322
21472
21622
21772
21922
22072
22222
22372
22522
22672
18323
18473
18623
18773
18923
19073
19223
19373
19523
19673
19823
19973
20123
20273
20423
20573
20723
20873
21023
21173
21323
21473
21623
21773
21923
22073
22223
22373
22523
22673
18324
18474
18624
18774
18924
19074
19224
19374
19524
19674
19824
19974
20124
20274
20424
20574
20724
20874
21024
21174
21324
21474
21624
21774
21924
22074
22224
22374
22524
22674
18325
18475
18625
18775
18925
19075
19225
19375
19525
19675
19825
19975
20125
20275
20425
20575
20725
20875
21025
21175
21325
21475
21625
21775
21925
22075
22225
22375
22525
22675
18326
18476
18626
18776
18926
19076
19226
19376
19526
19676
19826
19976
20126
20276
20426
20576
20726
20876
21026
21176
21326
21476
21626
21776
21926
22076
22226
22376
22526
22676
18327
18477
18627
18777
18927
19077
19227
19377
19527
19677
19827
19977
20127
20277
20427
20577
20727
20877
21027
21177
21327
21477
21627
21777
21927
22077
22227
22377
22527
22677
18328
18478
18628
18778
18928
19078
19228
19378
19528
19678
19828
19978
20128
20278
20428
20578
20728
20878
21028
21178
21328
21478
21628
21778
21928
22078
22228
22378
22528
22678
18329
18479
18629
18779
18929
19079
19229
19379
19529
19679
19829
19979
20129
20279
20429
20579
20729
20879
21029
21179
21329
21479
21629
21779
21929
22079
22229
22379
22529
22679
18330
18480
18630
18780
18930
19080
19230
19380
19530
19680
19830
19980
20130
20280
20430
20580
20730
20880
21030
21180
21330
21480
21630
21780
21930
22080
22230
22380
22530
22680
18331
18481
18631
18781
18931
19081
19231
19381
19531
19681
19831
19981
20131
20281
20431
20581
20731
20881
21031
21181
21331
21481
21631
21781
21931
22081
22231
22381
22531
22681
18332
18482
18632
18782
18932
19082
19232
19382
19532
19682
19832
19982
20132
20282
20432
20582
20732
20882
21032
21182
21332
21482
21632
21782
21932
22082
22232
22382
22532
22682
18333
18483
18633
18783
18933
19083
19233
19383
19533
19683
19833
19983
20133
20283
20433
20583
20733
20883
21033
21183
21333
21483
21633
21783
21933
22083
22233
22383
22533
22683
18334
18484
18634
18784
18934
19084
19234
19384
19534
19684
19834
19984
20134
20284
20434
20584
20734
20884
21034
21184
21334
21484
21634
21784
21934
22084
22234
22384
22534
22684
18335
18485
18635
18785
18935
19085
19235
19385
19535
19685
19835
19985
20135
20285
20435
20585
20735
20885
21035
21185
21335
21485
21635
21785
21935
22085
22235
22385
22535
22685
18336
18486
18636
18786
18936
19086
19236
19386
19536
19686
19836
19986
20136
20286
20436
20586
20736
20886
21036
21186
21336
21486
21636
21786
21936
22086
22236
22386
22536
22686
18337
18487
18637
18787
18937
19087
19237
19387
19537
19687
19837
19987
20137
20287
20437
20587
20737
20887
21037
21187
21337
21487
21637
21787
21937
22087
22237
22387
22537
22687
18338
18488
18638
18788
18938
19088
19238
19388
19538
19688
19838
19988
20138
20288
20438
20588
20738
20888
21038
21188
21338
21488
21638
21788
21938
22088
22238
22388
22538
22688
18339
18489
18639
18789
18939
19089
19239
19389
19539
19689
19839
19989
20139
20289
20439
20589
20739
20889
21039
21189
21339
21489
21639
21789
21939
22089
22239
22389
22539
22689
18340
18490
18640
18790
18940
19090
19240
19390
19540
19690
19840
19990
20140
20290
20440
20590
20740
20890
21040
21190
21340
21490
21640
21790
21940
22090
22240
22390
22540
22690
18341
18491
18641
18791
18941
19091
19241
19391
19541
19691
19841
19991
20141
20291
20441
20591
20741
20891
21041
21191
21341
21491
21641
21791
21941
22091
22241
22391
22541
22691
18342
18492
18642
18792
18942
19092
19242
19392
19542
19692
19842
19992
20142
20292
20442
20592
20742
20892
21042
21192
21342
21492
21642
21792
21942
22092
22242
22392
22542
22692
18343
18493
18643
18793
18943
19093
19243
19393
19543
19693
19843
19993
20143
20293
20443
20593
20743
20893
21043
21193
21343
21493
21643
21793
21943
22093
22243
22393
22543
22693
18344
18494
18644
18794
18944
19094
19244
19394
19544
19694
19844
19994
20144
20294
20444
20594
20744
20894
21044
21194
21344
21494
21644
21794
21944
22094
22244
22394
22544
22694
18345
18495
18645
18795
18945
19095
19245
19395
19545
19695
19845
19995
20145
20295
20445
20595
20745
20895
21045
21195
21345
21495
21645
21795
21945
22095
22245
22395
22545
22695
18346
18496
18646
18796
18946
19096
19246
19396
19546
19696
19846
19996
20146
20296
20446
20596
20746
20896
21046
21196
21346
21496
21646
21796
21946
22096
22246
22396
22546
22696
18347
18497
18647
18797
18947
19097
19247
19397
19547
19697
19847
19997
20147
20297
20447
20597
20747
20897
21047
21197
21347
21497
21647
21797
21947
22097
22247
22397
22547
22697
18348
18498
18648
18798
18948
19098
19248
19398
19548
19698
19848
19998
20148
20298
20448
20598
20748
20898
21048
21198
21348
21498
21648
21798
21948
22098
22248
22398
22548
22698
18349
18499
18649
18799
18949
19099
19249
19399
19549
19699
19849
19999
20149
20299
20449
20599
20749
20899
21049
21199
21349
21499
21649
21799
21949
22099
22249
22399
22549
22699
13700
13850
14000
14150
14300
14450
14600
14750
14900
15050
15200
15350
15500
15650
15800
15950
16100
16250
16400
16550
16700
16850
17000
17150
17300
17450
17600
17750
17900
18050
13701
13851
14001
14151
14301
14451
14601
14751
14901
15051
15201
15351
15501
15651
15801
15951
16101
16251
16401
16551
16701
16851
17001
17151
17301
17451
17601
17751
17901
18051
13702
13852
14002
14152
14302
14452
14602
14752
14902
15052
15202
15352
15502
15652
15802
15952
16102
16252
16402
16552
16702
16852
17002
17152
17302
17452
17602
17752
17902
18052
13703
13853
14003
14153
14303
14453
14603
14753
14903
15053
15203
15353
15503
15653
15803
15953
16103
16253
16403
16553
16703
16853
17003
17153
17303
17453
17603
17753
17903
18053
13704
13854
14004
14154
14304
14454
14604
14754
14904
15054
15204
15354
15504
15654
15804
15954
16104
16254
16404
16554
16704
16854
17004
17154
17304
17454
17604
17754
17904
18054
13705
13855
14005
14155
14305
14455
14605
14755
14905
15055
15205
15355
15505
15655
15805
15955
16105
16255
16405
16555
16705
16855
17005
17155
17305
17455
17605
17755
17905
18055
13706
13856
14006
14156
14306
14456
14606
14756
14906
15056
15206
15356
15506
15656
15806
15956
16106
16256
16406
16556
16706
16856
17006
17156
17306
17456
17606
17756
17906
18056
13707
13857
14007
14157
14307
14457
14607
14757
14907
15057
15207
15357
15507
15657
15807
15957
16107
16257
16407
16557
16707
16857
17007
17157
17307
17457
17607
17757
17907
18057
13708
13858
14008
14158
14308
14458
14608
14758
14908
15058
15208
15358
15508
15658
15808
15958
16108
16258
16408
16558
16708
16858
17008
17158
17308
17458
17608
17758
17908
18058
13709
13859
14009
14159
14309
14459
14609
14759
14909
15059
15209
15359
15509
15659
15809
15959
16109
16259
16409
16559
16709
16859
17009
17159
17309
17459
17609
17759
17909
18059
13710
13860
14010
14160
14310
14460
14610
14760
14910
15060
15210
15360
15510
15660
15810
15960
16110
16260
16410
16560
16710
16860
17010
17160
17310
17460
17610
17760
17910
18060
13711
13861
14011
14161
14311
14461
14611
14761
14911
15061
15211
15361
15511
15661
15811
15961
16111
16261
16411
16561
16711
16861
17011
17161
17311
17461
17611
17761
17911
18061
13712
13862
14012
14162
14312
14462
14612
14762
14912
15062
15212
15362
15512
15662
15812
15962
16112
16262
16412
16562
16712
16862
17012
17162
17312
17462
17612
17762
17912
18062
13713
13863
14013
14163
14313
14463
14613
14763
14913
15063
15213
15363
15513
15663
15813
15963
16113
16263
16413
16563
16713
16863
17013
17163
17313
17463
17613
17763
17913
18063
13714
13864
14014
14164
14314
14464
14614
14764
14914
15064
15214
15364
15514
15664
15814
15964
16114
16264
16414
16564
16714
16864
17014
17164
17314
17464
17614
17764
17914
18064
13715
13865
14015
14165
14315
14465
14615
14765
14915
15065
15215
15365
15515
15665
15815
15965
16115
16265
16415
16565
16715
16865
17015
17165
17315
17465
17615
17765
17915
18065
13716
13866
14016
14166
14316
14466
14616
14766
14916
15066
15216
15366
15516
15666
15816
15966
16116
16266
16416
16566
16716
16866
17016
17166
17316
17466
17616
17766
17916
18066
13717
13867
14017
14167
14317
14467
14617
14767
14917
15067
15217
15367
15517
15667
15817
15967
16117
16267
16417
16567
16717
16867
17017
17167
17317
17467
17617
17767
17917
18067
13718
13868
14018
14168
14318
14468
14618
14768
14918
15068
15218
15368
15518
15668
15818
15968
16118
16268
16418
16568
16718
16868
17018
17168
17318
17468
17618
17768
17918
18068
13719
13869
14019
14169
14319
14469
14619
14769
14919
15069
15219
15369
15519
15669
15819
15969
16119
16269
16419
16569
16719
16869
17019
17169
17319
17469
17619
17769
17919
18069
13720
13870
14020
14170
14320
14470
14620
14770
14920
15070
15220
15370
15520
15670
15820
15970
16120
16270
16420
16570
16720
16870
17020
17170
17320
17470
17620
17770
17920
18070
13721
13871
14021
14171
14321
14471
14621
14771
14921
15071
15221
15371
15521
15671
15821
15971
16121
16271
16421
16571
16721
16871
17021
17171
17321
17471
17621
17771
17921
18071
13722
13872
14022
14172
14322
14472
14622
14772
14922
15072
15222
15372
15522
15672
15822
15972
16122
16272
16422
16572
16722
16872
17022
17172
17322
17472
17622
17772
17922
18072
13723
13873
14023
14173
14323
14473
14623
14773
14923
15073
15223
15373
15523
15673
15823
15973
16123
16273
16423
16573
16723
16873
17023
17173
17323
17473
17623
17773
17923
18073
13724
13874
14024
14174
14324
14474
14624
14774
14924
15074
15224
15374
15524
15674
15824
15974
16124
16274
16424
16574
16724
16874
17024
17174
17324
17474
17624
17774
17924
18074
13725
13875
14025
14175
14325
14475
14625
14775
14925
15075
15225
15375
15525
15675
15825
15975
16125
16275
16425
16575
16725
16875
17025
17175
17325
17475
17625
17775
17925
18075
13726
13876
14026
14176
14326
14476
14626
14776
14926
15076
15226
15376
15526
15676
15826
15976
16126
16276
16426
16576
16726
16876
17026
17176
17326
17476
17626
17776
17926
18076
13727
13877
14027
14177
14327
14477
14627
14777
14927
15077
15227
15377
15527
15677
15827
15977
16127
16277
16427
16577
16727
16877
17027
17177
17327
17477
17627
17777
17927
18077
13728
13878
14028
14178
14328
14478
14628
14778
14928
15078
15228
15378
15528
15678
15828
15978
16128
16278
16428
16578
16728
16878
17028
17178
17328
17478
17628
17778
17928
18078
13729
13879
14029
14179
14329
14479
14629
14779
14929
15079
15229
15379
15529
15679
15829
15979
16129
16279
16429
16579
16729
16879
17029
17179
17329
17479
17629
17779
17929
18079
13730
13880
14030
14180
14330
14480
14630
14780
14930
15080
15230
15380
15530
15680
15830
15980
16130
16280
16430
16580
16730
16880
17030
17180
17330
17480
17630
17780
17930
18080
13731
13881
14031
14181
14331
14481
14631
14781
14931
15081
15231
15381
15531
15681
15831
15981
16131
16281
16431
16581
16731
16881
17031
17181
17331
17481
17631
17781
17931
18081
13732
13882
14032
14182
14332
14482
14632
14782
14932
15082
15232
15382
15532
15682
15832
15982
16132
16282
16432
16582
16732
16882
17032
17182
17332
17482
17632
17782
17932
18082
13733
13883
14033
14183
14333
14483
14633
14783
14933
15083
15233
15383
15533
15683
15833
15983
16133
16283
16433
16583
16733
16883
17033
17183
17333
17483
17633
17783
17933
18083
13734
13884
14034
14184
14334
14484
14634
14784
14934
15084
15234
15384
15534
15684
15834
15984
16134
16284
16434
16584
16734
16884
17034
17184
17334
17484
17634
17784
17934
18084
13735
13885
14035
14185
14335
14485
14635
14785
14935
15085
15235
15385
15535
15685
15835
15985
16135
16285
16435
16585
16735
16885
17035
17185
17335
17485
17635
17785
17935
18085
13736
13886
14036
14186
14336
14486
14636
14786
14936
15086
15236
15386
15536
15686
15836
15986
16136
16286
16436
16586
16736
16886
17036
17186
17336
17486
17636
17786
17936
18086
13737
13887
14037
14187
14337
14487
14637
14787
14937
15087
15237
15387
15537
15687
15837
15987
16137
16287
16437
16587
16737
16887
17037
17187
17337
17487
17637
17787
17937
18087
13738
13888
14038
14188
14338
14488
14638
14788
14938
15088
15238
15388
15538
15688
15838
15988
16138
16288
16438
16588
16738
16888
17038
17188
17338
17488
17638
17788
17938
18088
13739
13889
14039
14189
14339
14489
14639
14789
14939
15089
15239
15389
15539
15689
15839
15989
16139
16289
16439
16589
16739
16889
17039
17189
17339
17489
17639
17789
17939
18089
13740
13890
14040
14190
14340
14490
14640
14790
14940
15090
15240
15390
15540
15690
15840
15990
16140
16290
16440
16590
16740
16890
17040
17190
17340
17490
17640
17790
17940
18090
13741
13891
14041
14191
14341
14491
14641
14791
14941
15091
15241
15391
15541
15691
15841
15991
16141
16291
16441
16591
16741
16891
17041
17191
17341
17491
17641
17791
17941
18091
13742
13892
14042
14192
14342
14492
14642
14792
14942
15092
15242
15392
15542
15692
15842
15992
16142
16292
16442
16592
16742
16892
17042
17192
17342
17492
17642
17792
17942
18092
13743
13893
14043
14193
14343
14493
14643
14793
14943
15093
15243
15393
15543
15693
15843
15993
16143
16293
16443
16593
16743
16893
17043
17193
17343
17493
17643
17793
17943
18093
13744
13894
14044
14194
14344
14494
14644
14794
14944
15094
15244
15394
15544
15694
15844
15994
16144
16294
16444
16594
16744
16894
17044
17194
17344
17494
17644
17794
17944
18094
13745
13895
14045
14195
14345
14495
14645
14795
14945
15095
15245
15395
15545
15695
15845
15995
16145
16295
16445
16595
16745
16895
17045
17195
17345
17495
17645
17795
17945
18095
13746
13896
14046
14196
14346
14496
14646
14796
14946
15096
15246
15396
15546
15696
15846
15996
16146
16296
16446
16596
16746
16896
17046
17196
17346
17496
17646
17796
17946
18096
13747
13897
14047
14197
14347
14497
14647
14797
14947
15097
15247
15397
15547
15697
15847
15997
16147
16297
16447
16597
16747
16897
17047
17197
17347
17497
17647
17797
17947
18097
13748
13898
14048
14198
14348
14498
14648
14798
14948
15098
15248
15398
15548
15698
15848
15998
16148
16298
16448
16598
16748
16898
17048
17198
17348
17498
17648
17798
17948
18098
13749
13899
14049
14199
14349
14499
14649
14799
14949
15099
15249
15399
15549
15699
15849
15999
16149
16299
16449
16599
16749
16899
17049
17199
17349
17499
17649
17799
17949
18099
13750
13900
14050
14200
14350
14500
14650
14800
14950
15100
15250
15400
15550
15700
15850
16000
16150
16300
16450
16600
16750
16900
17050
17200
17350
17500
17650
17800
17950
18100
13751
13901
14051
14201
14351
14501
14651
14801
14951
15101
15251
15401
15551
15701
15851
16001
16151
16301
16451
16601
16751
16901
17051
17201
17351
17501
17651
17801
17951
18101
13752
13902
14052
14202
14352
14502
14652
14802
14952
15102
15252
15402
15552
15702
15852
16002
16152
16302
16452
16602
16752
16902
17052
17202
17352
17502
17652
17802
17952
18102
13753
13903
14053
14203
14353
14503
14653
14803
14953
15103
15253
15403
15553
15703
15853
16003
16153
16303
16453
16603
16753
16903
17053
17203
17353
17503
17653
17803
17953
18103
13754
13904
14054
14204
14354
14504
14654
14804
14954
15104
15254
15404
15554
15704
15854
16004
16154
16304
16454
16604
16754
16904
17054
17204
17354
17504
17654
17804
17954
18104
13755
13905
14055
14205
14355
14505
14655
14805
14955
15105
15255
15405
15555
15705
15855
16005
16155
16305
16455
16605
16755
16905
17055
17205
17355
17505
17655
17805
17955
18105
13756
13906
14056
14206
14356
14506
14656
14806
14956
15106
15256
15406
15556
15706
15856
16006
16156
16306
16456
16606
16756
16906
17056
17206
17356
17506
17656
17806
17956
18106
13757
13907
14057
14207
14357
14507
14657
14807
14957
15107
15257
15407
15557
15707
15857
16007
16157
16307
16457
16607
16757
16907
17057
17207
17357
17507
17657
17807
17957
18107
13758
13908
14058
14208
14358
14508
14658
14808
14958
15108
15258
15408
15558
15708
15858
16008
16158
16308
16458
16608
16758
16908
17058
17208
17358
17508
17658
17808
17958
18108
13759
13909
14059
14209
14359
14509
14659
14809
14959
15109
15259
15409
15559
15709
15859
16009
16159
16309
16459
16609
16759
16909
17059
17209
17359
17509
17659
17809
17959
18109
13760
13910
14060
14210
14360
14510
14660
14810
14960
15110
15260
15410
15560
15710
15860
16010
16160
16310
16460
16610
16760
16910
17060
17210
17360
17510
17660
17810
17960
18110
13761
13911
14061
14211
14361
14511
14661
14811
14961
15111
15261
15411
15561
15711
15861
16011
16161
16311
16461
16611
16761
16911
17061
17211
17361
17511
17661
17811
17961
18111
13762
13912
14062
14212
14362
14512
14662
14812
14962
15112
15262
15412
15562
15712
15862
16012
16162
16312
16462
16612
16762
16912
17062
17212
17362
17512
17662
17812
17962
18112
13763
13913
14063
14213
14363
14513
14663
14813
14963
15113
15263
15413
15563
15713
15863
16013
16163
16313
16463
16613
16763
16913
17063
17213
17363
17513
17663
17813
17963
18113
13764
13914
14064
14214
14364
14514
14664
14814
14964
15114
15264
15414
15564
15714
15864
16014
16164
16314
16464
16614
16764
16914
17064
17214
17364
17514
17664
17814
17964
18114
13765
13915
14065
14215
14365
14515
14665
14815
14965
15115
15265
15415
15565
15715
15865
16015
16165
16315
16465
16615
16765
16915
17065
17215
17365
17515
17665
17815
17965
18115
13766
13916
14066
14216
14366
14516
14666
14816
14966
15116
15266
15416
15566
15716
15866
16016
16166
16316
16466
16616
16766
16916
17066
17216
17366
17516
17666
17816
17966
18116
13767
13917
14067
14217
14367
14517
14667
14817
14967
15117
15267
15417
15567
15717
15867
16017
16167
16317
16467
16617
16767
16917
17067
17217
17367
17517
17667
17817
17967
18117
13768
13918
14068
14218
14368
14518
14668
14818
14968
15118
15268
15418
15568
15718
15868
16018
16168
16318
16468
16618
16768
16918
17068
17218
17368
17518
17668
17818
17968
18118
13769
13919
14069
14219
14369
14519
14669
14819
14969
15119
15269
15419
15569
15719
15869
16019
16169
16319
16469
16619
16769
16919
17069
17219
17369
17519
17669
17819
17969
18119
13770
13920
14070
14220
14370
14520
14670
14820
14970
15120
15270
15420
15570
15720
15870
16020
16170
16320
16470
16620
16770
16920
17070
17220
17370
17520
17670
17820
17970
18120
13771
13921
14071
14221
14371
14521
14671
14821
14971
15121
15271
15421
15571
15721
15871
16021
16171
16321
16471
16621
16771
16921
17071
17221
17371
17521
17671
17821
17971
18121
13772
13922
14072
14222
14372
14522
14672
14822
14972
15122
15272
15422
15572
15722
15872
16022
16172
16322
16472
16622
16772
16922
17072
17222
17372
17522
17672
17822
17972
18122
13773
13923
14073
14223
14373
14523
14673
14823
14973
15123
15273
15423
15573
15723
15873
16023
16173
16323
16473
16623
16773
16923
17073
17223
17373
17523
17673
17823
17973
18123
13774
13924
14074
14224
14374
14524
14674
14824
14974
15124
15274
15424
15574
15724
15874
16024
16174
16324
16474
16624
16774
16924
17074
17224
17374
17524
17674
17824
17974
18124
13775
13925
14075
14225
14375
14525
14675
14825
14975
15125
15275
15425
15575
15725
15875
16025
16175
16325
16475
16625
16775
16925
17075
17225
17375
17525
17675
17825
17975
18125
13776
13926
14076
14226
14376
14526
14676
14826
14976
15126
15276
15426
15576
15726
15876
16026
16176
16326
16476
16626
16776
16926
17076
17226
17376
17526
17676
17826
17976
18126
13777
13927
14077
14227
14377
14527
14677
14827
14977
15127
15277
15427
15577
15727
15877
16027
16177
16327
16477
16627
16777
16927
17077
17227
17377
17527
17677
17827
17977
18127
13778
13928
14078
14228
14378
14528
14678
14828
14978
15128
15278
15428
15578
15728
15878
16028
16178
16328
16478
16628
16778
16928
17078
17228
17378
17528
17678
17828
17978
18128
13779
13929
14079
14229
14379
14529
14679
14829
14979
15129
15279
15429
15579
15729
15879
16029
16179
16329
16479
16629
16779
16929
17079
17229
17379
17529
17679
17829
17979
18129
13780
13930
14080
14230
14380
14530
14680
14830
14980
15130
15280
15430
15580
15730
15880
16030
16180
16330
16480
16630
16780
16930
17080
17230
17380
17530
17680
17830
17980
18130
13781
13931
14081
14231
14381
14531
14681
14831
14981
15131
15281
15431
15581
15731
15881
16031
16181
16331
16481
16631
16781
16931
17081
17231
17381
17531
17681
17831
17981
18131
13782
13932
14082
14232
14382
14532
14682
14832
14982
15132
15282
15432
15582
15732
15882
16032
16182
16332
16482
16632
16782
16932
17082
17232
17382
17532
17682
17832
17982
18132
13783
13933
14083
14233
14383
14533
14683
14833
14983
15133
15283
15433
15583
15733
15883
16033
16183
16333
16483
16633
16783
16933
17083
17233
17383
17533
17683
17833
17983
18133
13784
13934
14084
14234
14384
14534
14684
14834
14984
15134
15284
15434
15584
15734
15884
16034
16184
16334
16484
16634
16784
16934
17084
17234
17384
17534
17684
17834
17984
18134
13785
13935
14085
14235
14385
14535
14685
14835
14985
15135
15285
15435
15585
15735
15885
16035
16185
16335
16485
16635
16785
16935
17085
17235
17385
17535
17685
17835
17985
18135
13786
13936
14086
14236
14386
14536
14686
14836
14986
15136
15286
15436
15586
15736
15886
16036
16186
16336
16486
16636
16786
16936
17086
17236
17386
17536
17686
17836
17986
18136
13787
13937
14087
14237
14387
14537
14687
14837
14987
15137
15287
15437
15587
15737
15887
16037
16187
16337
16487
16637
16787
16937
17087
17237
17387
17537
17687
17837
17987
18137
13788
13938
14088
14238
14388
14538
14688
14838
14988
15138
15288
15438
15588
15738
15888
16038
16188
16338
16488
16638
16788
16938
17088
17238
17388
17538
17688
17838
17988
18138
13789
13939
14089
14239
14389
14539
14689
14839
14989
15139
15289
15439
15589
15739
15889
16039
16189
16339
16489
16639
16789
16939
17089
17239
17389
17539
17689
17839
17989
18139
13790
13940
14090
14240
14390
14540
14690
14840
14990
15140
15290
15440
15590
15740
15890
16040
16190
16340
16490
16640
16790
16940
17090
17240
17390
17540
17690
17840
17990
18140
13791
13941
14091
14241
14391
14541
14691
14841
14991
15141
15291
15441
15591
15741
15891
16041
16191
16341
16491
16641
16791
16941
17091
17241
17391
17541
17691
17841
17991
18141
13792
13942
14092
14242
14392
14542
14692
14842
14992
15142
15292
15442
15592
15742
15892
16042
16192
16342
16492
16642
16792
16942
17092
17242
17392
17542
17692
17842
17992
18142
13793
13943
14093
14243
14393
14543
14693
14843
14993
15143
15293
15443
15593
15743
15893
16043
16193
16343
16493
16643
16793
16943
17093
17243
17393
17543
17693
17843
17993
18143
13794
13944
14094
14244
14394
14544
14694
14844
14994
15144
15294
15444
15594
15744
15894
16044
16194
16344
16494
16644
16794
16944
17094
17244
17394
17544
17694
17844
17994
18144
13795
13945
14095
14245
14395
14545
14695
14845
14995
15145
15295
15445
15595
15745
15895
16045
16195
16345
16495
16645
16795
16945
17095
17245
17395
17545
17695
17845
17995
18145
13796
13946
14096
14246
14396
14546
14696
14846
14996
15146
15296
15446
15596
15746
15896
16046
16196
16346
16496
16646
16796
16946
17096
17246
17396
17546
17696
17846
17996
18146
13797
13947
14097
14247
14397
14547
14697
14847
14997
15147
15297
15447
15597
15747
15897
16047
16197
16347
16497
16647
16797
16947
17097
17247
17397
17547
17697
17847
17997
18147
13798
13948
14098
14248
14398
14548
14698
14848
14998
15148
15298
15448
15598
15748
15898
16048
16198
16348
16498
16648
16798
16948
17098
17248
17398
17548
17698
17848
17998
18148
13799
13949
14099
14249
14399
14549
14699
14849
14999
15149
15299
15449
15599
15749
15899
16049
16199
16349
16499
16649
16799
16949
17099
17249
17399
17549
17699
17849
17999
18149
13800
13950
14100
14250
14400
14550
14700
14850
15000
15150
15300
15450
15600
15750
15900
16050
16200
16350
16500
16650
16800
16950
17100
17250
17400
17550
17700
17850
18000
18150
13801
13951
14101
14251
14401
14551
14701
14851
15001
15151
15301
15451
15601
15751
15901
16051
16201
16351
16501
16651
16801
16951
17101
17251
17401
17551
17701
17851
18001
18151
13802
13952
14102
14252
14402
14552
14702
14852
15002
15152
15302
15452
15602
15752
15902
16052
16202
16352
16502
16652
16802
16952
17102
17252
17402
17552
17702
17852
18002
18152
13803
13953
14103
14253
14403
14553
14703
14853
15003
15153
15303
15453
15603
15753
15903
16053
16203
16353
16503
16653
16803
16953
17103
17253
17403
17553
17703
17853
18003
18153
13804
13954
14104
14254
14404
14554
14704
14854
15004
15154
15304
15454
15604
15754
15904
16054
16204
16354
16504
16654
16804
16954
17104
17254
17404
17554
17704
17854
18004
18154
13805
13955
14105
14255
14405
14555
14705
14855
15005
15155
15305
15455
15605
15755
15905
16055
16205
16355
16505
16655
16805
16955
17105
17255
17405
17555
17705
17855
18005
18155
13806
13956
14106
14256
14406
14556
14706
14856
15006
15156
15306
15456
15606
15756
15906
16056
16206
16356
16506
16656
16806
16956
17106
17256
17406
17556
17706
17856
18006
18156
13807
13957
14107
14257
14407
14557
14707
14857
15007
15157
15307
15457
15607
15757
15907
16057
16207
16357
16507
16657
16807
16957
17107
17257
17407
17557
17707
17857
18007
18157
13808
13958
14108
14258
14408
14558
14708
14858
15008
15158
15308
15458
15608
15758
15908
16058
16208
16358
16508
16658
16808
16958
17108
17258
17408
17558
17708
17858
18008
18158
13809
13959
14109
14259
14409
14559
14709
14859
15009
15159
15309
15459
15609
15759
15909
16059
16209
16359
16509
16659
16809
16959
17109
17259
17409
17559
17709
17859
18009
18159
13810
13960
14110
14260
14410
14560
14710
14860
15010
15160
15310
15460
15610
15760
15910
16060
16210
16360
16510
16660
16810
16960
17110
17260
17410
17560
17710
17860
18010
18160
13811
13961
14111
14261
14411
14561
14711
14861
15011
15161
15311
15461
15611
15761
15911
16061
16211
16361
16511
16661
16811
16961
17111
17261
17411
17561
17711
17861
18011
18161
13812
13962
14112
14262
14412
14562
14712
14862
15012
15162
15312
15462
15612
15762
15912
16062
16212
16362
16512
16662
16812
16962
17112
17262
17412
17562
17712
17862
18012
18162
13813
13963
14113
14263
14413
14563
14713
14863
15013
15163
15313
15463
15613
15763
15913
16063
16213
16363
16513
16663
16813
16963
17113
17263
17413
17563
17713
17863
18013
18163
13814
13964
14114
14264
14414
14564
14714
14864
15014
15164
15314
15464
15614
15764
15914
16064
16214
16364
16514
16664
16814
16964
17114
17264
17414
17564
17714
17864
18014
18164
13815
13965
14115
14265
14415
14565
14715
14865
15015
15165
15315
15465
15615
15765
15915
16065
16215
16365
16515
16665
16815
16965
17115
17265
17415
17565
17715
17865
18015
18165
13816
13966
14116
14266
14416
14566
14716
14866
15016
15166
15316
15466
15616
15766
15916
16066
16216
16366
16516
16666
16816
16966
17116
17266
17416
17566
17716
17866
18016
18166
13817
13967
14117
14267
14417
14567
14717
14867
15017
15167
15317
15467
15617
15767
15917
16067
16217
16367
16517
16667
16817
16967
17117
17267
17417
17567
17717
17867
18017
18167
13818
13968
14118
14268
14418
14568
14718
14868
15018
15168
15318
15468
15618
15768
15918
16068
16218
16368
16518
16668
16818
16968
17118
17268
17418
17568
17718
17868
18018
18168
13819
13969
14119
14269
14419
14569
14719
14869
15019
15169
15319
15469
15619
15769
15919
16069
16219
16369
16519
16669
16819
16969
17119
17269
17419
17569
17719
17869
18019
18169
13820
13970
14120
14270
14420
14570
14720
14870
15020
15170
15320
15470
15620
15770
15920
16070
16220
16370
16520
16670
16820
16970
17120
17270
17420
17570
17720
17870
18020
18170
13821
13971
14121
14271
14421
14571
14721
14871
15021
15171
15321
15471
15621
15771
15921
16071
16221
16371
16521
16671
16821
16971
17121
17271
17421
17571
17721
17871
18021
18171
13822
13972
14122
14272
14422
14572
14722
14872
15022
15172
15322
15472
15622
15772
15922
16072
16222
16372
16522
16672
16822
16972
17122
17272
17422
17572
17722
17872
18022
18172
13823
13973
14123
14273
14423
14573
14723
14873
15023
15173
15323
15473
15623
15773
15923
16073
16223
16373
16523
16673
16823
16973
17123
17273
17423
17573
17723
17873
18023
18173
13824
13974
14124
14274
14424
14574
14724
14874
15024
15174
15324
15474
15624
15774
15924
16074
16224
16374
16524
16674
16824
16974
17124
17274
17424
17574
17724
17874
18024
18174
13825
13975
14125
14275
14425
14575
14725
14875
15025
15175
15325
15475
15625
15775
15925
16075
16225
16375
16525
16675
16825
16975
17125
17275
17425
17575
17725
17875
18025
18175
13826
13976
14126
14276
14426
14576
14726
14876
15026
15176
15326
15476
15626
15776
15926
16076
16226
16376
16526
16676
16826
16976
17126
17276
17426
17576
17726
17876
18026
18176
13827
13977
14127
14277
14427
14577
14727
14877
15027
15177
15327
15477
15627
15777
15927
16077
16227
16377
16527
16677
16827
16977
17127
17277
17427
17577
17727
17877
18027
18177
13828
13978
14128
14278
14428
14578
14728
14878
15028
15178
15328
15478
15628
15778
15928
16078
16228
16378
16528
16678
16828
16978
17128
17278
17428
17578
17728
17878
18028
18178
13829
13979
14129
14279
14429
14579
14729
14879
15029
15179
15329
15479
15629
15779
15929
16079
16229
16379
16529
16679
16829
16979
17129
17279
17429
17579
17729
17879
18029
18179
13830
13980
14130
14280
14430
14580
14730
14880
15030
15180
15330
15480
15630
15780
15930
16080
16230
16380
16530
16680
16830
16980
17130
17280
17430
17580
17730
17880
18030
18180
13831
13981
14131
14281
14431
14581
14731
14881
15031
15181
15331
15481
15631
15781
15931
16081
16231
16381
16531
16681
16831
16981
17131
17281
17431
17581
17731
17881
18031
18181
13832
13982
14132
14282
14432
14582
14732
14882
15032
15182
15332
15482
15632
15782
15932
16082
16232
16382
16532
16682
16832
16982
17132
17282
17432
17582
17732
17882
18032
18182
13833
13983
14133
14283
14433
14583
14733
14883
15033
15183
15333
15483
15633
15783
15933
16083
16233
16383
16533
16683
16833
16983
17133
17283
17433
17583
17733
17883
18033
18183
13834
13984
14134
14284
14434
14584
14734
14884
15034
15184
15334
15484
15634
15784
15934
16084
16234
16384
16534
16684
16834
16984
17134
17284
17434
17584
17734
17884
18034
18184
13835
13985
14135
14285
14435
14585
14735
14885
15035
15185
15335
15485
15635
15785
15935
16085
16235
16385
16535
16685
16835
16985
17135
17285
17435
17585
17735
17885
18035
18185
13836
13986
14136
14286
14436
14586
14736
14886
15036
15186
15336
15486
15636
15786
15936
16086
16236
16386
16536
16686
16836
16986
17136
17286
17436
17586
17736
17886
18036
18186
13837
13987
14137
14287
14437
14587
14737
14887
15037
15187
15337
15487
15637
15787
15937
16087
16237
16387
16537
16687
16837
16987
17137
17287
17437
17587
17737
17887
18037
18187
13838
13988
14138
14288
14438
14588
14738
14888
15038
15188
15338
15488
15638
15788
15938
16088
16238
16388
16538
16688
16838
16988
17138
17288
17438
17588
17738
17888
18038
18188
13839
13989
14139
14289
14439
14589
14739
14889
15039
15189
15339
15489
15639
15789
15939
16089
16239
16389
16539
16689
16839
16989
17139
17289
17439
17589
17739
17889
18039
18189
13840
13990
14140
14290
14440
14590
14740
14890
15040
15190
15340
15490
15640
15790
15940
16090
16240
16390
16540
16690
16840
16990
17140
17290
17440
17590
17740
17890
18040
18190
13841
13991
14141
14291
14441
14591
14741
14891
15041
15191
15341
15491
15641
15791
15941
16091
16241
16391
16541
16691
16841
16991
17141
17291
17441
17591
17741
17891
18041
18191
13842
13992
14142
14292
14442
14592
14742
14892
15042
15192
15342
15492
15642
15792
15942
16092
16242
16392
16542
16692
16842
16992
17142
17292
17442
17592
17742
17892
18042
18192
13843
13993
14143
14293
14443
14593
14743
14893
15043
15193
15343
15493
15643
15793
15943
16093
16243
16393
16543
16693
16843
16993
17143
17293
17443
17593
17743
17893
18043
18193
13844
13994
14144
14294
14444
14594
14744
14894
15044
15194
15344
15494
15644
15794
15944
16094
16244
16394
16544
16694
16844
16994
17144
17294
17444
17594
17744
17894
18044
18194
13845
13995
14145
14295
14445
14595
14745
14895
15045
15195
15345
15495
15645
15795
15945
16095
16245
16395
16545
16695
16845
16995
17145
17295
17445
17595
17745
17895
18045
18195
13846
13996
14146
14296
14446
14596
14746
14896
15046
15196
15346
15496
15646
15796
15946
16096
16246
16396
16546
16696
16846
16996
17146
17296
17446
17596
17746
17896
18046
18196
13847
13997
14147
14297
14447
14597
14747
14897
15047
15197
15347
15497
15647
15797
15947
16097
16247
16397
16547
16697
16847
16997
17147
17297
17447
17597
17747
17897
18047
18197
13848
13998
14148
14298
14448
14598
14748
14898
15048
15198
15348
15498
15648
15798
15948
16098
16248
16398
16548
16698
16848
16998
17148
17298
17448
17598
17748
17898
18048
18198
13849
13999
14149
14299
14449
14599
14749
14899
15049
15199
15349
15499
15649
15799
15949
16099
16249
16399
16549
16699
16849
16999
17149
17299
17449
17599
17749
17899
18049
18199
22700
22730
22760
22790
22820
22850
22880
22910
22940
22970
23000
23030
23060
23090
23120
23150
23180
23210
23240
23270
22701
22731
22761
22791
22821
22851
22881
22911
22941
22971
23001
23031
23061
23091
23121
23151
23181
23211
23241
23271
22702
22732
22762
22792
22822
22852
22882
22912
22942
22972
23002
23032
23062
23092
23122
23152
23182
23212
23242
23272
22703
22733
22763
22793
22823
22853
22883
22913
22943
22973
23003
23033
23063
23093
23123
23153
23183
23213
23243
23273
22704
22734
22764
22794
22824
22854
22884
22914
22944
22974
23004
23034
23064
23094
23124
23154
23184
23214
23244
23274
22705
22735
22765
22795
22825
22855
22885
22915
22945
22975
23005
23035
23065
23095
23125
23155
23185
23215
23245
23275
22706
22736
22766
22796
22826
22856
22886
22916
22946
22976
23006
23036
23066
23096
23126
23156
23186
23216
23246
23276
22707
22737
22767
22797
22827
22857
22887
22917
22947
22977
23007
23037
23067
23097
23127
23157
23187
23217
23247
23277
22708
22738
22768
22798
22828
22858
22888
22918
22948
22978
23008
23038
23068
23098
23128
23158
23188
23218
23248
23278
22709
22739
22769
22799
22829
22859
22889
22919
22949
22979
23009
23039
23069
23099
23129
23159
23189
23219
23249
23279
22710
22740
22770
22800
22830
22860
22890
22920
22950
22980
23010
23040
23070
23100
23130
23160
23190
23220
23250
23280
22711
22741
22771
22801
22831
22861
22891
22921
22951
22981
23011
23041
23071
23101
23131
23161
23191
23221
23251
23281
22712
22742
22772
22802
22832
22862
22892
22922
22952
22982
23012
23042
23072
23102
23132
23162
23192
23222
23252
23282
22713
22743
22773
22803
22833
22863
22893
22923
22953
22983
23013
23043
23073
23103
23133
23163
23193
23223
23253
23283
22714
22744
22774
22804
22834
22864
22894
22924
22954
22984
23014
23044
23074
23104
23134
23164
23194
23224
23254
23284
22715
22745
22775
22805
22835
22865
22895
22925
22955
22985
23015
23045
23075
23105
23135
23165
23195
23225
23255
23285
22716
22746
22776
22806
22836
22866
22896
22926
22956
22986
23016
23046
23076
23106
23136
23166
23196
23226
23256
23286
22717
22747
22777
22807
22837
22867
22897
22927
22957
22987
23017
23047
23077
23107
23137
23167
23197
23227
23257
23287
22718
22748
22778
22808
22838
22868
22898
22928
22958
22988
23018
23048
23078
23108
23138
23168
23198
23228
23258
23288
22719
22749
22779
22809
22839
22869
22899
22929
22959
22989
23019
23049
23079
23109
23139
23169
23199
23229
23259
23289
22720
22750
22780
22810
22840
22870
22900
22930
22960
22990
23020
23050
23080
23110
23140
23170
23200
23230
23260
23290
22721
22751
22781
22811
22841
22871
22901
22931
22961
22991
23021
23051
23081
23111
23141
23171
23201
23231
23261
23291
22722
22752
22782
22812
22842
22872
22902
22932
22962
22992
23022
23052
23082
23112
23142
23172
23202
23232
23262
23292
22723
22753
22783
22813
22843
22873
22903
22933
22963
22993
23023
23053
23083
23113
23143
23173
23203
23233
23263
23293
22724
22754
22784
22814
22844
22874
22904
22934
22964
22994
23024
23054
23084
23114
23144
23174
23204
23234
23264
23294
22725
22755
22785
22815
22845
22875
22905
22935
22965
22995
23025
23055
23085
23115
23145
23175
23205
23235
23265
23295
22726
22756
22786
22816
22846
22876
22906
22936
22966
22996
23026
23056
23086
23116
23146
23176
23206
23236
23266
23296
22727
22757
22787
22817
22847
22877
22907
22937
22967
22997
23027
23057
23087
23117
23147
23177
23207
23237
23267
23297
22728
22758
22788
22818
22848
22878
22908
22938
22968
22998
23028
23058
23088
23118
23148
23178
23208
23238
23268
23298
22729
22759
22789
22819
22849
22879
22909
22939
22969
22999
23029
23059
23089
23119
23149
23179
23209
23239
23269
23299
23300
23330
23360
23390
23420
23450
23480
23510
23540
23570
23600
23630
23660
23690
23720
23750
23780
23810
23840
23870
23301
23331
23361
23391
23421
23451
23481
23511
23541
23571
23601
23631
23661
23691
23721
23751
23781
23811
23841
23871
23302
23332
23362
23392
23422
23452
23482
23512
23542
23572
23602
23632
23662
23692
23722
23752
23782
23812
23842
23872
23303
23333
23363
23393
23423
23453
23483
23513
23543
23573
23603
23633
23663
23693
23723
23753
23783
23813
23843
23873
23304
23334
23364
23394
23424
23454
23484
23514
23544
23574
23604
23634
23664
23694
23724
23754
23784
23814
23844
23874
23305
23335
23365
23395
23425
23455
23485
23515
23545
23575
23605
23635
23665
23695
23725
23755
23785
23815
23845
23875
23306
23336
23366
23396
23426
23456
23486
23516
23546
23576
23606
23636
23666
23696
23726
23756
23786
23816
23846
23876
23307
23337
23367
23397
23427
23457
23487
23517
23547
23577
23607
23637
23667
23697
23727
23757
23787
23817
23847
23877
23308
23338
23368
23398
23428
23458
23488
23518
23548
23578
23608
23638
23668
23698
23728
23758
23788
23818
23848
23878
23309
23339
23369
23399
23429
23459
23489
23519
23549
23579
23609
23639
23669
23699
23729
23759
23789
23819
23849
23879
23310
23340
23370
23400
23430
23460
23490
23520
23550
23580
23610
23640
23670
23700
23730
23760
23790
23820
23850
23880
23311
23341
23371
23401
23431
23461
23491
23521
23551
23581
23611
23641
23671
23701
23731
23761
23791
23821
23851
23881
23312
23342
23372
23402
23432
23462
23492
23522
23552
23582
23612
23642
23672
23702
23732
23762
23792
23822
23852
23882
23313
23343
23373
23403
23433
23463
23493
23523
23553
23583
23613
23643
23673
23703
23733
23763
23793
23823
23853
23883
23314
23344
23374
23404
23434
23464
23494
23524
23554
23584
23614
23644
23674
23704
23734
23764
23794
23824
23854
23884
23315
23345
23375
23405
23435
23465
23495
23525
23555
23585
23615
23645
23675
23705
23735
23765
23795
23825
23855
23885
23316
23346
23376
23406
23436
23466
23496
23526
23556
23586
23616
23646
23676
23706
23736
23766
23796
23826
23856
23886
23317
23347
23377
23407
23437
23467
23497
23527
23557
23587
23617
23647
23677
23707
23737
23767
23797
23827
23857
23887
23318
23348
23378
23408
23438
23468
23498
23528
23558
23588
23618
23648
23678
23708
23738
23768
23798
23828
23858
23888
23319
23349
23379
23409
23439
23469
23499
23529
23559
23589
23619
23649
23679
23709
23739
23769
23799
23829
23859
23889
23320
23350
23380
23410
23440
23470
23500
23530
23560
23590
23620
23650
23680
23710
23740
23770
23800
23830
23860
23890
23321
23351
23381
23411
23441
23471
23501
23531
23561
23591
23621
23651
23681
23711
23741
23771
23801
23831
23861
23891
23322
23352
23382
23412
23442
23472
23502
23532
23562
23592
23622
23652
23682
23712
23742
23772
23802
23832
23862
23892
23323
23353
23383
23413
23443
23473
23503
23533
23563
23593
23623
23653
23683
23713
23743
23773
23803
23833
23863
23893
23324
23354
23384
23414
23444
23474
23504
23534
23564
23594
23624
23654
23684
23714
23744
23774
23804
23834
23864
23894
23325
23355
23385
23415
23445
23475
23505
23535
23565
23595
23625
23655
23685
23715
23745
23775
23805
23835
23865
23895
23326
23356
23386
23416
23446
23476
23506
23536
23566
23596
23626
23656
23686
23716
23746
23776
23806
23836
23866
23896
23327
23357
23387
23417
23447
23477
23507
23537
23567
23597
23627
23657
23687
23717
23747
23777
23807
23837
23867
23897
23328
23358
23388
23418
23448
23478
23508
23538
23568
23598
23628
23658
23688
23718
23748
23778
23808
23838
23868
23898
23329
23359
23389
23419
23449
23479
23509
23539
23569
23599
23629
23659
23689
23719
23749
23779
23809
23839
23869
23899
23900
24075
24250
24425
24600
24775
24950
25125
25300
25475
25650
25825
26000
26175
26350
26525
26700
26875
27050
27225
23901
24076
24251
24426
24601
24776
24951
25126
25301
25476
25651
25826
26001
26176
26351
26526
26701
26876
27051
27226
23902
24077
24252
24427
24602
24777
24952
25127
25302
25477
25652
25827
26002
26177
26352
26527
26702
26877
27052
27227
23903
24078
24253
24428
24603
24778
24953
25128
25303
25478
25653
25828
26003
26178
26353
26528
26703
26878
27053
27228
23904
24079
24254
24429
24604
24779
24954
25129
25304
25479
25654
25829
26004
26179
26354
26529
26704
26879
27054
27229
23905
24080
24255
24430
24605
24780
24955
25130
25305
25480
25655
25830
26005
26180
26355
26530
26705
26880
27055
27230
23906
24081
24256
24431
24606
24781
24956
25131
25306
25481
25656
25831
26006
26181
26356
26531
26706
26881
27056
27231
23907
24082
24257
24432
24607
24782
24957
25132
25307
25482
25657
25832
26007
26182
26357
26532
26707
26882
27057
27232
23908
24083
24258
24433
24608
24783
24958
25133
25308
25483
25658
25833
26008
26183
26358
26533
26708
26883
27058
27233
23909
24084
24259
24434
24609
24784
24959
25134
25309
25484
25659
25834
26009
26184
26359
26534
26709
26884
27059
27234
23910
24085
24260
24435
24610
24785
24960
25135
25310
25485
25660
25835
26010
26185
26360
26535
26710
26885
27060
27235
23911
24086
24261
24436
24611
24786
24961
25136
25311
25486
25661
25836
26011
26186
26361
26536
26711
26886
27061
27236
23912
24087
24262
24437
24612
24787
24962
25137
25312
25487
25662
25837
26012
26187
26362
26537
26712
26887
27062
27237
23913
24088
24263
24438
24613
24788
24963
25138
25313
25488
25663
25838
26013
26188
26363
26538
26713
26888
27063
27238
23914
24089
24264
24439
24614
24789
24964
25139
25314
25489
25664
25839
26014
26189
26364
26539
26714
26889
27064
27239
23915
24090
24265
24440
24615
24790
24965
25140
25315
25490
25665
25840
26015
26190
26365
26540
26715
26890
27065
27240
23916
24091
24266
24441
24616
24791
24966
25141
25316
25491
25666
25841
26016
26191
26366
26541
26716
26891
27066
27241
23917
24092
24267
24442
24617
24792
24967
25142
25317
25492
25667
25842
26017
26192
26367
26542
26717
26892
27067
27242
23918
24093
24268
24443
24618
24793
24968
25143
25318
25493
25668
25843
26018
26193
26368
26543
26718
26893
27068
27243
23919
24094
24269
24444
24619
24794
24969
25144
25319
25494
25669
25844
26019
26194
26369
26544
26719
26894
27069
27244
23920
24095
24270
24445
24620
24795
24970
25145
25320
25495
25670
25845
26020
26195
26370
26545
26720
26895
27070
27245
23921
24096
24271
24446
24621
24796
24971
25146
25321
25496
25671
25846
26021
26196
26371
26546
26721
26896
27071
27246
23922
24097
24272
24447
24622
24797
24972
25147
25322
25497
25672
25847
26022
26197
26372
26547
26722
26897
27072
27247
23923
24098
24273
24448
24623
24798
24973
25148
25323
25498
25673
25848
26023
26198
26373
26548
26723
26898
27073
27248
23924
24099
24274
24449
24624
24799
24974
25149
25324
25499
25674
25849
26024
26199
26374
26549
26724
26899
27074
27249
23925
24100
24275
24450
24625
24800
24975
25150
25325
25500
25675
25850
26025
26200
26375
26550
26725
26900
27075
27250
23926
24101
24276
24451
24626
24801
24976
25151
25326
25501
25676
25851
26026
26201
26376
26551
26726
26901
27076
27251
23927
24102
24277
24452
24627
24802
24977
25152
25327
25502
25677
25852
26027
26202
26377
26552
26727
26902
27077
27252
23928
24103
24278
24453
24628
24803
24978
25153
25328
25503
25678
25853
26028
26203
26378
26553
26728
26903
27078
27253
23929
24104
24279
24454
24629
24804
24979
25154
25329
25504
25679
25854
26029
26204
26379
26554
26729
26904
27079
27254
23930
24105
24280
24455
24630
24805
24980
25155
25330
25505
25680
25855
26030
26205
26380
26555
26730
26905
27080
27255
23931
24106
24281
24456
24631
24806
24981
25156
25331
25506
25681
25856
26031
26206
26381
26556
26731
26906
27081
27256
23932
24107
24282
24457
24632
24807
24982
25157
25332
25507
25682
25857
26032
26207
26382
26557
26732
26907
27082
27257
23933
24108
24283
24458
24633
24808
24983
25158
25333
25508
25683
25858
26033
26208
26383
26558
26733
26908
27083
27258
23934
24109
24284
24459
24634
24809
24984
25159
25334
25509
25684
25859
26034
26209
26384
26559
26734
26909
27084
27259
23935
24110
24285
24460
24635
24810
24985
25160
25335
25510
25685
25860
26035
26210
26385
26560
26735
26910
27085
27260
23936
24111
24286
24461
24636
24811
24986
25161
25336
25511
25686
25861
26036
26211
26386
26561
26736
26911
27086
27261
23937
24112
24287
24462
24637
24812
24987
25162
25337
25512
25687
25862
26037
26212
26387
26562
26737
26912
27087
27262
23938
24113
24288
24463
24638
24813
24988
25163
25338
25513
25688
25863
26038
26213
26388
26563
26738
26913
27088
27263
23939
24114
24289
24464
24639
24814
24989
25164
25339
25514
25689
25864
26039
26214
26389
26564
26739
26914
27089
27264
23940
24115
24290
24465
24640
24815
24990
25165
25340
25515
25690
25865
26040
26215
26390
26565
26740
26915
27090
27265
23941
24116
24291
24466
24641
24816
24991
25166
25341
25516
25691
25866
26041
26216
26391
26566
26741
26916
27091
27266
23942
24117
24292
24467
24642
24817
24992
25167
25342
25517
25692
25867
26042
26217
26392
26567
26742
26917
27092
27267
23943
24118
24293
24468
24643
24818
24993
25168
25343
25518
25693
25868
26043
26218
26393
26568
26743
26918
27093
27268
23944
24119
24294
24469
24644
24819
24994
25169
25344
25519
25694
25869
26044
26219
26394
26569
26744
26919
27094
27269
23945
24120
24295
24470
24645
24820
24995
25170
25345
25520
25695
25870
26045
26220
26395
26570
26745
26920
27095
27270
23946
24121
24296
24471
24646
24821
24996
25171
25346
25521
25696
25871
26046
26221
26396
26571
26746
26921
27096
27271
23947
24122
24297
24472
24647
24822
24997
25172
25347
25522
25697
25872
26047
26222
26397
26572
26747
26922
27097
27272
23948
24123
24298
24473
24648
24823
24998
25173
25348
25523
25698
25873
26048
26223
26398
26573
26748
26923
27098
27273
23949
24124
24299
24474
24649
24824
24999
25174
25349
25524
25699
25874
26049
26224
26399
26574
26749
26924
27099
27274
23950
24125
24300
24475
24650
24825
25000
25175
25350
25525
25700
25875
26050
26225
26400
26575
26750
26925
27100
27275
23951
24126
24301
24476
24651
24826
25001
25176
25351
25526
25701
25876
26051
26226
26401
26576
26751
26926
27101
27276
23952
24127
24302
24477
24652
24827
25002
25177
25352
25527
25702
25877
26052
26227
26402
26577
26752
26927
27102
27277
23953
24128
24303
24478
24653
24828
25003
25178
25353
25528
25703
25878
26053
26228
26403
26578
26753
26928
27103
27278
23954
24129
24304
24479
24654
24829
25004
25179
25354
25529
25704
25879
26054
26229
26404
26579
26754
26929
27104
27279
23955
24130
24305
24480
24655
24830
25005
25180
25355
25530
25705
25880
26055
26230
26405
26580
26755
26930
27105
27280
23956
24131
24306
24481
24656
24831
25006
25181
25356
25531
25706
25881
26056
26231
26406
26581
26756
26931
27106
27281
23957
24132
24307
24482
24657
24832
25007
25182
25357
25532
25707
25882
26057
26232
26407
26582
26757
26932
27107
27282
23958
24133
24308
24483
24658
24833
25008
25183
25358
25533
25708
25883
26058
26233
26408
26583
26758
26933
27108
27283
23959
24134
24309
24484
24659
24834
25009
25184
25359
25534
25709
25884
26059
26234
26409
26584
26759
26934
27109
27284
23960
24135
24310
24485
24660
24835
25010
25185
25360
25535
25710
25885
26060
26235
26410
26585
26760
26935
27110
27285
23961
24136
24311
24486
24661
24836
25011
25186
25361
25536
25711
25886
26061
26236
26411
26586
26761
26936
27111
27286
23962
24137
24312
24487
24662
24837
25012
25187
25362
25537
25712
25887
26062
26237
26412
26587
26762
26937
27112
27287
23963
24138
24313
24488
24663
24838
25013
25188
25363
25538
25713
25888
26063
26238
26413
26588
26763
26938
27113
27288
23964
24139
24314
24489
24664
24839
25014
25189
25364
25539
25714
25889
26064
26239
26414
26589
26764
26939
27114
27289
23965
24140
24315
24490
24665
24840
25015
25190
25365
25540
25715
25890
26065
26240
26415
26590
26765
26940
27115
27290
23966
24141
24316
24491
24666
24841
25016
25191
25366
25541
25716
25891
26066
26241
26416
26591
26766
26941
27116
27291
23967
24142
24317
24492
24667
24842
25017
25192
25367
25542
25717
25892
26067
26242
26417
26592
26767
26942
27117
27292
23968
24143
24318
24493
24668
24843
25018
25193
25368
25543
25718
25893
26068
26243
26418
26593
26768
26943
27118
27293
23969
24144
24319
24494
24669
24844
25019
25194
25369
25544
25719
25894
26069
26244
26419
26594
26769
26944
27119
27294
23970
24145
24320
24495
24670
24845
25020
25195
25370
25545
25720
25895
26070
26245
26420
26595
26770
26945
27120
27295
23971
24146
24321
24496
24671
24846
25021
25196
25371
25546
25721
25896
26071
26246
26421
26596
26771
26946
27121
27296
23972
24147
24322
24497
24672
24847
25022
25197
25372
25547
25722
25897
26072
26247
26422
26597
26772
26947
27122
27297
23973
24148
24323
24498
24673
24848
25023
25198
25373
25548
25723
25898
26073
26248
26423
26598
26773
26948
27123
27298
23974
24149
24324
24499
24674
24849
25024
25199
25374
25549
25724
25899
26074
26249
26424
26599
26774
26949
27124
27299
23975
24150
24325
24500
24675
24850
25025
25200
25375
25550
25725
25900
26075
26250
26425
26600
26775
26950
27125
27300
23976
24151
24326
24501
24676
24851
25026
25201
25376
25551
25726
25901
26076
26251
26426
26601
26776
26951
27126
27301
23977
24152
24327
24502
24677
24852
25027
25202
25377
25552
25727
25902
26077
26252
26427
26602
26777
26952
27127
27302
23978
24153
24328
24503
24678
24853
25028
25203
25378
25553
25728
25903
26078
26253
26428
26603
26778
26953
27128
27303
23979
24154
24329
24504
24679
24854
25029
25204
25379
25554
25729
25904
26079
26254
26429
26604
26779
26954
27129
27304
23980
24155
24330
24505
24680
24855
25030
25205
25380
25555
25730
25905
26080
26255
26430
26605
26780
26955
27130
27305
23981
24156
24331
24506
24681
24856
25031
25206
25381
25556
25731
25906
26081
26256
26431
26606
26781
26956
27131
27306
23982
24157
24332
24507
24682
24857
25032
25207
25382
25557
25732
25907
26082
26257
26432
26607
26782
26957
27132
27307
23983
24158
24333
24508
24683
24858
25033
25208
25383
25558
25733
25908
26083
26258
26433
26608
26783
26958
27133
27308
23984
24159
24334
24509
24684
24859
25034
25209
25384
25559
25734
25909
26084
26259
26434
26609
26784
26959
27134
27309
23985
24160
24335
24510
24685
24860
25035
25210
25385
25560
25735
25910
26085
26260
26435
26610
26785
26960
27135
27310
23986
24161
24336
24511
24686
24861
25036
25211
25386
25561
25736
25911
26086
26261
26436
26611
26786
26961
27136
27311
23987
24162
24337
24512
24687
24862
25037
25212
25387
25562
25737
25912
26087
26262
26437
26612
26787
26962
27137
27312
23988
24163
24338
24513
24688
24863
25038
25213
25388
25563
25738
25913
26088
26263
26438
26613
26788
26963
27138
27313
23989
24164
24339
24514
24689
24864
25039
25214
25389
25564
25739
25914
26089
26264
26439
26614
26789
26964
27139
27314
23990
24165
24340
24515
24690
24865
25040
25215
25390
25565
25740
25915
26090
26265
26440
26615
26790
26965
27140
27315
23991
24166
24341
24516
24691
24866
25041
25216
25391
25566
25741
25916
26091
26266
26441
26616
26791
26966
27141
27316
23992
24167
24342
24517
24692
24867
25042
25217
25392
25567
25742
25917
26092
26267
26442
26617
26792
26967
27142
27317
23993
24168
24343
24518
24693
24868
25043
25218
25393
25568
25743
25918
26093
26268
26443
26618
26793
26968
27143
27318
23994
24169
24344
24519
24694
24869
25044
25219
25394
25569
25744
25919
26094
26269
26444
26619
26794
26969
27144
27319
23995
24170
24345
24520
24695
24870
25045
25220
25395
25570
25745
25920
26095
26270
26445
26620
26795
26970
27145
27320
23996
24171
24346
24521
24696
24871
25046
25221
25396
25571
25746
25921
26096
26271
26446
26621
26796
26971
27146
27321
23997
24172
24347
24522
24697
24872
25047
25222
25397
25572
25747
25922
26097
26272
26447
26622
26797
26972
27147
27322
23998
24173
24348
24523
24698
24873
25048
25223
25398
25573
25748
25923
26098
26273
26448
26623
26798
26973
27148
27323
23999
24174
24349
24524
24699
24874
25049
25224
25399
25574
25749
25924
26099
26274
26449
26624
26799
26974
27149
27324
24000
24175
24350
24525
24700
24875
25050
25225
25400
25575
25750
25925
26100
26275
26450
26625
26800
26975
27150
27325
24001
24176
24351
24526
24701
24876
25051
25226
25401
25576
25751
25926
26101
26276
26451
26626
26801
26976
27151
27326
24002
24177
24352
24527
24702
24877
25052
25227
25402
25577
25752
25927
26102
26277
26452
26627
26802
26977
27152
27327
24003
24178
24353
24528
24703
24878
25053
25228
25403
25578
25753
25928
26103
26278
26453
26628
26803
26978
27153
27328
24004
24179
24354
24529
24704
24879
25054
25229
25404
25579
25754
25929
26104
26279
26454
26629
26804
26979
27154
27329
24005
24180
24355
24530
24705
24880
25055
25230
25405
25580
25755
25930
26105
26280
26455
26630
26805
26980
27155
27330
24006
24181
24356
24531
24706
24881
25056
25231
25406
25581
25756
25931
26106
26281
26456
26631
26806
26981
27156
27331
24007
24182
24357
24532
24707
24882
25057
25232
25407
25582
25757
25932
26107
26282
26457
26632
26807
26982
27157
27332
24008
24183
24358
24533
24708
24883
25058
25233
25408
25583
25758
25933
26108
26283
26458
26633
26808
26983
27158
27333
24009
24184
24359
24534
24709
24884
25059
25234
25409
25584
25759
25934
26109
26284
26459
26634
26809
26984
27159
27334
24010
24185
24360
24535
24710
24885
25060
25235
25410
25585
25760
25935
26110
26285
26460
26635
26810
26985
27160
27335
24011
24186
24361
24536
24711
24886
25061
25236
25411
25586
25761
25936
26111
26286
26461
26636
26811
26986
27161
27336
24012
24187
24362
24537
24712
24887
25062
25237
25412
25587
25762
25937
26112
26287
26462
26637
26812
26987
27162
27337
24013
24188
24363
24538
24713
24888
25063
25238
25413
25588
25763
25938
26113
26288
26463
26638
26813
26988
27163
27338
24014
24189
24364
24539
24714
24889
25064
25239
25414
25589
25764
25939
26114
26289
26464
26639
26814
26989
27164
27339
24015
24190
24365
24540
24715
24890
25065
25240
25415
25590
25765
25940
26115
26290
26465
26640
26815
26990
27165
27340
24016
24191
24366
24541
24716
24891
25066
25241
25416
25591
25766
25941
26116
26291
26466
26641
26816
26991
27166
27341
24017
24192
24367
24542
24717
24892
25067
25242
25417
25592
25767
25942
26117
26292
26467
26642
26817
26992
27167
27342
24018
24193
24368
24543
24718
24893
25068
25243
25418
25593
25768
25943
26118
26293
26468
26643
26818
26993
27168
27343
24019
24194
24369
24544
24719
24894
25069
25244
25419
25594
25769
25944
26119
26294
26469
26644
26819
26994
27169
27344
24020
24195
24370
24545
24720
24895
25070
25245
25420
25595
25770
25945
26120
26295
26470
26645
26820
26995
27170
27345
24021
24196
24371
24546
24721
24896
25071
25246
25421
25596
25771
25946
26121
26296
26471
26646
26821
26996
27171
27346
24022
24197
24372
24547
24722
24897
25072
25247
25422
25597
25772
25947
26122
26297
26472
26647
26822
26997
27172
27347
24023
24198
24373
24548
24723
24898
25073
25248
25423
25598
25773
25948
26123
26298
26473
26648
26823
26998
27173
27348
24024
24199
24374
24549
24724
24899
25074
25249
25424
25599
25774
25949
26124
26299
26474
26649
26824
26999
27174
27349
24025
24200
24375
24550
24725
24900
25075
25250
25425
25600
25775
25950
26125
26300
26475
26650
26825
27000
27175
27350
24026
24201
24376
24551
24726
24901
25076
25251
25426
25601
25776
25951
26126
26301
26476
26651
26826
27001
27176
27351
24027
24202
24377
24552
24727
24902
25077
25252
25427
25602
25777
25952
26127
26302
26477
26652
26827
27002
27177
27352
24028
24203
24378
24553
24728
24903
25078
25253
25428
25603
25778
25953
26128
26303
26478
26653
26828
27003
27178
27353
24029
24204
24379
24554
24729
24904
25079
25254
25429
25604
25779
25954
26129
26304
26479
26654
26829
27004
27179
27354
24030
24205
24380
24555
24730
24905
25080
25255
25430
25605
25780
25955
26130
26305
26480
26655
26830
27005
27180
27355
24031
24206
24381
24556
24731
24906
25081
25256
25431
25606
25781
25956
26131
26306
26481
26656
26831
27006
27181
27356
24032
24207
24382
24557
24732
24907
25082
25257
25432
25607
25782
25957
26132
26307
26482
26657
26832
27007
27182
27357
24033
24208
24383
24558
24733
24908
25083
25258
25433
25608
25783
25958
26133
26308
26483
26658
26833
27008
27183
27358
24034
24209
24384
24559
24734
24909
25084
25259
25434
25609
25784
25959
26134
26309
26484
26659
26834
27009
27184
27359
24035
24210
24385
24560
24735
24910
25085
25260
25435
25610
25785
25960
26135
26310
26485
26660
26835
27010
27185
27360
24036
24211
24386
24561
24736
24911
25086
25261
25436
25611
25786
25961
26136
26311
26486
26661
26836
27011
27186
27361
24037
24212
24387
24562
24737
24912
25087
25262
25437
25612
25787
25962
26137
26312
26487
26662
26837
27012
27187
27362
24038
24213
24388
24563
24738
24913
25088
25263
25438
25613
25788
25963
26138
26313
26488
26663
26838
27013
27188
27363
24039
24214
24389
24564
24739
24914
25089
25264
25439
25614
25789
25964
26139
26314
26489
26664
26839
27014
27189
27364
24040
24215
24390
24565
24740
24915
25090
25265
25440
25615
25790
25965
26140
26315
26490
26665
26840
27015
27190
27365
24041
24216
24391
24566
24741
24916
25091
25266
25441
25616
25791
25966
26141
26316
26491
26666
26841
27016
27191
27366
24042
24217
24392
24567
24742
24917
25092
25267
25442
25617
25792
25967
26142
26317
26492
26667
26842
27017
27192
27367
24043
24218
24393
24568
24743
24918
25093
25268
25443
25618
25793
25968
26143
26318
26493
26668
26843
27018
27193
27368
24044
24219
24394
24569
24744
24919
25094
25269
25444
25619
25794
25969
26144
26319
26494
26669
26844
27019
27194
27369
24045
24220
24395
24570
24745
24920
25095
25270
25445
25620
25795
25970
26145
26320
26495
26670
26845
27020
27195
27370
24046
24221
24396
24571
24746
24921
25096
25271
25446
25621
25796
25971
26146
26321
26496
26671
26846
27021
27196
27371
24047
24222
24397
24572
24747
24922
25097
25272
25447
25622
25797
25972
26147
26322
26497
26672
26847
27022
27197
27372
24048
24223
24398
24573
24748
24923
25098
25273
25448
25623
25798
25973
26148
26323
26498
26673
26848
27023
27198
27373
24049
24224
24399
24574
24749
24924
25099
25274
25449
25624
25799
25974
26149
26324
26499
26674
26849
27024
27199
27374
24050
24225
24400
24575
24750
24925
25100
25275
25450
25625
25800
25975
26150
26325
26500
26675
26850
27025
27200
27375
24051
24226
24401
24576
24751
24926
25101
25276
25451
25626
25801
25976
26151
26326
26501
26676
26851
27026
27201
27376
24052
24227
24402
24577
24752
24927
25102
25277
25452
25627
25802
25977
26152
26327
26502
26677
26852
27027
27202
27377
24053
24228
24403
24578
24753
24928
25103
25278
25453
25628
25803
25978
26153
26328
26503
26678
26853
27028
27203
27378
24054
24229
24404
24579
24754
24929
25104
25279
25454
25629
25804
25979
26154
26329
26504
26679
26854
27029
27204
27379
24055
24230
24405
24580
24755
24930
25105
25280
25455
25630
25805
25980
26155
26330
26505
26680
26855
27030
27205
27380
24056
24231
24406
24581
24756
24931
25106
25281
25456
25631
25806
25981
26156
26331
26506
26681
26856
27031
27206
27381
24057
24232
24407
24582
24757
24932
25107
25282
25457
25632
25807
25982
26157
26332
26507
26682
26857
27032
27207
27382
24058
24233
24408
24583
24758
24933
25108
25283
25458
25633
25808
25983
26158
26333
26508
26683
26858
27033
27208
27383
24059
24234
24409
24584
24759
24934
25109
25284
25459
25634
25809
25984
26159
26334
26509
26684
26859
27034
27209
27384
24060
24235
24410
24585
24760
24935
25110
25285
25460
25635
25810
25985
26160
26335
26510
26685
26860
27035
27210
27385
24061
24236
24411
24586
24761
24936
25111
25286
25461
25636
25811
25986
26161
26336
26511
26686
26861
27036
27211
27386
24062
24237
24412
24587
24762
24937
25112
25287
25462
25637
25812
25987
26162
26337
26512
26687
26862
27037
27212
27387
24063
24238
24413
24588
24763
24938
25113
25288
25463
25638
25813
25988
26163
26338
26513
26688
26863
27038
27213
27388
24064
24239
24414
24589
24764
24939
25114
25289
25464
25639
25814
25989
26164
26339
26514
26689
26864
27039
27214
27389
24065
24240
24415
24590
24765
24940
25115
25290
25465
25640
25815
25990
26165
26340
26515
26690
26865
27040
27215
27390
24066
24241
24416
24591
24766
24941
25116
25291
25466
25641
25816
25991
26166
26341
26516
26691
26866
27041
27216
27391
24067
24242
24417
24592
24767
24942
25117
25292
25467
25642
25817
25992
26167
26342
26517
26692
26867
27042
27217
27392
24068
24243
24418
24593
24768
24943
25118
25293
25468
25643
25818
25993
26168
26343
26518
26693
26868
27043
27218
27393
24069
24244
24419
24594
24769
24944
25119
25294
25469
25644
25819
25994
26169
26344
26519
26694
26869
27044
27219
27394
24070
24245
24420
24595
24770
24945
25120
25295
25470
25645
25820
25995
26170
26345
26520
26695
26870
27045
27220
27395
24071
24246
24421
24596
24771
24946
25121
25296
25471
25646
25821
25996
26171
26346
26521
26696
26871
27046
27221
27396
24072
24247
24422
24597
24772
24947
25122
25297
25472
25647
25822
25997
26172
26347
26522
26697
26872
27047
27222
27397
24073
24248
24423
24598
24773
24948
25123
25298
25473
25648
25823
25998
26173
26348
26523
26698
26873
27048
27223
27398
24074
24249
24424
24599
24774
24949
25124
25299
25474
25649
25824
25999
26174
26349
26524
26699
26874
27049
27224
27399
0
175
350
525
700
875
1050
1225
1400
1575
1750
1925
2100
2275
2450
2625
2800
2975
3150
3325
1
176
351
526
701
876
1051
1226
1401
1576
1751
1926
2101
2276
2451
2626
2801
2976
3151
3326
2
177
352
527
702
877
1052
1227
1402
1577
1752
1927
2102
2277
2452
2627
2802
2977
3152
3327
3
178
353
528
703
878
1053
1228
1403
1578
1753
1928
2103
2278
2453
2628
2803
2978
3153
3328
4
179
354
529
704
879
1054
1229
1404
1579
1754
1929
2104
2279
2454
2629
2804
2979
3154
3329
5
180
355
530
705
880
1055
1230
1405
1580
1755
1930
2105
2280
2455
2630
2805
2980
3155
3330
6
181
356
531
706
881
1056
1231
1406
1581
1756
1931
2106
2281
2456
2631
2806
2981
3156
3331
7
182
357
532
707
882
1057
1232
1407
1582
1757
1932
2107
2282
2457
2632
2807
2982
3157
3332
8
183
358
533
708
883
1058
1233
1408
1583
1758
1933
2108
2283
2458
2633
2808
2983
3158
3333
9
184
359
534
709
884
1059
1234
1409
1584
1759
1934
2109
2284
2459
2634
2809
2984
3159
3334
10
185
360
535
710
885
1060
1235
1410
1585
1760
1935
2110
2285
2460
2635
2810
2985
3160
3335
11
186
361
536
711
886
1061
1236
1411
1586
1761
1936
2111
2286
2461
2636
2811
2986
3161
3336
12
187
362
537
712
887
1062
1237
1412
1587
1762
1937
2112
2287
2462
2637
2812
2987
3162
3337
13
188
363
538
713
888
1063
1238
1413
1588
1763
1938
2113
2288
2463
2638
2813
2988
3163
3338
14
189
364
539
714
889
1064
1239
1414
1589
1764
1939
2114
2289
2464
2639
2814
2989
3164
3339
15
190
365
540
715
890
1065
1240
1415
1590
1765
1940
2115
2290
2465
2640
2815
2990
3165
3340
16
191
366
541
716
891
1066
1241
1416
1591
1766
1941
2116
2291
2466
2641
2816
2991
3166
3341
17
192
367
542
717
892
1067
1242
1417
1592
1767
1942
2117
2292
2467
2642
2817
2992
3167
3342
18
193
368
543
718
893
1068
1243
1418
1593
1768
1943
2118
2293
2468
2643
2818
2993
3168
3343
19
194
369
544
719
894
1069
1244
1419
1594
1769
1944
2119
2294
2469
2644
2819
2994
3169
3344
20
195
370
545
720
895
1070
1245
1420
1595
1770
1945
2120
2295
2470
2645
2820
2995
3170
3345
21
196
371
546
721
896
1071
1246
1421
1596
1771
1946
2121
2296
2471
2646
2821
2996
3171
3346
22
197
372
547
722
897
1072
1247
1422
1597
1772
1947
2122
2297
2472
2647
2822
2997
3172
3347
23
198
373
548
723
898
1073
1248
1423
1598
1773
1948
2123
2298
2473
2648
2823
2998
3173
3348
24
199
374
549
724
899
1074
1249
1424
1599
1774
1949
2124
2299
2474
2649
2824
2999
3174
3349
25
200
375
550
725
900
1075
1250
1425
1600
1775
1950
2125
2300
2475
2650
2825
3000
3175
3350
26
201
376
551
726
901
1076
1251
1426
1601
1776
1951
2126
2301
2476
2651
2826
3001
3176
3351
27
202
377
552
727
902
1077
1252
1427
1602
1777
1952
2127
2302
2477
2652
2827
3002
3177
3352
28
203
378
553
728
903
1078
1253
1428
1603
1778
1953
2128
2303
2478
2653
2828
3003
3178
3353
29
204
379
554
729
904
1079
1254
1429
1604
1779
1954
2129
2304
2479
2654
2829
3004
3179
3354
30
205
380
555
730
905
1080
1255
1430
1605
1780
1955
2130
2305
2480
2655
2830
3005
3180
3355
31
206
381
556
731
906
1081
1256
1431
1606
1781
1956
2131
2306
2481
2656
2831
3006
3181
3356
32
207
382
557
732
907
1082
1257
1432
1607
1782
1957
2132
2307
2482
2657
2832
3007
3182
3357
33
208
383
558
733
908
1083
1258
1433
1608
1783
1958
2133
2308
2483
2658
2833
3008
3183
3358
34
209
384
559
734
909
1084
1259
1434
1609
1784
1959
2134
2309
2484
2659
2834
3009
3184
3359
35
210
385
560
735
910
1085
1260
1435
1610
1785
1960
2135
2310
2485
2660
2835
3010
3185
3360
36
211
386
561
736
911
1086
1261
1436
1611
1786
1961
2136
2311
2486
2661
2836
3011
3186
3361
37
212
387
562
737
912
1087
1262
1437
1612
1787
1962
2137
2312
2487
2662
2837
3012
3187
3362
38
213
388
563
738
913
1088
1263
1438
1613
1788
1963
2138
2313
2488
2663
2838
3013
3188
3363
39
214
389
564
739
914
1089
1264
1439
1614
1789
1964
2139
2314
2489
2664
2839
3014
3189
3364
40
215
390
565
740
915
1090
1265
1440
1615
1790
1965
2140
2315
2490
2665
2840
3015
3190
3365
41
216
391
566
741
916
1091
1266
1441
1616
1791
1966
2141
2316
2491
2666
2841
3016
3191
3366
42
217
392
567
742
917
1092
1267
1442
1617
1792
1967
2142
2317
2492
2667
2842
3017
3192
3367
43
218
393
568
743
918
1093
1268
1443
1618
1793
1968
2143
2318
2493
2668
2843
3018
3193
3368
44
219
394
569
744
919
1094
1269
1444
1619
1794
1969
2144
2319
2494
2669
2844
3019
3194
3369
45
220
395
570
745
920
1095
1270
1445
1620
1795
1970
2145
2320
2495
2670
2845
3020
3195
3370
46
221
396
571
746
921
1096
1271
1446
1621
1796
1971
2146
2321
2496
2671
2846
3021
3196
3371
47
222
397
572
747
922
1097
1272
1447
1622
1797
1972
2147
2322
2497
2672
2847
3022
3197
3372
48
223
398
573
748
923
1098
1273
1448
1623
1798
1973
2148
2323
2498
2673
2848
3023
3198
3373
49
224
399
574
749
924
1099
1274
1449
1624
1799
1974
2149
2324
2499
2674
2849
3024
3199
3374
50
225
400
575
750
925
1100
1275
1450
1625
1800
1975
2150
2325
2500
2675
2850
3025
3200
3375
51
226
401
576
751
926
1101
1276
1451
1626
1801
1976
2151
2326
2501
2676
2851
3026
3201
3376
52
227
402
577
752
927
1102
1277
1452
1627
1802
1977
2152
2327
2502
2677
2852
3027
3202
3377
53
228
403
578
753
928
1103
1278
1453
1628
1803
1978
2153
2328
2503
2678
2853
3028
3203
3378
54
229
404
579
754
929
1104
1279
1454
1629
1804
1979
2154
2329
2504
2679
2854
3029
3204
3379
55
230
405
580
755
930
1105
1280
1455
1630
1805
1980
2155
2330
2505
2680
2855
3030
3205
3380
56
231
406
581
756
931
1106
1281
1456
1631
1806
1981
2156
2331
2506
2681
2856
3031
3206
3381
57
232
407
582
757
932
1107
1282
1457
1632
1807
1982
2157
2332
2507
2682
2857
3032
3207
3382
58
233
408
583
758
933
1108
1283
1458
1633
1808
1983
2158
2333
2508
2683
2858
3033
3208
3383
59
234
409
584
759
934
1109
1284
1459
1634
1809
1984
2159
2334
2509
2684
2859
3034
3209
3384
60
235
410
585
760
935
1110
1285
1460
1635
1810
1985
2160
2335
2510
2685
2860
3035
3210
3385
61
236
411
586
761
936
1111
1286
1461
1636
1811
1986
2161
2336
2511
2686
2861
3036
3211
3386
62
237
412
587
762
937
1112
1287
1462
1637
1812
1987
2162
2337
2512
2687
2862
3037
3212
3387
63
238
413
588
763
938
1113
1288
1463
1638
1813
1988
2163
2338
2513
2688
2863
3038
3213
3388
64
239
414
589
764
939
1114
1289
1464
1639
1814
1989
2164
2339
2514
2689
2864
3039
3214
3389
65
240
415
590
765
940
1115
1290
1465
1640
1815
1990
2165
2340
2515
2690
2865
3040
3215
3390
66
241
416
591
766
941
1116
1291
1466
1641
1816
1991
2166
2341
2516
2691
2866
3041
3216
3391
67
242
417
592
767
942
1117
1292
1467
1642
1817
1992
2167
2342
2517
2692
2867
3042
3217
3392
68
243
418
593
768
943
1118
1293
1468
1643
1818
1993
2168
2343
2518
2693
2868
3043
3218
3393
69
244
419
594
769
944
1119
1294
1469
1644
1819
1994
2169
2344
2519
2694
2869
3044
3219
3394
70
245
420
595
770
945
1120
1295
1470
1645
1820
1995
2170
2345
2520
2695
2870
3045
3220
3395
71
246
421
596
771
946
1121
1296
1471
1646
1821
1996
2171
2346
2521
2696
2871
3046
3221
3396
72
247
422
597
772
947
1122
1297
1472
1647
1822
1997
2172
2347
2522
2697
2872
3047
3222
3397
73
248
423
598
773
948
1123
1298
1473
1648
1823
1998
2173
2348
2523
2698
2873
3048
3223
3398
74
249
424
599
774
949
1124
1299
1474
1649
1824
1999
2174
2349
2524
2699
2874
3049
3224
3399
75
250
425
600
775
950
1125
1300
1475
1650
1825
2000
2175
2350
2525
2700
2875
3050
3225
3400
76
251
426
601
776
951
1126
1301
1476
1651
1826
2001
2176
2351
2526
2701
2876
3051
3226
3401
77
252
427
602
777
952
1127
1302
1477
1652
1827
2002
2177
2352
2527
2702
2877
3052
3227
3402
78
253
428
603
778
953
1128
1303
1478
1653
1828
2003
2178
2353
2528
2703
2878
3053
3228
3403
79
254
429
604
779
954
1129
1304
1479
1654
1829
2004
2179
2354
2529
2704
2879
3054
3229
3404
80
255
430
605
780
955
1130
1305
1480
1655
1830
2005
2180
2355
2530
2705
2880
3055
3230
3405
81
256
431
606
781
956
1131
1306
1481
1656
1831
2006
2181
2356
2531
2706
2881
3056
3231
3406
82
257
432
607
782
957
1132
1307
1482
1657
1832
2007
2182
2357
2532
2707
2882
3057
3232
3407
83
258
433
608
783
958
1133
1308
1483
1658
1833
2008
2183
2358
2533
2708
2883
3058
3233
3408
84
259
434
609
784
959
1134
1309
1484
1659
1834
2009
2184
2359
2534
2709
2884
3059
3234
3409
85
260
435
610
785
960
1135
1310
1485
1660
1835
2010
2185
2360
2535
2710
2885
3060
3235
3410
86
261
436
611
786
961
1136
1311
1486
1661
1836
2011
2186
2361
2536
2711
2886
3061
3236
3411
87
262
437
612
787
962
1137
1312
1487
1662
1837
2012
2187
2362
2537
2712
2887
3062
3237
3412
88
263
438
613
788
963
1138
1313
1488
1663
1838
2013
2188
2363
2538
2713
2888
3063
3238
3413
89
264
439
614
789
964
1139
1314
1489
1664
1839
2014
2189
2364
2539
2714
2889
3064
3239
3414
90
265
440
615
790
965
1140
1315
1490
1665
1840
2015
2190
2365
2540
2715
2890
3065
3240
3415
91
266
441
616
791
966
1141
1316
1491
1666
1841
2016
2191
2366
2541
2716
2891
3066
3241
3416
92
267
442
617
792
967
1142
1317
1492
1667
1842
2017
2192
2367
2542
2717
2892
3067
3242
3417
93
268
443
618
793
968
1143
1318
1493
1668
1843
2018
2193
2368
2543
2718
2893
3068
3243
3418
94
269
444
619
794
969
1144
1319
1494
1669
1844
2019
2194
2369
2544
2719
2894
3069
3244
3419
95
270
445
620
795
970
1145
1320
1495
1670
1845
2020
2195
2370
2545
2720
2895
3070
3245
3420
96
271
446
621
796
971
1146
1321
1496
1671
1846
2021
2196
2371
2546
2721
2896
3071
3246
3421
97
272
447
622
797
972
1147
1322
1497
1672
1847
2022
2197
2372
2547
2722
2897
3072
3247
3422
98
273
448
623
798
973
1148
1323
1498
1673
1848
2023
2198
2373
2548
2723
2898
3073
3248
3423
99
274
449
624
799
974
1149
1324
1499
1674
1849
2024
2199
2374
2549
2724
2899
3074
3249
3424
100
275
450
625
800
975
1150
1325
1500
1675
1850
2025
2200
2375
2550
2725
2900
3075
3250
3425
101
276
451
626
801
976
1151
1326
1501
1676
1851
2026
2201
2376
2551
2726
2901
3076
3251
3426
102
277
452
627
802
977
1152
1327
1502
1677
1852
2027
2202
2377
2552
2727
2902
3077
3252
3427
103
278
453
628
803
978
1153
1328
1503
1678
1853
2028
2203
2378
2553
2728
2903
3078
3253
3428
104
279
454
629
804
979
1154
1329
1504
1679
1854
2029
2204
2379
2554
2729
2904
3079
3254
3429
105
280
455
630
805
980
1155
1330
1505
1680
1855
2030
2205
2380
2555
2730
2905
3080
3255
3430
106
281
456
631
806
981
1156
1331
1506
1681
1856
2031
2206
2381
2556
2731
2906
3081
3256
3431
107
282
457
632
807
982
1157
1332
1507
1682
1857
2032
2207
2382
2557
2732
2907
3082
3257
3432
108
283
458
633
808
983
1158
1333
1508
1683
1858
2033
2208
2383
2558
2733
2908
3083
3258
3433
109
284
459
634
809
984
1159
1334
1509
1684
1859
2034
2209
2384
2559
2734
2909
3084
3259
3434
110
285
460
635
810
985
1160
1335
1510
1685
1860
2035
2210
2385
2560
2735
2910
3085
3260
3435
111
286
461
636
811
986
1161
1336
1511
1686
1861
2036
2211
2386
2561
2736
2911
3086
3261
3436
112
287
462
637
812
987
1162
1337
1512
1687
1862
2037
2212
2387
2562
2737
2912
3087
3262
3437
113
288
463
638
813
988
1163
1338
1513
1688
1863
2038
2213
2388
2563
2738
2913
3088
3263
3438
114
289
464
639
814
989
1164
1339
1514
1689
1864
2039
2214
2389
2564
2739
2914
3089
3264
3439
115
290
465
640
815
990
1165
1340
1515
1690
1865
2040
2215
2390
2565
2740
2915
3090
3265
3440
116
291
466
641
816
991
1166
1341
1516
1691
1866
2041
2216
2391
2566
2741
2916
3091
3266
3441
117
292
467
642
817
992
1167
1342
1517
1692
1867
2042
2217
2392
2567
2742
2917
3092
3267
3442
118
293
468
643
818
993
1168
1343
1518
1693
1868
2043
2218
2393
2568
2743
2918
3093
3268
3443
119
294
469
644
819
994
1169
1344
1519
1694
1869
2044
2219
2394
2569
2744
2919
3094
3269
3444
120
295
470
645
820
995
1170
1345
1520
1695
1870
2045
2220
2395
2570
2745
2920
3095
3270
3445
121
296
471
646
821
996
1171
1346
1521
1696
1871
2046
2221
2396
2571
2746
2921
3096
3271
3446
122
297
472
647
822
997
1172
1347
1522
1697
1872
2047
2222
2397
2572
2747
2922
3097
3272
3447
123
298
473
648
823
998
1173
1348
1523
1698
1873
2048
2223
2398
2573
2748
2923
3098
3273
3448
124
299
474
649
824
999
1174
1349
1524
1699
1874
2049
2224
2399
2574
2749
2924
3099
3274
3449
125
300
475
650
825
1000
1175
1350
1525
1700
1875
2050
2225
2400
2575
2750
2925
3100
3275
3450
126
301
476
651
826
1001
1176
1351
1526
1701
1876
2051
2226
2401
2576
2751
2926
3101
3276
3451
127
302
477
652
827
1002
1177
1352
1527
1702
1877
2052
2227
2402
2577
2752
2927
3102
3277
3452
128
303
478
653
828
1003
1178
1353
1528
1703
1878
2053
2228
2403
2578
2753
2928
3103
3278
3453
129
304
479
654
829
1004
1179
1354
1529
1704
1879
2054
2229
2404
2579
2754
2929
3104
3279
3454
130
305
480
655
830
1005
1180
1355
1530
1705
1880
2055
2230
2405
2580
2755
2930
3105
3280
3455
131
306
481
656
831
1006
1181
1356
1531
1706
1881
2056
2231
2406
2581
2756
2931
3106
3281
3456
132
307
482
657
832
1007
1182
1357
1532
1707
1882
2057
2232
2407
2582
2757
2932
3107
3282
3457
133
308
483
658
833
1008
1183
1358
1533
1708
1883
2058
2233
2408
2583
2758
2933
3108
3283
3458
134
309
484
659
834
1009
1184
1359
1534
1709
1884
2059
2234
2409
2584
2759
2934
3109
3284
3459
135
310
485
660
835
1010
1185
1360
1535
1710
1885
2060
2235
2410
2585
2760
2935
3110
3285
3460
136
311
486
661
836
1011
1186
1361
1536
1711
1886
2061
2236
2411
2586
2761
2936
3111
3286
3461
137
312
487
662
837
1012
1187
1362
1537
1712
1887
2062
2237
2412
2587
2762
2937
3112
3287
3462
138
313
488
663
838
1013
1188
1363
1538
1713
1888
2063
2238
2413
2588
2763
2938
3113
3288
3463
139
314
489
664
839
1014
1189
1364
1539
1714
1889
2064
2239
2414
2589
2764
2939
3114
3289
3464
140
315
490
665
840
1015
1190
1365
1540
1715
1890
2065
2240
2415
2590
2765
2940
3115
3290
3465
141
316
491
666
841
1016
1191
1366
1541
1716
1891
2066
2241
2416
2591
2766
2941
3116
3291
3466
142
317
492
667
842
1017
1192
1367
1542
1717
1892
2067
2242
2417
2592
2767
2942
3117
3292
3467
143
318
493
668
843
1018
1193
1368
1543
1718
1893
2068
2243
2418
2593
2768
2943
3118
3293
3468
144
319
494
669
844
1019
1194
1369
1544
1719
1894
2069
2244
2419
2594
2769
2944
3119
3294
3469
145
320
495
670
845
1020
1195
1370
1545
1720
1895
2070
2245
2420
2595
2770
2945
3120
3295
3470
146
321
496
671
846
1021
1196
1371
1546
1721
1896
2071
2246
2421
2596
2771
2946
3121
3296
3471
147
322
497
672
847
1022
1197
1372
1547
1722
1897
2072
2247
2422
2597
2772
2947
3122
3297
3472
148
323
498
673
848
1023
1198
1373
1548
1723
1898
2073
2248
2423
2598
2773
2948
3123
3298
3473
149
324
499
674
849
1024
1199
1374
1549
1724
1899
2074
2249
2424
2599
2774
2949
3124
3299
3474
150
325
500
675
850
1025
1200
1375
1550
1725
1900
2075
2250
2425
2600
2775
2950
3125
3300
3475
151
326
501
676
851
1026
1201
1376
1551
1726
1901
2076
2251
2426
2601
2776
2951
3126
3301
3476
152
327
502
677
852
1027
1202
1377
1552
1727
1902
2077
2252
2427
2602
2777
2952
3127
3302
3477
153
328
503
678
853
1028
1203
1378
1553
1728
1903
2078
2253
2428
2603
2778
2953
3128
3303
3478
154
329
504
679
854
1029
1204
1379
1554
1729
1904
2079
2254
2429
2604
2779
2954
3129
3304
3479
155
330
505
680
855
1030
1205
1380
1555
1730
1905
2080
2255
2430
2605
2780
2955
3130
3305
3480
156
331
506
681
856
1031
1206
1381
1556
1731
1906
2081
2256
2431
2606
2781
2956
3131
3306
3481
157
332
507
682
857
1032
1207
1382
1557
1732
1907
2082
2257
2432
2607
2782
2957
3132
3307
3482
158
333
508
683
858
1033
1208
1383
1558
1733
1908
2083
2258
2433
2608
2783
2958
3133
3308
3483
159
334
509
684
859
1034
1209
1384
1559
1734
1909
2084
2259
2434
2609
2784
2959
3134
3309
3484
160
335
510
685
860
1035
1210
1385
1560
1735
1910
2085
2260
2435
2610
2785
2960
3135
3310
3485
161
336
511
686
861
1036
1211
1386
1561
1736
1911
2086
2261
2436
2611
2786
2961
3136
3311
3486
162
337
512
687
862
1037
1212
1387
1562
1737
1912
2087
2262
2437
2612
2787
2962
3137
3312
3487
163
338
513
688
863
1038
1213
1388
1563
1738
1913
2088
2263
2438
2613
2788
2963
3138
3313
3488
164
339
514
689
864
1039
1214
1389
1564
1739
1914
2089
2264
2439
2614
2789
2964
3139
3314
3489
165
340
515
690
865
1040
1215
1390
1565
1740
1915
2090
2265
2440
2615
2790
2965
3140
3315
3490
166
341
516
691
866
1041
1216
1391
1566
1741
1916
2091
2266
2441
2616
2791
2966
3141
3316
3491
167
342
517
692
867
1042
1217
1392
1567
1742
1917
2092
2267
2442
2617
2792
2967
3142
3317
3492
168
343
518
693
868
1043
1218
1393
1568
1743
1918
2093
2268
2443
2618
2793
2968
3143
3318
3493
169
344
519
694
869
1044
1219
1394
1569
1744
1919
2094
2269
2444
2619
2794
2969
3144
3319
3494
170
345
520
695
870
1045
1220
1395
1570
1745
1920
2095
2270
2445
2620
2795
2970
3145
3320
3495
171
346
521
696
871
1046
1221
1396
1571
1746
1921
2096
2271
2446
2621
2796
2971
3146
3321
3496
172
347
522
697
872
1047
1222
1397
1572
1747
1922
2097
2272
2447
2622
2797
2972
3147
3322
3497
173
348
523
698
873
1048
1223
1398
1573
1748
1923
2098
2273
2448
2623
2798
2973
3148
3323
3498
174
349
524
699
874
1049
1224
1399
1574
1749
1924
2099
2274
2449
2624
2799
2974
3149
3324
3499
3500
3530
3560
3590
3620
3650
3680
3710
3740
3770
3800
3830
3860
3890
3920
3950
3980
4010
4040
4070
3501
3531
3561
3591
3621
3651
3681
3711
3741
3771
3801
3831
3861
3891
3921
3951
3981
4011
4041
4071
3502
3532
3562
3592
3622
3652
3682
3712
3742
3772
3802
3832
3862
3892
3922
3952
3982
4012
4042
4072
3503
3533
3563
3593
3623
3653
3683
3713
3743
3773
3803
3833
3863
3893
3923
3953
3983
4013
4043
4073
3504
3534
3564
3594
3624
3654
3684
3714
3744
3774
3804
3834
3864
3894
3924
3954
3984
4014
4044
4074
3505
3535
3565
3595
3625
3655
3685
3715
3745
3775
3805
3835
3865
3895
3925
3955
3985
4015
4045
4075
3506
3536
3566
3596
3626
3656
3686
3716
3746
3776
3806
3836
3866
3896
3926
3956
3986
4016
4046
4076
3507
3537
3567
3597
3627
3657
3687
3717
3747
3777
3807
3837
3867
3897
3927
3957
3987
4017
4047
4077
3508
3538
3568
3598
3628
3658
3688
3718
3748
3778
3808
3838
3868
3898
3928
3958
3988
4018
4048
4078
3509
3539
3569
3599
3629
3659
3689
3719
3749
3779
3809
3839
3869
3899
3929
3959
3989
4019
4049
4079
3510
3540
3570
3600
3630
3660
3690
3720
3750
3780
3810
3840
3870
3900
3930
3960
3990
4020
4050
4080
3511
3541
3571
3601
3631
3661
3691
3721
3751
3781
3811
3841
3871
3901
3931
3961
3991
4021
4051
4081
3512
3542
3572
3602
3632
3662
3692
3722
3752
3782
3812
3842
3872
3902
3932
3962
3992
4022
4052
4082
3513
3543
3573
3603
3633
3663
3693
3723
3753
3783
3813
3843
3873
3903
3933
3963
3993
4023
4053
4083
3514
3544
3574
3604
3634
3664
3694
3724
3754
3784
3814
3844
3874
3904
3934
3964
3994
4024
4054
4084
3515
3545
3575
3605
3635
3665
3695
3725
3755
3785
3815
3845
3875
3905
3935
3965
3995
4025
4055
4085
3516
3546
3576
3606
3636
3666
3696
3726
3756
3786
3816
3846
3876
3906
3936
3966
3996
4026
4056
4086
3517
3547
3577
3607
3637
3667
3697
3727
3757
3787
3817
3847
3877
3907
3937
3967
3997
4027
4057
4087
3518
3548
3578
3608
3638
3668
3698
3728
3758
3788
3818
3848
3878
3908
3938
3968
3998
4028
4058
4088
3519
3549
3579
3609
3639
3669
3699
3729
3759
3789
3819
3849
3879
3909
3939
3969
3999
4029
4059
4089
3520
3550
3580
3610
3640
3670
3700
3730
3760
3790
3820
3850
3880
3910
3940
3970
4000
4030
4060
4090
3521
3551
3581
3611
3641
3671
3701
3731
3761
3791
3821
3851
3881
3911
3941
3971
4001
4031
4061
4091
3522
3552
3582
3612
3642
3672
3702
3732
3762
3792
3822
3852
3882
3912
3942
3972
4002
4032
4062
4092
3523
3553
3583
3613
3643
3673
3703
3733
3763
3793
3823
3853
3883
3913
3943
3973
4003
4033
4063
4093
3524
3554
3584
3614
3644
3674
3704
3734
3764
3794
3824
3854
3884
3914
3944
3974
4004
4034
4064
4094
3525
3555
3585
3615
3645
3675
3705
3735
3765
3795
3825
3855
3885
3915
3945
3975
4005
4035
4065
4095
3526
3556
3586
3616
3646
3676
3706
3736
3766
3796
3826
3856
3886
3916
3946
3976
4006
4036
4066
4096
3527
3557
3587
3617
3647
3677
3707
3737
3767
3797
3827
3857
3887
3917
3947
3977
4007
4037
4067
4097
3528
3558
3588
3618
3648
3678
3708
3738
3768
3798
3828
3858
3888
3918
3948
3978
4008
4038
4068
4098
3529
3559
3589
3619
3649
3679
3709
3739
3769
3799
3829
3859
3889
3919
3949
3979
4009
4039
4069
4099
4100
4130
4160
4190
4220
4250
4280
4310
4340
4370
4400
4430
4460
4490
4520
4550
4580
4610
4640
4670
4101
4131
4161
4191
4221
4251
4281
4311
4341
4371
4401
4431
4461
4491
4521
4551
4581
4611
4641
4671
4102
4132
4162
4192
4222
4252
4282
4312
4342
4372
4402
4432
4462
4492
4522
4552
4582
4612
4642
4672
4103
4133
4163
4193
4223
4253
4283
4313
4343
4373
4403
4433
4463
4493
4523
4553
4583
4613
4643
4673
4104
4134
4164
4194
4224
4254
4284
4314
4344
4374
4404
4434
4464
4494
4524
4554
4584
4614
4644
4674
4105
4135
4165
4195
4225
4255
4285
4315
4345
4375
4405
4435
4465
4495
4525
4555
4585
4615
4645
4675
4106
4136
4166
4196
4226
4256
4286
4316
4346
4376
4406
4436
4466
4496
4526
4556
4586
4616
4646
4676
4107
4137
4167
4197
4227
4257
4287
4317
4347
4377
4407
4437
4467
4497
4527
4557
4587
4617
4647
4677
4108
4138
4168
4198
4228
4258
4288
4318
4348
4378
4408
4438
4468
4498
4528
4558
4588
4618
4648
4678
4109
4139
4169
4199
4229
4259
4289
4319
4349
4379
4409
4439
4469
4499
4529
4559
4589
4619
4649
4679
4110
4140
4170
4200
4230
4260
4290
4320
4350
4380
4410
4440
4470
4500
4530
4560
4590
4620
4650
4680
4111
4141
4171
4201
4231
4261
4291
4321
4351
4381
4411
4441
4471
4501
4531
4561
4591
4621
4651
4681
4112
4142
4172
4202
4232
4262
4292
4322
4352
4382
4412
4442
4472
4502
4532
4562
4592
4622
4652
4682
4113
4143
4173
4203
4233
4263
4293
4323
4353
4383
4413
4443
4473
4503
4533
4563
4593
4623
4653
4683
4114
4144
4174
4204
4234
4264
4294
4324
4354
4384
4414
4444
4474
4504
4534
4564
4594
4624
4654
4684
4115
4145
4175
4205
4235
4265
4295
4325
4355
4385
4415
4445
4475
4505
4535
4565
4595
4625
4655
4685
4116
4146
4176
4206
4236
4266
4296
4326
4356
4386
4416
4446
4476
4506
4536
4566
4596
4626
4656
4686
4117
4147
4177
4207
4237
4267
4297
4327
4357
4387
4417
4447
4477
4507
4537
4567
4597
4627
4657
4687
4118
4148
4178
4208
4238
4268
4298
4328
4358
4388
4418
4448
4478
4508
4538
4568
4598
4628
4658
4688
4119
4149
4179
4209
4239
4269
4299
4329
4359
4389
4419
4449
4479
4509
4539
4569
4599
4629
4659
4689
4120
4150
4180
4210
4240
4270
4300
4330
4360
4390
4420
4450
4480
4510
4540
4570
4600
4630
4660
4690
4121
4151
4181
4211
4241
4271
4301
4331
4361
4391
4421
4451
4481
4511
4541
4571
4601
4631
4661
4691
4122
4152
4182
4212
4242
4272
4302
4332
4362
4392
4422
4452
4482
4512
4542
4572
4602
4632
4662
4692
4123
4153
4183
4213
4243
4273
4303
4333
4363
4393
4423
4453
4483
4513
4543
4573
4603
4633
4663
4693
4124
4154
4184
4214
4244
4274
4304
4334
4364
4394
4424
4454
4484
4514
4544
4574
4604
4634
4664
4694
4125
4155
4185
4215
4245
4275
4305
4335
4365
4395
4425
4455
4485
4515
4545
4575
4605
4635
4665
4695
4126
4156
4186
4216
4246
4276
4306
4336
4366
4396
4426
4456
4486
4516
4546
4576
4606
4636
4666
4696
4127
4157
4187
4217
4247
4277
4307
4337
4367
4397
4427
4457
4487
4517
4547
4577
4607
4637
4667
4697
4128
4158
4188
4218
4248
4278
4308
4338
4368
4398
4428
4458
4488
4518
4548
4578
4608
4638
4668
4698
4129
4159
4189
4219
4249
4279
4309
4339
4369
4399
4429
4459
4489
4519
4549
4579
4609
4639
4669
4699
4700
4730
4760
4790
4820
4850
4880
4910
4940
4970
5000
5030
5060
5090
5120
5150
5180
5210
5240
5270
5300
5330
5360
5390
5420
5450
5480
5510
5540
5570
5600
5630
5660
5690
5720
5750
5780
5810
5840
5870
5900
5930
5960
5990
6020
6050
6080
6110
6140
6170
6200
6230
6260
6290
6320
6350
6380
6410
6440
6470
6500
6530
6560
6590
6620
6650
6680
6710
6740
6770
6800
6830
6860
6890
6920
6950
6980
7010
7040
7070
7100
7130
7160
7190
7220
7250
7280
7310
7340
7370
7400
7430
7460
7490
7520
7550
7580
7610
7640
7670
7700
7730
7760
7790
7820
7850
7880
7910
7940
7970
8000
8030
8060
8090
8120
8150
8180
8210
8240
8270
8300
8330
8360
8390
8420
8450
8480
8510
8540
8570
8600
8630
8660
8690
8720
8750
8780
8810
8840
8870
8900
8930
8960
8990
9020
9050
9080
9110
9140
9170
4701
4731
4761
4791
4821
4851
4881
4911
4941
4971
5001
5031
5061
5091
5121
5151
5181
5211
5241
5271
5301
5331
5361
5391
5421
5451
5481
5511
5541
5571
5601
5631
5661
5691
5721
5751
5781
5811
5841
5871
5901
5931
5961
5991
6021
6051
6081
6111
6141
6171
6201
6231
6261
6291
6321
6351
6381
6411
6441
6471
6501
6531
6561
6591
6621
6651
6681
6711
6741
6771
6801
6831
6861
6891
6921
6951
6981
7011
7041
7071
7101
7131
7161
7191
7221
7251
7281
7311
7341
7371
7401
7431
7461
7491
7521
7551
7581
7611
7641
7671
7701
7731
7761
7791
7821
7851
7881
7911
7941
7971
8001
8031
8061
8091
8121
8151
8181
8211
8241
8271
8301
8331
8361
8391
8421
8451
8481
8511
8541
8571
8601
8631
8661
8691
8721
8751
8781
8811
8841
8871
8901
8931
8961
8991
9021
9051
9081
9111
9141
9171
4702
4732
4762
4792
4822
4852
4882
4912
4942
4972
5002
5032
5062
5092
5122
5152
5182
5212
5242
5272
5302
5332
5362
5392
5422
5452
5482
5512
5542
5572
5602
5632
5662
5692
5722
5752
5782
5812
5842
5872
5902
5932
5962
5992
6022
6052
6082
6112
6142
6172
6202
6232
6262
6292
6322
6352
6382
6412
6442
6472
6502
6532
6562
6592
6622
6652
6682
6712
6742
6772
6802
6832
6862
6892
6922
6952
6982
7012
7042
7072
7102
7132
7162
7192
7222
7252
7282
7312
7342
7372
7402
7432
7462
7492
7522
7552
7582
7612
7642
7672
7702
7732
7762
7792
7822
7852
7882
7912
7942
7972
8002
8032
8062
8092
8122
8152
8182
8212
8242
8272
8302
8332
8362
8392
8422
8452
8482
8512
8542
8572
8602
8632
8662
8692
8722
8752
8782
8812
8842
8872
8902
8932
8962
8992
9022
9052
9082
9112
9142
9172
4703
4733
4763
4793
4823
4853
4883
4913
4943
4973
5003
5033
5063
5093
5123
5153
5183
5213
5243
5273
5303
5333
5363
5393
5423
5453
5483
5513
5543
5573
5603
5633
5663
5693
5723
5753
5783
5813
5843
5873
5903
5933
5963
5993
6023
6053
6083
6113
6143
6173
6203
6233
6263
6293
6323
6353
6383
6413
6443
6473
6503
6533
6563
6593
6623
6653
6683
6713
6743
6773
6803
6833
6863
6893
6923
6953
6983
7013
7043
7073
7103
7133
7163
7193
7223
7253
7283
7313
7343
7373
7403
7433
7463
7493
7523
7553
7583
7613
7643
7673
7703
7733
7763
7793
7823
7853
7883
7913
7943
7973
8003
8033
8063
8093
8123
8153
8183
8213
8243
8273
8303
8333
8363
8393
8423
8453
8483
8513
8543
8573
8603
8633
8663
8693
8723
8753
8783
8813
8843
8873
8903
8933
8963
8993
9023
9053
9083
9113
9143
9173
4704
4734
4764
4794
4824
4854
4884
4914
4944
4974
5004
5034
5064
5094
5124
5154
5184
5214
5244
5274
5304
5334
5364
5394
5424
5454
5484
5514
5544
5574
5604
5634
5664
5694
5724
5754
5784
5814
5844
5874
5904
5934
5964
5994
6024
6054
6084
6114
6144
6174
6204
6234
6264
6294
6324
6354
6384
6414
6444
6474
6504
6534
6564
6594
6624
6654
6684
6714
6744
6774
6804
6834
6864
6894
6924
6954
6984
7014
7044
7074
7104
7134
7164
7194
7224
7254
7284
7314
7344
7374
7404
7434
7464
7494
7524
7554
7584
7614
7644
7674
7704
7734
7764
7794
7824
7854
7884
7914
7944
7974
8004
8034
8064
8094
8124
8154
8184
8214
8244
8274
8304
8334
8364
8394
8424
8454
8484
8514
8544
8574
8604
8634
8664
8694
8724
8754
8784
8814
8844
8874
8904
8934
8964
8994
9024
9054
9084
9114
9144
9174
4705
4735
4765
4795
4825
4855
4885
4915
4945
4975
5005
5035
5065
5095
5125
5155
5185
5215
5245
5275
5305
5335
5365
5395
5425
5455
5485
5515
5545
5575
5605
5635
5665
5695
5725
5755
5785
5815
5845
5875
5905
5935
5965
5995
6025
6055
6085
6115
6145
6175
6205
6235
6265
6295
6325
6355
6385
6415
6445
6475
6505
6535
6565
6595
6625
6655
6685
6715
6745
6775
6805
6835
6865
6895
6925
6955
6985
7015
7045
7075
7105
7135
7165
7195
7225
7255
7285
7315
7345
7375
7405
7435
7465
7495
7525
7555
7585
7615
7645
7675
7705
7735
7765
7795
7825
7855
7885
7915
7945
7975
8005
8035
8065
8095
8125
8155
8185
8215
8245
8275
8305
8335
8365
8395
8425
8455
8485
8515
8545
8575
8605
8635
8665
8695
8725
8755
8785
8815
8845
8875
8905
8935
8965
8995
9025
9055
9085
9115
9145
9175
4706
4736
4766
4796
4826
4856
4886
4916
4946
4976
5006
5036
5066
5096
5126
5156
5186
5216
5246
5276
5306
5336
5366
5396
5426
5456
5486
5516
5546
5576
5606
5636
5666
5696
5726
5756
5786
5816
5846
5876
5906
5936
5966
5996
6026
6056
6086
6116
6146
6176
6206
6236
6266
6296
6326
6356
6386
6416
6446
6476
6506
6536
6566
6596
6626
6656
6686
6716
6746
6776
6806
6836
6866
6896
6926
6956
6986
7016
7046
7076
7106
7136
7166
7196
7226
7256
7286
7316
7346
7376
7406
7436
7466
7496
7526
7556
7586
7616
7646
7676
7706
7736
7766
7796
7826
7856
7886
7916
7946
7976
8006
8036
8066
8096
8126
8156
8186
8216
8246
8276
8306
8336
8366
8396
8426
8456
8486
8516
8546
8576
8606
8636
8666
8696
8726
8756
8786
8816
8846
8876
8906
8936
8966
8996
9026
9056
9086
9116
9146
9176
4707
4737
4767
4797
4827
4857
4887
4917
4947
4977
5007
5037
5067
5097
5127
5157
5187
5217
5247
5277
5307
5337
5367
5397
5427
5457
5487
5517
5547
5577
5607
5637
5667
5697
5727
5757
5787
5817
5847
5877
5907
5937
5967
5997
6027
6057
6087
6117
6147
6177
6207
6237
6267
6297
6327
6357
6387
6417
6447
6477
6507
6537
6567
6597
6627
6657
6687
6717
6747
6777
6807
6837
6867
6897
6927
6957
6987
7017
7047
7077
7107
7137
7167
7197
7227
7257
7287
7317
7347
7377
7407
7437
7467
7497
7527
7557
7587
7617
7647
7677
7707
7737
7767
7797
7827
7857
7887
7917
7947
7977
8007
8037
8067
8097
8127
8157
8187
8217
8247
8277
8307
8337
8367
8397
8427
8457
8487
8517
8547
8577
8607
8637
8667
8697
8727
8757
8787
8817
8847
8877
8907
8937
8967
8997
9027
9057
9087
9117
9147
9177
4708
4738
4768
4798
4828
4858
4888
4918
4948
4978
5008
5038
5068
5098
5128
5158
5188
5218
5248
5278
5308
5338
5368
5398
5428
5458
5488
5518
5548
5578
5608
5638
5668
5698
5728
5758
5788
5818
5848
5878
5908
5938
5968
5998
6028
6058
6088
6118
6148
6178
6208
6238
6268
6298
6328
6358
6388
6418
6448
6478
6508
6538
6568
6598
6628
6658
6688
6718
6748
6778
6808
6838
6868
6898
6928
6958
6988
7018
7048
7078
7108
7138
7168
7198
7228
7258
7288
7318
7348
7378
7408
7438
7468
7498
7528
7558
7588
7618
7648
7678
7708
7738
7768
7798
7828
7858
7888
7918
7948
7978
8008
8038
8068
8098
8128
8158
8188
8218
8248
8278
8308
8338
8368
8398
8428
8458
8488
8518
8548
8578
8608
8638
8668
8698
8728
8758
8788
8818
8848
8878
8908
8938
8968
8998
9028
9058
9088
9118
9148
9178
4709
4739
4769
4799
4829
4859
4889
4919
4949
4979
5009
5039
5069
5099
5129
5159
5189
5219
5249
5279
5309
5339
5369
5399
5429
5459
5489
5519
5549
5579
5609
5639
5669
5699
5729
5759
5789
5819
5849
5879
5909
5939
5969
5999
6029
6059
6089
6119
6149
6179
6209
6239
6269
6299
6329
6359
6389
6419
6449
6479
6509
6539
6569
6599
6629
6659
6689
6719
6749
6779
6809
6839
6869
6899
6929
6959
6989
7019
7049
7079
7109
7139
7169
7199
7229
7259
7289
7319
7349
7379
7409
7439
7469
7499
7529
7559
7589
7619
7649
7679
7709
7739
7769
7799
7829
7859
7889
7919
7949
7979
8009
8039
8069
8099
8129
8159
8189
8219
8249
8279
8309
8339
8369
8399
8429
8459
8489
8519
8549
8579
8609
8639
8669
8699
8729
8759
8789
8819
8849
8879
8909
8939
8969
8999
9029
9059
9089
9119
9149
9179
4710
4740
4770
4800
4830
4860
4890
4920
4950
4980
5010
5040
5070
5100
5130
5160
5190
5220
5250
5280
5310
5340
5370
5400
5430
5460
5490
5520
5550
5580
5610
5640
5670
5700
5730
5760
5790
5820
5850
5880
5910
5940
5970
6000
6030
6060
6090
6120
6150
6180
6210
6240
6270
6300
6330
6360
6390
6420
6450
6480
6510
6540
6570
6600
6630
6660
6690
6720
6750
6780
6810
6840
6870
6900
6930
6960
6990
7020
7050
7080
7110
7140
7170
7200
7230
7260
7290
7320
7350
7380
7410
7440
7470
7500
7530
7560
7590
7620
7650
7680
7710
7740
7770
7800
7830
7860
7890
7920
7950
7980
8010
8040
8070
8100
8130
8160
8190
8220
8250
8280
8310
8340
8370
8400
8430
8460
8490
8520
8550
8580
8610
8640
8670
8700
8730
8760
8790
8820
8850
8880
8910
8940
8970
9000
9030
9060
9090
9120
9150
9180
4711
4741
4771
4801
4831
4861
4891
4921
4951
4981
5011
5041
5071
5101
5131
5161
5191
5221
5251
5281
5311
5341
5371
5401
5431
5461
5491
5521
5551
5581
5611
5641
5671
5701
5731
5761
5791
5821
5851
5881
5911
5941
5971
6001
6031
6061
6091
6121
6151
6181
6211
6241
6271
6301
6331
6361
6391
6421
6451
6481
6511
6541
6571
6601
6631
6661
6691
6721
6751
6781
6811
6841
6871
6901
6931
6961
6991
7021
7051
7081
7111
7141
7171
7201
7231
7261
7291
7321
7351
7381
7411
7441
7471
7501
7531
7561
7591
7621
7651
7681
7711
7741
7771
7801
7831
7861
7891
7921
7951
7981
8011
8041
8071
8101
8131
8161
8191
8221
8251
8281
8311
8341
8371
8401
8431
8461
8491
8521
8551
8581
8611
8641
8671
8701
8731
8761
8791
8821
8851
8881
8911
8941
8971
9001
9031
9061
9091
9121
9151
9181
4712
4742
4772
4802
4832
4862
4892
4922
4952
4982
5012
5042
5072
5102
5132
5162
5192
5222
5252
5282
5312
5342
5372
5402
5432
5462
5492
5522
5552
5582
5612
5642
5672
5702
5732
5762
5792
5822
5852
5882
5912
5942
5972
6002
6032
6062
6092
6122
6152
6182
6212
6242
6272
6302
6332
6362
6392
6422
6452
6482
6512
6542
6572
6602
6632
6662
6692
6722
6752
6782
6812
6842
6872
6902
6932
6962
6992
7022
7052
7082
7112
7142
7172
7202
7232
7262
7292
7322
7352
7382
7412
7442
7472
7502
7532
7562
7592
7622
7652
7682
7712
7742
7772
7802
7832
7862
7892
7922
7952
7982
8012
8042
8072
8102
8132
8162
8192
8222
8252
8282
8312
8342
8372
8402
8432
8462
8492
8522
8552
8582
8612
8642
8672
8702
8732
8762
8792
8822
8852
8882
8912
8942
8972
9002
9032
9062
9092
9122
9152
9182
4713
4743
4773
4803
4833
4863
4893
4923
4953
4983
5013
5043
5073
5103
5133
5163
5193
5223
5253
5283
5313
5343
5373
5403
5433
5463
5493
5523
5553
5583
5613
5643
5673
5703
5733
5763
5793
5823
5853
5883
5913
5943
5973
6003
6033
6063
6093
6123
6153
6183
6213
6243
6273
6303
6333
6363
6393
6423
6453
6483
6513
6543
6573
6603
6633
6663
6693
6723
6753
6783
6813
6843
6873
6903
6933
6963
6993
7023
7053
7083
7113
7143
7173
7203
7233
7263
7293
7323
7353
7383
7413
7443
7473
7503
7533
7563
7593
7623
7653
7683
7713
7743
7773
7803
7833
7863
7893
7923
7953
7983
8013
8043
8073
8103
8133
8163
8193
8223
8253
8283
8313
8343
8373
8403
8433
8463
8493
8523
8553
8583
8613
8643
8673
8703
8733
8763
8793
8823
8853
8883
8913
8943
8973
9003
9033
9063
9093
9123
9153
9183
4714
4744
4774
4804
4834
4864
4894
4924
4954
4984
5014
5044
5074
5104
5134
5164
5194
5224
5254
5284
5314
5344
5374
5404
5434
5464
5494
5524
5554
5584
5614
5644
5674
5704
5734
5764
5794
5824
5854
5884
5914
5944
5974
6004
6034
6064
6094
6124
6154
6184
6214
6244
6274
6304
6334
6364
6394
6424
6454
6484
6514
6544
6574
6604
6634
6664
6694
6724
6754
6784
6814
6844
6874
6904
6934
6964
6994
7024
7054
7084
7114
7144
7174
7204
7234
7264
7294
7324
7354
7384
7414
7444
7474
7504
7534
7564
7594
7624
7654
7684
7714
7744
7774
7804
7834
7864
7894
7924
7954
7984
8014
8044
8074
8104
8134
8164
8194
8224
8254
8284
8314
8344
8374
8404
8434
8464
8494
8524
8554
8584
8614
8644
8674
8704
8734
8764
8794
8824
8854
8884
8914
8944
8974
9004
9034
9064
9094
9124
9154
9184
4715
4745
4775
4805
4835
4865
4895
4925
4955
4985
5015
5045
5075
5105
5135
5165
5195
5225
5255
5285
5315
5345
5375
5405
5435
5465
5495
5525
5555
5585
5615
5645
5675
5705
5735
5765
5795
5825
5855
5885
5915
5945
5975
6005
6035
6065
6095
6125
6155
6185
6215
6245
6275
6305
6335
6365
6395
6425
6455
6485
6515
6545
6575
6605
6635
6665
6695
6725
6755
6785
6815
6845
6875
6905
6935
6965
6995
7025
7055
7085
7115
7145
7175
7205
7235
7265
7295
7325
7355
7385
7415
7445
7475
7505
7535
7565
7595
7625
7655
7685
7715
7745
7775
7805
7835
7865
7895
7925
7955
7985
8015
8045
8075
8105
8135
8165
8195
8225
8255
8285
8315
8345
8375
8405
8435
8465
8495
8525
8555
8585
8615
8645
8675
8705
8735
8765
8795
8825
8855
8885
8915
8945
8975
9005
9035
9065
9095
9125
9155
9185
4716
4746
4776
4806
4836
4866
4896
4926
4956
4986
5016
5046
5076
5106
5136
5166
5196
5226
5256
5286
5316
5346
5376
5406
5436
5466
5496
5526
5556
5586
5616
5646
5676
5706
5736
5766
5796
5826
5856
5886
5916
5946
5976
6006
6036
6066
6096
6126
6156
6186
6216
6246
6276
6306
6336
6366
6396
6426
6456
6486
6516
6546
6576
6606
6636
6666
6696
6726
6756
6786
6816
6846
6876
6906
6936
6966
6996
7026
7056
7086
7116
7146
7176
7206
7236
7266
7296
7326
7356
7386
7416
7446
7476
7506
7536
7566
7596
7626
7656
7686
7716
7746
7776
7806
7836
7866
7896
7926
7956
7986
8016
8046
8076
8106
8136
8166
8196
8226
8256
8286
8316
8346
8376
8406
8436
8466
8496
8526
8556
8586
8616
8646
8676
8706
8736
8766
8796
8826
8856
8886
8916
8946
8976
9006
9036
9066
9096
9126
9156
9186
4717
4747
4777
4807
4837
4867
4897
4927
4957
4987
5017
5047
5077
5107
5137
5167
5197
5227
5257
5287
5317
5347
5377
5407
5437
5467
5497
5527
5557
5587
5617
5647
5677
5707
5737
5767
5797
5827
5857
5887
5917
5947
5977
6007
6037
6067
6097
6127
6157
6187
6217
6247
6277
6307
6337
6367
6397
6427
6457
6487
6517
6547
6577
6607
6637
6667
6697
6727
6757
6787
6817
6847
6877
6907
6937
6967
6997
7027
7057
7087
7117
7147
7177
7207
7237
7267
7297
7327
7357
7387
7417
7447
7477
7507
7537
7567
7597
7627
7657
7687
7717
7747
7777
7807
7837
7867
7897
7927
7957
7987
8017
8047
8077
8107
8137
8167
8197
8227
8257
8287
8317
8347
8377
8407
8437
8467
8497
8527
8557
8587
8617
8647
8677
8707
8737
8767
8797
8827
8857
8887
8917
8947
8977
9007
9037
9067
9097
9127
9157
9187
4718
4748
4778
4808
4838
4868
4898
4928
4958
4988
5018
5048
5078
5108
5138
5168
5198
5228
5258
5288
5318
5348
5378
5408
5438
5468
5498
5528
5558
5588
5618
5648
5678
5708
5738
5768
5798
5828
5858
5888
5918
5948
5978
6008
6038
6068
6098
6128
6158
6188
6218
6248
6278
6308
6338
6368
6398
6428
6458
6488
6518
6548
6578
6608
6638
6668
6698
6728
6758
6788
6818
6848
6878
6908
6938
6968
6998
7028
7058
7088
7118
7148
7178
7208
7238
7268
7298
7328
7358
7388
7418
7448
7478
7508
7538
7568
7598
7628
7658
7688
7718
7748
7778
7808
7838
7868
7898
7928
7958
7988
8018
8048
8078
8108
8138
8168
8198
8228
8258
8288
8318
8348
8378
8408
8438
8468
8498
8528
8558
8588
8618
8648
8678
8708
8738
8768
8798
8828
8858
8888
8918
8948
8978
9008
9038
9068
9098
9128
9158
9188
4719
4749
4779
4809
4839
4869
4899
4929
4959
4989
5019
5049
5079
5109
5139
5169
5199
5229
5259
5289
5319
5349
5379
5409
5439
5469
5499
5529
5559
5589
5619
5649
5679
5709
5739
5769
5799
5829
5859
5889
5919
5949
5979
6009
6039
6069
6099
6129
6159
6189
6219
6249
6279
6309
6339
6369
6399
6429
6459
6489
6519
6549
6579
6609
6639
6669
6699
6729
6759
6789
6819
6849
6879
6909
6939
6969
6999
7029
7059
7089
7119
7149
7179
7209
7239
7269
7299
7329
7359
7389
7419
7449
7479
7509
7539
7569
7599
7629
7659
7689
7719
7749
7779
7809
7839
7869
7899
7929
7959
7989
8019
8049
8079
8109
8139
8169
8199
8229
8259
8289
8319
8349
8379
8409
8439
8469
8499
8529
8559
8589
8619
8649
8679
8709
8739
8769
8799
8829
8859
8889
8919
8949
8979
9009
9039
9069
9099
9129
9159
9189
4720
4750
4780
4810
4840
4870
4900
4930
4960
4990
5020
5050
5080
5110
5140
5170
5200
5230
5260
5290
5320
5350
5380
5410
5440
5470
5500
5530
5560
5590
5620
5650
5680
5710
5740
5770
5800
5830
5860
5890
5920
5950
5980
6010
6040
6070
6100
6130
6160
6190
6220
6250
6280
6310
6340
6370
6400
6430
6460
6490
6520
6550
6580
6610
6640
6670
6700
6730
6760
6790
6820
6850
6880
6910
6940
6970
7000
7030
7060
7090
7120
7150
7180
7210
7240
7270
7300
7330
7360
7390
7420
7450
7480
7510
7540
7570
7600
7630
7660
7690
7720
7750
7780
7810
7840
7870
7900
7930
7960
7990
8020
8050
8080
8110
8140
8170
8200
8230
8260
8290
8320
8350
8380
8410
8440
8470
8500
8530
8560
8590
8620
8650
8680
8710
8740
8770
8800
8830
8860
8890
8920
8950
8980
9010
9040
9070
9100
9130
9160
9190
4721
4751
4781
4811
4841
4871
4901
4931
4961
4991
5021
5051
5081
5111
5141
5171
5201
5231
5261
5291
5321
5351
5381
5411
5441
5471
5501
5531
5561
5591
5621
5651
5681
5711
5741
5771
5801
5831
5861
5891
5921
5951
5981
6011
6041
6071
6101
6131
6161
6191
6221
6251
6281
6311
6341
6371
6401
6431
6461
6491
6521
6551
6581
6611
6641
6671
6701
6731
6761
6791
6821
6851
6881
6911
6941
6971
7001
7031
7061
7091
7121
7151
7181
7211
7241
7271
7301
7331
7361
7391
7421
7451
7481
7511
7541
7571
7601
7631
7661
7691
7721
7751
7781
7811
7841
7871
7901
7931
7961
7991
8021
8051
8081
8111
8141
8171
8201
8231
8261
8291
8321
8351
8381
8411
8441
8471
8501
8531
8561
8591
8621
8651
8681
8711
8741
8771
8801
8831
8861
8891
8921
8951
8981
9011
9041
9071
9101
9131
9161
9191
4722
4752
4782
4812
4842
4872
4902
4932
4962
4992
5022
5052
5082
5112
5142
5172
5202
5232
5262
5292
5322
5352
5382
5412
5442
5472
5502
5532
5562
5592
5622
5652
5682
5712
5742
5772
5802
5832
5862
5892
5922
5952
5982
6012
6042
6072
6102
6132
6162
6192
6222
6252
6282
6312
6342
6372
6402
6432
6462
6492
6522
6552
6582
6612
6642
6672
6702
6732
6762
6792
6822
6852
6882
6912
6942
6972
7002
7032
7062
7092
7122
7152
7182
7212
7242
7272
7302
7332
7362
7392
7422
7452
7482
7512
7542
7572
7602
7632
7662
7692
7722
7752
7782
7812
7842
7872
7902
7932
7962
7992
8022
8052
8082
8112
8142
8172
8202
8232
8262
8292
8322
8352
8382
8412
8442
8472
8502
8532
8562
8592
8622
8652
8682
8712
8742
8772
8802
8832
8862
8892
8922
8952
8982
9012
9042
9072
9102
9132
9162
9192
4723
4753
4783
4813
4843
4873
4903
4933
4963
4993
5023
5053
5083
5113
5143
5173
5203
5233
5263
5293
5323
5353
5383
5413
5443
5473
5503
5533
5563
5593
5623
5653
5683
5713
5743
5773
5803
5833
5863
5893
5923
5953
5983
6013
6043
6073
6103
6133
6163
6193
6223
6253
6283
6313
6343
6373
6403
6433
6463
6493
6523
6553
6583
6613
6643
6673
6703
6733
6763
6793
6823
6853
6883
6913
6943
6973
7003
7033
7063
7093
7123
7153
7183
7213
7243
7273
7303
7333
7363
7393
7423
7453
7483
7513
7543
7573
7603
7633
7663
7693
7723
7753
7783
7813
7843
7873
7903
7933
7963
7993
8023
8053
8083
8113
8143
8173
8203
8233
8263
8293
8323
8353
8383
8413
8443
8473
8503
8533
8563
8593
8623
8653
8683
8713
8743
8773
8803
8833
8863
8893
8923
8953
8983
9013
9043
9073
9103
9133
9163
9193
4724
4754
4784
4814
4844
4874
4904
4934
4964
4994
5024
5054
5084
5114
5144
5174
5204
5234
5264
5294
5324
5354
5384
5414
5444
5474
5504
5534
5564
5594
5624
5654
5684
5714
5744
5774
5804
5834
5864
5894
5924
5954
5984
6014
6044
6074
6104
6134
6164
6194
6224
6254
6284
6314
6344
6374
6404
6434
6464
6494
6524
6554
6584
6614
6644
6674
6704
6734
6764
6794
6824
6854
6884
6914
6944
6974
7004
7034
7064
7094
7124
7154
7184
7214
7244
7274
7304
7334
7364
7394
7424
7454
7484
7514
7544
7574
7604
7634
7664
7694
7724
7754
7784
7814
7844
7874
7904
7934
7964
7994
8024
8054
8084
8114
8144
8174
8204
8234
8264
8294
8324
8354
8384
8414
8444
8474
8504
8534
8564
8594
8624
8654
8684
8714
8744
8774
8804
8834
8864
8894
8924
8954
8984
9014
9044
9074
9104
9134
9164
9194
4725
4755
4785
4815
4845
4875
4905
4935
4965
4995
5025
5055
5085
5115
5145
5175
5205
5235
5265
5295
5325
5355
5385
5415
5445
5475
5505
5535
5565
5595
5625
5655
5685
5715
5745
5775
5805
5835
5865
5895
5925
5955
5985
6015
6045
6075
6105
6135
6165
6195
6225
6255
6285
6315
6345
6375
6405
6435
6465
6495
6525
6555
6585
6615
6645
6675
6705
6735
6765
6795
6825
6855
6885
6915
6945
6975
7005
7035
7065
7095
7125
7155
7185
7215
7245
7275
7305
7335
7365
7395
7425
7455
7485
7515
7545
7575
7605
7635
7665
7695
7725
7755
7785
7815
7845
7875
7905
7935
7965
7995
8025
8055
8085
8115
8145
8175
8205
8235
8265
8295
8325
8355
8385
8415
8445
8475
8505
8535
8565
8595
8625
8655
8685
8715
8745
8775
8805
8835
8865
8895
8925
8955
8985
9015
9045
9075
9105
9135
9165
9195
4726
4756
4786
4816
4846
4876
4906
4936
4966
4996
5026
5056
5086
5116
5146
5176
5206
5236
5266
5296
5326
5356
5386
5416
5446
5476
5506
5536
5566
5596
5626
5656
5686
5716
5746
5776
5806
5836
5866
5896
5926
5956
5986
6016
6046
6076
6106
6136
6166
6196
6226
6256
6286
6316
6346
6376
6406
6436
6466
6496
6526
6556
6586
6616
6646
6676
6706
6736
6766
6796
6826
6856
6886
6916
6946
6976
7006
7036
7066
7096
7126
7156
7186
7216
7246
7276
7306
7336
7366
7396
7426
7456
7486
7516
7546
7576
7606
7636
7666
7696
7726
7756
7786
7816
7846
7876
7906
7936
7966
7996
8026
8056
8086
8116
8146
8176
8206
8236
8266
8296
8326
8356
8386
8416
8446
8476
8506
8536
8566
8596
8626
8656
8686
8716
8746
8776
8806
8836
8866
8896
8926
8956
8986
9016
9046
9076
9106
9136
9166
9196
4727
4757
4787
4817
4847
4877
4907
4937
4967
4997
5027
5057
5087
5117
5147
5177
5207
5237
5267
5297
5327
5357
5387
5417
5447
5477
5507
5537
5567
5597
5627
5657
5687
5717
5747
5777
5807
5837
5867
5897
5927
5957
5987
6017
6047
6077
6107
6137
6167
6197
6227
6257
6287
6317
6347
6377
6407
6437
6467
6497
6527
6557
6587
6617
6647
6677
6707
6737
6767
6797
6827
6857
6887
6917
6947
6977
7007
7037
7067
7097
7127
7157
7187
7217
7247
7277
7307
7337
7367
7397
7427
7457
7487
7517
7547
7577
7607
7637
7667
7697
7727
7757
7787
7817
7847
7877
7907
7937
7967
7997
8027
8057
8087
8117
8147
8177
8207
8237
8267
8297
8327
8357
8387
8417
8447
8477
8507
8537
8567
8597
8627
8657
8687
8717
8747
8777
8807
8837
8867
8897
8927
8957
8987
9017
9047
9077
9107
9137
9167
9197
4728
4758
4788
4818
4848
4878
4908
4938
4968
4998
5028
5058
5088
5118
5148
5178
5208
5238
5268
5298
5328
5358
5388
5418
5448
5478
5508
5538
5568
5598
5628
5658
5688
5718
5748
5778
5808
5838
5868
5898
5928
5958
5988
6018
6048
6078
6108
6138
6168
6198
6228
6258
6288
6318
6348
6378
6408
6438
6468
6498
6528
6558
6588
6618
6648
6678
6708
6738
6768
6798
6828
6858
6888
6918
6948
6978
7008
7038
7068
7098
7128
7158
7188
7218
7248
7278
7308
7338
7368
7398
7428
7458
7488
7518
7548
7578
7608
7638
7668
7698
7728
7758
7788
7818
7848
7878
7908
7938
7968
7998
8028
8058
8088
8118
8148
8178
8208
8238
8268
8298
8328
8358
8388
8418
8448
8478
8508
8538
8568
8598
8628
8658
8688
8718
8748
8778
8808
8838
8868
8898
8928
8958
8988
9018
9048
9078
9108
9138
9168
9198
4729
4759
4789
4819
4849
4879
4909
4939
4969
4999
5029
5059
5089
5119
5149
5179
5209
5239
5269
5299
5329
5359
5389
5419
5449
5479
5509
5539
5569
5599
5629
5659
5689
5719
5749
5779
5809
5839
5869
5899
5929
5959
5989
6019
6049
6079
6109
6139
6169
6199
6229
6259
6289
6319
6349
6379
6409
6439
6469
6499
6529
6559
6589
6619
6649
6679
6709
6739
6769
6799
6829
6859
6889
6919
6949
6979
7009
7039
7069
7099
7129
7159
7189
7219
7249
7279
7309
7339
7369
7399
7429
7459
7489
7519
7549
7579
7609
7639
7669
7699
7729
7759
7789
7819
7849
7879
7909
7939
7969
7999
8029
8059
8089
8119
8149
8179
8209
8239
8269
8299
8329
8359
8389
8419
8449
8479
8509
8539
8569
8599
8629
8659
8689
8719
8749
8779
8809
8839
8869
8899
8929
8959
8989
9019
9049
9079
9109
9139
9169
9199
9200
9230
9260
9290
9320
9350
9380
9410
9440
9470
9500
9530
9560
9590
9620
9650
9680
9710
9740
9770
9800
9830
9860
9890
9920
9950
9980
10010
10040
10070
10100
10130
10160
10190
10220
10250
10280
10310
10340
10370
10400
10430
10460
10490
10520
10550
10580
10610
10640
10670
10700
10730
10760
10790
10820
10850
10880
10910
10940
10970
11000
11030
11060
11090
11120
11150
11180
11210
11240
11270
11300
11330
11360
11390
11420
11450
11480
11510
11540
11570
11600
11630
11660
11690
11720
11750
11780
11810
11840
11870
11900
11930
11960
11990
12020
12050
12080
12110
12140
12170
12200
12230
12260
12290
12320
12350
12380
12410
12440
12470
12500
12530
12560
12590
12620
12650
12680
12710
12740
12770
12800
12830
12860
12890
12920
12950
12980
13010
13040
13070
13100
13130
13160
13190
13220
13250
13280
13310
13340
13370
13400
13430
13460
13490
13520
13550
13580
13610
13640
13670
9201
9231
9261
9291
9321
9351
9381
9411
9441
9471
9501
9531
9561
9591
9621
9651
9681
9711
9741
9771
9801
9831
9861
9891
9921
9951
9981
10011
10041
10071
10101
10131
10161
10191
10221
10251
10281
10311
10341
10371
10401
10431
10461
10491
10521
10551
10581
10611
10641
10671
10701
10731
10761
10791
10821
10851
10881
10911
10941
10971
11001
11031
11061
11091
11121
11151
11181
11211
11241
11271
11301
11331
11361
11391
11421
11451
11481
11511
11541
11571
11601
11631
11661
11691
11721
11751
11781
11811
11841
11871
11901
11931
11961
11991
12021
12051
12081
12111
12141
12171
12201
12231
12261
12291
12321
12351
12381
12411
12441
12471
12501
12531
12561
12591
12621
12651
12681
12711
12741
12771
12801
12831
12861
12891
12921
12951
12981
13011
13041
13071
13101
13131
13161
13191
13221
13251
13281
13311
13341
13371
13401
13431
13461
13491
13521
13551
13581
13611
13641
13671
9202
9232
9262
9292
9322
9352
9382
9412
9442
9472
9502
9532
9562
9592
9622
9652
9682
9712
9742
9772
9802
9832
9862
9892
9922
9952
9982
10012
10042
10072
10102
10132
10162
10192
10222
10252
10282
10312
10342
10372
10402
10432
10462
10492
10522
10552
10582
10612
10642
10672
10702
10732
10762
10792
10822
10852
10882
10912
10942
10972
11002
11032
11062
11092
11122
11152
11182
11212
11242
11272
11302
11332
11362
11392
11422
11452
11482
11512
11542
11572
11602
11632
11662
11692
11722
11752
11782
11812
11842
11872
11902
11932
11962
11992
12022
12052
12082
12112
12142
12172
12202
12232
12262
12292
12322
12352
12382
12412
12442
12472
12502
12532
12562
12592
12622
12652
12682
12712
12742
12772
12802
12832
12862
12892
12922
12952
12982
13012
13042
13072
13102
13132
13162
13192
13222
13252
13282
13312
13342
13372
13402
13432
13462
13492
13522
13552
13582
13612
13642
13672
9203
9233
9263
9293
9323
9353
9383
9413
9443
9473
9503
9533
9563
9593
9623
9653
9683
9713
9743
9773
9803
9833
9863
9893
9923
9953
9983
10013
10043
10073
10103
10133
10163
10193
10223
10253
10283
10313
10343
10373
10403
10433
10463
10493
10523
10553
10583
10613
10643
10673
10703
10733
10763
10793
10823
10853
10883
10913
10943
10973
11003
11033
11063
11093
11123
11153
11183
11213
11243
11273
11303
11333
11363
11393
11423
11453
11483
11513
11543
11573
11603
11633
11663
11693
11723
11753
11783
11813
11843
11873
11903
11933
11963
11993
12023
12053
12083
12113
12143
12173
12203
12233
12263
12293
12323
12353
12383
12413
12443
12473
12503
12533
12563
12593
12623
12653
12683
12713
12743
12773
12803
12833
12863
12893
12923
12953
12983
13013
13043
13073
13103
13133
13163
13193
13223
13253
13283
13313
13343
13373
13403
13433
13463
13493
13523
13553
13583
13613
13643
13673
9204
9234
9264
9294
9324
9354
9384
9414
9444
9474
9504
9534
9564
9594
9624
9654
9684
9714
9744
9774
9804
9834
9864
9894
9924
9954
9984
10014
10044
10074
10104
10134
10164
10194
10224
10254
10284
10314
10344
10374
10404
10434
10464
10494
10524
10554
10584
10614
10644
10674
10704
10734
10764
10794
10824
10854
10884
10914
10944
10974
11004
11034
11064
11094
11124
11154
11184
11214
11244
11274
11304
11334
11364
11394
11424
11454
11484
11514
11544
11574
11604
11634
11664
11694
11724
11754
11784
11814
11844
11874
11904
11934
11964
11994
12024
12054
12084
12114
12144
12174
12204
12234
12264
12294
12324
12354
12384
12414
12444
12474
12504
12534
12564
12594
12624
12654
12684
12714
12744
12774
12804
12834
12864
12894
12924
12954
12984
13014
13044
13074
13104
13134
13164
13194
13224
13254
13284
13314
13344
13374
13404
13434
13464
13494
13524
13554
13584
13614
13644
13674
9205
9235
9265
9295
9325
9355
9385
9415
9445
9475
9505
9535
9565
9595
9625
9655
9685
9715
9745
9775
9805
9835
9865
9895
9925
9955
9985
10015
10045
10075
10105
10135
10165
10195
10225
10255
10285
10315
10345
10375
10405
10435
10465
10495
10525
10555
10585
10615
10645
10675
10705
10735
10765
10795
10825
10855
10885
10915
10945
10975
11005
11035
11065
11095
11125
11155
11185
11215
11245
11275
11305
11335
11365
11395
11425
11455
11485
11515
11545
11575
11605
11635
11665
11695
11725
11755
11785
11815
11845
11875
11905
11935
11965
11995
12025
12055
12085
12115
12145
12175
12205
12235
12265
12295
12325
12355
12385
12415
12445
12475
12505
12535
12565
12595
12625
12655
12685
12715
12745
12775
12805
12835
12865
12895
12925
12955
12985
13015
13045
13075
13105
13135
13165
13195
13225
13255
13285
13315
13345
13375
13405
13435
13465
13495
13525
13555
13585
13615
13645
13675
9206
9236
9266
9296
9326
9356
9386
9416
9446
9476
9506
9536
9566
9596
9626
9656
9686
9716
9746
9776
9806
9836
9866
9896
9926
9956
9986
10016
10046
10076
10106
10136
10166
10196
10226
10256
10286
10316
10346
10376
10406
10436
10466
10496
10526
10556
10586
10616
10646
10676
10706
10736
10766
10796
10826
10856
10886
10916
10946
10976
11006
11036
11066
11096
11126
11156
11186
11216
11246
11276
11306
11336
11366
11396
11426
11456
11486
11516
11546
11576
11606
11636
11666
11696
11726
11756
11786
11816
11846
11876
11906
11936
11966
11996
12026
12056
12086
12116
12146
12176
12206
12236
12266
12296
12326
12356
12386
12416
12446
12476
12506
12536
12566
12596
12626
12656
12686
12716
12746
12776
12806
12836
12866
12896
12926
12956
12986
13016
13046
13076
13106
13136
13166
13196
13226
13256
13286
13316
13346
13376
13406
13436
13466
13496
13526
13556
13586
13616
13646
13676
9207
9237
9267
9297
9327
9357
9387
9417
9447
9477
9507
9537
9567
9597
9627
9657
9687
9717
9747
9777
9807
9837
9867
9897
9927
9957
9987
10017
10047
10077
10107
10137
10167
10197
10227
10257
10287
10317
10347
10377
10407
10437
10467
10497
10527
10557
10587
10617
10647
10677
10707
10737
10767
10797
10827
10857
10887
10917
10947
10977
11007
11037
11067
11097
11127
11157
11187
11217
11247
11277
11307
11337
11367
11397
11427
11457
11487
11517
11547
11577
11607
11637
11667
11697
11727
11757
11787
11817
11847
11877
11907
11937
11967
11997
12027
12057
12087
12117
12147
12177
12207
12237
12267
12297
12327
12357
12387
12417
12447
12477
12507
12537
12567
12597
12627
12657
12687
12717
12747
12777
12807
12837
12867
12897
12927
12957
12987
13017
13047
13077
13107
13137
13167
13197
13227
13257
13287
13317
13347
13377
13407
13437
13467
13497
13527
13557
13587
13617
13647
13677
9208
9238
9268
9298
9328
9358
9388
9418
9448
9478
9508
9538
9568
9598
9628
9658
9688
9718
9748
9778
9808
9838
9868
9898
9928
9958
9988
10018
10048
10078
10108
10138
10168
10198
10228
10258
10288
10318
10348
10378
10408
10438
10468
10498
10528
10558
10588
10618
10648
10678
10708
10738
10768
10798
10828
10858
10888
10918
10948
10978
11008
11038
11068
11098
11128
11158
11188
11218
11248
11278
11308
11338
11368
11398
11428
11458
11488
11518
11548
11578
11608
11638
11668
11698
11728
11758
11788
11818
11848
11878
11908
11938
11968
11998
12028
12058
12088
12118
12148
12178
12208
12238
12268
12298
12328
12358
12388
12418
12448
12478
12508
12538
12568
12598
12628
12658
12688
12718
12748
12778
12808
12838
12868
12898
12928
12958
12988
13018
13048
13078
13108
13138
13168
13198
13228
13258
13288
13318
13348
13378
13408
13438
13468
13498
13528
13558
13588
13618
13648
13678
9209
9239
9269
9299
9329
9359
9389
9419
9449
9479
9509
9539
9569
9599
9629
9659
9689
9719
9749
9779
9809
9839
9869
9899
9929
9959
9989
10019
10049
10079
10109
10139
10169
10199
10229
10259
10289
10319
10349
10379
10409
10439
10469
10499
10529
10559
10589
10619
10649
10679
10709
10739
10769
10799
10829
10859
10889
10919
10949
10979
11009
11039
11069
11099
11129
11159
11189
11219
11249
11279
11309
11339
11369
11399
11429
11459
11489
11519
11549
11579
11609
11639
11669
11699
11729
11759
11789
11819
11849
11879
11909
11939
11969
11999
12029
12059
12089
12119
12149
12179
12209
12239
12269
12299
12329
12359
12389
12419
12449
12479
12509
12539
12569
12599
12629
12659
12689
12719
12749
12779
12809
12839
12869
12899
12929
12959
12989
13019
13049
13079
13109
13139
13169
13199
13229
13259
13289
13319
13349
13379
13409
13439
13469
13499
13529
13559
13589
13619
13649
13679
9210
9240
9270
9300
9330
9360
9390
9420
9450
9480
9510
9540
9570
9600
9630
9660
9690
9720
9750
9780
9810
9840
9870
9900
9930
9960
9990
10020
10050
10080
10110
10140
10170
10200
10230
10260
10290
10320
10350
10380
10410
10440
10470
10500
10530
10560
10590
10620
10650
10680
10710
10740
10770
10800
10830
10860
10890
10920
10950
10980
11010
11040
11070
11100
11130
11160
11190
11220
11250
11280
11310
11340
11370
11400
11430
11460
11490
11520
11550
11580
11610
11640
11670
11700
11730
11760
11790
11820
11850
11880
11910
11940
11970
12000
12030
12060
12090
12120
12150
12180
12210
12240
12270
12300
12330
12360
12390
12420
12450
12480
12510
12540
12570
12600
12630
12660
12690
12720
12750
12780
12810
12840
12870
12900
12930
12960
12990
13020
13050
13080
13110
13140
13170
13200
13230
13260
13290
13320
13350
13380
13410
13440
13470
13500
13530
13560
13590
13620
13650
13680
9211
9241
9271
9301
9331
9361
9391
9421
9451
9481
9511
9541
9571
9601
9631
9661
9691
9721
9751
9781
9811
9841
9871
9901
9931
9961
9991
10021
10051
10081
10111
10141
10171
10201
10231
10261
10291
10321
10351
10381
10411
10441
10471
10501
10531
10561
10591
10621
10651
10681
10711
10741
10771
10801
10831
10861
10891
10921
10951
10981
11011
11041
11071
11101
11131
11161
11191
11221
11251
11281
11311
11341
11371
11401
11431
11461
11491
11521
11551
11581
11611
11641
11671
11701
11731
11761
11791
11821
11851
11881
11911
11941
11971
12001
12031
12061
12091
12121
12151
12181
12211
12241
12271
12301
12331
12361
12391
12421
12451
12481
12511
12541
12571
12601
12631
12661
12691
12721
12751
12781
12811
12841
12871
12901
12931
12961
12991
13021
13051
13081
13111
13141
13171
13201
13231
13261
13291
13321
13351
13381
13411
13441
13471
13501
13531
13561
13591
13621
13651
13681
9212
9242
9272
9302
9332
9362
9392
9422
9452
9482
9512
9542
9572
9602
9632
9662
9692
9722
9752
9782
9812
9842
9872
9902
9932
9962
9992
10022
10052
10082
10112
10142
10172
10202
10232
10262
10292
10322
10352
10382
10412
10442
10472
10502
10532
10562
10592
10622
10652
10682
10712
10742
10772
10802
10832
10862
10892
10922
10952
10982
11012
11042
11072
11102
11132
11162
11192
11222
11252
11282
11312
11342
11372
11402
11432
11462
11492
11522
11552
11582
11612
11642
11672
11702
11732
11762
11792
11822
11852
11882
11912
11942
11972
12002
12032
12062
12092
12122
12152
12182
12212
12242
12272
12302
12332
12362
12392
12422
12452
12482
12512
12542
12572
12602
12632
12662
12692
12722
12752
12782
12812
12842
12872
12902
12932
12962
12992
13022
13052
13082
13112
13142
13172
13202
13232
13262
13292
13322
13352
13382
13412
13442
13472
13502
13532
13562
13592
13622
13652
13682
9213
9243
9273
9303
9333
9363
9393
9423
9453
9483
9513
9543
9573
9603
9633
9663
9693
9723
9753
9783
9813
9843
9873
9903
9933
9963
9993
10023
10053
10083
10113
10143
10173
10203
10233
10263
10293
10323
10353
10383
10413
10443
10473
10503
10533
10563
10593
10623
10653
10683
10713
10743
10773
10803
10833
10863
10893
10923
10953
10983
11013
11043
11073
11103
11133
11163
11193
11223
11253
11283
11313
11343
11373
11403
11433
11463
11493
11523
11553
11583
11613
11643
11673
11703
11733
11763
11793
11823
11853
11883
11913
11943
11973
12003
12033
12063
12093
12123
12153
12183
12213
12243
12273
12303
12333
12363
12393
12423
12453
12483
12513
12543
12573
12603
12633
12663
12693
12723
12753
12783
12813
12843
12873
12903
12933
12963
12993
13023
13053
13083
13113
13143
13173
13203
13233
13263
13293
13323
13353
13383
13413
13443
13473
13503
13533
13563
13593
13623
13653
13683
9214
9244
9274
9304
9334
9364
9394
9424
9454
9484
9514
9544
9574
9604
9634
9664
9694
9724
9754
9784
9814
9844
9874
9904
9934
9964
9994
10024
10054
10084
10114
10144
10174
10204
10234
10264
10294
10324
10354
10384
10414
10444
10474
10504
10534
10564
10594
10624
10654
10684
10714
10744
10774
10804
10834
10864
10894
10924
10954
10984
11014
11044
11074
11104
11134
11164
11194
11224
11254
11284
11314
11344
11374
11404
11434
11464
11494
11524
11554
11584
11614
11644
11674
11704
11734
11764
11794
11824
11854
11884
11914
11944
11974
12004
12034
12064
12094
12124
12154
12184
12214
12244
12274
12304
12334
12364
12394
12424
12454
12484
12514
12544
12574
12604
12634
12664
12694
12724
12754
12784
12814
12844
12874
12904
12934
12964
12994
13024
13054
13084
13114
13144
13174
13204
13234
13264
13294
13324
13354
13384
13414
13444
13474
13504
13534
13564
13594
13624
13654
13684
9215
9245
9275
9305
9335
9365
9395
9425
9455
9485
9515
9545
9575
9605
9635
9665
9695
9725
9755
9785
9815
9845
9875
9905
9935
9965
9995
10025
10055
10085
10115
10145
10175
10205
10235
10265
10295
10325
10355
10385
10415
10445
10475
10505
10535
10565
10595
10625
10655
10685
10715
10745
10775
10805
10835
10865
10895
10925
10955
10985
11015
11045
11075
11105
11135
11165
11195
11225
11255
11285
11315
11345
11375
11405
11435
11465
11495
11525
11555
11585
11615
11645
11675
11705
11735
11765
11795
11825
11855
11885
11915
11945
11975
12005
12035
12065
12095
12125
12155
12185
12215
12245
12275
12305
12335
12365
12395
12425
12455
12485
12515
12545
12575
12605
12635
12665
12695
12725
12755
12785
12815
12845
12875
12905
12935
12965
12995
13025
13055
13085
13115
13145
13175
13205
13235
13265
13295
13325
13355
13385
13415
13445
13475
13505
13535
13565
13595
13625
13655
13685
9216
9246
9276
9306
9336
9366
9396
9426
9456
9486
9516
9546
9576
9606
9636
9666
9696
9726
9756
9786
9816
9846
9876
9906
9936
9966
9996
10026
10056
10086
10116
10146
10176
10206
10236
10266
10296
10326
10356
10386
10416
10446
10476
10506
10536
10566
10596
10626
10656
10686
10716
10746
10776
10806
10836
10866
10896
10926
10956
10986
11016
11046
11076
11106
11136
11166
11196
11226
11256
11286
11316
11346
11376
11406
11436
11466
11496
11526
11556
11586
11616
11646
11676
11706
11736
11766
11796
11826
11856
11886
11916
11946
11976
12006
12036
12066
12096
12126
12156
12186
12216
12246
12276
12306
12336
12366
12396
12426
12456
12486
12516
12546
12576
12606
12636
12666
12696
12726
12756
12786
12816
12846
12876
12906
12936
12966
12996
13026
13056
13086
13116
13146
13176
13206
13236
13266
13296
13326
13356
13386
13416
13446
13476
13506
13536
13566
13596
13626
13656
13686
9217
9247
9277
9307
9337
9367
9397
9427
9457
9487
9517
9547
9577
9607
9637
9667
9697
9727
9757
9787
9817
9847
9877
9907
9937
9967
9997
10027
10057
10087
10117
10147
10177
10207
10237
10267
10297
10327
10357
10387
10417
10447
10477
10507
10537
10567
10597
10627
10657
10687
10717
10747
10777
10807
10837
10867
10897
10927
10957
10987
11017
11047
11077
11107
11137
11167
11197
11227
11257
11287
11317
11347
11377
11407
11437
11467
11497
11527
11557
11587
11617
11647
11677
11707
11737
11767
11797
11827
11857
11887
11917
11947
11977
12007
12037
12067
12097
12127
12157
12187
12217
12247
12277
12307
12337
12367
12397
12427
12457
12487
12517
12547
12577
12607
12637
12667
12697
12727
12757
12787
12817
12847
12877
12907
12937
12967
12997
13027
13057
13087
13117
13147
13177
13207
13237
13267
13297
13327
13357
13387
13417
13447
13477
13507
13537
13567
13597
13627
13657
13687
9218
9248
9278
9308
9338
9368
9398
9428
9458
9488
9518
9548
9578
9608
9638
9668
9698
9728
9758
9788
9818
9848
9878
9908
9938
9968
9998
10028
10058
10088
10118
10148
10178
10208
10238
10268
10298
10328
10358
10388
10418
10448
10478
10508
10538
10568
10598
10628
10658
10688
10718
10748
10778
10808
10838
10868
10898
10928
10958
10988
11018
11048
11078
11108
11138
11168
11198
11228
11258
11288
11318
11348
11378
11408
11438
11468
11498
11528
11558
11588
11618
11648
11678
11708
11738
11768
11798
11828
11858
11888
11918
11948
11978
12008
12038
12068
12098
12128
12158
12188
12218
12248
12278
12308
12338
12368
12398
12428
12458
12488
12518
12548
12578
12608
12638
12668
12698
12728
12758
12788
12818
12848
12878
12908
12938
12968
12998
13028
13058
13088
13118
13148
13178
13208
13238
13268
13298
13328
13358
13388
13418
13448
13478
13508
13538
13568
13598
13628
13658
13688
9219
9249
9279
9309
9339
9369
9399
9429
9459
9489
9519
9549
9579
9609
9639
9669
9699
9729
9759
9789
9819
9849
9879
9909
9939
9969
9999
10029
10059
10089
10119
10149
10179
10209
10239
10269
10299
10329
10359
10389
10419
10449
10479
10509
10539
10569
10599
10629
10659
10689
10719
10749
10779
10809
10839
10869
10899
10929
10959
10989
11019
11049
11079
11109
11139
11169
11199
11229
11259
11289
11319
11349
11379
11409
11439
11469
11499
11529
11559
11589
11619
11649
11679
11709
11739
11769
11799
11829
11859
11889
11919
11949
11979
12009
12039
12069
12099
12129
12159
12189
12219
12249
12279
12309
12339
12369
12399
12429
12459
12489
12519
12549
12579
12609
12639
12669
12699
12729
12759
12789
12819
12849
12879
12909
12939
12969
12999
13029
13059
13089
13119
13149
13179
13209
13239
13269
13299
13329
13359
13389
13419
13449
13479
13509
13539
13569
13599
13629
13659
13689
9220
9250
9280
9310
9340
9370
9400
9430
9460
9490
9520
9550
9580
9610
9640
9670
9700
9730
9760
9790
9820
9850
9880
9910
9940
9970
10000
10030
10060
10090
10120
10150
10180
10210
10240
10270
10300
10330
10360
10390
10420
10450
10480
10510
10540
10570
10600
10630
10660
10690
10720
10750
10780
10810
10840
10870
10900
10930
10960
10990
11020
11050
11080
11110
11140
11170
11200
11230
11260
11290
11320
11350
11380
11410
11440
11470
11500
11530
11560
11590
11620
11650
11680
11710
11740
11770
11800
11830
11860
11890
11920
11950
11980
12010
12040
12070
12100
12130
12160
12190
12220
12250
12280
12310
12340
12370
12400
12430
12460
12490
12520
12550
12580
12610
12640
12670
12700
12730
12760
12790
12820
12850
12880
12910
12940
12970
13000
13030
13060
13090
13120
13150
13180
13210
13240
13270
13300
13330
13360
13390
13420
13450
13480
13510
13540
13570
13600
13630
13660
13690
9221
9251
9281
9311
9341
9371
9401
9431
9461
9491
9521
9551
9581
9611
9641
9671
9701
9731
9761
9791
9821
9851
9881
9911
9941
9971
10001
10031
10061
10091
10121
10151
10181
10211
10241
10271
10301
10331
10361
10391
10421
10451
10481
10511
10541
10571
10601
10631
10661
10691
10721
10751
10781
10811
10841
10871
10901
10931
10961
10991
11021
11051
11081
11111
11141
11171
11201
11231
11261
11291
11321
11351
11381
11411
11441
11471
11501
11531
11561
11591
11621
11651
11681
11711
11741
11771
11801
11831
11861
11891
11921
11951
11981
12011
12041
12071
12101
12131
12161
12191
12221
12251
12281
12311
12341
12371
12401
12431
12461
12491
12521
12551
12581
12611
12641
12671
12701
12731
12761
12791
12821
12851
12881
12911
12941
12971
13001
13031
13061
13091
13121
13151
13181
13211
13241
13271
13301
13331
13361
13391
13421
13451
13481
13511
13541
13571
13601
13631
13661
13691
9222
9252
9282
9312
9342
9372
9402
9432
9462
9492
9522
9552
9582
9612
9642
9672
9702
9732
9762
9792
9822
9852
9882
9912
9942
9972
10002
10032
10062
10092
10122
10152
10182
10212
10242
10272
10302
10332
10362
10392
10422
10452
10482
10512
10542
10572
10602
10632
10662
10692
10722
10752
10782
10812
10842
10872
10902
10932
10962
10992
11022
11052
11082
11112
11142
11172
11202
11232
11262
11292
11322
11352
11382
11412
11442
11472
11502
11532
11562
11592
11622
11652
11682
11712
11742
11772
11802
11832
11862
11892
11922
11952
11982
12012
12042
12072
12102
12132
12162
12192
12222
12252
12282
12312
12342
12372
12402
12432
12462
12492
12522
12552
12582
12612
12642
12672
12702
12732
12762
12792
12822
12852
12882
12912
12942
12972
13002
13032
13062
13092
13122
13152
13182
13212
13242
13272
13302
13332
13362
13392
13422
13452
13482
13512
13542
13572
13602
13632
13662
13692
9223
9253
9283
9313
9343
9373
9403
9433
9463
9493
9523
9553
9583
9613
9643
9673
9703
9733
9763
9793
9823
9853
9883
9913
9943
9973
10003
10033
10063
10093
10123
10153
10183
10213
10243
10273
10303
10333
10363
10393
10423
10453
10483
10513
10543
10573
10603
10633
10663
10693
10723
10753
10783
10813
10843
10873
10903
10933
10963
10993
11023
11053
11083
11113
11143
11173
11203
11233
11263
11293
11323
11353
11383
11413
11443
11473
11503
11533
11563
11593
11623
11653
11683
11713
11743
11773
11803
11833
11863
11893
11923
11953
11983
12013
12043
12073
12103
12133
12163
12193
12223
12253
12283
12313
12343
12373
12403
12433
12463
12493
12523
12553
12583
12613
12643
12673
12703
12733
12763
12793
12823
12853
12883
12913
12943
12973
13003
13033
13063
13093
13123
13153
13183
13213
13243
13273
13303
13333
13363
13393
13423
13453
13483
13513
13543
13573
13603
13633
13663
13693
9224
9254
9284
9314
9344
9374
9404
9434
9464
9494
9524
9554
9584
9614
9644
9674
9704
9734
9764
9794
9824
9854
9884
9914
9944
9974
10004
10034
10064
10094
10124
10154
10184
10214
10244
10274
10304
10334
10364
10394
10424
10454
10484
10514
10544
10574
10604
10634
10664
10694
10724
10754
10784
10814
10844
10874
10904
10934
10964
10994
11024
11054
11084
11114
11144
11174
11204
11234
11264
11294
11324
11354
11384
11414
11444
11474
11504
11534
11564
11594
11624
11654
11684
11714
11744
11774
11804
11834
11864
11894
11924
11954
11984
12014
12044
12074
12104
12134
12164
12194
12224
12254
12284
12314
12344
12374
12404
12434
12464
12494
12524
12554
12584
12614
12644
12674
12704
12734
12764
12794
12824
12854
12884
12914
12944
12974
13004
13034
13064
13094
13124
13154
13184
13214
13244
13274
13304
13334
13364
13394
13424
13454
13484
13514
13544
13574
13604
13634
13664
13694
9225
9255
9285
9315
9345
9375
9405
9435
9465
9495
9525
9555
9585
9615
9645
9675
9705
9735
9765
9795
9825
9855
9885
9915
9945
9975
10005
10035
10065
10095
10125
10155
10185
10215
10245
10275
10305
10335
10365
10395
10425
10455
10485
10515
10545
10575
10605
10635
10665
10695
10725
10755
10785
10815
10845
10875
10905
10935
10965
10995
11025
11055
11085
11115
11145
11175
11205
11235
11265
11295
11325
11355
11385
11415
11445
11475
11505
11535
11565
11595
11625
11655
11685
11715
11745
11775
11805
11835
11865
11895
11925
11955
11985
12015
12045
12075
12105
12135
12165
12195
12225
12255
12285
12315
12345
12375
12405
12435
12465
12495
12525
12555
12585
12615
12645
12675
12705
12735
12765
12795
12825
12855
12885
12915
12945
12975
13005
13035
13065
13095
13125
13155
13185
13215
13245
13275
13305
13335
13365
13395
13425
13455
13485
13515
13545
13575
13605
13635
13665
13695
9226
9256
9286
9316
9346
9376
9406
9436
9466
9496
9526
9556
9586
9616
9646
9676
9706
9736
9766
9796
9826
9856
9886
9916
9946
9976
10006
10036
10066
10096
10126
10156
10186
10216
10246
10276
10306
10336
10366
10396
10426
10456
10486
10516
10546
10576
10606
10636
10666
10696
10726
10756
10786
10816
10846
10876
10906
10936
10966
10996
11026
11056
11086
11116
11146
11176
11206
11236
11266
11296
11326
11356
11386
11416
11446
11476
11506
11536
11566
11596
11626
11656
11686
11716
11746
11776
11806
11836
11866
11896
11926
11956
11986
12016
12046
12076
12106
12136
12166
12196
12226
12256
12286
12316
12346
12376
12406
12436
12466
12496
12526
12556
12586
12616
12646
12676
12706
12736
12766
12796
12826
12856
12886
12916
12946
12976
13006
13036
13066
13096
13126
13156
13186
13216
13246
13276
13306
13336
13366
13396
13426
13456
13486
13516
13546
13576
13606
13636
13666
13696
9227
9257
9287
9317
9347
9377
9407
9437
9467
9497
9527
9557
9587
9617
9647
9677
9707
9737
9767
9797
9827
9857
9887
9917
9947
9977
10007
10037
10067
10097
10127
10157
10187
10217
10247
10277
10307
10337
10367
10397
10427
10457
10487
10517
10547
10577
10607
10637
10667
10697
10727
10757
10787
10817
10847
10877
10907
10937
10967
10997
11027
11057
11087
11117
11147
11177
11207
11237
11267
11297
11327
11357
11387
11417
11447
11477
11507
11537
11567
11597
11627
11657
11687
11717
11747
11777
11807
11837
11867
11897
11927
11957
11987
12017
12047
12077
12107
12137
12167
12197
12227
12257
12287
12317
12347
12377
12407
12437
12467
12497
12527
12557
12587
12617
12647
12677
12707
12737
12767
12797
12827
12857
12887
12917
12947
12977
13007
13037
13067
13097
13127
13157
13187
13217
13247
13277
13307
13337
13367
13397
13427
13457
13487
13517
13547
13577
13607
13637
13667
13697
9228
9258
9288
9318
9348
9378
9408
9438
9468
9498
9528
9558
9588
9618
9648
9678
9708
9738
9768
9798
9828
9858
9888
9918
9948
9978
10008
10038
10068
10098
10128
10158
10188
10218
10248
10278
10308
10338
10368
10398
10428
10458
10488
10518
10548
10578
10608
10638
10668
10698
10728
10758
10788
10818
10848
10878
10908
10938
10968
10998
11028
11058
11088
11118
11148
11178
11208
11238
11268
11298
11328
11358
11388
11418
11448
11478
11508
11538
11568
11598
11628
11658
11688
11718
11748
11778
11808
11838
11868
11898
11928
11958
11988
12018
12048
12078
12108
12138
12168
12198
12228
12258
12288
12318
12348
12378
12408
12438
12468
12498
12528
12558
12588
12618
12648
12678
12708
12738
12768
12798
12828
12858
12888
12918
12948
12978
13008
13038
13068
13098
13128
13158
13188
13218
13248
13278
13308
13338
13368
13398
13428
13458
13488
13518
13548
13578
13608
13638
13668
13698
9229
9259
9289
9319
9349
9379
9409
9439
9469
9499
9529
9559
9589
9619
9649
9679
9709
9739
9769
9799
9829
9859
9889
9919
9949
9979
10009
10039
10069
10099
10129
10159
10189
10219
10249
10279
10309
10339
10369
10399
10429
10459
10489
10519
10549
10579
10609
10639
10669
10699
10729
10759
10789
10819
10849
10879
10909
10939
10969
10999
11029
11059
11089
11119
11149
11179
11209
11239
11269
11299
11329
11359
11389
11419
11449
11479
11509
11539
11569
11599
11629
11659
11689
11719
11749
11779
11809
11839
11869
11899
11929
11959
11989
12019
12049
12079
12109
12139
12169
12199
12229
12259
12289
12319
12349
12379
12409
12439
12469
12499
12529
12559
12589
12619
12649
12679
12709
12739
12769
12799
12829
12859
12889
12919
12949
12979
13009
13039
13069
13099
13129
13159
13189
13219
13249
13279
13309
13339
13369
13399
13429
13459
13489
13519
13549
13579
13609
13639
13669
13699
18200
18350
18500
18650
18800
18950
19100
19250
19400
19550
19700
19850
20000
20150
20300
20450
20600
20750
20900
21050
21200
21350
21500
21650
21800
21950
22100
22250
22400
22550
18201
18351
18501
18651
18801
18951
19101
19251
19401
19551
19701
19851
20001
20151
20301
20451
20601
20751
20901
21051
21201
21351
21501
21651
21801
21951
22101
22251
22401
22551
18202
18352
18502
18652
18802
18952
19102
19252
19402
19552
19702
19852
20002
20152
20302
20452
20602
20752
20902
21052
21202
21352
21502
21652
21802
21952
22102
22252
22402
22552
18203
18353
18503
18653
18803
18953
19103
19253
19403
19553
19703
19853
20003
20153
20303
20453
20603
20753
20903
21053
21203
21353
21503
21653
21803
21953
22103
22253
22403
22553
18204
18354
18504
18654
18804
18954
19104
19254
19404
19554
19704
19854
20004
20154
20304
20454
20604
20754
20904
21054
21204
21354
21504
21654
21804
21954
22104
22254
22404
22554
18205
18355
18505
18655
18805
18955
19105
19255
19405
19555
19705
19855
20005
20155
20305
20455
20605
20755
20905
21055
21205
21355
21505
21655
21805
21955
22105
22255
22405
22555
18206
18356
18506
18656
18806
18956
19106
19256
19406
19556
19706
19856
20006
20156
20306
20456
20606
20756
20906
21056
21206
21356
21506
21656
21806
21956
22106
22256
22406
22556
18207
18357
18507
18657
18807
18957
19107
19257
19407
19557
19707
19857
20007
20157
20307
20457
20607
20757
20907
21057
21207
21357
21507
21657
21807
21957
22107
22257
22407
22557
18208
18358
18508
18658
18808
18958
19108
19258
19408
19558
19708
19858
20008
20158
20308
20458
20608
20758
20908
21058
21208
21358
21508
21658
21808
21958
22108
22258
22408
22558
18209
18359
18509
18659
18809
18959
19109
19259
19409
19559
19709
19859
20009
20159
20309
20459
20609
20759
20909
21059
21209
21359
21509
21659
21809
21959
22109
22259
22409
22559
18210
18360
18510
18660
18810
18960
19110
19260
19410
19560
19710
19860
20010
20160
20310
20460
20610
20760
20910
21060
21210
21360
21510
21660
21810
21960
22110
22260
22410
22560
18211
18361
18511
18661
18811
18961
19111
19261
19411
19561
19711
19861
20011
20161
20311
20461
20611
20761
20911
21061
21211
21361
21511
21661
21811
21961
22111
22261
22411
22561
18212
18362
18512
18662
18812
18962
19112
19262
19412
19562
19712
19862
20012
20162
20312
20462
20612
20762
20912
21062
21212
21362
21512
21662
21812
21962
22112
22262
22412
22562
18213
18363
18513
18663
18813
18963
19113
19263
19413
19563
19713
19863
20013
20163
20313
20463
20613
20763
20913
21063
21213
21363
21513
21663
21813
21963
22113
22263
22413
22563
18214
18364
18514
18664
18814
18964
19114
19264
19414
19564
19714
19864
20014
20164
20314
20464
20614
20764
20914
21064
21214
21364
21514
21664
21814
21964
22114
22264
22414
22564
18215
18365
18515
18665
18815
18965
19115
19265
19415
19565
19715
19865
20015
20165
20315
20465
20615
20765
20915
21065
21215
21365
21515
21665
21815
21965
22115
22265
22415
22565
18216
18366
18516
18666
18816
18966
19116
19266
19416
19566
19716
19866
20016
20166
20316
20466
20616
20766
20916
21066
21216
21366
21516
21666
21816
21966
22116
22266
22416
22566
18217
18367
18517
18667
18817
18967
19117
19267
19417
19567
19717
19867
20017
20167
20317
20467
20617
20767
20917
21067
21217
21367
21517
21667
21817
21967
22117
22267
22417
22567
18218
18368
18518
18668
18818
18968
19118
19268
19418
19568
19718
19868
20018
20168
20318
20468
20618
20768
20918
21068
21218
21368
21518
21668
21818
21968
22118
22268
22418
22568
18219
18369
18519
18669
18819
18969
19119
19269
19419
19569
19719
19869
20019
20169
20319
20469
20619
20769
20919
21069
21219
21369
21519
21669
21819
21969
22119
22269
22419
22569
18220
18370
18520
18670
18820
18970
19120
19270
19420
19570
19720
19870
20020
20170
20320
20470
20620
20770
20920
21070
21220
21370
21520
21670
21820
21970
22120
22270
22420
22570
18221
18371
18521
18671
18821
18971
19121
19271
19421
19571
19721
19871
20021
20171
20321
20471
20621
20771
20921
21071
21221
21371
21521
21671
21821
21971
22121
22271
22421
22571
18222
18372
18522
18672
18822
18972
19122
19272
19422
19572
19722
19872
20022
20172
20322
20472
20622
20772
20922
21072
21222
21372
21522
21672
21822
21972
22122
22272
22422
22572
18223
18373
18523
18673
18823
18973
19123
19273
19423
19573
19723
19873
20023
20173
20323
20473
20623
20773
20923
21073
21223
21373
21523
21673
21823
21973
22123
22273
22423
22573
18224
18374
18524
18674
18824
18974
19124
19274
19424
19574
19724
19874
20024
20174
20324
20474
20624
20774
20924
21074
21224
21374
21524
21674
21824
21974
22124
22274
22424
22574
18225
18375
18525
18675
18825
18975
19125
19275
19425
19575
19725
19875
20025
20175
20325
20475
20625
20775
20925
21075
21225
21375
21525
21675
21825
21975
22125
22275
22425
22575
18226
18376
18526
18676
18826
18976
19126
19276
19426
19576
19726
19876
20026
20176
20326
20476
20626
20776
20926
21076
21226
21376
21526
21676
21826
21976
22126
22276
22426
22576
18227
18377
18527
18677
18827
18977
19127
19277
19427
19577
19727
19877
20027
20177
20327
20477
20627
20777
20927
21077
21227
21377
21527
21677
21827
21977
22127
22277
22427
22577
18228
18378
18528
18678
18828
18978
19128
19278
19428
19578
19728
19878
20028
20178
20328
20478
20628
20778
20928
21078
21228
21378
21528
21678
21828
21978
22128
22278
22428
22578
18229
18379
18529
18679
18829
18979
19129
19279
19429
19579
19729
19879
20029
20179
20329
20479
20629
20779
20929
21079
21229
21379
21529
21679
21829
21979
22129
22279
22429
22579
18230
18380
18530
18680
18830
18980
19130
19280
19430
19580
19730
19880
20030
20180
20330
20480
20630
20780
20930
21080
21230
21380
21530
21680
21830
21980
22130
22280
22430
22580
18231
18381
18531
18681
18831
18981
19131
19281
19431
19581
19731
19881
20031
20181
20331
20481
20631
20781
20931
21081
21231
21381
21531
21681
21831
21981
22131
22281
22431
22581
18232
18382
18532
18682
18832
18982
19132
19282
19432
19582
19732
19882
20032
20182
20332
20482
20632
20782
20932
21082
21232
21382
21532
21682
21832
21982
22132
22282
22432
22582
18233
18383
18533
18683
18833
18983
19133
19283
19433
19583
19733
19883
20033
20183
20333
20483
20633
20783
20933
21083
21233
21383
21533
21683
21833
21983
22133
22283
22433
22583
18234
18384
18534
18684
18834
18984
19134
19284
19434
19584
19734
19884
20034
20184
20334
20484
20634
20784
20934
21084
21234
21384
21534
21684
21834
21984
22134
22284
22434
22584
18235
18385
18535
18685
18835
18985
19135
19285
19435
19585
19735
19885
20035
20185
20335
20485
20635
20785
20935
21085
21235
21385
21535
21685
21835
21985
22135
22285
22435
22585
18236
18386
18536
18686
18836
18986
19136
19286
19436
19586
19736
19886
20036
20186
20336
20486
20636
20786
20936
21086
21236
21386
21536
21686
21836
21986
22136
22286
22436
22586
18237
18387
18537
18687
18837
18987
19137
19287
19437
19587
19737
19887
20037
20187
20337
20487
20637
20787
20937
21087
21237
21387
21537
21687
21837
21987
22137
22287
22437
22587
18238
18388
18538
18688
18838
18988
19138
19288
19438
19588
19738
19888
20038
20188
20338
20488
20638
20788
20938
21088
21238
21388
21538
21688
21838
21988
22138
22288
22438
22588
18239
18389
18539
18689
18839
18989
19139
19289
19439
19589
19739
19889
20039
20189
20339
20489
20639
20789
20939
21089
21239
21389
21539
21689
21839
21989
22139
22289
22439
22589
18240
18390
18540
18690
18840
18990
19140
19290
19440
19590
19740
19890
20040
20190
20340
20490
20640
20790
20940
21090
21240
21390
21540
21690
21840
21990
22140
22290
22440
22590
18241
18391
18541
18691
18841
18991
19141
19291
19441
19591
19741
19891
20041
20191
20341
20491
20641
20791
20941
21091
21241
21391
21541
21691
21841
21991
22141
22291
22441
22591
18242
18392
18542
18692
18842
18992
19142
19292
19442
19592
19742
19892
20042
20192
20342
20492
20642
20792
20942
21092
21242
21392
21542
21692
21842
21992
22142
22292
22442
22592
18243
18393
18543
18693
18843
18993
19143
19293
19443
19593
19743
19893
20043
20193
20343
20493
20643
20793
20943
21093
21243
21393
21543
21693
21843
21993
22143
22293
22443
22593
18244
18394
18544
18694
18844
18994
19144
19294
19444
19594
19744
19894
20044
20194
20344
20494
20644
20794
20944
21094
21244
21394
21544
21694
21844
21994
22144
22294
22444
22594
18245
18395
18545
18695
18845
18995
19145
19295
19445
19595
19745
19895
20045
20195
20345
20495
20645
20795
20945
21095
21245
21395
21545
21695
21845
21995
22145
22295
22445
22595
18246
18396
18546
18696
18846
18996
19146
19296
19446
19596
19746
19896
20046
20196
20346
20496
20646
20796
20946
21096
21246
21396
21546
21696
21846
21996
22146
22296
22446
22596
18247
18397
18547
18697
18847
18997
19147
19297
19447
19597
19747
19897
20047
20197
20347
20497
20647
20797
20947
21097
21247
21397
21547
21697
21847
21997
22147
22297
22447
22597
18248
18398
18548
18698
18848
18998
19148
19298
19448
19598
19748
19898
20048
20198
20348
20498
20648
20798
20948
21098
21248
21398
21548
21698
21848
21998
22148
22298
22448
22598
18249
18399
18549
18699
18849
18999
19149
19299
19449
19599
19749
19899
20049
20199
20349
20499
20649
20799
20949
21099
21249
21399
21549
21699
21849
21999
22149
22299
22449
22599
18250
18400
18550
18700
18850
19000
19150
19300
19450
19600
19750
19900
20050
20200
20350
20500
20650
20800
20950
21100
21250
21400
21550
21700
21850
22000
22150
22300
22450
22600
18251
18401
18551
18701
18851
19001
19151
19301
19451
19601
19751
19901
20051
20201
20351
20501
20651
20801
20951
21101
21251
21401
21551
21701
21851
22001
22151
22301
22451
22601
18252
18402
18552
18702
18852
19002
19152
19302
19452
19602
19752
19902
20052
20202
20352
20502
20652
20802
20952
21102
21252
21402
21552
21702
21852
22002
22152
22302
22452
22602
18253
18403
18553
18703
18853
19003
19153
19303
19453
19603
19753
19903
20053
20203
20353
20503
20653
20803
20953
21103
21253
21403
21553
21703
21853
22003
22153
22303
22453
22603
18254
18404
18554
18704
18854
19004
19154
19304
19454
19604
19754
19904
20054
20204
20354
20504
20654
20804
20954
21104
21254
21404
21554
21704
21854
22004
22154
22304
22454
22604
18255
18405
18555
18705
18855
19005
19155
19305
19455
19605
19755
19905
20055
20205
20355
20505
20655
20805
20955
21105
21255
21405
21555
21705
21855
22005
22155
22305
22455
22605
18256
18406
18556
18706
18856
19006
19156
19306
19456
19606
19756
19906
20056
20206
20356
20506
20656
20806
20956
21106
21256
21406
21556
21706
21856
22006
22156
22306
22456
22606
18257
18407
18557
18707
18857
19007
19157
19307
19457
19607
19757
19907
20057
20207
20357
20507
20657
20807
20957
21107
21257
21407
21557
21707
21857
22007
22157
22307
22457
22607
18258
18408
18558
18708
18858
19008
19158
19308
19458
19608
19758
19908
20058
20208
20358
20508
20658
20808
20958
21108
21258
21408
21558
21708
21858
22008
22158
22308
22458
22608
18259
18409
18559
18709
18859
19009
19159
19309
19459
19609
19759
19909
20059
20209
20359
20509
20659
20809
20959
21109
21259
21409
21559
21709
21859
22009
22159
22309
22459
22609
18260
18410
18560
18710
18860
19010
19160
19310
19460
19610
19760
19910
20060
20210
20360
20510
20660
20810
20960
21110
21260
21410
21560
21710
21860
22010
22160
22310
22460
22610
18261
18411
18561
18711
18861
19011
19161
19311
19461
19611
19761
19911
20061
20211
20361
20511
20661
20811
20961
21111
21261
21411
21561
21711
21861
22011
22161
22311
22461
22611
18262
18412
18562
18712
18862
19012
19162
19312
19462
19612
19762
19912
20062
20212
20362
20512
20662
20812
20962
21112
21262
21412
21562
21712
21862
22012
22162
22312
22462
22612
18263
18413
18563
18713
18863
19013
19163
19313
19463
19613
19763
19913
20063
20213
20363
20513
20663
20813
20963
21113
21263
21413
21563
21713
21863
22013
22163
22313
22463
22613
18264
18414
18564
18714
18864
19014
19164
19314
19464
19614
19764
19914
20064
20214
20364
20514
20664
20814
20964
21114
21264
21414
21564
21714
21864
22014
22164
22314
22464
22614
18265
18415
18565
18715
18865
19015
19165
19315
19465
19615
19765
19915
20065
20215
20365
20515
20665
20815
20965
21115
21265
21415
21565
21715
21865
22015
22165
22315
22465
22615
18266
18416
18566
18716
18866
19016
19166
19316
19466
19616
19766
19916
20066
20216
20366
20516
20666
20816
20966
21116
21266
21416
21566
21716
21866
22016
22166
22316
22466
22616
18267
18417
18567
18717
18867
19017
19167
19317
19467
19617
19767
19917
20067
20217
20367
20517
20667
20817
20967
21117
21267
21417
21567
21717
21867
22017
22167
22317
22467
22617
18268
18418
18568
18718
18868
19018
19168
19318
19468
19618
19768
19918
20068
20218
20368
20518
20668
20818
20968
21118
21268
21418
21568
21718
21868
22018
22168
22318
22468
22618
18269
18419
18569
18719
18869
19019
19169
19319
19469
19619
19769
19919
20069
20219
20369
20519
20669
20819
20969
21119
21269
21419
21569
21719
21869
22019
22169
22319
22469
22619
18270
18420
18570
18720
18870
19020
19170
19320
19470
19620
19770
19920
20070
20220
20370
20520
20670
20820
20970
21120
21270
21420
21570
21720
21870
22020
22170
22320
22470
22620
18271
18421
18571
18721
18871
19021
19171
19321
19471
19621
19771
19921
20071
20221
20371
20521
20671
20821
20971
21121
21271
21421
21571
21721
21871
22021
22171
22321
22471
22621
18272
18422
18572
18722
18872
19022
19172
19322
19472
19622
19772
19922
20072
20222
20372
20522
20672
20822
20972
21122
21272
21422
21572
21722
21872
22022
22172
22322
22472
22622
18273
18423
18573
18723
18873
19023
19173
19323
19473
19623
19773
19923
20073
20223
20373
20523
20673
20823
20973
21123
21273
21423
21573
21723
21873
22023
22173
22323
22473
22623
18274
18424
18574
18724
18874
19024
19174
19324
19474
19624
19774
19924
20074
20224
20374
20524
20674
20824
20974
21124
21274
21424
21574
21724
21874
22024
22174
22324
22474
22624
18275
18425
18575
18725
18875
19025
19175
19325
19475
19625
19775
19925
20075
20225
20375
20525
20675
20825
20975
21125
21275
21425
21575
21725
21875
22025
22175
22325
22475
22625
18276
18426
18576
18726
18876
19026
19176
19326
19476
19626
19776
19926
20076
20226
20376
20526
20676
20826
20976
21126
21276
21426
21576
21726
21876
22026
22176
22326
22476
22626
18277
18427
18577
18727
18877
19027
19177
19327
19477
19627
19777
19927
20077
20227
20377
20527
20677
20827
20977
21127
21277
21427
21577
21727
21877
22027
22177
22327
22477
22627
18278
18428
18578
18728
18878
19028
19178
19328
19478
19628
19778
19928
20078
20228
20378
20528
20678
20828
20978
21128
21278
21428
21578
21728
21878
22028
22178
22328
22478
22628
18279
18429
18579
18729
18879
19029
19179
19329
19479
19629
19779
19929
20079
20229
20379
20529
20679
20829
20979
21129
21279
21429
21579
21729
21879
22029
22179
22329
22479
22629
18280
18430
18580
18730
18880
19030
19180
19330
19480
19630
19780
19930
20080
20230
20380
20530
20680
20830
20980
21130
21280
21430
21580
21730
21880
22030
22180
22330
22480
22630
18281
18431
18581
18731
18881
19031
19181
19331
19481
19631
19781
19931
20081
20231
20381
20531
20681
20831
20981
21131
21281
21431
21581
21731
21881
22031
22181
22331
22481
22631
18282
18432
18582
18732
18882
19032
19182
19332
19482
19632
19782
19932
20082
20232
20382
20532
20682
20832
20982
21132
21282
21432
21582
21732
21882
22032
22182
22332
22482
22632
18283
18433
18583
18733
18883
19033
19183
19333
19483
19633
19783
19933
20083
20233
20383
20533
20683
20833
20983
21133
21283
21433
21583
21733
21883
22033
22183
22333
22483
22633
18284
18434
18584
18734
18884
19034
19184
19334
19484
19634
19784
19934
20084
20234
20384
20534
20684
20834
20984
21134
21284
21434
21584
21734
21884
22034
22184
22334
22484
22634
18285
18435
18585
18735
18885
19035
19185
19335
19485
19635
19785
19935
20085
20235
20385
20535
20685
20835
20985
21135
21285
21435
21585
21735
21885
22035
22185
22335
22485
22635
18286
18436
18586
18736
18886
19036
19186
19336
19486
19636
19786
19936
20086
20236
20386
20536
20686
20836
20986
21136
21286
21436
21586
21736
21886
22036
22186
22336
22486
22636
18287
18437
18587
18737
18887
19037
19187
19337
19487
19637
19787
19937
20087
20237
20387
20537
20687
20837
20987
21137
21287
21437
21587
21737
21887
22037
22187
22337
22487
22637
18288
18438
18588
18738
18888
19038
19188
19338
19488
19638
19788
19938
20088
20238
20388
20538
20688
20838
20988
21138
21288
21438
21588
21738
21888
22038
22188
22338
22488
22638
18289
18439
18589
18739
18889
19039
19189
19339
19489
19639
19789
19939
20089
20239
20389
20539
20689
20839
20989
21139
21289
21439
21589
21739
21889
22039
22189
22339
22489
22639
18290
18440
18590
18740
18890
19040
19190
19340
19490
19640
19790
19940
20090
20240
20390
20540
20690
20840
20990
21140
21290
21440
21590
21740
21890
22040
22190
22340
22490
22640
18291
18441
18591
18741
18891
19041
19191
19341
19491
19641
19791
19941
20091
20241
20391
20541
20691
20841
20991
21141
21291
21441
21591
21741
21891
22041
22191
22341
22491
22641
18292
18442
18592
18742
18892
19042
19192
19342
19492
19642
19792
19942
20092
20242
20392
20542
20692
20842
20992
21142
21292
21442
21592
21742
21892
22042
22192
22342
22492
22642
18293
18443
18593
18743
18893
19043
19193
19343
19493
19643
19793
19943
20093
20243
20393
20543
20693
20843
20993
21143
21293
21443
21593
21743
21893
22043
22193
22343
22493
22643
18294
18444
18594
18744
18894
19044
19194
19344
19494
19644
19794
19944
20094
20244
20394
20544
20694
20844
20994
21144
21294
21444
21594
21744
21894
22044
22194
22344
22494
22644
18295
18445
18595
18745
18895
19045
19195
19345
19495
19645
19795
19945
20095
20245
20395
20545
20695
20845
20995
21145
21295
21445
21595
21745
21895
22045
22195
22345
22495
22645
18296
18446
18596
18746
18896
19046
19196
19346
19496
19646
19796
19946
20096
20246
20396
20546
20696
20846
20996
21146
21296
21446
21596
21746
21896
22046
22196
22346
22496
22646
18297
18447
18597
18747
18897
19047
19197
19347
19497
19647
19797
19947
20097
20247
20397
20547
20697
20847
20997
21147
21297
21447
21597
21747
21897
22047
22197
22347
22497
22647
18298
18448
18598
18748
18898
19048
19198
19348
19498
19648
19798
19948
20098
20248
20398
20548
20698
20848
20998
21148
21298
21448
21598
21748
21898
22048
22198
22348
22498
22648
18299
18449
18599
18749
18899
19049
19199
19349
19499
19649
19799
19949
20099
20249
20399
20549
20699
20849
20999
21149
21299
21449
21599
21749
21899
22049
22199
22349
22499
22649
18300
18450
18600
18750
18900
19050
19200
19350
19500
19650
19800
19950
20100
20250
20400
20550
20700
20850
21000
21150
21300
21450
21600
21750
21900
22050
22200
22350
22500
22650
18301
18451
18601
18751
18901
19051
19201
19351
19501
19651
19801
19951
20101
20251
20401
20551
20701
20851
21001
21151
21301
21451
21601
21751
21901
22051
22201
22351
22501
22651
18302
18452
18602
18752
18902
19052
19202
19352
19502
19652
19802
19952
20102
20252
20402
20552
20702
20852
21002
21152
21302
21452
21602
21752
21902
22052
22202
22352
22502
22652
18303
18453
18603
18753
18903
19053
19203
19353
19503
19653
19803
19953
20103
20253
20403
20553
20703
20853
21003
21153
21303
21453
21603
21753
21903
22053
22203
22353
22503
22653
18304
18454
18604
18754
18904
19054
19204
19354
19504
19654
19804
19954
20104
20254
20404
20554
20704
20854
21004
21154
21304
21454
21604
21754
21904
22054
22204
22354
22504
22654
18305
18455
18605
18755
18905
19055
19205
19355
19505
19655
19805
19955
20105
20255
20405
20555
20705
20855
21005
21155
21305
21455
21605
21755
21905
22055
22205
22355
22505
22655
18306
18456
18606
18756
18906
19056
19206
19356
19506
19656
19806
19956
20106
20256
20406
20556
20706
20856
21006
21156
21306
21456
21606
21756
21906
22056
22206
22356
22506
22656
18307
18457
18607
18757
18907
19057
19207
19357
19507
19657
19807
19957
20107
20257
20407
20557
20707
20857
21007
21157
21307
21457
21607
21757
21907
22057
22207
22357
22507
22657
18308
18458
18608
18758
18908
19058
19208
19358
19508
19658
19808
19958
20108
20258
20408
20558
20708
20858
21008
21158
21308
21458
21608
21758
21908
22058
22208
22358
22508
22658
18309
18459
18609
18759
18909
19059
19209
19359
19509
19659
19809
19959
20109
20259
20409
20559
20709
20859
21009
21159
21309
21459
21609
21759
21909
22059
22209
22359
22509
22659
18310
18460
18610
18760
18910
19060
19210
19360
19510
19660
19810
19960
20110
20260
20410
20560
20710
20860
21010
21160
21310
21460
21610
21760
21910
22060
22210
22360
22510
22660
18311
18461
18611
18761
18911
19061
19211
19361
19511
19661
19811
19961
20111
20261
20411
20561
20711
20861
21011
21161
21311
21461
21611
21761
21911
22061
22211
22361
22511
22661
18312
18462
18612
18762
18912
19062
19212
19362
19512
19662
19812
19962
20112
20262
20412
20562
20712
20862
21012
21162
21312
21462
21612
21762
21912
22062
22212
22362
22512
22662
18313
18463
18613
18763
18913
19063
19213
19363
19513
19663
19813
19963
20113
20263
20413
20563
20713
20863
21013
21163
21313
21463
21613
21763
21913
22063
22213
22363
22513
22663
18314
18464
18614
18764
18914
19064
19214
19364
19514
19664
19814
19964
20114
20264
20414
20564
20714
20864
21014
21164
21314
21464
21614
21764
21914
22064
22214
22364
22514
22664
18315
18465
18615
18765
18915
19065
19215
19365
19515
19665
19815
19965
20115
20265
20415
20565
20715
20865
21015
21165
21315
21465
21615
21765
21915
22065
22215
22365
22515
22665
18316
18466
18616
18766
18916
19066
19216
19366
19516
19666
19816
19966
20116
20266
20416
20566
20716
20866
21016
21166
21316
21466
21616
21766
21916
22066
22216
22366
22516
22666
18317
18467
18617
18767
18917
19067
19217
19367
19517
19667
19817
19967
20117
20267
20417
20567
20717
20867
21017
21167
21317
21467
21617
21767
21917
22067
22217
22367
22517
22667
18318
18468
18618
18768
18918
19068
19218
19368
19518
19668
19818
19968
20118
20268
20418
20568
20718
20868
21018
21168
21318
21468
21618
21768
21918
22068
22218
22368
22518
22668
18319
18469
18619
18769
18919
19069
19219
19369
19519
19669
19819
19969
20119
20269
20419
20569
20719
20869
21019
21169
21319
21469
21619
21769
21919
22069
22219
22369
22519
22669
18320
18470
18620
18770
18920
19070
19220
19370
19520
19670
19820
19970
20120
20270
20420
20570
20720
20870
21020
21170
21320
21470
21620
21770
21920
22070
22220
22370
22520
22670
18321
18471
18621
18771
18921
19071
19221
19371
19521
19671
19821
19971
20121
20271
20421
20571
20721
20871
21021
21171
21321
21471
21621
21771
21921
22071
22221
22371
22521
22671
18322
18472
18622
18772
18922
19072
19222
19372
19522
19672
19822
19972
20122
20272
20422
20572
20722
20872
21022
21172
21322
21472
21622
21772
21922
22072
22222
22372
22522
22672
18323
18473
18623
18773
18923
19073
19223
19373
19523
19673
19823
19973
20123
20273
20423
20573
20723
20873
21023
21173
21323
21473
21623
21773
21923
22073
22223
22373
22523
22673
18324
18474
18624
18774
18924
19074
19224
19374
19524
19674
19824
19974
20124
20274
20424
20574
20724
20874
21024
21174
21324
21474
21624
21774
21924
22074
22224
22374
22524
22674
18325
18475
18625
18775
18925
19075
19225
19375
19525
19675
19825
19975
20125
20275
20425
20575
20725
20875
21025
21175
21325
21475
21625
21775
21925
22075
22225
22375
22525
22675
18326
18476
18626
18776
18926
19076
19226
19376
19526
19676
19826
19976
20126
20276
20426
20576
20726
20876
21026
21176
21326
21476
21626
21776
21926
22076
22226
22376
22526
22676
18327
18477
18627
18777
18927
19077
19227
19377
19527
19677
19827
19977
20127
20277
20427
20577
20727
20877
21027
21177
21327
21477
21627
21777
21927
22077
22227
22377
22527
22677
18328
18478
18628
18778
18928
19078
19228
19378
19528
19678
19828
19978
20128
20278
20428
20578
20728
20878
21028
21178
21328
21478
21628
21778
21928
22078
22228
22378
22528
22678
18329
18479
18629
18779
18929
19079
19229
19379
19529
19679
19829
19979
20129
20279
20429
20579
20729
20879
21029
21179
21329
21479
21629
21779
21929
22079
22229
22379
22529
22679
18330
18480
18630
18780
18930
19080
19230
19380
19530
19680
19830
19980
20130
20280
20430
20580
20730
20880
21030
21180
21330
21480
21630
21780
21930
22080
22230
22380
22530
22680
18331
18481
18631
18781
18931
19081
19231
19381
19531
19681
19831
19981
20131
20281
20431
20581
20731
20881
21031
21181
21331
21481
21631
21781
21931
22081
22231
22381
22531
22681
18332
18482
18632
18782
18932
19082
19232
19382
19532
19682
19832
19982
20132
20282
20432
20582
20732
20882
21032
21182
21332
21482
21632
21782
21932
22082
22232
22382
22532
22682
18333
18483
18633
18783
18933
19083
19233
19383
19533
19683
19833
19983
20133
20283
20433
20583
20733
20883
21033
21183
21333
21483
21633
21783
21933
22083
22233
22383
22533
22683
18334
18484
18634
18784
18934
19084
19234
19384
19534
19684
19834
19984
20134
20284
20434
20584
20734
20884
21034
21184
21334
21484
21634
21784
21934
22084
22234
22384
22534
22684
18335
18485
18635
18785
18935
19085
19235
19385
19535
19685
19835
19985
20135
20285
20435
20585
20735
20885
21035
21185
21335
21485
21635
21785
21935
22085
22235
22385
22535
22685
18336
18486
18636
18786
18936
19086
19236
19386
19536
19686
19836
19986
20136
20286
20436
20586
20736
20886
21036
21186
21336
21486
21636
21786
21936
22086
22236
22386
22536
22686
18337
18487
18637
18787
18937
19087
19237
19387
19537
19687
19837
19987
20137
20287
20437
20587
20737
20887
21037
21187
21337
21487
21637
21787
21937
22087
22237
22387
22537
22687
18338
18488
18638
18788
18938
19088
19238
19388
19538
19688
19838
19988
20138
20288
20438
20588
20738
20888
21038
21188
21338
21488
21638
21788
21938
22088
22238
22388
22538
22688
18339
18489
18639
18789
18939
19089
19239
19389
19539
19689
19839
19989
20139
20289
20439
20589
20739
20889
21039
21189
21339
21489
21639
21789
21939
22089
22239
22389
22539
22689
18340
18490
18640
18790
18940
19090
19240
19390
19540
19690
19840
19990
20140
20290
20440
20590
20740
20890
21040
21190
21340
21490
21640
21790
21940
22090
22240
22390
22540
22690
18341
18491
18641
18791
18941
19091
19241
19391
19541
19691
19841
19991
20141
20291
20441
20591
20741
20891
21041
21191
21341
21491
21641
21791
21941
22091
22241
22391
22541
22691
18342
18492
18642
18792
18942
19092
19242
19392
19542
19692
19842
19992
20142
20292
20442
20592
20742
20892
21042
21192
21342
21492
21642
21792
21942
22092
22242
22392
22542
22692
18343
18493
18643
18793
18943
19093
19243
19393
19543
19693
19843
19993
20143
20293
20443
20593
20743
20893
21043
21193
21343
21493
21643
21793
21943
22093
22243
22393
22543
22693
18344
18494
18644
18794
18944
19094
19244
19394
19544
19694
19844
19994
20144
20294
20444
20594
20744
20894
21044
21194
21344
21494
21644
21794
21944
22094
22244
22394
22544
22694
18345
18495
18645
18795
18945
19095
19245
19395
19545
19695
19845
19995
20145
20295
20445
20595
20745
20895
21045
21195
21345
21495
21645
21795
21945
22095
22245
22395
22545
22695
18346
18496
18646
18796
18946
19096
19246
19396
19546
19696
19846
19996
20146
20296
20446
20596
20746
20896
21046
21196
21346
21496
21646
21796
21946
22096
22246
22396
22546
22696
18347
18497
18647
18797
18947
19097
19247
19397
19547
19697
19847
19997
20147
20297
20447
20597
20747
20897
21047
21197
21347
21497
21647
21797
21947
22097
22247
22397
22547
22697
18348
18498
18648
18798
18948
19098
19248
19398
19548
19698
19848
19998
20148
20298
20448
20598
20748
20898
21048
21198
21348
21498
21648
21798
21948
22098
22248
22398
22548
22698
18349
18499
18649
18799
18949
19099
19249
19399
19549
19699
19849
19999
20149
20299
20449
20599
20749
20899
21049
21199
21349
21499
21649
21799
21949
22099
22249
22399
22549
22699
13700
13850
14000
14150
14300
14450
14600
14750
14900
15050
15200
15350
15500
15650
15800
15950
16100
16250
16400
16550
16700
16850
17000
17150
17300
17450
17600
17750
17900
18050
13701
13851
14001
14151
14301
14451
14601
14751
14901
15051
15201
15351
15501
15651
15801
15951
16101
16251
16401
16551
16701
16851
17001
17151
17301
17451
17601
17751
17901
18051
13702
13852
14002
14152
14302
14452
14602
14752
14902
15052
15202
15352
15502
15652
15802
15952
16102
16252
16402
16552
16702
16852
17002
17152
17302
17452
17602
17752
17902
18052
13703
13853
14003
14153
14303
14453
14603
14753
14903
15053
15203
15353
15503
15653
15803
15953
16103
16253
16403
16553
16703
16853
17003
17153
17303
17453
17603
17753
17903
18053
13704
13854
14004
14154
14304
14454
14604
14754
14904
15054
15204
15354
15504
15654
15804
15954
16104
16254
16404
16554
16704
16854
17004
17154
17304
17454
17604
17754
17904
18054
13705
13855
14005
14155
14305
14455
14605
14755
14905
15055
15205
15355
15505
15655
15805
15955
16105
16255
16405
16555
16705
16855
17005
17155
17305
17455
17605
17755
17905
18055
13706
13856
14006
14156
14306
14456
14606
14756
14906
15056
15206
15356
15506
15656
15806
15956
16106
16256
16406
16556
16706
16856
17006
17156
17306
17456
17606
17756
17906
18056
13707
13857
14007
14157
14307
14457
14607
14757
14907
15057
15207
15357
15507
15657
15807
15957
16107
16257
16407
16557
16707
16857
17007
17157
17307
17457
17607
17757
17907
18057
13708
13858
14008
14158
14308
14458
14608
14758
14908
15058
15208
15358
15508
15658
15808
15958
16108
16258
16408
16558
16708
16858
17008
17158
17308
17458
17608
17758
17908
18058
13709
13859
14009
14159
14309
14459
14609
14759
14909
15059
15209
15359
15509
15659
15809
15959
16109
16259
16409
16559
16709
16859
17009
17159
17309
17459
17609
17759
17909
18059
13710
13860
14010
14160
14310
14460
14610
14760
14910
15060
15210
15360
15510
15660
15810
15960
16110
16260
16410
16560
16710
16860
17010
17160
17310
17460
17610
17760
17910
18060
13711
13861
14011
14161
14311
14461
14611
14761
14911
15061
15211
15361
15511
15661
15811
15961
16111
16261
16411
16561
16711
16861
17011
17161
17311
17461
17611
17761
17911
18061
13712
13862
14012
14162
14312
14462
14612
14762
14912
15062
15212
15362
15512
15662
15812
15962
16112
16262
16412
16562
16712
16862
17012
17162
17312
17462
17612
17762
17912
18062
13713
13863
14013
14163
14313
14463
14613
14763
14913
15063
15213
15363
15513
15663
15813
15963
16113
16263
16413
16563
16713
16863
17013
17163
17313
17463
17613
17763
17913
18063
13714
13864
14014
14164
14314
14464
14614
14764
14914
15064
15214
15364
15514
15664
15814
15964
16114
16264
16414
16564
16714
16864
17014
17164
17314
17464
17614
17764
17914
18064
13715
13865
14015
14165
14315
14465
14615
14765
14915
15065
15215
15365
15515
15665
15815
15965
16115
16265
16415
16565
16715
16865
17015
17165
17315
17465
17615
17765
17915
18065
13716
13866
14016
14166
14316
14466
14616
14766
14916
15066
15216
15366
15516
15666
15816
15966
16116
16266
16416
16566
16716
16866
17016
17166
17316
17466
17616
17766
17916
18066
13717
13867
14017
14167
14317
14467
14617
14767
14917
15067
15217
15367
15517
15667
15817
15967
16117
16267
16417
16567
16717
16867
17017
17167
17317
17467
17617
17767
17917
18067
13718
13868
14018
14168
14318
14468
14618
14768
14918
15068
15218
15368
15518
15668
15818
15968
16118
16268
16418
16568
16718
16868
17018
17168
17318
17468
17618
17768
17918
18068
13719
13869
14019
14169
14319
14469
14619
14769
14919
15069
15219
15369
15519
15669
15819
15969
16119
16269
16419
16569
16719
16869
17019
17169
17319
17469
17619
17769
17919
18069
13720
13870
14020
14170
14320
14470
14620
14770
14920
15070
15220
15370
15520
15670
15820
15970
16120
16270
16420
16570
16720
16870
17020
17170
17320
17470
17620
17770
17920
18070
13721
13871
14021
14171
14321
14471
14621
14771
14921
15071
15221
15371
15521
15671
15821
15971
16121
16271
16421
16571
16721
16871
17021
17171
17321
17471
17621
17771
17921
18071
13722
13872
14022
14172
14322
14472
14622
14772
14922
15072
15222
15372
15522
15672
15822
15972
16122
16272
16422
16572
16722
16872
17022
17172
17322
17472
17622
17772
17922
18072
13723
13873
14023
14173
14323
14473
14623
14773
14923
15073
15223
15373
15523
15673
15823
15973
16123
16273
16423
16573
16723
16873
17023
17173
17323
17473
17623
17773
17923
18073
13724
13874
14024
14174
14324
14474
14624
14774
14924
15074
15224
15374
15524
15674
15824
15974
16124
16274
16424
16574
16724
16874
17024
17174
17324
17474
17624
17774
17924
18074
13725
13875
14025
14175
14325
14475
14625
14775
14925
15075
15225
15375
15525
15675
15825
15975
16125
16275
16425
16575
16725
16875
17025
17175
17325
17475
17625
17775
17925
18075
13726
13876
14026
14176
14326
14476
14626
14776
14926
15076
15226
15376
15526
15676
15826
15976
16126
16276
16426
16576
16726
16876
17026
17176
17326
17476
17626
17776
17926
18076
13727
13877
14027
14177
14327
14477
14627
14777
14927
15077
15227
15377
15527
15677
15827
15977
16127
16277
16427
16577
16727
16877
17027
17177
17327
17477
17627
17777
17927
18077
13728
13878
14028
14178
14328
14478
14628
14778
14928
15078
15228
15378
15528
15678
15828
15978
16128
16278
16428
16578
16728
16878
17028
17178
17328
17478
17628
17778
17928
18078
13729
13879
14029
14179
14329
14479
14629
14779
14929
15079
15229
15379
15529
15679
15829
15979
16129
16279
16429
16579
16729
16879
17029
17179
17329
17479
17629
17779
17929
18079
13730
13880
14030
14180
14330
14480
14630
14780
14930
15080
15230
15380
15530
15680
15830
15980
16130
16280
16430
16580
16730
16880
17030
17180
17330
17480
17630
17780
17930
18080
13731
13881
14031
14181
14331
14481
14631
14781
14931
15081
15231
15381
15531
15681
15831
15981
16131
16281
16431
16581
16731
16881
17031
17181
17331
17481
17631
17781
17931
18081
13732
13882
14032
14182
14332
14482
14632
14782
14932
15082
15232
15382
15532
15682
15832
15982
16132
16282
16432
16582
16732
16882
17032
17182
17332
17482
17632
17782
17932
18082
13733
13883
14033
14183
14333
14483
14633
14783
14933
15083
15233
15383
15533
15683
15833
15983
16133
16283
16433
16583
16733
16883
17033
17183
17333
17483
17633
17783
17933
18083
13734
13884
14034
14184
14334
14484
14634
14784
14934
15084
15234
15384
15534
15684
15834
15984
16134
16284
16434
16584
16734
16884
17034
17184
17334
17484
17634
17784
17934
18084
13735
13885
14035
14185
14335
14485
14635
14785
14935
15085
15235
15385
15535
15685
15835
15985
16135
16285
16435
16585
16735
16885
17035
17185
17335
17485
17635
17785
17935
18085
13736
13886
14036
14186
14336
14486
14636
14786
14936
15086
15236
15386
15536
15686
15836
15986
16136
16286
16436
16586
16736
16886
17036
17186
17336
17486
17636
17786
17936
18086
13737
13887
14037
14187
14337
14487
14637
14787
14937
15087
15237
15387
15537
15687
15837
15987
16137
16287
16437
16587
16737
16887
17037
17187
17337
17487
17637
17787
17937
18087
13738
13888
14038
14188
14338
14488
14638
14788
14938
15088
15238
15388
15538
15688
15838
15988
16138
16288
16438
16588
16738
16888
17038
17188
17338
17488
17638
17788
17938
18088
13739
13889
14039
14189
14339
14489
14639
14789
14939
15089
15239
15389
15539
15689
15839
15989
16139
16289
16439
16589
16739
16889
17039
17189
17339
17489
17639
17789
17939
18089
13740
13890
14040
14190
14340
14490
14640
14790
14940
15090
15240
15390
15540
15690
15840
15990
16140
16290
16440
16590
16740
16890
17040
17190
17340
17490
17640
17790
17940
18090
13741
13891
14041
14191
14341
14491
14641
14791
14941
15091
15241
15391
15541
15691
15841
15991
16141
16291
16441
16591
16741
16891
17041
17191
17341
17491
17641
17791
17941
18091
13742
13892
14042
14192
14342
14492
14642
14792
14942
15092
15242
15392
15542
15692
15842
15992
16142
16292
16442
16592
16742
16892
17042
17192
17342
17492
17642
17792
17942
18092
13743
13893
14043
14193
14343
14493
14643
14793
14943
15093
15243
15393
15543
15693
15843
15993
16143
16293
16443
16593
16743
16893
17043
17193
17343
17493
17643
17793
17943
18093
13744
13894
14044
14194
14344
14494
14644
14794
14944
15094
15244
15394
15544
15694
15844
15994
16144
16294
16444
16594
16744
16894
17044
17194
17344
17494
17644
17794
17944
18094
13745
13895
14045
14195
14345
14495
14645
14795
14945
15095
15245
15395
15545
15695
15845
15995
16145
16295
16445
16595
16745
16895
17045
17195
17345
17495
17645
17795
17945
18095
13746
13896
14046
14196
14346
14496
14646
14796
14946
15096
15246
15396
15546
15696
15846
15996
16146
16296
16446
16596
16746
16896
17046
17196
17346
17496
17646
17796
17946
18096
13747
13897
14047
14197
14347
14497
14647
14797
14947
15097
15247
15397
15547
15697
15847
15997
16147
16297
16447
16597
16747
16897
17047
17197
17347
17497
17647
17797
17947
18097
13748
13898
14048
14198
14348
14498
14648
14798
14948
15098
15248
15398
15548
15698
15848
15998
16148
16298
16448
16598
16748
16898
17048
17198
17348
17498
17648
17798
17948
18098
13749
13899
14049
14199
14349
14499
14649
14799
14949
15099
15249
15399
15549
15699
15849
15999
16149
16299
16449
16599
16749
16899
17049
17199
17349
17499
17649
17799
17949
18099
13750
13900
14050
14200
14350
14500
14650
14800
14950
15100
15250
15400
15550
15700
15850
16000
16150
16300
16450
16600
16750
16900
17050
17200
17350
17500
17650
17800
17950
18100
13751
13901
14051
14201
14351
14501
14651
14801
14951
15101
15251
15401
15551
15701
15851
16001
16151
16301
16451
16601
16751
16901
17051
17201
17351
17501
17651
17801
17951
18101
13752
13902
14052
14202
14352
14502
14652
14802
14952
15102
15252
15402
15552
15702
15852
16002
16152
16302
16452
16602
16752
16902
17052
17202
17352
17502
17652
17802
17952
18102
13753
13903
14053
14203
14353
14503
14653
14803
14953
15103
15253
15403
15553
15703
15853
16003
16153
16303
16453
16603
16753
16903
17053
17203
17353
17503
17653
17803
17953
18103
13754
13904
14054
14204
14354
14504
14654
14804
14954
15104
15254
15404
15554
15704
15854
16004
16154
16304
16454
16604
16754
16904
17054
17204
17354
17504
17654
17804
17954
18104
13755
13905
14055
14205
14355
14505
14655
14805
14955
15105
15255
15405
15555
15705
15855
16005
16155
16305
16455
16605
16755
16905
17055
17205
17355
17505
17655
17805
17955
18105
13756
13906
14056
14206
14356
14506
14656
14806
14956
15106
15256
15406
15556
15706
15856
16006
16156
16306
16456
16606
16756
16906
17056
17206
17356
17506
17656
17806
17956
18106
13757
13907
14057
14207
14357
14507
14657
14807
14957
15107
15257
15407
15557
15707
15857
16007
16157
16307
16457
16607
16757
16907
17057
17207
17357
17507
17657
17807
17957
18107
13758
13908
14058
14208
14358
14508
14658
14808
14958
15108
15258
15408
15558
15708
15858
16008
16158
16308
16458
16608
16758
16908
17058
17208
17358
17508
17658
17808
17958
18108
13759
13909
14059
14209
14359
14509
14659
14809
14959
15109
15259
15409
15559
15709
15859
16009
16159
16309
16459
16609
16759
16909
17059
17209
17359
17509
17659
17809
17959
18109
13760
13910
14060
14210
14360
14510
14660
14810
14960
15110
15260
15410
15560
15710
15860
16010
16160
16310
16460
16610
16760
16910
17060
17210
17360
17510
17660
17810
17960
18110
13761
13911
14061
14211
14361
14511
14661
14811
14961
15111
15261
15411
15561
15711
15861
16011
16161
16311
16461
16611
16761
16911
17061
17211
17361
17511
17661
17811
17961
18111
13762
13912
14062
14212
14362
14512
14662
14812
14962
15112
15262
15412
15562
15712
15862
16012
16162
16312
16462
16612
16762
16912
17062
17212
17362
17512
17662
17812
17962
18112
13763
13913
14063
14213
14363
14513
14663
14813
14963
15113
15263
15413
15563
15713
15863
16013
16163
16313
16463
16613
16763
16913
17063
17213
17363
17513
17663
17813
17963
18113
13764
13914
14064
14214
14364
14514
14664
14814
14964
15114
15264
15414
15564
15714
15864
16014
16164
16314
16464
16614
16764
16914
17064
17214
17364
17514
17664
17814
17964
18114
13765
13915
14065
14215
14365
14515
14665
14815
14965
15115
15265
15415
15565
15715
15865
16015
16165
16315
16465
16615
16765
16915
17065
17215
17365
17515
17665
17815
17965
18115
13766
13916
14066
14216
14366
14516
14666
14816
14966
15116
15266
15416
15566
15716
15866
16016
16166
16316
16466
16616
16766
16916
17066
17216
17366
17516
17666
17816
17966
18116
13767
13917
14067
14217
14367
14517
14667
14817
14967
15117
15267
15417
15567
15717
15867
16017
16167
16317
16467
16617
16767
16917
17067
17217
17367
17517
17667
17817
17967
18117
13768
13918
14068
14218
14368
14518
14668
14818
14968
15118
15268
15418
15568
15718
15868
16018
16168
16318
16468
16618
16768
16918
17068
17218
17368
17518
17668
17818
17968
18118
13769
13919
14069
14219
14369
14519
14669
14819
14969
15119
15269
15419
15569
15719
15869
16019
16169
16319
16469
16619
16769
16919
17069
17219
17369
17519
17669
17819
17969
18119
13770
13920
14070
14220
14370
14520
14670
14820
14970
15120
15270
15420
15570
15720
15870
16020
16170
16320
16470
16620
16770
16920
17070
17220
17370
17520
17670
17820
17970
18120
13771
13921
14071
14221
14371
14521
14671
14821
14971
15121
15271
15421
15571
15721
15871
16021
16171
16321
16471
16621
16771
16921
17071
17221
17371
17521
17671
17821
17971
18121
13772
13922
14072
14222
14372
14522
14672
14822
14972
15122
15272
15422
15572
15722
15872
16022
16172
16322
16472
16622
16772
16922
17072
17222
17372
17522
17672
17822
17972
18122
13773
13923
14073
14223
14373
14523
14673
14823
14973
15123
15273
15423
15573
15723
15873
16023
16173
16323
16473
16623
16773
16923
17073
17223
17373
17523
17673
17823
17973
18123
13774
13924
14074
14224
14374
14524
14674
14824
14974
15124
15274
15424
15574
15724
15874
16024
16174
16324
16474
16624
16774
16924
17074
17224
17374
17524
17674
17824
17974
18124
13775
13925
14075
14225
14375
14525
14675
14825
14975
15125
15275
15425
15575
15725
15875
16025
16175
16325
16475
16625
16775
16925
17075
17225
17375
17525
17675
17825
17975
18125
13776
13926
14076
14226
14376
14526
14676
14826
14976
15126
15276
15426
15576
15726
15876
16026
16176
16326
16476
16626
16776
16926
17076
17226
17376
17526
17676
17826
17976
18126
13777
13927
14077
14227
14377
14527
14677
14827
14977
15127
15277
15427
15577
15727
15877
16027
16177
16327
16477
16627
16777
16927
17077
17227
17377
17527
17677
17827
17977
18127
13778
13928
14078
14228
14378
14528
14678
14828
14978
15128
15278
15428
15578
15728
15878
16028
16178
16328
16478
16628
16778
16928
17078
17228
17378
17528
17678
17828
17978
18128
13779
13929
14079
14229
14379
14529
14679
14829
14979
15129
15279
15429
15579
15729
15879
16029
16179
16329
16479
16629
16779
16929
17079
17229
17379
17529
17679
17829
17979
18129
13780
13930
14080
14230
14380
14530
14680
14830
14980
15130
15280
15430
15580
15730
15880
16030
16180
16330
16480
16630
16780
16930
17080
17230
17380
17530
17680
17830
17980
18130
13781
13931
14081
14231
14381
14531
14681
14831
14981
15131
15281
15431
15581
15731
15881
16031
16181
16331
16481
16631
16781
16931
17081
17231
17381
17531
17681
17831
17981
18131
13782
13932
14082
14232
14382
14532
14682
14832
14982
15132
15282
15432
15582
15732
15882
16032
16182
16332
16482
16632
16782
16932
17082
17232
17382
17532
17682
17832
17982
18132
13783
13933
14083
14233
14383
14533
14683
14833
14983
15133
15283
15433
15583
15733
15883
16033
16183
16333
16483
16633
16783
16933
17083
17233
17383
17533
17683
17833
17983
18133
13784
13934
14084
14234
14384
14534
14684
14834
14984
15134
15284
15434
15584
15734
15884
16034
16184
16334
16484
16634
16784
16934
17084
17234
17384
17534
17684
17834
17984
18134
13785
13935
14085
14235
14385
14535
14685
14835
14985
15135
15285
15435
15585
15735
15885
16035
16185
16335
16485
16635
16785
16935
17085
17235
17385
17535
17685
17835
17985
18135
13786
13936
14086
14236
14386
14536
14686
14836
14986
15136
15286
15436
15586
15736
15886
16036
16186
16336
16486
16636
16786
16936
17086
17236
17386
17536
17686
17836
17986
18136
13787
13937
14087
14237
14387
14537
14687
14837
14987
15137
15287
15437
15587
15737
15887
16037
16187
16337
16487
16637
16787
16937
17087
17237
17387
17537
17687
17837
17987
18137
13788
13938
14088
14238
14388
14538
14688
14838
14988
15138
15288
15438
15588
15738
15888
16038
16188
16338
16488
16638
16788
16938
17088
17238
17388
17538
17688
17838
17988
18138
13789
13939
14089
14239
14389
14539
14689
14839
14989
15139
15289
15439
15589
15739
15889
16039
16189
16339
16489
16639
16789
16939
17089
17239
17389
17539
17689
17839
17989
18139
13790
13940
14090
14240
14390
14540
14690
14840
14990
15140
15290
15440
15590
15740
15890
16040
16190
16340
16490
16640
16790
16940
17090
17240
17390
17540
17690
17840
17990
18140
13791
13941
14091
14241
14391
14541
14691
14841
14991
15141
15291
15441
15591
15741
15891
16041
16191
16341
16491
16641
16791
16941
17091
17241
17391
17541
17691
17841
17991
18141
13792
13942
14092
14242
14392
14542
14692
14842
14992
15142
15292
15442
15592
15742
15892
16042
16192
16342
16492
16642
16792
16942
17092
17242
17392
17542
17692
17842
17992
18142
13793
13943
14093
14243
14393
14543
14693
14843
14993
15143
15293
15443
15593
15743
15893
16043
16193
16343
16493
16643
16793
16943
17093
17243
17393
17543
17693
17843
17993
18143
13794
13944
14094
14244
14394
14544
14694
14844
14994
15144
15294
15444
15594
15744
15894
16044
16194
16344
16494
16644
16794
16944
17094
17244
17394
17544
17694
17844
17994
18144
13795
13945
14095
14245
14395
14545
14695
14845
14995
15145
15295
15445
15595
15745
15895
16045
16195
16345
16495
16645
16795
16945
17095
17245
17395
17545
17695
17845
17995
18145
13796
13946
14096
14246
14396
14546
14696
14846
14996
15146
15296
15446
15596
15746
15896
16046
16196
16346
16496
16646
16796
16946
17096
17246
17396
17546
17696
17846
17996
18146
13797
13947
14097
14247
14397
14547
14697
14847
14997
15147
15297
15447
15597
15747
15897
16047
16197
16347
16497
16647
16797
16947
17097
17247
17397
17547
17697
17847
17997
18147
13798
13948
14098
14248
14398
14548
14698
14848
14998
15148
15298
15448
15598
15748
15898
16048
16198
16348
16498
16648
16798
16948
17098
17248
17398
17548
17698
17848
17998
18148
13799
13949
14099
14249
14399
14549
14699
14849
14999
15149
15299
15449
15599
15749
15899
16049
16199
16349
16499
16649
16799
16949
17099
17249
17399
17549
17699
17849
17999
18149
13800
13950
14100
14250
14400
14550
14700
14850
15000
15150
15300
15450
15600
15750
15900
16050
16200
16350
16500
16650
16800
16950
17100
17250
17400
17550
17700
17850
18000
18150
13801
13951
14101
14251
14401
14551
14701
14851
15001
15151
15301
15451
15601
15751
15901
16051
16201
16351
16501
16651
16801
16951
17101
17251
17401
17551
17701
17851
18001
18151
13802
13952
14102
14252
14402
14552
14702
14852
15002
15152
15302
15452
15602
15752
15902
16052
16202
16352
16502
16652
16802
16952
17102
17252
17402
17552
17702
17852
18002
18152
13803
13953
14103
14253
14403
14553
14703
14853
15003
15153
15303
15453
15603
15753
15903
16053
16203
16353
16503
16653
16803
16953
17103
17253
17403
17553
17703
17853
18003
18153
13804
13954
14104
14254
14404
14554
14704
14854
15004
15154
15304
15454
15604
15754
15904
16054
16204
16354
16504
16654
16804
16954
17104
17254
17404
17554
17704
17854
18004
18154
13805
13955
14105
14255
14405
14555
14705
14855
15005
15155
15305
15455
15605
15755
15905
16055
16205
16355
16505
16655
16805
16955
17105
17255
17405
17555
17705
17855
18005
18155
13806
13956
14106
14256
14406
14556
14706
14856
15006
15156
15306
15456
15606
15756
15906
16056
16206
16356
16506
16656
16806
16956
17106
17256
17406
17556
17706
17856
18006
18156
13807
13957
14107
14257
14407
14557
14707
14857
15007
15157
15307
15457
15607
15757
15907
16057
16207
16357
16507
16657
16807
16957
17107
17257
17407
17557
17707
17857
18007
18157
13808
13958
14108
14258
14408
14558
14708
14858
15008
15158
15308
15458
15608
15758
15908
16058
16208
16358
16508
16658
16808
16958
17108
17258
17408
17558
17708
17858
18008
18158
13809
13959
14109
14259
14409
14559
14709
14859
15009
15159
15309
15459
15609
15759
15909
16059
16209
16359
16509
16659
16809
16959
17109
17259
17409
17559
17709
17859
18009
18159
13810
13960
14110
14260
14410
14560
14710
14860
15010
15160
15310
15460
15610
15760
15910
16060
16210
16360
16510
16660
16810
16960
17110
17260
17410
17560
17710
17860
18010
18160
13811
13961
14111
14261
14411
14561
14711
14861
15011
15161
15311
15461
15611
15761
15911
16061
16211
16361
16511
16661
16811
16961
17111
17261
17411
17561
17711
17861
18011
18161
13812
13962
14112
14262
14412
14562
14712
14862
15012
15162
15312
15462
15612
15762
15912
16062
16212
16362
16512
16662
16812
16962
17112
17262
17412
17562
17712
17862
18012
18162
13813
13963
14113
14263
14413
14563
14713
14863
15013
15163
15313
15463
15613
15763
15913
16063
16213
16363
16513
16663
16813
16963
17113
17263
17413
17563
17713
17863
18013
18163
13814
13964
14114
14264
14414
14564
14714
14864
15014
15164
15314
15464
15614
15764
15914
16064
16214
16364
16514
16664
16814
16964
17114
17264
17414
17564
17714
17864
18014
18164
13815
13965
14115
14265
14415
14565
14715
14865
15015
15165
15315
15465
15615
15765
15915
16065
16215
16365
16515
16665
16815
16965
17115
17265
17415
17565
17715
17865
18015
18165
13816
13966
14116
14266
14416
14566
14716
14866
15016
15166
15316
15466
15616
15766
15916
16066
16216
16366
16516
16666
16816
16966
17116
17266
17416
17566
17716
17866
18016
18166
13817
13967
14117
14267
14417
14567
14717
14867
15017
15167
15317
15467
15617
15767
15917
16067
16217
16367
16517
16667
16817
16967
17117
17267
17417
17567
17717
17867
18017
18167
13818
13968
14118
14268
14418
14568
14718
14868
15018
15168
15318
15468
15618
15768
15918
16068
16218
16368
16518
16668
16818
16968
17118
17268
17418
17568
17718
17868
18018
18168
13819
13969
14119
14269
14419
14569
14719
14869
15019
15169
15319
15469
15619
15769
15919
16069
16219
16369
16519
16669
16819
16969
17119
17269
17419
17569
17719
17869
18019
18169
13820
13970
14120
14270
14420
14570
14720
14870
15020
15170
15320
15470
15620
15770
15920
16070
16220
16370
16520
16670
16820
16970
17120
17270
17420
17570
17720
17870
18020
18170
13821
13971
14121
14271
14421
14571
14721
14871
15021
15171
15321
15471
15621
15771
15921
16071
16221
16371
16521
16671
16821
16971
17121
17271
17421
17571
17721
17871
18021
18171
13822
13972
14122
14272
14422
14572
14722
14872
15022
15172
15322
15472
15622
15772
15922
16072
16222
16372
16522
16672
16822
16972
17122
17272
17422
17572
17722
17872
18022
18172
13823
13973
14123
14273
14423
14573
14723
14873
15023
15173
15323
15473
15623
15773
15923
16073
16223
16373
16523
16673
16823
16973
17123
17273
17423
17573
17723
17873
18023
18173
13824
13974
14124
14274
14424
14574
14724
14874
15024
15174
15324
15474
15624
15774
15924
16074
16224
16374
16524
16674
16824
16974
17124
17274
17424
17574
17724
17874
18024
18174
13825
13975
14125
14275
14425
14575
14725
14875
15025
15175
15325
15475
15625
15775
15925
16075
16225
16375
16525
16675
16825
16975
17125
17275
17425
17575
17725
17875
18025
18175
13826
13976
14126
14276
14426
14576
14726
14876
15026
15176
15326
15476
15626
15776
15926
16076
16226
16376
16526
16676
16826
16976
17126
17276
17426
17576
17726
17876
18026
18176
13827
13977
14127
14277
14427
14577
14727
14877
15027
15177
15327
15477
15627
15777
15927
16077
16227
16377
16527
16677
16827
16977
17127
17277
17427
17577
17727
17877
18027
18177
13828
13978
14128
14278
14428
14578
14728
14878
15028
15178
15328
15478
15628
15778
15928
16078
16228
16378
16528
16678
16828
16978
17128
17278
17428
17578
17728
17878
18028
18178
13829
13979
14129
14279
14429
14579
14729
14879
15029
15179
15329
15479
15629
15779
15929
16079
16229
16379
16529
16679
16829
16979
17129
17279
17429
17579
17729
17879
18029
18179
13830
13980
14130
14280
14430
14580
14730
14880
15030
15180
15330
15480
15630
15780
15930
16080
16230
16380
16530
16680
16830
16980
17130
17280
17430
17580
17730
17880
18030
18180
13831
13981
14131
14281
14431
14581
14731
14881
15031
15181
15331
15481
15631
15781
15931
16081
16231
16381
16531
16681
16831
16981
17131
17281
17431
17581
17731
17881
18031
18181
13832
13982
14132
14282
14432
14582
14732
14882
15032
15182
15332
15482
15632
15782
15932
16082
16232
16382
16532
16682
16832
16982
17132
17282
17432
17582
17732
17882
18032
18182
13833
13983
14133
14283
14433
14583
14733
14883
15033
15183
15333
15483
15633
15783
15933
16083
16233
16383
16533
16683
16833
16983
17133
17283
17433
17583
17733
17883
18033
18183
13834
13984
14134
14284
14434
14584
14734
14884
15034
15184
15334
15484
15634
15784
15934
16084
16234
16384
16534
16684
16834
16984
17134
17284
17434
17584
17734
17884
18034
18184
13835
13985
14135
14285
14435
14585
14735
14885
15035
15185
15335
15485
15635
15785
15935
16085
16235
16385
16535
16685
16835
16985
17135
17285
17435
17585
17735
17885
18035
18185
13836
13986
14136
14286
14436
14586
14736
14886
15036
15186
15336
15486
15636
15786
15936
16086
16236
16386
16536
16686
16836
16986
17136
17286
17436
17586
17736
17886
18036
18186
13837
13987
14137
14287
14437
14587
14737
14887
15037
15187
15337
15487
15637
15787
15937
16087
16237
16387
16537
16687
16837
16987
17137
17287
17437
17587
17737
17887
18037
18187
13838
13988
14138
14288
14438
14588
14738
14888
15038
15188
15338
15488
15638
15788
15938
16088
16238
16388
16538
16688
16838
16988
17138
17288
17438
17588
17738
17888
18038
18188
13839
13989
14139
14289
14439
14589
14739
14889
15039
15189
15339
15489
15639
15789
15939
16089
16239
16389
16539
16689
16839
16989
17139
17289
17439
17589
17739
17889
18039
18189
13840
13990
14140
14290
14440
14590
14740
14890
15040
15190
15340
15490
15640
15790
15940
16090
16240
16390
16540
16690
16840
16990
17140
17290
17440
17590
17740
17890
18040
18190
13841
13991
14141
14291
14441
14591
14741
14891
15041
15191
15341
15491
15641
15791
15941
16091
16241
16391
16541
16691
16841
16991
17141
17291
17441
17591
17741
17891
18041
18191
13842
13992
14142
14292
14442
14592
14742
14892
15042
15192
15342
15492
15642
15792
15942
16092
16242
16392
16542
16692
16842
16992
17142
17292
17442
17592
17742
17892
18042
18192
13843
13993
14143
14293
14443
14593
14743
14893
15043
15193
15343
15493
15643
15793
15943
16093
16243
16393
16543
16693
16843
16993
17143
17293
17443
17593
17743
17893
18043
18193
13844
13994
14144
14294
14444
14594
14744
14894
15044
15194
15344
15494
15644
15794
15944
16094
16244
16394
16544
16694
16844
16994
17144
17294
17444
17594
17744
17894
18044
18194
13845
13995
14145
14295
14445
14595
14745
14895
15045
15195
15345
15495
15645
15795
15945
16095
16245
16395
16545
16695
16845
16995
17145
17295
17445
17595
17745
17895
18045
18195
13846
13996
14146
14296
14446
14596
14746
14896
15046
15196
15346
15496
15646
15796
15946
16096
16246
16396
16546
16696
16846
16996
17146
17296
17446
17596
17746
17896
18046
18196
13847
13997
14147
14297
14447
14597
14747
14897
15047
15197
15347
15497
15647
15797
15947
16097
16247
16397
16547
16697
16847
16997
17147
17297
17447
17597
17747
17897
18047
18197
13848
13998
14148
14298
14448
14598
14748
14898
15048
15198
15348
15498
15648
15798
15948
16098
16248
16398
16548
16698
16848
16998
17148
17298
17448
17598
17748
17898
18048
18198
13849
13999
14149
14299
14449
14599
14749
14899
15049
15199
15349
15499
15649
15799
15949
16099
16249
16399
16549
16699
16849
16999
17149
17299
17449
17599
17749
17899
18049
18199
22700
22730
22760
22790
22820
22850
22880
22910
22940
22970
23000
23030
23060
23090
23120
23150
23180
23210
23240
23270
22701
22731
22761
22791
22821
22851
22881
22911
22941
22971
23001
23031
23061
23091
23121
23151
23181
23211
23241
23271
22702
22732
22762
22792
22822
22852
22882
22912
22942
22972
23002
23032
23062
23092
23122
23152
23182
23212
23242
23272
22703
22733
22763
22793
22823
22853
22883
22913
22943
22973
23003
23033
23063
23093
23123
23153
23183
23213
23243
23273
22704
22734
22764
22794
22824
22854
22884
22914
22944
22974
23004
23034
23064
23094
23124
23154
23184
23214
23244
23274
22705
22735
22765
22795
22825
22855
22885
22915
22945
22975
23005
23035
23065
23095
23125
23155
23185
23215
23245
23275
22706
22736
22766
22796
22826
22856
22886
22916
22946
22976
23006
23036
23066
23096
23126
23156
23186
23216
23246
23276
22707
22737
22767
22797
22827
22857
22887
22917
22947
22977
23007
23037
23067
23097
23127
23157
23187
23217
23247
23277
22708
22738
22768
22798
22828
22858
22888
22918
22948
22978
23008
23038
23068
23098
23128
23158
23188
23218
23248
23278
22709
22739
22769
22799
22829
22859
22889
22919
22949
22979
23009
23039
23069
23099
23129
23159
23189
23219
23249
23279
22710
22740
22770
22800
22830
22860
22890
22920
22950
22980
23010
23040
23070
23100
23130
23160
23190
23220
23250
23280
22711
22741
22771
22801
22831
22861
22891
22921
22951
22981
23011
23041
23071
23101
23131
23161
23191
23221
23251
23281
22712
22742
22772
22802
22832
22862
22892
22922
22952
22982
23012
23042
23072
23102
23132
23162
23192
23222
23252
23282
22713
22743
22773
22803
22833
22863
22893
22923
22953
22983
23013
23043
23073
23103
23133
23163
23193
23223
23253
23283
22714
22744
22774
22804
22834
22864
22894
22924
22954
22984
23014
23044
23074
23104
23134
23164
23194
23224
23254
23284
22715
22745
22775
22805
22835
22865
22895
22925
22955
22985
23015
23045
23075
23105
23135
23165
23195
23225
23255
23285
22716
22746
22776
22806
22836
22866
22896
22926
22956
22986
23016
23046
23076
23106
23136
23166
23196
23226
23256
23286
22717
22747
22777
22807
22837
22867
22897
22927
22957
22987
23017
23047
23077
23107
23137
23167
23197
23227
23257
23287
22718
22748
22778
22808
22838
22868
22898
22928
22958
22988
23018
23048
23078
23108
23138
23168
23198
23228
23258
23288
22719
22749
22779
22809
22839
22869
22899
22929
22959
22989
23019
23049
23079
23109
23139
23169
23199
23229
23259
23289
22720
22750
22780
22810
22840
22870
22900
22930
22960
22990
23020
23050
23080
23110
23140
23170
23200
23230
23260
23290
22721
22751
22781
22811
22841
22871
22901
22931
22961
22991
23021
23051
23081
23111
23141
23171
23201
23231
23261
23291
22722
22752
22782
22812
22842
22872
22902
22932
22962
22992
23022
23052
23082
23112
23142
23172
23202
23232
23262
23292
22723
22753
22783
22813
22843
22873
22903
22933
22963
22993
23023
23053
23083
23113
23143
23173
23203
23233
23263
23293
22724
22754
22784
22814
22844
22874
22904
22934
22964
22994
23024
23054
23084
23114
23144
23174
23204
23234
23264
23294
22725
22755
22785
22815
22845
22875
22905
22935
22965
22995
23025
23055
23085
23115
23145
23175
23205
23235
23265
23295
22726
22756
22786
22816
22846
22876
22906
22936
22966
22996
23026
23056
23086
23116
23146
23176
23206
23236
23266
23296
22727
22757
22787
22817
22847
22877
22907
22937
22967
22997
23027
23057
23087
23117
23147
23177
23207
23237
23267
23297
22728
22758
22788
22818
22848
22878
22908
22938
22968
22998
23028
23058
23088
23118
23148
23178
23208
23238
23268
23298
22729
22759
22789
22819
22849
22879
22909
22939
22969
22999
23029
23059
23089
23119
23149
23179
23209
23239
23269
23299
23300
23330
23360
23390
23420
23450
23480
23510
23540
23570
23600
23630
23660
23690
23720
23750
23780
23810
23840
23870
23301
23331
23361
23391
23421
23451
23481
23511
23541
23571
23601
23631
23661
23691
23721
23751
23781
23811
23841
23871
23302
23332
23362
23392
23422
23452
23482
23512
23542
23572
23602
23632
23662
23692
23722
23752
23782
23812
23842
23872
23303
23333
23363
23393
23423
23453
23483
23513
23543
23573
23603
23633
23663
23693
23723
23753
23783
23813
23843
23873
23304
23334
23364
23394
23424
23454
23484
23514
23544
23574
23604
23634
23664
23694
23724
23754
23784
23814
23844
23874
23305
23335
23365
23395
23425
23455
23485
23515
23545
23575
23605
23635
23665
23695
23725
23755
23785
23815
23845
23875
23306
23336
23366
23396
23426
23456
23486
23516
23546
23576
23606
23636
23666
23696
23726
23756
23786
23816
23846
23876
23307
23337
23367
23397
23427
23457
23487
23517
23547
23577
23607
23637
23667
23697
23727
23757
23787
23817
23847
23877
23308
23338
23368
23398
23428
23458
23488
23518
23548
23578
23608
23638
23668
23698
23728
23758
23788
23818
23848
23878
23309
23339
23369
23399
23429
23459
23489
23519
23549
23579
23609
23639
23669
23699
23729
23759
23789
23819
23849
23879
23310
23340
23370
23400
23430
23460
23490
23520
23550
23580
23610
23640
23670
23700
23730
23760
23790
23820
23850
23880
23311
23341
23371
23401
23431
23461
23491
23521
23551
23581
23611
23641
23671
23701
23731
23761
23791
23821
23851
23881
23312
23342
23372
23402
23432
23462
23492
23522
23552
23582
23612
23642
23672
23702
23732
23762
23792
23822
23852
23882
23313
23343
23373
23403
23433
23463
23493
23523
23553
23583
23613
23643
23673
23703
23733
23763
23793
23823
23853
23883
23314
23344
23374
23404
23434
23464
23494
23524
23554
23584
23614
23644
23674
23704
23734
23764
23794
23824
23854
23884
23315
23345
23375
23405
23435
23465
23495
23525
23555
23585
23615
23645
23675
23705
23735
23765
23795
23825
23855
23885
23316
23346
23376
23406
23436
23466
23496
23526
23556
23586
23616
23646
23676
23706
23736
23766
23796
23826
23856
23886
23317
23347
23377
23407
23437
23467
23497
23527
23557
23587
23617
23647
23677
23707
23737
23767
23797
23827
23857
23887
23318
23348
23378
23408
23438
23468
23498
23528
23558
23588
23618
23648
23678
23708
23738
23768
23798
23828
23858
23888
23319
23349
23379
23409
23439
23469
23499
23529
23559
23589
23619
23649
23679
23709
23739
23769
23799
23829
23859
23889
23320
23350
23380
23410
23440
23470
23500
23530
23560
23590
23620
23650
23680
23710
23740
23770
23800
23830
23860
23890
23321
23351
23381
23411
23441
23471
23501
23531
23561
23591
23621
23651
23681
23711
23741
23771
23801
23831
23861
23891
23322
23352
23382
23412
23442
23472
23502
23532
23562
23592
23622
23652
23682
23712
23742
23772
23802
23832
23862
23892
23323
23353
23383
23413
23443
23473
23503
23533
23563
23593
23623
23653
23683
23713
23743
23773
23803
23833
23863
23893
23324
23354
23384
23414
23444
23474
23504
23534
23564
23594
23624
23654
23684
23714
23744
23774
23804
23834
23864
23894
23325
23355
23385
23415
23445
23475
23505
23535
23565
23595
23625
23655
23685
23715
23745
23775
23805
23835
23865
23895
23326
23356
23386
23416
23446
23476
23506
23536
23566
23596
23626
23656
23686
23716
23746
23776
23806
23836
23866
23896
23327
23357
23387
23417
23447
23477
23507
23537
23567
23597
23627
23657
23687
23717
23747
23777
23807
23837
23867
23897
23328
23358
23388
23418
23448
23478
23508
23538
23568
23598
23628
23658
23688
23718
23748
23778
23808
23838
23868
23898
23329
23359
23389
23419
23449
23479
23509
23539
23569
23599
23629
23659
23689
23719
23749
23779
23809
23839
23869
23899
23900
24075
24250
24425
24600
24775
24950
25125
25300
25475
25650
25825
26000
26175
26350
26525
26700
26875
27050
27225
23901
24076
24251
24426
24601
24776
24951
25126
25301
25476
25651
25826
26001
26176
26351
26526
26701
26876
27051
27226
23902
24077
24252
24427
24602
24777
24952
25127
25302
25477
25652
25827
26002
26177
26352
26527
26702
26877
27052
27227
23903
24078
24253
24428
24603
24778
24953
25128
25303
25478
25653
25828
26003
26178
26353
26528
26703
26878
27053
27228
23904
24079
24254
24429
24604
24779
24954
25129
25304
25479
25654
25829
26004
26179
26354
26529
26704
26879
27054
27229
23905
24080
24255
24430
24605
24780
24955
25130
25305
25480
25655
25830
26005
26180
26355
26530
26705
26880
27055
27230
23906
24081
24256
24431
24606
24781
24956
25131
25306
25481
25656
25831
26006
26181
26356
26531
26706
26881
27056
27231
23907
24082
24257
24432
24607
24782
24957
25132
25307
25482
25657
25832
26007
26182
26357
26532
26707
26882
27057
27232
23908
24083
24258
24433
24608
24783
24958
25133
25308
25483
25658
25833
26008
26183
26358
26533
26708
26883
27058
27233
23909
24084
24259
24434
24609
24784
24959
25134
25309
25484
25659
25834
26009
26184
26359
26534
26709
26884
27059
27234
23910
24085
24260
24435
24610
24785
24960
25135
25310
25485
25660
25835
26010
26185
26360
26535
26710
26885
27060
27235
23911
24086
24261
24436
24611
24786
24961
25136
25311
25486
25661
25836
26011
26186
26361
26536
26711
26886
27061
27236
23912
24087
24262
24437
24612
24787
24962
25137
25312
25487
25662
25837
26012
26187
26362
26537
26712
26887
27062
27237
23913
24088
24263
24438
24613
24788
24963
25138
25313
25488
25663
25838
26013
26188
26363
26538
26713
26888
27063
27238
23914
24089
24264
24439
24614
24789
24964
25139
25314
25489
25664
25839
26014
26189
26364
26539
26714
26889
27064
27239
23915
24090
24265
24440
24615
24790
24965
25140
25315
25490
25665
25840
26015
26190
26365
26540
26715
26890
27065
27240
23916
24091
24266
24441
24616
24791
24966
25141
25316
25491
25666
25841
26016
26191
26366
26541
26716
26891
27066
27241
23917
24092
24267
24442
24617
24792
24967
25142
25317
25492
25667
25842
26017
26192
26367
26542
26717
26892
27067
27242
23918
24093
24268
24443
24618
24793
24968
25143
25318
25493
25668
25843
26018
26193
26368
26543
26718
26893
27068
27243
23919
24094
24269
24444
24619
24794
24969
25144
25319
25494
25669
25844
26019
26194
26369
26544
26719
26894
27069
27244
23920
24095
24270
24445
24620
24795
24970
25145
25320
25495
25670
25845
26020
26195
26370
26545
26720
26895
27070
27245
23921
24096
24271
24446
24621
24796
24971
25146
25321
25496
25671
25846
26021
26196
26371
26546
26721
26896
27071
27246
23922
24097
24272
24447
24622
24797
24972
25147
25322
25497
25672
25847
26022
26197
26372
26547
26722
26897
27072
27247
23923
24098
24273
24448
24623
24798
24973
25148
25323
25498
25673
25848
26023
26198
26373
26548
26723
26898
27073
27248
23924
24099
24274
24449
24624
24799
24974
25149
25324
25499
25674
25849
26024
26199
26374
26549
26724
26899
27074
27249
23925
24100
24275
24450
24625
24800
24975
25150
25325
25500
25675
25850
26025
26200
26375
26550
26725
26900
27075
27250
23926
24101
24276
24451
24626
24801
24976
25151
25326
25501
25676
25851
26026
26201
26376
26551
26726
26901
27076
27251
23927
24102
24277
24452
24627
24802
24977
25152
25327
25502
25677
25852
26027
26202
26377
26552
26727
26902
27077
27252
23928
24103
24278
24453
24628
24803
24978
25153
25328
25503
25678
25853
26028
26203
26378
26553
26728
26903
27078
27253
23929
24104
24279
24454
24629
24804
24979
25154
25329
25504
25679
25854
26029
26204
26379
26554
26729
26904
27079
27254
23930
24105
24280
24455
24630
24805
24980
25155
25330
25505
25680
25855
26030
26205
26380
26555
26730
26905
27080
27255
23931
24106
24281
24456
24631
24806
24981
25156
25331
25506
25681
25856
26031
26206
26381
26556
26731
26906
27081
27256
23932
24107
24282
24457
24632
24807
24982
25157
25332
25507
25682
25857
26032
26207
26382
26557
26732
26907
27082
27257
23933
24108
24283
24458
24633
24808
24983
25158
25333
25508
25683
25858
26033
26208
26383
26558
26733
26908
27083
27258
23934
24109
24284
24459
24634
24809
24984
25159
25334
25509
25684
25859
26034
26209
26384
26559
26734
26909
27084
27259
23935
24110
24285
24460
24635
24810
24985
25160
25335
25510
25685
25860
26035
26210
26385
26560
26735
26910
27085
27260
23936
24111
24286
24461
24636
24811
24986
25161
25336
25511
25686
25861
26036
26211
26386
26561
26736
26911
27086
27261
23937
24112
24287
24462
24637
24812
24987
25162
25337
25512
25687
25862
26037
26212
26387
26562
26737
26912
27087
27262
23938
24113
24288
24463
24638
24813
24988
25163
25338
25513
25688
25863
26038
26213
26388
26563
26738
26913
27088
27263
23939
24114
24289
24464
24639
24814
24989
25164
25339
25514
25689
25864
26039
26214
26389
26564
26739
26914
27089
27264
23940
24115
24290
24465
24640
24815
24990
25165
25340
25515
25690
25865
26040
26215
26390
26565
26740
26915
27090
27265
23941
24116
24291
24466
24641
24816
24991
25166
25341
25516
25691
25866
26041
26216
26391
26566
26741
26916
27091
27266
23942
24117
24292
24467
24642
24817
24992
25167
25342
25517
25692
25867
26042
26217
26392
26567
26742
26917
27092
27267
23943
24118
24293
24468
24643
24818
24993
25168
25343
25518
25693
25868
26043
26218
26393
26568
26743
26918
27093
27268
23944
24119
24294
24469
24644
24819
24994
25169
25344
25519
25694
25869
26044
26219
26394
26569
26744
26919
27094
27269
23945
24120
24295
24470
24645
24820
24995
25170
25345
25520
25695
25870
26045
26220
26395
26570
26745
26920
27095
27270
23946
24121
24296
24471
24646
24821
24996
25171
25346
25521
25696
25871
26046
26221
26396
26571
26746
26921
27096
27271
23947
24122
24297
24472
24647
24822
24997
25172
25347
25522
25697
25872
26047
26222
26397
26572
26747
26922
27097
27272
23948
24123
24298
24473
24648
24823
24998
25173
25348
25523
25698
25873
26048
26223
26398
26573
26748
26923
27098
27273
23949
24124
24299
24474
24649
24824
24999
25174
25349
25524
25699
25874
26049
26224
26399
26574
26749
26924
27099
27274
23950
24125
24300
24475
24650
24825
25000
25175
25350
25525
25700
25875
26050
26225
26400
26575
26750
26925
27100
27275
23951
24126
24301
24476
24651
24826
25001
25176
25351
25526
25701
25876
26051
26226
26401
26576
26751
26926
27101
27276
23952
24127
24302
24477
24652
24827
25002
25177
25352
25527
25702
25877
26052
26227
26402
26577
26752
26927
27102
27277
23953
24128
24303
24478
24653
24828
25003
25178
25353
25528
25703
25878
26053
26228
26403
26578
26753
26928
27103
27278
23954
24129
24304
24479
24654
24829
25004
25179
25354
25529
25704
25879
26054
26229
26404
26579
26754
26929
27104
27279
23955
24130
24305
24480
24655
24830
25005
25180
25355
25530
25705
25880
26055
26230
26405
26580
26755
26930
27105
27280
23956
24131
24306
24481
24656
24831
25006
25181
25356
25531
25706
25881
26056
26231
26406
26581
26756
26931
27106
27281
23957
24132
24307
24482
24657
24832
25007
25182
25357
25532
25707
25882
26057
26232
26407
26582
26757
26932
27107
27282
23958
24133
24308
24483
24658
24833
25008
25183
25358
25533
25708
25883
26058
26233
26408
26583
26758
26933
27108
27283
23959
24134
24309
24484
24659
24834
25009
25184
25359
25534
25709
25884
26059
26234
26409
26584
26759
26934
27109
27284
23960
24135
24310
24485
24660
24835
25010
25185
25360
25535
25710
25885
26060
26235
26410
26585
26760
26935
27110
27285
23961
24136
24311
24486
24661
24836
25011
25186
25361
25536
25711
25886
26061
26236
26411
26586
26761
26936
27111
27286
23962
24137
24312
24487
24662
24837
25012
25187
25362
25537
25712
25887
26062
26237
26412
26587
26762
26937
27112
27287
23963
24138
24313
24488
24663
24838
25013
25188
25363
25538
25713
25888
26063
26238
26413
26588
26763
26938
27113
27288
23964
24139
24314
24489
24664
24839
25014
25189
25364
25539
25714
25889
26064
26239
26414
26589
26764
26939
27114
27289
23965
24140
24315
24490
24665
24840
25015
25190
25365
25540
25715
25890
26065
26240
26415
26590
26765
26940
27115
27290
23966
24141
24316
24491
24666
24841
25016
25191
25366
25541
25716
25891
26066
26241
26416
26591
26766
26941
27116
27291
23967
24142
24317
24492
24667
24842
25017
25192
25367
25542
25717
25892
26067
26242
26417
26592
26767
26942
27117
27292
23968
24143
24318
24493
24668
24843
25018
25193
25368
25543
25718
25893
26068
26243
26418
26593
26768
26943
27118
27293
23969
24144
24319
24494
24669
24844
25019
25194
25369
25544
25719
25894
26069
26244
26419
26594
26769
26944
27119
27294
23970
24145
24320
24495
24670
24845
25020
25195
25370
25545
25720
25895
26070
26245
26420
26595
26770
26945
27120
27295
23971
24146
24321
24496
24671
24846
25021
25196
25371
25546
25721
25896
26071
26246
26421
26596
26771
26946
27121
27296
23972
24147
24322
24497
24672
24847
25022
25197
25372
25547
25722
25897
26072
26247
26422
26597
26772
26947
27122
27297
23973
24148
24323
24498
24673
24848
25023
25198
25373
25548
25723
25898
26073
26248
26423
26598
26773
26948
27123
27298
23974
24149
24324
24499
24674
24849
25024
25199
25374
25549
25724
25899
26074
26249
26424
26599
26774
26949
27124
27299
23975
24150
24325
24500
24675
24850
25025
25200
25375
25550
25725
25900
26075
26250
26425
26600
26775
26950
27125
27300
23976
24151
24326
24501
24676
24851
25026
25201
25376
25551
25726
25901
26076
26251
26426
26601
26776
26951
27126
27301
23977
24152
24327
24502
24677
24852
25027
25202
25377
25552
25727
25902
26077
26252
26427
26602
26777
26952
27127
27302
23978
24153
24328
24503
24678
24853
25028
25203
25378
25553
25728
25903
26078
26253
26428
26603
26778
26953
27128
27303
23979
24154
24329
24504
24679
24854
25029
25204
25379
25554
25729
25904
26079
26254
26429
26604
26779
26954
27129
27304
23980
24155
24330
24505
24680
24855
25030
25205
25380
25555
25730
25905
26080
26255
26430
26605
26780
26955
27130
27305
23981
24156
24331
24506
24681
24856
25031
25206
25381
25556
25731
25906
26081
26256
26431
26606
26781
26956
27131
27306
23982
24157
24332
24507
24682
24857
25032
25207
25382
25557
25732
25907
26082
26257
26432
26607
26782
26957
27132
27307
23983
24158
24333
24508
24683
24858
25033
25208
25383
25558
25733
25908
26083
26258
26433
26608
26783
26958
27133
27308
23984
24159
24334
24509
24684
24859
25034
25209
25384
25559
25734
25909
26084
26259
26434
26609
26784
26959
27134
27309
23985
24160
24335
24510
24685
24860
25035
25210
25385
25560
25735
25910
26085
26260
26435
26610
26785
26960
27135
27310
23986
24161
24336
24511
24686
24861
25036
25211
25386
25561
25736
25911
26086
26261
26436
26611
26786
26961
27136
27311
23987
24162
24337
24512
24687
24862
25037
25212
25387
25562
25737
25912
26087
26262
26437
26612
26787
26962
27137
27312
23988
24163
24338
24513
24688
24863
25038
25213
25388
25563
25738
25913
26088
26263
26438
26613
26788
26963
27138
27313
23989
24164
24339
24514
24689
24864
25039
25214
25389
25564
25739
25914
26089
26264
26439
26614
26789
26964
27139
27314
23990
24165
24340
24515
24690
24865
25040
25215
25390
25565
25740
25915
26090
26265
26440
26615
26790
26965
27140
27315
23991
24166
24341
24516
24691
24866
25041
25216
25391
25566
25741
25916
26091
26266
26441
26616
26791
26966
27141
27316
23992
24167
24342
24517
24692
24867
25042
25217
25392
25567
25742
25917
26092
26267
26442
26617
26792
26967
27142
27317
23993
24168
24343
24518
24693
24868
25043
25218
25393
25568
25743
25918
26093
26268
26443
26618
26793
26968
27143
27318
23994
24169
24344
24519
24694
24869
25044
25219
25394
25569
25744
25919
26094
26269
26444
26619
26794
26969
27144
27319
23995
24170
24345
24520
24695
24870
25045
25220
25395
25570
25745
25920
26095
26270
26445
26620
26795
26970
27145
27320
23996
24171
24346
24521
24696
24871
25046
25221
25396
25571
25746
25921
26096
26271
26446
26621
26796
26971
27146
27321
23997
24172
24347
24522
24697
24872
25047
25222
25397
25572
25747
25922
26097
26272
26447
26622
26797
26972
27147
27322
23998
24173
24348
24523
24698
24873
25048
25223
25398
25573
25748
25923
26098
26273
26448
26623
26798
26973
27148
27323
23999
24174
24349
24524
24699
24874
25049
25224
25399
25574
25749
25924
26099
26274
26449
26624
26799
26974
27149
27324
24000
24175
24350
24525
24700
24875
25050
25225
25400
25575
25750
25925
26100
26275
26450
26625
26800
26975
27150
27325
24001
24176
24351
24526
24701
24876
25051
25226
25401
25576
25751
25926
26101
26276
26451
26626
26801
26976
27151
27326
24002
24177
24352
24527
24702
24877
25052
25227
25402
25577
25752
25927
26102
26277
26452
26627
26802
26977
27152
27327
24003
24178
24353
24528
24703
24878
25053
25228
25403
25578
25753
25928
26103
26278
26453
26628
26803
26978
27153
27328
24004
24179
24354
24529
24704
24879
25054
25229
25404
25579
25754
25929
26104
26279
26454
26629
26804
26979
27154
27329
24005
24180
24355
24530
24705
24880
25055
25230
25405
25580
25755
25930
26105
26280
26455
26630
26805
26980
27155
27330
24006
24181
24356
24531
24706
24881
25056
25231
25406
25581
25756
25931
26106
26281
26456
26631
26806
26981
27156
27331
24007
24182
24357
24532
24707
24882
25057
25232
25407
25582
25757
25932
26107
26282
26457
26632
26807
26982
27157
27332
24008
24183
24358
24533
24708
24883
25058
25233
25408
25583
25758
25933
26108
26283
26458
26633
26808
26983
27158
27333
24009
24184
24359
24534
24709
24884
25059
25234
25409
25584
25759
25934
26109
26284
26459
26634
26809
26984
27159
27334
24010
24185
24360
24535
24710
24885
25060
25235
25410
25585
25760
25935
26110
26285
26460
26635
26810
26985
27160
27335
24011
24186
24361
24536
24711
24886
25061
25236
25411
25586
25761
25936
26111
26286
26461
26636
26811
26986
27161
27336
24012
24187
24362
24537
24712
24887
25062
25237
25412
25587
25762
25937
26112
26287
26462
26637
26812
26987
27162
27337
24013
24188
24363
24538
24713
24888
25063
25238
25413
25588
25763
25938
26113
26288
26463
26638
26813
26988
27163
27338
24014
24189
24364
24539
24714
24889
25064
25239
25414
25589
25764
25939
26114
26289
26464
26639
26814
26989
27164
27339
24015
24190
24365
24540
24715
24890
25065
25240
25415
25590
25765
25940
26115
26290
26465
26640
26815
26990
27165
27340
24016
24191
24366
24541
24716
24891
25066
25241
25416
25591
25766
25941
26116
26291
26466
26641
26816
26991
27166
27341
24017
24192
24367
24542
24717
24892
25067
25242
25417
25592
25767
25942
26117
26292
26467
26642
26817
26992
27167
27342
24018
24193
24368
24543
24718
24893
25068
25243
25418
25593
25768
25943
26118
26293
26468
26643
26818
26993
27168
27343
24019
24194
24369
24544
24719
24894
25069
25244
25419
25594
25769
25944
26119
26294
26469
26644
26819
26994
27169
27344
24020
24195
24370
24545
24720
24895
25070
25245
25420
25595
25770
25945
26120
26295
26470
26645
26820
26995
27170
27345
24021
24196
24371
24546
24721
24896
25071
25246
25421
25596
25771
25946
26121
26296
26471
26646
26821
26996
27171
27346
24022
24197
24372
24547
24722
24897
25072
25247
25422
25597
25772
25947
26122
26297
26472
26647
26822
26997
27172
27347
24023
24198
24373
24548
24723
24898
25073
25248
25423
25598
25773
25948
26123
26298
26473
26648
26823
26998
27173
27348
24024
24199
24374
24549
24724
24899
25074
25249
25424
25599
25774
25949
26124
26299
26474
26649
26824
26999
27174
27349
24025
24200
24375
24550
24725
24900
25075
25250
25425
25600
25775
25950
26125
26300
26475
26650
26825
27000
27175
27350
24026
24201
24376
24551
24726
24901
25076
25251
25426
25601
25776
25951
26126
26301
26476
26651
26826
27001
27176
27351
24027
24202
24377
24552
24727
24902
25077
25252
25427
25602
25777
25952
26127
26302
26477
26652
26827
27002
27177
27352
24028
24203
24378
24553
24728
24903
25078
25253
25428
25603
25778
25953
26128
26303
26478
26653
26828
27003
27178
27353
24029
24204
24379
24554
24729
24904
25079
25254
25429
25604
25779
25954
26129
26304
26479
26654
26829
27004
27179
27354
24030
24205
24380
24555
24730
24905
25080
25255
25430
25605
25780
25955
26130
26305
26480
26655
26830
27005
27180
27355
24031
24206
24381
24556
24731
24906
25081
25256
25431
25606
25781
25956
26131
26306
26481
26656
26831
27006
27181
27356
24032
24207
24382
24557
24732
24907
25082
25257
25432
25607
25782
25957
26132
26307
26482
26657
26832
27007
27182
27357
24033
24208
24383
24558
24733
24908
25083
25258
25433
25608
25783
25958
26133
26308
26483
26658
26833
27008
27183
27358
24034
24209
24384
24559
24734
24909
25084
25259
25434
25609
25784
25959
26134
26309
26484
26659
26834
27009
27184
27359
24035
24210
24385
24560
24735
24910
25085
25260
25435
25610
25785
25960
26135
26310
26485
26660
26835
27010
27185
27360
24036
24211
24386
24561
24736
24911
25086
25261
25436
25611
25786
25961
26136
26311
26486
26661
26836
27011
27186
27361
24037
24212
24387
24562
24737
24912
25087
25262
25437
25612
25787
25962
26137
26312
26487
26662
26837
27012
27187
27362
24038
24213
24388
24563
24738
24913
25088
25263
25438
25613
25788
25963
26138
26313
26488
26663
26838
27013
27188
27363
24039
24214
24389
24564
24739
24914
25089
25264
25439
25614
25789
25964
26139
26314
26489
26664
26839
27014
27189
27364
24040
24215
24390
24565
24740
24915
25090
25265
25440
25615
25790
25965
26140
26315
26490
26665
26840
27015
27190
27365
24041
24216
24391
24566
24741
24916
25091
25266
25441
25616
25791
25966
26141
26316
26491
26666
26841
27016
27191
27366
24042
24217
24392
24567
24742
24917
25092
25267
25442
25617
25792
25967
26142
26317
26492
26667
26842
27017
27192
27367
24043
24218
24393
24568
24743
24918
25093
25268
25443
25618
25793
25968
26143
26318
26493
26668
26843
27018
27193
27368
24044
24219
24394
24569
24744
24919
25094
25269
25444
25619
25794
25969
26144
26319
26494
26669
26844
27019
27194
27369
24045
24220
24395
24570
24745
24920
25095
25270
25445
25620
25795
25970
26145
26320
26495
26670
26845
27020
27195
27370
24046
24221
24396
24571
24746
24921
25096
25271
25446
25621
25796
25971
26146
26321
26496
26671
26846
27021
27196
27371
24047
24222
24397
24572
24747
24922
25097
25272
25447
25622
25797
25972
26147
26322
26497
26672
26847
27022
27197
27372
24048
24223
24398
24573
24748
24923
25098
25273
25448
25623
25798
25973
26148
26323
26498
26673
26848
27023
27198
27373
24049
24224
24399
24574
24749
24924
25099
25274
25449
25624
25799
25974
26149
26324
26499
26674
26849
27024
27199
27374
24050
24225
24400
24575
24750
24925
25100
25275
25450
25625
25800
25975
26150
26325
26500
26675
26850
27025
27200
27375
24051
24226
24401
24576
24751
24926
25101
25276
25451
25626
25801
25976
26151
26326
26501
26676
26851
27026
27201
27376
24052
24227
24402
24577
24752
24927
25102
25277
25452
25627
25802
25977
26152
26327
26502
26677
26852
27027
27202
27377
24053
24228
24403
24578
24753
24928
25103
25278
25453
25628
25803
25978
26153
26328
26503
26678
26853
27028
27203
27378
24054
24229
24404
24579
24754
24929
25104
25279
25454
25629
25804
25979
26154
26329
26504
26679
26854
27029
27204
27379
24055
24230
24405
24580
24755
24930
25105
25280
25455
25630
25805
25980
26155
26330
26505
26680
26855
27030
27205
27380
24056
24231
24406
24581
24756
24931
25106
25281
25456
25631
25806
25981
26156
26331
26506
26681
26856
27031
27206
27381
24057
24232
24407
24582
24757
24932
25107
25282
25457
25632
25807
25982
26157
26332
26507
26682
26857
27032
27207
27382
24058
24233
24408
24583
24758
24933
25108
25283
25458
25633
25808
25983
26158
26333
26508
26683
26858
27033
27208
27383
24059
24234
24409
24584
24759
24934
25109
25284
25459
25634
25809
25984
26159
26334
26509
26684
26859
27034
27209
27384
24060
24235
24410
24585
24760
24935
25110
25285
25460
25635
25810
25985
26160
26335
26510
26685
26860
27035
27210
27385
24061
24236
24411
24586
24761
24936
25111
25286
25461
25636
25811
25986
26161
26336
26511
26686
26861
27036
27211
27386
24062
24237
24412
24587
24762
24937
25112
25287
25462
25637
25812
25987
26162
26337
26512
26687
26862
27037
27212
27387
24063
24238
24413
24588
24763
24938
25113
25288
25463
25638
25813
25988
26163
26338
26513
26688
26863
27038
27213
27388
24064
24239
24414
24589
24764
24939
25114
25289
25464
25639
25814
25989
26164
26339
26514
26689
26864
27039
27214
27389
24065
24240
24415
24590
24765
24940
25115
25290
25465
25640
25815
25990
26165
26340
26515
26690
26865
27040
27215
27390
24066
24241
24416
24591
24766
24941
25116
25291
25466
25641
25816
25991
26166
26341
26516
26691
26866
27041
27216
27391
24067
24242
24417
24592
24767
24942
25117
25292
25467
25642
25817
25992
26167
26342
26517
26692
26867
27042
27217
27392
24068
24243
24418
24593
24768
24943
25118
25293
25468
25643
25818
25993
26168
26343
26518
26693
26868
27043
27218
27393
24069
24244
24419
24594
24769
24944
25119
25294
25469
25644
25819
25994
26169
26344
26519
26694
26869
27044
27219
27394
24070
24245
24420
24595
24770
24945
25120
25295
25470
25645
25820
25995
26170
26345
26520
26695
26870
27045
27220
27395
24071
24246
24421
24596
24771
24946
25121
25296
25471
25646
25821
25996
26171
26346
26521
26696
26871
27046
27221
27396
24072
24247
24422
24597
24772
24947
25122
25297
25472
25647
25822
25997
26172
26347
26522
26697
26872
27047
27222
27397
24073
24248
24423
24598
24773
24948
25123
25298
25473
25648
25823
25998
26173
26348
26523
26698
26873
27048
27223
27398
24074
24249
24424
24599
24774
24949
25124
25299
25474
25649
25824
25999
26174
26349
26524
26699
26874
27049
27224
27399
27400
27575
27750
27925
28100
28275
28450
28625
28800
28975
29150
29325
29500
29675
29850
30025
30200
30375
30550
30725
27401
27576
27751
27926
28101
28276
28451
28626
28801
28976
29151
29326
29501
29676
29851
30026
30201
30376
30551
30726
27402
27577
27752
27927
28102
28277
28452
28627
28802
28977
29152
29327
29502
29677
29852
30027
30202
30377
30552
30727
27403
27578
27753
27928
28103
28278
28453
28628
28803
28978
29153
29328
29503
29678
29853
30028
30203
30378
30553
30728
27404
27579
27754
27929
28104
28279
28454
28629
28804
28979
29154
29329
29504
29679
29854
30029
30204
30379
30554
30729
27405
27580
27755
27930
28105
28280
28455
28630
28805
28980
29155
29330
29505
29680
29855
30030
30205
30380
30555
30730
27406
27581
27756
27931
28106
28281
28456
28631
28806
28981
29156
29331
29506
29681
29856
30031
30206
30381
30556
30731
27407
27582
27757
27932
28107
28282
28457
28632
28807
28982
29157
29332
29507
29682
29857
30032
30207
30382
30557
30732
27408
27583
27758
27933
28108
28283
28458
28633
28808
28983
29158
29333
29508
29683
29858
30033
30208
30383
30558
30733
27409
27584
27759
27934
28109
28284
28459
28634
28809
28984
29159
29334
29509
29684
29859
30034
30209
30384
30559
30734
27410
27585
27760
27935
28110
28285
28460
28635
28810
28985
29160
29335
29510
29685
29860
30035
30210
30385
30560
30735
27411
27586
27761
27936
28111
28286
28461
28636
28811
28986
29161
29336
29511
29686
29861
30036
30211
30386
30561
30736
27412
27587
27762
27937
28112
28287
28462
28637
28812
28987
29162
29337
29512
29687
29862
30037
30212
30387
30562
30737
27413
27588
27763
27938
28113
28288
28463
28638
28813
28988
29163
29338
29513
29688
29863
30038
30213
30388
30563
30738
27414
27589
27764
27939
28114
28289
28464
28639
28814
28989
29164
29339
29514
29689
29864
30039
30214
30389
30564
30739
27415
27590
27765
27940
28115
28290
28465
28640
28815
28990
29165
29340
29515
29690
29865
30040
30215
30390
30565
30740
27416
27591
27766
27941
28116
28291
28466
28641
28816
28991
29166
29341
29516
29691
29866
30041
30216
30391
30566
30741
27417
27592
27767
27942
28117
28292
28467
28642
28817
28992
29167
29342
29517
29692
29867
30042
30217
30392
30567
30742
27418
27593
27768
27943
28118
28293
28468
28643
28818
28993
29168
29343
29518
29693
29868
30043
30218
30393
30568
30743
27419
27594
27769
27944
28119
28294
28469
28644
28819
28994
29169
29344
29519
29694
29869
30044
30219
30394
30569
30744
27420
27595
27770
27945
28120
28295
28470
28645
28820
28995
29170
29345
29520
29695
29870
30045
30220
30395
30570
30745
27421
27596
27771
27946
28121
28296
28471
28646
28821
28996
29171
29346
29521
29696
29871
30046
30221
30396
30571
30746
27422
27597
27772
27947
28122
28297
28472
28647
28822
28997
29172
29347
29522
29697
29872
30047
30222
30397
30572
30747
27423
27598
27773
27948
28123
28298
28473
28648
28823
28998
29173
29348
29523
29698
29873
30048
30223
30398
30573
30748
27424
27599
27774
27949
28124
28299
28474
28649
28824
28999
29174
29349
29524
29699
29874
30049
30224
30399
30574
30749
27425
27600
27775
27950
28125
28300
28475
28650
28825
29000
29175
29350
29525
29700
29875
30050
30225
30400
30575
30750
27426
27601
27776
27951
28126
28301
28476
28651
28826
29001
29176
29351
29526
29701
29876
30051
30226
30401
30576
30751
27427
27602
27777
27952
28127
28302
28477
28652
28827
29002
29177
29352
29527
29702
29877
30052
30227
30402
30577
30752
27428
27603
27778
27953
28128
28303
28478
28653
28828
29003
29178
29353
29528
29703
29878
30053
30228
30403
30578
30753
27429
27604
27779
27954
28129
28304
28479
28654
28829
29004
29179
29354
29529
29704
29879
30054
30229
30404
30579
30754
27430
27605
27780
27955
28130
28305
28480
28655
28830
29005
29180
29355
29530
29705
29880
30055
30230
30405
30580
30755
27431
27606
27781
27956
28131
28306
28481
28656
28831
29006
29181
29356
29531
29706
29881
30056
30231
30406
30581
30756
27432
27607
27782
27957
28132
28307
28482
28657
28832
29007
29182
29357
29532
29707
29882
30057
30232
30407
30582
30757
27433
27608
27783
27958
28133
28308
28483
28658
28833
29008
29183
29358
29533
29708
29883
30058
30233
30408
30583
30758
27434
27609
27784
27959
28134
28309
28484
28659
28834
29009
29184
29359
29534
29709
29884
30059
30234
30409
30584
30759
27435
27610
27785
27960
28135
28310
28485
28660
28835
29010
29185
29360
29535
29710
29885
30060
30235
30410
30585
30760
27436
27611
27786
27961
28136
28311
28486
28661
28836
29011
29186
29361
29536
29711
29886
30061
30236
30411
30586
30761
27437
27612
27787
27962
28137
28312
28487
28662
28837
29012
29187
29362
29537
29712
29887
30062
30237
30412
30587
30762
27438
27613
27788
27963
28138
28313
28488
28663
28838
29013
29188
29363
29538
29713
29888
30063
30238
30413
30588
30763
27439
27614
27789
27964
28139
28314
28489
28664
28839
29014
29189
29364
29539
29714
29889
30064
30239
30414
30589
30764
27440
27615
27790
27965
28140
28315
28490
28665
28840
29015
29190
29365
29540
29715
29890
30065
30240
30415
30590
30765
27441
27616
27791
27966
28141
28316
28491
28666
28841
29016
29191
29366
29541
29716
29891
30066
30241
30416
30591
30766
27442
27617
27792
27967
28142
28317
28492
28667
28842
29017
29192
29367
29542
29717
29892
30067
30242
30417
30592
30767
27443
27618
27793
27968
28143
28318
28493
28668
28843
29018
29193
29368
29543
29718
29893
30068
30243
30418
30593
30768
27444
27619
27794
27969
28144
28319
28494
28669
28844
29019
29194
29369
29544
29719
29894
30069
30244
30419
30594
30769
27445
27620
27795
27970
28145
28320
28495
28670
28845
29020
29195
29370
29545
29720
29895
30070
30245
30420
30595
30770
27446
27621
27796
27971
28146
28321
28496
28671
28846
29021
29196
29371
29546
29721
29896
30071
30246
30421
30596
30771
27447
27622
27797
27972
28147
28322
28497
28672
28847
29022
29197
29372
29547
29722
29897
30072
30247
30422
30597
30772
27448
27623
27798
27973
28148
28323
28498
28673
28848
29023
29198
29373
29548
29723
29898
30073
30248
30423
30598
30773
27449
27624
27799
27974
28149
28324
28499
28674
28849
29024
29199
29374
29549
29724
29899
30074
30249
30424
30599
30774
27450
27625
27800
27975
28150
28325
28500
28675
28850
29025
29200
29375
29550
29725
29900
30075
30250
30425
30600
30775
27451
27626
27801
27976
28151
28326
28501
28676
28851
29026
29201
29376
29551
29726
29901
30076
30251
30426
30601
30776
27452
27627
27802
27977
28152
28327
28502
28677
28852
29027
29202
29377
29552
29727
29902
30077
30252
30427
30602
30777
27453
27628
27803
27978
28153
28328
28503
28678
28853
29028
29203
29378
29553
29728
29903
30078
30253
30428
30603
30778
27454
27629
27804
27979
28154
28329
28504
28679
28854
29029
29204
29379
29554
29729
29904
30079
30254
30429
30604
30779
27455
27630
27805
27980
28155
28330
28505
28680
28855
29030
29205
29380
29555
29730
29905
30080
30255
30430
30605
30780
27456
27631
27806
27981
28156
28331
28506
28681
28856
29031
29206
29381
29556
29731
29906
30081
30256
30431
30606
30781
27457
27632
27807
27982
28157
28332
28507
28682
28857
29032
29207
29382
29557
29732
29907
30082
30257
30432
30607
30782
27458
27633
27808
27983
28158
28333
28508
28683
28858
29033
29208
29383
29558
29733
29908
30083
30258
30433
30608
30783
27459
27634
27809
27984
28159
28334
28509
28684
28859
29034
29209
29384
29559
29734
29909
30084
30259
30434
30609
30784
27460
27635
27810
27985
28160
28335
28510
28685
28860
29035
29210
29385
29560
29735
29910
30085
30260
30435
30610
30785
27461
27636
27811
27986
28161
28336
28511
28686
28861
29036
29211
29386
29561
29736
29911
30086
30261
30436
30611
30786
27462
27637
27812
27987
28162
28337
28512
28687
28862
29037
29212
29387
29562
29737
29912
30087
30262
30437
30612
30787
27463
27638
27813
27988
28163
28338
28513
28688
28863
29038
29213
29388
29563
29738
29913
30088
30263
30438
30613
30788
27464
27639
27814
27989
28164
28339
28514
28689
28864
29039
29214
29389
29564
29739
29914
30089
30264
30439
30614
30789
27465
27640
27815
27990
28165
28340
28515
28690
28865
29040
29215
29390
29565
29740
29915
30090
30265
30440
30615
30790
27466
27641
27816
27991
28166
28341
28516
28691
28866
29041
29216
29391
29566
29741
29916
30091
30266
30441
30616
30791
27467
27642
27817
27992
28167
28342
28517
28692
28867
29042
29217
29392
29567
29742
29917
30092
30267
30442
30617
30792
27468
27643
27818
27993
28168
28343
28518
28693
28868
29043
29218
29393
29568
29743
29918
30093
30268
30443
30618
30793
27469
27644
27819
27994
28169
28344
28519
28694
28869
29044
29219
29394
29569
29744
29919
30094
30269
30444
30619
30794
27470
27645
27820
27995
28170
28345
28520
28695
28870
29045
29220
29395
29570
29745
29920
30095
30270
30445
30620
30795
27471
27646
27821
27996
28171
28346
28521
28696
28871
29046
29221
29396
29571
29746
29921
30096
30271
30446
30621
30796
27472
27647
27822
27997
28172
28347
28522
28697
28872
29047
29222
29397
29572
29747
29922
30097
30272
30447
30622
30797
27473
27648
27823
27998
28173
28348
28523
28698
28873
29048
29223
29398
29573
29748
29923
30098
30273
30448
30623
30798
27474
27649
27824
27999
28174
28349
28524
28699
28874
29049
29224
29399
29574
29749
29924
30099
30274
30449
30624
30799
27475
27650
27825
28000
28175
28350
28525
28700
28875
29050
29225
29400
29575
29750
29925
30100
30275
30450
30625
30800
27476
27651
27826
28001
28176
28351
28526
28701
28876
29051
29226
29401
29576
29751
29926
30101
30276
30451
30626
30801
27477
27652
27827
28002
28177
28352
28527
28702
28877
29052
29227
29402
29577
29752
29927
30102
30277
30452
30627
30802
27478
27653
27828
28003
28178
28353
28528
28703
28878
29053
29228
29403
29578
29753
29928
30103
30278
30453
30628
30803
27479
27654
27829
28004
28179
28354
28529
28704
28879
29054
29229
29404
29579
29754
29929
30104
30279
30454
30629
30804
27480
27655
27830
28005
28180
28355
28530
28705
28880
29055
29230
29405
29580
29755
29930
30105
30280
30455
30630
30805
27481
27656
27831
28006
28181
28356
28531
28706
28881
29056
29231
29406
29581
29756
29931
30106
30281
30456
30631
30806
27482
27657
27832
28007
28182
28357
28532
28707
28882
29057
29232
29407
29582
29757
29932
30107
30282
30457
30632
30807
27483
27658
27833
28008
28183
28358
28533
28708
28883
29058
29233
29408
29583
29758
29933
30108
30283
30458
30633
30808
27484
27659
27834
28009
28184
28359
28534
28709
28884
29059
29234
29409
29584
29759
29934
30109
30284
30459
30634
30809
27485
27660
27835
28010
28185
28360
28535
28710
28885
29060
29235
29410
29585
29760
29935
30110
30285
30460
30635
30810
27486
27661
27836
28011
28186
28361
28536
28711
28886
29061
29236
29411
29586
29761
29936
30111
30286
30461
30636
30811
27487
27662
27837
28012
28187
28362
28537
28712
28887
29062
29237
29412
29587
29762
29937
30112
30287
30462
30637
30812
27488
27663
27838
28013
28188
28363
28538
28713
28888
29063
29238
29413
29588
29763
29938
30113
30288
30463
30638
30813
27489
27664
27839
28014
28189
28364
28539
28714
28889
29064
29239
29414
29589
29764
29939
30114
30289
30464
30639
30814
27490
27665
27840
28015
28190
28365
28540
28715
28890
29065
29240
29415
29590
29765
29940
30115
30290
30465
30640
30815
27491
27666
27841
28016
28191
28366
28541
28716
28891
29066
29241
29416
29591
29766
29941
30116
30291
30466
30641
30816
27492
27667
27842
28017
28192
28367
28542
28717
28892
29067
29242
29417
29592
29767
29942
30117
30292
30467
30642
30817
27493
27668
27843
28018
28193
28368
28543
28718
28893
29068
29243
29418
29593
29768
29943
30118
30293
30468
30643
30818
27494
27669
27844
28019
28194
28369
28544
28719
28894
29069
29244
29419
29594
29769
29944
30119
30294
30469
30644
30819
27495
27670
27845
28020
28195
28370
28545
28720
28895
29070
29245
29420
29595
29770
29945
30120
30295
30470
30645
30820
27496
27671
27846
28021
28196
28371
28546
28721
28896
29071
29246
29421
29596
29771
29946
30121
30296
30471
30646
30821
27497
27672
27847
28022
28197
28372
28547
28722
28897
29072
29247
29422
29597
29772
29947
30122
30297
30472
30647
30822
27498
27673
27848
28023
28198
28373
28548
28723
28898
29073
29248
29423
29598
29773
29948
30123
30298
30473
30648
30823
27499
27674
27849
28024
28199
28374
28549
28724
28899
29074
29249
29424
29599
29774
29949
30124
30299
30474
30649
30824
27500
27675
27850
28025
28200
28375
28550
28725
28900
29075
29250
29425
29600
29775
29950
30125
30300
30475
30650
30825
27501
27676
27851
28026
28201
28376
28551
28726
28901
29076
29251
29426
29601
29776
29951
30126
30301
30476
30651
30826
27502
27677
27852
28027
28202
28377
28552
28727
28902
29077
29252
29427
29602
29777
29952
30127
30302
30477
30652
30827
27503
27678
27853
28028
28203
28378
28553
28728
28903
29078
29253
29428
29603
29778
29953
30128
30303
30478
30653
30828
27504
27679
27854
28029
28204
28379
28554
28729
28904
29079
29254
29429
29604
29779
29954
30129
30304
30479
30654
30829
27505
27680
27855
28030
28205
28380
28555
28730
28905
29080
29255
29430
29605
29780
29955
30130
30305
30480
30655
30830
27506
27681
27856
28031
28206
28381
28556
28731
28906
29081
29256
29431
29606
29781
29956
30131
30306
30481
30656
30831
27507
27682
27857
28032
28207
28382
28557
28732
28907
29082
29257
29432
29607
29782
29957
30132
30307
30482
30657
30832
27508
27683
27858
28033
28208
28383
28558
28733
28908
29083
29258
29433
29608
29783
29958
30133
30308
30483
30658
30833
27509
27684
27859
28034
28209
28384
28559
28734
28909
29084
29259
29434
29609
29784
29959
30134
30309
30484
30659
30834
27510
27685
27860
28035
28210
28385
28560
28735
28910
29085
29260
29435
29610
29785
29960
30135
30310
30485
30660
30835
27511
27686
27861
28036
28211
28386
28561
28736
28911
29086
29261
29436
29611
29786
29961
30136
30311
30486
30661
30836
27512
27687
27862
28037
28212
28387
28562
28737
28912
29087
29262
29437
29612
29787
29962
30137
30312
30487
30662
30837
27513
27688
27863
28038
28213
28388
28563
28738
28913
29088
29263
29438
29613
29788
29963
30138
30313
30488
30663
30838
27514
27689
27864
28039
28214
28389
28564
28739
28914
29089
29264
29439
29614
29789
29964
30139
30314
30489
30664
30839
27515
27690
27865
28040
28215
28390
28565
28740
28915
29090
29265
29440
29615
29790
29965
30140
30315
30490
30665
30840
27516
27691
27866
28041
28216
28391
28566
28741
28916
29091
29266
29441
29616
29791
29966
30141
30316
30491
30666
30841
27517
27692
27867
28042
28217
28392
28567
28742
28917
29092
29267
29442
29617
29792
29967
30142
30317
30492
30667
30842
27518
27693
27868
28043
28218
28393
28568
28743
28918
29093
29268
29443
29618
29793
29968
30143
30318
30493
30668
30843
27519
27694
27869
28044
28219
28394
28569
28744
28919
29094
29269
29444
29619
29794
29969
30144
30319
30494
30669
30844
27520
27695
27870
28045
28220
28395
28570
28745
28920
29095
29270
29445
29620
29795
29970
30145
30320
30495
30670
30845
27521
27696
27871
28046
28221
28396
28571
28746
28921
29096
29271
29446
29621
29796
29971
30146
30321
30496
30671
30846
27522
27697
27872
28047
28222
28397
28572
28747
28922
29097
29272
29447
29622
29797
29972
30147
30322
30497
30672
30847
27523
27698
27873
28048
28223
28398
28573
28748
28923
29098
29273
29448
29623
29798
29973
30148
30323
30498
30673
30848
27524
27699
27874
28049
28224
28399
28574
28749
28924
29099
29274
29449
29624
29799
29974
30149
30324
30499
30674
30849
27525
27700
27875
28050
28225
28400
28575
28750
28925
29100
29275
29450
29625
29800
29975
30150
30325
30500
30675
30850
27526
27701
27876
28051
28226
28401
28576
28751
28926
29101
29276
29451
29626
29801
29976
30151
30326
30501
30676
30851
27527
27702
27877
28052
28227
28402
28577
28752
28927
29102
29277
29452
29627
29802
29977
30152
30327
30502
30677
30852
27528
27703
27878
28053
28228
28403
28578
28753
28928
29103
29278
29453
29628
29803
29978
30153
30328
30503
30678
30853
27529
27704
27879
28054
28229
28404
28579
28754
28929
29104
29279
29454
29629
29804
29979
30154
30329
30504
30679
30854
27530
27705
27880
28055
28230
28405
28580
28755
28930
29105
29280
29455
29630
29805
29980
30155
30330
30505
30680
30855
27531
27706
27881
28056
28231
28406
28581
28756
28931
29106
29281
29456
29631
29806
29981
30156
30331
30506
30681
30856
27532
27707
27882
28057
28232
28407
28582
28757
28932
29107
29282
29457
29632
29807
29982
30157
30332
30507
30682
30857
27533
27708
27883
28058
28233
28408
28583
28758
28933
29108
29283
29458
29633
29808
29983
30158
30333
30508
30683
30858
27534
27709
27884
28059
28234
28409
28584
28759
28934
29109
29284
29459
29634
29809
29984
30159
30334
30509
30684
30859
27535
27710
27885
28060
28235
28410
28585
28760
28935
29110
29285
29460
29635
29810
29985
30160
30335
30510
30685
30860
27536
27711
27886
28061
28236
28411
28586
28761
28936
29111
29286
29461
29636
29811
29986
30161
30336
30511
30686
30861
27537
27712
27887
28062
28237
28412
28587
28762
28937
29112
29287
29462
29637
29812
29987
30162
30337
30512
30687
30862
27538
27713
27888
28063
28238
28413
28588
28763
28938
29113
29288
29463
29638
29813
29988
30163
30338
30513
30688
30863
27539
27714
27889
28064
28239
28414
28589
28764
28939
29114
29289
29464
29639
29814
29989
30164
30339
30514
30689
30864
27540
27715
27890
28065
28240
28415
28590
28765
28940
29115
29290
29465
29640
29815
29990
30165
30340
30515
30690
30865
27541
27716
27891
28066
28241
28416
28591
28766
28941
29116
29291
29466
29641
29816
29991
30166
30341
30516
30691
30866
27542
27717
27892
28067
28242
28417
28592
28767
28942
29117
29292
29467
29642
29817
29992
30167
30342
30517
30692
30867
27543
27718
27893
28068
28243
28418
28593
28768
28943
29118
29293
29468
29643
29818
29993
30168
30343
30518
30693
30868
27544
27719
27894
28069
28244
28419
28594
28769
28944
29119
29294
29469
29644
29819
29994
30169
30344
30519
30694
30869
27545
27720
27895
28070
28245
28420
28595
28770
28945
29120
29295
29470
29645
29820
29995
30170
30345
30520
30695
30870
27546
27721
27896
28071
28246
28421
28596
28771
28946
29121
29296
29471
29646
29821
29996
30171
30346
30521
30696
30871
27547
27722
27897
28072
28247
28422
28597
28772
28947
29122
29297
29472
29647
29822
29997
30172
30347
30522
30697
30872
27548
27723
27898
28073
28248
28423
28598
28773
28948
29123
29298
29473
29648
29823
29998
30173
30348
30523
30698
30873
27549
27724
27899
28074
28249
28424
28599
28774
28949
29124
29299
29474
29649
29824
29999
30174
30349
30524
30699
30874
27550
27725
27900
28075
28250
28425
28600
28775
28950
29125
29300
29475
29650
29825
30000
30175
30350
30525
30700
30875
27551
27726
27901
28076
28251
28426
28601
28776
28951
29126
29301
29476
29651
29826
30001
30176
30351
30526
30701
30876
27552
27727
27902
28077
28252
28427
28602
28777
28952
29127
29302
29477
29652
29827
30002
30177
30352
30527
30702
30877
27553
27728
27903
28078
28253
28428
28603
28778
28953
29128
29303
29478
29653
29828
30003
30178
30353
30528
30703
30878
27554
27729
27904
28079
28254
28429
28604
28779
28954
29129
29304
29479
29654
29829
30004
30179
30354
30529
30704
30879
27555
27730
27905
28080
28255
28430
28605
28780
28955
29130
29305
29480
29655
29830
30005
30180
30355
30530
30705
30880
27556
27731
27906
28081
28256
28431
28606
28781
28956
29131
29306
29481
29656
29831
30006
30181
30356
30531
30706
30881
27557
27732
27907
28082
28257
28432
28607
28782
28957
29132
29307
29482
29657
29832
30007
30182
30357
30532
30707
30882
27558
27733
27908
28083
28258
28433
28608
28783
28958
29133
29308
29483
29658
29833
30008
30183
30358
30533
30708
30883
27559
27734
27909
28084
28259
28434
28609
28784
28959
29134
29309
29484
29659
29834
30009
30184
30359
30534
30709
30884
27560
27735
27910
28085
28260
28435
28610
28785
28960
29135
29310
29485
29660
29835
30010
30185
30360
30535
30710
30885
27561
27736
27911
28086
28261
28436
28611
28786
28961
29136
29311
29486
29661
29836
30011
30186
30361
30536
30711
30886
27562
27737
27912
28087
28262
28437
28612
28787
28962
29137
29312
29487
29662
29837
30012
30187
30362
30537
30712
30887
27563
27738
27913
28088
28263
28438
28613
28788
28963
29138
29313
29488
29663
29838
30013
30188
30363
30538
30713
30888
27564
27739
27914
28089
28264
28439
28614
28789
28964
29139
29314
29489
29664
29839
30014
30189
30364
30539
30714
30889
27565
27740
27915
28090
28265
28440
28615
28790
28965
29140
29315
29490
29665
29840
30015
30190
30365
30540
30715
30890
27566
27741
27916
28091
28266
28441
28616
28791
28966
29141
29316
29491
29666
29841
30016
30191
30366
30541
30716
30891
27567
27742
27917
28092
28267
28442
28617
28792
28967
29142
29317
29492
29667
29842
30017
30192
30367
30542
30717
30892
27568
27743
27918
28093
28268
28443
28618
28793
28968
29143
29318
29493
29668
29843
30018
30193
30368
30543
30718
30893
27569
27744
27919
28094
28269
28444
28619
28794
28969
29144
29319
29494
29669
29844
30019
30194
30369
30544
30719
30894
27570
27745
27920
28095
28270
28445
28620
28795
28970
29145
29320
29495
29670
29845
30020
30195
30370
30545
30720
30895
27571
27746
27921
28096
28271
28446
28621
28796
28971
29146
29321
29496
29671
29846
30021
30196
30371
30546
30721
30896
27572
27747
27922
28097
28272
28447
28622
28797
28972
29147
29322
29497
29672
29847
30022
30197
30372
30547
30722
30897
27573
27748
27923
28098
28273
28448
28623
28798
28973
29148
29323
29498
29673
29848
30023
30198
30373
30548
30723
30898
27574
27749
27924
28099
28274
28449
28624
28799
28974
29149
29324
29499
29674
29849
30024
30199
30374
30549
30724
30899
30900
30930
30960
30990
31020
31050
31080
31110
31140
31170
31200
31230
31260
31290
31320
31350
31380
31410
31440
31470
30901
30931
30961
30991
31021
31051
31081
31111
31141
31171
31201
31231
31261
31291
31321
31351
31381
31411
31441
31471
30902
30932
30962
30992
31022
31052
31082
31112
31142
31172
31202
31232
31262
31292
31322
31352
31382
31412
31442
31472
30903
30933
30963
30993
31023
31053
31083
31113
31143
31173
31203
31233
31263
31293
31323
31353
31383
31413
31443
31473
30904
30934
30964
30994
31024
31054
31084
31114
31144
31174
31204
31234
31264
31294
31324
31354
31384
31414
31444
31474
30905
30935
30965
30995
31025
31055
31085
31115
31145
31175
31205
31235
31265
31295
31325
31355
31385
31415
31445
31475
30906
30936
30966
30996
31026
31056
31086
31116
31146
31176
31206
31236
31266
31296
31326
31356
31386
31416
31446
31476
30907
30937
30967
30997
31027
31057
31087
31117
31147
31177
31207
31237
31267
31297
31327
31357
31387
31417
31447
31477
30908
30938
30968
30998
31028
31058
31088
31118
31148
31178
31208
31238
31268
31298
31328
31358
31388
31418
31448
31478
30909
30939
30969
30999
31029
31059
31089
31119
31149
31179
31209
31239
31269
31299
31329
31359
31389
31419
31449
31479
30910
30940
30970
31000
31030
31060
31090
31120
31150
31180
31210
31240
31270
31300
31330
31360
31390
31420
31450
31480
30911
30941
30971
31001
31031
31061
31091
31121
31151
31181
31211
31241
31271
31301
31331
31361
31391
31421
31451
31481
30912
30942
30972
31002
31032
31062
31092
31122
31152
31182
31212
31242
31272
31302
31332
31362
31392
31422
31452
31482
30913
30943
30973
31003
31033
31063
31093
31123
31153
31183
31213
31243
31273
31303
31333
31363
31393
31423
31453
31483
30914
30944
30974
31004
31034
31064
31094
31124
31154
31184
31214
31244
31274
31304
31334
31364
31394
31424
31454
31484
30915
30945
30975
31005
31035
31065
31095
31125
31155
31185
31215
31245
31275
31305
31335
31365
31395
31425
31455
31485
30916
30946
30976
31006
31036
31066
31096
31126
31156
31186
31216
31246
31276
31306
31336
31366
31396
31426
31456
31486
30917
30947
30977
31007
31037
31067
31097
31127
31157
31187
31217
31247
31277
31307
31337
31367
31397
31427
31457
31487
30918
30948
30978
31008
31038
31068
31098
31128
31158
31188
31218
31248
31278
31308
31338
31368
31398
31428
31458
31488
30919
30949
30979
31009
31039
31069
31099
31129
31159
31189
31219
31249
31279
31309
31339
31369
31399
31429
31459
31489
30920
30950
30980
31010
31040
31070
31100
31130
31160
31190
31220
31250
31280
31310
31340
31370
31400
31430
31460
31490
30921
30951
30981
31011
31041
31071
31101
31131
31161
31191
31221
31251
31281
31311
31341
31371
31401
31431
31461
31491
30922
30952
30982
31012
31042
31072
31102
31132
31162
31192
31222
31252
31282
31312
31342
31372
31402
31432
31462
31492
30923
30953
30983
31013
31043
31073
31103
31133
31163
31193
31223
31253
31283
31313
31343
31373
31403
31433
31463
31493
30924
30954
30984
31014
31044
31074
31104
31134
31164
31194
31224
31254
31284
31314
31344
31374
31404
31434
31464
31494
30925
30955
30985
31015
31045
31075
31105
31135
31165
31195
31225
31255
31285
31315
31345
31375
31405
31435
31465
31495
30926
30956
30986
31016
31046
31076
31106
31136
31166
31196
31226
31256
31286
31316
31346
31376
31406
31436
31466
31496
30927
30957
30987
31017
31047
31077
31107
31137
31167
31197
31227
31257
31287
31317
31347
31377
31407
31437
31467
31497
30928
30958
30988
31018
31048
31078
31108
31138
31168
31198
31228
31258
31288
31318
31348
31378
31408
31438
31468
31498
30929
30959
30989
31019
31049
31079
31109
31139
31169
31199
31229
31259
31289
31319
31349
31379
31409
31439
31469
31499
31500
31530
31560
31590
31620
31650
31680
31710
31740
31770
31800
31830
31860
31890
31920
31950
31980
32010
32040
32070
31501
31531
31561
31591
31621
31651
31681
31711
31741
31771
31801
31831
31861
31891
31921
31951
31981
32011
32041
32071
31502
31532
31562
31592
31622
31652
31682
31712
31742
31772
31802
31832
31862
31892
31922
31952
31982
32012
32042
32072
31503
31533
31563
31593
31623
31653
31683
31713
31743
31773
31803
31833
31863
31893
31923
31953
31983
32013
32043
32073
31504
31534
31564
31594
31624
31654
31684
31714
31744
31774
31804
31834
31864
31894
31924
31954
31984
32014
32044
32074
31505
31535
31565
31595
31625
31655
31685
31715
31745
31775
31805
31835
31865
31895
31925
31955
31985
32015
32045
32075
31506
31536
31566
31596
31626
31656
31686
31716
31746
31776
31806
31836
31866
31896
31926
31956
31986
32016
32046
32076
31507
31537
31567
31597
31627
31657
31687
31717
31747
31777
31807
31837
31867
31897
31927
31957
31987
32017
32047
32077
31508
31538
31568
31598
31628
31658
31688
31718
31748
31778
31808
31838
31868
31898
31928
31958
31988
32018
32048
32078
31509
31539
31569
31599
31629
31659
31689
31719
31749
31779
31809
31839
31869
31899
31929
31959
31989
32019
32049
32079
31510
31540
31570
31600
31630
31660
31690
31720
31750
31780
31810
31840
31870
31900
31930
31960
31990
32020
32050
32080
31511
31541
31571
31601
31631
31661
31691
31721
31751
31781
31811
31841
31871
31901
31931
31961
31991
32021
32051
32081
31512
31542
31572
31602
31632
31662
31692
31722
31752
31782
31812
31842
31872
31902
31932
31962
31992
32022
32052
32082
31513
31543
31573
31603
31633
31663
31693
31723
31753
31783
31813
31843
31873
31903
31933
31963
31993
32023
32053
32083
31514
31544
31574
31604
31634
31664
31694
31724
31754
31784
31814
31844
31874
31904
31934
31964
31994
32024
32054
32084
31515
31545
31575
31605
31635
31665
31695
31725
31755
31785
31815
31845
31875
31905
31935
31965
31995
32025
32055
32085
31516
31546
31576
31606
31636
31666
31696
31726
31756
31786
31816
31846
31876
31906
31936
31966
31996
32026
32056
32086
31517
31547
31577
31607
31637
31667
31697
31727
31757
31787
31817
31847
31877
31907
31937
31967
31997
32027
32057
32087
31518
31548
31578
31608
31638
31668
31698
31728
31758
31788
31818
31848
31878
31908
31938
31968
31998
32028
32058
32088
31519
31549
31579
31609
31639
31669
31699
31729
31759
31789
31819
31849
31879
31909
31939
31969
31999
32029
32059
32089
31520
31550
31580
31610
31640
31670
31700
31730
31760
31790
31820
31850
31880
31910
31940
31970
32000
32030
32060
32090
31521
31551
31581
31611
31641
31671
31701
31731
31761
31791
31821
31851
31881
31911
31941
31971
32001
32031
32061
32091
31522
31552
31582
31612
31642
31672
31702
31732
31762
31792
31822
31852
31882
31912
31942
31972
32002
32032
32062
32092
31523
31553
31583
31613
31643
31673
31703
31733
31763
31793
31823
31853
31883
31913
31943
31973
32003
32033
32063
32093
31524
31554
31584
31614
31644
31674
31704
31734
31764
31794
31824
31854
31884
31914
31944
31974
32004
32034
32064
32094
31525
31555
31585
31615
31645
31675
31705
31735
31765
31795
31825
31855
31885
31915
31945
31975
32005
32035
32065
32095
31526
31556
31586
31616
31646
31676
31706
31736
31766
31796
31826
31856
31886
31916
31946
31976
32006
32036
32066
32096
31527
31557
31587
31617
31647
31677
31707
31737
31767
31797
31827
31857
31887
31917
31947
31977
32007
32037
32067
32097
31528
31558
31588
31618
31648
31678
31708
31738
31768
31798
31828
31858
31888
31918
31948
31978
32008
32038
32068
32098
31529
31559
31589
31619
31649
31679
31709
31739
31769
31799
31829
31859
31889
31919
31949
31979
32009
32039
32069
32099
32100
32250
32400
32550
32700
32850
33000
33150
33300
33450
33600
33750
33900
34050
34200
34350
34500
34650
34800
34950
35100
35250
35400
35550
35700
35850
36000
36150
36300
36450
32101
32251
32401
32551
32701
32851
33001
33151
33301
33451
33601
33751
33901
34051
34201
34351
34501
34651
34801
34951
35101
35251
35401
35551
35701
35851
36001
36151
36301
36451
32102
32252
32402
32552
32702
32852
33002
33152
33302
33452
33602
33752
33902
34052
34202
34352
34502
34652
34802
34952
35102
35252
35402
35552
35702
35852
36002
36152
36302
36452
32103
32253
32403
32553
32703
32853
33003
33153
33303
33453
33603
33753
33903
34053
34203
34353
34503
34653
34803
34953
35103
35253
35403
35553
35703
35853
36003
36153
36303
36453
32104
32254
32404
32554
32704
32854
33004
33154
33304
33454
33604
33754
33904
34054
34204
34354
34504
34654
34804
34954
35104
35254
35404
35554
35704
35854
36004
36154
36304
36454
32105
32255
32405
32555
32705
32855
33005
33155
33305
33455
33605
33755
33905
34055
34205
34355
34505
34655
34805
34955
35105
35255
35405
35555
35705
35855
36005
36155
36305
36455
32106
32256
32406
32556
32706
32856
33006
33156
33306
33456
33606
33756
33906
34056
34206
34356
34506
34656
34806
34956
35106
35256
35406
35556
35706
35856
36006
36156
36306
36456
32107
32257
32407
32557
32707
32857
33007
33157
33307
33457
33607
33757
33907
34057
34207
34357
34507
34657
34807
34957
35107
35257
35407
35557
35707
35857
36007
36157
36307
36457
32108
32258
32408
32558
32708
32858
33008
33158
33308
33458
33608
33758
33908
34058
34208
34358
34508
34658
34808
34958
35108
35258
35408
35558
35708
35858
36008
36158
36308
36458
32109
32259
32409
32559
32709
32859
33009
33159
33309
33459
33609
33759
33909
34059
34209
34359
34509
34659
34809
34959
35109
35259
35409
35559
35709
35859
36009
36159
36309
36459
32110
32260
32410
32560
32710
32860
33010
33160
33310
33460
33610
33760
33910
34060
34210
34360
34510
34660
34810
34960
35110
35260
35410
35560
35710
35860
36010
36160
36310
36460
32111
32261
32411
32561
32711
32861
33011
33161
33311
33461
33611
33761
33911
34061
34211
34361
34511
34661
34811
34961
35111
35261
35411
35561
35711
35861
36011
36161
36311
36461
32112
32262
32412
32562
32712
32862
33012
33162
33312
33462
33612
33762
33912
34062
34212
34362
34512
34662
34812
34962
35112
35262
35412
35562
35712
35862
36012
36162
36312
36462
32113
32263
32413
32563
32713
32863
33013
33163
33313
33463
33613
33763
33913
34063
34213
34363
34513
34663
34813
34963
35113
35263
35413
35563
35713
35863
36013
36163
36313
36463
32114
32264
32414
32564
32714
32864
33014
33164
33314
33464
33614
33764
33914
34064
34214
34364
34514
34664
34814
34964
35114
35264
35414
35564
35714
35864
36014
36164
36314
36464
32115
32265
32415
32565
32715
32865
33015
33165
33315
33465
33615
33765
33915
34065
34215
34365
34515
34665
34815
34965
35115
35265
35415
35565
35715
35865
36015
36165
36315
36465
32116
32266
32416
32566
32716
32866
33016
33166
33316
33466
33616
33766
33916
34066
34216
34366
34516
34666
34816
34966
35116
35266
35416
35566
35716
35866
36016
36166
36316
36466
32117
32267
32417
32567
32717
32867
33017
33167
33317
33467
33617
33767
33917
34067
34217
34367
34517
34667
34817
34967
35117
35267
35417
35567
35717
35867
36017
36167
36317
36467
32118
32268
32418
32568
32718
32868
33018
33168
33318
33468
33618
33768
33918
34068
34218
34368
34518
34668
34818
34968
35118
35268
35418
35568
35718
35868
36018
36168
36318
36468
32119
32269
32419
32569
32719
32869
33019
33169
33319
33469
33619
33769
33919
34069
34219
34369
34519
34669
34819
34969
35119
35269
35419
35569
35719
35869
36019
36169
36319
36469
32120
32270
32420
32570
32720
32870
33020
33170
33320
33470
33620
33770
33920
34070
34220
34370
34520
34670
34820
34970
35120
35270
35420
35570
35720
35870
36020
36170
36320
36470
32121
32271
32421
32571
32721
32871
33021
33171
33321
33471
33621
33771
33921
34071
34221
34371
34521
34671
34821
34971
35121
35271
35421
35571
35721
35871
36021
36171
36321
36471
32122
32272
32422
32572
32722
32872
33022
33172
33322
33472
33622
33772
33922
34072
34222
34372
34522
34672
34822
34972
35122
35272
35422
35572
35722
35872
36022
36172
36322
36472
32123
32273
32423
32573
32723
32873
33023
33173
33323
33473
33623
33773
33923
34073
34223
34373
34523
34673
34823
34973
35123
35273
35423
35573
35723
35873
36023
36173
36323
36473
32124
32274
32424
32574
32724
32874
33024
33174
33324
33474
33624
33774
33924
34074
34224
34374
34524
34674
34824
34974
35124
35274
35424
35574
35724
35874
36024
36174
36324
36474
32125
32275
32425
32575
32725
32875
33025
33175
33325
33475
33625
33775
33925
34075
34225
34375
34525
34675
34825
34975
35125
35275
35425
35575
35725
35875
36025
36175
36325
36475
32126
32276
32426
32576
32726
32876
33026
33176
33326
33476
33626
33776
33926
34076
34226
34376
34526
34676
34826
34976
35126
35276
35426
35576
35726
35876
36026
36176
36326
36476
32127
32277
32427
32577
32727
32877
33027
33177
33327
33477
33627
33777
33927
34077
34227
34377
34527
34677
34827
34977
35127
35277
35427
35577
35727
35877
36027
36177
36327
36477
32128
32278
32428
32578
32728
32878
33028
33178
33328
33478
33628
33778
33928
34078
34228
34378
34528
34678
34828
34978
35128
35278
35428
35578
35728
35878
36028
36178
36328
36478
32129
32279
32429
32579
32729
32879
33029
33179
33329
33479
33629
33779
33929
34079
34229
34379
34529
34679
34829
34979
35129
35279
35429
35579
35729
35879
36029
36179
36329
36479
32130
32280
32430
32580
32730
32880
33030
33180
33330
33480
33630
33780
33930
34080
34230
34380
34530
34680
34830
34980
35130
35280
35430
35580
35730
35880
36030
36180
36330
36480
32131
32281
32431
32581
32731
32881
33031
33181
33331
33481
33631
33781
33931
34081
34231
34381
34531
34681
34831
34981
35131
35281
35431
35581
35731
35881
36031
36181
36331
36481
32132
32282
32432
32582
32732
32882
33032
33182
33332
33482
33632
33782
33932
34082
34232
34382
34532
34682
34832
34982
35132
35282
35432
35582
35732
35882
36032
36182
36332
36482
32133
32283
32433
32583
32733
32883
33033
33183
33333
33483
33633
33783
33933
34083
34233
34383
34533
34683
34833
34983
35133
35283
35433
35583
35733
35883
36033
36183
36333
36483
32134
32284
32434
32584
32734
32884
33034
33184
33334
33484
33634
33784
33934
34084
34234
34384
34534
34684
34834
34984
35134
35284
35434
35584
35734
35884
36034
36184
36334
36484
32135
32285
32435
32585
32735
32885
33035
33185
33335
33485
33635
33785
33935
34085
34235
34385
34535
34685
34835
34985
35135
35285
35435
35585
35735
35885
36035
36185
36335
36485
32136
32286
32436
32586
32736
32886
33036
33186
33336
33486
33636
33786
33936
34086
34236
34386
34536
34686
34836
34986
35136
35286
35436
35586
35736
35886
36036
36186
36336
36486
32137
32287
32437
32587
32737
32887
33037
33187
33337
33487
33637
33787
33937
34087
34237
34387
34537
34687
34837
34987
35137
35287
35437
35587
35737
35887
36037
36187
36337
36487
32138
32288
32438
32588
32738
32888
33038
33188
33338
33488
33638
33788
33938
34088
34238
34388
34538
34688
34838
34988
35138
35288
35438
35588
35738
35888
36038
36188
36338
36488
32139
32289
32439
32589
32739
32889
33039
33189
33339
33489
33639
33789
33939
34089
34239
34389
34539
34689
34839
34989
35139
35289
35439
35589
35739
35889
36039
36189
36339
36489
32140
32290
32440
32590
32740
32890
33040
33190
33340
33490
33640
33790
33940
34090
34240
34390
34540
34690
34840
34990
35140
35290
35440
35590
35740
35890
36040
36190
36340
36490
32141
32291
32441
32591
32741
32891
33041
33191
33341
33491
33641
33791
33941
34091
34241
34391
34541
34691
34841
34991
35141
35291
35441
35591
35741
35891
36041
36191
36341
36491
32142
32292
32442
32592
32742
32892
33042
33192
33342
33492
33642
33792
33942
34092
34242
34392
34542
34692
34842
34992
35142
35292
35442
35592
35742
35892
36042
36192
36342
36492
32143
32293
32443
32593
32743
32893
33043
33193
33343
33493
33643
33793
33943
34093
34243
34393
34543
34693
34843
34993
35143
35293
35443
35593
35743
35893
36043
36193
36343
36493
32144
32294
32444
32594
32744
32894
33044
33194
33344
33494
33644
33794
33944
34094
34244
34394
34544
34694
34844
34994
35144
35294
35444
35594
35744
35894
36044
36194
36344
36494
32145
32295
32445
32595
32745
32895
33045
33195
33345
33495
33645
33795
33945
34095
34245
34395
34545
34695
34845
34995
35145
35295
35445
35595
35745
35895
36045
36195
36345
36495
32146
32296
32446
32596
32746
32896
33046
33196
33346
33496
33646
33796
33946
34096
34246
34396
34546
34696
34846
34996
35146
35296
35446
35596
35746
35896
36046
36196
36346
36496
32147
32297
32447
32597
32747
32897
33047
33197
33347
33497
33647
33797
33947
34097
34247
34397
34547
34697
34847
34997
35147
35297
35447
35597
35747
35897
36047
36197
36347
36497
32148
32298
32448
32598
32748
32898
33048
33198
33348
33498
33648
33798
33948
34098
34248
34398
34548
34698
34848
34998
35148
35298
35448
35598
35748
35898
36048
36198
36348
36498
32149
32299
32449
32599
32749
32899
33049
33199
33349
33499
33649
33799
33949
34099
34249
34399
34549
34699
34849
34999
35149
35299
35449
35599
35749
35899
36049
36199
36349
36499
32150
32300
32450
32600
32750
32900
33050
33200
33350
33500
33650
33800
33950
34100
34250
34400
34550
34700
34850
35000
35150
35300
35450
35600
35750
35900
36050
36200
36350
36500
32151
32301
32451
32601
32751
32901
33051
33201
33351
33501
33651
33801
33951
34101
34251
34401
34551
34701
34851
35001
35151
35301
35451
35601
35751
35901
36051
36201
36351
36501
32152
32302
32452
32602
32752
32902
33052
33202
33352
33502
33652
33802
33952
34102
34252
34402
34552
34702
34852
35002
35152
35302
35452
35602
35752
35902
36052
36202
36352
36502
32153
32303
32453
32603
32753
32903
33053
33203
33353
33503
33653
33803
33953
34103
34253
34403
34553
34703
34853
35003
35153
35303
35453
35603
35753
35903
36053
36203
36353
36503
32154
32304
32454
32604
32754
32904
33054
33204
33354
33504
33654
33804
33954
34104
34254
34404
34554
34704
34854
35004
35154
35304
35454
35604
35754
35904
36054
36204
36354
36504
32155
32305
32455
32605
32755
32905
33055
33205
33355
33505
33655
33805
33955
34105
34255
34405
34555
34705
34855
35005
35155
35305
35455
35605
35755
35905
36055
36205
36355
36505
32156
32306
32456
32606
32756
32906
33056
33206
33356
33506
33656
33806
33956
34106
34256
34406
34556
34706
34856
35006
35156
35306
35456
35606
35756
35906
36056
36206
36356
36506
32157
32307
32457
32607
32757
32907
33057
33207
33357
33507
33657
33807
33957
34107
34257
34407
34557
34707
34857
35007
35157
35307
35457
35607
35757
35907
36057
36207
36357
36507
32158
32308
32458
32608
32758
32908
33058
33208
33358
33508
33658
33808
33958
34108
34258
34408
34558
34708
34858
35008
35158
35308
35458
35608
35758
35908
36058
36208
36358
36508
32159
32309
32459
32609
32759
32909
33059
33209
33359
33509
33659
33809
33959
34109
34259
34409
34559
34709
34859
35009
35159
35309
35459
35609
35759
35909
36059
36209
36359
36509
32160
32310
32460
32610
32760
32910
33060
33210
33360
33510
33660
33810
33960
34110
34260
34410
34560
34710
34860
35010
35160
35310
35460
35610
35760
35910
36060
36210
36360
36510
32161
32311
32461
32611
32761
32911
33061
33211
33361
33511
33661
33811
33961
34111
34261
34411
34561
34711
34861
35011
35161
35311
35461
35611
35761
35911
36061
36211
36361
36511
32162
32312
32462
32612
32762
32912
33062
33212
33362
33512
33662
33812
33962
34112
34262
34412
34562
34712
34862
35012
35162
35312
35462
35612
35762
35912
36062
36212
36362
36512
32163
32313
32463
32613
32763
32913
33063
33213
33363
33513
33663
33813
33963
34113
34263
34413
34563
34713
34863
35013
35163
35313
35463
35613
35763
35913
36063
36213
36363
36513
32164
32314
32464
32614
32764
32914
33064
33214
33364
33514
33664
33814
33964
34114
34264
34414
34564
34714
34864
35014
35164
35314
35464
35614
35764
35914
36064
36214
36364
36514
32165
32315
32465
32615
32765
32915
33065
33215
33365
33515
33665
33815
33965
34115
34265
34415
34565
34715
34865
35015
35165
35315
35465
35615
35765
35915
36065
36215
36365
36515
32166
32316
32466
32616
32766
32916
33066
33216
33366
33516
33666
33816
33966
34116
34266
34416
34566
34716
34866
35016
35166
35316
35466
35616
35766
35916
36066
36216
36366
36516
32167
32317
32467
32617
32767
32917
33067
33217
33367
33517
33667
33817
33967
34117
34267
34417
34567
34717
34867
35017
35167
35317
35467
35617
35767
35917
36067
36217
36367
36517
32168
32318
32468
32618
32768
32918
33068
33218
33368
33518
33668
33818
33968
34118
34268
34418
34568
34718
34868
35018
35168
35318
35468
35618
35768
35918
36068
36218
36368
36518
32169
32319
32469
32619
32769
32919
33069
33219
33369
33519
33669
33819
33969
34119
34269
34419
34569
34719
34869
35019
35169
35319
35469
35619
35769
35919
36069
36219
36369
36519
32170
32320
32470
32620
32770
32920
33070
33220
33370
33520
33670
33820
33970
34120
34270
34420
34570
34720
34870
35020
35170
35320
35470
35620
35770
35920
36070
36220
36370
36520
32171
32321
32471
32621
32771
32921
33071
33221
33371
33521
33671
33821
33971
34121
34271
34421
34571
34721
34871
35021
35171
35321
35471
35621
35771
35921
36071
36221
36371
36521
32172
32322
32472
32622
32772
32922
33072
33222
33372
33522
33672
33822
33972
34122
34272
34422
34572
34722
34872
35022
35172
35322
35472
35622
35772
35922
36072
36222
36372
36522
32173
32323
32473
32623
32773
32923
33073
33223
33373
33523
33673
33823
33973
34123
34273
34423
34573
34723
34873
35023
35173
35323
35473
35623
35773
35923
36073
36223
36373
36523
32174
32324
32474
32624
32774
32924
33074
33224
33374
33524
33674
33824
33974
34124
34274
34424
34574
34724
34874
35024
35174
35324
35474
35624
35774
35924
36074
36224
36374
36524
32175
32325
32475
32625
32775
32925
33075
33225
33375
33525
33675
33825
33975
34125
34275
34425
34575
34725
34875
35025
35175
35325
35475
35625
35775
35925
36075
36225
36375
36525
32176
32326
32476
32626
32776
32926
33076
33226
33376
33526
33676
33826
33976
34126
34276
34426
34576
34726
34876
35026
35176
35326
35476
35626
35776
35926
36076
36226
36376
36526
32177
32327
32477
32627
32777
32927
33077
33227
33377
33527
33677
33827
33977
34127
34277
34427
34577
34727
34877
35027
35177
35327
35477
35627
35777
35927
36077
36227
36377
36527
32178
32328
32478
32628
32778
32928
33078
33228
33378
33528
33678
33828
33978
34128
34278
34428
34578
34728
34878
35028
35178
35328
35478
35628
35778
35928
36078
36228
36378
36528
32179
32329
32479
32629
32779
32929
33079
33229
33379
33529
33679
33829
33979
34129
34279
34429
34579
34729
34879
35029
35179
35329
35479
35629
35779
35929
36079
36229
36379
36529
32180
32330
32480
32630
32780
32930
33080
33230
33380
33530
33680
33830
33980
34130
34280
34430
34580
34730
34880
35030
35180
35330
35480
35630
35780
35930
36080
36230
36380
36530
32181
32331
32481
32631
32781
32931
33081
33231
33381
33531
33681
33831
33981
34131
34281
34431
34581
34731
34881
35031
35181
35331
35481
35631
35781
35931
36081
36231
36381
36531
32182
32332
32482
32632
32782
32932
33082
33232
33382
33532
33682
33832
33982
34132
34282
34432
34582
34732
34882
35032
35182
35332
35482
35632
35782
35932
36082
36232
36382
36532
32183
32333
32483
32633
32783
32933
33083
33233
33383
33533
33683
33833
33983
34133
34283
34433
34583
34733
34883
35033
35183
35333
35483
35633
35783
35933
36083
36233
36383
36533
32184
32334
32484
32634
32784
32934
33084
33234
33384
33534
33684
33834
33984
34134
34284
34434
34584
34734
34884
35034
35184
35334
35484
35634
35784
35934
36084
36234
36384
36534
32185
32335
32485
32635
32785
32935
33085
33235
33385
33535
33685
33835
33985
34135
34285
34435
34585
34735
34885
35035
35185
35335
35485
35635
35785
35935
36085
36235
36385
36535
32186
32336
32486
32636
32786
32936
33086
33236
33386
33536
33686
33836
33986
34136
34286
34436
34586
34736
34886
35036
35186
35336
35486
35636
35786
35936
36086
36236
36386
36536
32187
32337
32487
32637
32787
32937
33087
33237
33387
33537
33687
33837
33987
34137
34287
34437
34587
34737
34887
35037
35187
35337
35487
35637
35787
35937
36087
36237
36387
36537
32188
32338
32488
32638
32788
32938
33088
33238
33388
33538
33688
33838
33988
34138
34288
34438
34588
34738
34888
35038
35188
35338
35488
35638
35788
35938
36088
36238
36388
36538
32189
32339
32489
32639
32789
32939
33089
33239
33389
33539
33689
33839
33989
34139
34289
34439
34589
34739
34889
35039
35189
35339
35489
35639
35789
35939
36089
36239
36389
36539
32190
32340
32490
32640
32790
32940
33090
33240
33390
33540
33690
33840
33990
34140
34290
34440
34590
34740
34890
35040
35190
35340
35490
35640
35790
35940
36090
36240
36390
36540
32191
32341
32491
32641
32791
32941
33091
33241
33391
33541
33691
33841
33991
34141
34291
34441
34591
34741
34891
35041
35191
35341
35491
35641
35791
35941
36091
36241
36391
36541
32192
32342
32492
32642
32792
32942
33092
33242
33392
33542
33692
33842
33992
34142
34292
34442
34592
34742
34892
35042
35192
35342
35492
35642
35792
35942
36092
36242
36392
36542
32193
32343
32493
32643
32793
32943
33093
33243
33393
33543
33693
33843
33993
34143
34293
34443
34593
34743
34893
35043
35193
35343
35493
35643
35793
35943
36093
36243
36393
36543
32194
32344
32494
32644
32794
32944
33094
33244
33394
33544
33694
33844
33994
34144
34294
34444
34594
34744
34894
35044
35194
35344
35494
35644
35794
35944
36094
36244
36394
36544
32195
32345
32495
32645
32795
32945
33095
33245
33395
33545
33695
33845
33995
34145
34295
34445
34595
34745
34895
35045
35195
35345
35495
35645
35795
35945
36095
36245
36395
36545
32196
32346
32496
32646
32796
32946
33096
33246
33396
33546
33696
33846
33996
34146
34296
34446
34596
34746
34896
35046
35196
35346
35496
35646
35796
35946
36096
36246
36396
36546
32197
32347
32497
32647
32797
32947
33097
33247
33397
33547
33697
33847
33997
34147
34297
34447
34597
34747
34897
35047
35197
35347
35497
35647
35797
35947
36097
36247
36397
36547
32198
32348
32498
32648
32798
32948
33098
33248
33398
33548
33698
33848
33998
34148
34298
34448
34598
34748
34898
35048
35198
35348
35498
35648
35798
35948
36098
36248
36398
36548
32199
32349
32499
32649
32799
32949
33099
33249
33399
33549
33699
33849
33999
34149
34299
34449
34599
34749
34899
35049
35199
35349
35499
35649
35799
35949
36099
36249
36399
36549
32200
32350
32500
32650
32800
32950
33100
33250
33400
33550
33700
33850
34000
34150
34300
34450
34600
34750
34900
35050
35200
35350
35500
35650
35800
35950
36100
36250
36400
36550
32201
32351
32501
32651
32801
32951
33101
33251
33401
33551
33701
33851
34001
34151
34301
34451
34601
34751
34901
35051
35201
35351
35501
35651
35801
35951
36101
36251
36401
36551
32202
32352
32502
32652
32802
32952
33102
33252
33402
33552
33702
33852
34002
34152
34302
34452
34602
34752
34902
35052
35202
35352
35502
35652
35802
35952
36102
36252
36402
36552
32203
32353
32503
32653
32803
32953
33103
33253
33403
33553
33703
33853
34003
34153
34303
34453
34603
34753
34903
35053
35203
35353
35503
35653
35803
35953
36103
36253
36403
36553
32204
32354
32504
32654
32804
32954
33104
33254
33404
33554
33704
33854
34004
34154
34304
34454
34604
34754
34904
35054
35204
35354
35504
35654
35804
35954
36104
36254
36404
36554
32205
32355
32505
32655
32805
32955
33105
33255
33405
33555
33705
33855
34005
34155
34305
34455
34605
34755
34905
35055
35205
35355
35505
35655
35805
35955
36105
36255
36405
36555
32206
32356
32506
32656
32806
32956
33106
33256
33406
33556
33706
33856
34006
34156
34306
34456
34606
34756
34906
35056
35206
35356
35506
35656
35806
35956
36106
36256
36406
36556
32207
32357
32507
32657
32807
32957
33107
33257
33407
33557
33707
33857
34007
34157
34307
34457
34607
34757
34907
35057
35207
35357
35507
35657
35807
35957
36107
36257
36407
36557
32208
32358
32508
32658
32808
32958
33108
33258
33408
33558
33708
33858
34008
34158
34308
34458
34608
34758
34908
35058
35208
35358
35508
35658
35808
35958
36108
36258
36408
36558
32209
32359
32509
32659
32809
32959
33109
33259
33409
33559
33709
33859
34009
34159
34309
34459
34609
34759
34909
35059
35209
35359
35509
35659
35809
35959
36109
36259
36409
36559
32210
32360
32510
32660
32810
32960
33110
33260
33410
33560
33710
33860
34010
34160
34310
34460
34610
34760
34910
35060
35210
35360
35510
35660
35810
35960
36110
36260
36410
36560
32211
32361
32511
32661
32811
32961
33111
33261
33411
33561
33711
33861
34011
34161
34311
34461
34611
34761
34911
35061
35211
35361
35511
35661
35811
35961
36111
36261
36411
36561
32212
32362
32512
32662
32812
32962
33112
33262
33412
33562
33712
33862
34012
34162
34312
34462
34612
34762
34912
35062
35212
35362
35512
35662
35812
35962
36112
36262
36412
36562
32213
32363
32513
32663
32813
32963
33113
33263
33413
33563
33713
33863
34013
34163
34313
34463
34613
34763
34913
35063
35213
35363
35513
35663
35813
35963
36113
36263
36413
36563
32214
32364
32514
32664
32814
32964
33114
33264
33414
33564
33714
33864
34014
34164
34314
34464
34614
34764
34914
35064
35214
35364
35514
35664
35814
35964
36114
36264
36414
36564
32215
32365
32515
32665
32815
32965
33115
33265
33415
33565
33715
33865
34015
34165
34315
34465
34615
34765
34915
35065
35215
35365
35515
35665
35815
35965
36115
36265
36415
36565
32216
32366
32516
32666
32816
32966
33116
33266
33416
33566
33716
33866
34016
34166
34316
34466
34616
34766
34916
35066
35216
35366
35516
35666
35816
35966
36116
36266
36416
36566
32217
32367
32517
32667
32817
32967
33117
33267
33417
33567
33717
33867
34017
34167
34317
34467
34617
34767
34917
35067
35217
35367
35517
35667
35817
35967
36117
36267
36417
36567
32218
32368
32518
32668
32818
32968
33118
33268
33418
33568
33718
33868
34018
34168
34318
34468
34618
34768
34918
35068
35218
35368
35518
35668
35818
35968
36118
36268
36418
36568
32219
32369
32519
32669
32819
32969
33119
33269
33419
33569
33719
33869
34019
34169
34319
34469
34619
34769
34919
35069
35219
35369
35519
35669
35819
35969
36119
36269
36419
36569
32220
32370
32520
32670
32820
32970
33120
33270
33420
33570
33720
33870
34020
34170
34320
34470
34620
34770
34920
35070
35220
35370
35520
35670
35820
35970
36120
36270
36420
36570
32221
32371
32521
32671
32821
32971
33121
33271
33421
33571
33721
33871
34021
34171
34321
34471
34621
34771
34921
35071
35221
35371
35521
35671
35821
35971
36121
36271
36421
36571
32222
32372
32522
32672
32822
32972
33122
33272
33422
33572
33722
33872
34022
34172
34322
34472
34622
34772
34922
35072
35222
35372
35522
35672
35822
35972
36122
36272
36422
36572
32223
32373
32523
32673
32823
32973
33123
33273
33423
33573
33723
33873
34023
34173
34323
34473
34623
34773
34923
35073
35223
35373
35523
35673
35823
35973
36123
36273
36423
36573
32224
32374
32524
32674
32824
32974
33124
33274
33424
33574
33724
33874
34024
34174
34324
34474
34624
34774
34924
35074
35224
35374
35524
35674
35824
35974
36124
36274
36424
36574
32225
32375
32525
32675
32825
32975
33125
33275
33425
33575
33725
33875
34025
34175
34325
34475
34625
34775
34925
35075
35225
35375
35525
35675
35825
35975
36125
36275
36425
36575
32226
32376
32526
32676
32826
32976
33126
33276
33426
33576
33726
33876
34026
34176
34326
34476
34626
34776
34926
35076
35226
35376
35526
35676
35826
35976
36126
36276
36426
36576
32227
32377
32527
32677
32827
32977
33127
33277
33427
33577
33727
33877
34027
34177
34327
34477
34627
34777
34927
35077
35227
35377
35527
35677
35827
35977
36127
36277
36427
36577
32228
32378
32528
32678
32828
32978
33128
33278
33428
33578
33728
33878
34028
34178
34328
34478
34628
34778
34928
35078
35228
35378
35528
35678
35828
35978
36128
36278
36428
36578
32229
32379
32529
32679
32829
32979
33129
33279
33429
33579
33729
33879
34029
34179
34329
34479
34629
34779
34929
35079
35229
35379
35529
35679
35829
35979
36129
36279
36429
36579
32230
32380
32530
32680
32830
32980
33130
33280
33430
33580
33730
33880
34030
34180
34330
34480
34630
34780
34930
35080
35230
35380
35530
35680
35830
35980
36130
36280
36430
36580
32231
32381
32531
32681
32831
32981
33131
33281
33431
33581
33731
33881
34031
34181
34331
34481
34631
34781
34931
35081
35231
35381
35531
35681
35831
35981
36131
36281
36431
36581
32232
32382
32532
32682
32832
32982
33132
33282
33432
33582
33732
33882
34032
34182
34332
34482
34632
34782
34932
35082
35232
35382
35532
35682
35832
35982
36132
36282
36432
36582
32233
32383
32533
32683
32833
32983
33133
33283
33433
33583
33733
33883
34033
34183
34333
34483
34633
34783
34933
35083
35233
35383
35533
35683
35833
35983
36133
36283
36433
36583
32234
32384
32534
32684
32834
32984
33134
33284
33434
33584
33734
33884
34034
34184
34334
34484
34634
34784
34934
35084
35234
35384
35534
35684
35834
35984
36134
36284
36434
36584
32235
32385
32535
32685
32835
32985
33135
33285
33435
33585
33735
33885
34035
34185
34335
34485
34635
34785
34935
35085
35235
35385
35535
35685
35835
35985
36135
36285
36435
36585
32236
32386
32536
32686
32836
32986
33136
33286
33436
33586
33736
33886
34036
34186
34336
34486
34636
34786
34936
35086
35236
35386
35536
35686
35836
35986
36136
36286
36436
36586
32237
32387
32537
32687
32837
32987
33137
33287
33437
33587
33737
33887
34037
34187
34337
34487
34637
34787
34937
35087
35237
35387
35537
35687
35837
35987
36137
36287
36437
36587
32238
32388
32538
32688
32838
32988
33138
33288
33438
33588
33738
33888
34038
34188
34338
34488
34638
34788
34938
35088
35238
35388
35538
35688
35838
35988
36138
36288
36438
36588
32239
32389
32539
32689
32839
32989
33139
33289
33439
33589
33739
33889
34039
34189
34339
34489
34639
34789
34939
35089
35239
35389
35539
35689
35839
35989
36139
36289
36439
36589
32240
32390
32540
32690
32840
32990
33140
33290
33440
33590
33740
33890
34040
34190
34340
34490
34640
34790
34940
35090
35240
35390
35540
35690
35840
35990
36140
36290
36440
36590
32241
32391
32541
32691
32841
32991
33141
33291
33441
33591
33741
33891
34041
34191
34341
34491
34641
34791
34941
35091
35241
35391
35541
35691
35841
35991
36141
36291
36441
36591
32242
32392
32542
32692
32842
32992
33142
33292
33442
33592
33742
33892
34042
34192
34342
34492
34642
34792
34942
35092
35242
35392
35542
35692
35842
35992
36142
36292
36442
36592
32243
32393
32543
32693
32843
32993
33143
33293
33443
33593
33743
33893
34043
34193
34343
34493
34643
34793
34943
35093
35243
35393
35543
35693
35843
35993
36143
36293
36443
36593
32244
32394
32544
32694
32844
32994
33144
33294
33444
33594
33744
33894
34044
34194
34344
34494
34644
34794
34944
35094
35244
35394
35544
35694
35844
35994
36144
36294
36444
36594
32245
32395
32545
32695
32845
32995
33145
33295
33445
33595
33745
33895
34045
34195
34345
34495
34645
34795
34945
35095
35245
35395
35545
35695
35845
35995
36145
36295
36445
36595
32246
32396
32546
32696
32846
32996
33146
33296
33446
33596
33746
33896
34046
34196
34346
34496
34646
34796
34946
35096
35246
35396
35546
35696
35846
35996
36146
36296
36446
36596
32247
32397
32547
32697
32847
32997
33147
33297
33447
33597
33747
33897
34047
34197
34347
34497
34647
34797
34947
35097
35247
35397
35547
35697
35847
35997
36147
36297
36447
36597
32248
32398
32548
32698
32848
32998
33148
33298
33448
33598
33748
33898
34048
34198
34348
34498
34648
34798
34948
35098
35248
35398
35548
35698
35848
35998
36148
36298
36448
36598
32249
32399
32549
32699
32849
32999
33149
33299
33449
33599
33749
33899
34049
34199
34349
34499
34649
34799
34949
35099
35249
35399
35549
35699
35849
35999
36149
36299
36449
36599
36600
36750
36900
37050
37200
37350
37500
37650
37800
37950
38100
38250
38400
38550
38700
38850
39000
39150
39300
39450
39600
39750
39900
40050
40200
40350
40500
40650
40800
40950
36601
36751
36901
37051
37201
37351
37501
37651
37801
37951
38101
38251
38401
38551
38701
38851
39001
39151
39301
39451
39601
39751
39901
40051
40201
40351
40501
40651
40801
40951
36602
36752
36902
37052
37202
37352
37502
37652
37802
37952
38102
38252
38402
38552
38702
38852
39002
39152
39302
39452
39602
39752
39902
40052
40202
40352
40502
40652
40802
40952
36603
36753
36903
37053
37203
37353
37503
37653
37803
37953
38103
38253
38403
38553
38703
38853
39003
39153
39303
39453
39603
39753
39903
40053
40203
40353
40503
40653
40803
40953
36604
36754
36904
37054
37204
37354
37504
37654
37804
37954
38104
38254
38404
38554
38704
38854
39004
39154
39304
39454
39604
39754
39904
40054
40204
40354
40504
40654
40804
40954
36605
36755
36905
37055
37205
37355
37505
37655
37805
37955
38105
38255
38405
38555
38705
38855
39005
39155
39305
39455
39605
39755
39905
40055
40205
40355
40505
40655
40805
40955
36606
36756
36906
37056
37206
37356
37506
37656
37806
37956
38106
38256
38406
38556
38706
38856
39006
39156
39306
39456
39606
39756
39906
40056
40206
40356
40506
40656
40806
40956
36607
36757
36907
37057
37207
37357
37507
37657
37807
37957
38107
38257
38407
38557
38707
38857
39007
39157
39307
39457
39607
39757
39907
40057
40207
40357
40507
40657
40807
40957
36608
36758
36908
37058
37208
37358
37508
37658
37808
37958
38108
38258
38408
38558
38708
38858
39008
39158
39308
39458
39608
39758
39908
40058
40208
40358
40508
40658
40808
40958
36609
36759
36909
37059
37209
37359
37509
37659
37809
37959
38109
38259
38409
38559
38709
38859
39009
39159
39309
39459
39609
39759
39909
40059
40209
40359
40509
40659
40809
40959
36610
36760
36910
37060
37210
37360
37510
37660
37810
37960
38110
38260
38410
38560
38710
38860
39010
39160
39310
39460
39610
39760
39910
40060
40210
40360
40510
40660
40810
40960
36611
36761
36911
37061
37211
37361
37511
37661
37811
37961
38111
38261
38411
38561
38711
38861
39011
39161
39311
39461
39611
39761
39911
40061
40211
40361
40511
40661
40811
40961
36612
36762
36912
37062
37212
37362
37512
37662
37812
37962
38112
38262
38412
38562
38712
38862
39012
39162
39312
39462
39612
39762
39912
40062
40212
40362
40512
40662
40812
40962
36613
36763
36913
37063
37213
37363
37513
37663
37813
37963
38113
38263
38413
38563
38713
38863
39013
39163
39313
39463
39613
39763
39913
40063
40213
40363
40513
40663
40813
40963
36614
36764
36914
37064
37214
37364
37514
37664
37814
37964
38114
38264
38414
38564
38714
38864
39014
39164
39314
39464
39614
39764
39914
40064
40214
40364
40514
40664
40814
40964
36615
36765
36915
37065
37215
37365
37515
37665
37815
37965
38115
38265
38415
38565
38715
38865
39015
39165
39315
39465
39615
39765
39915
40065
40215
40365
40515
40665
40815
40965
36616
36766
36916
37066
37216
37366
37516
37666
37816
37966
38116
38266
38416
38566
38716
38866
39016
39166
39316
39466
39616
39766
39916
40066
40216
40366
40516
40666
40816
40966
36617
36767
36917
37067
37217
37367
37517
37667
37817
37967
38117
38267
38417
38567
38717
38867
39017
39167
39317
39467
39617
39767
39917
40067
40217
40367
40517
40667
40817
40967
36618
36768
36918
37068
37218
37368
37518
37668
37818
37968
38118
38268
38418
38568
38718
38868
39018
39168
39318
39468
39618
39768
39918
40068
40218
40368
40518
40668
40818
40968
36619
36769
36919
37069
37219
37369
37519
37669
37819
37969
38119
38269
38419
38569
38719
38869
39019
39169
39319
39469
39619
39769
39919
40069
40219
40369
40519
40669
40819
40969
36620
36770
36920
37070
37220
37370
37520
37670
37820
37970
38120
38270
38420
38570
38720
38870
39020
39170
39320
39470
39620
39770
39920
40070
40220
40370
40520
40670
40820
40970
36621
36771
36921
37071
37221
37371
37521
37671
37821
37971
38121
38271
38421
38571
38721
38871
39021
39171
39321
39471
39621
39771
39921
40071
40221
40371
40521
40671
40821
40971
36622
36772
36922
37072
37222
37372
37522
37672
37822
37972
38122
38272
38422
38572
38722
38872
39022
39172
39322
39472
39622
39772
39922
40072
40222
40372
40522
40672
40822
40972
36623
36773
36923
37073
37223
37373
37523
37673
37823
37973
38123
38273
38423
38573
38723
38873
39023
39173
39323
39473
39623
39773
39923
40073
40223
40373
40523
40673
40823
40973
36624
36774
36924
37074
37224
37374
37524
37674
37824
37974
38124
38274
38424
38574
38724
38874
39024
39174
39324
39474
39624
39774
39924
40074
40224
40374
40524
40674
40824
40974
36625
36775
36925
37075
37225
37375
37525
37675
37825
37975
38125
38275
38425
38575
38725
38875
39025
39175
39325
39475
39625
39775
39925
40075
40225
40375
40525
40675
40825
40975
36626
36776
36926
37076
37226
37376
37526
37676
37826
37976
38126
38276
38426
38576
38726
38876
39026
39176
39326
39476
39626
39776
39926
40076
40226
40376
40526
40676
40826
40976
36627
36777
36927
37077
37227
37377
37527
37677
37827
37977
38127
38277
38427
38577
38727
38877
39027
39177
39327
39477
39627
39777
39927
40077
40227
40377
40527
40677
40827
40977
36628
36778
36928
37078
37228
37378
37528
37678
37828
37978
38128
38278
38428
38578
38728
38878
39028
39178
39328
39478
39628
39778
39928
40078
40228
40378
40528
40678
40828
40978
36629
36779
36929
37079
37229
37379
37529
37679
37829
37979
38129
38279
38429
38579
38729
38879
39029
39179
39329
39479
39629
39779
39929
40079
40229
40379
40529
40679
40829
40979
36630
36780
36930
37080
37230
37380
37530
37680
37830
37980
38130
38280
38430
38580
38730
38880
39030
39180
39330
39480
39630
39780
39930
40080
40230
40380
40530
40680
40830
40980
36631
36781
36931
37081
37231
37381
37531
37681
37831
37981
38131
38281
38431
38581
38731
38881
39031
39181
39331
39481
39631
39781
39931
40081
40231
40381
40531
40681
40831
40981
36632
36782
36932
37082
37232
37382
37532
37682
37832
37982
38132
38282
38432
38582
38732
38882
39032
39182
39332
39482
39632
39782
39932
40082
40232
40382
40532
40682
40832
40982
36633
36783
36933
37083
37233
37383
37533
37683
37833
37983
38133
38283
38433
38583
38733
38883
39033
39183
39333
39483
39633
39783
39933
40083
40233
40383
40533
40683
40833
40983
36634
36784
36934
37084
37234
37384
37534
37684
37834
37984
38134
38284
38434
38584
38734
38884
39034
39184
39334
39484
39634
39784
39934
40084
40234
40384
40534
40684
40834
40984
36635
36785
36935
37085
37235
37385
37535
37685
37835
37985
38135
38285
38435
38585
38735
38885
39035
39185
39335
39485
39635
39785
39935
40085
40235
40385
40535
40685
40835
40985
36636
36786
36936
37086
37236
37386
37536
37686
37836
37986
38136
38286
38436
38586
38736
38886
39036
39186
39336
39486
39636
39786
39936
40086
40236
40386
40536
40686
40836
40986
36637
36787
36937
37087
37237
37387
37537
37687
37837
37987
38137
38287
38437
38587
38737
38887
39037
39187
39337
39487
39637
39787
39937
40087
40237
40387
40537
40687
40837
40987
36638
36788
36938
37088
37238
37388
37538
37688
37838
37988
38138
38288
38438
38588
38738
38888
39038
39188
39338
39488
39638
39788
39938
40088
40238
40388
40538
40688
40838
40988
36639
36789
36939
37089
37239
37389
37539
37689
37839
37989
38139
38289
38439
38589
38739
38889
39039
39189
39339
39489
39639
39789
39939
40089
40239
40389
40539
40689
40839
40989
36640
36790
36940
37090
37240
37390
37540
37690
37840
37990
38140
38290
38440
38590
38740
38890
39040
39190
39340
39490
39640
39790
39940
40090
40240
40390
40540
40690
40840
40990
36641
36791
36941
37091
37241
37391
37541
37691
37841
37991
38141
38291
38441
38591
38741
38891
39041
39191
39341
39491
39641
39791
39941
40091
40241
40391
40541
40691
40841
40991
36642
36792
36942
37092
37242
37392
37542
37692
37842
37992
38142
38292
38442
38592
38742
38892
39042
39192
39342
39492
39642
39792
39942
40092
40242
40392
40542
40692
40842
40992
36643
36793
36943
37093
37243
37393
37543
37693
37843
37993
38143
38293
38443
38593
38743
38893
39043
39193
39343
39493
39643
39793
39943
40093
40243
40393
40543
40693
40843
40993
36644
36794
36944
37094
37244
37394
37544
37694
37844
37994
38144
38294
38444
38594
38744
38894
39044
39194
39344
39494
39644
39794
39944
40094
40244
40394
40544
40694
40844
40994
36645
36795
36945
37095
37245
37395
37545
37695
37845
37995
38145
38295
38445
38595
38745
38895
39045
39195
39345
39495
39645
39795
39945
40095
40245
40395
40545
40695
40845
40995
36646
36796
36946
37096
37246
37396
37546
37696
37846
37996
38146
38296
38446
38596
38746
38896
39046
39196
39346
39496
39646
39796
39946
40096
40246
40396
40546
40696
40846
40996
36647
36797
36947
37097
37247
37397
37547
37697
37847
37997
38147
38297
38447
38597
38747
38897
39047
39197
39347
39497
39647
39797
39947
40097
40247
40397
40547
40697
40847
40997
36648
36798
36948
37098
37248
37398
37548
37698
37848
37998
38148
38298
38448
38598
38748
38898
39048
39198
39348
39498
39648
39798
39948
40098
40248
40398
40548
40698
40848
40998
36649
36799
36949
37099
37249
37399
37549
37699
37849
37999
38149
38299
38449
38599
38749
38899
39049
39199
39349
39499
39649
39799
39949
40099
40249
40399
40549
40699
40849
40999
36650
36800
36950
37100
37250
37400
37550
37700
37850
38000
38150
38300
38450
38600
38750
38900
39050
39200
39350
39500
39650
39800
39950
40100
40250
40400
40550
40700
40850
41000
36651
36801
36951
37101
37251
37401
37551
37701
37851
38001
38151
38301
38451
38601
38751
38901
39051
39201
39351
39501
39651
39801
39951
40101
40251
40401
40551
40701
40851
41001
36652
36802
36952
37102
37252
37402
37552
37702
37852
38002
38152
38302
38452
38602
38752
38902
39052
39202
39352
39502
39652
39802
39952
40102
40252
40402
40552
40702
40852
41002
36653
36803
36953
37103
37253
37403
37553
37703
37853
38003
38153
38303
38453
38603
38753
38903
39053
39203
39353
39503
39653
39803
39953
40103
40253
40403
40553
40703
40853
41003
36654
36804
36954
37104
37254
37404
37554
37704
37854
38004
38154
38304
38454
38604
38754
38904
39054
39204
39354
39504
39654
39804
39954
40104
40254
40404
40554
40704
40854
41004
36655
36805
36955
37105
37255
37405
37555
37705
37855
38005
38155
38305
38455
38605
38755
38905
39055
39205
39355
39505
39655
39805
39955
40105
40255
40405
40555
40705
40855
41005
36656
36806
36956
37106
37256
37406
37556
37706
37856
38006
38156
38306
38456
38606
38756
38906
39056
39206
39356
39506
39656
39806
39956
40106
40256
40406
40556
40706
40856
41006
36657
36807
36957
37107
37257
37407
37557
37707
37857
38007
38157
38307
38457
38607
38757
38907
39057
39207
39357
39507
39657
39807
39957
40107
40257
40407
40557
40707
40857
41007
36658
36808
36958
37108
37258
37408
37558
37708
37858
38008
38158
38308
38458
38608
38758
38908
39058
39208
39358
39508
39658
39808
39958
40108
40258
40408
40558
40708
40858
41008
36659
36809
36959
37109
37259
37409
37559
37709
37859
38009
38159
38309
38459
38609
38759
38909
39059
39209
39359
39509
39659
39809
39959
40109
40259
40409
40559
40709
40859
41009
36660
36810
36960
37110
37260
37410
37560
37710
37860
38010
38160
38310
38460
38610
38760
38910
39060
39210
39360
39510
39660
39810
39960
40110
40260
40410
40560
40710
40860
41010
36661
36811
36961
37111
37261
37411
37561
37711
37861
38011
38161
38311
38461
38611
38761
38911
39061
39211
39361
39511
39661
39811
39961
40111
40261
40411
40561
40711
40861
41011
36662
36812
36962
37112
37262
37412
37562
37712
37862
38012
38162
38312
38462
38612
38762
38912
39062
39212
39362
39512
39662
39812
39962
40112
40262
40412
40562
40712
40862
41012
36663
36813
36963
37113
37263
37413
37563
37713
37863
38013
38163
38313
38463
38613
38763
38913
39063
39213
39363
39513
39663
39813
39963
40113
40263
40413
40563
40713
40863
41013
36664
36814
36964
37114
37264
37414
37564
37714
37864
38014
38164
38314
38464
38614
38764
38914
39064
39214
39364
39514
39664
39814
39964
40114
40264
40414
40564
40714
40864
41014
36665
36815
36965
37115
37265
37415
37565
37715
37865
38015
38165
38315
38465
38615
38765
38915
39065
39215
39365
39515
39665
39815
39965
40115
40265
40415
40565
40715
40865
41015
36666
36816
36966
37116
37266
37416
37566
37716
37866
38016
38166
38316
38466
38616
38766
38916
39066
39216
39366
39516
39666
39816
39966
40116
40266
40416
40566
40716
40866
41016
36667
36817
36967
37117
37267
37417
37567
37717
37867
38017
38167
38317
38467
38617
38767
38917
39067
39217
39367
39517
39667
39817
39967
40117
40267
40417
40567
40717
40867
41017
36668
36818
36968
37118
37268
37418
37568
37718
37868
38018
38168
38318
38468
38618
38768
38918
39068
39218
39368
39518
39668
39818
39968
40118
40268
40418
40568
40718
40868
41018
36669
36819
36969
37119
37269
37419
37569
37719
37869
38019
38169
38319
38469
38619
38769
38919
39069
39219
39369
39519
39669
39819
39969
40119
40269
40419
40569
40719
40869
41019
36670
36820
36970
37120
37270
37420
37570
37720
37870
38020
38170
38320
38470
38620
38770
38920
39070
39220
39370
39520
39670
39820
39970
40120
40270
40420
40570
40720
40870
41020
36671
36821
36971
37121
37271
37421
37571
37721
37871
38021
38171
38321
38471
38621
38771
38921
39071
39221
39371
39521
39671
39821
39971
40121
40271
40421
40571
40721
40871
41021
36672
36822
36972
37122
37272
37422
37572
37722
37872
38022
38172
38322
38472
38622
38772
38922
39072
39222
39372
39522
39672
39822
39972
40122
40272
40422
40572
40722
40872
41022
36673
36823
36973
37123
37273
37423
37573
37723
37873
38023
38173
38323
38473
38623
38773
38923
39073
39223
39373
39523
39673
39823
39973
40123
40273
40423
40573
40723
40873
41023
36674
36824
36974
37124
37274
37424
37574
37724
37874
38024
38174
38324
38474
38624
38774
38924
39074
39224
39374
39524
39674
39824
39974
40124
40274
40424
40574
40724
40874
41024
36675
36825
36975
37125
37275
37425
37575
37725
37875
38025
38175
38325
38475
38625
38775
38925
39075
39225
39375
39525
39675
39825
39975
40125
40275
40425
40575
40725
40875
41025
36676
36826
36976
37126
37276
37426
37576
37726
37876
38026
38176
38326
38476
38626
38776
38926
39076
39226
39376
39526
39676
39826
39976
40126
40276
40426
40576
40726
40876
41026
36677
36827
36977
37127
37277
37427
37577
37727
37877
38027
38177
38327
38477
38627
38777
38927
39077
39227
39377
39527
39677
39827
39977
40127
40277
40427
40577
40727
40877
41027
36678
36828
36978
37128
37278
37428
37578
37728
37878
38028
38178
38328
38478
38628
38778
38928
39078
39228
39378
39528
39678
39828
39978
40128
40278
40428
40578
40728
40878
41028
36679
36829
36979
37129
37279
37429
37579
37729
37879
38029
38179
38329
38479
38629
38779
38929
39079
39229
39379
39529
39679
39829
39979
40129
40279
40429
40579
40729
40879
41029
36680
36830
36980
37130
37280
37430
37580
37730
37880
38030
38180
38330
38480
38630
38780
38930
39080
39230
39380
39530
39680
39830
39980
40130
40280
40430
40580
40730
40880
41030
36681
36831
36981
37131
37281
37431
37581
37731
37881
38031
38181
38331
38481
38631
38781
38931
39081
39231
39381
39531
39681
39831
39981
40131
40281
40431
40581
40731
40881
41031
36682
36832
36982
37132
37282
37432
37582
37732
37882
38032
38182
38332
38482
38632
38782
38932
39082
39232
39382
39532
39682
39832
39982
40132
40282
40432
40582
40732
40882
41032
36683
36833
36983
37133
37283
37433
37583
37733
37883
38033
38183
38333
38483
38633
38783
38933
39083
39233
39383
39533
39683
39833
39983
40133
40283
40433
40583
40733
40883
41033
36684
36834
36984
37134
37284
37434
37584
37734
37884
38034
38184
38334
38484
38634
38784
38934
39084
39234
39384
39534
39684
39834
39984
40134
40284
40434
40584
40734
40884
41034
36685
36835
36985
37135
37285
37435
37585
37735
37885
38035
38185
38335
38485
38635
38785
38935
39085
39235
39385
39535
39685
39835
39985
40135
40285
40435
40585
40735
40885
41035
36686
36836
36986
37136
37286
37436
37586
37736
37886
38036
38186
38336
38486
38636
38786
38936
39086
39236
39386
39536
39686
39836
39986
40136
40286
40436
40586
40736
40886
41036
36687
36837
36987
37137
37287
37437
37587
37737
37887
38037
38187
38337
38487
38637
38787
38937
39087
39237
39387
39537
39687
39837
39987
40137
40287
40437
40587
40737
40887
41037
36688
36838
36988
37138
37288
37438
37588
37738
37888
38038
38188
38338
38488
38638
38788
38938
39088
39238
39388
39538
39688
39838
39988
40138
40288
40438
40588
40738
40888
41038
36689
36839
36989
37139
37289
37439
37589
37739
37889
38039
38189
38339
38489
38639
38789
38939
39089
39239
39389
39539
39689
39839
39989
40139
40289
40439
40589
40739
40889
41039
36690
36840
36990
37140
37290
37440
37590
37740
37890
38040
38190
38340
38490
38640
38790
38940
39090
39240
39390
39540
39690
39840
39990
40140
40290
40440
40590
40740
40890
41040
36691
36841
36991
37141
37291
37441
37591
37741
37891
38041
38191
38341
38491
38641
38791
38941
39091
39241
39391
39541
39691
39841
39991
40141
40291
40441
40591
40741
40891
41041
36692
36842
36992
37142
37292
37442
37592
37742
37892
38042
38192
38342
38492
38642
38792
38942
39092
39242
39392
39542
39692
39842
39992
40142
40292
40442
40592
40742
40892
41042
36693
36843
36993
37143
37293
37443
37593
37743
37893
38043
38193
38343
38493
38643
38793
38943
39093
39243
39393
39543
39693
39843
39993
40143
40293
40443
40593
40743
40893
41043
36694
36844
36994
37144
37294
37444
37594
37744
37894
38044
38194
38344
38494
38644
38794
38944
39094
39244
39394
39544
39694
39844
39994
40144
40294
40444
40594
40744
40894
41044
36695
36845
36995
37145
37295
37445
37595
37745
37895
38045
38195
38345
38495
38645
38795
38945
39095
39245
39395
39545
39695
39845
39995
40145
40295
40445
40595
40745
40895
41045
36696
36846
36996
37146
37296
37446
37596
37746
37896
38046
38196
38346
38496
38646
38796
38946
39096
39246
39396
39546
39696
39846
39996
40146
40296
40446
40596
40746
40896
41046
36697
36847
36997
37147
37297
37447
37597
37747
37897
38047
38197
38347
38497
38647
38797
38947
39097
39247
39397
39547
39697
39847
39997
40147
40297
40447
40597
40747
40897
41047
36698
36848
36998
37148
37298
37448
37598
37748
37898
38048
38198
38348
38498
38648
38798
38948
39098
39248
39398
39548
39698
39848
39998
40148
40298
40448
40598
40748
40898
41048
36699
36849
36999
37149
37299
37449
37599
37749
37899
38049
38199
38349
38499
38649
38799
38949
39099
39249
39399
39549
39699
39849
39999
40149
40299
40449
40599
40749
40899
41049
36700
36850
37000
37150
37300
37450
37600
37750
37900
38050
38200
38350
38500
38650
38800
38950
39100
39250
39400
39550
39700
39850
40000
40150
40300
40450
40600
40750
40900
41050
36701
36851
37001
37151
37301
37451
37601
37751
37901
38051
38201
38351
38501
38651
38801
38951
39101
39251
39401
39551
39701
39851
40001
40151
40301
40451
40601
40751
40901
41051
36702
36852
37002
37152
37302
37452
37602
37752
37902
38052
38202
38352
38502
38652
38802
38952
39102
39252
39402
39552
39702
39852
40002
40152
40302
40452
40602
40752
40902
41052
36703
36853
37003
37153
37303
37453
37603
37753
37903
38053
38203
38353
38503
38653
38803
38953
39103
39253
39403
39553
39703
39853
40003
40153
40303
40453
40603
40753
40903
41053
36704
36854
37004
37154
37304
37454
37604
37754
37904
38054
38204
38354
38504
38654
38804
38954
39104
39254
39404
39554
39704
39854
40004
40154
40304
40454
40604
40754
40904
41054
36705
36855
37005
37155
37305
37455
37605
37755
37905
38055
38205
38355
38505
38655
38805
38955
39105
39255
39405
39555
39705
39855
40005
40155
40305
40455
40605
40755
40905
41055
36706
36856
37006
37156
37306
37456
37606
37756
37906
38056
38206
38356
38506
38656
38806
38956
39106
39256
39406
39556
39706
39856
40006
40156
40306
40456
40606
40756
40906
41056
36707
36857
37007
37157
37307
37457
37607
37757
37907
38057
38207
38357
38507
38657
38807
38957
39107
39257
39407
39557
39707
39857
40007
40157
40307
40457
40607
40757
40907
41057
36708
36858
37008
37158
37308
37458
37608
37758
37908
38058
38208
38358
38508
38658
38808
38958
39108
39258
39408
39558
39708
39858
40008
40158
40308
40458
40608
40758
40908
41058
36709
36859
37009
37159
37309
37459
37609
37759
37909
38059
38209
38359
38509
38659
38809
38959
39109
39259
39409
39559
39709
39859
40009
40159
40309
40459
40609
40759
40909
41059
36710
36860
37010
37160
37310
37460
37610
37760
37910
38060
38210
38360
38510
38660
38810
38960
39110
39260
39410
39560
39710
39860
40010
40160
40310
40460
40610
40760
40910
41060
36711
36861
37011
37161
37311
37461
37611
37761
37911
38061
38211
38361
38511
38661
38811
38961
39111
39261
39411
39561
39711
39861
40011
40161
40311
40461
40611
40761
40911
41061
36712
36862
37012
37162
37312
37462
37612
37762
37912
38062
38212
38362
38512
38662
38812
38962
39112
39262
39412
39562
39712
39862
40012
40162
40312
40462
40612
40762
40912
41062
36713
36863
37013
37163
37313
37463
37613
37763
37913
38063
38213
38363
38513
38663
38813
38963
39113
39263
39413
39563
39713
39863
40013
40163
40313
40463
40613
40763
40913
41063
36714
36864
37014
37164
37314
37464
37614
37764
37914
38064
38214
38364
38514
38664
38814
38964
39114
39264
39414
39564
39714
39864
40014
40164
40314
40464
40614
40764
40914
41064
36715
36865
37015
37165
37315
37465
37615
37765
37915
38065
38215
38365
38515
38665
38815
38965
39115
39265
39415
39565
39715
39865
40015
40165
40315
40465
40615
40765
40915
41065
36716
36866
37016
37166
37316
37466
37616
37766
37916
38066
38216
38366
38516
38666
38816
38966
39116
39266
39416
39566
39716
39866
40016
40166
40316
40466
40616
40766
40916
41066
36717
36867
37017
37167
37317
37467
37617
37767
37917
38067
38217
38367
38517
38667
38817
38967
39117
39267
39417
39567
39717
39867
40017
40167
40317
40467
40617
40767
40917
41067
36718
36868
37018
37168
37318
37468
37618
37768
37918
38068
38218
38368
38518
38668
38818
38968
39118
39268
39418
39568
39718
39868
40018
40168
40318
40468
40618
40768
40918
41068
36719
36869
37019
37169
37319
37469
37619
37769
37919
38069
38219
38369
38519
38669
38819
38969
39119
39269
39419
39569
39719
39869
40019
40169
40319
40469
40619
40769
40919
41069
36720
36870
37020
37170
37320
37470
37620
37770
37920
38070
38220
38370
38520
38670
38820
38970
39120
39270
39420
39570
39720
39870
40020
40170
40320
40470
40620
40770
40920
41070
36721
36871
37021
37171
37321
37471
37621
37771
37921
38071
38221
38371
38521
38671
38821
38971
39121
39271
39421
39571
39721
39871
40021
40171
40321
40471
40621
40771
40921
41071
36722
36872
37022
37172
37322
37472
37622
37772
37922
38072
38222
38372
38522
38672
38822
38972
39122
39272
39422
39572
39722
39872
40022
40172
40322
40472
40622
40772
40922
41072
36723
36873
37023
37173
37323
37473
37623
37773
37923
38073
38223
38373
38523
38673
38823
38973
39123
39273
39423
39573
39723
39873
40023
40173
40323
40473
40623
40773
40923
41073
36724
36874
37024
37174
37324
37474
37624
37774
37924
38074
38224
38374
38524
38674
38824
38974
39124
39274
39424
39574
39724
39874
40024
40174
40324
40474
40624
40774
40924
41074
36725
36875
37025
37175
37325
37475
37625
37775
37925
38075
38225
38375
38525
38675
38825
38975
39125
39275
39425
39575
39725
39875
40025
40175
40325
40475
40625
40775
40925
41075
36726
36876
37026
37176
37326
37476
37626
37776
37926
38076
38226
38376
38526
38676
38826
38976
39126
39276
39426
39576
39726
39876
40026
40176
40326
40476
40626
40776
40926
41076
36727
36877
37027
37177
37327
37477
37627
37777
37927
38077
38227
38377
38527
38677
38827
38977
39127
39277
39427
39577
39727
39877
40027
40177
40327
40477
40627
40777
40927
41077
36728
36878
37028
37178
37328
37478
37628
37778
37928
38078
38228
38378
38528
38678
38828
38978
39128
39278
39428
39578
39728
39878
40028
40178
40328
40478
40628
40778
40928
41078
36729
36879
37029
37179
37329
37479
37629
37779
37929
38079
38229
38379
38529
38679
38829
38979
39129
39279
39429
39579
39729
39879
40029
40179
40329
40479
40629
40779
40929
41079
36730
36880
37030
37180
37330
37480
37630
37780
37930
38080
38230
38380
38530
38680
38830
38980
39130
39280
39430
39580
39730
39880
40030
40180
40330
40480
40630
40780
40930
41080
36731
36881
37031
37181
37331
37481
37631
37781
37931
38081
38231
38381
38531
38681
38831
38981
39131
39281
39431
39581
39731
39881
40031
40181
40331
40481
40631
40781
40931
41081
36732
36882
37032
37182
37332
37482
37632
37782
37932
38082
38232
38382
38532
38682
38832
38982
39132
39282
39432
39582
39732
39882
40032
40182
40332
40482
40632
40782
40932
41082
36733
36883
37033
37183
37333
37483
37633
37783
37933
38083
38233
38383
38533
38683
38833
38983
39133
39283
39433
39583
39733
39883
40033
40183
40333
40483
40633
40783
40933
41083
36734
36884
37034
37184
37334
37484
37634
37784
37934
38084
38234
38384
38534
38684
38834
38984
39134
39284
39434
39584
39734
39884
40034
40184
40334
40484
40634
40784
40934
41084
36735
36885
37035
37185
37335
37485
37635
37785
37935
38085
38235
38385
38535
38685
38835
38985
39135
39285
39435
39585
39735
39885
40035
40185
40335
40485
40635
40785
40935
41085
36736
36886
37036
37186
37336
37486
37636
37786
37936
38086
38236
38386
38536
38686
38836
38986
39136
39286
39436
39586
39736
39886
40036
40186
40336
40486
40636
40786
40936
41086
36737
36887
37037
37187
37337
37487
37637
37787
37937
38087
38237
38387
38537
38687
38837
38987
39137
39287
39437
39587
39737
39887
40037
40187
40337
40487
40637
40787
40937
41087
36738
36888
37038
37188
37338
37488
37638
37788
37938
38088
38238
38388
38538
38688
38838
38988
39138
39288
39438
39588
39738
39888
40038
40188
40338
40488
40638
40788
40938
41088
36739
36889
37039
37189
37339
37489
37639
37789
37939
38089
38239
38389
38539
38689
38839
38989
39139
39289
39439
39589
39739
39889
40039
40189
40339
40489
40639
40789
40939
41089
36740
36890
37040
37190
37340
37490
37640
37790
37940
38090
38240
38390
38540
38690
38840
38990
39140
39290
39440
39590
39740
39890
40040
40190
40340
40490
40640
40790
40940
41090
36741
36891
37041
37191
37341
37491
37641
37791
37941
38091
38241
38391
38541
38691
38841
38991
39141
39291
39441
39591
39741
39891
40041
40191
40341
40491
40641
40791
40941
41091
36742
36892
37042
37192
37342
37492
37642
37792
37942
38092
38242
38392
38542
38692
38842
38992
39142
39292
39442
39592
39742
39892
40042
40192
40342
40492
40642
40792
40942
41092
36743
36893
37043
37193
37343
37493
37643
37793
37943
38093
38243
38393
38543
38693
38843
38993
39143
39293
39443
39593
39743
39893
40043
40193
40343
40493
40643
40793
40943
41093
36744
36894
37044
37194
37344
37494
37644
37794
37944
38094
38244
38394
38544
38694
38844
38994
39144
39294
39444
39594
39744
39894
40044
40194
40344
40494
40644
40794
40944
41094
36745
36895
37045
37195
37345
37495
37645
37795
37945
38095
38245
38395
38545
38695
38845
38995
39145
39295
39445
39595
39745
39895
40045
40195
40345
40495
40645
40795
40945
41095
36746
36896
37046
37196
37346
37496
37646
37796
37946
38096
38246
38396
38546
38696
38846
38996
39146
39296
39446
39596
39746
39896
40046
40196
40346
40496
40646
40796
40946
41096
36747
36897
37047
37197
37347
37497
37647
37797
37947
38097
38247
38397
38547
38697
38847
38997
39147
39297
39447
39597
39747
39897
40047
40197
40347
40497
40647
40797
40947
41097
36748
36898
37048
37198
37348
37498
37648
37798
37948
38098
38248
38398
38548
38698
38848
38998
39148
39298
39448
39598
39748
39898
40048
40198
40348
40498
40648
40798
40948
41098
36749
36899
37049
37199
37349
37499
37649
37799
37949
38099
38249
38399
38549
38699
38849
38999
39149
39299
39449
39599
39749
39899
40049
40199
40349
40499
40649
40799
40949
41099
41100
41250
41400
41550
41700
41850
42000
42150
42300
42450
42600
42750
42900
43050
43200
43350
43500
43650
43800
43950
44100
44250
44400
44550
44700
44850
45000
45150
45300
45450
41101
41251
41401
41551
41701
41851
42001
42151
42301
42451
42601
42751
42901
43051
43201
43351
43501
43651
43801
43951
44101
44251
44401
44551
44701
44851
45001
45151
45301
45451
41102
41252
41402
41552
41702
41852
42002
42152
42302
42452
42602
42752
42902
43052
43202
43352
43502
43652
43802
43952
44102
44252
44402
44552
44702
44852
45002
45152
45302
45452
41103
41253
41403
41553
41703
41853
42003
42153
42303
42453
42603
42753
42903
43053
43203
43353
43503
43653
43803
43953
44103
44253
44403
44553
44703
44853
45003
45153
45303
45453
41104
41254
41404
41554
41704
41854
42004
42154
42304
42454
42604
42754
42904
43054
43204
43354
43504
43654
43804
43954
44104
44254
44404
44554
44704
44854
45004
45154
45304
45454
41105
41255
41405
41555
41705
41855
42005
42155
42305
42455
42605
42755
42905
43055
43205
43355
43505
43655
43805
43955
44105
44255
44405
44555
44705
44855
45005
45155
45305
45455
41106
41256
41406
41556
41706
41856
42006
42156
42306
42456
42606
42756
42906
43056
43206
43356
43506
43656
43806
43956
44106
44256
44406
44556
44706
44856
45006
45156
45306
45456
41107
41257
41407
41557
41707
41857
42007
42157
42307
42457
42607
42757
42907
43057
43207
43357
43507
43657
43807
43957
44107
44257
44407
44557
44707
44857
45007
45157
45307
45457
41108
41258
41408
41558
41708
41858
42008
42158
42308
42458
42608
42758
42908
43058
43208
43358
43508
43658
43808
43958
44108
44258
44408
44558
44708
44858
45008
45158
45308
45458
41109
41259
41409
41559
41709
41859
42009
42159
42309
42459
42609
42759
42909
43059
43209
43359
43509
43659
43809
43959
44109
44259
44409
44559
44709
44859
45009
45159
45309
45459
41110
41260
41410
41560
41710
41860
42010
42160
42310
42460
42610
42760
42910
43060
43210
43360
43510
43660
43810
43960
44110
44260
44410
44560
44710
44860
45010
45160
45310
45460
41111
41261
41411
41561
41711
41861
42011
42161
42311
42461
42611
42761
42911
43061
43211
43361
43511
43661
43811
43961
44111
44261
44411
44561
44711
44861
45011
45161
45311
45461
41112
41262
41412
41562
41712
41862
42012
42162
42312
42462
42612
42762
42912
43062
43212
43362
43512
43662
43812
43962
44112
44262
44412
44562
44712
44862
45012
45162
45312
45462
41113
41263
41413
41563
41713
41863
42013
42163
42313
42463
42613
42763
42913
43063
43213
43363
43513
43663
43813
43963
44113
44263
44413
44563
44713
44863
45013
45163
45313
45463
41114
41264
41414
41564
41714
41864
42014
42164
42314
42464
42614
42764
42914
43064
43214
43364
43514
43664
43814
43964
44114
44264
44414
44564
44714
44864
45014
45164
45314
45464
41115
41265
41415
41565
41715
41865
42015
42165
42315
42465
42615
42765
42915
43065
43215
43365
43515
43665
43815
43965
44115
44265
44415
44565
44715
44865
45015
45165
45315
45465
41116
41266
41416
41566
41716
41866
42016
42166
42316
42466
42616
42766
42916
43066
43216
43366
43516
43666
43816
43966
44116
44266
44416
44566
44716
44866
45016
45166
45316
45466
41117
41267
41417
41567
41717
41867
42017
42167
42317
42467
42617
42767
42917
43067
43217
43367
43517
43667
43817
43967
44117
44267
44417
44567
44717
44867
45017
45167
45317
45467
41118
41268
41418
41568
41718
41868
42018
42168
42318
42468
42618
42768
42918
43068
43218
43368
43518
43668
43818
43968
44118
44268
44418
44568
44718
44868
45018
45168
45318
45468
41119
41269
41419
41569
41719
41869
42019
42169
42319
42469
42619
42769
42919
43069
43219
43369
43519
43669
43819
43969
44119
44269
44419
44569
44719
44869
45019
45169
45319
45469
41120
41270
41420
41570
41720
41870
42020
42170
42320
42470
42620
42770
42920
43070
43220
43370
43520
43670
43820
43970
44120
44270
44420
44570
44720
44870
45020
45170
45320
45470
41121
41271
41421
41571
41721
41871
42021
42171
42321
42471
42621
42771
42921
43071
43221
43371
43521
43671
43821
43971
44121
44271
44421
44571
44721
44871
45021
45171
45321
45471
41122
41272
41422
41572
41722
41872
42022
42172
42322
42472
42622
42772
42922
43072
43222
43372
43522
43672
43822
43972
44122
44272
44422
44572
44722
44872
45022
45172
45322
45472
41123
41273
41423
41573
41723
41873
42023
42173
42323
42473
42623
42773
42923
43073
43223
43373
43523
43673
43823
43973
44123
44273
44423
44573
44723
44873
45023
45173
45323
45473
41124
41274
41424
41574
41724
41874
42024
42174
42324
42474
42624
42774
42924
43074
43224
43374
43524
43674
43824
43974
44124
44274
44424
44574
44724
44874
45024
45174
45324
45474
41125
41275
41425
41575
41725
41875
42025
42175
42325
42475
42625
42775
42925
43075
43225
43375
43525
43675
43825
43975
44125
44275
44425
44575
44725
44875
45025
45175
45325
45475
41126
41276
41426
41576
41726
41876
42026
42176
42326
42476
42626
42776
42926
43076
43226
43376
43526
43676
43826
43976
44126
44276
44426
44576
44726
44876
45026
45176
45326
45476
41127
41277
41427
41577
41727
41877
42027
42177
42327
42477
42627
42777
42927
43077
43227
43377
43527
43677
43827
43977
44127
44277
44427
44577
44727
44877
45027
45177
45327
45477
41128
41278
41428
41578
41728
41878
42028
42178
42328
42478
42628
42778
42928
43078
43228
43378
43528
43678
43828
43978
44128
44278
44428
44578
44728
44878
45028
45178
45328
45478
41129
41279
41429
41579
41729
41879
42029
42179
42329
42479
42629
42779
42929
43079
43229
43379
43529
43679
43829
43979
44129
44279
44429
44579
44729
44879
45029
45179
45329
45479
41130
41280
41430
41580
41730
41880
42030
42180
42330
42480
42630
42780
42930
43080
43230
43380
43530
43680
43830
43980
44130
44280
44430
44580
44730
44880
45030
45180
45330
45480
41131
41281
41431
41581
41731
41881
42031
42181
42331
42481
42631
42781
42931
43081
43231
43381
43531
43681
43831
43981
44131
44281
44431
44581
44731
44881
45031
45181
45331
45481
41132
41282
41432
41582
41732
41882
42032
42182
42332
42482
42632
42782
42932
43082
43232
43382
43532
43682
43832
43982
44132
44282
44432
44582
44732
44882
45032
45182
45332
45482
41133
41283
41433
41583
41733
41883
42033
42183
42333
42483
42633
42783
42933
43083
43233
43383
43533
43683
43833
43983
44133
44283
44433
44583
44733
44883
45033
45183
45333
45483
41134
41284
41434
41584
41734
41884
42034
42184
42334
42484
42634
42784
42934
43084
43234
43384
43534
43684
43834
43984
44134
44284
44434
44584
44734
44884
45034
45184
45334
45484
41135
41285
41435
41585
41735
41885
42035
42185
42335
42485
42635
42785
42935
43085
43235
43385
43535
43685
43835
43985
44135
44285
44435
44585
44735
44885
45035
45185
45335
45485
41136
41286
41436
41586
41736
41886
42036
42186
42336
42486
42636
42786
42936
43086
43236
43386
43536
43686
43836
43986
44136
44286
44436
44586
44736
44886
45036
45186
45336
45486
41137
41287
41437
41587
41737
41887
42037
42187
42337
42487
42637
42787
42937
43087
43237
43387
43537
43687
43837
43987
44137
44287
44437
44587
44737
44887
45037
45187
45337
45487
41138
41288
41438
41588
41738
41888
42038
42188
42338
42488
42638
42788
42938
43088
43238
43388
43538
43688
43838
43988
44138
44288
44438
44588
44738
44888
45038
45188
45338
45488
41139
41289
41439
41589
41739
41889
42039
42189
42339
42489
42639
42789
42939
43089
43239
43389
43539
43689
43839
43989
44139
44289
44439
44589
44739
44889
45039
45189
45339
45489
41140
41290
41440
41590
41740
41890
42040
42190
42340
42490
42640
42790
42940
43090
43240
43390
43540
43690
43840
43990
44140
44290
44440
44590
44740
44890
45040
45190
45340
45490
41141
41291
41441
41591
41741
41891
42041
42191
42341
42491
42641
42791
42941
43091
43241
43391
43541
43691
43841
43991
44141
44291
44441
44591
44741
44891
45041
45191
45341
45491
41142
41292
41442
41592
41742
41892
42042
42192
42342
42492
42642
42792
42942
43092
43242
43392
43542
43692
43842
43992
44142
44292
44442
44592
44742
44892
45042
45192
45342
45492
41143
41293
41443
41593
41743
41893
42043
42193
42343
42493
42643
42793
42943
43093
43243
43393
43543
43693
43843
43993
44143
44293
44443
44593
44743
44893
45043
45193
45343
45493
41144
41294
41444
41594
41744
41894
42044
42194
42344
42494
42644
42794
42944
43094
43244
43394
43544
43694
43844
43994
44144
44294
44444
44594
44744
44894
45044
45194
45344
45494
41145
41295
41445
41595
41745
41895
42045
42195
42345
42495
42645
42795
42945
43095
43245
43395
43545
43695
43845
43995
44145
44295
44445
44595
44745
44895
45045
45195
45345
45495
41146
41296
41446
41596
41746
41896
42046
42196
42346
42496
42646
42796
42946
43096
43246
43396
43546
43696
43846
43996
44146
44296
44446
44596
44746
44896
45046
45196
45346
45496
41147
41297
41447
41597
41747
41897
42047
42197
42347
42497
42647
42797
42947
43097
43247
43397
43547
43697
43847
43997
44147
44297
44447
44597
44747
44897
45047
45197
45347
45497
41148
41298
41448
41598
41748
41898
42048
42198
42348
42498
42648
42798
42948
43098
43248
43398
43548
43698
43848
43998
44148
44298
44448
44598
44748
44898
45048
45198
45348
45498
41149
41299
41449
41599
41749
41899
42049
42199
42349
42499
42649
42799
42949
43099
43249
43399
43549
43699
43849
43999
44149
44299
44449
44599
44749
44899
45049
45199
45349
45499
41150
41300
41450
41600
41750
41900
42050
42200
42350
42500
42650
42800
42950
43100
43250
43400
43550
43700
43850
44000
44150
44300
44450
44600
44750
44900
45050
45200
45350
45500
41151
41301
41451
41601
41751
41901
42051
42201
42351
42501
42651
42801
42951
43101
43251
43401
43551
43701
43851
44001
44151
44301
44451
44601
44751
44901
45051
45201
45351
45501
41152
41302
41452
41602
41752
41902
42052
42202
42352
42502
42652
42802
42952
43102
43252
43402
43552
43702
43852
44002
44152
44302
44452
44602
44752
44902
45052
45202
45352
45502
41153
41303
41453
41603
41753
41903
42053
42203
42353
42503
42653
42803
42953
43103
43253
43403
43553
43703
43853
44003
44153
44303
44453
44603
44753
44903
45053
45203
45353
45503
41154
41304
41454
41604
41754
41904
42054
42204
42354
42504
42654
42804
42954
43104
43254
43404
43554
43704
43854
44004
44154
44304
44454
44604
44754
44904
45054
45204
45354
45504
41155
41305
41455
41605
41755
41905
42055
42205
42355
42505
42655
42805
42955
43105
43255
43405
43555
43705
43855
44005
44155
44305
44455
44605
44755
44905
45055
45205
45355
45505
41156
41306
41456
41606
41756
41906
42056
42206
42356
42506
42656
42806
42956
43106
43256
43406
43556
43706
43856
44006
44156
44306
44456
44606
44756
44906
45056
45206
45356
45506
41157
41307
41457
41607
41757
41907
42057
42207
42357
42507
42657
42807
42957
43107
43257
43407
43557
43707
43857
44007
44157
44307
44457
44607
44757
44907
45057
45207
45357
45507
41158
41308
41458
41608
41758
41908
42058
42208
42358
42508
42658
42808
42958
43108
43258
43408
43558
43708
43858
44008
44158
44308
44458
44608
44758
44908
45058
45208
45358
45508
41159
41309
41459
41609
41759
41909
42059
42209
42359
42509
42659
42809
42959
43109
43259
43409
43559
43709
43859
44009
44159
44309
44459
44609
44759
44909
45059
45209
45359
45509
41160
41310
41460
41610
41760
41910
42060
42210
42360
42510
42660
42810
42960
43110
43260
43410
43560
43710
43860
44010
44160
44310
44460
44610
44760
44910
45060
45210
45360
45510
41161
41311
41461
41611
41761
41911
42061
42211
42361
42511
42661
42811
42961
43111
43261
43411
43561
43711
43861
44011
44161
44311
44461
44611
44761
44911
45061
45211
45361
45511
41162
41312
41462
41612
41762
41912
42062
42212
42362
42512
42662
42812
42962
43112
43262
43412
43562
43712
43862
44012
44162
44312
44462
44612
44762
44912
45062
45212
45362
45512
41163
41313
41463
41613
41763
41913
42063
42213
42363
42513
42663
42813
42963
43113
43263
43413
43563
43713
43863
44013
44163
44313
44463
44613
44763
44913
45063
45213
45363
45513
41164
41314
41464
41614
41764
41914
42064
42214
42364
42514
42664
42814
42964
43114
43264
43414
43564
43714
43864
44014
44164
44314
44464
44614
44764
44914
45064
45214
45364
45514
41165
41315
41465
41615
41765
41915
42065
42215
42365
42515
42665
42815
42965
43115
43265
43415
43565
43715
43865
44015
44165
44315
44465
44615
44765
44915
45065
45215
45365
45515
41166
41316
41466
41616
41766
41916
42066
42216
42366
42516
42666
42816
42966
43116
43266
43416
43566
43716
43866
44016
44166
44316
44466
44616
44766
44916
45066
45216
45366
45516
41167
41317
41467
41617
41767
41917
42067
42217
42367
42517
42667
42817
42967
43117
43267
43417
43567
43717
43867
44017
44167
44317
44467
44617
44767
44917
45067
45217
45367
45517
41168
41318
41468
41618
41768
41918
42068
42218
42368
42518
42668
42818
42968
43118
43268
43418
43568
43718
43868
44018
44168
44318
44468
44618
44768
44918
45068
45218
45368
45518
41169
41319
41469
41619
41769
41919
42069
42219
42369
42519
42669
42819
42969
43119
43269
43419
43569
43719
43869
44019
44169
44319
44469
44619
44769
44919
45069
45219
45369
45519
41170
41320
41470
41620
41770
41920
42070
42220
42370
42520
42670
42820
42970
43120
43270
43420
43570
43720
43870
44020
44170
44320
44470
44620
44770
44920
45070
45220
45370
45520
41171
41321
41471
41621
41771
41921
42071
42221
42371
42521
42671
42821
42971
43121
43271
43421
43571
43721
43871
44021
44171
44321
44471
44621
44771
44921
45071
45221
45371
45521
41172
41322
41472
41622
41772
41922
42072
42222
42372
42522
42672
42822
42972
43122
43272
43422
43572
43722
43872
44022
44172
44322
44472
44622
44772
44922
45072
45222
45372
45522
41173
41323
41473
41623
41773
41923
42073
42223
42373
42523
42673
42823
42973
43123
43273
43423
43573
43723
43873
44023
44173
44323
44473
44623
44773
44923
45073
45223
45373
45523
41174
41324
41474
41624
41774
41924
42074
42224
42374
42524
42674
42824
42974
43124
43274
43424
43574
43724
43874
44024
44174
44324
44474
44624
44774
44924
45074
45224
45374
45524
41175
41325
41475
41625
41775
41925
42075
42225
42375
42525
42675
42825
42975
43125
43275
43425
43575
43725
43875
44025
44175
44325
44475
44625
44775
44925
45075
45225
45375
45525
41176
41326
41476
41626
41776
41926
42076
42226
42376
42526
42676
42826
42976
43126
43276
43426
43576
43726
43876
44026
44176
44326
44476
44626
44776
44926
45076
45226
45376
45526
41177
41327
41477
41627
41777
41927
42077
42227
42377
42527
42677
42827
42977
43127
43277
43427
43577
43727
43877
44027
44177
44327
44477
44627
44777
44927
45077
45227
45377
45527
41178
41328
41478
41628
41778
41928
42078
42228
42378
42528
42678
42828
42978
43128
43278
43428
43578
43728
43878
44028
44178
44328
44478
44628
44778
44928
45078
45228
45378
45528
41179
41329
41479
41629
41779
41929
42079
42229
42379
42529
42679
42829
42979
43129
43279
43429
43579
43729
43879
44029
44179
44329
44479
44629
44779
44929
45079
45229
45379
45529
41180
41330
41480
41630
41780
41930
42080
42230
42380
42530
42680
42830
42980
43130
43280
43430
43580
43730
43880
44030
44180
44330
44480
44630
44780
44930
45080
45230
45380
45530
41181
41331
41481
41631
41781
41931
42081
42231
42381
42531
42681
42831
42981
43131
43281
43431
43581
43731
43881
44031
44181
44331
44481
44631
44781
44931
45081
45231
45381
45531
41182
41332
41482
41632
41782
41932
42082
42232
42382
42532
42682
42832
42982
43132
43282
43432
43582
43732
43882
44032
44182
44332
44482
44632
44782
44932
45082
45232
45382
45532
41183
41333
41483
41633
41783
41933
42083
42233
42383
42533
42683
42833
42983
43133
43283
43433
43583
43733
43883
44033
44183
44333
44483
44633
44783
44933
45083
45233
45383
45533
41184
41334
41484
41634
41784
41934
42084
42234
42384
42534
42684
42834
42984
43134
43284
43434
43584
43734
43884
44034
44184
44334
44484
44634
44784
44934
45084
45234
45384
45534
41185
41335
41485
41635
41785
41935
42085
42235
42385
42535
42685
42835
42985
43135
43285
43435
43585
43735
43885
44035
44185
44335
44485
44635
44785
44935
45085
45235
45385
45535
41186
41336
41486
41636
41786
41936
42086
42236
42386
42536
42686
42836
42986
43136
43286
43436
43586
43736
43886
44036
44186
44336
44486
44636
44786
44936
45086
45236
45386
45536
41187
41337
41487
41637
41787
41937
42087
42237
42387
42537
42687
42837
42987
43137
43287
43437
43587
43737
43887
44037
44187
44337
44487
44637
44787
44937
45087
45237
45387
45537
41188
41338
41488
41638
41788
41938
42088
42238
42388
42538
42688
42838
42988
43138
43288
43438
43588
43738
43888
44038
44188
44338
44488
44638
44788
44938
45088
45238
45388
45538
41189
41339
41489
41639
41789
41939
42089
42239
42389
42539
42689
42839
42989
43139
43289
43439
43589
43739
43889
44039
44189
44339
44489
44639
44789
44939
45089
45239
45389
45539
41190
41340
41490
41640
41790
41940
42090
42240
42390
42540
42690
42840
42990
43140
43290
43440
43590
43740
43890
44040
44190
44340
44490
44640
44790
44940
45090
45240
45390
45540
41191
41341
41491
41641
41791
41941
42091
42241
42391
42541
42691
42841
42991
43141
43291
43441
43591
43741
43891
44041
44191
44341
44491
44641
44791
44941
45091
45241
45391
45541
41192
41342
41492
41642
41792
41942
42092
42242
42392
42542
42692
42842
42992
43142
43292
43442
43592
43742
43892
44042
44192
44342
44492
44642
44792
44942
45092
45242
45392
45542
41193
41343
41493
41643
41793
41943
42093
42243
42393
42543
42693
42843
42993
43143
43293
43443
43593
43743
43893
44043
44193
44343
44493
44643
44793
44943
45093
45243
45393
45543
41194
41344
41494
41644
41794
41944
42094
42244
42394
42544
42694
42844
42994
43144
43294
43444
43594
43744
43894
44044
44194
44344
44494
44644
44794
44944
45094
45244
45394
45544
41195
41345
41495
41645
41795
41945
42095
42245
42395
42545
42695
42845
42995
43145
43295
43445
43595
43745
43895
44045
44195
44345
44495
44645
44795
44945
45095
45245
45395
45545
41196
41346
41496
41646
41796
41946
42096
42246
42396
42546
42696
42846
42996
43146
43296
43446
43596
43746
43896
44046
44196
44346
44496
44646
44796
44946
45096
45246
45396
45546
41197
41347
41497
41647
41797
41947
42097
42247
42397
42547
42697
42847
42997
43147
43297
43447
43597
43747
43897
44047
44197
44347
44497
44647
44797
44947
45097
45247
45397
45547
41198
41348
41498
41648
41798
41948
42098
42248
42398
42548
42698
42848
42998
43148
43298
43448
43598
43748
43898
44048
44198
44348
44498
44648
44798
44948
45098
45248
45398
45548
41199
41349
41499
41649
41799
41949
42099
42249
42399
42549
42699
42849
42999
43149
43299
43449
43599
43749
43899
44049
44199
44349
44499
44649
44799
44949
45099
45249
45399
45549
41200
41350
41500
41650
41800
41950
42100
42250
42400
42550
42700
42850
43000
43150
43300
43450
43600
43750
43900
44050
44200
44350
44500
44650
44800
44950
45100
45250
45400
45550
41201
41351
41501
41651
41801
41951
42101
42251
42401
42551
42701
42851
43001
43151
43301
43451
43601
43751
43901
44051
44201
44351
44501
44651
44801
44951
45101
45251
45401
45551
41202
41352
41502
41652
41802
41952
42102
42252
42402
42552
42702
42852
43002
43152
43302
43452
43602
43752
43902
44052
44202
44352
44502
44652
44802
44952
45102
45252
45402
45552
41203
41353
41503
41653
41803
41953
42103
42253
42403
42553
42703
42853
43003
43153
43303
43453
43603
43753
43903
44053
44203
44353
44503
44653
44803
44953
45103
45253
45403
45553
41204
41354
41504
41654
41804
41954
42104
42254
42404
42554
42704
42854
43004
43154
43304
43454
43604
43754
43904
44054
44204
44354
44504
44654
44804
44954
45104
45254
45404
45554
41205
41355
41505
41655
41805
41955
42105
42255
42405
42555
42705
42855
43005
43155
43305
43455
43605
43755
43905
44055
44205
44355
44505
44655
44805
44955
45105
45255
45405
45555
41206
41356
41506
41656
41806
41956
42106
42256
42406
42556
42706
42856
43006
43156
43306
43456
43606
43756
43906
44056
44206
44356
44506
44656
44806
44956
45106
45256
45406
45556
41207
41357
41507
41657
41807
41957
42107
42257
42407
42557
42707
42857
43007
43157
43307
43457
43607
43757
43907
44057
44207
44357
44507
44657
44807
44957
45107
45257
45407
45557
41208
41358
41508
41658
41808
41958
42108
42258
42408
42558
42708
42858
43008
43158
43308
43458
43608
43758
43908
44058
44208
44358
44508
44658
44808
44958
45108
45258
45408
45558
41209
41359
41509
41659
41809
41959
42109
42259
42409
42559
42709
42859
43009
43159
43309
43459
43609
43759
43909
44059
44209
44359
44509
44659
44809
44959
45109
45259
45409
45559
41210
41360
41510
41660
41810
41960
42110
42260
42410
42560
42710
42860
43010
43160
43310
43460
43610
43760
43910
44060
44210
44360
44510
44660
44810
44960
45110
45260
45410
45560
41211
41361
41511
41661
41811
41961
42111
42261
42411
42561
42711
42861
43011
43161
43311
43461
43611
43761
43911
44061
44211
44361
44511
44661
44811
44961
45111
45261
45411
45561
41212
41362
41512
41662
41812
41962
42112
42262
42412
42562
42712
42862
43012
43162
43312
43462
43612
43762
43912
44062
44212
44362
44512
44662
44812
44962
45112
45262
45412
45562
41213
41363
41513
41663
41813
41963
42113
42263
42413
42563
42713
42863
43013
43163
43313
43463
43613
43763
43913
44063
44213
44363
44513
44663
44813
44963
45113
45263
45413
45563
41214
41364
41514
41664
41814
41964
42114
42264
42414
42564
42714
42864
43014
43164
43314
43464
43614
43764
43914
44064
44214
44364
44514
44664
44814
44964
45114
45264
45414
45564
41215
41365
41515
41665
41815
41965
42115
42265
42415
42565
42715
42865
43015
43165
43315
43465
43615
43765
43915
44065
44215
44365
44515
44665
44815
44965
45115
45265
45415
45565
41216
41366
41516
41666
41816
41966
42116
42266
42416
42566
42716
42866
43016
43166
43316
43466
43616
43766
43916
44066
44216
44366
44516
44666
44816
44966
45116
45266
45416
45566
41217
41367
41517
41667
41817
41967
42117
42267
42417
42567
42717
42867
43017
43167
43317
43467
43617
43767
43917
44067
44217
44367
44517
44667
44817
44967
45117
45267
45417
45567
41218
41368
41518
41668
41818
41968
42118
42268
42418
42568
42718
42868
43018
43168
43318
43468
43618
43768
43918
44068
44218
44368
44518
44668
44818
44968
45118
45268
45418
45568
41219
41369
41519
41669
41819
41969
42119
42269
42419
42569
42719
42869
43019
43169
43319
43469
43619
43769
43919
44069
44219
44369
44519
44669
44819
44969
45119
45269
45419
45569
41220
41370
41520
41670
41820
41970
42120
42270
42420
42570
42720
42870
43020
43170
43320
43470
43620
43770
43920
44070
44220
44370
44520
44670
44820
44970
45120
45270
45420
45570
41221
41371
41521
41671
41821
41971
42121
42271
42421
42571
42721
42871
43021
43171
43321
43471
43621
43771
43921
44071
44221
44371
44521
44671
44821
44971
45121
45271
45421
45571
41222
41372
41522
41672
41822
41972
42122
42272
42422
42572
42722
42872
43022
43172
43322
43472
43622
43772
43922
44072
44222
44372
44522
44672
44822
44972
45122
45272
45422
45572
41223
41373
41523
41673
41823
41973
42123
42273
42423
42573
42723
42873
43023
43173
43323
43473
43623
43773
43923
44073
44223
44373
44523
44673
44823
44973
45123
45273
45423
45573
41224
41374
41524
41674
41824
41974
42124
42274
42424
42574
42724
42874
43024
43174
43324
43474
43624
43774
43924
44074
44224
44374
44524
44674
44824
44974
45124
45274
45424
45574
41225
41375
41525
41675
41825
41975
42125
42275
42425
42575
42725
42875
43025
43175
43325
43475
43625
43775
43925
44075
44225
44375
44525
44675
44825
44975
45125
45275
45425
45575
41226
41376
41526
41676
41826
41976
42126
42276
42426
42576
42726
42876
43026
43176
43326
43476
43626
43776
43926
44076
44226
44376
44526
44676
44826
44976
45126
45276
45426
45576
41227
41377
41527
41677
41827
41977
42127
42277
42427
42577
42727
42877
43027
43177
43327
43477
43627
43777
43927
44077
44227
44377
44527
44677
44827
44977
45127
45277
45427
45577
41228
41378
41528
41678
41828
41978
42128
42278
42428
42578
42728
42878
43028
43178
43328
43478
43628
43778
43928
44078
44228
44378
44528
44678
44828
44978
45128
45278
45428
45578
41229
41379
41529
41679
41829
41979
42129
42279
42429
42579
42729
42879
43029
43179
43329
43479
43629
43779
43929
44079
44229
44379
44529
44679
44829
44979
45129
45279
45429
45579
41230
41380
41530
41680
41830
41980
42130
42280
42430
42580
42730
42880
43030
43180
43330
43480
43630
43780
43930
44080
44230
44380
44530
44680
44830
44980
45130
45280
45430
45580
41231
41381
41531
41681
41831
41981
42131
42281
42431
42581
42731
42881
43031
43181
43331
43481
43631
43781
43931
44081
44231
44381
44531
44681
44831
44981
45131
45281
45431
45581
41232
41382
41532
41682
41832
41982
42132
42282
42432
42582
42732
42882
43032
43182
43332
43482
43632
43782
43932
44082
44232
44382
44532
44682
44832
44982
45132
45282
45432
45582
41233
41383
41533
41683
41833
41983
42133
42283
42433
42583
42733
42883
43033
43183
43333
43483
43633
43783
43933
44083
44233
44383
44533
44683
44833
44983
45133
45283
45433
45583
41234
41384
41534
41684
41834
41984
42134
42284
42434
42584
42734
42884
43034
43184
43334
43484
43634
43784
43934
44084
44234
44384
44534
44684
44834
44984
45134
45284
45434
45584
41235
41385
41535
41685
41835
41985
42135
42285
42435
42585
42735
42885
43035
43185
43335
43485
43635
43785
43935
44085
44235
44385
44535
44685
44835
44985
45135
45285
45435
45585
41236
41386
41536
41686
41836
41986
42136
42286
42436
42586
42736
42886
43036
43186
43336
43486
43636
43786
43936
44086
44236
44386
44536
44686
44836
44986
45136
45286
45436
45586
41237
41387
41537
41687
41837
41987
42137
42287
42437
42587
42737
42887
43037
43187
43337
43487
43637
43787
43937
44087
44237
44387
44537
44687
44837
44987
45137
45287
45437
45587
41238
41388
41538
41688
41838
41988
42138
42288
42438
42588
42738
42888
43038
43188
43338
43488
43638
43788
43938
44088
44238
44388
44538
44688
44838
44988
45138
45288
45438
45588
41239
41389
41539
41689
41839
41989
42139
42289
42439
42589
42739
42889
43039
43189
43339
43489
43639
43789
43939
44089
44239
44389
44539
44689
44839
44989
45139
45289
45439
45589
41240
41390
41540
41690
41840
41990
42140
42290
42440
42590
42740
42890
43040
43190
43340
43490
43640
43790
43940
44090
44240
44390
44540
44690
44840
44990
45140
45290
45440
45590
41241
41391
41541
41691
41841
41991
42141
42291
42441
42591
42741
42891
43041
43191
43341
43491
43641
43791
43941
44091
44241
44391
44541
44691
44841
44991
45141
45291
45441
45591
41242
41392
41542
41692
41842
41992
42142
42292
42442
42592
42742
42892
43042
43192
43342
43492
43642
43792
43942
44092
44242
44392
44542
44692
44842
44992
45142
45292
45442
45592
41243
41393
41543
41693
41843
41993
42143
42293
42443
42593
42743
42893
43043
43193
43343
43493
43643
43793
43943
44093
44243
44393
44543
44693
44843
44993
45143
45293
45443
45593
41244
41394
41544
41694
41844
41994
42144
42294
42444
42594
42744
42894
43044
43194
43344
43494
43644
43794
43944
44094
44244
44394
44544
44694
44844
44994
45144
45294
45444
45594
41245
41395
41545
41695
41845
41995
42145
42295
42445
42595
42745
42895
43045
43195
43345
43495
43645
43795
43945
44095
44245
44395
44545
44695
44845
44995
45145
45295
45445
45595
41246
41396
41546
41696
41846
41996
42146
42296
42446
42596
42746
42896
43046
43196
43346
43496
43646
43796
43946
44096
44246
44396
44546
44696
44846
44996
45146
45296
45446
45596
41247
41397
41547
41697
41847
41997
42147
42297
42447
42597
42747
42897
43047
43197
43347
43497
43647
43797
43947
44097
44247
44397
44547
44697
44847
44997
45147
45297
45447
45597
41248
41398
41548
41698
41848
41998
42148
42298
42448
42598
42748
42898
43048
43198
43348
43498
43648
43798
43948
44098
44248
44398
44548
44698
44848
44998
45148
45298
45448
45598
41249
41399
41549
41699
41849
41999
42149
42299
42449
42599
42749
42899
43049
43199
43349
43499
43649
43799
43949
44099
44249
44399
44549
44699
44849
44999
45149
45299
45449
45599
45600
45750
45900
46050
46200
46350
46500
46650
46800
46950
47100
47250
47400
47550
47700
47850
48000
48150
48300
48450
48600
48750
48900
49050
49200
49350
49500
49650
49800
49950
45601
45751
45901
46051
46201
46351
46501
46651
46801
46951
47101
47251
47401
47551
47701
47851
48001
48151
48301
48451
48601
48751
48901
49051
49201
49351
49501
49651
49801
49951
45602
45752
45902
46052
46202
46352
46502
46652
46802
46952
47102
47252
47402
47552
47702
47852
48002
48152
48302
48452
48602
48752
48902
49052
49202
49352
49502
49652
49802
49952
45603
45753
45903
46053
46203
46353
46503
46653
46803
46953
47103
47253
47403
47553
47703
47853
48003
48153
48303
48453
48603
48753
48903
49053
49203
49353
49503
49653
49803
49953
45604
45754
45904
46054
46204
46354
46504
46654
46804
46954
47104
47254
47404
47554
47704
47854
48004
48154
48304
48454
48604
48754
48904
49054
49204
49354
49504
49654
49804
49954
45605
45755
45905
46055
46205
46355
46505
46655
46805
46955
47105
47255
47405
47555
47705
47855
48005
48155
48305
48455
48605
48755
48905
49055
49205
49355
49505
49655
49805
49955
45606
45756
45906
46056
46206
46356
46506
46656
46806
46956
47106
47256
47406
47556
47706
47856
48006
48156
48306
48456
48606
48756
48906
49056
49206
49356
49506
49656
49806
49956
45607
45757
45907
46057
46207
46357
46507
46657
46807
46957
47107
47257
47407
47557
47707
47857
48007
48157
48307
48457
48607
48757
48907
49057
49207
49357
49507
49657
49807
49957
45608
45758
45908
46058
46208
46358
46508
46658
46808
46958
47108
47258
47408
47558
47708
47858
48008
48158
48308
48458
48608
48758
48908
49058
49208
49358
49508
49658
49808
49958
45609
45759
45909
46059
46209
46359
46509
46659
46809
46959
47109
47259
47409
47559
47709
47859
48009
48159
48309
48459
48609
48759
48909
49059
49209
49359
49509
49659
49809
49959
45610
45760
45910
46060
46210
46360
46510
46660
46810
46960
47110
47260
47410
47560
47710
47860
48010
48160
48310
48460
48610
48760
48910
49060
49210
49360
49510
49660
49810
49960
45611
45761
45911
46061
46211
46361
46511
46661
46811
46961
47111
47261
47411
47561
47711
47861
48011
48161
48311
48461
48611
48761
48911
49061
49211
49361
49511
49661
49811
49961
45612
45762
45912
46062
46212
46362
46512
46662
46812
46962
47112
47262
47412
47562
47712
47862
48012
48162
48312
48462
48612
48762
48912
49062
49212
49362
49512
49662
49812
49962
45613
45763
45913
46063
46213
46363
46513
46663
46813
46963
47113
47263
47413
47563
47713
47863
48013
48163
48313
48463
48613
48763
48913
49063
49213
49363
49513
49663
49813
49963
45614
45764
45914
46064
46214
46364
46514
46664
46814
46964
47114
47264
47414
47564
47714
47864
48014
48164
48314
48464
48614
48764
48914
49064
49214
49364
49514
49664
49814
49964
45615
45765
45915
46065
46215
46365
46515
46665
46815
46965
47115
47265
47415
47565
47715
47865
48015
48165
48315
48465
48615
48765
48915
49065
49215
49365
49515
49665
49815
49965
45616
45766
45916
46066
46216
46366
46516
46666
46816
46966
47116
47266
47416
47566
47716
47866
48016
48166
48316
48466
48616
48766
48916
49066
49216
49366
49516
49666
49816
49966
45617
45767
45917
46067
46217
46367
46517
46667
46817
46967
47117
47267
47417
47567
47717
47867
48017
48167
48317
48467
48617
48767
48917
49067
49217
49367
49517
49667
49817
49967
45618
45768
45918
46068
46218
46368
46518
46668
46818
46968
47118
47268
47418
47568
47718
47868
48018
48168
48318
48468
48618
48768
48918
49068
49218
49368
49518
49668
49818
49968
45619
45769
45919
46069
46219
46369
46519
46669
46819
46969
47119
47269
47419
47569
47719
47869
48019
48169
48319
48469
48619
48769
48919
49069
49219
49369
49519
49669
49819
49969
45620
45770
45920
46070
46220
46370
46520
46670
46820
46970
47120
47270
47420
47570
47720
47870
48020
48170
48320
48470
48620
48770
48920
49070
49220
49370
49520
49670
49820
49970
45621
45771
45921
46071
46221
46371
46521
46671
46821
46971
47121
47271
47421
47571
47721
47871
48021
48171
48321
48471
48621
48771
48921
49071
49221
49371
49521
49671
49821
49971
45622
45772
45922
46072
46222
46372
46522
46672
46822
46972
47122
47272
47422
47572
47722
47872
48022
48172
48322
48472
48622
48772
48922
49072
49222
49372
49522
49672
49822
49972
45623
45773
45923
46073
46223
46373
46523
46673
46823
46973
47123
47273
47423
47573
47723
47873
48023
48173
48323
48473
48623
48773
48923
49073
49223
49373
49523
49673
49823
49973
45624
45774
45924
46074
46224
46374
46524
46674
46824
46974
47124
47274
47424
47574
47724
47874
48024
48174
48324
48474
48624
48774
48924
49074
49224
49374
49524
49674
49824
49974
45625
45775
45925
46075
46225
46375
46525
46675
46825
46975
47125
47275
47425
47575
47725
47875
48025
48175
48325
48475
48625
48775
48925
49075
49225
49375
49525
49675
49825
49975
45626
45776
45926
46076
46226
46376
46526
46676
46826
46976
47126
47276
47426
47576
47726
47876
48026
48176
48326
48476
48626
48776
48926
49076
49226
49376
49526
49676
49826
49976
45627
45777
45927
46077
46227
46377
46527
46677
46827
46977
47127
47277
47427
47577
47727
47877
48027
48177
48327
48477
48627
48777
48927
49077
49227
49377
49527
49677
49827
49977
45628
45778
45928
46078
46228
46378
46528
46678
46828
46978
47128
47278
47428
47578
47728
47878
48028
48178
48328
48478
48628
48778
48928
49078
49228
49378
49528
49678
49828
49978
45629
45779
45929
46079
46229
46379
46529
46679
46829
46979
47129
47279
47429
47579
47729
47879
48029
48179
48329
48479
48629
48779
48929
49079
49229
49379
49529
49679
49829
49979
45630
45780
45930
46080
46230
46380
46530
46680
46830
46980
47130
47280
47430
47580
47730
47880
48030
48180
48330
48480
48630
48780
48930
49080
49230
49380
49530
49680
49830
49980
45631
45781
45931
46081
46231
46381
46531
46681
46831
46981
47131
47281
47431
47581
47731
47881
48031
48181
48331
48481
48631
48781
48931
49081
49231
49381
49531
49681
49831
49981
45632
45782
45932
46082
46232
46382
46532
46682
46832
46982
47132
47282
47432
47582
47732
47882
48032
48182
48332
48482
48632
48782
48932
49082
49232
49382
49532
49682
49832
49982
45633
45783
45933
46083
46233
46383
46533
46683
46833
46983
47133
47283
47433
47583
47733
47883
48033
48183
48333
48483
48633
48783
48933
49083
49233
49383
49533
49683
49833
49983
45634
45784
45934
46084
46234
46384
46534
46684
46834
46984
47134
47284
47434
47584
47734
47884
48034
48184
48334
48484
48634
48784
48934
49084
49234
49384
49534
49684
49834
49984
45635
45785
45935
46085
46235
46385
46535
46685
46835
46985
47135
47285
47435
47585
47735
47885
48035
48185
48335
48485
48635
48785
48935
49085
49235
49385
49535
49685
49835
49985
45636
45786
45936
46086
46236
46386
46536
46686
46836
46986
47136
47286
47436
47586
47736
47886
48036
48186
48336
48486
48636
48786
48936
49086
49236
49386
49536
49686
49836
49986
45637
45787
45937
46087
46237
46387
46537
46687
46837
46987
47137
47287
47437
47587
47737
47887
48037
48187
48337
48487
48637
48787
48937
49087
49237
49387
49537
49687
49837
49987
45638
45788
45938
46088
46238
46388
46538
46688
46838
46988
47138
47288
47438
47588
47738
47888
48038
48188
48338
48488
48638
48788
48938
49088
49238
49388
49538
49688
49838
49988
45639
45789
45939
46089
46239
46389
46539
46689
46839
46989
47139
47289
47439
47589
47739
47889
48039
48189
48339
48489
48639
48789
48939
49089
49239
49389
49539
49689
49839
49989
45640
45790
45940
46090
46240
46390
46540
46690
46840
46990
47140
47290
47440
47590
47740
47890
48040
48190
48340
48490
48640
48790
48940
49090
49240
49390
49540
49690
49840
49990
45641
45791
45941
46091
46241
46391
46541
46691
46841
46991
47141
47291
47441
47591
47741
47891
48041
48191
48341
48491
48641
48791
48941
49091
49241
49391
49541
49691
49841
49991
45642
45792
45942
46092
46242
46392
46542
46692
46842
46992
47142
47292
47442
47592
47742
47892
48042
48192
48342
48492
48642
48792
48942
49092
49242
49392
49542
49692
49842
49992
45643
45793
45943
46093
46243
46393
46543
46693
46843
46993
47143
47293
47443
47593
47743
47893
48043
48193
48343
48493
48643
48793
48943
49093
49243
49393
49543
49693
49843
49993
45644
45794
45944
46094
46244
46394
46544
46694
46844
46994
47144
47294
47444
47594
47744
47894
48044
48194
48344
48494
48644
48794
48944
49094
49244
49394
49544
49694
49844
49994
45645
45795
45945
46095
46245
46395
46545
46695
46845
46995
47145
47295
47445
47595
47745
47895
48045
48195
48345
48495
48645
48795
48945
49095
49245
49395
49545
49695
49845
49995
45646
45796
45946
46096
46246
46396
46546
46696
46846
46996
47146
47296
47446
47596
47746
47896
48046
48196
48346
48496
48646
48796
48946
49096
49246
49396
49546
49696
49846
49996
45647
45797
45947
46097
46247
46397
46547
46697
46847
46997
47147
47297
47447
47597
47747
47897
48047
48197
48347
48497
48647
48797
48947
49097
49247
49397
49547
49697
49847
49997
45648
45798
45948
46098
46248
46398
46548
46698
46848
46998
47148
47298
47448
47598
47748
47898
48048
48198
48348
48498
48648
48798
48948
49098
49248
49398
49548
49698
49848
49998
45649
45799
45949
46099
46249
46399
46549
46699
46849
46999
47149
47299
47449
47599
47749
47899
48049
48199
48349
48499
48649
48799
48949
49099
49249
49399
49549
49699
49849
49999
45650
45800
45950
46100
46250
46400
46550
46700
46850
47000
47150
47300
47450
47600
47750
47900
48050
48200
48350
48500
48650
48800
48950
49100
49250
49400
49550
49700
49850
50000
45651
45801
45951
46101
46251
46401
46551
46701
46851
47001
47151
47301
47451
47601
47751
47901
48051
48201
48351
48501
48651
48801
48951
49101
49251
49401
49551
49701
49851
50001
45652
45802
45952
46102
46252
46402
46552
46702
46852
47002
47152
47302
47452
47602
47752
47902
48052
48202
48352
48502
48652
48802
48952
49102
49252
49402
49552
49702
49852
50002
45653
45803
45953
46103
46253
46403
46553
46703
46853
47003
47153
47303
47453
47603
47753
47903
48053
48203
48353
48503
48653
48803
48953
49103
49253
49403
49553
49703
49853
50003
45654
45804
45954
46104
46254
46404
46554
46704
46854
47004
47154
47304
47454
47604
47754
47904
48054
48204
48354
48504
48654
48804
48954
49104
49254
49404
49554
49704
49854
50004
45655
45805
45955
46105
46255
46405
46555
46705
46855
47005
47155
47305
47455
47605
47755
47905
48055
48205
48355
48505
48655
48805
48955
49105
49255
49405
49555
49705
49855
50005
45656
45806
45956
46106
46256
46406
46556
46706
46856
47006
47156
47306
47456
47606
47756
47906
48056
48206
48356
48506
48656
48806
48956
49106
49256
49406
49556
49706
49856
50006
45657
45807
45957
46107
46257
46407
46557
46707
46857
47007
47157
47307
47457
47607
47757
47907
48057
48207
48357
48507
48657
48807
48957
49107
49257
49407
49557
49707
49857
50007
45658
45808
45958
46108
46258
46408
46558
46708
46858
47008
47158
47308
47458
47608
47758
47908
48058
48208
48358
48508
48658
48808
48958
49108
49258
49408
49558
49708
49858
50008
45659
45809
45959
46109
46259
46409
46559
46709
46859
47009
47159
47309
47459
47609
47759
47909
48059
48209
48359
48509
48659
48809
48959
49109
49259
49409
49559
49709
49859
50009
45660
45810
45960
46110
46260
46410
46560
46710
46860
47010
47160
47310
47460
47610
47760
47910
48060
48210
48360
48510
48660
48810
48960
49110
49260
49410
49560
49710
49860
50010
45661
45811
45961
46111
46261
46411
46561
46711
46861
47011
47161
47311
47461
47611
47761
47911
48061
48211
48361
48511
48661
48811
48961
49111
49261
49411
49561
49711
49861
50011
45662
45812
45962
46112
46262
46412
46562
46712
46862
47012
47162
47312
47462
47612
47762
47912
48062
48212
48362
48512
48662
48812
48962
49112
49262
49412
49562
49712
49862
50012
45663
45813
45963
46113
46263
46413
46563
46713
46863
47013
47163
47313
47463
47613
47763
47913
48063
48213
48363
48513
48663
48813
48963
49113
49263
49413
49563
49713
49863
50013
45664
45814
45964
46114
46264
46414
46564
46714
46864
47014
47164
47314
47464
47614
47764
47914
48064
48214
48364
48514
48664
48814
48964
49114
49264
49414
49564
49714
49864
50014
45665
45815
45965
46115
46265
46415
46565
46715
46865
47015
47165
47315
47465
47615
47765
47915
48065
48215
48365
48515
48665
48815
48965
49115
49265
49415
49565
49715
49865
50015
45666
45816
45966
46116
46266
46416
46566
46716
46866
47016
47166
47316
47466
47616
47766
47916
48066
48216
48366
48516
48666
48816
48966
49116
49266
49416
49566
49716
49866
50016
45667
45817
45967
46117
46267
46417
46567
46717
46867
47017
47167
47317
47467
47617
47767
47917
48067
48217
48367
48517
48667
48817
48967
49117
49267
49417
49567
49717
49867
50017
45668
45818
45968
46118
46268
46418
46568
46718
46868
47018
47168
47318
47468
47618
47768
47918
48068
48218
48368
48518
48668
48818
48968
49118
49268
49418
49568
49718
49868
50018
45669
45819
45969
46119
46269
46419
46569
46719
46869
47019
47169
47319
47469
47619
47769
47919
48069
48219
48369
48519
48669
48819
48969
49119
49269
49419
49569
49719
49869
50019
45670
45820
45970
46120
46270
46420
46570
46720
46870
47020
47170
47320
47470
47620
47770
47920
48070
48220
48370
48520
48670
48820
48970
49120
49270
49420
49570
49720
49870
50020
45671
45821
45971
46121
46271
46421
46571
46721
46871
47021
47171
47321
47471
47621
47771
47921
48071
48221
48371
48521
48671
48821
48971
49121
49271
49421
49571
49721
49871
50021
45672
45822
45972
46122
46272
46422
46572
46722
46872
47022
47172
47322
47472
47622
47772
47922
48072
48222
48372
48522
48672
48822
48972
49122
49272
49422
49572
49722
49872
50022
45673
45823
45973
46123
46273
46423
46573
46723
46873
47023
47173
47323
47473
47623
47773
47923
48073
48223
48373
48523
48673
48823
48973
49123
49273
49423
49573
49723
49873
50023
45674
45824
45974
46124
46274
46424
46574
46724
46874
47024
47174
47324
47474
47624
47774
47924
48074
48224
48374
48524
48674
48824
48974
49124
49274
49424
49574
49724
49874
50024
45675
45825
45975
46125
46275
46425
46575
46725
46875
47025
47175
47325
47475
47625
47775
47925
48075
48225
48375
48525
48675
48825
48975
49125
49275
49425
49575
49725
49875
50025
45676
45826
45976
46126
46276
46426
46576
46726
46876
47026
47176
47326
47476
47626
47776
47926
48076
48226
48376
48526
48676
48826
48976
49126
49276
49426
49576
49726
49876
50026
45677
45827
45977
46127
46277
46427
46577
46727
46877
47027
47177
47327
47477
47627
47777
47927
48077
48227
48377
48527
48677
48827
48977
49127
49277
49427
49577
49727
49877
50027
45678
45828
45978
46128
46278
46428
46578
46728
46878
47028
47178
47328
47478
47628
47778
47928
48078
48228
48378
48528
48678
48828
48978
49128
49278
49428
49578
49728
49878
50028
45679
45829
45979
46129
46279
46429
46579
46729
46879
47029
47179
47329
47479
47629
47779
47929
48079
48229
48379
48529
48679
48829
48979
49129
49279
49429
49579
49729
49879
50029
45680
45830
45980
46130
46280
46430
46580
46730
46880
47030
47180
47330
47480
47630
47780
47930
48080
48230
48380
48530
48680
48830
48980
49130
49280
49430
49580
49730
49880
50030
45681
45831
45981
46131
46281
46431
46581
46731
46881
47031
47181
47331
47481
47631
47781
47931
48081
48231
48381
48531
48681
48831
48981
49131
49281
49431
49581
49731
49881
50031
45682
45832
45982
46132
46282
46432
46582
46732
46882
47032
47182
47332
47482
47632
47782
47932
48082
48232
48382
48532
48682
48832
48982
49132
49282
49432
49582
49732
49882
50032
45683
45833
45983
46133
46283
46433
46583
46733
46883
47033
47183
47333
47483
47633
47783
47933
48083
48233
48383
48533
48683
48833
48983
49133
49283
49433
49583
49733
49883
50033
45684
45834
45984
46134
46284
46434
46584
46734
46884
47034
47184
47334
47484
47634
47784
47934
48084
48234
48384
48534
48684
48834
48984
49134
49284
49434
49584
49734
49884
50034
45685
45835
45985
46135
46285
46435
46585
46735
46885
47035
47185
47335
47485
47635
47785
47935
48085
48235
48385
48535
48685
48835
48985
49135
49285
49435
49585
49735
49885
50035
45686
45836
45986
46136
46286
46436
46586
46736
46886
47036
47186
47336
47486
47636
47786
47936
48086
48236
48386
48536
48686
48836
48986
49136
49286
49436
49586
49736
49886
50036
45687
45837
45987
46137
46287
46437
46587
46737
46887
47037
47187
47337
47487
47637
47787
47937
48087
48237
48387
48537
48687
48837
48987
49137
49287
49437
49587
49737
49887
50037
45688
45838
45988
46138
46288
46438
46588
46738
46888
47038
47188
47338
47488
47638
47788
47938
48088
48238
48388
48538
48688
48838
48988
49138
49288
49438
49588
49738
49888
50038
45689
45839
45989
46139
46289
46439
46589
46739
46889
47039
47189
47339
47489
47639
47789
47939
48089
48239
48389
48539
48689
48839
48989
49139
49289
49439
49589
49739
49889
50039
45690
45840
45990
46140
46290
46440
46590
46740
46890
47040
47190
47340
47490
47640
47790
47940
48090
48240
48390
48540
48690
48840
48990
49140
49290
49440
49590
49740
49890
50040
45691
45841
45991
46141
46291
46441
46591
46741
46891
47041
47191
47341
47491
47641
47791
47941
48091
48241
48391
48541
48691
48841
48991
49141
49291
49441
49591
49741
49891
50041
45692
45842
45992
46142
46292
46442
46592
46742
46892
47042
47192
47342
47492
47642
47792
47942
48092
48242
48392
48542
48692
48842
48992
49142
49292
49442
49592
49742
49892
50042
45693
45843
45993
46143
46293
46443
46593
46743
46893
47043
47193
47343
47493
47643
47793
47943
48093
48243
48393
48543
48693
48843
48993
49143
49293
49443
49593
49743
49893
50043
45694
45844
45994
46144
46294
46444
46594
46744
46894
47044
47194
47344
47494
47644
47794
47944
48094
48244
48394
48544
48694
48844
48994
49144
49294
49444
49594
49744
49894
50044
45695
45845
45995
46145
46295
46445
46595
46745
46895
47045
47195
47345
47495
47645
47795
47945
48095
48245
48395
48545
48695
48845
48995
49145
49295
49445
49595
49745
49895
50045
45696
45846
45996
46146
46296
46446
46596
46746
46896
47046
47196
47346
47496
47646
47796
47946
48096
48246
48396
48546
48696
48846
48996
49146
49296
49446
49596
49746
49896
50046
45697
45847
45997
46147
46297
46447
46597
46747
46897
47047
47197
47347
47497
47647
47797
47947
48097
48247
48397
48547
48697
48847
48997
49147
49297
49447
49597
49747
49897
50047
45698
45848
45998
46148
46298
46448
46598
46748
46898
47048
47198
47348
47498
47648
47798
47948
48098
48248
48398
48548
48698
48848
48998
49148
49298
49448
49598
49748
49898
50048
45699
45849
45999
46149
46299
46449
46599
46749
46899
47049
47199
47349
47499
47649
47799
47949
48099
48249
48399
48549
48699
48849
48999
49149
49299
49449
49599
49749
49899
50049
45700
45850
46000
46150
46300
46450
46600
46750
46900
47050
47200
47350
47500
47650
47800
47950
48100
48250
48400
48550
48700
48850
49000
49150
49300
49450
49600
49750
49900
50050
45701
45851
46001
46151
46301
46451
46601
46751
46901
47051
47201
47351
47501
47651
47801
47951
48101
48251
48401
48551
48701
48851
49001
49151
49301
49451
49601
49751
49901
50051
45702
45852
46002
46152
46302
46452
46602
46752
46902
47052
47202
47352
47502
47652
47802
47952
48102
48252
48402
48552
48702
48852
49002
49152
49302
49452
49602
49752
49902
50052
45703
45853
46003
46153
46303
46453
46603
46753
46903
47053
47203
47353
47503
47653
47803
47953
48103
48253
48403
48553
48703
48853
49003
49153
49303
49453
49603
49753
49903
50053
45704
45854
46004
46154
46304
46454
46604
46754
46904
47054
47204
47354
47504
47654
47804
47954
48104
48254
48404
48554
48704
48854
49004
49154
49304
49454
49604
49754
49904
50054
45705
45855
46005
46155
46305
46455
46605
46755
46905
47055
47205
47355
47505
47655
47805
47955
48105
48255
48405
48555
48705
48855
49005
49155
49305
49455
49605
49755
49905
50055
45706
45856
46006
46156
46306
46456
46606
46756
46906
47056
47206
47356
47506
47656
47806
47956
48106
48256
48406
48556
48706
48856
49006
49156
49306
49456
49606
49756
49906
50056
45707
45857
46007
46157
46307
46457
46607
46757
46907
47057
47207
47357
47507
47657
47807
47957
48107
48257
48407
48557
48707
48857
49007
49157
49307
49457
49607
49757
49907
50057
45708
45858
46008
46158
46308
46458
46608
46758
46908
47058
47208
47358
47508
47658
47808
47958
48108
48258
48408
48558
48708
48858
49008
49158
49308
49458
49608
49758
49908
50058
45709
45859
46009
46159
46309
46459
46609
46759
46909
47059
47209
47359
47509
47659
47809
47959
48109
48259
48409
48559
48709
48859
49009
49159
49309
49459
49609
49759
49909
50059
45710
45860
46010
46160
46310
46460
46610
46760
46910
47060
47210
47360
47510
47660
47810
47960
48110
48260
48410
48560
48710
48860
49010
49160
49310
49460
49610
49760
49910
50060
45711
45861
46011
46161
46311
46461
46611
46761
46911
47061
47211
47361
47511
47661
47811
47961
48111
48261
48411
48561
48711
48861
49011
49161
49311
49461
49611
49761
49911
50061
45712
45862
46012
46162
46312
46462
46612
46762
46912
47062
47212
47362
47512
47662
47812
47962
48112
48262
48412
48562
48712
48862
49012
49162
49312
49462
49612
49762
49912
50062
45713
45863
46013
46163
46313
46463
46613
46763
46913
47063
47213
47363
47513
47663
47813
47963
48113
48263
48413
48563
48713
48863
49013
49163
49313
49463
49613
49763
49913
50063
45714
45864
46014
46164
46314
46464
46614
46764
46914
47064
47214
47364
47514
47664
47814
47964
48114
48264
48414
48564
48714
48864
49014
49164
49314
49464
49614
49764
49914
50064
45715
45865
46015
46165
46315
46465
46615
46765
46915
47065
47215
47365
47515
47665
47815
47965
48115
48265
48415
48565
48715
48865
49015
49165
49315
49465
49615
49765
49915
50065
45716
45866
46016
46166
46316
46466
46616
46766
46916
47066
47216
47366
47516
47666
47816
47966
48116
48266
48416
48566
48716
48866
49016
49166
49316
49466
49616
49766
49916
50066
45717
45867
46017
46167
46317
46467
46617
46767
46917
47067
47217
47367
47517
47667
47817
47967
48117
48267
48417
48567
48717
48867
49017
49167
49317
49467
49617
49767
49917
50067
45718
45868
46018
46168
46318
46468
46618
46768
46918
47068
47218
47368
47518
47668
47818
47968
48118
48268
48418
48568
48718
48868
49018
49168
49318
49468
49618
49768
49918
50068
45719
45869
46019
46169
46319
46469
46619
46769
46919
47069
47219
47369
47519
47669
47819
47969
48119
48269
48419
48569
48719
48869
49019
49169
49319
49469
49619
49769
49919
50069
45720
45870
46020
46170
46320
46470
46620
46770
46920
47070
47220
47370
47520
47670
47820
47970
48120
48270
48420
48570
48720
48870
49020
49170
49320
49470
49620
49770
49920
50070
45721
45871
46021
46171
46321
46471
46621
46771
46921
47071
47221
47371
47521
47671
47821
47971
48121
48271
48421
48571
48721
48871
49021
49171
49321
49471
49621
49771
49921
50071
45722
45872
46022
46172
46322
46472
46622
46772
46922
47072
47222
47372
47522
47672
47822
47972
48122
48272
48422
48572
48722
48872
49022
49172
49322
49472
49622
49772
49922
50072
45723
45873
46023
46173
46323
46473
46623
46773
46923
47073
47223
47373
47523
47673
47823
47973
48123
48273
48423
48573
48723
48873
49023
49173
49323
49473
49623
49773
49923
50073
45724
45874
46024
46174
46324
46474
46624
46774
46924
47074
47224
47374
47524
47674
47824
47974
48124
48274
48424
48574
48724
48874
49024
49174
49324
49474
49624
49774
49924
50074
45725
45875
46025
46175
46325
46475
46625
46775
46925
47075
47225
47375
47525
47675
47825
47975
48125
48275
48425
48575
48725
48875
49025
49175
49325
49475
49625
49775
49925
50075
45726
45876
46026
46176
46326
46476
46626
46776
46926
47076
47226
47376
47526
47676
47826
47976
48126
48276
48426
48576
48726
48876
49026
49176
49326
49476
49626
49776
49926
50076
45727
45877
46027
46177
46327
46477
46627
46777
46927
47077
47227
47377
47527
47677
47827
47977
48127
48277
48427
48577
48727
48877
49027
49177
49327
49477
49627
49777
49927
50077
45728
45878
46028
46178
46328
46478
46628
46778
46928
47078
47228
47378
47528
47678
47828
47978
48128
48278
48428
48578
48728
48878
49028
49178
49328
49478
49628
49778
49928
50078
45729
45879
46029
46179
46329
46479
46629
46779
46929
47079
47229
47379
47529
47679
47829
47979
48129
48279
48429
48579
48729
48879
49029
49179
49329
49479
49629
49779
49929
50079
45730
45880
46030
46180
46330
46480
46630
46780
46930
47080
47230
47380
47530
47680
47830
47980
48130
48280
48430
48580
48730
48880
49030
49180
49330
49480
49630
49780
49930
50080
45731
45881
46031
46181
46331
46481
46631
46781
46931
47081
47231
47381
47531
47681
47831
47981
48131
48281
48431
48581
48731
48881
49031
49181
49331
49481
49631
49781
49931
50081
45732
45882
46032
46182
46332
46482
46632
46782
46932
47082
47232
47382
47532
47682
47832
47982
48132
48282
48432
48582
48732
48882
49032
49182
49332
49482
49632
49782
49932
50082
45733
45883
46033
46183
46333
46483
46633
46783
46933
47083
47233
47383
47533
47683
47833
47983
48133
48283
48433
48583
48733
48883
49033
49183
49333
49483
49633
49783
49933
50083
45734
45884
46034
46184
46334
46484
46634
46784
46934
47084
47234
47384
47534
47684
47834
47984
48134
48284
48434
48584
48734
48884
49034
49184
49334
49484
49634
49784
49934
50084
45735
45885
46035
46185
46335
46485
46635
46785
46935
47085
47235
47385
47535
47685
47835
47985
48135
48285
48435
48585
48735
48885
49035
49185
49335
49485
49635
49785
49935
50085
45736
45886
46036
46186
46336
46486
46636
46786
46936
47086
47236
47386
47536
47686
47836
47986
48136
48286
48436
48586
48736
48886
49036
49186
49336
49486
49636
49786
49936
50086
45737
45887
46037
46187
46337
46487
46637
46787
46937
47087
47237
47387
47537
47687
47837
47987
48137
48287
48437
48587
48737
48887
49037
49187
49337
49487
49637
49787
49937
50087
45738
45888
46038
46188
46338
46488
46638
46788
46938
47088
47238
47388
47538
47688
47838
47988
48138
48288
48438
48588
48738
48888
49038
49188
49338
49488
49638
49788
49938
50088
45739
45889
46039
46189
46339
46489
46639
46789
46939
47089
47239
47389
47539
47689
47839
47989
48139
48289
48439
48589
48739
48889
49039
49189
49339
49489
49639
49789
49939
50089
45740
45890
46040
46190
46340
46490
46640
46790
46940
47090
47240
47390
47540
47690
47840
47990
48140
48290
48440
48590
48740
48890
49040
49190
49340
49490
49640
49790
49940
50090
45741
45891
46041
46191
46341
46491
46641
46791
46941
47091
47241
47391
47541
47691
47841
47991
48141
48291
48441
48591
48741
48891
49041
49191
49341
49491
49641
49791
49941
50091
45742
45892
46042
46192
46342
46492
46642
46792
46942
47092
47242
47392
47542
47692
47842
47992
48142
48292
48442
48592
48742
48892
49042
49192
49342
49492
49642
49792
49942
50092
45743
45893
46043
46193
46343
46493
46643
46793
46943
47093
47243
47393
47543
47693
47843
47993
48143
48293
48443
48593
48743
48893
49043
49193
49343
49493
49643
49793
49943
50093
45744
45894
46044
46194
46344
46494
46644
46794
46944
47094
47244
47394
47544
47694
47844
47994
48144
48294
48444
48594
48744
48894
49044
49194
49344
49494
49644
49794
49944
50094
45745
45895
46045
46195
46345
46495
46645
46795
46945
47095
47245
47395
47545
47695
47845
47995
48145
48295
48445
48595
48745
48895
49045
49195
49345
49495
49645
49795
49945
50095
45746
45896
46046
46196
46346
46496
46646
46796
46946
47096
47246
47396
47546
47696
47846
47996
48146
48296
48446
48596
48746
48896
49046
49196
49346
49496
49646
49796
49946
50096
45747
45897
46047
46197
46347
46497
46647
46797
46947
47097
47247
47397
47547
47697
47847
47997
48147
48297
48447
48597
48747
48897
49047
49197
49347
49497
49647
49797
49947
50097
45748
45898
46048
46198
46348
46498
46648
46798
46948
47098
47248
47398
47548
47698
47848
47998
48148
48298
48448
48598
48748
48898
49048
49198
49348
49498
49648
49798
49948
50098
45749
45899
46049
46199
46349
46499
46649
46799
46949
47099
47249
47399
47549
47699
47849
47999
48149
48299
48449
48599
48749
48899
49049
49199
49349
49499
49649
49799
49949
50099
50100
50130
50160
50190
50220
50250
50280
50310
50340
50370
50400
50430
50460
50490
50520
50550
50580
50610
50640
50670
50101
50131
50161
50191
50221
50251
50281
50311
50341
50371
50401
50431
50461
50491
50521
50551
50581
50611
50641
50671
50102
50132
50162
50192
50222
50252
50282
50312
50342
50372
50402
50432
50462
50492
50522
50552
50582
50612
50642
50672
50103
50133
50163
50193
50223
50253
50283
50313
50343
50373
50403
50433
50463
50493
50523
50553
50583
50613
50643
50673
50104
50134
50164
50194
50224
50254
50284
50314
50344
50374
50404
50434
50464
50494
50524
50554
50584
50614
50644
50674
50105
50135
50165
50195
50225
50255
50285
50315
50345
50375
50405
50435
50465
50495
50525
50555
50585
50615
50645
50675
50106
50136
50166
50196
50226
50256
50286
50316
50346
50376
50406
50436
50466
50496
50526
50556
50586
50616
50646
50676
50107
50137
50167
50197
50227
50257
50287
50317
50347
50377
50407
50437
50467
50497
50527
50557
50587
50617
50647
50677
50108
50138
50168
50198
50228
50258
50288
50318
50348
50378
50408
50438
50468
50498
50528
50558
50588
50618
50648
50678
50109
50139
50169
50199
50229
50259
50289
50319
50349
50379
50409
50439
50469
50499
50529
50559
50589
50619
50649
50679
50110
50140
50170
50200
50230
50260
50290
50320
50350
50380
50410
50440
50470
50500
50530
50560
50590
50620
50650
50680
50111
50141
50171
50201
50231
50261
50291
50321
50351
50381
50411
50441
50471
50501
50531
50561
50591
50621
50651
50681
50112
50142
50172
50202
50232
50262
50292
50322
50352
50382
50412
50442
50472
50502
50532
50562
50592
50622
50652
50682
50113
50143
50173
50203
50233
50263
50293
50323
50353
50383
50413
50443
50473
50503
50533
50563
50593
50623
50653
50683
50114
50144
50174
50204
50234
50264
50294
50324
50354
50384
50414
50444
50474
50504
50534
50564
50594
50624
50654
50684
50115
50145
50175
50205
50235
50265
50295
50325
50355
50385
50415
50445
50475
50505
50535
50565
50595
50625
50655
50685
50116
50146
50176
50206
50236
50266
50296
50326
50356
50386
50416
50446
50476
50506
50536
50566
50596
50626
50656
50686
50117
50147
50177
50207
50237
50267
50297
50327
50357
50387
50417
50447
50477
50507
50537
50567
50597
50627
50657
50687
50118
50148
50178
50208
50238
50268
50298
50328
50358
50388
50418
50448
50478
50508
50538
50568
50598
50628
50658
50688
50119
50149
50179
50209
50239
50269
50299
50329
50359
50389
50419
50449
50479
50509
50539
50569
50599
50629
50659
50689
50120
50150
50180
50210
50240
50270
50300
50330
50360
50390
50420
50450
50480
50510
50540
50570
50600
50630
50660
50690
50121
50151
50181
50211
50241
50271
50301
50331
50361
50391
50421
50451
50481
50511
50541
50571
50601
50631
50661
50691
50122
50152
50182
50212
50242
50272
50302
50332
50362
50392
50422
50452
50482
50512
50542
50572
50602
50632
50662
50692
50123
50153
50183
50213
50243
50273
50303
50333
50363
50393
50423
50453
50483
50513
50543
50573
50603
50633
50663
50693
50124
50154
50184
50214
50244
50274
50304
50334
50364
50394
50424
50454
50484
50514
50544
50574
50604
50634
50664
50694
50125
50155
50185
50215
50245
50275
50305
50335
50365
50395
50425
50455
50485
50515
50545
50575
50605
50635
50665
50695
50126
50156
50186
50216
50246
50276
50306
50336
50366
50396
50426
50456
50486
50516
50546
50576
50606
50636
50666
50696
50127
50157
50187
50217
50247
50277
50307
50337
50367
50397
50427
50457
50487
50517
50547
50577
50607
50637
50667
50697
50128
50158
50188
50218
50248
50278
50308
50338
50368
50398
50428
50458
50488
50518
50548
50578
50608
50638
50668
50698
50129
50159
50189
50219
50249
50279
50309
50339
50369
50399
50429
50459
50489
50519
50549
50579
50609
50639
50669
50699
50700
50730
50760
50790
50820
50850
50880
50910
50940
50970
51000
51030
51060
51090
51120
51150
51180
51210
51240
51270
50701
50731
50761
50791
50821
50851
50881
50911
50941
50971
51001
51031
51061
51091
51121
51151
51181
51211
51241
51271
50702
50732
50762
50792
50822
50852
50882
50912
50942
50972
51002
51032
51062
51092
51122
51152
51182
51212
51242
51272
50703
50733
50763
50793
50823
50853
50883
50913
50943
50973
51003
51033
51063
51093
51123
51153
51183
51213
51243
51273
50704
50734
50764
50794
50824
50854
50884
50914
50944
50974
51004
51034
51064
51094
51124
51154
51184
51214
51244
51274
50705
50735
50765
50795
50825
50855
50885
50915
50945
50975
51005
51035
51065
51095
51125
51155
51185
51215
51245
51275
50706
50736
50766
50796
50826
50856
50886
50916
50946
50976
51006
51036
51066
51096
51126
51156
51186
51216
51246
51276
50707
50737
50767
50797
50827
50857
50887
50917
50947
50977
51007
51037
51067
51097
51127
51157
51187
51217
51247
51277
50708
50738
50768
50798
50828
50858
50888
50918
50948
50978
51008
51038
51068
51098
51128
51158
51188
51218
51248
51278
50709
50739
50769
50799
50829
50859
50889
50919
50949
50979
51009
51039
51069
51099
51129
51159
51189
51219
51249
51279
50710
50740
50770
50800
50830
50860
50890
50920
50950
50980
51010
51040
51070
51100
51130
51160
51190
51220
51250
51280
50711
50741
50771
50801
50831
50861
50891
50921
50951
50981
51011
51041
51071
51101
51131
51161
51191
51221
51251
51281
50712
50742
50772
50802
50832
50862
50892
50922
50952
50982
51012
51042
51072
51102
51132
51162
51192
51222
51252
51282
50713
50743
50773
50803
50833
50863
50893
50923
50953
50983
51013
51043
51073
51103
51133
51163
51193
51223
51253
51283
50714
50744
50774
50804
50834
50864
50894
50924
50954
50984
51014
51044
51074
51104
51134
51164
51194
51224
51254
51284
50715
50745
50775
50805
50835
50865
50895
50925
50955
50985
51015
51045
51075
51105
51135
51165
51195
51225
51255
51285
50716
50746
50776
50806
50836
50866
50896
50926
50956
50986
51016
51046
51076
51106
51136
51166
51196
51226
51256
51286
50717
50747
50777
50807
50837
50867
50897
50927
50957
50987
51017
51047
51077
51107
51137
51167
51197
51227
51257
51287
50718
50748
50778
50808
50838
50868
50898
50928
50958
50988
51018
51048
51078
51108
51138
51168
51198
51228
51258
51288
50719
50749
50779
50809
50839
50869
50899
50929
50959
50989
51019
51049
51079
51109
51139
51169
51199
51229
51259
51289
50720
50750
50780
50810
50840
50870
50900
50930
50960
50990
51020
51050
51080
51110
51140
51170
51200
51230
51260
51290
50721
50751
50781
50811
50841
50871
50901
50931
50961
50991
51021
51051
51081
51111
51141
51171
51201
51231
51261
51291
50722
50752
50782
50812
50842
50872
50902
50932
50962
50992
51022
51052
51082
51112
51142
51172
51202
51232
51262
51292
50723
50753
50783
50813
50843
50873
50903
50933
50963
50993
51023
51053
51083
51113
51143
51173
51203
51233
51263
51293
50724
50754
50784
50814
50844
50874
50904
50934
50964
50994
51024
51054
51084
51114
51144
51174
51204
51234
51264
51294
50725
50755
50785
50815
50845
50875
50905
50935
50965
50995
51025
51055
51085
51115
51145
51175
51205
51235
51265
51295
50726
50756
50786
50816
50846
50876
50906
50936
50966
50996
51026
51056
51086
51116
51146
51176
51206
51236
51266
51296
50727
50757
50787
50817
50847
50877
50907
50937
50967
50997
51027
51057
51087
51117
51147
51177
51207
51237
51267
51297
50728
50758
50788
50818
50848
50878
50908
50938
50968
50998
51028
51058
51088
51118
51148
51178
51208
51238
51268
51298
50729
50759
50789
50819
50849
50879
50909
50939
50969
50999
51029
51059
51089
51119
51149
51179
51209
51239
51269
51299
51300
51475
51650
51825
52000
52175
52350
52525
52700
52875
53050
53225
53400
53575
53750
53925
54100
54275
54450
54625
51301
51476
51651
51826
52001
52176
52351
52526
52701
52876
53051
53226
53401
53576
53751
53926
54101
54276
54451
54626
51302
51477
51652
51827
52002
52177
52352
52527
52702
52877
53052
53227
53402
53577
53752
53927
54102
54277
54452
54627
51303
51478
51653
51828
52003
52178
52353
52528
52703
52878
53053
53228
53403
53578
53753
53928
54103
54278
54453
54628
51304
51479
51654
51829
52004
52179
52354
52529
52704
52879
53054
53229
53404
53579
53754
53929
54104
54279
54454
54629
51305
51480
51655
51830
52005
52180
52355
52530
52705
52880
53055
53230
53405
53580
53755
53930
54105
54280
54455
54630
51306
51481
51656
51831
52006
52181
52356
52531
52706
52881
53056
53231
53406
53581
53756
53931
54106
54281
54456
54631
51307
51482
51657
51832
52007
52182
52357
52532
52707
52882
53057
53232
53407
53582
53757
53932
54107
54282
54457
54632
51308
51483
51658
51833
52008
52183
52358
52533
52708
52883
53058
53233
53408
53583
53758
53933
54108
54283
54458
54633
51309
51484
51659
51834
52009
52184
52359
52534
52709
52884
53059
53234
53409
53584
53759
53934
54109
54284
54459
54634
51310
51485
51660
51835
52010
52185
52360
52535
52710
52885
53060
53235
53410
53585
53760
53935
54110
54285
54460
54635
51311
51486
51661
51836
52011
52186
52361
52536
52711
52886
53061
53236
53411
53586
53761
53936
54111
54286
54461
54636
51312
51487
51662
51837
52012
52187
52362
52537
52712
52887
53062
53237
53412
53587
53762
53937
54112
54287
54462
54637
51313
51488
51663
51838
52013
52188
52363
52538
52713
52888
53063
53238
53413
53588
53763
53938
54113
54288
54463
54638
51314
51489
51664
51839
52014
52189
52364
52539
52714
52889
53064
53239
53414
53589
53764
53939
54114
54289
54464
54639
51315
51490
51665
51840
52015
52190
52365
52540
52715
52890
53065
53240
53415
53590
53765
53940
54115
54290
54465
54640
51316
51491
51666
51841
52016
52191
52366
52541
52716
52891
53066
53241
53416
53591
53766
53941
54116
54291
54466
54641
51317
51492
51667
51842
52017
52192
52367
52542
52717
52892
53067
53242
53417
53592
53767
53942
54117
54292
54467
54642
51318
51493
51668
51843
52018
52193
52368
52543
52718
52893
53068
53243
53418
53593
53768
53943
54118
54293
54468
54643
51319
51494
51669
51844
52019
52194
52369
52544
52719
52894
53069
53244
53419
53594
53769
53944
54119
54294
54469
54644
51320
51495
51670
51845
52020
52195
52370
52545
52720
52895
53070
53245
53420
53595
53770
53945
54120
54295
54470
54645
51321
51496
51671
51846
52021
52196
52371
52546
52721
52896
53071
53246
53421
53596
53771
53946
54121
54296
54471
54646
51322
51497
51672
51847
52022
52197
52372
52547
52722
52897
53072
53247
53422
53597
53772
53947
54122
54297
54472
54647
51323
51498
51673
51848
52023
52198
52373
52548
52723
52898
53073
53248
53423
53598
53773
53948
54123
54298
54473
54648
51324
51499
51674
51849
52024
52199
52374
52549
52724
52899
53074
53249
53424
53599
53774
53949
54124
54299
54474
54649
51325
51500
51675
51850
52025
52200
52375
52550
52725
52900
53075
53250
53425
53600
53775
53950
54125
54300
54475
54650
51326
51501
51676
51851
52026
52201
52376
52551
52726
52901
53076
53251
53426
53601
53776
53951
54126
54301
54476
54651
51327
51502
51677
51852
52027
52202
52377
52552
52727
52902
53077
53252
53427
53602
53777
53952
54127
54302
54477
54652
51328
51503
51678
51853
52028
52203
52378
52553
52728
52903
53078
53253
53428
53603
53778
53953
54128
54303
54478
54653
51329
51504
51679
51854
52029
52204
52379
52554
52729
52904
53079
53254
53429
53604
53779
53954
54129
54304
54479
54654
51330
51505
51680
51855
52030
52205
52380
52555
52730
52905
53080
53255
53430
53605
53780
53955
54130
54305
54480
54655
51331
51506
51681
51856
52031
52206
52381
52556
52731
52906
53081
53256
53431
53606
53781
53956
54131
54306
54481
54656
51332
51507
51682
51857
52032
52207
52382
52557
52732
52907
53082
53257
53432
53607
53782
53957
54132
54307
54482
54657
51333
51508
51683
51858
52033
52208
52383
52558
52733
52908
53083
53258
53433
53608
53783
53958
54133
54308
54483
54658
51334
51509
51684
51859
52034
52209
52384
52559
52734
52909
53084
53259
53434
53609
53784
53959
54134
54309
54484
54659
51335
51510
51685
51860
52035
52210
52385
52560
52735
52910
53085
53260
53435
53610
53785
53960
54135
54310
54485
54660
51336
51511
51686
51861
52036
52211
52386
52561
52736
52911
53086
53261
53436
53611
53786
53961
54136
54311
54486
54661
51337
51512
51687
51862
52037
52212
52387
52562
52737
52912
53087
53262
53437
53612
53787
53962
54137
54312
54487
54662
51338
51513
51688
51863
52038
52213
52388
52563
52738
52913
53088
53263
53438
53613
53788
53963
54138
54313
54488
54663
51339
51514
51689
51864
52039
52214
52389
52564
52739
52914
53089
53264
53439
53614
53789
53964
54139
54314
54489
54664
51340
51515
51690
51865
52040
52215
52390
52565
52740
52915
53090
53265
53440
53615
53790
53965
54140
54315
54490
54665
51341
51516
51691
51866
52041
52216
52391
52566
52741
52916
53091
53266
53441
53616
53791
53966
54141
54316
54491
54666
51342
51517
51692
51867
52042
52217
52392
52567
52742
52917
53092
53267
53442
53617
53792
53967
54142
54317
54492
54667
51343
51518
51693
51868
52043
52218
52393
52568
52743
52918
53093
53268
53443
53618
53793
53968
54143
54318
54493
54668
51344
51519
51694
51869
52044
52219
52394
52569
52744
52919
53094
53269
53444
53619
53794
53969
54144
54319
54494
54669
51345
51520
51695
51870
52045
52220
52395
52570
52745
52920
53095
53270
53445
53620
53795
53970
54145
54320
54495
54670
51346
51521
51696
51871
52046
52221
52396
52571
52746
52921
53096
53271
53446
53621
53796
53971
54146
54321
54496
54671
51347
51522
51697
51872
52047
52222
52397
52572
52747
52922
53097
53272
53447
53622
53797
53972
54147
54322
54497
54672
51348
51523
51698
51873
52048
52223
52398
52573
52748
52923
53098
53273
53448
53623
53798
53973
54148
54323
54498
54673
51349
51524
51699
51874
52049
52224
52399
52574
52749
52924
53099
53274
53449
53624
53799
53974
54149
54324
54499
54674
51350
51525
51700
51875
52050
52225
52400
52575
52750
52925
53100
53275
53450
53625
53800
53975
54150
54325
54500
54675
51351
51526
51701
51876
52051
52226
52401
52576
52751
52926
53101
53276
53451
53626
53801
53976
54151
54326
54501
54676
51352
51527
51702
51877
52052
52227
52402
52577
52752
52927
53102
53277
53452
53627
53802
53977
54152
54327
54502
54677
51353
51528
51703
51878
52053
52228
52403
52578
52753
52928
53103
53278
53453
53628
53803
53978
54153
54328
54503
54678
51354
51529
51704
51879
52054
52229
52404
52579
52754
52929
53104
53279
53454
53629
53804
53979
54154
54329
54504
54679
51355
51530
51705
51880
52055
52230
52405
52580
52755
52930
53105
53280
53455
53630
53805
53980
54155
54330
54505
54680
51356
51531
51706
51881
52056
52231
52406
52581
52756
52931
53106
53281
53456
53631
53806
53981
54156
54331
54506
54681
51357
51532
51707
51882
52057
52232
52407
52582
52757
52932
53107
53282
53457
53632
53807
53982
54157
54332
54507
54682
51358
51533
51708
51883
52058
52233
52408
52583
52758
52933
53108
53283
53458
53633
53808
53983
54158
54333
54508
54683
51359
51534
51709
51884
52059
52234
52409
52584
52759
52934
53109
53284
53459
53634
53809
53984
54159
54334
54509
54684
51360
51535
51710
51885
52060
52235
52410
52585
52760
52935
53110
53285
53460
53635
53810
53985
54160
54335
54510
54685
51361
51536
51711
51886
52061
52236
52411
52586
52761
52936
53111
53286
53461
53636
53811
53986
54161
54336
54511
54686
51362
51537
51712
51887
52062
52237
52412
52587
52762
52937
53112
53287
53462
53637
53812
53987
54162
54337
54512
54687
51363
51538
51713
51888
52063
52238
52413
52588
52763
52938
53113
53288
53463
53638
53813
53988
54163
54338
54513
54688
51364
51539
51714
51889
52064
52239
52414
52589
52764
52939
53114
53289
53464
53639
53814
53989
54164
54339
54514
54689
51365
51540
51715
51890
52065
52240
52415
52590
52765
52940
53115
53290
53465
53640
53815
53990
54165
54340
54515
54690
51366
51541
51716
51891
52066
52241
52416
52591
52766
52941
53116
53291
53466
53641
53816
53991
54166
54341
54516
54691
51367
51542
51717
51892
52067
52242
52417
52592
52767
52942
53117
53292
53467
53642
53817
53992
54167
54342
54517
54692
51368
51543
51718
51893
52068
52243
52418
52593
52768
52943
53118
53293
53468
53643
53818
53993
54168
54343
54518
54693
51369
51544
51719
51894
52069
52244
52419
52594
52769
52944
53119
53294
53469
53644
53819
53994
54169
54344
54519
54694
51370
51545
51720
51895
52070
52245
52420
52595
52770
52945
53120
53295
53470
53645
53820
53995
54170
54345
54520
54695
51371
51546
51721
51896
52071
52246
52421
52596
52771
52946
53121
53296
53471
53646
53821
53996
54171
54346
54521
54696
51372
51547
51722
51897
52072
52247
52422
52597
52772
52947
53122
53297
53472
53647
53822
53997
54172
54347
54522
54697
51373
51548
51723
51898
52073
52248
52423
52598
52773
52948
53123
53298
53473
53648
53823
53998
54173
54348
54523
54698
51374
51549
51724
51899
52074
52249
52424
52599
52774
52949
53124
53299
53474
53649
53824
53999
54174
54349
54524
54699
51375
51550
51725
51900
52075
52250
52425
52600
52775
52950
53125
53300
53475
53650
53825
54000
54175
54350
54525
54700
51376
51551
51726
51901
52076
52251
52426
52601
52776
52951
53126
53301
53476
53651
53826
54001
54176
54351
54526
54701
51377
51552
51727
51902
52077
52252
52427
52602
52777
52952
53127
53302
53477
53652
53827
54002
54177
54352
54527
54702
51378
51553
51728
51903
52078
52253
52428
52603
52778
52953
53128
53303
53478
53653
53828
54003
54178
54353
54528
54703
51379
51554
51729
51904
52079
52254
52429
52604
52779
52954
53129
53304
53479
53654
53829
54004
54179
54354
54529
54704
51380
51555
51730
51905
52080
52255
52430
52605
52780
52955
53130
53305
53480
53655
53830
54005
54180
54355
54530
54705
51381
51556
51731
51906
52081
52256
52431
52606
52781
52956
53131
53306
53481
53656
53831
54006
54181
54356
54531
54706
51382
51557
51732
51907
52082
52257
52432
52607
52782
52957
53132
53307
53482
53657
53832
54007
54182
54357
54532
54707
51383
51558
51733
51908
52083
52258
52433
52608
52783
52958
53133
53308
53483
53658
53833
54008
54183
54358
54533
54708
51384
51559
51734
51909
52084
52259
52434
52609
52784
52959
53134
53309
53484
53659
53834
54009
54184
54359
54534
54709
51385
51560
51735
51910
52085
52260
52435
52610
52785
52960
53135
53310
53485
53660
53835
54010
54185
54360
54535
54710
51386
51561
51736
51911
52086
52261
52436
52611
52786
52961
53136
53311
53486
53661
53836
54011
54186
54361
54536
54711
51387
51562
51737
51912
52087
52262
52437
52612
52787
52962
53137
53312
53487
53662
53837
54012
54187
54362
54537
54712
51388
51563
51738
51913
52088
52263
52438
52613
52788
52963
53138
53313
53488
53663
53838
54013
54188
54363
54538
54713
51389
51564
51739
51914
52089
52264
52439
52614
52789
52964
53139
53314
53489
53664
53839
54014
54189
54364
54539
54714
51390
51565
51740
51915
52090
52265
52440
52615
52790
52965
53140
53315
53490
53665
53840
54015
54190
54365
54540
54715
51391
51566
51741
51916
52091
52266
52441
52616
52791
52966
53141
53316
53491
53666
53841
54016
54191
54366
54541
54716
51392
51567
51742
51917
52092
52267
52442
52617
52792
52967
53142
53317
53492
53667
53842
54017
54192
54367
54542
54717
51393
51568
51743
51918
52093
52268
52443
52618
52793
52968
53143
53318
53493
53668
53843
54018
54193
54368
54543
54718
51394
51569
51744
51919
52094
52269
52444
52619
52794
52969
53144
53319
53494
53669
53844
54019
54194
54369
54544
54719
51395
51570
51745
51920
52095
52270
52445
52620
52795
52970
53145
53320
53495
53670
53845
54020
54195
54370
54545
54720
51396
51571
51746
51921
52096
52271
52446
52621
52796
52971
53146
53321
53496
53671
53846
54021
54196
54371
54546
54721
51397
51572
51747
51922
52097
52272
52447
52622
52797
52972
53147
53322
53497
53672
53847
54022
54197
54372
54547
54722
51398
51573
51748
51923
52098
52273
52448
52623
52798
52973
53148
53323
53498
53673
53848
54023
54198
54373
54548
54723
51399
51574
51749
51924
52099
52274
52449
52624
52799
52974
53149
53324
53499
53674
53849
54024
54199
54374
54549
54724
51400
51575
51750
51925
52100
52275
52450
52625
52800
52975
53150
53325
53500
53675
53850
54025
54200
54375
54550
54725
51401
51576
51751
51926
52101
52276
52451
52626
52801
52976
53151
53326
53501
53676
53851
54026
54201
54376
54551
54726
51402
51577
51752
51927
52102
52277
52452
52627
52802
52977
53152
53327
53502
53677
53852
54027
54202
54377
54552
54727
51403
51578
51753
51928
52103
52278
52453
52628
52803
52978
53153
53328
53503
53678
53853
54028
54203
54378
54553
54728
51404
51579
51754
51929
52104
52279
52454
52629
52804
52979
53154
53329
53504
53679
53854
54029
54204
54379
54554
54729
51405
51580
51755
51930
52105
52280
52455
52630
52805
52980
53155
53330
53505
53680
53855
54030
54205
54380
54555
54730
51406
51581
51756
51931
52106
52281
52456
52631
52806
52981
53156
53331
53506
53681
53856
54031
54206
54381
54556
54731
51407
51582
51757
51932
52107
52282
52457
52632
52807
52982
53157
53332
53507
53682
53857
54032
54207
54382
54557
54732
51408
51583
51758
51933
52108
52283
52458
52633
52808
52983
53158
53333
53508
53683
53858
54033
54208
54383
54558
54733
51409
51584
51759
51934
52109
52284
52459
52634
52809
52984
53159
53334
53509
53684
53859
54034
54209
54384
54559
54734
51410
51585
51760
51935
52110
52285
52460
52635
52810
52985
53160
53335
53510
53685
53860
54035
54210
54385
54560
54735
51411
51586
51761
51936
52111
52286
52461
52636
52811
52986
53161
53336
53511
53686
53861
54036
54211
54386
54561
54736
51412
51587
51762
51937
52112
52287
52462
52637
52812
52987
53162
53337
53512
53687
53862
54037
54212
54387
54562
54737
51413
51588
51763
51938
52113
52288
52463
52638
52813
52988
53163
53338
53513
53688
53863
54038
54213
54388
54563
54738
51414
51589
51764
51939
52114
52289
52464
52639
52814
52989
53164
53339
53514
53689
53864
54039
54214
54389
54564
54739
51415
51590
51765
51940
52115
52290
52465
52640
52815
52990
53165
53340
53515
53690
53865
54040
54215
54390
54565
54740
51416
51591
51766
51941
52116
52291
52466
52641
52816
52991
53166
53341
53516
53691
53866
54041
54216
54391
54566
54741
51417
51592
51767
51942
52117
52292
52467
52642
52817
52992
53167
53342
53517
53692
53867
54042
54217
54392
54567
54742
51418
51593
51768
51943
52118
52293
52468
52643
52818
52993
53168
53343
53518
53693
53868
54043
54218
54393
54568
54743
51419
51594
51769
51944
52119
52294
52469
52644
52819
52994
53169
53344
53519
53694
53869
54044
54219
54394
54569
54744
51420
51595
51770
51945
52120
52295
52470
52645
52820
52995
53170
53345
53520
53695
53870
54045
54220
54395
54570
54745
51421
51596
51771
51946
52121
52296
52471
52646
52821
52996
53171
53346
53521
53696
53871
54046
54221
54396
54571
54746
51422
51597
51772
51947
52122
52297
52472
52647
52822
52997
53172
53347
53522
53697
53872
54047
54222
54397
54572
54747
51423
51598
51773
51948
52123
52298
52473
52648
52823
52998
53173
53348
53523
53698
53873
54048
54223
54398
54573
54748
51424
51599
51774
51949
52124
52299
52474
52649
52824
52999
53174
53349
53524
53699
53874
54049
54224
54399
54574
54749
51425
51600
51775
51950
52125
52300
52475
52650
52825
53000
53175
53350
53525
53700
53875
54050
54225
54400
54575
54750
51426
51601
51776
51951
52126
52301
52476
52651
52826
53001
53176
53351
53526
53701
53876
54051
54226
54401
54576
54751
51427
51602
51777
51952
52127
52302
52477
52652
52827
53002
53177
53352
53527
53702
53877
54052
54227
54402
54577
54752
51428
51603
51778
51953
52128
52303
52478
52653
52828
53003
53178
53353
53528
53703
53878
54053
54228
54403
54578
54753
51429
51604
51779
51954
52129
52304
52479
52654
52829
53004
53179
53354
53529
53704
53879
54054
54229
54404
54579
54754
51430
51605
51780
51955
52130
52305
52480
52655
52830
53005
53180
53355
53530
53705
53880
54055
54230
54405
54580
54755
51431
51606
51781
51956
52131
52306
52481
52656
52831
53006
53181
53356
53531
53706
53881
54056
54231
54406
54581
54756
51432
51607
51782
51957
52132
52307
52482
52657
52832
53007
53182
53357
53532
53707
53882
54057
54232
54407
54582
54757
51433
51608
51783
51958
52133
52308
52483
52658
52833
53008
53183
53358
53533
53708
53883
54058
54233
54408
54583
54758
51434
51609
51784
51959
52134
52309
52484
52659
52834
53009
53184
53359
53534
53709
53884
54059
54234
54409
54584
54759
51435
51610
51785
51960
52135
52310
52485
52660
52835
53010
53185
53360
53535
53710
53885
54060
54235
54410
54585
54760
51436
51611
51786
51961
52136
52311
52486
52661
52836
53011
53186
53361
53536
53711
53886
54061
54236
54411
54586
54761
51437
51612
51787
51962
52137
52312
52487
52662
52837
53012
53187
53362
53537
53712
53887
54062
54237
54412
54587
54762
51438
51613
51788
51963
52138
52313
52488
52663
52838
53013
53188
53363
53538
53713
53888
54063
54238
54413
54588
54763
51439
51614
51789
51964
52139
52314
52489
52664
52839
53014
53189
53364
53539
53714
53889
54064
54239
54414
54589
54764
51440
51615
51790
51965
52140
52315
52490
52665
52840
53015
53190
53365
53540
53715
53890
54065
54240
54415
54590
54765
51441
51616
51791
51966
52141
52316
52491
52666
52841
53016
53191
53366
53541
53716
53891
54066
54241
54416
54591
54766
51442
51617
51792
51967
52142
52317
52492
52667
52842
53017
53192
53367
53542
53717
53892
54067
54242
54417
54592
54767
51443
51618
51793
51968
52143
52318
52493
52668
52843
53018
53193
53368
53543
53718
53893
54068
54243
54418
54593
54768
51444
51619
51794
51969
52144
52319
52494
52669
52844
53019
53194
53369
53544
53719
53894
54069
54244
54419
54594
54769
51445
51620
51795
51970
52145
52320
52495
52670
52845
53020
53195
53370
53545
53720
53895
54070
54245
54420
54595
54770
51446
51621
51796
51971
52146
52321
52496
52671
52846
53021
53196
53371
53546
53721
53896
54071
54246
54421
54596
54771
51447
51622
51797
51972
52147
52322
52497
52672
52847
53022
53197
53372
53547
53722
53897
54072
54247
54422
54597
54772
51448
51623
51798
51973
52148
52323
52498
52673
52848
53023
53198
53373
53548
53723
53898
54073
54248
54423
54598
54773
51449
51624
51799
51974
52149
52324
52499
52674
52849
53024
53199
53374
53549
53724
53899
54074
54249
54424
54599
54774
51450
51625
51800
51975
52150
52325
52500
52675
52850
53025
53200
53375
53550
53725
53900
54075
54250
54425
54600
54775
51451
51626
51801
51976
52151
52326
52501
52676
52851
53026
53201
53376
53551
53726
53901
54076
54251
54426
54601
54776
51452
51627
51802
51977
52152
52327
52502
52677
52852
53027
53202
53377
53552
53727
53902
54077
54252
54427
54602
54777
51453
51628
51803
51978
52153
52328
52503
52678
52853
53028
53203
53378
53553
53728
53903
54078
54253
54428
54603
54778
51454
51629
51804
51979
52154
52329
52504
52679
52854
53029
53204
53379
53554
53729
53904
54079
54254
54429
54604
54779
51455
51630
51805
51980
52155
52330
52505
52680
52855
53030
53205
53380
53555
53730
53905
54080
54255
54430
54605
54780
51456
51631
51806
51981
52156
52331
52506
52681
52856
53031
53206
53381
53556
53731
53906
54081
54256
54431
54606
54781
51457
51632
51807
51982
52157
52332
52507
52682
52857
53032
53207
53382
53557
53732
53907
54082
54257
54432
54607
54782
51458
51633
51808
51983
52158
52333
52508
52683
52858
53033
53208
53383
53558
53733
53908
54083
54258
54433
54608
54783
51459
51634
51809
51984
52159
52334
52509
52684
52859
53034
53209
53384
53559
53734
53909
54084
54259
54434
54609
54784
51460
51635
51810
51985
52160
52335
52510
52685
52860
53035
53210
53385
53560
53735
53910
54085
54260
54435
54610
54785
51461
51636
51811
51986
52161
52336
52511
52686
52861
53036
53211
53386
53561
53736
53911
54086
54261
54436
54611
54786
51462
51637
51812
51987
52162
52337
52512
52687
52862
53037
53212
53387
53562
53737
53912
54087
54262
54437
54612
54787
51463
51638
51813
51988
52163
52338
52513
52688
52863
53038
53213
53388
53563
53738
53913
54088
54263
54438
54613
54788
51464
51639
51814
51989
52164
52339
52514
52689
52864
53039
53214
53389
53564
53739
53914
54089
54264
54439
54614
54789
51465
51640
51815
51990
52165
52340
52515
52690
52865
53040
53215
53390
53565
53740
53915
54090
54265
54440
54615
54790
51466
51641
51816
51991
52166
52341
52516
52691
52866
53041
53216
53391
53566
53741
53916
54091
54266
54441
54616
54791
51467
51642
51817
51992
52167
52342
52517
52692
52867
53042
53217
53392
53567
53742
53917
54092
54267
54442
54617
54792
51468
51643
51818
51993
52168
52343
52518
52693
52868
53043
53218
53393
53568
53743
53918
54093
54268
54443
54618
54793
51469
51644
51819
51994
52169
52344
52519
52694
52869
53044
53219
53394
53569
53744
53919
54094
54269
54444
54619
54794
51470
51645
51820
51995
52170
52345
52520
52695
52870
53045
53220
53395
53570
53745
53920
54095
54270
54445
54620
54795
51471
51646
51821
51996
52171
52346
52521
52696
52871
53046
53221
53396
53571
53746
53921
54096
54271
54446
54621
54796
51472
51647
51822
51997
52172
52347
52522
52697
52872
53047
53222
53397
53572
53747
53922
54097
54272
54447
54622
54797
51473
51648
51823
51998
52173
52348
52523
52698
52873
53048
53223
53398
53573
53748
53923
54098
54273
54448
54623
54798
51474
51649
51824
51999
52174
52349
52524
52699
52874
53049
53224
53399
53574
53749
53924
54099
54274
54449
54624
54799
27400
27575
27750
27925
28100
28275
28450
28625
28800
28975
29150
29325
29500
29675
29850
30025
30200
30375
30550
30725
27401
27576
27751
27926
28101
28276
28451
28626
28801
28976
29151
29326
29501
29676
29851
30026
30201
30376
30551
30726
27402
27577
27752
27927
28102
28277
28452
28627
28802
28977
29152
29327
29502
29677
29852
30027
30202
30377
30552
30727
27403
27578
27753
27928
28103
28278
28453
28628
28803
28978
29153
29328
29503
29678
29853
30028
30203
30378
30553
30728
27404
27579
27754
27929
28104
28279
28454
28629
28804
28979
29154
29329
29504
29679
29854
30029
30204
30379
30554
30729
27405
27580
27755
27930
28105
28280
28455
28630
28805
28980
29155
29330
29505
29680
29855
30030
30205
30380
30555
30730
27406
27581
27756
27931
28106
28281
28456
28631
28806
28981
29156
29331
29506
29681
29856
30031
30206
30381
30556
30731
27407
27582
27757
27932
28107
28282
28457
28632
28807
28982
29157
29332
29507
29682
29857
30032
30207
30382
30557
30732
27408
27583
27758
27933
28108
28283
28458
28633
28808
28983
29158
29333
29508
29683
29858
30033
30208
30383
30558
30733
27409
27584
27759
27934
28109
28284
28459
28634
28809
28984
29159
29334
29509
29684
29859
30034
30209
30384
30559
30734
27410
27585
27760
27935
28110
28285
28460
28635
28810
28985
29160
29335
29510
29685
29860
30035
30210
30385
30560
30735
27411
27586
27761
27936
28111
28286
28461
28636
28811
28986
29161
29336
29511
29686
29861
30036
30211
30386
30561
30736
27412
27587
27762
27937
28112
28287
28462
28637
28812
28987
29162
29337
29512
29687
29862
30037
30212
30387
30562
30737
27413
27588
27763
27938
28113
28288
28463
28638
28813
28988
29163
29338
29513
29688
29863
30038
30213
30388
30563
30738
27414
27589
27764
27939
28114
28289
28464
28639
28814
28989
29164
29339
29514
29689
29864
30039
30214
30389
30564
30739
27415
27590
27765
27940
28115
28290
28465
28640
28815
28990
29165
29340
29515
29690
29865
30040
30215
30390
30565
30740
27416
27591
27766
27941
28116
28291
28466
28641
28816
28991
29166
29341
29516
29691
29866
30041
30216
30391
30566
30741
27417
27592
27767
27942
28117
28292
28467
28642
28817
28992
29167
29342
29517
29692
29867
30042
30217
30392
30567
30742
27418
27593
27768
27943
28118
28293
28468
28643
28818
28993
29168
29343
29518
29693
29868
30043
30218
30393
30568
30743
27419
27594
27769
27944
28119
28294
28469
28644
28819
28994
29169
29344
29519
29694
29869
30044
30219
30394
30569
30744
27420
27595
27770
27945
28120
28295
28470
28645
28820
28995
29170
29345
29520
29695
29870
30045
30220
30395
30570
30745
27421
27596
27771
27946
28121
28296
28471
28646
28821
28996
29171
29346
29521
29696
29871
30046
30221
30396
30571
30746
27422
27597
27772
27947
28122
28297
28472
28647
28822
28997
29172
29347
29522
29697
29872
30047
30222
30397
30572
30747
27423
27598
27773
27948
28123
28298
28473
28648
28823
28998
29173
29348
29523
29698
29873
30048
30223
30398
30573
30748
27424
27599
27774
27949
28124
28299
28474
28649
28824
28999
29174
29349
29524
29699
29874
30049
30224
30399
30574
30749
27425
27600
27775
27950
28125
28300
28475
28650
28825
29000
29175
29350
29525
29700
29875
30050
30225
30400
30575
30750
27426
27601
27776
27951
28126
28301
28476
28651
28826
29001
29176
29351
29526
29701
29876
30051
30226
30401
30576
30751
27427
27602
27777
27952
28127
28302
28477
28652
28827
29002
29177
29352
29527
29702
29877
30052
30227
30402
30577
30752
27428
27603
27778
27953
28128
28303
28478
28653
28828
29003
29178
29353
29528
29703
29878
30053
30228
30403
30578
30753
27429
27604
27779
27954
28129
28304
28479
28654
28829
29004
29179
29354
29529
29704
29879
30054
30229
30404
30579
30754
27430
27605
27780
27955
28130
28305
28480
28655
28830
29005
29180
29355
29530
29705
29880
30055
30230
30405
30580
30755
27431
27606
27781
27956
28131
28306
28481
28656
28831
29006
29181
29356
29531
29706
29881
30056
30231
30406
30581
30756
27432
27607
27782
27957
28132
28307
28482
28657
28832
29007
29182
29357
29532
29707
29882
30057
30232
30407
30582
30757
27433
27608
27783
27958
28133
28308
28483
28658
28833
29008
29183
29358
29533
29708
29883
30058
30233
30408
30583
30758
27434
27609
27784
27959
28134
28309
28484
28659
28834
29009
29184
29359
29534
29709
29884
30059
30234
30409
30584
30759
27435
27610
27785
27960
28135
28310
28485
28660
28835
29010
29185
29360
29535
29710
29885
30060
30235
30410
30585
30760
27436
27611
27786
27961
28136
28311
28486
28661
28836
29011
29186
29361
29536
29711
29886
30061
30236
30411
30586
30761
27437
27612
27787
27962
28137
28312
28487
28662
28837
29012
29187
29362
29537
29712
29887
30062
30237
30412
30587
30762
27438
27613
27788
27963
28138
28313
28488
28663
28838
29013
29188
29363
29538
29713
29888
30063
30238
30413
30588
30763
27439
27614
27789
27964
28139
28314
28489
28664
28839
29014
29189
29364
29539
29714
29889
30064
30239
30414
30589
30764
27440
27615
27790
27965
28140
28315
28490
28665
28840
29015
29190
29365
29540
29715
29890
30065
30240
30415
30590
30765
27441
27616
27791
27966
28141
28316
28491
28666
28841
29016
29191
29366
29541
29716
29891
30066
30241
30416
30591
30766
27442
27617
27792
27967
28142
28317
28492
28667
28842
29017
29192
29367
29542
29717
29892
30067
30242
30417
30592
30767
27443
27618
27793
27968
28143
28318
28493
28668
28843
29018
29193
29368
29543
29718
29893
30068
30243
30418
30593
30768
27444
27619
27794
27969
28144
28319
28494
28669
28844
29019
29194
29369
29544
29719
29894
30069
30244
30419
30594
30769
27445
27620
27795
27970
28145
28320
28495
28670
28845
29020
29195
29370
29545
29720
29895
30070
30245
30420
30595
30770
27446
27621
27796
27971
28146
28321
28496
28671
28846
29021
29196
29371
29546
29721
29896
30071
30246
30421
30596
30771
27447
27622
27797
27972
28147
28322
28497
28672
28847
29022
29197
29372
29547
29722
29897
30072
30247
30422
30597
30772
27448
27623
27798
27973
28148
28323
28498
28673
28848
29023
29198
29373
29548
29723
29898
30073
30248
30423
30598
30773
27449
27624
27799
27974
28149
28324
28499
28674
28849
29024
29199
29374
29549
29724
29899
30074
30249
30424
30599
30774
27450
27625
27800
27975
28150
28325
28500
28675
28850
29025
29200
29375
29550
29725
29900
30075
30250
30425
30600
30775
27451
27626
27801
27976
28151
28326
28501
28676
28851
29026
29201
29376
29551
29726
29901
30076
30251
30426
30601
30776
27452
27627
27802
27977
28152
28327
28502
28677
28852
29027
29202
29377
29552
29727
29902
30077
30252
30427
30602
30777
27453
27628
27803
27978
28153
28328
28503
28678
28853
29028
29203
29378
29553
29728
29903
30078
30253
30428
30603
30778
27454
27629
27804
27979
28154
28329
28504
28679
28854
29029
29204
29379
29554
29729
29904
30079
30254
30429
30604
30779
27455
27630
27805
27980
28155
28330
28505
28680
28855
29030
29205
29380
29555
29730
29905
30080
30255
30430
30605
30780
27456
27631
27806
27981
28156
28331
28506
28681
28856
29031
29206
29381
29556
29731
29906
30081
30256
30431
30606
30781
27457
27632
27807
27982
28157
28332
28507
28682
28857
29032
29207
29382
29557
29732
29907
30082
30257
30432
30607
30782
27458
27633
27808
27983
28158
28333
28508
28683
28858
29033
29208
29383
29558
29733
29908
30083
30258
30433
30608
30783
27459
27634
27809
27984
28159
28334
28509
28684
28859
29034
29209
29384
29559
29734
29909
30084
30259
30434
30609
30784
27460
27635
27810
27985
28160
28335
28510
28685
28860
29035
29210
29385
29560
29735
29910
30085
30260
30435
30610
30785
27461
27636
27811
27986
28161
28336
28511
28686
28861
29036
29211
29386
29561
29736
29911
30086
30261
30436
30611
30786
27462
27637
27812
27987
28162
28337
28512
28687
28862
29037
29212
29387
29562
29737
29912
30087
30262
30437
30612
30787
27463
27638
27813
27988
28163
28338
28513
28688
28863
29038
29213
29388
29563
29738
29913
30088
30263
30438
30613
30788
27464
27639
27814
27989
28164
28339
28514
28689
28864
29039
29214
29389
29564
29739
29914
30089
30264
30439
30614
30789
27465
27640
27815
27990
28165
28340
28515
28690
28865
29040
29215
29390
29565
29740
29915
30090
30265
30440
30615
30790
27466
27641
27816
27991
28166
28341
28516
28691
28866
29041
29216
29391
29566
29741
29916
30091
30266
30441
30616
30791
27467
27642
27817
27992
28167
28342
28517
28692
28867
29042
29217
29392
29567
29742
29917
30092
30267
30442
30617
30792
27468
27643
27818
27993
28168
28343
28518
28693
28868
29043
29218
29393
29568
29743
29918
30093
30268
30443
30618
30793
27469
27644
27819
27994
28169
28344
28519
28694
28869
29044
29219
29394
29569
29744
29919
30094
30269
30444
30619
30794
27470
27645
27820
27995
28170
28345
28520
28695
28870
29045
29220
29395
29570
29745
29920
30095
30270
30445
30620
30795
27471
27646
27821
27996
28171
28346
28521
28696
28871
29046
29221
29396
29571
29746
29921
30096
30271
30446
30621
30796
27472
27647
27822
27997
28172
28347
28522
28697
28872
29047
29222
29397
29572
29747
29922
30097
30272
30447
30622
30797
27473
27648
27823
27998
28173
28348
28523
28698
28873
29048
29223
29398
29573
29748
29923
30098
30273
30448
30623
30798
27474
27649
27824
27999
28174
28349
28524
28699
28874
29049
29224
29399
29574
29749
29924
30099
30274
30449
30624
30799
27475
27650
27825
28000
28175
28350
28525
28700
28875
29050
29225
29400
29575
29750
29925
30100
30275
30450
30625
30800
27476
27651
27826
28001
28176
28351
28526
28701
28876
29051
29226
29401
29576
29751
29926
30101
30276
30451
30626
30801
27477
27652
27827
28002
28177
28352
28527
28702
28877
29052
29227
29402
29577
29752
29927
30102
30277
30452
30627
30802
27478
27653
27828
28003
28178
28353
28528
28703
28878
29053
29228
29403
29578
29753
29928
30103
30278
30453
30628
30803
27479
27654
27829
28004
28179
28354
28529
28704
28879
29054
29229
29404
29579
29754
29929
30104
30279
30454
30629
30804
27480
27655
27830
28005
28180
28355
28530
28705
28880
29055
29230
29405
29580
29755
29930
30105
30280
30455
30630
30805
27481
27656
27831
28006
28181
28356
28531
28706
28881
29056
29231
29406
29581
29756
29931
30106
30281
30456
30631
30806
27482
27657
27832
28007
28182
28357
28532
28707
28882
29057
29232
29407
29582
29757
29932
30107
30282
30457
30632
30807
27483
27658
27833
28008
28183
28358
28533
28708
28883
29058
29233
29408
29583
29758
29933
30108
30283
30458
30633
30808
27484
27659
27834
28009
28184
28359
28534
28709
28884
29059
29234
29409
29584
29759
29934
30109
30284
30459
30634
30809
27485
27660
27835
28010
28185
28360
28535
28710
28885
29060
29235
29410
29585
29760
29935
30110
30285
30460
30635
30810
27486
27661
27836
28011
28186
28361
28536
28711
28886
29061
29236
29411
29586
29761
29936
30111
30286
30461
30636
30811
27487
27662
27837
28012
28187
28362
28537
28712
28887
29062
29237
29412
29587
29762
29937
30112
30287
30462
30637
30812
27488
27663
27838
28013
28188
28363
28538
28713
28888
29063
29238
29413
29588
29763
29938
30113
30288
30463
30638
30813
27489
27664
27839
28014
28189
28364
28539
28714
28889
29064
29239
29414
29589
29764
29939
30114
30289
30464
30639
30814
27490
27665
27840
28015
28190
28365
28540
28715
28890
29065
29240
29415
29590
29765
29940
30115
30290
30465
30640
30815
27491
27666
27841
28016
28191
28366
28541
28716
28891
29066
29241
29416
29591
29766
29941
30116
30291
30466
30641
30816
27492
27667
27842
28017
28192
28367
28542
28717
28892
29067
29242
29417
29592
29767
29942
30117
30292
30467
30642
30817
27493
27668
27843
28018
28193
28368
28543
28718
28893
29068
29243
29418
29593
29768
29943
30118
30293
30468
30643
30818
27494
27669
27844
28019
28194
28369
28544
28719
28894
29069
29244
29419
29594
29769
29944
30119
30294
30469
30644
30819
27495
27670
27845
28020
28195
28370
28545
28720
28895
29070
29245
29420
29595
29770
29945
30120
30295
30470
30645
30820
27496
27671
27846
28021
28196
28371
28546
28721
28896
29071
29246
29421
29596
29771
29946
30121
30296
30471
30646
30821
27497
27672
27847
28022
28197
28372
28547
28722
28897
29072
29247
29422
29597
29772
29947
30122
30297
30472
30647
30822
27498
27673
27848
28023
28198
28373
28548
28723
28898
29073
29248
29423
29598
29773
29948
30123
30298
30473
30648
30823
27499
27674
27849
28024
28199
28374
28549
28724
28899
29074
29249
29424
29599
29774
29949
30124
30299
30474
30649
30824
27500
27675
27850
28025
28200
28375
28550
28725
28900
29075
29250
29425
29600
29775
29950
30125
30300
30475
30650
30825
27501
27676
27851
28026
28201
28376
28551
28726
28901
29076
29251
29426
29601
29776
29951
30126
30301
30476
30651
30826
27502
27677
27852
28027
28202
28377
28552
28727
28902
29077
29252
29427
29602
29777
29952
30127
30302
30477
30652
30827
27503
27678
27853
28028
28203
28378
28553
28728
28903
29078
29253
29428
29603
29778
29953
30128
30303
30478
30653
30828
27504
27679
27854
28029
28204
28379
28554
28729
28904
29079
29254
29429
29604
29779
29954
30129
30304
30479
30654
30829
27505
27680
27855
28030
28205
28380
28555
28730
28905
29080
29255
29430
29605
29780
29955
30130
30305
30480
30655
30830
27506
27681
27856
28031
28206
28381
28556
28731
28906
29081
29256
29431
29606
29781
29956
30131
30306
30481
30656
30831
27507
27682
27857
28032
28207
28382
28557
28732
28907
29082
29257
29432
29607
29782
29957
30132
30307
30482
30657
30832
27508
27683
27858
28033
28208
28383
28558
28733
28908
29083
29258
29433
29608
29783
29958
30133
30308
30483
30658
30833
27509
27684
27859
28034
28209
28384
28559
28734
28909
29084
29259
29434
29609
29784
29959
30134
30309
30484
30659
30834
27510
27685
27860
28035
28210
28385
28560
28735
28910
29085
29260
29435
29610
29785
29960
30135
30310
30485
30660
30835
27511
27686
27861
28036
28211
28386
28561
28736
28911
29086
29261
29436
29611
29786
29961
30136
30311
30486
30661
30836
27512
27687
27862
28037
28212
28387
28562
28737
28912
29087
29262
29437
29612
29787
29962
30137
30312
30487
30662
30837
27513
27688
27863
28038
28213
28388
28563
28738
28913
29088
29263
29438
29613
29788
29963
30138
30313
30488
30663
30838
27514
27689
27864
28039
28214
28389
28564
28739
28914
29089
29264
29439
29614
29789
29964
30139
30314
30489
30664
30839
27515
27690
27865
28040
28215
28390
28565
28740
28915
29090
29265
29440
29615
29790
29965
30140
30315
30490
30665
30840
27516
27691
27866
28041
28216
28391
28566
28741
28916
29091
29266
29441
29616
29791
29966
30141
30316
30491
30666
30841
27517
27692
27867
28042
28217
28392
28567
28742
28917
29092
29267
29442
29617
29792
29967
30142
30317
30492
30667
30842
27518
27693
27868
28043
28218
28393
28568
28743
28918
29093
29268
29443
29618
29793
29968
30143
30318
30493
30668
30843
27519
27694
27869
28044
28219
28394
28569
28744
28919
29094
29269
29444
29619
29794
29969
30144
30319
30494
30669
30844
27520
27695
27870
28045
28220
28395
28570
28745
28920
29095
29270
29445
29620
29795
29970
30145
30320
30495
30670
30845
27521
27696
27871
28046
28221
28396
28571
28746
28921
29096
29271
29446
29621
29796
29971
30146
30321
30496
30671
30846
27522
27697
27872
28047
28222
28397
28572
28747
28922
29097
29272
29447
29622
29797
29972
30147
30322
30497
30672
30847
27523
27698
27873
28048
28223
28398
28573
28748
28923
29098
29273
29448
29623
29798
29973
30148
30323
30498
30673
30848
27524
27699
27874
28049
28224
28399
28574
28749
28924
29099
29274
29449
29624
29799
29974
30149
30324
30499
30674
30849
27525
27700
27875
28050
28225
28400
28575
28750
28925
29100
29275
29450
29625
29800
29975
30150
30325
30500
30675
30850
27526
27701
27876
28051
28226
28401
28576
28751
28926
29101
29276
29451
29626
29801
29976
30151
30326
30501
30676
30851
27527
27702
27877
28052
28227
28402
28577
28752
28927
29102
29277
29452
29627
29802
29977
30152
30327
30502
30677
30852
27528
27703
27878
28053
28228
28403
28578
28753
28928
29103
29278
29453
29628
29803
29978
30153
30328
30503
30678
30853
27529
27704
27879
28054
28229
28404
28579
28754
28929
29104
29279
29454
29629
29804
29979
30154
30329
30504
30679
30854
27530
27705
27880
28055
28230
28405
28580
28755
28930
29105
29280
29455
29630
29805
29980
30155
30330
30505
30680
30855
27531
27706
27881
28056
28231
28406
28581
28756
28931
29106
29281
29456
29631
29806
29981
30156
30331
30506
30681
30856
27532
27707
27882
28057
28232
28407
28582
28757
28932
29107
29282
29457
29632
29807
29982
30157
30332
30507
30682
30857
27533
27708
27883
28058
28233
28408
28583
28758
28933
29108
29283
29458
29633
29808
29983
30158
30333
30508
30683
30858
27534
27709
27884
28059
28234
28409
28584
28759
28934
29109
29284
29459
29634
29809
29984
30159
30334
30509
30684
30859
27535
27710
27885
28060
28235
28410
28585
28760
28935
29110
29285
29460
29635
29810
29985
30160
30335
30510
30685
30860
27536
27711
27886
28061
28236
28411
28586
28761
28936
29111
29286
29461
29636
29811
29986
30161
30336
30511
30686
30861
27537
27712
27887
28062
28237
28412
28587
28762
28937
29112
29287
29462
29637
29812
29987
30162
30337
30512
30687
30862
27538
27713
27888
28063
28238
28413
28588
28763
28938
29113
29288
29463
29638
29813
29988
30163
30338
30513
30688
30863
27539
27714
27889
28064
28239
28414
28589
28764
28939
29114
29289
29464
29639
29814
29989
30164
30339
30514
30689
30864
27540
27715
27890
28065
28240
28415
28590
28765
28940
29115
29290
29465
29640
29815
29990
30165
30340
30515
30690
30865
27541
27716
27891
28066
28241
28416
28591
28766
28941
29116
29291
29466
29641
29816
29991
30166
30341
30516
30691
30866
27542
27717
27892
28067
28242
28417
28592
28767
28942
29117
29292
29467
29642
29817
29992
30167
30342
30517
30692
30867
27543
27718
27893
28068
28243
28418
28593
28768
28943
29118
29293
29468
29643
29818
29993
30168
30343
30518
30693
30868
27544
27719
27894
28069
28244
28419
28594
28769
28944
29119
29294
29469
29644
29819
29994
30169
30344
30519
30694
30869
27545
27720
27895
28070
28245
28420
28595
28770
28945
29120
29295
29470
29645
29820
29995
30170
30345
30520
30695
30870
27546
27721
27896
28071
28246
28421
28596
28771
28946
29121
29296
29471
29646
29821
29996
30171
30346
30521
30696
30871
27547
27722
27897
28072
28247
28422
28597
28772
28947
29122
29297
29472
29647
29822
29997
30172
30347
30522
30697
30872
27548
27723
27898
28073
28248
28423
28598
28773
28948
29123
29298
29473
29648
29823
29998
30173
30348
30523
30698
30873
27549
27724
27899
28074
28249
28424
28599
28774
28949
29124
29299
29474
29649
29824
29999
30174
30349
30524
30699
30874
27550
27725
27900
28075
28250
28425
28600
28775
28950
29125
29300
29475
29650
29825
30000
30175
30350
30525
30700
30875
27551
27726
27901
28076
28251
28426
28601
28776
28951
29126
29301
29476
29651
29826
30001
30176
30351
30526
30701
30876
27552
27727
27902
28077
28252
28427
28602
28777
28952
29127
29302
29477
29652
29827
30002
30177
30352
30527
30702
30877
27553
27728
27903
28078
28253
28428
28603
28778
28953
29128
29303
29478
29653
29828
30003
30178
30353
30528
30703
30878
27554
27729
27904
28079
28254
28429
28604
28779
28954
29129
29304
29479
29654
29829
30004
30179
30354
30529
30704
30879
27555
27730
27905
28080
28255
28430
28605
28780
28955
29130
29305
29480
29655
29830
30005
30180
30355
30530
30705
30880
27556
27731
27906
28081
28256
28431
28606
28781
28956
29131
29306
29481
29656
29831
30006
30181
30356
30531
30706
30881
27557
27732
27907
28082
28257
28432
28607
28782
28957
29132
29307
29482
29657
29832
30007
30182
30357
30532
30707
30882
27558
27733
27908
28083
28258
28433
28608
28783
28958
29133
29308
29483
29658
29833
30008
30183
30358
30533
30708
30883
27559
27734
27909
28084
28259
28434
28609
28784
28959
29134
29309
29484
29659
29834
30009
30184
30359
30534
30709
30884
27560
27735
27910
28085
28260
28435
28610
28785
28960
29135
29310
29485
29660
29835
30010
30185
30360
30535
30710
30885
27561
27736
27911
28086
28261
28436
28611
28786
28961
29136
29311
29486
29661
29836
30011
30186
30361
30536
30711
30886
27562
27737
27912
28087
28262
28437
28612
28787
28962
29137
29312
29487
29662
29837
30012
30187
30362
30537
30712
30887
27563
27738
27913
28088
28263
28438
28613
28788
28963
29138
29313
29488
29663
29838
30013
30188
30363
30538
30713
30888
27564
27739
27914
28089
28264
28439
28614
28789
28964
29139
29314
29489
29664
29839
30014
30189
30364
30539
30714
30889
27565
27740
27915
28090
28265
28440
28615
28790
28965
29140
29315
29490
29665
29840
30015
30190
30365
30540
30715
30890
27566
27741
27916
28091
28266
28441
28616
28791
28966
29141
29316
29491
29666
29841
30016
30191
30366
30541
30716
30891
27567
27742
27917
28092
28267
28442
28617
28792
28967
29142
29317
29492
29667
29842
30017
30192
30367
30542
30717
30892
27568
27743
27918
28093
28268
28443
28618
28793
28968
29143
29318
29493
29668
29843
30018
30193
30368
30543
30718
30893
27569
27744
27919
28094
28269
28444
28619
28794
28969
29144
29319
29494
29669
29844
30019
30194
30369
30544
30719
30894
27570
27745
27920
28095
28270
28445
28620
28795
28970
29145
29320
29495
29670
29845
30020
30195
30370
30545
30720
30895
27571
27746
27921
28096
28271
28446
28621
28796
28971
29146
29321
29496
29671
29846
30021
30196
30371
30546
30721
30896
27572
27747
27922
28097
28272
28447
28622
28797
28972
29147
29322
29497
29672
29847
30022
30197
30372
30547
30722
30897
27573
27748
27923
28098
28273
28448
28623
28798
28973
29148
29323
29498
29673
29848
30023
30198
30373
30548
30723
30898
27574
27749
27924
28099
28274
28449
28624
28799
28974
29149
29324
29499
29674
29849
30024
30199
30374
30549
30724
30899
30900
30930
30960
30990
31020
31050
31080
31110
31140
31170
31200
31230
31260
31290
31320
31350
31380
31410
31440
31470
30901
30931
30961
30991
31021
31051
31081
31111
31141
31171
31201
31231
31261
31291
31321
31351
31381
31411
31441
31471
30902
30932
30962
30992
31022
31052
31082
31112
31142
31172
31202
31232
31262
31292
31322
31352
31382
31412
31442
31472
30903
30933
30963
30993
31023
31053
31083
31113
31143
31173
31203
31233
31263
31293
31323
31353
31383
31413
31443
31473
30904
30934
30964
30994
31024
31054
31084
31114
31144
31174
31204
31234
31264
31294
31324
31354
31384
31414
31444
31474
30905
30935
30965
30995
31025
31055
31085
31115
31145
31175
31205
31235
31265
31295
31325
31355
31385
31415
31445
31475
30906
30936
30966
30996
31026
31056
31086
31116
31146
31176
31206
31236
31266
31296
31326
31356
31386
31416
31446
31476
30907
30937
30967
30997
31027
31057
31087
31117
31147
31177
31207
31237
31267
31297
31327
31357
31387
31417
31447
31477
30908
30938
30968
30998
31028
31058
31088
31118
31148
31178
31208
31238
31268
31298
31328
31358
31388
31418
31448
31478
30909
30939
30969
30999
31029
31059
31089
31119
31149
31179
31209
31239
31269
31299
31329
31359
31389
31419
31449
31479
30910
30940
30970
31000
31030
31060
31090
31120
31150
31180
31210
31240
31270
31300
31330
31360
31390
31420
31450
31480
30911
30941
30971
31001
31031
31061
31091
31121
31151
31181
31211
31241
31271
31301
31331
31361
31391
31421
31451
31481
30912
30942
30972
31002
31032
31062
31092
31122
31152
31182
31212
31242
31272
31302
31332
31362
31392
31422
31452
31482
30913
30943
30973
31003
31033
31063
31093
31123
31153
31183
31213
31243
31273
31303
31333
31363
31393
31423
31453
31483
30914
30944
30974
31004
31034
31064
31094
31124
31154
31184
31214
31244
31274
31304
31334
31364
31394
31424
31454
31484
30915
30945
30975
31005
31035
31065
31095
31125
31155
31185
31215
31245
31275
31305
31335
31365
31395
31425
31455
31485
30916
30946
30976
31006
31036
31066
31096
31126
31156
31186
31216
31246
31276
31306
31336
31366
31396
31426
31456
31486
30917
30947
30977
31007
31037
31067
31097
31127
31157
31187
31217
31247
31277
31307
31337
31367
31397
31427
31457
31487
30918
30948
30978
31008
31038
31068
31098
31128
31158
31188
31218
31248
31278
31308
31338
31368
31398
31428
31458
31488
30919
30949
30979
31009
31039
31069
31099
31129
31159
31189
31219
31249
31279
31309
31339
31369
31399
31429
31459
31489
30920
30950
30980
31010
31040
31070
31100
31130
31160
31190
31220
31250
31280
31310
31340
31370
31400
31430
31460
31490
30921
30951
30981
31011
31041
31071
31101
31131
31161
31191
31221
31251
31281
31311
31341
31371
31401
31431
31461
31491
30922
30952
30982
31012
31042
31072
31102
31132
31162
31192
31222
31252
31282
31312
31342
31372
31402
31432
31462
31492
30923
30953
30983
31013
31043
31073
31103
31133
31163
31193
31223
31253
31283
31313
31343
31373
31403
31433
31463
31493
30924
30954
30984
31014
31044
31074
31104
31134
31164
31194
31224
31254
31284
31314
31344
31374
31404
31434
31464
31494
30925
30955
30985
31015
31045
31075
31105
31135
31165
31195
31225
31255
31285
31315
31345
31375
31405
31435
31465
31495
30926
30956
30986
31016
31046
31076
31106
31136
31166
31196
31226
31256
31286
31316
31346
31376
31406
31436
31466
31496
30927
30957
30987
31017
31047
31077
31107
31137
31167
31197
31227
31257
31287
31317
31347
31377
31407
31437
31467
31497
30928
30958
30988
31018
31048
31078
31108
31138
31168
31198
31228
31258
31288
31318
31348
31378
31408
31438
31468
31498
30929
30959
30989
31019
31049
31079
31109
31139
31169
31199
31229
31259
31289
31319
31349
31379
31409
31439
31469
31499
31500
31530
31560
31590
31620
31650
31680
31710
31740
31770
31800
31830
31860
31890
31920
31950
31980
32010
32040
32070
31501
31531
31561
31591
31621
31651
31681
31711
31741
31771
31801
31831
31861
31891
31921
31951
31981
32011
32041
32071
31502
31532
31562
31592
31622
31652
31682
31712
31742
31772
31802
31832
31862
31892
31922
31952
31982
32012
32042
32072
31503
31533
31563
31593
31623
31653
31683
31713
31743
31773
31803
31833
31863
31893
31923
31953
31983
32013
32043
32073
31504
31534
31564
31594
31624
31654
31684
31714
31744
31774
31804
31834
31864
31894
31924
31954
31984
32014
32044
32074
31505
31535
31565
31595
31625
31655
31685
31715
31745
31775
31805
31835
31865
31895
31925
31955
31985
32015
32045
32075
31506
31536
31566
31596
31626
31656
31686
31716
31746
31776
31806
31836
31866
31896
31926
31956
31986
32016
32046
32076
31507
31537
31567
31597
31627
31657
31687
31717
31747
31777
31807
31837
31867
31897
31927
31957
31987
32017
32047
32077
31508
31538
31568
31598
31628
31658
31688
31718
31748
31778
31808
31838
31868
31898
31928
31958
31988
32018
32048
32078
31509
31539
31569
31599
31629
31659
31689
31719
31749
31779
31809
31839
31869
31899
31929
31959
31989
32019
32049
32079
31510
31540
31570
31600
31630
31660
31690
31720
31750
31780
31810
31840
31870
31900
31930
31960
31990
32020
32050
32080
31511
31541
31571
31601
31631
31661
31691
31721
31751
31781
31811
31841
31871
31901
31931
31961
31991
32021
32051
32081
31512
31542
31572
31602
31632
31662
31692
31722
31752
31782
31812
31842
31872
31902
31932
31962
31992
32022
32052
32082
31513
31543
31573
31603
31633
31663
31693
31723
31753
31783
31813
31843
31873
31903
31933
31963
31993
32023
32053
32083
31514
31544
31574
31604
31634
31664
31694
31724
31754
31784
31814
31844
31874
31904
31934
31964
31994
32024
32054
32084
31515
31545
31575
31605
31635
31665
31695
31725
31755
31785
31815
31845
31875
31905
31935
31965
31995
32025
32055
32085
31516
31546
31576
31606
31636
31666
31696
31726
31756
31786
31816
31846
31876
31906
31936
31966
31996
32026
32056
32086
31517
31547
31577
31607
31637
31667
31697
31727
31757
31787
31817
31847
31877
31907
31937
31967
31997
32027
32057
32087
31518
31548
31578
31608
31638
31668
31698
31728
31758
31788
31818
31848
31878
31908
31938
31968
31998
32028
32058
32088
31519
31549
31579
31609
31639
31669
31699
31729
31759
31789
31819
31849
31879
31909
31939
31969
31999
32029
32059
32089
31520
31550
31580
31610
31640
31670
31700
31730
31760
31790
31820
31850
31880
31910
31940
31970
32000
32030
32060
32090
31521
31551
31581
31611
31641
31671
31701
31731
31761
31791
31821
31851
31881
31911
31941
31971
32001
32031
32061
32091
31522
31552
31582
31612
31642
31672
31702
31732
31762
31792
31822
31852
31882
31912
31942
31972
32002
32032
32062
32092
31523
31553
31583
31613
31643
31673
31703
31733
31763
31793
31823
31853
31883
31913
31943
31973
32003
32033
32063
32093
31524
31554
31584
31614
31644
31674
31704
31734
31764
31794
31824
31854
31884
31914
31944
31974
32004
32034
32064
32094
31525
31555
31585
31615
31645
31675
31705
31735
31765
31795
31825
31855
31885
31915
31945
31975
32005
32035
32065
32095
31526
31556
31586
31616
31646
31676
31706
31736
31766
31796
31826
31856
31886
31916
31946
31976
32006
32036
32066
32096
31527
31557
31587
31617
31647
31677
31707
31737
31767
31797
31827
31857
31887
31917
31947
31977
32007
32037
32067
32097
31528
31558
31588
31618
31648
31678
31708
31738
31768
31798
31828
31858
31888
31918
31948
31978
32008
32038
32068
32098
31529
31559
31589
31619
31649
31679
31709
31739
31769
31799
31829
31859
31889
31919
31949
31979
32009
32039
32069
32099
32100
32250
32400
32550
32700
32850
33000
33150
33300
33450
33600
33750
33900
34050
34200
34350
34500
34650
34800
34950
35100
35250
35400
35550
35700
35850
36000
36150
36300
36450
32101
32251
32401
32551
32701
32851
33001
33151
33301
33451
33601
33751
33901
34051
34201
34351
34501
34651
34801
34951
35101
35251
35401
35551
35701
35851
36001
36151
36301
36451
32102
32252
32402
32552
32702
32852
33002
33152
33302
33452
33602
33752
33902
34052
34202
34352
34502
34652
34802
34952
35102
35252
35402
35552
35702
35852
36002
36152
36302
36452
32103
32253
32403
32553
32703
32853
33003
33153
33303
33453
33603
33753
33903
34053
34203
34353
34503
34653
34803
34953
35103
35253
35403
35553
35703
35853
36003
36153
36303
36453
32104
32254
32404
32554
32704
32854
33004
33154
33304
33454
33604
33754
33904
34054
34204
34354
34504
34654
34804
34954
35104
35254
35404
35554
35704
35854
36004
36154
36304
36454
32105
32255
32405
32555
32705
32855
33005
33155
33305
33455
33605
33755
33905
34055
34205
34355
34505
34655
34805
34955
35105
35255
35405
35555
35705
35855
36005
36155
36305
36455
32106
32256
32406
32556
32706
32856
33006
33156
33306
33456
33606
33756
33906
34056
34206
34356
34506
34656
34806
34956
35106
35256
35406
35556
35706
35856
36006
36156
36306
36456
32107
32257
32407
32557
32707
32857
33007
33157
33307
33457
33607
33757
33907
34057
34207
34357
34507
34657
34807
34957
35107
35257
35407
35557
35707
35857
36007
36157
36307
36457
32108
32258
32408
32558
32708
32858
33008
33158
33308
33458
33608
33758
33908
34058
34208
34358
34508
34658
34808
34958
35108
35258
35408
35558
35708
35858
36008
36158
36308
36458
32109
32259
32409
32559
32709
32859
33009
33159
33309
33459
33609
33759
33909
34059
34209
34359
34509
34659
34809
34959
35109
35259
35409
35559
35709
35859
36009
36159
36309
36459
32110
32260
32410
32560
32710
32860
33010
33160
33310
33460
33610
33760
33910
34060
34210
34360
34510
34660
34810
34960
35110
35260
35410
35560
35710
35860
36010
36160
36310
36460
32111
32261
32411
32561
32711
32861
33011
33161
33311
33461
33611
33761
33911
34061
34211
34361
34511
34661
34811
34961
35111
35261
35411
35561
35711
35861
36011
36161
36311
36461
32112
32262
32412
32562
32712
32862
33012
33162
33312
33462
33612
33762
33912
34062
34212
34362
34512
34662
34812
34962
35112
35262
35412
35562
35712
35862
36012
36162
36312
36462
32113
32263
32413
32563
32713
32863
33013
33163
33313
33463
33613
33763
33913
34063
34213
34363
34513
34663
34813
34963
35113
35263
35413
35563
35713
35863
36013
36163
36313
36463
32114
32264
32414
32564
32714
32864
33014
33164
33314
33464
33614
33764
33914
34064
34214
34364
34514
34664
34814
34964
35114
35264
35414
35564
35714
35864
36014
36164
36314
36464
32115
32265
32415
32565
32715
32865
33015
33165
33315
33465
33615
33765
33915
34065
34215
34365
34515
34665
34815
34965
35115
35265
35415
35565
35715
35865
36015
36165
36315
36465
32116
32266
32416
32566
32716
32866
33016
33166
33316
33466
33616
33766
33916
34066
34216
34366
34516
34666
34816
34966
35116
35266
35416
35566
35716
35866
36016
36166
36316
36466
32117
32267
32417
32567
32717
32867
33017
33167
33317
33467
33617
33767
33917
34067
34217
34367
34517
34667
34817
34967
35117
35267
35417
35567
35717
35867
36017
36167
36317
36467
32118
32268
32418
32568
32718
32868
33018
33168
33318
33468
33618
33768
33918
34068
34218
34368
34518
34668
34818
34968
35118
35268
35418
35568
35718
35868
36018
36168
36318
36468
32119
32269
32419
32569
32719
32869
33019
33169
33319
33469
33619
33769
33919
34069
34219
34369
34519
34669
34819
34969
35119
35269
35419
35569
35719
35869
36019
36169
36319
36469
32120
32270
32420
32570
32720
32870
33020
33170
33320
33470
33620
33770
33920
34070
34220
34370
34520
34670
34820
34970
35120
35270
35420
35570
35720
35870
36020
36170
36320
36470
32121
32271
32421
32571
32721
32871
33021
33171
33321
33471
33621
33771
33921
34071
34221
34371
34521
34671
34821
34971
35121
35271
35421
35571
35721
35871
36021
36171
36321
36471
32122
32272
32422
32572
32722
32872
33022
33172
33322
33472
33622
33772
33922
34072
34222
34372
34522
34672
34822
34972
35122
35272
35422
35572
35722
35872
36022
36172
36322
36472
32123
32273
32423
32573
32723
32873
33023
33173
33323
33473
33623
33773
33923
34073
34223
34373
34523
34673
34823
34973
35123
35273
35423
35573
35723
35873
36023
36173
36323
36473
32124
32274
32424
32574
32724
32874
33024
33174
33324
33474
33624
33774
33924
34074
34224
34374
34524
34674
34824
34974
35124
35274
35424
35574
35724
35874
36024
36174
36324
36474
32125
32275
32425
32575
32725
32875
33025
33175
33325
33475
33625
33775
33925
34075
34225
34375
34525
34675
34825
34975
35125
35275
35425
35575
35725
35875
36025
36175
36325
36475
32126
32276
32426
32576
32726
32876
33026
33176
33326
33476
33626
33776
33926
34076
34226
34376
34526
34676
34826
34976
35126
35276
35426
35576
35726
35876
36026
36176
36326
36476
32127
32277
32427
32577
32727
32877
33027
33177
33327
33477
33627
33777
33927
34077
34227
34377
34527
34677
34827
34977
35127
35277
35427
35577
35727
35877
36027
36177
36327
36477
32128
32278
32428
32578
32728
32878
33028
33178
33328
33478
33628
33778
33928
34078
34228
34378
34528
34678
34828
34978
35128
35278
35428
35578
35728
35878
36028
36178
36328
36478
32129
32279
32429
32579
32729
32879
33029
33179
33329
33479
33629
33779
33929
34079
34229
34379
34529
34679
34829
34979
35129
35279
35429
35579
35729
35879
36029
36179
36329
36479
32130
32280
32430
32580
32730
32880
33030
33180
33330
33480
33630
33780
33930
34080
34230
34380
34530
34680
34830
34980
35130
35280
35430
35580
35730
35880
36030
36180
36330
36480
32131
32281
32431
32581
32731
32881
33031
33181
33331
33481
33631
33781
33931
34081
34231
34381
34531
34681
34831
34981
35131
35281
35431
35581
35731
35881
36031
36181
36331
36481
32132
32282
32432
32582
32732
32882
33032
33182
33332
33482
33632
33782
33932
34082
34232
34382
34532
34682
34832
34982
35132
35282
35432
35582
35732
35882
36032
36182
36332
36482
32133
32283
32433
32583
32733
32883
33033
33183
33333
33483
33633
33783
33933
34083
34233
34383
34533
34683
34833
34983
35133
35283
35433
35583
35733
35883
36033
36183
36333
36483
32134
32284
32434
32584
32734
32884
33034
33184
33334
33484
33634
33784
33934
34084
34234
34384
34534
34684
34834
34984
35134
35284
35434
35584
35734
35884
36034
36184
36334
36484
32135
32285
32435
32585
32735
32885
33035
33185
33335
33485
33635
33785
33935
34085
34235
34385
34535
34685
34835
34985
35135
35285
35435
35585
35735
35885
36035
36185
36335
36485
32136
32286
32436
32586
32736
32886
33036
33186
33336
33486
33636
33786
33936
34086
34236
34386
34536
34686
34836
34986
35136
35286
35436
35586
35736
35886
36036
36186
36336
36486
32137
32287
32437
32587
32737
32887
33037
33187
33337
33487
33637
33787
33937
34087
34237
34387
34537
34687
34837
34987
35137
35287
35437
35587
35737
35887
36037
36187
36337
36487
32138
32288
32438
32588
32738
32888
33038
33188
33338
33488
33638
33788
33938
34088
34238
34388
34538
34688
34838
34988
35138
35288
35438
35588
35738
35888
36038
36188
36338
36488
32139
32289
32439
32589
32739
32889
33039
33189
33339
33489
33639
33789
33939
34089
34239
34389
34539
34689
34839
34989
35139
35289
35439
35589
35739
35889
36039
36189
36339
36489
32140
32290
32440
32590
32740
32890
33040
33190
33340
33490
33640
33790
33940
34090
34240
34390
34540
34690
34840
34990
35140
35290
35440
35590
35740
35890
36040
36190
36340
36490
32141
32291
32441
32591
32741
32891
33041
33191
33341
33491
33641
33791
33941
34091
34241
34391
34541
34691
34841
34991
35141
35291
35441
35591
35741
35891
36041
36191
36341
36491
32142
32292
32442
32592
32742
32892
33042
33192
33342
33492
33642
33792
33942
34092
34242
34392
34542
34692
34842
34992
35142
35292
35442
35592
35742
35892
36042
36192
36342
36492
32143
32293
32443
32593
32743
32893
33043
33193
33343
33493
33643
33793
33943
34093
34243
34393
34543
34693
34843
34993
35143
35293
35443
35593
35743
35893
36043
36193
36343
36493
32144
32294
32444
32594
32744
32894
33044
33194
33344
33494
33644
33794
33944
34094
34244
34394
34544
34694
34844
34994
35144
35294
35444
35594
35744
35894
36044
36194
36344
36494
32145
32295
32445
32595
32745
32895
33045
33195
33345
33495
33645
33795
33945
34095
34245
34395
34545
34695
34845
34995
35145
35295
35445
35595
35745
35895
36045
36195
36345
36495
32146
32296
32446
32596
32746
32896
33046
33196
33346
33496
33646
33796
33946
34096
34246
34396
34546
34696
34846
34996
35146
35296
35446
35596
35746
35896
36046
36196
36346
36496
32147
32297
32447
32597
32747
32897
33047
33197
33347
33497
33647
33797
33947
34097
34247
34397
34547
34697
34847
34997
35147
35297
35447
35597
35747
35897
36047
36197
36347
36497
32148
32298
32448
32598
32748
32898
33048
33198
33348
33498
33648
33798
33948
34098
34248
34398
34548
34698
34848
34998
35148
35298
35448
35598
35748
35898
36048
36198
36348
36498
32149
32299
32449
32599
32749
32899
33049
33199
33349
33499
33649
33799
33949
34099
34249
34399
34549
34699
34849
34999
35149
35299
35449
35599
35749
35899
36049
36199
36349
36499
32150
32300
32450
32600
32750
32900
33050
33200
33350
33500
33650
33800
33950
34100
34250
34400
34550
34700
34850
35000
35150
35300
35450
35600
35750
35900
36050
36200
36350
36500
32151
32301
32451
32601
32751
32901
33051
33201
33351
33501
33651
33801
33951
34101
34251
34401
34551
34701
34851
35001
35151
35301
35451
35601
35751
35901
36051
36201
36351
36501
32152
32302
32452
32602
32752
32902
33052
33202
33352
33502
33652
33802
33952
34102
34252
34402
34552
34702
34852
35002
35152
35302
35452
35602
35752
35902
36052
36202
36352
36502
32153
32303
32453
32603
32753
32903
33053
33203
33353
33503
33653
33803
33953
34103
34253
34403
34553
34703
34853
35003
35153
35303
35453
35603
35753
35903
36053
36203
36353
36503
32154
32304
32454
32604
32754
32904
33054
33204
33354
33504
33654
33804
33954
34104
34254
34404
34554
34704
34854
35004
35154
35304
35454
35604
35754
35904
36054
36204
36354
36504
32155
32305
32455
32605
32755
32905
33055
33205
33355
33505
33655
33805
33955
34105
34255
34405
34555
34705
34855
35005
35155
35305
35455
35605
35755
35905
36055
36205
36355
36505
32156
32306
32456
32606
32756
32906
33056
33206
33356
33506
33656
33806
33956
34106
34256
34406
34556
34706
34856
35006
35156
35306
35456
35606
35756
35906
36056
36206
36356
36506
32157
32307
32457
32607
32757
32907
33057
33207
33357
33507
33657
33807
33957
34107
34257
34407
34557
34707
34857
35007
35157
35307
35457
35607
35757
35907
36057
36207
36357
36507
32158
32308
32458
32608
32758
32908
33058
33208
33358
33508
33658
33808
33958
34108
34258
34408
34558
34708
34858
35008
35158
35308
35458
35608
35758
35908
36058
36208
36358
36508
32159
32309
32459
32609
32759
32909
33059
33209
33359
33509
33659
33809
33959
34109
34259
34409
34559
34709
34859
35009
35159
35309
35459
35609
35759
35909
36059
36209
36359
36509
32160
32310
32460
32610
32760
32910
33060
33210
33360
33510
33660
33810
33960
34110
34260
34410
34560
34710
34860
35010
35160
35310
35460
35610
35760
35910
36060
36210
36360
36510
32161
32311
32461
32611
32761
32911
33061
33211
33361
33511
33661
33811
33961
34111
34261
34411
34561
34711
34861
35011
35161
35311
35461
35611
35761
35911
36061
36211
36361
36511
32162
32312
32462
32612
32762
32912
33062
33212
33362
33512
33662
33812
33962
34112
34262
34412
34562
34712
34862
35012
35162
35312
35462
35612
35762
35912
36062
36212
36362
36512
32163
32313
32463
32613
32763
32913
33063
33213
33363
33513
33663
33813
33963
34113
34263
34413
34563
34713
34863
35013
35163
35313
35463
35613
35763
35913
36063
36213
36363
36513
32164
32314
32464
32614
32764
32914
33064
33214
33364
33514
33664
33814
33964
34114
34264
34414
34564
34714
34864
35014
35164
35314
35464
35614
35764
35914
36064
36214
36364
36514
32165
32315
32465
32615
32765
32915
33065
33215
33365
33515
33665
33815
33965
34115
34265
34415
34565
34715
34865
35015
35165
35315
35465
35615
35765
35915
36065
36215
36365
36515
32166
32316
32466
32616
32766
32916
33066
33216
33366
33516
33666
33816
33966
34116
34266
34416
34566
34716
34866
35016
35166
35316
35466
35616
35766
35916
36066
36216
36366
36516
32167
32317
32467
32617
32767
32917
33067
33217
33367
33517
33667
33817
33967
34117
34267
34417
34567
34717
34867
35017
35167
35317
35467
35617
35767
35917
36067
36217
36367
36517
32168
32318
32468
32618
32768
32918
33068
33218
33368
33518
33668
33818
33968
34118
34268
34418
34568
34718
34868
35018
35168
35318
35468
35618
35768
35918
36068
36218
36368
36518
32169
32319
32469
32619
32769
32919
33069
33219
33369
33519
33669
33819
33969
34119
34269
34419
34569
34719
34869
35019
35169
35319
35469
35619
35769
35919
36069
36219
36369
36519
32170
32320
32470
32620
32770
32920
33070
33220
33370
33520
33670
33820
33970
34120
34270
34420
34570
34720
34870
35020
35170
35320
35470
35620
35770
35920
36070
36220
36370
36520
32171
32321
32471
32621
32771
32921
33071
33221
33371
33521
33671
33821
33971
34121
34271
34421
34571
34721
34871
35021
35171
35321
35471
35621
35771
35921
36071
36221
36371
36521
32172
32322
32472
32622
32772
32922
33072
33222
33372
33522
33672
33822
33972
34122
34272
34422
34572
34722
34872
35022
35172
35322
35472
35622
35772
35922
36072
36222
36372
36522
32173
32323
32473
32623
32773
32923
33073
33223
33373
33523
33673
33823
33973
34123
34273
34423
34573
34723
34873
35023
35173
35323
35473
35623
35773
35923
36073
36223
36373
36523
32174
32324
32474
32624
32774
32924
33074
33224
33374
33524
33674
33824
33974
34124
34274
34424
34574
34724
34874
35024
35174
35324
35474
35624
35774
35924
36074
36224
36374
36524
32175
32325
32475
32625
32775
32925
33075
33225
33375
33525
33675
33825
33975
34125
34275
34425
34575
34725
34875
35025
35175
35325
35475
35625
35775
35925
36075
36225
36375
36525
32176
32326
32476
32626
32776
32926
33076
33226
33376
33526
33676
33826
33976
34126
34276
34426
34576
34726
34876
35026
35176
35326
35476
35626
35776
35926
36076
36226
36376
36526
32177
32327
32477
32627
32777
32927
33077
33227
33377
33527
33677
33827
33977
34127
34277
34427
34577
34727
34877
35027
35177
35327
35477
35627
35777
35927
36077
36227
36377
36527
32178
32328
32478
32628
32778
32928
33078
33228
33378
33528
33678
33828
33978
34128
34278
34428
34578
34728
34878
35028
35178
35328
35478
35628
35778
35928
36078
36228
36378
36528
32179
32329
32479
32629
32779
32929
33079
33229
33379
33529
33679
33829
33979
34129
34279
34429
34579
34729
34879
35029
35179
35329
35479
35629
35779
35929
36079
36229
36379
36529
32180
32330
32480
32630
32780
32930
33080
33230
33380
33530
33680
33830
33980
34130
34280
34430
34580
34730
34880
35030
35180
35330
35480
35630
35780
35930
36080
36230
36380
36530
32181
32331
32481
32631
32781
32931
33081
33231
33381
33531
33681
33831
33981
34131
34281
34431
34581
34731
34881
35031
35181
35331
35481
35631
35781
35931
36081
36231
36381
36531
32182
32332
32482
32632
32782
32932
33082
33232
33382
33532
33682
33832
33982
34132
34282
34432
34582
34732
34882
35032
35182
35332
35482
35632
35782
35932
36082
36232
36382
36532
32183
32333
32483
32633
32783
32933
33083
33233
33383
33533
33683
33833
33983
34133
34283
34433
34583
34733
34883
35033
35183
35333
35483
35633
35783
35933
36083
36233
36383
36533
32184
32334
32484
32634
32784
32934
33084
33234
33384
33534
33684
33834
33984
34134
34284
34434
34584
34734
34884
35034
35184
35334
35484
35634
35784
35934
36084
36234
36384
36534
32185
32335
32485
32635
32785
32935
33085
33235
33385
33535
33685
33835
33985
34135
34285
34435
34585
34735
34885
35035
35185
35335
35485
35635
35785
35935
36085
36235
36385
36535
32186
32336
32486
32636
32786
32936
33086
33236
33386
33536
33686
33836
33986
34136
34286
34436
34586
34736
34886
35036
35186
35336
35486
35636
35786
35936
36086
36236
36386
36536
32187
32337
32487
32637
32787
32937
33087
33237
33387
33537
33687
33837
33987
34137
34287
34437
34587
34737
34887
35037
35187
35337
35487
35637
35787
35937
36087
36237
36387
36537
32188
32338
32488
32638
32788
32938
33088
33238
33388
33538
33688
33838
33988
34138
34288
34438
34588
34738
34888
35038
35188
35338
35488
35638
35788
35938
36088
36238
36388
36538
32189
32339
32489
32639
32789
32939
33089
33239
33389
33539
33689
33839
33989
34139
34289
34439
34589
34739
34889
35039
35189
35339
35489
35639
35789
35939
36089
36239
36389
36539
32190
32340
32490
32640
32790
32940
33090
33240
33390
33540
33690
33840
33990
34140
34290
34440
34590
34740
34890
35040
35190
35340
35490
35640
35790
35940
36090
36240
36390
36540
32191
32341
32491
32641
32791
32941
33091
33241
33391
33541
33691
33841
33991
34141
34291
34441
34591
34741
34891
35041
35191
35341
35491
35641
35791
35941
36091
36241
36391
36541
32192
32342
32492
32642
32792
32942
33092
33242
33392
33542
33692
33842
33992
34142
34292
34442
34592
34742
34892
35042
35192
35342
35492
35642
35792
35942
36092
36242
36392
36542
32193
32343
32493
32643
32793
32943
33093
33243
33393
33543
33693
33843
33993
34143
34293
34443
34593
34743
34893
35043
35193
35343
35493
35643
35793
35943
36093
36243
36393
36543
32194
32344
32494
32644
32794
32944
33094
33244
33394
33544
33694
33844
33994
34144
34294
34444
34594
34744
34894
35044
35194
35344
35494
35644
35794
35944
36094
36244
36394
36544
32195
32345
32495
32645
32795
32945
33095
33245
33395
33545
33695
33845
33995
34145
34295
34445
34595
34745
34895
35045
35195
35345
35495
35645
35795
35945
36095
36245
36395
36545
32196
32346
32496
32646
32796
32946
33096
33246
33396
33546
33696
33846
33996
34146
34296
34446
34596
34746
34896
35046
35196
35346
35496
35646
35796
35946
36096
36246
36396
36546
32197
32347
32497
32647
32797
32947
33097
33247
33397
33547
33697
33847
33997
34147
34297
34447
34597
34747
34897
35047
35197
35347
35497
35647
35797
35947
36097
36247
36397
36547
32198
32348
32498
32648
32798
32948
33098
33248
33398
33548
33698
33848
33998
34148
34298
34448
34598
34748
34898
35048
35198
35348
35498
35648
35798
35948
36098
36248
36398
36548
32199
32349
32499
32649
32799
32949
33099
33249
33399
33549
33699
33849
33999
34149
34299
34449
34599
34749
34899
35049
35199
35349
35499
35649
35799
35949
36099
36249
36399
36549
32200
32350
32500
32650
32800
32950
33100
33250
33400
33550
33700
33850
34000
34150
34300
34450
34600
34750
34900
35050
35200
35350
35500
35650
35800
35950
36100
36250
36400
36550
32201
32351
32501
32651
32801
32951
33101
33251
33401
33551
33701
33851
34001
34151
34301
34451
34601
34751
34901
35051
35201
35351
35501
35651
35801
35951
36101
36251
36401
36551
32202
32352
32502
32652
32802
32952
33102
33252
33402
33552
33702
33852
34002
34152
34302
34452
34602
34752
34902
35052
35202
35352
35502
35652
35802
35952
36102
36252
36402
36552
32203
32353
32503
32653
32803
32953
33103
33253
33403
33553
33703
33853
34003
34153
34303
34453
34603
34753
34903
35053
35203
35353
35503
35653
35803
35953
36103
36253
36403
36553
32204
32354
32504
32654
32804
32954
33104
33254
33404
33554
33704
33854
34004
34154
34304
34454
34604
34754
34904
35054
35204
35354
35504
35654
35804
35954
36104
36254
36404
36554
32205
32355
32505
32655
32805
32955
33105
33255
33405
33555
33705
33855
34005
34155
34305
34455
34605
34755
34905
35055
35205
35355
35505
35655
35805
35955
36105
36255
36405
36555
32206
32356
32506
32656
32806
32956
33106
33256
33406
33556
33706
33856
34006
34156
34306
34456
34606
34756
34906
35056
35206
35356
35506
35656
35806
35956
36106
36256
36406
36556
32207
32357
32507
32657
32807
32957
33107
33257
33407
33557
33707
33857
34007
34157
34307
34457
34607
34757
34907
35057
35207
35357
35507
35657
35807
35957
36107
36257
36407
36557
32208
32358
32508
32658
32808
32958
33108
33258
33408
33558
33708
33858
34008
34158
34308
34458
34608
34758
34908
35058
35208
35358
35508
35658
35808
35958
36108
36258
36408
36558
32209
32359
32509
32659
32809
32959
33109
33259
33409
33559
33709
33859
34009
34159
34309
34459
34609
34759
34909
35059
35209
35359
35509
35659
35809
35959
36109
36259
36409
36559
32210
32360
32510
32660
32810
32960
33110
33260
33410
33560
33710
33860
34010
34160
34310
34460
34610
34760
34910
35060
35210
35360
35510
35660
35810
35960
36110
36260
36410
36560
32211
32361
32511
32661
32811
32961
33111
33261
33411
33561
33711
33861
34011
34161
34311
34461
34611
34761
34911
35061
35211
35361
35511
35661
35811
35961
36111
36261
36411
36561
32212
32362
32512
32662
32812
32962
33112
33262
33412
33562
33712
33862
34012
34162
34312
34462
34612
34762
34912
35062
35212
35362
35512
35662
35812
35962
36112
36262
36412
36562
32213
32363
32513
32663
32813
32963
33113
33263
33413
33563
33713
33863
34013
34163
34313
34463
34613
34763
34913
35063
35213
35363
35513
35663
35813
35963
36113
36263
36413
36563
32214
32364
32514
32664
32814
32964
33114
33264
33414
33564
33714
33864
34014
34164
34314
34464
34614
34764
34914
35064
35214
35364
35514
35664
35814
35964
36114
36264
36414
36564
32215
32365
32515
32665
32815
32965
33115
33265
33415
33565
33715
33865
34015
34165
34315
34465
34615
34765
34915
35065
35215
35365
35515
35665
35815
35965
36115
36265
36415
36565
32216
32366
32516
32666
32816
32966
33116
33266
33416
33566
33716
33866
34016
34166
34316
34466
34616
34766
34916
35066
35216
35366
35516
35666
35816
35966
36116
36266
36416
36566
32217
32367
32517
32667
32817
32967
33117
33267
33417
33567
33717
33867
34017
34167
34317
34467
34617
34767
34917
35067
35217
35367
35517
35667
35817
35967
36117
36267
36417
36567
32218
32368
32518
32668
32818
32968
33118
33268
33418
33568
33718
33868
34018
34168
34318
34468
34618
34768
34918
35068
35218
35368
35518
35668
35818
35968
36118
36268
36418
36568
32219
32369
32519
32669
32819
32969
33119
33269
33419
33569
33719
33869
34019
34169
34319
34469
34619
34769
34919
35069
35219
35369
35519
35669
35819
35969
36119
36269
36419
36569
32220
32370
32520
32670
32820
32970
33120
33270
33420
33570
33720
33870
34020
34170
34320
34470
34620
34770
34920
35070
35220
35370
35520
35670
35820
35970
36120
36270
36420
36570
32221
32371
32521
32671
32821
32971
33121
33271
33421
33571
33721
33871
34021
34171
34321
34471
34621
34771
34921
35071
35221
35371
35521
35671
35821
35971
36121
36271
36421
36571
32222
32372
32522
32672
32822
32972
33122
33272
33422
33572
33722
33872
34022
34172
34322
34472
34622
34772
34922
35072
35222
35372
35522
35672
35822
35972
36122
36272
36422
36572
32223
32373
32523
32673
32823
32973
33123
33273
33423
33573
33723
33873
34023
34173
34323
34473
34623
34773
34923
35073
35223
35373
35523
35673
35823
35973
36123
36273
36423
36573
32224
32374
32524
32674
32824
32974
33124
33274
33424
33574
33724
33874
34024
34174
34324
34474
34624
34774
34924
35074
35224
35374
35524
35674
35824
35974
36124
36274
36424
36574
32225
32375
32525
32675
32825
32975
33125
33275
33425
33575
33725
33875
34025
34175
34325
34475
34625
34775
34925
35075
35225
35375
35525
35675
35825
35975
36125
36275
36425
36575
32226
32376
32526
32676
32826
32976
33126
33276
33426
33576
33726
33876
34026
34176
34326
34476
34626
34776
34926
35076
35226
35376
35526
35676
35826
35976
36126
36276
36426
36576
32227
32377
32527
32677
32827
32977
33127
33277
33427
33577
33727
33877
34027
34177
34327
34477
34627
34777
34927
35077
35227
35377
35527
35677
35827
35977
36127
36277
36427
36577
32228
32378
32528
32678
32828
32978
33128
33278
33428
33578
33728
33878
34028
34178
34328
34478
34628
34778
34928
35078
35228
35378
35528
35678
35828
35978
36128
36278
36428
36578
32229
32379
32529
32679
32829
32979
33129
33279
33429
33579
33729
33879
34029
34179
34329
34479
34629
34779
34929
35079
35229
35379
35529
35679
35829
35979
36129
36279
36429
36579
32230
32380
32530
32680
32830
32980
33130
33280
33430
33580
33730
33880
34030
34180
34330
34480
34630
34780
34930
35080
35230
35380
35530
35680
35830
35980
36130
36280
36430
36580
32231
32381
32531
32681
32831
32981
33131
33281
33431
33581
33731
33881
34031
34181
34331
34481
34631
34781
34931
35081
35231
35381
35531
35681
35831
35981
36131
36281
36431
36581
32232
32382
32532
32682
32832
32982
33132
33282
33432
33582
33732
33882
34032
34182
34332
34482
34632
34782
34932
35082
35232
35382
35532
35682
35832
35982
36132
36282
36432
36582
32233
32383
32533
32683
32833
32983
33133
33283
33433
33583
33733
33883
34033
34183
34333
34483
34633
34783
34933
35083
35233
35383
35533
35683
35833
35983
36133
36283
36433
36583
32234
32384
32534
32684
32834
32984
33134
33284
33434
33584
33734
33884
34034
34184
34334
34484
34634
34784
34934
35084
35234
35384
35534
35684
35834
35984
36134
36284
36434
36584
32235
32385
32535
32685
32835
32985
33135
33285
33435
33585
33735
33885
34035
34185
34335
34485
34635
34785
34935
35085
35235
35385
35535
35685
35835
35985
36135
36285
36435
36585
32236
32386
32536
32686
32836
32986
33136
33286
33436
33586
33736
33886
34036
34186
34336
34486
34636
34786
34936
35086
35236
35386
35536
35686
35836
35986
36136
36286
36436
36586
32237
32387
32537
32687
32837
32987
33137
33287
33437
33587
33737
33887
34037
34187
34337
34487
34637
34787
34937
35087
35237
35387
35537
35687
35837
35987
36137
36287
36437
36587
32238
32388
32538
32688
32838
32988
33138
33288
33438
33588
33738
33888
34038
34188
34338
34488
34638
34788
34938
35088
35238
35388
35538
35688
35838
35988
36138
36288
36438
36588
32239
32389
32539
32689
32839
32989
33139
33289
33439
33589
33739
33889
34039
34189
34339
34489
34639
34789
34939
35089
35239
35389
35539
35689
35839
35989
36139
36289
36439
36589
32240
32390
32540
32690
32840
32990
33140
33290
33440
33590
33740
33890
34040
34190
34340
34490
34640
34790
34940
35090
35240
35390
35540
35690
35840
35990
36140
36290
36440
36590
32241
32391
32541
32691
32841
32991
33141
33291
33441
33591
33741
33891
34041
34191
34341
34491
34641
34791
34941
35091
35241
35391
35541
35691
35841
35991
36141
36291
36441
36591
32242
32392
32542
32692
32842
32992
33142
33292
33442
33592
33742
33892
34042
34192
34342
34492
34642
34792
34942
35092
35242
35392
35542
35692
35842
35992
36142
36292
36442
36592
32243
32393
32543
32693
32843
32993
33143
33293
33443
33593
33743
33893
34043
34193
34343
34493
34643
34793
34943
35093
35243
35393
35543
35693
35843
35993
36143
36293
36443
36593
32244
32394
32544
32694
32844
32994
33144
33294
33444
33594
33744
33894
34044
34194
34344
34494
34644
34794
34944
35094
35244
35394
35544
35694
35844
35994
36144
36294
36444
36594
32245
32395
32545
32695
32845
32995
33145
33295
33445
33595
33745
33895
34045
34195
34345
34495
34645
34795
34945
35095
35245
35395
35545
35695
35845
35995
36145
36295
36445
36595
32246
32396
32546
32696
32846
32996
33146
33296
33446
33596
33746
33896
34046
34196
34346
34496
34646
34796
34946
35096
35246
35396
35546
35696
35846
35996
36146
36296
36446
36596
32247
32397
32547
32697
32847
32997
33147
33297
33447
33597
33747
33897
34047
34197
34347
34497
34647
34797
34947
35097
35247
35397
35547
35697
35847
35997
36147
36297
36447
36597
32248
32398
32548
32698
32848
32998
33148
33298
33448
33598
33748
33898
34048
34198
34348
34498
34648
34798
34948
35098
35248
35398
35548
35698
35848
35998
36148
36298
36448
36598
32249
32399
32549
32699
32849
32999
33149
33299
33449
33599
33749
33899
34049
34199
34349
34499
34649
34799
34949
35099
35249
35399
35549
35699
35849
35999
36149
36299
36449
36599
36600
36750
36900
37050
37200
37350
37500
37650
37800
37950
38100
38250
38400
38550
38700
38850
39000
39150
39300
39450
39600
39750
39900
40050
40200
40350
40500
40650
40800
40950
36601
36751
36901
37051
37201
37351
37501
37651
37801
37951
38101
38251
38401
38551
38701
38851
39001
39151
39301
39451
39601
39751
39901
40051
40201
40351
40501
40651
40801
40951
36602
36752
36902
37052
37202
37352
37502
37652
37802
37952
38102
38252
38402
38552
38702
38852
39002
39152
39302
39452
39602
39752
39902
40052
40202
40352
40502
40652
40802
40952
36603
36753
36903
37053
37203
37353
37503
37653
37803
37953
38103
38253
38403
38553
38703
38853
39003
39153
39303
39453
39603
39753
39903
40053
40203
40353
40503
40653
40803
40953
36604
36754
36904
37054
37204
37354
37504
37654
37804
37954
38104
38254
38404
38554
38704
38854
39004
39154
39304
39454
39604
39754
39904
40054
40204
40354
40504
40654
40804
40954
36605
36755
36905
37055
37205
37355
37505
37655
37805
37955
38105
38255
38405
38555
38705
38855
39005
39155
39305
39455
39605
39755
39905
40055
40205
40355
40505
40655
40805
40955
36606
36756
36906
37056
37206
37356
37506
37656
37806
37956
38106
38256
38406
38556
38706
38856
39006
39156
39306
39456
39606
39756
39906
40056
40206
40356
40506
40656
40806
40956
36607
36757
36907
37057
37207
37357
37507
37657
37807
37957
38107
38257
38407
38557
38707
38857
39007
39157
39307
39457
39607
39757
39907
40057
40207
40357
40507
40657
40807
40957
36608
36758
36908
37058
37208
37358
37508
37658
37808
37958
38108
38258
38408
38558
38708
38858
39008
39158
39308
39458
39608
39758
39908
40058
40208
40358
40508
40658
40808
40958
36609
36759
36909
37059
37209
37359
37509
37659
37809
37959
38109
38259
38409
38559
38709
38859
39009
39159
39309
39459
39609
39759
39909
40059
40209
40359
40509
40659
40809
40959
36610
36760
36910
37060
37210
37360
37510
37660
37810
37960
38110
38260
38410
38560
38710
38860
39010
39160
39310
39460
39610
39760
39910
40060
40210
40360
40510
40660
40810
40960
36611
36761
36911
37061
37211
37361
37511
37661
37811
37961
38111
38261
38411
38561
38711
38861
39011
39161
39311
39461
39611
39761
39911
40061
40211
40361
40511
40661
40811
40961
36612
36762
36912
37062
37212
37362
37512
37662
37812
37962
38112
38262
38412
38562
38712
38862
39012
39162
39312
39462
39612
39762
39912
40062
40212
40362
40512
40662
40812
40962
36613
36763
36913
37063
37213
37363
37513
37663
37813
37963
38113
38263
38413
38563
38713
38863
39013
39163
39313
39463
39613
39763
39913
40063
40213
40363
40513
40663
40813
40963
36614
36764
36914
37064
37214
37364
37514
37664
37814
37964
38114
38264
38414
38564
38714
38864
39014
39164
39314
39464
39614
39764
39914
40064
40214
40364
40514
40664
40814
40964
36615
36765
36915
37065
37215
37365
37515
37665
37815
37965
38115
38265
38415
38565
38715
38865
39015
39165
39315
39465
39615
39765
39915
40065
40215
40365
40515
40665
40815
40965
36616
36766
36916
37066
37216
37366
37516
37666
37816
37966
38116
38266
38416
38566
38716
38866
39016
39166
39316
39466
39616
39766
39916
40066
40216
40366
40516
40666
40816
40966
36617
36767
36917
37067
37217
37367
37517
37667
37817
37967
38117
38267
38417
38567
38717
38867
39017
39167
39317
39467
39617
39767
39917
40067
40217
40367
40517
40667
40817
40967
36618
36768
36918
37068
37218
37368
37518
37668
37818
37968
38118
38268
38418
38568
38718
38868
39018
39168
39318
39468
39618
39768
39918
40068
40218
40368
40518
40668
40818
40968
36619
36769
36919
37069
37219
37369
37519
37669
37819
37969
38119
38269
38419
38569
38719
38869
39019
39169
39319
39469
39619
39769
39919
40069
40219
40369
40519
40669
40819
40969
36620
36770
36920
37070
37220
37370
37520
37670
37820
37970
38120
38270
38420
38570
38720
38870
39020
39170
39320
39470
39620
39770
39920
40070
40220
40370
40520
40670
40820
40970
36621
36771
36921
37071
37221
37371
37521
37671
37821
37971
38121
38271
38421
38571
38721
38871
39021
39171
39321
39471
39621
39771
39921
40071
40221
40371
40521
40671
40821
40971
36622
36772
36922
37072
37222
37372
37522
37672
37822
37972
38122
38272
38422
38572
38722
38872
39022
39172
39322
39472
39622
39772
39922
40072
40222
40372
40522
40672
40822
40972
36623
36773
36923
37073
37223
37373
37523
37673
37823
37973
38123
38273
38423
38573
38723
38873
39023
39173
39323
39473
39623
39773
39923
40073
40223
40373
40523
40673
40823
40973
36624
36774
36924
37074
37224
37374
37524
37674
37824
37974
38124
38274
38424
38574
38724
38874
39024
39174
39324
39474
39624
39774
39924
40074
40224
40374
40524
40674
40824
40974
36625
36775
36925
37075
37225
37375
37525
37675
37825
37975
38125
38275
38425
38575
38725
38875
39025
39175
39325
39475
39625
39775
39925
40075
40225
40375
40525
40675
40825
40975
36626
36776
36926
37076
37226
37376
37526
37676
37826
37976
38126
38276
38426
38576
38726
38876
39026
39176
39326
39476
39626
39776
39926
40076
40226
40376
40526
40676
40826
40976
36627
36777
36927
37077
37227
37377
37527
37677
37827
37977
38127
38277
38427
38577
38727
38877
39027
39177
39327
39477
39627
39777
39927
40077
40227
40377
40527
40677
40827
40977
36628
36778
36928
37078
37228
37378
37528
37678
37828
37978
38128
38278
38428
38578
38728
38878
39028
39178
39328
39478
39628
39778
39928
40078
40228
40378
40528
40678
40828
40978
36629
36779
36929
37079
37229
37379
37529
37679
37829
37979
38129
38279
38429
38579
38729
38879
39029
39179
39329
39479
39629
39779
39929
40079
40229
40379
40529
40679
40829
40979
36630
36780
36930
37080
37230
37380
37530
37680
37830
37980
38130
38280
38430
38580
38730
38880
39030
39180
39330
39480
39630
39780
39930
40080
40230
40380
40530
40680
40830
40980
36631
36781
36931
37081
37231
37381
37531
37681
37831
37981
38131
38281
38431
38581
38731
38881
39031
39181
39331
39481
39631
39781
39931
40081
40231
40381
40531
40681
40831
40981
36632
36782
36932
37082
37232
37382
37532
37682
37832
37982
38132
38282
38432
38582
38732
38882
39032
39182
39332
39482
39632
39782
39932
40082
40232
40382
40532
40682
40832
40982
36633
36783
36933
37083
37233
37383
37533
37683
37833
37983
38133
38283
38433
38583
38733
38883
39033
39183
39333
39483
39633
39783
39933
40083
40233
40383
40533
40683
40833
40983
36634
36784
36934
37084
37234
37384
37534
37684
37834
37984
38134
38284
38434
38584
38734
38884
39034
39184
39334
39484
39634
39784
39934
40084
40234
40384
40534
40684
40834
40984
36635
36785
36935
37085
37235
37385
37535
37685
37835
37985
38135
38285
38435
38585
38735
38885
39035
39185
39335
39485
39635
39785
39935
40085
40235
40385
40535
40685
40835
40985
36636
36786
36936
37086
37236
37386
37536
37686
37836
37986
38136
38286
38436
38586
38736
38886
39036
39186
39336
39486
39636
39786
39936
40086
40236
40386
40536
40686
40836
40986
36637
36787
36937
37087
37237
37387
37537
37687
37837
37987
38137
38287
38437
38587
38737
38887
39037
39187
39337
39487
39637
39787
39937
40087
40237
40387
40537
40687
40837
40987
36638
36788
36938
37088
37238
37388
37538
37688
37838
37988
38138
38288
38438
38588
38738
38888
39038
39188
39338
39488
39638
39788
39938
40088
40238
40388
40538
40688
40838
40988
36639
36789
36939
37089
37239
37389
37539
37689
37839
37989
38139
38289
38439
38589
38739
38889
39039
39189
39339
39489
39639
39789
39939
40089
40239
40389
40539
40689
40839
40989
36640
36790
36940
37090
37240
37390
37540
37690
37840
37990
38140
38290
38440
38590
38740
38890
39040
39190
39340
39490
39640
39790
39940
40090
40240
40390
40540
40690
40840
40990
36641
36791
36941
37091
37241
37391
37541
37691
37841
37991
38141
38291
38441
38591
38741
38891
39041
39191
39341
39491
39641
39791
39941
40091
40241
40391
40541
40691
40841
40991
36642
36792
36942
37092
37242
37392
37542
37692
37842
37992
38142
38292
38442
38592
38742
38892
39042
39192
39342
39492
39642
39792
39942
40092
40242
40392
40542
40692
40842
40992
36643
36793
36943
37093
37243
37393
37543
37693
37843
37993
38143
38293
38443
38593
38743
38893
39043
39193
39343
39493
39643
39793
39943
40093
40243
40393
40543
40693
40843
40993
36644
36794
36944
37094
37244
37394
37544
37694
37844
37994
38144
38294
38444
38594
38744
38894
39044
39194
39344
39494
39644
39794
39944
40094
40244
40394
40544
40694
40844
40994
36645
36795
36945
37095
37245
37395
37545
37695
37845
37995
38145
38295
38445
38595
38745
38895
39045
39195
39345
39495
39645
39795
39945
40095
40245
40395
40545
40695
40845
40995
36646
36796
36946
37096
37246
37396
37546
37696
37846
37996
38146
38296
38446
38596
38746
38896
39046
39196
39346
39496
39646
39796
39946
40096
40246
40396
40546
40696
40846
40996
36647
36797
36947
37097
37247
37397
37547
37697
37847
37997
38147
38297
38447
38597
38747
38897
39047
39197
39347
39497
39647
39797
39947
40097
40247
40397
40547
40697
40847
40997
36648
36798
36948
37098
37248
37398
37548
37698
37848
37998
38148
38298
38448
38598
38748
38898
39048
39198
39348
39498
39648
39798
39948
40098
40248
40398
40548
40698
40848
40998
36649
36799
36949
37099
37249
37399
37549
37699
37849
37999
38149
38299
38449
38599
38749
38899
39049
39199
39349
39499
39649
39799
39949
40099
40249
40399
40549
40699
40849
40999
36650
36800
36950
37100
37250
37400
37550
37700
37850
38000
38150
38300
38450
38600
38750
38900
39050
39200
39350
39500
39650
39800
39950
40100
40250
40400
40550
40700
40850
41000
36651
36801
36951
37101
37251
37401
37551
37701
37851
38001
38151
38301
38451
38601
38751
38901
39051
39201
39351
39501
39651
39801
39951
40101
40251
40401
40551
40701
40851
41001
36652
36802
36952
37102
37252
37402
37552
37702
37852
38002
38152
38302
38452
38602
38752
38902
39052
39202
39352
39502
39652
39802
39952
40102
40252
40402
40552
40702
40852
41002
36653
36803
36953
37103
37253
37403
37553
37703
37853
38003
38153
38303
38453
38603
38753
38903
39053
39203
39353
39503
39653
39803
39953
40103
40253
40403
40553
40703
40853
41003
36654
36804
36954
37104
37254
37404
37554
37704
37854
38004
38154
38304
38454
38604
38754
38904
39054
39204
39354
39504
39654
39804
39954
40104
40254
40404
40554
40704
40854
41004
36655
36805
36955
37105
37255
37405
37555
37705
37855
38005
38155
38305
38455
38605
38755
38905
39055
39205
39355
39505
39655
39805
39955
40105
40255
40405
40555
40705
40855
41005
36656
36806
36956
37106
37256
37406
37556
37706
37856
38006
38156
38306
38456
38606
38756
38906
39056
39206
39356
39506
39656
39806
39956
40106
40256
40406
40556
40706
40856
41006
36657
36807
36957
37107
37257
37407
37557
37707
37857
38007
38157
38307
38457
38607
38757
38907
39057
39207
39357
39507
39657
39807
39957
40107
40257
40407
40557
40707
40857
41007
36658
36808
36958
37108
37258
37408
37558
37708
37858
38008
38158
38308
38458
38608
38758
38908
39058
39208
39358
39508
39658
39808
39958
40108
40258
40408
40558
40708
40858
41008
36659
36809
36959
37109
37259
37409
37559
37709
37859
38009
38159
38309
38459
38609
38759
38909
39059
39209
39359
39509
39659
39809
39959
40109
40259
40409
40559
40709
40859
41009
36660
36810
36960
37110
37260
37410
37560
37710
37860
38010
38160
38310
38460
38610
38760
38910
39060
39210
39360
39510
39660
39810
39960
40110
40260
40410
40560
40710
40860
41010
36661
36811
36961
37111
37261
37411
37561
37711
37861
38011
38161
38311
38461
38611
38761
38911
39061
39211
39361
39511
39661
39811
39961
40111
40261
40411
40561
40711
40861
41011
36662
36812
36962
37112
37262
37412
37562
37712
37862
38012
38162
38312
38462
38612
38762
38912
39062
39212
39362
39512
39662
39812
39962
40112
40262
40412
40562
40712
40862
41012
36663
36813
36963
37113
37263
37413
37563
37713
37863
38013
38163
38313
38463
38613
38763
38913
39063
39213
39363
39513
39663
39813
39963
40113
40263
40413
40563
40713
40863
41013
36664
36814
36964
37114
37264
37414
37564
37714
37864
38014
38164
38314
38464
38614
38764
38914
39064
39214
39364
39514
39664
39814
39964
40114
40264
40414
40564
40714
40864
41014
36665
36815
36965
37115
37265
37415
37565
37715
37865
38015
38165
38315
38465
38615
38765
38915
39065
39215
39365
39515
39665
39815
39965
40115
40265
40415
40565
40715
40865
41015
36666
36816
36966
37116
37266
37416
37566
37716
37866
38016
38166
38316
38466
38616
38766
38916
39066
39216
39366
39516
39666
39816
39966
40116
40266
40416
40566
40716
40866
41016
36667
36817
36967
37117
37267
37417
37567
37717
37867
38017
38167
38317
38467
38617
38767
38917
39067
39217
39367
39517
39667
39817
39967
40117
40267
40417
40567
40717
40867
41017
36668
36818
36968
37118
37268
37418
37568
37718
37868
38018
38168
38318
38468
38618
38768
38918
39068
39218
39368
39518
39668
39818
39968
40118
40268
40418
40568
40718
40868
41018
36669
36819
36969
37119
37269
37419
37569
37719
37869
38019
38169
38319
38469
38619
38769
38919
39069
39219
39369
39519
39669
39819
39969
40119
40269
40419
40569
40719
40869
41019
36670
36820
36970
37120
37270
37420
37570
37720
37870
38020
38170
38320
38470
38620
38770
38920
39070
39220
39370
39520
39670
39820
39970
40120
40270
40420
40570
40720
40870
41020
36671
36821
36971
37121
37271
37421
37571
37721
37871
38021
38171
38321
38471
38621
38771
38921
39071
39221
39371
39521
39671
39821
39971
40121
40271
40421
40571
40721
40871
41021
36672
36822
36972
37122
37272
37422
37572
37722
37872
38022
38172
38322
38472
38622
38772
38922
39072
39222
39372
39522
39672
39822
39972
40122
40272
40422
40572
40722
40872
41022
36673
36823
36973
37123
37273
37423
37573
37723
37873
38023
38173
38323
38473
38623
38773
38923
39073
39223
39373
39523
39673
39823
39973
40123
40273
40423
40573
40723
40873
41023
36674
36824
36974
37124
37274
37424
37574
37724
37874
38024
38174
38324
38474
38624
38774
38924
39074
39224
39374
39524
39674
39824
39974
40124
40274
40424
40574
40724
40874
41024
36675
36825
36975
37125
37275
37425
37575
37725
37875
38025
38175
38325
38475
38625
38775
38925
39075
39225
39375
39525
39675
39825
39975
40125
40275
40425
40575
40725
40875
41025
36676
36826
36976
37126
37276
37426
37576
37726
37876
38026
38176
38326
38476
38626
38776
38926
39076
39226
39376
39526
39676
39826
39976
40126
40276
40426
40576
40726
40876
41026
36677
36827
36977
37127
37277
37427
37577
37727
37877
38027
38177
38327
38477
38627
38777
38927
39077
39227
39377
39527
39677
39827
39977
40127
40277
40427
40577
40727
40877
41027
36678
36828
36978
37128
37278
37428
37578
37728
37878
38028
38178
38328
38478
38628
38778
38928
39078
39228
39378
39528
39678
39828
39978
40128
40278
40428
40578
40728
40878
41028
36679
36829
36979
37129
37279
37429
37579
37729
37879
38029
38179
38329
38479
38629
38779
38929
39079
39229
39379
39529
39679
39829
39979
40129
40279
40429
40579
40729
40879
41029
36680
36830
36980
37130
37280
37430
37580
37730
37880
38030
38180
38330
38480
38630
38780
38930
39080
39230
39380
39530
39680
39830
39980
40130
40280
40430
40580
40730
40880
41030
36681
36831
36981
37131
37281
37431
37581
37731
37881
38031
38181
38331
38481
38631
38781
38931
39081
39231
39381
39531
39681
39831
39981
40131
40281
40431
40581
40731
40881
41031
36682
36832
36982
37132
37282
37432
37582
37732
37882
38032
38182
38332
38482
38632
38782
38932
39082
39232
39382
39532
39682
39832
39982
40132
40282
40432
40582
40732
40882
41032
36683
36833
36983
37133
37283
37433
37583
37733
37883
38033
38183
38333
38483
38633
38783
38933
39083
39233
39383
39533
39683
39833
39983
40133
40283
40433
40583
40733
40883
41033
36684
36834
36984
37134
37284
37434
37584
37734
37884
38034
38184
38334
38484
38634
38784
38934
39084
39234
39384
39534
39684
39834
39984
40134
40284
40434
40584
40734
40884
41034
36685
36835
36985
37135
37285
37435
37585
37735
37885
38035
38185
38335
38485
38635
38785
38935
39085
39235
39385
39535
39685
39835
39985
40135
40285
40435
40585
40735
40885
41035
36686
36836
36986
37136
37286
37436
37586
37736
37886
38036
38186
38336
38486
38636
38786
38936
39086
39236
39386
39536
39686
39836
39986
40136
40286
40436
40586
40736
40886
41036
36687
36837
36987
37137
37287
37437
37587
37737
37887
38037
38187
38337
38487
38637
38787
38937
39087
39237
39387
39537
39687
39837
39987
40137
40287
40437
40587
40737
40887
41037
36688
36838
36988
37138
37288
37438
37588
37738
37888
38038
38188
38338
38488
38638
38788
38938
39088
39238
39388
39538
39688
39838
39988
40138
40288
40438
40588
40738
40888
41038
36689
36839
36989
37139
37289
37439
37589
37739
37889
38039
38189
38339
38489
38639
38789
38939
39089
39239
39389
39539
39689
39839
39989
40139
40289
40439
40589
40739
40889
41039
36690
36840
36990
37140
37290
37440
37590
37740
37890
38040
38190
38340
38490
38640
38790
38940
39090
39240
39390
39540
39690
39840
39990
40140
40290
40440
40590
40740
40890
41040
36691
36841
36991
37141
37291
37441
37591
37741
37891
38041
38191
38341
38491
38641
38791
38941
39091
39241
39391
39541
39691
39841
39991
40141
40291
40441
40591
40741
40891
41041
36692
36842
36992
37142
37292
37442
37592
37742
37892
38042
38192
38342
38492
38642
38792
38942
39092
39242
39392
39542
39692
39842
39992
40142
40292
40442
40592
40742
40892
41042
36693
36843
36993
37143
37293
37443
37593
37743
37893
38043
38193
38343
38493
38643
38793
38943
39093
39243
39393
39543
39693
39843
39993
40143
40293
40443
40593
40743
40893
41043
36694
36844
36994
37144
37294
37444
37594
37744
37894
38044
38194
38344
38494
38644
38794
38944
39094
39244
39394
39544
39694
39844
39994
40144
40294
40444
40594
40744
40894
41044
36695
36845
36995
37145
37295
37445
37595
37745
37895
38045
38195
38345
38495
38645
38795
38945
39095
39245
39395
39545
39695
39845
39995
40145
40295
40445
40595
40745
40895
41045
36696
36846
36996
37146
37296
37446
37596
37746
37896
38046
38196
38346
38496
38646
38796
38946
39096
39246
39396
39546
39696
39846
39996
40146
40296
40446
40596
40746
40896
41046
36697
36847
36997
37147
37297
37447
37597
37747
37897
38047
38197
38347
38497
38647
38797
38947
39097
39247
39397
39547
39697
39847
39997
40147
40297
40447
40597
40747
40897
41047
36698
36848
36998
37148
37298
37448
37598
37748
37898
38048
38198
38348
38498
38648
38798
38948
39098
39248
39398
39548
39698
39848
39998
40148
40298
40448
40598
40748
40898
41048
36699
36849
36999
37149
37299
37449
37599
37749
37899
38049
38199
38349
38499
38649
38799
38949
39099
39249
39399
39549
39699
39849
39999
40149
40299
40449
40599
40749
40899
41049
36700
36850
37000
37150
37300
37450
37600
37750
37900
38050
38200
38350
38500
38650
38800
38950
39100
39250
39400
39550
39700
39850
40000
40150
40300
40450
40600
40750
40900
41050
36701
36851
37001
37151
37301
37451
37601
37751
37901
38051
38201
38351
38501
38651
38801
38951
39101
39251
39401
39551
39701
39851
40001
40151
40301
40451
40601
40751
40901
41051
36702
36852
37002
37152
37302
37452
37602
37752
37902
38052
38202
38352
38502
38652
38802
38952
39102
39252
39402
39552
39702
39852
40002
40152
40302
40452
40602
40752
40902
41052
36703
36853
37003
37153
37303
37453
37603
37753
37903
38053
38203
38353
38503
38653
38803
38953
39103
39253
39403
39553
39703
39853
40003
40153
40303
40453
40603
40753
40903
41053
36704
36854
37004
37154
37304
37454
37604
37754
37904
38054
38204
38354
38504
38654
38804
38954
39104
39254
39404
39554
39704
39854
40004
40154
40304
40454
40604
40754
40904
41054
36705
36855
37005
37155
37305
37455
37605
37755
37905
38055
38205
38355
38505
38655
38805
38955
39105
39255
39405
39555
39705
39855
40005
40155
40305
40455
40605
40755
40905
41055
36706
36856
37006
37156
37306
37456
37606
37756
37906
38056
38206
38356
38506
38656
38806
38956
39106
39256
39406
39556
39706
39856
40006
40156
40306
40456
40606
40756
40906
41056
36707
36857
37007
37157
37307
37457
37607
37757
37907
38057
38207
38357
38507
38657
38807
38957
39107
39257
39407
39557
39707
39857
40007
40157
40307
40457
40607
40757
40907
41057
36708
36858
37008
37158
37308
37458
37608
37758
37908
38058
38208
38358
38508
38658
38808
38958
39108
39258
39408
39558
39708
39858
40008
40158
40308
40458
40608
40758
40908
41058
36709
36859
37009
37159
37309
37459
37609
37759
37909
38059
38209
38359
38509
38659
38809
38959
39109
39259
39409
39559
39709
39859
40009
40159
40309
40459
40609
40759
40909
41059
36710
36860
37010
37160
37310
37460
37610
37760
37910
38060
38210
38360
38510
38660
38810
38960
39110
39260
39410
39560
39710
39860
40010
40160
40310
40460
40610
40760
40910
41060
36711
36861
37011
37161
37311
37461
37611
37761
37911
38061
38211
38361
38511
38661
38811
38961
39111
39261
39411
39561
39711
39861
40011
40161
40311
40461
40611
40761
40911
41061
36712
36862
37012
37162
37312
37462
37612
37762
37912
38062
38212
38362
38512
38662
38812
38962
39112
39262
39412
39562
39712
39862
40012
40162
40312
40462
40612
40762
40912
41062
36713
36863
37013
37163
37313
37463
37613
37763
37913
38063
38213
38363
38513
38663
38813
38963
39113
39263
39413
39563
39713
39863
40013
40163
40313
40463
40613
40763
40913
41063
36714
36864
37014
37164
37314
37464
37614
37764
37914
38064
38214
38364
38514
38664
38814
38964
39114
39264
39414
39564
39714
39864
40014
40164
40314
40464
40614
40764
40914
41064
36715
36865
37015
37165
37315
37465
37615
37765
37915
38065
38215
38365
38515
38665
38815
38965
39115
39265
39415
39565
39715
39865
40015
40165
40315
40465
40615
40765
40915
41065
36716
36866
37016
37166
37316
37466
37616
37766
37916
38066
38216
38366
38516
38666
38816
38966
39116
39266
39416
39566
39716
39866
40016
40166
40316
40466
40616
40766
40916
41066
36717
36867
37017
37167
37317
37467
37617
37767
37917
38067
38217
38367
38517
38667
38817
38967
39117
39267
39417
39567
39717
39867
40017
40167
40317
40467
40617
40767
40917
41067
36718
36868
37018
37168
37318
37468
37618
37768
37918
38068
38218
38368
38518
38668
38818
38968
39118
39268
39418
39568
39718
39868
40018
40168
40318
40468
40618
40768
40918
41068
36719
36869
37019
37169
37319
37469
37619
37769
37919
38069
38219
38369
38519
38669
38819
38969
39119
39269
39419
39569
39719
39869
40019
40169
40319
40469
40619
40769
40919
41069
36720
36870
37020
37170
37320
37470
37620
37770
37920
38070
38220
38370
38520
38670
38820
38970
39120
39270
39420
39570
39720
39870
40020
40170
40320
40470
40620
40770
40920
41070
36721
36871
37021
37171
37321
37471
37621
37771
37921
38071
38221
38371
38521
38671
38821
38971
39121
39271
39421
39571
39721
39871
40021
40171
40321
40471
40621
40771
40921
41071
36722
36872
37022
37172
37322
37472
37622
37772
37922
38072
38222
38372
38522
38672
38822
38972
39122
39272
39422
39572
39722
39872
40022
40172
40322
40472
40622
40772
40922
41072
36723
36873
37023
37173
37323
37473
37623
37773
37923
38073
38223
38373
38523
38673
38823
38973
39123
39273
39423
39573
39723
39873
40023
40173
40323
40473
40623
40773
40923
41073
36724
36874
37024
37174
37324
37474
37624
37774
37924
38074
38224
38374
38524
38674
38824
38974
39124
39274
39424
39574
39724
39874
40024
40174
40324
40474
40624
40774
40924
41074
36725
36875
37025
37175
37325
37475
37625
37775
37925
38075
38225
38375
38525
38675
38825
38975
39125
39275
39425
39575
39725
39875
40025
40175
40325
40475
40625
40775
40925
41075
36726
36876
37026
37176
37326
37476
37626
37776
37926
38076
38226
38376
38526
38676
38826
38976
39126
39276
39426
39576
39726
39876
40026
40176
40326
40476
40626
40776
40926
41076
36727
36877
37027
37177
37327
37477
37627
37777
37927
38077
38227
38377
38527
38677
38827
38977
39127
39277
39427
39577
39727
39877
40027
40177
40327
40477
40627
40777
40927
41077
36728
36878
37028
37178
37328
37478
37628
37778
37928
38078
38228
38378
38528
38678
38828
38978
39128
39278
39428
39578
39728
39878
40028
40178
40328
40478
40628
40778
40928
41078
36729
36879
37029
37179
37329
37479
37629
37779
37929
38079
38229
38379
38529
38679
38829
38979
39129
39279
39429
39579
39729
39879
40029
40179
40329
40479
40629
40779
40929
41079
36730
36880
37030
37180
37330
37480
37630
37780
37930
38080
38230
38380
38530
38680
38830
38980
39130
39280
39430
39580
39730
39880
40030
40180
40330
40480
40630
40780
40930
41080
36731
36881
37031
37181
37331
37481
37631
37781
37931
38081
38231
38381
38531
38681
38831
38981
39131
39281
39431
39581
39731
39881
40031
40181
40331
40481
40631
40781
40931
41081
36732
36882
37032
37182
37332
37482
37632
37782
37932
38082
38232
38382
38532
38682
38832
38982
39132
39282
39432
39582
39732
39882
40032
40182
40332
40482
40632
40782
40932
41082
36733
36883
37033
37183
37333
37483
37633
37783
37933
38083
38233
38383
38533
38683
38833
38983
39133
39283
39433
39583
39733
39883
40033
40183
40333
40483
40633
40783
40933
41083
36734
36884
37034
37184
37334
37484
37634
37784
37934
38084
38234
38384
38534
38684
38834
38984
39134
39284
39434
39584
39734
39884
40034
40184
40334
40484
40634
40784
40934
41084
36735
36885
37035
37185
37335
37485
37635
37785
37935
38085
38235
38385
38535
38685
38835
38985
39135
39285
39435
39585
39735
39885
40035
40185
40335
40485
40635
40785
40935
41085
36736
36886
37036
37186
37336
37486
37636
37786
37936
38086
38236
38386
38536
38686
38836
38986
39136
39286
39436
39586
39736
39886
40036
40186
40336
40486
40636
40786
40936
41086
36737
36887
37037
37187
37337
37487
37637
37787
37937
38087
38237
38387
38537
38687
38837
38987
39137
39287
39437
39587
39737
39887
40037
40187
40337
40487
40637
40787
40937
41087
36738
36888
37038
37188
37338
37488
37638
37788
37938
38088
38238
38388
38538
38688
38838
38988
39138
39288
39438
39588
39738
39888
40038
40188
40338
40488
40638
40788
40938
41088
36739
36889
37039
37189
37339
37489
37639
37789
37939
38089
38239
38389
38539
38689
38839
38989
39139
39289
39439
39589
39739
39889
40039
40189
40339
40489
40639
40789
40939
41089
36740
36890
37040
37190
37340
37490
37640
37790
37940
38090
38240
38390
38540
38690
38840
38990
39140
39290
39440
39590
39740
39890
40040
40190
40340
40490
40640
40790
40940
41090
36741
36891
37041
37191
37341
37491
37641
37791
37941
38091
38241
38391
38541
38691
38841
38991
39141
39291
39441
39591
39741
39891
40041
40191
40341
40491
40641
40791
40941
41091
36742
36892
37042
37192
37342
37492
37642
37792
37942
38092
38242
38392
38542
38692
38842
38992
39142
39292
39442
39592
39742
39892
40042
40192
40342
40492
40642
40792
40942
41092
36743
36893
37043
37193
37343
37493
37643
37793
37943
38093
38243
38393
38543
38693
38843
38993
39143
39293
39443
39593
39743
39893
40043
40193
40343
40493
40643
40793
40943
41093
36744
36894
37044
37194
37344
37494
37644
37794
37944
38094
38244
38394
38544
38694
38844
38994
39144
39294
39444
39594
39744
39894
40044
40194
40344
40494
40644
40794
40944
41094
36745
36895
37045
37195
37345
37495
37645
37795
37945
38095
38245
38395
38545
38695
38845
38995
39145
39295
39445
39595
39745
39895
40045
40195
40345
40495
40645
40795
40945
41095
36746
36896
37046
37196
37346
37496
37646
37796
37946
38096
38246
38396
38546
38696
38846
38996
39146
39296
39446
39596
39746
39896
40046
40196
40346
40496
40646
40796
40946
41096
36747
36897
37047
37197
37347
37497
37647
37797
37947
38097
38247
38397
38547
38697
38847
38997
39147
39297
39447
39597
39747
39897
40047
40197
40347
40497
40647
40797
40947
41097
36748
36898
37048
37198
37348
37498
37648
37798
37948
38098
38248
38398
38548
38698
38848
38998
39148
39298
39448
39598
39748
39898
40048
40198
40348
40498
40648
40798
40948
41098
36749
36899
37049
37199
37349
37499
37649
37799
37949
38099
38249
38399
38549
38699
38849
38999
39149
39299
39449
39599
39749
39899
40049
40199
40349
40499
40649
40799
40949
41099
41100
41250
41400
41550
41700
41850
42000
42150
42300
42450
42600
42750
42900
43050
43200
43350
43500
43650
43800
43950
44100
44250
44400
44550
44700
44850
45000
45150
45300
45450
41101
41251
41401
41551
41701
41851
42001
42151
42301
42451
42601
42751
42901
43051
43201
43351
43501
43651
43801
43951
44101
44251
44401
44551
44701
44851
45001
45151
45301
45451
41102
41252
41402
41552
41702
41852
42002
42152
42302
42452
42602
42752
42902
43052
43202
43352
43502
43652
43802
43952
44102
44252
44402
44552
44702
44852
45002
45152
45302
45452
41103
41253
41403
41553
41703
41853
42003
42153
42303
42453
42603
42753
42903
43053
43203
43353
43503
43653
43803
43953
44103
44253
44403
44553
44703
44853
45003
45153
45303
45453
41104
41254
41404
41554
41704
41854
42004
42154
42304
42454
42604
42754
42904
43054
43204
43354
43504
43654
43804
43954
44104
44254
44404
44554
44704
44854
45004
45154
45304
45454
41105
41255
41405
41555
41705
41855
42005
42155
42305
42455
42605
42755
42905
43055
43205
43355
43505
43655
43805
43955
44105
44255
44405
44555
44705
44855
45005
45155
45305
45455
41106
41256
41406
41556
41706
41856
42006
42156
42306
42456
42606
42756
42906
43056
43206
43356
43506
43656
43806
43956
44106
44256
44406
44556
44706
44856
45006
45156
45306
45456
41107
41257
41407
41557
41707
41857
42007
42157
42307
42457
42607
42757
42907
43057
43207
43357
43507
43657
43807
43957
44107
44257
44407
44557
44707
44857
45007
45157
45307
45457
41108
41258
41408
41558
41708
41858
42008
42158
42308
42458
42608
42758
42908
43058
43208
43358
43508
43658
43808
43958
44108
44258
44408
44558
44708
44858
45008
45158
45308
45458
41109
41259
41409
41559
41709
41859
42009
42159
42309
42459
42609
42759
42909
43059
43209
43359
43509
43659
43809
43959
44109
44259
44409
44559
44709
44859
45009
45159
45309
45459
41110
41260
41410
41560
41710
41860
42010
42160
42310
42460
42610
42760
42910
43060
43210
43360
43510
43660
43810
43960
44110
44260
44410
44560
44710
44860
45010
45160
45310
45460
41111
41261
41411
41561
41711
41861
42011
42161
42311
42461
42611
42761
42911
43061
43211
43361
43511
43661
43811
43961
44111
44261
44411
44561
44711
44861
45011
45161
45311
45461
41112
41262
41412
41562
41712
41862
42012
42162
42312
42462
42612
42762
42912
43062
43212
43362
43512
43662
43812
43962
44112
44262
44412
44562
44712
44862
45012
45162
45312
45462
41113
41263
41413
41563
41713
41863
42013
42163
42313
42463
42613
42763
42913
43063
43213
43363
43513
43663
43813
43963
44113
44263
44413
44563
44713
44863
45013
45163
45313
45463
41114
41264
41414
41564
41714
41864
42014
42164
42314
42464
42614
42764
42914
43064
43214
43364
43514
43664
43814
43964
44114
44264
44414
44564
44714
44864
45014
45164
45314
45464
41115
41265
41415
41565
41715
41865
42015
42165
42315
42465
42615
42765
42915
43065
43215
43365
43515
43665
43815
43965
44115
44265
44415
44565
44715
44865
45015
45165
45315
45465
41116
41266
41416
41566
41716
41866
42016
42166
42316
42466
42616
42766
42916
43066
43216
43366
43516
43666
43816
43966
44116
44266
44416
44566
44716
44866
45016
45166
45316
45466
41117
41267
41417
41567
41717
41867
42017
42167
42317
42467
42617
42767
42917
43067
43217
43367
43517
43667
43817
43967
44117
44267
44417
44567
44717
44867
45017
45167
45317
45467
41118
41268
41418
41568
41718
41868
42018
42168
42318
42468
42618
42768
42918
43068
43218
43368
43518
43668
43818
43968
44118
44268
44418
44568
44718
44868
45018
45168
45318
45468
41119
41269
41419
41569
41719
41869
42019
42169
42319
42469
42619
42769
42919
43069
43219
43369
43519
43669
43819
43969
44119
44269
44419
44569
44719
44869
45019
45169
45319
45469
41120
41270
41420
41570
41720
41870
42020
42170
42320
42470
42620
42770
42920
43070
43220
43370
43520
43670
43820
43970
44120
44270
44420
44570
44720
44870
45020
45170
45320
45470
41121
41271
41421
41571
41721
41871
42021
42171
42321
42471
42621
42771
42921
43071
43221
43371
43521
43671
43821
43971
44121
44271
44421
44571
44721
44871
45021
45171
45321
45471
41122
41272
41422
41572
41722
41872
42022
42172
42322
42472
42622
42772
42922
43072
43222
43372
43522
43672
43822
43972
44122
44272
44422
44572
44722
44872
45022
45172
45322
45472
41123
41273
41423
41573
41723
41873
42023
42173
42323
42473
42623
42773
42923
43073
43223
43373
43523
43673
43823
43973
44123
44273
44423
44573
44723
44873
45023
45173
45323
45473
41124
41274
41424
41574
41724
41874
42024
42174
42324
42474
42624
42774
42924
43074
43224
43374
43524
43674
43824
43974
44124
44274
44424
44574
44724
44874
45024
45174
45324
45474
41125
41275
41425
41575
41725
41875
42025
42175
42325
42475
42625
42775
42925
43075
43225
43375
43525
43675
43825
43975
44125
44275
44425
44575
44725
44875
45025
45175
45325
45475
41126
41276
41426
41576
41726
41876
42026
42176
42326
42476
42626
42776
42926
43076
43226
43376
43526
43676
43826
43976
44126
44276
44426
44576
44726
44876
45026
45176
45326
45476
41127
41277
41427
41577
41727
41877
42027
42177
42327
42477
42627
42777
42927
43077
43227
43377
43527
43677
43827
43977
44127
44277
44427
44577
44727
44877
45027
45177
45327
45477
41128
41278
41428
41578
41728
41878
42028
42178
42328
42478
42628
42778
42928
43078
43228
43378
43528
43678
43828
43978
44128
44278
44428
44578
44728
44878
45028
45178
45328
45478
41129
41279
41429
41579
41729
41879
42029
42179
42329
42479
42629
42779
42929
43079
43229
43379
43529
43679
43829
43979
44129
44279
44429
44579
44729
44879
45029
45179
45329
45479
41130
41280
41430
41580
41730
41880
42030
42180
42330
42480
42630
42780
42930
43080
43230
43380
43530
43680
43830
43980
44130
44280
44430
44580
44730
44880
45030
45180
45330
45480
41131
41281
41431
41581
41731
41881
42031
42181
42331
42481
42631
42781
42931
43081
43231
43381
43531
43681
43831
43981
44131
44281
44431
44581
44731
44881
45031
45181
45331
45481
41132
41282
41432
41582
41732
41882
42032
42182
42332
42482
42632
42782
42932
43082
43232
43382
43532
43682
43832
43982
44132
44282
44432
44582
44732
44882
45032
45182
45332
45482
41133
41283
41433
41583
41733
41883
42033
42183
42333
42483
42633
42783
42933
43083
43233
43383
43533
43683
43833
43983
44133
44283
44433
44583
44733
44883
45033
45183
45333
45483
41134
41284
41434
41584
41734
41884
42034
42184
42334
42484
42634
42784
42934
43084
43234
43384
43534
43684
43834
43984
44134
44284
44434
44584
44734
44884
45034
45184
45334
45484
41135
41285
41435
41585
41735
41885
42035
42185
42335
42485
42635
42785
42935
43085
43235
43385
43535
43685
43835
43985
44135
44285
44435
44585
44735
44885
45035
45185
45335
45485
41136
41286
41436
41586
41736
41886
42036
42186
42336
42486
42636
42786
42936
43086
43236
43386
43536
43686
43836
43986
44136
44286
44436
44586
44736
44886
45036
45186
45336
45486
41137
41287
41437
41587
41737
41887
42037
42187
42337
42487
42637
42787
42937
43087
43237
43387
43537
43687
43837
43987
44137
44287
44437
44587
44737
44887
45037
45187
45337
45487
41138
41288
41438
41588
41738
41888
42038
42188
42338
42488
42638
42788
42938
43088
43238
43388
43538
43688
43838
43988
44138
44288
44438
44588
44738
44888
45038
45188
45338
45488
41139
41289
41439
41589
41739
41889
42039
42189
42339
42489
42639
42789
42939
43089
43239
43389
43539
43689
43839
43989
44139
44289
44439
44589
44739
44889
45039
45189
45339
45489
41140
41290
41440
41590
41740
41890
42040
42190
42340
42490
42640
42790
42940
43090
43240
43390
43540
43690
43840
43990
44140
44290
44440
44590
44740
44890
45040
45190
45340
45490
41141
41291
41441
41591
41741
41891
42041
42191
42341
42491
42641
42791
42941
43091
43241
43391
43541
43691
43841
43991
44141
44291
44441
44591
44741
44891
45041
45191
45341
45491
41142
41292
41442
41592
41742
41892
42042
42192
42342
42492
42642
42792
42942
43092
43242
43392
43542
43692
43842
43992
44142
44292
44442
44592
44742
44892
45042
45192
45342
45492
41143
41293
41443
41593
41743
41893
42043
42193
42343
42493
42643
42793
42943
43093
43243
43393
43543
43693
43843
43993
44143
44293
44443
44593
44743
44893
45043
45193
45343
45493
41144
41294
41444
41594
41744
41894
42044
42194
42344
42494
42644
42794
42944
43094
43244
43394
43544
43694
43844
43994
44144
44294
44444
44594
44744
44894
45044
45194
45344
45494
41145
41295
41445
41595
41745
41895
42045
42195
42345
42495
42645
42795
42945
43095
43245
43395
43545
43695
43845
43995
44145
44295
44445
44595
44745
44895
45045
45195
45345
45495
41146
41296
41446
41596
41746
41896
42046
42196
42346
42496
42646
42796
42946
43096
43246
43396
43546
43696
43846
43996
44146
44296
44446
44596
44746
44896
45046
45196
45346
45496
41147
41297
41447
41597
41747
41897
42047
42197
42347
42497
42647
42797
42947
43097
43247
43397
43547
43697
43847
43997
44147
44297
44447
44597
44747
44897
45047
45197
45347
45497
41148
41298
41448
41598
41748
41898
42048
42198
42348
42498
42648
42798
42948
43098
43248
43398
43548
43698
43848
43998
44148
44298
44448
44598
44748
44898
45048
45198
45348
45498
41149
41299
41449
41599
41749
41899
42049
42199
42349
42499
42649
42799
42949
43099
43249
43399
43549
43699
43849
43999
44149
44299
44449
44599
44749
44899
45049
45199
45349
45499
41150
41300
41450
41600
41750
41900
42050
42200
42350
42500
42650
42800
42950
43100
43250
43400
43550
43700
43850
44000
44150
44300
44450
44600
44750
44900
45050
45200
45350
45500
41151
41301
41451
41601
41751
41901
42051
42201
42351
42501
42651
42801
42951
43101
43251
43401
43551
43701
43851
44001
44151
44301
44451
44601
44751
44901
45051
45201
45351
45501
41152
41302
41452
41602
41752
41902
42052
42202
42352
42502
42652
42802
42952
43102
43252
43402
43552
43702
43852
44002
44152
44302
44452
44602
44752
44902
45052
45202
45352
45502
41153
41303
41453
41603
41753
41903
42053
42203
42353
42503
42653
42803
42953
43103
43253
43403
43553
43703
43853
44003
44153
44303
44453
44603
44753
44903
45053
45203
45353
45503
41154
41304
41454
41604
41754
41904
42054
42204
42354
42504
42654
42804
42954
43104
43254
43404
43554
43704
43854
44004
44154
44304
44454
44604
44754
44904
45054
45204
45354
45504
41155
41305
41455
41605
41755
41905
42055
42205
42355
42505
42655
42805
42955
43105
43255
43405
43555
43705
43855
44005
44155
44305
44455
44605
44755
44905
45055
45205
45355
45505
41156
41306
41456
41606
41756
41906
42056
42206
42356
42506
42656
42806
42956
43106
43256
43406
43556
43706
43856
44006
44156
44306
44456
44606
44756
44906
45056
45206
45356
45506
41157
41307
41457
41607
41757
41907
42057
42207
42357
42507
42657
42807
42957
43107
43257
43407
43557
43707
43857
44007
44157
44307
44457
44607
44757
44907
45057
45207
45357
45507
41158
41308
41458
41608
41758
41908
42058
42208
42358
42508
42658
42808
42958
43108
43258
43408
43558
43708
43858
44008
44158
44308
44458
44608
44758
44908
45058
45208
45358
45508
41159
41309
41459
41609
41759
41909
42059
42209
42359
42509
42659
42809
42959
43109
43259
43409
43559
43709
43859
44009
44159
44309
44459
44609
44759
44909
45059
45209
45359
45509
41160
41310
41460
41610
41760
41910
42060
42210
42360
42510
42660
42810
42960
43110
43260
43410
43560
43710
43860
44010
44160
44310
44460
44610
44760
44910
45060
45210
45360
45510
41161
41311
41461
41611
41761
41911
42061
42211
42361
42511
42661
42811
42961
43111
43261
43411
43561
43711
43861
44011
44161
44311
44461
44611
44761
44911
45061
45211
45361
45511
41162
41312
41462
41612
41762
41912
42062
42212
42362
42512
42662
42812
42962
43112
43262
43412
43562
43712
43862
44012
44162
44312
44462
44612
44762
44912
45062
45212
45362
45512
41163
41313
41463
41613
41763
41913
42063
42213
42363
42513
42663
42813
42963
43113
43263
43413
43563
43713
43863
44013
44163
44313
44463
44613
44763
44913
45063
45213
45363
45513
41164
41314
41464
41614
41764
41914
42064
42214
42364
42514
42664
42814
42964
43114
43264
43414
43564
43714
43864
44014
44164
44314
44464
44614
44764
44914
45064
45214
45364
45514
41165
41315
41465
41615
41765
41915
42065
42215
42365
42515
42665
42815
42965
43115
43265
43415
43565
43715
43865
44015
44165
44315
44465
44615
44765
44915
45065
45215
45365
45515
41166
41316
41466
41616
41766
41916
42066
42216
42366
42516
42666
42816
42966
43116
43266
43416
43566
43716
43866
44016
44166
44316
44466
44616
44766
44916
45066
45216
45366
45516
41167
41317
41467
41617
41767
41917
42067
42217
42367
42517
42667
42817
42967
43117
43267
43417
43567
43717
43867
44017
44167
44317
44467
44617
44767
44917
45067
45217
45367
45517
41168
41318
41468
41618
41768
41918
42068
42218
42368
42518
42668
42818
42968
43118
43268
43418
43568
43718
43868
44018
44168
44318
44468
44618
44768
44918
45068
45218
45368
45518
41169
41319
41469
41619
41769
41919
42069
42219
42369
42519
42669
42819
42969
43119
43269
43419
43569
43719
43869
44019
44169
44319
44469
44619
44769
44919
45069
45219
45369
45519
41170
41320
41470
41620
41770
41920
42070
42220
42370
42520
42670
42820
42970
43120
43270
43420
43570
43720
43870
44020
44170
44320
44470
44620
44770
44920
45070
45220
45370
45520
41171
41321
41471
41621
41771
41921
42071
42221
42371
42521
42671
42821
42971
43121
43271
43421
43571
43721
43871
44021
44171
44321
44471
44621
44771
44921
45071
45221
45371
45521
41172
41322
41472
41622
41772
41922
42072
42222
42372
42522
42672
42822
42972
43122
43272
43422
43572
43722
43872
44022
44172
44322
44472
44622
44772
44922
45072
45222
45372
45522
41173
41323
41473
41623
41773
41923
42073
42223
42373
42523
42673
42823
42973
43123
43273
43423
43573
43723
43873
44023
44173
44323
44473
44623
44773
44923
45073
45223
45373
45523
41174
41324
41474
41624
41774
41924
42074
42224
42374
42524
42674
42824
42974
43124
43274
43424
43574
43724
43874
44024
44174
44324
44474
44624
44774
44924
45074
45224
45374
45524
41175
41325
41475
41625
41775
41925
42075
42225
42375
42525
42675
42825
42975
43125
43275
43425
43575
43725
43875
44025
44175
44325
44475
44625
44775
44925
45075
45225
45375
45525
41176
41326
41476
41626
41776
41926
42076
42226
42376
42526
42676
42826
42976
43126
43276
43426
43576
43726
43876
44026
44176
44326
44476
44626
44776
44926
45076
45226
45376
45526
41177
41327
41477
41627
41777
41927
42077
42227
42377
42527
42677
42827
42977
43127
43277
43427
43577
43727
43877
44027
44177
44327
44477
44627
44777
44927
45077
45227
45377
45527
41178
41328
41478
41628
41778
41928
42078
42228
42378
42528
42678
42828
42978
43128
43278
43428
43578
43728
43878
44028
44178
44328
44478
44628
44778
44928
45078
45228
45378
45528
41179
41329
41479
41629
41779
41929
42079
42229
42379
42529
42679
42829
42979
43129
43279
43429
43579
43729
43879
44029
44179
44329
44479
44629
44779
44929
45079
45229
45379
45529
41180
41330
41480
41630
41780
41930
42080
42230
42380
42530
42680
42830
42980
43130
43280
43430
43580
43730
43880
44030
44180
44330
44480
44630
44780
44930
45080
45230
45380
45530
41181
41331
41481
41631
41781
41931
42081
42231
42381
42531
42681
42831
42981
43131
43281
43431
43581
43731
43881
44031
44181
44331
44481
44631
44781
44931
45081
45231
45381
45531
41182
41332
41482
41632
41782
41932
42082
42232
42382
42532
42682
42832
42982
43132
43282
43432
43582
43732
43882
44032
44182
44332
44482
44632
44782
44932
45082
45232
45382
45532
41183
41333
41483
41633
41783
41933
42083
42233
42383
42533
42683
42833
42983
43133
43283
43433
43583
43733
43883
44033
44183
44333
44483
44633
44783
44933
45083
45233
45383
45533
41184
41334
41484
41634
41784
41934
42084
42234
42384
42534
42684
42834
42984
43134
43284
43434
43584
43734
43884
44034
44184
44334
44484
44634
44784
44934
45084
45234
45384
45534
41185
41335
41485
41635
41785
41935
42085
42235
42385
42535
42685
42835
42985
43135
43285
43435
43585
43735
43885
44035
44185
44335
44485
44635
44785
44935
45085
45235
45385
45535
41186
41336
41486
41636
41786
41936
42086
42236
42386
42536
42686
42836
42986
43136
43286
43436
43586
43736
43886
44036
44186
44336
44486
44636
44786
44936
45086
45236
45386
45536
41187
41337
41487
41637
41787
41937
42087
42237
42387
42537
42687
42837
42987
43137
43287
43437
43587
43737
43887
44037
44187
44337
44487
44637
44787
44937
45087
45237
45387
45537
41188
41338
41488
41638
41788
41938
42088
42238
42388
42538
42688
42838
42988
43138
43288
43438
43588
43738
43888
44038
44188
44338
44488
44638
44788
44938
45088
45238
45388
45538
41189
41339
41489
41639
41789
41939
42089
42239
42389
42539
42689
42839
42989
43139
43289
43439
43589
43739
43889
44039
44189
44339
44489
44639
44789
44939
45089
45239
45389
45539
41190
41340
41490
41640
41790
41940
42090
42240
42390
42540
42690
42840
42990
43140
43290
43440
43590
43740
43890
44040
44190
44340
44490
44640
44790
44940
45090
45240
45390
45540
41191
41341
41491
41641
41791
41941
42091
42241
42391
42541
42691
42841
42991
43141
43291
43441
43591
43741
43891
44041
44191
44341
44491
44641
44791
44941
45091
45241
45391
45541
41192
41342
41492
41642
41792
41942
42092
42242
42392
42542
42692
42842
42992
43142
43292
43442
43592
43742
43892
44042
44192
44342
44492
44642
44792
44942
45092
45242
45392
45542
41193
41343
41493
41643
41793
41943
42093
42243
42393
42543
42693
42843
42993
43143
43293
43443
43593
43743
43893
44043
44193
44343
44493
44643
44793
44943
45093
45243
45393
45543
41194
41344
41494
41644
41794
41944
42094
42244
42394
42544
42694
42844
42994
43144
43294
43444
43594
43744
43894
44044
44194
44344
44494
44644
44794
44944
45094
45244
45394
45544
41195
41345
41495
41645
41795
41945
42095
42245
42395
42545
42695
42845
42995
43145
43295
43445
43595
43745
43895
44045
44195
44345
44495
44645
44795
44945
45095
45245
45395
45545
41196
41346
41496
41646
41796
41946
42096
42246
42396
42546
42696
42846
42996
43146
43296
43446
43596
43746
43896
44046
44196
44346
44496
44646
44796
44946
45096
45246
45396
45546
41197
41347
41497
41647
41797
41947
42097
42247
42397
42547
42697
42847
42997
43147
43297
43447
43597
43747
43897
44047
44197
44347
44497
44647
44797
44947
45097
45247
45397
45547
41198
41348
41498
41648
41798
41948
42098
42248
42398
42548
42698
42848
42998
43148
43298
43448
43598
43748
43898
44048
44198
44348
44498
44648
44798
44948
45098
45248
45398
45548
41199
41349
41499
41649
41799
41949
42099
42249
42399
42549
42699
42849
42999
43149
43299
43449
43599
43749
43899
44049
44199
44349
44499
44649
44799
44949
45099
45249
45399
45549
41200
41350
41500
41650
41800
41950
42100
42250
42400
42550
42700
42850
43000
43150
43300
43450
43600
43750
43900
44050
44200
44350
44500
44650
44800
44950
45100
45250
45400
45550
41201
41351
41501
41651
41801
41951
42101
42251
42401
42551
42701
42851
43001
43151
43301
43451
43601
43751
43901
44051
44201
44351
44501
44651
44801
44951
45101
45251
45401
45551
41202
41352
41502
41652
41802
41952
42102
42252
42402
42552
42702
42852
43002
43152
43302
43452
43602
43752
43902
44052
44202
44352
44502
44652
44802
44952
45102
45252
45402
45552
41203
41353
41503
41653
41803
41953
42103
42253
42403
42553
42703
42853
43003
43153
43303
43453
43603
43753
43903
44053
44203
44353
44503
44653
44803
44953
45103
45253
45403
45553
41204
41354
41504
41654
41804
41954
42104
42254
42404
42554
42704
42854
43004
43154
43304
43454
43604
43754
43904
44054
44204
44354
44504
44654
44804
44954
45104
45254
45404
45554
41205
41355
41505
41655
41805
41955
42105
42255
42405
42555
42705
42855
43005
43155
43305
43455
43605
43755
43905
44055
44205
44355
44505
44655
44805
44955
45105
45255
45405
45555
41206
41356
41506
41656
41806
41956
42106
42256
42406
42556
42706
42856
43006
43156
43306
43456
43606
43756
43906
44056
44206
44356
44506
44656
44806
44956
45106
45256
45406
45556
41207
41357
41507
41657
41807
41957
42107
42257
42407
42557
42707
42857
43007
43157
43307
43457
43607
43757
43907
44057
44207
44357
44507
44657
44807
44957
45107
45257
45407
45557
41208
41358
41508
41658
41808
41958
42108
42258
42408
42558
42708
42858
43008
43158
43308
43458
43608
43758
43908
44058
44208
44358
44508
44658
44808
44958
45108
45258
45408
45558
41209
41359
41509
41659
41809
41959
42109
42259
42409
42559
42709
42859
43009
43159
43309
43459
43609
43759
43909
44059
44209
44359
44509
44659
44809
44959
45109
45259
45409
45559
41210
41360
41510
41660
41810
41960
42110
42260
42410
42560
42710
42860
43010
43160
43310
43460
43610
43760
43910
44060
44210
44360
44510
44660
44810
44960
45110
45260
45410
45560
41211
41361
41511
41661
41811
41961
42111
42261
42411
42561
42711
42861
43011
43161
43311
43461
43611
43761
43911
44061
44211
44361
44511
44661
44811
44961
45111
45261
45411
45561
41212
41362
41512
41662
41812
41962
42112
42262
42412
42562
42712
42862
43012
43162
43312
43462
43612
43762
43912
44062
44212
44362
44512
44662
44812
44962
45112
45262
45412
45562
41213
41363
41513
41663
41813
41963
42113
42263
42413
42563
42713
42863
43013
43163
43313
43463
43613
43763
43913
44063
44213
44363
44513
44663
44813
44963
45113
45263
45413
45563
41214
41364
41514
41664
41814
41964
42114
42264
42414
42564
42714
42864
43014
43164
43314
43464
43614
43764
43914
44064
44214
44364
44514
44664
44814
44964
45114
45264
45414
45564
41215
41365
41515
41665
41815
41965
42115
42265
42415
42565
42715
42865
43015
43165
43315
43465
43615
43765
43915
44065
44215
44365
44515
44665
44815
44965
45115
45265
45415
45565
41216
41366
41516
41666
41816
41966
42116
42266
42416
42566
42716
42866
43016
43166
43316
43466
43616
43766
43916
44066
44216
44366
44516
44666
44816
44966
45116
45266
45416
45566
41217
41367
41517
41667
41817
41967
42117
42267
42417
42567
42717
42867
43017
43167
43317
43467
43617
43767
43917
44067
44217
44367
44517
44667
44817
44967
45117
45267
45417
45567
41218
41368
41518
41668
41818
41968
42118
42268
42418
42568
42718
42868
43018
43168
43318
43468
43618
43768
43918
44068
44218
44368
44518
44668
44818
44968
45118
45268
45418
45568
41219
41369
41519
41669
41819
41969
42119
42269
42419
42569
42719
42869
43019
43169
43319
43469
43619
43769
43919
44069
44219
44369
44519
44669
44819
44969
45119
45269
45419
45569
41220
41370
41520
41670
41820
41970
42120
42270
42420
42570
42720
42870
43020
43170
43320
43470
43620
43770
43920
44070
44220
44370
44520
44670
44820
44970
45120
45270
45420
45570
41221
41371
41521
41671
41821
41971
42121
42271
42421
42571
42721
42871
43021
43171
43321
43471
43621
43771
43921
44071
44221
44371
44521
44671
44821
44971
45121
45271
45421
45571
41222
41372
41522
41672
41822
41972
42122
42272
42422
42572
42722
42872
43022
43172
43322
43472
43622
43772
43922
44072
44222
44372
44522
44672
44822
44972
45122
45272
45422
45572
41223
41373
41523
41673
41823
41973
42123
42273
42423
42573
42723
42873
43023
43173
43323
43473
43623
43773
43923
44073
44223
44373
44523
44673
44823
44973
45123
45273
45423
45573
41224
41374
41524
41674
41824
41974
42124
42274
42424
42574
42724
42874
43024
43174
43324
43474
43624
43774
43924
44074
44224
44374
44524
44674
44824
44974
45124
45274
45424
45574
41225
41375
41525
41675
41825
41975
42125
42275
42425
42575
42725
42875
43025
43175
43325
43475
43625
43775
43925
44075
44225
44375
44525
44675
44825
44975
45125
45275
45425
45575
41226
41376
41526
41676
41826
41976
42126
42276
42426
42576
42726
42876
43026
43176
43326
43476
43626
43776
43926
44076
44226
44376
44526
44676
44826
44976
45126
45276
45426
45576
41227
41377
41527
41677
41827
41977
42127
42277
42427
42577
42727
42877
43027
43177
43327
43477
43627
43777
43927
44077
44227
44377
44527
44677
44827
44977
45127
45277
45427
45577
41228
41378
41528
41678
41828
41978
42128
42278
42428
42578
42728
42878
43028
43178
43328
43478
43628
43778
43928
44078
44228
44378
44528
44678
44828
44978
45128
45278
45428
45578
41229
41379
41529
41679
41829
41979
42129
42279
42429
42579
42729
42879
43029
43179
43329
43479
43629
43779
43929
44079
44229
44379
44529
44679
44829
44979
45129
45279
45429
45579
41230
41380
41530
41680
41830
41980
42130
42280
42430
42580
42730
42880
43030
43180
43330
43480
43630
43780
43930
44080
44230
44380
44530
44680
44830
44980
45130
45280
45430
45580
41231
41381
41531
41681
41831
41981
42131
42281
42431
42581
42731
42881
43031
43181
43331
43481
43631
43781
43931
44081
44231
44381
44531
44681
44831
44981
45131
45281
45431
45581
41232
41382
41532
41682
41832
41982
42132
42282
42432
42582
42732
42882
43032
43182
43332
43482
43632
43782
43932
44082
44232
44382
44532
44682
44832
44982
45132
45282
45432
45582
41233
41383
41533
41683
41833
41983
42133
42283
42433
42583
42733
42883
43033
43183
43333
43483
43633
43783
43933
44083
44233
44383
44533
44683
44833
44983
45133
45283
45433
45583
41234
41384
41534
41684
41834
41984
42134
42284
42434
42584
42734
42884
43034
43184
43334
43484
43634
43784
43934
44084
44234
44384
44534
44684
44834
44984
45134
45284
45434
45584
41235
41385
41535
41685
41835
41985
42135
42285
42435
42585
42735
42885
43035
43185
43335
43485
43635
43785
43935
44085
44235
44385
44535
44685
44835
44985
45135
45285
45435
45585
41236
41386
41536
41686
41836
41986
42136
42286
42436
42586
42736
42886
43036
43186
43336
43486
43636
43786
43936
44086
44236
44386
44536
44686
44836
44986
45136
45286
45436
45586
41237
41387
41537
41687
41837
41987
42137
42287
42437
42587
42737
42887
43037
43187
43337
43487
43637
43787
43937
44087
44237
44387
44537
44687
44837
44987
45137
45287
45437
45587
41238
41388
41538
41688
41838
41988
42138
42288
42438
42588
42738
42888
43038
43188
43338
43488
43638
43788
43938
44088
44238
44388
44538
44688
44838
44988
45138
45288
45438
45588
41239
41389
41539
41689
41839
41989
42139
42289
42439
42589
42739
42889
43039
43189
43339
43489
43639
43789
43939
44089
44239
44389
44539
44689
44839
44989
45139
45289
45439
45589
41240
41390
41540
41690
41840
41990
42140
42290
42440
42590
42740
42890
43040
43190
43340
43490
43640
43790
43940
44090
44240
44390
44540
44690
44840
44990
45140
45290
45440
45590
41241
41391
41541
41691
41841
41991
42141
42291
42441
42591
42741
42891
43041
43191
43341
43491
43641
43791
43941
44091
44241
44391
44541
44691
44841
44991
45141
45291
45441
45591
41242
41392
41542
41692
41842
41992
42142
42292
42442
42592
42742
42892
43042
43192
43342
43492
43642
43792
43942
44092
44242
44392
44542
44692
44842
44992
45142
45292
45442
45592
41243
41393
41543
41693
41843
41993
42143
42293
42443
42593
42743
42893
43043
43193
43343
43493
43643
43793
43943
44093
44243
44393
44543
44693
44843
44993
45143
45293
45443
45593
41244
41394
41544
41694
41844
41994
42144
42294
42444
42594
42744
42894
43044
43194
43344
43494
43644
43794
43944
44094
44244
44394
44544
44694
44844
44994
45144
45294
45444
45594
41245
41395
41545
41695
41845
41995
42145
42295
42445
42595
42745
42895
43045
43195
43345
43495
43645
43795
43945
44095
44245
44395
44545
44695
44845
44995
45145
45295
45445
45595
41246
41396
41546
41696
41846
41996
42146
42296
42446
42596
42746
42896
43046
43196
43346
43496
43646
43796
43946
44096
44246
44396
44546
44696
44846
44996
45146
45296
45446
45596
41247
41397
41547
41697
41847
41997
42147
42297
42447
42597
42747
42897
43047
43197
43347
43497
43647
43797
43947
44097
44247
44397
44547
44697
44847
44997
45147
45297
45447
45597
41248
41398
41548
41698
41848
41998
42148
42298
42448
42598
42748
42898
43048
43198
43348
43498
43648
43798
43948
44098
44248
44398
44548
44698
44848
44998
45148
45298
45448
45598
41249
41399
41549
41699
41849
41999
42149
42299
42449
42599
42749
42899
43049
43199
43349
43499
43649
43799
43949
44099
44249
44399
44549
44699
44849
44999
45149
45299
45449
45599
45600
45750
45900
46050
46200
46350
46500
46650
46800
46950
47100
47250
47400
47550
47700
47850
48000
48150
48300
48450
48600
48750
48900
49050
49200
49350
49500
49650
49800
49950
45601
45751
45901
46051
46201
46351
46501
46651
46801
46951
47101
47251
47401
47551
47701
47851
48001
48151
48301
48451
48601
48751
48901
49051
49201
49351
49501
49651
49801
49951
45602
45752
45902
46052
46202
46352
46502
46652
46802
46952
47102
47252
47402
47552
47702
47852
48002
48152
48302
48452
48602
48752
48902
49052
49202
49352
49502
49652
49802
49952
45603
45753
45903
46053
46203
46353
46503
46653
46803
46953
47103
47253
47403
47553
47703
47853
48003
48153
48303
48453
48603
48753
48903
49053
49203
49353
49503
49653
49803
49953
45604
45754
45904
46054
46204
46354
46504
46654
46804
46954
47104
47254
47404
47554
47704
47854
48004
48154
48304
48454
48604
48754
48904
49054
49204
49354
49504
49654
49804
49954
45605
45755
45905
46055
46205
46355
46505
46655
46805
46955
47105
47255
47405
47555
47705
47855
48005
48155
48305
48455
48605
48755
48905
49055
49205
49355
49505
49655
49805
49955
45606
45756
45906
46056
46206
46356
46506
46656
46806
46956
47106
47256
47406
47556
47706
47856
48006
48156
48306
48456
48606
48756
48906
49056
49206
49356
49506
49656
49806
49956
45607
45757
45907
46057
46207
46357
46507
46657
46807
46957
47107
47257
47407
47557
47707
47857
48007
48157
48307
48457
48607
48757
48907
49057
49207
49357
49507
49657
49807
49957
45608
45758
45908
46058
46208
46358
46508
46658
46808
46958
47108
47258
47408
47558
47708
47858
48008
48158
48308
48458
48608
48758
48908
49058
49208
49358
49508
49658
49808
49958
45609
45759
45909
46059
46209
46359
46509
46659
46809
46959
47109
47259
47409
47559
47709
47859
48009
48159
48309
48459
48609
48759
48909
49059
49209
49359
49509
49659
49809
49959
45610
45760
45910
46060
46210
46360
46510
46660
46810
46960
47110
47260
47410
47560
47710
47860
48010
48160
48310
48460
48610
48760
48910
49060
49210
49360
49510
49660
49810
49960
45611
45761
45911
46061
46211
46361
46511
46661
46811
46961
47111
47261
47411
47561
47711
47861
48011
48161
48311
48461
48611
48761
48911
49061
49211
49361
49511
49661
49811
49961
45612
45762
45912
46062
46212
46362
46512
46662
46812
46962
47112
47262
47412
47562
47712
47862
48012
48162
48312
48462
48612
48762
48912
49062
49212
49362
49512
49662
49812
49962
45613
45763
45913
46063
46213
46363
46513
46663
46813
46963
47113
47263
47413
47563
47713
47863
48013
48163
48313
48463
48613
48763
48913
49063
49213
49363
49513
49663
49813
49963
45614
45764
45914
46064
46214
46364
46514
46664
46814
46964
47114
47264
47414
47564
47714
47864
48014
48164
48314
48464
48614
48764
48914
49064
49214
49364
49514
49664
49814
49964
45615
45765
45915
46065
46215
46365
46515
46665
46815
46965
47115
47265
47415
47565
47715
47865
48015
48165
48315
48465
48615
48765
48915
49065
49215
49365
49515
49665
49815
49965
45616
45766
45916
46066
46216
46366
46516
46666
46816
46966
47116
47266
47416
47566
47716
47866
48016
48166
48316
48466
48616
48766
48916
49066
49216
49366
49516
49666
49816
49966
45617
45767
45917
46067
46217
46367
46517
46667
46817
46967
47117
47267
47417
47567
47717
47867
48017
48167
48317
48467
48617
48767
48917
49067
49217
49367
49517
49667
49817
49967
45618
45768
45918
46068
46218
46368
46518
46668
46818
46968
47118
47268
47418
47568
47718
47868
48018
48168
48318
48468
48618
48768
48918
49068
49218
49368
49518
49668
49818
49968
45619
45769
45919
46069
46219
46369
46519
46669
46819
46969
47119
47269
47419
47569
47719
47869
48019
48169
48319
48469
48619
48769
48919
49069
49219
49369
49519
49669
49819
49969
45620
45770
45920
46070
46220
46370
46520
46670
46820
46970
47120
47270
47420
47570
47720
47870
48020
48170
48320
48470
48620
48770
48920
49070
49220
49370
49520
49670
49820
49970
45621
45771
45921
46071
46221
46371
46521
46671
46821
46971
47121
47271
47421
47571
47721
47871
48021
48171
48321
48471
48621
48771
48921
49071
49221
49371
49521
49671
49821
49971
45622
45772
45922
46072
46222
46372
46522
46672
46822
46972
47122
47272
47422
47572
47722
47872
48022
48172
48322
48472
48622
48772
48922
49072
49222
49372
49522
49672
49822
49972
45623
45773
45923
46073
46223
46373
46523
46673
46823
46973
47123
47273
47423
47573
47723
47873
48023
48173
48323
48473
48623
48773
48923
49073
49223
49373
49523
49673
49823
49973
45624
45774
45924
46074
46224
46374
46524
46674
46824
46974
47124
47274
47424
47574
47724
47874
48024
48174
48324
48474
48624
48774
48924
49074
49224
49374
49524
49674
49824
49974
45625
45775
45925
46075
46225
46375
46525
46675
46825
46975
47125
47275
47425
47575
47725
47875
48025
48175
48325
48475
48625
48775
48925
49075
49225
49375
49525
49675
49825
49975
45626
45776
45926
46076
46226
46376
46526
46676
46826
46976
47126
47276
47426
47576
47726
47876
48026
48176
48326
48476
48626
48776
48926
49076
49226
49376
49526
49676
49826
49976
45627
45777
45927
46077
46227
46377
46527
46677
46827
46977
47127
47277
47427
47577
47727
47877
48027
48177
48327
48477
48627
48777
48927
49077
49227
49377
49527
49677
49827
49977
45628
45778
45928
46078
46228
46378
46528
46678
46828
46978
47128
47278
47428
47578
47728
47878
48028
48178
48328
48478
48628
48778
48928
49078
49228
49378
49528
49678
49828
49978
45629
45779
45929
46079
46229
46379
46529
46679
46829
46979
47129
47279
47429
47579
47729
47879
48029
48179
48329
48479
48629
48779
48929
49079
49229
49379
49529
49679
49829
49979
45630
45780
45930
46080
46230
46380
46530
46680
46830
46980
47130
47280
47430
47580
47730
47880
48030
48180
48330
48480
48630
48780
48930
49080
49230
49380
49530
49680
49830
49980
45631
45781
45931
46081
46231
46381
46531
46681
46831
46981
47131
47281
47431
47581
47731
47881
48031
48181
48331
48481
48631
48781
48931
49081
49231
49381
49531
49681
49831
49981
45632
45782
45932
46082
46232
46382
46532
46682
46832
46982
47132
47282
47432
47582
47732
47882
48032
48182
48332
48482
48632
48782
48932
49082
49232
49382
49532
49682
49832
49982
45633
45783
45933
46083
46233
46383
46533
46683
46833
46983
47133
47283
47433
47583
47733
47883
48033
48183
48333
48483
48633
48783
48933
49083
49233
49383
49533
49683
49833
49983
45634
45784
45934
46084
46234
46384
46534
46684
46834
46984
47134
47284
47434
47584
47734
47884
48034
48184
48334
48484
48634
48784
48934
49084
49234
49384
49534
49684
49834
49984
45635
45785
45935
46085
46235
46385
46535
46685
46835
46985
47135
47285
47435
47585
47735
47885
48035
48185
48335
48485
48635
48785
48935
49085
49235
49385
49535
49685
49835
49985
45636
45786
45936
46086
46236
46386
46536
46686
46836
46986
47136
47286
47436
47586
47736
47886
48036
48186
48336
48486
48636
48786
48936
49086
49236
49386
49536
49686
49836
49986
45637
45787
45937
46087
46237
46387
46537
46687
46837
46987
47137
47287
47437
47587
47737
47887
48037
48187
48337
48487
48637
48787
48937
49087
49237
49387
49537
49687
49837
49987
45638
45788
45938
46088
46238
46388
46538
46688
46838
46988
47138
47288
47438
47588
47738
47888
48038
48188
48338
48488
48638
48788
48938
49088
49238
49388
49538
49688
49838
49988
45639
45789
45939
46089
46239
46389
46539
46689
46839
46989
47139
47289
47439
47589
47739
47889
48039
48189
48339
48489
48639
48789
48939
49089
49239
49389
49539
49689
49839
49989
45640
45790
45940
46090
46240
46390
46540
46690
46840
46990
47140
47290
47440
47590
47740
47890
48040
48190
48340
48490
48640
48790
48940
49090
49240
49390
49540
49690
49840
49990
45641
45791
45941
46091
46241
46391
46541
46691
46841
46991
47141
47291
47441
47591
47741
47891
48041
48191
48341
48491
48641
48791
48941
49091
49241
49391
49541
49691
49841
49991
45642
45792
45942
46092
46242
46392
46542
46692
46842
46992
47142
47292
47442
47592
47742
47892
48042
48192
48342
48492
48642
48792
48942
49092
49242
49392
49542
49692
49842
49992
45643
45793
45943
46093
46243
46393
46543
46693
46843
46993
47143
47293
47443
47593
47743
47893
48043
48193
48343
48493
48643
48793
48943
49093
49243
49393
49543
49693
49843
49993
45644
45794
45944
46094
46244
46394
46544
46694
46844
46994
47144
47294
47444
47594
47744
47894
48044
48194
48344
48494
48644
48794
48944
49094
49244
49394
49544
49694
49844
49994
45645
45795
45945
46095
46245
46395
46545
46695
46845
46995
47145
47295
47445
47595
47745
47895
48045
48195
48345
48495
48645
48795
48945
49095
49245
49395
49545
49695
49845
49995
45646
45796
45946
46096
46246
46396
46546
46696
46846
46996
47146
47296
47446
47596
47746
47896
48046
48196
48346
48496
48646
48796
48946
49096
49246
49396
49546
49696
49846
49996
45647
45797
45947
46097
46247
46397
46547
46697
46847
46997
47147
47297
47447
47597
47747
47897
48047
48197
48347
48497
48647
48797
48947
49097
49247
49397
49547
49697
49847
49997
45648
45798
45948
46098
46248
46398
46548
46698
46848
46998
47148
47298
47448
47598
47748
47898
48048
48198
48348
48498
48648
48798
48948
49098
49248
49398
49548
49698
49848
49998
45649
45799
45949
46099
46249
46399
46549
46699
46849
46999
47149
47299
47449
47599
47749
47899
48049
48199
48349
48499
48649
48799
48949
49099
49249
49399
49549
49699
49849
49999
45650
45800
45950
46100
46250
46400
46550
46700
46850
47000
47150
47300
47450
47600
47750
47900
48050
48200
48350
48500
48650
48800
48950
49100
49250
49400
49550
49700
49850
50000
45651
45801
45951
46101
46251
46401
46551
46701
46851
47001
47151
47301
47451
47601
47751
47901
48051
48201
48351
48501
48651
48801
48951
49101
49251
49401
49551
49701
49851
50001
45652
45802
45952
46102
46252
46402
46552
46702
46852
47002
47152
47302
47452
47602
47752
47902
48052
48202
48352
48502
48652
48802
48952
49102
49252
49402
49552
49702
49852
50002
45653
45803
45953
46103
46253
46403
46553
46703
46853
47003
47153
47303
47453
47603
47753
47903
48053
48203
48353
48503
48653
48803
48953
49103
49253
49403
49553
49703
49853
50003
45654
45804
45954
46104
46254
46404
46554
46704
46854
47004
47154
47304
47454
47604
47754
47904
48054
48204
48354
48504
48654
48804
48954
49104
49254
49404
49554
49704
49854
50004
45655
45805
45955
46105
46255
46405
46555
46705
46855
47005
47155
47305
47455
47605
47755
47905
48055
48205
48355
48505
48655
48805
48955
49105
49255
49405
49555
49705
49855
50005
45656
45806
45956
46106
46256
46406
46556
46706
46856
47006
47156
47306
47456
47606
47756
47906
48056
48206
48356
48506
48656
48806
48956
49106
49256
49406
49556
49706
49856
50006
45657
45807
45957
46107
46257
46407
46557
46707
46857
47007
47157
47307
47457
47607
47757
47907
48057
48207
48357
48507
48657
48807
48957
49107
49257
49407
49557
49707
49857
50007
45658
45808
45958
46108
46258
46408
46558
46708
46858
47008
47158
47308
47458
47608
47758
47908
48058
48208
48358
48508
48658
48808
48958
49108
49258
49408
49558
49708
49858
50008
45659
45809
45959
46109
46259
46409
46559
46709
46859
47009
47159
47309
47459
47609
47759
47909
48059
48209
48359
48509
48659
48809
48959
49109
49259
49409
49559
49709
49859
50009
45660
45810
45960
46110
46260
46410
46560
46710
46860
47010
47160
47310
47460
47610
47760
47910
48060
48210
48360
48510
48660
48810
48960
49110
49260
49410
49560
49710
49860
50010
45661
45811
45961
46111
46261
46411
46561
46711
46861
47011
47161
47311
47461
47611
47761
47911
48061
48211
48361
48511
48661
48811
48961
49111
49261
49411
49561
49711
49861
50011
45662
45812
45962
46112
46262
46412
46562
46712
46862
47012
47162
47312
47462
47612
47762
47912
48062
48212
48362
48512
48662
48812
48962
49112
49262
49412
49562
49712
49862
50012
45663
45813
45963
46113
46263
46413
46563
46713
46863
47013
47163
47313
47463
47613
47763
47913
48063
48213
48363
48513
48663
48813
48963
49113
49263
49413
49563
49713
49863
50013
45664
45814
45964
46114
46264
46414
46564
46714
46864
47014
47164
47314
47464
47614
47764
47914
48064
48214
48364
48514
48664
48814
48964
49114
49264
49414
49564
49714
49864
50014
45665
45815
45965
46115
46265
46415
46565
46715
46865
47015
47165
47315
47465
47615
47765
47915
48065
48215
48365
48515
48665
48815
48965
49115
49265
49415
49565
49715
49865
50015
45666
45816
45966
46116
46266
46416
46566
46716
46866
47016
47166
47316
47466
47616
47766
47916
48066
48216
48366
48516
48666
48816
48966
49116
49266
49416
49566
49716
49866
50016
45667
45817
45967
46117
46267
46417
46567
46717
46867
47017
47167
47317
47467
47617
47767
47917
48067
48217
48367
48517
48667
48817
48967
49117
49267
49417
49567
49717
49867
50017
45668
45818
45968
46118
46268
46418
46568
46718
46868
47018
47168
47318
47468
47618
47768
47918
48068
48218
48368
48518
48668
48818
48968
49118
49268
49418
49568
49718
49868
50018
45669
45819
45969
46119
46269
46419
46569
46719
46869
47019
47169
47319
47469
47619
47769
47919
48069
48219
48369
48519
48669
48819
48969
49119
49269
49419
49569
49719
49869
50019
45670
45820
45970
46120
46270
46420
46570
46720
46870
47020
47170
47320
47470
47620
47770
47920
48070
48220
48370
48520
48670
48820
48970
49120
49270
49420
49570
49720
49870
50020
45671
45821
45971
46121
46271
46421
46571
46721
46871
47021
47171
47321
47471
47621
47771
47921
48071
48221
48371
48521
48671
48821
48971
49121
49271
49421
49571
49721
49871
50021
45672
45822
45972
46122
46272
46422
46572
46722
46872
47022
47172
47322
47472
47622
47772
47922
48072
48222
48372
48522
48672
48822
48972
49122
49272
49422
49572
49722
49872
50022
45673
45823
45973
46123
46273
46423
46573
46723
46873
47023
47173
47323
47473
47623
47773
47923
48073
48223
48373
48523
48673
48823
48973
49123
49273
49423
49573
49723
49873
50023
45674
45824
45974
46124
46274
46424
46574
46724
46874
47024
47174
47324
47474
47624
47774
47924
48074
48224
48374
48524
48674
48824
48974
49124
49274
49424
49574
49724
49874
50024
45675
45825
45975
46125
46275
46425
46575
46725
46875
47025
47175
47325
47475
47625
47775
47925
48075
48225
48375
48525
48675
48825
48975
49125
49275
49425
49575
49725
49875
50025
45676
45826
45976
46126
46276
46426
46576
46726
46876
47026
47176
47326
47476
47626
47776
47926
48076
48226
48376
48526
48676
48826
48976
49126
49276
49426
49576
49726
49876
50026
45677
45827
45977
46127
46277
46427
46577
46727
46877
47027
47177
47327
47477
47627
47777
47927
48077
48227
48377
48527
48677
48827
48977
49127
49277
49427
49577
49727
49877
50027
45678
45828
45978
46128
46278
46428
46578
46728
46878
47028
47178
47328
47478
47628
47778
47928
48078
48228
48378
48528
48678
48828
48978
49128
49278
49428
49578
49728
49878
50028
45679
45829
45979
46129
46279
46429
46579
46729
46879
47029
47179
47329
47479
47629
47779
47929
48079
48229
48379
48529
48679
48829
48979
49129
49279
49429
49579
49729
49879
50029
45680
45830
45980
46130
46280
46430
46580
46730
46880
47030
47180
47330
47480
47630
47780
47930
48080
48230
48380
48530
48680
48830
48980
49130
49280
49430
49580
49730
49880
50030
45681
45831
45981
46131
46281
46431
46581
46731
46881
47031
47181
47331
47481
47631
47781
47931
48081
48231
48381
48531
48681
48831
48981
49131
49281
49431
49581
49731
49881
50031
45682
45832
45982
46132
46282
46432
46582
46732
46882
47032
47182
47332
47482
47632
47782
47932
48082
48232
48382
48532
48682
48832
48982
49132
49282
49432
49582
49732
49882
50032
45683
45833
45983
46133
46283
46433
46583
46733
46883
47033
47183
47333
47483
47633
47783
47933
48083
48233
48383
48533
48683
48833
48983
49133
49283
49433
49583
49733
49883
50033
45684
45834
45984
46134
46284
46434
46584
46734
46884
47034
47184
47334
47484
47634
47784
47934
48084
48234
48384
48534
48684
48834
48984
49134
49284
49434
49584
49734
49884
50034
45685
45835
45985
46135
46285
46435
46585
46735
46885
47035
47185
47335
47485
47635
47785
47935
48085
48235
48385
48535
48685
48835
48985
49135
49285
49435
49585
49735
49885
50035
45686
45836
45986
46136
46286
46436
46586
46736
46886
47036
47186
47336
47486
47636
47786
47936
48086
48236
48386
48536
48686
48836
48986
49136
49286
49436
49586
49736
49886
50036
45687
45837
45987
46137
46287
46437
46587
46737
46887
47037
47187
47337
47487
47637
47787
47937
48087
48237
48387
48537
48687
48837
48987
49137
49287
49437
49587
49737
49887
50037
45688
45838
45988
46138
46288
46438
46588
46738
46888
47038
47188
47338
47488
47638
47788
47938
48088
48238
48388
48538
48688
48838
48988
49138
49288
49438
49588
49738
49888
50038
45689
45839
45989
46139
46289
46439
46589
46739
46889
47039
47189
47339
47489
47639
47789
47939
48089
48239
48389
48539
48689
48839
48989
49139
49289
49439
49589
49739
49889
50039
45690
45840
45990
46140
46290
46440
46590
46740
46890
47040
47190
47340
47490
47640
47790
47940
48090
48240
48390
48540
48690
48840
48990
49140
49290
49440
49590
49740
49890
50040
45691
45841
45991
46141
46291
46441
46591
46741
46891
47041
47191
47341
47491
47641
47791
47941
48091
48241
48391
48541
48691
48841
48991
49141
49291
49441
49591
49741
49891
50041
45692
45842
45992
46142
46292
46442
46592
46742
46892
47042
47192
47342
47492
47642
47792
47942
48092
48242
48392
48542
48692
48842
48992
49142
49292
49442
49592
49742
49892
50042
45693
45843
45993
46143
46293
46443
46593
46743
46893
47043
47193
47343
47493
47643
47793
47943
48093
48243
48393
48543
48693
48843
48993
49143
49293
49443
49593
49743
49893
50043
45694
45844
45994
46144
46294
46444
46594
46744
46894
47044
47194
47344
47494
47644
47794
47944
48094
48244
48394
48544
48694
48844
48994
49144
49294
49444
49594
49744
49894
50044
45695
45845
45995
46145
46295
46445
46595
46745
46895
47045
47195
47345
47495
47645
47795
47945
48095
48245
48395
48545
48695
48845
48995
49145
49295
49445
49595
49745
49895
50045
45696
45846
45996
46146
46296
46446
46596
46746
46896
47046
47196
47346
47496
47646
47796
47946
48096
48246
48396
48546
48696
48846
48996
49146
49296
49446
49596
49746
49896
50046
45697
45847
45997
46147
46297
46447
46597
46747
46897
47047
47197
47347
47497
47647
47797
47947
48097
48247
48397
48547
48697
48847
48997
49147
49297
49447
49597
49747
49897
50047
45698
45848
45998
46148
46298
46448
46598
46748
46898
47048
47198
47348
47498
47648
47798
47948
48098
48248
48398
48548
48698
48848
48998
49148
49298
49448
49598
49748
49898
50048
45699
45849
45999
46149
46299
46449
46599
46749
46899
47049
47199
47349
47499
47649
47799
47949
48099
48249
48399
48549
48699
48849
48999
49149
49299
49449
49599
49749
49899
50049
45700
45850
46000
46150
46300
46450
46600
46750
46900
47050
47200
47350
47500
47650
47800
47950
48100
48250
48400
48550
48700
48850
49000
49150
49300
49450
49600
49750
49900
50050
45701
45851
46001
46151
46301
46451
46601
46751
46901
47051
47201
47351
47501
47651
47801
47951
48101
48251
48401
48551
48701
48851
49001
49151
49301
49451
49601
49751
49901
50051
45702
45852
46002
46152
46302
46452
46602
46752
46902
47052
47202
47352
47502
47652
47802
47952
48102
48252
48402
48552
48702
48852
49002
49152
49302
49452
49602
49752
49902
50052
45703
45853
46003
46153
46303
46453
46603
46753
46903
47053
47203
47353
47503
47653
47803
47953
48103
48253
48403
48553
48703
48853
49003
49153
49303
49453
49603
49753
49903
50053
45704
45854
46004
46154
46304
46454
46604
46754
46904
47054
47204
47354
47504
47654
47804
47954
48104
48254
48404
48554
48704
48854
49004
49154
49304
49454
49604
49754
49904
50054
45705
45855
46005
46155
46305
46455
46605
46755
46905
47055
47205
47355
47505
47655
47805
47955
48105
48255
48405
48555
48705
48855
49005
49155
49305
49455
49605
49755
49905
50055
45706
45856
46006
46156
46306
46456
46606
46756
46906
47056
47206
47356
47506
47656
47806
47956
48106
48256
48406
48556
48706
48856
49006
49156
49306
49456
49606
49756
49906
50056
45707
45857
46007
46157
46307
46457
46607
46757
46907
47057
47207
47357
47507
47657
47807
47957
48107
48257
48407
48557
48707
48857
49007
49157
49307
49457
49607
49757
49907
50057
45708
45858
46008
46158
46308
46458
46608
46758
46908
47058
47208
47358
47508
47658
47808
47958
48108
48258
48408
48558
48708
48858
49008
49158
49308
49458
49608
49758
49908
50058
45709
45859
46009
46159
46309
46459
46609
46759
46909
47059
47209
47359
47509
47659
47809
47959
48109
48259
48409
48559
48709
48859
49009
49159
49309
49459
49609
49759
49909
50059
45710
45860
46010
46160
46310
46460
46610
46760
46910
47060
47210
47360
47510
47660
47810
47960
48110
48260
48410
48560
48710
48860
49010
49160
49310
49460
49610
49760
49910
50060
45711
45861
46011
46161
46311
46461
46611
46761
46911
47061
47211
47361
47511
47661
47811
47961
48111
48261
48411
48561
48711
48861
49011
49161
49311
49461
49611
49761
49911
50061
45712
45862
46012
46162
46312
46462
46612
46762
46912
47062
47212
47362
47512
47662
47812
47962
48112
48262
48412
48562
48712
48862
49012
49162
49312
49462
49612
49762
49912
50062
45713
45863
46013
46163
46313
46463
46613
46763
46913
47063
47213
47363
47513
47663
47813
47963
48113
48263
48413
48563
48713
48863
49013
49163
49313
49463
49613
49763
49913
50063
45714
45864
46014
46164
46314
46464
46614
46764
46914
47064
47214
47364
47514
47664
47814
47964
48114
48264
48414
48564
48714
48864
49014
49164
49314
49464
49614
49764
49914
50064
45715
45865
46015
46165
46315
46465
46615
46765
46915
47065
47215
47365
47515
47665
47815
47965
48115
48265
48415
48565
48715
48865
49015
49165
49315
49465
49615
49765
49915
50065
45716
45866
46016
46166
46316
46466
46616
46766
46916
47066
47216
47366
47516
47666
47816
47966
48116
48266
48416
48566
48716
48866
49016
49166
49316
49466
49616
49766
49916
50066
45717
45867
46017
46167
46317
46467
46617
46767
46917
47067
47217
47367
47517
47667
47817
47967
48117
48267
48417
48567
48717
48867
49017
49167
49317
49467
49617
49767
49917
50067
45718
45868
46018
46168
46318
46468
46618
46768
46918
47068
47218
47368
47518
47668
47818
47968
48118
48268
48418
48568
48718
48868
49018
49168
49318
49468
49618
49768
49918
50068
45719
45869
46019
46169
46319
46469
46619
46769
46919
47069
47219
47369
47519
47669
47819
47969
48119
48269
48419
48569
48719
48869
49019
49169
49319
49469
49619
49769
49919
50069
45720
45870
46020
46170
46320
46470
46620
46770
46920
47070
47220
47370
47520
47670
47820
47970
48120
48270
48420
48570
48720
48870
49020
49170
49320
49470
49620
49770
49920
50070
45721
45871
46021
46171
46321
46471
46621
46771
46921
47071
47221
47371
47521
47671
47821
47971
48121
48271
48421
48571
48721
48871
49021
49171
49321
49471
49621
49771
49921
50071
45722
45872
46022
46172
46322
46472
46622
46772
46922
47072
47222
47372
47522
47672
47822
47972
48122
48272
48422
48572
48722
48872
49022
49172
49322
49472
49622
49772
49922
50072
45723
45873
46023
46173
46323
46473
46623
46773
46923
47073
47223
47373
47523
47673
47823
47973
48123
48273
48423
48573
48723
48873
49023
49173
49323
49473
49623
49773
49923
50073
45724
45874
46024
46174
46324
46474
46624
46774
46924
47074
47224
47374
47524
47674
47824
47974
48124
48274
48424
48574
48724
48874
49024
49174
49324
49474
49624
49774
49924
50074
45725
45875
46025
46175
46325
46475
46625
46775
46925
47075
47225
47375
47525
47675
47825
47975
48125
48275
48425
48575
48725
48875
49025
49175
49325
49475
49625
49775
49925
50075
45726
45876
46026
46176
46326
46476
46626
46776
46926
47076
47226
47376
47526
47676
47826
47976
48126
48276
48426
48576
48726
48876
49026
49176
49326
49476
49626
49776
49926
50076
45727
45877
46027
46177
46327
46477
46627
46777
46927
47077
47227
47377
47527
47677
47827
47977
48127
48277
48427
48577
48727
48877
49027
49177
49327
49477
49627
49777
49927
50077
45728
45878
46028
46178
46328
46478
46628
46778
46928
47078
47228
47378
47528
47678
47828
47978
48128
48278
48428
48578
48728
48878
49028
49178
49328
49478
49628
49778
49928
50078
45729
45879
46029
46179
46329
46479
46629
46779
46929
47079
47229
47379
47529
47679
47829
47979
48129
48279
48429
48579
48729
48879
49029
49179
49329
49479
49629
49779
49929
50079
45730
45880
46030
46180
46330
46480
46630
46780
46930
47080
47230
47380
47530
47680
47830
47980
48130
48280
48430
48580
48730
48880
49030
49180
49330
49480
49630
49780
49930
50080
45731
45881
46031
46181
46331
46481
46631
46781
46931
47081
47231
47381
47531
47681
47831
47981
48131
48281
48431
48581
48731
48881
49031
49181
49331
49481
49631
49781
49931
50081
45732
45882
46032
46182
46332
46482
46632
46782
46932
47082
47232
47382
47532
47682
47832
47982
48132
48282
48432
48582
48732
48882
49032
49182
49332
49482
49632
49782
49932
50082
45733
45883
46033
46183
46333
46483
46633
46783
46933
47083
47233
47383
47533
47683
47833
47983
48133
48283
48433
48583
48733
48883
49033
49183
49333
49483
49633
49783
49933
50083
45734
45884
46034
46184
46334
46484
46634
46784
46934
47084
47234
47384
47534
47684
47834
47984
48134
48284
48434
48584
48734
48884
49034
49184
49334
49484
49634
49784
49934
50084
45735
45885
46035
46185
46335
46485
46635
46785
46935
47085
47235
47385
47535
47685
47835
47985
48135
48285
48435
48585
48735
48885
49035
49185
49335
49485
49635
49785
49935
50085
45736
45886
46036
46186
46336
46486
46636
46786
46936
47086
47236
47386
47536
47686
47836
47986
48136
48286
48436
48586
48736
48886
49036
49186
49336
49486
49636
49786
49936
50086
45737
45887
46037
46187
46337
46487
46637
46787
46937
47087
47237
47387
47537
47687
47837
47987
48137
48287
48437
48587
48737
48887
49037
49187
49337
49487
49637
49787
49937
50087
45738
45888
46038
46188
46338
46488
46638
46788
46938
47088
47238
47388
47538
47688
47838
47988
48138
48288
48438
48588
48738
48888
49038
49188
49338
49488
49638
49788
49938
50088
45739
45889
46039
46189
46339
46489
46639
46789
46939
47089
47239
47389
47539
47689
47839
47989
48139
48289
48439
48589
48739
48889
49039
49189
49339
49489
49639
49789
49939
50089
45740
45890
46040
46190
46340
46490
46640
46790
46940
47090
47240
47390
47540
47690
47840
47990
48140
48290
48440
48590
48740
48890
49040
49190
49340
49490
49640
49790
49940
50090
45741
45891
46041
46191
46341
46491
46641
46791
46941
47091
47241
47391
47541
47691
47841
47991
48141
48291
48441
48591
48741
48891
49041
49191
49341
49491
49641
49791
49941
50091
45742
45892
46042
46192
46342
46492
46642
46792
46942
47092
47242
47392
47542
47692
47842
47992
48142
48292
48442
48592
48742
48892
49042
49192
49342
49492
49642
49792
49942
50092
45743
45893
46043
46193
46343
46493
46643
46793
46943
47093
47243
47393
47543
47693
47843
47993
48143
48293
48443
48593
48743
48893
49043
49193
49343
49493
49643
49793
49943
50093
45744
45894
46044
46194
46344
46494
46644
46794
46944
47094
47244
47394
47544
47694
47844
47994
48144
48294
48444
48594
48744
48894
49044
49194
49344
49494
49644
49794
49944
50094
45745
45895
46045
46195
46345
46495
46645
46795
46945
47095
47245
47395
47545
47695
47845
47995
48145
48295
48445
48595
48745
48895
49045
49195
49345
49495
49645
49795
49945
50095
45746
45896
46046
46196
46346
46496
46646
46796
46946
47096
47246
47396
47546
47696
47846
47996
48146
48296
48446
48596
48746
48896
49046
49196
49346
49496
49646
49796
49946
50096
45747
45897
46047
46197
46347
46497
46647
46797
46947
47097
47247
47397
47547
47697
47847
47997
48147
48297
48447
48597
48747
48897
49047
49197
49347
49497
49647
49797
49947
50097
45748
45898
46048
46198
46348
46498
46648
46798
46948
47098
47248
47398
47548
47698
47848
47998
48148
48298
48448
48598
48748
48898
49048
49198
49348
49498
49648
49798
49948
50098
45749
45899
46049
46199
46349
46499
46649
46799
46949
47099
47249
47399
47549
47699
47849
47999
48149
48299
48449
48599
48749
48899
49049
49199
49349
49499
49649
49799
49949
50099
50100
50130
50160
50190
50220
50250
50280
50310
50340
50370
50400
50430
50460
50490
50520
50550
50580
50610
50640
50670
50101
50131
50161
50191
50221
50251
50281
50311
50341
50371
50401
50431
50461
50491
50521
50551
50581
50611
50641
50671
50102
50132
50162
50192
50222
50252
50282
50312
50342
50372
50402
50432
50462
50492
50522
50552
50582
50612
50642
50672
50103
50133
50163
50193
50223
50253
50283
50313
50343
50373
50403
50433
50463
50493
50523
50553
50583
50613
50643
50673
50104
50134
50164
50194
50224
50254
50284
50314
50344
50374
50404
50434
50464
50494
50524
50554
50584
50614
50644
50674
50105
50135
50165
50195
50225
50255
50285
50315
50345
50375
50405
50435
50465
50495
50525
50555
50585
50615
50645
50675
50106
50136
50166
50196
50226
50256
50286
50316
50346
50376
50406
50436
50466
50496
50526
50556
50586
50616
50646
50676
50107
50137
50167
50197
50227
50257
50287
50317
50347
50377
50407
50437
50467
50497
50527
50557
50587
50617
50647
50677
50108
50138
50168
50198
50228
50258
50288
50318
50348
50378
50408
50438
50468
50498
50528
50558
50588
50618
50648
50678
50109
50139
50169
50199
50229
50259
50289
50319
50349
50379
50409
50439
50469
50499
50529
50559
50589
50619
50649
50679
50110
50140
50170
50200
50230
50260
50290
50320
50350
50380
50410
50440
50470
50500
50530
50560
50590
50620
50650
50680
50111
50141
50171
50201
50231
50261
50291
50321
50351
50381
50411
50441
50471
50501
50531
50561
50591
50621
50651
50681
50112
50142
50172
50202
50232
50262
50292
50322
50352
50382
50412
50442
50472
50502
50532
50562
50592
50622
50652
50682
50113
50143
50173
50203
50233
50263
50293
50323
50353
50383
50413
50443
50473
50503
50533
50563
50593
50623
50653
50683
50114
50144
50174
50204
50234
50264
50294
50324
50354
50384
50414
50444
50474
50504
50534
50564
50594
50624
50654
50684
50115
50145
50175
50205
50235
50265
50295
50325
50355
50385
50415
50445
50475
50505
50535
50565
50595
50625
50655
50685
50116
50146
50176
50206
50236
50266
50296
50326
50356
50386
50416
50446
50476
50506
50536
50566
50596
50626
50656
50686
50117
50147
50177
50207
50237
50267
50297
50327
50357
50387
50417
50447
50477
50507
50537
50567
50597
50627
50657
50687
50118
50148
50178
50208
50238
50268
50298
50328
50358
50388
50418
50448
50478
50508
50538
50568
50598
50628
50658
50688
50119
50149
50179
50209
50239
50269
50299
50329
50359
50389
50419
50449
50479
50509
50539
50569
50599
50629
50659
50689
50120
50150
50180
50210
50240
50270
50300
50330
50360
50390
50420
50450
50480
50510
50540
50570
50600
50630
50660
50690
50121
50151
50181
50211
50241
50271
50301
50331
50361
50391
50421
50451
50481
50511
50541
50571
50601
50631
50661
50691
50122
50152
50182
50212
50242
50272
50302
50332
50362
50392
50422
50452
50482
50512
50542
50572
50602
50632
50662
50692
50123
50153
50183
50213
50243
50273
50303
50333
50363
50393
50423
50453
50483
50513
50543
50573
50603
50633
50663
50693
50124
50154
50184
50214
50244
50274
50304
50334
50364
50394
50424
50454
50484
50514
50544
50574
50604
50634
50664
50694
50125
50155
50185
50215
50245
50275
50305
50335
50365
50395
50425
50455
50485
50515
50545
50575
50605
50635
50665
50695
50126
50156
50186
50216
50246
50276
50306
50336
50366
50396
50426
50456
50486
50516
50546
50576
50606
50636
50666
50696
50127
50157
50187
50217
50247
50277
50307
50337
50367
50397
50427
50457
50487
50517
50547
50577
50607
50637
50667
50697
50128
50158
50188
50218
50248
50278
50308
50338
50368
50398
50428
50458
50488
50518
50548
50578
50608
50638
50668
50698
50129
50159
50189
50219
50249
50279
50309
50339
50369
50399
50429
50459
50489
50519
50549
50579
50609
50639
50669
50699
50700
50730
50760
50790
50820
50850
50880
50910
50940
50970
51000
51030
51060
51090
51120
51150
51180
51210
51240
51270
50701
50731
50761
50791
50821
50851
50881
50911
50941
50971
51001
51031
51061
51091
51121
51151
51181
51211
51241
51271
50702
50732
50762
50792
50822
50852
50882
50912
50942
50972
51002
51032
51062
51092
51122
51152
51182
51212
51242
51272
50703
50733
50763
50793
50823
50853
50883
50913
50943
50973
51003
51033
51063
51093
51123
51153
51183
51213
51243
51273
50704
50734
50764
50794
50824
50854
50884
50914
50944
50974
51004
51034
51064
51094
51124
51154
51184
51214
51244
51274
50705
50735
50765
50795
50825
50855
50885
50915
50945
50975
51005
51035
51065
51095
51125
51155
51185
51215
51245
51275
50706
50736
50766
50796
50826
50856
50886
50916
50946
50976
51006
51036
51066
51096
51126
51156
51186
51216
51246
51276
50707
50737
50767
50797
50827
50857
50887
50917
50947
50977
51007
51037
51067
51097
51127
51157
51187
51217
51247
51277
50708
50738
50768
50798
50828
50858
50888
50918
50948
50978
51008
51038
51068
51098
51128
51158
51188
51218
51248
51278
50709
50739
50769
50799
50829
50859
50889
50919
50949
50979
51009
51039
51069
51099
51129
51159
51189
51219
51249
51279
50710
50740
50770
50800
50830
50860
50890
50920
50950
50980
51010
51040
51070
51100
51130
51160
51190
51220
51250
51280
50711
50741
50771
50801
50831
50861
50891
50921
50951
50981
51011
51041
51071
51101
51131
51161
51191
51221
51251
51281
50712
50742
50772
50802
50832
50862
50892
50922
50952
50982
51012
51042
51072
51102
51132
51162
51192
51222
51252
51282
50713
50743
50773
50803
50833
50863
50893
50923
50953
50983
51013
51043
51073
51103
51133
51163
51193
51223
51253
51283
50714
50744
50774
50804
50834
50864
50894
50924
50954
50984
51014
51044
51074
51104
51134
51164
51194
51224
51254
51284
50715
50745
50775
50805
50835
50865
50895
50925
50955
50985
51015
51045
51075
51105
51135
51165
51195
51225
51255
51285
50716
50746
50776
50806
50836
50866
50896
50926
50956
50986
51016
51046
51076
51106
51136
51166
51196
51226
51256
51286
50717
50747
50777
50807
50837
50867
50897
50927
50957
50987
51017
51047
51077
51107
51137
51167
51197
51227
51257
51287
50718
50748
50778
50808
50838
50868
50898
50928
50958
50988
51018
51048
51078
51108
51138
51168
51198
51228
51258
51288
50719
50749
50779
50809
50839
50869
50899
50929
50959
50989
51019
51049
51079
51109
51139
51169
51199
51229
51259
51289
50720
50750
50780
50810
50840
50870
50900
50930
50960
50990
51020
51050
51080
51110
51140
51170
51200
51230
51260
51290
50721
50751
50781
50811
50841
50871
50901
50931
50961
50991
51021
51051
51081
51111
51141
51171
51201
51231
51261
51291
50722
50752
50782
50812
50842
50872
50902
50932
50962
50992
51022
51052
51082
51112
51142
51172
51202
51232
51262
51292
50723
50753
50783
50813
50843
50873
50903
50933
50963
50993
51023
51053
51083
51113
51143
51173
51203
51233
51263
51293
50724
50754
50784
50814
50844
50874
50904
50934
50964
50994
51024
51054
51084
51114
51144
51174
51204
51234
51264
51294
50725
50755
50785
50815
50845
50875
50905
50935
50965
50995
51025
51055
51085
51115
51145
51175
51205
51235
51265
51295
50726
50756
50786
50816
50846
50876
50906
50936
50966
50996
51026
51056
51086
51116
51146
51176
51206
51236
51266
51296
50727
50757
50787
50817
50847
50877
50907
50937
50967
50997
51027
51057
51087
51117
51147
51177
51207
51237
51267
51297
50728
50758
50788
50818
50848
50878
50908
50938
50968
50998
51028
51058
51088
51118
51148
51178
51208
51238
51268
51298
50729
50759
50789
50819
50849
50879
50909
50939
50969
50999
51029
51059
51089
51119
51149
51179
51209
51239
51269
51299
51300
51475
51650
51825
52000
52175
52350
52525
52700
52875
53050
53225
53400
53575
53750
53925
54100
54275
54450
54625
51301
51476
51651
51826
52001
52176
52351
52526
52701
52876
53051
53226
53401
53576
53751
53926
54101
54276
54451
54626
51302
51477
51652
51827
52002
52177
52352
52527
52702
52877
53052
53227
53402
53577
53752
53927
54102
54277
54452
54627
51303
51478
51653
51828
52003
52178
52353
52528
52703
52878
53053
53228
53403
53578
53753
53928
54103
54278
54453
54628
51304
51479
51654
51829
52004
52179
52354
52529
52704
52879
53054
53229
53404
53579
53754
53929
54104
54279
54454
54629
51305
51480
51655
51830
52005
52180
52355
52530
52705
52880
53055
53230
53405
53580
53755
53930
54105
54280
54455
54630
51306
51481
51656
51831
52006
52181
52356
52531
52706
52881
53056
53231
53406
53581
53756
53931
54106
54281
54456
54631
51307
51482
51657
51832
52007
52182
52357
52532
52707
52882
53057
53232
53407
53582
53757
53932
54107
54282
54457
54632
51308
51483
51658
51833
52008
52183
52358
52533
52708
52883
53058
53233
53408
53583
53758
53933
54108
54283
54458
54633
51309
51484
51659
51834
52009
52184
52359
52534
52709
52884
53059
53234
53409
53584
53759
53934
54109
54284
54459
54634
51310
51485
51660
51835
52010
52185
52360
52535
52710
52885
53060
53235
53410
53585
53760
53935
54110
54285
54460
54635
51311
51486
51661
51836
52011
52186
52361
52536
52711
52886
53061
53236
53411
53586
53761
53936
54111
54286
54461
54636
51312
51487
51662
51837
52012
52187
52362
52537
52712
52887
53062
53237
53412
53587
53762
53937
54112
54287
54462
54637
51313
51488
51663
51838
52013
52188
52363
52538
52713
52888
53063
53238
53413
53588
53763
53938
54113
54288
54463
54638
51314
51489
51664
51839
52014
52189
52364
52539
52714
52889
53064
53239
53414
53589
53764
53939
54114
54289
54464
54639
51315
51490
51665
51840
52015
52190
52365
52540
52715
52890
53065
53240
53415
53590
53765
53940
54115
54290
54465
54640
51316
51491
51666
51841
52016
52191
52366
52541
52716
52891
53066
53241
53416
53591
53766
53941
54116
54291
54466
54641
51317
51492
51667
51842
52017
52192
52367
52542
52717
52892
53067
53242
53417
53592
53767
53942
54117
54292
54467
54642
51318
51493
51668
51843
52018
52193
52368
52543
52718
52893
53068
53243
53418
53593
53768
53943
54118
54293
54468
54643
51319
51494
51669
51844
52019
52194
52369
52544
52719
52894
53069
53244
53419
53594
53769
53944
54119
54294
54469
54644
51320
51495
51670
51845
52020
52195
52370
52545
52720
52895
53070
53245
53420
53595
53770
53945
54120
54295
54470
54645
51321
51496
51671
51846
52021
52196
52371
52546
52721
52896
53071
53246
53421
53596
53771
53946
54121
54296
54471
54646
51322
51497
51672
51847
52022
52197
52372
52547
52722
52897
53072
53247
53422
53597
53772
53947
54122
54297
54472
54647
51323
51498
51673
51848
52023
52198
52373
52548
52723
52898
53073
53248
53423
53598
53773
53948
54123
54298
54473
54648
51324
51499
51674
51849
52024
52199
52374
52549
52724
52899
53074
53249
53424
53599
53774
53949
54124
54299
54474
54649
51325
51500
51675
51850
52025
52200
52375
52550
52725
52900
53075
53250
53425
53600
53775
53950
54125
54300
54475
54650
51326
51501
51676
51851
52026
52201
52376
52551
52726
52901
53076
53251
53426
53601
53776
53951
54126
54301
54476
54651
51327
51502
51677
51852
52027
52202
52377
52552
52727
52902
53077
53252
53427
53602
53777
53952
54127
54302
54477
54652
51328
51503
51678
51853
52028
52203
52378
52553
52728
52903
53078
53253
53428
53603
53778
53953
54128
54303
54478
54653
51329
51504
51679
51854
52029
52204
52379
52554
52729
52904
53079
53254
53429
53604
53779
53954
54129
54304
54479
54654
51330
51505
51680
51855
52030
52205
52380
52555
52730
52905
53080
53255
53430
53605
53780
53955
54130
54305
54480
54655
51331
51506
51681
51856
52031
52206
52381
52556
52731
52906
53081
53256
53431
53606
53781
53956
54131
54306
54481
54656
51332
51507
51682
51857
52032
52207
52382
52557
52732
52907
53082
53257
53432
53607
53782
53957
54132
54307
54482
54657
51333
51508
51683
51858
52033
52208
52383
52558
52733
52908
53083
53258
53433
53608
53783
53958
54133
54308
54483
54658
51334
51509
51684
51859
52034
52209
52384
52559
52734
52909
53084
53259
53434
53609
53784
53959
54134
54309
54484
54659
51335
51510
51685
51860
52035
52210
52385
52560
52735
52910
53085
53260
53435
53610
53785
53960
54135
54310
54485
54660
51336
51511
51686
51861
52036
52211
52386
52561
52736
52911
53086
53261
53436
53611
53786
53961
54136
54311
54486
54661
51337
51512
51687
51862
52037
52212
52387
52562
52737
52912
53087
53262
53437
53612
53787
53962
54137
54312
54487
54662
51338
51513
51688
51863
52038
52213
52388
52563
52738
52913
53088
53263
53438
53613
53788
53963
54138
54313
54488
54663
51339
51514
51689
51864
52039
52214
52389
52564
52739
52914
53089
53264
53439
53614
53789
53964
54139
54314
54489
54664
51340
51515
51690
51865
52040
52215
52390
52565
52740
52915
53090
53265
53440
53615
53790
53965
54140
54315
54490
54665
51341
51516
51691
51866
52041
52216
52391
52566
52741
52916
53091
53266
53441
53616
53791
53966
54141
54316
54491
54666
51342
51517
51692
51867
52042
52217
52392
52567
52742
52917
53092
53267
53442
53617
53792
53967
54142
54317
54492
54667
51343
51518
51693
51868
52043
52218
52393
52568
52743
52918
53093
53268
53443
53618
53793
53968
54143
54318
54493
54668
51344
51519
51694
51869
52044
52219
52394
52569
52744
52919
53094
53269
53444
53619
53794
53969
54144
54319
54494
54669
51345
51520
51695
51870
52045
52220
52395
52570
52745
52920
53095
53270
53445
53620
53795
53970
54145
54320
54495
54670
51346
51521
51696
51871
52046
52221
52396
52571
52746
52921
53096
53271
53446
53621
53796
53971
54146
54321
54496
54671
51347
51522
51697
51872
52047
52222
52397
52572
52747
52922
53097
53272
53447
53622
53797
53972
54147
54322
54497
54672
51348
51523
51698
51873
52048
52223
52398
52573
52748
52923
53098
53273
53448
53623
53798
53973
54148
54323
54498
54673
51349
51524
51699
51874
52049
52224
52399
52574
52749
52924
53099
53274
53449
53624
53799
53974
54149
54324
54499
54674
51350
51525
51700
51875
52050
52225
52400
52575
52750
52925
53100
53275
53450
53625
53800
53975
54150
54325
54500
54675
51351
51526
51701
51876
52051
52226
52401
52576
52751
52926
53101
53276
53451
53626
53801
53976
54151
54326
54501
54676
51352
51527
51702
51877
52052
52227
52402
52577
52752
52927
53102
53277
53452
53627
53802
53977
54152
54327
54502
54677
51353
51528
51703
51878
52053
52228
52403
52578
52753
52928
53103
53278
53453
53628
53803
53978
54153
54328
54503
54678
51354
51529
51704
51879
52054
52229
52404
52579
52754
52929
53104
53279
53454
53629
53804
53979
54154
54329
54504
54679
51355
51530
51705
51880
52055
52230
52405
52580
52755
52930
53105
53280
53455
53630
53805
53980
54155
54330
54505
54680
51356
51531
51706
51881
52056
52231
52406
52581
52756
52931
53106
53281
53456
53631
53806
53981
54156
54331
54506
54681
51357
51532
51707
51882
52057
52232
52407
52582
52757
52932
53107
53282
53457
53632
53807
53982
54157
54332
54507
54682
51358
51533
51708
51883
52058
52233
52408
52583
52758
52933
53108
53283
53458
53633
53808
53983
54158
54333
54508
54683
51359
51534
51709
51884
52059
52234
52409
52584
52759
52934
53109
53284
53459
53634
53809
53984
54159
54334
54509
54684
51360
51535
51710
51885
52060
52235
52410
52585
52760
52935
53110
53285
53460
53635
53810
53985
54160
54335
54510
54685
51361
51536
51711
51886
52061
52236
52411
52586
52761
52936
53111
53286
53461
53636
53811
53986
54161
54336
54511
54686
51362
51537
51712
51887
52062
52237
52412
52587
52762
52937
53112
53287
53462
53637
53812
53987
54162
54337
54512
54687
51363
51538
51713
51888
52063
52238
52413
52588
52763
52938
53113
53288
53463
53638
53813
53988
54163
54338
54513
54688
51364
51539
51714
51889
52064
52239
52414
52589
52764
52939
53114
53289
53464
53639
53814
53989
54164
54339
54514
54689
51365
51540
51715
51890
52065
52240
52415
52590
52765
52940
53115
53290
53465
53640
53815
53990
54165
54340
54515
54690
51366
51541
51716
51891
52066
52241
52416
52591
52766
52941
53116
53291
53466
53641
53816
53991
54166
54341
54516
54691
51367
51542
51717
51892
52067
52242
52417
52592
52767
52942
53117
53292
53467
53642
53817
53992
54167
54342
54517
54692
51368
51543
51718
51893
52068
52243
52418
52593
52768
52943
53118
53293
53468
53643
53818
53993
54168
54343
54518
54693
51369
51544
51719
51894
52069
52244
52419
52594
52769
52944
53119
53294
53469
53644
53819
53994
54169
54344
54519
54694
51370
51545
51720
51895
52070
52245
52420
52595
52770
52945
53120
53295
53470
53645
53820
53995
54170
54345
54520
54695
51371
51546
51721
51896
52071
52246
52421
52596
52771
52946
53121
53296
53471
53646
53821
53996
54171
54346
54521
54696
51372
51547
51722
51897
52072
52247
52422
52597
52772
52947
53122
53297
53472
53647
53822
53997
54172
54347
54522
54697
51373
51548
51723
51898
52073
52248
52423
52598
52773
52948
53123
53298
53473
53648
53823
53998
54173
54348
54523
54698
51374
51549
51724
51899
52074
52249
52424
52599
52774
52949
53124
53299
53474
53649
53824
53999
54174
54349
54524
54699
51375
51550
51725
51900
52075
52250
52425
52600
52775
52950
53125
53300
53475
53650
53825
54000
54175
54350
54525
54700
51376
51551
51726
51901
52076
52251
52426
52601
52776
52951
53126
53301
53476
53651
53826
54001
54176
54351
54526
54701
51377
51552
51727
51902
52077
52252
52427
52602
52777
52952
53127
53302
53477
53652
53827
54002
54177
54352
54527
54702
51378
51553
51728
51903
52078
52253
52428
52603
52778
52953
53128
53303
53478
53653
53828
54003
54178
54353
54528
54703
51379
51554
51729
51904
52079
52254
52429
52604
52779
52954
53129
53304
53479
53654
53829
54004
54179
54354
54529
54704
51380
51555
51730
51905
52080
52255
52430
52605
52780
52955
53130
53305
53480
53655
53830
54005
54180
54355
54530
54705
51381
51556
51731
51906
52081
52256
52431
52606
52781
52956
53131
53306
53481
53656
53831
54006
54181
54356
54531
54706
51382
51557
51732
51907
52082
52257
52432
52607
52782
52957
53132
53307
53482
53657
53832
54007
54182
54357
54532
54707
51383
51558
51733
51908
52083
52258
52433
52608
52783
52958
53133
53308
53483
53658
53833
54008
54183
54358
54533
54708
51384
51559
51734
51909
52084
52259
52434
52609
52784
52959
53134
53309
53484
53659
53834
54009
54184
54359
54534
54709
51385
51560
51735
51910
52085
52260
52435
52610
52785
52960
53135
53310
53485
53660
53835
54010
54185
54360
54535
54710
51386
51561
51736
51911
52086
52261
52436
52611
52786
52961
53136
53311
53486
53661
53836
54011
54186
54361
54536
54711
51387
51562
51737
51912
52087
52262
52437
52612
52787
52962
53137
53312
53487
53662
53837
54012
54187
54362
54537
54712
51388
51563
51738
51913
52088
52263
52438
52613
52788
52963
53138
53313
53488
53663
53838
54013
54188
54363
54538
54713
51389
51564
51739
51914
52089
52264
52439
52614
52789
52964
53139
53314
53489
53664
53839
54014
54189
54364
54539
54714
51390
51565
51740
51915
52090
52265
52440
52615
52790
52965
53140
53315
53490
53665
53840
54015
54190
54365
54540
54715
51391
51566
51741
51916
52091
52266
52441
52616
52791
52966
53141
53316
53491
53666
53841
54016
54191
54366
54541
54716
51392
51567
51742
51917
52092
52267
52442
52617
52792
52967
53142
53317
53492
53667
53842
54017
54192
54367
54542
54717
51393
51568
51743
51918
52093
52268
52443
52618
52793
52968
53143
53318
53493
53668
53843
54018
54193
54368
54543
54718
51394
51569
51744
51919
52094
52269
52444
52619
52794
52969
53144
53319
53494
53669
53844
54019
54194
54369
54544
54719
51395
51570
51745
51920
52095
52270
52445
52620
52795
52970
53145
53320
53495
53670
53845
54020
54195
54370
54545
54720
51396
51571
51746
51921
52096
52271
52446
52621
52796
52971
53146
53321
53496
53671
53846
54021
54196
54371
54546
54721
51397
51572
51747
51922
52097
52272
52447
52622
52797
52972
53147
53322
53497
53672
53847
54022
54197
54372
54547
54722
51398
51573
51748
51923
52098
52273
52448
52623
52798
52973
53148
53323
53498
53673
53848
54023
54198
54373
54548
54723
51399
51574
51749
51924
52099
52274
52449
52624
52799
52974
53149
53324
53499
53674
53849
54024
54199
54374
54549
54724
51400
51575
51750
51925
52100
52275
52450
52625
52800
52975
53150
53325
53500
53675
53850
54025
54200
54375
54550
54725
51401
51576
51751
51926
52101
52276
52451
52626
52801
52976
53151
53326
53501
53676
53851
54026
54201
54376
54551
54726
51402
51577
51752
51927
52102
52277
52452
52627
52802
52977
53152
53327
53502
53677
53852
54027
54202
54377
54552
54727
51403
51578
51753
51928
52103
52278
52453
52628
52803
52978
53153
53328
53503
53678
53853
54028
54203
54378
54553
54728
51404
51579
51754
51929
52104
52279
52454
52629
52804
52979
53154
53329
53504
53679
53854
54029
54204
54379
54554
54729
51405
51580
51755
51930
52105
52280
52455
52630
52805
52980
53155
53330
53505
53680
53855
54030
54205
54380
54555
54730
51406
51581
51756
51931
52106
52281
52456
52631
52806
52981
53156
53331
53506
53681
53856
54031
54206
54381
54556
54731
51407
51582
51757
51932
52107
52282
52457
52632
52807
52982
53157
53332
53507
53682
53857
54032
54207
54382
54557
54732
51408
51583
51758
51933
52108
52283
52458
52633
52808
52983
53158
53333
53508
53683
53858
54033
54208
54383
54558
54733
51409
51584
51759
51934
52109
52284
52459
52634
52809
52984
53159
53334
53509
53684
53859
54034
54209
54384
54559
54734
51410
51585
51760
51935
52110
52285
52460
52635
52810
52985
53160
53335
53510
53685
53860
54035
54210
54385
54560
54735
51411
51586
51761
51936
52111
52286
52461
52636
52811
52986
53161
53336
53511
53686
53861
54036
54211
54386
54561
54736
51412
51587
51762
51937
52112
52287
52462
52637
52812
52987
53162
53337
53512
53687
53862
54037
54212
54387
54562
54737
51413
51588
51763
51938
52113
52288
52463
52638
52813
52988
53163
53338
53513
53688
53863
54038
54213
54388
54563
54738
51414
51589
51764
51939
52114
52289
52464
52639
52814
52989
53164
53339
53514
53689
53864
54039
54214
54389
54564
54739
51415
51590
51765
51940
52115
52290
52465
52640
52815
52990
53165
53340
53515
53690
53865
54040
54215
54390
54565
54740
51416
51591
51766
51941
52116
52291
52466
52641
52816
52991
53166
53341
53516
53691
53866
54041
54216
54391
54566
54741
51417
51592
51767
51942
52117
52292
52467
52642
52817
52992
53167
53342
53517
53692
53867
54042
54217
54392
54567
54742
51418
51593
51768
51943
52118
52293
52468
52643
52818
52993
53168
53343
53518
53693
53868
54043
54218
54393
54568
54743
51419
51594
51769
51944
52119
52294
52469
52644
52819
52994
53169
53344
53519
53694
53869
54044
54219
54394
54569
54744
51420
51595
51770
51945
52120
52295
52470
52645
52820
52995
53170
53345
53520
53695
53870
54045
54220
54395
54570
54745
51421
51596
51771
51946
52121
52296
52471
52646
52821
52996
53171
53346
53521
53696
53871
54046
54221
54396
54571
54746
51422
51597
51772
51947
52122
52297
52472
52647
52822
52997
53172
53347
53522
53697
53872
54047
54222
54397
54572
54747
51423
51598
51773
51948
52123
52298
52473
52648
52823
52998
53173
53348
53523
53698
53873
54048
54223
54398
54573
54748
51424
51599
51774
51949
52124
52299
52474
52649
52824
52999
53174
53349
53524
53699
53874
54049
54224
54399
54574
54749
51425
51600
51775
51950
52125
52300
52475
52650
52825
53000
53175
53350
53525
53700
53875
54050
54225
54400
54575
54750
51426
51601
51776
51951
52126
52301
52476
52651
52826
53001
53176
53351
53526
53701
53876
54051
54226
54401
54576
54751
51427
51602
51777
51952
52127
52302
52477
52652
52827
53002
53177
53352
53527
53702
53877
54052
54227
54402
54577
54752
51428
51603
51778
51953
52128
52303
52478
52653
52828
53003
53178
53353
53528
53703
53878
54053
54228
54403
54578
54753
51429
51604
51779
51954
52129
52304
52479
52654
52829
53004
53179
53354
53529
53704
53879
54054
54229
54404
54579
54754
51430
51605
51780
51955
52130
52305
52480
52655
52830
53005
53180
53355
53530
53705
53880
54055
54230
54405
54580
54755
51431
51606
51781
51956
52131
52306
52481
52656
52831
53006
53181
53356
53531
53706
53881
54056
54231
54406
54581
54756
51432
51607
51782
51957
52132
52307
52482
52657
52832
53007
53182
53357
53532
53707
53882
54057
54232
54407
54582
54757
51433
51608
51783
51958
52133
52308
52483
52658
52833
53008
53183
53358
53533
53708
53883
54058
54233
54408
54583
54758
51434
51609
51784
51959
52134
52309
52484
52659
52834
53009
53184
53359
53534
53709
53884
54059
54234
54409
54584
54759
51435
51610
51785
51960
52135
52310
52485
52660
52835
53010
53185
53360
53535
53710
53885
54060
54235
54410
54585
54760
51436
51611
51786
51961
52136
52311
52486
52661
52836
53011
53186
53361
53536
53711
53886
54061
54236
54411
54586
54761
51437
51612
51787
51962
52137
52312
52487
52662
52837
53012
53187
53362
53537
53712
53887
54062
54237
54412
54587
54762
51438
51613
51788
51963
52138
52313
52488
52663
52838
53013
53188
53363
53538
53713
53888
54063
54238
54413
54588
54763
51439
51614
51789
51964
52139
52314
52489
52664
52839
53014
53189
53364
53539
53714
53889
54064
54239
54414
54589
54764
51440
51615
51790
51965
52140
52315
52490
52665
52840
53015
53190
53365
53540
53715
53890
54065
54240
54415
54590
54765
51441
51616
51791
51966
52141
52316
52491
52666
52841
53016
53191
53366
53541
53716
53891
54066
54241
54416
54591
54766
51442
51617
51792
51967
52142
52317
52492
52667
52842
53017
53192
53367
53542
53717
53892
54067
54242
54417
54592
54767
51443
51618
51793
51968
52143
52318
52493
52668
52843
53018
53193
53368
53543
53718
53893
54068
54243
54418
54593
54768
51444
51619
51794
51969
52144
52319
52494
52669
52844
53019
53194
53369
53544
53719
53894
54069
54244
54419
54594
54769
51445
51620
51795
51970
52145
52320
52495
52670
52845
53020
53195
53370
53545
53720
53895
54070
54245
54420
54595
54770
51446
51621
51796
51971
52146
52321
52496
52671
52846
53021
53196
53371
53546
53721
53896
54071
54246
54421
54596
54771
51447
51622
51797
51972
52147
52322
52497
52672
52847
53022
53197
53372
53547
53722
53897
54072
54247
54422
54597
54772
51448
51623
51798
51973
52148
52323
52498
52673
52848
53023
53198
53373
53548
53723
53898
54073
54248
54423
54598
54773
51449
51624
51799
51974
52149
52324
52499
52674
52849
53024
53199
53374
53549
53724
53899
54074
54249
54424
54599
54774
51450
51625
51800
51975
52150
52325
52500
52675
52850
53025
53200
53375
53550
53725
53900
54075
54250
54425
54600
54775
51451
51626
51801
51976
52151
52326
52501
52676
52851
53026
53201
53376
53551
53726
53901
54076
54251
54426
54601
54776
51452
51627
51802
51977
52152
52327
52502
52677
52852
53027
53202
53377
53552
53727
53902
54077
54252
54427
54602
54777
51453
51628
51803
51978
52153
52328
52503
52678
52853
53028
53203
53378
53553
53728
53903
54078
54253
54428
54603
54778
51454
51629
51804
51979
52154
52329
52504
52679
52854
53029
53204
53379
53554
53729
53904
54079
54254
54429
54604
54779
51455
51630
51805
51980
52155
52330
52505
52680
52855
53030
53205
53380
53555
53730
53905
54080
54255
54430
54605
54780
51456
51631
51806
51981
52156
52331
52506
52681
52856
53031
53206
53381
53556
53731
53906
54081
54256
54431
54606
54781
51457
51632
51807
51982
52157
52332
52507
52682
52857
53032
53207
53382
53557
53732
53907
54082
54257
54432
54607
54782
51458
51633
51808
51983
52158
52333
52508
52683
52858
53033
53208
53383
53558
53733
53908
54083
54258
54433
54608
54783
51459
51634
51809
51984
52159
52334
52509
52684
52859
53034
53209
53384
53559
53734
53909
54084
54259
54434
54609
54784
51460
51635
51810
51985
52160
52335
52510
52685
52860
53035
53210
53385
53560
53735
53910
54085
54260
54435
54610
54785
51461
51636
51811
51986
52161
52336
52511
52686
52861
53036
53211
53386
53561
53736
53911
54086
54261
54436
54611
54786
51462
51637
51812
51987
52162
52337
52512
52687
52862
53037
53212
53387
53562
53737
53912
54087
54262
54437
54612
54787
51463
51638
51813
51988
52163
52338
52513
52688
52863
53038
53213
53388
53563
53738
53913
54088
54263
54438
54613
54788
51464
51639
51814
51989
52164
52339
52514
52689
52864
53039
53214
53389
53564
53739
53914
54089
54264
54439
54614
54789
51465
51640
51815
51990
52165
52340
52515
52690
52865
53040
53215
53390
53565
53740
53915
54090
54265
54440
54615
54790
51466
51641
51816
51991
52166
52341
52516
52691
52866
53041
53216
53391
53566
53741
53916
54091
54266
54441
54616
54791
51467
51642
51817
51992
52167
52342
52517
52692
52867
53042
53217
53392
53567
53742
53917
54092
54267
54442
54617
54792
51468
51643
51818
51993
52168
52343
52518
52693
52868
53043
53218
53393
53568
53743
53918
54093
54268
54443
54618
54793
51469
51644
51819
51994
52169
52344
52519
52694
52869
53044
53219
53394
53569
53744
53919
54094
54269
54444
54619
54794
51470
51645
51820
51995
52170
52345
52520
52695
52870
53045
53220
53395
53570
53745
53920
54095
54270
54445
54620
54795
51471
51646
51821
51996
52171
52346
52521
52696
52871
53046
53221
53396
53571
53746
53921
54096
54271
54446
54621
54796
51472
51647
51822
51997
52172
52347
52522
52697
52872
53047
53222
53397
53572
53747
53922
54097
54272
54447
54622
54797
51473
51648
51823
51998
52173
52348
52523
52698
52873
53048
53223
53398
53573
53748
53923
54098
54273
54448
54623
54798
51474
51649
51824
51999
52174
52349
52524
52699
52874
53049
53224
53399
53574
53749
53924
54099
54274
54449
54624
54799
)
// ************************************************************************* //
| [
"eyang1995@hotmail.com"
] | eyang1995@hotmail.com | |
db3b67498cb2bda306047db8859497c84ce5a1d6 | b18adf09556fa66a9db188684c69ea48849bb01b | /Elsov/SkyFrame/PointToPoint/PointToPointDoc.h | d2546e8332e574bedbb00ad77e02ea097be7f8d1 | [] | no_license | zzfd97/projects | d78e3fa6418db1a5a2580edcaef1f2e197d5bf8c | f8e7ceae143317d9e8461f3de8cfccdd7627c3ee | refs/heads/master | 2022-01-12T19:56:48.014510 | 2019-04-05T05:30:31 | 2019-04-05T05:30:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,541 | h | // PointToPointDoc.h : interface of the CPointToPointDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_POINTTOPOINTDOC_H__0DA57542_93B7_474F_87A1_D13B863BFF31__INCLUDED_)
#define AFX_POINTTOPOINTDOC_H__0DA57542_93B7_474F_87A1_D13B863BFF31__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CPointToPointDoc : public CDocument
{
protected: // create from serialization only
CPointToPointDoc();
DECLARE_DYNCREATE(CPointToPointDoc)
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPointToPointDoc)
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CPointToPointDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CPointToPointDoc)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_POINTTOPOINTDOC_H__0DA57542_93B7_474F_87A1_D13B863BFF31__INCLUDED_)
| [
"hp@kozhevnikov.org"
] | hp@kozhevnikov.org |
5d46d03ae1c5d8f247a22023d54b7200ca0ba03a | d5d6047d86e39a99cd09a5bbb2ad0820f5f2d39f | /src/MaterialManager.h | 3099b2c78b9be287eb36a145a3a5dbc3ef42e7b9 | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | gchunev/Dice4D | 5bb184c3767294bb1e80111651d6601fab076335 | f96db406204fdca0155d26db856b66a2afd4e664 | refs/heads/master | 2020-05-23T22:33:42.752018 | 2019-05-24T14:50:28 | 2019-05-24T14:50:28 | 186,976,624 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h |
#ifndef MATERIAL_MANAGER_H
#define MATERIAL_MANAGER_H
#include "SDL_opengles2.h"
#include <vector>
#include <string>
#include <map>
class MaterialManager
{
public:
static MaterialManager* GetInstance();
bool LoadShaders(const std::string& path);
int GetShaderByName(std::string& shaderName);
int GetShaderByMaterialName(const std::string& materialName);
private:
MaterialManager();
~MaterialManager();
MaterialManager(MaterialManager const&) {};
MaterialManager& operator=(MaterialManager const&) {};
void InitShaderDefs();
void DeleteShaders();
void ReloadShaders();
int CreateShader(std::string& shaderPath);
GLuint LoadShader(GLenum type, const char *shaderSrc);
std::string m_shaderPath;
std::map<std::string, std::string> m_materialMap;
std::map<std::string, int> m_shaderMap;
static MaterialManager* m_pInstance;
};
#endif | [
"georgi.chunev@gameloft.com"
] | georgi.chunev@gameloft.com |
d03523f92ba8b6a80f258b7e7d755a64d4151af7 | befaf0dfc5880d18f42e1fa7e39e27f8d2f8dde9 | /SDK/SCUM_Horse_Torso_classes.hpp | 0b64d28097395510148f1fa54cafcfbe8a45b81f | [] | no_license | cpkt9762/SCUM-SDK | 0b59c99748a9e131eb37e5e3d3b95ebc893d7024 | c0dbd67e10a288086120cde4f44d60eb12e12273 | refs/heads/master | 2020-03-28T00:04:48.016948 | 2018-09-04T13:32:38 | 2018-09-04T13:32:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 654 | hpp | #pragma once
// SCUM (0.1.17.8320) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SCUM_Horse_Torso_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass Horse_Torso.Horse_Torso_C
// 0x0000 (0x07A0 - 0x07A0)
class AHorse_Torso_C : public AEquipmentItem
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindObject<UClass>("BlueprintGeneratedClass Horse_Torso.Horse_Torso_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
b740013d805953bed822189233fffc6f1188be91 | c9b5bea7a472d6f9e11192775135fa3680297e5f | /Lista1_Dominik_Grafik/zadanie11.cpp | f829721e27dcf49118e0acde590fd56e6f66400c | [] | no_license | dgrafik/algorytmy-i-struktury-danych | cdd684fc32a03fd7e73f7364c3511ad954cbcb98 | bea58270ab68b71870dd07cab438847d5af98601 | refs/heads/master | 2020-04-09T17:45:02.112075 | 2018-03-28T12:08:22 | 2018-03-28T12:08:22 | 124,238,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 475 | cpp | #include <iostream>
#define n 100
bool numbersTable[n + 1];
int main()
{
for(int i = 0; i<n+1; i++){
numbersTable[i] = true;
}
for (int i = 2; i*i <= n; ++i )
{
if (numbersTable[i] == false)
continue;
for (int j = 2*i ; j <= n; j += i)
numbersTable[j] = false;
}
for (int i = 2; i <= n; i++)
if (numbersTable[i] == true)
std::cout << i << std::endl;
return 0;
}
| [
"dominik.grafik@gmail.com"
] | dominik.grafik@gmail.com |
242a43f323285e1a26a3ed54428bbb4e81350ffd | e52637b524363de6c44ab83913f3e1bfec1a70e4 | /BGM_FileManager.cpp | 9b30a06e77257ca905e8ac53720cdfaf91b031c8 | [] | no_license | drdrpyan/MyDBexample | e8943a67b923dfa92273b5d55f3323c5323e0650 | 6c61b97545621275cbdde24efd0fa36f0ccca7c2 | refs/heads/master | 2016-09-01T18:40:08.752668 | 2015-09-16T16:46:59 | 2015-09-16T16:46:59 | 21,458,280 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,102 | cpp | #include "BGM_FileManager.h"
namespace BGM
{
FileManager::FileManager(const char* fileName)
{
if(!(file=fopen(fileName, "rb+")))
{
file = fopen(fileName, "wb+");
numberOfBlock = 0;
currentBlock = 0;
nextBlock = 1;
lastBlock = 0;
}
else
{
fread_s(buffer, BLOCKSIZE, BLOCKSIZE, 1, file);
numberOfBlock = *((unsigned*)(buffer + NUMBEROFBLOCK_OFFSET));
currentBlock = *((unsigned*)(buffer + CURRENTBLOCK_OFFSET));
nextBlock = *((unsigned*)(buffer+NEXTBLOCK_OFFSET));
lastBlock = *((unsigned*)(buffer+LASTBLOCK_OFFSET));
loadBlock(currentBlock);
}
}
FileManager::~FileManager(void)
{
storeBlock(currentBlock);
fseek(file, 0, SEEK_SET);
fwrite(&numberOfBlock, 4, 1, file);
fwrite(¤tBlock, 4, 1, file);
fwrite(&nextBlock, 4, 1, file);
fwrite(&lastBlock, 4, 1, file);
fclose(file);
}
blockId_t FileManager::newBlock(void)
{
int result = nextBlock;
numberOfBlock++;
if(numberOfBlock > lastBlock)
{
lastBlock++;
nextBlock = lastBlock+1;
}
else
{
fseek(file, nextBlock*BLOCKSIZE, SEEK_SET);
fread_s(buffer, BLOCKSIZE, BLOCKSIZE, 1, file);
nextBlock = *((blockId_t*)buffer);
}
return result;
}
void FileManager::loadBlock(blockId_t id)
{
fseek(file, id*BLOCKSIZE, SEEK_SET);
fread_s(buffer, BLOCKSIZE, BLOCKSIZE, 1, file);
currentBlock = id;
}
void FileManager::loadBlock(blockId_t id, void *externalBuffer)
{
fseek(file, id*BLOCKSIZE, SEEK_SET);
fread_s(externalBuffer, BLOCKSIZE, BLOCKSIZE, 1, file);
}
void FileManager::storeBlock(void)
{
fseek(file, currentBlock*BLOCKSIZE, SEEK_SET);
fwrite(buffer, BLOCKSIZE, 1, file);
}
void FileManager::storeBlock(blockId_t id)
{
fseek(file, id*BLOCKSIZE, SEEK_SET);
fwrite(buffer, BLOCKSIZE, 1, file);
}
void FileManager::storeBlock(blockId_t id, void *externalBuffer)
{
fseek(file, id*BLOCKSIZE, SEEK_SET);
fwrite(externalBuffer, BLOCKSIZE, 1, file);
}
void FileManager::deleteBlock(blockId_t id)
{
fseek(file, id*BLOCKSIZE, SEEK_SET);
fwrite(&nextBlock, 4, 1, file);
nextBlock = id;
numberOfBlock--;
}
} | [
"drdrpyan@gmail.com"
] | drdrpyan@gmail.com |
fbe7793051ae6840f181903ca0b7fac51ae5c8b0 | 74388fdac3615e98665c61031afe602829bb95f9 | /tags/MainProject/widget/glwidget.h | fcae8d34fac849147a433314fd550ca045cae5f0 | [] | no_license | mvm9289/vig-qp2010 | 4bc78bce61970e1f67a53ca1a98ba7e10871615d | 2005d0870f53a0a8c78bafad711a3b7f7e11ba4b | refs/heads/master | 2020-03-27T22:55:51.934313 | 2010-09-23T21:15:11 | 2010-09-23T21:15:11 | 32,334,738 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,575 | h | #ifndef _GLWIDGET_H_
#define _GLWIDGET_H_
#include <QtOpenGL/qgl.h>
#include <QKeyEvent>
#include <iostream>
#include <qstring.h>
#include <qfiledialog.h>
#include <qtimer.h>
#include <QtDesigner/QDesignerExportWidget>
#include "material_lib.h"
#include "point.h"
#include "scene.h"
#include "llum.h"
#include "finestraLlums.h"
#include <list>
#define ROTATION_FACTOR 0.2
#define ZOOM_FACTOR 0.1
#define PAN_FACTOR 0.03
#define DEFAULT_FOVY 60.0
#define FPV_FOVY 90.0
class QDESIGNER_WIDGET_EXPORT GLWidget : public QGLWidget
{
Q_OBJECT
public:
GLWidget(QWidget * parent);
signals:
void carOpened(bool);
void dialValueChanged(int);
void activateAnimation(QString);
void activateFirstPersonView(bool);
public slots:
// help - Ajuda per la terminal des de la que hem engegat el programa.
void help(void);
// Afegiu aquí la declaració dels slots que necessiteu
// Reestablir la camera per defecte
void setDefaultCamera();
// Obrir un dialeg per seleccionar un model pel vehicle i carregar-lo
void openCar();
// Establir una novia orientación pel vehicle
void orientCar(int alpha);
void timerDone();
void setCarSpeed(int speed);
void configureLight(llum* light);
void showLightsWindow();
void activeSmooth(bool active);
void activeLocalViewer(bool active);
void activeCullFace(bool active);
void activeFirstPersonView(bool active);
void setFPVzFar(int value);
void activeCarLampposts(bool active);
protected:
// initializeGL() - Aqui incluim les inicialitzacions del contexte grafic.
virtual void initializeGL();
// paintGL - Mètode cridat cada cop que cal refrescar la finestra.
// Tot el que es dibuixa es dibuixa aqui.
virtual void paintGL( void );
// resizeGL() - Es cridat quan canvi la mida del widget
virtual void resizeGL (int width, int height);
// keyPressEvent() - Cridat quan es prem una tecla
virtual void keyPressEvent(QKeyEvent *e);
// mousePressEvent() i mouseReleaseEvent()
virtual void mousePressEvent( QMouseEvent *e);
virtual void mouseReleaseEvent( QMouseEvent *);
// mouseMoveEvent() - Cridat quan s'arrosega el ratoli amb algun botó premut.
virtual void mouseMoveEvent(QMouseEvent *e);
// Calcular el parametres de la camera per defecte
void computeDefaultCamera();
// Configurar la matriu modelview segons els parametres de la camera
void setModelview();
// Configurar la matriu de projecció segons els parametres de la camera
void setProjection();
// Recalcular els plans de retallat de l'escena
void computeCuttingPlanes();
void saveCurrentCamera();
void restoreOldCamera();
// Configuracio dels llums
void initializeLights();
void configure(llum* light);
void updateLightsPosition();
void onOffLamppost(int xClick, int yClick); // Realitza el proces de seleccio i tractament del fanal seleccionat per l'usuari
int getSelectedLamppost(int xClick, int yClick); // Retorna el fanal seleccionat per l'usuari mes proper al obs
void onOffCarLampposts(); // Realitza el proces de seleccio i tractament dels fanals visibles pel vehicle
list<int> getVisibleLampposts(); // Retorna com a maxim 4 fanals, els mes propers i visibles pel vehicle
void updateModelView();
private:
// interaccio
typedef enum {NONE, ROTATE, ZOOM, PAN} InteractiveAction;
InteractiveAction DoingInteractive;
int xClick, yClick;
Scene scene; // Escena a representar en el widget
// Afegiu els atributs que necessiteu
QTimer* timer;
llum* L[8];
finestraLlums lightsWindow;
double fovy;
double aspect;
double initialZNear;
double initialZNearLast;
double zNear;
double zNearLast;
double zNearAux;
double zNearAuxLast;
double initialZFar;
double initialZFarLast;
double zFar;
double zFarLast;
double zFarAux;
double zFarAuxLast;
double maxFPVzFar;
double zFarFPV;
Point VRP;
Point VRPLast;
Point OBS;
Point OBSLast;
Vector UP;
Vector UPLast;
double distOBS;
double distOBSLast;
bool carLoaded;
bool firstPersonView;
int NLampposts;
list<int> onLampposts; // Llista amb els fanals encesos per l'usuario en el moment actual
list<int> onCarLampposts; // Llista amb els fanals encesos davant del vehicle (no inclou els encesos manualment)
bool carLampposts; // Indica si cal o no activar els fanals automatics davant del vehicle
};
#endif
| [
"mvm9289@58588aa8-722a-b9c2-831f-873cbd2be5b1"
] | mvm9289@58588aa8-722a-b9c2-831f-873cbd2be5b1 |
1f113459d4a88bcc210c39586c4fb7723ed71794 | 8177a59eb31f17bad3bd88f2371e70c175971a14 | /rt/materials/dummy.cpp | 6d82b508c135a3197689bf24d53658e0966d2373 | [] | no_license | joniali/Cg-Saar-RayTracer | 6be9452b37fdb50f2769e4d5b2bfb23661a0909c | 03b554188dd8bcda593a68431ff04b6843953878 | refs/heads/master | 2020-05-18T12:13:42.865606 | 2014-12-13T15:48:09 | 2014-12-13T15:48:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | cpp | #include <rt\materials\dummy.h>
namespace rt
{
DummyMaterial::DummyMaterial()
{}
RGBColor DummyMaterial::getReflectance(const Point& texPoint, const Vector& normal, const Vector& outDir, const Vector& inDir) const
{
return RGBColor::rep(1.0f);
}
RGBColor DummyMaterial::getEmission(const Point& texPoint, const Vector& normal, const Vector& outDir) const
{
return RGBColor::rep(0.0f);
}
Material::SampleReflectance DummyMaterial::getSampleReflectance(const Point& texPoint, const Vector& normal, const Vector& outDir) const
{
SampleReflectance *ret= new SampleReflectance();
return *ret;
}
} | [
"joniali786@gmail.com"
] | joniali786@gmail.com |
7adfc7fbe35e1de9af09ea222f43271afca7d308 | 5fca9ab6310f854b655d318b50efa7fc83ad22f8 | /thirdparty/rsocket-cpp/rsocket/framing/FrameHeader.h | 8ce55ee3175a380158fcf64bd1a58887015be862 | [
"Apache-2.0"
] | permissive | algo-data-platform/PredictorService | 4a73dbdac2bd1d72c18f53073fe80afbb4160bba | a7da427617885546c5b5e07aa7740b3dee690337 | refs/heads/main | 2023-03-11T17:08:35.351356 | 2021-02-24T08:46:08 | 2021-02-24T08:46:08 | 321,256,115 | 3 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,373 | h | // Copyright (c) Facebook, Inc. and its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <iosfwd>
#include "rsocket/framing/FrameFlags.h"
#include "rsocket/framing/FrameType.h"
#include "rsocket/internal/Common.h"
namespace rsocket {
class FrameHeader {
public:
FrameHeader() {}
FrameHeader(FrameType ty, FrameFlags fflags, StreamId stream)
: type{ty}, flags{fflags}, streamId{stream} {}
bool flagsComplete() const {
return !!(flags & FrameFlags::COMPLETE);
}
bool flagsNext() const {
return !!(flags & FrameFlags::NEXT);
}
bool flagsFollows() const {
return !!(flags & FrameFlags::FOLLOWS);
}
FrameType type{FrameType::RESERVED};
FrameFlags flags{FrameFlags::EMPTY};
StreamId streamId{0};
};
std::ostream& operator<<(std::ostream&, const FrameHeader&);
} // namespace rsocket
| [
"maolei@staff.weibo.com"
] | maolei@staff.weibo.com |
f99c9ac6c4c037f98ec0d6693b5f3e9128b451f2 | 4a71a5cbda33b3fd53162fd2a2c61047dac11cad | /src/clipboard/PatternClipboard.hpp | 4444627b22137a098ac0523c6a1446dcff029427 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | stoneface86/trackerboy | 81f177d6f9bcb2310b047d44a72341c830e7b4b5 | 9b5b1bf4227e1ab5ac7983967068be8b1af57d56 | refs/heads/develop | 2023-02-25T09:59:39.495946 | 2023-01-26T05:29:31 | 2023-01-26T05:29:31 | 190,796,979 | 93 | 4 | MIT | 2022-03-09T16:58:27 | 2019-06-07T19:18:53 | C++ | UTF-8 | C++ | false | false | 619 | hpp |
#pragma once
#include "clipboard/PatternClip.hpp"
#include <QObject>
#include <optional>
//
// Utility class for managing the system clipboard.
//
class PatternClipboard : public QObject {
Q_OBJECT
public:
explicit PatternClipboard(QObject *parent = nullptr);
bool hasClip() const;
PatternClip const& clip() const;
//
// Puts the given pattern clip on the system clipboard. This class takes
// ownership of the clip.
//
void setClip(PatternClip &clip);
private:
void parseClipboard();
private:
std::optional<PatternClip> mClip;
bool mSettingClipboard;
};
| [
"44489054+stoneface86@users.noreply.github.com"
] | 44489054+stoneface86@users.noreply.github.com |
a2d5e4d2df500768c7d853cb31609ccd87ea8742 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/Chaste/2015/12/ChasteCuboid.cpp | 85435e3fed3b2788e99596998efc081785f8e355 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 4,099 | cpp | /*
Copyright (c) 2005-2015, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "ChasteCuboid.hpp"
#include "Exception.hpp"
template <unsigned SPACE_DIM>
ChasteCuboid<SPACE_DIM>::ChasteCuboid(ChastePoint<SPACE_DIM>& rLowerPoint, ChastePoint<SPACE_DIM>& rUpperPoint)
: mLowerCorner(rLowerPoint),
mUpperCorner(rUpperPoint)
{
for (unsigned dim=0; dim<SPACE_DIM; dim++)
{
if (mLowerCorner[dim] > mUpperCorner[dim])
{
EXCEPTION("Attempt to create a cuboid with MinCorner greater than MaxCorner in some dimension");
}
}
}
template <unsigned SPACE_DIM>
bool ChasteCuboid<SPACE_DIM>::DoesContain(const ChastePoint<SPACE_DIM>& rPointToCheck) const
{
for (unsigned dim=0; dim<SPACE_DIM; dim++)
{
if (rPointToCheck[dim] < mLowerCorner[dim] - 100*DBL_EPSILON
|| mUpperCorner[dim] + 100* DBL_EPSILON < rPointToCheck[dim])
{
return false;
}
}
return true;
}
template <unsigned SPACE_DIM>
const ChastePoint<SPACE_DIM>& ChasteCuboid<SPACE_DIM>::rGetUpperCorner() const
{
return mUpperCorner;
}
template <unsigned SPACE_DIM>
const ChastePoint<SPACE_DIM>& ChasteCuboid<SPACE_DIM>::rGetLowerCorner() const
{
return mLowerCorner;
}
template <unsigned SPACE_DIM>
double ChasteCuboid<SPACE_DIM>::GetWidth(unsigned rDimension) const
{
assert(rDimension<SPACE_DIM);
return mUpperCorner[rDimension] - mLowerCorner[rDimension];
}
template <unsigned SPACE_DIM>
unsigned ChasteCuboid<SPACE_DIM>::GetLongestAxis() const
{
unsigned axis=0;
double max_dimension = 0.0;
for (unsigned i=0; i<SPACE_DIM; i++)
{
double dimension = mUpperCorner[i] - mLowerCorner[i];
if ( dimension > max_dimension)
{
axis=i;
max_dimension = dimension;
}
}
return axis;
}
/////////////////////////////////////////////////////////////////////
// Explicit instantiation
/////////////////////////////////////////////////////////////////////
template class ChasteCuboid<1>;
template class ChasteCuboid<2>;
template class ChasteCuboid<3>;
// Serialization for Boost >= 1.36
#include "SerializationExportWrapperForCpp.hpp"
EXPORT_TEMPLATE_CLASS_SAME_DIMS(ChasteCuboid)
| [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
544b40b3b63807b1de8f89c11fbe3b46b54af9fc | 58463dc047759d86ed96fb85311e3e167d521a9c | /include/clc/math/gentype.inc | 9f79f6eb037ff466b4038b82bcb58bdbeefb2cc1 | [] | no_license | xianggong/m2c-devtools | 2195e21935b510493282c94d8be37bb8b7fd2c45 | 397cb765f21a4877c17f32f19aed912a3d2f5739 | refs/heads/master | 2021-01-19T07:56:29.388922 | 2015-07-16T14:41:49 | 2015-07-16T14:41:49 | 35,905,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,203 | inc | #define __CLC_SCALAR_GENTYPE float
#define __CLC_FPSIZE 32
#define __CLC_GENTYPE float
#define __CLC_SCALAR
#include __CLC_BODY
#undef __CLC_GENTYPE
#undef __CLC_SCALAR
#define __CLC_GENTYPE float2
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE float3
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE float4
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE float8
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE float16
#include __CLC_BODY
#undef __CLC_GENTYPE
#undef __CLC_FPSIZE
#undef __CLC_SCALAR_GENTYPE
#ifdef cl_khr_fp64
#define __CLC_SCALAR_GENTYPE double
#define __CLC_FPSIZE 64
#define __CLC_SCALAR
#define __CLC_GENTYPE double
#include __CLC_BODY
#undef __CLC_GENTYPE
#undef __CLC_SCALAR
#define __CLC_GENTYPE double2
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE double3
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE double4
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE double8
#include __CLC_BODY
#undef __CLC_GENTYPE
#define __CLC_GENTYPE double16
#include __CLC_BODY
#undef __CLC_GENTYPE
#undef __CLC_FPSIZE
#undef __CLC_SCALAR_GENTYPE
#endif
#undef __CLC_BODY
| [
"xgong@ece.neu.edu"
] | xgong@ece.neu.edu |
0ba93ae79139b09ceb8e2bf2ba327c05488c9635 | dcf7a0c407af384979a8031d71433697672894c4 | /내리막 길.cpp | 067cc837b395da3dfd5f5b091c65de6ea64313b3 | [] | no_license | presentnine/Algorithm-Code | 77d2b68d88ae88ce022c6001435d7ad195ef56d2 | 90cbbc68b2a7994b12c866a439fbba7f1a0db8ad | refs/heads/master | 2023-07-08T12:10:56.531912 | 2021-08-06T14:27:10 | 2021-08-06T14:27:10 | 345,614,665 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,295 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<vector<int>> cache;
int searchRoute(int M, int N, vector<vector<int>> &map, int r, int c, int prev) {
int result = 0;
if (r<0 || r>=M || c<0 || c>=N) //인덱스 범위 밖
return 0;
if (map[r][c] >= prev) //이전 높이 보다 높거나 같은 경우
return 0;
if (r == M - 1 && c == N - 1) //끝에 도달한 경우
return 1;
if (cache[r][c] != -1) //한 번도 가본 길이 아닌 경우 캐시 반환
return cache[r][c];
//상하좌우 길 탐색
result += searchRoute(M, N, map, r, c + 1, map[r][c]);
result += searchRoute(M, N, map, r + 1, c, map[r][c]);
result += searchRoute(M, N, map, r, c - 1, map[r][c]);
result += searchRoute(M, N, map, r - 1, c, map[r][c]);
return cache[r][c] = result;//저장한 캐시 반환
}
int main() {
int M, N, answer = 0;
vector<vector<int>> map;
cin >> M >> N;
for (int i = 0; i < M; i++) {//지도, 캐시 벡터 생성
vector<int> temp(N, 0);
vector<int> temp2(N, -1);//-1을 통해 길이 없는 경우인지 안 가본 경우인지 구분
cache.push_back(temp2);
for (int j = 0; j < N; j++)
cin >> temp[j];
map.push_back(temp);
}
answer = searchRoute(M, N, map, 0, 0, 10001);
cout << answer;
return 0;
} | [
"presentnine@naver.com"
] | presentnine@naver.com |
efd660e9c8933de6a4836896a5b87ea9c279afd8 | 58af6924180b6a739577634d2db3e9a867a84a8b | /cpp.boost/iostream/http_source/main.cpp | 4a60c0aebcd6542bf7229b7580baacffe92feba1 | [] | no_license | MagnusTiberius/code | 38751016ca14810c0d939ae84a0e2680374e634a | 0b24bd4f9d6d57bb81603b27f1320accdf0289ab | refs/heads/master | 2021-01-16T01:02:12.484598 | 2016-04-19T04:24:46 | 2016-04-19T04:24:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 219 | cpp | #include "http_source.h"
#include <iostream>
int main (int argc, char * const argv[])
{
HTTPSource source;
if (source.handshake("www.boost.org", 60))
{
std::cout << "ok\n";
}
return 0;
}
| [
"yielding@gmail.com"
] | yielding@gmail.com |
eba050d70160308c62e2790dc34961288f8cabf2 | 16a12666f15a134ff2ca39776496d719fe934aff | /tf03_common/cart_test_sheet.h | a81effbf475c7da44b3b0c3ca25096cdedf50388 | [] | no_license | iamkevinzhao/tf03_sdk | b7ae4ea6443aff1e16e5811240027db7061b2d55 | 6a8df4246ae9b01f6440c14b358dd564cac663d0 | refs/heads/master | 2020-03-27T15:01:55.675112 | 2018-12-20T01:19:32 | 2018-12-20T01:19:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 290 | h | #ifndef CART_TEST_SHEET_H
#define CART_TEST_SHEET_H
#include "cart_test_sheet_widget.h"
struct CartStep;
class API CartTestSheet : public CartTestSheetWidget
{
public:
CartTestSheet(QWidget *parent = 0);
void Update(const std::list<CartStep>& steps);
};
#endif // CART_TEST_SHEET_H
| [
"codincodee@outlook.com"
] | codincodee@outlook.com |
f5f23f4c69eed3fb611ec4db5803832ba4a73dbb | d7f1601570c8780874b3fff905df55199e6a3704 | /tests/src/astro/electromagnetism/unitTestCannonBallRadiationPressureAccelerationAndForce.cpp | ad239fc4ea4dc0f4c0107690a5c28506e4ba25eb | [] | permissive | elmarputs/tudat | 751c662a785378791601c1f12259c6f928d72e17 | 677a30d378a2b82dd1f7ae2a2bf3d0e92f7db734 | refs/heads/master | 2022-07-04T02:05:53.649610 | 2021-10-06T19:21:50 | 2021-10-06T19:21:50 | 126,502,320 | 0 | 0 | BSD-3-Clause | 2018-12-03T19:23:23 | 2018-03-23T15:12:29 | C++ | UTF-8 | C++ | false | false | 22,128 | cpp | /* Copyright (c) 2010-2019, Delft University of Technology
* All rigths reserved
*
* This file is part of the Tudat. Redistribution and use in source and
* binary forms, with or without modification, are permitted exclusively
* under the terms of the Modified BSD license. You should have received
* a copy of the license with this file. If not, please or visit:
* http://tudat.tudelft.nl/LICENSE.
*
* References
* Ganeff, M.I. Solar radiation pressure benchmark data script,
* solarRadiationPressureBenchmarkData.m, available at http://tudat.tudelft.nl, 2012.
* Giancoli, D.C. Physics for Scientists and Engineers with Modern Physics
* Fourth Edition. New Jersey: Prentice-Hall, Inc., 1985.
* Hirsh, S.M. Solar radiation pressure benchmark data script,
* solarRadiationUnitTests.cpp, available at
* https://github.com/sethhirsh/solarRadiationUnitTests, 2013.
* Irizarry, V. The effect of solar radiation pressure on Ulysses orbit,
* http://ccar.colorado.edu/asen5050/projects/projects_2001/aponte/Ulysses.htm, 2001,
* last accessed: 7th October, 2013.
* Willmott, P. General astro Library, http://www.amsat-bda.org/GAL_Downloads.html,
* 2011, last accessed: 7th October, 2013.
*
*/
#define BOOST_TEST_MAIN
#include <cmath>
#include <limits>
#include <boost/make_shared.hpp>
#include <boost/test/floating_point_comparison.hpp>
#include <boost/test/unit_test.hpp>
#include <Eigen/Core>
#include "tudat/basics/testMacros.h"
#include "tudat/astro/electromagnetism/cannonBallRadiationPressureForce.h"
#include "tudat/astro/electromagnetism/cannonBallRadiationPressureAcceleration.h"
namespace tudat
{
namespace unit_tests
{
BOOST_AUTO_TEST_SUITE( test_radiation_pressure_acceleration_and_force_models )
// Set radiation pressure at 1 AU [N/m^2].
const double radiationPressureAtOneAU = 4.56e-6;
// Set 1 AU in metres [m].
const double astronomicalUnitInMeters = 1.49598e11;
//! Test implementation of radiation force model.
BOOST_AUTO_TEST_CASE( testRadiationPressureForceModelGaneffData )
{
// Benchmark data is obtained from MATLAB script (Ganeff, 2012).
// Set expected radiation pressure force [N].
const Eigen::Vector3d expectedRadiationPressureForce =
Eigen::Vector3d( -0.975383093968723e-6, -0.975383093968723e-6, 0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.21;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 0.5;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( astronomicalUnitInMeters, astronomicalUnitInMeters, 0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Compute radiation pressure force [N].
const Eigen::Vector3d computedRadiationPressureForce
= electromagnetism::computeCannonBallRadiationPressureForce(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient );
// Compare computed and expected radiation pressure force vectors.
BOOST_CHECK_EQUAL( computedRadiationPressureForce.z( ),
expectedRadiationPressureForce.z( ) );
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureForce.segment( 0, 2 ),
expectedRadiationPressureForce.segment( 0, 2 ),
1.0e-15 );
}
//! Test acceleration model on sample satellite at approximately 1 AU away from the Sun.
BOOST_AUTO_TEST_CASE( testRadiationAccelerationModelEarth )
{
// Benchmark data is obtained using the General astro Library (Willmott, 2011).
// Set expected radiation pressure acceleration [m/s^2].
const Eigen::Vector3d expectedRadiationPressureAcceleration =
Eigen::Vector3d( -2.964e-06, 0.0, 0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.3;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 2.0;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( astronomicalUnitInMeters, 0.0, 0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Set mass of accelerated body [kg].
const double mass = 4.0;
// Compute radiation pressure acceleration [m/s^2].
const Eigen::Vector3d computedRadiationPressureAcceleration
= electromagnetism::computeCannonBallRadiationPressureAcceleration(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient, mass );
// Compare computed and expected radiation pressure acceleration vectors
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureAcceleration,
expectedRadiationPressureAcceleration,
1.0e-15 );
}
//! Test acceleration model on sample satellite at approximately the position of Venus with respect
//! to the Sun.
BOOST_AUTO_TEST_CASE( testRadiationAccelerationModelVenus )
{
// Benchmark data is obtained using the General astro Library (Willmott, 2011).
// Tests satellite at approximately the distance of Venus away from the Sun.
// Set the distance from the Sun to Venus.
const double distanceSunToVenus = 0.732 * astronomicalUnitInMeters;
// Set expected radiation pressure acceleration [m/s^2].
const Eigen::Vector3d expectedRadiationPressureAcceleration =
Eigen::Vector3d( -2.05147517201883e-05,
-2.05147517201883e-05,
0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.5;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 0.005;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( distanceSunToVenus / std::sqrt( 2.0 ),
distanceSunToVenus / std::sqrt( 2.0 ),
0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Set mass of accelerated body [kg].
const double mass = 0.0022;
// Compute radiation pressure acceleration [m/s^2].
const Eigen::Vector3d computedRadiationPressureAcceleration
= electromagnetism::computeCannonBallRadiationPressureAcceleration(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient, mass );
// Compare computed and expected radiation pressure acceleration vectors.
BOOST_CHECK_SMALL( computedRadiationPressureAcceleration.z( ),
std::numeric_limits< double >::min( ) );
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureAcceleration.segment( 0, 2 ),
expectedRadiationPressureAcceleration.segment( 0, 2 ),
1.0e-14 );
}
//! Test force model on sample planet at approximately the position of Uranus with respect to the
//! Sun.
BOOST_AUTO_TEST_CASE( testRadiationForceModelUranus )
{
// Benchmark data is obtained using the General astro Library (Willmott, 2011).
// Tests satellite at approximately the distance of Uranus away from the Sun.
// Set expected radiation pressure force [N].
const Eigen::Vector3d expectedRadiationPressureForce =
Eigen::Vector3d( -4470411.61112176,
-4470411.61112176,
0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.8;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 69939064094327.4;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( 9.529 * astronomicalUnitInMeters / std::sqrt( 2.0 ),
9.529 * astronomicalUnitInMeters / std::sqrt( 2.0 ),
0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Compute radiation pressure force [N].
const Eigen::Vector3d computedRadiationPressureForce
= electromagnetism::computeCannonBallRadiationPressureForce(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient );
// Compare computed and expected radiation pressure force vectors.
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureForce,
expectedRadiationPressureForce,
1.0e-14 );
}
//! Test force model on random satellite at a random distance with respect to the
//! Sun.
BOOST_AUTO_TEST_CASE( testRadiationForceModelRandom )
{
// Benchmark data is obtained using the General astro Library (Willmott, 2011).
// Tests satellite at random distance from the Sun.
// Set expected radiation pressure force [N].
const Eigen::Vector3d expectedRadiationPressureForce =
Eigen::Vector3d( -3043733.21422537,
-2929936.30441141,
-473166.433773283 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.4058;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 514701.9505;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( 94359740.25,
90831886.1,
14668782.92 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Compute radiation pressure force [N].
const Eigen::Vector3d computedRadiationPressureForce
= electromagnetism::computeCannonBallRadiationPressureForce(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient );
// Compare computed and expected radiation pressure force vectors.
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureForce,
expectedRadiationPressureForce,
1.0e-14 );
}
//! Test radiation force model on a hand at approximately 1 AU from the Sun.
BOOST_AUTO_TEST_CASE( testRadiationForceModelGiancoliData )
{
// Benchmark data is obtained from Physics for Scientists and Engineers
// with Modern Physics Volume 2 (Ch. 31, Ex. 7) (Giancoli, 1985).
// Set expected radiation pressure force [N].
const Eigen::Vector3d expectedRadiationPressureForce =
Eigen::Vector3d( 6.0e-8, 0.0, 0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.0;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 0.02;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( astronomicalUnitInMeters, 0.0, 0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Compute radiation pressure force [N].
const Eigen::Vector3d computedRadiationPressureForce
= electromagnetism::computeCannonBallRadiationPressureForce(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient );
// Compare computed and expected radiation pressure force vectors.
BOOST_CHECK_SMALL( std::fabs( computedRadiationPressureForce.x( )
- expectedRadiationPressureForce.x( ) ),
1.0e-6 );
BOOST_CHECK_SMALL( computedRadiationPressureForce.y( ),
std::numeric_limits< double >::min( ) );
BOOST_CHECK_SMALL( computedRadiationPressureForce.z( ),
std::numeric_limits< double >::min( ) );
}
//! Test radiation acceleration model on Ulysses satellite at 1AU.
BOOST_AUTO_TEST_CASE( testRadiationAccelerationModelUlysses )
{
// Benchmark data obtained from (Irizarry, 2001).
// Set expected radiation pressure acceleration [m/s^2].
const Eigen::Vector3d expectedRadiationPressureAcceleration
= Eigen::Vector3d( -1.713e-7, 0.0, 0.0 );
// Set radiation pressure coefficient (1 + emissivity).
const double radiationPressureCoefficient = 1.0 + 0.327;
// Set area on target that is subject to radiation pressure [m^2].
const double areaSubjectToRadiationPressure = 10.59;
// Set position vector [m].
Eigen::Vector3d positionVectorToSource
= Eigen::Vector3d( astronomicalUnitInMeters, 0.0, 0.0 );
// Set radiation pressure at target [N/m^2].
const double radiationPressureAtTarget = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ positionVectorToSource.squaredNorm( );
// Normalize position vector to get vector pointing to source in non-dimensional units.
positionVectorToSource.normalize( );
// Set mass of accelerated body [kg].
const double mass = 370.0;
// Compute radiation pressure acceleration [m/s^2].
const Eigen::Vector3d computedRadiationPressureAcceleration
= electromagnetism::computeCannonBallRadiationPressureAcceleration(
radiationPressureAtTarget, positionVectorToSource,
areaSubjectToRadiationPressure, radiationPressureCoefficient, mass );
// Compare computed and expected radiation pressure acceleration vectors.
BOOST_CHECK_SMALL( std::fabs( computedRadiationPressureAcceleration.x( )
- expectedRadiationPressureAcceleration.x( ) ),
1.0e-8 );
BOOST_CHECK_SMALL( computedRadiationPressureAcceleration.y( ),
std::numeric_limits< double >::min( ) );
BOOST_CHECK_SMALL( computedRadiationPressureAcceleration.z( ),
std::numeric_limits< double >::min( ) );
}
//! Test class implementation of radiation pressure acceleration model.
// Set position of source of radiation pressure at origin [m].
static Eigen::Vector3d sourcePosition = Eigen::Vector3d::Zero( );
// Get position of source of radiation pressure [m].
Eigen::Vector3d getSourcePosition( ) { return sourcePosition; }
// Set position of accelerated body [m].
static Eigen::Vector3d acceleratedBodyPosition
= Eigen::Vector3d( -astronomicalUnitInMeters, 0.0, 0.0 );
// Get position of accelerated body [m].
Eigen::Vector3d getAcceleratedBodyPosition( ) { return acceleratedBodyPosition; }
// Get vector from accelerated body to source [m].
Eigen::Vector3d getVectorToSource( )
{
return getSourcePosition( ) - getAcceleratedBodyPosition( );
}
// Set radiation pressure at location of acceleration body [N/m^2].
static double radiationPressure = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters / getVectorToSource( ).squaredNorm( );
// Get radiation pressure at location of acceleration body [N/m^2].
double getRadiationPressure( ) { return radiationPressure; }
// Set radiation pressure coefficient.
static double radiationPressureCoefficient = 1.0 + 0.3;
// Get radiation pressure coefficient.
double getRadiationPressureCoefficient( ) { return radiationPressureCoefficient; }
// Set area subject to radiation pressure [m^2].
static double areaSubjectToRadiationPressure = 2.0;
// Get area subject to radiation pressure [m^2].
double getAreaSubjectToRadiationPressure( ) { return areaSubjectToRadiationPressure; }
// Set mass of accelerated body [kg].
static double massOfAcceleratedBody = 4.0;
// Get mass of acceleration body [kg].
double getMassOfAcceleratedBody( ) { return massOfAcceleratedBody; }
//! Test radiation pressure acceleration model constructor.
BOOST_AUTO_TEST_CASE( testRadiationPressureAccelerationModelClassConstructor )
{
// Declare and initialize cannon-ball radiation pressure acceleration model.
electromagnetism::CannonBallRadiationPressurePointer radiationPressureModel
= std::make_shared< electromagnetism::CannonBallRadiationPressureAcceleration >(
&getSourcePosition, &getAcceleratedBodyPosition, &getRadiationPressure,
&getRadiationPressureCoefficient, &getAreaSubjectToRadiationPressure,
&getMassOfAcceleratedBody );
// Set expected radiation pressure acceleration [m/s^2].
const Eigen::Vector3d expectedRadiationPressureAcceleration
= Eigen::Vector3d( -2.964e-06, 0.0, 0.0 );
// Compute radiation pressure acceleration [m/s^2].
const Eigen::Vector3d computedRadiationPressureAcceleration
= radiationPressureModel->getAcceleration( );
// Compare computed and expected radiation pressure acceleration vectors.
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureAcceleration,
expectedRadiationPressureAcceleration,
1.0e-15 );
}
//! Test radiation pressure acceleration model update-members function.
BOOST_AUTO_TEST_CASE( testRadiationPressureAccelerationModelClassUpdateMembers )
{
// Declare and initialize cannon-ball radiation pressure acceleration model.
electromagnetism::CannonBallRadiationPressurePointer radiationPressureModel
= std::make_shared< electromagnetism::CannonBallRadiationPressureAcceleration >(
&getSourcePosition, &getAcceleratedBodyPosition, &getRadiationPressure,
&getRadiationPressureCoefficient, &getAreaSubjectToRadiationPressure,
&getMassOfAcceleratedBody );
// Set expected radiation pressure acceleration [m/s^2].
const Eigen::Vector3d expectedRadiationPressureAcceleration
= Eigen::Vector3d( -2.05147517201883e-05,
-2.05147517201883e-05,
0.0 );
// Set the distance from the Sun to Venus [m].
const double distanceSunToVenus = 0.732 * astronomicalUnitInMeters;
// Update position of accelerated body [m].
acceleratedBodyPosition = Eigen::Vector3d( -distanceSunToVenus / std::sqrt( 2.0 ),
-distanceSunToVenus / std::sqrt( 2.0 ),
0.0 );
// Update radiation pressure at location of accelerated body [N/m^2].
radiationPressure = radiationPressureAtOneAU
* astronomicalUnitInMeters * astronomicalUnitInMeters
/ getVectorToSource( ).squaredNorm( );
// Update radiation pressure coefficient.
radiationPressureCoefficient = 1.0 + 0.5;
// Update area subject to radiation pressure [m^2].
areaSubjectToRadiationPressure = 0.005;
// Update mass of accelerated body [kg].
massOfAcceleratedBody = 0.0022;
// Update class members.
radiationPressureModel->updateMembers( );
// Compute radiation pressure acceleration [m/s^2].
const Eigen::Vector3d computedRadiationPressureAcceleration
= radiationPressureModel->getAcceleration( );
// Compare computed and expected radiation pressure acceleration vectors.
BOOST_CHECK_SMALL( computedRadiationPressureAcceleration.z( ),
std::numeric_limits< double >::min( ) );
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( computedRadiationPressureAcceleration.segment( 0, 2 ),
expectedRadiationPressureAcceleration.segment( 0, 2 ),
1.0e-14 );
}
BOOST_AUTO_TEST_SUITE_END( )
} // namespace unit_tests
} // namespace tudat
| [
"g.h.garrett13@gmail.com"
] | g.h.garrett13@gmail.com |
652209ef967b13d3a1c4ecd08a6af19f1818b688 | 1a17167c38dc9a12c1f72dd0f3ae7288f5cd7da0 | /Source/ThirdParty/angle/third_party/deqp/src/external/vulkancts/framework/vulkan/vkStructTypes.inl | cd09f0d2bee08376b5e3b5be12c27780b25ac943 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"Zlib",
"LicenseRef-scancode-khronos",
"BSL-1.0",
"BSD-2-Clause"
] | permissive | elix22/Urho3D | c57c7ecb58975f51fabb95bcc4330bc5b0812de7 | 99902ae2a867be0d6dbe4c575f9c8c318805ec64 | refs/heads/master | 2023-06-01T01:19:57.155566 | 2021-12-07T16:47:20 | 2021-12-07T17:46:58 | 165,504,739 | 21 | 4 | MIT | 2021-11-05T01:02:08 | 2019-01-13T12:51:17 | C++ | UTF-8 | C++ | false | false | 79,571 | inl | /* WARNING: This is auto-generated file. Do not modify, since changes will
* be lost! Modify the generating script instead.
*/
struct VkApplicationInfo
{
VkStructureType sType;
const void* pNext;
const char* pApplicationName;
deUint32 applicationVersion;
const char* pEngineName;
deUint32 engineVersion;
deUint32 apiVersion;
};
struct VkInstanceCreateInfo
{
VkStructureType sType;
const void* pNext;
VkInstanceCreateFlags flags;
const VkApplicationInfo* pApplicationInfo;
deUint32 enabledLayerCount;
const char* const* ppEnabledLayerNames;
deUint32 enabledExtensionCount;
const char* const* ppEnabledExtensionNames;
};
struct VkAllocationCallbacks
{
void* pUserData;
PFN_vkAllocationFunction pfnAllocation;
PFN_vkReallocationFunction pfnReallocation;
PFN_vkFreeFunction pfnFree;
PFN_vkInternalAllocationNotification pfnInternalAllocation;
PFN_vkInternalFreeNotification pfnInternalFree;
};
struct VkPhysicalDeviceFeatures
{
VkBool32 robustBufferAccess;
VkBool32 fullDrawIndexUint32;
VkBool32 imageCubeArray;
VkBool32 independentBlend;
VkBool32 geometryShader;
VkBool32 tessellationShader;
VkBool32 sampleRateShading;
VkBool32 dualSrcBlend;
VkBool32 logicOp;
VkBool32 multiDrawIndirect;
VkBool32 drawIndirectFirstInstance;
VkBool32 depthClamp;
VkBool32 depthBiasClamp;
VkBool32 fillModeNonSolid;
VkBool32 depthBounds;
VkBool32 wideLines;
VkBool32 largePoints;
VkBool32 alphaToOne;
VkBool32 multiViewport;
VkBool32 samplerAnisotropy;
VkBool32 textureCompressionETC2;
VkBool32 textureCompressionASTC_LDR;
VkBool32 textureCompressionBC;
VkBool32 occlusionQueryPrecise;
VkBool32 pipelineStatisticsQuery;
VkBool32 vertexPipelineStoresAndAtomics;
VkBool32 fragmentStoresAndAtomics;
VkBool32 shaderTessellationAndGeometryPointSize;
VkBool32 shaderImageGatherExtended;
VkBool32 shaderStorageImageExtendedFormats;
VkBool32 shaderStorageImageMultisample;
VkBool32 shaderStorageImageReadWithoutFormat;
VkBool32 shaderStorageImageWriteWithoutFormat;
VkBool32 shaderUniformBufferArrayDynamicIndexing;
VkBool32 shaderSampledImageArrayDynamicIndexing;
VkBool32 shaderStorageBufferArrayDynamicIndexing;
VkBool32 shaderStorageImageArrayDynamicIndexing;
VkBool32 shaderClipDistance;
VkBool32 shaderCullDistance;
VkBool32 shaderFloat64;
VkBool32 shaderInt64;
VkBool32 shaderInt16;
VkBool32 shaderResourceResidency;
VkBool32 shaderResourceMinLod;
VkBool32 sparseBinding;
VkBool32 sparseResidencyBuffer;
VkBool32 sparseResidencyImage2D;
VkBool32 sparseResidencyImage3D;
VkBool32 sparseResidency2Samples;
VkBool32 sparseResidency4Samples;
VkBool32 sparseResidency8Samples;
VkBool32 sparseResidency16Samples;
VkBool32 sparseResidencyAliased;
VkBool32 variableMultisampleRate;
VkBool32 inheritedQueries;
};
struct VkFormatProperties
{
VkFormatFeatureFlags linearTilingFeatures;
VkFormatFeatureFlags optimalTilingFeatures;
VkFormatFeatureFlags bufferFeatures;
};
struct VkExtent3D
{
deUint32 width;
deUint32 height;
deUint32 depth;
};
struct VkImageFormatProperties
{
VkExtent3D maxExtent;
deUint32 maxMipLevels;
deUint32 maxArrayLayers;
VkSampleCountFlags sampleCounts;
VkDeviceSize maxResourceSize;
};
struct VkPhysicalDeviceLimits
{
deUint32 maxImageDimension1D;
deUint32 maxImageDimension2D;
deUint32 maxImageDimension3D;
deUint32 maxImageDimensionCube;
deUint32 maxImageArrayLayers;
deUint32 maxTexelBufferElements;
deUint32 maxUniformBufferRange;
deUint32 maxStorageBufferRange;
deUint32 maxPushConstantsSize;
deUint32 maxMemoryAllocationCount;
deUint32 maxSamplerAllocationCount;
VkDeviceSize bufferImageGranularity;
VkDeviceSize sparseAddressSpaceSize;
deUint32 maxBoundDescriptorSets;
deUint32 maxPerStageDescriptorSamplers;
deUint32 maxPerStageDescriptorUniformBuffers;
deUint32 maxPerStageDescriptorStorageBuffers;
deUint32 maxPerStageDescriptorSampledImages;
deUint32 maxPerStageDescriptorStorageImages;
deUint32 maxPerStageDescriptorInputAttachments;
deUint32 maxPerStageResources;
deUint32 maxDescriptorSetSamplers;
deUint32 maxDescriptorSetUniformBuffers;
deUint32 maxDescriptorSetUniformBuffersDynamic;
deUint32 maxDescriptorSetStorageBuffers;
deUint32 maxDescriptorSetStorageBuffersDynamic;
deUint32 maxDescriptorSetSampledImages;
deUint32 maxDescriptorSetStorageImages;
deUint32 maxDescriptorSetInputAttachments;
deUint32 maxVertexInputAttributes;
deUint32 maxVertexInputBindings;
deUint32 maxVertexInputAttributeOffset;
deUint32 maxVertexInputBindingStride;
deUint32 maxVertexOutputComponents;
deUint32 maxTessellationGenerationLevel;
deUint32 maxTessellationPatchSize;
deUint32 maxTessellationControlPerVertexInputComponents;
deUint32 maxTessellationControlPerVertexOutputComponents;
deUint32 maxTessellationControlPerPatchOutputComponents;
deUint32 maxTessellationControlTotalOutputComponents;
deUint32 maxTessellationEvaluationInputComponents;
deUint32 maxTessellationEvaluationOutputComponents;
deUint32 maxGeometryShaderInvocations;
deUint32 maxGeometryInputComponents;
deUint32 maxGeometryOutputComponents;
deUint32 maxGeometryOutputVertices;
deUint32 maxGeometryTotalOutputComponents;
deUint32 maxFragmentInputComponents;
deUint32 maxFragmentOutputAttachments;
deUint32 maxFragmentDualSrcAttachments;
deUint32 maxFragmentCombinedOutputResources;
deUint32 maxComputeSharedMemorySize;
deUint32 maxComputeWorkGroupCount[3];
deUint32 maxComputeWorkGroupInvocations;
deUint32 maxComputeWorkGroupSize[3];
deUint32 subPixelPrecisionBits;
deUint32 subTexelPrecisionBits;
deUint32 mipmapPrecisionBits;
deUint32 maxDrawIndexedIndexValue;
deUint32 maxDrawIndirectCount;
float maxSamplerLodBias;
float maxSamplerAnisotropy;
deUint32 maxViewports;
deUint32 maxViewportDimensions[2];
float viewportBoundsRange[2];
deUint32 viewportSubPixelBits;
deUintptr minMemoryMapAlignment;
VkDeviceSize minTexelBufferOffsetAlignment;
VkDeviceSize minUniformBufferOffsetAlignment;
VkDeviceSize minStorageBufferOffsetAlignment;
deInt32 minTexelOffset;
deUint32 maxTexelOffset;
deInt32 minTexelGatherOffset;
deUint32 maxTexelGatherOffset;
float minInterpolationOffset;
float maxInterpolationOffset;
deUint32 subPixelInterpolationOffsetBits;
deUint32 maxFramebufferWidth;
deUint32 maxFramebufferHeight;
deUint32 maxFramebufferLayers;
VkSampleCountFlags framebufferColorSampleCounts;
VkSampleCountFlags framebufferDepthSampleCounts;
VkSampleCountFlags framebufferStencilSampleCounts;
VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
deUint32 maxColorAttachments;
VkSampleCountFlags sampledImageColorSampleCounts;
VkSampleCountFlags sampledImageIntegerSampleCounts;
VkSampleCountFlags sampledImageDepthSampleCounts;
VkSampleCountFlags sampledImageStencilSampleCounts;
VkSampleCountFlags storageImageSampleCounts;
deUint32 maxSampleMaskWords;
VkBool32 timestampComputeAndGraphics;
float timestampPeriod;
deUint32 maxClipDistances;
deUint32 maxCullDistances;
deUint32 maxCombinedClipAndCullDistances;
deUint32 discreteQueuePriorities;
float pointSizeRange[2];
float lineWidthRange[2];
float pointSizeGranularity;
float lineWidthGranularity;
VkBool32 strictLines;
VkBool32 standardSampleLocations;
VkDeviceSize optimalBufferCopyOffsetAlignment;
VkDeviceSize optimalBufferCopyRowPitchAlignment;
VkDeviceSize nonCoherentAtomSize;
};
struct VkPhysicalDeviceSparseProperties
{
VkBool32 residencyStandard2DBlockShape;
VkBool32 residencyStandard2DMultisampleBlockShape;
VkBool32 residencyStandard3DBlockShape;
VkBool32 residencyAlignedMipSize;
VkBool32 residencyNonResidentStrict;
};
struct VkPhysicalDeviceProperties
{
deUint32 apiVersion;
deUint32 driverVersion;
deUint32 vendorID;
deUint32 deviceID;
VkPhysicalDeviceType deviceType;
char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
deUint8 pipelineCacheUUID[VK_UUID_SIZE];
VkPhysicalDeviceLimits limits;
VkPhysicalDeviceSparseProperties sparseProperties;
};
struct VkQueueFamilyProperties
{
VkQueueFlags queueFlags;
deUint32 queueCount;
deUint32 timestampValidBits;
VkExtent3D minImageTransferGranularity;
};
struct VkMemoryType
{
VkMemoryPropertyFlags propertyFlags;
deUint32 heapIndex;
};
struct VkMemoryHeap
{
VkDeviceSize size;
VkMemoryHeapFlags flags;
};
struct VkPhysicalDeviceMemoryProperties
{
deUint32 memoryTypeCount;
VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
deUint32 memoryHeapCount;
VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
};
struct VkDeviceQueueCreateInfo
{
VkStructureType sType;
const void* pNext;
VkDeviceQueueCreateFlags flags;
deUint32 queueFamilyIndex;
deUint32 queueCount;
const float* pQueuePriorities;
};
struct VkDeviceCreateInfo
{
VkStructureType sType;
const void* pNext;
VkDeviceCreateFlags flags;
deUint32 queueCreateInfoCount;
const VkDeviceQueueCreateInfo* pQueueCreateInfos;
deUint32 enabledLayerCount;
const char* const* ppEnabledLayerNames;
deUint32 enabledExtensionCount;
const char* const* ppEnabledExtensionNames;
const VkPhysicalDeviceFeatures* pEnabledFeatures;
};
struct VkExtensionProperties
{
char extensionName[VK_MAX_EXTENSION_NAME_SIZE];
deUint32 specVersion;
};
struct VkLayerProperties
{
char layerName[VK_MAX_EXTENSION_NAME_SIZE];
deUint32 specVersion;
deUint32 implementationVersion;
char description[VK_MAX_DESCRIPTION_SIZE];
};
struct VkSubmitInfo
{
VkStructureType sType;
const void* pNext;
deUint32 waitSemaphoreCount;
const VkSemaphore* pWaitSemaphores;
const VkPipelineStageFlags* pWaitDstStageMask;
deUint32 commandBufferCount;
const VkCommandBuffer* pCommandBuffers;
deUint32 signalSemaphoreCount;
const VkSemaphore* pSignalSemaphores;
};
struct VkMemoryAllocateInfo
{
VkStructureType sType;
const void* pNext;
VkDeviceSize allocationSize;
deUint32 memoryTypeIndex;
};
struct VkMappedMemoryRange
{
VkStructureType sType;
const void* pNext;
VkDeviceMemory memory;
VkDeviceSize offset;
VkDeviceSize size;
};
struct VkMemoryRequirements
{
VkDeviceSize size;
VkDeviceSize alignment;
deUint32 memoryTypeBits;
};
struct VkSparseImageFormatProperties
{
VkImageAspectFlags aspectMask;
VkExtent3D imageGranularity;
VkSparseImageFormatFlags flags;
};
struct VkSparseImageMemoryRequirements
{
VkSparseImageFormatProperties formatProperties;
deUint32 imageMipTailFirstLod;
VkDeviceSize imageMipTailSize;
VkDeviceSize imageMipTailOffset;
VkDeviceSize imageMipTailStride;
};
struct VkSparseMemoryBind
{
VkDeviceSize resourceOffset;
VkDeviceSize size;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
VkSparseMemoryBindFlags flags;
};
struct VkSparseBufferMemoryBindInfo
{
VkBuffer buffer;
deUint32 bindCount;
const VkSparseMemoryBind* pBinds;
};
struct VkSparseImageOpaqueMemoryBindInfo
{
VkImage image;
deUint32 bindCount;
const VkSparseMemoryBind* pBinds;
};
struct VkImageSubresource
{
VkImageAspectFlags aspectMask;
deUint32 mipLevel;
deUint32 arrayLayer;
};
struct VkOffset3D
{
deInt32 x;
deInt32 y;
deInt32 z;
};
struct VkSparseImageMemoryBind
{
VkImageSubresource subresource;
VkOffset3D offset;
VkExtent3D extent;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
VkSparseMemoryBindFlags flags;
};
struct VkSparseImageMemoryBindInfo
{
VkImage image;
deUint32 bindCount;
const VkSparseImageMemoryBind* pBinds;
};
struct VkBindSparseInfo
{
VkStructureType sType;
const void* pNext;
deUint32 waitSemaphoreCount;
const VkSemaphore* pWaitSemaphores;
deUint32 bufferBindCount;
const VkSparseBufferMemoryBindInfo* pBufferBinds;
deUint32 imageOpaqueBindCount;
const VkSparseImageOpaqueMemoryBindInfo* pImageOpaqueBinds;
deUint32 imageBindCount;
const VkSparseImageMemoryBindInfo* pImageBinds;
deUint32 signalSemaphoreCount;
const VkSemaphore* pSignalSemaphores;
};
struct VkFenceCreateInfo
{
VkStructureType sType;
const void* pNext;
VkFenceCreateFlags flags;
};
struct VkSemaphoreCreateInfo
{
VkStructureType sType;
const void* pNext;
VkSemaphoreCreateFlags flags;
};
struct VkEventCreateInfo
{
VkStructureType sType;
const void* pNext;
VkEventCreateFlags flags;
};
struct VkQueryPoolCreateInfo
{
VkStructureType sType;
const void* pNext;
VkQueryPoolCreateFlags flags;
VkQueryType queryType;
deUint32 queryCount;
VkQueryPipelineStatisticFlags pipelineStatistics;
};
struct VkBufferCreateInfo
{
VkStructureType sType;
const void* pNext;
VkBufferCreateFlags flags;
VkDeviceSize size;
VkBufferUsageFlags usage;
VkSharingMode sharingMode;
deUint32 queueFamilyIndexCount;
const deUint32* pQueueFamilyIndices;
};
struct VkBufferViewCreateInfo
{
VkStructureType sType;
const void* pNext;
VkBufferViewCreateFlags flags;
VkBuffer buffer;
VkFormat format;
VkDeviceSize offset;
VkDeviceSize range;
};
struct VkImageCreateInfo
{
VkStructureType sType;
const void* pNext;
VkImageCreateFlags flags;
VkImageType imageType;
VkFormat format;
VkExtent3D extent;
deUint32 mipLevels;
deUint32 arrayLayers;
VkSampleCountFlagBits samples;
VkImageTiling tiling;
VkImageUsageFlags usage;
VkSharingMode sharingMode;
deUint32 queueFamilyIndexCount;
const deUint32* pQueueFamilyIndices;
VkImageLayout initialLayout;
};
struct VkSubresourceLayout
{
VkDeviceSize offset;
VkDeviceSize size;
VkDeviceSize rowPitch;
VkDeviceSize arrayPitch;
VkDeviceSize depthPitch;
};
struct VkComponentMapping
{
VkComponentSwizzle r;
VkComponentSwizzle g;
VkComponentSwizzle b;
VkComponentSwizzle a;
};
struct VkImageSubresourceRange
{
VkImageAspectFlags aspectMask;
deUint32 baseMipLevel;
deUint32 levelCount;
deUint32 baseArrayLayer;
deUint32 layerCount;
};
struct VkImageViewCreateInfo
{
VkStructureType sType;
const void* pNext;
VkImageViewCreateFlags flags;
VkImage image;
VkImageViewType viewType;
VkFormat format;
VkComponentMapping components;
VkImageSubresourceRange subresourceRange;
};
struct VkShaderModuleCreateInfo
{
VkStructureType sType;
const void* pNext;
VkShaderModuleCreateFlags flags;
deUintptr codeSize;
const deUint32* pCode;
};
struct VkPipelineCacheCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineCacheCreateFlags flags;
deUintptr initialDataSize;
const void* pInitialData;
};
struct VkSpecializationMapEntry
{
deUint32 constantID;
deUint32 offset;
deUintptr size;
};
struct VkSpecializationInfo
{
deUint32 mapEntryCount;
const VkSpecializationMapEntry* pMapEntries;
deUintptr dataSize;
const void* pData;
};
struct VkPipelineShaderStageCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineShaderStageCreateFlags flags;
VkShaderStageFlagBits stage;
VkShaderModule module;
const char* pName;
const VkSpecializationInfo* pSpecializationInfo;
};
struct VkVertexInputBindingDescription
{
deUint32 binding;
deUint32 stride;
VkVertexInputRate inputRate;
};
struct VkVertexInputAttributeDescription
{
deUint32 location;
deUint32 binding;
VkFormat format;
deUint32 offset;
};
struct VkPipelineVertexInputStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineVertexInputStateCreateFlags flags;
deUint32 vertexBindingDescriptionCount;
const VkVertexInputBindingDescription* pVertexBindingDescriptions;
deUint32 vertexAttributeDescriptionCount;
const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
};
struct VkPipelineInputAssemblyStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineInputAssemblyStateCreateFlags flags;
VkPrimitiveTopology topology;
VkBool32 primitiveRestartEnable;
};
struct VkPipelineTessellationStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineTessellationStateCreateFlags flags;
deUint32 patchControlPoints;
};
struct VkViewport
{
float x;
float y;
float width;
float height;
float minDepth;
float maxDepth;
};
struct VkOffset2D
{
deInt32 x;
deInt32 y;
};
struct VkExtent2D
{
deUint32 width;
deUint32 height;
};
struct VkRect2D
{
VkOffset2D offset;
VkExtent2D extent;
};
struct VkPipelineViewportStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineViewportStateCreateFlags flags;
deUint32 viewportCount;
const VkViewport* pViewports;
deUint32 scissorCount;
const VkRect2D* pScissors;
};
struct VkPipelineRasterizationStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineRasterizationStateCreateFlags flags;
VkBool32 depthClampEnable;
VkBool32 rasterizerDiscardEnable;
VkPolygonMode polygonMode;
VkCullModeFlags cullMode;
VkFrontFace frontFace;
VkBool32 depthBiasEnable;
float depthBiasConstantFactor;
float depthBiasClamp;
float depthBiasSlopeFactor;
float lineWidth;
};
struct VkPipelineMultisampleStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineMultisampleStateCreateFlags flags;
VkSampleCountFlagBits rasterizationSamples;
VkBool32 sampleShadingEnable;
float minSampleShading;
const VkSampleMask* pSampleMask;
VkBool32 alphaToCoverageEnable;
VkBool32 alphaToOneEnable;
};
struct VkStencilOpState
{
VkStencilOp failOp;
VkStencilOp passOp;
VkStencilOp depthFailOp;
VkCompareOp compareOp;
deUint32 compareMask;
deUint32 writeMask;
deUint32 reference;
};
struct VkPipelineDepthStencilStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineDepthStencilStateCreateFlags flags;
VkBool32 depthTestEnable;
VkBool32 depthWriteEnable;
VkCompareOp depthCompareOp;
VkBool32 depthBoundsTestEnable;
VkBool32 stencilTestEnable;
VkStencilOpState front;
VkStencilOpState back;
float minDepthBounds;
float maxDepthBounds;
};
struct VkPipelineColorBlendAttachmentState
{
VkBool32 blendEnable;
VkBlendFactor srcColorBlendFactor;
VkBlendFactor dstColorBlendFactor;
VkBlendOp colorBlendOp;
VkBlendFactor srcAlphaBlendFactor;
VkBlendFactor dstAlphaBlendFactor;
VkBlendOp alphaBlendOp;
VkColorComponentFlags colorWriteMask;
};
struct VkPipelineColorBlendStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineColorBlendStateCreateFlags flags;
VkBool32 logicOpEnable;
VkLogicOp logicOp;
deUint32 attachmentCount;
const VkPipelineColorBlendAttachmentState* pAttachments;
float blendConstants[4];
};
struct VkPipelineDynamicStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineDynamicStateCreateFlags flags;
deUint32 dynamicStateCount;
const VkDynamicState* pDynamicStates;
};
struct VkGraphicsPipelineCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineCreateFlags flags;
deUint32 stageCount;
const VkPipelineShaderStageCreateInfo* pStages;
const VkPipelineVertexInputStateCreateInfo* pVertexInputState;
const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState;
const VkPipelineTessellationStateCreateInfo* pTessellationState;
const VkPipelineViewportStateCreateInfo* pViewportState;
const VkPipelineRasterizationStateCreateInfo* pRasterizationState;
const VkPipelineMultisampleStateCreateInfo* pMultisampleState;
const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState;
const VkPipelineColorBlendStateCreateInfo* pColorBlendState;
const VkPipelineDynamicStateCreateInfo* pDynamicState;
VkPipelineLayout layout;
VkRenderPass renderPass;
deUint32 subpass;
VkPipeline basePipelineHandle;
deInt32 basePipelineIndex;
};
struct VkComputePipelineCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineCreateFlags flags;
VkPipelineShaderStageCreateInfo stage;
VkPipelineLayout layout;
VkPipeline basePipelineHandle;
deInt32 basePipelineIndex;
};
struct VkPushConstantRange
{
VkShaderStageFlags stageFlags;
deUint32 offset;
deUint32 size;
};
struct VkPipelineLayoutCreateInfo
{
VkStructureType sType;
const void* pNext;
VkPipelineLayoutCreateFlags flags;
deUint32 setLayoutCount;
const VkDescriptorSetLayout* pSetLayouts;
deUint32 pushConstantRangeCount;
const VkPushConstantRange* pPushConstantRanges;
};
struct VkSamplerCreateInfo
{
VkStructureType sType;
const void* pNext;
VkSamplerCreateFlags flags;
VkFilter magFilter;
VkFilter minFilter;
VkSamplerMipmapMode mipmapMode;
VkSamplerAddressMode addressModeU;
VkSamplerAddressMode addressModeV;
VkSamplerAddressMode addressModeW;
float mipLodBias;
VkBool32 anisotropyEnable;
float maxAnisotropy;
VkBool32 compareEnable;
VkCompareOp compareOp;
float minLod;
float maxLod;
VkBorderColor borderColor;
VkBool32 unnormalizedCoordinates;
};
struct VkDescriptorSetLayoutBinding
{
deUint32 binding;
VkDescriptorType descriptorType;
deUint32 descriptorCount;
VkShaderStageFlags stageFlags;
const VkSampler* pImmutableSamplers;
};
struct VkDescriptorSetLayoutCreateInfo
{
VkStructureType sType;
const void* pNext;
VkDescriptorSetLayoutCreateFlags flags;
deUint32 bindingCount;
const VkDescriptorSetLayoutBinding* pBindings;
};
struct VkDescriptorPoolSize
{
VkDescriptorType type;
deUint32 descriptorCount;
};
struct VkDescriptorPoolCreateInfo
{
VkStructureType sType;
const void* pNext;
VkDescriptorPoolCreateFlags flags;
deUint32 maxSets;
deUint32 poolSizeCount;
const VkDescriptorPoolSize* pPoolSizes;
};
struct VkDescriptorSetAllocateInfo
{
VkStructureType sType;
const void* pNext;
VkDescriptorPool descriptorPool;
deUint32 descriptorSetCount;
const VkDescriptorSetLayout* pSetLayouts;
};
struct VkDescriptorImageInfo
{
VkSampler sampler;
VkImageView imageView;
VkImageLayout imageLayout;
};
struct VkDescriptorBufferInfo
{
VkBuffer buffer;
VkDeviceSize offset;
VkDeviceSize range;
};
struct VkWriteDescriptorSet
{
VkStructureType sType;
const void* pNext;
VkDescriptorSet dstSet;
deUint32 dstBinding;
deUint32 dstArrayElement;
deUint32 descriptorCount;
VkDescriptorType descriptorType;
const VkDescriptorImageInfo* pImageInfo;
const VkDescriptorBufferInfo* pBufferInfo;
const VkBufferView* pTexelBufferView;
};
struct VkCopyDescriptorSet
{
VkStructureType sType;
const void* pNext;
VkDescriptorSet srcSet;
deUint32 srcBinding;
deUint32 srcArrayElement;
VkDescriptorSet dstSet;
deUint32 dstBinding;
deUint32 dstArrayElement;
deUint32 descriptorCount;
};
struct VkFramebufferCreateInfo
{
VkStructureType sType;
const void* pNext;
VkFramebufferCreateFlags flags;
VkRenderPass renderPass;
deUint32 attachmentCount;
const VkImageView* pAttachments;
deUint32 width;
deUint32 height;
deUint32 layers;
};
struct VkAttachmentDescription
{
VkAttachmentDescriptionFlags flags;
VkFormat format;
VkSampleCountFlagBits samples;
VkAttachmentLoadOp loadOp;
VkAttachmentStoreOp storeOp;
VkAttachmentLoadOp stencilLoadOp;
VkAttachmentStoreOp stencilStoreOp;
VkImageLayout initialLayout;
VkImageLayout finalLayout;
};
struct VkAttachmentReference
{
deUint32 attachment;
VkImageLayout layout;
};
struct VkSubpassDescription
{
VkSubpassDescriptionFlags flags;
VkPipelineBindPoint pipelineBindPoint;
deUint32 inputAttachmentCount;
const VkAttachmentReference* pInputAttachments;
deUint32 colorAttachmentCount;
const VkAttachmentReference* pColorAttachments;
const VkAttachmentReference* pResolveAttachments;
const VkAttachmentReference* pDepthStencilAttachment;
deUint32 preserveAttachmentCount;
const deUint32* pPreserveAttachments;
};
struct VkSubpassDependency
{
deUint32 srcSubpass;
deUint32 dstSubpass;
VkPipelineStageFlags srcStageMask;
VkPipelineStageFlags dstStageMask;
VkAccessFlags srcAccessMask;
VkAccessFlags dstAccessMask;
VkDependencyFlags dependencyFlags;
};
struct VkRenderPassCreateInfo
{
VkStructureType sType;
const void* pNext;
VkRenderPassCreateFlags flags;
deUint32 attachmentCount;
const VkAttachmentDescription* pAttachments;
deUint32 subpassCount;
const VkSubpassDescription* pSubpasses;
deUint32 dependencyCount;
const VkSubpassDependency* pDependencies;
};
struct VkCommandPoolCreateInfo
{
VkStructureType sType;
const void* pNext;
VkCommandPoolCreateFlags flags;
deUint32 queueFamilyIndex;
};
struct VkCommandBufferAllocateInfo
{
VkStructureType sType;
const void* pNext;
VkCommandPool commandPool;
VkCommandBufferLevel level;
deUint32 commandBufferCount;
};
struct VkCommandBufferInheritanceInfo
{
VkStructureType sType;
const void* pNext;
VkRenderPass renderPass;
deUint32 subpass;
VkFramebuffer framebuffer;
VkBool32 occlusionQueryEnable;
VkQueryControlFlags queryFlags;
VkQueryPipelineStatisticFlags pipelineStatistics;
};
struct VkCommandBufferBeginInfo
{
VkStructureType sType;
const void* pNext;
VkCommandBufferUsageFlags flags;
const VkCommandBufferInheritanceInfo* pInheritanceInfo;
};
struct VkBufferCopy
{
VkDeviceSize srcOffset;
VkDeviceSize dstOffset;
VkDeviceSize size;
};
struct VkImageSubresourceLayers
{
VkImageAspectFlags aspectMask;
deUint32 mipLevel;
deUint32 baseArrayLayer;
deUint32 layerCount;
};
struct VkImageCopy
{
VkImageSubresourceLayers srcSubresource;
VkOffset3D srcOffset;
VkImageSubresourceLayers dstSubresource;
VkOffset3D dstOffset;
VkExtent3D extent;
};
struct VkImageBlit
{
VkImageSubresourceLayers srcSubresource;
VkOffset3D srcOffsets[2];
VkImageSubresourceLayers dstSubresource;
VkOffset3D dstOffsets[2];
};
struct VkBufferImageCopy
{
VkDeviceSize bufferOffset;
deUint32 bufferRowLength;
deUint32 bufferImageHeight;
VkImageSubresourceLayers imageSubresource;
VkOffset3D imageOffset;
VkExtent3D imageExtent;
};
union VkClearColorValue
{
float float32[4];
deInt32 int32[4];
deUint32 uint32[4];
};
struct VkClearDepthStencilValue
{
float depth;
deUint32 stencil;
};
union VkClearValue
{
VkClearColorValue color;
VkClearDepthStencilValue depthStencil;
};
struct VkClearAttachment
{
VkImageAspectFlags aspectMask;
deUint32 colorAttachment;
VkClearValue clearValue;
};
struct VkClearRect
{
VkRect2D rect;
deUint32 baseArrayLayer;
deUint32 layerCount;
};
struct VkImageResolve
{
VkImageSubresourceLayers srcSubresource;
VkOffset3D srcOffset;
VkImageSubresourceLayers dstSubresource;
VkOffset3D dstOffset;
VkExtent3D extent;
};
struct VkMemoryBarrier
{
VkStructureType sType;
const void* pNext;
VkAccessFlags srcAccessMask;
VkAccessFlags dstAccessMask;
};
struct VkBufferMemoryBarrier
{
VkStructureType sType;
const void* pNext;
VkAccessFlags srcAccessMask;
VkAccessFlags dstAccessMask;
deUint32 srcQueueFamilyIndex;
deUint32 dstQueueFamilyIndex;
VkBuffer buffer;
VkDeviceSize offset;
VkDeviceSize size;
};
struct VkImageMemoryBarrier
{
VkStructureType sType;
const void* pNext;
VkAccessFlags srcAccessMask;
VkAccessFlags dstAccessMask;
VkImageLayout oldLayout;
VkImageLayout newLayout;
deUint32 srcQueueFamilyIndex;
deUint32 dstQueueFamilyIndex;
VkImage image;
VkImageSubresourceRange subresourceRange;
};
struct VkRenderPassBeginInfo
{
VkStructureType sType;
const void* pNext;
VkRenderPass renderPass;
VkFramebuffer framebuffer;
VkRect2D renderArea;
deUint32 clearValueCount;
const VkClearValue* pClearValues;
};
struct VkDispatchIndirectCommand
{
deUint32 x;
deUint32 y;
deUint32 z;
};
struct VkDrawIndexedIndirectCommand
{
deUint32 indexCount;
deUint32 instanceCount;
deUint32 firstIndex;
deInt32 vertexOffset;
deUint32 firstInstance;
};
struct VkDrawIndirectCommand
{
deUint32 vertexCount;
deUint32 instanceCount;
deUint32 firstVertex;
deUint32 firstInstance;
};
struct VkPhysicalDeviceSubgroupProperties
{
VkStructureType sType;
void* pNext;
deUint32 subgroupSize;
VkShaderStageFlags supportedStages;
VkSubgroupFeatureFlags supportedOperations;
VkBool32 quadOperationsInAllStages;
};
struct VkBindBufferMemoryInfo
{
VkStructureType sType;
const void* pNext;
VkBuffer buffer;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
};
struct VkBindImageMemoryInfo
{
VkStructureType sType;
const void* pNext;
VkImage image;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
};
struct VkPhysicalDevice8BitStorageFeaturesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 storageBuffer8BitAccess;
VkBool32 uniformAndStorageBuffer8BitAccess;
VkBool32 storagePushConstant8;
};
struct VkPhysicalDevice16BitStorageFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 storageBuffer16BitAccess;
VkBool32 uniformAndStorageBuffer16BitAccess;
VkBool32 storagePushConstant16;
VkBool32 storageInputOutput16;
};
struct VkMemoryDedicatedRequirements
{
VkStructureType sType;
void* pNext;
VkBool32 prefersDedicatedAllocation;
VkBool32 requiresDedicatedAllocation;
};
struct VkMemoryDedicatedAllocateInfo
{
VkStructureType sType;
const void* pNext;
VkImage image;
VkBuffer buffer;
};
struct VkMemoryAllocateFlagsInfo
{
VkStructureType sType;
const void* pNext;
VkMemoryAllocateFlags flags;
deUint32 deviceMask;
};
struct VkDeviceGroupRenderPassBeginInfo
{
VkStructureType sType;
const void* pNext;
deUint32 deviceMask;
deUint32 deviceRenderAreaCount;
const VkRect2D* pDeviceRenderAreas;
};
struct VkDeviceGroupCommandBufferBeginInfo
{
VkStructureType sType;
const void* pNext;
deUint32 deviceMask;
};
struct VkDeviceGroupSubmitInfo
{
VkStructureType sType;
const void* pNext;
deUint32 waitSemaphoreCount;
const deUint32* pWaitSemaphoreDeviceIndices;
deUint32 commandBufferCount;
const deUint32* pCommandBufferDeviceMasks;
deUint32 signalSemaphoreCount;
const deUint32* pSignalSemaphoreDeviceIndices;
};
struct VkDeviceGroupBindSparseInfo
{
VkStructureType sType;
const void* pNext;
deUint32 resourceDeviceIndex;
deUint32 memoryDeviceIndex;
};
struct VkBindBufferMemoryDeviceGroupInfo
{
VkStructureType sType;
const void* pNext;
deUint32 deviceIndexCount;
const deUint32* pDeviceIndices;
};
struct VkBindImageMemoryDeviceGroupInfo
{
VkStructureType sType;
const void* pNext;
deUint32 deviceIndexCount;
const deUint32* pDeviceIndices;
deUint32 SFRRectCount;
const VkRect2D* pSFRRects;
};
struct VkPhysicalDeviceGroupProperties
{
VkStructureType sType;
void* pNext;
deUint32 physicalDeviceCount;
VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
VkBool32 subsetAllocation;
};
struct VkDeviceGroupDeviceCreateInfo
{
VkStructureType sType;
const void* pNext;
deUint32 physicalDeviceCount;
const VkPhysicalDevice* pPhysicalDevices;
};
struct VkBufferMemoryRequirementsInfo2
{
VkStructureType sType;
const void* pNext;
VkBuffer buffer;
};
struct VkImageMemoryRequirementsInfo2
{
VkStructureType sType;
const void* pNext;
VkImage image;
};
struct VkImageSparseMemoryRequirementsInfo2
{
VkStructureType sType;
const void* pNext;
VkImage image;
};
struct VkMemoryRequirements2
{
VkStructureType sType;
void* pNext;
VkMemoryRequirements memoryRequirements;
};
struct VkSparseImageMemoryRequirements2
{
VkStructureType sType;
void* pNext;
VkSparseImageMemoryRequirements memoryRequirements;
};
struct VkPhysicalDeviceFeatures2
{
VkStructureType sType;
void* pNext;
VkPhysicalDeviceFeatures features;
};
struct VkPhysicalDeviceProperties2
{
VkStructureType sType;
void* pNext;
VkPhysicalDeviceProperties properties;
};
struct VkFormatProperties2
{
VkStructureType sType;
void* pNext;
VkFormatProperties formatProperties;
};
struct VkImageFormatProperties2
{
VkStructureType sType;
void* pNext;
VkImageFormatProperties imageFormatProperties;
};
struct VkPhysicalDeviceImageFormatInfo2
{
VkStructureType sType;
const void* pNext;
VkFormat format;
VkImageType type;
VkImageTiling tiling;
VkImageUsageFlags usage;
VkImageCreateFlags flags;
};
struct VkQueueFamilyProperties2
{
VkStructureType sType;
void* pNext;
VkQueueFamilyProperties queueFamilyProperties;
};
struct VkPhysicalDeviceMemoryProperties2
{
VkStructureType sType;
void* pNext;
VkPhysicalDeviceMemoryProperties memoryProperties;
};
struct VkSparseImageFormatProperties2
{
VkStructureType sType;
void* pNext;
VkSparseImageFormatProperties properties;
};
struct VkPhysicalDeviceSparseImageFormatInfo2
{
VkStructureType sType;
const void* pNext;
VkFormat format;
VkImageType type;
VkSampleCountFlagBits samples;
VkImageUsageFlags usage;
VkImageTiling tiling;
};
struct VkPhysicalDevicePointClippingProperties
{
VkStructureType sType;
void* pNext;
VkPointClippingBehavior pointClippingBehavior;
};
struct VkInputAttachmentAspectReference
{
deUint32 subpass;
deUint32 inputAttachmentIndex;
VkImageAspectFlags aspectMask;
};
struct VkRenderPassInputAttachmentAspectCreateInfo
{
VkStructureType sType;
const void* pNext;
deUint32 aspectReferenceCount;
const VkInputAttachmentAspectReference* pAspectReferences;
};
struct VkImageViewUsageCreateInfo
{
VkStructureType sType;
const void* pNext;
VkImageUsageFlags usage;
};
struct VkPipelineTessellationDomainOriginStateCreateInfo
{
VkStructureType sType;
const void* pNext;
VkTessellationDomainOrigin domainOrigin;
};
struct VkRenderPassMultiviewCreateInfo
{
VkStructureType sType;
const void* pNext;
deUint32 subpassCount;
const deUint32* pViewMasks;
deUint32 dependencyCount;
const deInt32* pViewOffsets;
deUint32 correlationMaskCount;
const deUint32* pCorrelationMasks;
};
struct VkPhysicalDeviceMultiviewFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 multiview;
VkBool32 multiviewGeometryShader;
VkBool32 multiviewTessellationShader;
};
struct VkPhysicalDeviceMultiviewProperties
{
VkStructureType sType;
void* pNext;
deUint32 maxMultiviewViewCount;
deUint32 maxMultiviewInstanceIndex;
};
struct VkPhysicalDeviceVariablePointersFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 variablePointersStorageBuffer;
VkBool32 variablePointers;
};
struct VkPhysicalDeviceProtectedMemoryFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 protectedMemory;
};
struct VkPhysicalDeviceProtectedMemoryProperties
{
VkStructureType sType;
void* pNext;
VkBool32 protectedNoFault;
};
struct VkDeviceQueueInfo2
{
VkStructureType sType;
const void* pNext;
VkDeviceQueueCreateFlags flags;
deUint32 queueFamilyIndex;
deUint32 queueIndex;
};
struct VkProtectedSubmitInfo
{
VkStructureType sType;
const void* pNext;
VkBool32 protectedSubmit;
};
struct VkSamplerYcbcrConversionCreateInfo
{
VkStructureType sType;
const void* pNext;
VkFormat format;
VkSamplerYcbcrModelConversion ycbcrModel;
VkSamplerYcbcrRange ycbcrRange;
VkComponentMapping components;
VkChromaLocation xChromaOffset;
VkChromaLocation yChromaOffset;
VkFilter chromaFilter;
VkBool32 forceExplicitReconstruction;
};
struct VkSamplerYcbcrConversionInfo
{
VkStructureType sType;
const void* pNext;
VkSamplerYcbcrConversion conversion;
};
struct VkBindImagePlaneMemoryInfo
{
VkStructureType sType;
const void* pNext;
VkImageAspectFlagBits planeAspect;
};
struct VkImagePlaneMemoryRequirementsInfo
{
VkStructureType sType;
const void* pNext;
VkImageAspectFlagBits planeAspect;
};
struct VkPhysicalDeviceSamplerYcbcrConversionFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 samplerYcbcrConversion;
};
struct VkSamplerYcbcrConversionImageFormatProperties
{
VkStructureType sType;
void* pNext;
deUint32 combinedImageSamplerDescriptorCount;
};
struct VkDescriptorUpdateTemplateEntry
{
deUint32 dstBinding;
deUint32 dstArrayElement;
deUint32 descriptorCount;
VkDescriptorType descriptorType;
deUintptr offset;
deUintptr stride;
};
struct VkDescriptorUpdateTemplateCreateInfo
{
VkStructureType sType;
void* pNext;
VkDescriptorUpdateTemplateCreateFlags flags;
deUint32 descriptorUpdateEntryCount;
const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
VkDescriptorUpdateTemplateType templateType;
VkDescriptorSetLayout descriptorSetLayout;
VkPipelineBindPoint pipelineBindPoint;
VkPipelineLayout pipelineLayout;
deUint32 set;
};
struct VkExternalMemoryProperties
{
VkExternalMemoryFeatureFlags externalMemoryFeatures;
VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
};
struct VkPhysicalDeviceExternalImageFormatInfo
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagBits handleType;
};
struct VkExternalImageFormatProperties
{
VkStructureType sType;
void* pNext;
VkExternalMemoryProperties externalMemoryProperties;
};
struct VkPhysicalDeviceExternalBufferInfo
{
VkStructureType sType;
const void* pNext;
VkBufferCreateFlags flags;
VkBufferUsageFlags usage;
VkExternalMemoryHandleTypeFlagBits handleType;
};
struct VkExternalBufferProperties
{
VkStructureType sType;
void* pNext;
VkExternalMemoryProperties externalMemoryProperties;
};
struct VkPhysicalDeviceIDProperties
{
VkStructureType sType;
void* pNext;
deUint8 deviceUUID[VK_UUID_SIZE];
deUint8 driverUUID[VK_UUID_SIZE];
deUint8 deviceLUID[VK_LUID_SIZE];
deUint32 deviceNodeMask;
VkBool32 deviceLUIDValid;
};
struct VkExternalMemoryImageCreateInfo
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlags handleTypes;
};
struct VkExternalMemoryBufferCreateInfo
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlags handleTypes;
};
struct VkExportMemoryAllocateInfo
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlags handleTypes;
};
struct VkPhysicalDeviceExternalFenceInfo
{
VkStructureType sType;
const void* pNext;
VkExternalFenceHandleTypeFlagBits handleType;
};
struct VkExternalFenceProperties
{
VkStructureType sType;
void* pNext;
VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
VkExternalFenceHandleTypeFlags compatibleHandleTypes;
VkExternalFenceFeatureFlags externalFenceFeatures;
};
struct VkExportFenceCreateInfo
{
VkStructureType sType;
const void* pNext;
VkExternalFenceHandleTypeFlags handleTypes;
};
struct VkExportSemaphoreCreateInfo
{
VkStructureType sType;
const void* pNext;
VkExternalSemaphoreHandleTypeFlags handleTypes;
};
struct VkPhysicalDeviceExternalSemaphoreInfo
{
VkStructureType sType;
const void* pNext;
VkExternalSemaphoreHandleTypeFlagBits handleType;
};
struct VkExternalSemaphoreProperties
{
VkStructureType sType;
void* pNext;
VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
};
struct VkPhysicalDeviceMaintenance3Properties
{
VkStructureType sType;
void* pNext;
deUint32 maxPerSetDescriptors;
VkDeviceSize maxMemoryAllocationSize;
};
struct VkDescriptorSetLayoutSupport
{
VkStructureType sType;
void* pNext;
VkBool32 supported;
};
struct VkPhysicalDeviceShaderDrawParametersFeatures
{
VkStructureType sType;
void* pNext;
VkBool32 shaderDrawParameters;
};
struct VkSurfaceCapabilitiesKHR
{
deUint32 minImageCount;
deUint32 maxImageCount;
VkExtent2D currentExtent;
VkExtent2D minImageExtent;
VkExtent2D maxImageExtent;
deUint32 maxImageArrayLayers;
VkSurfaceTransformFlagsKHR supportedTransforms;
VkSurfaceTransformFlagBitsKHR currentTransform;
VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
VkImageUsageFlags supportedUsageFlags;
};
struct VkSurfaceFormatKHR
{
VkFormat format;
VkColorSpaceKHR colorSpace;
};
struct VkSwapchainCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSwapchainCreateFlagsKHR flags;
VkSurfaceKHR surface;
deUint32 minImageCount;
VkFormat imageFormat;
VkColorSpaceKHR imageColorSpace;
VkExtent2D imageExtent;
deUint32 imageArrayLayers;
VkImageUsageFlags imageUsage;
VkSharingMode imageSharingMode;
deUint32 queueFamilyIndexCount;
const deUint32* pQueueFamilyIndices;
VkSurfaceTransformFlagBitsKHR preTransform;
VkCompositeAlphaFlagBitsKHR compositeAlpha;
VkPresentModeKHR presentMode;
VkBool32 clipped;
VkSwapchainKHR oldSwapchain;
};
struct VkPresentInfoKHR
{
VkStructureType sType;
const void* pNext;
deUint32 waitSemaphoreCount;
const VkSemaphore* pWaitSemaphores;
deUint32 swapchainCount;
const VkSwapchainKHR* pSwapchains;
const deUint32* pImageIndices;
VkResult* pResults;
};
struct VkImageSwapchainCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSwapchainKHR swapchain;
};
struct VkBindImageMemorySwapchainInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSwapchainKHR swapchain;
deUint32 imageIndex;
};
struct VkAcquireNextImageInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSwapchainKHR swapchain;
deUint64 timeout;
VkSemaphore semaphore;
VkFence fence;
deUint32 deviceMask;
};
struct VkDeviceGroupPresentCapabilitiesKHR
{
VkStructureType sType;
const void* pNext;
deUint32 presentMask[VK_MAX_DEVICE_GROUP_SIZE];
VkDeviceGroupPresentModeFlagsKHR modes;
};
struct VkDeviceGroupPresentInfoKHR
{
VkStructureType sType;
const void* pNext;
deUint32 swapchainCount;
const deUint32* pDeviceMasks;
VkDeviceGroupPresentModeFlagBitsKHR mode;
};
struct VkDeviceGroupSwapchainCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkDeviceGroupPresentModeFlagsKHR modes;
};
struct VkDisplayPropertiesKHR
{
VkDisplayKHR display;
const char* displayName;
VkExtent2D physicalDimensions;
VkExtent2D physicalResolution;
VkSurfaceTransformFlagsKHR supportedTransforms;
VkBool32 planeReorderPossible;
VkBool32 persistentContent;
};
struct VkDisplayModeParametersKHR
{
VkExtent2D visibleRegion;
deUint32 refreshRate;
};
struct VkDisplayModePropertiesKHR
{
VkDisplayModeKHR displayMode;
VkDisplayModeParametersKHR parameters;
};
struct VkDisplayModeCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkDisplayModeCreateFlagsKHR flags;
VkDisplayModeParametersKHR parameters;
};
struct VkDisplayPlaneCapabilitiesKHR
{
VkDisplayPlaneAlphaFlagsKHR supportedAlpha;
VkOffset2D minSrcPosition;
VkOffset2D maxSrcPosition;
VkExtent2D minSrcExtent;
VkExtent2D maxSrcExtent;
VkOffset2D minDstPosition;
VkOffset2D maxDstPosition;
VkExtent2D minDstExtent;
VkExtent2D maxDstExtent;
};
struct VkDisplayPlanePropertiesKHR
{
VkDisplayKHR currentDisplay;
deUint32 currentStackIndex;
};
struct VkDisplaySurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkDisplaySurfaceCreateFlagsKHR flags;
VkDisplayModeKHR displayMode;
deUint32 planeIndex;
deUint32 planeStackIndex;
VkSurfaceTransformFlagBitsKHR transform;
float globalAlpha;
VkDisplayPlaneAlphaFlagBitsKHR alphaMode;
VkExtent2D imageExtent;
};
struct VkDisplayPresentInfoKHR
{
VkStructureType sType;
const void* pNext;
VkRect2D srcRect;
VkRect2D dstRect;
VkBool32 persistent;
};
struct VkXlibSurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkXlibSurfaceCreateFlagsKHR flags;
pt::XlibDisplayPtr dpy;
pt::XlibWindow window;
};
struct VkXcbSurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkXcbSurfaceCreateFlagsKHR flags;
pt::XcbConnectionPtr connection;
pt::XcbWindow window;
};
struct VkWaylandSurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkWaylandSurfaceCreateFlagsKHR flags;
pt::WaylandDisplayPtr display;
pt::WaylandSurfacePtr surface;
};
struct VkMirSurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkMirSurfaceCreateFlagsKHR flags;
pt::MirConnectionPtr connection;
pt::MirSurfacePtr mirSurface;
};
struct VkAndroidSurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkAndroidSurfaceCreateFlagsKHR flags;
pt::AndroidNativeWindowPtr window;
};
struct VkWin32SurfaceCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
VkWin32SurfaceCreateFlagsKHR flags;
pt::Win32InstanceHandle hinstance;
pt::Win32WindowHandle hwnd;
};
struct VkImportMemoryWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagBits handleType;
pt::Win32Handle handle;
char* name;
};
struct VkExportMemoryWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
pt::Win32SecurityAttributesPtr pAttributes;
deUint32 dwAccess;
char* name;
};
struct VkMemoryWin32HandlePropertiesKHR
{
VkStructureType sType;
void* pNext;
deUint32 memoryTypeBits;
};
struct VkMemoryGetWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkDeviceMemory memory;
VkExternalMemoryHandleTypeFlagBits handleType;
};
struct VkImportMemoryFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagBits handleType;
int fd;
};
struct VkMemoryFdPropertiesKHR
{
VkStructureType sType;
void* pNext;
deUint32 memoryTypeBits;
};
struct VkMemoryGetFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkDeviceMemory memory;
VkExternalMemoryHandleTypeFlagBits handleType;
};
struct VkWin32KeyedMutexAcquireReleaseInfoKHR
{
VkStructureType sType;
const void* pNext;
deUint32 acquireCount;
const VkDeviceMemory* pAcquireSyncs;
const deUint64* pAcquireKeys;
const deUint32* pAcquireTimeouts;
deUint32 releaseCount;
const VkDeviceMemory* pReleaseSyncs;
const deUint64* pReleaseKeys;
};
struct VkImportSemaphoreWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSemaphore semaphore;
VkSemaphoreImportFlags flags;
VkExternalSemaphoreHandleTypeFlagBits handleType;
pt::Win32Handle handle;
char* name;
};
struct VkExportSemaphoreWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
pt::Win32SecurityAttributesPtr pAttributes;
deUint32 dwAccess;
char* name;
};
struct VkD3D12FenceSubmitInfoKHR
{
VkStructureType sType;
const void* pNext;
deUint32 waitSemaphoreValuesCount;
const deUint64* pWaitSemaphoreValues;
deUint32 signalSemaphoreValuesCount;
const deUint64* pSignalSemaphoreValues;
};
struct VkSemaphoreGetWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSemaphore semaphore;
VkExternalSemaphoreHandleTypeFlagBits handleType;
};
struct VkImportSemaphoreFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSemaphore semaphore;
VkSemaphoreImportFlags flags;
VkExternalSemaphoreHandleTypeFlagBits handleType;
int fd;
};
struct VkSemaphoreGetFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSemaphore semaphore;
VkExternalSemaphoreHandleTypeFlagBits handleType;
};
struct VkPhysicalDevicePushDescriptorPropertiesKHR
{
VkStructureType sType;
void* pNext;
deUint32 maxPushDescriptors;
};
struct VkPhysicalDeviceFloat16Int8FeaturesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 shaderFloat16;
VkBool32 shaderInt8;
};
struct VkRectLayerKHR
{
VkOffset2D offset;
VkExtent2D extent;
deUint32 layer;
};
struct VkPresentRegionKHR
{
deUint32 rectangleCount;
const VkRectLayerKHR* pRectangles;
};
struct VkPresentRegionsKHR
{
VkStructureType sType;
const void* pNext;
deUint32 swapchainCount;
const VkPresentRegionKHR* pRegions;
};
struct VkAttachmentDescription2KHR
{
VkStructureType sType;
const void* pNext;
VkAttachmentDescriptionFlags flags;
VkFormat format;
VkSampleCountFlagBits samples;
VkAttachmentLoadOp loadOp;
VkAttachmentStoreOp storeOp;
VkAttachmentLoadOp stencilLoadOp;
VkAttachmentStoreOp stencilStoreOp;
VkImageLayout initialLayout;
VkImageLayout finalLayout;
};
struct VkAttachmentReference2KHR
{
VkStructureType sType;
const void* pNext;
deUint32 attachment;
VkImageLayout layout;
VkImageAspectFlags aspectMask;
};
struct VkSubpassDescription2KHR
{
VkStructureType sType;
const void* pNext;
VkSubpassDescriptionFlags flags;
VkPipelineBindPoint pipelineBindPoint;
deUint32 viewMask;
deUint32 inputAttachmentCount;
const VkAttachmentReference2KHR* pInputAttachments;
deUint32 colorAttachmentCount;
const VkAttachmentReference2KHR* pColorAttachments;
const VkAttachmentReference2KHR* pResolveAttachments;
const VkAttachmentReference2KHR* pDepthStencilAttachment;
deUint32 preserveAttachmentCount;
const deUint32* pPreserveAttachments;
};
struct VkSubpassDependency2KHR
{
VkStructureType sType;
const void* pNext;
deUint32 srcSubpass;
deUint32 dstSubpass;
VkPipelineStageFlags srcStageMask;
VkPipelineStageFlags dstStageMask;
VkAccessFlags srcAccessMask;
VkAccessFlags dstAccessMask;
VkDependencyFlags dependencyFlags;
deInt32 viewOffset;
};
struct VkRenderPassCreateInfo2KHR
{
VkStructureType sType;
const void* pNext;
VkRenderPassCreateFlags flags;
deUint32 attachmentCount;
const VkAttachmentDescription2KHR* pAttachments;
deUint32 subpassCount;
const VkSubpassDescription2KHR* pSubpasses;
deUint32 dependencyCount;
const VkSubpassDependency2KHR* pDependencies;
deUint32 correlatedViewMaskCount;
const deUint32* pCorrelatedViewMasks;
};
struct VkSubpassBeginInfoKHR
{
VkStructureType sType;
const void* pNext;
VkSubpassContents contents;
};
struct VkSubpassEndInfoKHR
{
VkStructureType sType;
const void* pNext;
};
struct VkSharedPresentSurfaceCapabilitiesKHR
{
VkStructureType sType;
void* pNext;
VkImageUsageFlags sharedPresentSupportedUsageFlags;
};
struct VkImportFenceWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkFence fence;
VkFenceImportFlags flags;
VkExternalFenceHandleTypeFlagBits handleType;
pt::Win32Handle handle;
char* name;
};
struct VkExportFenceWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
pt::Win32SecurityAttributesPtr pAttributes;
deUint32 dwAccess;
char* name;
};
struct VkFenceGetWin32HandleInfoKHR
{
VkStructureType sType;
const void* pNext;
VkFence fence;
VkExternalFenceHandleTypeFlagBits handleType;
};
struct VkImportFenceFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkFence fence;
VkFenceImportFlags flags;
VkExternalFenceHandleTypeFlagBits handleType;
int fd;
};
struct VkFenceGetFdInfoKHR
{
VkStructureType sType;
const void* pNext;
VkFence fence;
VkExternalFenceHandleTypeFlagBits handleType;
};
struct VkPhysicalDeviceSurfaceInfo2KHR
{
VkStructureType sType;
const void* pNext;
VkSurfaceKHR surface;
};
struct VkSurfaceCapabilities2KHR
{
VkStructureType sType;
void* pNext;
VkSurfaceCapabilitiesKHR surfaceCapabilities;
};
struct VkSurfaceFormat2KHR
{
VkStructureType sType;
void* pNext;
VkSurfaceFormatKHR surfaceFormat;
};
struct VkDisplayProperties2KHR
{
VkStructureType sType;
void* pNext;
VkDisplayPropertiesKHR displayProperties;
};
struct VkDisplayPlaneProperties2KHR
{
VkStructureType sType;
void* pNext;
VkDisplayPlanePropertiesKHR displayPlaneProperties;
};
struct VkDisplayModeProperties2KHR
{
VkStructureType sType;
void* pNext;
VkDisplayModePropertiesKHR displayModeProperties;
};
struct VkDisplayPlaneInfo2KHR
{
VkStructureType sType;
const void* pNext;
VkDisplayModeKHR mode;
deUint32 planeIndex;
};
struct VkDisplayPlaneCapabilities2KHR
{
VkStructureType sType;
void* pNext;
VkDisplayPlaneCapabilitiesKHR capabilities;
};
struct VkImageFormatListCreateInfoKHR
{
VkStructureType sType;
const void* pNext;
deUint32 viewFormatCount;
const VkFormat* pViewFormats;
};
struct VkConformanceVersionKHR
{
deUint8 major;
deUint8 minor;
deUint8 subminor;
deUint8 patch;
};
struct VkPhysicalDeviceDriverPropertiesKHR
{
VkStructureType sType;
void* pNext;
deUint32 driverID;
char driverName[VK_MAX_DRIVER_NAME_SIZE_KHR];
char driverInfo[VK_MAX_DRIVER_INFO_SIZE_KHR];
VkConformanceVersionKHR conformanceVersion;
};
struct VkPhysicalDeviceFloatControlsPropertiesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 separateDenormSettings;
VkBool32 separateRoundingModeSettings;
VkBool32 shaderSignedZeroInfNanPreserveFloat16;
VkBool32 shaderSignedZeroInfNanPreserveFloat32;
VkBool32 shaderSignedZeroInfNanPreserveFloat64;
VkBool32 shaderDenormPreserveFloat16;
VkBool32 shaderDenormPreserveFloat32;
VkBool32 shaderDenormPreserveFloat64;
VkBool32 shaderDenormFlushToZeroFloat16;
VkBool32 shaderDenormFlushToZeroFloat32;
VkBool32 shaderDenormFlushToZeroFloat64;
VkBool32 shaderRoundingModeRTEFloat16;
VkBool32 shaderRoundingModeRTEFloat32;
VkBool32 shaderRoundingModeRTEFloat64;
VkBool32 shaderRoundingModeRTZFloat16;
VkBool32 shaderRoundingModeRTZFloat32;
VkBool32 shaderRoundingModeRTZFloat64;
};
struct VkSubpassDescriptionDepthStencilResolveKHR
{
VkStructureType sType;
const void* pNext;
VkResolveModeFlagBitsKHR depthResolveMode;
VkResolveModeFlagBitsKHR stencilResolveMode;
const VkAttachmentReference2KHR* pDepthStencilResolveAttachment;
};
struct VkPhysicalDeviceDepthStencilResolvePropertiesKHR
{
VkStructureType sType;
void* pNext;
VkResolveModeFlagsKHR supportedDepthResolveModes;
VkResolveModeFlagsKHR supportedStencilResolveModes;
VkBool32 independentResolveNone;
VkBool32 independentResolve;
};
struct VkSurfaceProtectedCapabilitiesKHR
{
VkStructureType sType;
const void* pNext;
VkBool32 supportsProtected;
};
struct VkDebugReportCallbackCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDebugReportFlagsEXT flags;
PFN_vkDebugReportCallbackEXT pfnCallback;
void* pUserData;
};
struct VkPipelineRasterizationStateRasterizationOrderAMD
{
VkStructureType sType;
const void* pNext;
VkRasterizationOrderAMD rasterizationOrder;
};
struct VkDebugMarkerObjectNameInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDebugReportObjectTypeEXT objectType;
deUint64 object;
const char* pObjectName;
};
struct VkDebugMarkerObjectTagInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDebugReportObjectTypeEXT objectType;
deUint64 object;
deUint64 tagName;
deUintptr tagSize;
const void* pTag;
};
struct VkDebugMarkerMarkerInfoEXT
{
VkStructureType sType;
const void* pNext;
const char* pMarkerName;
float color[4];
};
struct VkDedicatedAllocationImageCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkBool32 dedicatedAllocation;
};
struct VkDedicatedAllocationBufferCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkBool32 dedicatedAllocation;
};
struct VkDedicatedAllocationMemoryAllocateInfoNV
{
VkStructureType sType;
const void* pNext;
VkImage image;
VkBuffer buffer;
};
struct VkPhysicalDeviceTransformFeedbackFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 transformFeedback;
VkBool32 geometryStreams;
};
struct VkPhysicalDeviceTransformFeedbackPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxTransformFeedbackStreams;
deUint32 maxTransformFeedbackBuffers;
VkDeviceSize maxTransformFeedbackBufferSize;
deUint32 maxTransformFeedbackStreamDataSize;
deUint32 maxTransformFeedbackBufferDataSize;
deUint32 maxTransformFeedbackBufferDataStride;
VkBool32 transformFeedbackQueries;
VkBool32 transformFeedbackStreamsLinesTriangles;
VkBool32 transformFeedbackRasterizationStreamSelect;
VkBool32 transformFeedbackDraw;
};
struct VkPipelineRasterizationStateStreamCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkPipelineRasterizationStateStreamCreateFlagsEXT flags;
deUint32 rasterizationStream;
};
struct VkTextureLODGatherFormatPropertiesAMD
{
VkStructureType sType;
void* pNext;
VkBool32 supportsTextureGatherLODBiasAMD;
};
struct VkExternalImageFormatPropertiesNV
{
VkImageFormatProperties imageFormatProperties;
VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
};
struct VkExternalMemoryImageCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagsNV handleTypes;
};
struct VkExportMemoryAllocateInfoNV
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagsNV handleTypes;
};
struct VkImportMemoryWin32HandleInfoNV
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagsNV handleType;
pt::Win32Handle handle;
};
struct VkExportMemoryWin32HandleInfoNV
{
VkStructureType sType;
const void* pNext;
pt::Win32SecurityAttributesPtr pAttributes;
deUint32 dwAccess;
};
struct VkWin32KeyedMutexAcquireReleaseInfoNV
{
VkStructureType sType;
const void* pNext;
deUint32 acquireCount;
const VkDeviceMemory* pAcquireSyncs;
const deUint64* pAcquireKeys;
const deUint32* pAcquireTimeoutMilliseconds;
deUint32 releaseCount;
const VkDeviceMemory* pReleaseSyncs;
const deUint64* pReleaseKeys;
};
struct VkValidationFlagsEXT
{
VkStructureType sType;
const void* pNext;
deUint32 disabledValidationCheckCount;
VkValidationCheckEXT* pDisabledValidationChecks;
};
struct VkViSurfaceCreateInfoNN
{
VkStructureType sType;
const void* pNext;
VkViSurfaceCreateFlagsNN flags;
void* window;
};
struct VkConditionalRenderingBeginInfoEXT
{
VkStructureType sType;
const void* pNext;
VkBuffer buffer;
VkDeviceSize offset;
VkConditionalRenderingFlagsEXT flags;
};
struct VkPhysicalDeviceConditionalRenderingFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 conditionalRendering;
VkBool32 inheritedConditionalRendering;
};
struct VkCommandBufferInheritanceConditionalRenderingInfoEXT
{
VkStructureType sType;
const void* pNext;
VkBool32 conditionalRenderingEnable;
};
struct VkDeviceGeneratedCommandsFeaturesNVX
{
VkStructureType sType;
const void* pNext;
VkBool32 computeBindingPointSupport;
};
struct VkDeviceGeneratedCommandsLimitsNVX
{
VkStructureType sType;
const void* pNext;
deUint32 maxIndirectCommandsLayoutTokenCount;
deUint32 maxObjectEntryCounts;
deUint32 minSequenceCountBufferOffsetAlignment;
deUint32 minSequenceIndexBufferOffsetAlignment;
deUint32 minCommandsTokenBufferOffsetAlignment;
};
struct VkIndirectCommandsTokenNVX
{
VkIndirectCommandsTokenTypeNVX tokenType;
VkBuffer buffer;
VkDeviceSize offset;
};
struct VkIndirectCommandsLayoutTokenNVX
{
VkIndirectCommandsTokenTypeNVX tokenType;
deUint32 bindingUnit;
deUint32 dynamicCount;
deUint32 divisor;
};
struct VkIndirectCommandsLayoutCreateInfoNVX
{
VkStructureType sType;
const void* pNext;
VkPipelineBindPoint pipelineBindPoint;
VkIndirectCommandsLayoutUsageFlagsNVX flags;
deUint32 tokenCount;
const VkIndirectCommandsLayoutTokenNVX* pTokens;
};
struct VkCmdProcessCommandsInfoNVX
{
VkStructureType sType;
const void* pNext;
VkObjectTableNVX objectTable;
VkIndirectCommandsLayoutNVX indirectCommandsLayout;
deUint32 indirectCommandsTokenCount;
const VkIndirectCommandsTokenNVX* pIndirectCommandsTokens;
deUint32 maxSequencesCount;
VkCommandBuffer targetCommandBuffer;
VkBuffer sequencesCountBuffer;
VkDeviceSize sequencesCountOffset;
VkBuffer sequencesIndexBuffer;
VkDeviceSize sequencesIndexOffset;
};
struct VkCmdReserveSpaceForCommandsInfoNVX
{
VkStructureType sType;
const void* pNext;
VkObjectTableNVX objectTable;
VkIndirectCommandsLayoutNVX indirectCommandsLayout;
deUint32 maxSequencesCount;
};
struct VkObjectTableCreateInfoNVX
{
VkStructureType sType;
const void* pNext;
deUint32 objectCount;
const VkObjectEntryTypeNVX* pObjectEntryTypes;
const deUint32* pObjectEntryCounts;
const VkObjectEntryUsageFlagsNVX* pObjectEntryUsageFlags;
deUint32 maxUniformBuffersPerDescriptor;
deUint32 maxStorageBuffersPerDescriptor;
deUint32 maxStorageImagesPerDescriptor;
deUint32 maxSampledImagesPerDescriptor;
deUint32 maxPipelineLayouts;
};
struct VkObjectTableEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
};
struct VkObjectTablePipelineEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
VkPipeline pipeline;
};
struct VkObjectTableDescriptorSetEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
VkPipelineLayout pipelineLayout;
VkDescriptorSet descriptorSet;
};
struct VkObjectTableVertexBufferEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
VkBuffer buffer;
};
struct VkObjectTableIndexBufferEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
VkBuffer buffer;
VkIndexType indexType;
};
struct VkObjectTablePushConstantEntryNVX
{
VkObjectEntryTypeNVX type;
VkObjectEntryUsageFlagsNVX flags;
VkPipelineLayout pipelineLayout;
VkShaderStageFlags stageFlags;
};
struct VkViewportWScalingNV
{
float xcoeff;
float ycoeff;
};
struct VkPipelineViewportWScalingStateCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkBool32 viewportWScalingEnable;
deUint32 viewportCount;
const VkViewportWScalingNV* pViewportWScalings;
};
struct VkSurfaceCapabilities2EXT
{
VkStructureType sType;
void* pNext;
deUint32 minImageCount;
deUint32 maxImageCount;
VkExtent2D currentExtent;
VkExtent2D minImageExtent;
VkExtent2D maxImageExtent;
deUint32 maxImageArrayLayers;
VkSurfaceTransformFlagsKHR supportedTransforms;
VkSurfaceTransformFlagBitsKHR currentTransform;
VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
VkImageUsageFlags supportedUsageFlags;
VkSurfaceCounterFlagsEXT supportedSurfaceCounters;
};
struct VkDisplayPowerInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDisplayPowerStateEXT powerState;
};
struct VkDeviceEventInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDeviceEventTypeEXT deviceEvent;
};
struct VkDisplayEventInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDisplayEventTypeEXT displayEvent;
};
struct VkSwapchainCounterCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkSurfaceCounterFlagsEXT surfaceCounters;
};
struct VkRefreshCycleDurationGOOGLE
{
deUint64 refreshDuration;
};
struct VkPastPresentationTimingGOOGLE
{
deUint32 presentID;
deUint64 desiredPresentTime;
deUint64 actualPresentTime;
deUint64 earliestPresentTime;
deUint64 presentMargin;
};
struct VkPresentTimeGOOGLE
{
deUint32 presentID;
deUint64 desiredPresentTime;
};
struct VkPresentTimesInfoGOOGLE
{
VkStructureType sType;
const void* pNext;
deUint32 swapchainCount;
const VkPresentTimeGOOGLE* pTimes;
};
struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
{
VkStructureType sType;
void* pNext;
VkBool32 perViewPositionAllComponents;
};
struct VkViewportSwizzleNV
{
VkViewportCoordinateSwizzleNV x;
VkViewportCoordinateSwizzleNV y;
VkViewportCoordinateSwizzleNV z;
VkViewportCoordinateSwizzleNV w;
};
struct VkPipelineViewportSwizzleStateCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkPipelineViewportSwizzleStateCreateFlagsNV flags;
deUint32 viewportCount;
const VkViewportSwizzleNV* pViewportSwizzles;
};
struct VkPhysicalDeviceDiscardRectanglePropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxDiscardRectangles;
};
struct VkPipelineDiscardRectangleStateCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkPipelineDiscardRectangleStateCreateFlagsEXT flags;
VkDiscardRectangleModeEXT discardRectangleMode;
deUint32 discardRectangleCount;
const VkRect2D* pDiscardRectangles;
};
struct VkXYColorEXT
{
float x;
float y;
};
struct VkHdrMetadataEXT
{
VkStructureType sType;
const void* pNext;
VkXYColorEXT displayPrimaryRed;
VkXYColorEXT displayPrimaryGreen;
VkXYColorEXT displayPrimaryBlue;
VkXYColorEXT whitePoint;
float maxLuminance;
float minLuminance;
float maxContentLightLevel;
float maxFrameAverageLightLevel;
};
struct VkIOSSurfaceCreateInfoMVK
{
VkStructureType sType;
const void* pNext;
VkIOSSurfaceCreateFlagsMVK flags;
const void* pView;
};
struct VkMacOSSurfaceCreateInfoMVK
{
VkStructureType sType;
const void* pNext;
VkMacOSSurfaceCreateFlagsMVK flags;
const void* pView;
};
struct VkSamplerReductionModeCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkSamplerReductionModeEXT reductionMode;
};
struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 filterMinmaxSingleComponentFormats;
VkBool32 filterMinmaxImageComponentMapping;
};
struct VkSampleLocationEXT
{
float x;
float y;
};
struct VkSampleLocationsInfoEXT
{
VkStructureType sType;
const void* pNext;
VkSampleCountFlagBits sampleLocationsPerPixel;
VkExtent2D sampleLocationGridSize;
deUint32 sampleLocationsCount;
const VkSampleLocationEXT* pSampleLocations;
};
struct VkAttachmentSampleLocationsEXT
{
deUint32 attachmentIndex;
VkSampleLocationsInfoEXT sampleLocationsInfo;
};
struct VkSubpassSampleLocationsEXT
{
deUint32 subpassIndex;
VkSampleLocationsInfoEXT sampleLocationsInfo;
};
struct VkRenderPassSampleLocationsBeginInfoEXT
{
VkStructureType sType;
const void* pNext;
deUint32 attachmentInitialSampleLocationsCount;
const VkAttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations;
deUint32 postSubpassSampleLocationsCount;
const VkSubpassSampleLocationsEXT* pSubpassSampleLocations;
};
struct VkPipelineSampleLocationsStateCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkBool32 sampleLocationsEnable;
VkSampleLocationsInfoEXT sampleLocationsInfo;
};
struct VkPhysicalDeviceSampleLocationsPropertiesEXT
{
VkStructureType sType;
void* pNext;
VkSampleCountFlags sampleLocationSampleCounts;
VkExtent2D maxSampleLocationGridSize;
float sampleLocationCoordinateRange[2];
deUint32 sampleLocationSubPixelBits;
VkBool32 variableSampleLocations;
};
struct VkMultisamplePropertiesEXT
{
VkStructureType sType;
void* pNext;
VkExtent2D maxSampleLocationGridSize;
};
struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 advancedBlendCoherentOperations;
};
struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 advancedBlendMaxColorAttachments;
VkBool32 advancedBlendIndependentBlend;
VkBool32 advancedBlendNonPremultipliedSrcColor;
VkBool32 advancedBlendNonPremultipliedDstColor;
VkBool32 advancedBlendCorrelatedOverlap;
VkBool32 advancedBlendAllOperations;
};
struct VkPipelineColorBlendAdvancedStateCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkBool32 srcPremultiplied;
VkBool32 dstPremultiplied;
VkBlendOverlapEXT blendOverlap;
};
struct VkPipelineCoverageToColorStateCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkPipelineCoverageToColorStateCreateFlagsNV flags;
VkBool32 coverageToColorEnable;
deUint32 coverageToColorLocation;
};
struct VkPipelineCoverageModulationStateCreateInfoNV
{
VkStructureType sType;
const void* pNext;
VkPipelineCoverageModulationStateCreateFlagsNV flags;
VkCoverageModulationModeNV coverageModulationMode;
VkBool32 coverageModulationTableEnable;
deUint32 coverageModulationTableCount;
const float* pCoverageModulationTable;
};
struct VkValidationCacheCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkValidationCacheCreateFlagsEXT flags;
deUintptr initialDataSize;
const void* pInitialData;
};
struct VkShaderModuleValidationCacheCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkValidationCacheEXT validationCache;
};
struct VkAndroidHardwareBufferUsageANDROID
{
VkStructureType sType;
void* pNext;
deUint64 androidHardwareBufferUsage;
};
struct VkAndroidHardwareBufferPropertiesANDROID
{
VkStructureType sType;
void* pNext;
VkDeviceSize allocationSize;
deUint32 memoryTypeBits;
};
struct VkAndroidHardwareBufferFormatPropertiesANDROID
{
VkStructureType sType;
void* pNext;
VkFormat format;
deUint64 externalFormat;
VkFormatFeatureFlags formatFeatures;
VkComponentMapping samplerYcbcrConversionComponents;
VkSamplerYcbcrModelConversion suggestedYcbcrModel;
VkSamplerYcbcrRange suggestedYcbcrRange;
VkChromaLocation suggestedXChromaOffset;
VkChromaLocation suggestedYChromaOffset;
};
struct VkImportAndroidHardwareBufferInfoANDROID
{
VkStructureType sType;
const void* pNext;
struct pt::AndroidHardwareBufferPtr buffer;
};
struct VkMemoryGetAndroidHardwareBufferInfoANDROID
{
VkStructureType sType;
void* pNext;
VkDeviceMemory memory;
};
struct VkExternalFormatANDROID
{
VkStructureType sType;
void* pNext;
deUint64 externalFormat;
};
struct VkImportMemoryHostPointerInfoEXT
{
VkStructureType sType;
const void* pNext;
VkExternalMemoryHandleTypeFlagBits handleType;
void* pHostPointer;
};
struct VkMemoryHostPointerPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 memoryTypeBits;
};
struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT
{
VkStructureType sType;
void* pNext;
VkDeviceSize minImportedHostPointerAlignment;
};
struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxVertexAttribDivisor;
};
struct VkVertexInputBindingDivisorDescriptionEXT
{
deUint32 binding;
deUint32 divisor;
};
struct VkPipelineVertexInputDivisorStateCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
deUint32 vertexBindingDivisorCount;
const VkVertexInputBindingDivisorDescriptionEXT* pVertexBindingDivisors;
};
struct VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 vertexAttributeInstanceRateDivisor;
VkBool32 vertexAttributeInstanceRateZeroDivisor;
};
struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
deUint32 bindingCount;
const VkDescriptorBindingFlagsEXT* pBindingFlags;
};
struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 shaderInputAttachmentArrayDynamicIndexing;
VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
VkBool32 shaderUniformBufferArrayNonUniformIndexing;
VkBool32 shaderSampledImageArrayNonUniformIndexing;
VkBool32 shaderStorageBufferArrayNonUniformIndexing;
VkBool32 shaderStorageImageArrayNonUniformIndexing;
VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
VkBool32 descriptorBindingSampledImageUpdateAfterBind;
VkBool32 descriptorBindingStorageImageUpdateAfterBind;
VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
VkBool32 descriptorBindingUpdateUnusedWhilePending;
VkBool32 descriptorBindingPartiallyBound;
VkBool32 descriptorBindingVariableDescriptorCount;
VkBool32 runtimeDescriptorArray;
};
struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxUpdateAfterBindDescriptorsInAllPools;
VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
VkBool32 robustBufferAccessUpdateAfterBind;
VkBool32 quadDivergentImplicitLod;
deUint32 maxPerStageDescriptorUpdateAfterBindSamplers;
deUint32 maxPerStageDescriptorUpdateAfterBindUniformBuffers;
deUint32 maxPerStageDescriptorUpdateAfterBindStorageBuffers;
deUint32 maxPerStageDescriptorUpdateAfterBindSampledImages;
deUint32 maxPerStageDescriptorUpdateAfterBindStorageImages;
deUint32 maxPerStageDescriptorUpdateAfterBindInputAttachments;
deUint32 maxPerStageUpdateAfterBindResources;
deUint32 maxDescriptorSetUpdateAfterBindSamplers;
deUint32 maxDescriptorSetUpdateAfterBindUniformBuffers;
deUint32 maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
deUint32 maxDescriptorSetUpdateAfterBindStorageBuffers;
deUint32 maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
deUint32 maxDescriptorSetUpdateAfterBindSampledImages;
deUint32 maxDescriptorSetUpdateAfterBindStorageImages;
deUint32 maxDescriptorSetUpdateAfterBindInputAttachments;
};
struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT
{
VkStructureType sType;
const void* pNext;
deUint32 descriptorSetCount;
const deUint32* pDescriptorCounts;
};
struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxVariableDescriptorCount;
};
struct VkPhysicalDeviceInlineUniformBlockFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 inlineUniformBlock;
VkBool32 descriptorBindingInlineUniformBlockUpdateAfterBind;
};
struct VkPhysicalDeviceInlineUniformBlockPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 maxInlineUniformBlockSize;
deUint32 maxPerStageDescriptorInlineUniformBlocks;
deUint32 maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks;
deUint32 maxDescriptorSetInlineUniformBlocks;
deUint32 maxDescriptorSetUpdateAfterBindInlineUniformBlocks;
};
struct VkWriteDescriptorSetInlineUniformBlockEXT
{
VkStructureType sType;
const void* pNext;
deUint32 dataSize;
const void* pData;
};
struct VkDescriptorPoolInlineUniformBlockCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
deUint32 maxInlineUniformBlockBindings;
};
struct VkPhysicalDeviceShaderAtomicInt64FeaturesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 shaderBufferInt64Atomics;
VkBool32 shaderSharedInt64Atomics;
};
struct VkPhysicalDeviceVulkanMemoryModelFeaturesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 vulkanMemoryModel;
VkBool32 vulkanMemoryModelDeviceScope;
VkBool32 vulkanMemoryModelAvailabilityVisibilityChains;
};
struct VkPhysicalDeviceScalarBlockLayoutFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 scalarBlockLayout;
};
struct VkPhysicalDeviceDepthClipEnableFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 depthClipEnable;
};
struct VkPipelineRasterizationDepthClipStateCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkPipelineRasterizationDepthClipStateCreateFlagsEXT flags;
VkBool32 depthClipEnable;
};
struct VkPhysicalDeviceBufferDeviceAddressFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 bufferDeviceAddress;
VkBool32 bufferDeviceAddressCaptureReplay;
VkBool32 bufferDeviceAddressMultiDevice;
};
struct VkBufferDeviceAddressInfoEXT
{
VkStructureType sType;
const void* pNext;
VkBuffer buffer;
};
struct VkBufferDeviceAddressCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkDeviceSize deviceAddress;
};
struct VkImageStencilUsageCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkImageUsageFlags stencilUsage;
};
struct VkCooperativeMatrixPropertiesNV
{
VkStructureType sType;
void* pNext;
deUint32 MSize;
deUint32 NSize;
deUint32 KSize;
VkComponentTypeNV AType;
VkComponentTypeNV BType;
VkComponentTypeNV CType;
VkComponentTypeNV DType;
VkScopeNV scope;
};
struct VkPhysicalDeviceCooperativeMatrixPropertiesNV
{
VkStructureType sType;
void* pNext;
VkShaderStageFlags cooperativeMatrixSupportedStages;
};
struct VkPhysicalDeviceCooperativeMatrixFeaturesNV
{
VkStructureType sType;
void* pNext;
VkBool32 cooperativeMatrix;
VkBool32 cooperativeMatrixRobustBufferAccess;
};
struct VkPhysicalDeviceHostQueryResetFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 hostQueryReset;
};
struct VkPhysicalDevicePCIBusInfoPropertiesEXT
{
VkStructureType sType;
void* pNext;
deUint32 pciDomain;
deUint32 pciBus;
deUint32 pciDevice;
deUint32 pciFunction;
};
struct VkPhysicalDeviceMemoryBudgetPropertiesEXT
{
VkStructureType sType;
void* pNext;
VkDeviceSize heapBudget[VK_MAX_MEMORY_HEAPS];
VkDeviceSize heapUsage[VK_MAX_MEMORY_HEAPS];
};
struct VkPhysicalDeviceMemoryPriorityFeaturesEXT
{
VkStructureType sType;
void* pNext;
VkBool32 memoryPriority;
};
struct VkMemoryPriorityAllocateInfoEXT
{
VkStructureType sType;
const void* pNext;
float priority;
};
struct VkPhysicalDeviceUniformBufferStandardLayoutFeaturesKHR
{
VkStructureType sType;
void* pNext;
VkBool32 uniformBufferStandardLayout;
};
struct VkPipelineCreationFeedbackEXT
{
VkPipelineCreationFeedbackFlagsEXT flags;
deUint64 duration;
};
struct VkPipelineCreationFeedbackCreateInfoEXT
{
VkStructureType sType;
const void* pNext;
VkPipelineCreationFeedbackEXT* pPipelineCreationFeedback;
deUint32 pipelineStageCreationFeedbackCount;
VkPipelineCreationFeedbackEXT* pPipelineStageCreationFeedbacks;
};
struct VkCalibratedTimestampInfoEXT
{
VkStructureType sType;
const void* pNext;
VkTimeDomainEXT timeDomain;
};
| [
"elix22@gmail.com"
] | elix22@gmail.com |
e2f7433598952cc1e340056e22db4935350ce663 | ba5d1d776888be6ae9688d850f0445d80973ee8f | /game/server/func_movelinear.cpp | 397fefd18558e77f65ad45fe2fc46544c8e71171 | [
"MIT"
] | permissive | BerntA/tfo-code | eb127b86111dce2b6f66e98c9476adc9ddbbd267 | b82efd940246af8fe90cb76fa6a96bba42c277b7 | refs/heads/master | 2023-08-17T06:57:13.107323 | 2023-08-09T18:37:54 | 2023-08-09T18:37:54 | 41,260,457 | 16 | 5 | MIT | 2023-05-29T23:35:33 | 2015-08-23T17:52:50 | C++ | UTF-8 | C++ | false | false | 11,829 | cpp | //========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Implements a brush model entity that moves along a linear path.
// Water whose level can be changed is implemented using the same entity.
//
//=============================================================================//
#include "cbase.h"
#include "func_movelinear.h"
#include "entitylist.h"
#include "locksounds.h"
#include "ndebugoverlay.h"
#include "engine/IEngineSound.h"
#include "physics_saverestore.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
// -------------------------------
// SPAWN_FLAGS
// -------------------------------
#define SF_MOVELINEAR_NOTSOLID 8
LINK_ENTITY_TO_CLASS( func_movelinear, CFuncMoveLinear );
LINK_ENTITY_TO_CLASS( momentary_door, CFuncMoveLinear ); // For backward compatibility
//
// func_water_analog is implemented as a linear mover so we can raise/lower the water level.
//
LINK_ENTITY_TO_CLASS( func_water_analog, CFuncMoveLinear );
BEGIN_DATADESC( CFuncMoveLinear )
DEFINE_KEYFIELD( m_vecMoveDir, FIELD_VECTOR, "movedir" ),
DEFINE_KEYFIELD( m_soundStart, FIELD_SOUNDNAME, "StartSound" ),
DEFINE_KEYFIELD( m_soundStop, FIELD_SOUNDNAME, "StopSound" ),
DEFINE_FIELD( m_currentSound, FIELD_SOUNDNAME ),
DEFINE_KEYFIELD( m_flBlockDamage, FIELD_FLOAT, "BlockDamage"),
DEFINE_KEYFIELD( m_flStartPosition, FIELD_FLOAT, "StartPosition"),
DEFINE_KEYFIELD( m_flMoveDistance, FIELD_FLOAT, "MoveDistance"),
// DEFINE_PHYSPTR( m_pFluidController ),
// Inputs
DEFINE_INPUTFUNC( FIELD_VOID, "Open", InputOpen ),
DEFINE_INPUTFUNC( FIELD_VOID, "Close", InputClose ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetPosition", InputSetPosition ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetSpeed", InputSetSpeed ),
// Outputs
DEFINE_OUTPUT( m_OnFullyOpen, "OnFullyOpen" ),
DEFINE_OUTPUT( m_OnFullyClosed, "OnFullyClosed" ),
// Functions
DEFINE_FUNCTION( StopMoveSound ),
END_DATADESC()
//------------------------------------------------------------------------------
// Purpose: Called before spawning, after keyvalues have been parsed.
//------------------------------------------------------------------------------
void CFuncMoveLinear::Spawn( void )
{
// Convert movedir from angles to a vector
QAngle angMoveDir = QAngle( m_vecMoveDir.x, m_vecMoveDir.y, m_vecMoveDir.z );
AngleVectors( angMoveDir, &m_vecMoveDir );
SetMoveType( MOVETYPE_PUSH );
SetModel( STRING( GetModelName() ) );
// Don't allow zero or negative speeds
if (m_flSpeed <= 0)
{
m_flSpeed = 100;
}
// If move distance is set to zero, use with width of the
// brush to determine the size of the move distance
if (m_flMoveDistance <= 0)
{
Vector vecOBB = CollisionProp()->OBBSize();
vecOBB -= Vector( 2, 2, 2 );
m_flMoveDistance = DotProductAbs( m_vecMoveDir, vecOBB ) - m_flLip;
}
m_vecPosition1 = GetAbsOrigin() - (m_vecMoveDir * m_flMoveDistance * m_flStartPosition);
m_vecPosition2 = m_vecPosition1 + (m_vecMoveDir * m_flMoveDistance);
m_vecFinalDest = GetAbsOrigin();
SetTouch( NULL );
Precache();
// It is solid?
SetSolid( SOLID_VPHYSICS );
if ( FClassnameIs( this, "func_water_analog" ) )
{
AddSolidFlags( FSOLID_VOLUME_CONTENTS );
}
if ( !FClassnameIs( this, "func_water_analog" ) && FBitSet (m_spawnflags, SF_MOVELINEAR_NOTSOLID) )
{
AddSolidFlags( FSOLID_NOT_SOLID );
}
CreateVPhysics();
}
bool CFuncMoveLinear::ShouldSavePhysics( void )
{
// don't save physics for func_water_analog, regen
return !FClassnameIs( this, "func_water_analog" );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
bool CFuncMoveLinear::CreateVPhysics( void )
{
if ( !FClassnameIs( this, "func_water_analog" ) )
{
//normal door
if ( !IsSolidFlagSet( FSOLID_NOT_SOLID ) )
{
VPhysicsInitShadow( false, false );
}
}
else
{
// special contents
AddSolidFlags( FSOLID_VOLUME_CONTENTS );
//SETBITS( m_spawnflags, SF_DOOR_SILENT ); // water is silent for now
IPhysicsObject *pPhysics = VPhysicsInitShadow( false, false );
fluidparams_t fluid;
Assert( CollisionProp()->GetCollisionAngles() == vec3_angle );
fluid.damping = 0.01f;
fluid.surfacePlane[0] = 0;
fluid.surfacePlane[1] = 0;
fluid.surfacePlane[2] = 1;
fluid.surfacePlane[3] = CollisionProp()->GetCollisionOrigin().z + CollisionProp()->OBBMaxs().z - 1;
fluid.currentVelocity.Init(0,0,0);
fluid.torqueFactor = 0.1f;
fluid.viscosityFactor = 0.01f;
fluid.pGameData = static_cast<void *>(this);
//FIXME: Currently there's no way to specify that you want slime
fluid.contents = CONTENTS_WATER;
m_pFluidController = physenv->CreateFluidController( pPhysics, &fluid );
}
return true;
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::Precache( void )
{
if (m_soundStart != NULL_STRING)
{
PrecacheScriptSound( (char *) STRING(m_soundStart) );
}
if (m_soundStop != NULL_STRING)
{
PrecacheScriptSound( (char *) STRING(m_soundStop) );
}
m_currentSound = NULL_STRING;
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::MoveTo(Vector vPosition, float flSpeed)
{
if ( flSpeed != 0 )
{
if ( m_soundStart != NULL_STRING )
{
if (m_currentSound == m_soundStart)
{
StopSound(entindex(), CHAN_BODY, (char*)STRING(m_soundStop));
}
else
{
m_currentSound = m_soundStart;
CPASAttenuationFilter filter( this );
EmitSound_t ep;
ep.m_nChannel = CHAN_BODY;
ep.m_pSoundName = (char*)STRING(m_soundStart);
ep.m_flVolume = 1;
ep.m_SoundLevel = SNDLVL_NORM;
EmitSound( filter, entindex(), ep );
}
}
LinearMove( vPosition, flSpeed );
if ( m_pFluidController )
{
m_pFluidController->WakeAllSleepingObjects();
}
// Clear think (that stops sounds)
SetThink(NULL);
}
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::StopMoveSound( void )
{
if ( m_soundStart != NULL_STRING && ( m_currentSound == m_soundStart ) )
{
StopSound(entindex(), CHAN_BODY, (char*)STRING(m_soundStart) );
}
if ( m_soundStop != NULL_STRING && ( m_currentSound != m_soundStop ) )
{
m_currentSound = m_soundStop;
CPASAttenuationFilter filter( this );
EmitSound_t ep;
ep.m_nChannel = CHAN_BODY;
ep.m_pSoundName = (char*)STRING(m_soundStop);
ep.m_flVolume = 1;
ep.m_SoundLevel = SNDLVL_NORM;
EmitSound( filter, entindex(), ep );
}
SetThink(NULL);
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::MoveDone( void )
{
// Stop sounds at the next think, rather than here as another
// SetPosition call might immediately follow the end of this move
SetThink(&CFuncMoveLinear::StopMoveSound);
SetNextThink( gpGlobals->curtime + 0.1f );
BaseClass::MoveDone();
if ( GetAbsOrigin() == m_vecPosition2 )
{
m_OnFullyOpen.FireOutput( this, this );
}
else if ( GetAbsOrigin() == m_vecPosition1 )
{
m_OnFullyClosed.FireOutput( this, this );
}
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value )
{
if ( useType != USE_SET ) // Momentary buttons will pass down a float in here
return;
if ( value > 1.0 )
value = 1.0;
Vector move = m_vecPosition1 + (value * (m_vecPosition2 - m_vecPosition1));
Vector delta = move - GetLocalOrigin();
float speed = delta.Length() * 10;
MoveTo(move, speed);
}
//-----------------------------------------------------------------------------
// Purpose: Sets the position as a value from [0..1].
//-----------------------------------------------------------------------------
void CFuncMoveLinear::SetPosition( float flPosition )
{
Vector vTargetPos = m_vecPosition1 + ( flPosition * (m_vecPosition2 - m_vecPosition1));
if ((vTargetPos - GetLocalOrigin()).Length() > 0.001)
{
MoveTo(vTargetPos, m_flSpeed);
}
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::InputOpen( inputdata_t &inputdata )
{
if (GetLocalOrigin() != m_vecPosition2)
{
MoveTo(m_vecPosition2, m_flSpeed);
}
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CFuncMoveLinear::InputClose( inputdata_t &inputdata )
{
if (GetLocalOrigin() != m_vecPosition1)
{
MoveTo(m_vecPosition1, m_flSpeed);
}
}
//------------------------------------------------------------------------------
// Purpose: Input handler for setting the position from [0..1].
// Input : Float position.
//-----------------------------------------------------------------------------
void CFuncMoveLinear::InputSetPosition( inputdata_t &inputdata )
{
SetPosition( inputdata.value.Float() );
}
//-----------------------------------------------------------------------------
// Purpose: Called every frame when the bruch is blocked while moving
// Input : pOther - The blocking entity.
//-----------------------------------------------------------------------------
void CFuncMoveLinear::Blocked( CBaseEntity *pOther )
{
// Hurt the blocker
if ( m_flBlockDamage )
{
if ( pOther->m_takedamage == DAMAGE_EVENTS_ONLY )
{
if ( FClassnameIs( pOther, "gib" ) )
UTIL_Remove( pOther );
}
else
pOther->TakeDamage( CTakeDamageInfo( this, this, m_flBlockDamage, DMG_CRUSH ) );
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : &inputdata -
//-----------------------------------------------------------------------------
void CFuncMoveLinear::InputSetSpeed( inputdata_t &inputdata )
{
// Set the new speed
m_flSpeed = inputdata.value.Float();
// FIXME: This is a little questionable. Do we want to fix the speed, or let it continue on at the old speed?
float flDistToGoalSqr = ( m_vecFinalDest - GetAbsOrigin() ).LengthSqr();
if ( flDistToGoalSqr > Square( FLT_EPSILON ) )
{
// NOTE: We do NOT want to call sound functions here, just vanilla position changes
LinearMove( m_vecFinalDest, m_flSpeed );
}
}
//-----------------------------------------------------------------------------
// Purpose: Draw any debug text overlays
// Output : Current text offset from the top
//-----------------------------------------------------------------------------
int CFuncMoveLinear::DrawDebugTextOverlays(void)
{
int text_offset = BaseClass::DrawDebugTextOverlays();
if (m_debugOverlays & OVERLAY_TEXT_BIT)
{
char tempstr[512];
float flTravelDist = (m_vecPosition1 - m_vecPosition2).Length();
float flCurDist = (m_vecPosition1 - GetLocalOrigin()).Length();
Q_snprintf(tempstr,sizeof(tempstr),"Current Pos: %3.3f",flCurDist/flTravelDist);
EntityText(text_offset,tempstr,0);
text_offset++;
float flTargetDist = (m_vecPosition1 - m_vecFinalDest).Length();
Q_snprintf(tempstr,sizeof(tempstr),"Target Pos: %3.3f",flTargetDist/flTravelDist);
EntityText(text_offset,tempstr,0);
text_offset++;
}
return text_offset;
}
| [
"bernta1@msn.com"
] | bernta1@msn.com |
0285b31f67288962743a0df0b003f1877aef35f9 | 3e65ad1a906e7f6ab7831fbf01adc83d42b006ea | /string/isAnagram.cc | f03c71c47e63fafe622498e8f674f1820d4b8a6e | [] | no_license | yukimura1330/leetcode | c0fd0b696529f8f37ff9d82da8a3e6475ad6ead1 | 1d70ab4a7038b79df04d487c658cd8f15efc4a42 | refs/heads/master | 2021-01-19T14:25:34.008890 | 2020-02-22T14:00:36 | 2020-02-22T14:00:36 | 88,161,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 905 | cc | /*
给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的一个字母异位词。
输入: s = "anagram", t = "nagaram"
输出: true
输入: s = "rat", t = "car"
输出: false
*/
#include <iostream>
#include <string>
using namespace std;
bool isAnagram(string s, string t) {
int index = 0;
int bucket[26];
int len1 = s.length();
int len2 = t.length();
if(len1 != len2) {
return false;
}
memset(bucket, 0, sizeof(bucket));
for(int i = 0; i < len1; i++) {
index = s[i] - 'a';
bucket[index] += 1;
index = t[i] - 'a';
bucket[index] -= 1;
}
for(int i = 0; i < 26; i++) {
if(bucket[i] != 0) {
return false;
}
}
return true;
}
int main() {
string s1 = "rat";
string s2 = "cat";
cout << "isAnagram is " << isAnagram(s1, s2) << endl;
return 0;
} | [
"1012872869@qq.com"
] | 1012872869@qq.com |
4d2636f749aee4282677f25483766222dd95f8f5 | b95b7a231f250f17688484de5592bccc3c439d3e | /Array/q90.cpp | fbbf3e43087ef0cb18e69988e3ea1f4b4e226bd9 | [] | no_license | GuanyiLi-Craig/interview | 725e91a107bf11daf2120b5bd2e4d86f7b6804ea | 87269f436c92fc2ed34a2b51168836f5272b74f6 | refs/heads/master | 2021-08-30T03:59:26.590964 | 2017-12-15T23:49:08 | 2017-12-15T23:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,240 | cpp | /****************************************************************************************************
90. Subsets II
-----------------------------------------------------------------------------------------------------
Given a collection of integers that might contain duplicates, nums, return all possible subsets.
Note: The solution set must not contain duplicate subsets.
For example,
If nums = [1,2,2], a solution is:
[
[2],
[1],
[1,2,2],
[2,2],
[1,2],
[]
]
****************************************************************************************************/
#include "problems\problems\Header.h"
namespace std
{
class Solution {
public:
vector<vector<int>> subsetsWithDup(vector<int>& nums) {
int len=nums.size();
vector<vector<int> > rst(1,vector<int>());
if (len==0) return rst;
if (len==1) {rst.push_back(nums); return rst;}
sort(nums.begin(),nums.end());
map<int,int> count;
for(int i=0;i<len;i++)
{
count[nums[i]]++; //real count *
}
map<int,int>::iterator it; it = count.begin();
for(it=count.begin();it!=count.end();it++)
{
int n=rst.size();
for(int i=0;i<n;i++)
{
rst.push_back(rst[i]);
for(int j=0;j<it->second;j++)
{
rst.back().push_back(it->first);
if(j+1<it->second) // **
rst.push_back(rst.back());
}
}
}
return rst;
}
};
class OthersSolution {
public:
vector<vector<int>> subsetsWithDup(vector<int>& nums) {
int len=nums.size();
vector<vector<int> > rst(1,vector<int>());
if (len==0) return rst;
if (len==1) {rst.push_back(nums); return rst;}
sort(nums.begin(),nums.end());
int currsize=0;
for(int i=0;i<len;i++)
{
int ind = i>0 && nums[i-1]==nums[i] ? currsize:0;
currsize=rst.size();
for(int j=ind;j<currsize;j++)
{
rst.push_back(rst[j]);
rst.back().push_back(nums[i]);
}
}
return rst;
}
};
}
/****************************************************************************************************
Note
* it is real count because it was ++, so first time result 1
** because it was added before.
And there is better solution, just set the start point
vector<vector<int> > subsetsWithDup(vector<int> &S) {
sort(S.begin(), S.end());
vector<vector<int>> ret = {{}};
int size = 0, startIndex = 0;
for (int i = 0; i < S.size(); i++) {
startIndex = i >= 1 && S[i] == S[i - 1] ? size : 0;
size = ret.size();
for (int j = startIndex; j < size; j++) {
vector<int> temp = ret[j];
temp.push_back(S[i]);
ret.push_back(temp);
}
}
return ret;
}
****************************************************************************************************/ | [
"bitforce.studio@gmail.com"
] | bitforce.studio@gmail.com |
a75d062b673b8f5de4a581e89a9ed55cf4d7ad07 | 8134e49b7c40c1a489de2cd4e7b8855f328b0fac | /bvm/Shaders/fuddle/contract.h | d0228956171102e5790e8a5bbd2b04ec3388b79e | [
"Apache-2.0"
] | permissive | BeamMW/beam | 3efa193b22965397da26c1af2aebb2c045194d4d | 956a71ad4fedc5130cbbbced4359d38534f8a7a5 | refs/heads/master | 2023-09-01T12:00:09.204471 | 2023-08-31T09:22:40 | 2023-08-31T09:22:40 | 125,412,400 | 671 | 233 | Apache-2.0 | 2023-08-18T12:47:41 | 2018-03-15T18:49:06 | C++ | UTF-8 | C++ | false | false | 2,808 | h | #pragma once
namespace Fuddle
{
static const ShaderID s_SID = { 0x14,0x7b,0xf6,0x72,0xc2,0x26,0x21,0x39,0x9d,0xd4,0x9f,0x97,0x63,0x01,0xf5,0x63,0xaf,0x95,0x3a,0xca,0x49,0x25,0x1f,0x19,0xa8,0x64,0x4e,0x9d,0x44,0x2f,0x78,0x3f };
#pragma pack (push, 1)
struct Tags
{
static const uint8_t s_Global = 2;
static const uint8_t s_Payout = 3;
static const uint8_t s_Letter = 4;
static const uint8_t s_Goal = 5;
};
struct AmountWithAsset {
Amount m_Amount;
AssetID m_Aid;
};
struct Payout
{
struct Key
{
uint8_t m_Tag = Tags::s_Payout;
PubKey m_pkUser;
AssetID m_Aid;
};
Amount m_Amount;
};
struct Letter
{
typedef uint32_t Char;
struct Key
{
uint8_t m_Tag = Tags::s_Letter;
struct Raw {
PubKey m_pkUser;
Char m_Char;
} m_Raw;
};
uint32_t m_Count;
AmountWithAsset m_Price;
};
struct Goal
{
typedef uint32_t ID;
struct Key
{
uint8_t m_Tag = Tags::s_Goal;
ID m_ID;
};
static const uint32_t s_MaxLen = 256;
AmountWithAsset m_Prize;
// followed by Chars
};
struct GoalMax :public Goal {
Letter::Char m_pCh[s_MaxLen];
};
struct Config
{
PubKey m_pkAdmin;
};
struct State
{
static const uint8_t s_Key = Tags::s_Global;
Config m_Config;
Goal::ID m_Goals;
};
namespace Method
{
struct Init
{
static const uint32_t s_iMethod = 0;
Config m_Config;
};
struct Withdraw
{
static const uint32_t s_iMethod = 3;
PubKey m_pkUser;
AmountWithAsset m_Val;
};
struct SetPrice
{
static const uint32_t s_iMethod = 4;
Letter::Key::Raw m_Key;
AmountWithAsset m_Price;
};
struct Buy
{
static const uint32_t s_iMethod = 5;
Letter::Key::Raw m_Key;
PubKey m_pkNewOwner;
};
struct Mint
{
static const uint32_t s_iMethod = 6;
Letter::Key::Raw m_Key;
uint32_t m_Count;
};
struct SetGoal
{
static const uint32_t s_iMethod = 7;
AmountWithAsset m_Prize;
uint32_t m_Len;
// followed by array of Chars
};
struct SolveGoal
{
static const uint32_t s_iMethod = 8;
PubKey m_pkUser;
Goal::ID m_iGoal;
};
} // namespace Method
#pragma pack (pop)
}
| [
"valdo@beam-mw.com"
] | valdo@beam-mw.com |
1d295cc1150e4cc6d88327a550302570445075e8 | 4019481ad68088df711ee89817b5fc4046407f20 | /PGSceneFinalProject/Mesh.hpp | eb6fcc23f4873a5b2b13994ebaf364cff6baedd5 | [] | no_license | MarcusGitAccount/OpenGL_Scene_Project_TerrainGeneration | 89d56761c6ef4c4ef15af1151c6533068466ef35 | 02a85c12302426edfcbed9645064b2f7b21b49af | refs/heads/master | 2020-12-01T15:39:39.671448 | 2020-01-11T21:18:33 | 2020-01-11T21:18:33 | 230,684,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | hpp | //
// Mesh.hpp
// Lab4
//
// Created by CGIS on 27/10/2016.
// Copyright © 2016 CGIS. All rights reserved.
//
#ifndef Mesh_hpp
#define Mesh_hpp
#include <stdio.h>
#include "glm/glm.hpp"
#include "GLEW/glew.h"
#include <string>
#include <vector>
#include "Shader.hpp"
namespace gps {
struct Vertex
{
glm::vec3 Position;
glm::vec3 Normal;
glm::vec2 TexCoords;
};
struct Texture
{
GLuint id;
//ambientTexture, diffuseTexture, specularTexture
std::string type;
std::string path;
};
struct Material
{
glm::vec3 ambient;
glm::vec3 diffuse;
glm::vec3 specular;
};
class Mesh
{
public:
std::vector<Vertex> vertices;
std::vector<GLuint> indices;
std::vector<Texture> textures;
Mesh();
Mesh(std::vector<Vertex> vertices, std::vector<GLuint> indices, std::vector<Texture> textures);
void Draw(gps::Shader shader);
private:
/* Render data */
GLuint VAO, VBO, EBO;
// Initializes all the buffer objects/arrays
void setupMesh();
};
}
#endif /* Mesh_hpp */
| [
"pop_marcus_98@yahoo.com"
] | pop_marcus_98@yahoo.com |
e19fe172ca77365c848aebdba7300eea9c806ab6 | be1ccd9d8a9fbf4e5527256ca5bd93ee2e24c51e | /Sources/common/erm/rendering/data_structs/IndexData.h | 213837e82d07fbd068523f9c081ade806fbc2a0f | [
"MIT"
] | permissive | JALB91/ERM | f0f56c6fa99ef3d43bfe5074663fe76a8d7d36d6 | 4e739301b87dfcde3c85d6f52a83f09c4f69565f | refs/heads/master | 2023-01-09T07:49:10.080693 | 2022-07-29T22:15:45 | 2022-07-29T22:15:45 | 171,048,441 | 5 | 1 | MIT | 2021-03-10T20:41:38 | 2019-02-16T20:26:31 | C++ | UTF-8 | C++ | false | false | 82 | h | #pragma once
#include <cstdint>
namespace erm {
typedef uint32_t IndexData;
}
| [
"damiano.calcagni@gmail.com"
] | damiano.calcagni@gmail.com |
7adfff0b073ab9b9513ca702389c9d3736e8bd5f | 908e429f6653179c2bce7545c4554ac94769a21f | /problem_solving/medium/lilys_homework.cpp | 4be122bc193f0e947e150d3798e891563a6a320b | [] | no_license | transeos/hackerrank | 80a98d0309eec3c27b3c6b2f7f289919f281314e | fea574ea3a818d4069947cf1eb93c0ac498d1171 | refs/heads/master | 2022-07-02T03:59:24.348850 | 2022-06-11T16:26:07 | 2022-06-11T16:26:07 | 186,157,157 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,251 | cpp | // -*- C++ -*-
//
//*****************************************************************
//
// hackerrank: https://www.hackerrank.com/challenges/lilys-homework/problem
//
// WARRANTY:
// Use all material in this file at your own risk.
//
// Created by Hiranmoy on 26/05/22.
//
//*****************************************************************
#include "utils.h"
#include <bits/stdc++.h>
#include <catch2/catch.hpp>
using std::cin;
using std::cout;
using std::endl;
using std::ofstream;
using std::string;
using std::vector;
/*
* Complete the 'lilysHomework' function below.
*
* The function is expected to return an INTEGER.
* The function accepts INTEGER_ARRAY arr as parameter.
*/
int32_t lilysHomework(vector<int> arr) {
return 0;
}
TEST_CASE("lilys_homework", "[problem_solving][medium][ToDo]") {
ofstream fout(getenv("OUTPUT_PATH"));
string n_temp;
getline(cin, n_temp);
int n = stoi(ltrim(rtrim(n_temp)));
string arr_temp_temp;
getline(cin, arr_temp_temp);
vector<string> arr_temp = split(rtrim(arr_temp_temp));
vector<int> arr(n);
for (int i = 0; i < n; i++) {
int arr_item = stoi(arr_temp[i]);
arr[i] = arr_item;
}
int result = lilysHomework(arr);
fout << result << "\n";
fout.close();
}
| [
"hiranmoy.iitkgp@gmail.com"
] | hiranmoy.iitkgp@gmail.com |
f95da86d6b35030daf52e5c432601a43bf381916 | 187c0aa39f9c6dc6f2b965274ee8ec7e02379034 | /Chapter 12/Problem 12.1/Problem_12_1.cc | 64a592fde700e47611fd6eb513a7f406c3c06a28 | [] | no_license | jl-1992/Cracking-The-Coding-Interview-Problems | deee71de58354b0c8893aea74f8e71c36177cd4c | 04df2061e5d3252e0e6b4494bf0979dd4a436039 | refs/heads/master | 2021-01-01T18:10:10.879918 | 2017-10-18T02:56:06 | 2017-10-18T02:56:06 | 98,267,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 397 | cc | #include <iostream>
#include <fstream>
using namespace std;
void print_last_k_lines(ifstream &in, int k){
string line;
int num_lines=0;
while(getline(in,line))
++num_lines;
in.clear();
in.seekg(0,ios::beg);
for(int i=0;i<num_lines;++i){
getline(in,line);
if(i>=num_lines-k)
cout << line << endl;
}
}
int main(){
ifstream in("Sample.txt");
print_last_k_lines(in,3);
return 0;
} | [
"joseph.earl.ludy@gmail.com"
] | joseph.earl.ludy@gmail.com |
2f4d66a7bd80bbefdfe255e47a23cb1d06f176c0 | 4c9716c0e708a4c8ddb5b63925f21f284701a42c | /code/btas/ctf-master/src/summation/spr_seq_sum.cxx | b10f86d4f4e62a56c52145d38be71a9cf6e0869b | [
"BSD-3-Clause"
] | permissive | shiyangdaisy23/tensor-contraction | 8564e97c820be07614d9f821210c8ea99533b4c6 | cc79c5683da718dfc8735aea7f56fba36fb628b9 | refs/heads/master | 2021-01-16T18:24:02.409163 | 2017-08-11T20:45:48 | 2017-08-11T20:45:48 | 100,068,903 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,421 | cxx | #include "spr_seq_sum.h"
#include "../shared/iter_tsr.h"
#include "../shared/util.h"
namespace CTF_int{
template<int idim>
void spA_dnB_seq_sum_loop(char const * alpha,
ConstPairIterator & A,
int64_t & size_A,
algstrct const * sr_A,
char const * beta,
char *& B,
algstrct const * sr_B,
int order_B,
int64_t idx_B,
int const * edge_len_B,
int64_t const * lda_B,
int const * sym_B,
univar_function const * func){
int imax = edge_len_B[idim];
if (sym_B[idim] != NS) imax = (idx_B/lda_B[idim+1])%edge_len_B[idim+1];
for (int i=0; i<imax; i++){
//int nidx_B[order_B];
//memcpy(nidx_B, idx_B, order_B*sizeof(int));
spA_dnB_seq_sum_loop<idim-1>(alpha,A,size_A,sr_A,beta,B,sr_B,order_B,
idx_B+i*lda_B[idim],
edge_len_B, lda_B, sym_B, func);
}
}
template<>
void spA_dnB_seq_sum_loop<0>(char const * alpha,
ConstPairIterator & A,
int64_t & size_A,
algstrct const * sr_A,
char const * beta,
char *& B,
algstrct const * sr_B,
int order_B,
int64_t idx_B,
int const * edge_len_B,
int64_t const * lda_B,
int const * sym_B,
univar_function const * func){
int imax = edge_len_B[0];
if (sym_B[0] != NS) imax = (idx_B/lda_B[0+1])%edge_len_B[0+1];
for (int i=0; i<imax; i++){
while (size_A > 0 && idx_B == A.k()){
if (func == NULL){
if (sr_A->isequal(alpha, sr_A->mulid()) || alpha == NULL){
sr_B->add(A.d(), B, B);
} else {
char tmp[sr_A->el_size];
sr_A->mul(A.d(), alpha, tmp);
sr_B->add(tmp, B, B);
}
} else {
if (sr_A->isequal(alpha, sr_A->mulid()) || alpha == NULL){
func->acc_f(A.d(), B, sr_B);
} else {
char tmp[sr_A->el_size];
sr_A->mul(A.d(), alpha, tmp);
func->acc_f(tmp, B, sr_B);
}
}
A = A[1];
size_A--;
}
B += sr_B->el_size;
idx_B++;
}
}
template
void spA_dnB_seq_sum_loop< MAX_ORD >
(char const * alpha,
ConstPairIterator & A,
int64_t & size_A,
algstrct const * sr_A,
char const * beta,
char *& B,
algstrct const * sr_B,
int order_B,
int64_t idx_B,
int const * edge_len_B,
int64_t const * lda_B,
int const * sym_B,
univar_function const * func);
void spA_dnB_seq_sum(char const * alpha,
char const * A,
int64_t size_A,
algstrct const * sr_A,
char const * beta,
char * B,
algstrct const * sr_B,
int order_B,
int const * edge_len_B,
int const * sym_B,
univar_function const * func){
TAU_FSTART(spA_dnB_seq_sum);
if (order_B == 0){
if (!sr_B->isequal(beta, sr_B->mulid())){
sr_B->mul(beta, B, B);
}
ConstPairIterator pi(sr_A, A);
for (int64_t i=0; i<size_A; i++){
char tmp_buf[sr_A->el_size];
char const * tmp_ptr;
if (alpha != NULL){
sr_A->mul(alpha, pi[i].d(), tmp_buf);
tmp_ptr = tmp_buf;
} else tmp_ptr = pi[i].d();
if (func != NULL){
func->acc_f(tmp_ptr, B, sr_B);
} else {
sr_B->add(tmp_ptr, B, B);
}
}
} else {
int64_t sz_B = sy_packed_size(order_B, edge_len_B, sym_B);
if (!sr_B->isequal(beta, sr_B->mulid())){
if (sr_B->isequal(beta, sr_B->addid()) || sr_B->isequal(beta, NULL))
sr_B->set(B, sr_B->addid(), sz_B);
else
sr_B->scal(sz_B, beta, B, 1);
}
int64_t lda_B[order_B];
for (int i=0; i<order_B; i++){
if (i==0) lda_B[i] = 1;
else lda_B[i] = lda_B[i-1]*edge_len_B[i-1];
}
ASSERT(order_B<=MAX_ORD);
ConstPairIterator pA(sr_A, A);
int64_t idx = 0;
SWITCH_ORD_CALL(spA_dnB_seq_sum_loop, order_B-1, alpha, pA, size_A, sr_A, beta, B, sr_B, order_B, idx, edge_len_B, lda_B, sym_B, func);
}
TAU_FSTOP(spA_dnB_seq_sum);
}
void dnA_spB_seq_sum(char const * alpha,
char const * A,
algstrct const * sr_A,
int order_A,
int const * edge_len_A,
int const * sym_A,
char const * beta,
char const * B,
int64_t size_B,
char *& new_B,
int64_t & new_size_B,
algstrct const * sr_B,
univar_function const * func){
printf("not implted\n");
assert(0);
}
/**
* \brief As pairs in a sparse A set to the
* sparse set of elements defining the tensor,
* resulting in a set of size between nB and nB+nA
* \param[in] sr algstrct defining data type of array
* \param[in] nB number of elements in sparse tensor
* \param[in] prs_B pairs of the sparse tensor
* \param[in] beta scaling factor for data of the sparse tensor
* \param[in] nA number of elements in the A set
* \param[in] prs_A pairs of the A set
* \param[in] alpha scaling factor for data of the A set
* \param[out] nnew number of elements in resulting set
* \param[out] pprs_new char array containing the pairs of the resulting set
* \param[in] func NULL or pointer to a function to apply elementwise
* \param[in] map_pfx how many times each element of A should be replicated
*/
void spspsum(algstrct const * sr_A,
int64_t nA,
ConstPairIterator prs_A,
char const * beta,
algstrct const * sr_B,
int64_t nB,
ConstPairIterator prs_B,
char const * alpha,
int64_t & nnew,
char *& pprs_new,
univar_function const * func,
int64_t map_pfx){
// determine how many unique keys there are in prs_tsr and prs_Write
nnew = nB;
for (int64_t t=0,ww=0; ww<nA*map_pfx; ww++){
while (ww<nA*map_pfx){
int64_t w = ww/map_pfx;
int64_t mw = ww%map_pfx;
if (t<nB && prs_B[t].k() < prs_A[w].k()*map_pfx+mw)
t++;
else if (t<nB && prs_B[t].k() == prs_A[w].k()*map_pfx+mw){
t++;
ww++;
} else {
//ASSERT(map_pfx == 1);
if (map_pfx != 1 || ww==0 || prs_A[ww-1].k() != prs_A[ww].k())
nnew++;
ww++; w=ww;
}
}
}
// printf("nB = %ld nA = %ld nnew = %ld\n",nB,nA,nnew);
alloc_ptr(sr_B->pair_size()*nnew, (void**)&pprs_new);
PairIterator prs_new(sr_B, pprs_new);
// each for loop computes one new value of prs_new
// (multiple writes may contribute to it),
// t, w, and n are incremented within
// only incrementing r allows multiple writes of the same val
for (int64_t t=0,ww=0,n=0; n<nnew; n++){
int64_t w = ww/map_pfx;
int64_t mw = ww%map_pfx;
if (t<nB && (w==nA || prs_B[t].k() < prs_A[w].k()*map_pfx+mw)){
memcpy(prs_new[n].ptr, prs_B[t].ptr, sr_B->pair_size());
if (beta != NULL)
sr_B->mul(prs_B[t].d(), beta, prs_new[n].d());
t++;
} else {
if (t>=nB || prs_B[t].k() > prs_A[w].k()*map_pfx+mw){
if (func == NULL){
if (map_pfx == 1){
memcpy(prs_new[n].ptr, prs_A[w].ptr, sr_A->pair_size());
} else {
((int64_t*)prs_new[n].ptr)[0] = prs_A[w].k()*map_pfx+mw;
prs_new[n].write_val(prs_A[w].d());
}
if (alpha != NULL)
sr_A->mul(prs_new[n].d(), alpha, prs_new[n].d());
} else {
//((int64_t*)prs_new[n].ptr)[0] = prs_A[w].k();
((int64_t*)prs_new.ptr)[0] = prs_A[w].k()*map_pfx+mw;
if (alpha != NULL){
char a[sr_A->el_size];
sr_A->mul(prs_A[w].d(), alpha, a);
func->apply_f(a, prs_new[n].d());
}
}
ww++;
} else {
char a[sr_A->el_size];
char b[sr_B->el_size];
if (alpha != NULL){
sr_A->mul(prs_A[w].d(), alpha, a);
} else {
prs_A[w].read_val(a);
}
if (beta != NULL){
sr_B->mul(prs_B[t].d(), beta, b);
} else {
prs_B[t].read_val(b);
}
if (func == NULL)
sr_B->add(a, b, b);
else
func->acc_f(a, b, sr_B);
prs_new[n].write_val(b);
((int64_t*)(prs_new[n].ptr))[0] = prs_B[t].k();
t++;
ww++;
}
// accumulate any repeated key writes
while (map_pfx == 1 && ww > 0 && ww<nA && prs_A[ww].k() == prs_A[ww-1].k()){
if (alpha != NULL){
char a[sr_A->el_size];
sr_A->mul(prs_A[ww].d(), alpha, a);
if (func == NULL)
sr_B->add(prs_new[n].d(), a, prs_new[n].d());
else
func->acc_f(a, prs_new[n].d(), sr_B);
} else {
if (func == NULL)
sr_B->add(prs_new[n].d(), prs_A[ww].d(), prs_new[n].d());
else
func->acc_f(prs_A[ww].d(), prs_new[n].d(), sr_B);
}
ww++; w=ww;
}
}
/*printf("%ldth value is ", n);
sr_B->print(prs_new[n].d());
printf(" with key %ld\n",prs_new[n].k());*/
}
}
void spA_spB_seq_sum(char const * alpha,
char const * A,
int64_t size_A,
algstrct const * sr_A,
char const * beta,
char * B,
int64_t size_B,
char *& new_B,
int64_t & new_size_B,
algstrct const * sr_B,
univar_function const * func,
int64_t map_pfx){
/* if (!sr_B->isequal(beta, sr_B->mulid())){
printf("scaling B by 0\n");
sr_B->scal(size_B, beta, B, 1);
}*/
spspsum(sr_A, size_A, ConstPairIterator(sr_A, A), beta,
sr_B, size_B, ConstPairIterator(sr_B, B),alpha,
new_size_B, new_B, func, map_pfx);
}
}
| [
"shiyangdaisy@126.com"
] | shiyangdaisy@126.com |
77e74c71b91ae41b55668349d87a6abc1a60c496 | 74d22b45e00527d6331dab77431e8e15d71e9e2c | /src/Sudoku.h | 4fa45737f60fb3e11c470875b2306d6b7e6d8e2a | [] | no_license | mviseu/Sudoku | 125ca10c2ebe5e7819403343223df07691d97ed0 | 5a156499ae0e3c10d1e92d49ad91aec0f083c125 | refs/heads/master | 2021-01-22T07:58:30.309119 | 2018-08-25T12:38:40 | 2018-08-25T12:38:40 | 92,592,223 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,160 | h | #pragma once
#include "Matrix.h"
#include <iostream>
#include <vector>
using std::cout;
using std::endl;
using std::ostream;
using std::vector;
class Sudoku {
private:
using v_int = vector<int>;
using vv_int = vector<vector<int>>;
public:
Sudoku() = default;
Sudoku(const vv_int &vv) : data(vv) {originalGrid = getOriginalPositions();}
const Sudoku &printSudoku() const;
Sudoku &printSudoku();
Sudoku &playOneMove();
bool isGameOver() const;
private:
Matrix data;
vector<Point> originalGrid;
vector<Point> getOriginalPositions() const;
void printRow(const v_int &row) const;
Sudoku &doPrintSudoku() const;
void readValidElementFromCin();
void readValidPositionFromCin();
Sudoku &readPositionAndElementFromCin();
bool isDuplicateInRow() const;
bool isDuplicateInColumn() const;
bool isDuplicateInSubSquare() const;
bool isDuplicateInRowOrColumnOrSubSquare() const;
bool isValueDuplicateOfCursorElement(int cursorIndex, v_int::const_iterator Beg, v_int::const_iterator iter) const;
bool isDuplicateInCursorVector(int cursorIndex, const vector<int> &v) const;
void warnDuplicateMove() const;
const short nrRows = 9;
};
| [
"mariaviseu@gmail.com"
] | mariaviseu@gmail.com |
655a6fb7ad918c70f5c64ccb4ed555943d883f13 | 948d555823c2d123601ff6c149869be377521282 | /SDK/SoT_SlateReflector_classes.hpp | e40314c89d70b7d3e93185eefcb57c06b0e52ee6 | [] | no_license | besimbicer89/SoT-SDK | 2acf79303c65edab01107ab4511e9b9af8ab9743 | 3a4c6f3b77c1045b7ef0cddd064350056ef7d252 | refs/heads/master | 2022-04-24T01:03:37.163407 | 2020-04-27T12:45:47 | 2020-04-27T12:45:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,676 | hpp | #pragma once
// SeaOfThieves (1.6.4) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// Class SlateReflector.WidgetReflectorNodeBase
// 0x0058 (0x0080 - 0x0028)
class UWidgetReflectorNodeBase : public UObject
{
public:
struct FGeometry Geometry; // 0x0028(0x0034) (IsPlainOldData)
unsigned char UnknownData00[0x4]; // 0x005C(0x0004) MISSED OFFSET
TArray<class UWidgetReflectorNodeBase*> ChildNodes; // 0x0060(0x0010) (ZeroConstructor)
struct FLinearColor Tint; // 0x0070(0x0010) (ZeroConstructor, IsPlainOldData)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class SlateReflector.WidgetReflectorNodeBase");
return ptr;
}
};
// Class SlateReflector.LiveWidgetReflectorNode
// 0x0018 (0x0098 - 0x0080)
class ULiveWidgetReflectorNode : public UWidgetReflectorNodeBase
{
public:
unsigned char UnknownData00[0x18]; // 0x0080(0x0018) MISSED OFFSET
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class SlateReflector.LiveWidgetReflectorNode");
return ptr;
}
};
// Class SlateReflector.SnapshotWidgetReflectorNode
// 0x0118 (0x0198 - 0x0080)
class USnapshotWidgetReflectorNode : public UWidgetReflectorNodeBase
{
public:
struct FText CachedWidgetType; // 0x0080(0x0038)
struct FText CachedWidgetVisibilityText; // 0x00B8(0x0038)
struct FText CachedWidgetReadableLocation; // 0x00F0(0x0038)
struct FString CachedWidgetFile; // 0x0128(0x0010) (ZeroConstructor)
int CachedWidgetLineNumber; // 0x0138(0x0004) (ZeroConstructor, IsPlainOldData)
struct FName CachedWidgetAssetName; // 0x013C(0x0008) (ZeroConstructor, IsPlainOldData)
struct FVector2D CachedWidgetDesiredSize; // 0x0144(0x0008) (ZeroConstructor, IsPlainOldData)
unsigned char UnknownData00[0x4]; // 0x014C(0x0004) MISSED OFFSET
struct FSlateColor CachedWidgetForegroundColor; // 0x0150(0x0030)
struct FString CachedWidgetAddress; // 0x0180(0x0010) (ZeroConstructor)
bool CachedWidgetEnabled; // 0x0190(0x0001) (ZeroConstructor, IsPlainOldData)
unsigned char UnknownData01[0x7]; // 0x0191(0x0007) MISSED OFFSET
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class SlateReflector.SnapshotWidgetReflectorNode");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"getpeyton@gmail.com"
] | getpeyton@gmail.com |
7e6d09a1c84e427e99dbd6d9ecb3e9a6c5f10be4 | 09aa1eb41c319fc1e2aa7206f0386594de198c0b | /内積の課題_01/Question/game/stdafx.h | cb6765f4b08631f8a06ecdfefc0436a989a91b3e | [] | no_license | nezumimusume/DirectX_2 | 7d22e155b9790ab07ac97481e68b3ae7a4f0d6b2 | ba4b76250b86ca09bb2a1be294e5f1b19030a09f | refs/heads/master | 2023-07-22T18:42:17.647383 | 2018-04-16T13:04:08 | 2018-04-16T13:04:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 411 | h | #pragma once
#include <d3d9.h>
#include <d3dx9effect.h>
#pragma warning( disable : 4996 )
#include <strsafe.h>
#pragma warning( default : 4996 )
#include <cstdlib>
#include <memory>
#include <vector>
#include <list>
#include <map>
#include "lib/System.h"
#include "lib/Camera.h"
#include "lib/SkinModel.h"
#include "lib/SkinModelData.h"
#include "lib/Animation.h"
#include "lib/Light.h"
#include "lib/util.h"
| [
"nezumimusume30@gmail.com"
] | nezumimusume30@gmail.com |
14d3f451d7bd2af9c11f2cffb6b8d5fe7d4c55cb | 3acf1a58ff5f88f4723f02dd911fb5820b7bbc1f | /Import/Import/OLD/Import 0.1.cpp | ed4a9b0e86625ea45ad40bb9e3813a22a1c9784f | [] | no_license | xiangbin1997/Facebull-1 | e378f339c4df692f9b64096a9c4f7140be4c68b0 | 1f484e192916a8eb92df93467a71669e799f472a | refs/heads/master | 2021-01-12T03:52:41.366061 | 2011-07-13T16:18:29 | 2011-07-13T16:18:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,740 | cpp | // Import.cpp : Defines the entry point for the console application.
//
#include "stdlib.h"
//#include "stdio.h"
#include "stdafx.h"
#include "line_count.h"
//#include "lookup_store.cpp"
//#ifndef FILE_IN "D:\\Matlab\\Assigments\\MATLAB\\Facebull\\06_3.in"
//#define FILE_IN "D:\\Matlab\\Assigments\\MATLAB\\Facebull\\06_3.in"
//#endif
//int *lookup_pointer;
//static int no_of_lines=0;
int main(int argc, _TCHAR* argv[])
{
int newMachine, a, newSource, newTarget, newCost, c, n;
FILE *file_pointer;
n=0;
file_pointer=fopen(FILE_IN,"r");
no_of_lines=line_count();
// Main part; Reads a line and calls lookup_store
rewind(file_pointer);
//// Initialise dummy node of lookup table; head is the pointer to the first node in the list
struct arc* head = initialise_lookup();
struct arc* tail = head;
while (c=getc(file_pointer) != EOF){
if (n++==0) {
ungetc(c,file_pointer);}
fscanf(file_pointer, "%*c");
if (fscanf(file_pointer, "%d", &newMachine) == EOF){break;}
fscanf(file_pointer, "%*1s");
fscanf(file_pointer, "%d", &newSource);
fscanf(file_pointer, "%*1s");
fscanf(file_pointer, "%d", &newTarget);
fscanf(file_pointer, "%d", &newCost);
printf("%d %s", head, "\n" );
head = lookup_store(head, newMachine, newSource, newTarget, newCost);
}
///////////////////////////// To disp whole list, iterate through
struct arc* head_temp=head;
for (int i=0; i<no_of_lines; i++){
printf("%d %d %d %d %s", (*head_temp).machine, (*head_temp).source, (*head_temp).target, (*head_temp).cost, "\n");
head_temp = (*head_temp).next;
}
head_temp=head;
////////////////////////////////////////////////////////
scanf("%d", &a);
fclose(file_pointer);
return 0;
}
| [
"a.f.gaungoo@gmail.com"
] | a.f.gaungoo@gmail.com |
422045acc635f61e9a703c3501eb5c34ea6e9306 | 61337b745c1ed7495df499248793e08998497cba | /web_server/Entry.h | eed07074afd6242976b9118ad93d5f895f0ece21 | [] | no_license | serifycode/web_server | bd7874d4ce52addde9281c1ad47ade78d9e62b60 | fc0e0eb78b312259d673fb1dc2f8f588f20bbdd2 | refs/heads/master | 2021-02-13T18:11:45.542375 | 2020-04-06T14:39:32 | 2020-04-06T14:39:32 | 244,717,485 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | h | //弱指针保存connection,析构时shutdown
#ifndef ENTRY_H
#define ENTRY_H
#include "TcpConnection.h"
#include "copyable.h"
#include <memory>
class Entry : public copyable
{
public:
explicit Entry(const WeakTcpConnectionPtr& weakcon)
:weakcon_(weakcon)
{}
~Entry()
{
TcpConnectionPtr conn=weakcon_.lock();
if(conn)
conn->Shutdown();//跨线程
}
public:
WeakTcpConnectionPtr weakcon_;
};
typedef std::shared_ptr<Entry> EntryPtr;
typedef std::weak_ptr<Entry> WeakEntryPtr;
#endif | [
"2573654221@qq.com"
] | 2573654221@qq.com |
2d82f9af56bd8788534de8d2b424dd134cfa5639 | 05b78e1d23b44b5e1140bdfd809cb05fd669b235 | /code_cpp/engine_objects/mesh.h | 35c82413923edb6477e732a5e1cf3fceb4239fdc | [] | no_license | nasoym/fall_again_fall_better_engine | f0bdbd9bb30232cfaaa0a756016c4002f99f6ae5 | 0cc77d8f1f8a7f2634047591d0a1081aa8026180 | refs/heads/master | 2021-01-16T21:48:28.362945 | 2014-12-10T20:20:42 | 2014-12-10T20:20:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,987 | h | #ifndef _MESH_H
#define _MESH_H
#include <Ogre.h>
using namespace Ogre;
#include <vector>
#include <string>
#include "gui_shape.h"
class Engine;
class GuiContainer;
class Actor;
struct BoneBody {
Bone* bone;
Actor* body;
Joint*joint;
GuiContainer* container;
BoneBody(Bone* b) : bone(b),body(0),joint(0), container(0) {}
};
class MeshObject : public GuiShape {
public:
MeshObject(Engine*,const char*);
//virtual ~MeshObject();
virtual MeshObject* isMesh(){return this;}
virtual ObjectType getType(){ return MESH;}
void setupAllBones();
virtual void guiUpdate();
void updateBone(Bone* bone);
Bone* findRootBone();
Bone* getBoneParent(Bone* bone);
void boneSetPosition(Bone* bone,Vec3 vec3);
void boneSetOrientation(Bone* bone,Quat quat,bool rotated=true);
Actor* getBodyOfBone(Bone* bone);
Joint* getJointOfBone(Bone* bone);
Bone* getBoneOfBody(Actor* body);
void setBodyForBone(Bone* bone,Actor* body);
void setJointForBone(Bone* bone,Joint* joint);
Bone* getBoneFromName(std::string boneName);
Bone* getRootBone(){return mRootBone;}
//Debug
void setContainerForBone(Bone* bone,GuiContainer* container);
GuiContainer* getContainerOfBone(Bone* bone);
void createAllDebugObjects();
void createDebugForBone(Bone* bone);
// Python Api
std::string getFileName(){return mMeshFileName;}
int getNumberOfBones();
Actor* getBodyByIndex(int);
Joint* getJointByIndex(int);
std::string getBoneNameByIndex(int);
Actor* getBodyOfBoneName(std::string);
Joint* getJointOfBoneName(std::string);
void setBodyForBoneName(std::string,Actor*);
void setJointForBoneName(std::string,Joint*);
Vec3 getBoneNamePosition(std::string);
Quat getBoneNameOrientation(std::string,bool rotated=true);
float getBoneNameSize(std::string);
std::string getBoneNameParentName(std::string);
int getBoneNameChildren(std::string);
Vec3 getBoneNameLocalPosition(std::string);
Quat getBoneNameLocalOrientation(std::string);
std::string getBoneNameChildName(std::string boneName,int index);
std::string getRootBoneName(){return mRootBone->getName();}
Vec3 getMeshScale();
Vec3 getBonePosition(Bone* bone);
Quat getBoneOrientation(Bone* bone,bool rotated=true);
float getBoneSize(Bone* bone);
void calcLocalPosOfRootBone();
void setLocalPos(Vec3 vec){mLocalPos = vec;}
void setLocalQuat(Quat quat){mLocalQuat = quat;}
Vec3 getLocalPos(){ return mLocalPos;}
Quat getLocalQuat(){ return mLocalQuat;}
void setRotationX(float val){mRotationX=val;}
void setRotationY(float val){mRotationY=val;}
void setRotationZ(float val){mRotationZ=val;}
private:
std::vector<BoneBody> mBoneBodies;
Bone* mRootBone;
Vec3 mLocalPos;
Quat mLocalQuat;
std::string mMeshFileName;
GuiContainer* mRootShape;
float mRotationX;
float mRotationY;
float mRotationZ;
};
#endif
| [
"sinan@test.tmp"
] | sinan@test.tmp |
6be5b577afbc5eddfb46e08cba073ea79cf0c264 | e46bd22112c15d9558ad9531deef183849636d62 | /UVA/Volume 118 (11800 - 11899)/11835 - Formula 1.cpp | f870e23bf4bca5bbf43135350c0dcb1ccd7bbb92 | [] | no_license | jariasf/Online-Judges-Solutions | 9082b89cc6d572477dbfb89ddd42f81ecdb2859a | 81745281bd0099b8d215754022e1818244407721 | refs/heads/master | 2023-04-29T20:56:32.925487 | 2023-04-21T04:59:27 | 2023-04-21T04:59:27 | 11,259,169 | 34 | 43 | null | 2020-10-01T01:41:21 | 2013-07-08T16:23:08 | C++ | UTF-8 | C++ | false | false | 1,463 | cpp | /*****************************************
***Problema: Formula 1
***ID: 11835
***Juez: UVA
***Tipo: Ad hoc
***Autor: Jhosimar George Arias Figueroa
******************************************/
#include <stdio.h>
#include <cstring>
#define MAX 108
int main(){
int g , n , s , k;
int a[ MAX ] , position[ 105 ][ MAX ] , points[ MAX ];
while( scanf("%d %d" , &g , &n ) , g|n ){
for( int j = 0 ; j < g ; ++j ){
for( int i = 0 ; i < n ; ++i ){
scanf("%d" , &position[ j ][ i ] );
}
}
scanf("%d" , &s );
while( s-- ){
scanf("%d" , &k );
memset( points , 0 , sizeof( points ) );
memset( a , 0 , sizeof( a ) );
for( int i = 0 ; i < k ; ++i ) scanf("%d" , &points[ i ]);
for( int i = 0 ; i < g ; ++i ){
for( int j = 0 ; j < n ; ++j ){
a[ j ] += points[ position[ i ][ j ] - 1 ];
}
}
int maxi = 0;
for( int i = 0 ; i < n ; ++i ){
if( a[ i ] > maxi ) maxi = a[ i ];
}
bool first = true;
for( int i = 0 ; i < n ; ++i ){
if( a[ i ] == maxi ){
if( !first ) printf(" ");
printf("%d" , i + 1 );
first = false;
}
}
printf("\n");
}
}
return 0;
}
| [
"jariasf03@gmail.com"
] | jariasf03@gmail.com |
cc215483a32f91b8847f46ef8303310c272f6132 | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/skia/tests/RasterPipelineBuilderTest.cpp | 93b54048cc6c42864eb234f96380ffa074f22209 | [
"BSD-3-Clause",
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 40,214 | cpp | /*
* Copyright 2022 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/core/SkStream.h"
#include "src/base/SkArenaAlloc.h"
#include "src/base/SkStringView.h"
#include "src/core/SkOpts.h"
#include "src/core/SkRasterPipeline.h"
#include "src/sksl/codegen/SkSLRasterPipelineBuilder.h"
#include "src/sksl/tracing/SkSLDebugTracePriv.h"
#include "tests/Test.h"
#ifdef SK_ENABLE_SKSL_IN_RASTER_PIPELINE
static sk_sp<SkData> get_program_dump(SkSL::RP::Program& program) {
SkDynamicMemoryWStream stream;
program.dump(&stream);
return stream.detachAsData();
}
static std::string_view as_string_view(sk_sp<SkData> dump) {
return std::string_view(static_cast<const char*>(dump->data()), dump->size());
}
static void check(skiatest::Reporter* r, SkSL::RP::Program& program, std::string_view expected) {
// Verify that the program matches expectations.
sk_sp<SkData> dump = get_program_dump(program);
REPORTER_ASSERT(r, as_string_view(dump) == expected,
"Output did not match expectation:\n%.*s",
(int)dump->size(), static_cast<const char*>(dump->data()));
}
static SkSL::RP::SlotRange one_slot_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 1};
}
static SkSL::RP::SlotRange two_slots_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 2};
}
static SkSL::RP::SlotRange three_slots_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 3};
}
static SkSL::RP::SlotRange four_slots_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 4};
}
static SkSL::RP::SlotRange five_slots_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 5};
}
static SkSL::RP::SlotRange ten_slots_at(SkSL::RP::Slot index) {
return SkSL::RP::SlotRange{index, 10};
}
DEF_TEST(RasterPipelineBuilder, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.store_src_rg(two_slots_at(0));
builder.store_src(four_slots_at(2));
builder.store_dst(four_slots_at(4));
builder.store_device_xy01(four_slots_at(6));
builder.init_lane_masks();
builder.enableExecutionMaskWrites();
builder.mask_off_return_mask();
builder.mask_off_loop_mask();
builder.reenable_loop_mask(one_slot_at(4));
builder.disableExecutionMaskWrites();
builder.load_src(four_slots_at(1));
builder.load_dst(four_slots_at(3));
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/10,
/*numUniformSlots=*/0);
check(r, *program,
R"(store_src_rg v0..1 = src.rg
store_src v2..5 = src.rgba
store_dst v4..7 = dst.rgba
store_device_xy01 v6..9 = DeviceCoords.xy01
init_lane_masks CondMask = LoopMask = RetMask = true
mask_off_return_mask RetMask &= ~(CondMask & LoopMask & RetMask)
mask_off_loop_mask LoopMask &= ~(CondMask & LoopMask & RetMask)
reenable_loop_mask LoopMask |= v4
load_src src.rgba = v1..4
load_dst dst.rgba = v3..6
)");
}
DEF_TEST(RasterPipelineBuilderPushPopMaskRegisters, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
REPORTER_ASSERT(r, !builder.executionMaskWritesAreEnabled());
builder.enableExecutionMaskWrites();
REPORTER_ASSERT(r, builder.executionMaskWritesAreEnabled());
builder.push_condition_mask(); // push into 0
builder.push_loop_mask(); // push into 1
builder.push_return_mask(); // push into 2
builder.merge_condition_mask(); // set the condition-mask to 1 & 2
builder.merge_inv_condition_mask(); // set the condition-mask to 1 & ~2
builder.pop_condition_mask(); // pop from 2
builder.merge_loop_mask(); // mask off the loop-mask against 1
builder.push_condition_mask(); // push into 2
builder.pop_condition_mask(); // pop from 2
builder.pop_loop_mask(); // pop from 1
builder.pop_return_mask(); // pop from 0
builder.push_condition_mask(); // push into 0
builder.pop_and_reenable_loop_mask(); // pop from 0
REPORTER_ASSERT(r, builder.executionMaskWritesAreEnabled());
builder.disableExecutionMaskWrites();
REPORTER_ASSERT(r, !builder.executionMaskWritesAreEnabled());
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(store_condition_mask $0 = CondMask
store_loop_mask $1 = LoopMask
store_return_mask $2 = RetMask
merge_condition_mask CondMask = $1 & $2
merge_inv_condition_mask CondMask = $1 & ~$2
load_condition_mask CondMask = $2
merge_loop_mask LoopMask &= $1
store_condition_mask $2 = CondMask
load_condition_mask CondMask = $2
load_loop_mask LoopMask = $1
load_return_mask RetMask = $0
store_condition_mask $0 = CondMask
reenable_loop_mask LoopMask |= $0
)");
}
DEF_TEST(RasterPipelineBuilderCaseOp, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_constant_i(123); // push a test value
builder.push_constant_i(~0); // push an all-on default mask
builder.case_op(123); // do `case 123:`
builder.case_op(124); // do `case 124:`
builder.discard_stack(2);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_constant $0 = 0x0000007B (1.723597e-43)
copy_constant $1 = 0xFFFFFFFF
case_op if ($0 == 0x0000007B) { LoopMask = true; $1 = false; }
case_op if ($0 == 0x0000007C) { LoopMask = true; $1 = false; }
)");
}
DEF_TEST(RasterPipelineBuilderPushPopSrcDst, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_src_rgba();
builder.push_dst_rgba();
builder.pop_src_rgba();
builder.exchange_src();
builder.exchange_src();
builder.exchange_src();
builder.pop_dst_rgba();
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(store_src $0..3 = src.rgba
store_dst $4..7 = dst.rgba
load_src src.rgba = $4..7
exchange_src swap(src.rgba, $0..3)
load_dst dst.rgba = $0..3
)");
}
DEF_TEST(RasterPipelineBuilderInvokeChild, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.invoke_shader(1);
builder.invoke_color_filter(2);
builder.invoke_blender(3);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(invoke_shader invoke_shader 0x00000001
invoke_color_filter invoke_color_filter 0x00000002
invoke_blender invoke_blender 0x00000003
)");
}
DEF_TEST(RasterPipelineBuilderPushPopTempImmediates, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.set_current_stack(1);
builder.push_constant_i(999); // push into 2
builder.set_current_stack(0);
builder.push_constant_f(13.5f); // push into 0
builder.push_clone_from_stack(one_slot_at(0), /*otherStackID=*/1, /*offsetFromStackTop=*/1);
// push into 1 from 2
builder.discard_stack(1); // discard 2
builder.push_constant_u(357); // push into 2
builder.set_current_stack(1);
builder.push_clone_from_stack(one_slot_at(0), /*otherStackID=*/0, /*offsetFromStackTop=*/1);
// push into 3 from 0
builder.discard_stack(2); // discard 2 and 3
builder.set_current_stack(0);
builder.push_constant_f(1.2f); // push into 2
builder.pad_stack(3); // pad slots 3,4,5
builder.push_constant_f(3.4f); // push into 6
builder.discard_stack(7); // discard 0 through 6
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/1,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_constant $2 = 0x000003E7 (1.399897e-42)
copy_constant $0 = 0x41580000 (13.5)
copy_constant $1 = 0x00000165 (5.002636e-43)
)");
}
DEF_TEST(RasterPipelineBuilderPushPopIndirect, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.set_current_stack(1);
builder.push_constant_i(3);
builder.set_current_stack(0);
builder.push_slots_indirect(two_slots_at(0), /*dynamicStack=*/1, ten_slots_at(0));
builder.push_slots_indirect(four_slots_at(10), /*dynamicStack=*/1, ten_slots_at(10));
builder.push_uniform_indirect(one_slot_at(0), /*dynamicStack=*/1, five_slots_at(0));
builder.push_uniform_indirect(three_slots_at(5), /*dynamicStack=*/1, five_slots_at(5));
builder.swizzle_copy_stack_to_slots_indirect(three_slots_at(6), /*dynamicStackID=*/1,
ten_slots_at(0), {2, 1, 0},
/*offsetFromStackTop=*/3);
builder.copy_stack_to_slots_indirect(three_slots_at(4), /*dynamicStackID=*/1, ten_slots_at(0));
builder.pop_slots_indirect(five_slots_at(0), /*dynamicStackID=*/1, ten_slots_at(0));
builder.pop_slots_indirect(five_slots_at(10), /*dynamicStackID=*/1, ten_slots_at(10));
builder.set_current_stack(1);
builder.discard_stack(1);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/20,
/*numUniformSlots=*/10);
check(r, *program,
R"(copy_constant $10 = 0x00000003 (4.203895e-45)
copy_from_indirect_unmasked $0..1 = Indirect(v0..1 + $10)
copy_from_indirect_unmasked $2..5 = Indirect(v10..13 + $10)
copy_from_indirect_uniform_unm $6 = Indirect(u0 + $10)
copy_from_indirect_uniform_unm $7..9 = Indirect(u5..7 + $10)
swizzle_copy_to_indirect_maske Indirect(v6..8 + $10).zyx = Mask($7..9)
copy_to_indirect_masked Indirect(v4..6 + $10) = Mask($7..9)
copy_to_indirect_masked Indirect(v0..4 + $10) = Mask($5..9)
copy_to_indirect_masked Indirect(v10..14 + $10) = Mask($0..4)
)");
}
DEF_TEST(RasterPipelineBuilderCopySlotsMasked, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.copy_slots_masked(two_slots_at(0), two_slots_at(2));
builder.copy_slots_masked(four_slots_at(1), four_slots_at(5));
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/9,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_2_slots_masked v0..1 = Mask(v2..3)
copy_4_slots_masked v1..4 = Mask(v5..8)
)");
}
DEF_TEST(RasterPipelineBuilderCopySlotsUnmasked, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.copy_slots_unmasked(three_slots_at(0), three_slots_at(2));
builder.copy_slots_unmasked(five_slots_at(1), five_slots_at(5));
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/10,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_3_slots_unmasked v0..2 = v2..4
copy_4_slots_unmasked v1..4 = v5..8
copy_slot_unmasked v5 = v9
)");
}
DEF_TEST(RasterPipelineBuilderPushPopSlots, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_slots(four_slots_at(10)); // push from 10~13 into $0~$3
builder.copy_stack_to_slots(one_slot_at(5), 3); // copy from $1 into 5
builder.pop_slots_unmasked(two_slots_at(20)); // pop from $2~$3 into 20~21 (unmasked)
builder.enableExecutionMaskWrites();
builder.copy_stack_to_slots_unmasked(one_slot_at(4), 2); // copy from $0 into 4
builder.push_slots(three_slots_at(30)); // push from 30~32 into $2~$4
builder.pop_slots(five_slots_at(0)); // pop from $0~$4 into 0~4 (masked)
builder.disableExecutionMaskWrites();
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/50,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_4_slots_unmasked $0..3 = v10..13
copy_slot_unmasked v5 = $1
copy_2_slots_unmasked v20..21 = $2..3
copy_slot_unmasked v4 = $0
copy_3_slots_unmasked $2..4 = v30..32
copy_4_slots_masked v0..3 = Mask($0..3)
copy_slot_masked v4 = Mask($4)
)");
}
DEF_TEST(RasterPipelineBuilderDuplicateSelectAndSwizzleSlots, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_constant_f(1.0f); // push into 0
builder.push_duplicates(1); // duplicate into 1
builder.push_duplicates(2); // duplicate into 2~3
builder.push_duplicates(3); // duplicate into 4~6
builder.push_duplicates(5); // duplicate into 7~11
builder.select(4); // select from 4~7 and 8~11 into 4~7
builder.select(3); // select from 2~4 and 5~7 into 2~4
builder.select(1); // select from 3 and 4 into 3
builder.swizzle_copy_stack_to_slots(four_slots_at(1), {3, 2, 1, 0}, 4);
builder.swizzle_copy_stack_to_slots(four_slots_at(0), {0, 1, 3}, 3);
builder.swizzle(4, {3, 2, 1, 0}); // reverse the order of 0~3 (value.wzyx)
builder.swizzle(4, {1, 2}); // eliminate elements 0 and 3 (value.yz)
builder.swizzle(2, {0}); // eliminate element 1 (value.x)
builder.discard_stack(1); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/6,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x3F800000 (1.0)
splat_4_constants $4..7 = 0x3F800000 (1.0)
splat_4_constants $8..11 = 0x3F800000 (1.0)
copy_4_slots_masked $4..7 = Mask($8..11)
copy_3_slots_masked $2..4 = Mask($5..7)
copy_slot_masked $3 = Mask($4)
swizzle_copy_4_slots_masked (v1..4).wzyx = Mask($0..3)
swizzle_copy_3_slots_masked (v0..3).xyw = Mask($1..3)
swizzle_4 $0..3 = ($0..3).wzyx
swizzle_2 $0..1 = ($0..2).yz
)");
}
DEF_TEST(RasterPipelineBuilderTransposeMatrix, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_constant_f(1.0f); // push into 0
builder.push_duplicates(15); // duplicate into 1~15
builder.transpose(2, 2); // transpose a 2x2 matrix
builder.transpose(3, 3); // transpose a 3x3 matrix
builder.transpose(4, 4); // transpose a 4x4 matrix
builder.transpose(2, 4); // transpose a 2x4 matrix
builder.transpose(4, 3); // transpose a 4x3 matrix
builder.discard_stack(16); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x3F800000 (1.0)
splat_4_constants $4..7 = 0x3F800000 (1.0)
splat_4_constants $8..11 = 0x3F800000 (1.0)
splat_4_constants $12..15 = 0x3F800000 (1.0)
swizzle_3 $13..15 = ($13..15).yxz
shuffle $8..15 = ($8..15)[2 5 0 3 6 1 4 7]
shuffle $1..15 = ($1..15)[3 7 11 0 4 8 12 1 5 9 13 2 6 10 14]
shuffle $9..15 = ($9..15)[3 0 4 1 5 2 6]
shuffle $5..15 = ($5..15)[2 5 8 0 3 6 9 1 4 7 10]
)");
}
DEF_TEST(RasterPipelineBuilderDiagonalMatrix, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_constant_f(0.0f); // push into 0
builder.push_constant_f(1.0f); // push into 1
builder.diagonal_matrix(2, 2); // generate a 2x2 diagonal matrix
builder.discard_stack(4); // balance stack
builder.push_constant_f(0.0f); // push into 0
builder.push_constant_f(2.0f); // push into 1
builder.diagonal_matrix(4, 4); // generate a 4x4 diagonal matrix
builder.discard_stack(16); // balance stack
builder.push_constant_f(0.0f); // push into 0
builder.push_constant_f(3.0f); // push into 1
builder.diagonal_matrix(2, 3); // generate a 2x3 diagonal matrix
builder.discard_stack(6); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_constant $0 = 0
copy_constant $1 = 0x3F800000 (1.0)
swizzle_4 $0..3 = ($0..3).yxxy
copy_constant $0 = 0
copy_constant $1 = 0x40000000 (2.0)
shuffle $0..15 = ($0..15)[1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1]
copy_constant $0 = 0
copy_constant $1 = 0x40400000 (3.0)
shuffle $0..5 = ($0..5)[1 0 0 0 1 0]
)");
}
DEF_TEST(RasterPipelineBuilderMatrixResize, r) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_constant_f(1.0f); // synthesize a 2x2 matrix
builder.push_constant_f(2.0f);
builder.push_constant_f(3.0f);
builder.push_constant_f(4.0f);
builder.matrix_resize(2, 2, 4, 4); // resize 2x2 matrix into 4x4
builder.matrix_resize(4, 4, 2, 2); // resize 4x4 matrix back into 2x2
builder.matrix_resize(2, 2, 2, 4); // resize 2x2 matrix into 2x4
builder.matrix_resize(2, 4, 4, 2); // resize 2x4 matrix into 4x2
builder.matrix_resize(4, 2, 3, 3); // resize 4x2 matrix into 3x3
builder.discard_stack(9); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_constant $0 = 0x3F800000 (1.0)
copy_constant $1 = 0x40000000 (2.0)
copy_constant $2 = 0x40400000 (3.0)
copy_constant $3 = 0x40800000 (4.0)
copy_constant $4 = 0
copy_constant $5 = 0x3F800000 (1.0)
shuffle $2..15 = ($2..15)[2 2 0 1 2 2 2 2 3 2 2 2 2 3]
shuffle $2..3 = ($2..3)[2 3]
copy_constant $4 = 0
shuffle $2..7 = ($2..7)[2 2 0 1 2 2]
copy_constant $8 = 0
shuffle $2..7 = ($2..7)[2 3 6 6 6 6]
copy_constant $8 = 0
copy_constant $9 = 0x3F800000 (1.0)
shuffle $2..8 = ($2..8)[6 0 1 6 2 3 7]
)");
}
DEF_TEST(RasterPipelineBuilderBranches, r) {
#if SK_HAS_MUSTTAIL
// We have guaranteed tail-calling, and don't need to rewind the stack.
static constexpr char kExpectationWithKnownExecutionMask[] =
R"(jump jump +9 (label 3 at #10)
label label 0
copy_constant v0 = 0
label label 0x00000001
copy_constant v1 = 0
jump jump -4 (label 0 at #2)
label label 0x00000002
copy_constant v2 = 0
jump jump -7 (label 0 at #2)
label label 0x00000003
branch_if_no_active_lanes_eq branch -4 (label 2 at #7) if no lanes of v2 == 0
branch_if_no_active_lanes_eq branch -10 (label 0 at #2) if no lanes of v2 == 0x00000001 (1.401298e-45)
)";
static constexpr char kExpectationWithExecutionMaskWrites[] =
R"(jump jump +10 (label 3 at #11)
label label 0
copy_constant v0 = 0
label label 0x00000001
copy_constant v1 = 0
branch_if_no_lanes_active branch_if_no_lanes_active -2 (label 1 at #4)
branch_if_all_lanes_active branch_if_all_lanes_active -5 (label 0 at #2)
label label 0x00000002
copy_constant v2 = 0
branch_if_any_lanes_active branch_if_any_lanes_active -8 (label 0 at #2)
label label 0x00000003
branch_if_no_active_lanes_eq branch -4 (label 2 at #8) if no lanes of v2 == 0
branch_if_no_active_lanes_eq branch -11 (label 0 at #2) if no lanes of v2 == 0x00000001 (1.401298e-45)
)";
#else
// We don't have guaranteed tail-calling, so we rewind the stack immediately before any backward
// branches.
static constexpr char kExpectationWithKnownExecutionMask[] =
R"(jump jump +11 (label 3 at #12)
label label 0
copy_constant v0 = 0
label label 0x00000001
copy_constant v1 = 0
stack_rewind
jump jump -5 (label 0 at #2)
label label 0x00000002
copy_constant v2 = 0
stack_rewind
jump jump -9 (label 0 at #2)
label label 0x00000003
stack_rewind
branch_if_no_active_lanes_eq branch -6 (label 2 at #8) if no lanes of v2 == 0
stack_rewind
branch_if_no_active_lanes_eq branch -14 (label 0 at #2) if no lanes of v2 == 0x00000001 (1.401298e-45)
)";
static constexpr char kExpectationWithExecutionMaskWrites[] =
R"(jump jump +13 (label 3 at #14)
label label 0
copy_constant v0 = 0
label label 0x00000001
copy_constant v1 = 0
stack_rewind
branch_if_no_lanes_active branch_if_no_lanes_active -3 (label 1 at #4)
stack_rewind
branch_if_all_lanes_active branch_if_all_lanes_active -7 (label 0 at #2)
label label 0x00000002
copy_constant v2 = 0
stack_rewind
branch_if_any_lanes_active branch_if_any_lanes_active -11 (label 0 at #2)
label label 0x00000003
stack_rewind
branch_if_no_active_lanes_eq branch -6 (label 2 at #10) if no lanes of v2 == 0
stack_rewind
branch_if_no_active_lanes_eq branch -16 (label 0 at #2) if no lanes of v2 == 0x00000001 (1.401298e-45)
)";
#endif
for (bool enableExecutionMaskWrites : {false, true}) {
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
int label1 = builder.nextLabelID();
int label2 = builder.nextLabelID();
int label3 = builder.nextLabelID();
int label4 = builder.nextLabelID();
if (enableExecutionMaskWrites) {
builder.enableExecutionMaskWrites();
}
builder.jump(label4);
builder.label(label1);
builder.zero_slots_unmasked(one_slot_at(0));
builder.label(label2);
builder.zero_slots_unmasked(one_slot_at(1));
builder.branch_if_no_lanes_active(label2);
builder.branch_if_no_lanes_active(label3);
builder.branch_if_all_lanes_active(label1);
builder.label(label3);
builder.zero_slots_unmasked(one_slot_at(2));
builder.branch_if_any_lanes_active(label1);
builder.branch_if_any_lanes_active(label1);
builder.label(label4);
builder.branch_if_no_active_lanes_on_stack_top_equal(0, label3);
builder.branch_if_no_active_lanes_on_stack_top_equal(0, label2);
builder.branch_if_no_active_lanes_on_stack_top_equal(1, label1);
builder.branch_if_no_active_lanes_on_stack_top_equal(1, label4);
if (enableExecutionMaskWrites) {
builder.disableExecutionMaskWrites();
}
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/3,
/*numUniformSlots=*/0);
check(r, *program, enableExecutionMaskWrites ? kExpectationWithExecutionMaskWrites
: kExpectationWithKnownExecutionMask);
}
}
DEF_TEST(RasterPipelineBuilderBinaryFloatOps, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_f(10.0f);
builder.push_duplicates(30);
builder.binary_op(BuilderOp::add_n_floats, 1);
builder.binary_op(BuilderOp::sub_n_floats, 2);
builder.binary_op(BuilderOp::mul_n_floats, 3);
builder.binary_op(BuilderOp::div_n_floats, 4);
builder.binary_op(BuilderOp::max_n_floats, 3);
builder.binary_op(BuilderOp::min_n_floats, 2);
builder.binary_op(BuilderOp::cmplt_n_floats, 5);
builder.binary_op(BuilderOp::cmple_n_floats, 4);
builder.binary_op(BuilderOp::cmpeq_n_floats, 3);
builder.binary_op(BuilderOp::cmpne_n_floats, 2);
builder.discard_stack(2);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x41200000 (10.0)
splat_4_constants $4..7 = 0x41200000 (10.0)
splat_4_constants $8..11 = 0x41200000 (10.0)
splat_4_constants $12..15 = 0x41200000 (10.0)
splat_4_constants $16..19 = 0x41200000 (10.0)
splat_4_constants $20..23 = 0x41200000 (10.0)
splat_4_constants $24..27 = 0x41200000 (10.0)
splat_2_constants $28..29 = 0x41200000 (10.0)
add_imm_float $29 += 0x41200000 (10.0)
sub_2_floats $26..27 -= $28..29
mul_3_floats $22..24 *= $25..27
div_4_floats $17..20 /= $21..24
max_3_floats $15..17 = max($15..17, $18..20)
min_2_floats $14..15 = min($14..15, $16..17)
cmplt_n_floats $6..10 = lessThan($6..10, $11..15)
cmple_4_floats $3..6 = lessThanEqual($3..6, $7..10)
cmpeq_3_floats $1..3 = equal($1..3, $4..6)
cmpne_2_floats $0..1 = notEqual($0..1, $2..3)
)");
}
DEF_TEST(RasterPipelineBuilderBinaryIntOps, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_i(123);
builder.push_duplicates(40);
builder.binary_op(BuilderOp::bitwise_and_n_ints, 1);
builder.binary_op(BuilderOp::bitwise_xor_n_ints, 2);
builder.binary_op(BuilderOp::bitwise_or_n_ints, 3);
builder.binary_op(BuilderOp::add_n_ints, 2);
builder.binary_op(BuilderOp::sub_n_ints, 3);
builder.binary_op(BuilderOp::mul_n_ints, 4);
builder.binary_op(BuilderOp::div_n_ints, 5);
builder.binary_op(BuilderOp::max_n_ints, 4);
builder.binary_op(BuilderOp::min_n_ints, 3);
builder.binary_op(BuilderOp::cmplt_n_ints, 1);
builder.binary_op(BuilderOp::cmple_n_ints, 2);
builder.binary_op(BuilderOp::cmpeq_n_ints, 3);
builder.binary_op(BuilderOp::cmpne_n_ints, 4);
builder.discard_stack(4);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x0000007B (1.723597e-43)
splat_4_constants $4..7 = 0x0000007B (1.723597e-43)
splat_4_constants $8..11 = 0x0000007B (1.723597e-43)
splat_4_constants $12..15 = 0x0000007B (1.723597e-43)
splat_4_constants $16..19 = 0x0000007B (1.723597e-43)
splat_4_constants $20..23 = 0x0000007B (1.723597e-43)
splat_4_constants $24..27 = 0x0000007B (1.723597e-43)
splat_4_constants $28..31 = 0x0000007B (1.723597e-43)
splat_4_constants $32..35 = 0x0000007B (1.723597e-43)
splat_4_constants $36..39 = 0x0000007B (1.723597e-43)
bitwise_and_imm_int $39 &= 0x0000007B
bitwise_xor_2_ints $36..37 ^= $38..39
bitwise_or_3_ints $32..34 |= $35..37
add_2_ints $31..32 += $33..34
sub_3_ints $27..29 -= $30..32
mul_4_ints $22..25 *= $26..29
div_n_ints $16..20 /= $21..25
max_4_ints $13..16 = max($13..16, $17..20)
min_3_ints $11..13 = min($11..13, $14..16)
cmplt_int $12 = lessThan($12, $13)
cmple_2_ints $9..10 = lessThanEqual($9..10, $11..12)
cmpeq_3_ints $5..7 = equal($5..7, $8..10)
cmpne_4_ints $0..3 = notEqual($0..3, $4..7)
)");
}
DEF_TEST(RasterPipelineBuilderBinaryUIntOps, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_u(456);
builder.push_duplicates(21);
builder.binary_op(BuilderOp::div_n_uints, 6);
builder.binary_op(BuilderOp::cmplt_n_uints, 5);
builder.binary_op(BuilderOp::cmple_n_uints, 4);
builder.binary_op(BuilderOp::max_n_uints, 3);
builder.binary_op(BuilderOp::min_n_uints, 2);
builder.discard_stack(2);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x000001C8 (6.389921e-43)
splat_4_constants $4..7 = 0x000001C8 (6.389921e-43)
splat_4_constants $8..11 = 0x000001C8 (6.389921e-43)
splat_4_constants $12..15 = 0x000001C8 (6.389921e-43)
splat_4_constants $16..19 = 0x000001C8 (6.389921e-43)
splat_2_constants $20..21 = 0x000001C8 (6.389921e-43)
div_n_uints $10..15 /= $16..21
cmplt_n_uints $6..10 = lessThan($6..10, $11..15)
cmple_4_uints $3..6 = lessThanEqual($3..6, $7..10)
max_3_uints $1..3 = max($1..3, $4..6)
min_2_uints $0..1 = min($0..1, $2..3)
)");
}
DEF_TEST(RasterPipelineBuilderUnaryOps, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_i(456);
builder.push_duplicates(4);
builder.unary_op(BuilderOp::cast_to_float_from_int, 1);
builder.unary_op(BuilderOp::cast_to_float_from_uint, 2);
builder.unary_op(BuilderOp::cast_to_int_from_float, 3);
builder.unary_op(BuilderOp::cast_to_uint_from_float, 4);
builder.unary_op(BuilderOp::cos_float, 4);
builder.unary_op(BuilderOp::tan_float, 3);
builder.unary_op(BuilderOp::sin_float, 2);
builder.unary_op(BuilderOp::sqrt_float, 1);
builder.unary_op(BuilderOp::abs_int, 2);
builder.unary_op(BuilderOp::floor_float, 3);
builder.unary_op(BuilderOp::ceil_float, 4);
builder.discard_stack(5);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x000001C8 (6.389921e-43)
copy_constant $4 = 0x000001C8 (6.389921e-43)
cast_to_float_from_int $4 = IntToFloat($4)
cast_to_float_from_2_uints $3..4 = UintToFloat($3..4)
cast_to_int_from_3_floats $2..4 = FloatToInt($2..4)
cast_to_uint_from_4_floats $1..4 = FloatToUint($1..4)
cos_float $1 = cos($1)
cos_float $2 = cos($2)
cos_float $3 = cos($3)
cos_float $4 = cos($4)
tan_float $2 = tan($2)
tan_float $3 = tan($3)
tan_float $4 = tan($4)
sin_float $3 = sin($3)
sin_float $4 = sin($4)
sqrt_float $4 = sqrt($4)
abs_2_ints $3..4 = abs($3..4)
floor_3_floats $2..4 = floor($2..4)
ceil_4_floats $1..4 = ceil($1..4)
)");
}
DEF_TEST(RasterPipelineBuilderUniforms, r) {
using BuilderOp = SkSL::RP::BuilderOp;
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_uniform(one_slot_at(0)); // push into 0
builder.push_uniform(two_slots_at(1)); // push into 1~2
builder.push_uniform(three_slots_at(3)); // push into 3~5
builder.push_uniform(four_slots_at(6)); // push into 6~9
builder.push_uniform(five_slots_at(0)); // push into 10~14
builder.unary_op(BuilderOp::abs_int, 1); // perform work so the program isn't eliminated
builder.discard_stack(15); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/10);
check(r, *program,
R"(copy_4_uniforms $0..3 = u0..3
copy_4_uniforms $4..7 = u4..7
copy_2_uniforms $8..9 = u8..9
copy_4_uniforms $10..13 = u0..3
copy_uniform $14 = u4
abs_int $14 = abs($14)
)");
}
DEF_TEST(RasterPipelineBuilderPushZeros, r) {
using BuilderOp = SkSL::RP::BuilderOp;
// Create a very simple nonsense program.
SkSL::RP::Builder builder;
builder.push_zeros(1); // push into 0
builder.push_zeros(2); // push into 1~2
builder.push_zeros(3); // push into 3~5
builder.push_zeros(4); // push into 6~9
builder.push_zeros(5); // push into 10~14
builder.unary_op(BuilderOp::abs_int, 1); // perform work so the program isn't eliminated
builder.discard_stack(15); // balance stack
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/10);
check(r, *program,
R"(splat_4_constants $0..3 = 0
splat_4_constants $4..7 = 0
splat_4_constants $8..11 = 0
splat_3_constants $12..14 = 0
abs_int $14 = abs($14)
)");
}
DEF_TEST(RasterPipelineBuilderTernaryFloatOps, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_f(0.75f);
builder.push_duplicates(8);
builder.ternary_op(BuilderOp::mix_n_floats, 3);
builder.discard_stack(3);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
check(r, *program,
R"(splat_4_constants $0..3 = 0x3F400000 (0.75)
splat_4_constants $4..7 = 0x3F400000 (0.75)
copy_constant $8 = 0x3F400000 (0.75)
mix_3_floats $0..2 = mix($3..5, $6..8, $0..2)
)");
}
DEF_TEST(RasterPipelineBuilderAutomaticStackRewinding, r) {
using BuilderOp = SkSL::RP::BuilderOp;
SkSL::RP::Builder builder;
builder.push_constant_i(1);
builder.push_duplicates(2000);
builder.unary_op(BuilderOp::abs_int, 1); // perform work so the program isn't eliminated
builder.discard_stack(2001);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/0,
/*numUniformSlots=*/0);
sk_sp<SkData> dump = get_program_dump(*program);
#if SK_HAS_MUSTTAIL
// We have guaranteed tail-calling, so we never use `stack_rewind`.
REPORTER_ASSERT(r, !skstd::contains(as_string_view(dump), "stack_rewind"));
#else
// We can't guarantee tail-calling, so we should automatically insert `stack_rewind` stages into
// long programs.
REPORTER_ASSERT(r, skstd::contains(as_string_view(dump), "stack_rewind"));
#endif
}
DEF_TEST(RasterPipelineBuilderTraceOps, r) {
for (bool provideDebugTrace : {false, true}) {
SkSL::RP::Builder builder;
// Create a trace mask stack on stack-ID 123.
builder.set_current_stack(123);
builder.push_constant_i(~0);
// Emit trace ops.
builder.trace_enter(123, 2);
builder.trace_scope(123, +1);
builder.trace_line(123, 456);
builder.trace_var(123, two_slots_at(3));
builder.trace_scope(123, -1);
builder.trace_exit(123, 2);
// Discard the trace mask.
builder.discard_stack(1);
if (!provideDebugTrace) {
// Test the output when no DebugTrace info is provided.
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/20,
/*numUniformSlots=*/0);
check(r, *program,
R"(copy_constant $0 = 0xFFFFFFFF
trace_enter TraceEnter(???) when $0 is true
trace_scope TraceScope(+1) when $0 is true
trace_line TraceLine(456) when $0 is true
trace_var TraceVar(v3..4) when $0 is true
trace_scope TraceScope(-1) when $0 is true
trace_exit TraceExit(???) when $0 is true
)");
} else {
// Test the output when we supply a populated DebugTrace.
SkSL::DebugTracePriv trace;
trace.fFuncInfo = {{"FunctionA"}, {"FunctionB"}, {"FunctionC"}, {"FunctionD"}};
SkSL::SlotDebugInfo slot;
slot.name = "Var0";
trace.fSlotInfo.push_back(slot);
slot.name = "Var1";
trace.fSlotInfo.push_back(slot);
slot.name = "Var2";
trace.fSlotInfo.push_back(slot);
slot.name = "Var3";
trace.fSlotInfo.push_back(slot);
slot.name = "Var4";
trace.fSlotInfo.push_back(slot);
std::unique_ptr<SkSL::RP::Program> program = builder.finish(/*numValueSlots=*/20,
/*numUniformSlots=*/0,
&trace);
check(r, *program,
R"(copy_constant $0 = 0xFFFFFFFF
trace_enter TraceEnter(FunctionC) when $0 is true
trace_scope TraceScope(+1) when $0 is true
trace_line TraceLine(456) when $0 is true
trace_var TraceVar(Var3, Var4) when $0 is true
trace_scope TraceScope(-1) when $0 is true
trace_exit TraceExit(FunctionC) when $0 is true
)");
}
}
}
#endif // SK_ENABLE_SKSL_IN_RASTER_PIPELINE
| [
"jengelh@inai.de"
] | jengelh@inai.de |
cb0b933bcc5f28873373a23a4517d8e1720a2707 | b4bded995260fdc96470ae593c4bc4d9b5a98ca9 | /11.cpp | d50f0a5bb9d9e49c32784ff077fab9f20ba8cdd1 | [] | no_license | patricknicolosi/programmazione2 | a5dda894b68cb7f0c85e789baa5fbeb70d0ef35a | dac0170030f3a3e5e4455db424fd215ff80cf248 | refs/heads/master | 2023-05-15T12:43:27.227825 | 2021-06-06T16:27:00 | 2021-06-06T16:27:00 | 362,513,052 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,277 | cpp | #include<iostream>
using namespace std;
template <class T>
class NodeDl{
NodeDl<T>* prev;
NodeDl<T>* next;
T value;
public:
NodeDl(NodeDl<T>* prev, NodeDl<T>* next, T value) : prev(prev), next(next), value(value){}
NodeDl(T value) : NodeDl(NULL, NULL, value){}
NodeDl() : NodeDl(NULL, NULL, 0){}
void setNext(NodeDl<T>* newNext){
this->next = newNext;
}
void setPrev(NodeDl<T>* newPrev){
this->prev = newPrev;
}
NodeDl<T>* getNext() const{
return this->next;
}
NodeDl<T>* getPrev() const{
return this->prev;
}
T getValue() const{
return this->value;
}
friend ostream& operator << (ostream& stream, const NodeDl& n){
stream << n.getValue();
return stream;
}
};
template <class T>
class ListDl{
NodeDl<T>* head;
NodeDl<T>* tail;
public:
ListDl(NodeDl<T>* head, NodeDl<T>* tail) : head(head), tail(tail){}
ListDl() : ListDl(NULL, NULL){}
void addHead(T value){
NodeDl<T>* newNode = new NodeDl<T>(value);
if(head == NULL && tail == NULL){
this->head = newNode;
this->tail = newNode;
}
else{
newNode->setNext(head);
head->setPrev(newNode);
head = newNode;
}
}
void addTail(T value){
NodeDl<T>* newNode = new NodeDl<T>(value);
if(head == NULL && tail == NULL){
this->head = newNode;
this->tail = newNode;
}
else{
newNode->setPrev(tail);
tail->setNext(newNode);
tail = newNode;
}
}
void add(T value){
NodeDl<T>* newNode = new NodeDl<T>(value);
if(head == NULL && tail == NULL){
addHead(value);
return;
}
if(tail->getValue() <= value){
addTail(value);
return;
}
if(head->getValue() > value){
addHead(value);
return;
}
NodeDl<T>* currentNode = head;
NodeDl<T>* prevNode = head->getPrev();
while(currentNode->getValue() <= value){
prevNode = currentNode;
prevNode = currentNode->getPrev();
}
newNode->setPrev(prevNode);
newNode->setNext(currentNode);
prevNode->setNext(newNode);
currentNode->setPrev(newNode);
}
bool search(T value){
NodeDl<T>* currentNode = head;
while(currentNode != NULL){
if(currentNode->getValue() == value) return true;
currentNode = currentNode->getNext();
}
return false;
}
void remove(T value){
if(search(value)){
if(value == head->getValue()){ //Se il valore da togliere è la testa
head = head->getNext();
return;
}
if(value == head->getValue()){ //Se il valore da togliere è la coda
tail = tail->getPrev();
return;
}
//Se il valore da togliere non è ne in testa ne in coda ma è un nodo al centro
NodeDl<T>* currentNode = head;
NodeDl<T>* prevNode = head;
while(currentNode->getValue() != value) {
prevNode = currentNode;
currentNode = currentNode->getNext();
}
prevNode->setNext(currentNode->getNext());
currentNode->getNext()->setPrev(prevNode);
}
return;
}
friend ostream& operator << (ostream& stream, const ListDl& l){
NodeDl<T>* currentNode = l.head;
while(currentNode != NULL){
stream << *currentNode << " ";
currentNode = currentNode->getNext();
}
return stream;
}
};
int main(){
ListDl<int> l;
for(int i=0; i<5; i++){
l.add(i);
}
l.remove(2);
cout << l << endl;
} | [
"patricknicolosi99@gmail.com"
] | patricknicolosi99@gmail.com |
75bfcac4e9928a0fdae1defa0e95e018cb0cf0b4 | c610aa29c4195963768d4c3a3f0ca4350615206a | /src/base64.h | 6d1baf4ac9815307f177849293c17cb5f492d85a | [
"MIT"
] | permissive | bizzbyster/nghttp2 | a04de01c7db8aed3ddd218a7880aaa8799acebb0 | ecc4290d3dba768aa5abb224afdfc5955224c0a5 | refs/heads/master | 2020-12-31T00:09:33.144648 | 2014-01-07T17:15:46 | 2014-01-07T17:15:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,895 | h | /*
* nghttp2 - HTTP/2.0 C Library
*
* Copyright (c) 2013 Tatsuhiro Tsujikawa
*
* 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 BASE64_H
#define BASE64_H
#include <string>
namespace nghttp2 {
namespace base64 {
template<typename InputIterator>
std::string encode(InputIterator first, InputIterator last)
{
static const char CHAR_TABLE[] = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', '0', '1', '2', '3',
'4', '5', '6', '7', '8', '9', '+', '/',
};
std::string res;
size_t len = last-first;
if(len == 0) {
return res;
}
size_t r = len%3;
InputIterator j = last-r;
char temp[4];
while(first != j) {
int n = static_cast<unsigned char>(*first++) << 16;
n += static_cast<unsigned char>(*first++) << 8;
n += static_cast<unsigned char>(*first++);
temp[0] = CHAR_TABLE[n >> 18];
temp[1] = CHAR_TABLE[(n >> 12) & 0x3fu];
temp[2] = CHAR_TABLE[(n >> 6) & 0x3fu];
temp[3] = CHAR_TABLE[n & 0x3fu];
res.append(temp, sizeof(temp));
}
if(r == 2) {
int n = static_cast<unsigned char>(*first++) << 16;
n += static_cast<unsigned char>(*first++) << 8;
temp[0] = CHAR_TABLE[n >> 18];
temp[1] = CHAR_TABLE[(n >> 12) & 0x3fu];
temp[2] = CHAR_TABLE[(n >> 6) & 0x3fu];
temp[3] = '=';
res.append(temp, sizeof(temp));
} else if(r == 1) {
int n = static_cast<unsigned char>(*first++) << 16;
temp[0] = CHAR_TABLE[n >> 18];
temp[1] = CHAR_TABLE[(n >> 12) & 0x3fu];
temp[2] = '=';
temp[3] = '=';
res.append(temp, sizeof(temp));
}
return res;
}
template<typename InputIterator>
InputIterator getNext
(InputIterator first,
InputIterator last,
const int* tbl)
{
for(; first != last; ++first) {
if(tbl[static_cast<size_t>(*first)] != -1 || *first == '=') {
break;
}
}
return first;
}
template<typename InputIterator>
std::string decode(InputIterator first, InputIterator last)
{
static const int INDEX_TABLE[] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
-1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
};
std::string res;
InputIterator k[4];
int eq = 0;
for(; first != last;) {
for(int i = 1; i <= 4; ++i) {
k[i-1] = getNext(first, last, INDEX_TABLE);
if(k[i-1] == last) {
// If i == 1, input may look like this: "TWFu\n" (i.e.,
// garbage at the end)
if(i != 1) {
res.clear();
}
return res;
} else if(*k[i-1] == '=' && eq == 0) {
eq = i;
}
first = k[i-1]+1;
}
if(eq) {
break;
}
int n = (INDEX_TABLE[static_cast<unsigned char>(*k[0])] << 18)+
(INDEX_TABLE[static_cast<unsigned char>(*k[1])] << 12)+
(INDEX_TABLE[static_cast<unsigned char>(*k[2])] << 6)+
INDEX_TABLE[static_cast<unsigned char>(*k[3])];
res += n >> 16;
res += n >> 8 & 0xffu;
res += n & 0xffu;
}
if(eq) {
if(eq <= 2) {
res.clear();
return res;
} else {
for(int i = eq; i <= 4; ++i) {
if(*k[i-1] != '=') {
res.clear();
return res;
}
}
if(eq == 3) {
int n = (INDEX_TABLE[static_cast<unsigned char>(*k[0])] << 18)+
(INDEX_TABLE[static_cast<unsigned char>(*k[1])] << 12);
res += n >> 16;
} else if(eq == 4) {
int n = (INDEX_TABLE[static_cast<unsigned char>(*k[0])] << 18)+
(INDEX_TABLE[static_cast<unsigned char>(*k[1])] << 12)+
(INDEX_TABLE[static_cast<unsigned char>(*k[2])] << 6);
res += n >> 16;
res += n >> 8 & 0xffu;
}
}
}
return res;
}
} // namespace base64
} // namespace nghttp2
#endif // BASE64_H
| [
"tatsuhiro.t@gmail.com"
] | tatsuhiro.t@gmail.com |
9bbbd778899032c2ee859f2af7466aa7d909ec6c | 669d94bf6944e69a2fb1ae0667c4aede1ffa1615 | /Servo/Servo.ino | df4e766b4b6733299353769503e5f771a738fd5f | [] | no_license | kalte0/clubRPI | 569bfa2281410a1df85e0c0d494a377ff0f024bf | 3bd99e3035c0c90ead5b2b673354345dc97635f1 | refs/heads/master | 2021-03-13T07:36:09.101202 | 2020-06-12T16:00:43 | 2020-06-12T16:00:43 | 246,653,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 497 | ino | #include <Adafruit_LEDBackpack.h>
#include <Wire.h>
#include <Adafruit_PWMServoDriver.h>
Adafruit_PWMServoDriver pwm = Adafruit_PWMServoDriver(0x40, Wire);
#define SERVO_FREQ 60 // Analog servos run at ~60 Hz updates
void setup() {
Serial.begin(9600);
pwm.begin();
pwm.setOscillatorFrequency(27000000);
pwm.setPWMFreq(SERVO_FREQ);
pwm.writeMicroseconds(0, 1500);
delay(6000);
}
void loop() {
pwm.writeMicroseconds(0,1900);
delay(3000);
pwm.writeMicroseconds(0,1100);
delay(3000);
}
| [
"renata@cyren.org"
] | renata@cyren.org |
833a3e83c37dcef3cc7c9b982ec56180c9589094 | c1096f2729fcc2e76dfcc9d4d277cebb669ef50f | /generator/NES.h | 33d8fa36cc8ffc1a53cdb1019f4d2075a03fbcb8 | [] | no_license | mikeakohn/java_grinder | 8d67f183aebfc412bff8537b23ff8be99f86dea6 | 273d6e97f46d3fa442b33ae19a2b2cde16dc5c4b | refs/heads/master | 2023-08-15T13:17:50.551116 | 2023-06-20T21:44:37 | 2023-06-20T21:44:37 | 15,153,331 | 481 | 41 | null | 2020-01-28T02:30:24 | 2013-12-13T02:48:12 | C++ | UTF-8 | C++ | false | false | 1,165 | h | /**
* Java Grinder
* Author: Michael Kohn
* Email: mike@mikekohn.net
* Web: http://www.mikekohn.net/
* License: GPLv3
*
* Copyright 2014-2022 by Michael Kohn
*
*/
#ifndef JAVA_GRINDER_GENERATOR_NES_H
#define JAVA_GRINDER_GENERATOR_NES_H
#include "generator/M6502.h"
class NES : public M6502
{
public:
NES();
virtual ~NES();
virtual int open(const char *filename);
virtual int nes_setBackgroundPalette_II();
virtual int nes_setSpritePalette_II();
virtual int nes_setPattern_IaB();
virtual int nes_setNameTable_II();
virtual int nes_setNameTable_III();
virtual int nes_setScroll_II();
virtual int nes_waitVerticalBlank();
virtual int nes_setPPUCtrl_I();
virtual int nes_setPPUMask_I();
private:
void write_init();
void write_wait_vertical_blank();
void write_set_pattern();
void write_set_background_palette_II();
void write_set_name_table_II();
void write_set_name_table_III();
void write_set_scroll_II();
void write_interrupts();
void write_cartridge_info();
bool need_set_background_palette_II;
bool need_set_name_table_II;
bool need_set_name_table_III;
bool need_set_scroll_II;
};
#endif
| [
"mike@mikekohn.net"
] | mike@mikekohn.net |
b9477a84114103058b8d2805d8e80ca6aa43b403 | 6d9a1f50a40da21b5bb24ae43cbc42ae992927b5 | /text_speed_thrust_current.cpp | 3b7c77fc6e03dc59dbd9ff19611ca0373b9d8a4b | [] | no_license | RioZon/gtkp_table | 719262ea1a3f724cd193bfa7c8875e473f2654d7 | 3c2bae505f0d7fc985628500d242f2684ff43cf8 | refs/heads/master | 2020-07-06T20:59:33.462273 | 2019-08-19T09:11:56 | 2019-08-19T09:11:56 | 203,137,275 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 399 | cpp | #include "text_speed_thrust_current.h"
TextSpeedThrustCurrent::TextSpeedThrustCurrent(TableText *tableText)
: Observer(tableText)
{
}
void TextSpeedThrustCurrent::update(const Event &event)
{
if (event.event != GAC_EV_NAD_SPEED || event.val == 12)
return;
tableText->setText(event.val > 0?
QString::number(event.val / 32.0 * 3.6, 'f', 1) : "");
}
| [
"usmirn@gmail.com"
] | usmirn@gmail.com |
628a0e44541fbeca703bbc92e50e1e1b7f399732 | 26ac7837de540d915cdfa7783a65dde9bd311e4b | /Source/TiAALS/Utilities/Images/IRIconBank/IRIconBank.hpp | 6f3d4d5652d8b5c300bb0dbb1eaeaf7f98e927b8 | [] | no_license | KeitaroTakahashi/TiAALS_FULL | cfdf98a81f5e95f35fb3c7f36837d35856cdcf88 | 21cbdd04c5caf7b7de7bcc638056ad5af9ded5b0 | refs/heads/master | 2023-02-20T17:43:19.929814 | 2021-01-23T13:57:54 | 2021-01-23T13:57:54 | 320,263,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,330 | hpp | //
// IRIconBank
// InteractiveAutomation - App
//
// Created by Keitaro on 02/05/2019.
//
#ifndef IRIconBank_hpp
#define IRIconBank_hpp
#include "JuceHeader.h"
#include "singletonClass.hpp"
class IRIconBank
{
public:
struct IRIconImage
{
Image white;
Image black;
Image gray;
Image small_white;
Image small_black;
Image small_gray;
};
struct IRLogoImage
{
Image small; // 177 x 345
Image medium; // 355 x 690
Image large; // 710 x 1380
};
IRIconBank();
~IRIconBank();
void loadImages();
IRIconImage getZoomIn() const { return this->icon_zoomIn; }
IRIconImage getZoomOut() const { return this->icon_zoomOut; }
IRIconImage getHorizontalMovable() const { return this->icon_horizontalMovable; }
IRIconImage getVerticalMovable() const { return this->icon_verticalMovable; }
IRIconImage getCrossMovable() const { return this->icon_crossMovable; }
IRIconImage getNotMovable() const { return this->icon_notMovable; }
IRIconImage getComment() const { return this->icon_comment; }
IRIconImage getBezier() const { return this->icon_bezier; }
IRIconImage getLinear() const { return this->icon_linear; }
IRIconImage loadImageAndReturn(String url);
IRIconImage loadImageWithSmallAndReturn(String url);
IRIconImage icon_addPage;
IRIconImage icon_addPage2;
IRIconImage icon_newSlide_noFrame;
IRIconImage icon_newSlide;
IRIconImage icon_deleteSlide;
IRIconImage icon_inspector;
IRIconImage icon_load;
IRIconImage icon_loop;
IRIconImage icon_newProject; // used
IRIconImage icon_object;
IRIconImage icon_object_type1;
IRIconImage icon_preference;
IRIconImage icon_save;
IRIconImage icon_save_noFrame;
IRIconImage icon_toNavigator;
IRIconImage icon_toObjectMenu;
IRIconImage icon_saveProject_noFrame;
IRIconImage icon_openProject_noFrame;
IRIconImage icon_saveasProject_noFrame;
IRIconImage icon_saveProject_arrow;
IRIconImage icon_saveasProject_arrow;
IRIconImage icon_openProject_arrow; // used
IRIconImage icon_close;
IRIconImage icon_text;
IRIconImage icon_chart;
IRIconImage icon_image;
IRIconImage icon_play;
IRIconImage icon_pause;
IRIconImage icon_stop;
IRIconImage icon_wav;
IRIconImage icon_rightBar;
IRIconImage icon_leftBar;
// square icon
IRIconImage icon_active;
IRIconImage icon_search;
//Event
IRIconImage icon_AudioEvent;
IRIconImage icon_ImageEvent;
IRIconImage icon_ShapeEvent;
IRIconImage icon_TextEvent;
// logo
IRLogoImage logo_darkMagenta;
IRLogoImage logo_darkBlue;
IRLogoImage logo_darkGreen;
IRLogoImage loadLogoImage(String url);
private:
IRIconImage loadImage(String url);
IRIconImage loadWithSmallImage(String url);
IRIconImage icon_zoomIn;
IRIconImage icon_zoomOut;
IRIconImage icon_horizontalMovable;
IRIconImage icon_verticalMovable;
IRIconImage icon_crossMovable;
IRIconImage icon_notMovable;
IRIconImage icon_comment;
IRIconImage icon_bezier;
IRIconImage icon_linear;
};
#endif /* IRIconBank_hpp */
| [
"neoterize@mac.com"
] | neoterize@mac.com |
d7936c66ac4ec93a732a4c886240a837e6b7c44e | 41ea20766b0c5d3da7e9e09a73e9655f8d4aa3f8 | /hr/hr26_disjointsets.cpp | 4df6f1dd3268aa23ae1457d22b49e5002cc5b78e | [] | no_license | Manthan-R-Sheth/CodingHub | e8b5592a604f1e4a6cf1f3f08a27ee8f3c965720 | 23862de9b483b78c9493ef1475ea070eebe02ace | refs/heads/master | 2021-01-23T23:45:55.265333 | 2018-02-24T11:24:06 | 2018-02-24T11:24:06 | 122,733,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,304 | cpp | #include<cmath>
#include<cstdio>
#include<vector>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<climits>
using namespace std;
// a structure to represent an edge in graph
int maxi=INT_MIN,mini=INT_MAX;
struct Edge
{
int src, dest;
};
// a structure to represent a graph
struct Graph
{
// V-> Number of vertices, E-> Number of edges
int V, E;
// graph is represented as an array of edges
struct Edge* edge;
};
struct subset
{
int parent;
int rank;
int height;
};
// Creates a graph with V vertices and E edges
struct Graph* createGraph(int V, int E)
{
struct Graph* graph = (struct Graph*) malloc( sizeof(struct Graph) );
graph->V = V;
graph->E = E;
graph->edge = (struct Edge*) malloc( graph->E * sizeof( struct Edge ) );
return graph;
}
// A utility function to find set of an element i
// (uses path compression technique)
int find(struct subset subsets[], int i)
{
// find root and make root as parent of i (path compression)
if (subsets[i].parent != i)
subsets[i].parent = find(subsets, subsets[i].parent);
return subsets[i].parent;
}
// A function that does union of two sets of x and y
// (uses union by rank)
void Union(struct subset subsets[], int g, int b)
{
int groot = find(subsets, g);
int broot = find(subsets, b);
// Attach smaller rank tree under root of high rank tree
// (Union by Rank)
if (subsets[groot].rank < subsets[broot].rank)
{
subsets[groot].parent = broot;
subsets[broot].height+=subsets[groot].height;
subsets[groot].height=1;
}
else
if (subsets[groot].rank > subsets[broot].rank)
{
subsets[broot].parent = groot;
subsets[groot].height+=subsets[broot].height;
subsets[broot].height=1;
}
// If ranks are same, then make one as root and increment
// its rank by one
else
{
subsets[broot].parent = groot;
subsets[groot].rank++;
subsets[groot].height+=subsets[broot].height;
subsets[broot].height=1;
}
}
// The main function to check whether a given graph contains cycle or not
pair<int,int> maxmin( struct Graph* graph )
{
int V = graph->V;
int E = graph->E;
// Allocate memory for creating V sets
struct subset *subsets = (struct subset*) malloc( V * sizeof(struct subset) );
for (int v = 0; v < V; ++v)
{
subsets[v].parent = v;
subsets[v].rank = 0;
subsets[v].height=1;
}
for(int e = 0; e < E; ++e)
{
int g = find(subsets, graph->edge[e].src);
int b = find(subsets, graph->edge[e].dest);
if(g!=b)
{
Union(subsets, g, b);
}
}
for (int v = 0; v < V; ++v)
{
if(subsets[v].height>maxi)
{
maxi=subsets[v].height;
}
if(subsets[v].height<mini && subsets[v].height>1)
{
mini=subsets[v].height;
}
}
return make_pair(mini,maxi);
}
// Driver program to test above functions
int main()
{
int n,g,b;
cin>>n;
struct Graph* graph = createGraph(2*n, n);
for(int i=0;i<n;i++)
{
cin>>g>>b;
graph->edge[i].src = g;
graph->edge[i].dest = b;
}
pair<int,int> ans=maxmin(graph);
cout<<ans.first<<" "<<ans.second<<endl;
} | [
"manthanrsheth96@gmail.com"
] | manthanrsheth96@gmail.com |
8c49649d167b350730b8b9e0171934595f2783c1 | a42e3ffa1f4eae517e2d631dce5e02939e9deed9 | /src/render/Texture.h | fa26346bb2d51d36b341380bddf8f391de385d2f | [] | no_license | Przemro/spooky | fab8b3d8dd7e015bf9fff77333d85a3c584ec28d | 81e57d7cf8301330d11eaa2013212024cc34abea | refs/heads/master | 2021-01-16T21:07:04.557060 | 2016-05-16T17:13:47 | 2016-05-16T17:13:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,529 | h | //
// Created by dar on 11/21/15.
//
#ifndef C003_TEXTURE_H
#define C003_TEXTURE_H
#pragma once
#include <string>
#include <map>
#include "opengl.h"
enum ETextureFiltering
{
TEXTURE_FILTER_MAG_NEAREST = 0, // Nearest criterion for magnification
TEXTURE_FILTER_MAG_BILINEAR, // Bilinear criterion for magnification
TEXTURE_FILTER_MIN_NEAREST, // Nearest criterion for minification
TEXTURE_FILTER_MIN_BILINEAR, // Bilinear criterion for minification
TEXTURE_FILTER_MIN_NEAREST_MIPMAP, // Nearest criterion for minification, but on closest mipmap
TEXTURE_FILTER_MIN_BILINEAR_MIPMAP, // Bilinear criterion for minification, but on closest mipmap
TEXTURE_FILTER_MIN_TRILINEAR, // Bilinear criterion for minification on two closest mipmaps, then averaged
};
class Texture
{
public:
Texture();
~Texture();
void createFromData(unsigned char* data);
bool loadTexture2D(std::string path, bool mipmaps = false);
void bindTexture(int bindId = 0);
void setFiltering(int filterMag, int filterMin);
void setSamplerParameter(GLenum parameter, GLenum value);
int getMinificationFilter() const;
int getMagnificationFilter() const;
int getWidth() const;
int getHeight() const;
int getChannels() const;
int getBoundId() const;
private:
int width, height, channels;
GLuint id;
bool mipmaps;
int boundId = -1;
int filterMin, filterMag;
std::string path;
static int boundTexId;
static int activeTexId;
};
#endif //C003_TEXTURE_H
| [
"darek.stojaczyk@gmail.com"
] | darek.stojaczyk@gmail.com |
2d1614d546dd4b6bad8f052c0a18f890c3680762 | 8a02f56077a3242e3bf7c0136eff08876bad7c8f | /ex_L3_6/main.cpp | d00364853963ddf0ca82586f7e00b089971d6ec0 | [
"MIT"
] | permissive | alfunx/UZH-BINF4213 | 0850b748f3836128699b64532650a3e184400ff4 | a4c8468a21807e61c827b32410508566664a27c1 | refs/heads/master | 2020-03-29T19:34:53.034757 | 2019-01-20T09:43:36 | 2019-01-20T09:43:36 | 150,270,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 707 | cpp | #include <functional>
#include <iostream>
using namespace std;
struct foo {
std::string name;
foo(std::string name) : name(name) { /* void */ }
void say_hello()
{
cout << "Hello, World! Here's " << name << "." << endl;
}
};
int main(int argc, char** argv)
{
vector<foo*> foobar;
foo bar("bar");
foo baz("baz");
foo qux("qux");
foobar.push_back(&bar);
foobar.push_back(&baz);
foobar.push_back(&qux);
for (vector<foo*>::iterator i = foobar.begin(); i < foobar.end(); i++)
(*i)->say_hello();
auto greet = std::mem_fun(&foo::say_hello);
for_each(foobar.begin(), foobar.end(), greet);
// or
for (auto f : foobar)
f->say_hello();
for (auto f : foobar)
greet(f);
return 0;
}
| [
"alphonse.mariya@hotmail.com"
] | alphonse.mariya@hotmail.com |
6e2aacc612f75966e1d7396a0a58ed08bf43ad01 | 00da795e529b9c8acd4e20dcedaa68db9015f449 | /checks/A.cpp | 535da96d94cb5f37eb1acecd459bac172a0b57ae | [] | no_license | nitish11/coding-practices | f557c24babc9ac210da429dfc184d9294feeeb27 | 85a38d71165b71c535f020fe2e7edd095588b854 | refs/heads/master | 2021-01-01T05:31:53.599731 | 2014-07-09T12:56:29 | 2014-07-09T12:56:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 59 | cpp | #include<process.h>
int main()
{
int i;
exit(1);
}
| [
"nitish.bhardwaj11@gmail.com"
] | nitish.bhardwaj11@gmail.com |
1769398a326b2853a6b090c307cd85ac75ad11f4 | 553bea24ece6c8f41642f8e8e567d20fb32f0ad9 | /src/utils/include/utils/input_grid_utils.h | f3eca301c9a7972f8eaddee25fb7b606775eda95 | [
"MIT"
] | permissive | pierre-dejoue/picross-solver | a12913c582cb9db49892665cec8267d51acb411a | 45be54dfa9b6a097ad977ddd5d95e47b79f35dd4 | refs/heads/main | 2023-08-30T21:00:38.979792 | 2023-08-26T20:20:17 | 2023-08-26T23:03:36 | 8,221,585 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 395 | h | #pragma once
#include <picross/picross.h>
#include <ostream>
namespace picross
{
void stream_input_grid_constraint(std::ostream& out, const InputGrid& input_grid, const LineId& line_id);
void stream_input_grid_line_id_and_constraint(std::ostream& out, const InputGrid& input_grid, const LineId& line_id);
void stream_input_grid_constraints(std::ostream& out, const InputGrid& input_grid);
}
| [
"pierre.dejoue@gmail.com"
] | pierre.dejoue@gmail.com |
1edd803e36b428c08fd90f95ac6051cc38b19c78 | 613bb55365d68e31ec68d3c101d4630681d1c8ee | /source/util/qqgame_util.cc | 07fcab5545dc742e7804d3f97ec87922abb49d5b | [] | no_license | changpinggou/NPAPI-ActiveX | db478bc7bfecc7d995a1dd3a380ff6bacf5891e4 | 805a311f457d64acc34ba818a495792679636205 | refs/heads/master | 2021-01-10T13:31:30.766738 | 2015-06-25T02:18:08 | 2015-06-25T02:18:08 | 36,733,400 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,884 | cc | #include "qqgame_util.h"
#include <WinVer.h>
#include <Shlwapi.h>
#include <atlstr.h>
namespace qqgame
{
bool CheckQQGameRunning(HWND* hMsgWnd)
{
return (*hMsgWnd = ::FindWindowEx(NULL, NULL, QQGAME_MAINFRAME_WNDCLASS, NULL)) != NULL;
}
bool CheckQQGameSetup(HWND* hMsgWnd)
{
return (*hMsgWnd = ::FindWindowEx(NULL, NULL, QQGAME_SETUP_WNDCLASS, NULL)) != NULL;
}
bool GetQQGwpExePath(std::wstring& QQGwpFullPath){
HKEY mq;
DWORD rec,rbt;
rec = REG_SZ;
rbt = MAX_PATH;
wchar_t buf[MAX_PATH] = {0};
long rs = RegOpenKeyEx(HKEY_CURRENT_USER, QQGAME_SUBKEY_PATH, 0, KEY_ALL_ACCESS, &mq);
if((rs==ERROR_SUCCESS) &&
(RegQueryValueEx(mq,L"HallDirectory",NULL,&rec,(LPBYTE)buf, &rbt) == ERROR_SUCCESS))
{
PathAppendW(buf, L"QQGwp.exe");
QQGwpFullPath = buf;
RegCloseKey(mq);
}
return !!PathFileExists(QQGwpFullPath.c_str());
}
bool GetQQGameHallInstallDir(std::wstring& QQGameHallInstallDir){
HKEY mq;
DWORD rec,rbt;
rec = REG_SZ;
rbt = MAX_PATH;
wchar_t buf[MAX_PATH] = {0};
long rs = RegOpenKeyEx(HKEY_CURRENT_USER, QQGAME_SUBKEY_PATH, 0, KEY_ALL_ACCESS, &mq);
if((rs==ERROR_SUCCESS) &&
(RegQueryValueEx(mq,L"HallDirectory",NULL,&rec,(LPBYTE)buf, &rbt) == ERROR_SUCCESS))
{
QQGameHallInstallDir = buf;
RegCloseKey(mq);
}
return !!PathFileExists(QQGameHallInstallDir.c_str());
}
bool LaunchQQGwpInternal(std::wstring& strExePath, const std::wstring& strParam)
{
std::wstring strCmdTemp = L"\"";
strCmdTemp += strParam;
strCmdTemp +=L"\"";
HINSTANCE ret = (HINSTANCE)ShellExecute(NULL, L"open", strExePath.c_str(), strCmdTemp.c_str(), NULL, SW_SHOWNORMAL);
return (DWORD)ret > 32 ? true : false;
}
bool GetQQGameCUVer(std::wstring& strCurVer)
{
std::wstring QQGameHallInstallPath;
GetQQGameHallInstallDir(QQGameHallInstallPath);
QQGameHallInstallPath +=L"\\";
QQGameHallInstallPath += QQGAME_MALL_EXE;
DWORD dwHandle = 0;
DWORD dwSize = 0;
dwSize = GetFileVersionInfoSize(QQGameHallInstallPath.c_str(),&dwHandle);
if (!dwSize)
{
return false;
}
BYTE *Buf = new BYTE[dwSize];
ZeroMemory(Buf,sizeof(BYTE)*dwSize);
if (GetFileVersionInfo(QQGameHallInstallPath.c_str(),NULL,dwSize,Buf))
{
ATL::CStringW szVersion;
VS_FIXEDFILEINFO *pvi;
VerQueryValue(Buf,_T("\\"),(LPVOID*)&pvi,(PUINT)&dwSize);
if (dwSize)
{
szVersion.Format(L"%d.%d.%d.%d",HIWORD(pvi->dwFileVersionMS),LOWORD(pvi->dwFileVersionMS),
HIWORD(pvi->dwFileVersionLS), LOWORD(pvi->dwFileVersionLS));
}
if (szVersion.GetLength() > 0)
{
strCurVer.append(szVersion.GetBuffer(0));
}
}
delete []Buf;
return true;
}
bool GetPluginCUVer(std::wstring& strCurVer)
{
wchar_t system_buffer[MAX_PATH];
system_buffer[0] = 0;
HMODULE this_module = reinterpret_cast<HMODULE>(&__ImageBase);
::GetModuleFileName(this_module, system_buffer, MAX_PATH);
DWORD dwHandle = 0;
DWORD dwSize = 0;
dwSize = GetFileVersionInfoSize(system_buffer,&dwHandle);
if (!dwSize)
{
return false;
}
BYTE *Buf = new BYTE[dwSize];
ZeroMemory(Buf,sizeof(BYTE)*dwSize);
if (GetFileVersionInfo(system_buffer,NULL,dwSize,Buf))
{
ATL::CStringW szVersion;
VS_FIXEDFILEINFO *pvi;
VerQueryValue(Buf,_T("\\"),(LPVOID*)&pvi,(PUINT)&dwSize);
if (dwSize)
{
szVersion.Format(L"%d.%d.%d.%d",HIWORD(pvi->dwFileVersionMS),LOWORD(pvi->dwFileVersionMS),
HIWORD(pvi->dwFileVersionLS), LOWORD(pvi->dwFileVersionLS));
}
if (szVersion.GetLength() > 0)
{
strCurVer.append(szVersion.GetBuffer(0));
}
}
delete []Buf;
return true;
}
} //namespace | [
"applechang@applechang-PC2.tencent.com"
] | applechang@applechang-PC2.tencent.com |
da2377bbc34dbdba8ba4505e74c7d239ff54468e | 655204b08baddde6c857f9ddcfe295bb84615193 | /Source/PhysicsEngine/PhysicsObject.h | 05a956d2eed7c98b3715a614d0dad1d729c0b2cf | [] | no_license | LASpencer/aie-Custom-Physics-Project | a5fb2a1e657b62ccd6c97475a2623a03944a0e5c | 385f6512d5f19407ede2cc63009c7c2f126d965d | refs/heads/master | 2021-05-04T16:28:41.732326 | 2018-03-04T23:34:52 | 2018-03-04T23:34:52 | 120,251,627 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,206 | h | #pragma once
#include "ExternalLibraries.h"
namespace physics {
enum ShapeType {
spring,
plane,
sphere,
obox
};
class PhysicsScene;
class PhysicsObject;
class RigidBody;
class Sphere;
class Box;
class Plane;
class ICollisionObserver;
typedef std::shared_ptr<PhysicsObject> PhysicsObjectPtr;
typedef std::weak_ptr<PhysicsObject> PhysicsObjectWeakPtr;
typedef std::shared_ptr<ICollisionObserver> CollisionObserverPtr;
typedef std::weak_ptr<ICollisionObserver> CollisionObserverWeakPtr;
struct Collision {
Collision(bool a_success = false, PhysicsObject* a_first = nullptr, PhysicsObject* a_second = nullptr, glm::vec2 a_normal = glm::vec2(0), glm::vec2 a_contact = glm::vec2(0), float a_depth = 0)
: success(a_success), first(a_first), second(a_second), normal(a_normal), contact(a_contact), depth(a_depth)
{};
// Whether the collision occurred
bool success;
PhysicsObject* first;
PhysicsObject* second;
// Collision normal pointed at first object
glm::vec2 normal;
// Contact point of collision
glm::vec2 contact;
// Depth by which objects interpenetrate
float depth;
operator bool() const { return success; }
// Returns collision with first and second objects swapped
Collision reverse() const {
return Collision(success, second, first, -normal, contact, depth);
}
};
// Abstract base class for all physical objects
class PhysicsObject : public std::enable_shared_from_this<PhysicsObject> {
protected:
PhysicsObject(float elasticity, float friction, glm::vec4 colour);
PhysicsObject(const PhysicsObject& other);
glm::vec4 m_colour; // Colour to draw object
float m_elasticity; // Coefficient of elasticity
float m_friction; // Coefficient of friction
unsigned int m_tags; // Bitmask for use by observers
bool m_alive; // True until object set as dead
bool m_trigger; // If true, no physical effect from collision
bool m_draw; // If true, gizmo will be created for rendering
std::vector<CollisionObserverWeakPtr> m_observers;
public:
virtual PhysicsObject* clone() = 0;
virtual void earlyUpdate(PhysicsScene* m_scene) = 0;
virtual void fixedUpdate(PhysicsScene* m_scene) = 0;
// Draw object with gizmos
virtual void makeGizmo(float timeRatio) = 0;
glm::vec4 getColour() { return m_colour; }
void setColour(glm::vec4 colour) { m_colour = colour; }
float getElasticity() { return m_elasticity; };
void setElasticity(float elasticity);
float getFriction() { return m_friction; }
void setFriction(float friction);
virtual bool isPointInside(glm::vec2 point) = 0;
// test collision against other object
// returns struct describing collision
virtual Collision checkCollision(PhysicsObject* other) = 0;
virtual Collision checkSphereCollision(Sphere* other) = 0;
virtual Collision checkBoxCollision(Box* other) = 0;
virtual Collision checkPlaneCollision(Plane* other) = 0;
virtual void resolveCollision(PhysicsObject* other, const Collision& col) = 0;
virtual void resolveRigidbodyCollision(RigidBody * other, const Collision& col) = 0;
virtual void resolvePlaneCollision(Plane* other, const Collision& col) = 0;
virtual ShapeType getShapeID() = 0;
virtual float calculateEnergy(PhysicsScene* m_scene) = 0;
virtual glm::vec2 calculateMomentum() = 0;
// Informs all observers that object was collided with
// collision = collision to send to observers
void broadcastCollision(const Collision& collision);
// Calculates the combined elasticity for a pair of objects
// e1,e2 = colliding objects
static float combineElasticity(PhysicsObject* e1, PhysicsObject* e2);
// Calculates the coefficient of friction for a pair of objects
// e1,e2 = colliding objects
static float combineFriction(PhysicsObject* e1, PhysicsObject* e2);
// Returns true if the object is set as static
virtual bool isStatic() = 0;
// Returns true if the object has not been killed
bool isAlive() { return m_alive; };
bool isTrigger() { return m_trigger; }
void setTrigger(bool value) { m_trigger = value; }
bool shouldDraw() { return m_draw; }
void setDraw(bool value) { m_draw = value; }
// Call to set object as dead, so scene and other objects
// referring to it can remove it
void kill();
// Call to set object as alive again, allowing it to be added back to the scene
virtual void resetAlive();
// Adds new observer to inform about collisions
// returns true if added, false if already observing
bool addObserver(const CollisionObserverPtr& observer);
// Removes observer from list
bool removeObserver(const CollisionObserverPtr& observer);
// Returns true if observer is in list of subscribers
bool isSubscribed(const CollisionObserverPtr& observer);
const std::vector<CollisionObserverWeakPtr>& getObservers() { return m_observers; }
unsigned int getTags() { return m_tags; }
void setTags(unsigned int tags);
// Sets passed bits to true in object's tags
void addTags(unsigned int tags);
// Sets passed bits to false in object's tags
void removeTags(unsigned int tags);
// Returns true if all bits passed are set to true in object's tags
bool hasTags(unsigned int tags);
};
} | [
"thrawn369@gmail.com"
] | thrawn369@gmail.com |
880ea1d61180993952b9a8d48aa4c0dd27ff4a44 | 0c268ff10b68c4a24023ca646bb46c5a125eb84c | /Codeforces_Contest/Round_607_div2/b.cpp | e136f851fcf557f140dbcbaf5025bd52fd8f2f03 | [] | no_license | TzeHimSung/AcmDailyTraining | 497b9fb77c282f2f240634050e38f395cf1bedbc | 2a69fa38118e43cbeca44cb99369e6e094663ec8 | refs/heads/master | 2023-03-21T21:39:02.752317 | 2021-03-14T03:41:00 | 2021-03-14T03:41:00 | 159,670,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 998 | cpp | /* basic header */
#include <bits/stdc++.h>
/* define */
#define ll long long
#define dou double
#define pb emplace_back
#define mp make_pair
#define sot(a,b) sort(a+1,a+1+b)
#define rep1(i,a,b) for(int i=a;i<=b;++i)
#define rep0(i,a,b) for(int i=a;i<b;++i)
#define eps 1e-8
#define int_inf 0x3f3f3f3f
#define ll_inf 0x7f7f7f7f7f7f7f7f
#define lson (minpos<<1)
#define rson (minpos<<1|1)
/* namespace */
using namespace std;
/* header end */
int t;
string a,b;
int main() {
cin>>t;
while (t--){
cin>>a>>b;
if (a<b){
cout<<a<<'\n';
continue;
}
string s=a;
sort(s.begin(),s.end());
int flag=0;
for (int i=0;i<(int)a.size();i++){
// current char is not at the best position
if (a[i]>s[i]){
// it can swap with the back char only
for (int j=i+1;j<(int)a.size();j++){
swap(a[i],a[j]);
if (a<b){
cout<<a<<'\n';
flag=1;
i=(int)a.size();
break;
}
swap(a[i],a[j]);
}
}
}
if (!flag) puts("---");
}
return 0;
}
| [
"zxc98567@gmail.com"
] | zxc98567@gmail.com |
249464c5222a09602f97416c91750b3a16119667 | 949763c9456b4abcb89e5f9e9b38c82867a01b7e | /src/components/Input.cpp | c911b1ac80e44ae12731f33b14e8be467ec4c9f1 | [] | no_license | jjzhang166/DreamInEngine | beddb448fbfc9024c7a261ba02949ebf0d6f2e79 | d1df48e4b5922a7a48edc108c6dab56d53c24ba8 | refs/heads/master | 2023-06-06T12:54:12.760340 | 2021-07-01T16:55:46 | 2021-07-01T16:55:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30 | cpp | #include "components/Input.h"
| [
"valentin.dumas@viacesi.fr"
] | valentin.dumas@viacesi.fr |
8e5989d36d822e9be6bc3695e38ecd598c70396a | ff0cc7e931d038a9bd9a56665b20cd8dab071959 | /src/Modules/BaseLib/libmodules/blIO/src/blV3DImageFileReader.cpp | 9ffe0b66e4de696576cbd7dbda025b969c5583f4 | [] | no_license | jakubsadura/Swiezy | 6ebf1637057c4dbb8fda5bfd3f57ef7eec92279b | bd32b7815b5c0206582916b62935ff49008ee371 | refs/heads/master | 2016-09-11T00:39:59.005668 | 2011-05-22T19:38:33 | 2011-05-22T19:38:33 | 1,784,754 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,977 | cpp | /*
* Copyright (c) 2009,
* Computational Image and Simulation Technologies in Biomedicine (CISTIB),
* Universitat Pompeu Fabra (UPF), Barcelona, Spain. All rights reserved.
* See license.txt file for details.
*/
#include "blV3DImageFileReader.h"
//--------------------------------------------------
blV3DImageFileReader::blV3DImageFileReader()
//--------------------------------------------------
{
// allocation and initialization of vectors representing Origin, Spacing and Dimensions
this->v3Origin.resize(3);
this->SetOrigin(0.0f, 0.0f, 0.0f);
this->v3Spacing.resize(3);
this->SetSpacing(0.0f, 0.0f, 0.0f);
this->v3Dimensions.resize(3);
this->SetDimensions(0.0f, 0.0f, 0.0f);
// initialization of scale factor
this->SetScale(1.0f);
// manual selection of origin, spacing, dimensions and scaling are disabled
this->SetOriginOff();
this->SetSpacingOff();
this->SetDimensionsOff();
this->SetScaleDataOff();
// initialization of fileName
this->SetFileName("");
// initialization of image data object to NULL
this->SetVTKDataObject(NULL);
// default value: no byte swapping is necessary
this->SetSwapOff();
// default value: unsigned short data type
this->SetType(BLV3Dushort);
// default value: no unit conversion is necessary
this->SetUnitConversion(BLV3DnoConv);
// default value: no verbose
this->SetVerboseOff();
// default value: initialization to 0 of the header size
this->SetHeaderSize(0);
// initialize the image object to NULL
this->SetVTKDataObject(NULL);
// initialize the image object to NULL
this->SetITKDataObject(NULL);
}
//--------------------------------------------------
blV3DImageFileReader::~blV3DImageFileReader()
//--------------------------------------------------
{
// restoring the default values to the object before destroying
this->SetOrigin(0.0f, 0.0f, 0.0f);
this->SetSpacing(0.0f, 0.0f, 0.0f);
this->SetDimensions(0.0f, 0.0f, 0.0f);
this->SetOriginOff();
this->SetSpacingOff();
this->SetDimensionsOff();
this->SetScaleDataOff();
this->SetFileName("");
this->SetVTKDataObject(NULL);
this->SetSwapOff();
this->SetType(BLV3Dushort);
this->SetUnitConversion(BLV3DnoConv);
this->SetScale(1.0f);
this->SetVerboseOff();
this->SetHeaderSize(0);
if (this->vtkImageObj != NULL) this->vtkImageObj->Delete();
this->SetVTKDataObject(NULL);
}
//--------------------------------------------------
void blV3DImageFileReader::Update()
//--------------------------------------------------
{
// read the data from the v3d file and update the member variables with the data describing its contents
this->ReadDataFromV3D();
// using the data read from the v3d file create a VTK object with the same characteristics and contents
this->CreateVTKDataObject();
this->CreateITKDataObject();
}
//--------------------------------------------------
void blV3DImageFileReader::ReadDataFromV3D()
//--------------------------------------------------
{
this->SetHeaderSize(40 + 6*8 + 6*4);
// open the header file
FILE * fp;
fp = fopen(this->fileName.c_str(), "r");
// read version
char buf[128];
ReadBytes( buf, sizeof(char), 10, fp);
buf[11] = '\0';
rewind(fp);
//int ver = ( buf[7] == '4' ) ? 4 : 3;
//int ver = atof( (const char*)buf[7] );
std::cout << buf << std::endl;
int ver = 4;
if (buf[7]=='3')
ver = 3;
else if (buf[7]=='4')
ver = 4;
else if (buf[7]=='6')
ver = 6;
// The rewind function positions the stream at the beginning of the file. It is
// equivalent to calling fseek or fseeko on the stream with an offset argument of 0L and
// a whence argument of SEEK_SET, except that the return value is discarded and the error
// indicator for the stream is reset.
// The fseek function is used to change the file position of the stream. The value of whence
// must be one of the constants SEEK_SET, SEEK_CUR, or SEEK_END, to indicate whether the
// offset is relative to the beginning of the file, the current file position, or the end
// of the file, respectively.
// Reads v3d versions 3 or 4
//if (ver == 3)
// ReadV3Dversion3(fp);
//else
// ReadV3Dversion4(fp);
switch ( ver )
{
case 3 :
// Process for ver = 3
ReadV3Dversion3(fp);
break;
case 4 :
// Process for test = 4
ReadV3Dversion4(fp);
break;
case 6 :
// Process for test = 4
ReadV3Dversion6(fp);
break;
default :
// Process for all other cases.
ReadV3Dversion4(fp);
}
fclose(fp);
}
//--------------------------------------------------
void blV3DImageFileReader::ReadV3Dversion3(FILE * fp)
//--------------------------------------------------
{
// read header
int nx, ny, nz; //number of voxel in X, Y, and Z
double x0, y0, z0; //origin
double x1, y1, z1;
double dx, dy, dz; //spacing (voxels size)
//Sets the position indicator associated with the stream at the beginning of file.
fseek(fp, 84, SEEK_SET);
ReadBytes( (void*)&x0, sizeof(double), 1, fp );
ReadBytes( (void*)&y0, sizeof(double), 1, fp );
ReadBytes( (void*)&z0, sizeof(double), 1, fp );
ReadBytes( (void*)&x1, sizeof(double), 1, fp );
ReadBytes( (void*)&y1, sizeof(double), 1, fp );
ReadBytes( (void*)&z1, sizeof(double), 1, fp );
ReadBytes( (void*)&nx, sizeof(int), 1, fp ); //Number Of Voxels in X direction
ReadBytes( (void*)&ny, sizeof(int), 1, fp ); //Number Of Voxels in Y direction
ReadBytes( (void*)&nz, sizeof(int), 1, fp ); //Number Of Voxels in Z direction
dx = (x1-x0)/((double)nx); //Spacing in X
dy = (y1-y0)/((double)ny); //Spacing in Y
dz = (z1-z0)/((double)nz); //Spacing in Z
x0 = 0.5*(x1 + x0);
y0 = 0.5*(y1 + y0);
z0 = 0.5*(z1 + z0);
this->SetHeaderSize(84 + 6 * 8 + 3 * 4);
if (!this->bDimensions) this->SetDimensions(nx, ny, nz);
if (!this->bSpacing) this->SetSpacing(dx, dy, dz);
if (!this->bOrigin) this->SetOrigin(x0, y0, z0);
if (this->blV3DUnitConvType == BLV3Dmm2cm) this->SetSpacing(dx/10.0f, dy/10.0f, dz/10.0f);
}
//--------------------------------------------------
void blV3DImageFileReader::ReadV3Dversion4(FILE * fp)
//--------------------------------------------------
{
// read header
int nx, ny, nz; //number of voxel in X, Y, and Z
int nd, np, nf;
double x0, y0, z0; //origin
double dx, dy, dz; //spacing (voxels size)
fseek(fp, 40, SEEK_SET);
ReadBytes( (void*)&nx, sizeof(int), 1, fp );
ReadBytes( (void*)&ny, sizeof(int), 1, fp );
ReadBytes( (void*)&nz, sizeof(int), 1, fp );
ReadBytes( (void*)&dx, sizeof(double), 1, fp );
ReadBytes( (void*)&dy, sizeof(double), 1, fp );
ReadBytes( (void*)&dz, sizeof(double), 1, fp );
ReadBytes( (void*)&x0, sizeof(double), 1, fp );
ReadBytes( (void*)&y0, sizeof(double), 1, fp );
ReadBytes( (void*)&z0, sizeof(double), 1, fp );
ReadBytes( (void*)&nd, sizeof(int), 1, fp );
ReadBytes( (void*)&np, sizeof(int), 1, fp );
ReadBytes( (void*)&nf, sizeof(int), 1, fp );
this->SetHeaderSize(40 + 3 * 4 + 6 * 8 + 3 * 4);
if (!this->bDimensions) this->SetDimensions(nx, ny, nz);
if (!this->bSpacing) this->SetSpacing(dx, dy, dz);
if (!this->bOrigin) this->SetOrigin(x0, y0, z0);
if (this->blV3DUnitConvType == BLV3Dmm2cm) this->SetSpacing(dx/10.0f, dy/10.0f, dz/10.0f);
}
//--------------------------------------------------
void blV3DImageFileReader::ReadV3Dversion6(FILE * fp)
//--------------------------------------------------
{
// read header
int nx, ny, nz; //number of voxel in X, Y, and Z
int nd, np, nf;
double x0, y0, z0; //origin
double dx, dy, dz; //spacing (voxels size)
fseek(fp, 40, SEEK_SET);
ReadBytes( (void*)&nx, sizeof(int), 1, fp );
ReadBytes( (void*)&ny, sizeof(int), 1, fp );
ReadBytes( (void*)&nz, sizeof(int), 1, fp );
ReadBytes( (void*)&dx, sizeof(double), 1, fp );
ReadBytes( (void*)&dy, sizeof(double), 1, fp );
ReadBytes( (void*)&dz, sizeof(double), 1, fp );
ReadBytes( (void*)&x0, sizeof(double), 1, fp );
ReadBytes( (void*)&y0, sizeof(double), 1, fp );
ReadBytes( (void*)&z0, sizeof(double), 1, fp );
ReadBytes( (void*)&nd, sizeof(int), 1, fp );
ReadBytes( (void*)&np, sizeof(int), 1, fp );
ReadBytes( (void*)&nf, sizeof(int), 1, fp );
this->SetHeaderSize(40 + 3 * 4 + 6 * 8 + 3 * 4 + 92); //in total 204
//not sure if the headers are like this!
if (!this->bDimensions) this->SetDimensions(nx, ny, nz);
if (!this->bSpacing) this->SetSpacing(dx, dy, dz);
if (!this->bOrigin) this->SetOrigin(x0, y0, z0);
if (this->blV3DUnitConvType == BLV3Dmm2cm) this->SetSpacing(dx/10.0f, dy/10.0f, dz/10.0f);
}
//--------------------------------------------------
void blV3DImageFileReader::ReadBytes(void *ptr, int size, int num, FILE * fp)
//--------------------------------------------------
{
fread( (void*)ptr, size, num, fp);
if(this->bSwapBytes == 1)
SwapBytes( (void*)ptr, size, num);
}
//--------------------------------------------------
void blV3DImageFileReader::SwapBytes(void *ptr, int size, int num)
//--------------------------------------------------
{
//For swaping header bytes
register int i, ii;
char c;
char *buf = (char*)ptr;
#define ZSWAP(A,B) {c = A; A = B; B = c;}
switch( size )
{
case 1: break;
case 2:
for(i = 0; i < num; i++)
{
ii = i + i;
ZSWAP( buf[ii+0], buf[ii+1] );
}
break;
case 4:
for(i = 0; i < num; i++)
{
ii = i + i + i + i;
ZSWAP( buf[ii+0], buf[ii+3] );
ZSWAP( buf[ii+1], buf[ii+2] );
}
break;
case 8:
for(i = 0; i < num; i++)
{
ii = i + i + i + i + i + i + i + i;
ZSWAP( buf[ii+0], buf[ii+7] );
ZSWAP( buf[ii+1], buf[ii+6] );
ZSWAP( buf[ii+2], buf[ii+5] );
ZSWAP( buf[ii+3], buf[ii+4] );
}
break;
}
#undef ZSWAP
}
//--------------------------------------------------
void blV3DImageFileReader::CreateVTKDataObject()
//--------------------------------------------------
{
vtkImageReader *reader = vtkImageReader::New();
// allocate memory for vtkImageData
this->vtkImageObj = vtkImageData::New();
reader->SetFileName(this->GetFileName().c_str());
reader->SetHeaderSize(this->GetHeaderSize());
reader->SetDataScalarType(this->blV3DType);
reader->SetSwapBytes(this->bSwapBytes);
reader->SetFileDimensionality(3);
reader->SetDataOrigin(this->v3Origin[0], this->v3Origin[1], this->v3Origin[2]);
reader->SetDataSpacing(this->v3Spacing[0], this->v3Spacing[1], this->v3Spacing[2]);
reader->SetDataExtent(0, this->v3Dimensions[0]-1, 0, this->v3Dimensions[1]-1, 0, this->v3Dimensions[2]-1);
reader->SetNumberOfScalarComponents(1);
reader->SetScalarArrayName("ImageFile");
reader->FileLowerLeftOn();
reader->Update();
if (this->bVerbose)
{
cout<< "v3d image data has:\n\t"
<< reader->GetOutput()->GetNumberOfPoints() << " Points\n\t"
<< reader->GetOutput()->GetNumberOfCells () << " Cells "
<< endl;
cerr << "Original image has "
<< "\nrange : " <<"\t" << reader->GetOutput()->GetScalarRange()[0]
<<"\t" << reader->GetOutput()->GetScalarRange()[1]
<<"\nData Object Type : " << reader->GetOutput()->GetDataObjectType()
<< endl;
}
if ( !this->bScaleData)
{
//this->SetVTKDataObject(reader->GetOutput());
vtkImageData* tmpImageData; //= vtkImageData::New();
tmpImageData = reader->GetOutput();
this->vtkImageObj->DeepCopy(tmpImageData);
}
else {
float rangeMin = (double)reader->GetOutput()->GetScalarRange()[0];
float rangeMax = (double)reader->GetOutput()->GetScalarRange()[1];
float scale = 1.0/(rangeMax - rangeMin);
// load voxels
// loading voxels into buffer
this->vtkImageObj->SetSpacing(this->v3Spacing[0], this->v3Spacing[1], this->v3Spacing[2]);
this->vtkImageObj->SetOrigin(this->v3Origin[0], this->v3Origin[1], this->v3Origin[2]);
this->vtkImageObj->SetDimensions(this->v3Dimensions[0],this->v3Dimensions[1],this->v3Dimensions[2]);
this->vtkImageObj->SetExtent(0, this->v3Dimensions[0]-1, 0, this->v3Dimensions[1]-1, 0, this->v3Dimensions[2]-1);
this->vtkImageObj->SetScalarTypeToFloat();
this->vtkImageObj->AllocateScalars();
this->vtkImageObj->Update();
vtkDataArray * scalars = reader->GetOutput()->GetPointData()->GetScalars();
float * scalars1 = (float *)this->vtkImageObj->GetScalarPointer();
unsigned int nVoxels = reader->GetOutput()->GetNumberOfPoints();
register unsigned int ptId;
for( ptId = 0; ptId < nVoxels; ptId++ )
{
scalars1[ptId] = scale * ( (float)scalars->GetComponent(ptId,0) - rangeMin);
}
}
if(this->bVerbose)
{
cout<< "v3d vtkImageObj data has:\n\t"
<< "Origin = [" << reader->GetOutput()->GetOrigin()[0] << " "
<< reader->GetOutput()->GetOrigin()[1] << " "
<< reader->GetOutput()->GetOrigin()[2] << " ]\n\t"
<< "Spacing = [" << reader->GetOutput()->GetSpacing()[0] << " "
<< reader->GetOutput()->GetSpacing()[1] << " "
<< reader->GetOutput()->GetSpacing()[2] << " ]\n\t"
<< "Dimension = [" << reader->GetOutput()->GetDimensions()[0] << " "
<< reader->GetOutput()->GetDimensions()[1] << " "
<< reader->GetOutput()->GetDimensions()[2] << " ]"
<< endl;
}
reader->Delete();
}
//--------------------------------------------------
void blV3DImageFileReader::CreateITKDataObject()
//--------------------------------------------------
{
typedef itk::VTKImageToImageFilter < base::UnsignedShortVolumeType > ConnectorType;
ConnectorType::Pointer connector = ConnectorType::New();
connector->SetInput((vtkImageData*)this->vtkImageObj);
connector->Update();
this->itkVolumeObj = connector->GetOutput();
}
#ifdef BASELIB_TESTING
namespace blTests
{
int blV3DImageFileReaderTest( string fileName )
{
cout << fileName << endl;
mvLib::blV3DImageFileReader::Pointer pV3DImageFileReader = mvLib::blV3DImageFileReader::New();
pV3DImageFileReader->SetVerboseOn();
pV3DImageFileReader->SetFileName(fileName);
try
{
pV3DImageFileReader->Update();
}
catch ( itk::ExceptionObject &err)
{
std::cout << "blV3DImageFileReaderTest::ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return -1;
}
return 0;
}
} // blTests namespace
#endif // BASELIB_TESTING
| [
"spam@sadura.pl"
] | spam@sadura.pl |
a7f5b753aac995b00c2204f9f828213ce48f5b4b | be4d72c7501e70423b53082a7afae28c6a06f5c2 | /filled-triangles/rasterizer.cc | ecba332a9a624ffdb53029aca814c89b839cb765 | [] | no_license | ivankocienski/graphics | b411ef655a422e790356a734f6d936f814ac0c8c | 20a970ead64658fbe787719486e4d9eede1386a3 | refs/heads/master | 2020-08-07T13:51:04.332038 | 2014-11-27T17:20:50 | 2014-12-01T12:34:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,067 | cc |
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "rasterizer.hh"
// using http://forum.devmaster.net/t/advanced-rasterization/6145
static unsigned char *vbuff;
static int vpitch;
//static int vwidth;
//static int vheight;
static int vmaxx;
static int vmaxy;
void rast_setup( unsigned char *vb, int vp, int maxx, int maxy ) {
vbuff = vb;
vpitch = vp;
//vwidth = maxx;
//vheight = maxy;
vmaxx = maxx - 1;
vmaxy = maxy - 1;
}
void rast_fill_triangle( int x1, int y1, int x2, int y2, int x3, int y3 ) {
int x;
int y;
int min_x = x1;
if( x2 < min_x ) min_x = x2;
if( x3 < min_x ) min_x = x3;
int min_y = y1;
if( y2 < min_y ) min_y = y2;
if( y3 < min_y ) min_y = y3;
int max_x = x1;
if( x2 > max_x ) max_x = x2;
if( x3 > max_x ) max_x = x3;
int max_y = y1;
if( y2 > max_y ) max_y = y2;
if( y3 > max_y ) max_y = y3;
int dx12 = x1 - x2;
int dx23 = x2 - x3;
int dx31 = x3 - x1;
int dy12 = y1 - y2;
int dy23 = y2 - y3;
int dy31 = y3 - y1;
int c1 = dy12 * x1 - dx12 * y1;
int c2 = dy23 * x2 - dx23 * y2;
int c3 = dy31 * x3 - dx31 * y3;
int cy1 = c1 + dx12 * min_y - dy12 * min_x;
int cy2 = c2 + dx23 * min_y - dy23 * min_x;
int cy3 = c3 + dx31 * min_y - dy31 * min_x;
unsigned char *p = vbuff + (min_y * vpitch) + min_x;
int pad = vpitch - (max_x - min_x);
for( y = min_y; y < max_y; y++ ) {
int cx1 = cy1;
int cx2 = cy2;
int cx3 = cy3;
for( x = min_x; x < max_x; x++ ) {
if( cx1 > 0 && cx2 > 0 && cx3 > 0 ) *p = 255;
cx1 -= dy12;
cx2 -= dy23;
cx3 -= dy31;
p++;
}
cy1 += dx12;
cy2 += dx23;
cy3 += dx31;
p += pad;
}
}
static void draw_line( int x1, int x2, int y, unsigned char c ) {
if( x1 < 0 ) x1 = 0;
if( x2 > vmaxx) x2 = vmaxx;
int l = x2 - x1;
if( l < 1 ) return;
memset( vbuff + ( y * vpitch ) + x1, c, l );
}
static void draw_flat_tri( int xl, int yl, int xm, int ym, int xr, unsigned char c ) {
if( xl > xr ) {
int t = xr;
xr = xl;
xl = t;
}
float dy;
float slope_l = 0;
float slope_r = 0;
float c_x;
float c_y;
float e_x;
if( ym < yl ) {
// scanning from point to base
if( yl < 0 || ym > vmaxy ) return;
dy = yl - ym;
if( dy != 0 ) {
slope_l = (float)(xl - xm) / dy;
slope_r = (float)(xr - xm) / dy;
}
c_x = xm;
c_y = ym;
e_x = xm;
} else {
// scanning from base to point
if( ym < 0 || yl > vmaxy ) return;
dy = ym - yl;
if( dy != 0 ) {
slope_l = (float)(xm - xl) / dy;
slope_r = (float)(xm - xr) / dy;
}
c_x = xl;
c_y = yl;
e_x = xr;
}
// do we start to the left off screen?
if( e_x < 0 ) {
float steps_l = 0;
if( slope_r != 0 ) steps_l = (0 - e_x) / slope_r;
c_y += (int)steps_l;
e_x = 0;
c_x += steps_l * slope_l;
} else {
// do we start to the right of the screen?
if( c_x > vmaxx ) {
float steps_r = 0;
if( slope_l != 0 ) steps_r = (vmaxx - c_x) / slope_l;
c_y += (int)steps_r;
c_x = vmaxx;
e_x += steps_r * slope_r;
}
}
// if we are above the screen then adjust the start
if( c_y < 0 ) {
//printf("c_y<0\n");
float diff = 0 - c_y;
//printf(" c_y=%f\n", c_y );
//printf(" diff=%f\n", diff );
//printf(" slope_r=%f\n", slope_r );
//printf(" slope_l=%f\n", slope_l );
c_x += slope_l * diff;
if( c_x > vmaxx) return;
e_x += slope_r * diff;
c_y = 0;
//printf(" c_x=%f e_x=%f\n", c_x, e_x );
}
if( ym < yl ) {
// render it!
while( c_y < yl && c_y < vmaxy ) {
draw_line( c_x, e_x, c_y, c );
c_x += slope_l;
e_x += slope_r;
if( e_x < 0 || c_x > vmaxx) break;
c_y++;
}
} else {
while( c_y < vmaxy ) {
draw_line( c_x, e_x, c_y, c );
c_x += slope_l;
e_x += slope_r;
if( c_x > e_x ) break;
if( c_x > vmaxx) break;
if( e_x < 0) break;
c_y++;
}
}
}
void rast_fill_triangle2( int x1, int y1, int x2, int y2, int x3, int y3, unsigned char c ) {
int s1 = abs(y1 - y2);
int s2 = abs(y2 - y3);
int s3 = abs(y3 - y1);
if( s1 == 0 ) {
draw_flat_tri( x1, y1, x3, y3, x2, c );
return;
}
if( s2 == 0 ) {
draw_flat_tri( x2, y2, x1, y1, x3, c );
return;
}
if( s3 == 0 ) {
draw_flat_tri( x1, y1, x2, y2, x3, c );
return;
}
if( s1 > s2 && s1 > s3 ) {
// s1 is largest
if( y1 < y2 ) {
float slope = (float)(x2 - x1) / (float)(y2 - y1);
int ppy = y3;
int ppx = x1 + (float)(y3 - y1) * slope;
draw_flat_tri( ppx, ppy, x1, y1, x3, c );
draw_flat_tri( ppx, ppy, x2, y2, x3, c );
} else {
float slope = (float)(x1 - x2) / (float)(y1 - y2);
int ppy = y3;
int ppx = x2 + (float)(y3 - y2) * slope;
draw_flat_tri( ppx, ppy, x1, y1, x3, c );
draw_flat_tri( ppx, ppy, x2, y2, x3, c );
}
return;
}
if(s2 > s1 && s2 > s3) {
// s2 is the largest
if( y2 < y3 ) {
float slope = (float)(x3 - x2) / (float)(y3 - y2);
int ppy = y1;
int ppx = x2 + (float)(y1 - y2) * slope;
draw_flat_tri( ppx, ppy, x2, y2, x1, c );
draw_flat_tri( ppx, ppy, x3, y3, x1, c );
} else {
float slope = (float)(x2 - x3) / (float)(y2 - y3);
int ppy = y1;
int ppx = x3 + (float)(y1 - y3) * slope;
draw_flat_tri( ppx, ppy, x2, y2, x1, c );
draw_flat_tri( ppx, ppy, x3, y3, x1, c );
}
return;
}
// s3 must be largest
if( y3 < y1 ) {
float slope = (float)(x3 - x1) / (float)(y3 - y1);
int ppy = y2;
int ppx = x3 + (float)(y2 - y3) * slope;
draw_flat_tri( ppx, ppy, x3, y3, x2, c );
draw_flat_tri( ppx, ppy, x1, y1, x2, c );
} else {
float slope = (float)(x1 - x3) / (float)(y1 - y3);
int ppy = y2;
int ppx = x1 + (float)(y2 - y1) * slope;
draw_flat_tri( ppx, ppy, x1, y1, x2, c );
draw_flat_tri( ppx, ppy, x3, y3, x2, c );
}
}
| [
"ivan.kocienski@gmail.com"
] | ivan.kocienski@gmail.com |
49a5f9f6a0eb81626df034fac4374ff01bad4618 | 6b40e9cba1dd06cd31a289adff90e9ea622387ac | /Develop/Tools/Character_NET/AnimationHitSoundTabPage.h | 9affa1cc0c3f3a456f431b635a508c0d0f15fc0f | [] | no_license | AmesianX/SHZPublicDev | c70a84f9170438256bc9b2a4d397d22c9c0e1fb9 | 0f53e3b94a34cef1bc32a06c80730b0d8afaef7d | refs/heads/master | 2022-02-09T07:34:44.339038 | 2014-06-09T09:20:04 | 2014-06-09T09:20:04 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 5,382 | h | #pragma once
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
namespace Character_NET {
/// <summary>
/// AnimationHitSoundTabPage에 대한 요약입니다.
///
/// 경고: 이 클래스의 이름을 변경하면 이 클래스가 의존하는
/// 모든 .resx 파일과 관련된 관리되는 리소스 컴파일러 도구의
/// '리소스 파일 이름' 속성도 변경해야 합니다. 그렇지 않은 경우
/// 디자이너는 이 폼과 관련된 지역화된 리소스와
/// 올바르게 상호 작용할 수 없습니다.
/// </summary>
public ref class AnimationHitSoundTabPage : public System::Windows::Forms::Form
{
private:
bool m_bSoundLoad;
public:
AnimationHitSoundTabPage(void)
{
InitializeComponent();
//
//TODO: 생성자 코드를 여기에 추가합니다.
//
m_bSoundLoad = false;
}
void InitEffectList();
protected:
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
~AnimationHitSoundTabPage()
{
if (components)
{
delete components;
}
}
public: System::Windows::Forms::ComboBox^ HitSound_comboBox;
private: System::Windows::Forms::Button^ OK_button;
public: System::Windows::Forms::Label^ AnimationName_label;
private:
public:
protected:
protected:
protected:
public:
protected:
protected:
public:
private:
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
/// </summary>
void InitializeComponent(void)
{
this->HitSound_comboBox = (gcnew System::Windows::Forms::ComboBox());
this->OK_button = (gcnew System::Windows::Forms::Button());
this->AnimationName_label = (gcnew System::Windows::Forms::Label());
this->SuspendLayout();
//
// HitSound_comboBox
//
this->HitSound_comboBox->AutoCompleteMode = System::Windows::Forms::AutoCompleteMode::Suggest;
this->HitSound_comboBox->AutoCompleteSource = System::Windows::Forms::AutoCompleteSource::ListItems;
this->HitSound_comboBox->FormattingEnabled = true;
this->HitSound_comboBox->Location = System::Drawing::Point(16, 32);
this->HitSound_comboBox->Name = L"HitSound_comboBox";
this->HitSound_comboBox->Size = System::Drawing::Size(190, 20);
this->HitSound_comboBox->Sorted = true;
this->HitSound_comboBox->TabIndex = 0;
this->HitSound_comboBox->SelectedIndexChanged += gcnew System::EventHandler(this, &AnimationHitSoundTabPage::HitSound_comboBox_SelectedIndexChanged);
this->HitSound_comboBox->TextChanged += gcnew System::EventHandler(this, &AnimationHitSoundTabPage::HitSound_comboBox_TextChanged);
//
// OK_button
//
this->OK_button->Location = System::Drawing::Point(74, 68);
this->OK_button->Name = L"OK_button";
this->OK_button->Size = System::Drawing::Size(75, 23);
this->OK_button->TabIndex = 1;
this->OK_button->Text = L"적용";
this->OK_button->UseVisualStyleBackColor = true;
this->OK_button->Click += gcnew System::EventHandler(this, &AnimationHitSoundTabPage::OK_button_Click);
//
// AnimationName_label
//
this->AnimationName_label->AutoSize = true;
this->AnimationName_label->Location = System::Drawing::Point(14, 9);
this->AnimationName_label->Name = L"AnimationName_label";
this->AnimationName_label->Size = System::Drawing::Size(0, 12);
this->AnimationName_label->TabIndex = 2;
//
// AnimationHitSoundTabPage
//
this->AutoScaleDimensions = System::Drawing::SizeF(7, 12);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->BackColor = System::Drawing::SystemColors::Window;
this->ClientSize = System::Drawing::Size(231, 112);
this->ControlBox = false;
this->Controls->Add(this->AnimationName_label);
this->Controls->Add(this->OK_button);
this->Controls->Add(this->HitSound_comboBox);
this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::None;
this->MaximizeBox = false;
this->MinimizeBox = false;
this->Name = L"AnimationHitSoundTabPage";
this->ShowIcon = false;
this->ShowInTaskbar = false;
this->Text = L"AnimationHitSoundTabPage";
this->Load += gcnew System::EventHandler(this, &AnimationHitSoundTabPage::AnimationHitSoundTabPage_Load);
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
private: System::Void HitSoundAddbutton_Click(System::Object^ sender, System::EventArgs^ e);
private: System::Void AnimationHitSoundTabPage_Load(System::Object^ sender, System::EventArgs^ e);
private: System::Void HitSound_comboBox_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void HitSound_comboBox_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void OK_button_Click(System::Object^ sender, System::EventArgs^ e);
};
}
| [
"shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4"
] | shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4 |
c3d77e39158f62bf471f6bc21bf398a5a8c3557c | 6eda3762e8927773045da664a666cec154672c81 | /Controls/MathGraphCtrl/MathGraphCtl.cpp | f8f57080f57f5248170b81f78df554d724a6dd77 | [] | no_license | zvanjak/Old-Visual-C-projects | 6038207649c864047d1cafdf7b11fa049b9c2cb9 | 4031ab736498b9e7864d35f26f23b09c447e8714 | refs/heads/master | 2020-05-01T11:50:41.561933 | 2019-03-24T18:31:34 | 2019-03-24T18:31:34 | 177,453,065 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,354 | cpp | // MathGraphCtl.cpp : Implementation of the CMathGraphCtrl ActiveX Control class.
#include "stdafx.h"
#include "MathGraphCtrl.h"
#include "MathGraphCtl.h"
#include "MathGraphCtrlPpg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
IMPLEMENT_DYNCREATE(CMathGraphCtrl, COleControl)
/////////////////////////////////////////////////////////////////////////////
// Message map
BEGIN_MESSAGE_MAP(CMathGraphCtrl, COleControl)
//{{AFX_MSG_MAP(CMathGraphCtrl)
ON_WM_CREATE()
ON_WM_SIZE()
//}}AFX_MSG_MAP
ON_OLEVERB(AFX_IDS_VERB_PROPERTIES, OnProperties)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Dispatch map
BEGIN_DISPATCH_MAP(CMathGraphCtrl, COleControl)
//{{AFX_DISPATCH_MAP(CMathGraphCtrl)
// NOTE - ClassWizard will add and remove dispatch map entries
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DISPATCH_MAP
DISP_FUNCTION_ID(CMathGraphCtrl, "AboutBox", DISPID_ABOUTBOX, AboutBox, VT_EMPTY, VTS_NONE)
END_DISPATCH_MAP()
/////////////////////////////////////////////////////////////////////////////
// Event map
BEGIN_EVENT_MAP(CMathGraphCtrl, COleControl)
//{{AFX_EVENT_MAP(CMathGraphCtrl)
// NOTE - ClassWizard will add and remove event map entries
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_EVENT_MAP
END_EVENT_MAP()
/////////////////////////////////////////////////////////////////////////////
// Property pages
// TODO: Add more property pages as needed. Remember to increase the count!
BEGIN_PROPPAGEIDS(CMathGraphCtrl, 1)
PROPPAGEID(CMathGraphCtrlPropPage::guid)
END_PROPPAGEIDS(CMathGraphCtrl)
/////////////////////////////////////////////////////////////////////////////
// Initialize class factory and guid
IMPLEMENT_OLECREATE_EX(CMathGraphCtrl, "MATHGRAPHCTRL.MathGraphCtrl.1",
0x945b8405, 0x14c0, 0x11d2, 0x91, 0x54, 0, 0xc0, 0xdf, 0xe5, 0x28, 0x74)
/////////////////////////////////////////////////////////////////////////////
// Type library ID and version
IMPLEMENT_OLETYPELIB(CMathGraphCtrl, _tlid, _wVerMajor, _wVerMinor)
/////////////////////////////////////////////////////////////////////////////
// Interface IDs
const IID BASED_CODE IID_DMathGraphCtrl =
{ 0x945b8403, 0x14c0, 0x11d2, { 0x91, 0x54, 0, 0xc0, 0xdf, 0xe5, 0x28, 0x74 } };
const IID BASED_CODE IID_DMathGraphCtrlEvents =
{ 0x945b8404, 0x14c0, 0x11d2, { 0x91, 0x54, 0, 0xc0, 0xdf, 0xe5, 0x28, 0x74 } };
/////////////////////////////////////////////////////////////////////////////
// Control type information
static const DWORD BASED_CODE _dwMathGraphCtrlOleMisc =
OLEMISC_SIMPLEFRAME |
OLEMISC_ACTIVATEWHENVISIBLE |
OLEMISC_SETCLIENTSITEFIRST |
OLEMISC_INSIDEOUT |
OLEMISC_CANTLINKINSIDE |
OLEMISC_RECOMPOSEONRESIZE;
IMPLEMENT_OLECTLTYPE(CMathGraphCtrl, IDS_MATHGRAPHCTRL, _dwMathGraphCtrlOleMisc)
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::CMathGraphCtrlFactory::UpdateRegistry -
// Adds or removes system registry entries for CMathGraphCtrl
BOOL CMathGraphCtrl::CMathGraphCtrlFactory::UpdateRegistry(BOOL bRegister)
{
// TODO: Verify that your control follows apartment-model threading rules.
// Refer to MFC TechNote 64 for more information.
// If your control does not conform to the apartment-model rules, then
// you must modify the code below, changing the 6th parameter from
// afxRegApartmentThreading to 0.
if (bRegister)
return AfxOleRegisterControlClass(
AfxGetInstanceHandle(),
m_clsid,
m_lpszProgID,
IDS_MATHGRAPHCTRL,
IDB_MATHGRAPHCTRL,
afxRegApartmentThreading,
_dwMathGraphCtrlOleMisc,
_tlid,
_wVerMajor,
_wVerMinor);
else
return AfxOleUnregisterClass(m_clsid, m_lpszProgID);
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::CMathGraphCtrl - Constructor
CMathGraphCtrl::CMathGraphCtrl()
{
InitializeIIDs(&IID_DMathGraphCtrl, &IID_DMathGraphCtrlEvents);
EnableSimpleFrame();
// TODO: Initialize your control's instance data here.
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::~CMathGraphCtrl - Destructor
CMathGraphCtrl::~CMathGraphCtrl()
{
// TODO: Cleanup your control's instance data here.
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::OnDraw - Drawing function
void CMathGraphCtrl::OnDraw(
CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid)
{
// TODO: Replace the following code with your own drawing code.
pdc->FillRect(rcBounds, CBrush::FromHandle((HBRUSH)GetStockObject(WHITE_BRUSH)));
pdc->Ellipse(rcBounds);
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::DoPropExchange - Persistence support
void CMathGraphCtrl::DoPropExchange(CPropExchange* pPX)
{
ExchangeVersion(pPX, MAKELONG(_wVerMinor, _wVerMajor));
COleControl::DoPropExchange(pPX);
// TODO: Call PX_ functions for each persistent custom property.
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::OnResetState - Reset control to default state
void CMathGraphCtrl::OnResetState()
{
COleControl::OnResetState(); // Resets defaults found in DoPropExchange
// TODO: Reset any other control state here.
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl::AboutBox - Display an "About" box to the user
void CMathGraphCtrl::AboutBox()
{
CDialog dlgAbout(IDD_ABOUTBOX_MATHGRAPHCTRL);
dlgAbout.DoModal();
}
/////////////////////////////////////////////////////////////////////////////
// CMathGraphCtrl message handlers
int CMathGraphCtrl::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (COleControl::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
// m_ctrlGraph.Create("Caption jumbo", WS_VISIBLE, CRect(0,0,500,500), this, 0);
return 0;
}
/*
void CMathGraphCtrl::OnSize(UINT nType, int cx, int cy)
{
COleControl::OnSize(nType, cx, cy);
// TODO: Add your message handler code here
if( nType == SIZE_RESTORED )
{
CRect rect;
GetClientRect(&rect);
m_ctrlGraph.SetWindowPos(this, rect.left, rect.top, rect.right, rect.bottom, SWP_SHOWWINDOW );
}
}
*/
| [
"zvonimir.vanjak@gmail.com"
] | zvonimir.vanjak@gmail.com |
908391172671b65142f37df27c7ecb734cb8c3ad | 775bd9054f599f49b3e288da13e2679ff62e0097 | /Union/Union/UnionBase.cpp | f0e80011380fa16b59c9b0c871b5184c682ac3bb | [] | no_license | LProvalov/DataStructuresAndAlgorithms | e6e85f701ce08720c1ae6c585645cf837d49f8c2 | 9dbb48f4220fa925927bd6717b6c2019d8456f66 | refs/heads/master | 2020-03-29T08:56:24.432133 | 2018-09-21T09:28:29 | 2018-09-21T09:28:29 | 149,733,969 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 511 | cpp | #include "stdafx.h"
#include "UnionBase.h"
using namespace std;
void UnionBase::printStatus()
{
cout << " ";
for (int i = 0; i < size; i++) cout << i << " ";
cout << endl << "Id[]: ";
for (int i = 0; i < size; i++) {
cout << id[i] << " ";
};
cout << endl;
cout << "Sz[]: ";
for (int i = 0; i < size; i++) {
cout << sz[i] << " ";
};
cout << endl;
cout << "------------------------------" << endl;
}
UnionBase::UnionBase()
{
size = 0;
id = 0;
sz = 0;
}
UnionBase::~UnionBase()
{
}
| [
"lev.provalov@harman.com"
] | lev.provalov@harman.com |
830de9d39b093a9d2479ce27c901b7b1268a9ded | 4bba4ba2b09da8c3d7affeb9738d5cd89a24e8be | /tools/benchmarks/sockperf-lite/src/Message.cpp | 08ec0664035c9c05cd445519f028d9f6e58901ab | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | janekmi/ChelsioUwire | 617b24f664904f4d1fde83ab9d671c57e90bf8af | 6c1bd8d4760d4c53f9acdc4d8d05c3453282c3ac | refs/heads/master | 2021-01-17T18:33:49.449809 | 2016-10-21T10:43:24 | 2016-10-21T10:48:29 | 71,464,881 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,004 | cpp | /*
* Copyright (c) 2011 Mellanox Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the Mellanox Technologies Ltd nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 "Message.h"
#include <malloc.h>
#include <string>
#include "common.h"
// static memebers initialization
/*static*/ uint64_t Message::ms_maxSequenceNo;
/*static*/ int Message::ms_maxSize;
//------------------------------------------------------------------------------
class MemException : public std::exception {
public:
MemException (const char *file, int line, const char * handler, size_t size) throw();
virtual ~MemException () throw(){}
virtual const char* what() const throw() { return m_what.c_str();}
private:
std::string m_what;
};
//------------------
MemException::MemException (const char *file, int line, const char * handler, size_t size) throw() {
const size_t LEN = 256;
char buf[LEN+1];
snprintf(buf, LEN, "%s:%d: %s failed allocating %d bytes",file, line, handler, (int)size);
buf[LEN] = '\0';
m_what = buf;
}
//------------------------------------------------------------------------------
/*static*/ void Message::initMaxSize(int size) throw (std::exception)
{
if (size < 0)
throw std::out_of_range("size < 0");
else if (ms_maxSize)
throw std::logic_error("MaxSize is already initialized");
else
ms_maxSize = size;
}
//------------------------------------------------------------------------------
/*static*/ void Message::initMaxSeqNo(uint64_t seqno) throw (std::exception)
{
if (ms_maxSequenceNo)
throw std::logic_error("MaxSeqNo is already initialized");
else
ms_maxSequenceNo = seqno;
}
//------------------------------------------------------------------------------
Message::Message() throw (std::exception) { //throws in case fatal error occurred
if (! ms_maxSize)
throw std::logic_error("MaxSize was NOT initialized");
if (ms_maxSize < MsgHeader::EFFECTIVE_SIZE)
throw std::out_of_range("maxSize < MsgHeader::EFFECTIVE_SIZE");
m_buf = MALLOC(ms_maxSize + 7); // extra +7 for enabling 8 alignment of m_sequence_number
if (! m_buf) {
throw MemException(__FILE__, __LINE__, "malloc", ms_maxSize);
}
setBuf();
for (int len = 0; len < ms_maxSize; len++)
m_addr[len] = (uint8_t) rand();
memset(m_header, 0, MsgHeader::EFFECTIVE_SIZE);
/*
log_msg("ms_maxSize=%d, m_buf=%p, alignment=%d, m_data=%p, m_header=%p", ms_maxSize, m_buf, alignment, m_data, m_header);
log_msg("header adresses: m_sequence_number=%p", &m_header->m_sequence_number);
//*/
}
//------------------------------------------------------------------------------
Message::~Message()
{
FREE (m_buf);
}
| [
"jan.m.michalski@intel.com"
] | jan.m.michalski@intel.com |
65873d032ba20634db5523411ca0e3ef484549f0 | e17c43db9488f57cb835129fa954aa2edfdea8d5 | /Core/Methods/RSearchDirection/RHLRFSearchDirection.cpp | 14152d70bb12e219c56e8bf39ebcc281c9c87dd0 | [] | no_license | claudioperez/Rts | 6e5868ab8d05ea194a276b8059730dbe322653a7 | 3609161c34f19f1649b713b09ccef0c8795f8fe7 | refs/heads/master | 2022-11-06T15:57:39.794397 | 2020-06-27T23:00:11 | 2020-06-27T23:00:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,269 | cpp | /*********************************************************************
* *
* This file is posted by Dr. Stevan Gavrilovic (steva44@hotmail.com) *
* as a result of work performed in the research group of Professor *
* Terje Haukaas (terje@civil.ubc.ca) at the University of British *
* Columbia in Vancouver. The code is part of the computer program *
* Rts, which is an extension of the computer program Rt developed by *
* Dr. Mojtaba Mahsuli (mahsuli@sharif.edu) in the same group. *
* *
* The content of this file is the product of thesis-related work *
* performed at the University of British Columbia (UBC). Therefore, *
* the Rights and Ownership are held by UBC. *
* *
* Please be cautious when using this code. It is provided “as is” *
* without warranty of any kind, express or implied. *
* *
* Contributors to this file: *
* - Terje Haukaas *
* *
*********************************************************************/
#include "RHLRFSearchDirection.h"
#include "RMatrixOperations.h"
#include "RDomain.h"
#include <math.h>
RHLRFSearchDirection::RHLRFSearchDirection(QObject *parent, QString name)
: RSearchDirection(parent, name)
{
}
RHLRFSearchDirection::~RHLRFSearchDirection()
{
}
int RHLRFSearchDirection::getSearchDirection(QVector<double> const *u, double functionValue, QVector<double> const *gradientInStandardNormalSpace, QVector<double> *result)
{
// Create a matrix operations tool
RMatrixOperations theMatrixOperations(theDomain);
// Determine vector sizes
int size = gradientInStandardNormalSpace->size();
// Compute the norm of the gradient
double gradientNorm = theMatrixOperations.norm(gradientInStandardNormalSpace);
// Check that the norm is not zero
if (gradientNorm == 0.0) {
qCritical() << "Error: The norm of the gradient in the HLRF search direction is zero.";
for (int i=0; i<size; i++) {
(*result)[i] = 1.0;
}
return 0;
}
// Compute alpha-vector using BLAS: alpha = gradientInStandardNormalSpace * (-1 / gradientNorm)
QVector<double> alpha(size);
for (int i=0; i<size; i++) {
alpha[i] = -gradientInStandardNormalSpace->at(i)/gradientNorm;
}
// Compute the alpha.u using BLAS: alpha_times_u = alpha * u
double alpha_times_u = 0.0;
for (int i=0; i<u->size(); i++) {
alpha_times_u += alpha.at(i)*u->at(i);
}
// Compute the search direction vector using BLAS: direction = alpha * (functionValue / gradientNorm + alpha_times_u) - u
for (int i=0; i<size; i++) {
(*result)[i] = ((functionValue / gradientNorm + alpha_times_u) * alpha.at(i)) - u->at(i);
}
return 0;
}
| [
"steva44@hotmail.com"
] | steva44@hotmail.com |
d130007151bdd3bd50b96baeb4e6318280f15144 | 3817488ed22598117e7b96af336635ef9a925200 | /api/CTraderSpi.cpp | fa1c1455e2fa6efe13e9aa44e59ad6ae00b487b8 | [
"Apache-2.0"
] | permissive | go-xtrade/xtrade | 88d27627f357719eeb3652c5d837b5cd624e0d39 | 495d4267c7d2e9e141012821f49c297e4a70b2e8 | refs/heads/master | 2021-01-02T09:44:56.171713 | 2017-08-06T13:16:30 | 2017-08-06T13:16:30 | 99,287,569 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,541 | cpp | #include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
using namespace std;
#include <ThostFtdcTraderApi.h>
#include "CTraderSpi.hpp"
#include <time.h>
#include <unistd.h>
#include "_cgo_export.h"
#pragma warning(disable : 4996)
// USER_API参数
extern CThostFtdcTraderApi *pUserApi;
// 配置参数
extern char FRONT_ADDR[]; // 前置地址
extern char BROKER_ID[]; // 经纪公司代码
extern char INVESTOR_ID[]; // 投资者代码
extern char PASSWORD[]; // 用户密码
extern char INSTRUMENT_ID[]; // 合约代码
extern TThostFtdcPriceType LIMIT_PRICE; // 价格
extern TThostFtdcDirectionType DIRECTION; // 买卖方向
// 请求编号
extern int iRequestID;
// extern int OnLogin();
// 会话参数
TThostFtdcFrontIDType FRONT_ID; //前置编号
TThostFtdcSessionIDType SESSION_ID; //会话编号
TThostFtdcOrderRefType ORDER_REF; //报单引用
time_t lOrderTime;
time_t lOrderOkTime;
void CTraderSpi::OnFrontConnected()
{
cerr << "--->>> "
<< "OnFrontConnected:" << this->GetUserID()<< endl;
FrontConnectedCallback(this->GetUserID());
}
void CTraderSpi::ReqUserLogin()
{
CThostFtdcReqUserLoginField req;
memset(&req, 0, sizeof(req));
strcpy(req.BrokerID, BROKER_ID);
strcpy(req.UserID, INVESTOR_ID);
strcpy(req.Password, PASSWORD);
int iResult = pUserApi->ReqUserLogin(&req, ++iRequestID);
cerr << "--->>> 发送用户登录请求: " << ((iResult == 0) ? "成功" : "失败") << endl;
}
void CTraderSpi::OnRspUserLogin(CThostFtdcRspUserLoginField *pRspUserLogin,
CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
UserLoginCallback(pRspUserLogin,pRspInfo,nRequestID,bIsLast);
cerr << "--->>> " << "OnRspUserLogin: " << pRspUserLogin->UserID << "bIsLast" << bIsLast << "MaxOrderRef : " << atoi(pRspUserLogin->MaxOrderRef) << endl;
}
void CTraderSpi::ReqSettlementInfoConfirm()
{
CThostFtdcSettlementInfoConfirmField req;
memset(&req, 0, sizeof(req));
strcpy(req.BrokerID, BROKER_ID);
strcpy(req.InvestorID, INVESTOR_ID);
int iResult = pUserApi->ReqSettlementInfoConfirm(&req, ++iRequestID);
cerr << "--->>> 投资者结算结果确认: " << ((iResult == 0) ? "成功" : "失败") << endl;
}
void CTraderSpi::OnRspSettlementInfoConfirm(CThostFtdcSettlementInfoConfirmField *pSettlementInfoConfirm, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspSettlementInfoConfirm" << endl;
if (bIsLast && !IsErrorRspInfo(pRspInfo))
{
///请求查询合约
ReqQryInstrument();
}
}
void CTraderSpi::ReqQryInstrument()
{
CThostFtdcQryInstrumentField req;
memset(&req, 0, sizeof(req));
strcpy(req.InstrumentID, INSTRUMENT_ID);
int iResult = pUserApi->ReqQryInstrument(&req, ++iRequestID);
cerr << "--->>> 请求查询合约: " << ((iResult == 0) ? "成功" : "失败") << endl;
}
void CTraderSpi::OnRspQryInstrument(CThostFtdcInstrumentField *pInstrument, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspQryInstrument" << endl;
if (bIsLast && !IsErrorRspInfo(pRspInfo))
{
///请求查询合约
ReqQryTradingAccount();
}
}
void CTraderSpi::ReqQryTradingAccount()
{
CThostFtdcQryTradingAccountField req;
memset(&req, 0, sizeof(req));
strcpy(req.BrokerID, BROKER_ID);
strcpy(req.InvestorID, INVESTOR_ID);
int iResult = pUserApi->ReqQryTradingAccount(&req, ++iRequestID);
cerr << "result:" << iResult << endl;
cerr << "--->>> 请求查询资金账户: " << ((iResult == 0) ? "成功" : "失败") << endl;
if (iResult == -3 || iResult == -2)
{
cerr << "retry aflter 1s:" << endl;
sleep(1);
ReqQryTradingAccount();
}
}
void CTraderSpi::OnRspQryTradingAccount(CThostFtdcTradingAccountField *pTradingAccount, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspQryTradingAccount" << "AccountId: " << pTradingAccount->AccountID << endl;
if (bIsLast && !IsErrorRspInfo(pRspInfo))
{
///请求查询投资者持仓
ReqQryInvestorPosition();
}
}
void CTraderSpi::ReqQryInvestorPosition()
{
CThostFtdcQryInvestorPositionField req;
memset(&req, 0, sizeof(req));
strcpy(req.BrokerID, BROKER_ID);
strcpy(req.InvestorID, INVESTOR_ID);
strcpy(req.InstrumentID, INSTRUMENT_ID);
int iResult = pUserApi->ReqQryInvestorPosition(&req, ++iRequestID);
cerr << "--->>> 请求查询投资者持仓: " << ((iResult == 0) ? "成功" : "失败") << endl;
}
void CTraderSpi::OnRspQryInvestorPosition(CThostFtdcInvestorPositionField *pInvestorPosition, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspQryInvestorPosition" << endl;
if (bIsLast && !IsErrorRspInfo(pRspInfo))
{
///报单录入请求
ReqOrderInsert();
}
}
void CTraderSpi::ReqOrderInsert()
{
CThostFtdcInputOrderField req;
memset(&req, 0, sizeof(req));
///经纪公司代码
strcpy(req.BrokerID, BROKER_ID);
///投资者代码
strcpy(req.InvestorID, INVESTOR_ID);
///合约代码
strcpy(req.InstrumentID, INSTRUMENT_ID);
///报单引用
strcpy(req.OrderRef, ORDER_REF);
///用户代码
// TThostFtdcUserIDType UserID;
///报单价格条件: 限价
req.OrderPriceType = THOST_FTDC_OPT_LimitPrice;
///买卖方向:
req.Direction = DIRECTION;
///组合开平标志: 开仓
req.CombOffsetFlag[0] = THOST_FTDC_OF_Open;
///组合投机套保标志
req.CombHedgeFlag[0] = THOST_FTDC_HF_Speculation;
///价格
req.LimitPrice = LIMIT_PRICE;
///数量: 1
req.VolumeTotalOriginal = 1;
///有效期类型: 当日有效
req.TimeCondition = THOST_FTDC_TC_GFD;
///GTD日期
// TThostFtdcDateType GTDDate;
///成交量类型: 任何数量
req.VolumeCondition = THOST_FTDC_VC_AV;
///最小成交量: 1
req.MinVolume = 1;
///触发条件: 立即
req.ContingentCondition = THOST_FTDC_CC_Immediately;
///止损价
// TThostFtdcPriceType StopPrice;
///强平原因: 非强平
req.ForceCloseReason = THOST_FTDC_FCC_NotForceClose;
///自动挂起标志: 否
req.IsAutoSuspend = 0;
///业务单元
// TThostFtdcBusinessUnitType BusinessUnit;
///请求编号
// TThostFtdcRequestIDType RequestID;
///用户强评标志: 否
req.UserForceClose = 0;
lOrderTime = time(NULL);
int iResult = pUserApi->ReqOrderInsert(&req, ++iRequestID);
cerr << "--->>> 报单录入请求: " << ((iResult == 0) ? "成功" : "失败") << endl;
}
void CTraderSpi::OnRspOrderInsert(CThostFtdcInputOrderField *pInputOrder, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspOrderInsert" << endl;
IsErrorRspInfo(pRspInfo);
}
void CTraderSpi::ReqOrderAction(CThostFtdcOrderField *pOrder)
{
static bool ORDER_ACTION_SENT = false; //是否发送了报单
if (ORDER_ACTION_SENT)
return;
CThostFtdcInputOrderActionField req;
memset(&req, 0, sizeof(req));
///经纪公司代码
strcpy(req.BrokerID, pOrder->BrokerID);
///投资者代码
strcpy(req.InvestorID, pOrder->InvestorID);
///报单操作引用
// TThostFtdcOrderActionRefType OrderActionRef;
///报单引用
strcpy(req.OrderRef, pOrder->OrderRef);
///请求编号
// TThostFtdcRequestIDType RequestID;
///前置编号
req.FrontID = FRONT_ID;
///会话编号
req.SessionID = SESSION_ID;
///交易所代码
// TThostFtdcExchangeIDType ExchangeID;
///报单编号
// TThostFtdcOrderSysIDType OrderSysID;
///操作标志
req.ActionFlag = THOST_FTDC_AF_Delete;
///价格
// TThostFtdcPriceType LimitPrice;
///数量变化
// TThostFtdcVolumeType VolumeChange;
///用户代码
// TThostFtdcUserIDType UserID;
///合约代码
strcpy(req.InstrumentID, pOrder->InstrumentID);
lOrderTime = time(NULL);
int iResult = pUserApi->ReqOrderAction(&req, ++iRequestID);
cerr << "--->>> 报单操作请求: " << ((iResult == 0) ? "成功" : "失败") << endl;
ORDER_ACTION_SENT = true;
}
void CTraderSpi::OnRspOrderAction(CThostFtdcInputOrderActionField *pInputOrderAction, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspOrderAction" << endl;
IsErrorRspInfo(pRspInfo);
}
///报单通知
void CTraderSpi::OnRtnOrder(CThostFtdcOrderField *pOrder)
{
cerr << "--->>> "
<< "OnRtnOrder" << endl;
lOrderOkTime = time(NULL);
time_t lTime = lOrderOkTime - lOrderTime;
cerr << "--->>> 报单到报单通知的时间差 = " << lTime << endl;
if (IsMyOrder(pOrder))
{
if (IsTradingOrder(pOrder))
{
//ReqOrderAction(pOrder);
}
else if (pOrder->OrderStatus == THOST_FTDC_OST_Canceled)
cout << "--->>> 撤单成功" << endl;
}
}
///成交通知
void CTraderSpi::OnRtnTrade(CThostFtdcTradeField *pTrade)
{
cerr << "--->>> "
<< "OnRtnTrade" << endl;
}
void CTraderSpi::OnFrontDisconnected(int nReason)
{
cerr << "--->>> "
<< "OnFrontDisconnected" << endl;
cerr << "--->>> Reason = " << nReason << endl;
}
void CTraderSpi::OnHeartBeatWarning(int nTimeLapse)
{
cerr << "--->>> "
<< "OnHeartBeatWarning" << endl;
cerr << "--->>> nTimerLapse = " << nTimeLapse << endl;
}
void CTraderSpi::OnRspError(CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
cerr << "--->>> "
<< "OnRspError" << endl;
IsErrorRspInfo(pRspInfo);
}
bool CTraderSpi::IsErrorRspInfo(CThostFtdcRspInfoField *pRspInfo)
{
// 如果ErrorID != 0, 说明收到了错误的响应
bool bResult = ((pRspInfo) && (pRspInfo->ErrorID != 0));
if (bResult)
cerr << "--->>> ErrorID=" << pRspInfo->ErrorID << ", ErrorMsg=" << pRspInfo->ErrorMsg << endl;
return bResult;
}
bool CTraderSpi::IsMyOrder(CThostFtdcOrderField *pOrder)
{
return ((pOrder->FrontID == FRONT_ID) &&
(pOrder->SessionID == SESSION_ID) &&
(strcmp(pOrder->OrderRef, ORDER_REF) == 0));
}
bool CTraderSpi::IsTradingOrder(CThostFtdcOrderField *pOrder)
{
return ((pOrder->OrderStatus != THOST_FTDC_OST_PartTradedNotQueueing) &&
(pOrder->OrderStatus != THOST_FTDC_OST_Canceled) &&
(pOrder->OrderStatus != THOST_FTDC_OST_AllTraded));
}
void CTraderSpi::SaveSession(Session *pSession){
this->session = pSession;
}
Session CTraderSpi::getSession(){
return *this->session;
}
char* CTraderSpi::GetUserID(){
return &this->UserID[0];
}
void CTraderSpi::SetUserID(char *pUserID){
strcpy(this->UserID , pUserID);
} | [
"wei9.li@changhong.com"
] | wei9.li@changhong.com |
e10edb9ceec510cdbae4485240fb6cdc5204cfc5 | 4ea5083a2dc96943b12c61dbac9a44359d4a5760 | /OpenVPN Tunnel Provider/Vendors/asio/asio/detail/reactive_socket_service.hpp | 263adc8a6a10fe3537761b8a208923a09bf85ca7 | [] | no_license | shahzaibiqbal/openvpn-adapter | afff351a1d2fbcfe966042c060c13364986c954e | d316cd7ebd0d29d636c755d4e10721e2891b6431 | refs/heads/master | 2020-09-08T17:36:24.694975 | 2017-02-05T10:38:35 | 2017-02-05T10:38:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,604 | hpp | //
// detail/reactive_socket_service.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP
#define ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/config.hpp"
#if !defined(ASIO_HAS_IOCP)
#include "asio/buffer.hpp"
#include "asio/error.hpp"
#include "asio/io_context.hpp"
#include "asio/socket_base.hpp"
#include "asio/detail/buffer_sequence_adapter.hpp"
#include "asio/detail/memory.hpp"
#include "asio/detail/noncopyable.hpp"
#include "asio/detail/reactive_null_buffers_op.hpp"
#include "asio/detail/reactive_socket_accept_op.hpp"
#include "asio/detail/reactive_socket_connect_op.hpp"
#include "asio/detail/reactive_socket_recvfrom_op.hpp"
#include "asio/detail/reactive_socket_sendto_op.hpp"
#include "asio/detail/reactive_socket_service_base.hpp"
#include "asio/detail/reactor.hpp"
#include "asio/detail/reactor_op.hpp"
#include "asio/detail/socket_holder.hpp"
#include "asio/detail/socket_ops.hpp"
#include "asio/detail/socket_types.hpp"
#include "asio/detail/push_options.hpp"
namespace asio {
namespace detail {
template <typename Protocol>
class reactive_socket_service :
public service_base<reactive_socket_service<Protocol> >,
public reactive_socket_service_base
{
public:
// The protocol type.
typedef Protocol protocol_type;
// The endpoint type.
typedef typename Protocol::endpoint endpoint_type;
// The native type of a socket.
typedef socket_type native_handle_type;
// The implementation type of the socket.
struct implementation_type :
reactive_socket_service_base::base_implementation_type
{
// Default constructor.
implementation_type()
: protocol_(endpoint_type().protocol())
{
}
// The protocol associated with the socket.
protocol_type protocol_;
};
// Constructor.
reactive_socket_service(asio::io_context& io_context)
: service_base<reactive_socket_service<Protocol> >(io_context),
reactive_socket_service_base(io_context)
{
}
// Destroy all user-defined handler objects owned by the service.
void shutdown()
{
this->base_shutdown();
}
// Move-construct a new socket implementation.
void move_construct(implementation_type& impl,
implementation_type& other_impl)
{
this->base_move_construct(impl, other_impl);
impl.protocol_ = other_impl.protocol_;
other_impl.protocol_ = endpoint_type().protocol();
}
// Move-assign from another socket implementation.
void move_assign(implementation_type& impl,
reactive_socket_service_base& other_service,
implementation_type& other_impl)
{
this->base_move_assign(impl, other_service, other_impl);
impl.protocol_ = other_impl.protocol_;
other_impl.protocol_ = endpoint_type().protocol();
}
// Move-construct a new socket implementation from another protocol type.
template <typename Protocol1>
void converting_move_construct(implementation_type& impl,
typename reactive_socket_service<
Protocol1>::implementation_type& other_impl)
{
this->base_move_construct(impl, other_impl);
impl.protocol_ = protocol_type(other_impl.protocol_);
other_impl.protocol_ = typename Protocol1::endpoint().protocol();
}
// Open a new socket implementation.
asio::error_code open(implementation_type& impl,
const protocol_type& protocol, asio::error_code& ec)
{
if (!do_open(impl, protocol.family(),
protocol.type(), protocol.protocol(), ec))
impl.protocol_ = protocol;
return ec;
}
// Assign a native socket to a socket implementation.
asio::error_code assign(implementation_type& impl,
const protocol_type& protocol, const native_handle_type& native_socket,
asio::error_code& ec)
{
if (!do_assign(impl, protocol.type(), native_socket, ec))
impl.protocol_ = protocol;
return ec;
}
// Get the native socket representation.
native_handle_type native_handle(implementation_type& impl)
{
return impl.socket_;
}
// Bind the socket to the specified local endpoint.
asio::error_code bind(implementation_type& impl,
const endpoint_type& endpoint, asio::error_code& ec)
{
socket_ops::bind(impl.socket_, endpoint.data(), endpoint.size(), ec);
return ec;
}
// Set a socket option.
template <typename Option>
asio::error_code set_option(implementation_type& impl,
const Option& option, asio::error_code& ec)
{
socket_ops::setsockopt(impl.socket_, impl.state_,
option.level(impl.protocol_), option.name(impl.protocol_),
option.data(impl.protocol_), option.size(impl.protocol_), ec);
return ec;
}
// Set a socket option.
template <typename Option>
asio::error_code get_option(const implementation_type& impl,
Option& option, asio::error_code& ec) const
{
std::size_t size = option.size(impl.protocol_);
socket_ops::getsockopt(impl.socket_, impl.state_,
option.level(impl.protocol_), option.name(impl.protocol_),
option.data(impl.protocol_), &size, ec);
if (!ec)
option.resize(impl.protocol_, size);
return ec;
}
// Get the local endpoint.
endpoint_type local_endpoint(const implementation_type& impl,
asio::error_code& ec) const
{
endpoint_type endpoint;
std::size_t addr_len = endpoint.capacity();
if (socket_ops::getsockname(impl.socket_, endpoint.data(), &addr_len, ec))
return endpoint_type();
endpoint.resize(addr_len);
return endpoint;
}
// Get the remote endpoint.
endpoint_type remote_endpoint(const implementation_type& impl,
asio::error_code& ec) const
{
endpoint_type endpoint;
std::size_t addr_len = endpoint.capacity();
if (socket_ops::getpeername(impl.socket_,
endpoint.data(), &addr_len, false, ec))
return endpoint_type();
endpoint.resize(addr_len);
return endpoint;
}
// Disable sends or receives on the socket.
asio::error_code shutdown(base_implementation_type& impl,
socket_base::shutdown_type what, asio::error_code& ec)
{
socket_ops::shutdown(impl.socket_, what, ec);
return ec;
}
// Send a datagram to the specified endpoint. Returns the number of bytes
// sent.
template <typename ConstBufferSequence>
size_t send_to(implementation_type& impl, const ConstBufferSequence& buffers,
const endpoint_type& destination, socket_base::message_flags flags,
asio::error_code& ec)
{
buffer_sequence_adapter<asio::const_buffer,
ConstBufferSequence> bufs(buffers);
return socket_ops::sync_sendto(impl.socket_, impl.state_,
bufs.buffers(), bufs.count(), flags,
destination.data(), destination.size(), ec);
}
// Wait until data can be sent without blocking.
size_t send_to(implementation_type& impl, const null_buffers&,
const endpoint_type&, socket_base::message_flags,
asio::error_code& ec)
{
// Wait for socket to become ready.
socket_ops::poll_write(impl.socket_, impl.state_, ec);
return 0;
}
// Start an asynchronous send. The data being sent must be valid for the
// lifetime of the asynchronous operation.
template <typename ConstBufferSequence, typename Handler>
void async_send_to(implementation_type& impl,
const ConstBufferSequence& buffers,
const endpoint_type& destination, socket_base::message_flags flags,
Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_socket_sendto_op<ConstBufferSequence,
endpoint_type, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(impl.socket_, buffers, destination, flags, handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_send_to"));
start_op(impl, reactor::write_op, p.p, is_continuation, true, false);
p.v = p.p = 0;
}
// Start an asynchronous wait until data can be sent without blocking.
template <typename Handler>
void async_send_to(implementation_type& impl, const null_buffers&,
const endpoint_type&, socket_base::message_flags, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_null_buffers_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_send_to(null_buffers)"));
start_op(impl, reactor::write_op, p.p, is_continuation, false, false);
p.v = p.p = 0;
}
// Receive a datagram with the endpoint of the sender. Returns the number of
// bytes received.
template <typename MutableBufferSequence>
size_t receive_from(implementation_type& impl,
const MutableBufferSequence& buffers,
endpoint_type& sender_endpoint, socket_base::message_flags flags,
asio::error_code& ec)
{
buffer_sequence_adapter<asio::mutable_buffer,
MutableBufferSequence> bufs(buffers);
std::size_t addr_len = sender_endpoint.capacity();
std::size_t bytes_recvd = socket_ops::sync_recvfrom(
impl.socket_, impl.state_, bufs.buffers(), bufs.count(),
flags, sender_endpoint.data(), &addr_len, ec);
if (!ec)
sender_endpoint.resize(addr_len);
return bytes_recvd;
}
// Wait until data can be received without blocking.
size_t receive_from(implementation_type& impl, const null_buffers&,
endpoint_type& sender_endpoint, socket_base::message_flags,
asio::error_code& ec)
{
// Wait for socket to become ready.
socket_ops::poll_read(impl.socket_, impl.state_, ec);
// Reset endpoint since it can be given no sensible value at this time.
sender_endpoint = endpoint_type();
return 0;
}
// Start an asynchronous receive. The buffer for the data being received and
// the sender_endpoint object must both be valid for the lifetime of the
// asynchronous operation.
template <typename MutableBufferSequence, typename Handler>
void async_receive_from(implementation_type& impl,
const MutableBufferSequence& buffers, endpoint_type& sender_endpoint,
socket_base::message_flags flags, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_socket_recvfrom_op<MutableBufferSequence,
endpoint_type, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
int protocol = impl.protocol_.type();
p.p = new (p.v) op(impl.socket_, protocol,
buffers, sender_endpoint, flags, handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_receive_from"));
start_op(impl,
(flags & socket_base::message_out_of_band)
? reactor::except_op : reactor::read_op,
p.p, is_continuation, true, false);
p.v = p.p = 0;
}
// Wait until data can be received without blocking.
template <typename Handler>
void async_receive_from(implementation_type& impl,
const null_buffers&, endpoint_type& sender_endpoint,
socket_base::message_flags flags, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_null_buffers_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_receive_from(null_buffers)"));
// Reset endpoint since it can be given no sensible value at this time.
sender_endpoint = endpoint_type();
start_op(impl,
(flags & socket_base::message_out_of_band)
? reactor::except_op : reactor::read_op,
p.p, is_continuation, false, false);
p.v = p.p = 0;
}
// Accept a new connection.
template <typename Socket>
asio::error_code accept(implementation_type& impl,
Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec)
{
// We cannot accept a socket that is already open.
if (peer.is_open())
{
ec = asio::error::already_open;
return ec;
}
std::size_t addr_len = peer_endpoint ? peer_endpoint->capacity() : 0;
socket_holder new_socket(socket_ops::sync_accept(impl.socket_,
impl.state_, peer_endpoint ? peer_endpoint->data() : 0,
peer_endpoint ? &addr_len : 0, ec));
// On success, assign new connection to peer socket object.
if (new_socket.get() != invalid_socket)
{
if (peer_endpoint)
peer_endpoint->resize(addr_len);
if (!peer.assign(impl.protocol_, new_socket.get(), ec))
new_socket.release();
}
return ec;
}
#if defined(ASIO_HAS_MOVE)
// Accept a new connection.
typename Protocol::socket accept(implementation_type& impl,
io_context* peer_io_context, endpoint_type* peer_endpoint,
asio::error_code& ec)
{
typename Protocol::socket peer(
peer_io_context ? *peer_io_context : io_context_);
std::size_t addr_len = peer_endpoint ? peer_endpoint->capacity() : 0;
socket_holder new_socket(socket_ops::sync_accept(impl.socket_,
impl.state_, peer_endpoint ? peer_endpoint->data() : 0,
peer_endpoint ? &addr_len : 0, ec));
// On success, assign new connection to peer socket object.
if (new_socket.get() != invalid_socket)
{
if (peer_endpoint)
peer_endpoint->resize(addr_len);
if (!peer.assign(impl.protocol_, new_socket.get(), ec))
new_socket.release();
}
return peer;
}
#endif // defined(ASIO_HAS_MOVE)
// Start an asynchronous accept. The peer and peer_endpoint objects must be
// valid until the accept's handler is invoked.
template <typename Socket, typename Handler>
void async_accept(implementation_type& impl, Socket& peer,
endpoint_type* peer_endpoint, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_socket_accept_op<Socket, Protocol, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(impl.socket_, impl.state_, peer,
impl.protocol_, peer_endpoint, handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_accept"));
start_accept_op(impl, p.p, is_continuation, peer.is_open());
p.v = p.p = 0;
}
#if defined(ASIO_HAS_MOVE)
// Start an asynchronous accept. The peer_endpoint object must be valid until
// the accept's handler is invoked.
template <typename Handler>
void async_accept(implementation_type& impl,
asio::io_context* peer_io_context,
endpoint_type* peer_endpoint, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_socket_move_accept_op<Protocol, Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(peer_io_context ? *peer_io_context : io_context_,
impl.socket_, impl.state_, impl.protocol_, peer_endpoint, handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_accept"));
start_accept_op(impl, p.p, is_continuation, false);
p.v = p.p = 0;
}
#endif // defined(ASIO_HAS_MOVE)
// Connect the socket to the specified endpoint.
asio::error_code connect(implementation_type& impl,
const endpoint_type& peer_endpoint, asio::error_code& ec)
{
socket_ops::sync_connect(impl.socket_,
peer_endpoint.data(), peer_endpoint.size(), ec);
return ec;
}
// Start an asynchronous connect.
template <typename Handler>
void async_connect(implementation_type& impl,
const endpoint_type& peer_endpoint, Handler& handler)
{
bool is_continuation =
asio_handler_cont_helpers::is_continuation(handler);
// Allocate and construct an operation to wrap the handler.
typedef reactive_socket_connect_op<Handler> op;
typename op::ptr p = { asio::detail::addressof(handler),
op::ptr::allocate(handler), 0 };
p.p = new (p.v) op(impl.socket_, handler);
ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket",
&impl, impl.socket_, "async_connect"));
start_connect_op(impl, p.p, is_continuation,
peer_endpoint.data(), peer_endpoint.size());
p.v = p.p = 0;
}
};
} // namespace detail
} // namespace asio
#include "asio/detail/pop_options.hpp"
#endif // !defined(ASIO_HAS_IOCP)
#endif // ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP
| [
"ss.abramchuk@gmail.com"
] | ss.abramchuk@gmail.com |
1b0ed6ca0ff765837dd05068459ffe9688d62f08 | 64d5af3c53eddbb20ebb7bb74ba6351e2a798054 | /09 그래프 생성/그래프/main.cpp | 093f67eb200404a9050804e4d44f2a53b080f484 | [] | no_license | jkjan/DataStructure | 40c6742d53b1dfa26f95ebad9b351cd649558900 | 871f3b77017e6cc8de0b0b9139c6acf5122ea91a | refs/heads/master | 2021-07-20T09:17:28.874214 | 2020-08-14T06:00:46 | 2020-08-14T06:00:46 | 202,473,273 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,708 | cpp | #include "lunatic.h"
int main() {
FILE * fp = fopen("input.txt", "rt");
if (fp == NULL) {
printf("File not found\n");
return 0;
}
int num, vs;
int i;
int a, b;
fscanf(fp, "%d %d", &num, &vs);
graph* glist = (graph*)malloc(sizeof(graph)*(num));
for (i = 1; i <= num; i++) {
(glist + i)->ver = i;
(glist + i)->adjs = (node*)malloc(sizeof(node));
(glist + i)->adjs->init();
(glist + i)->adjcnt = 0;
}
for (i = 0; i < vs; i++) {
fscanf(fp, " %d %d", &a, &b);
if ((glist + a)->adjs->search(b) == 0) {
(glist + a)->adjs->addtree(b);
(glist + a)->adjcnt++;
(glist + b)->adjs->addtree(a);
(glist + b)->adjcnt++;
}
else
puts("duplicate edge");
}
int max, min;
max = min = (glist + 1)->adjcnt;
int* maxes = (int*)malloc(sizeof(int)*num);
int* mins = (int*)malloc(sizeof(int) * num);
int mp, np;
mp = np = 0;
for (i = 2; i <= num; i++) {
max = (glist + i)->adjcnt > max ? (glist + i)->adjcnt : max;
min = (glist + i)->adjcnt < min ? (glist + i)->adjcnt : min;
}
puts("==============================");
for (i = 1; i <= num; i++) {
printf("vertex %d: ", i);
(glist + i)->adjs->treeprint();
printf("\n");
if ((glist + i)->adjcnt == max)
*(maxes+(mp++)) = (glist + i)->ver;
if ((glist + i)->adjcnt == min)
*(mins+(np++)) = (glist + i)->ver;
}
puts("==============================");
printf("Max adj vertex: ");
for (i = 0; i < mp; i++) {
printf("%2d, ", *(maxes+i));
}
printf("\n");
printf("Min adj vertex: ");
for (i = 0; i < np; i++) {
printf("%2d, ", *(mins + i));
}
for (i = 1; i <= num; i++) {
(glist + i)->adjs->thanos();
}
free(maxes);
free(mins);
//free(glist); Èü ¼Õ»ó ¿À·ù
return 0;
} | [
"jkjan@naver.com"
] | jkjan@naver.com |
1866355281c102d4c99899d2172e17f43129be45 | acc0041a2b576f7aef5ff563d55c2ada95209820 | /Sources/kd-Tree/KDTree_Oper.cpp | 7803ee0b31d24dd513af674c88ace4075ebd9c93 | [] | no_license | pvemavarapu/FingerRange_ComfortArea | d9416bcfb3e47902400d0a562a1273fb0607ce15 | 2219044a8ecc64bd63f93df9823709baeeae6e6f | refs/heads/master | 2021-09-22T19:54:07.404118 | 2018-09-14T17:53:26 | 2018-09-14T17:53:26 | 148,823,395 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,321 | cpp | #include "KDTree_Oper.h"
static kdtree2::KDTree* tree;
KDTree_Oper::KDTree_Oper(){
}
KDTree_Oper::~KDTree_Oper(){
}
void KDTree_Oper::setObjectXYZ(std::vector<gmtl::Point3f> object_XYZ){
_kdTree_Nodes_XYZ = object_XYZ;
}
void KDTree_Oper::BuildKDTree(){
array2dfloat data(boost::extents[_kdTree_Nodes_XYZ.size()][3]); // declare a 10000 x 3 array.
array2dfloat realdata;
// notice it is in C-standard layout.
int N = _kdTree_Nodes_XYZ.size(), dim = 3;
realdata.resize(boost::extents[N][dim]);
for (int i = 0; i < N; i++) {
for (int j = 0; j < dim; j++)
realdata[i][j] = _kdTree_Nodes_XYZ[i][j]; // random_variate();
}
tree = new kdtree2::KDTree(realdata,true);
tree->sort_results = true;
std::cout << "Tree created!!!";
//N_NearestNeighborSearch(6);
}
void KDTree_Oper::N_NearestNeighborSearch(std::vector<float>& qv, int highlight_id, int n, kdtree2::KDTreeResultVector& result){
tree->sort_results = true;
time_a_search(tree, qv, highlight_id, n, 50, result);
//time_random_searches(tree, n);
}
void KDTree_Oper::time_a_search(kdtree2::KDTree* tree, std::vector<float>& qv, int highlight_id, int nn, int nsearch, kdtree2::KDTreeResultVector& result){
int dim = tree->dim;
std::vector<float> query(dim);
for (int i = 0; i < nsearch;i++)
tree->n_nearest(qv, nn, result);
}
| [
"pvemavarapu@gmail.com"
] | pvemavarapu@gmail.com |
ffed4d844dc7a8e1a390b322e1d1a34e11e7a142 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_repos_function_730_curl-7.55.1.cpp | 82937ca28e7f1a2f730dcd91adfffaaadbdd8098 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | cpp | static ssize_t write_wincon(int fd, const void *buf, size_t count)
{
HANDLE handle = NULL;
DWORD mode, wcount = 0;
BOOL success;
if(fd == fileno(stdout)) {
handle = GetStdHandle(STD_OUTPUT_HANDLE);
}
else if(fd == fileno(stderr)) {
handle = GetStdHandle(STD_ERROR_HANDLE);
}
else {
return write(fd, buf, count);
}
if(GetConsoleMode(handle, &mode)) {
success = WriteConsole(handle, buf, curlx_uztoul(count), &wcount, NULL);
}
else {
success = WriteFile(handle, buf, curlx_uztoul(count), &wcount, NULL);
}
if(success) {
return wcount;
}
errno = GetLastError();
return -1;
} | [
"993273596@qq.com"
] | 993273596@qq.com |
8e25c2f4befef268970ec5a11c13b635ff4f2020 | 2203747ff325b78f25f34a558991418f455f8137 | /BmpFileShelter/CMyLCG.h | 4a3b31cfc96be6dbddc1689091a35068b2e0dae4 | [] | no_license | PavelKilik/BmpFileShelter | ce87920621bfa066a1a45a6401d2b72cc038ccbd | c0a366823cad1cbfb78efb2caa1dac26bfbb041a | refs/heads/master | 2020-03-30T12:48:46.268630 | 2018-10-15T04:20:00 | 2018-10-15T04:20:00 | 151,242,073 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 351 | h | #pragma once
class CMyLCG
{
private:
ULONG64 aParamM;
ULONG64 aParamA;
ULONG64 aParamC;
ULONG64 aValueX;
public:
CMyLCG();
CMyLCG(ULONG32 initParamA, ULONG32 initParamC);
~CMyLCG();
void InitializeParameters(ULONG32 initParamA, ULONG32 initParamC);
void Start(ULONG32 seed);
ULONG32 Next();
CString ToString(bool hexFormat = false);
};
| [
"Pavel Kilik@DESKTOP-NQ2E9PL"
] | Pavel Kilik@DESKTOP-NQ2E9PL |
94408436e8ab57254b1a6d78ef539ea11fdc346a | 17a1a50c30bfe7340d75583804c11033aab13e2f | /Kernel/FileSystem/ProcFS.h | eff50cd22504e9c5d10a958388386909f6844f4b | [
"BSD-2-Clause"
] | permissive | ThaneAcheron/serenity | 532e06bade1f4f156a257f156764d86674cfac51 | b8e705da0eb4a21a890681ce4d7a48089ef4b655 | refs/heads/master | 2020-05-30T12:16:04.941607 | 2019-06-01T12:11:31 | 2019-06-01T12:11:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,043 | h | #pragma once
#include <AK/Types.h>
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/Lock.h>
class Process;
class ProcFSInode;
class ProcFS final : public FS {
friend class ProcFSInode;
public:
[[gnu::pure]] static ProcFS& the();
virtual ~ProcFS() override;
static Retained<ProcFS> create();
virtual bool initialize() override;
virtual const char* class_name() const override;
virtual InodeIdentifier root_inode() const override;
virtual RetainPtr<Inode> get_inode(InodeIdentifier) const override;
virtual RetainPtr<Inode> create_inode(InodeIdentifier parent_id, const String& name, mode_t, off_t size, dev_t, int& error) override;
virtual RetainPtr<Inode> create_directory(InodeIdentifier parent_id, const String& name, mode_t, int& error) override;
void add_sys_file(String&&, Function<ByteBuffer(ProcFSInode&)>&& read_callback, Function<ssize_t(ProcFSInode&, const ByteBuffer&)>&& write_callback);
void add_sys_bool(String&&, Lockable<bool>&, Function<void()>&& notify_callback = nullptr);
void add_sys_string(String&&, Lockable<String>&, Function<void()>&& notify_callback = nullptr);
private:
ProcFS();
struct ProcFSDirectoryEntry {
ProcFSDirectoryEntry() {}
ProcFSDirectoryEntry(const char* a_name, unsigned a_proc_file_type, Function<ByteBuffer(InodeIdentifier)>&& a_read_callback = nullptr, Function<ssize_t(InodeIdentifier, const ByteBuffer&)>&& a_write_callback = nullptr, RetainPtr<ProcFSInode>&& a_inode = nullptr)
: name(a_name)
, proc_file_type(a_proc_file_type)
, read_callback(move(a_read_callback))
, write_callback(move(a_write_callback))
, inode(move(a_inode))
{
}
const char* name { nullptr };
unsigned proc_file_type { 0 };
Function<ByteBuffer(InodeIdentifier)> read_callback;
Function<ssize_t(InodeIdentifier, const ByteBuffer&)> write_callback;
RetainPtr<ProcFSInode> inode;
InodeIdentifier identifier(unsigned fsid) const;
};
ProcFSDirectoryEntry* get_directory_entry(InodeIdentifier) const;
Vector<ProcFSDirectoryEntry> m_entries;
Vector<ProcFSDirectoryEntry> m_sys_entries;
mutable Lock m_inodes_lock;
mutable HashMap<unsigned, ProcFSInode*> m_inodes;
RetainPtr<ProcFSInode> m_root_inode;
Lockable<bool> m_kmalloc_stack_helper;
};
struct ProcFSInodeCustomData {
virtual ~ProcFSInodeCustomData();
};
class ProcFSInode final : public Inode {
friend class ProcFS;
public:
virtual ~ProcFSInode() override;
void set_custom_data(OwnPtr<ProcFSInodeCustomData>&& custom_data) { m_custom_data = move(custom_data); }
ProcFSInodeCustomData* custom_data() { return m_custom_data.ptr(); }
const ProcFSInodeCustomData* custom_data() const { return m_custom_data.ptr(); }
private:
// ^Inode
virtual ssize_t read_bytes(off_t, ssize_t, byte* buffer, FileDescriptor*) const override;
virtual InodeMetadata metadata() const override;
virtual bool traverse_as_directory(Function<bool(const FS::DirectoryEntry&)>) const override;
virtual InodeIdentifier lookup(const String& name) override;
virtual String reverse_lookup(InodeIdentifier) override;
virtual void flush_metadata() override;
virtual ssize_t write_bytes(off_t, ssize_t, const byte* buffer, FileDescriptor*) override;
virtual KResult add_child(InodeIdentifier child_id, const String& name, mode_t) override;
virtual KResult remove_child(const String& name) override;
virtual RetainPtr<Inode> parent() const override;
virtual size_t directory_entry_count() const override;
virtual KResult chmod(mode_t) override;
virtual KResult chown(uid_t, gid_t) override;
ProcFS& fs() { return static_cast<ProcFS&>(Inode::fs()); }
const ProcFS& fs() const { return static_cast<const ProcFS&>(Inode::fs()); }
ProcFSInode(ProcFS&, unsigned index);
OwnPtr<ProcFSInodeCustomData> m_custom_data;
};
| [
"awesomekling@gmail.com"
] | awesomekling@gmail.com |
ae064b28ba9c356bdfffe07f666f91f45582a198 | f9cdbb292f0aa7ec2865d0b816d4da46793ac43b | /core-test/core.cpp | d7a06789ac2d8ffa7575620212ef2b6b6ed8c3eb | [] | no_license | xlwh/study | 85be41e4494fbbc1fd5e69c62483afec1ac399d8 | 413f82dd72a8cf10b7aaba754e2ab851802b8186 | refs/heads/master | 2021-01-18T20:11:51.032613 | 2018-06-14T03:16:13 | 2018-06-14T03:16:13 | 100,546,117 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 90 | cpp | #include <stdio.h>
int main() {
int b = 1;
int *a;
*a = b;
return 0;
}
| [
"zhanghongbin01@baidu.com"
] | zhanghongbin01@baidu.com |
2a3f33f96db74226d70fda3d9de95e01b61bd8be | 66665287d34eaca114a183ff38fa6f677586c92e | /player/basewindow.h | 1d71610379619d53713e29505b70aea1a98f4fd5 | [] | no_license | gidzzz/openmediaplayer | db09bc6ec1cc04e8373cce12149ae885b5f19d47 | 4d51170f4a8a85ce4f1adbf308f167d8166f79bf | refs/heads/master | 2020-05-02T03:40:04.680696 | 2016-11-13T17:43:49 | 2016-11-13T17:43:49 | 37,642,146 | 2 | 3 | null | 2016-11-14T17:54:01 | 2015-06-18T06:36:15 | C++ | UTF-8 | C++ | false | false | 366 | h | #ifndef BASEWINDOW_H
#define BASEWINDOW_H
#include <QMainWindow>
#include <QShortcut>
#include <QMenuBar>
#include <QMenu>
//#include "rotator.h"
class BaseWindow : public QMainWindow
{
Q_OBJECT
public:
explicit BaseWindow(QWidget *parent = 0);
private:
//void closeChildren();
private slots:
void showWindowMenu();
};
#endif // BASEWINDOW_H
| [
"grg.gdl@gmail.com"
] | grg.gdl@gmail.com |
d522bd38febbec1efccf34d74923a755a9146d93 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /third_party/WebKit/Source/core/dom/events/DOMWindowEventQueue.h | 202cb5464d715ec6d311815d98256e0c033b87ac | [
"BSD-2-Clause",
"LGPL-2.1-only",
"LGPL-2.0-only",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 2,301 | h | /*
* Copyright (C) 2010 Google Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``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 APPLE COMPUTER, INC. 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.
*
*/
#ifndef DOMWindowEventQueue_h
#define DOMWindowEventQueue_h
#include "core/dom/events/EventQueue.h"
#include "platform/wtf/HashSet.h"
#include "platform/wtf/ListHashSet.h"
namespace blink {
class Event;
class DOMWindowEventQueueTimer;
class ExecutionContext;
class DOMWindowEventQueue final : public EventQueue {
public:
static DOMWindowEventQueue* Create(ExecutionContext*);
~DOMWindowEventQueue() override;
// EventQueue
DECLARE_VIRTUAL_TRACE();
bool EnqueueEvent(const WebTraceLocation&, Event*) override;
bool CancelEvent(Event*) override;
void Close() override;
private:
explicit DOMWindowEventQueue(ExecutionContext*);
void PendingEventTimerFired();
void DispatchEvent(Event*);
Member<DOMWindowEventQueueTimer> pending_event_timer_;
HeapListHashSet<Member<Event>, 16> queued_events_;
bool is_closed_;
friend class DOMWindowEventQueueTimer;
};
} // namespace blink
#endif // DOMWindowEventQueue_h
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.