code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30 values | license stringclasses 15 values | size int64 3 1.01M |
|---|---|---|---|---|---|
/*
* THE NEW CHRONOTEXT TOOLKIT: https://github.com/arielm/new-chronotext-toolkit
* COPYRIGHT (C) 2012-2015, ARIEL MALKA ALL RIGHTS RESERVED.
*
* THE FOLLOWING SOURCE-CODE IS DISTRIBUTED UNDER THE SIMPLIFIED BSD LICENSE:
* https://github.com/arielm/new-chronotext-toolkit/blob/master/LICENSE.md
*/
#pragma once
#include "cinder/Cinder.h"
#if !defined(CINDER_ANDROID)
# error UNSUPPORTED PLATFORM
#endif
// ---
#include "chronotext/cinder/CinderDelegateBase.h"
#include "chronotext/android/cinder/JNI.h"
#include <boost/asio.hpp>
#include <android/sensor.h>
namespace chr
{
class CinderDelegate : public CinderDelegateBase
{
public:
/*
* INVOKED ON THE MAIN-THREAD
*
* RENDERER'S THREAD IS NOT AVAILABLE (EITHER NOT CREATED YET, OR ALREADY DESTROYED)
*/
bool performInit(JNIEnv *env, jobject androidContext, jobject androidDisplay, const ci::Vec2i &displaySize, float displayDensity);
void performUninit(JNIEnv *env);
/*
* INVOKED ON THE RENDERER'S THREAD
*
* GL-CONTEXT IS VALID
*/
void performSetup(JNIEnv *env, const ci::Vec2i &size);
void performShutdown(JNIEnv *env);
void performResize(const ci::Vec2i &size);
void performUpdate();
void performDraw();
void addTouch(int index, float x, float y);
void updateTouch(int index, float x, float y);
void removeTouch(int index, float x, float y);
void messageFromBridge(int what, const std::string &body = "") final;
void sendMessageToBridge(int what, const std::string &body = "") final;
void handleEvent(int eventId) final;
void performAction(int actionId) final;
void enableAccelerometer( float updateFrequency = 30, float filterFactor = 0.1f) final;
void disableAccelerometer() final;
ci::JsonTree jsonQuery(const char *methodName) final;
protected:
int updateCount = 0;
std::shared_ptr<boost::asio::io_service> io;
std::shared_ptr<boost::asio::io_service::work> ioWork;
ASensorManager *sensorManager;
const ASensor *accelerometerSensor;
ASensorEventQueue *sensorEventQueue;
void startIOService();
void stopIOService();
void createSensorEventQueue();
void destroySensorEventQueue();
void pollSensorEvents();
void handleAcceleration(ASensorEvent event);
int getDisplayRotation();
};
}
| neshume/new-chronotext-toolkit | src/chronotext/android/cinder/CinderDelegate.h | C | bsd-2-clause | 2,577 |
#include "IL.h"
#include "ILVisitor.h"
#include <core/Core.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
IL::IL():Opcode(Nop)
{
}
IL::IL(IL::ILOpcode opcode)
{
this->Opcode = opcode;
this->Operands.clear();
}
IL::IL(IL::ILOpcode opcode, const IL::ILOperand& operand1)
{
this->Opcode = opcode;
this->Operands.clear();
this->Operands.push_back(operand1);
}
IL::IL(IL::ILOpcode opcode, const IL::ILOperand& operand1, const IL::ILOperand& operand2)
{
this->Opcode = opcode;
this->Operands.clear();
this->Operands.push_back(operand1);
this->Operands.push_back(operand2);
}
IL::IL(IL::ILOpcode opcode, const IL::ILOperand& operand1, const IL::ILOperand& operand2, const IL::ILOperand& operand3)
{
this->Opcode = opcode;
this->Operands.clear();
this->Operands.push_back(operand1);
this->Operands.push_back(operand2);
this->Operands.push_back(operand3);
}
IL::IL(IL::ILOpcode opcode, const IL::ILOperand& operand1, const IL::ILOperand& operand2, const IL::ILOperand& operand3, const IL::ILOperand& operand4)
{
this->Opcode = opcode;
this->Operands.clear();
this->Operands.push_back(operand1);
this->Operands.push_back(operand2);
this->Operands.push_back(operand3);
this->Operands.push_back(operand4);
}
IL::IL(IL::ILOpcode opcode, const std::vector< IL::ILOperand >& operands)
{
this->Opcode = opcode;
this->Operands = operands;
}
IL::ILOperand::ILOperand()
{
OperandKind = IL::Empty;
OperandType = IL::I;
IValue = 0;
UValue = 0;
RValue = 0;
SValue = "";
SymRef = NULL;
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, intmax_t v)
{
OperandKind = kind;
OperandType = type;
IValue = (intmax_t)v;
UValue = (uintmax_t)v;
RValue = (double)v;
SValue = "";
SymRef = NULL;
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, uintmax_t v)
{
OperandKind = kind;
OperandType = type;
IValue = (intmax_t)v;
UValue = (uintmax_t)v;
RValue = (double)v;
SValue = "";
SymRef = NULL;
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, double v)
{
OperandKind = kind;
OperandType = type;
IValue = (intmax_t)v;
UValue = (uintmax_t)v;
RValue = (double)v;
SValue = "";
SymRef = NULL;
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, std::string v)
{
OperandKind = kind;
OperandType = type;
IValue = 0;
UValue = 0;
RValue = 0;
SValue = v;
SymRef = NULL;
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, Symbol* v)
{
OperandKind = kind;
OperandType = type;
IValue = 0;
UValue = 0;
RValue = 0;
SValue = "";
SymRef = new SymbolRef(v);
ObjectType = NULL;
}
IL::ILOperand::ILOperand(IL::ILOperandKind kind, IL::ILOperandType type, SymbolRef* v)
{
OperandKind = kind;
OperandType = type;
IValue = 0;
UValue = 0;
RValue = 0;
SValue = "";
SymRef = v;
ObjectType = NULL;
}
int IL::ILOperand::Equal(IL::ILOperand* operand)
{
if (OperandKind != operand->OperandKind) return 0;
if (OperandType != operand->OperandType) return 0;
if (IValue != operand->IValue) return 0;
if (UValue != operand->UValue) return 0;
if (RValue != operand->RValue) return 0;
if (SValue != operand->SValue) return 0;
if (SymRef != NULL) {
if (SymRef->Scope != operand->SymRef->Scope) return 0;
if (SymRef->Name != operand->SymRef->Name) return 0;
}
if (ObjectType != operand->ObjectType) return 0;
return 1;
}
std::string IL::GetOperandString(const IL::ILOperand& operand)
{
std::string opstr = "";
char buffer[200];
switch(operand.OperandKind)
{
case Empty:
sprintf(buffer, "<missing>");
opstr += buffer;
break;
case Constant:
opstr = "";
switch(operand.OperandType)
{
case Void:
sprintf(buffer, "void");
break;
case I:
sprintf(buffer, "0x%llX:i", (long long)operand.IValue);
break;
case I1:
sprintf(buffer, "0x%llX:i1", (long long)operand.IValue);
break;
case I2:
sprintf(buffer, "0x%llX:i2", (long long)operand.IValue);
break;
case I4:
sprintf(buffer, "0x%llX:i4", (long long)operand.IValue);
break;
case I8:
sprintf(buffer, "0x%llX:i8", (long long)operand.IValue);
break;
case U:
sprintf(buffer, "0x%llX:u", (long long)operand.UValue);
break;
case U1:
sprintf(buffer, "0x%llX:u1", (long long)operand.UValue);
break;
case U2:
sprintf(buffer, "0x%llX:u2", (long long)operand.UValue);
break;
case U4:
sprintf(buffer, "0x%llX:u4", (long long)operand.UValue);
break;
case U8:
sprintf(buffer, "0x%llX:u8", (long long)operand.UValue);
break;
case R4:
sprintf(buffer, "%f:r4", (float)operand.RValue);
break;
case R8:
sprintf(buffer, "%lf:r8", (double)operand.RValue);
break;
case Str:
sprintf(buffer, "\"%s\"", operand.SValue.c_str());
break;
default:
abort();
}
opstr += buffer;
break;
case Variable:
sprintf(buffer, "%s$%p", operand.SymRef->Name.c_str(), operand.SymRef->Scope);
opstr += buffer;
break;
case FieldToken:
sprintf(buffer, "%s", operand.SValue.c_str());
opstr += buffer;
break;
default:
abort();
}
return std::string(opstr);
}
std::string IL::ToString()
{
std::string opstr;
switch(Opcode)
{
case Nop:
opstr = "nop";
break;
case Add:
opstr = "add";
break;
case And:
opstr = "and";
break;
case BrEq:
opstr = "beq";
break;
case BrGt:
opstr = "bgt";
break;
case BrGe:
opstr = "bge";
break;
case BrLt:
opstr = "blt";
break;
case BrLe:
opstr = "ble";
break;
case BrNe:
opstr = "bne";
break;
case Br:
opstr = "br";
break;
case BrZ:
opstr = "bz";
break;
case BrNz:
opstr = "bnz";
break;
case Call:
opstr = "call";
break;
case CallInd:
opstr = "calli";
break;
case CallVirt:
opstr = "callvirt";
break;
case Cast:
opstr = "cast";
break;
case CompEq:
opstr = "ceq";
break;
case CompGt:
opstr = "cgt";
break;
case CompGe:
opstr = "cge";
break;
case CompLt:
opstr = "clt";
break;
case CompLe:
opstr = "cle";
break;
case CompNe:
opstr = "cne";
break;
case Conv:
opstr = "conv";
break;
case Cpblk:
opstr = "cpblk";
break;
case Cpobj:
opstr = "cpobj";
break;
case Div:
opstr = "div";
break;
case Initblk:
opstr = "initblk";
break;
case Initobj:
opstr = "initobj";
break;
case Ldelem:
opstr = "ldelem";
break;
case Ldelema:
opstr = "ldelema";
break;
case Ldfld:
opstr = "ldfld";
break;
case Ldflda:
opstr = "ldflda";
break;
case Ldind:
opstr = "ldi";
break;
case Stelem:
opstr = "stelem";
break;
case Stfld:
opstr = "stfld";
break;
case Stind:
opstr = "sti";
break;
case Stackalloc:
opstr = "stackalloc";
break;
case Mul:
opstr = "mul";
break;
case Neg:
opstr = "neg";
break;
case Newarr:
opstr = "newarr";
break;
case Newobj:
opstr = "newobj";
break;
case Not:
opstr = "not";
break;
case Or:
opstr = "or";
break;
case Mod:
opstr = "mod";
break;
case Ret:
opstr = "ret";
break;
case Shl:
opstr = "shl";
break;
case Shr:
opstr = "shr";
break;
case Mov:
opstr = "mov";
break;
case Xor:
opstr = "xor";
break;
case Asm:
opstr = "asm";
break;
case Label:
opstr = "";
break;
case Sub:
opstr = "sub";
break;
case Lda:
opstr = "lda";
break;
default:
abort();
break;
}
for(std::vector<ILOperand>::iterator it = Operands.begin(); it != Operands.end(); ++it)
{
if(it == Operands.begin())
{
if(Opcode != IL::Label)
{
opstr += " ";
}
}
else
{
opstr += ", ";
}
opstr += GetOperandString(*it);
}
if(Opcode == IL::Label)
{
opstr += ":";
}
return opstr;
}
void IL::Accept(ILVisitor* visitor)
{
switch(Opcode)
{
case Nop:
visitor->VisitNop(this);
break;
case Add:
visitor->VisitAdd(this);
break;
case And:
visitor->VisitAnd(this);
break;
case BrEq:
visitor->VisitBrEq(this);
break;
case BrGt:
visitor->VisitBrGt(this);
break;
case BrGe:
visitor->VisitBrGe(this);
break;
case BrLt:
visitor->VisitBrLt(this);
break;
case BrLe:
visitor->VisitBrLe(this);
break;
case BrNe:
visitor->VisitBrNe(this);
break;
case Br:
visitor->VisitBr(this);
break;
case BrZ:
visitor->VisitBrZ(this);
break;
case BrNz:
visitor->VisitBrNz(this);
break;
case Call:
visitor->VisitCall(this);
break;
case CallInd:
visitor->VisitCallInd(this);
break;
case CallVirt:
visitor->VisitCallVirt(this);
break;
case Cast:
visitor->VisitCast(this);
break;
case CompEq:
visitor->VisitCompEq(this);
break;
case CompGt:
visitor->VisitCompGt(this);
break;
case CompGe:
visitor->VisitCompGe(this);
break;
case CompLt:
visitor->VisitCompLt(this);
break;
case CompLe:
visitor->VisitCompLe(this);
break;
case CompNe:
visitor->VisitCompNe(this);
break;
case Conv:
visitor->VisitConv(this);
break;
case Cpblk:
visitor->VisitCpblk(this);
break;
case Cpobj:
visitor->VisitCpobj(this);
break;
case Div:
visitor->VisitDiv(this);
break;
case Initblk:
visitor->VisitInitblk(this);
break;
case Initobj:
visitor->VisitInitobj(this);
break;
case Ldelem:
visitor->VisitLdelem(this);
break;
case Ldelema:
visitor->VisitLdelema(this);
break;
case Ldfld:
visitor->VisitLdfld(this);
break;
case Ldflda:
visitor->VisitLdflda(this);
break;
case Ldind:
visitor->VisitLdind(this);
break;
case Ldstr:
visitor->VisitLdstr(this);
break;
case Stelem:
visitor->VisitStelem(this);
break;
case Stfld:
visitor->VisitStfld(this);
break;
case Stind:
visitor->VisitStind(this);
break;
case Stackalloc:
visitor->VisitStackalloc(this);
break;
case Mul:
visitor->VisitMul(this);
break;
case Neg:
visitor->VisitNeg(this);
break;
case Newarr:
visitor->VisitNewarr(this);
break;
case Newobj:
visitor->VisitNewobj(this);
break;
case Not:
visitor->VisitNot(this);
break;
case Or:
visitor->VisitOr(this);
break;
case Mod:
visitor->VisitMod(this);
break;
case Ret:
visitor->VisitRet(this);
break;
case Shl:
visitor->VisitShl(this);
break;
case Shr:
visitor->VisitShr(this);
break;
case Mov:
visitor->VisitMov(this);
break;
case Xor:
visitor->VisitXor(this);
break;
case Asm:
visitor->VisitAsm(this);
break;
case Label:
visitor->VisitLabel(this);
break;
case Sub:
visitor->VisitSub(this);
break;
case Lda:
visitor->VisitLda(this);
break;
default:
abort();
}
}
| layerzero/cc0 | src/toolchain/core/IL/IL.cpp | C++ | bsd-2-clause | 14,763 |
///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2002, Industrial Light & Magic, a division of Lucas
// Digital Ltd. LLC
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Industrial Light & Magic nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
///////////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------
//
// 16-bit Haar Wavelet encoding and decoding
//
// The source code in this file is derived from the encoding
// and decoding routines.
//
//-----------------------------------------------------------------------------
#include <ImfWav.h>
namespace Imf {
namespace {
//
// Wavelet basis functions without modulo arithmetic; they produce
// the best compression ratios when the wavelet-transformed data are
// Huffman-encoded, but the wavelet transform works only for 14-bit
// data (untransformed data values must be less than (1 << 14)).
//
inline void
wenc14 (unsigned short a, unsigned short b,
unsigned short &l, unsigned short &h)
{
short as = a;
short bs = b;
short ms = (as + bs) >> 1;
short ds = as - bs;
l = ms;
h = ds;
}
inline void
wdec14 (unsigned short l, unsigned short h,
unsigned short &a, unsigned short &b)
{
short ls = l;
short hs = h;
int hi = hs;
int ai = ls + (hi & 1) + (hi >> 1);
short as = ai;
short bs = ai - hi;
a = as;
b = bs;
}
//
// Wavelet basis functions with modulo arithmetic; they work with full
// 16-bit data, but Huffman-encoding the wavelet-transformed data doesn't
// compress the data quite as well.
//
const int NBITS = 16;
const int A_OFFSET = 1 << (NBITS - 1);
const int M_OFFSET = 1 << (NBITS - 1);
const int MOD_MASK = (1 << NBITS) - 1;
inline void
wenc16 (unsigned short a, unsigned short b,
unsigned short &l, unsigned short &h)
{
int ao = (a + A_OFFSET) & MOD_MASK;
int m = ((ao + b) >> 1);
int d = ao - b;
if (d < 0)
m = (m + M_OFFSET) & MOD_MASK;
d &= MOD_MASK;
l = m;
h = d;
}
inline void
wdec16 (unsigned short l, unsigned short h,
unsigned short &a, unsigned short &b)
{
int m = l;
int d = h;
int bb = (m - (d >> 1)) & MOD_MASK;
int aa = (d + bb - A_OFFSET) & MOD_MASK;
b = bb;
a = aa;
}
} // namespace
//
// 2D Wavelet encoding:
//
void
wav2Encode
(unsigned short* in, // io: values are transformed in place
int nx, // i : x size
int ox, // i : x offset
int ny, // i : y size
int oy, // i : y offset
unsigned short mx) // i : maximum in[x][y] value
{
bool w14 = (mx < (1 << 14));
int n = (nx > ny)? ny: nx;
int p = 1; // == 1 << level
int p2 = 2; // == 1 << (level+1)
//
// Hierachical loop on smaller dimension n
//
while (p2 <= n)
{
unsigned short *py = in;
unsigned short *ey = in + oy * (ny - p2);
int oy1 = oy * p;
int oy2 = oy * p2;
int ox1 = ox * p;
int ox2 = ox * p2;
unsigned short i00,i01,i10,i11;
//
// Y loop
//
for (; py <= ey; py += oy2)
{
unsigned short *px = py;
unsigned short *ex = py + ox * (nx - p2);
//
// X loop
//
for (; px <= ex; px += ox2)
{
unsigned short *p01 = px + ox1;
unsigned short *p10 = px + oy1;
unsigned short *p11 = p10 + ox1;
//
// 2D wavelet encoding
//
if (w14)
{
wenc14 (*px, *p01, i00, i01);
wenc14 (*p10, *p11, i10, i11);
wenc14 (i00, i10, *px, *p10);
wenc14 (i01, i11, *p01, *p11);
}
else
{
wenc16 (*px, *p01, i00, i01);
wenc16 (*p10, *p11, i10, i11);
wenc16 (i00, i10, *px, *p10);
wenc16 (i01, i11, *p01, *p11);
}
}
//
// Encode (1D) odd column (still in Y loop)
//
if (nx & p)
{
unsigned short *p10 = px + oy1;
if (w14)
wenc14 (*px, *p10, i00, *p10);
else
wenc16 (*px, *p10, i00, *p10);
*px= i00;
}
}
//
// Encode (1D) odd line (must loop in X)
//
if (ny & p)
{
unsigned short *px = py;
unsigned short *ex = py + ox * (nx - p2);
for (; px <= ex; px += ox2)
{
unsigned short *p01 = px + ox1;
if (w14)
wenc14 (*px, *p01, i00, *p01);
else
wenc16 (*px, *p01, i00, *p01);
*px= i00;
}
}
//
// Next level
//
p = p2;
p2 <<= 1;
}
}
//
// 2D Wavelet decoding:
//
void
wav2Decode
(unsigned short* in, // io: values are transformed in place
int nx, // i : x size
int ox, // i : x offset
int ny, // i : y size
int oy, // i : y offset
unsigned short mx) // i : maximum in[x][y] value
{
bool w14 = (mx < (1 << 14));
int n = (nx > ny)? ny: nx;
int p = 1;
int p2;
//
// Search max level
//
while (p <= n)
p <<= 1;
p >>= 1;
p2 = p;
p >>= 1;
//
// Hierarchical loop on smaller dimension n
//
while (p >= 1)
{
unsigned short *py = in;
unsigned short *ey = in + oy * (ny - p2);
int oy1 = oy * p;
int oy2 = oy * p2;
int ox1 = ox * p;
int ox2 = ox * p2;
unsigned short i00,i01,i10,i11;
//
// Y loop
//
for (; py <= ey; py += oy2)
{
unsigned short *px = py;
unsigned short *ex = py + ox * (nx - p2);
//
// X loop
//
for (; px <= ex; px += ox2)
{
unsigned short *p01 = px + ox1;
unsigned short *p10 = px + oy1;
unsigned short *p11 = p10 + ox1;
//
// 2D wavelet decoding
//
if (w14)
{
wdec14 (*px, *p10, i00, i10);
wdec14 (*p01, *p11, i01, i11);
wdec14 (i00, i01, *px, *p01);
wdec14 (i10, i11, *p10, *p11);
}
else
{
wdec16 (*px, *p10, i00, i10);
wdec16 (*p01, *p11, i01, i11);
wdec16 (i00, i01, *px, *p01);
wdec16 (i10, i11, *p10, *p11);
}
}
//
// Decode (1D) odd column (still in Y loop)
//
if (nx & p)
{
unsigned short *p10 = px + oy1;
if (w14)
wdec14 (*px, *p10, i00, *p10);
else
wdec16 (*px, *p10, i00, *p10);
*px= i00;
}
}
//
// Decode (1D) odd line (must loop in X)
//
if (ny & p)
{
unsigned short *px = py;
unsigned short *ex = py + ox * (nx - p2);
for (; px <= ex; px += ox2)
{
unsigned short *p01 = px + ox1;
if (w14)
wdec14 (*px, *p01, i00, *p01);
else
wdec16 (*px, *p01, i00, *p01);
*px= i00;
}
}
//
// Next level
//
p2 = p;
p >>= 1;
}
}
} // namespace Imf
| solakian/RISE | extlib/openexr/ImfWav.cpp | C++ | bsd-2-clause | 7,911 |
#pragma once
class QApplication;
namespace nano
{
void set_application_icon (QApplication &);
}
| clemahieu/raiblocks | nano/nano_wallet/icon.hpp | C++ | bsd-2-clause | 97 |
/* Copyright (C) 2012, Code for America
* This is open source software, released under a standard 2-clause
* BSD-style license; see the file LICENSE for details.
*/
var ConfigBoston2 = {
center: [42.36299, -71.057348], // [lat, lon]
zoom: 13, // integer
endpoint: 'boston', // string
useCanvasMap: true,
maxMarkers: 1000,
title: 'Boston', // string
boundaryTitle: 'Neighborhood',
description: "Service requests available through the city's Open311 API.",
statusSelectorValues: {opened: true, closed: true, open: true}
};
| zmon/311DailyBriefKC | assets/js/libs/config.boston2.js | JavaScript | bsd-2-clause | 543 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.3.1"/>
<title>cds: Data Fields - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">cds
 <span id="projectnumber">1.4.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
<li><a href="functions_rela.html"><span>Related Functions</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_func.html#index_a"><span>a</span></a></li>
<li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_func_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_func_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li>
<li class="current"><a href="functions_func_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_func_0x78.html#index_x"><span>x</span></a></li>
<li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li>
<li><a href="functions_func_0x7e.html#index_0x7e"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="contents">
 
<h3><a class="anchor" id="index_r"></a>- r -</h3><ul>
<li>realloc()
: <a class="el" href="classcds_1_1memory_1_1michael_1_1_heap.html#ad8cc511aa052e261f26de80b4bbf6ca3">cds::memory::michael::Heap< Options ></a>
</li>
<li>ReentrantSpinT()
: <a class="el" href="classcds_1_1lock_1_1_reentrant_spin_t.html#ae0fd52b448d7100fa0f5b5ce83c96420">cds::lock::ReentrantSpinT< Integral, Backoff ></a>
</li>
<li>ref_counter()
: <a class="el" href="classcds_1_1ref__counter.html#ab7589744f5636b2d4933643bf0691d5d">cds::ref_counter< T ></a>
</li>
<li>refinable()
: <a class="el" href="classcds_1_1intrusive_1_1cuckoo_1_1refinable.html#ae59a56ecc5f68c89836adb437fed5687">cds::intrusive::cuckoo::refinable< RecursiveLock, Arity, BackOff, Alloc, Stat ></a>
, <a class="el" href="classcds_1_1intrusive_1_1striped__set_1_1refinable.html#ac903631b15c14a84db4df0b8cf7d375a">cds::intrusive::striped_set::refinable< RecursiveLock, BackOff, Alloc ></a>
</li>
<li>reset()
: <a class="el" href="classcds_1_1atomicity_1_1item__counter.html#adbb1ad320f7973ed369ba61bf9775884">cds::atomicity::item_counter</a>
, <a class="el" href="classcds_1_1atomicity_1_1empty__item__counter.html#a5bc911e3e52b067b7db21b557b337e8b">cds::atomicity::empty_item_counter</a>
, <a class="el" href="structcds_1_1intrusive_1_1striped__set_1_1load__factor__resizing.html#a60d29e5332c5fd63ee42dfb69cad873f">cds::intrusive::striped_set::load_factor_resizing< LoadFactor ></a>
, <a class="el" href="structcds_1_1intrusive_1_1striped__set_1_1load__factor__resizing_3_010_01_4.html#ae76e45b6148594c92d58f624624b28cf">cds::intrusive::striped_set::load_factor_resizing< 0 ></a>
, <a class="el" href="structcds_1_1intrusive_1_1striped__set_1_1single__bucket__size__threshold.html#aef140b08c8c2e403e495ad75cf58b22a">cds::intrusive::striped_set::single_bucket_size_threshold< Threshold ></a>
, <a class="el" href="structcds_1_1intrusive_1_1striped__set_1_1single__bucket__size__threshold_3_010_01_4.html#aafb1e3faa6db9a87477b054110ca119b">cds::intrusive::striped_set::single_bucket_size_threshold< 0 ></a>
, <a class="el" href="structcds_1_1intrusive_1_1striped__set_1_1no__resizing.html#a7176c6542d5370d04ffeaa9746a881fb">cds::intrusive::striped_set::no_resizing</a>
, <a class="el" href="classcds_1_1opt_1_1v_1_1sequential__item__counter.html#a311ae2f9b9d972e981d59e3943706646">cds::opt::v::sequential_item_counter</a>
</li>
<li>resize()
: <a class="el" href="classcds_1_1intrusive_1_1striped__set_1_1refinable.html#ab0e9041fe3fa89c1fe882b8f828f2d34">cds::intrusive::striped_set::refinable< RecursiveLock, BackOff, Alloc ></a>
</li>
<li>retire()
: <a class="el" href="classcds_1_1gc_1_1_h_p.html#a856385cf157f3e4ff17173b8e3d4ca2a">cds::gc::HP</a>
, <a class="el" href="classcds_1_1gc_1_1_h_r_c.html#a46d8d0cea29d738dd6fc3a56069b474e">cds::gc::HRC</a>
, <a class="el" href="classcds_1_1gc_1_1_p_t_b.html#a008aa1bcd29af367a8cf1c4ea53007e0">cds::gc::PTB</a>
</li>
<li>retire_ptr()
: <a class="el" href="classcds_1_1urcu_1_1gc_3_01signal__buffered_3_01_buffer_00_01_lock_00_01_backoff_01_4_01_4.html#ac6214263fc6ad5f65c870e484985655b">cds::urcu::gc< signal_buffered< Buffer, Lock, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01general__instant_3_01_lock_00_01_backoff_01_4_01_4.html#a8cbf4fd47ef1088081319be227a88dd4">cds::urcu::gc< general_instant< Lock, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01general__threaded_3_01_buffer_00_01_lock_00_01_disposer_thread_00_01_backoff_01_4_01_4.html#ac158244f8f172f326beb59460a126106">cds::urcu::gc< general_threaded< Buffer, Lock, DisposerThread, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01signal__buffered_3_01_buffer_00_01_lock_00_01_backoff_01_4_01_4.html#a0dd3c7b07099e3fd5499f1732db4ceba">cds::urcu::gc< signal_buffered< Buffer, Lock, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01general__instant_3_01_lock_00_01_backoff_01_4_01_4.html#a2bc93c42b54a83190f658ce2c1e19ccd">cds::urcu::gc< general_instant< Lock, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01signal__threaded_3_01_buffer_00_01_lock_00_01_disposer_thread_00_01_backoff_01_4_01_4.html#afd88b865cb4f4d99be54642b562510af">cds::urcu::gc< signal_threaded< Buffer, Lock, DisposerThread, Backoff > ></a>
, <a class="el" href="classcds_1_1urcu_1_1signal__threaded.html#abcc93e3859a57be91e5d17d0f2213042">cds::urcu::signal_threaded< Buffer, Lock, DisposerThread, Backoff ></a>
, <a class="el" href="classcds_1_1urcu_1_1general__buffered.html#a6ea1f630c53ec769193e1a63766cb46d">cds::urcu::general_buffered< Buffer, Lock, Backoff ></a>
, <a class="el" href="classcds_1_1urcu_1_1general__instant.html#a3e31497102899b98d4be3e3b885e7595">cds::urcu::general_instant< Lock, Backoff ></a>
, <a class="el" href="classcds_1_1urcu_1_1general__threaded.html#aca9c1fb5c8ed8889a6bb1c2f893a715c">cds::urcu::general_threaded< Buffer, Lock, DisposerThread, Backoff ></a>
, <a class="el" href="classcds_1_1urcu_1_1signal__buffered.html#a7818ddd463eec0ea40af955cfa2453f0">cds::urcu::signal_buffered< Buffer, Lock, Backoff ></a>
, <a class="el" href="classcds_1_1urcu_1_1gc_3_01general__buffered_3_01_buffer_00_01_lock_00_01_backoff_01_4_01_4.html#a0bd8ed0e48669be1fb53a24b041d2819">cds::urcu::gc< general_buffered< Buffer, Lock, Backoff > ></a>
</li>
<li>retired_node()
: <a class="el" href="structcds_1_1gc_1_1hrc_1_1details_1_1retired__node.html#a90a12bd1db82a8bc798a39b531236b35">cds::gc::hrc::details::retired_node</a>
</li>
<li>retired_ptr()
: <a class="el" href="structcds_1_1gc_1_1details_1_1retired__ptr.html#a68c1d7a0e76b27fc3aedd7f753048f5f">cds::gc::details::retired_ptr</a>
</li>
<li>retired_vector()
: <a class="el" href="classcds_1_1gc_1_1hzp_1_1details_1_1retired__vector.html#a7c2ebcd09e96523dff61f0cb3e52a8a9">cds::gc::hzp::details::retired_vector</a>
, <a class="el" href="classcds_1_1gc_1_1hrc_1_1details_1_1retired__vector.html#a856851530893dca323915deb04f73a63">cds::gc::hrc::details::retired_vector</a>
</li>
<li>retiredNodeCount()
: <a class="el" href="classcds_1_1gc_1_1hrc_1_1details_1_1retired__vector.html#ab971da82673a7dddeb1c47822b691f5a">cds::gc::hrc::details::retired_vector</a>
</li>
<li>RetireHPRec()
: <a class="el" href="classcds_1_1gc_1_1hzp_1_1_garbage_collector.html#aae4a95cca765fdb510fb59b4466360e8">cds::gc::hzp::GarbageCollector</a>
</li>
<li>retireHRCThreadDesc()
: <a class="el" href="classcds_1_1gc_1_1hrc_1_1_garbage_collector.html#ae995f5d0f716a9752c9626ee75da5202">cds::gc::hrc::GarbageCollector</a>
</li>
<li>retireNode()
: <a class="el" href="classcds_1_1gc_1_1hrc_1_1_thread_g_c.html#a8385c022f01bbe924226eae0a3d9daf7">cds::gc::hrc::ThreadGC</a>
</li>
<li>retirePtr()
: <a class="el" href="classcds_1_1gc_1_1hzp_1_1_thread_g_c.html#a4968071b77ce488503d87088a9c12e88">cds::gc::hzp::ThreadGC</a>
, <a class="el" href="classcds_1_1gc_1_1ptb_1_1_garbage_collector.html#a7deece3a1d6e31a74697d41c1d00b15f">cds::gc::ptb::GarbageCollector</a>
, <a class="el" href="classcds_1_1gc_1_1ptb_1_1_thread_g_c.html#a99b3d362bdf3f1e88539ece0353e8f68">cds::gc::ptb::ThreadGC</a>
, <a class="el" href="classcds_1_1gc_1_1hzp_1_1_thread_g_c.html#a97c37cee3f1a609fcc5a2056abf7a9d6">cds::gc::hzp::ThreadGC</a>
</li>
<li>RWQueue()
: <a class="el" href="classcds_1_1container_1_1_r_w_queue.html#aadccbf5bcf055436979415b29c14f105">cds::container::RWQueue< T, Options ></a>
</li>
</ul>
</div><!-- contents -->
<hr/>
<div align="right">
<b>cds</b> <b>1.4.0</b>
Developed by <i>Maxim Khiszinsky aka khizmax</i> 2007 - 2012
<br/>
<i>Autogenerated Mon May 20 2013 00:38:03 by Doxygen 1.8.3.1</i>
</div>
</BODY>
</HTML>
| avis/cds | doc/cds-api/functions_func_0x72.html | HTML | bsd-2-clause | 12,069 |
cask 'srware-iron' do
version :latest
sha256 :no_check
url 'https://www.srware.net/downloads/iron-mac64.zip'
name 'SRWare SRWare Iron'
homepage 'https://www.srware.net/en/software_srware_iron.php'
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
# Renamed for clarity: app name is inconsistent with its branding.
app 'Chromium.app', :target => 'SRWare Iron.app'
end
| jppelteret/homebrew-cask | Casks/srware-iron.rb | Ruby | bsd-2-clause | 449 |
/*
* Copyright (c) 1997 - 1999, Marek Michałkiewicz
* Copyright (c) 2001 - 2005, Tomasz Kłoczko
* Copyright (c) 2008 , Nicolas François
* 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. The name of the copyright holders or contributors may not 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
* HOLDERS 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 <config.h>
#ifdef USE_PAM
#ident "$Id$"
/*
* Change the user's password using PAM.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include "defines.h"
#include "pam_defs.h"
#include "prototypes.h"
void do_pam_passwd (const char *user, bool silent, bool change_expired)
{
pam_handle_t *pamh = NULL;
int flags = 0, ret;
if (silent)
flags |= PAM_SILENT;
if (change_expired)
flags |= PAM_CHANGE_EXPIRED_AUTHTOK;
ret = pam_start ("passwd", user, &conv, &pamh);
if (ret != PAM_SUCCESS) {
fprintf (stderr,
_("passwd: pam_start() failed, error %d\n"), ret);
exit (10); /* XXX */
}
ret = pam_chauthtok (pamh, flags);
if (ret != PAM_SUCCESS) {
fprintf (stderr, _("passwd: %s\n"), pam_strerror (pamh, ret));
fputs (_("passwd: password unchanged\n"), stderr);
pam_end (pamh, ret);
exit (10); /* XXX */
}
fputs (_("passwd: password updated successfully\n"), stderr);
(void) pam_end (pamh, PAM_SUCCESS);
}
#else /* !USE_PAM */
extern int errno; /* warning: ANSI C forbids an empty source file */
#endif /* !USE_PAM */
| mikedlowis-prototypes/albase | source/shadow/libmisc/pam_pass.c | C | bsd-2-clause | 2,772 |
class Redo < Formula
include Language::Python::Virtualenv
desc "Implements djb's redo: an alternative to make"
homepage "https://redo.rtfd.io/"
url "https://github.com/apenwarr/redo/archive/redo-0.42c.tar.gz"
sha256 "6f1600c82d00bdfa75445e1e161477f876bd2615eb4371eb1bcf0a7e252dc79f"
license "Apache-2.0"
revision 1
bottle do
cellar :any_skip_relocation
sha256 "4531c1e25405e7cc940e109fdc7f028cfc84b6b224874d861f112371da993fac" => :catalina
sha256 "9b3f873c69959f246ea6c8abbea58f875e436fa260aefcb2697d798cfd803b3e" => :mojave
sha256 "0e30bad1e3dad48d66fb4061e4fb7dbd7b5b3450a53a93275990a66b2bc558dc" => :high_sierra
end
depends_on "python@3.9"
resource "Markdown" do
url "https://files.pythonhosted.org/packages/44/30/cb4555416609a8f75525e34cbacfc721aa5b0044809968b2cf553fd879c7/Markdown-3.2.2.tar.gz"
sha256 "1fafe3f1ecabfb514a5285fca634a53c1b32a81cb0feb154264d55bf2ff22c17"
end
resource "beautifulsoup4" do
url "https://files.pythonhosted.org/packages/c6/62/8a2bef01214eeaa5a4489eca7104e152968729512ee33cb5fbbc37a896b7/beautifulsoup4-4.9.1.tar.gz"
sha256 "73cc4d115b96f79c7d77c1c7f7a0a8d4c57860d1041df407dd1aae7f07a77fd7"
end
def install
venv = virtualenv_create(libexec, Formula["python@3.9"].opt_bin/"python3")
venv.pip_install resources
# Set the interpreter so that ./do install can find the pip installed
# resources
ENV["DESTDIR"] = ""
ENV["PREFIX"] = prefix
system "./do", "install"
man1.install Dir["docs/*.1"]
end
test do
assert_equal version.to_s, shell_output("#{bin}/redo --version").strip
# Test is based on https://redo.readthedocs.io/en/latest/cookbook/hello/
(testpath/"hello.c").write <<~EOS
#include <stdio.h>
int main() {
printf(\"Hello, world!\\n\");
return 0;
}
EOS
(testpath/"hello.do").write <<~EOS
redo-ifchange hello.c
cc -o $3 hello.c -Wall
EOS
assert_equal "redo hello", shell_output("redo hello 2>&1").strip
assert_predicate testpath/"hello", :exist?
assert_equal "Hello, world!\n", shell_output("./hello")
assert_equal "redo hello", shell_output("redo hello 2>&1").strip
assert_equal "", shell_output("redo-ifchange hello 2>&1").strip
touch "hello.c"
assert_equal "redo hello", shell_output("redo-ifchange hello 2>&1").strip
(testpath/"all.do").write("redo-ifchange hello")
(testpath/"hello").delete
assert_equal "redo all\nredo hello", shell_output("redo 2>&1").strip
end
end
| jabenninghoff/homebrew-core | Formula/redo.rb | Ruby | bsd-2-clause | 2,536 |
cask 'portfolioperformance' do
version '0.26.3'
sha256 '542c7893acf298373260785d219b80b342a7037681079125c204e02b6e6da004'
# s3.amazonaws.com/name.abuchen.portfolio was verified as official when first introduced to the cask
url "https://s3.amazonaws.com/name.abuchen.portfolio/#{version}/PortfolioPerformance-#{version}-macosx.cocoa.x86_64.tar.gz"
name 'Portfolio Performance'
homepage 'http://www.portfolio-performance.info/portfolio/'
app 'PortfolioPerformance.app'
caveats do
depends_on_java('8')
end
end
| shorshe/homebrew-cask | Casks/portfolioperformance.rb | Ruby | bsd-2-clause | 532 |
#include "postfix.h"
#include "reference.h"
#include "literal.h"
#include "call.h"
#include "../pkg/package.h"
#include "../pass/expr.h"
#include "../pass/names.h"
#include "../type/reify.h"
#include "../type/assemble.h"
#include "../type/lookup.h"
#include <string.h>
#include <assert.h>
static bool is_method_called(ast_t* ast)
{
ast_t* parent = ast_parent(ast);
switch(ast_id(parent))
{
case TK_QUALIFY:
return is_method_called(parent);
case TK_CALL:
case TK_AMP:
return true;
default: {}
}
ast_error(ast, "can't reference a method without calling it");
return false;
}
static bool constructor_type(ast_t* ast, token_id cap, ast_t* type,
ast_t** resultp)
{
switch(ast_id(type))
{
case TK_NOMINAL:
{
ast_t* def = (ast_t*)ast_data(type);
switch(ast_id(def))
{
case TK_PRIMITIVE:
case TK_CLASS:
ast_setid(ast, TK_NEWREF);
break;
case TK_ACTOR:
ast_setid(ast, TK_NEWBEREF);
break;
case TK_TYPE:
ast_error(ast, "can't call a constructor on a type alias: %s",
ast_print_type(type));
return false;
case TK_INTERFACE:
ast_error(ast, "can't call a constructor on an interface: %s",
ast_print_type(type));
return false;
case TK_TRAIT:
ast_error(ast, "can't call a constructor on a trait: %s",
ast_print_type(type));
return false;
default:
assert(0);
return false;
}
return true;
}
case TK_TYPEPARAMREF:
{
// Alter the return type of the method.
type = ast_dup(type);
AST_GET_CHILDREN(type, tid, tcap, teph);
ast_setid(tcap, cap);
ast_setid(teph, TK_EPHEMERAL);
ast_replace(resultp, type);
// This could this be an actor.
ast_setid(ast, TK_NEWBEREF);
return true;
}
case TK_ARROW:
{
AST_GET_CHILDREN(type, left, right);
return constructor_type(ast, cap, right, resultp);
}
default: {}
}
assert(0);
return false;
}
static bool method_access(ast_t* ast, ast_t* method)
{
AST_GET_CHILDREN(method, cap, id, typeparams, params, result, can_error,
body);
switch(ast_id(method))
{
case TK_NEW:
{
AST_GET_CHILDREN(ast, left, right);
ast_t* type = ast_type(left);
if(is_typecheck_error(type))
return false;
if(!constructor_type(ast, ast_id(cap), type, &result))
return false;
break;
}
case TK_BE:
ast_setid(ast, TK_BEREF);
break;
case TK_FUN:
ast_setid(ast, TK_FUNREF);
break;
default:
assert(0);
return false;
}
ast_settype(ast, type_for_fun(method));
if(ast_id(can_error) == TK_QUESTION)
ast_seterror(ast);
return is_method_called(ast);
}
static bool package_access(pass_opt_t* opt, ast_t** astp)
{
ast_t* ast = *astp;
// Left is a packageref, right is an id.
ast_t* left = ast_child(ast);
ast_t* right = ast_sibling(left);
assert(ast_id(left) == TK_PACKAGEREF);
assert(ast_id(right) == TK_ID);
// Must be a type in a package.
const char* package_name = ast_name(ast_child(left));
ast_t* package = ast_get(left, package_name, NULL);
if(package == NULL)
{
ast_error(right, "can't access package '%s'", package_name);
return false;
}
assert(ast_id(package) == TK_PACKAGE);
const char* type_name = ast_name(right);
ast_t* type = ast_get(package, type_name, NULL);
if(type == NULL)
{
ast_error(right, "can't find type '%s' in package '%s'",
type_name, package_name);
return false;
}
ast_settype(ast, type_sugar(ast, package_name, type_name));
ast_setid(ast, TK_TYPEREF);
return expr_typeref(opt, astp);
}
static bool type_access(pass_opt_t* opt, ast_t** astp)
{
ast_t* ast = *astp;
// Left is a typeref, right is an id.
ast_t* left = ast_child(ast);
ast_t* right = ast_sibling(left);
ast_t* type = ast_type(left);
if(is_typecheck_error(type))
return false;
assert(ast_id(left) == TK_TYPEREF);
assert(ast_id(right) == TK_ID);
ast_t* find = lookup(opt, ast, type, ast_name(right));
if(find == NULL)
return false;
bool ret = true;
switch(ast_id(find))
{
case TK_TYPEPARAM:
ast_error(right, "can't look up a typeparam on a type");
ret = false;
break;
case TK_NEW:
ret = method_access(ast, find);
break;
case TK_FVAR:
case TK_FLET:
case TK_EMBED:
case TK_BE:
case TK_FUN:
{
// Make this a lookup on a default constructed object.
ast_free_unattached(find);
if(!strcmp(ast_name(right), "create"))
{
ast_error(right, "create is not a constructor on this type");
return false;
}
ast_t* dot = ast_from(ast, TK_DOT);
ast_add(dot, ast_from_string(ast, "create"));
ast_swap(left, dot);
ast_add(dot, left);
ast_t* call = ast_from(ast, TK_CALL);
ast_swap(dot, call);
ast_add(call, dot); // the LHS goes at the end, not the beginning
ast_add(call, ast_from(ast, TK_NONE)); // named
ast_add(call, ast_from(ast, TK_NONE)); // positional
if(!expr_dot(opt, &dot))
return false;
if(!expr_call(opt, &call))
return false;
return expr_dot(opt, astp);
}
default:
assert(0);
ret = false;
break;
}
ast_free_unattached(find);
return ret;
}
static bool make_tuple_index(ast_t** astp)
{
ast_t* ast = *astp;
const char* name = ast_name(ast);
if(name[0] != '_')
return false;
for(size_t i = 1; name[i] != '\0'; i++)
{
if((name[i] < '0') || (name[i] > '9'))
return false;
}
size_t index = strtol(&name[1], NULL, 10) - 1;
ast_t* node = ast_from_int(ast, index);
ast_replace(astp, node);
return true;
}
static bool tuple_access(ast_t* ast)
{
// Left is a postfix expression, right is a lookup name.
ast_t* left = ast_child(ast);
ast_t* right = ast_sibling(left);
ast_t* type = ast_type(left);
if(is_typecheck_error(type))
return false;
// Change the lookup name to an integer index.
if(!make_tuple_index(&right))
{
ast_error(right,
"lookup on a tuple must take the form _X, where X is an integer");
return false;
}
// Make sure our index is in bounds.
type = ast_childidx(type, (size_t)ast_int(right));
if(type == NULL)
{
ast_error(right, "tuple index is out of bounds");
return false;
}
ast_setid(ast, TK_FLETREF);
ast_settype(ast, type);
ast_inheritflags(ast);
return true;
}
static bool member_access(pass_opt_t* opt, ast_t* ast, bool partial)
{
// Left is a postfix expression, right is an id.
AST_GET_CHILDREN(ast, left, right);
assert(ast_id(right) == TK_ID);
ast_t* type = ast_type(left);
if(is_typecheck_error(type))
return false;
ast_t* find = lookup(opt, ast, type, ast_name(right));
if(find == NULL)
return false;
bool ret = true;
switch(ast_id(find))
{
case TK_TYPEPARAM:
ast_error(right, "can't look up a typeparam on an expression");
ret = false;
break;
case TK_FVAR:
if(!expr_fieldref(opt, ast, find, TK_FVARREF))
return false;
break;
case TK_FLET:
if(!expr_fieldref(opt, ast, find, TK_FLETREF))
return false;
break;
case TK_EMBED:
if(!expr_fieldref(opt, ast, find, TK_EMBEDREF))
return false;
break;
case TK_NEW:
case TK_BE:
case TK_FUN:
ret = method_access(ast, find);
break;
default:
assert(0);
ret = false;
break;
}
ast_free_unattached(find);
if(!partial)
ast_inheritflags(ast);
return ret;
}
bool expr_qualify(pass_opt_t* opt, ast_t** astp)
{
// Left is a postfix expression, right is a typeargs.
ast_t* ast = *astp;
AST_GET_CHILDREN(ast, left, right);
ast_t* type = ast_type(left);
assert(ast_id(right) == TK_TYPEARGS);
if(is_typecheck_error(type))
return false;
switch(ast_id(left))
{
case TK_TYPEREF:
{
// Qualify the type.
assert(ast_id(type) == TK_NOMINAL);
// If the type isn't polymorphic or the type is already qualified,
// sugar .apply().
ast_t* def = names_def(type);
ast_t* typeparams = ast_childidx(def, 1);
if((ast_id(typeparams) == TK_NONE) ||
(ast_id(ast_childidx(type, 2)) != TK_NONE))
{
if(!expr_nominal(opt, &type))
return false;
break;
}
type = ast_dup(type);
ast_t* typeargs = ast_childidx(type, 2);
ast_replace(&typeargs, right);
ast_settype(ast, type);
ast_setid(ast, TK_TYPEREF);
return expr_typeref(opt, astp);
}
case TK_NEWREF:
case TK_NEWBEREF:
case TK_BEREF:
case TK_FUNREF:
case TK_NEWAPP:
case TK_BEAPP:
case TK_FUNAPP:
{
// Qualify the function.
assert(ast_id(type) == TK_FUNTYPE);
ast_t* typeparams = ast_childidx(type, 1);
if(!check_constraints(left, typeparams, right, true))
return false;
type = reify(left, type, typeparams, right);
typeparams = ast_childidx(type, 1);
ast_replace(&typeparams, ast_from(typeparams, TK_NONE));
ast_settype(ast, type);
ast_setid(ast, ast_id(left));
ast_inheritflags(ast);
return true;
}
default: {}
}
// Sugar .apply()
ast_t* dot = ast_from(left, TK_DOT);
ast_add(dot, ast_from_string(left, "apply"));
ast_swap(left, dot);
ast_add(dot, left);
if(!expr_dot(opt, &dot))
return false;
return expr_qualify(opt, astp);
}
static bool dot_or_tilde(pass_opt_t* opt, ast_t** astp, bool partial)
{
ast_t* ast = *astp;
// Left is a postfix expression, right is an id.
ast_t* left = ast_child(ast);
switch(ast_id(left))
{
case TK_PACKAGEREF:
return package_access(opt, astp);
case TK_TYPEREF:
return type_access(opt, astp);
default: {}
}
ast_t* type = ast_type(left);
if(type == NULL)
{
ast_error(ast, "invalid left hand side");
return false;
}
if(!literal_member_access(ast, opt))
return false;
// Type already set by literal handler
if(ast_type(ast) != NULL)
return true;
type = ast_type(left); // Literal handling may have changed lhs type
assert(type != NULL);
if(ast_id(type) == TK_TUPLETYPE)
return tuple_access(ast);
return member_access(opt, ast, partial);
}
bool expr_dot(pass_opt_t* opt, ast_t** astp)
{
return dot_or_tilde(opt, astp, false);
}
bool expr_tilde(pass_opt_t* opt, ast_t** astp)
{
if(!dot_or_tilde(opt, astp, true))
return false;
ast_t* ast = *astp;
if(ast_id(ast) == TK_TILDE && ast_type(ast) != NULL &&
ast_id(ast_type(ast)) == TK_OPERATORLITERAL)
{
ast_error(ast, "can't do partial application on a literal number");
return false;
}
switch(ast_id(ast))
{
case TK_NEWREF:
case TK_NEWBEREF:
ast_setid(ast, TK_NEWAPP);
return true;
case TK_BEREF:
ast_setid(ast, TK_BEAPP);
return true;
case TK_FUNREF:
ast_setid(ast, TK_FUNAPP);
return true;
case TK_TYPEREF:
ast_error(ast, "can't do partial application on a package");
return false;
case TK_FVARREF:
case TK_FLETREF:
case TK_EMBEDREF:
ast_error(ast, "can't do partial application of a field");
return false;
default: {}
}
assert(0);
return false;
}
| dckc/ponyc | src/libponyc/expr/postfix.c | C | bsd-2-clause | 11,495 |
class CaskError < RuntimeError; end
class CaskNotInstalledError < CaskError
attr_reader :token
def initialize(token)
@token = token
end
def to_s
"#{token} is not installed"
end
end
class CaskUnavailableError < CaskError
attr_reader :token
def initialize(token)
@token = token
end
def to_s
"No available Cask for #{token}"
end
end
class CaskAlreadyCreatedError < CaskError
attr_reader :token
def initialize(token)
@token = token
end
def to_s
%Q{A Cask for #{token} already exists. Run "brew cask cat #{token}" to see it.}
end
end
class CaskAlreadyInstalledError < CaskError
attr_reader :token
def initialize(token)
@token = token
end
def to_s
%Q{A Cask for #{token} is already installed. Add the "--force" option to force re-install.}
end
end
class CaskCommandFailedError < CaskError
def initialize(cmd, output, status)
@cmd = cmd
@output = output
@status = status
end
def to_s;
<<-EOS
Command failed to execute!
==> Failed command:
#{@cmd}
==> Output of failed command:
#{@output}
==> Exit status of failed command:
#{@status.inspect}
EOS
end
end
class CaskUnspecifiedError < CaskError
def to_s
"This command requires a Cask token"
end
end
class CaskInvalidError < CaskError
attr_reader :token, :submsg
def initialize(token, *submsg)
@token = token
@submsg = submsg.join(' ')
end
def to_s
"Cask '#{token}' definition is invalid" + (submsg.length > 0 ? ": #{submsg}" : '')
end
end
| L2G/homebrew-cask | lib/cask/exceptions.rb | Ruby | bsd-2-clause | 1,526 |
cask :v1 => 'grooveshark' do
version :latest
sha256 :no_check
url 'http://adops-fio.grooveshark.com/desktop-app/downloads/grooveshark.zip'
homepage 'http://www.grooveshark.com'
license :unknown
app 'Grooveshark.app'
# todo: transitional, replace #{self.name...} with #{token}
caveats <<-EOS.undent
#{self.name.sub(/^KlassPrefix/,'').gsub(/([a-zA-Z\d])([A-Z])/,'\1-\2').gsub(/([a-zA-Z\d])([A-Z])/,'\1-\2').downcase} requires Adobe Flash, available via
brew cask install flash
EOS
end
| prime8/homebrew-cask | Casks/grooveshark.rb | Ruby | bsd-2-clause | 515 |
cask 'onedrive' do
version '19.103.0527.0003'
sha256 'c84a03d3a7de1a49d86462ccac609282c2fb51a09524a71254822105067d0c98'
# oneclient.sfx.ms/Mac/Direct was verified as official when first introduced to the cask
url "https://oneclient.sfx.ms/Mac/Direct/#{version}/OneDrive.pkg"
appcast 'https://macupdater.net/cgi-bin/check_urls/check_url_redirect.cgi?url=https://go.microsoft.com/fwlink/?LinkId=823060'
name 'OneDrive'
homepage 'https://onedrive.live.com/'
auto_updates true
depends_on macos: '>= :sierra'
pkg 'OneDrive.pkg'
uninstall delete: '/Applications/OneDrive.app',
launchctl: [
'com.microsoft.OneDriveUpdaterDaemon',
'com.microsoft.OneDriveStandaloneUpdater',
'com.microsoft.OneDriveStandaloneUpdaterDaemon',
],
pkgutil: 'com.microsoft.OneDrive',
quit: [
'com.microsoft.OneDrive',
'com.microsoft.OneDriveUpdater',
'com.microsoft.OneDrive.FinderSync',
]
zap trash: [
'~/Library/Application Support/OneDrive',
'~/Library/Application Support/com.microsoft.OneDrive',
'~/Library/Application Support/com.microsoft.OneDriveUpdater',
'~/Library/Application Support/OneDriveUpdater',
'~/Library/Application Scripts/com.microsoft.OneDrive.FinderSync',
'~/Library/Application Scripts/com.microsoft.OneDriveLauncher',
'~/Library/Caches/com.microsoft.OneDrive',
'~/Library/Caches/com.microsoft.OneDriveUpdater',
'~/Library/Caches/com.plausiblelabs.crashreporter.data/com.microsoft.OneDrive',
'~/Library/Caches/com.plausiblelabs.crashreporter.data/com.microsoft.OneDriveUpdater',
'~/Library/Containers/com.microsoft.OneDriveLauncher',
'~/Library/Containers/com.microsoft.OneDrive.FinderSync',
'~/Library/Cookies/com.microsoft.OneDrive.binarycookies',
'~/Library/Cookies/com.microsoft.OneDriveUpdater.binarycookies',
'~/Library/Group Containers/*.OneDriveStandaloneSuite',
'~/Library/Logs/OneDrive',
'~/Library/Preferences/com.microsoft.OneDrive.plist',
'~/Library/Preferences/com.microsoft.OneDriveUpdater.plist',
'~/Library/Preferences/*.OneDriveStandaloneSuite.plist',
]
end
| winkelsdorf/homebrew-cask | Casks/onedrive.rb | Ruby | bsd-2-clause | 2,539 |
/*--------------------------------------------------------------------
* Symbols referenced in this file:
* - scanner_init
* - core_yylex_init
* - core_yyalloc
* - yy_init_globals
* - core_yyset_extra
* - backslash_quote
* - escape_string_warning
* - standard_conforming_strings
* - core_yy_scan_buffer
* - core_yy_switch_to_buffer
* - core_yyensure_buffer_stack
* - core_yyrealloc
* - core_yy_load_buffer_state
* - yy_fatal_error
* - fprintf_to_ereport
* - core_yylex
* - core_yy_create_buffer
* - core_yy_init_buffer
* - core_yy_flush_buffer
* - core_yyrestart
* - yy_start_state_list
* - yy_transition
* - addlitchar
* - litbufdup
* - addlit
* - litbuf_udeescape
* - hexval
* - check_unicode_value
* - check_uescapechar
* - check_escape_warning
* - is_utf16_surrogate_first
* - is_utf16_surrogate_second
* - addunicode
* - surrogate_pair_to_codepoint
* - check_string_escape_warning
* - unescape_single_char
* - process_integer_literal
* - yy_get_previous_state
* - yy_try_NUL_trans
* - yy_get_next_buffer
* - scanner_errposition
* - scanner_yyerror
* - scanner_finish
*--------------------------------------------------------------------
*/
#line 2 "scan.c"
#line 2 "scan.l"
/*-------------------------------------------------------------------------
*
* scan.l
* lexical scanner for PostgreSQL
*
* NOTE NOTE NOTE:
*
* The rules in this file must be kept in sync with src/fe_utils/psqlscan.l!
*
* The rules are designed so that the scanner never has to backtrack,
* in the sense that there is always a rule that can match the input
* consumed so far (the rule action may internally throw back some input
* with yyless(), however). As explained in the flex manual, this makes
* for a useful speed increase --- about a third faster than a plain -CF
* lexer, in simple testing. The extra complexity is mostly in the rules
* for handling float numbers and continued string literals. If you change
* the lexical rules, verify that you haven't broken the no-backtrack
* property by running flex with the "-b" option and checking that the
* resulting "lex.backup" file says that no backing up is needed. (As of
* Postgres 9.2, this check is made automatically by the Makefile.)
*
*
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/backend/parser/scan.l
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include <ctype.h>
#include <unistd.h>
#include "parser/gramparse.h"
#include "parser/parser.h" /* only needed for GUC variables */
#include "parser/scansup.h"
#include "mb/pg_wchar.h"
#line 46 "scan.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
typedef uint64_t flex_uint64_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)
#define YY_USE_CONST
#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* An opaque pointer. */
#ifndef YY_TYPEDEF_YY_SCANNER_T
#define YY_TYPEDEF_YY_SCANNER_T
typedef void* yyscan_t;
#endif
/* For convenience, these vars (plus the bison vars far below)
are macros in the reentrant scanner. */
#define yyin yyg->yyin_r
#define yyout yyg->yyout_r
#define yyextra yyg->yyextra_r
#define yyleng yyg->yyleng_r
#define yytext yyg->yytext_r
#define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
#define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
#define yy_flex_debug yyg->yy_flex_debug_r
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN yyg->yy_start = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START ((yyg->yy_start - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE core_yyrestart(yyin ,yyscanner )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = yyg->yy_hold_char; \
YY_RESTORE_YY_MORE_OFFSET \
yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
yy_size_t yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via core_yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \
? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top]
void core_yyrestart (FILE *input_file ,yyscan_t yyscanner );
void core_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
YY_BUFFER_STATE core_yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner );
void core_yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
void core_yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
void core_yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
void core_yypop_buffer_state (yyscan_t yyscanner );
static void core_yyensure_buffer_stack (yyscan_t yyscanner );
static void core_yy_load_buffer_state (yyscan_t yyscanner );
static void core_yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner );
#define YY_FLUSH_BUFFER core_yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner)
YY_BUFFER_STATE core_yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
YY_BUFFER_STATE core_yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
YY_BUFFER_STATE core_yy_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
void *core_yyalloc (yy_size_t ,yyscan_t yyscanner );
void *core_yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
void core_yyfree (void * ,yyscan_t yyscanner );
#define yy_new_buffer core_yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
core_yyensure_buffer_stack (yyscanner); \
YY_CURRENT_BUFFER_LVALUE = \
core_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
core_yyensure_buffer_stack (yyscanner); \
YY_CURRENT_BUFFER_LVALUE = \
core_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
#define core_yywrap(n) 1
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
typedef yyconst struct yy_trans_info *yy_state_type;
#define yytext_ptr yytext_r
static yy_state_type yy_get_previous_state (yyscan_t yyscanner );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner);
static int yy_get_next_buffer (yyscan_t yyscanner );
static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
yyg->yytext_ptr = yy_bp; \
yyleng = (yy_size_t) (yy_cp - yy_bp); \
yyg->yy_hold_char = *yy_cp; \
*yy_cp = '\0'; \
yyg->yy_c_buf_p = yy_cp;
#define YY_NUM_RULES 80
#define YY_END_OF_BUFFER 81
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst struct yy_trans_info yy_transition[37005] =
{
{ 0, 0 }, { 0,36749 }, { 0, 0 }, { 0,36747 }, { 1,6708 },
{ 2,6708 }, { 3,6708 }, { 4,6708 }, { 5,6708 }, { 6,6708 },
{ 7,6708 }, { 8,6708 }, { 9,6710 }, { 10,6715 }, { 11,6708 },
{ 12,6710 }, { 13,6710 }, { 14,6708 }, { 15,6708 }, { 16,6708 },
{ 17,6708 }, { 18,6708 }, { 19,6708 }, { 20,6708 }, { 21,6708 },
{ 22,6708 }, { 23,6708 }, { 24,6708 }, { 25,6708 }, { 26,6708 },
{ 27,6708 }, { 28,6708 }, { 29,6708 }, { 30,6708 }, { 31,6708 },
{ 32,6710 }, { 33,6717 }, { 34,6712 }, { 35,6757 }, { 36,6823 },
{ 37,7080 }, { 38,6757 }, { 39,6730 }, { 40,6732 }, { 41,6732 },
{ 42,7080 }, { 43,7080 }, { 44,6732 }, { 45,7091 }, { 46,7110 },
{ 47,7181 }, { 48,7183 }, { 49,7183 }, { 50,7183 }, { 51,7183 },
{ 52,7183 }, { 53,7183 }, { 54,7183 }, { 55,7183 }, { 56,7183 },
{ 57,7183 }, { 58,6735 }, { 59,6732 }, { 60,7248 }, { 61,7259 },
{ 62,7326 }, { 63,7080 }, { 64,6757 }, { 65,7358 }, { 66,7615 },
{ 67,7358 }, { 68,7358 }, { 69,7872 }, { 70,7358 }, { 71,7358 },
{ 72,7358 }, { 73,7358 }, { 74,7358 }, { 75,7358 }, { 76,7358 },
{ 77,7358 }, { 78,8129 }, { 79,7358 }, { 80,7358 }, { 81,7358 },
{ 82,7358 }, { 83,7358 }, { 84,7358 }, { 85,8386 }, { 86,7358 },
{ 87,7358 }, { 88,8643 }, { 89,7358 }, { 90,7358 }, { 91,6732 },
{ 92,6708 }, { 93,6732 }, { 94,7080 }, { 95,7358 }, { 96,6757 },
{ 97,7358 }, { 98,7615 }, { 99,7358 }, { 100,7358 }, { 101,7872 },
{ 102,7358 }, { 103,7358 }, { 104,7358 }, { 105,7358 }, { 106,7358 },
{ 107,7358 }, { 108,7358 }, { 109,7358 }, { 110,8129 }, { 111,7358 },
{ 112,7358 }, { 113,7358 }, { 114,7358 }, { 115,7358 }, { 116,7358 },
{ 117,8386 }, { 118,7358 }, { 119,7358 }, { 120,8643 }, { 121,7358 },
{ 122,7358 }, { 123,6708 }, { 124,6757 }, { 125,6708 }, { 126,6757 },
{ 127,6708 }, { 128,7358 }, { 129,7358 }, { 130,7358 }, { 131,7358 },
{ 132,7358 }, { 133,7358 }, { 134,7358 }, { 135,7358 }, { 136,7358 },
{ 137,7358 }, { 138,7358 }, { 139,7358 }, { 140,7358 }, { 141,7358 },
{ 142,7358 }, { 143,7358 }, { 144,7358 }, { 145,7358 }, { 146,7358 },
{ 147,7358 }, { 148,7358 }, { 149,7358 }, { 150,7358 }, { 151,7358 },
{ 152,7358 }, { 153,7358 }, { 154,7358 }, { 155,7358 }, { 156,7358 },
{ 157,7358 }, { 158,7358 }, { 159,7358 }, { 160,7358 }, { 161,7358 },
{ 162,7358 }, { 163,7358 }, { 164,7358 }, { 165,7358 }, { 166,7358 },
{ 167,7358 }, { 168,7358 }, { 169,7358 }, { 170,7358 }, { 171,7358 },
{ 172,7358 }, { 173,7358 }, { 174,7358 }, { 175,7358 }, { 176,7358 },
{ 177,7358 }, { 178,7358 }, { 179,7358 }, { 180,7358 }, { 181,7358 },
{ 182,7358 }, { 183,7358 }, { 184,7358 }, { 185,7358 }, { 186,7358 },
{ 187,7358 }, { 188,7358 }, { 189,7358 }, { 190,7358 }, { 191,7358 },
{ 192,7358 }, { 193,7358 }, { 194,7358 }, { 195,7358 }, { 196,7358 },
{ 197,7358 }, { 198,7358 }, { 199,7358 }, { 200,7358 }, { 201,7358 },
{ 202,7358 }, { 203,7358 }, { 204,7358 }, { 205,7358 }, { 206,7358 },
{ 207,7358 }, { 208,7358 }, { 209,7358 }, { 210,7358 }, { 211,7358 },
{ 212,7358 }, { 213,7358 }, { 214,7358 }, { 215,7358 }, { 216,7358 },
{ 217,7358 }, { 218,7358 }, { 219,7358 }, { 220,7358 }, { 221,7358 },
{ 222,7358 }, { 223,7358 }, { 224,7358 }, { 225,7358 }, { 226,7358 },
{ 227,7358 }, { 228,7358 }, { 229,7358 }, { 230,7358 }, { 231,7358 },
{ 232,7358 }, { 233,7358 }, { 234,7358 }, { 235,7358 }, { 236,7358 },
{ 237,7358 }, { 238,7358 }, { 239,7358 }, { 240,7358 }, { 241,7358 },
{ 242,7358 }, { 243,7358 }, { 244,7358 }, { 245,7358 }, { 246,7358 },
{ 247,7358 }, { 248,7358 }, { 249,7358 }, { 250,7358 }, { 251,7358 },
{ 252,7358 }, { 253,7358 }, { 254,7358 }, { 255,7358 }, { 256,6708 },
{ 0, 0 }, { 0,36489 }, { 1,6450 }, { 2,6450 }, { 3,6450 },
{ 4,6450 }, { 5,6450 }, { 6,6450 }, { 7,6450 }, { 8,6450 },
{ 9,6452 }, { 10,6457 }, { 11,6450 }, { 12,6452 }, { 13,6452 },
{ 14,6450 }, { 15,6450 }, { 16,6450 }, { 17,6450 }, { 18,6450 },
{ 19,6450 }, { 20,6450 }, { 21,6450 }, { 22,6450 }, { 23,6450 },
{ 24,6450 }, { 25,6450 }, { 26,6450 }, { 27,6450 }, { 28,6450 },
{ 29,6450 }, { 30,6450 }, { 31,6450 }, { 32,6452 }, { 33,6459 },
{ 34,6454 }, { 35,6499 }, { 36,6565 }, { 37,6822 }, { 38,6499 },
{ 39,6472 }, { 40,6474 }, { 41,6474 }, { 42,6822 }, { 43,6822 },
{ 44,6474 }, { 45,6833 }, { 46,6852 }, { 47,6923 }, { 48,6925 },
{ 49,6925 }, { 50,6925 }, { 51,6925 }, { 52,6925 }, { 53,6925 },
{ 54,6925 }, { 55,6925 }, { 56,6925 }, { 57,6925 }, { 58,6477 },
{ 59,6474 }, { 60,6990 }, { 61,7001 }, { 62,7068 }, { 63,6822 },
{ 64,6499 }, { 65,7100 }, { 66,7357 }, { 67,7100 }, { 68,7100 },
{ 69,7614 }, { 70,7100 }, { 71,7100 }, { 72,7100 }, { 73,7100 },
{ 74,7100 }, { 75,7100 }, { 76,7100 }, { 77,7100 }, { 78,7871 },
{ 79,7100 }, { 80,7100 }, { 81,7100 }, { 82,7100 }, { 83,7100 },
{ 84,7100 }, { 85,8128 }, { 86,7100 }, { 87,7100 }, { 88,8385 },
{ 89,7100 }, { 90,7100 }, { 91,6474 }, { 92,6450 }, { 93,6474 },
{ 94,6822 }, { 95,7100 }, { 96,6499 }, { 97,7100 }, { 98,7357 },
{ 99,7100 }, { 100,7100 }, { 101,7614 }, { 102,7100 }, { 103,7100 },
{ 104,7100 }, { 105,7100 }, { 106,7100 }, { 107,7100 }, { 108,7100 },
{ 109,7100 }, { 110,7871 }, { 111,7100 }, { 112,7100 }, { 113,7100 },
{ 114,7100 }, { 115,7100 }, { 116,7100 }, { 117,8128 }, { 118,7100 },
{ 119,7100 }, { 120,8385 }, { 121,7100 }, { 122,7100 }, { 123,6450 },
{ 124,6499 }, { 125,6450 }, { 126,6499 }, { 127,6450 }, { 128,7100 },
{ 129,7100 }, { 130,7100 }, { 131,7100 }, { 132,7100 }, { 133,7100 },
{ 134,7100 }, { 135,7100 }, { 136,7100 }, { 137,7100 }, { 138,7100 },
{ 139,7100 }, { 140,7100 }, { 141,7100 }, { 142,7100 }, { 143,7100 },
{ 144,7100 }, { 145,7100 }, { 146,7100 }, { 147,7100 }, { 148,7100 },
{ 149,7100 }, { 150,7100 }, { 151,7100 }, { 152,7100 }, { 153,7100 },
{ 154,7100 }, { 155,7100 }, { 156,7100 }, { 157,7100 }, { 158,7100 },
{ 159,7100 }, { 160,7100 }, { 161,7100 }, { 162,7100 }, { 163,7100 },
{ 164,7100 }, { 165,7100 }, { 166,7100 }, { 167,7100 }, { 168,7100 },
{ 169,7100 }, { 170,7100 }, { 171,7100 }, { 172,7100 }, { 173,7100 },
{ 174,7100 }, { 175,7100 }, { 176,7100 }, { 177,7100 }, { 178,7100 },
{ 179,7100 }, { 180,7100 }, { 181,7100 }, { 182,7100 }, { 183,7100 },
{ 184,7100 }, { 185,7100 }, { 186,7100 }, { 187,7100 }, { 188,7100 },
{ 189,7100 }, { 190,7100 }, { 191,7100 }, { 192,7100 }, { 193,7100 },
{ 194,7100 }, { 195,7100 }, { 196,7100 }, { 197,7100 }, { 198,7100 },
{ 199,7100 }, { 200,7100 }, { 201,7100 }, { 202,7100 }, { 203,7100 },
{ 204,7100 }, { 205,7100 }, { 206,7100 }, { 207,7100 }, { 208,7100 },
{ 209,7100 }, { 210,7100 }, { 211,7100 }, { 212,7100 }, { 213,7100 },
{ 214,7100 }, { 215,7100 }, { 216,7100 }, { 217,7100 }, { 218,7100 },
{ 219,7100 }, { 220,7100 }, { 221,7100 }, { 222,7100 }, { 223,7100 },
{ 224,7100 }, { 225,7100 }, { 226,7100 }, { 227,7100 }, { 228,7100 },
{ 229,7100 }, { 230,7100 }, { 231,7100 }, { 232,7100 }, { 233,7100 },
{ 234,7100 }, { 235,7100 }, { 236,7100 }, { 237,7100 }, { 238,7100 },
{ 239,7100 }, { 240,7100 }, { 241,7100 }, { 242,7100 }, { 243,7100 },
{ 244,7100 }, { 245,7100 }, { 246,7100 }, { 247,7100 }, { 248,7100 },
{ 249,7100 }, { 250,7100 }, { 251,7100 }, { 252,7100 }, { 253,7100 },
{ 254,7100 }, { 255,7100 }, { 256,6450 }, { 0, 12 }, { 0,36231 },
{ 1,8384 }, { 2,8384 }, { 3,8384 }, { 4,8384 }, { 5,8384 },
{ 6,8384 }, { 7,8384 }, { 8,8384 }, { 9,8384 }, { 10,8384 },
{ 11,8384 }, { 12,8384 }, { 13,8384 }, { 14,8384 }, { 15,8384 },
{ 16,8384 }, { 17,8384 }, { 18,8384 }, { 19,8384 }, { 20,8384 },
{ 21,8384 }, { 22,8384 }, { 23,8384 }, { 24,8384 }, { 25,8384 },
{ 26,8384 }, { 27,8384 }, { 28,8384 }, { 29,8384 }, { 30,8384 },
{ 31,8384 }, { 32,8384 }, { 33,8384 }, { 34,8384 }, { 35,8384 },
{ 36,8384 }, { 37,8384 }, { 38,8384 }, { 39,8642 }, { 40,8384 },
{ 41,8384 }, { 42,8384 }, { 43,8384 }, { 44,8384 }, { 45,8384 },
{ 46,8384 }, { 47,8384 }, { 48,8384 }, { 49,8384 }, { 50,8384 },
{ 51,8384 }, { 52,8384 }, { 53,8384 }, { 54,8384 }, { 55,8384 },
{ 56,8384 }, { 57,8384 }, { 58,8384 }, { 59,8384 }, { 60,8384 },
{ 61,8384 }, { 62,8384 }, { 63,8384 }, { 64,8384 }, { 65,8384 },
{ 66,8384 }, { 67,8384 }, { 68,8384 }, { 69,8384 }, { 70,8384 },
{ 71,8384 }, { 72,8384 }, { 73,8384 }, { 74,8384 }, { 75,8384 },
{ 76,8384 }, { 77,8384 }, { 78,8384 }, { 79,8384 }, { 80,8384 },
{ 81,8384 }, { 82,8384 }, { 83,8384 }, { 84,8384 }, { 85,8384 },
{ 86,8384 }, { 87,8384 }, { 88,8384 }, { 89,8384 }, { 90,8384 },
{ 91,8384 }, { 92,8384 }, { 93,8384 }, { 94,8384 }, { 95,8384 },
{ 96,8384 }, { 97,8384 }, { 98,8384 }, { 99,8384 }, { 100,8384 },
{ 101,8384 }, { 102,8384 }, { 103,8384 }, { 104,8384 }, { 105,8384 },
{ 106,8384 }, { 107,8384 }, { 108,8384 }, { 109,8384 }, { 110,8384 },
{ 111,8384 }, { 112,8384 }, { 113,8384 }, { 114,8384 }, { 115,8384 },
{ 116,8384 }, { 117,8384 }, { 118,8384 }, { 119,8384 }, { 120,8384 },
{ 121,8384 }, { 122,8384 }, { 123,8384 }, { 124,8384 }, { 125,8384 },
{ 126,8384 }, { 127,8384 }, { 128,8384 }, { 129,8384 }, { 130,8384 },
{ 131,8384 }, { 132,8384 }, { 133,8384 }, { 134,8384 }, { 135,8384 },
{ 136,8384 }, { 137,8384 }, { 138,8384 }, { 139,8384 }, { 140,8384 },
{ 141,8384 }, { 142,8384 }, { 143,8384 }, { 144,8384 }, { 145,8384 },
{ 146,8384 }, { 147,8384 }, { 148,8384 }, { 149,8384 }, { 150,8384 },
{ 151,8384 }, { 152,8384 }, { 153,8384 }, { 154,8384 }, { 155,8384 },
{ 156,8384 }, { 157,8384 }, { 158,8384 }, { 159,8384 }, { 160,8384 },
{ 161,8384 }, { 162,8384 }, { 163,8384 }, { 164,8384 }, { 165,8384 },
{ 166,8384 }, { 167,8384 }, { 168,8384 }, { 169,8384 }, { 170,8384 },
{ 171,8384 }, { 172,8384 }, { 173,8384 }, { 174,8384 }, { 175,8384 },
{ 176,8384 }, { 177,8384 }, { 178,8384 }, { 179,8384 }, { 180,8384 },
{ 181,8384 }, { 182,8384 }, { 183,8384 }, { 184,8384 }, { 185,8384 },
{ 186,8384 }, { 187,8384 }, { 188,8384 }, { 189,8384 }, { 190,8384 },
{ 191,8384 }, { 192,8384 }, { 193,8384 }, { 194,8384 }, { 195,8384 },
{ 196,8384 }, { 197,8384 }, { 198,8384 }, { 199,8384 }, { 200,8384 },
{ 201,8384 }, { 202,8384 }, { 203,8384 }, { 204,8384 }, { 205,8384 },
{ 206,8384 }, { 207,8384 }, { 208,8384 }, { 209,8384 }, { 210,8384 },
{ 211,8384 }, { 212,8384 }, { 213,8384 }, { 214,8384 }, { 215,8384 },
{ 216,8384 }, { 217,8384 }, { 218,8384 }, { 219,8384 }, { 220,8384 },
{ 221,8384 }, { 222,8384 }, { 223,8384 }, { 224,8384 }, { 225,8384 },
{ 226,8384 }, { 227,8384 }, { 228,8384 }, { 229,8384 }, { 230,8384 },
{ 231,8384 }, { 232,8384 }, { 233,8384 }, { 234,8384 }, { 235,8384 },
{ 236,8384 }, { 237,8384 }, { 238,8384 }, { 239,8384 }, { 240,8384 },
{ 241,8384 }, { 242,8384 }, { 243,8384 }, { 244,8384 }, { 245,8384 },
{ 246,8384 }, { 247,8384 }, { 248,8384 }, { 249,8384 }, { 250,8384 },
{ 251,8384 }, { 252,8384 }, { 253,8384 }, { 254,8384 }, { 255,8384 },
{ 256,8384 }, { 0, 12 }, { 0,35973 }, { 1,8126 }, { 2,8126 },
{ 3,8126 }, { 4,8126 }, { 5,8126 }, { 6,8126 }, { 7,8126 },
{ 8,8126 }, { 9,8126 }, { 10,8126 }, { 11,8126 }, { 12,8126 },
{ 13,8126 }, { 14,8126 }, { 15,8126 }, { 16,8126 }, { 17,8126 },
{ 18,8126 }, { 19,8126 }, { 20,8126 }, { 21,8126 }, { 22,8126 },
{ 23,8126 }, { 24,8126 }, { 25,8126 }, { 26,8126 }, { 27,8126 },
{ 28,8126 }, { 29,8126 }, { 30,8126 }, { 31,8126 }, { 32,8126 },
{ 33,8126 }, { 34,8126 }, { 35,8126 }, { 36,8126 }, { 37,8126 },
{ 38,8126 }, { 39,8384 }, { 40,8126 }, { 41,8126 }, { 42,8126 },
{ 43,8126 }, { 44,8126 }, { 45,8126 }, { 46,8126 }, { 47,8126 },
{ 48,8126 }, { 49,8126 }, { 50,8126 }, { 51,8126 }, { 52,8126 },
{ 53,8126 }, { 54,8126 }, { 55,8126 }, { 56,8126 }, { 57,8126 },
{ 58,8126 }, { 59,8126 }, { 60,8126 }, { 61,8126 }, { 62,8126 },
{ 63,8126 }, { 64,8126 }, { 65,8126 }, { 66,8126 }, { 67,8126 },
{ 68,8126 }, { 69,8126 }, { 70,8126 }, { 71,8126 }, { 72,8126 },
{ 73,8126 }, { 74,8126 }, { 75,8126 }, { 76,8126 }, { 77,8126 },
{ 78,8126 }, { 79,8126 }, { 80,8126 }, { 81,8126 }, { 82,8126 },
{ 83,8126 }, { 84,8126 }, { 85,8126 }, { 86,8126 }, { 87,8126 },
{ 88,8126 }, { 89,8126 }, { 90,8126 }, { 91,8126 }, { 92,8126 },
{ 93,8126 }, { 94,8126 }, { 95,8126 }, { 96,8126 }, { 97,8126 },
{ 98,8126 }, { 99,8126 }, { 100,8126 }, { 101,8126 }, { 102,8126 },
{ 103,8126 }, { 104,8126 }, { 105,8126 }, { 106,8126 }, { 107,8126 },
{ 108,8126 }, { 109,8126 }, { 110,8126 }, { 111,8126 }, { 112,8126 },
{ 113,8126 }, { 114,8126 }, { 115,8126 }, { 116,8126 }, { 117,8126 },
{ 118,8126 }, { 119,8126 }, { 120,8126 }, { 121,8126 }, { 122,8126 },
{ 123,8126 }, { 124,8126 }, { 125,8126 }, { 126,8126 }, { 127,8126 },
{ 128,8126 }, { 129,8126 }, { 130,8126 }, { 131,8126 }, { 132,8126 },
{ 133,8126 }, { 134,8126 }, { 135,8126 }, { 136,8126 }, { 137,8126 },
{ 138,8126 }, { 139,8126 }, { 140,8126 }, { 141,8126 }, { 142,8126 },
{ 143,8126 }, { 144,8126 }, { 145,8126 }, { 146,8126 }, { 147,8126 },
{ 148,8126 }, { 149,8126 }, { 150,8126 }, { 151,8126 }, { 152,8126 },
{ 153,8126 }, { 154,8126 }, { 155,8126 }, { 156,8126 }, { 157,8126 },
{ 158,8126 }, { 159,8126 }, { 160,8126 }, { 161,8126 }, { 162,8126 },
{ 163,8126 }, { 164,8126 }, { 165,8126 }, { 166,8126 }, { 167,8126 },
{ 168,8126 }, { 169,8126 }, { 170,8126 }, { 171,8126 }, { 172,8126 },
{ 173,8126 }, { 174,8126 }, { 175,8126 }, { 176,8126 }, { 177,8126 },
{ 178,8126 }, { 179,8126 }, { 180,8126 }, { 181,8126 }, { 182,8126 },
{ 183,8126 }, { 184,8126 }, { 185,8126 }, { 186,8126 }, { 187,8126 },
{ 188,8126 }, { 189,8126 }, { 190,8126 }, { 191,8126 }, { 192,8126 },
{ 193,8126 }, { 194,8126 }, { 195,8126 }, { 196,8126 }, { 197,8126 },
{ 198,8126 }, { 199,8126 }, { 200,8126 }, { 201,8126 }, { 202,8126 },
{ 203,8126 }, { 204,8126 }, { 205,8126 }, { 206,8126 }, { 207,8126 },
{ 208,8126 }, { 209,8126 }, { 210,8126 }, { 211,8126 }, { 212,8126 },
{ 213,8126 }, { 214,8126 }, { 215,8126 }, { 216,8126 }, { 217,8126 },
{ 218,8126 }, { 219,8126 }, { 220,8126 }, { 221,8126 }, { 222,8126 },
{ 223,8126 }, { 224,8126 }, { 225,8126 }, { 226,8126 }, { 227,8126 },
{ 228,8126 }, { 229,8126 }, { 230,8126 }, { 231,8126 }, { 232,8126 },
{ 233,8126 }, { 234,8126 }, { 235,8126 }, { 236,8126 }, { 237,8126 },
{ 238,8126 }, { 239,8126 }, { 240,8126 }, { 241,8126 }, { 242,8126 },
{ 243,8126 }, { 244,8126 }, { 245,8126 }, { 246,8126 }, { 247,8126 },
{ 248,8126 }, { 249,8126 }, { 250,8126 }, { 251,8126 }, { 252,8126 },
{ 253,8126 }, { 254,8126 }, { 255,8126 }, { 256,8126 }, { 0, 0 },
{ 0,35715 }, { 1,8173 }, { 2,8173 }, { 3,8173 }, { 4,8173 },
{ 5,8173 }, { 6,8173 }, { 7,8173 }, { 8,8173 }, { 9,8173 },
{ 10,8173 }, { 11,8173 }, { 12,8173 }, { 13,8173 }, { 14,8173 },
{ 15,8173 }, { 16,8173 }, { 17,8173 }, { 18,8173 }, { 19,8173 },
{ 20,8173 }, { 21,8173 }, { 22,8173 }, { 23,8173 }, { 24,8173 },
{ 25,8173 }, { 26,8173 }, { 27,8173 }, { 28,8173 }, { 29,8173 },
{ 30,8173 }, { 31,8173 }, { 32,8173 }, { 33,8431 }, { 34,8173 },
{ 35,8431 }, { 36,8173 }, { 37,8431 }, { 38,8431 }, { 39,8173 },
{ 40,8173 }, { 41,8173 }, { 42,5708 }, { 43,8431 }, { 44,8173 },
{ 45,8431 }, { 46,8173 }, { 47,5712 }, { 48,8173 }, { 49,8173 },
{ 50,8173 }, { 51,8173 }, { 52,8173 }, { 53,8173 }, { 54,8173 },
{ 55,8173 }, { 56,8173 }, { 57,8173 }, { 58,8173 }, { 59,8173 },
{ 60,8431 }, { 61,8431 }, { 62,8431 }, { 63,8431 }, { 64,8431 },
{ 65,8173 }, { 66,8173 }, { 67,8173 }, { 68,8173 }, { 69,8173 },
{ 70,8173 }, { 71,8173 }, { 72,8173 }, { 73,8173 }, { 74,8173 },
{ 75,8173 }, { 76,8173 }, { 77,8173 }, { 78,8173 }, { 79,8173 },
{ 80,8173 }, { 81,8173 }, { 82,8173 }, { 83,8173 }, { 84,8173 },
{ 85,8173 }, { 86,8173 }, { 87,8173 }, { 88,8173 }, { 89,8173 },
{ 90,8173 }, { 91,8173 }, { 92,8173 }, { 93,8173 }, { 94,8431 },
{ 95,8173 }, { 96,8431 }, { 97,8173 }, { 98,8173 }, { 99,8173 },
{ 100,8173 }, { 101,8173 }, { 102,8173 }, { 103,8173 }, { 104,8173 },
{ 105,8173 }, { 106,8173 }, { 107,8173 }, { 108,8173 }, { 109,8173 },
{ 110,8173 }, { 111,8173 }, { 112,8173 }, { 113,8173 }, { 114,8173 },
{ 115,8173 }, { 116,8173 }, { 117,8173 }, { 118,8173 }, { 119,8173 },
{ 120,8173 }, { 121,8173 }, { 122,8173 }, { 123,8173 }, { 124,8431 },
{ 125,8173 }, { 126,8431 }, { 127,8173 }, { 128,8173 }, { 129,8173 },
{ 130,8173 }, { 131,8173 }, { 132,8173 }, { 133,8173 }, { 134,8173 },
{ 135,8173 }, { 136,8173 }, { 137,8173 }, { 138,8173 }, { 139,8173 },
{ 140,8173 }, { 141,8173 }, { 142,8173 }, { 143,8173 }, { 144,8173 },
{ 145,8173 }, { 146,8173 }, { 147,8173 }, { 148,8173 }, { 149,8173 },
{ 150,8173 }, { 151,8173 }, { 152,8173 }, { 153,8173 }, { 154,8173 },
{ 155,8173 }, { 156,8173 }, { 157,8173 }, { 158,8173 }, { 159,8173 },
{ 160,8173 }, { 161,8173 }, { 162,8173 }, { 163,8173 }, { 164,8173 },
{ 165,8173 }, { 166,8173 }, { 167,8173 }, { 168,8173 }, { 169,8173 },
{ 170,8173 }, { 171,8173 }, { 172,8173 }, { 173,8173 }, { 174,8173 },
{ 175,8173 }, { 176,8173 }, { 177,8173 }, { 178,8173 }, { 179,8173 },
{ 180,8173 }, { 181,8173 }, { 182,8173 }, { 183,8173 }, { 184,8173 },
{ 185,8173 }, { 186,8173 }, { 187,8173 }, { 188,8173 }, { 189,8173 },
{ 190,8173 }, { 191,8173 }, { 192,8173 }, { 193,8173 }, { 194,8173 },
{ 195,8173 }, { 196,8173 }, { 197,8173 }, { 198,8173 }, { 199,8173 },
{ 200,8173 }, { 201,8173 }, { 202,8173 }, { 203,8173 }, { 204,8173 },
{ 205,8173 }, { 206,8173 }, { 207,8173 }, { 208,8173 }, { 209,8173 },
{ 210,8173 }, { 211,8173 }, { 212,8173 }, { 213,8173 }, { 214,8173 },
{ 215,8173 }, { 216,8173 }, { 217,8173 }, { 218,8173 }, { 219,8173 },
{ 220,8173 }, { 221,8173 }, { 222,8173 }, { 223,8173 }, { 224,8173 },
{ 225,8173 }, { 226,8173 }, { 227,8173 }, { 228,8173 }, { 229,8173 },
{ 230,8173 }, { 231,8173 }, { 232,8173 }, { 233,8173 }, { 234,8173 },
{ 235,8173 }, { 236,8173 }, { 237,8173 }, { 238,8173 }, { 239,8173 },
{ 240,8173 }, { 241,8173 }, { 242,8173 }, { 243,8173 }, { 244,8173 },
{ 245,8173 }, { 246,8173 }, { 247,8173 }, { 248,8173 }, { 249,8173 },
{ 250,8173 }, { 251,8173 }, { 252,8173 }, { 253,8173 }, { 254,8173 },
{ 255,8173 }, { 256,8173 }, { 0, 0 }, { 0,35457 }, { 1,7915 },
{ 2,7915 }, { 3,7915 }, { 4,7915 }, { 5,7915 }, { 6,7915 },
{ 7,7915 }, { 8,7915 }, { 9,7915 }, { 10,7915 }, { 11,7915 },
{ 12,7915 }, { 13,7915 }, { 14,7915 }, { 15,7915 }, { 16,7915 },
{ 17,7915 }, { 18,7915 }, { 19,7915 }, { 20,7915 }, { 21,7915 },
{ 22,7915 }, { 23,7915 }, { 24,7915 }, { 25,7915 }, { 26,7915 },
{ 27,7915 }, { 28,7915 }, { 29,7915 }, { 30,7915 }, { 31,7915 },
{ 32,7915 }, { 33,8173 }, { 34,7915 }, { 35,8173 }, { 36,7915 },
{ 37,8173 }, { 38,8173 }, { 39,7915 }, { 40,7915 }, { 41,7915 },
{ 42,5450 }, { 43,8173 }, { 44,7915 }, { 45,8173 }, { 46,7915 },
{ 47,5454 }, { 48,7915 }, { 49,7915 }, { 50,7915 }, { 51,7915 },
{ 52,7915 }, { 53,7915 }, { 54,7915 }, { 55,7915 }, { 56,7915 },
{ 57,7915 }, { 58,7915 }, { 59,7915 }, { 60,8173 }, { 61,8173 },
{ 62,8173 }, { 63,8173 }, { 64,8173 }, { 65,7915 }, { 66,7915 },
{ 67,7915 }, { 68,7915 }, { 69,7915 }, { 70,7915 }, { 71,7915 },
{ 72,7915 }, { 73,7915 }, { 74,7915 }, { 75,7915 }, { 76,7915 },
{ 77,7915 }, { 78,7915 }, { 79,7915 }, { 80,7915 }, { 81,7915 },
{ 82,7915 }, { 83,7915 }, { 84,7915 }, { 85,7915 }, { 86,7915 },
{ 87,7915 }, { 88,7915 }, { 89,7915 }, { 90,7915 }, { 91,7915 },
{ 92,7915 }, { 93,7915 }, { 94,8173 }, { 95,7915 }, { 96,8173 },
{ 97,7915 }, { 98,7915 }, { 99,7915 }, { 100,7915 }, { 101,7915 },
{ 102,7915 }, { 103,7915 }, { 104,7915 }, { 105,7915 }, { 106,7915 },
{ 107,7915 }, { 108,7915 }, { 109,7915 }, { 110,7915 }, { 111,7915 },
{ 112,7915 }, { 113,7915 }, { 114,7915 }, { 115,7915 }, { 116,7915 },
{ 117,7915 }, { 118,7915 }, { 119,7915 }, { 120,7915 }, { 121,7915 },
{ 122,7915 }, { 123,7915 }, { 124,8173 }, { 125,7915 }, { 126,8173 },
{ 127,7915 }, { 128,7915 }, { 129,7915 }, { 130,7915 }, { 131,7915 },
{ 132,7915 }, { 133,7915 }, { 134,7915 }, { 135,7915 }, { 136,7915 },
{ 137,7915 }, { 138,7915 }, { 139,7915 }, { 140,7915 }, { 141,7915 },
{ 142,7915 }, { 143,7915 }, { 144,7915 }, { 145,7915 }, { 146,7915 },
{ 147,7915 }, { 148,7915 }, { 149,7915 }, { 150,7915 }, { 151,7915 },
{ 152,7915 }, { 153,7915 }, { 154,7915 }, { 155,7915 }, { 156,7915 },
{ 157,7915 }, { 158,7915 }, { 159,7915 }, { 160,7915 }, { 161,7915 },
{ 162,7915 }, { 163,7915 }, { 164,7915 }, { 165,7915 }, { 166,7915 },
{ 167,7915 }, { 168,7915 }, { 169,7915 }, { 170,7915 }, { 171,7915 },
{ 172,7915 }, { 173,7915 }, { 174,7915 }, { 175,7915 }, { 176,7915 },
{ 177,7915 }, { 178,7915 }, { 179,7915 }, { 180,7915 }, { 181,7915 },
{ 182,7915 }, { 183,7915 }, { 184,7915 }, { 185,7915 }, { 186,7915 },
{ 187,7915 }, { 188,7915 }, { 189,7915 }, { 190,7915 }, { 191,7915 },
{ 192,7915 }, { 193,7915 }, { 194,7915 }, { 195,7915 }, { 196,7915 },
{ 197,7915 }, { 198,7915 }, { 199,7915 }, { 200,7915 }, { 201,7915 },
{ 202,7915 }, { 203,7915 }, { 204,7915 }, { 205,7915 }, { 206,7915 },
{ 207,7915 }, { 208,7915 }, { 209,7915 }, { 210,7915 }, { 211,7915 },
{ 212,7915 }, { 213,7915 }, { 214,7915 }, { 215,7915 }, { 216,7915 },
{ 217,7915 }, { 218,7915 }, { 219,7915 }, { 220,7915 }, { 221,7915 },
{ 222,7915 }, { 223,7915 }, { 224,7915 }, { 225,7915 }, { 226,7915 },
{ 227,7915 }, { 228,7915 }, { 229,7915 }, { 230,7915 }, { 231,7915 },
{ 232,7915 }, { 233,7915 }, { 234,7915 }, { 235,7915 }, { 236,7915 },
{ 237,7915 }, { 238,7915 }, { 239,7915 }, { 240,7915 }, { 241,7915 },
{ 242,7915 }, { 243,7915 }, { 244,7915 }, { 245,7915 }, { 246,7915 },
{ 247,7915 }, { 248,7915 }, { 249,7915 }, { 250,7915 }, { 251,7915 },
{ 252,7915 }, { 253,7915 }, { 254,7915 }, { 255,7915 }, { 256,7915 },
{ 0, 0 }, { 0,35199 }, { 1,8173 }, { 2,8173 }, { 3,8173 },
{ 4,8173 }, { 5,8173 }, { 6,8173 }, { 7,8173 }, { 8,8173 },
{ 9,8173 }, { 10,8173 }, { 11,8173 }, { 12,8173 }, { 13,8173 },
{ 14,8173 }, { 15,8173 }, { 16,8173 }, { 17,8173 }, { 18,8173 },
{ 19,8173 }, { 20,8173 }, { 21,8173 }, { 22,8173 }, { 23,8173 },
{ 24,8173 }, { 25,8173 }, { 26,8173 }, { 27,8173 }, { 28,8173 },
{ 29,8173 }, { 30,8173 }, { 31,8173 }, { 32,8173 }, { 33,8173 },
{ 34,5201 }, { 35,8173 }, { 36,8173 }, { 37,8173 }, { 38,8173 },
{ 39,8173 }, { 40,8173 }, { 41,8173 }, { 42,8173 }, { 43,8173 },
{ 44,8173 }, { 45,8173 }, { 46,8173 }, { 47,8173 }, { 48,8173 },
{ 49,8173 }, { 50,8173 }, { 51,8173 }, { 52,8173 }, { 53,8173 },
{ 54,8173 }, { 55,8173 }, { 56,8173 }, { 57,8173 }, { 58,8173 },
{ 59,8173 }, { 60,8173 }, { 61,8173 }, { 62,8173 }, { 63,8173 },
{ 64,8173 }, { 65,8173 }, { 66,8173 }, { 67,8173 }, { 68,8173 },
{ 69,8173 }, { 70,8173 }, { 71,8173 }, { 72,8173 }, { 73,8173 },
{ 74,8173 }, { 75,8173 }, { 76,8173 }, { 77,8173 }, { 78,8173 },
{ 79,8173 }, { 80,8173 }, { 81,8173 }, { 82,8173 }, { 83,8173 },
{ 84,8173 }, { 85,8173 }, { 86,8173 }, { 87,8173 }, { 88,8173 },
{ 89,8173 }, { 90,8173 }, { 91,8173 }, { 92,8173 }, { 93,8173 },
{ 94,8173 }, { 95,8173 }, { 96,8173 }, { 97,8173 }, { 98,8173 },
{ 99,8173 }, { 100,8173 }, { 101,8173 }, { 102,8173 }, { 103,8173 },
{ 104,8173 }, { 105,8173 }, { 106,8173 }, { 107,8173 }, { 108,8173 },
{ 109,8173 }, { 110,8173 }, { 111,8173 }, { 112,8173 }, { 113,8173 },
{ 114,8173 }, { 115,8173 }, { 116,8173 }, { 117,8173 }, { 118,8173 },
{ 119,8173 }, { 120,8173 }, { 121,8173 }, { 122,8173 }, { 123,8173 },
{ 124,8173 }, { 125,8173 }, { 126,8173 }, { 127,8173 }, { 128,8173 },
{ 129,8173 }, { 130,8173 }, { 131,8173 }, { 132,8173 }, { 133,8173 },
{ 134,8173 }, { 135,8173 }, { 136,8173 }, { 137,8173 }, { 138,8173 },
{ 139,8173 }, { 140,8173 }, { 141,8173 }, { 142,8173 }, { 143,8173 },
{ 144,8173 }, { 145,8173 }, { 146,8173 }, { 147,8173 }, { 148,8173 },
{ 149,8173 }, { 150,8173 }, { 151,8173 }, { 152,8173 }, { 153,8173 },
{ 154,8173 }, { 155,8173 }, { 156,8173 }, { 157,8173 }, { 158,8173 },
{ 159,8173 }, { 160,8173 }, { 161,8173 }, { 162,8173 }, { 163,8173 },
{ 164,8173 }, { 165,8173 }, { 166,8173 }, { 167,8173 }, { 168,8173 },
{ 169,8173 }, { 170,8173 }, { 171,8173 }, { 172,8173 }, { 173,8173 },
{ 174,8173 }, { 175,8173 }, { 176,8173 }, { 177,8173 }, { 178,8173 },
{ 179,8173 }, { 180,8173 }, { 181,8173 }, { 182,8173 }, { 183,8173 },
{ 184,8173 }, { 185,8173 }, { 186,8173 }, { 187,8173 }, { 188,8173 },
{ 189,8173 }, { 190,8173 }, { 191,8173 }, { 192,8173 }, { 193,8173 },
{ 194,8173 }, { 195,8173 }, { 196,8173 }, { 197,8173 }, { 198,8173 },
{ 199,8173 }, { 200,8173 }, { 201,8173 }, { 202,8173 }, { 203,8173 },
{ 204,8173 }, { 205,8173 }, { 206,8173 }, { 207,8173 }, { 208,8173 },
{ 209,8173 }, { 210,8173 }, { 211,8173 }, { 212,8173 }, { 213,8173 },
{ 214,8173 }, { 215,8173 }, { 216,8173 }, { 217,8173 }, { 218,8173 },
{ 219,8173 }, { 220,8173 }, { 221,8173 }, { 222,8173 }, { 223,8173 },
{ 224,8173 }, { 225,8173 }, { 226,8173 }, { 227,8173 }, { 228,8173 },
{ 229,8173 }, { 230,8173 }, { 231,8173 }, { 232,8173 }, { 233,8173 },
{ 234,8173 }, { 235,8173 }, { 236,8173 }, { 237,8173 }, { 238,8173 },
{ 239,8173 }, { 240,8173 }, { 241,8173 }, { 242,8173 }, { 243,8173 },
{ 244,8173 }, { 245,8173 }, { 246,8173 }, { 247,8173 }, { 248,8173 },
{ 249,8173 }, { 250,8173 }, { 251,8173 }, { 252,8173 }, { 253,8173 },
{ 254,8173 }, { 255,8173 }, { 256,8173 }, { 0, 0 }, { 0,34941 },
{ 1,7915 }, { 2,7915 }, { 3,7915 }, { 4,7915 }, { 5,7915 },
{ 6,7915 }, { 7,7915 }, { 8,7915 }, { 9,7915 }, { 10,7915 },
{ 11,7915 }, { 12,7915 }, { 13,7915 }, { 14,7915 }, { 15,7915 },
{ 16,7915 }, { 17,7915 }, { 18,7915 }, { 19,7915 }, { 20,7915 },
{ 21,7915 }, { 22,7915 }, { 23,7915 }, { 24,7915 }, { 25,7915 },
{ 26,7915 }, { 27,7915 }, { 28,7915 }, { 29,7915 }, { 30,7915 },
{ 31,7915 }, { 32,7915 }, { 33,7915 }, { 34,4943 }, { 35,7915 },
{ 36,7915 }, { 37,7915 }, { 38,7915 }, { 39,7915 }, { 40,7915 },
{ 41,7915 }, { 42,7915 }, { 43,7915 }, { 44,7915 }, { 45,7915 },
{ 46,7915 }, { 47,7915 }, { 48,7915 }, { 49,7915 }, { 50,7915 },
{ 51,7915 }, { 52,7915 }, { 53,7915 }, { 54,7915 }, { 55,7915 },
{ 56,7915 }, { 57,7915 }, { 58,7915 }, { 59,7915 }, { 60,7915 },
{ 61,7915 }, { 62,7915 }, { 63,7915 }, { 64,7915 }, { 65,7915 },
{ 66,7915 }, { 67,7915 }, { 68,7915 }, { 69,7915 }, { 70,7915 },
{ 71,7915 }, { 72,7915 }, { 73,7915 }, { 74,7915 }, { 75,7915 },
{ 76,7915 }, { 77,7915 }, { 78,7915 }, { 79,7915 }, { 80,7915 },
{ 81,7915 }, { 82,7915 }, { 83,7915 }, { 84,7915 }, { 85,7915 },
{ 86,7915 }, { 87,7915 }, { 88,7915 }, { 89,7915 }, { 90,7915 },
{ 91,7915 }, { 92,7915 }, { 93,7915 }, { 94,7915 }, { 95,7915 },
{ 96,7915 }, { 97,7915 }, { 98,7915 }, { 99,7915 }, { 100,7915 },
{ 101,7915 }, { 102,7915 }, { 103,7915 }, { 104,7915 }, { 105,7915 },
{ 106,7915 }, { 107,7915 }, { 108,7915 }, { 109,7915 }, { 110,7915 },
{ 111,7915 }, { 112,7915 }, { 113,7915 }, { 114,7915 }, { 115,7915 },
{ 116,7915 }, { 117,7915 }, { 118,7915 }, { 119,7915 }, { 120,7915 },
{ 121,7915 }, { 122,7915 }, { 123,7915 }, { 124,7915 }, { 125,7915 },
{ 126,7915 }, { 127,7915 }, { 128,7915 }, { 129,7915 }, { 130,7915 },
{ 131,7915 }, { 132,7915 }, { 133,7915 }, { 134,7915 }, { 135,7915 },
{ 136,7915 }, { 137,7915 }, { 138,7915 }, { 139,7915 }, { 140,7915 },
{ 141,7915 }, { 142,7915 }, { 143,7915 }, { 144,7915 }, { 145,7915 },
{ 146,7915 }, { 147,7915 }, { 148,7915 }, { 149,7915 }, { 150,7915 },
{ 151,7915 }, { 152,7915 }, { 153,7915 }, { 154,7915 }, { 155,7915 },
{ 156,7915 }, { 157,7915 }, { 158,7915 }, { 159,7915 }, { 160,7915 },
{ 161,7915 }, { 162,7915 }, { 163,7915 }, { 164,7915 }, { 165,7915 },
{ 166,7915 }, { 167,7915 }, { 168,7915 }, { 169,7915 }, { 170,7915 },
{ 171,7915 }, { 172,7915 }, { 173,7915 }, { 174,7915 }, { 175,7915 },
{ 176,7915 }, { 177,7915 }, { 178,7915 }, { 179,7915 }, { 180,7915 },
{ 181,7915 }, { 182,7915 }, { 183,7915 }, { 184,7915 }, { 185,7915 },
{ 186,7915 }, { 187,7915 }, { 188,7915 }, { 189,7915 }, { 190,7915 },
{ 191,7915 }, { 192,7915 }, { 193,7915 }, { 194,7915 }, { 195,7915 },
{ 196,7915 }, { 197,7915 }, { 198,7915 }, { 199,7915 }, { 200,7915 },
{ 201,7915 }, { 202,7915 }, { 203,7915 }, { 204,7915 }, { 205,7915 },
{ 206,7915 }, { 207,7915 }, { 208,7915 }, { 209,7915 }, { 210,7915 },
{ 211,7915 }, { 212,7915 }, { 213,7915 }, { 214,7915 }, { 215,7915 },
{ 216,7915 }, { 217,7915 }, { 218,7915 }, { 219,7915 }, { 220,7915 },
{ 221,7915 }, { 222,7915 }, { 223,7915 }, { 224,7915 }, { 225,7915 },
{ 226,7915 }, { 227,7915 }, { 228,7915 }, { 229,7915 }, { 230,7915 },
{ 231,7915 }, { 232,7915 }, { 233,7915 }, { 234,7915 }, { 235,7915 },
{ 236,7915 }, { 237,7915 }, { 238,7915 }, { 239,7915 }, { 240,7915 },
{ 241,7915 }, { 242,7915 }, { 243,7915 }, { 244,7915 }, { 245,7915 },
{ 246,7915 }, { 247,7915 }, { 248,7915 }, { 249,7915 }, { 250,7915 },
{ 251,7915 }, { 252,7915 }, { 253,7915 }, { 254,7915 }, { 255,7915 },
{ 256,7915 }, { 0, 11 }, { 0,34683 }, { 1,7915 }, { 2,7915 },
{ 3,7915 }, { 4,7915 }, { 5,7915 }, { 6,7915 }, { 7,7915 },
{ 8,7915 }, { 9,7915 }, { 10,7915 }, { 11,7915 }, { 12,7915 },
{ 13,7915 }, { 14,7915 }, { 15,7915 }, { 16,7915 }, { 17,7915 },
{ 18,7915 }, { 19,7915 }, { 20,7915 }, { 21,7915 }, { 22,7915 },
{ 23,7915 }, { 24,7915 }, { 25,7915 }, { 26,7915 }, { 27,7915 },
{ 28,7915 }, { 29,7915 }, { 30,7915 }, { 31,7915 }, { 32,7915 },
{ 33,7915 }, { 34,7915 }, { 35,7915 }, { 36,7915 }, { 37,7915 },
{ 38,7915 }, { 39,8173 }, { 40,7915 }, { 41,7915 }, { 42,7915 },
{ 43,7915 }, { 44,7915 }, { 45,7915 }, { 46,7915 }, { 47,7915 },
{ 48,7915 }, { 49,7915 }, { 50,7915 }, { 51,7915 }, { 52,7915 },
{ 53,7915 }, { 54,7915 }, { 55,7915 }, { 56,7915 }, { 57,7915 },
{ 58,7915 }, { 59,7915 }, { 60,7915 }, { 61,7915 }, { 62,7915 },
{ 63,7915 }, { 64,7915 }, { 65,7915 }, { 66,7915 }, { 67,7915 },
{ 68,7915 }, { 69,7915 }, { 70,7915 }, { 71,7915 }, { 72,7915 },
{ 73,7915 }, { 74,7915 }, { 75,7915 }, { 76,7915 }, { 77,7915 },
{ 78,7915 }, { 79,7915 }, { 80,7915 }, { 81,7915 }, { 82,7915 },
{ 83,7915 }, { 84,7915 }, { 85,7915 }, { 86,7915 }, { 87,7915 },
{ 88,7915 }, { 89,7915 }, { 90,7915 }, { 91,7915 }, { 92,7915 },
{ 93,7915 }, { 94,7915 }, { 95,7915 }, { 96,7915 }, { 97,7915 },
{ 98,7915 }, { 99,7915 }, { 100,7915 }, { 101,7915 }, { 102,7915 },
{ 103,7915 }, { 104,7915 }, { 105,7915 }, { 106,7915 }, { 107,7915 },
{ 108,7915 }, { 109,7915 }, { 110,7915 }, { 111,7915 }, { 112,7915 },
{ 113,7915 }, { 114,7915 }, { 115,7915 }, { 116,7915 }, { 117,7915 },
{ 118,7915 }, { 119,7915 }, { 120,7915 }, { 121,7915 }, { 122,7915 },
{ 123,7915 }, { 124,7915 }, { 125,7915 }, { 126,7915 }, { 127,7915 },
{ 128,7915 }, { 129,7915 }, { 130,7915 }, { 131,7915 }, { 132,7915 },
{ 133,7915 }, { 134,7915 }, { 135,7915 }, { 136,7915 }, { 137,7915 },
{ 138,7915 }, { 139,7915 }, { 140,7915 }, { 141,7915 }, { 142,7915 },
{ 143,7915 }, { 144,7915 }, { 145,7915 }, { 146,7915 }, { 147,7915 },
{ 148,7915 }, { 149,7915 }, { 150,7915 }, { 151,7915 }, { 152,7915 },
{ 153,7915 }, { 154,7915 }, { 155,7915 }, { 156,7915 }, { 157,7915 },
{ 158,7915 }, { 159,7915 }, { 160,7915 }, { 161,7915 }, { 162,7915 },
{ 163,7915 }, { 164,7915 }, { 165,7915 }, { 166,7915 }, { 167,7915 },
{ 168,7915 }, { 169,7915 }, { 170,7915 }, { 171,7915 }, { 172,7915 },
{ 173,7915 }, { 174,7915 }, { 175,7915 }, { 176,7915 }, { 177,7915 },
{ 178,7915 }, { 179,7915 }, { 180,7915 }, { 181,7915 }, { 182,7915 },
{ 183,7915 }, { 184,7915 }, { 185,7915 }, { 186,7915 }, { 187,7915 },
{ 188,7915 }, { 189,7915 }, { 190,7915 }, { 191,7915 }, { 192,7915 },
{ 193,7915 }, { 194,7915 }, { 195,7915 }, { 196,7915 }, { 197,7915 },
{ 198,7915 }, { 199,7915 }, { 200,7915 }, { 201,7915 }, { 202,7915 },
{ 203,7915 }, { 204,7915 }, { 205,7915 }, { 206,7915 }, { 207,7915 },
{ 208,7915 }, { 209,7915 }, { 210,7915 }, { 211,7915 }, { 212,7915 },
{ 213,7915 }, { 214,7915 }, { 215,7915 }, { 216,7915 }, { 217,7915 },
{ 218,7915 }, { 219,7915 }, { 220,7915 }, { 221,7915 }, { 222,7915 },
{ 223,7915 }, { 224,7915 }, { 225,7915 }, { 226,7915 }, { 227,7915 },
{ 228,7915 }, { 229,7915 }, { 230,7915 }, { 231,7915 }, { 232,7915 },
{ 233,7915 }, { 234,7915 }, { 235,7915 }, { 236,7915 }, { 237,7915 },
{ 238,7915 }, { 239,7915 }, { 240,7915 }, { 241,7915 }, { 242,7915 },
{ 243,7915 }, { 244,7915 }, { 245,7915 }, { 246,7915 }, { 247,7915 },
{ 248,7915 }, { 249,7915 }, { 250,7915 }, { 251,7915 }, { 252,7915 },
{ 253,7915 }, { 254,7915 }, { 255,7915 }, { 256,7915 }, { 0, 11 },
{ 0,34425 }, { 1,7657 }, { 2,7657 }, { 3,7657 }, { 4,7657 },
{ 5,7657 }, { 6,7657 }, { 7,7657 }, { 8,7657 }, { 9,7657 },
{ 10,7657 }, { 11,7657 }, { 12,7657 }, { 13,7657 }, { 14,7657 },
{ 15,7657 }, { 16,7657 }, { 17,7657 }, { 18,7657 }, { 19,7657 },
{ 20,7657 }, { 21,7657 }, { 22,7657 }, { 23,7657 }, { 24,7657 },
{ 25,7657 }, { 26,7657 }, { 27,7657 }, { 28,7657 }, { 29,7657 },
{ 30,7657 }, { 31,7657 }, { 32,7657 }, { 33,7657 }, { 34,7657 },
{ 35,7657 }, { 36,7657 }, { 37,7657 }, { 38,7657 }, { 39,7915 },
{ 40,7657 }, { 41,7657 }, { 42,7657 }, { 43,7657 }, { 44,7657 },
{ 45,7657 }, { 46,7657 }, { 47,7657 }, { 48,7657 }, { 49,7657 },
{ 50,7657 }, { 51,7657 }, { 52,7657 }, { 53,7657 }, { 54,7657 },
{ 55,7657 }, { 56,7657 }, { 57,7657 }, { 58,7657 }, { 59,7657 },
{ 60,7657 }, { 61,7657 }, { 62,7657 }, { 63,7657 }, { 64,7657 },
{ 65,7657 }, { 66,7657 }, { 67,7657 }, { 68,7657 }, { 69,7657 },
{ 70,7657 }, { 71,7657 }, { 72,7657 }, { 73,7657 }, { 74,7657 },
{ 75,7657 }, { 76,7657 }, { 77,7657 }, { 78,7657 }, { 79,7657 },
{ 80,7657 }, { 81,7657 }, { 82,7657 }, { 83,7657 }, { 84,7657 },
{ 85,7657 }, { 86,7657 }, { 87,7657 }, { 88,7657 }, { 89,7657 },
{ 90,7657 }, { 91,7657 }, { 92,7657 }, { 93,7657 }, { 94,7657 },
{ 95,7657 }, { 96,7657 }, { 97,7657 }, { 98,7657 }, { 99,7657 },
{ 100,7657 }, { 101,7657 }, { 102,7657 }, { 103,7657 }, { 104,7657 },
{ 105,7657 }, { 106,7657 }, { 107,7657 }, { 108,7657 }, { 109,7657 },
{ 110,7657 }, { 111,7657 }, { 112,7657 }, { 113,7657 }, { 114,7657 },
{ 115,7657 }, { 116,7657 }, { 117,7657 }, { 118,7657 }, { 119,7657 },
{ 120,7657 }, { 121,7657 }, { 122,7657 }, { 123,7657 }, { 124,7657 },
{ 125,7657 }, { 126,7657 }, { 127,7657 }, { 128,7657 }, { 129,7657 },
{ 130,7657 }, { 131,7657 }, { 132,7657 }, { 133,7657 }, { 134,7657 },
{ 135,7657 }, { 136,7657 }, { 137,7657 }, { 138,7657 }, { 139,7657 },
{ 140,7657 }, { 141,7657 }, { 142,7657 }, { 143,7657 }, { 144,7657 },
{ 145,7657 }, { 146,7657 }, { 147,7657 }, { 148,7657 }, { 149,7657 },
{ 150,7657 }, { 151,7657 }, { 152,7657 }, { 153,7657 }, { 154,7657 },
{ 155,7657 }, { 156,7657 }, { 157,7657 }, { 158,7657 }, { 159,7657 },
{ 160,7657 }, { 161,7657 }, { 162,7657 }, { 163,7657 }, { 164,7657 },
{ 165,7657 }, { 166,7657 }, { 167,7657 }, { 168,7657 }, { 169,7657 },
{ 170,7657 }, { 171,7657 }, { 172,7657 }, { 173,7657 }, { 174,7657 },
{ 175,7657 }, { 176,7657 }, { 177,7657 }, { 178,7657 }, { 179,7657 },
{ 180,7657 }, { 181,7657 }, { 182,7657 }, { 183,7657 }, { 184,7657 },
{ 185,7657 }, { 186,7657 }, { 187,7657 }, { 188,7657 }, { 189,7657 },
{ 190,7657 }, { 191,7657 }, { 192,7657 }, { 193,7657 }, { 194,7657 },
{ 195,7657 }, { 196,7657 }, { 197,7657 }, { 198,7657 }, { 199,7657 },
{ 200,7657 }, { 201,7657 }, { 202,7657 }, { 203,7657 }, { 204,7657 },
{ 205,7657 }, { 206,7657 }, { 207,7657 }, { 208,7657 }, { 209,7657 },
{ 210,7657 }, { 211,7657 }, { 212,7657 }, { 213,7657 }, { 214,7657 },
{ 215,7657 }, { 216,7657 }, { 217,7657 }, { 218,7657 }, { 219,7657 },
{ 220,7657 }, { 221,7657 }, { 222,7657 }, { 223,7657 }, { 224,7657 },
{ 225,7657 }, { 226,7657 }, { 227,7657 }, { 228,7657 }, { 229,7657 },
{ 230,7657 }, { 231,7657 }, { 232,7657 }, { 233,7657 }, { 234,7657 },
{ 235,7657 }, { 236,7657 }, { 237,7657 }, { 238,7657 }, { 239,7657 },
{ 240,7657 }, { 241,7657 }, { 242,7657 }, { 243,7657 }, { 244,7657 },
{ 245,7657 }, { 246,7657 }, { 247,7657 }, { 248,7657 }, { 249,7657 },
{ 250,7657 }, { 251,7657 }, { 252,7657 }, { 253,7657 }, { 254,7657 },
{ 255,7657 }, { 256,7657 }, { 0, 0 }, { 0,34167 }, { 1,7704 },
{ 2,7704 }, { 3,7704 }, { 4,7704 }, { 5,7704 }, { 6,7704 },
{ 7,7704 }, { 8,7704 }, { 9,7704 }, { 10,7962 }, { 11,7704 },
{ 12,7704 }, { 13,7704 }, { 14,7704 }, { 15,7704 }, { 16,7704 },
{ 17,7704 }, { 18,7704 }, { 19,7704 }, { 20,7704 }, { 21,7704 },
{ 22,7704 }, { 23,7704 }, { 24,7704 }, { 25,7704 }, { 26,7704 },
{ 27,7704 }, { 28,7704 }, { 29,7704 }, { 30,7704 }, { 31,7704 },
{ 32,7704 }, { 33,7704 }, { 34,7704 }, { 35,7704 }, { 36,7704 },
{ 37,7704 }, { 38,7704 }, { 39,8220 }, { 40,7704 }, { 41,7704 },
{ 42,7704 }, { 43,7704 }, { 44,7704 }, { 45,7704 }, { 46,7704 },
{ 47,7704 }, { 48,7704 }, { 49,7704 }, { 50,7704 }, { 51,7704 },
{ 52,7704 }, { 53,7704 }, { 54,7704 }, { 55,7704 }, { 56,7704 },
{ 57,7704 }, { 58,7704 }, { 59,7704 }, { 60,7704 }, { 61,7704 },
{ 62,7704 }, { 63,7704 }, { 64,7704 }, { 65,7704 }, { 66,7704 },
{ 67,7704 }, { 68,7704 }, { 69,7704 }, { 70,7704 }, { 71,7704 },
{ 72,7704 }, { 73,7704 }, { 74,7704 }, { 75,7704 }, { 76,7704 },
{ 77,7704 }, { 78,7704 }, { 79,7704 }, { 80,7704 }, { 81,7704 },
{ 82,7704 }, { 83,7704 }, { 84,7704 }, { 85,7704 }, { 86,7704 },
{ 87,7704 }, { 88,7704 }, { 89,7704 }, { 90,7704 }, { 91,7704 },
{ 92,8267 }, { 93,7704 }, { 94,7704 }, { 95,7704 }, { 96,7704 },
{ 97,7704 }, { 98,7704 }, { 99,7704 }, { 100,7704 }, { 101,7704 },
{ 102,7704 }, { 103,7704 }, { 104,7704 }, { 105,7704 }, { 106,7704 },
{ 107,7704 }, { 108,7704 }, { 109,7704 }, { 110,7704 }, { 111,7704 },
{ 112,7704 }, { 113,7704 }, { 114,7704 }, { 115,7704 }, { 116,7704 },
{ 117,7704 }, { 118,7704 }, { 119,7704 }, { 120,7704 }, { 121,7704 },
{ 122,7704 }, { 123,7704 }, { 124,7704 }, { 125,7704 }, { 126,7704 },
{ 127,7704 }, { 128,7704 }, { 129,7704 }, { 130,7704 }, { 131,7704 },
{ 132,7704 }, { 133,7704 }, { 134,7704 }, { 135,7704 }, { 136,7704 },
{ 137,7704 }, { 138,7704 }, { 139,7704 }, { 140,7704 }, { 141,7704 },
{ 142,7704 }, { 143,7704 }, { 144,7704 }, { 145,7704 }, { 146,7704 },
{ 147,7704 }, { 148,7704 }, { 149,7704 }, { 150,7704 }, { 151,7704 },
{ 152,7704 }, { 153,7704 }, { 154,7704 }, { 155,7704 }, { 156,7704 },
{ 157,7704 }, { 158,7704 }, { 159,7704 }, { 160,7704 }, { 161,7704 },
{ 162,7704 }, { 163,7704 }, { 164,7704 }, { 165,7704 }, { 166,7704 },
{ 167,7704 }, { 168,7704 }, { 169,7704 }, { 170,7704 }, { 171,7704 },
{ 172,7704 }, { 173,7704 }, { 174,7704 }, { 175,7704 }, { 176,7704 },
{ 177,7704 }, { 178,7704 }, { 179,7704 }, { 180,7704 }, { 181,7704 },
{ 182,7704 }, { 183,7704 }, { 184,7704 }, { 185,7704 }, { 186,7704 },
{ 187,7704 }, { 188,7704 }, { 189,7704 }, { 190,7704 }, { 191,7704 },
{ 192,7704 }, { 193,7704 }, { 194,7704 }, { 195,7704 }, { 196,7704 },
{ 197,7704 }, { 198,7704 }, { 199,7704 }, { 200,7704 }, { 201,7704 },
{ 202,7704 }, { 203,7704 }, { 204,7704 }, { 205,7704 }, { 206,7704 },
{ 207,7704 }, { 208,7704 }, { 209,7704 }, { 210,7704 }, { 211,7704 },
{ 212,7704 }, { 213,7704 }, { 214,7704 }, { 215,7704 }, { 216,7704 },
{ 217,7704 }, { 218,7704 }, { 219,7704 }, { 220,7704 }, { 221,7704 },
{ 222,7704 }, { 223,7704 }, { 224,7704 }, { 225,7704 }, { 226,7704 },
{ 227,7704 }, { 228,7704 }, { 229,7704 }, { 230,7704 }, { 231,7704 },
{ 232,7704 }, { 233,7704 }, { 234,7704 }, { 235,7704 }, { 236,7704 },
{ 237,7704 }, { 238,7704 }, { 239,7704 }, { 240,7704 }, { 241,7704 },
{ 242,7704 }, { 243,7704 }, { 244,7704 }, { 245,7704 }, { 246,7704 },
{ 247,7704 }, { 248,7704 }, { 249,7704 }, { 250,7704 }, { 251,7704 },
{ 252,7704 }, { 253,7704 }, { 254,7704 }, { 255,7704 }, { 256,7704 },
{ 0, 0 }, { 0,33909 }, { 1,7446 }, { 2,7446 }, { 3,7446 },
{ 4,7446 }, { 5,7446 }, { 6,7446 }, { 7,7446 }, { 8,7446 },
{ 9,7446 }, { 10,7704 }, { 11,7446 }, { 12,7446 }, { 13,7446 },
{ 14,7446 }, { 15,7446 }, { 16,7446 }, { 17,7446 }, { 18,7446 },
{ 19,7446 }, { 20,7446 }, { 21,7446 }, { 22,7446 }, { 23,7446 },
{ 24,7446 }, { 25,7446 }, { 26,7446 }, { 27,7446 }, { 28,7446 },
{ 29,7446 }, { 30,7446 }, { 31,7446 }, { 32,7446 }, { 33,7446 },
{ 34,7446 }, { 35,7446 }, { 36,7446 }, { 37,7446 }, { 38,7446 },
{ 39,7962 }, { 40,7446 }, { 41,7446 }, { 42,7446 }, { 43,7446 },
{ 44,7446 }, { 45,7446 }, { 46,7446 }, { 47,7446 }, { 48,7446 },
{ 49,7446 }, { 50,7446 }, { 51,7446 }, { 52,7446 }, { 53,7446 },
{ 54,7446 }, { 55,7446 }, { 56,7446 }, { 57,7446 }, { 58,7446 },
{ 59,7446 }, { 60,7446 }, { 61,7446 }, { 62,7446 }, { 63,7446 },
{ 64,7446 }, { 65,7446 }, { 66,7446 }, { 67,7446 }, { 68,7446 },
{ 69,7446 }, { 70,7446 }, { 71,7446 }, { 72,7446 }, { 73,7446 },
{ 74,7446 }, { 75,7446 }, { 76,7446 }, { 77,7446 }, { 78,7446 },
{ 79,7446 }, { 80,7446 }, { 81,7446 }, { 82,7446 }, { 83,7446 },
{ 84,7446 }, { 85,7446 }, { 86,7446 }, { 87,7446 }, { 88,7446 },
{ 89,7446 }, { 90,7446 }, { 91,7446 }, { 92,8009 }, { 93,7446 },
{ 94,7446 }, { 95,7446 }, { 96,7446 }, { 97,7446 }, { 98,7446 },
{ 99,7446 }, { 100,7446 }, { 101,7446 }, { 102,7446 }, { 103,7446 },
{ 104,7446 }, { 105,7446 }, { 106,7446 }, { 107,7446 }, { 108,7446 },
{ 109,7446 }, { 110,7446 }, { 111,7446 }, { 112,7446 }, { 113,7446 },
{ 114,7446 }, { 115,7446 }, { 116,7446 }, { 117,7446 }, { 118,7446 },
{ 119,7446 }, { 120,7446 }, { 121,7446 }, { 122,7446 }, { 123,7446 },
{ 124,7446 }, { 125,7446 }, { 126,7446 }, { 127,7446 }, { 128,7446 },
{ 129,7446 }, { 130,7446 }, { 131,7446 }, { 132,7446 }, { 133,7446 },
{ 134,7446 }, { 135,7446 }, { 136,7446 }, { 137,7446 }, { 138,7446 },
{ 139,7446 }, { 140,7446 }, { 141,7446 }, { 142,7446 }, { 143,7446 },
{ 144,7446 }, { 145,7446 }, { 146,7446 }, { 147,7446 }, { 148,7446 },
{ 149,7446 }, { 150,7446 }, { 151,7446 }, { 152,7446 }, { 153,7446 },
{ 154,7446 }, { 155,7446 }, { 156,7446 }, { 157,7446 }, { 158,7446 },
{ 159,7446 }, { 160,7446 }, { 161,7446 }, { 162,7446 }, { 163,7446 },
{ 164,7446 }, { 165,7446 }, { 166,7446 }, { 167,7446 }, { 168,7446 },
{ 169,7446 }, { 170,7446 }, { 171,7446 }, { 172,7446 }, { 173,7446 },
{ 174,7446 }, { 175,7446 }, { 176,7446 }, { 177,7446 }, { 178,7446 },
{ 179,7446 }, { 180,7446 }, { 181,7446 }, { 182,7446 }, { 183,7446 },
{ 184,7446 }, { 185,7446 }, { 186,7446 }, { 187,7446 }, { 188,7446 },
{ 189,7446 }, { 190,7446 }, { 191,7446 }, { 192,7446 }, { 193,7446 },
{ 194,7446 }, { 195,7446 }, { 196,7446 }, { 197,7446 }, { 198,7446 },
{ 199,7446 }, { 200,7446 }, { 201,7446 }, { 202,7446 }, { 203,7446 },
{ 204,7446 }, { 205,7446 }, { 206,7446 }, { 207,7446 }, { 208,7446 },
{ 209,7446 }, { 210,7446 }, { 211,7446 }, { 212,7446 }, { 213,7446 },
{ 214,7446 }, { 215,7446 }, { 216,7446 }, { 217,7446 }, { 218,7446 },
{ 219,7446 }, { 220,7446 }, { 221,7446 }, { 222,7446 }, { 223,7446 },
{ 224,7446 }, { 225,7446 }, { 226,7446 }, { 227,7446 }, { 228,7446 },
{ 229,7446 }, { 230,7446 }, { 231,7446 }, { 232,7446 }, { 233,7446 },
{ 234,7446 }, { 235,7446 }, { 236,7446 }, { 237,7446 }, { 238,7446 },
{ 239,7446 }, { 240,7446 }, { 241,7446 }, { 242,7446 }, { 243,7446 },
{ 244,7446 }, { 245,7446 }, { 246,7446 }, { 247,7446 }, { 248,7446 },
{ 249,7446 }, { 250,7446 }, { 251,7446 }, { 252,7446 }, { 253,7446 },
{ 254,7446 }, { 255,7446 }, { 256,7446 }, { 0, 0 }, { 0,33651 },
{ 1,8009 }, { 2,8009 }, { 3,8009 }, { 4,8009 }, { 5,8009 },
{ 6,8009 }, { 7,8009 }, { 8,8009 }, { 9,8009 }, { 10,8009 },
{ 11,8009 }, { 12,8009 }, { 13,8009 }, { 14,8009 }, { 15,8009 },
{ 16,8009 }, { 17,8009 }, { 18,8009 }, { 19,8009 }, { 20,8009 },
{ 21,8009 }, { 22,8009 }, { 23,8009 }, { 24,8009 }, { 25,8009 },
{ 26,8009 }, { 27,8009 }, { 28,8009 }, { 29,8009 }, { 30,8009 },
{ 31,8009 }, { 32,8009 }, { 33,8009 }, { 34,8009 }, { 35,8009 },
{ 36,8009 }, { 37,8009 }, { 38,8009 }, { 39,8267 }, { 40,8009 },
{ 41,8009 }, { 42,8009 }, { 43,8009 }, { 44,8009 }, { 45,8009 },
{ 46,8009 }, { 47,8009 }, { 48,8009 }, { 49,8009 }, { 50,8009 },
{ 51,8009 }, { 52,8009 }, { 53,8009 }, { 54,8009 }, { 55,8009 },
{ 56,8009 }, { 57,8009 }, { 58,8009 }, { 59,8009 }, { 60,8009 },
{ 61,8009 }, { 62,8009 }, { 63,8009 }, { 64,8009 }, { 65,8009 },
{ 66,8009 }, { 67,8009 }, { 68,8009 }, { 69,8009 }, { 70,8009 },
{ 71,8009 }, { 72,8009 }, { 73,8009 }, { 74,8009 }, { 75,8009 },
{ 76,8009 }, { 77,8009 }, { 78,8009 }, { 79,8009 }, { 80,8009 },
{ 81,8009 }, { 82,8009 }, { 83,8009 }, { 84,8009 }, { 85,8009 },
{ 86,8009 }, { 87,8009 }, { 88,8009 }, { 89,8009 }, { 90,8009 },
{ 91,8009 }, { 92,8009 }, { 93,8009 }, { 94,8009 }, { 95,8009 },
{ 96,8009 }, { 97,8009 }, { 98,8009 }, { 99,8009 }, { 100,8009 },
{ 101,8009 }, { 102,8009 }, { 103,8009 }, { 104,8009 }, { 105,8009 },
{ 106,8009 }, { 107,8009 }, { 108,8009 }, { 109,8009 }, { 110,8009 },
{ 111,8009 }, { 112,8009 }, { 113,8009 }, { 114,8009 }, { 115,8009 },
{ 116,8009 }, { 117,8009 }, { 118,8009 }, { 119,8009 }, { 120,8009 },
{ 121,8009 }, { 122,8009 }, { 123,8009 }, { 124,8009 }, { 125,8009 },
{ 126,8009 }, { 127,8009 }, { 128,8009 }, { 129,8009 }, { 130,8009 },
{ 131,8009 }, { 132,8009 }, { 133,8009 }, { 134,8009 }, { 135,8009 },
{ 136,8009 }, { 137,8009 }, { 138,8009 }, { 139,8009 }, { 140,8009 },
{ 141,8009 }, { 142,8009 }, { 143,8009 }, { 144,8009 }, { 145,8009 },
{ 146,8009 }, { 147,8009 }, { 148,8009 }, { 149,8009 }, { 150,8009 },
{ 151,8009 }, { 152,8009 }, { 153,8009 }, { 154,8009 }, { 155,8009 },
{ 156,8009 }, { 157,8009 }, { 158,8009 }, { 159,8009 }, { 160,8009 },
{ 161,8009 }, { 162,8009 }, { 163,8009 }, { 164,8009 }, { 165,8009 },
{ 166,8009 }, { 167,8009 }, { 168,8009 }, { 169,8009 }, { 170,8009 },
{ 171,8009 }, { 172,8009 }, { 173,8009 }, { 174,8009 }, { 175,8009 },
{ 176,8009 }, { 177,8009 }, { 178,8009 }, { 179,8009 }, { 180,8009 },
{ 181,8009 }, { 182,8009 }, { 183,8009 }, { 184,8009 }, { 185,8009 },
{ 186,8009 }, { 187,8009 }, { 188,8009 }, { 189,8009 }, { 190,8009 },
{ 191,8009 }, { 192,8009 }, { 193,8009 }, { 194,8009 }, { 195,8009 },
{ 196,8009 }, { 197,8009 }, { 198,8009 }, { 199,8009 }, { 200,8009 },
{ 201,8009 }, { 202,8009 }, { 203,8009 }, { 204,8009 }, { 205,8009 },
{ 206,8009 }, { 207,8009 }, { 208,8009 }, { 209,8009 }, { 210,8009 },
{ 211,8009 }, { 212,8009 }, { 213,8009 }, { 214,8009 }, { 215,8009 },
{ 216,8009 }, { 217,8009 }, { 218,8009 }, { 219,8009 }, { 220,8009 },
{ 221,8009 }, { 222,8009 }, { 223,8009 }, { 224,8009 }, { 225,8009 },
{ 226,8009 }, { 227,8009 }, { 228,8009 }, { 229,8009 }, { 230,8009 },
{ 231,8009 }, { 232,8009 }, { 233,8009 }, { 234,8009 }, { 235,8009 },
{ 236,8009 }, { 237,8009 }, { 238,8009 }, { 239,8009 }, { 240,8009 },
{ 241,8009 }, { 242,8009 }, { 243,8009 }, { 244,8009 }, { 245,8009 },
{ 246,8009 }, { 247,8009 }, { 248,8009 }, { 249,8009 }, { 250,8009 },
{ 251,8009 }, { 252,8009 }, { 253,8009 }, { 254,8009 }, { 255,8009 },
{ 256,8009 }, { 0, 0 }, { 0,33393 }, { 1,7751 }, { 2,7751 },
{ 3,7751 }, { 4,7751 }, { 5,7751 }, { 6,7751 }, { 7,7751 },
{ 8,7751 }, { 9,7751 }, { 10,7751 }, { 11,7751 }, { 12,7751 },
{ 13,7751 }, { 14,7751 }, { 15,7751 }, { 16,7751 }, { 17,7751 },
{ 18,7751 }, { 19,7751 }, { 20,7751 }, { 21,7751 }, { 22,7751 },
{ 23,7751 }, { 24,7751 }, { 25,7751 }, { 26,7751 }, { 27,7751 },
{ 28,7751 }, { 29,7751 }, { 30,7751 }, { 31,7751 }, { 32,7751 },
{ 33,7751 }, { 34,7751 }, { 35,7751 }, { 36,7751 }, { 37,7751 },
{ 38,7751 }, { 39,8009 }, { 40,7751 }, { 41,7751 }, { 42,7751 },
{ 43,7751 }, { 44,7751 }, { 45,7751 }, { 46,7751 }, { 47,7751 },
{ 48,7751 }, { 49,7751 }, { 50,7751 }, { 51,7751 }, { 52,7751 },
{ 53,7751 }, { 54,7751 }, { 55,7751 }, { 56,7751 }, { 57,7751 },
{ 58,7751 }, { 59,7751 }, { 60,7751 }, { 61,7751 }, { 62,7751 },
{ 63,7751 }, { 64,7751 }, { 65,7751 }, { 66,7751 }, { 67,7751 },
{ 68,7751 }, { 69,7751 }, { 70,7751 }, { 71,7751 }, { 72,7751 },
{ 73,7751 }, { 74,7751 }, { 75,7751 }, { 76,7751 }, { 77,7751 },
{ 78,7751 }, { 79,7751 }, { 80,7751 }, { 81,7751 }, { 82,7751 },
{ 83,7751 }, { 84,7751 }, { 85,7751 }, { 86,7751 }, { 87,7751 },
{ 88,7751 }, { 89,7751 }, { 90,7751 }, { 91,7751 }, { 92,7751 },
{ 93,7751 }, { 94,7751 }, { 95,7751 }, { 96,7751 }, { 97,7751 },
{ 98,7751 }, { 99,7751 }, { 100,7751 }, { 101,7751 }, { 102,7751 },
{ 103,7751 }, { 104,7751 }, { 105,7751 }, { 106,7751 }, { 107,7751 },
{ 108,7751 }, { 109,7751 }, { 110,7751 }, { 111,7751 }, { 112,7751 },
{ 113,7751 }, { 114,7751 }, { 115,7751 }, { 116,7751 }, { 117,7751 },
{ 118,7751 }, { 119,7751 }, { 120,7751 }, { 121,7751 }, { 122,7751 },
{ 123,7751 }, { 124,7751 }, { 125,7751 }, { 126,7751 }, { 127,7751 },
{ 128,7751 }, { 129,7751 }, { 130,7751 }, { 131,7751 }, { 132,7751 },
{ 133,7751 }, { 134,7751 }, { 135,7751 }, { 136,7751 }, { 137,7751 },
{ 138,7751 }, { 139,7751 }, { 140,7751 }, { 141,7751 }, { 142,7751 },
{ 143,7751 }, { 144,7751 }, { 145,7751 }, { 146,7751 }, { 147,7751 },
{ 148,7751 }, { 149,7751 }, { 150,7751 }, { 151,7751 }, { 152,7751 },
{ 153,7751 }, { 154,7751 }, { 155,7751 }, { 156,7751 }, { 157,7751 },
{ 158,7751 }, { 159,7751 }, { 160,7751 }, { 161,7751 }, { 162,7751 },
{ 163,7751 }, { 164,7751 }, { 165,7751 }, { 166,7751 }, { 167,7751 },
{ 168,7751 }, { 169,7751 }, { 170,7751 }, { 171,7751 }, { 172,7751 },
{ 173,7751 }, { 174,7751 }, { 175,7751 }, { 176,7751 }, { 177,7751 },
{ 178,7751 }, { 179,7751 }, { 180,7751 }, { 181,7751 }, { 182,7751 },
{ 183,7751 }, { 184,7751 }, { 185,7751 }, { 186,7751 }, { 187,7751 },
{ 188,7751 }, { 189,7751 }, { 190,7751 }, { 191,7751 }, { 192,7751 },
{ 193,7751 }, { 194,7751 }, { 195,7751 }, { 196,7751 }, { 197,7751 },
{ 198,7751 }, { 199,7751 }, { 200,7751 }, { 201,7751 }, { 202,7751 },
{ 203,7751 }, { 204,7751 }, { 205,7751 }, { 206,7751 }, { 207,7751 },
{ 208,7751 }, { 209,7751 }, { 210,7751 }, { 211,7751 }, { 212,7751 },
{ 213,7751 }, { 214,7751 }, { 215,7751 }, { 216,7751 }, { 217,7751 },
{ 218,7751 }, { 219,7751 }, { 220,7751 }, { 221,7751 }, { 222,7751 },
{ 223,7751 }, { 224,7751 }, { 225,7751 }, { 226,7751 }, { 227,7751 },
{ 228,7751 }, { 229,7751 }, { 230,7751 }, { 231,7751 }, { 232,7751 },
{ 233,7751 }, { 234,7751 }, { 235,7751 }, { 236,7751 }, { 237,7751 },
{ 238,7751 }, { 239,7751 }, { 240,7751 }, { 241,7751 }, { 242,7751 },
{ 243,7751 }, { 244,7751 }, { 245,7751 }, { 246,7751 }, { 247,7751 },
{ 248,7751 }, { 249,7751 }, { 250,7751 }, { 251,7751 }, { 252,7751 },
{ 253,7751 }, { 254,7751 }, { 255,7751 }, { 256,7751 }, { 0, 0 },
{ 0,33135 }, { 1,7798 }, { 2,7798 }, { 3,7798 }, { 4,7798 },
{ 5,7798 }, { 6,7798 }, { 7,7798 }, { 8,7798 }, { 9,7798 },
{ 10,8056 }, { 11,7798 }, { 12,7798 }, { 13,7798 }, { 14,7798 },
{ 15,7798 }, { 16,7798 }, { 17,7798 }, { 18,7798 }, { 19,7798 },
{ 20,7798 }, { 21,7798 }, { 22,7798 }, { 23,7798 }, { 24,7798 },
{ 25,7798 }, { 26,7798 }, { 27,7798 }, { 28,7798 }, { 29,7798 },
{ 30,7798 }, { 31,7798 }, { 32,7798 }, { 33,7798 }, { 34,7798 },
{ 35,7798 }, { 36,8314 }, { 37,7798 }, { 38,7798 }, { 39,7798 },
{ 40,7798 }, { 41,7798 }, { 42,7798 }, { 43,7798 }, { 44,7798 },
{ 45,7798 }, { 46,7798 }, { 47,7798 }, { 48,7798 }, { 49,7798 },
{ 50,7798 }, { 51,7798 }, { 52,7798 }, { 53,7798 }, { 54,7798 },
{ 55,7798 }, { 56,7798 }, { 57,7798 }, { 58,7798 }, { 59,7798 },
{ 60,7798 }, { 61,7798 }, { 62,7798 }, { 63,7798 }, { 64,7798 },
{ 65,7798 }, { 66,7798 }, { 67,7798 }, { 68,7798 }, { 69,7798 },
{ 70,7798 }, { 71,7798 }, { 72,7798 }, { 73,7798 }, { 74,7798 },
{ 75,7798 }, { 76,7798 }, { 77,7798 }, { 78,7798 }, { 79,7798 },
{ 80,7798 }, { 81,7798 }, { 82,7798 }, { 83,7798 }, { 84,7798 },
{ 85,7798 }, { 86,7798 }, { 87,7798 }, { 88,7798 }, { 89,7798 },
{ 90,7798 }, { 91,7798 }, { 92,7798 }, { 93,7798 }, { 94,7798 },
{ 95,7798 }, { 96,7798 }, { 97,7798 }, { 98,7798 }, { 99,7798 },
{ 100,7798 }, { 101,7798 }, { 102,7798 }, { 103,7798 }, { 104,7798 },
{ 105,7798 }, { 106,7798 }, { 107,7798 }, { 108,7798 }, { 109,7798 },
{ 110,7798 }, { 111,7798 }, { 112,7798 }, { 113,7798 }, { 114,7798 },
{ 115,7798 }, { 116,7798 }, { 117,7798 }, { 118,7798 }, { 119,7798 },
{ 120,7798 }, { 121,7798 }, { 122,7798 }, { 123,7798 }, { 124,7798 },
{ 125,7798 }, { 126,7798 }, { 127,7798 }, { 128,7798 }, { 129,7798 },
{ 130,7798 }, { 131,7798 }, { 132,7798 }, { 133,7798 }, { 134,7798 },
{ 135,7798 }, { 136,7798 }, { 137,7798 }, { 138,7798 }, { 139,7798 },
{ 140,7798 }, { 141,7798 }, { 142,7798 }, { 143,7798 }, { 144,7798 },
{ 145,7798 }, { 146,7798 }, { 147,7798 }, { 148,7798 }, { 149,7798 },
{ 150,7798 }, { 151,7798 }, { 152,7798 }, { 153,7798 }, { 154,7798 },
{ 155,7798 }, { 156,7798 }, { 157,7798 }, { 158,7798 }, { 159,7798 },
{ 160,7798 }, { 161,7798 }, { 162,7798 }, { 163,7798 }, { 164,7798 },
{ 165,7798 }, { 166,7798 }, { 167,7798 }, { 168,7798 }, { 169,7798 },
{ 170,7798 }, { 171,7798 }, { 172,7798 }, { 173,7798 }, { 174,7798 },
{ 175,7798 }, { 176,7798 }, { 177,7798 }, { 178,7798 }, { 179,7798 },
{ 180,7798 }, { 181,7798 }, { 182,7798 }, { 183,7798 }, { 184,7798 },
{ 185,7798 }, { 186,7798 }, { 187,7798 }, { 188,7798 }, { 189,7798 },
{ 190,7798 }, { 191,7798 }, { 192,7798 }, { 193,7798 }, { 194,7798 },
{ 195,7798 }, { 196,7798 }, { 197,7798 }, { 198,7798 }, { 199,7798 },
{ 200,7798 }, { 201,7798 }, { 202,7798 }, { 203,7798 }, { 204,7798 },
{ 205,7798 }, { 206,7798 }, { 207,7798 }, { 208,7798 }, { 209,7798 },
{ 210,7798 }, { 211,7798 }, { 212,7798 }, { 213,7798 }, { 214,7798 },
{ 215,7798 }, { 216,7798 }, { 217,7798 }, { 218,7798 }, { 219,7798 },
{ 220,7798 }, { 221,7798 }, { 222,7798 }, { 223,7798 }, { 224,7798 },
{ 225,7798 }, { 226,7798 }, { 227,7798 }, { 228,7798 }, { 229,7798 },
{ 230,7798 }, { 231,7798 }, { 232,7798 }, { 233,7798 }, { 234,7798 },
{ 235,7798 }, { 236,7798 }, { 237,7798 }, { 238,7798 }, { 239,7798 },
{ 240,7798 }, { 241,7798 }, { 242,7798 }, { 243,7798 }, { 244,7798 },
{ 245,7798 }, { 246,7798 }, { 247,7798 }, { 248,7798 }, { 249,7798 },
{ 250,7798 }, { 251,7798 }, { 252,7798 }, { 253,7798 }, { 254,7798 },
{ 255,7798 }, { 256,7798 }, { 0, 0 }, { 0,32877 }, { 1,7540 },
{ 2,7540 }, { 3,7540 }, { 4,7540 }, { 5,7540 }, { 6,7540 },
{ 7,7540 }, { 8,7540 }, { 9,7540 }, { 10,7798 }, { 11,7540 },
{ 12,7540 }, { 13,7540 }, { 14,7540 }, { 15,7540 }, { 16,7540 },
{ 17,7540 }, { 18,7540 }, { 19,7540 }, { 20,7540 }, { 21,7540 },
{ 22,7540 }, { 23,7540 }, { 24,7540 }, { 25,7540 }, { 26,7540 },
{ 27,7540 }, { 28,7540 }, { 29,7540 }, { 30,7540 }, { 31,7540 },
{ 32,7540 }, { 33,7540 }, { 34,7540 }, { 35,7540 }, { 36,8056 },
{ 37,7540 }, { 38,7540 }, { 39,7540 }, { 40,7540 }, { 41,7540 },
{ 42,7540 }, { 43,7540 }, { 44,7540 }, { 45,7540 }, { 46,7540 },
{ 47,7540 }, { 48,7540 }, { 49,7540 }, { 50,7540 }, { 51,7540 },
{ 52,7540 }, { 53,7540 }, { 54,7540 }, { 55,7540 }, { 56,7540 },
{ 57,7540 }, { 58,7540 }, { 59,7540 }, { 60,7540 }, { 61,7540 },
{ 62,7540 }, { 63,7540 }, { 64,7540 }, { 65,7540 }, { 66,7540 },
{ 67,7540 }, { 68,7540 }, { 69,7540 }, { 70,7540 }, { 71,7540 },
{ 72,7540 }, { 73,7540 }, { 74,7540 }, { 75,7540 }, { 76,7540 },
{ 77,7540 }, { 78,7540 }, { 79,7540 }, { 80,7540 }, { 81,7540 },
{ 82,7540 }, { 83,7540 }, { 84,7540 }, { 85,7540 }, { 86,7540 },
{ 87,7540 }, { 88,7540 }, { 89,7540 }, { 90,7540 }, { 91,7540 },
{ 92,7540 }, { 93,7540 }, { 94,7540 }, { 95,7540 }, { 96,7540 },
{ 97,7540 }, { 98,7540 }, { 99,7540 }, { 100,7540 }, { 101,7540 },
{ 102,7540 }, { 103,7540 }, { 104,7540 }, { 105,7540 }, { 106,7540 },
{ 107,7540 }, { 108,7540 }, { 109,7540 }, { 110,7540 }, { 111,7540 },
{ 112,7540 }, { 113,7540 }, { 114,7540 }, { 115,7540 }, { 116,7540 },
{ 117,7540 }, { 118,7540 }, { 119,7540 }, { 120,7540 }, { 121,7540 },
{ 122,7540 }, { 123,7540 }, { 124,7540 }, { 125,7540 }, { 126,7540 },
{ 127,7540 }, { 128,7540 }, { 129,7540 }, { 130,7540 }, { 131,7540 },
{ 132,7540 }, { 133,7540 }, { 134,7540 }, { 135,7540 }, { 136,7540 },
{ 137,7540 }, { 138,7540 }, { 139,7540 }, { 140,7540 }, { 141,7540 },
{ 142,7540 }, { 143,7540 }, { 144,7540 }, { 145,7540 }, { 146,7540 },
{ 147,7540 }, { 148,7540 }, { 149,7540 }, { 150,7540 }, { 151,7540 },
{ 152,7540 }, { 153,7540 }, { 154,7540 }, { 155,7540 }, { 156,7540 },
{ 157,7540 }, { 158,7540 }, { 159,7540 }, { 160,7540 }, { 161,7540 },
{ 162,7540 }, { 163,7540 }, { 164,7540 }, { 165,7540 }, { 166,7540 },
{ 167,7540 }, { 168,7540 }, { 169,7540 }, { 170,7540 }, { 171,7540 },
{ 172,7540 }, { 173,7540 }, { 174,7540 }, { 175,7540 }, { 176,7540 },
{ 177,7540 }, { 178,7540 }, { 179,7540 }, { 180,7540 }, { 181,7540 },
{ 182,7540 }, { 183,7540 }, { 184,7540 }, { 185,7540 }, { 186,7540 },
{ 187,7540 }, { 188,7540 }, { 189,7540 }, { 190,7540 }, { 191,7540 },
{ 192,7540 }, { 193,7540 }, { 194,7540 }, { 195,7540 }, { 196,7540 },
{ 197,7540 }, { 198,7540 }, { 199,7540 }, { 200,7540 }, { 201,7540 },
{ 202,7540 }, { 203,7540 }, { 204,7540 }, { 205,7540 }, { 206,7540 },
{ 207,7540 }, { 208,7540 }, { 209,7540 }, { 210,7540 }, { 211,7540 },
{ 212,7540 }, { 213,7540 }, { 214,7540 }, { 215,7540 }, { 216,7540 },
{ 217,7540 }, { 218,7540 }, { 219,7540 }, { 220,7540 }, { 221,7540 },
{ 222,7540 }, { 223,7540 }, { 224,7540 }, { 225,7540 }, { 226,7540 },
{ 227,7540 }, { 228,7540 }, { 229,7540 }, { 230,7540 }, { 231,7540 },
{ 232,7540 }, { 233,7540 }, { 234,7540 }, { 235,7540 }, { 236,7540 },
{ 237,7540 }, { 238,7540 }, { 239,7540 }, { 240,7540 }, { 241,7540 },
{ 242,7540 }, { 243,7540 }, { 244,7540 }, { 245,7540 }, { 246,7540 },
{ 247,7540 }, { 248,7540 }, { 249,7540 }, { 250,7540 }, { 251,7540 },
{ 252,7540 }, { 253,7540 }, { 254,7540 }, { 255,7540 }, { 256,7540 },
{ 0, 0 }, { 0,32619 }, { 1,5593 }, { 2,5593 }, { 3,5593 },
{ 4,5593 }, { 5,5593 }, { 6,5593 }, { 7,5593 }, { 8,5593 },
{ 9,5593 }, { 10,5593 }, { 11,5593 }, { 12,5593 }, { 13,5593 },
{ 14,5593 }, { 15,5593 }, { 16,5593 }, { 17,5593 }, { 18,5593 },
{ 19,5593 }, { 20,5593 }, { 21,5593 }, { 22,5593 }, { 23,5593 },
{ 24,5593 }, { 25,5593 }, { 26,5593 }, { 27,5593 }, { 28,5593 },
{ 29,5593 }, { 30,5593 }, { 31,5593 }, { 32,5593 }, { 33,5593 },
{ 34,2639 }, { 35,5593 }, { 36,5593 }, { 37,5593 }, { 38,5593 },
{ 39,5593 }, { 40,5593 }, { 41,5593 }, { 42,5593 }, { 43,5593 },
{ 44,5593 }, { 45,5593 }, { 46,5593 }, { 47,5593 }, { 48,5593 },
{ 49,5593 }, { 50,5593 }, { 51,5593 }, { 52,5593 }, { 53,5593 },
{ 54,5593 }, { 55,5593 }, { 56,5593 }, { 57,5593 }, { 58,5593 },
{ 59,5593 }, { 60,5593 }, { 61,5593 }, { 62,5593 }, { 63,5593 },
{ 64,5593 }, { 65,5593 }, { 66,5593 }, { 67,5593 }, { 68,5593 },
{ 69,5593 }, { 70,5593 }, { 71,5593 }, { 72,5593 }, { 73,5593 },
{ 74,5593 }, { 75,5593 }, { 76,5593 }, { 77,5593 }, { 78,5593 },
{ 79,5593 }, { 80,5593 }, { 81,5593 }, { 82,5593 }, { 83,5593 },
{ 84,5593 }, { 85,5593 }, { 86,5593 }, { 87,5593 }, { 88,5593 },
{ 89,5593 }, { 90,5593 }, { 91,5593 }, { 92,5593 }, { 93,5593 },
{ 94,5593 }, { 95,5593 }, { 96,5593 }, { 97,5593 }, { 98,5593 },
{ 99,5593 }, { 100,5593 }, { 101,5593 }, { 102,5593 }, { 103,5593 },
{ 104,5593 }, { 105,5593 }, { 106,5593 }, { 107,5593 }, { 108,5593 },
{ 109,5593 }, { 110,5593 }, { 111,5593 }, { 112,5593 }, { 113,5593 },
{ 114,5593 }, { 115,5593 }, { 116,5593 }, { 117,5593 }, { 118,5593 },
{ 119,5593 }, { 120,5593 }, { 121,5593 }, { 122,5593 }, { 123,5593 },
{ 124,5593 }, { 125,5593 }, { 126,5593 }, { 127,5593 }, { 128,5593 },
{ 129,5593 }, { 130,5593 }, { 131,5593 }, { 132,5593 }, { 133,5593 },
{ 134,5593 }, { 135,5593 }, { 136,5593 }, { 137,5593 }, { 138,5593 },
{ 139,5593 }, { 140,5593 }, { 141,5593 }, { 142,5593 }, { 143,5593 },
{ 144,5593 }, { 145,5593 }, { 146,5593 }, { 147,5593 }, { 148,5593 },
{ 149,5593 }, { 150,5593 }, { 151,5593 }, { 152,5593 }, { 153,5593 },
{ 154,5593 }, { 155,5593 }, { 156,5593 }, { 157,5593 }, { 158,5593 },
{ 159,5593 }, { 160,5593 }, { 161,5593 }, { 162,5593 }, { 163,5593 },
{ 164,5593 }, { 165,5593 }, { 166,5593 }, { 167,5593 }, { 168,5593 },
{ 169,5593 }, { 170,5593 }, { 171,5593 }, { 172,5593 }, { 173,5593 },
{ 174,5593 }, { 175,5593 }, { 176,5593 }, { 177,5593 }, { 178,5593 },
{ 179,5593 }, { 180,5593 }, { 181,5593 }, { 182,5593 }, { 183,5593 },
{ 184,5593 }, { 185,5593 }, { 186,5593 }, { 187,5593 }, { 188,5593 },
{ 189,5593 }, { 190,5593 }, { 191,5593 }, { 192,5593 }, { 193,5593 },
{ 194,5593 }, { 195,5593 }, { 196,5593 }, { 197,5593 }, { 198,5593 },
{ 199,5593 }, { 200,5593 }, { 201,5593 }, { 202,5593 }, { 203,5593 },
{ 204,5593 }, { 205,5593 }, { 206,5593 }, { 207,5593 }, { 208,5593 },
{ 209,5593 }, { 210,5593 }, { 211,5593 }, { 212,5593 }, { 213,5593 },
{ 214,5593 }, { 215,5593 }, { 216,5593 }, { 217,5593 }, { 218,5593 },
{ 219,5593 }, { 220,5593 }, { 221,5593 }, { 222,5593 }, { 223,5593 },
{ 224,5593 }, { 225,5593 }, { 226,5593 }, { 227,5593 }, { 228,5593 },
{ 229,5593 }, { 230,5593 }, { 231,5593 }, { 232,5593 }, { 233,5593 },
{ 234,5593 }, { 235,5593 }, { 236,5593 }, { 237,5593 }, { 238,5593 },
{ 239,5593 }, { 240,5593 }, { 241,5593 }, { 242,5593 }, { 243,5593 },
{ 244,5593 }, { 245,5593 }, { 246,5593 }, { 247,5593 }, { 248,5593 },
{ 249,5593 }, { 250,5593 }, { 251,5593 }, { 252,5593 }, { 253,5593 },
{ 254,5593 }, { 255,5593 }, { 256,5593 }, { 0, 0 }, { 0,32361 },
{ 1,5335 }, { 2,5335 }, { 3,5335 }, { 4,5335 }, { 5,5335 },
{ 6,5335 }, { 7,5335 }, { 8,5335 }, { 9,5335 }, { 10,5335 },
{ 11,5335 }, { 12,5335 }, { 13,5335 }, { 14,5335 }, { 15,5335 },
{ 16,5335 }, { 17,5335 }, { 18,5335 }, { 19,5335 }, { 20,5335 },
{ 21,5335 }, { 22,5335 }, { 23,5335 }, { 24,5335 }, { 25,5335 },
{ 26,5335 }, { 27,5335 }, { 28,5335 }, { 29,5335 }, { 30,5335 },
{ 31,5335 }, { 32,5335 }, { 33,5335 }, { 34,2381 }, { 35,5335 },
{ 36,5335 }, { 37,5335 }, { 38,5335 }, { 39,5335 }, { 40,5335 },
{ 41,5335 }, { 42,5335 }, { 43,5335 }, { 44,5335 }, { 45,5335 },
{ 46,5335 }, { 47,5335 }, { 48,5335 }, { 49,5335 }, { 50,5335 },
{ 51,5335 }, { 52,5335 }, { 53,5335 }, { 54,5335 }, { 55,5335 },
{ 56,5335 }, { 57,5335 }, { 58,5335 }, { 59,5335 }, { 60,5335 },
{ 61,5335 }, { 62,5335 }, { 63,5335 }, { 64,5335 }, { 65,5335 },
{ 66,5335 }, { 67,5335 }, { 68,5335 }, { 69,5335 }, { 70,5335 },
{ 71,5335 }, { 72,5335 }, { 73,5335 }, { 74,5335 }, { 75,5335 },
{ 76,5335 }, { 77,5335 }, { 78,5335 }, { 79,5335 }, { 80,5335 },
{ 81,5335 }, { 82,5335 }, { 83,5335 }, { 84,5335 }, { 85,5335 },
{ 86,5335 }, { 87,5335 }, { 88,5335 }, { 89,5335 }, { 90,5335 },
{ 91,5335 }, { 92,5335 }, { 93,5335 }, { 94,5335 }, { 95,5335 },
{ 96,5335 }, { 97,5335 }, { 98,5335 }, { 99,5335 }, { 100,5335 },
{ 101,5335 }, { 102,5335 }, { 103,5335 }, { 104,5335 }, { 105,5335 },
{ 106,5335 }, { 107,5335 }, { 108,5335 }, { 109,5335 }, { 110,5335 },
{ 111,5335 }, { 112,5335 }, { 113,5335 }, { 114,5335 }, { 115,5335 },
{ 116,5335 }, { 117,5335 }, { 118,5335 }, { 119,5335 }, { 120,5335 },
{ 121,5335 }, { 122,5335 }, { 123,5335 }, { 124,5335 }, { 125,5335 },
{ 126,5335 }, { 127,5335 }, { 128,5335 }, { 129,5335 }, { 130,5335 },
{ 131,5335 }, { 132,5335 }, { 133,5335 }, { 134,5335 }, { 135,5335 },
{ 136,5335 }, { 137,5335 }, { 138,5335 }, { 139,5335 }, { 140,5335 },
{ 141,5335 }, { 142,5335 }, { 143,5335 }, { 144,5335 }, { 145,5335 },
{ 146,5335 }, { 147,5335 }, { 148,5335 }, { 149,5335 }, { 150,5335 },
{ 151,5335 }, { 152,5335 }, { 153,5335 }, { 154,5335 }, { 155,5335 },
{ 156,5335 }, { 157,5335 }, { 158,5335 }, { 159,5335 }, { 160,5335 },
{ 161,5335 }, { 162,5335 }, { 163,5335 }, { 164,5335 }, { 165,5335 },
{ 166,5335 }, { 167,5335 }, { 168,5335 }, { 169,5335 }, { 170,5335 },
{ 171,5335 }, { 172,5335 }, { 173,5335 }, { 174,5335 }, { 175,5335 },
{ 176,5335 }, { 177,5335 }, { 178,5335 }, { 179,5335 }, { 180,5335 },
{ 181,5335 }, { 182,5335 }, { 183,5335 }, { 184,5335 }, { 185,5335 },
{ 186,5335 }, { 187,5335 }, { 188,5335 }, { 189,5335 }, { 190,5335 },
{ 191,5335 }, { 192,5335 }, { 193,5335 }, { 194,5335 }, { 195,5335 },
{ 196,5335 }, { 197,5335 }, { 198,5335 }, { 199,5335 }, { 200,5335 },
{ 201,5335 }, { 202,5335 }, { 203,5335 }, { 204,5335 }, { 205,5335 },
{ 206,5335 }, { 207,5335 }, { 208,5335 }, { 209,5335 }, { 210,5335 },
{ 211,5335 }, { 212,5335 }, { 213,5335 }, { 214,5335 }, { 215,5335 },
{ 216,5335 }, { 217,5335 }, { 218,5335 }, { 219,5335 }, { 220,5335 },
{ 221,5335 }, { 222,5335 }, { 223,5335 }, { 224,5335 }, { 225,5335 },
{ 226,5335 }, { 227,5335 }, { 228,5335 }, { 229,5335 }, { 230,5335 },
{ 231,5335 }, { 232,5335 }, { 233,5335 }, { 234,5335 }, { 235,5335 },
{ 236,5335 }, { 237,5335 }, { 238,5335 }, { 239,5335 }, { 240,5335 },
{ 241,5335 }, { 242,5335 }, { 243,5335 }, { 244,5335 }, { 245,5335 },
{ 246,5335 }, { 247,5335 }, { 248,5335 }, { 249,5335 }, { 250,5335 },
{ 251,5335 }, { 252,5335 }, { 253,5335 }, { 254,5335 }, { 255,5335 },
{ 256,5335 }, { 0, 55 }, { 0,32103 }, { 1,2125 }, { 2,2125 },
{ 3,2125 }, { 4,2125 }, { 5,2125 }, { 6,2125 }, { 7,2125 },
{ 8,2125 }, { 9,7284 }, { 10,7289 }, { 11,2125 }, { 12,7284 },
{ 13,7284 }, { 14,2125 }, { 15,2125 }, { 16,2125 }, { 17,2125 },
{ 18,2125 }, { 19,2125 }, { 20,2125 }, { 21,2125 }, { 22,2125 },
{ 23,2125 }, { 24,2125 }, { 25,2125 }, { 26,2125 }, { 27,2125 },
{ 28,2125 }, { 29,2125 }, { 30,2125 }, { 31,2125 }, { 32,7284 },
{ 33,2125 }, { 34,2125 }, { 35,2125 }, { 36,2125 }, { 37,2125 },
{ 38,2125 }, { 39,2125 }, { 40,2125 }, { 41,2125 }, { 42,2125 },
{ 43,2125 }, { 44,2125 }, { 45,2127 }, { 46,2125 }, { 47,2125 },
{ 48,2125 }, { 49,2125 }, { 50,2125 }, { 51,2125 }, { 52,2125 },
{ 53,2125 }, { 54,2125 }, { 55,2125 }, { 56,2125 }, { 57,2125 },
{ 58,2125 }, { 59,2125 }, { 60,2125 }, { 61,2125 }, { 62,2125 },
{ 63,2125 }, { 64,2125 }, { 65,2125 }, { 66,2125 }, { 67,2125 },
{ 68,2125 }, { 69,2125 }, { 70,2125 }, { 71,2125 }, { 72,2125 },
{ 73,2125 }, { 74,2125 }, { 75,2125 }, { 76,2125 }, { 77,2125 },
{ 78,2125 }, { 79,2125 }, { 80,2125 }, { 81,2125 }, { 82,2125 },
{ 83,2125 }, { 84,2125 }, { 85,2141 }, { 86,2125 }, { 87,2125 },
{ 88,2125 }, { 89,2125 }, { 90,2125 }, { 91,2125 }, { 92,2125 },
{ 93,2125 }, { 94,2125 }, { 95,2125 }, { 96,2125 }, { 97,2125 },
{ 98,2125 }, { 99,2125 }, { 100,2125 }, { 101,2125 }, { 102,2125 },
{ 103,2125 }, { 104,2125 }, { 105,2125 }, { 106,2125 }, { 107,2125 },
{ 108,2125 }, { 109,2125 }, { 110,2125 }, { 111,2125 }, { 112,2125 },
{ 113,2125 }, { 114,2125 }, { 115,2125 }, { 116,2125 }, { 117,2141 },
{ 118,2125 }, { 119,2125 }, { 120,2125 }, { 121,2125 }, { 122,2125 },
{ 123,2125 }, { 124,2125 }, { 125,2125 }, { 126,2125 }, { 127,2125 },
{ 128,2125 }, { 129,2125 }, { 130,2125 }, { 131,2125 }, { 132,2125 },
{ 133,2125 }, { 134,2125 }, { 135,2125 }, { 136,2125 }, { 137,2125 },
{ 138,2125 }, { 139,2125 }, { 140,2125 }, { 141,2125 }, { 142,2125 },
{ 143,2125 }, { 144,2125 }, { 145,2125 }, { 146,2125 }, { 147,2125 },
{ 148,2125 }, { 149,2125 }, { 150,2125 }, { 151,2125 }, { 152,2125 },
{ 153,2125 }, { 154,2125 }, { 155,2125 }, { 156,2125 }, { 157,2125 },
{ 158,2125 }, { 159,2125 }, { 160,2125 }, { 161,2125 }, { 162,2125 },
{ 163,2125 }, { 164,2125 }, { 165,2125 }, { 166,2125 }, { 167,2125 },
{ 168,2125 }, { 169,2125 }, { 170,2125 }, { 171,2125 }, { 172,2125 },
{ 173,2125 }, { 174,2125 }, { 175,2125 }, { 176,2125 }, { 177,2125 },
{ 178,2125 }, { 179,2125 }, { 180,2125 }, { 181,2125 }, { 182,2125 },
{ 183,2125 }, { 184,2125 }, { 185,2125 }, { 186,2125 }, { 187,2125 },
{ 188,2125 }, { 189,2125 }, { 190,2125 }, { 191,2125 }, { 192,2125 },
{ 193,2125 }, { 194,2125 }, { 195,2125 }, { 196,2125 }, { 197,2125 },
{ 198,2125 }, { 199,2125 }, { 200,2125 }, { 201,2125 }, { 202,2125 },
{ 203,2125 }, { 204,2125 }, { 205,2125 }, { 206,2125 }, { 207,2125 },
{ 208,2125 }, { 209,2125 }, { 210,2125 }, { 211,2125 }, { 212,2125 },
{ 213,2125 }, { 214,2125 }, { 215,2125 }, { 216,2125 }, { 217,2125 },
{ 218,2125 }, { 219,2125 }, { 220,2125 }, { 221,2125 }, { 222,2125 },
{ 223,2125 }, { 224,2125 }, { 225,2125 }, { 226,2125 }, { 227,2125 },
{ 228,2125 }, { 229,2125 }, { 230,2125 }, { 231,2125 }, { 232,2125 },
{ 233,2125 }, { 234,2125 }, { 235,2125 }, { 236,2125 }, { 237,2125 },
{ 238,2125 }, { 239,2125 }, { 240,2125 }, { 241,2125 }, { 242,2125 },
{ 243,2125 }, { 244,2125 }, { 245,2125 }, { 246,2125 }, { 247,2125 },
{ 248,2125 }, { 249,2125 }, { 250,2125 }, { 251,2125 }, { 252,2125 },
{ 253,2125 }, { 254,2125 }, { 255,2125 }, { 256,2125 }, { 0, 55 },
{ 0,31845 }, { 1,1867 }, { 2,1867 }, { 3,1867 }, { 4,1867 },
{ 5,1867 }, { 6,1867 }, { 7,1867 }, { 8,1867 }, { 9,7026 },
{ 10,7031 }, { 11,1867 }, { 12,7026 }, { 13,7026 }, { 14,1867 },
{ 15,1867 }, { 16,1867 }, { 17,1867 }, { 18,1867 }, { 19,1867 },
{ 20,1867 }, { 21,1867 }, { 22,1867 }, { 23,1867 }, { 24,1867 },
{ 25,1867 }, { 26,1867 }, { 27,1867 }, { 28,1867 }, { 29,1867 },
{ 30,1867 }, { 31,1867 }, { 32,7026 }, { 33,1867 }, { 34,1867 },
{ 35,1867 }, { 36,1867 }, { 37,1867 }, { 38,1867 }, { 39,1867 },
{ 40,1867 }, { 41,1867 }, { 42,1867 }, { 43,1867 }, { 44,1867 },
{ 45,1869 }, { 46,1867 }, { 47,1867 }, { 48,1867 }, { 49,1867 },
{ 50,1867 }, { 51,1867 }, { 52,1867 }, { 53,1867 }, { 54,1867 },
{ 55,1867 }, { 56,1867 }, { 57,1867 }, { 58,1867 }, { 59,1867 },
{ 60,1867 }, { 61,1867 }, { 62,1867 }, { 63,1867 }, { 64,1867 },
{ 65,1867 }, { 66,1867 }, { 67,1867 }, { 68,1867 }, { 69,1867 },
{ 70,1867 }, { 71,1867 }, { 72,1867 }, { 73,1867 }, { 74,1867 },
{ 75,1867 }, { 76,1867 }, { 77,1867 }, { 78,1867 }, { 79,1867 },
{ 80,1867 }, { 81,1867 }, { 82,1867 }, { 83,1867 }, { 84,1867 },
{ 85,1883 }, { 86,1867 }, { 87,1867 }, { 88,1867 }, { 89,1867 },
{ 90,1867 }, { 91,1867 }, { 92,1867 }, { 93,1867 }, { 94,1867 },
{ 95,1867 }, { 96,1867 }, { 97,1867 }, { 98,1867 }, { 99,1867 },
{ 100,1867 }, { 101,1867 }, { 102,1867 }, { 103,1867 }, { 104,1867 },
{ 105,1867 }, { 106,1867 }, { 107,1867 }, { 108,1867 }, { 109,1867 },
{ 110,1867 }, { 111,1867 }, { 112,1867 }, { 113,1867 }, { 114,1867 },
{ 115,1867 }, { 116,1867 }, { 117,1883 }, { 118,1867 }, { 119,1867 },
{ 120,1867 }, { 121,1867 }, { 122,1867 }, { 123,1867 }, { 124,1867 },
{ 125,1867 }, { 126,1867 }, { 127,1867 }, { 128,1867 }, { 129,1867 },
{ 130,1867 }, { 131,1867 }, { 132,1867 }, { 133,1867 }, { 134,1867 },
{ 135,1867 }, { 136,1867 }, { 137,1867 }, { 138,1867 }, { 139,1867 },
{ 140,1867 }, { 141,1867 }, { 142,1867 }, { 143,1867 }, { 144,1867 },
{ 145,1867 }, { 146,1867 }, { 147,1867 }, { 148,1867 }, { 149,1867 },
{ 150,1867 }, { 151,1867 }, { 152,1867 }, { 153,1867 }, { 154,1867 },
{ 155,1867 }, { 156,1867 }, { 157,1867 }, { 158,1867 }, { 159,1867 },
{ 160,1867 }, { 161,1867 }, { 162,1867 }, { 163,1867 }, { 164,1867 },
{ 165,1867 }, { 166,1867 }, { 167,1867 }, { 168,1867 }, { 169,1867 },
{ 170,1867 }, { 171,1867 }, { 172,1867 }, { 173,1867 }, { 174,1867 },
{ 175,1867 }, { 176,1867 }, { 177,1867 }, { 178,1867 }, { 179,1867 },
{ 180,1867 }, { 181,1867 }, { 182,1867 }, { 183,1867 }, { 184,1867 },
{ 185,1867 }, { 186,1867 }, { 187,1867 }, { 188,1867 }, { 189,1867 },
{ 190,1867 }, { 191,1867 }, { 192,1867 }, { 193,1867 }, { 194,1867 },
{ 195,1867 }, { 196,1867 }, { 197,1867 }, { 198,1867 }, { 199,1867 },
{ 200,1867 }, { 201,1867 }, { 202,1867 }, { 203,1867 }, { 204,1867 },
{ 205,1867 }, { 206,1867 }, { 207,1867 }, { 208,1867 }, { 209,1867 },
{ 210,1867 }, { 211,1867 }, { 212,1867 }, { 213,1867 }, { 214,1867 },
{ 215,1867 }, { 216,1867 }, { 217,1867 }, { 218,1867 }, { 219,1867 },
{ 220,1867 }, { 221,1867 }, { 222,1867 }, { 223,1867 }, { 224,1867 },
{ 225,1867 }, { 226,1867 }, { 227,1867 }, { 228,1867 }, { 229,1867 },
{ 230,1867 }, { 231,1867 }, { 232,1867 }, { 233,1867 }, { 234,1867 },
{ 235,1867 }, { 236,1867 }, { 237,1867 }, { 238,1867 }, { 239,1867 },
{ 240,1867 }, { 241,1867 }, { 242,1867 }, { 243,1867 }, { 244,1867 },
{ 245,1867 }, { 246,1867 }, { 247,1867 }, { 248,1867 }, { 249,1867 },
{ 250,1867 }, { 251,1867 }, { 252,1867 }, { 253,1867 }, { 254,1867 },
{ 255,1867 }, { 256,1867 }, { 0, 0 }, { 0,31587 }, { 1,5945 },
{ 2,5945 }, { 3,5945 }, { 4,5945 }, { 5,5945 }, { 6,5945 },
{ 7,5945 }, { 8,5945 }, { 9,5945 }, { 10,5945 }, { 11,5945 },
{ 12,5945 }, { 13,5945 }, { 14,5945 }, { 15,5945 }, { 16,5945 },
{ 17,5945 }, { 18,5945 }, { 19,5945 }, { 20,5945 }, { 21,5945 },
{ 22,5945 }, { 23,5945 }, { 24,5945 }, { 25,5945 }, { 26,5945 },
{ 27,5945 }, { 28,5945 }, { 29,5945 }, { 30,5945 }, { 31,5945 },
{ 32,5945 }, { 33,5945 }, { 34,5945 }, { 35,5945 }, { 36,5945 },
{ 37,5945 }, { 38,5945 }, { 39,7023 }, { 40,5945 }, { 41,5945 },
{ 42,5945 }, { 43,5945 }, { 44,5945 }, { 45,5945 }, { 46,5945 },
{ 47,5945 }, { 48,5945 }, { 49,5945 }, { 50,5945 }, { 51,5945 },
{ 52,5945 }, { 53,5945 }, { 54,5945 }, { 55,5945 }, { 56,5945 },
{ 57,5945 }, { 58,5945 }, { 59,5945 }, { 60,5945 }, { 61,5945 },
{ 62,5945 }, { 63,5945 }, { 64,5945 }, { 65,5945 }, { 66,5945 },
{ 67,5945 }, { 68,5945 }, { 69,5945 }, { 70,5945 }, { 71,5945 },
{ 72,5945 }, { 73,5945 }, { 74,5945 }, { 75,5945 }, { 76,5945 },
{ 77,5945 }, { 78,5945 }, { 79,5945 }, { 80,5945 }, { 81,5945 },
{ 82,5945 }, { 83,5945 }, { 84,5945 }, { 85,5945 }, { 86,5945 },
{ 87,5945 }, { 88,5945 }, { 89,5945 }, { 90,5945 }, { 91,5945 },
{ 92,5945 }, { 93,5945 }, { 94,5945 }, { 95,5945 }, { 96,5945 },
{ 97,5945 }, { 98,5945 }, { 99,5945 }, { 100,5945 }, { 101,5945 },
{ 102,5945 }, { 103,5945 }, { 104,5945 }, { 105,5945 }, { 106,5945 },
{ 107,5945 }, { 108,5945 }, { 109,5945 }, { 110,5945 }, { 111,5945 },
{ 112,5945 }, { 113,5945 }, { 114,5945 }, { 115,5945 }, { 116,5945 },
{ 117,5945 }, { 118,5945 }, { 119,5945 }, { 120,5945 }, { 121,5945 },
{ 122,5945 }, { 123,5945 }, { 124,5945 }, { 125,5945 }, { 126,5945 },
{ 127,5945 }, { 128,5945 }, { 129,5945 }, { 130,5945 }, { 131,5945 },
{ 132,5945 }, { 133,5945 }, { 134,5945 }, { 135,5945 }, { 136,5945 },
{ 137,5945 }, { 138,5945 }, { 139,5945 }, { 140,5945 }, { 141,5945 },
{ 142,5945 }, { 143,5945 }, { 144,5945 }, { 145,5945 }, { 146,5945 },
{ 147,5945 }, { 148,5945 }, { 149,5945 }, { 150,5945 }, { 151,5945 },
{ 152,5945 }, { 153,5945 }, { 154,5945 }, { 155,5945 }, { 156,5945 },
{ 157,5945 }, { 158,5945 }, { 159,5945 }, { 160,5945 }, { 161,5945 },
{ 162,5945 }, { 163,5945 }, { 164,5945 }, { 165,5945 }, { 166,5945 },
{ 167,5945 }, { 168,5945 }, { 169,5945 }, { 170,5945 }, { 171,5945 },
{ 172,5945 }, { 173,5945 }, { 174,5945 }, { 175,5945 }, { 176,5945 },
{ 177,5945 }, { 178,5945 }, { 179,5945 }, { 180,5945 }, { 181,5945 },
{ 182,5945 }, { 183,5945 }, { 184,5945 }, { 185,5945 }, { 186,5945 },
{ 187,5945 }, { 188,5945 }, { 189,5945 }, { 190,5945 }, { 191,5945 },
{ 192,5945 }, { 193,5945 }, { 194,5945 }, { 195,5945 }, { 196,5945 },
{ 197,5945 }, { 198,5945 }, { 199,5945 }, { 200,5945 }, { 201,5945 },
{ 202,5945 }, { 203,5945 }, { 204,5945 }, { 205,5945 }, { 206,5945 },
{ 207,5945 }, { 208,5945 }, { 209,5945 }, { 210,5945 }, { 211,5945 },
{ 212,5945 }, { 213,5945 }, { 214,5945 }, { 215,5945 }, { 216,5945 },
{ 217,5945 }, { 218,5945 }, { 219,5945 }, { 220,5945 }, { 221,5945 },
{ 222,5945 }, { 223,5945 }, { 224,5945 }, { 225,5945 }, { 226,5945 },
{ 227,5945 }, { 228,5945 }, { 229,5945 }, { 230,5945 }, { 231,5945 },
{ 232,5945 }, { 233,5945 }, { 234,5945 }, { 235,5945 }, { 236,5945 },
{ 237,5945 }, { 238,5945 }, { 239,5945 }, { 240,5945 }, { 241,5945 },
{ 242,5945 }, { 243,5945 }, { 244,5945 }, { 245,5945 }, { 246,5945 },
{ 247,5945 }, { 248,5945 }, { 249,5945 }, { 250,5945 }, { 251,5945 },
{ 252,5945 }, { 253,5945 }, { 254,5945 }, { 255,5945 }, { 256,5945 },
{ 0, 0 }, { 0,31329 }, { 1,5687 }, { 2,5687 }, { 3,5687 },
{ 4,5687 }, { 5,5687 }, { 6,5687 }, { 7,5687 }, { 8,5687 },
{ 9,5687 }, { 10,5687 }, { 11,5687 }, { 12,5687 }, { 13,5687 },
{ 14,5687 }, { 15,5687 }, { 16,5687 }, { 17,5687 }, { 18,5687 },
{ 19,5687 }, { 20,5687 }, { 21,5687 }, { 22,5687 }, { 23,5687 },
{ 24,5687 }, { 25,5687 }, { 26,5687 }, { 27,5687 }, { 28,5687 },
{ 29,5687 }, { 30,5687 }, { 31,5687 }, { 32,5687 }, { 33,5687 },
{ 34,5687 }, { 35,5687 }, { 36,5687 }, { 37,5687 }, { 38,5687 },
{ 39,6765 }, { 40,5687 }, { 41,5687 }, { 42,5687 }, { 43,5687 },
{ 44,5687 }, { 45,5687 }, { 46,5687 }, { 47,5687 }, { 48,5687 },
{ 49,5687 }, { 50,5687 }, { 51,5687 }, { 52,5687 }, { 53,5687 },
{ 54,5687 }, { 55,5687 }, { 56,5687 }, { 57,5687 }, { 58,5687 },
{ 59,5687 }, { 60,5687 }, { 61,5687 }, { 62,5687 }, { 63,5687 },
{ 64,5687 }, { 65,5687 }, { 66,5687 }, { 67,5687 }, { 68,5687 },
{ 69,5687 }, { 70,5687 }, { 71,5687 }, { 72,5687 }, { 73,5687 },
{ 74,5687 }, { 75,5687 }, { 76,5687 }, { 77,5687 }, { 78,5687 },
{ 79,5687 }, { 80,5687 }, { 81,5687 }, { 82,5687 }, { 83,5687 },
{ 84,5687 }, { 85,5687 }, { 86,5687 }, { 87,5687 }, { 88,5687 },
{ 89,5687 }, { 90,5687 }, { 91,5687 }, { 92,5687 }, { 93,5687 },
{ 94,5687 }, { 95,5687 }, { 96,5687 }, { 97,5687 }, { 98,5687 },
{ 99,5687 }, { 100,5687 }, { 101,5687 }, { 102,5687 }, { 103,5687 },
{ 104,5687 }, { 105,5687 }, { 106,5687 }, { 107,5687 }, { 108,5687 },
{ 109,5687 }, { 110,5687 }, { 111,5687 }, { 112,5687 }, { 113,5687 },
{ 114,5687 }, { 115,5687 }, { 116,5687 }, { 117,5687 }, { 118,5687 },
{ 119,5687 }, { 120,5687 }, { 121,5687 }, { 122,5687 }, { 123,5687 },
{ 124,5687 }, { 125,5687 }, { 126,5687 }, { 127,5687 }, { 128,5687 },
{ 129,5687 }, { 130,5687 }, { 131,5687 }, { 132,5687 }, { 133,5687 },
{ 134,5687 }, { 135,5687 }, { 136,5687 }, { 137,5687 }, { 138,5687 },
{ 139,5687 }, { 140,5687 }, { 141,5687 }, { 142,5687 }, { 143,5687 },
{ 144,5687 }, { 145,5687 }, { 146,5687 }, { 147,5687 }, { 148,5687 },
{ 149,5687 }, { 150,5687 }, { 151,5687 }, { 152,5687 }, { 153,5687 },
{ 154,5687 }, { 155,5687 }, { 156,5687 }, { 157,5687 }, { 158,5687 },
{ 159,5687 }, { 160,5687 }, { 161,5687 }, { 162,5687 }, { 163,5687 },
{ 164,5687 }, { 165,5687 }, { 166,5687 }, { 167,5687 }, { 168,5687 },
{ 169,5687 }, { 170,5687 }, { 171,5687 }, { 172,5687 }, { 173,5687 },
{ 174,5687 }, { 175,5687 }, { 176,5687 }, { 177,5687 }, { 178,5687 },
{ 179,5687 }, { 180,5687 }, { 181,5687 }, { 182,5687 }, { 183,5687 },
{ 184,5687 }, { 185,5687 }, { 186,5687 }, { 187,5687 }, { 188,5687 },
{ 189,5687 }, { 190,5687 }, { 191,5687 }, { 192,5687 }, { 193,5687 },
{ 194,5687 }, { 195,5687 }, { 196,5687 }, { 197,5687 }, { 198,5687 },
{ 199,5687 }, { 200,5687 }, { 201,5687 }, { 202,5687 }, { 203,5687 },
{ 204,5687 }, { 205,5687 }, { 206,5687 }, { 207,5687 }, { 208,5687 },
{ 209,5687 }, { 210,5687 }, { 211,5687 }, { 212,5687 }, { 213,5687 },
{ 214,5687 }, { 215,5687 }, { 216,5687 }, { 217,5687 }, { 218,5687 },
{ 219,5687 }, { 220,5687 }, { 221,5687 }, { 222,5687 }, { 223,5687 },
{ 224,5687 }, { 225,5687 }, { 226,5687 }, { 227,5687 }, { 228,5687 },
{ 229,5687 }, { 230,5687 }, { 231,5687 }, { 232,5687 }, { 233,5687 },
{ 234,5687 }, { 235,5687 }, { 236,5687 }, { 237,5687 }, { 238,5687 },
{ 239,5687 }, { 240,5687 }, { 241,5687 }, { 242,5687 }, { 243,5687 },
{ 244,5687 }, { 245,5687 }, { 246,5687 }, { 247,5687 }, { 248,5687 },
{ 249,5687 }, { 250,5687 }, { 251,5687 }, { 252,5687 }, { 253,5687 },
{ 254,5687 }, { 255,5687 }, { 256,5687 }, { 0, 28 }, { 0,31071 },
{ 1,1113 }, { 2,1113 }, { 3,1113 }, { 4,1113 }, { 5,1113 },
{ 6,1113 }, { 7,1113 }, { 8,1113 }, { 9,6512 }, { 10,6528 },
{ 11,1113 }, { 12,6512 }, { 13,6512 }, { 14,1113 }, { 15,1113 },
{ 16,1113 }, { 17,1113 }, { 18,1113 }, { 19,1113 }, { 20,1113 },
{ 21,1113 }, { 22,1113 }, { 23,1113 }, { 24,1113 }, { 25,1113 },
{ 26,1113 }, { 27,1113 }, { 28,1113 }, { 29,1113 }, { 30,1113 },
{ 31,1113 }, { 32,6512 }, { 33,1113 }, { 34,1113 }, { 35,1113 },
{ 36,1113 }, { 37,1113 }, { 38,1113 }, { 39,1113 }, { 40,1113 },
{ 41,1113 }, { 42,1113 }, { 43,1113 }, { 44,1113 }, { 45,1131 },
{ 46,1113 }, { 47,1113 }, { 48,1113 }, { 49,1113 }, { 50,1113 },
{ 51,1113 }, { 52,1113 }, { 53,1113 }, { 54,1113 }, { 55,1113 },
{ 56,1113 }, { 57,1113 }, { 58,1113 }, { 59,1113 }, { 60,1113 },
{ 61,1113 }, { 62,1113 }, { 63,1113 }, { 64,1113 }, { 65,1113 },
{ 66,1113 }, { 67,1113 }, { 68,1113 }, { 69,1113 }, { 70,1113 },
{ 71,1113 }, { 72,1113 }, { 73,1113 }, { 74,1113 }, { 75,1113 },
{ 76,1113 }, { 77,1113 }, { 78,1113 }, { 79,1113 }, { 80,1113 },
{ 81,1113 }, { 82,1113 }, { 83,1113 }, { 84,1113 }, { 85,1139 },
{ 86,1113 }, { 87,1113 }, { 88,1113 }, { 89,1113 }, { 90,1113 },
{ 91,1113 }, { 92,1113 }, { 93,1113 }, { 94,1113 }, { 95,1113 },
{ 96,1113 }, { 97,1113 }, { 98,1113 }, { 99,1113 }, { 100,1113 },
{ 101,1113 }, { 102,1113 }, { 103,1113 }, { 104,1113 }, { 105,1113 },
{ 106,1113 }, { 107,1113 }, { 108,1113 }, { 109,1113 }, { 110,1113 },
{ 111,1113 }, { 112,1113 }, { 113,1113 }, { 114,1113 }, { 115,1113 },
{ 116,1113 }, { 117,1139 }, { 118,1113 }, { 119,1113 }, { 120,1113 },
{ 121,1113 }, { 122,1113 }, { 123,1113 }, { 124,1113 }, { 125,1113 },
{ 126,1113 }, { 127,1113 }, { 128,1113 }, { 129,1113 }, { 130,1113 },
{ 131,1113 }, { 132,1113 }, { 133,1113 }, { 134,1113 }, { 135,1113 },
{ 136,1113 }, { 137,1113 }, { 138,1113 }, { 139,1113 }, { 140,1113 },
{ 141,1113 }, { 142,1113 }, { 143,1113 }, { 144,1113 }, { 145,1113 },
{ 146,1113 }, { 147,1113 }, { 148,1113 }, { 149,1113 }, { 150,1113 },
{ 151,1113 }, { 152,1113 }, { 153,1113 }, { 154,1113 }, { 155,1113 },
{ 156,1113 }, { 157,1113 }, { 158,1113 }, { 159,1113 }, { 160,1113 },
{ 161,1113 }, { 162,1113 }, { 163,1113 }, { 164,1113 }, { 165,1113 },
{ 166,1113 }, { 167,1113 }, { 168,1113 }, { 169,1113 }, { 170,1113 },
{ 171,1113 }, { 172,1113 }, { 173,1113 }, { 174,1113 }, { 175,1113 },
{ 176,1113 }, { 177,1113 }, { 178,1113 }, { 179,1113 }, { 180,1113 },
{ 181,1113 }, { 182,1113 }, { 183,1113 }, { 184,1113 }, { 185,1113 },
{ 186,1113 }, { 187,1113 }, { 188,1113 }, { 189,1113 }, { 190,1113 },
{ 191,1113 }, { 192,1113 }, { 193,1113 }, { 194,1113 }, { 195,1113 },
{ 196,1113 }, { 197,1113 }, { 198,1113 }, { 199,1113 }, { 200,1113 },
{ 201,1113 }, { 202,1113 }, { 203,1113 }, { 204,1113 }, { 205,1113 },
{ 206,1113 }, { 207,1113 }, { 208,1113 }, { 209,1113 }, { 210,1113 },
{ 211,1113 }, { 212,1113 }, { 213,1113 }, { 214,1113 }, { 215,1113 },
{ 216,1113 }, { 217,1113 }, { 218,1113 }, { 219,1113 }, { 220,1113 },
{ 221,1113 }, { 222,1113 }, { 223,1113 }, { 224,1113 }, { 225,1113 },
{ 226,1113 }, { 227,1113 }, { 228,1113 }, { 229,1113 }, { 230,1113 },
{ 231,1113 }, { 232,1113 }, { 233,1113 }, { 234,1113 }, { 235,1113 },
{ 236,1113 }, { 237,1113 }, { 238,1113 }, { 239,1113 }, { 240,1113 },
{ 241,1113 }, { 242,1113 }, { 243,1113 }, { 244,1113 }, { 245,1113 },
{ 246,1113 }, { 247,1113 }, { 248,1113 }, { 249,1113 }, { 250,1113 },
{ 251,1113 }, { 252,1113 }, { 253,1113 }, { 254,1113 }, { 255,1113 },
{ 256,1113 }, { 0, 28 }, { 0,30813 }, { 1, 855 }, { 2, 855 },
{ 3, 855 }, { 4, 855 }, { 5, 855 }, { 6, 855 }, { 7, 855 },
{ 8, 855 }, { 9,6254 }, { 10,6270 }, { 11, 855 }, { 12,6254 },
{ 13,6254 }, { 14, 855 }, { 15, 855 }, { 16, 855 }, { 17, 855 },
{ 18, 855 }, { 19, 855 }, { 20, 855 }, { 21, 855 }, { 22, 855 },
{ 23, 855 }, { 24, 855 }, { 25, 855 }, { 26, 855 }, { 27, 855 },
{ 28, 855 }, { 29, 855 }, { 30, 855 }, { 31, 855 }, { 32,6254 },
{ 33, 855 }, { 34, 855 }, { 35, 855 }, { 36, 855 }, { 37, 855 },
{ 38, 855 }, { 39, 855 }, { 40, 855 }, { 41, 855 }, { 42, 855 },
{ 43, 855 }, { 44, 855 }, { 45, 873 }, { 46, 855 }, { 47, 855 },
{ 48, 855 }, { 49, 855 }, { 50, 855 }, { 51, 855 }, { 52, 855 },
{ 53, 855 }, { 54, 855 }, { 55, 855 }, { 56, 855 }, { 57, 855 },
{ 58, 855 }, { 59, 855 }, { 60, 855 }, { 61, 855 }, { 62, 855 },
{ 63, 855 }, { 64, 855 }, { 65, 855 }, { 66, 855 }, { 67, 855 },
{ 68, 855 }, { 69, 855 }, { 70, 855 }, { 71, 855 }, { 72, 855 },
{ 73, 855 }, { 74, 855 }, { 75, 855 }, { 76, 855 }, { 77, 855 },
{ 78, 855 }, { 79, 855 }, { 80, 855 }, { 81, 855 }, { 82, 855 },
{ 83, 855 }, { 84, 855 }, { 85, 881 }, { 86, 855 }, { 87, 855 },
{ 88, 855 }, { 89, 855 }, { 90, 855 }, { 91, 855 }, { 92, 855 },
{ 93, 855 }, { 94, 855 }, { 95, 855 }, { 96, 855 }, { 97, 855 },
{ 98, 855 }, { 99, 855 }, { 100, 855 }, { 101, 855 }, { 102, 855 },
{ 103, 855 }, { 104, 855 }, { 105, 855 }, { 106, 855 }, { 107, 855 },
{ 108, 855 }, { 109, 855 }, { 110, 855 }, { 111, 855 }, { 112, 855 },
{ 113, 855 }, { 114, 855 }, { 115, 855 }, { 116, 855 }, { 117, 881 },
{ 118, 855 }, { 119, 855 }, { 120, 855 }, { 121, 855 }, { 122, 855 },
{ 123, 855 }, { 124, 855 }, { 125, 855 }, { 126, 855 }, { 127, 855 },
{ 128, 855 }, { 129, 855 }, { 130, 855 }, { 131, 855 }, { 132, 855 },
{ 133, 855 }, { 134, 855 }, { 135, 855 }, { 136, 855 }, { 137, 855 },
{ 138, 855 }, { 139, 855 }, { 140, 855 }, { 141, 855 }, { 142, 855 },
{ 143, 855 }, { 144, 855 }, { 145, 855 }, { 146, 855 }, { 147, 855 },
{ 148, 855 }, { 149, 855 }, { 150, 855 }, { 151, 855 }, { 152, 855 },
{ 153, 855 }, { 154, 855 }, { 155, 855 }, { 156, 855 }, { 157, 855 },
{ 158, 855 }, { 159, 855 }, { 160, 855 }, { 161, 855 }, { 162, 855 },
{ 163, 855 }, { 164, 855 }, { 165, 855 }, { 166, 855 }, { 167, 855 },
{ 168, 855 }, { 169, 855 }, { 170, 855 }, { 171, 855 }, { 172, 855 },
{ 173, 855 }, { 174, 855 }, { 175, 855 }, { 176, 855 }, { 177, 855 },
{ 178, 855 }, { 179, 855 }, { 180, 855 }, { 181, 855 }, { 182, 855 },
{ 183, 855 }, { 184, 855 }, { 185, 855 }, { 186, 855 }, { 187, 855 },
{ 188, 855 }, { 189, 855 }, { 190, 855 }, { 191, 855 }, { 192, 855 },
{ 193, 855 }, { 194, 855 }, { 195, 855 }, { 196, 855 }, { 197, 855 },
{ 198, 855 }, { 199, 855 }, { 200, 855 }, { 201, 855 }, { 202, 855 },
{ 203, 855 }, { 204, 855 }, { 205, 855 }, { 206, 855 }, { 207, 855 },
{ 208, 855 }, { 209, 855 }, { 210, 855 }, { 211, 855 }, { 212, 855 },
{ 213, 855 }, { 214, 855 }, { 215, 855 }, { 216, 855 }, { 217, 855 },
{ 218, 855 }, { 219, 855 }, { 220, 855 }, { 221, 855 }, { 222, 855 },
{ 223, 855 }, { 224, 855 }, { 225, 855 }, { 226, 855 }, { 227, 855 },
{ 228, 855 }, { 229, 855 }, { 230, 855 }, { 231, 855 }, { 232, 855 },
{ 233, 855 }, { 234, 855 }, { 235, 855 }, { 236, 855 }, { 237, 855 },
{ 238, 855 }, { 239, 855 }, { 240, 855 }, { 241, 855 }, { 242, 855 },
{ 243, 855 }, { 244, 855 }, { 245, 855 }, { 246, 855 }, { 247, 855 },
{ 248, 855 }, { 249, 855 }, { 250, 855 }, { 251, 855 }, { 252, 855 },
{ 253, 855 }, { 254, 855 }, { 255, 855 }, { 256, 855 }, { 0, 0 },
{ 0,30555 }, { 1, 633 }, { 2, 633 }, { 3, 633 }, { 4, 633 },
{ 5, 633 }, { 6, 633 }, { 7, 633 }, { 8, 633 }, { 9, 633 },
{ 10, 635 }, { 11, 633 }, { 12, 633 }, { 13, 633 }, { 14, 633 },
{ 15, 633 }, { 16, 633 }, { 17, 633 }, { 18, 633 }, { 19, 633 },
{ 20, 633 }, { 21, 633 }, { 22, 633 }, { 23, 633 }, { 24, 633 },
{ 25, 633 }, { 26, 633 }, { 27, 633 }, { 28, 633 }, { 29, 633 },
{ 30, 633 }, { 31, 633 }, { 32, 633 }, { 33, 633 }, { 34, 633 },
{ 35, 633 }, { 36, 633 }, { 37, 633 }, { 38, 633 }, { 39, 633 },
{ 40, 633 }, { 41, 633 }, { 42, 633 }, { 43, 633 }, { 44, 633 },
{ 45, 633 }, { 46, 633 }, { 47, 633 }, { 48, 633 }, { 49, 633 },
{ 50, 633 }, { 51, 633 }, { 52, 633 }, { 53, 633 }, { 54, 633 },
{ 55, 633 }, { 56, 633 }, { 57, 633 }, { 58, 633 }, { 59, 633 },
{ 60, 633 }, { 61, 633 }, { 62, 633 }, { 63, 633 }, { 64, 633 },
{ 65, 633 }, { 66, 633 }, { 67, 633 }, { 68, 633 }, { 69, 633 },
{ 70, 633 }, { 71, 633 }, { 72, 633 }, { 73, 633 }, { 74, 633 },
{ 75, 633 }, { 76, 633 }, { 77, 633 }, { 78, 633 }, { 79, 633 },
{ 80, 633 }, { 81, 633 }, { 82, 633 }, { 83, 633 }, { 84, 633 },
{ 85, 633 }, { 86, 633 }, { 87, 633 }, { 88, 633 }, { 89, 633 },
{ 90, 633 }, { 91, 633 }, { 92, 637 }, { 93, 633 }, { 94, 633 },
{ 95, 633 }, { 96, 633 }, { 97, 633 }, { 98, 633 }, { 99, 633 },
{ 100, 633 }, { 101, 633 }, { 102, 633 }, { 103, 633 }, { 104, 633 },
{ 105, 633 }, { 106, 633 }, { 107, 633 }, { 108, 633 }, { 109, 633 },
{ 110, 633 }, { 111, 633 }, { 112, 633 }, { 113, 633 }, { 114, 633 },
{ 115, 633 }, { 116, 633 }, { 117, 633 }, { 118, 633 }, { 119, 633 },
{ 120, 633 }, { 121, 633 }, { 122, 633 }, { 123, 633 }, { 124, 633 },
{ 125, 633 }, { 126, 633 }, { 127, 633 }, { 128, 633 }, { 129, 633 },
{ 130, 633 }, { 131, 633 }, { 132, 633 }, { 133, 633 }, { 134, 633 },
{ 135, 633 }, { 136, 633 }, { 137, 633 }, { 138, 633 }, { 139, 633 },
{ 140, 633 }, { 141, 633 }, { 142, 633 }, { 143, 633 }, { 144, 633 },
{ 145, 633 }, { 146, 633 }, { 147, 633 }, { 148, 633 }, { 149, 633 },
{ 150, 633 }, { 151, 633 }, { 152, 633 }, { 153, 633 }, { 154, 633 },
{ 155, 633 }, { 156, 633 }, { 157, 633 }, { 158, 633 }, { 159, 633 },
{ 160, 633 }, { 161, 633 }, { 162, 633 }, { 163, 633 }, { 164, 633 },
{ 165, 633 }, { 166, 633 }, { 167, 633 }, { 168, 633 }, { 169, 633 },
{ 170, 633 }, { 171, 633 }, { 172, 633 }, { 173, 633 }, { 174, 633 },
{ 175, 633 }, { 176, 633 }, { 177, 633 }, { 178, 633 }, { 179, 633 },
{ 180, 633 }, { 181, 633 }, { 182, 633 }, { 183, 633 }, { 184, 633 },
{ 185, 633 }, { 186, 633 }, { 187, 633 }, { 188, 633 }, { 189, 633 },
{ 190, 633 }, { 191, 633 }, { 192, 633 }, { 193, 633 }, { 194, 633 },
{ 195, 633 }, { 196, 633 }, { 197, 633 }, { 198, 633 }, { 199, 633 },
{ 200, 633 }, { 201, 633 }, { 202, 633 }, { 203, 633 }, { 204, 633 },
{ 205, 633 }, { 206, 633 }, { 207, 633 }, { 208, 633 }, { 209, 633 },
{ 210, 633 }, { 211, 633 }, { 212, 633 }, { 213, 633 }, { 214, 633 },
{ 215, 633 }, { 216, 633 }, { 217, 633 }, { 218, 633 }, { 219, 633 },
{ 220, 633 }, { 221, 633 }, { 222, 633 }, { 223, 633 }, { 224, 633 },
{ 225, 633 }, { 226, 633 }, { 227, 633 }, { 228, 633 }, { 229, 633 },
{ 230, 633 }, { 231, 633 }, { 232, 633 }, { 233, 633 }, { 234, 633 },
{ 235, 633 }, { 236, 633 }, { 237, 633 }, { 238, 633 }, { 239, 633 },
{ 240, 633 }, { 241, 633 }, { 242, 633 }, { 243, 633 }, { 244, 633 },
{ 245, 633 }, { 246, 633 }, { 247, 633 }, { 248, 633 }, { 249, 633 },
{ 250, 633 }, { 251, 633 }, { 252, 633 }, { 253, 633 }, { 254, 633 },
{ 255, 633 }, { 256, 633 }, { 0, 0 }, { 0,30297 }, { 1, 375 },
{ 2, 375 }, { 3, 375 }, { 4, 375 }, { 5, 375 }, { 6, 375 },
{ 7, 375 }, { 8, 375 }, { 9, 375 }, { 10, 377 }, { 11, 375 },
{ 12, 375 }, { 13, 375 }, { 14, 375 }, { 15, 375 }, { 16, 375 },
{ 17, 375 }, { 18, 375 }, { 19, 375 }, { 20, 375 }, { 21, 375 },
{ 22, 375 }, { 23, 375 }, { 24, 375 }, { 25, 375 }, { 26, 375 },
{ 27, 375 }, { 28, 375 }, { 29, 375 }, { 30, 375 }, { 31, 375 },
{ 32, 375 }, { 33, 375 }, { 34, 375 }, { 35, 375 }, { 36, 375 },
{ 37, 375 }, { 38, 375 }, { 39, 375 }, { 40, 375 }, { 41, 375 },
{ 42, 375 }, { 43, 375 }, { 44, 375 }, { 45, 375 }, { 46, 375 },
{ 47, 375 }, { 48, 375 }, { 49, 375 }, { 50, 375 }, { 51, 375 },
{ 52, 375 }, { 53, 375 }, { 54, 375 }, { 55, 375 }, { 56, 375 },
{ 57, 375 }, { 58, 375 }, { 59, 375 }, { 60, 375 }, { 61, 375 },
{ 62, 375 }, { 63, 375 }, { 64, 375 }, { 65, 375 }, { 66, 375 },
{ 67, 375 }, { 68, 375 }, { 69, 375 }, { 70, 375 }, { 71, 375 },
{ 72, 375 }, { 73, 375 }, { 74, 375 }, { 75, 375 }, { 76, 375 },
{ 77, 375 }, { 78, 375 }, { 79, 375 }, { 80, 375 }, { 81, 375 },
{ 82, 375 }, { 83, 375 }, { 84, 375 }, { 85, 375 }, { 86, 375 },
{ 87, 375 }, { 88, 375 }, { 89, 375 }, { 90, 375 }, { 91, 375 },
{ 92, 379 }, { 93, 375 }, { 94, 375 }, { 95, 375 }, { 96, 375 },
{ 97, 375 }, { 98, 375 }, { 99, 375 }, { 100, 375 }, { 101, 375 },
{ 102, 375 }, { 103, 375 }, { 104, 375 }, { 105, 375 }, { 106, 375 },
{ 107, 375 }, { 108, 375 }, { 109, 375 }, { 110, 375 }, { 111, 375 },
{ 112, 375 }, { 113, 375 }, { 114, 375 }, { 115, 375 }, { 116, 375 },
{ 117, 375 }, { 118, 375 }, { 119, 375 }, { 120, 375 }, { 121, 375 },
{ 122, 375 }, { 123, 375 }, { 124, 375 }, { 125, 375 }, { 126, 375 },
{ 127, 375 }, { 128, 375 }, { 129, 375 }, { 130, 375 }, { 131, 375 },
{ 132, 375 }, { 133, 375 }, { 134, 375 }, { 135, 375 }, { 136, 375 },
{ 137, 375 }, { 138, 375 }, { 139, 375 }, { 140, 375 }, { 141, 375 },
{ 142, 375 }, { 143, 375 }, { 144, 375 }, { 145, 375 }, { 146, 375 },
{ 147, 375 }, { 148, 375 }, { 149, 375 }, { 150, 375 }, { 151, 375 },
{ 152, 375 }, { 153, 375 }, { 154, 375 }, { 155, 375 }, { 156, 375 },
{ 157, 375 }, { 158, 375 }, { 159, 375 }, { 160, 375 }, { 161, 375 },
{ 162, 375 }, { 163, 375 }, { 164, 375 }, { 165, 375 }, { 166, 375 },
{ 167, 375 }, { 168, 375 }, { 169, 375 }, { 170, 375 }, { 171, 375 },
{ 172, 375 }, { 173, 375 }, { 174, 375 }, { 175, 375 }, { 176, 375 },
{ 177, 375 }, { 178, 375 }, { 179, 375 }, { 180, 375 }, { 181, 375 },
{ 182, 375 }, { 183, 375 }, { 184, 375 }, { 185, 375 }, { 186, 375 },
{ 187, 375 }, { 188, 375 }, { 189, 375 }, { 190, 375 }, { 191, 375 },
{ 192, 375 }, { 193, 375 }, { 194, 375 }, { 195, 375 }, { 196, 375 },
{ 197, 375 }, { 198, 375 }, { 199, 375 }, { 200, 375 }, { 201, 375 },
{ 202, 375 }, { 203, 375 }, { 204, 375 }, { 205, 375 }, { 206, 375 },
{ 207, 375 }, { 208, 375 }, { 209, 375 }, { 210, 375 }, { 211, 375 },
{ 212, 375 }, { 213, 375 }, { 214, 375 }, { 215, 375 }, { 216, 375 },
{ 217, 375 }, { 218, 375 }, { 219, 375 }, { 220, 375 }, { 221, 375 },
{ 222, 375 }, { 223, 375 }, { 224, 375 }, { 225, 375 }, { 226, 375 },
{ 227, 375 }, { 228, 375 }, { 229, 375 }, { 230, 375 }, { 231, 375 },
{ 232, 375 }, { 233, 375 }, { 234, 375 }, { 235, 375 }, { 236, 375 },
{ 237, 375 }, { 238, 375 }, { 239, 375 }, { 240, 375 }, { 241, 375 },
{ 242, 375 }, { 243, 375 }, { 244, 375 }, { 245, 375 }, { 246, 375 },
{ 247, 375 }, { 248, 375 }, { 249, 375 }, { 250, 375 }, { 251, 375 },
{ 252, 375 }, { 253, 375 }, { 254, 375 }, { 255, 375 }, { 256, 375 },
{ 0, 79 }, { 0,30039 }, { 0, 1 }, { 0,30037 }, { 0, 49 },
{ 0,30035 }, { 0, 0 }, { 0, 1 }, { 0,30032 }, { 0, 70 },
{ 0,30030 }, { 0, 0 }, { 9,5515 }, { 10,5515 }, { 0, 0 },
{ 12,5515 }, { 13,5515 }, { 9,5510 }, { 10,5510 }, { 0, 0 },
{ 12,5510 }, { 13,5510 }, { 0, 19 }, { 0,30017 }, { 0, 69 },
{ 0,30015 }, { 0, 0 }, { 0, 69 }, { 0,30012 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 6 }, { 0,30007 }, { 0, 0 },
{ 32,5515 }, { 0, 6 }, { 0,30003 }, { 0, 0 }, { 0, 0 },
{ 32,5510 }, { 0, 51 }, { 0,29998 }, { 33,5510 }, { 0, 0 },
{ 35,5510 }, { 0, 0 }, { 37,5510 }, { 38,5510 }, { 0, 70 },
{ 0,29990 }, { 0, 0 }, { 42,5510 }, { 43,5510 }, { 0, 0 },
{ 45,5510 }, { 0, 0 }, { 47,5510 }, { 0, 0 }, { 0, 52 },
{ 0,29980 }, { 0, 54 }, { 0,29978 }, { 0, 54 }, { 0,29976 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 60,5510 }, { 61,5550 }, { 62,5510 }, { 63,5510 }, { 64,5510 },
{ 42, 408 }, { 34, 420 }, { 0, 54 }, { 0,29962 }, { 42,7294 },
{ 47, 410 }, { 0, 27 }, { 0,29958 }, { 33,5470 }, { 0, 0 },
{ 35,5470 }, { 58, 100 }, { 37,5470 }, { 38,5470 }, { 61, 102 },
{ 0, 0 }, { 0, 0 }, { 42,5470 }, { 43,5470 }, { 34, 402 },
{ 45,5470 }, { 0, 0 }, { 47,5470 }, { 0, 0 }, { 0, 27 },
{ 0,29940 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 94,5510 },
{ 0, 0 }, { 96,5510 }, { 0, 27 }, { 0,29932 }, { 45,9179 },
{ 60,5470 }, { 61,5470 }, { 62,5470 }, { 63,5470 }, { 64,5470 },
{ 0, 79 }, { 0,29924 }, { 0, 35 }, { 0,29922 }, { 0, 36 },
{ 0,29920 }, { 0, 35 }, { 0,29918 }, { 0, 43 }, { 0,29916 },
{ 0, 62 }, { 0,29914 }, { 0, 61 }, { 0,29912 }, { 0, 63 },
{ 0,29910 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 124,5510 },
{ 0, 0 }, { 126,5510 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 94,5470 },
{ 45,9456 }, { 96,5470 }, { 69, 465 }, { 0, 78 }, { 0,29891 },
{ 0, 8 }, { 0,29889 }, { 36, 8 }, { 0, 20 }, { 0,29886 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,5461 },
{ 49,5461 }, { 50,5461 }, { 51,5461 }, { 52,5461 }, { 53,5461 },
{ 54,5461 }, { 55,5461 }, { 56,5461 }, { 57,5461 }, { 124,5470 },
{ 0, 0 }, { 126,5470 }, { 69, 447 }, { 0, 0 }, { 101, 465 },
{ 0, 0 }, { 65,5523 }, { 66,5523 }, { 67,5523 }, { 68,5523 },
{ 69,5523 }, { 70,5523 }, { 71,5523 }, { 72,5523 }, { 73,5523 },
{ 74,5523 }, { 75,5523 }, { 76,5523 }, { 77,5523 }, { 78,5523 },
{ 79,5523 }, { 80,5523 }, { 81,5523 }, { 82,5523 }, { 83,5523 },
{ 84,5523 }, { 85,5523 }, { 86,5523 }, { 87,5523 }, { 88,5523 },
{ 89,5523 }, { 90,5523 }, { 85,9692 }, { 0, 0 }, { 101, 447 },
{ 0, 0 }, { 95,5523 }, { 63, 0 }, { 97,5523 }, { 98,5523 },
{ 99,5523 }, { 100,5523 }, { 101,5523 }, { 102,5523 }, { 103,5523 },
{ 104,5523 }, { 105,5523 }, { 106,5523 }, { 107,5523 }, { 108,5523 },
{ 109,5523 }, { 110,5523 }, { 111,5523 }, { 112,5523 }, { 113,5523 },
{ 114,5523 }, { 115,5523 }, { 116,5523 }, { 117,5523 }, { 118,5523 },
{ 119,5523 }, { 120,5523 }, { 121,5523 }, { 122,5523 }, { 117,9715 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128,5523 },
{ 129,5523 }, { 130,5523 }, { 131,5523 }, { 132,5523 }, { 133,5523 },
{ 134,5523 }, { 135,5523 }, { 136,5523 }, { 137,5523 }, { 138,5523 },
{ 139,5523 }, { 140,5523 }, { 141,5523 }, { 142,5523 }, { 143,5523 },
{ 144,5523 }, { 145,5523 }, { 146,5523 }, { 147,5523 }, { 148,5523 },
{ 149,5523 }, { 150,5523 }, { 151,5523 }, { 152,5523 }, { 153,5523 },
{ 154,5523 }, { 155,5523 }, { 156,5523 }, { 157,5523 }, { 158,5523 },
{ 159,5523 }, { 160,5523 }, { 161,5523 }, { 162,5523 }, { 163,5523 },
{ 164,5523 }, { 165,5523 }, { 166,5523 }, { 167,5523 }, { 168,5523 },
{ 169,5523 }, { 170,5523 }, { 171,5523 }, { 172,5523 }, { 173,5523 },
{ 174,5523 }, { 175,5523 }, { 176,5523 }, { 177,5523 }, { 178,5523 },
{ 179,5523 }, { 180,5523 }, { 181,5523 }, { 182,5523 }, { 183,5523 },
{ 184,5523 }, { 185,5523 }, { 186,5523 }, { 187,5523 }, { 188,5523 },
{ 189,5523 }, { 190,5523 }, { 191,5523 }, { 192,5523 }, { 193,5523 },
{ 194,5523 }, { 195,5523 }, { 196,5523 }, { 197,5523 }, { 198,5523 },
{ 199,5523 }, { 200,5523 }, { 201,5523 }, { 202,5523 }, { 203,5523 },
{ 204,5523 }, { 205,5523 }, { 206,5523 }, { 207,5523 }, { 208,5523 },
{ 209,5523 }, { 210,5523 }, { 211,5523 }, { 212,5523 }, { 213,5523 },
{ 214,5523 }, { 215,5523 }, { 216,5523 }, { 217,5523 }, { 218,5523 },
{ 219,5523 }, { 220,5523 }, { 221,5523 }, { 222,5523 }, { 223,5523 },
{ 224,5523 }, { 225,5523 }, { 226,5523 }, { 227,5523 }, { 228,5523 },
{ 229,5523 }, { 230,5523 }, { 231,5523 }, { 232,5523 }, { 233,5523 },
{ 234,5523 }, { 235,5523 }, { 236,5523 }, { 237,5523 }, { 238,5523 },
{ 239,5523 }, { 240,5523 }, { 241,5523 }, { 242,5523 }, { 243,5523 },
{ 244,5523 }, { 245,5523 }, { 246,5523 }, { 247,5523 }, { 248,5523 },
{ 249,5523 }, { 250,5523 }, { 251,5523 }, { 252,5523 }, { 253,5523 },
{ 254,5523 }, { 255,5523 }, { 0, 69 }, { 0,29667 }, { 0, 60 },
{ 0,29665 }, { 0, 18 }, { 0,29663 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 69 }, { 0,29656 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 59 }, { 0,29651 },
{ 0, 15 }, { 0,29649 }, { 0, 0 }, { 0, 10 }, { 0,29646 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 69 }, { 0,29637 }, { 0, 0 },
{ 0, 0 }, { 33,5147 }, { 0, 0 }, { 35,5147 }, { 0, 0 },
{ 37,5147 }, { 38,5147 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 42,5147 }, { 43,5147 }, { 33,5136 }, { 45,5147 }, { 35,5136 },
{ 47,5147 }, { 37,5136 }, { 38,5136 }, { 34, 170 }, { 0, 0 },
{ 0, 0 }, { 42,5136 }, { 43,5136 }, { 39, 172 }, { 45,5512 },
{ 0, 0 }, { 47,5136 }, { 0, 0 }, { 60,5147 }, { 61,5147 },
{ 62,5147 }, { 63,5147 }, { 64,5147 }, { 63,-226 }, { 45,10420 },
{ 0, 7 }, { 0,29599 }, { 0, 4 }, { 0,29597 }, { 60,5136 },
{ 61,5136 }, { 62,5136 }, { 63,5136 }, { 64,5136 }, { 46,-277 },
{ 0, 0 }, { 48,5751 }, { 49,5751 }, { 50,5751 }, { 51,5751 },
{ 52,5751 }, { 53,5751 }, { 54,5751 }, { 55,5751 }, { 56,5751 },
{ 57,5751 }, { 0, 57 }, { 0,29578 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 94,5147 }, { 0, 0 }, { 96,5147 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 69 }, { 0,29566 },
{ 0, 72 }, { 0,29564 }, { 0, 0 }, { 94,5136 }, { 0, 0 },
{ 96,5136 }, { 0, 0 }, { 0, 0 }, { 42, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 47, 2 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 17 }, { 0,29546 },
{ 0, 30 }, { 0,29544 }, { 124,5147 }, { 0, 0 }, { 126,5147 },
{ 0, 23 }, { 0,29539 }, { 0, 38 }, { 0,29537 }, { 0, 45 },
{ 0,29535 }, { 0, 0 }, { 33,5046 }, { 124,5136 }, { 35,5046 },
{ 126,5136 }, { 37,5046 }, { 38,5046 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 42,5705 }, { 43,5046 }, { 0, 0 }, { 45,5046 },
{ 0, 0 }, { 47,5046 }, { 46,5705 }, { 0, 0 }, { 48,5769 },
{ 49,5769 }, { 50,5769 }, { 51,5769 }, { 52,5769 }, { 53,5769 },
{ 54,5769 }, { 55,5769 }, { 56,5769 }, { 57,5769 }, { 60,5046 },
{ 61,5046 }, { 62,5046 }, { 63,5046 }, { 64,5046 }, { 45,10706 },
{ 0, 69 }, { 0,29499 }, { 0, 55 }, { 0,29497 }, { 0, 0 },
{ 69,5791 }, { 45,11004 }, { 0, 25 }, { 0,29492 }, { 0, 0 },
{ 0, 0 }, { 0, 69 }, { 0,29488 }, { 0, 0 }, { 0, 28 },
{ 0,29485 }, { 0, 74 }, { 0,29483 }, { 0, 50 }, { 0,29481 },
{ 0, 21 }, { 0,29479 }, { 0, 14 }, { 0,29477 }, { 0, 10 },
{ 0,29475 }, { 0, 13 }, { 0,29473 }, { 94,5046 }, { 0, 0 },
{ 96,5046 }, { 0, 17 }, { 0,29468 }, { 0, 0 }, { 33,4979 },
{ 0, 0 }, { 35,4979 }, { 101,5791 }, { 37,4979 }, { 38,4979 },
{ 0, 41 }, { 0,29459 }, { 0, 0 }, { 42,4979 }, { 43,4979 },
{ 33,4968 }, { 45,4979 }, { 35,4968 }, { 47,4979 }, { 37,4968 },
{ 38,4968 }, { 0, 0 }, { 0, 0 }, { 45,11918 }, { 42,4968 },
{ 43,4968 }, { 0, 0 }, { 45,4968 }, { 124,5046 }, { 47,4968 },
{ 126,5046 }, { 60,4979 }, { 61,5766 }, { 62,5807 }, { 63,4979 },
{ 64,4979 }, { 0, 0 }, { 0, 23 }, { 0,29432 }, { 0, 0 },
{ 45,12544 }, { 0, 0 }, { 60,4968 }, { 61,4968 }, { 62,5863 },
{ 63,4968 }, { 64,4968 }, { 45,13569 }, { 0, 69 }, { 0,29421 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 83, 100 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 94,4979 }, { 0, 0 }, { 96,4979 }, { 83, 377 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 55 }, { 0,29397 }, { 0, 25 },
{ 0,29395 }, { 94,4968 }, { 0, 0 }, { 96,4968 }, { 0, 0 },
{ 0, 78 }, { 0,29389 }, { 33,4901 }, { 45,14565 }, { 35,4901 },
{ 0, 0 }, { 37,4901 }, { 38,4901 }, { 115, 100 }, { 0, 0 },
{ 0, 0 }, { 42,4901 }, { 43,4901 }, { 0, 0 }, { 45,4901 },
{ 124,4979 }, { 47,4901 }, { 126,4979 }, { 0, 0 }, { 0, 0 },
{ 115, 377 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 124,4968 }, { 0, 0 }, { 126,4968 }, { 60,4901 },
{ 61,5807 }, { 62,4901 }, { 63,4901 }, { 64,4901 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 36,5855 }, { 0, 0 }, { 0, 0 },
{ 45,15687 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,5855 },
{ 49,5855 }, { 50,5855 }, { 51,5855 }, { 52,5855 }, { 53,5855 },
{ 54,5855 }, { 55,5855 }, { 56,5855 }, { 57,5855 }, { 0, 0 },
{ 67, 548 }, { 0, 0 }, { 0, 0 }, { 94,4901 }, { 63,-502 },
{ 96,4901 }, { 65,5855 }, { 66,5855 }, { 67,5855 }, { 68,5855 },
{ 69,5855 }, { 70,5855 }, { 71,5855 }, { 72,5855 }, { 73,5855 },
{ 74,5855 }, { 75,5855 }, { 76,5855 }, { 77,5855 }, { 78,5855 },
{ 79,5855 }, { 80,5855 }, { 81,5855 }, { 82,5855 }, { 83,5855 },
{ 84,5855 }, { 85,5855 }, { 86,5855 }, { 87,5855 }, { 88,5855 },
{ 89,5855 }, { 90,5855 }, { 99, 548 }, { 124,4901 }, { 0, 0 },
{ 126,4901 }, { 95,5855 }, { 0, 0 }, { 97,5855 }, { 98,5855 },
{ 99,5855 }, { 100,5855 }, { 101,5855 }, { 102,5855 }, { 103,5855 },
{ 104,5855 }, { 105,5855 }, { 106,5855 }, { 107,5855 }, { 108,5855 },
{ 109,5855 }, { 110,5855 }, { 111,5855 }, { 112,5855 }, { 113,5855 },
{ 114,5855 }, { 115,5855 }, { 116,5855 }, { 117,5855 }, { 118,5855 },
{ 119,5855 }, { 120,5855 }, { 121,5855 }, { 122,5855 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128,5855 },
{ 129,5855 }, { 130,5855 }, { 131,5855 }, { 132,5855 }, { 133,5855 },
{ 134,5855 }, { 135,5855 }, { 136,5855 }, { 137,5855 }, { 138,5855 },
{ 139,5855 }, { 140,5855 }, { 141,5855 }, { 142,5855 }, { 143,5855 },
{ 144,5855 }, { 145,5855 }, { 146,5855 }, { 147,5855 }, { 148,5855 },
{ 149,5855 }, { 150,5855 }, { 151,5855 }, { 152,5855 }, { 153,5855 },
{ 154,5855 }, { 155,5855 }, { 156,5855 }, { 157,5855 }, { 158,5855 },
{ 159,5855 }, { 160,5855 }, { 161,5855 }, { 162,5855 }, { 163,5855 },
{ 164,5855 }, { 165,5855 }, { 166,5855 }, { 167,5855 }, { 168,5855 },
{ 169,5855 }, { 170,5855 }, { 171,5855 }, { 172,5855 }, { 173,5855 },
{ 174,5855 }, { 175,5855 }, { 176,5855 }, { 177,5855 }, { 178,5855 },
{ 179,5855 }, { 180,5855 }, { 181,5855 }, { 182,5855 }, { 183,5855 },
{ 184,5855 }, { 185,5855 }, { 186,5855 }, { 187,5855 }, { 188,5855 },
{ 189,5855 }, { 190,5855 }, { 191,5855 }, { 192,5855 }, { 193,5855 },
{ 194,5855 }, { 195,5855 }, { 196,5855 }, { 197,5855 }, { 198,5855 },
{ 199,5855 }, { 200,5855 }, { 201,5855 }, { 202,5855 }, { 203,5855 },
{ 204,5855 }, { 205,5855 }, { 206,5855 }, { 207,5855 }, { 208,5855 },
{ 209,5855 }, { 210,5855 }, { 211,5855 }, { 212,5855 }, { 213,5855 },
{ 214,5855 }, { 215,5855 }, { 216,5855 }, { 217,5855 }, { 218,5855 },
{ 219,5855 }, { 220,5855 }, { 221,5855 }, { 222,5855 }, { 223,5855 },
{ 224,5855 }, { 225,5855 }, { 226,5855 }, { 227,5855 }, { 228,5855 },
{ 229,5855 }, { 230,5855 }, { 231,5855 }, { 232,5855 }, { 233,5855 },
{ 234,5855 }, { 235,5855 }, { 236,5855 }, { 237,5855 }, { 238,5855 },
{ 239,5855 }, { 240,5855 }, { 241,5855 }, { 242,5855 }, { 243,5855 },
{ 244,5855 }, { 245,5855 }, { 246,5855 }, { 247,5855 }, { 248,5855 },
{ 249,5855 }, { 250,5855 }, { 251,5855 }, { 252,5855 }, { 253,5855 },
{ 254,5855 }, { 255,5855 }, { 0, 78 }, { 0,29132 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 28 }, { 0,29108 }, { 0, 39 }, { 0,29106 },
{ 0, 40 }, { 0,29104 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 36,5598 },
{ 0, 0 }, { 0, 0 }, { 39,-757 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 48,5598 }, { 49,5598 }, { 50,5598 }, { 51,5598 },
{ 52,5598 }, { 53,5598 }, { 54,5598 }, { 55,5598 }, { 56,5598 },
{ 57,5598 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 63,-759 }, { 0, 0 }, { 65,5598 }, { 66,5598 },
{ 67,5598 }, { 68,5598 }, { 69,5598 }, { 70,5598 }, { 71,5598 },
{ 72,5598 }, { 73,5598 }, { 74,5598 }, { 75,5598 }, { 76,5598 },
{ 77,5598 }, { 78,5598 }, { 79,5598 }, { 80,5598 }, { 81,5598 },
{ 82,5598 }, { 83,5598 }, { 84,5598 }, { 85,5598 }, { 86,5598 },
{ 87,5598 }, { 88,5598 }, { 89,5598 }, { 90,5598 }, { 67, 261 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,5598 }, { 0, 0 },
{ 97,5598 }, { 98,5598 }, { 99,5598 }, { 100,5598 }, { 101,5598 },
{ 102,5598 }, { 103,5598 }, { 104,5598 }, { 105,5598 }, { 106,5598 },
{ 107,5598 }, { 108,5598 }, { 109,5598 }, { 110,5598 }, { 111,5598 },
{ 112,5598 }, { 113,5598 }, { 114,5598 }, { 115,5598 }, { 116,5598 },
{ 117,5598 }, { 118,5598 }, { 119,5598 }, { 120,5598 }, { 121,5598 },
{ 122,5598 }, { 99, 261 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 128,5598 }, { 129,5598 }, { 130,5598 }, { 131,5598 },
{ 132,5598 }, { 133,5598 }, { 134,5598 }, { 135,5598 }, { 136,5598 },
{ 137,5598 }, { 138,5598 }, { 139,5598 }, { 140,5598 }, { 141,5598 },
{ 142,5598 }, { 143,5598 }, { 144,5598 }, { 145,5598 }, { 146,5598 },
{ 147,5598 }, { 148,5598 }, { 149,5598 }, { 150,5598 }, { 151,5598 },
{ 152,5598 }, { 153,5598 }, { 154,5598 }, { 155,5598 }, { 156,5598 },
{ 157,5598 }, { 158,5598 }, { 159,5598 }, { 160,5598 }, { 161,5598 },
{ 162,5598 }, { 163,5598 }, { 164,5598 }, { 165,5598 }, { 166,5598 },
{ 167,5598 }, { 168,5598 }, { 169,5598 }, { 170,5598 }, { 171,5598 },
{ 172,5598 }, { 173,5598 }, { 174,5598 }, { 175,5598 }, { 176,5598 },
{ 177,5598 }, { 178,5598 }, { 179,5598 }, { 180,5598 }, { 181,5598 },
{ 182,5598 }, { 183,5598 }, { 184,5598 }, { 185,5598 }, { 186,5598 },
{ 187,5598 }, { 188,5598 }, { 189,5598 }, { 190,5598 }, { 191,5598 },
{ 192,5598 }, { 193,5598 }, { 194,5598 }, { 195,5598 }, { 196,5598 },
{ 197,5598 }, { 198,5598 }, { 199,5598 }, { 200,5598 }, { 201,5598 },
{ 202,5598 }, { 203,5598 }, { 204,5598 }, { 205,5598 }, { 206,5598 },
{ 207,5598 }, { 208,5598 }, { 209,5598 }, { 210,5598 }, { 211,5598 },
{ 212,5598 }, { 213,5598 }, { 214,5598 }, { 215,5598 }, { 216,5598 },
{ 217,5598 }, { 218,5598 }, { 219,5598 }, { 220,5598 }, { 221,5598 },
{ 222,5598 }, { 223,5598 }, { 224,5598 }, { 225,5598 }, { 226,5598 },
{ 227,5598 }, { 228,5598 }, { 229,5598 }, { 230,5598 }, { 231,5598 },
{ 232,5598 }, { 233,5598 }, { 234,5598 }, { 235,5598 }, { 236,5598 },
{ 237,5598 }, { 238,5598 }, { 239,5598 }, { 240,5598 }, { 241,5598 },
{ 242,5598 }, { 243,5598 }, { 244,5598 }, { 245,5598 }, { 246,5598 },
{ 247,5598 }, { 248,5598 }, { 249,5598 }, { 250,5598 }, { 251,5598 },
{ 252,5598 }, { 253,5598 }, { 254,5598 }, { 255,5598 }, { 0, 78 },
{ 0,28875 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 55 }, { 0,28849 }, { 0, 28 }, { 0,28847 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 36,5341 }, { 0, 0 }, { 0, 0 }, { 39,-1011 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,5341 }, { 49,5341 },
{ 50,5341 }, { 51,5341 }, { 52,5341 }, { 53,5341 }, { 54,5341 },
{ 55,5341 }, { 56,5341 }, { 57,5341 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 63,-790 }, { 0, 0 },
{ 65,5341 }, { 66,5341 }, { 67,5341 }, { 68,5341 }, { 69,5341 },
{ 70,5341 }, { 71,5341 }, { 72,5341 }, { 73,5341 }, { 74,5341 },
{ 75,5341 }, { 76,5341 }, { 77,5341 }, { 78,5341 }, { 79,5341 },
{ 80,5341 }, { 81,5341 }, { 82,5341 }, { 83,5341 }, { 84,5341 },
{ 85,5341 }, { 86,5341 }, { 87,5341 }, { 88,5341 }, { 89,5341 },
{ 90,5341 }, { 65, 242 }, { 0, 0 }, { 65, 242 }, { 0, 0 },
{ 95,5341 }, { 0, 0 }, { 97,5341 }, { 98,5341 }, { 99,5341 },
{ 100,5341 }, { 101,5341 }, { 102,5341 }, { 103,5341 }, { 104,5341 },
{ 105,5341 }, { 106,5341 }, { 107,5341 }, { 108,5341 }, { 109,5341 },
{ 110,5341 }, { 111,5341 }, { 112,5341 }, { 113,5341 }, { 114,5341 },
{ 115,5341 }, { 116,5341 }, { 117,5341 }, { 118,5341 }, { 119,5341 },
{ 120,5341 }, { 121,5341 }, { 122,5341 }, { 97, 242 }, { 0, 0 },
{ 97, 242 }, { 0, 0 }, { 0, 0 }, { 128,5341 }, { 129,5341 },
{ 130,5341 }, { 131,5341 }, { 132,5341 }, { 133,5341 }, { 134,5341 },
{ 135,5341 }, { 136,5341 }, { 137,5341 }, { 138,5341 }, { 139,5341 },
{ 140,5341 }, { 141,5341 }, { 142,5341 }, { 143,5341 }, { 144,5341 },
{ 145,5341 }, { 146,5341 }, { 147,5341 }, { 148,5341 }, { 149,5341 },
{ 150,5341 }, { 151,5341 }, { 152,5341 }, { 153,5341 }, { 154,5341 },
{ 155,5341 }, { 156,5341 }, { 157,5341 }, { 158,5341 }, { 159,5341 },
{ 160,5341 }, { 161,5341 }, { 162,5341 }, { 163,5341 }, { 164,5341 },
{ 165,5341 }, { 166,5341 }, { 167,5341 }, { 168,5341 }, { 169,5341 },
{ 170,5341 }, { 171,5341 }, { 172,5341 }, { 173,5341 }, { 174,5341 },
{ 175,5341 }, { 176,5341 }, { 177,5341 }, { 178,5341 }, { 179,5341 },
{ 180,5341 }, { 181,5341 }, { 182,5341 }, { 183,5341 }, { 184,5341 },
{ 185,5341 }, { 186,5341 }, { 187,5341 }, { 188,5341 }, { 189,5341 },
{ 190,5341 }, { 191,5341 }, { 192,5341 }, { 193,5341 }, { 194,5341 },
{ 195,5341 }, { 196,5341 }, { 197,5341 }, { 198,5341 }, { 199,5341 },
{ 200,5341 }, { 201,5341 }, { 202,5341 }, { 203,5341 }, { 204,5341 },
{ 205,5341 }, { 206,5341 }, { 207,5341 }, { 208,5341 }, { 209,5341 },
{ 210,5341 }, { 211,5341 }, { 212,5341 }, { 213,5341 }, { 214,5341 },
{ 215,5341 }, { 216,5341 }, { 217,5341 }, { 218,5341 }, { 219,5341 },
{ 220,5341 }, { 221,5341 }, { 222,5341 }, { 223,5341 }, { 224,5341 },
{ 225,5341 }, { 226,5341 }, { 227,5341 }, { 228,5341 }, { 229,5341 },
{ 230,5341 }, { 231,5341 }, { 232,5341 }, { 233,5341 }, { 234,5341 },
{ 235,5341 }, { 236,5341 }, { 237,5341 }, { 238,5341 }, { 239,5341 },
{ 240,5341 }, { 241,5341 }, { 242,5341 }, { 243,5341 }, { 244,5341 },
{ 245,5341 }, { 246,5341 }, { 247,5341 }, { 248,5341 }, { 249,5341 },
{ 250,5341 }, { 251,5341 }, { 252,5341 }, { 253,5341 }, { 254,5341 },
{ 255,5341 }, { 0, 78 }, { 0,28618 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 55 }, { 0,28607 }, { 0, 28 },
{ 0,28605 }, { 0, 33 }, { 0,28603 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 55 },
{ 0,28595 }, { 0, 28 }, { 0,28593 }, { 0, 34 }, { 0,28591 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 36,5084 }, { 0, 0 },
{ 0, 0 }, { 39,-1045 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48,5084 }, { 49,5084 }, { 50,5084 }, { 51,5084 }, { 52,5084 },
{ 53,5084 }, { 54,5084 }, { 55,5084 }, { 56,5084 }, { 57,5084 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 63,-1273 }, { 0, 0 }, { 65,5084 }, { 66,5084 }, { 67,5084 },
{ 68,5084 }, { 69,5084 }, { 70,5084 }, { 71,5084 }, { 72,5084 },
{ 73,5084 }, { 74,5084 }, { 75,5084 }, { 76,5084 }, { 77,5084 },
{ 78,5084 }, { 79,5084 }, { 80,5084 }, { 81,5084 }, { 82,5084 },
{ 83,5084 }, { 84,5084 }, { 85,5084 }, { 86,5084 }, { 87,5084 },
{ 88,5084 }, { 89,5084 }, { 90,5084 }, { 80, 12 }, { 69,21847 },
{ 80, 12 }, { 69,21869 }, { 95,5084 }, { 0, 0 }, { 97,5084 },
{ 98,5084 }, { 99,5084 }, { 100,5084 }, { 101,5084 }, { 102,5084 },
{ 103,5084 }, { 104,5084 }, { 105,5084 }, { 106,5084 }, { 107,5084 },
{ 108,5084 }, { 109,5084 }, { 110,5084 }, { 111,5084 }, { 112,5084 },
{ 113,5084 }, { 114,5084 }, { 115,5084 }, { 116,5084 }, { 117,5084 },
{ 118,5084 }, { 119,5084 }, { 120,5084 }, { 121,5084 }, { 122,5084 },
{ 112, 12 }, { 101,21847 }, { 112, 12 }, { 101,21869 }, { 0, 0 },
{ 128,5084 }, { 129,5084 }, { 130,5084 }, { 131,5084 }, { 132,5084 },
{ 133,5084 }, { 134,5084 }, { 135,5084 }, { 136,5084 }, { 137,5084 },
{ 138,5084 }, { 139,5084 }, { 140,5084 }, { 141,5084 }, { 142,5084 },
{ 143,5084 }, { 144,5084 }, { 145,5084 }, { 146,5084 }, { 147,5084 },
{ 148,5084 }, { 149,5084 }, { 150,5084 }, { 151,5084 }, { 152,5084 },
{ 153,5084 }, { 154,5084 }, { 155,5084 }, { 156,5084 }, { 157,5084 },
{ 158,5084 }, { 159,5084 }, { 160,5084 }, { 161,5084 }, { 162,5084 },
{ 163,5084 }, { 164,5084 }, { 165,5084 }, { 166,5084 }, { 167,5084 },
{ 168,5084 }, { 169,5084 }, { 170,5084 }, { 171,5084 }, { 172,5084 },
{ 173,5084 }, { 174,5084 }, { 175,5084 }, { 176,5084 }, { 177,5084 },
{ 178,5084 }, { 179,5084 }, { 180,5084 }, { 181,5084 }, { 182,5084 },
{ 183,5084 }, { 184,5084 }, { 185,5084 }, { 186,5084 }, { 187,5084 },
{ 188,5084 }, { 189,5084 }, { 190,5084 }, { 191,5084 }, { 192,5084 },
{ 193,5084 }, { 194,5084 }, { 195,5084 }, { 196,5084 }, { 197,5084 },
{ 198,5084 }, { 199,5084 }, { 200,5084 }, { 201,5084 }, { 202,5084 },
{ 203,5084 }, { 204,5084 }, { 205,5084 }, { 206,5084 }, { 207,5084 },
{ 208,5084 }, { 209,5084 }, { 210,5084 }, { 211,5084 }, { 212,5084 },
{ 213,5084 }, { 214,5084 }, { 215,5084 }, { 216,5084 }, { 217,5084 },
{ 218,5084 }, { 219,5084 }, { 220,5084 }, { 221,5084 }, { 222,5084 },
{ 223,5084 }, { 224,5084 }, { 225,5084 }, { 226,5084 }, { 227,5084 },
{ 228,5084 }, { 229,5084 }, { 230,5084 }, { 231,5084 }, { 232,5084 },
{ 233,5084 }, { 234,5084 }, { 235,5084 }, { 236,5084 }, { 237,5084 },
{ 238,5084 }, { 239,5084 }, { 240,5084 }, { 241,5084 }, { 242,5084 },
{ 243,5084 }, { 244,5084 }, { 245,5084 }, { 246,5084 }, { 247,5084 },
{ 248,5084 }, { 249,5084 }, { 250,5084 }, { 251,5084 }, { 252,5084 },
{ 253,5084 }, { 254,5084 }, { 255,5084 }, { 0, 78 }, { 0,28361 },
{ 0, 55 }, { 0,28359 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 28 }, { 0,28348 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 55 }, { 0,28341 },
{ 0, 28 }, { 0,28339 }, { 0, 56 }, { 0,28337 }, { 0, 29 },
{ 0,28335 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 36,4827 }, { 0, 0 }, { 38,-1290 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,22485 }, { 48,4827 }, { 49,4827 }, { 50,4827 },
{ 51,4827 }, { 52,4827 }, { 53,4827 }, { 54,4827 }, { 55,4827 },
{ 56,4827 }, { 57,4827 }, { 45,22732 }, { 39, 4 }, { 0, 0 },
{ 39, 4 }, { 0, 0 }, { 63,-1530 }, { 0, 0 }, { 65,4827 },
{ 66,4827 }, { 67,4827 }, { 68,4827 }, { 69,4827 }, { 70,4827 },
{ 71,4827 }, { 72,4827 }, { 73,4827 }, { 74,4827 }, { 75,4827 },
{ 76,4827 }, { 77,4827 }, { 78,4827 }, { 79,4827 }, { 80,4827 },
{ 81,4827 }, { 82,4827 }, { 83,4827 }, { 84,4827 }, { 85,4827 },
{ 86,4827 }, { 87,4827 }, { 88,4827 }, { 89,4827 }, { 90,4827 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,4827 },
{ 0, 0 }, { 97,4827 }, { 98,4827 }, { 99,4827 }, { 100,4827 },
{ 101,4827 }, { 102,4827 }, { 103,4827 }, { 104,4827 }, { 105,4827 },
{ 106,4827 }, { 107,4827 }, { 108,4827 }, { 109,4827 }, { 110,4827 },
{ 111,4827 }, { 112,4827 }, { 113,4827 }, { 114,4827 }, { 115,4827 },
{ 116,4827 }, { 117,4827 }, { 118,4827 }, { 119,4827 }, { 120,4827 },
{ 121,4827 }, { 122,4827 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 128,4827 }, { 129,4827 }, { 130,4827 },
{ 131,4827 }, { 132,4827 }, { 133,4827 }, { 134,4827 }, { 135,4827 },
{ 136,4827 }, { 137,4827 }, { 138,4827 }, { 139,4827 }, { 140,4827 },
{ 141,4827 }, { 142,4827 }, { 143,4827 }, { 144,4827 }, { 145,4827 },
{ 146,4827 }, { 147,4827 }, { 148,4827 }, { 149,4827 }, { 150,4827 },
{ 151,4827 }, { 152,4827 }, { 153,4827 }, { 154,4827 }, { 155,4827 },
{ 156,4827 }, { 157,4827 }, { 158,4827 }, { 159,4827 }, { 160,4827 },
{ 161,4827 }, { 162,4827 }, { 163,4827 }, { 164,4827 }, { 165,4827 },
{ 166,4827 }, { 167,4827 }, { 168,4827 }, { 169,4827 }, { 170,4827 },
{ 171,4827 }, { 172,4827 }, { 173,4827 }, { 174,4827 }, { 175,4827 },
{ 176,4827 }, { 177,4827 }, { 178,4827 }, { 179,4827 }, { 180,4827 },
{ 181,4827 }, { 182,4827 }, { 183,4827 }, { 184,4827 }, { 185,4827 },
{ 186,4827 }, { 187,4827 }, { 188,4827 }, { 189,4827 }, { 190,4827 },
{ 191,4827 }, { 192,4827 }, { 193,4827 }, { 194,4827 }, { 195,4827 },
{ 196,4827 }, { 197,4827 }, { 198,4827 }, { 199,4827 }, { 200,4827 },
{ 201,4827 }, { 202,4827 }, { 203,4827 }, { 204,4827 }, { 205,4827 },
{ 206,4827 }, { 207,4827 }, { 208,4827 }, { 209,4827 }, { 210,4827 },
{ 211,4827 }, { 212,4827 }, { 213,4827 }, { 214,4827 }, { 215,4827 },
{ 216,4827 }, { 217,4827 }, { 218,4827 }, { 219,4827 }, { 220,4827 },
{ 221,4827 }, { 222,4827 }, { 223,4827 }, { 224,4827 }, { 225,4827 },
{ 226,4827 }, { 227,4827 }, { 228,4827 }, { 229,4827 }, { 230,4827 },
{ 231,4827 }, { 232,4827 }, { 233,4827 }, { 234,4827 }, { 235,4827 },
{ 236,4827 }, { 237,4827 }, { 238,4827 }, { 239,4827 }, { 240,4827 },
{ 241,4827 }, { 242,4827 }, { 243,4827 }, { 244,4827 }, { 245,4827 },
{ 246,4827 }, { 247,4827 }, { 248,4827 }, { 249,4827 }, { 250,4827 },
{ 251,4827 }, { 252,4827 }, { 253,4827 }, { 254,4827 }, { 255,4827 },
{ 0, 78 }, { 0,28104 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 36,4570 }, { 0, 0 }, { 0, 0 },
{ 39,-1545 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,4570 },
{ 49,4570 }, { 50,4570 }, { 51,4570 }, { 52,4570 }, { 53,4570 },
{ 54,4570 }, { 55,4570 }, { 56,4570 }, { 57,4570 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 63,-1787 },
{ 0, 0 }, { 65,4570 }, { 66,4570 }, { 67,4570 }, { 68,4570 },
{ 69,4570 }, { 70,4570 }, { 71,4570 }, { 72,4570 }, { 73,4570 },
{ 74,4570 }, { 75,4570 }, { 76,4570 }, { 77,4570 }, { 78,4570 },
{ 79,4570 }, { 80,4570 }, { 81,4570 }, { 82,4570 }, { 83,4570 },
{ 84,4570 }, { 85,4570 }, { 86,4570 }, { 87,4570 }, { 88,4570 },
{ 89,4570 }, { 90,4570 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 95,4570 }, { 0, 0 }, { 97,4570 }, { 98,4570 },
{ 99,4570 }, { 100,4570 }, { 101,4570 }, { 102,4570 }, { 103,4570 },
{ 104,4570 }, { 105,4570 }, { 106,4570 }, { 107,4570 }, { 108,4570 },
{ 109,4570 }, { 110,4570 }, { 111,4570 }, { 112,4570 }, { 113,4570 },
{ 114,4570 }, { 115,4570 }, { 116,4570 }, { 117,4570 }, { 118,4570 },
{ 119,4570 }, { 120,4570 }, { 121,4570 }, { 122,4570 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128,4570 },
{ 129,4570 }, { 130,4570 }, { 131,4570 }, { 132,4570 }, { 133,4570 },
{ 134,4570 }, { 135,4570 }, { 136,4570 }, { 137,4570 }, { 138,4570 },
{ 139,4570 }, { 140,4570 }, { 141,4570 }, { 142,4570 }, { 143,4570 },
{ 144,4570 }, { 145,4570 }, { 146,4570 }, { 147,4570 }, { 148,4570 },
{ 149,4570 }, { 150,4570 }, { 151,4570 }, { 152,4570 }, { 153,4570 },
{ 154,4570 }, { 155,4570 }, { 156,4570 }, { 157,4570 }, { 158,4570 },
{ 159,4570 }, { 160,4570 }, { 161,4570 }, { 162,4570 }, { 163,4570 },
{ 164,4570 }, { 165,4570 }, { 166,4570 }, { 167,4570 }, { 168,4570 },
{ 169,4570 }, { 170,4570 }, { 171,4570 }, { 172,4570 }, { 173,4570 },
{ 174,4570 }, { 175,4570 }, { 176,4570 }, { 177,4570 }, { 178,4570 },
{ 179,4570 }, { 180,4570 }, { 181,4570 }, { 182,4570 }, { 183,4570 },
{ 184,4570 }, { 185,4570 }, { 186,4570 }, { 187,4570 }, { 188,4570 },
{ 189,4570 }, { 190,4570 }, { 191,4570 }, { 192,4570 }, { 193,4570 },
{ 194,4570 }, { 195,4570 }, { 196,4570 }, { 197,4570 }, { 198,4570 },
{ 199,4570 }, { 200,4570 }, { 201,4570 }, { 202,4570 }, { 203,4570 },
{ 204,4570 }, { 205,4570 }, { 206,4570 }, { 207,4570 }, { 208,4570 },
{ 209,4570 }, { 210,4570 }, { 211,4570 }, { 212,4570 }, { 213,4570 },
{ 214,4570 }, { 215,4570 }, { 216,4570 }, { 217,4570 }, { 218,4570 },
{ 219,4570 }, { 220,4570 }, { 221,4570 }, { 222,4570 }, { 223,4570 },
{ 224,4570 }, { 225,4570 }, { 226,4570 }, { 227,4570 }, { 228,4570 },
{ 229,4570 }, { 230,4570 }, { 231,4570 }, { 232,4570 }, { 233,4570 },
{ 234,4570 }, { 235,4570 }, { 236,4570 }, { 237,4570 }, { 238,4570 },
{ 239,4570 }, { 240,4570 }, { 241,4570 }, { 242,4570 }, { 243,4570 },
{ 244,4570 }, { 245,4570 }, { 246,4570 }, { 247,4570 }, { 248,4570 },
{ 249,4570 }, { 250,4570 }, { 251,4570 }, { 252,4570 }, { 253,4570 },
{ 254,4570 }, { 255,4570 }, { 0, 12 }, { 0,27847 }, { 1,4570 },
{ 2,4570 }, { 3,4570 }, { 4,4570 }, { 5,4570 }, { 6,4570 },
{ 7,4570 }, { 8,4570 }, { 9,4570 }, { 10,4570 }, { 11,4570 },
{ 12,4570 }, { 13,4570 }, { 14,4570 }, { 15,4570 }, { 16,4570 },
{ 17,4570 }, { 18,4570 }, { 19,4570 }, { 20,4570 }, { 21,4570 },
{ 22,4570 }, { 23,4570 }, { 24,4570 }, { 25,4570 }, { 26,4570 },
{ 27,4570 }, { 28,4570 }, { 29,4570 }, { 30,4570 }, { 31,4570 },
{ 32,4570 }, { 33,4570 }, { 34,4570 }, { 35,4570 }, { 36,4570 },
{ 37,4570 }, { 38,4570 }, { 0, 0 }, { 40,4570 }, { 41,4570 },
{ 42,4570 }, { 43,4570 }, { 44,4570 }, { 45,4570 }, { 46,4570 },
{ 47,4570 }, { 48,4570 }, { 49,4570 }, { 50,4570 }, { 51,4570 },
{ 52,4570 }, { 53,4570 }, { 54,4570 }, { 55,4570 }, { 56,4570 },
{ 57,4570 }, { 58,4570 }, { 59,4570 }, { 60,4570 }, { 61,4570 },
{ 62,4570 }, { 63,4570 }, { 64,4570 }, { 65,4570 }, { 66,4570 },
{ 67,4570 }, { 68,4570 }, { 69,4570 }, { 70,4570 }, { 71,4570 },
{ 72,4570 }, { 73,4570 }, { 74,4570 }, { 75,4570 }, { 76,4570 },
{ 77,4570 }, { 78,4570 }, { 79,4570 }, { 80,4570 }, { 81,4570 },
{ 82,4570 }, { 83,4570 }, { 84,4570 }, { 85,4570 }, { 86,4570 },
{ 87,4570 }, { 88,4570 }, { 89,4570 }, { 90,4570 }, { 91,4570 },
{ 92,4570 }, { 93,4570 }, { 94,4570 }, { 95,4570 }, { 96,4570 },
{ 97,4570 }, { 98,4570 }, { 99,4570 }, { 100,4570 }, { 101,4570 },
{ 102,4570 }, { 103,4570 }, { 104,4570 }, { 105,4570 }, { 106,4570 },
{ 107,4570 }, { 108,4570 }, { 109,4570 }, { 110,4570 }, { 111,4570 },
{ 112,4570 }, { 113,4570 }, { 114,4570 }, { 115,4570 }, { 116,4570 },
{ 117,4570 }, { 118,4570 }, { 119,4570 }, { 120,4570 }, { 121,4570 },
{ 122,4570 }, { 123,4570 }, { 124,4570 }, { 125,4570 }, { 126,4570 },
{ 127,4570 }, { 128,4570 }, { 129,4570 }, { 130,4570 }, { 131,4570 },
{ 132,4570 }, { 133,4570 }, { 134,4570 }, { 135,4570 }, { 136,4570 },
{ 137,4570 }, { 138,4570 }, { 139,4570 }, { 140,4570 }, { 141,4570 },
{ 142,4570 }, { 143,4570 }, { 144,4570 }, { 145,4570 }, { 146,4570 },
{ 147,4570 }, { 148,4570 }, { 149,4570 }, { 150,4570 }, { 151,4570 },
{ 152,4570 }, { 153,4570 }, { 154,4570 }, { 155,4570 }, { 156,4570 },
{ 157,4570 }, { 158,4570 }, { 159,4570 }, { 160,4570 }, { 161,4570 },
{ 162,4570 }, { 163,4570 }, { 164,4570 }, { 165,4570 }, { 166,4570 },
{ 167,4570 }, { 168,4570 }, { 169,4570 }, { 170,4570 }, { 171,4570 },
{ 172,4570 }, { 173,4570 }, { 174,4570 }, { 175,4570 }, { 176,4570 },
{ 177,4570 }, { 178,4570 }, { 179,4570 }, { 180,4570 }, { 181,4570 },
{ 182,4570 }, { 183,4570 }, { 184,4570 }, { 185,4570 }, { 186,4570 },
{ 187,4570 }, { 188,4570 }, { 189,4570 }, { 190,4570 }, { 191,4570 },
{ 192,4570 }, { 193,4570 }, { 194,4570 }, { 195,4570 }, { 196,4570 },
{ 197,4570 }, { 198,4570 }, { 199,4570 }, { 200,4570 }, { 201,4570 },
{ 202,4570 }, { 203,4570 }, { 204,4570 }, { 205,4570 }, { 206,4570 },
{ 207,4570 }, { 208,4570 }, { 209,4570 }, { 210,4570 }, { 211,4570 },
{ 212,4570 }, { 213,4570 }, { 214,4570 }, { 215,4570 }, { 216,4570 },
{ 217,4570 }, { 218,4570 }, { 219,4570 }, { 220,4570 }, { 221,4570 },
{ 222,4570 }, { 223,4570 }, { 224,4570 }, { 225,4570 }, { 226,4570 },
{ 227,4570 }, { 228,4570 }, { 229,4570 }, { 230,4570 }, { 231,4570 },
{ 232,4570 }, { 233,4570 }, { 234,4570 }, { 235,4570 }, { 236,4570 },
{ 237,4570 }, { 238,4570 }, { 239,4570 }, { 240,4570 }, { 241,4570 },
{ 242,4570 }, { 243,4570 }, { 244,4570 }, { 245,4570 }, { 246,4570 },
{ 247,4570 }, { 248,4570 }, { 249,4570 }, { 250,4570 }, { 251,4570 },
{ 252,4570 }, { 253,4570 }, { 254,4570 }, { 255,4570 }, { 256,4570 },
{ 0, 9 }, { 0,27589 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,4570 }, { 10,4575 }, { 0, 0 }, { 12,4570 }, { 13,4575 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,4570 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-2057 }, { 0, 5 }, { 0,27542 }, { 1,4575 },
{ 2,4575 }, { 3,4575 }, { 4,4575 }, { 5,4575 }, { 6,4575 },
{ 7,4575 }, { 8,4575 }, { 9,4575 }, { 10,4575 }, { 11,4575 },
{ 12,4575 }, { 13,4575 }, { 14,4575 }, { 15,4575 }, { 16,4575 },
{ 17,4575 }, { 18,4575 }, { 19,4575 }, { 20,4575 }, { 21,4575 },
{ 22,4575 }, { 23,4575 }, { 24,4575 }, { 25,4575 }, { 26,4575 },
{ 27,4575 }, { 28,4575 }, { 29,4575 }, { 30,4575 }, { 31,4575 },
{ 32,4575 }, { 33,4575 }, { 34,4575 }, { 35,4575 }, { 36,4575 },
{ 37,4575 }, { 38,4575 }, { 39,4575 }, { 40,4575 }, { 41,4575 },
{ 0, 0 }, { 43,4575 }, { 44,4575 }, { 45,4575 }, { 46,4575 },
{ 0, 0 }, { 48,4575 }, { 49,4575 }, { 50,4575 }, { 51,4575 },
{ 52,4575 }, { 53,4575 }, { 54,4575 }, { 55,4575 }, { 56,4575 },
{ 57,4575 }, { 58,4575 }, { 59,4575 }, { 60,4575 }, { 61,4575 },
{ 62,4575 }, { 63,4575 }, { 64,4575 }, { 65,4575 }, { 66,4575 },
{ 67,4575 }, { 68,4575 }, { 69,4575 }, { 70,4575 }, { 71,4575 },
{ 72,4575 }, { 73,4575 }, { 74,4575 }, { 75,4575 }, { 76,4575 },
{ 77,4575 }, { 78,4575 }, { 79,4575 }, { 80,4575 }, { 81,4575 },
{ 82,4575 }, { 83,4575 }, { 84,4575 }, { 85,4575 }, { 86,4575 },
{ 87,4575 }, { 88,4575 }, { 89,4575 }, { 90,4575 }, { 91,4575 },
{ 92,4575 }, { 93,4575 }, { 94,4575 }, { 95,4575 }, { 96,4575 },
{ 97,4575 }, { 98,4575 }, { 99,4575 }, { 100,4575 }, { 101,4575 },
{ 102,4575 }, { 103,4575 }, { 104,4575 }, { 105,4575 }, { 106,4575 },
{ 107,4575 }, { 108,4575 }, { 109,4575 }, { 110,4575 }, { 111,4575 },
{ 112,4575 }, { 113,4575 }, { 114,4575 }, { 115,4575 }, { 116,4575 },
{ 117,4575 }, { 118,4575 }, { 119,4575 }, { 120,4575 }, { 121,4575 },
{ 122,4575 }, { 123,4575 }, { 124,4575 }, { 125,4575 }, { 126,4575 },
{ 127,4575 }, { 128,4575 }, { 129,4575 }, { 130,4575 }, { 131,4575 },
{ 132,4575 }, { 133,4575 }, { 134,4575 }, { 135,4575 }, { 136,4575 },
{ 137,4575 }, { 138,4575 }, { 139,4575 }, { 140,4575 }, { 141,4575 },
{ 142,4575 }, { 143,4575 }, { 144,4575 }, { 145,4575 }, { 146,4575 },
{ 147,4575 }, { 148,4575 }, { 149,4575 }, { 150,4575 }, { 151,4575 },
{ 152,4575 }, { 153,4575 }, { 154,4575 }, { 155,4575 }, { 156,4575 },
{ 157,4575 }, { 158,4575 }, { 159,4575 }, { 160,4575 }, { 161,4575 },
{ 162,4575 }, { 163,4575 }, { 164,4575 }, { 165,4575 }, { 166,4575 },
{ 167,4575 }, { 168,4575 }, { 169,4575 }, { 170,4575 }, { 171,4575 },
{ 172,4575 }, { 173,4575 }, { 174,4575 }, { 175,4575 }, { 176,4575 },
{ 177,4575 }, { 178,4575 }, { 179,4575 }, { 180,4575 }, { 181,4575 },
{ 182,4575 }, { 183,4575 }, { 184,4575 }, { 185,4575 }, { 186,4575 },
{ 187,4575 }, { 188,4575 }, { 189,4575 }, { 190,4575 }, { 191,4575 },
{ 192,4575 }, { 193,4575 }, { 194,4575 }, { 195,4575 }, { 196,4575 },
{ 197,4575 }, { 198,4575 }, { 199,4575 }, { 200,4575 }, { 201,4575 },
{ 202,4575 }, { 203,4575 }, { 204,4575 }, { 205,4575 }, { 206,4575 },
{ 207,4575 }, { 208,4575 }, { 209,4575 }, { 210,4575 }, { 211,4575 },
{ 212,4575 }, { 213,4575 }, { 214,4575 }, { 215,4575 }, { 216,4575 },
{ 217,4575 }, { 218,4575 }, { 219,4575 }, { 220,4575 }, { 221,4575 },
{ 222,4575 }, { 223,4575 }, { 224,4575 }, { 225,4575 }, { 226,4575 },
{ 227,4575 }, { 228,4575 }, { 229,4575 }, { 230,4575 }, { 231,4575 },
{ 232,4575 }, { 233,4575 }, { 234,4575 }, { 235,4575 }, { 236,4575 },
{ 237,4575 }, { 238,4575 }, { 239,4575 }, { 240,4575 }, { 241,4575 },
{ 242,4575 }, { 243,4575 }, { 244,4575 }, { 245,4575 }, { 246,4575 },
{ 247,4575 }, { 248,4575 }, { 249,4575 }, { 250,4575 }, { 251,4575 },
{ 252,4575 }, { 253,4575 }, { 254,4575 }, { 255,4575 }, { 256,4575 },
{ 0, 5 }, { 0,27284 }, { 1,4317 }, { 2,4317 }, { 3,4317 },
{ 4,4317 }, { 5,4317 }, { 6,4317 }, { 7,4317 }, { 8,4317 },
{ 9,4317 }, { 10,4317 }, { 11,4317 }, { 12,4317 }, { 13,4317 },
{ 14,4317 }, { 15,4317 }, { 16,4317 }, { 17,4317 }, { 18,4317 },
{ 19,4317 }, { 20,4317 }, { 21,4317 }, { 22,4317 }, { 23,4317 },
{ 24,4317 }, { 25,4317 }, { 26,4317 }, { 27,4317 }, { 28,4317 },
{ 29,4317 }, { 30,4317 }, { 31,4317 }, { 32,4317 }, { 33,4317 },
{ 34,4317 }, { 35,4317 }, { 36,4317 }, { 37,4317 }, { 38,4317 },
{ 39,4317 }, { 40,4317 }, { 41,4317 }, { 0, 0 }, { 43,4317 },
{ 44,4317 }, { 45,4317 }, { 46,4317 }, { 0, 0 }, { 48,4317 },
{ 49,4317 }, { 50,4317 }, { 51,4317 }, { 52,4317 }, { 53,4317 },
{ 54,4317 }, { 55,4317 }, { 56,4317 }, { 57,4317 }, { 58,4317 },
{ 59,4317 }, { 60,4317 }, { 61,4317 }, { 62,4317 }, { 63,4317 },
{ 64,4317 }, { 65,4317 }, { 66,4317 }, { 67,4317 }, { 68,4317 },
{ 69,4317 }, { 70,4317 }, { 71,4317 }, { 72,4317 }, { 73,4317 },
{ 74,4317 }, { 75,4317 }, { 76,4317 }, { 77,4317 }, { 78,4317 },
{ 79,4317 }, { 80,4317 }, { 81,4317 }, { 82,4317 }, { 83,4317 },
{ 84,4317 }, { 85,4317 }, { 86,4317 }, { 87,4317 }, { 88,4317 },
{ 89,4317 }, { 90,4317 }, { 91,4317 }, { 92,4317 }, { 93,4317 },
{ 94,4317 }, { 95,4317 }, { 96,4317 }, { 97,4317 }, { 98,4317 },
{ 99,4317 }, { 100,4317 }, { 101,4317 }, { 102,4317 }, { 103,4317 },
{ 104,4317 }, { 105,4317 }, { 106,4317 }, { 107,4317 }, { 108,4317 },
{ 109,4317 }, { 110,4317 }, { 111,4317 }, { 112,4317 }, { 113,4317 },
{ 114,4317 }, { 115,4317 }, { 116,4317 }, { 117,4317 }, { 118,4317 },
{ 119,4317 }, { 120,4317 }, { 121,4317 }, { 122,4317 }, { 123,4317 },
{ 124,4317 }, { 125,4317 }, { 126,4317 }, { 127,4317 }, { 128,4317 },
{ 129,4317 }, { 130,4317 }, { 131,4317 }, { 132,4317 }, { 133,4317 },
{ 134,4317 }, { 135,4317 }, { 136,4317 }, { 137,4317 }, { 138,4317 },
{ 139,4317 }, { 140,4317 }, { 141,4317 }, { 142,4317 }, { 143,4317 },
{ 144,4317 }, { 145,4317 }, { 146,4317 }, { 147,4317 }, { 148,4317 },
{ 149,4317 }, { 150,4317 }, { 151,4317 }, { 152,4317 }, { 153,4317 },
{ 154,4317 }, { 155,4317 }, { 156,4317 }, { 157,4317 }, { 158,4317 },
{ 159,4317 }, { 160,4317 }, { 161,4317 }, { 162,4317 }, { 163,4317 },
{ 164,4317 }, { 165,4317 }, { 166,4317 }, { 167,4317 }, { 168,4317 },
{ 169,4317 }, { 170,4317 }, { 171,4317 }, { 172,4317 }, { 173,4317 },
{ 174,4317 }, { 175,4317 }, { 176,4317 }, { 177,4317 }, { 178,4317 },
{ 179,4317 }, { 180,4317 }, { 181,4317 }, { 182,4317 }, { 183,4317 },
{ 184,4317 }, { 185,4317 }, { 186,4317 }, { 187,4317 }, { 188,4317 },
{ 189,4317 }, { 190,4317 }, { 191,4317 }, { 192,4317 }, { 193,4317 },
{ 194,4317 }, { 195,4317 }, { 196,4317 }, { 197,4317 }, { 198,4317 },
{ 199,4317 }, { 200,4317 }, { 201,4317 }, { 202,4317 }, { 203,4317 },
{ 204,4317 }, { 205,4317 }, { 206,4317 }, { 207,4317 }, { 208,4317 },
{ 209,4317 }, { 210,4317 }, { 211,4317 }, { 212,4317 }, { 213,4317 },
{ 214,4317 }, { 215,4317 }, { 216,4317 }, { 217,4317 }, { 218,4317 },
{ 219,4317 }, { 220,4317 }, { 221,4317 }, { 222,4317 }, { 223,4317 },
{ 224,4317 }, { 225,4317 }, { 226,4317 }, { 227,4317 }, { 228,4317 },
{ 229,4317 }, { 230,4317 }, { 231,4317 }, { 232,4317 }, { 233,4317 },
{ 234,4317 }, { 235,4317 }, { 236,4317 }, { 237,4317 }, { 238,4317 },
{ 239,4317 }, { 240,4317 }, { 241,4317 }, { 242,4317 }, { 243,4317 },
{ 244,4317 }, { 245,4317 }, { 246,4317 }, { 247,4317 }, { 248,4317 },
{ 249,4317 }, { 250,4317 }, { 251,4317 }, { 252,4317 }, { 253,4317 },
{ 254,4317 }, { 255,4317 }, { 256,4317 }, { 0, 58 }, { 0,27026 },
{ 1,4445 }, { 2,4445 }, { 3,4445 }, { 4,4445 }, { 5,4445 },
{ 6,4445 }, { 7,4445 }, { 8,4445 }, { 9,4445 }, { 10,4445 },
{ 11,4445 }, { 12,4445 }, { 13,4445 }, { 14,4445 }, { 15,4445 },
{ 16,4445 }, { 17,4445 }, { 18,4445 }, { 19,4445 }, { 20,4445 },
{ 21,4445 }, { 22,4445 }, { 23,4445 }, { 24,4445 }, { 25,4445 },
{ 26,4445 }, { 27,4445 }, { 28,4445 }, { 29,4445 }, { 30,4445 },
{ 31,4445 }, { 32,4445 }, { 33,4445 }, { 0, 0 }, { 35,4445 },
{ 36,4445 }, { 37,4445 }, { 38,4445 }, { 39,4445 }, { 40,4445 },
{ 41,4445 }, { 42,4445 }, { 43,4445 }, { 44,4445 }, { 45,4445 },
{ 46,4445 }, { 47,4445 }, { 48,4445 }, { 49,4445 }, { 50,4445 },
{ 51,4445 }, { 52,4445 }, { 53,4445 }, { 54,4445 }, { 55,4445 },
{ 56,4445 }, { 57,4445 }, { 58,4445 }, { 59,4445 }, { 60,4445 },
{ 61,4445 }, { 62,4445 }, { 63,4445 }, { 64,4445 }, { 65,4445 },
{ 66,4445 }, { 67,4445 }, { 68,4445 }, { 69,4445 }, { 70,4445 },
{ 71,4445 }, { 72,4445 }, { 73,4445 }, { 74,4445 }, { 75,4445 },
{ 76,4445 }, { 77,4445 }, { 78,4445 }, { 79,4445 }, { 80,4445 },
{ 81,4445 }, { 82,4445 }, { 83,4445 }, { 84,4445 }, { 85,4445 },
{ 86,4445 }, { 87,4445 }, { 88,4445 }, { 89,4445 }, { 90,4445 },
{ 91,4445 }, { 92,4445 }, { 93,4445 }, { 94,4445 }, { 95,4445 },
{ 96,4445 }, { 97,4445 }, { 98,4445 }, { 99,4445 }, { 100,4445 },
{ 101,4445 }, { 102,4445 }, { 103,4445 }, { 104,4445 }, { 105,4445 },
{ 106,4445 }, { 107,4445 }, { 108,4445 }, { 109,4445 }, { 110,4445 },
{ 111,4445 }, { 112,4445 }, { 113,4445 }, { 114,4445 }, { 115,4445 },
{ 116,4445 }, { 117,4445 }, { 118,4445 }, { 119,4445 }, { 120,4445 },
{ 121,4445 }, { 122,4445 }, { 123,4445 }, { 124,4445 }, { 125,4445 },
{ 126,4445 }, { 127,4445 }, { 128,4445 }, { 129,4445 }, { 130,4445 },
{ 131,4445 }, { 132,4445 }, { 133,4445 }, { 134,4445 }, { 135,4445 },
{ 136,4445 }, { 137,4445 }, { 138,4445 }, { 139,4445 }, { 140,4445 },
{ 141,4445 }, { 142,4445 }, { 143,4445 }, { 144,4445 }, { 145,4445 },
{ 146,4445 }, { 147,4445 }, { 148,4445 }, { 149,4445 }, { 150,4445 },
{ 151,4445 }, { 152,4445 }, { 153,4445 }, { 154,4445 }, { 155,4445 },
{ 156,4445 }, { 157,4445 }, { 158,4445 }, { 159,4445 }, { 160,4445 },
{ 161,4445 }, { 162,4445 }, { 163,4445 }, { 164,4445 }, { 165,4445 },
{ 166,4445 }, { 167,4445 }, { 168,4445 }, { 169,4445 }, { 170,4445 },
{ 171,4445 }, { 172,4445 }, { 173,4445 }, { 174,4445 }, { 175,4445 },
{ 176,4445 }, { 177,4445 }, { 178,4445 }, { 179,4445 }, { 180,4445 },
{ 181,4445 }, { 182,4445 }, { 183,4445 }, { 184,4445 }, { 185,4445 },
{ 186,4445 }, { 187,4445 }, { 188,4445 }, { 189,4445 }, { 190,4445 },
{ 191,4445 }, { 192,4445 }, { 193,4445 }, { 194,4445 }, { 195,4445 },
{ 196,4445 }, { 197,4445 }, { 198,4445 }, { 199,4445 }, { 200,4445 },
{ 201,4445 }, { 202,4445 }, { 203,4445 }, { 204,4445 }, { 205,4445 },
{ 206,4445 }, { 207,4445 }, { 208,4445 }, { 209,4445 }, { 210,4445 },
{ 211,4445 }, { 212,4445 }, { 213,4445 }, { 214,4445 }, { 215,4445 },
{ 216,4445 }, { 217,4445 }, { 218,4445 }, { 219,4445 }, { 220,4445 },
{ 221,4445 }, { 222,4445 }, { 223,4445 }, { 224,4445 }, { 225,4445 },
{ 226,4445 }, { 227,4445 }, { 228,4445 }, { 229,4445 }, { 230,4445 },
{ 231,4445 }, { 232,4445 }, { 233,4445 }, { 234,4445 }, { 235,4445 },
{ 236,4445 }, { 237,4445 }, { 238,4445 }, { 239,4445 }, { 240,4445 },
{ 241,4445 }, { 242,4445 }, { 243,4445 }, { 244,4445 }, { 245,4445 },
{ 246,4445 }, { 247,4445 }, { 248,4445 }, { 249,4445 }, { 250,4445 },
{ 251,4445 }, { 252,4445 }, { 253,4445 }, { 254,4445 }, { 255,4445 },
{ 256,4445 }, { 0, 11 }, { 0,26768 }, { 1,4445 }, { 2,4445 },
{ 3,4445 }, { 4,4445 }, { 5,4445 }, { 6,4445 }, { 7,4445 },
{ 8,4445 }, { 9,4445 }, { 10,4445 }, { 11,4445 }, { 12,4445 },
{ 13,4445 }, { 14,4445 }, { 15,4445 }, { 16,4445 }, { 17,4445 },
{ 18,4445 }, { 19,4445 }, { 20,4445 }, { 21,4445 }, { 22,4445 },
{ 23,4445 }, { 24,4445 }, { 25,4445 }, { 26,4445 }, { 27,4445 },
{ 28,4445 }, { 29,4445 }, { 30,4445 }, { 31,4445 }, { 32,4445 },
{ 33,4445 }, { 34,4445 }, { 35,4445 }, { 36,4445 }, { 37,4445 },
{ 38,4445 }, { 0, 0 }, { 40,4445 }, { 41,4445 }, { 42,4445 },
{ 43,4445 }, { 44,4445 }, { 45,4445 }, { 46,4445 }, { 47,4445 },
{ 48,4445 }, { 49,4445 }, { 50,4445 }, { 51,4445 }, { 52,4445 },
{ 53,4445 }, { 54,4445 }, { 55,4445 }, { 56,4445 }, { 57,4445 },
{ 58,4445 }, { 59,4445 }, { 60,4445 }, { 61,4445 }, { 62,4445 },
{ 63,4445 }, { 64,4445 }, { 65,4445 }, { 66,4445 }, { 67,4445 },
{ 68,4445 }, { 69,4445 }, { 70,4445 }, { 71,4445 }, { 72,4445 },
{ 73,4445 }, { 74,4445 }, { 75,4445 }, { 76,4445 }, { 77,4445 },
{ 78,4445 }, { 79,4445 }, { 80,4445 }, { 81,4445 }, { 82,4445 },
{ 83,4445 }, { 84,4445 }, { 85,4445 }, { 86,4445 }, { 87,4445 },
{ 88,4445 }, { 89,4445 }, { 90,4445 }, { 91,4445 }, { 92,4445 },
{ 93,4445 }, { 94,4445 }, { 95,4445 }, { 96,4445 }, { 97,4445 },
{ 98,4445 }, { 99,4445 }, { 100,4445 }, { 101,4445 }, { 102,4445 },
{ 103,4445 }, { 104,4445 }, { 105,4445 }, { 106,4445 }, { 107,4445 },
{ 108,4445 }, { 109,4445 }, { 110,4445 }, { 111,4445 }, { 112,4445 },
{ 113,4445 }, { 114,4445 }, { 115,4445 }, { 116,4445 }, { 117,4445 },
{ 118,4445 }, { 119,4445 }, { 120,4445 }, { 121,4445 }, { 122,4445 },
{ 123,4445 }, { 124,4445 }, { 125,4445 }, { 126,4445 }, { 127,4445 },
{ 128,4445 }, { 129,4445 }, { 130,4445 }, { 131,4445 }, { 132,4445 },
{ 133,4445 }, { 134,4445 }, { 135,4445 }, { 136,4445 }, { 137,4445 },
{ 138,4445 }, { 139,4445 }, { 140,4445 }, { 141,4445 }, { 142,4445 },
{ 143,4445 }, { 144,4445 }, { 145,4445 }, { 146,4445 }, { 147,4445 },
{ 148,4445 }, { 149,4445 }, { 150,4445 }, { 151,4445 }, { 152,4445 },
{ 153,4445 }, { 154,4445 }, { 155,4445 }, { 156,4445 }, { 157,4445 },
{ 158,4445 }, { 159,4445 }, { 160,4445 }, { 161,4445 }, { 162,4445 },
{ 163,4445 }, { 164,4445 }, { 165,4445 }, { 166,4445 }, { 167,4445 },
{ 168,4445 }, { 169,4445 }, { 170,4445 }, { 171,4445 }, { 172,4445 },
{ 173,4445 }, { 174,4445 }, { 175,4445 }, { 176,4445 }, { 177,4445 },
{ 178,4445 }, { 179,4445 }, { 180,4445 }, { 181,4445 }, { 182,4445 },
{ 183,4445 }, { 184,4445 }, { 185,4445 }, { 186,4445 }, { 187,4445 },
{ 188,4445 }, { 189,4445 }, { 190,4445 }, { 191,4445 }, { 192,4445 },
{ 193,4445 }, { 194,4445 }, { 195,4445 }, { 196,4445 }, { 197,4445 },
{ 198,4445 }, { 199,4445 }, { 200,4445 }, { 201,4445 }, { 202,4445 },
{ 203,4445 }, { 204,4445 }, { 205,4445 }, { 206,4445 }, { 207,4445 },
{ 208,4445 }, { 209,4445 }, { 210,4445 }, { 211,4445 }, { 212,4445 },
{ 213,4445 }, { 214,4445 }, { 215,4445 }, { 216,4445 }, { 217,4445 },
{ 218,4445 }, { 219,4445 }, { 220,4445 }, { 221,4445 }, { 222,4445 },
{ 223,4445 }, { 224,4445 }, { 225,4445 }, { 226,4445 }, { 227,4445 },
{ 228,4445 }, { 229,4445 }, { 230,4445 }, { 231,4445 }, { 232,4445 },
{ 233,4445 }, { 234,4445 }, { 235,4445 }, { 236,4445 }, { 237,4445 },
{ 238,4445 }, { 239,4445 }, { 240,4445 }, { 241,4445 }, { 242,4445 },
{ 243,4445 }, { 244,4445 }, { 245,4445 }, { 246,4445 }, { 247,4445 },
{ 248,4445 }, { 249,4445 }, { 250,4445 }, { 251,4445 }, { 252,4445 },
{ 253,4445 }, { 254,4445 }, { 255,4445 }, { 256,4445 }, { 0, 16 },
{ 0,26510 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,4445 },
{ 10,4450 }, { 0, 0 }, { 12,4445 }, { 13,4450 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32,4445 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 45,-3036 }, { 0, 32 }, { 0,26463 }, { 1,4450 }, { 2,4450 },
{ 3,4450 }, { 4,4450 }, { 5,4450 }, { 6,4450 }, { 7,4450 },
{ 8,4450 }, { 9,4450 }, { 10,4450 }, { 11,4450 }, { 12,4450 },
{ 13,4450 }, { 14,4450 }, { 15,4450 }, { 16,4450 }, { 17,4450 },
{ 18,4450 }, { 19,4450 }, { 20,4450 }, { 21,4450 }, { 22,4450 },
{ 23,4450 }, { 24,4450 }, { 25,4450 }, { 26,4450 }, { 27,4450 },
{ 28,4450 }, { 29,4450 }, { 30,4450 }, { 31,4450 }, { 32,4450 },
{ 33,4450 }, { 34,4450 }, { 35,4450 }, { 36,4450 }, { 37,4450 },
{ 38,4450 }, { 0, 0 }, { 40,4450 }, { 41,4450 }, { 42,4450 },
{ 43,4450 }, { 44,4450 }, { 45,4450 }, { 46,4450 }, { 47,4450 },
{ 48,4450 }, { 49,4450 }, { 50,4450 }, { 51,4450 }, { 52,4450 },
{ 53,4450 }, { 54,4450 }, { 55,4450 }, { 56,4450 }, { 57,4450 },
{ 58,4450 }, { 59,4450 }, { 60,4450 }, { 61,4450 }, { 62,4450 },
{ 63,4450 }, { 64,4450 }, { 65,4450 }, { 66,4450 }, { 67,4450 },
{ 68,4450 }, { 69,4450 }, { 70,4450 }, { 71,4450 }, { 72,4450 },
{ 73,4450 }, { 74,4450 }, { 75,4450 }, { 76,4450 }, { 77,4450 },
{ 78,4450 }, { 79,4450 }, { 80,4450 }, { 81,4450 }, { 82,4450 },
{ 83,4450 }, { 84,4450 }, { 85,4450 }, { 86,4450 }, { 87,4450 },
{ 88,4450 }, { 89,4450 }, { 90,4450 }, { 91,4450 }, { 0, 0 },
{ 93,4450 }, { 94,4450 }, { 95,4450 }, { 96,4450 }, { 97,4450 },
{ 98,4450 }, { 99,4450 }, { 100,4450 }, { 101,4450 }, { 102,4450 },
{ 103,4450 }, { 104,4450 }, { 105,4450 }, { 106,4450 }, { 107,4450 },
{ 108,4450 }, { 109,4450 }, { 110,4450 }, { 111,4450 }, { 112,4450 },
{ 113,4450 }, { 114,4450 }, { 115,4450 }, { 116,4450 }, { 117,4450 },
{ 118,4450 }, { 119,4450 }, { 120,4450 }, { 121,4450 }, { 122,4450 },
{ 123,4450 }, { 124,4450 }, { 125,4450 }, { 126,4450 }, { 127,4450 },
{ 128,4450 }, { 129,4450 }, { 130,4450 }, { 131,4450 }, { 132,4450 },
{ 133,4450 }, { 134,4450 }, { 135,4450 }, { 136,4450 }, { 137,4450 },
{ 138,4450 }, { 139,4450 }, { 140,4450 }, { 141,4450 }, { 142,4450 },
{ 143,4450 }, { 144,4450 }, { 145,4450 }, { 146,4450 }, { 147,4450 },
{ 148,4450 }, { 149,4450 }, { 150,4450 }, { 151,4450 }, { 152,4450 },
{ 153,4450 }, { 154,4450 }, { 155,4450 }, { 156,4450 }, { 157,4450 },
{ 158,4450 }, { 159,4450 }, { 160,4450 }, { 161,4450 }, { 162,4450 },
{ 163,4450 }, { 164,4450 }, { 165,4450 }, { 166,4450 }, { 167,4450 },
{ 168,4450 }, { 169,4450 }, { 170,4450 }, { 171,4450 }, { 172,4450 },
{ 173,4450 }, { 174,4450 }, { 175,4450 }, { 176,4450 }, { 177,4450 },
{ 178,4450 }, { 179,4450 }, { 180,4450 }, { 181,4450 }, { 182,4450 },
{ 183,4450 }, { 184,4450 }, { 185,4450 }, { 186,4450 }, { 187,4450 },
{ 188,4450 }, { 189,4450 }, { 190,4450 }, { 191,4450 }, { 192,4450 },
{ 193,4450 }, { 194,4450 }, { 195,4450 }, { 196,4450 }, { 197,4450 },
{ 198,4450 }, { 199,4450 }, { 200,4450 }, { 201,4450 }, { 202,4450 },
{ 203,4450 }, { 204,4450 }, { 205,4450 }, { 206,4450 }, { 207,4450 },
{ 208,4450 }, { 209,4450 }, { 210,4450 }, { 211,4450 }, { 212,4450 },
{ 213,4450 }, { 214,4450 }, { 215,4450 }, { 216,4450 }, { 217,4450 },
{ 218,4450 }, { 219,4450 }, { 220,4450 }, { 221,4450 }, { 222,4450 },
{ 223,4450 }, { 224,4450 }, { 225,4450 }, { 226,4450 }, { 227,4450 },
{ 228,4450 }, { 229,4450 }, { 230,4450 }, { 231,4450 }, { 232,4450 },
{ 233,4450 }, { 234,4450 }, { 235,4450 }, { 236,4450 }, { 237,4450 },
{ 238,4450 }, { 239,4450 }, { 240,4450 }, { 241,4450 }, { 242,4450 },
{ 243,4450 }, { 244,4450 }, { 245,4450 }, { 246,4450 }, { 247,4450 },
{ 248,4450 }, { 249,4450 }, { 250,4450 }, { 251,4450 }, { 252,4450 },
{ 253,4450 }, { 254,4450 }, { 255,4450 }, { 256,4450 }, { 0, 32 },
{ 0,26205 }, { 1,4192 }, { 2,4192 }, { 3,4192 }, { 4,4192 },
{ 5,4192 }, { 6,4192 }, { 7,4192 }, { 8,4192 }, { 9,4192 },
{ 10,4192 }, { 11,4192 }, { 12,4192 }, { 13,4192 }, { 14,4192 },
{ 15,4192 }, { 16,4192 }, { 17,4192 }, { 18,4192 }, { 19,4192 },
{ 20,4192 }, { 21,4192 }, { 22,4192 }, { 23,4192 }, { 24,4192 },
{ 25,4192 }, { 26,4192 }, { 27,4192 }, { 28,4192 }, { 29,4192 },
{ 30,4192 }, { 31,4192 }, { 32,4192 }, { 33,4192 }, { 34,4192 },
{ 35,4192 }, { 36,4192 }, { 37,4192 }, { 38,4192 }, { 0, 0 },
{ 40,4192 }, { 41,4192 }, { 42,4192 }, { 43,4192 }, { 44,4192 },
{ 45,4192 }, { 46,4192 }, { 47,4192 }, { 48,4192 }, { 49,4192 },
{ 50,4192 }, { 51,4192 }, { 52,4192 }, { 53,4192 }, { 54,4192 },
{ 55,4192 }, { 56,4192 }, { 57,4192 }, { 58,4192 }, { 59,4192 },
{ 60,4192 }, { 61,4192 }, { 62,4192 }, { 63,4192 }, { 64,4192 },
{ 65,4192 }, { 66,4192 }, { 67,4192 }, { 68,4192 }, { 69,4192 },
{ 70,4192 }, { 71,4192 }, { 72,4192 }, { 73,4192 }, { 74,4192 },
{ 75,4192 }, { 76,4192 }, { 77,4192 }, { 78,4192 }, { 79,4192 },
{ 80,4192 }, { 81,4192 }, { 82,4192 }, { 83,4192 }, { 84,4192 },
{ 85,4192 }, { 86,4192 }, { 87,4192 }, { 88,4192 }, { 89,4192 },
{ 90,4192 }, { 91,4192 }, { 0, 0 }, { 93,4192 }, { 94,4192 },
{ 95,4192 }, { 96,4192 }, { 97,4192 }, { 98,4192 }, { 99,4192 },
{ 100,4192 }, { 101,4192 }, { 102,4192 }, { 103,4192 }, { 104,4192 },
{ 105,4192 }, { 106,4192 }, { 107,4192 }, { 108,4192 }, { 109,4192 },
{ 110,4192 }, { 111,4192 }, { 112,4192 }, { 113,4192 }, { 114,4192 },
{ 115,4192 }, { 116,4192 }, { 117,4192 }, { 118,4192 }, { 119,4192 },
{ 120,4192 }, { 121,4192 }, { 122,4192 }, { 123,4192 }, { 124,4192 },
{ 125,4192 }, { 126,4192 }, { 127,4192 }, { 128,4192 }, { 129,4192 },
{ 130,4192 }, { 131,4192 }, { 132,4192 }, { 133,4192 }, { 134,4192 },
{ 135,4192 }, { 136,4192 }, { 137,4192 }, { 138,4192 }, { 139,4192 },
{ 140,4192 }, { 141,4192 }, { 142,4192 }, { 143,4192 }, { 144,4192 },
{ 145,4192 }, { 146,4192 }, { 147,4192 }, { 148,4192 }, { 149,4192 },
{ 150,4192 }, { 151,4192 }, { 152,4192 }, { 153,4192 }, { 154,4192 },
{ 155,4192 }, { 156,4192 }, { 157,4192 }, { 158,4192 }, { 159,4192 },
{ 160,4192 }, { 161,4192 }, { 162,4192 }, { 163,4192 }, { 164,4192 },
{ 165,4192 }, { 166,4192 }, { 167,4192 }, { 168,4192 }, { 169,4192 },
{ 170,4192 }, { 171,4192 }, { 172,4192 }, { 173,4192 }, { 174,4192 },
{ 175,4192 }, { 176,4192 }, { 177,4192 }, { 178,4192 }, { 179,4192 },
{ 180,4192 }, { 181,4192 }, { 182,4192 }, { 183,4192 }, { 184,4192 },
{ 185,4192 }, { 186,4192 }, { 187,4192 }, { 188,4192 }, { 189,4192 },
{ 190,4192 }, { 191,4192 }, { 192,4192 }, { 193,4192 }, { 194,4192 },
{ 195,4192 }, { 196,4192 }, { 197,4192 }, { 198,4192 }, { 199,4192 },
{ 200,4192 }, { 201,4192 }, { 202,4192 }, { 203,4192 }, { 204,4192 },
{ 205,4192 }, { 206,4192 }, { 207,4192 }, { 208,4192 }, { 209,4192 },
{ 210,4192 }, { 211,4192 }, { 212,4192 }, { 213,4192 }, { 214,4192 },
{ 215,4192 }, { 216,4192 }, { 217,4192 }, { 218,4192 }, { 219,4192 },
{ 220,4192 }, { 221,4192 }, { 222,4192 }, { 223,4192 }, { 224,4192 },
{ 225,4192 }, { 226,4192 }, { 227,4192 }, { 228,4192 }, { 229,4192 },
{ 230,4192 }, { 231,4192 }, { 232,4192 }, { 233,4192 }, { 234,4192 },
{ 235,4192 }, { 236,4192 }, { 237,4192 }, { 238,4192 }, { 239,4192 },
{ 240,4192 }, { 241,4192 }, { 242,4192 }, { 243,4192 }, { 244,4192 },
{ 245,4192 }, { 246,4192 }, { 247,4192 }, { 248,4192 }, { 249,4192 },
{ 250,4192 }, { 251,4192 }, { 252,4192 }, { 253,4192 }, { 254,4192 },
{ 255,4192 }, { 256,4192 }, { 0, 22 }, { 0,25947 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 9,4192 }, { 10,4197 }, { 0, 0 },
{ 12,4192 }, { 13,4197 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 32,4192 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 39,-3597 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-3592 }, { 0, 42 },
{ 0,25900 }, { 1,-3637 }, { 2,-3637 }, { 3,-3637 }, { 4,-3637 },
{ 5,-3637 }, { 6,-3637 }, { 7,-3637 }, { 8,-3637 }, { 9,-3637 },
{ 10,-3637 }, { 11,-3637 }, { 12,-3637 }, { 13,-3637 }, { 14,-3637 },
{ 15,-3637 }, { 16,-3637 }, { 17,-3637 }, { 18,-3637 }, { 19,-3637 },
{ 20,-3637 }, { 21,-3637 }, { 22,-3637 }, { 23,-3637 }, { 24,-3637 },
{ 25,-3637 }, { 26,-3637 }, { 27,-3637 }, { 28,-3637 }, { 29,-3637 },
{ 30,-3637 }, { 31,-3637 }, { 32,-3637 }, { 33,-3637 }, { 34,-3637 },
{ 35,-3637 }, { 36,-3637 }, { 37,-3637 }, { 38,-3637 }, { 39,-3637 },
{ 40,-3637 }, { 41,-3637 }, { 42,-3637 }, { 43,-3637 }, { 44,-3637 },
{ 45,-3637 }, { 46,-3637 }, { 47,-3637 }, { 48,4152 }, { 49,4152 },
{ 50,4152 }, { 51,4152 }, { 52,4152 }, { 53,4152 }, { 54,4152 },
{ 55,4152 }, { 56,-3637 }, { 57,-3637 }, { 58,-3637 }, { 59,-3637 },
{ 60,-3637 }, { 61,-3637 }, { 62,-3637 }, { 63,-3637 }, { 64,-3637 },
{ 65,-3637 }, { 66,-3637 }, { 67,-3637 }, { 68,-3637 }, { 69,-3637 },
{ 70,-3637 }, { 71,-3637 }, { 72,-3637 }, { 73,-3637 }, { 74,-3637 },
{ 75,-3637 }, { 76,-3637 }, { 77,-3637 }, { 78,-3637 }, { 79,-3637 },
{ 80,-3637 }, { 81,-3637 }, { 82,-3637 }, { 83,-3637 }, { 84,-3637 },
{ 85,4165 }, { 86,-3637 }, { 87,-3637 }, { 88,-3637 }, { 89,-3637 },
{ 90,-3637 }, { 91,-3637 }, { 92,-3637 }, { 93,-3637 }, { 94,-3637 },
{ 95,-3637 }, { 96,-3637 }, { 97,-3637 }, { 98,-3637 }, { 99,-3637 },
{ 100,-3637 }, { 101,-3637 }, { 102,-3637 }, { 103,-3637 }, { 104,-3637 },
{ 105,-3637 }, { 106,-3637 }, { 107,-3637 }, { 108,-3637 }, { 109,-3637 },
{ 110,-3637 }, { 111,-3637 }, { 112,-3637 }, { 113,-3637 }, { 114,-3637 },
{ 115,-3637 }, { 116,-3637 }, { 117,4188 }, { 118,-3637 }, { 119,-3637 },
{ 120,4226 }, { 121,-3637 }, { 122,-3637 }, { 123,-3637 }, { 124,-3637 },
{ 125,-3637 }, { 126,-3637 }, { 127,-3637 }, { 128,-3637 }, { 129,-3637 },
{ 130,-3637 }, { 131,-3637 }, { 132,-3637 }, { 133,-3637 }, { 134,-3637 },
{ 135,-3637 }, { 136,-3637 }, { 137,-3637 }, { 138,-3637 }, { 139,-3637 },
{ 140,-3637 }, { 141,-3637 }, { 142,-3637 }, { 143,-3637 }, { 144,-3637 },
{ 145,-3637 }, { 146,-3637 }, { 147,-3637 }, { 148,-3637 }, { 149,-3637 },
{ 150,-3637 }, { 151,-3637 }, { 152,-3637 }, { 153,-3637 }, { 154,-3637 },
{ 155,-3637 }, { 156,-3637 }, { 157,-3637 }, { 158,-3637 }, { 159,-3637 },
{ 160,-3637 }, { 161,-3637 }, { 162,-3637 }, { 163,-3637 }, { 164,-3637 },
{ 165,-3637 }, { 166,-3637 }, { 167,-3637 }, { 168,-3637 }, { 169,-3637 },
{ 170,-3637 }, { 171,-3637 }, { 172,-3637 }, { 173,-3637 }, { 174,-3637 },
{ 175,-3637 }, { 176,-3637 }, { 177,-3637 }, { 178,-3637 }, { 179,-3637 },
{ 180,-3637 }, { 181,-3637 }, { 182,-3637 }, { 183,-3637 }, { 184,-3637 },
{ 185,-3637 }, { 186,-3637 }, { 187,-3637 }, { 188,-3637 }, { 189,-3637 },
{ 190,-3637 }, { 191,-3637 }, { 192,-3637 }, { 193,-3637 }, { 194,-3637 },
{ 195,-3637 }, { 196,-3637 }, { 197,-3637 }, { 198,-3637 }, { 199,-3637 },
{ 200,-3637 }, { 201,-3637 }, { 202,-3637 }, { 203,-3637 }, { 204,-3637 },
{ 205,-3637 }, { 206,-3637 }, { 207,-3637 }, { 208,-3637 }, { 209,-3637 },
{ 210,-3637 }, { 211,-3637 }, { 212,-3637 }, { 213,-3637 }, { 214,-3637 },
{ 215,-3637 }, { 216,-3637 }, { 217,-3637 }, { 218,-3637 }, { 219,-3637 },
{ 220,-3637 }, { 221,-3637 }, { 222,-3637 }, { 223,-3637 }, { 224,-3637 },
{ 225,-3637 }, { 226,-3637 }, { 227,-3637 }, { 228,-3637 }, { 229,-3637 },
{ 230,-3637 }, { 231,-3637 }, { 232,-3637 }, { 233,-3637 }, { 234,-3637 },
{ 235,-3637 }, { 236,-3637 }, { 237,-3637 }, { 238,-3637 }, { 239,-3637 },
{ 240,-3637 }, { 241,-3637 }, { 242,-3637 }, { 243,-3637 }, { 244,-3637 },
{ 245,-3637 }, { 246,-3637 }, { 247,-3637 }, { 248,-3637 }, { 249,-3637 },
{ 250,-3637 }, { 251,-3637 }, { 252,-3637 }, { 253,-3637 }, { 254,-3637 },
{ 255,-3637 }, { 256,-3637 }, { 0, 31 }, { 0,25642 }, { 1,4072 },
{ 2,4072 }, { 3,4072 }, { 4,4072 }, { 5,4072 }, { 6,4072 },
{ 7,4072 }, { 8,4072 }, { 9,4072 }, { 10,4072 }, { 11,4072 },
{ 12,4072 }, { 13,4072 }, { 14,4072 }, { 15,4072 }, { 16,4072 },
{ 17,4072 }, { 18,4072 }, { 19,4072 }, { 20,4072 }, { 21,4072 },
{ 22,4072 }, { 23,4072 }, { 24,4072 }, { 25,4072 }, { 26,4072 },
{ 27,4072 }, { 28,4072 }, { 29,4072 }, { 30,4072 }, { 31,4072 },
{ 32,4072 }, { 33,4072 }, { 34,4072 }, { 35,4072 }, { 36,4072 },
{ 37,4072 }, { 38,4072 }, { 0, 0 }, { 40,4072 }, { 41,4072 },
{ 42,4072 }, { 43,4072 }, { 44,4072 }, { 45,4072 }, { 46,4072 },
{ 47,4072 }, { 48,4072 }, { 49,4072 }, { 50,4072 }, { 51,4072 },
{ 52,4072 }, { 53,4072 }, { 54,4072 }, { 55,4072 }, { 56,4072 },
{ 57,4072 }, { 58,4072 }, { 59,4072 }, { 60,4072 }, { 61,4072 },
{ 62,4072 }, { 63,4072 }, { 64,4072 }, { 65,4072 }, { 66,4072 },
{ 67,4072 }, { 68,4072 }, { 69,4072 }, { 70,4072 }, { 71,4072 },
{ 72,4072 }, { 73,4072 }, { 74,4072 }, { 75,4072 }, { 76,4072 },
{ 77,4072 }, { 78,4072 }, { 79,4072 }, { 80,4072 }, { 81,4072 },
{ 82,4072 }, { 83,4072 }, { 84,4072 }, { 85,4072 }, { 86,4072 },
{ 87,4072 }, { 88,4072 }, { 89,4072 }, { 90,4072 }, { 91,4072 },
{ 92,4072 }, { 93,4072 }, { 94,4072 }, { 95,4072 }, { 96,4072 },
{ 97,4072 }, { 98,4072 }, { 99,4072 }, { 100,4072 }, { 101,4072 },
{ 102,4072 }, { 103,4072 }, { 104,4072 }, { 105,4072 }, { 106,4072 },
{ 107,4072 }, { 108,4072 }, { 109,4072 }, { 110,4072 }, { 111,4072 },
{ 112,4072 }, { 113,4072 }, { 114,4072 }, { 115,4072 }, { 116,4072 },
{ 117,4072 }, { 118,4072 }, { 119,4072 }, { 120,4072 }, { 121,4072 },
{ 122,4072 }, { 123,4072 }, { 124,4072 }, { 125,4072 }, { 126,4072 },
{ 127,4072 }, { 128,4072 }, { 129,4072 }, { 130,4072 }, { 131,4072 },
{ 132,4072 }, { 133,4072 }, { 134,4072 }, { 135,4072 }, { 136,4072 },
{ 137,4072 }, { 138,4072 }, { 139,4072 }, { 140,4072 }, { 141,4072 },
{ 142,4072 }, { 143,4072 }, { 144,4072 }, { 145,4072 }, { 146,4072 },
{ 147,4072 }, { 148,4072 }, { 149,4072 }, { 150,4072 }, { 151,4072 },
{ 152,4072 }, { 153,4072 }, { 154,4072 }, { 155,4072 }, { 156,4072 },
{ 157,4072 }, { 158,4072 }, { 159,4072 }, { 160,4072 }, { 161,4072 },
{ 162,4072 }, { 163,4072 }, { 164,4072 }, { 165,4072 }, { 166,4072 },
{ 167,4072 }, { 168,4072 }, { 169,4072 }, { 170,4072 }, { 171,4072 },
{ 172,4072 }, { 173,4072 }, { 174,4072 }, { 175,4072 }, { 176,4072 },
{ 177,4072 }, { 178,4072 }, { 179,4072 }, { 180,4072 }, { 181,4072 },
{ 182,4072 }, { 183,4072 }, { 184,4072 }, { 185,4072 }, { 186,4072 },
{ 187,4072 }, { 188,4072 }, { 189,4072 }, { 190,4072 }, { 191,4072 },
{ 192,4072 }, { 193,4072 }, { 194,4072 }, { 195,4072 }, { 196,4072 },
{ 197,4072 }, { 198,4072 }, { 199,4072 }, { 200,4072 }, { 201,4072 },
{ 202,4072 }, { 203,4072 }, { 204,4072 }, { 205,4072 }, { 206,4072 },
{ 207,4072 }, { 208,4072 }, { 209,4072 }, { 210,4072 }, { 211,4072 },
{ 212,4072 }, { 213,4072 }, { 214,4072 }, { 215,4072 }, { 216,4072 },
{ 217,4072 }, { 218,4072 }, { 219,4072 }, { 220,4072 }, { 221,4072 },
{ 222,4072 }, { 223,4072 }, { 224,4072 }, { 225,4072 }, { 226,4072 },
{ 227,4072 }, { 228,4072 }, { 229,4072 }, { 230,4072 }, { 231,4072 },
{ 232,4072 }, { 233,4072 }, { 234,4072 }, { 235,4072 }, { 236,4072 },
{ 237,4072 }, { 238,4072 }, { 239,4072 }, { 240,4072 }, { 241,4072 },
{ 242,4072 }, { 243,4072 }, { 244,4072 }, { 245,4072 }, { 246,4072 },
{ 247,4072 }, { 248,4072 }, { 249,4072 }, { 250,4072 }, { 251,4072 },
{ 252,4072 }, { 253,4072 }, { 254,4072 }, { 255,4072 }, { 256,4072 },
{ 0, 22 }, { 0,25384 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,3629 }, { 10,3634 }, { 0, 0 }, { 12,3629 }, { 13,3634 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3629 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,-4160 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-4155 }, { 0, 46 }, { 0,25337 }, { 1,4025 },
{ 2,4025 }, { 3,4025 }, { 4,4025 }, { 5,4025 }, { 6,4025 },
{ 7,4025 }, { 8,4025 }, { 9,4025 }, { 10,4025 }, { 11,4025 },
{ 12,4025 }, { 13,4025 }, { 14,4025 }, { 15,4025 }, { 16,4025 },
{ 17,4025 }, { 18,4025 }, { 19,4025 }, { 20,4025 }, { 21,4025 },
{ 22,4025 }, { 23,4025 }, { 24,4025 }, { 25,4025 }, { 26,4025 },
{ 27,4025 }, { 28,4025 }, { 29,4025 }, { 30,4025 }, { 31,4025 },
{ 32,4025 }, { 33,4025 }, { 34,4025 }, { 35,4025 }, { 0, 0 },
{ 37,4025 }, { 38,4025 }, { 39,4025 }, { 40,4025 }, { 41,4025 },
{ 42,4025 }, { 43,4025 }, { 44,4025 }, { 45,4025 }, { 46,4025 },
{ 47,4025 }, { 48,4025 }, { 49,4025 }, { 50,4025 }, { 51,4025 },
{ 52,4025 }, { 53,4025 }, { 54,4025 }, { 55,4025 }, { 56,4025 },
{ 57,4025 }, { 58,4025 }, { 59,4025 }, { 60,4025 }, { 61,4025 },
{ 62,4025 }, { 63,4025 }, { 64,4025 }, { 65,4025 }, { 66,4025 },
{ 67,4025 }, { 68,4025 }, { 69,4025 }, { 70,4025 }, { 71,4025 },
{ 72,4025 }, { 73,4025 }, { 74,4025 }, { 75,4025 }, { 76,4025 },
{ 77,4025 }, { 78,4025 }, { 79,4025 }, { 80,4025 }, { 81,4025 },
{ 82,4025 }, { 83,4025 }, { 84,4025 }, { 85,4025 }, { 86,4025 },
{ 87,4025 }, { 88,4025 }, { 89,4025 }, { 90,4025 }, { 91,4025 },
{ 92,4025 }, { 93,4025 }, { 94,4025 }, { 95,4025 }, { 96,4025 },
{ 97,4025 }, { 98,4025 }, { 99,4025 }, { 100,4025 }, { 101,4025 },
{ 102,4025 }, { 103,4025 }, { 104,4025 }, { 105,4025 }, { 106,4025 },
{ 107,4025 }, { 108,4025 }, { 109,4025 }, { 110,4025 }, { 111,4025 },
{ 112,4025 }, { 113,4025 }, { 114,4025 }, { 115,4025 }, { 116,4025 },
{ 117,4025 }, { 118,4025 }, { 119,4025 }, { 120,4025 }, { 121,4025 },
{ 122,4025 }, { 123,4025 }, { 124,4025 }, { 125,4025 }, { 126,4025 },
{ 127,4025 }, { 128,4025 }, { 129,4025 }, { 130,4025 }, { 131,4025 },
{ 132,4025 }, { 133,4025 }, { 134,4025 }, { 135,4025 }, { 136,4025 },
{ 137,4025 }, { 138,4025 }, { 139,4025 }, { 140,4025 }, { 141,4025 },
{ 142,4025 }, { 143,4025 }, { 144,4025 }, { 145,4025 }, { 146,4025 },
{ 147,4025 }, { 148,4025 }, { 149,4025 }, { 150,4025 }, { 151,4025 },
{ 152,4025 }, { 153,4025 }, { 154,4025 }, { 155,4025 }, { 156,4025 },
{ 157,4025 }, { 158,4025 }, { 159,4025 }, { 160,4025 }, { 161,4025 },
{ 162,4025 }, { 163,4025 }, { 164,4025 }, { 165,4025 }, { 166,4025 },
{ 167,4025 }, { 168,4025 }, { 169,4025 }, { 170,4025 }, { 171,4025 },
{ 172,4025 }, { 173,4025 }, { 174,4025 }, { 175,4025 }, { 176,4025 },
{ 177,4025 }, { 178,4025 }, { 179,4025 }, { 180,4025 }, { 181,4025 },
{ 182,4025 }, { 183,4025 }, { 184,4025 }, { 185,4025 }, { 186,4025 },
{ 187,4025 }, { 188,4025 }, { 189,4025 }, { 190,4025 }, { 191,4025 },
{ 192,4025 }, { 193,4025 }, { 194,4025 }, { 195,4025 }, { 196,4025 },
{ 197,4025 }, { 198,4025 }, { 199,4025 }, { 200,4025 }, { 201,4025 },
{ 202,4025 }, { 203,4025 }, { 204,4025 }, { 205,4025 }, { 206,4025 },
{ 207,4025 }, { 208,4025 }, { 209,4025 }, { 210,4025 }, { 211,4025 },
{ 212,4025 }, { 213,4025 }, { 214,4025 }, { 215,4025 }, { 216,4025 },
{ 217,4025 }, { 218,4025 }, { 219,4025 }, { 220,4025 }, { 221,4025 },
{ 222,4025 }, { 223,4025 }, { 224,4025 }, { 225,4025 }, { 226,4025 },
{ 227,4025 }, { 228,4025 }, { 229,4025 }, { 230,4025 }, { 231,4025 },
{ 232,4025 }, { 233,4025 }, { 234,4025 }, { 235,4025 }, { 236,4025 },
{ 237,4025 }, { 238,4025 }, { 239,4025 }, { 240,4025 }, { 241,4025 },
{ 242,4025 }, { 243,4025 }, { 244,4025 }, { 245,4025 }, { 246,4025 },
{ 247,4025 }, { 248,4025 }, { 249,4025 }, { 250,4025 }, { 251,4025 },
{ 252,4025 }, { 253,4025 }, { 254,4025 }, { 255,4025 }, { 256,4025 },
{ 0, 46 }, { 0,25079 }, { 1,3767 }, { 2,3767 }, { 3,3767 },
{ 4,3767 }, { 5,3767 }, { 6,3767 }, { 7,3767 }, { 8,3767 },
{ 9,3767 }, { 10,3767 }, { 11,3767 }, { 12,3767 }, { 13,3767 },
{ 14,3767 }, { 15,3767 }, { 16,3767 }, { 17,3767 }, { 18,3767 },
{ 19,3767 }, { 20,3767 }, { 21,3767 }, { 22,3767 }, { 23,3767 },
{ 24,3767 }, { 25,3767 }, { 26,3767 }, { 27,3767 }, { 28,3767 },
{ 29,3767 }, { 30,3767 }, { 31,3767 }, { 32,3767 }, { 33,3767 },
{ 34,3767 }, { 35,3767 }, { 0, 0 }, { 37,3767 }, { 38,3767 },
{ 39,3767 }, { 40,3767 }, { 41,3767 }, { 42,3767 }, { 43,3767 },
{ 44,3767 }, { 45,3767 }, { 46,3767 }, { 47,3767 }, { 48,3767 },
{ 49,3767 }, { 50,3767 }, { 51,3767 }, { 52,3767 }, { 53,3767 },
{ 54,3767 }, { 55,3767 }, { 56,3767 }, { 57,3767 }, { 58,3767 },
{ 59,3767 }, { 60,3767 }, { 61,3767 }, { 62,3767 }, { 63,3767 },
{ 64,3767 }, { 65,3767 }, { 66,3767 }, { 67,3767 }, { 68,3767 },
{ 69,3767 }, { 70,3767 }, { 71,3767 }, { 72,3767 }, { 73,3767 },
{ 74,3767 }, { 75,3767 }, { 76,3767 }, { 77,3767 }, { 78,3767 },
{ 79,3767 }, { 80,3767 }, { 81,3767 }, { 82,3767 }, { 83,3767 },
{ 84,3767 }, { 85,3767 }, { 86,3767 }, { 87,3767 }, { 88,3767 },
{ 89,3767 }, { 90,3767 }, { 91,3767 }, { 92,3767 }, { 93,3767 },
{ 94,3767 }, { 95,3767 }, { 96,3767 }, { 97,3767 }, { 98,3767 },
{ 99,3767 }, { 100,3767 }, { 101,3767 }, { 102,3767 }, { 103,3767 },
{ 104,3767 }, { 105,3767 }, { 106,3767 }, { 107,3767 }, { 108,3767 },
{ 109,3767 }, { 110,3767 }, { 111,3767 }, { 112,3767 }, { 113,3767 },
{ 114,3767 }, { 115,3767 }, { 116,3767 }, { 117,3767 }, { 118,3767 },
{ 119,3767 }, { 120,3767 }, { 121,3767 }, { 122,3767 }, { 123,3767 },
{ 124,3767 }, { 125,3767 }, { 126,3767 }, { 127,3767 }, { 128,3767 },
{ 129,3767 }, { 130,3767 }, { 131,3767 }, { 132,3767 }, { 133,3767 },
{ 134,3767 }, { 135,3767 }, { 136,3767 }, { 137,3767 }, { 138,3767 },
{ 139,3767 }, { 140,3767 }, { 141,3767 }, { 142,3767 }, { 143,3767 },
{ 144,3767 }, { 145,3767 }, { 146,3767 }, { 147,3767 }, { 148,3767 },
{ 149,3767 }, { 150,3767 }, { 151,3767 }, { 152,3767 }, { 153,3767 },
{ 154,3767 }, { 155,3767 }, { 156,3767 }, { 157,3767 }, { 158,3767 },
{ 159,3767 }, { 160,3767 }, { 161,3767 }, { 162,3767 }, { 163,3767 },
{ 164,3767 }, { 165,3767 }, { 166,3767 }, { 167,3767 }, { 168,3767 },
{ 169,3767 }, { 170,3767 }, { 171,3767 }, { 172,3767 }, { 173,3767 },
{ 174,3767 }, { 175,3767 }, { 176,3767 }, { 177,3767 }, { 178,3767 },
{ 179,3767 }, { 180,3767 }, { 181,3767 }, { 182,3767 }, { 183,3767 },
{ 184,3767 }, { 185,3767 }, { 186,3767 }, { 187,3767 }, { 188,3767 },
{ 189,3767 }, { 190,3767 }, { 191,3767 }, { 192,3767 }, { 193,3767 },
{ 194,3767 }, { 195,3767 }, { 196,3767 }, { 197,3767 }, { 198,3767 },
{ 199,3767 }, { 200,3767 }, { 201,3767 }, { 202,3767 }, { 203,3767 },
{ 204,3767 }, { 205,3767 }, { 206,3767 }, { 207,3767 }, { 208,3767 },
{ 209,3767 }, { 210,3767 }, { 211,3767 }, { 212,3767 }, { 213,3767 },
{ 214,3767 }, { 215,3767 }, { 216,3767 }, { 217,3767 }, { 218,3767 },
{ 219,3767 }, { 220,3767 }, { 221,3767 }, { 222,3767 }, { 223,3767 },
{ 224,3767 }, { 225,3767 }, { 226,3767 }, { 227,3767 }, { 228,3767 },
{ 229,3767 }, { 230,3767 }, { 231,3767 }, { 232,3767 }, { 233,3767 },
{ 234,3767 }, { 235,3767 }, { 236,3767 }, { 237,3767 }, { 238,3767 },
{ 239,3767 }, { 240,3767 }, { 241,3767 }, { 242,3767 }, { 243,3767 },
{ 244,3767 }, { 245,3767 }, { 246,3767 }, { 247,3767 }, { 248,3767 },
{ 249,3767 }, { 250,3767 }, { 251,3767 }, { 252,3767 }, { 253,3767 },
{ 254,3767 }, { 255,3767 }, { 256,3767 }, { 0, 48 }, { 0,24821 },
{ 0, 53 }, { 0,24819 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 53 }, { 0,24814 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,3767 }, { 10,3767 }, { 0, 0 }, { 12,3767 }, { 13,3767 },
{ 9,3762 }, { 10,3762 }, { 0, 0 }, { 12,3762 }, { 13,3762 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3767 }, { 0, 0 },
{ 36,-4714 }, { 0, 0 }, { 0, 0 }, { 32,3762 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3767 },
{ 66,3767 }, { 67,3767 }, { 68,3767 }, { 69,3767 }, { 70,3767 },
{ 71,3767 }, { 72,3767 }, { 73,3767 }, { 74,3767 }, { 75,3767 },
{ 76,3767 }, { 77,3767 }, { 78,3767 }, { 79,3767 }, { 80,3767 },
{ 81,3767 }, { 82,3767 }, { 83,3767 }, { 84,3767 }, { 85,3767 },
{ 86,3767 }, { 87,3767 }, { 88,3767 }, { 89,3767 }, { 90,3767 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,3767 },
{ 0, 0 }, { 97,3767 }, { 98,3767 }, { 99,3767 }, { 100,3767 },
{ 101,3767 }, { 102,3767 }, { 103,3767 }, { 104,3767 }, { 105,3767 },
{ 106,3767 }, { 107,3767 }, { 108,3767 }, { 109,3767 }, { 110,3767 },
{ 111,3767 }, { 112,3767 }, { 113,3767 }, { 114,3767 }, { 115,3767 },
{ 116,3767 }, { 117,3767 }, { 118,3767 }, { 119,3767 }, { 120,3767 },
{ 121,3767 }, { 122,3767 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 128,3767 }, { 129,3767 }, { 130,3767 },
{ 131,3767 }, { 132,3767 }, { 133,3767 }, { 134,3767 }, { 135,3767 },
{ 136,3767 }, { 137,3767 }, { 138,3767 }, { 139,3767 }, { 140,3767 },
{ 141,3767 }, { 142,3767 }, { 143,3767 }, { 144,3767 }, { 145,3767 },
{ 146,3767 }, { 147,3767 }, { 148,3767 }, { 149,3767 }, { 150,3767 },
{ 151,3767 }, { 152,3767 }, { 153,3767 }, { 154,3767 }, { 155,3767 },
{ 156,3767 }, { 157,3767 }, { 158,3767 }, { 159,3767 }, { 160,3767 },
{ 161,3767 }, { 162,3767 }, { 163,3767 }, { 164,3767 }, { 165,3767 },
{ 166,3767 }, { 167,3767 }, { 168,3767 }, { 169,3767 }, { 170,3767 },
{ 171,3767 }, { 172,3767 }, { 173,3767 }, { 174,3767 }, { 175,3767 },
{ 176,3767 }, { 177,3767 }, { 178,3767 }, { 179,3767 }, { 180,3767 },
{ 181,3767 }, { 182,3767 }, { 183,3767 }, { 184,3767 }, { 185,3767 },
{ 186,3767 }, { 187,3767 }, { 188,3767 }, { 189,3767 }, { 190,3767 },
{ 191,3767 }, { 192,3767 }, { 193,3767 }, { 194,3767 }, { 195,3767 },
{ 196,3767 }, { 197,3767 }, { 198,3767 }, { 199,3767 }, { 200,3767 },
{ 201,3767 }, { 202,3767 }, { 203,3767 }, { 204,3767 }, { 205,3767 },
{ 206,3767 }, { 207,3767 }, { 208,3767 }, { 209,3767 }, { 210,3767 },
{ 211,3767 }, { 212,3767 }, { 213,3767 }, { 214,3767 }, { 215,3767 },
{ 216,3767 }, { 217,3767 }, { 218,3767 }, { 219,3767 }, { 220,3767 },
{ 221,3767 }, { 222,3767 }, { 223,3767 }, { 224,3767 }, { 225,3767 },
{ 226,3767 }, { 227,3767 }, { 228,3767 }, { 229,3767 }, { 230,3767 },
{ 231,3767 }, { 232,3767 }, { 233,3767 }, { 234,3767 }, { 235,3767 },
{ 236,3767 }, { 237,3767 }, { 238,3767 }, { 239,3767 }, { 240,3767 },
{ 241,3767 }, { 242,3767 }, { 243,3767 }, { 244,3767 }, { 245,3767 },
{ 246,3767 }, { 247,3767 }, { 248,3767 }, { 249,3767 }, { 250,3767 },
{ 251,3767 }, { 252,3767 }, { 253,3767 }, { 254,3767 }, { 255,3767 },
{ 0, 24 }, { 0,24564 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 26 }, { 0,24559 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,4025 }, { 10,4030 }, { 0, 0 }, { 12,4025 }, { 13,4030 },
{ 9,4041 }, { 10,4041 }, { 0, 0 }, { 12,4041 }, { 13,4041 },
{ 0, 0 }, { 0, 26 }, { 0,24543 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 9,4025 }, { 10,4025 }, { 32,4025 }, { 12,4025 },
{ 13,4025 }, { 0, 0 }, { 0, 0 }, { 32,4041 }, { 0, 0 },
{ 39,-4980 }, { 0, 0 }, { 0, 1 }, { 0,24522 }, { 0, 70 },
{ 0,24520 }, { 45,-4928 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 }, { 32,4025 },
{ 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 32, 0 }, { 0, 0 }, { 0, 0 }, { 33, 0 }, { 0, 0 },
{ 35, 0 }, { 0, 0 }, { 37, 0 }, { 38, 0 }, { 0, 68 },
{ 0,24480 }, { 0, 0 }, { 42, 0 }, { 43, 0 }, { 0, 0 },
{ 45, 0 }, { 0, 0 }, { 47, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 71 }, { 0,24463 }, { 0, 0 }, { 0, 0 },
{ 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 33, -40 }, { 0, 0 },
{ 35, -40 }, { 0, 0 }, { 37, -40 }, { 38, -40 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 42, -40 }, { 43, -40 }, { 0, 0 },
{ 45, -40 }, { 0, 0 }, { 47, -40 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 94, 0 },
{ 0, 0 }, { 96, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 60, -40 }, { 61, -40 }, { 62, -40 }, { 63, -40 }, { 64, -40 },
{ 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 },
{ 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 44 }, { 0,24401 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 124, 0 },
{ 0, 0 }, { 126, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 94, -40 },
{ 0, 0 }, { 96, -40 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 36,-5515 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 124, -40 },
{ 0, 0 }, { 126, -40 }, { 48,4257 }, { 49,4257 }, { 50,4257 },
{ 51,4257 }, { 52,4257 }, { 53,4257 }, { 54,4257 }, { 55,4257 },
{ 56,4257 }, { 57,4257 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,4257 },
{ 66,4257 }, { 67,4257 }, { 68,4257 }, { 69,4257 }, { 70,4257 },
{ 71,4257 }, { 72,4257 }, { 73,4257 }, { 74,4257 }, { 75,4257 },
{ 76,4257 }, { 77,4257 }, { 78,4257 }, { 79,4257 }, { 80,4257 },
{ 81,4257 }, { 82,4257 }, { 83,4257 }, { 84,4257 }, { 85,4257 },
{ 86,4257 }, { 87,4257 }, { 88,4257 }, { 89,4257 }, { 90,4257 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,4257 },
{ 0, 0 }, { 97,4257 }, { 98,4257 }, { 99,4257 }, { 100,4257 },
{ 101,4257 }, { 102,4257 }, { 103,4257 }, { 104,4257 }, { 105,4257 },
{ 106,4257 }, { 107,4257 }, { 108,4257 }, { 109,4257 }, { 110,4257 },
{ 111,4257 }, { 112,4257 }, { 113,4257 }, { 114,4257 }, { 115,4257 },
{ 116,4257 }, { 117,4257 }, { 118,4257 }, { 119,4257 }, { 120,4257 },
{ 121,4257 }, { 122,4257 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 128,4257 }, { 129,4257 }, { 130,4257 },
{ 131,4257 }, { 132,4257 }, { 133,4257 }, { 134,4257 }, { 135,4257 },
{ 136,4257 }, { 137,4257 }, { 138,4257 }, { 139,4257 }, { 140,4257 },
{ 141,4257 }, { 142,4257 }, { 143,4257 }, { 144,4257 }, { 145,4257 },
{ 146,4257 }, { 147,4257 }, { 148,4257 }, { 149,4257 }, { 150,4257 },
{ 151,4257 }, { 152,4257 }, { 153,4257 }, { 154,4257 }, { 155,4257 },
{ 156,4257 }, { 157,4257 }, { 158,4257 }, { 159,4257 }, { 160,4257 },
{ 161,4257 }, { 162,4257 }, { 163,4257 }, { 164,4257 }, { 165,4257 },
{ 166,4257 }, { 167,4257 }, { 168,4257 }, { 169,4257 }, { 170,4257 },
{ 171,4257 }, { 172,4257 }, { 173,4257 }, { 174,4257 }, { 175,4257 },
{ 176,4257 }, { 177,4257 }, { 178,4257 }, { 179,4257 }, { 180,4257 },
{ 181,4257 }, { 182,4257 }, { 183,4257 }, { 184,4257 }, { 185,4257 },
{ 186,4257 }, { 187,4257 }, { 188,4257 }, { 189,4257 }, { 190,4257 },
{ 191,4257 }, { 192,4257 }, { 193,4257 }, { 194,4257 }, { 195,4257 },
{ 196,4257 }, { 197,4257 }, { 198,4257 }, { 199,4257 }, { 200,4257 },
{ 201,4257 }, { 202,4257 }, { 203,4257 }, { 204,4257 }, { 205,4257 },
{ 206,4257 }, { 207,4257 }, { 208,4257 }, { 209,4257 }, { 210,4257 },
{ 211,4257 }, { 212,4257 }, { 213,4257 }, { 214,4257 }, { 215,4257 },
{ 216,4257 }, { 217,4257 }, { 218,4257 }, { 219,4257 }, { 220,4257 },
{ 221,4257 }, { 222,4257 }, { 223,4257 }, { 224,4257 }, { 225,4257 },
{ 226,4257 }, { 227,4257 }, { 228,4257 }, { 229,4257 }, { 230,4257 },
{ 231,4257 }, { 232,4257 }, { 233,4257 }, { 234,4257 }, { 235,4257 },
{ 236,4257 }, { 237,4257 }, { 238,4257 }, { 239,4257 }, { 240,4257 },
{ 241,4257 }, { 242,4257 }, { 243,4257 }, { 244,4257 }, { 245,4257 },
{ 246,4257 }, { 247,4257 }, { 248,4257 }, { 249,4257 }, { 250,4257 },
{ 251,4257 }, { 252,4257 }, { 253,4257 }, { 254,4257 }, { 255,4257 },
{ 0, 1 }, { 0,24144 }, { 1,4257 }, { 2,4257 }, { 3,4257 },
{ 4,4257 }, { 5,4257 }, { 6,4257 }, { 7,4257 }, { 8,4257 },
{ 9,4257 }, { 0, 0 }, { 11,4257 }, { 12,4257 }, { 0, 0 },
{ 14,4257 }, { 15,4257 }, { 16,4257 }, { 17,4257 }, { 18,4257 },
{ 19,4257 }, { 20,4257 }, { 21,4257 }, { 22,4257 }, { 23,4257 },
{ 24,4257 }, { 25,4257 }, { 26,4257 }, { 27,4257 }, { 28,4257 },
{ 29,4257 }, { 30,4257 }, { 31,4257 }, { 32,4257 }, { 33,4515 },
{ 34,4257 }, { 35,4515 }, { 36,4257 }, { 37,4515 }, { 38,4515 },
{ 39,4257 }, { 40,4257 }, { 41,4257 }, { 42,4515 }, { 43,4515 },
{ 44,4257 }, { 45,4515 }, { 46,4257 }, { 47,4515 }, { 48,4257 },
{ 49,4257 }, { 50,4257 }, { 51,4257 }, { 52,4257 }, { 53,4257 },
{ 54,4257 }, { 55,4257 }, { 56,4257 }, { 57,4257 }, { 58,4257 },
{ 59,4257 }, { 60,4515 }, { 61,4515 }, { 62,4515 }, { 63,4515 },
{ 64,4515 }, { 65,4257 }, { 66,4257 }, { 67,4257 }, { 68,4257 },
{ 69,4257 }, { 70,4257 }, { 71,4257 }, { 72,4257 }, { 73,4257 },
{ 74,4257 }, { 75,4257 }, { 76,4257 }, { 77,4257 }, { 78,4257 },
{ 79,4257 }, { 80,4257 }, { 81,4257 }, { 82,4257 }, { 83,4257 },
{ 84,4257 }, { 85,4257 }, { 86,4257 }, { 87,4257 }, { 88,4257 },
{ 89,4257 }, { 90,4257 }, { 91,4257 }, { 92,4257 }, { 93,4257 },
{ 94,4515 }, { 95,4257 }, { 96,4515 }, { 97,4257 }, { 98,4257 },
{ 99,4257 }, { 100,4257 }, { 101,4257 }, { 102,4257 }, { 103,4257 },
{ 104,4257 }, { 105,4257 }, { 106,4257 }, { 107,4257 }, { 108,4257 },
{ 109,4257 }, { 110,4257 }, { 111,4257 }, { 112,4257 }, { 113,4257 },
{ 114,4257 }, { 115,4257 }, { 116,4257 }, { 117,4257 }, { 118,4257 },
{ 119,4257 }, { 120,4257 }, { 121,4257 }, { 122,4257 }, { 123,4257 },
{ 124,4515 }, { 125,4257 }, { 126,4515 }, { 127,4257 }, { 128,4257 },
{ 129,4257 }, { 130,4257 }, { 131,4257 }, { 132,4257 }, { 133,4257 },
{ 134,4257 }, { 135,4257 }, { 136,4257 }, { 137,4257 }, { 138,4257 },
{ 139,4257 }, { 140,4257 }, { 141,4257 }, { 142,4257 }, { 143,4257 },
{ 144,4257 }, { 145,4257 }, { 146,4257 }, { 147,4257 }, { 148,4257 },
{ 149,4257 }, { 150,4257 }, { 151,4257 }, { 152,4257 }, { 153,4257 },
{ 154,4257 }, { 155,4257 }, { 156,4257 }, { 157,4257 }, { 158,4257 },
{ 159,4257 }, { 160,4257 }, { 161,4257 }, { 162,4257 }, { 163,4257 },
{ 164,4257 }, { 165,4257 }, { 166,4257 }, { 167,4257 }, { 168,4257 },
{ 169,4257 }, { 170,4257 }, { 171,4257 }, { 172,4257 }, { 173,4257 },
{ 174,4257 }, { 175,4257 }, { 176,4257 }, { 177,4257 }, { 178,4257 },
{ 179,4257 }, { 180,4257 }, { 181,4257 }, { 182,4257 }, { 183,4257 },
{ 184,4257 }, { 185,4257 }, { 186,4257 }, { 187,4257 }, { 188,4257 },
{ 189,4257 }, { 190,4257 }, { 191,4257 }, { 192,4257 }, { 193,4257 },
{ 194,4257 }, { 195,4257 }, { 196,4257 }, { 197,4257 }, { 198,4257 },
{ 199,4257 }, { 200,4257 }, { 201,4257 }, { 202,4257 }, { 203,4257 },
{ 204,4257 }, { 205,4257 }, { 206,4257 }, { 207,4257 }, { 208,4257 },
{ 209,4257 }, { 210,4257 }, { 211,4257 }, { 212,4257 }, { 213,4257 },
{ 214,4257 }, { 215,4257 }, { 216,4257 }, { 217,4257 }, { 218,4257 },
{ 219,4257 }, { 220,4257 }, { 221,4257 }, { 222,4257 }, { 223,4257 },
{ 224,4257 }, { 225,4257 }, { 226,4257 }, { 227,4257 }, { 228,4257 },
{ 229,4257 }, { 230,4257 }, { 231,4257 }, { 232,4257 }, { 233,4257 },
{ 234,4257 }, { 235,4257 }, { 236,4257 }, { 237,4257 }, { 238,4257 },
{ 239,4257 }, { 240,4257 }, { 241,4257 }, { 242,4257 }, { 243,4257 },
{ 244,4257 }, { 245,4257 }, { 246,4257 }, { 247,4257 }, { 248,4257 },
{ 249,4257 }, { 250,4257 }, { 251,4257 }, { 252,4257 }, { 253,4257 },
{ 254,4257 }, { 255,4257 }, { 256,4257 }, { 0, 73 }, { 0,23886 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 2 }, { 0,23861 },
{ 0, 73 }, { 0,23859 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 33,4490 }, { 0, 0 }, { 35,4490 },
{ 0, 0 }, { 37,4490 }, { 38,4490 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 42,4490 }, { 43,4490 }, { 69, 113 }, { 45,4490 },
{ 0, 0 }, { 47,4490 }, { 46,-5624 }, { 0, 0 }, { 48,4490 },
{ 49,4490 }, { 50,4490 }, { 51,4490 }, { 52,4490 }, { 53,4490 },
{ 54,4490 }, { 55,4490 }, { 56,4490 }, { 57,4490 }, { 60,4490 },
{ 61,4490 }, { 62,4490 }, { 63,4490 }, { 64,4490 }, { 0, 72 },
{ 0,23795 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 69, 86 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 101, 113 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 76 }, { 0,23773 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 94,4490 }, { 0, 0 },
{ 96,4490 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 101, 86 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 46, -64 }, { 0, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 124,4490 }, { 0, 0 },
{ 126,4490 }, { 0, 65 }, { 0,23733 }, { 0, 0 }, { 0, 0 },
{ 43,4426 }, { 0, 0 }, { 45,4426 }, { 0, 0 }, { 69, 22 },
{ 48,4468 }, { 49,4468 }, { 50,4468 }, { 51,4468 }, { 52,4468 },
{ 53,4468 }, { 54,4468 }, { 55,4468 }, { 56,4468 }, { 57,4468 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 33,-787 }, { 0, 0 }, { 35,-787 }, { 0, 0 }, { 37,-787 },
{ 38,-787 }, { 101, 22 }, { 0, 67 }, { 0,23692 }, { 42,-787 },
{ 43,-787 }, { 0, 0 }, { 45,-787 }, { 0, 0 }, { 47,-787 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 60,-787 }, { 61,-787 }, { 62,-787 },
{ 63,-787 }, { 64,-787 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 33,-828 }, { 0, 0 }, { 35,-828 }, { 0, 0 },
{ 37,-828 }, { 38,-828 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 42,-828 }, { 43,-828 }, { 0, 0 }, { 45,-828 }, { 0, 0 },
{ 47,-828 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 94,-787 }, { 0, 0 }, { 96,-787 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 60,-828 }, { 61,-828 },
{ 62,-828 }, { 63,-828 }, { 64,-828 }, { 0, 0 }, { 0, 64 },
{ 0,23625 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 66 }, { 0,23614 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 124,-787 }, { 0, 0 }, { 126,-787 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 94,-828 }, { 0, 0 }, { 96,-828 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 33,-895 }, { 0, 0 },
{ 35,-895 }, { 0, 0 }, { 37,-895 }, { 38,-895 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 42,-895 }, { 43,-895 }, { 33,-906 },
{ 45,-895 }, { 35,-906 }, { 47,-895 }, { 37,-906 }, { 38,-906 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 42,-906 }, { 43,-906 },
{ 0, 0 }, { 45,-906 }, { 124,-828 }, { 47,-906 }, { 126,-828 },
{ 60,-895 }, { 61,-895 }, { 62,-895 }, { 63,-895 }, { 64,-895 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 60,-906 }, { 61,-906 }, { 62,-906 }, { 63,-906 },
{ 64,-906 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 78 }, { 0,23534 }, { 0, 0 }, { 0, 0 }, { 94,-895 },
{ 0, 0 }, { 96,-895 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 94,-906 }, { 0, 0 }, { 96,-906 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 124,-895 },
{ 0, 0 }, { 126,-895 }, { 36, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 124,-906 }, { 0, 0 }, { 126,-906 }, { 0, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 63,-6357 },
{ 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 95, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 0, 12 }, { 0,23277 }, { 1, 0 },
{ 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 },
{ 7, 0 }, { 8, 0 }, { 9, 0 }, { 10, 0 }, { 11, 0 },
{ 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 },
{ 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 },
{ 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 },
{ 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 },
{ 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 },
{ 37, 0 }, { 38, 0 }, { 0, 0 }, { 40, 0 }, { 41, 0 },
{ 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 },
{ 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
{ 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
{ 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 },
{ 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 },
{ 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 },
{ 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 },
{ 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 },
{ 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 },
{ 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 },
{ 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 },
{ 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 },
{ 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 },
{ 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 },
{ 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 },
{ 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 },
{ 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 },
{ 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 },
{ 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 },
{ 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 },
{ 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 },
{ 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 },
{ 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 },
{ 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 },
{ 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 },
{ 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 },
{ 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 },
{ 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 },
{ 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 },
{ 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 },
{ 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 },
{ 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 },
{ 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 },
{ 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 },
{ 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 },
{ 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 },
{ 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 },
{ 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 },
{ 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 },
{ 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 },
{ 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 },
{ 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 },
{ 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 },
{ 0, 9 }, { 0,23019 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 9 }, { 0,23014 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9, 0 }, { 10, 5 }, { 0, 0 }, { 12, 0 }, { 13, 5 },
{ 9,3741 }, { 10,3741 }, { 0, 0 }, { 12,3741 }, { 13,3741 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3741 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,-6463 }, { 45,-6627 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-6461 }, { 0, 5 }, { 0,22967 }, { 1, 0 },
{ 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 },
{ 7, 0 }, { 8, 0 }, { 9, 0 }, { 10, 0 }, { 11, 0 },
{ 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 },
{ 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 },
{ 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 },
{ 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 },
{ 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 },
{ 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 },
{ 0, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 },
{ 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
{ 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
{ 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 },
{ 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 },
{ 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 },
{ 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 },
{ 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 },
{ 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 },
{ 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 },
{ 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 },
{ 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 },
{ 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 },
{ 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 },
{ 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 },
{ 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 },
{ 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 },
{ 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 },
{ 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 },
{ 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 },
{ 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 },
{ 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 },
{ 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 },
{ 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 },
{ 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 },
{ 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 },
{ 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 },
{ 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 },
{ 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 },
{ 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 },
{ 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 },
{ 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 },
{ 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 },
{ 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 },
{ 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 },
{ 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 },
{ 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 },
{ 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 },
{ 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 },
{ 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 },
{ 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 },
{ 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 },
{ 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 },
{ 0, 3 }, { 0,22709 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 33,3741 },
{ 0, 0 }, { 35,3741 }, { 0, 0 }, { 37,3741 }, { 38,3741 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 42,3741 }, { 43,3741 },
{ 0, 0 }, { 45,3741 }, { 0, 0 }, { 47,3741 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 60,3741 }, { 61,3741 }, { 62,3741 }, { 63,3741 },
{ 64,3741 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 94,3741 }, { 0, 0 }, { 96,3741 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 124,3741 }, { 0, 0 }, { 126,3741 }, { 0, 58 }, { 0,22581 },
{ 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 },
{ 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 10, 0 },
{ 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 },
{ 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 },
{ 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 },
{ 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 },
{ 31, 0 }, { 32, 0 }, { 33, 0 }, { 0, 0 }, { 35, 0 },
{ 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 },
{ 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 },
{ 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 },
{ 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 },
{ 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 },
{ 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 },
{ 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 },
{ 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 },
{ 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 },
{ 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 },
{ 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 },
{ 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 },
{ 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 },
{ 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 },
{ 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 },
{ 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 },
{ 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 },
{ 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 },
{ 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 },
{ 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 },
{ 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 },
{ 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 },
{ 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 },
{ 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 },
{ 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 },
{ 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 },
{ 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 },
{ 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 },
{ 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 },
{ 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 },
{ 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 },
{ 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 },
{ 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 },
{ 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 },
{ 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 },
{ 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 },
{ 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 },
{ 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 },
{ 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 },
{ 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 },
{ 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 },
{ 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 },
{ 256, 0 }, { 0, 11 }, { 0,22323 }, { 1, 0 }, { 2, 0 },
{ 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 },
{ 8, 0 }, { 9, 0 }, { 10, 0 }, { 11, 0 }, { 12, 0 },
{ 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 },
{ 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 },
{ 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 },
{ 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 },
{ 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 },
{ 38, 0 }, { 0, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 },
{ 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 },
{ 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 },
{ 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 },
{ 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 },
{ 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 },
{ 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 },
{ 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 },
{ 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 },
{ 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 },
{ 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 },
{ 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 },
{ 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 },
{ 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 },
{ 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 },
{ 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 },
{ 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 },
{ 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 },
{ 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 },
{ 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 },
{ 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 },
{ 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 },
{ 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 },
{ 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 },
{ 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 },
{ 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 },
{ 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 },
{ 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 },
{ 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 },
{ 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 },
{ 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 },
{ 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 },
{ 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 },
{ 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 },
{ 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 },
{ 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 },
{ 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 },
{ 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 },
{ 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 },
{ 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 },
{ 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 },
{ 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 },
{ 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 },
{ 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 16 },
{ 0,22065 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 16 },
{ 0,22060 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 },
{ 10, 5 }, { 0, 0 }, { 12, 0 }, { 13, 5 }, { 9,3099 },
{ 10,3099 }, { 0, 0 }, { 12,3099 }, { 13,3099 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32,3099 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 39,-7413 },
{ 45,-7481 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 45,-7408 }, { 0, 32 }, { 0,22013 }, { 1, 0 }, { 2, 0 },
{ 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 },
{ 8, 0 }, { 9, 0 }, { 10, 0 }, { 11, 0 }, { 12, 0 },
{ 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 },
{ 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 },
{ 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 },
{ 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 },
{ 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 },
{ 38, 0 }, { 0, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 },
{ 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 },
{ 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 },
{ 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 },
{ 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 },
{ 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 },
{ 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 },
{ 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 },
{ 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 },
{ 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 },
{ 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 0, 0 },
{ 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 },
{ 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 },
{ 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 },
{ 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 },
{ 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 },
{ 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 },
{ 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 },
{ 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 },
{ 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 },
{ 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 },
{ 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 },
{ 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 },
{ 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 },
{ 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 },
{ 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 },
{ 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 },
{ 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 },
{ 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 },
{ 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 },
{ 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 },
{ 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 },
{ 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 },
{ 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 },
{ 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 },
{ 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 },
{ 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 },
{ 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 },
{ 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 },
{ 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 },
{ 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 },
{ 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 },
{ 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 },
{ 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 22 },
{ 0,21755 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 22 },
{ 0,21750 }, { 0, 39 }, { 0,21748 }, { 0, 0 }, { 9, 0 },
{ 10, 5 }, { 0, 0 }, { 12, 0 }, { 13, 5 }, { 9,3168 },
{ 10,3168 }, { 0, 0 }, { 12,3168 }, { 13,3168 }, { 0, 37 },
{ 0,21735 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32,3168 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 37 }, { 0,21712 }, { 39,-7709 },
{ 45,-7784 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 45,-7682 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48,3471 }, { 49,3471 }, { 50,3471 }, { 51,3471 }, { 52,3471 },
{ 53,3471 }, { 54,3471 }, { 55,3471 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,3466 }, { 49,3466 },
{ 50,3466 }, { 51,3466 }, { 52,3466 }, { 53,3466 }, { 54,3466 },
{ 55,3466 }, { 56,3466 }, { 57,3466 }, { 0, 0 }, { 0, 0 },
{ 0, 38 }, { 0,21674 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 65,3466 }, { 66,3466 }, { 67,3466 }, { 68,3466 }, { 69,3466 },
{ 70,3466 }, { 48,3466 }, { 49,3466 }, { 50,3466 }, { 51,3466 },
{ 52,3466 }, { 53,3466 }, { 54,3466 }, { 55,3466 }, { 56,3466 },
{ 57,3466 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3466 }, { 66,3466 },
{ 67,3466 }, { 68,3466 }, { 69,3466 }, { 70,3466 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 97,3466 }, { 98,3466 }, { 99,3466 },
{ 100,3466 }, { 101,3466 }, { 102,3466 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,3466 },
{ 49,3466 }, { 50,3466 }, { 51,3466 }, { 52,3466 }, { 53,3466 },
{ 54,3466 }, { 55,3466 }, { 56,3466 }, { 57,3466 }, { 0, 0 },
{ 97,3466 }, { 98,3466 }, { 99,3466 }, { 100,3466 }, { 101,3466 },
{ 102,3466 }, { 65,3466 }, { 66,3466 }, { 67,3466 }, { 68,3466 },
{ 69,3466 }, { 70,3466 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,3466 }, { 98,3466 },
{ 99,3466 }, { 100,3466 }, { 101,3466 }, { 102,3466 }, { 0, 31 },
{ 0,21570 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 },
{ 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 },
{ 10, 0 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 },
{ 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 },
{ 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 },
{ 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 },
{ 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 },
{ 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 0, 0 },
{ 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 },
{ 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 },
{ 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
{ 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 },
{ 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 },
{ 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 },
{ 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 },
{ 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 },
{ 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 },
{ 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 },
{ 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 },
{ 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 },
{ 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 },
{ 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 },
{ 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 },
{ 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 },
{ 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 },
{ 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 },
{ 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 },
{ 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 },
{ 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 },
{ 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 },
{ 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 },
{ 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 },
{ 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 },
{ 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 },
{ 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 },
{ 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 },
{ 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 },
{ 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 },
{ 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 },
{ 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 },
{ 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 },
{ 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 },
{ 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 },
{ 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 },
{ 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 },
{ 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 },
{ 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 },
{ 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 },
{ 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 },
{ 255, 0 }, { 256, 0 }, { 0, 46 }, { 0,21312 }, { 1, 0 },
{ 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 },
{ 7, 0 }, { 8, 0 }, { 9, 0 }, { 10, 0 }, { 11, 0 },
{ 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 },
{ 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 },
{ 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 },
{ 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 },
{ 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 0, 0 },
{ 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 },
{ 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 },
{ 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
{ 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
{ 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 },
{ 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 },
{ 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 },
{ 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 },
{ 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 },
{ 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 },
{ 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 },
{ 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 },
{ 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 },
{ 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 },
{ 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 },
{ 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 },
{ 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 },
{ 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 },
{ 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 },
{ 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 },
{ 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 },
{ 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 },
{ 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 },
{ 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 },
{ 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 },
{ 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 },
{ 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 },
{ 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 },
{ 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 },
{ 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 },
{ 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 },
{ 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 },
{ 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 },
{ 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 },
{ 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 },
{ 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 },
{ 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 },
{ 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 },
{ 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 },
{ 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 },
{ 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 },
{ 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 },
{ 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 },
{ 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 },
{ 0, 47 }, { 0,21054 }, { 0, 53 }, { 0,21052 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 }, { 0, 0 },
{ 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 32, 0 }, { 0, 0 }, { 36,-8481 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,2918 },
{ 49,2918 }, { 50,2918 }, { 51,2918 }, { 52,2918 }, { 53,2918 },
{ 54,2918 }, { 55,2918 }, { 56,2918 }, { 57,2918 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 65,2918 }, { 66,2918 }, { 67,2918 }, { 68,2918 },
{ 69,2918 }, { 70,2918 }, { 71,2918 }, { 72,2918 }, { 73,2918 },
{ 74,2918 }, { 75,2918 }, { 76,2918 }, { 77,2918 }, { 78,2918 },
{ 79,2918 }, { 80,2918 }, { 81,2918 }, { 82,2918 }, { 83,2918 },
{ 84,2918 }, { 85,2918 }, { 86,2918 }, { 87,2918 }, { 88,2918 },
{ 89,2918 }, { 90,2918 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 95,2918 }, { 0, 0 }, { 97,2918 }, { 98,2918 },
{ 99,2918 }, { 100,2918 }, { 101,2918 }, { 102,2918 }, { 103,2918 },
{ 104,2918 }, { 105,2918 }, { 106,2918 }, { 107,2918 }, { 108,2918 },
{ 109,2918 }, { 110,2918 }, { 111,2918 }, { 112,2918 }, { 113,2918 },
{ 114,2918 }, { 115,2918 }, { 116,2918 }, { 117,2918 }, { 118,2918 },
{ 119,2918 }, { 120,2918 }, { 121,2918 }, { 122,2918 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128,2918 },
{ 129,2918 }, { 130,2918 }, { 131,2918 }, { 132,2918 }, { 133,2918 },
{ 134,2918 }, { 135,2918 }, { 136,2918 }, { 137,2918 }, { 138,2918 },
{ 139,2918 }, { 140,2918 }, { 141,2918 }, { 142,2918 }, { 143,2918 },
{ 144,2918 }, { 145,2918 }, { 146,2918 }, { 147,2918 }, { 148,2918 },
{ 149,2918 }, { 150,2918 }, { 151,2918 }, { 152,2918 }, { 153,2918 },
{ 154,2918 }, { 155,2918 }, { 156,2918 }, { 157,2918 }, { 158,2918 },
{ 159,2918 }, { 160,2918 }, { 161,2918 }, { 162,2918 }, { 163,2918 },
{ 164,2918 }, { 165,2918 }, { 166,2918 }, { 167,2918 }, { 168,2918 },
{ 169,2918 }, { 170,2918 }, { 171,2918 }, { 172,2918 }, { 173,2918 },
{ 174,2918 }, { 175,2918 }, { 176,2918 }, { 177,2918 }, { 178,2918 },
{ 179,2918 }, { 180,2918 }, { 181,2918 }, { 182,2918 }, { 183,2918 },
{ 184,2918 }, { 185,2918 }, { 186,2918 }, { 187,2918 }, { 188,2918 },
{ 189,2918 }, { 190,2918 }, { 191,2918 }, { 192,2918 }, { 193,2918 },
{ 194,2918 }, { 195,2918 }, { 196,2918 }, { 197,2918 }, { 198,2918 },
{ 199,2918 }, { 200,2918 }, { 201,2918 }, { 202,2918 }, { 203,2918 },
{ 204,2918 }, { 205,2918 }, { 206,2918 }, { 207,2918 }, { 208,2918 },
{ 209,2918 }, { 210,2918 }, { 211,2918 }, { 212,2918 }, { 213,2918 },
{ 214,2918 }, { 215,2918 }, { 216,2918 }, { 217,2918 }, { 218,2918 },
{ 219,2918 }, { 220,2918 }, { 221,2918 }, { 222,2918 }, { 223,2918 },
{ 224,2918 }, { 225,2918 }, { 226,2918 }, { 227,2918 }, { 228,2918 },
{ 229,2918 }, { 230,2918 }, { 231,2918 }, { 232,2918 }, { 233,2918 },
{ 234,2918 }, { 235,2918 }, { 236,2918 }, { 237,2918 }, { 238,2918 },
{ 239,2918 }, { 240,2918 }, { 241,2918 }, { 242,2918 }, { 243,2918 },
{ 244,2918 }, { 245,2918 }, { 246,2918 }, { 247,2918 }, { 248,2918 },
{ 249,2918 }, { 250,2918 }, { 251,2918 }, { 252,2918 }, { 253,2918 },
{ 254,2918 }, { 255,2918 }, { 0, 53 }, { 0,20797 }, { 1,2918 },
{ 2,2918 }, { 3,2918 }, { 4,2918 }, { 5,2918 }, { 6,2918 },
{ 7,2918 }, { 8,2918 }, { 9,2918 }, { 0, 0 }, { 11,2918 },
{ 12,2918 }, { 0, 0 }, { 14,2918 }, { 15,2918 }, { 16,2918 },
{ 17,2918 }, { 18,2918 }, { 19,2918 }, { 20,2918 }, { 21,2918 },
{ 22,2918 }, { 23,2918 }, { 24,2918 }, { 25,2918 }, { 26,2918 },
{ 27,2918 }, { 28,2918 }, { 29,2918 }, { 30,2918 }, { 31,2918 },
{ 32,2918 }, { 33,2918 }, { 34,2918 }, { 35,2918 }, { 36,2918 },
{ 37,2918 }, { 38,2918 }, { 39,2918 }, { 40,2918 }, { 41,2918 },
{ 42,2918 }, { 43,2918 }, { 44,2918 }, { 45,2918 }, { 46,2918 },
{ 47,2918 }, { 48,2918 }, { 49,2918 }, { 50,2918 }, { 51,2918 },
{ 52,2918 }, { 53,2918 }, { 54,2918 }, { 55,2918 }, { 56,2918 },
{ 57,2918 }, { 58,2918 }, { 59,2918 }, { 60,2918 }, { 61,2918 },
{ 62,2918 }, { 63,2918 }, { 64,2918 }, { 65,2918 }, { 66,2918 },
{ 67,2918 }, { 68,2918 }, { 69,2918 }, { 70,2918 }, { 71,2918 },
{ 72,2918 }, { 73,2918 }, { 74,2918 }, { 75,2918 }, { 76,2918 },
{ 77,2918 }, { 78,2918 }, { 79,2918 }, { 80,2918 }, { 81,2918 },
{ 82,2918 }, { 83,2918 }, { 84,2918 }, { 85,2918 }, { 86,2918 },
{ 87,2918 }, { 88,2918 }, { 89,2918 }, { 90,2918 }, { 91,2918 },
{ 92,2918 }, { 93,2918 }, { 94,2918 }, { 95,2918 }, { 96,2918 },
{ 97,2918 }, { 98,2918 }, { 99,2918 }, { 100,2918 }, { 101,2918 },
{ 102,2918 }, { 103,2918 }, { 104,2918 }, { 105,2918 }, { 106,2918 },
{ 107,2918 }, { 108,2918 }, { 109,2918 }, { 110,2918 }, { 111,2918 },
{ 112,2918 }, { 113,2918 }, { 114,2918 }, { 115,2918 }, { 116,2918 },
{ 117,2918 }, { 118,2918 }, { 119,2918 }, { 120,2918 }, { 121,2918 },
{ 122,2918 }, { 123,2918 }, { 124,2918 }, { 125,2918 }, { 126,2918 },
{ 127,2918 }, { 128,2918 }, { 129,2918 }, { 130,2918 }, { 131,2918 },
{ 132,2918 }, { 133,2918 }, { 134,2918 }, { 135,2918 }, { 136,2918 },
{ 137,2918 }, { 138,2918 }, { 139,2918 }, { 140,2918 }, { 141,2918 },
{ 142,2918 }, { 143,2918 }, { 144,2918 }, { 145,2918 }, { 146,2918 },
{ 147,2918 }, { 148,2918 }, { 149,2918 }, { 150,2918 }, { 151,2918 },
{ 152,2918 }, { 153,2918 }, { 154,2918 }, { 155,2918 }, { 156,2918 },
{ 157,2918 }, { 158,2918 }, { 159,2918 }, { 160,2918 }, { 161,2918 },
{ 162,2918 }, { 163,2918 }, { 164,2918 }, { 165,2918 }, { 166,2918 },
{ 167,2918 }, { 168,2918 }, { 169,2918 }, { 170,2918 }, { 171,2918 },
{ 172,2918 }, { 173,2918 }, { 174,2918 }, { 175,2918 }, { 176,2918 },
{ 177,2918 }, { 178,2918 }, { 179,2918 }, { 180,2918 }, { 181,2918 },
{ 182,2918 }, { 183,2918 }, { 184,2918 }, { 185,2918 }, { 186,2918 },
{ 187,2918 }, { 188,2918 }, { 189,2918 }, { 190,2918 }, { 191,2918 },
{ 192,2918 }, { 193,2918 }, { 194,2918 }, { 195,2918 }, { 196,2918 },
{ 197,2918 }, { 198,2918 }, { 199,2918 }, { 200,2918 }, { 201,2918 },
{ 202,2918 }, { 203,2918 }, { 204,2918 }, { 205,2918 }, { 206,2918 },
{ 207,2918 }, { 208,2918 }, { 209,2918 }, { 210,2918 }, { 211,2918 },
{ 212,2918 }, { 213,2918 }, { 214,2918 }, { 215,2918 }, { 216,2918 },
{ 217,2918 }, { 218,2918 }, { 219,2918 }, { 220,2918 }, { 221,2918 },
{ 222,2918 }, { 223,2918 }, { 224,2918 }, { 225,2918 }, { 226,2918 },
{ 227,2918 }, { 228,2918 }, { 229,2918 }, { 230,2918 }, { 231,2918 },
{ 232,2918 }, { 233,2918 }, { 234,2918 }, { 235,2918 }, { 236,2918 },
{ 237,2918 }, { 238,2918 }, { 239,2918 }, { 240,2918 }, { 241,2918 },
{ 242,2918 }, { 243,2918 }, { 244,2918 }, { 245,2918 }, { 246,2918 },
{ 247,2918 }, { 248,2918 }, { 249,2918 }, { 250,2918 }, { 251,2918 },
{ 252,2918 }, { 253,2918 }, { 254,2918 }, { 255,2918 }, { 256,2918 },
{ 0, 24 }, { 0,20539 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 24 }, { 0,20534 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9, 0 }, { 10, 5 }, { 0, 0 }, { 12, 0 }, { 13, 5 },
{ 9,2913 }, { 10,2913 }, { 0, 0 }, { 12,2913 }, { 13,2913 },
{ 0, 0 }, { 0, 26 }, { 0,20518 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 9, 0 }, { 10, 0 }, { 32, 0 }, { 12, 0 },
{ 13, 0 }, { 0, 0 }, { 0, 0 }, { 32,2913 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,-8925 }, { 45,-8953 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-8861 }, { 0, 0 }, { 0, 0 }, { 32, 0 },
{ 0, 26 }, { 0,20484 }, { 1,3168 }, { 2,3168 }, { 3,3168 },
{ 4,3168 }, { 5,3168 }, { 6,3168 }, { 7,3168 }, { 8,3168 },
{ 9,3168 }, { 0, 0 }, { 11,3168 }, { 12,3168 }, { 0, 0 },
{ 14,3168 }, { 15,3168 }, { 16,3168 }, { 17,3168 }, { 18,3168 },
{ 19,3168 }, { 20,3168 }, { 21,3168 }, { 22,3168 }, { 23,3168 },
{ 24,3168 }, { 25,3168 }, { 26,3168 }, { 27,3168 }, { 28,3168 },
{ 29,3168 }, { 30,3168 }, { 31,3168 }, { 32,3168 }, { 33,3168 },
{ 34,3168 }, { 35,3168 }, { 36,3168 }, { 37,3168 }, { 38,3168 },
{ 39,3168 }, { 40,3168 }, { 41,3168 }, { 42,3168 }, { 43,3168 },
{ 44,3168 }, { 45,3168 }, { 46,3168 }, { 47,3168 }, { 48,3168 },
{ 49,3168 }, { 50,3168 }, { 51,3168 }, { 52,3168 }, { 53,3168 },
{ 54,3168 }, { 55,3168 }, { 56,3168 }, { 57,3168 }, { 58,3168 },
{ 59,3168 }, { 60,3168 }, { 61,3168 }, { 62,3168 }, { 63,3168 },
{ 64,3168 }, { 65,3168 }, { 66,3168 }, { 67,3168 }, { 68,3168 },
{ 69,3168 }, { 70,3168 }, { 71,3168 }, { 72,3168 }, { 73,3168 },
{ 74,3168 }, { 75,3168 }, { 76,3168 }, { 77,3168 }, { 78,3168 },
{ 79,3168 }, { 80,3168 }, { 81,3168 }, { 82,3168 }, { 83,3168 },
{ 84,3168 }, { 85,3168 }, { 86,3168 }, { 87,3168 }, { 88,3168 },
{ 89,3168 }, { 90,3168 }, { 91,3168 }, { 92,3168 }, { 93,3168 },
{ 94,3168 }, { 95,3168 }, { 96,3168 }, { 97,3168 }, { 98,3168 },
{ 99,3168 }, { 100,3168 }, { 101,3168 }, { 102,3168 }, { 103,3168 },
{ 104,3168 }, { 105,3168 }, { 106,3168 }, { 107,3168 }, { 108,3168 },
{ 109,3168 }, { 110,3168 }, { 111,3168 }, { 112,3168 }, { 113,3168 },
{ 114,3168 }, { 115,3168 }, { 116,3168 }, { 117,3168 }, { 118,3168 },
{ 119,3168 }, { 120,3168 }, { 121,3168 }, { 122,3168 }, { 123,3168 },
{ 124,3168 }, { 125,3168 }, { 126,3168 }, { 127,3168 }, { 128,3168 },
{ 129,3168 }, { 130,3168 }, { 131,3168 }, { 132,3168 }, { 133,3168 },
{ 134,3168 }, { 135,3168 }, { 136,3168 }, { 137,3168 }, { 138,3168 },
{ 139,3168 }, { 140,3168 }, { 141,3168 }, { 142,3168 }, { 143,3168 },
{ 144,3168 }, { 145,3168 }, { 146,3168 }, { 147,3168 }, { 148,3168 },
{ 149,3168 }, { 150,3168 }, { 151,3168 }, { 152,3168 }, { 153,3168 },
{ 154,3168 }, { 155,3168 }, { 156,3168 }, { 157,3168 }, { 158,3168 },
{ 159,3168 }, { 160,3168 }, { 161,3168 }, { 162,3168 }, { 163,3168 },
{ 164,3168 }, { 165,3168 }, { 166,3168 }, { 167,3168 }, { 168,3168 },
{ 169,3168 }, { 170,3168 }, { 171,3168 }, { 172,3168 }, { 173,3168 },
{ 174,3168 }, { 175,3168 }, { 176,3168 }, { 177,3168 }, { 178,3168 },
{ 179,3168 }, { 180,3168 }, { 181,3168 }, { 182,3168 }, { 183,3168 },
{ 184,3168 }, { 185,3168 }, { 186,3168 }, { 187,3168 }, { 188,3168 },
{ 189,3168 }, { 190,3168 }, { 191,3168 }, { 192,3168 }, { 193,3168 },
{ 194,3168 }, { 195,3168 }, { 196,3168 }, { 197,3168 }, { 198,3168 },
{ 199,3168 }, { 200,3168 }, { 201,3168 }, { 202,3168 }, { 203,3168 },
{ 204,3168 }, { 205,3168 }, { 206,3168 }, { 207,3168 }, { 208,3168 },
{ 209,3168 }, { 210,3168 }, { 211,3168 }, { 212,3168 }, { 213,3168 },
{ 214,3168 }, { 215,3168 }, { 216,3168 }, { 217,3168 }, { 218,3168 },
{ 219,3168 }, { 220,3168 }, { 221,3168 }, { 222,3168 }, { 223,3168 },
{ 224,3168 }, { 225,3168 }, { 226,3168 }, { 227,3168 }, { 228,3168 },
{ 229,3168 }, { 230,3168 }, { 231,3168 }, { 232,3168 }, { 233,3168 },
{ 234,3168 }, { 235,3168 }, { 236,3168 }, { 237,3168 }, { 238,3168 },
{ 239,3168 }, { 240,3168 }, { 241,3168 }, { 242,3168 }, { 243,3168 },
{ 244,3168 }, { 245,3168 }, { 246,3168 }, { 247,3168 }, { 248,3168 },
{ 249,3168 }, { 250,3168 }, { 251,3168 }, { 252,3168 }, { 253,3168 },
{ 254,3168 }, { 255,3168 }, { 256,3168 }, { 0, 37 }, { 0,20226 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 37 }, { 0,20203 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48,3168 }, { 49,3168 }, { 50,3168 },
{ 51,3168 }, { 52,3168 }, { 53,3168 }, { 54,3168 }, { 55,3168 },
{ 56,3168 }, { 57,3168 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3168 },
{ 66,3168 }, { 67,3168 }, { 68,3168 }, { 69,3168 }, { 70,3168 },
{ 48,3168 }, { 49,3168 }, { 50,3168 }, { 51,3168 }, { 52,3168 },
{ 53,3168 }, { 54,3168 }, { 55,3168 }, { 56,3168 }, { 57,3168 },
{ 0, 44 }, { 0,20144 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,3168 }, { 66,3168 }, { 67,3168 },
{ 68,3168 }, { 69,3168 }, { 70,3168 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 97,3168 }, { 98,3168 }, { 99,3168 }, { 100,3168 },
{ 101,3168 }, { 102,3168 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 36,-9772 }, { 0, 0 }, { 97,3168 },
{ 98,3168 }, { 99,3168 }, { 100,3168 }, { 101,3168 }, { 102,3168 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 95, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 0, 1 }, { 0,19887 }, { 1, 0 },
{ 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 },
{ 7, 0 }, { 8, 0 }, { 9, 0 }, { 0, 0 }, { 11, 0 },
{ 12, 0 }, { 0, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 },
{ 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 },
{ 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 },
{ 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 },
{ 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 },
{ 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 },
{ 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 },
{ 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
{ 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
{ 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 },
{ 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 },
{ 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 },
{ 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 },
{ 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 },
{ 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 },
{ 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 },
{ 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 },
{ 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 },
{ 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 },
{ 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 },
{ 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 },
{ 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 },
{ 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 },
{ 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 },
{ 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 },
{ 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 },
{ 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 },
{ 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 },
{ 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 },
{ 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 },
{ 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 },
{ 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 },
{ 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 },
{ 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 },
{ 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 },
{ 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 },
{ 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 },
{ 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 },
{ 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 },
{ 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 },
{ 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 },
{ 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 },
{ 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 },
{ 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 },
{ 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 },
{ 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 },
{ 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 },
{ 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 },
{ 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 },
{ 0, 1 }, { 0,19629 }, { 1,-258 }, { 2,-258 }, { 3,-258 },
{ 4,-258 }, { 5,-258 }, { 6,-258 }, { 7,-258 }, { 8,-258 },
{ 9,-258 }, { 0, 0 }, { 11,-258 }, { 12,-258 }, { 0, 0 },
{ 14,-258 }, { 15,-258 }, { 16,-258 }, { 17,-258 }, { 18,-258 },
{ 19,-258 }, { 20,-258 }, { 21,-258 }, { 22,-258 }, { 23,-258 },
{ 24,-258 }, { 25,-258 }, { 26,-258 }, { 27,-258 }, { 28,-258 },
{ 29,-258 }, { 30,-258 }, { 31,-258 }, { 32,-258 }, { 33, 0 },
{ 34,-258 }, { 35, 0 }, { 36,-258 }, { 37, 0 }, { 38, 0 },
{ 39,-258 }, { 40,-258 }, { 41,-258 }, { 42, 0 }, { 43, 0 },
{ 44,-258 }, { 45, 0 }, { 46,-258 }, { 47, 0 }, { 48,-258 },
{ 49,-258 }, { 50,-258 }, { 51,-258 }, { 52,-258 }, { 53,-258 },
{ 54,-258 }, { 55,-258 }, { 56,-258 }, { 57,-258 }, { 58,-258 },
{ 59,-258 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 },
{ 64, 0 }, { 65,-258 }, { 66,-258 }, { 67,-258 }, { 68,-258 },
{ 69,-258 }, { 70,-258 }, { 71,-258 }, { 72,-258 }, { 73,-258 },
{ 74,-258 }, { 75,-258 }, { 76,-258 }, { 77,-258 }, { 78,-258 },
{ 79,-258 }, { 80,-258 }, { 81,-258 }, { 82,-258 }, { 83,-258 },
{ 84,-258 }, { 85,-258 }, { 86,-258 }, { 87,-258 }, { 88,-258 },
{ 89,-258 }, { 90,-258 }, { 91,-258 }, { 92,-258 }, { 93,-258 },
{ 94, 0 }, { 95,-258 }, { 96, 0 }, { 97,-258 }, { 98,-258 },
{ 99,-258 }, { 100,-258 }, { 101,-258 }, { 102,-258 }, { 103,-258 },
{ 104,-258 }, { 105,-258 }, { 106,-258 }, { 107,-258 }, { 108,-258 },
{ 109,-258 }, { 110,-258 }, { 111,-258 }, { 112,-258 }, { 113,-258 },
{ 114,-258 }, { 115,-258 }, { 116,-258 }, { 117,-258 }, { 118,-258 },
{ 119,-258 }, { 120,-258 }, { 121,-258 }, { 122,-258 }, { 123,-258 },
{ 124, 0 }, { 125,-258 }, { 126, 0 }, { 127,-258 }, { 128,-258 },
{ 129,-258 }, { 130,-258 }, { 131,-258 }, { 132,-258 }, { 133,-258 },
{ 134,-258 }, { 135,-258 }, { 136,-258 }, { 137,-258 }, { 138,-258 },
{ 139,-258 }, { 140,-258 }, { 141,-258 }, { 142,-258 }, { 143,-258 },
{ 144,-258 }, { 145,-258 }, { 146,-258 }, { 147,-258 }, { 148,-258 },
{ 149,-258 }, { 150,-258 }, { 151,-258 }, { 152,-258 }, { 153,-258 },
{ 154,-258 }, { 155,-258 }, { 156,-258 }, { 157,-258 }, { 158,-258 },
{ 159,-258 }, { 160,-258 }, { 161,-258 }, { 162,-258 }, { 163,-258 },
{ 164,-258 }, { 165,-258 }, { 166,-258 }, { 167,-258 }, { 168,-258 },
{ 169,-258 }, { 170,-258 }, { 171,-258 }, { 172,-258 }, { 173,-258 },
{ 174,-258 }, { 175,-258 }, { 176,-258 }, { 177,-258 }, { 178,-258 },
{ 179,-258 }, { 180,-258 }, { 181,-258 }, { 182,-258 }, { 183,-258 },
{ 184,-258 }, { 185,-258 }, { 186,-258 }, { 187,-258 }, { 188,-258 },
{ 189,-258 }, { 190,-258 }, { 191,-258 }, { 192,-258 }, { 193,-258 },
{ 194,-258 }, { 195,-258 }, { 196,-258 }, { 197,-258 }, { 198,-258 },
{ 199,-258 }, { 200,-258 }, { 201,-258 }, { 202,-258 }, { 203,-258 },
{ 204,-258 }, { 205,-258 }, { 206,-258 }, { 207,-258 }, { 208,-258 },
{ 209,-258 }, { 210,-258 }, { 211,-258 }, { 212,-258 }, { 213,-258 },
{ 214,-258 }, { 215,-258 }, { 216,-258 }, { 217,-258 }, { 218,-258 },
{ 219,-258 }, { 220,-258 }, { 221,-258 }, { 222,-258 }, { 223,-258 },
{ 224,-258 }, { 225,-258 }, { 226,-258 }, { 227,-258 }, { 228,-258 },
{ 229,-258 }, { 230,-258 }, { 231,-258 }, { 232,-258 }, { 233,-258 },
{ 234,-258 }, { 235,-258 }, { 236,-258 }, { 237,-258 }, { 238,-258 },
{ 239,-258 }, { 240,-258 }, { 241,-258 }, { 242,-258 }, { 243,-258 },
{ 244,-258 }, { 245,-258 }, { 246,-258 }, { 247,-258 }, { 248,-258 },
{ 249,-258 }, { 250,-258 }, { 251,-258 }, { 252,-258 }, { 253,-258 },
{ 254,-258 }, { 255,-258 }, { 256,-258 }, { 0, 2 }, { 0,19371 },
{ 0, 73 }, { 0,19369 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 77 }, { 0,19347 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 33, 0 }, { 0, 0 }, { 35, 0 },
{ 0, 0 }, { 37, 0 }, { 38, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 42, 0 }, { 43, 0 }, { 0, 0 }, { 45, 0 },
{ 0, 0 }, { 47, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 60, 0 },
{ 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 0, 75 },
{ 0,19305 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 69,-4404 }, { 48, 42 }, { 49, 42 }, { 50, 42 }, { 51, 42 },
{ 52, 42 }, { 53, 42 }, { 54, 42 }, { 55, 42 }, { 56, 42 },
{ 57, 42 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 94, 0 }, { 0, 0 },
{ 96, 0 }, { 0, 9 }, { 0,19273 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 101,-4404 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 9, 0 }, { 10, 0 }, { 0, 0 }, { 12, 0 },
{ 13, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 124, 0 }, { 0, 0 },
{ 126, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 39,-10204 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 45,-10202 }, { 0, 9 }, { 0,19226 },
{ 1,2553 }, { 2,2553 }, { 3,2553 }, { 4,2553 }, { 5,2553 },
{ 6,2553 }, { 7,2553 }, { 8,2553 }, { 9,2811 }, { 10,-3788 },
{ 11,2553 }, { 12,2811 }, { 13,-3788 }, { 14,2553 }, { 15,2553 },
{ 16,2553 }, { 17,2553 }, { 18,2553 }, { 19,2553 }, { 20,2553 },
{ 21,2553 }, { 22,2553 }, { 23,2553 }, { 24,2553 }, { 25,2553 },
{ 26,2553 }, { 27,2553 }, { 28,2553 }, { 29,2553 }, { 30,2553 },
{ 31,2553 }, { 32,2811 }, { 33,2553 }, { 34,2553 }, { 35,2553 },
{ 36,2553 }, { 37,2553 }, { 38,2553 }, { 39,2553 }, { 40,2553 },
{ 41,2553 }, { 42,2553 }, { 43,2553 }, { 44,2553 }, { 45,3069 },
{ 46,2553 }, { 47,2553 }, { 48,2553 }, { 49,2553 }, { 50,2553 },
{ 51,2553 }, { 52,2553 }, { 53,2553 }, { 54,2553 }, { 55,2553 },
{ 56,2553 }, { 57,2553 }, { 58,2553 }, { 59,2553 }, { 60,2553 },
{ 61,2553 }, { 62,2553 }, { 63,2553 }, { 64,2553 }, { 65,2553 },
{ 66,2553 }, { 67,2553 }, { 68,2553 }, { 69,2553 }, { 70,2553 },
{ 71,2553 }, { 72,2553 }, { 73,2553 }, { 74,2553 }, { 75,2553 },
{ 76,2553 }, { 77,2553 }, { 78,2553 }, { 79,2553 }, { 80,2553 },
{ 81,2553 }, { 82,2553 }, { 83,2553 }, { 84,2553 }, { 85,2553 },
{ 86,2553 }, { 87,2553 }, { 88,2553 }, { 89,2553 }, { 90,2553 },
{ 91,2553 }, { 92,2553 }, { 93,2553 }, { 94,2553 }, { 95,2553 },
{ 96,2553 }, { 97,2553 }, { 98,2553 }, { 99,2553 }, { 100,2553 },
{ 101,2553 }, { 102,2553 }, { 103,2553 }, { 104,2553 }, { 105,2553 },
{ 106,2553 }, { 107,2553 }, { 108,2553 }, { 109,2553 }, { 110,2553 },
{ 111,2553 }, { 112,2553 }, { 113,2553 }, { 114,2553 }, { 115,2553 },
{ 116,2553 }, { 117,2553 }, { 118,2553 }, { 119,2553 }, { 120,2553 },
{ 121,2553 }, { 122,2553 }, { 123,2553 }, { 124,2553 }, { 125,2553 },
{ 126,2553 }, { 127,2553 }, { 128,2553 }, { 129,2553 }, { 130,2553 },
{ 131,2553 }, { 132,2553 }, { 133,2553 }, { 134,2553 }, { 135,2553 },
{ 136,2553 }, { 137,2553 }, { 138,2553 }, { 139,2553 }, { 140,2553 },
{ 141,2553 }, { 142,2553 }, { 143,2553 }, { 144,2553 }, { 145,2553 },
{ 146,2553 }, { 147,2553 }, { 148,2553 }, { 149,2553 }, { 150,2553 },
{ 151,2553 }, { 152,2553 }, { 153,2553 }, { 154,2553 }, { 155,2553 },
{ 156,2553 }, { 157,2553 }, { 158,2553 }, { 159,2553 }, { 160,2553 },
{ 161,2553 }, { 162,2553 }, { 163,2553 }, { 164,2553 }, { 165,2553 },
{ 166,2553 }, { 167,2553 }, { 168,2553 }, { 169,2553 }, { 170,2553 },
{ 171,2553 }, { 172,2553 }, { 173,2553 }, { 174,2553 }, { 175,2553 },
{ 176,2553 }, { 177,2553 }, { 178,2553 }, { 179,2553 }, { 180,2553 },
{ 181,2553 }, { 182,2553 }, { 183,2553 }, { 184,2553 }, { 185,2553 },
{ 186,2553 }, { 187,2553 }, { 188,2553 }, { 189,2553 }, { 190,2553 },
{ 191,2553 }, { 192,2553 }, { 193,2553 }, { 194,2553 }, { 195,2553 },
{ 196,2553 }, { 197,2553 }, { 198,2553 }, { 199,2553 }, { 200,2553 },
{ 201,2553 }, { 202,2553 }, { 203,2553 }, { 204,2553 }, { 205,2553 },
{ 206,2553 }, { 207,2553 }, { 208,2553 }, { 209,2553 }, { 210,2553 },
{ 211,2553 }, { 212,2553 }, { 213,2553 }, { 214,2553 }, { 215,2553 },
{ 216,2553 }, { 217,2553 }, { 218,2553 }, { 219,2553 }, { 220,2553 },
{ 221,2553 }, { 222,2553 }, { 223,2553 }, { 224,2553 }, { 225,2553 },
{ 226,2553 }, { 227,2553 }, { 228,2553 }, { 229,2553 }, { 230,2553 },
{ 231,2553 }, { 232,2553 }, { 233,2553 }, { 234,2553 }, { 235,2553 },
{ 236,2553 }, { 237,2553 }, { 238,2553 }, { 239,2553 }, { 240,2553 },
{ 241,2553 }, { 242,2553 }, { 243,2553 }, { 244,2553 }, { 245,2553 },
{ 246,2553 }, { 247,2553 }, { 248,2553 }, { 249,2553 }, { 250,2553 },
{ 251,2553 }, { 252,2553 }, { 253,2553 }, { 254,2553 }, { 255,2553 },
{ 256,2553 }, { 0, 3 }, { 0,18968 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 16 }, { 0,18961 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 },
{ 0, 0 }, { 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 33, 0 }, { 0, 0 }, { 35, 0 }, { 0, 0 }, { 37, 0 },
{ 38, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 42, 0 },
{ 43, 0 }, { 0, 0 }, { 45, 0 }, { 39,-10512 }, { 47, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-10507 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 },
{ 63, 0 }, { 64, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 94, 0 }, { 0, 0 }, { 96, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 124, 0 }, { 0, 0 }, { 126, 0 }, { 0, 16 },
{ 0,18840 }, { 1,3199 }, { 2,3199 }, { 3,3199 }, { 4,3199 },
{ 5,3199 }, { 6,3199 }, { 7,3199 }, { 8,3199 }, { 9,3457 },
{ 10,-3220 }, { 11,3199 }, { 12,3457 }, { 13,-3220 }, { 14,3199 },
{ 15,3199 }, { 16,3199 }, { 17,3199 }, { 18,3199 }, { 19,3199 },
{ 20,3199 }, { 21,3199 }, { 22,3199 }, { 23,3199 }, { 24,3199 },
{ 25,3199 }, { 26,3199 }, { 27,3199 }, { 28,3199 }, { 29,3199 },
{ 30,3199 }, { 31,3199 }, { 32,3457 }, { 33,3199 }, { 34,3199 },
{ 35,3199 }, { 36,3199 }, { 37,3199 }, { 38,3199 }, { 39,3199 },
{ 40,3199 }, { 41,3199 }, { 42,3199 }, { 43,3199 }, { 44,3199 },
{ 45,3715 }, { 46,3199 }, { 47,3199 }, { 48,3199 }, { 49,3199 },
{ 50,3199 }, { 51,3199 }, { 52,3199 }, { 53,3199 }, { 54,3199 },
{ 55,3199 }, { 56,3199 }, { 57,3199 }, { 58,3199 }, { 59,3199 },
{ 60,3199 }, { 61,3199 }, { 62,3199 }, { 63,3199 }, { 64,3199 },
{ 65,3199 }, { 66,3199 }, { 67,3199 }, { 68,3199 }, { 69,3199 },
{ 70,3199 }, { 71,3199 }, { 72,3199 }, { 73,3199 }, { 74,3199 },
{ 75,3199 }, { 76,3199 }, { 77,3199 }, { 78,3199 }, { 79,3199 },
{ 80,3199 }, { 81,3199 }, { 82,3199 }, { 83,3199 }, { 84,3199 },
{ 85,3199 }, { 86,3199 }, { 87,3199 }, { 88,3199 }, { 89,3199 },
{ 90,3199 }, { 91,3199 }, { 92,3199 }, { 93,3199 }, { 94,3199 },
{ 95,3199 }, { 96,3199 }, { 97,3199 }, { 98,3199 }, { 99,3199 },
{ 100,3199 }, { 101,3199 }, { 102,3199 }, { 103,3199 }, { 104,3199 },
{ 105,3199 }, { 106,3199 }, { 107,3199 }, { 108,3199 }, { 109,3199 },
{ 110,3199 }, { 111,3199 }, { 112,3199 }, { 113,3199 }, { 114,3199 },
{ 115,3199 }, { 116,3199 }, { 117,3199 }, { 118,3199 }, { 119,3199 },
{ 120,3199 }, { 121,3199 }, { 122,3199 }, { 123,3199 }, { 124,3199 },
{ 125,3199 }, { 126,3199 }, { 127,3199 }, { 128,3199 }, { 129,3199 },
{ 130,3199 }, { 131,3199 }, { 132,3199 }, { 133,3199 }, { 134,3199 },
{ 135,3199 }, { 136,3199 }, { 137,3199 }, { 138,3199 }, { 139,3199 },
{ 140,3199 }, { 141,3199 }, { 142,3199 }, { 143,3199 }, { 144,3199 },
{ 145,3199 }, { 146,3199 }, { 147,3199 }, { 148,3199 }, { 149,3199 },
{ 150,3199 }, { 151,3199 }, { 152,3199 }, { 153,3199 }, { 154,3199 },
{ 155,3199 }, { 156,3199 }, { 157,3199 }, { 158,3199 }, { 159,3199 },
{ 160,3199 }, { 161,3199 }, { 162,3199 }, { 163,3199 }, { 164,3199 },
{ 165,3199 }, { 166,3199 }, { 167,3199 }, { 168,3199 }, { 169,3199 },
{ 170,3199 }, { 171,3199 }, { 172,3199 }, { 173,3199 }, { 174,3199 },
{ 175,3199 }, { 176,3199 }, { 177,3199 }, { 178,3199 }, { 179,3199 },
{ 180,3199 }, { 181,3199 }, { 182,3199 }, { 183,3199 }, { 184,3199 },
{ 185,3199 }, { 186,3199 }, { 187,3199 }, { 188,3199 }, { 189,3199 },
{ 190,3199 }, { 191,3199 }, { 192,3199 }, { 193,3199 }, { 194,3199 },
{ 195,3199 }, { 196,3199 }, { 197,3199 }, { 198,3199 }, { 199,3199 },
{ 200,3199 }, { 201,3199 }, { 202,3199 }, { 203,3199 }, { 204,3199 },
{ 205,3199 }, { 206,3199 }, { 207,3199 }, { 208,3199 }, { 209,3199 },
{ 210,3199 }, { 211,3199 }, { 212,3199 }, { 213,3199 }, { 214,3199 },
{ 215,3199 }, { 216,3199 }, { 217,3199 }, { 218,3199 }, { 219,3199 },
{ 220,3199 }, { 221,3199 }, { 222,3199 }, { 223,3199 }, { 224,3199 },
{ 225,3199 }, { 226,3199 }, { 227,3199 }, { 228,3199 }, { 229,3199 },
{ 230,3199 }, { 231,3199 }, { 232,3199 }, { 233,3199 }, { 234,3199 },
{ 235,3199 }, { 236,3199 }, { 237,3199 }, { 238,3199 }, { 239,3199 },
{ 240,3199 }, { 241,3199 }, { 242,3199 }, { 243,3199 }, { 244,3199 },
{ 245,3199 }, { 246,3199 }, { 247,3199 }, { 248,3199 }, { 249,3199 },
{ 250,3199 }, { 251,3199 }, { 252,3199 }, { 253,3199 }, { 254,3199 },
{ 255,3199 }, { 256,3199 }, { 0, 22 }, { 0,18582 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 }, { 0, 0 },
{ 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 39,-10877 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-10850 }, { 0, 22 },
{ 0,18535 }, { 1,3926 }, { 2,3926 }, { 3,3926 }, { 4,3926 },
{ 5,3926 }, { 6,3926 }, { 7,3926 }, { 8,3926 }, { 9,4184 },
{ 10,-3215 }, { 11,3926 }, { 12,4184 }, { 13,-3215 }, { 14,3926 },
{ 15,3926 }, { 16,3926 }, { 17,3926 }, { 18,3926 }, { 19,3926 },
{ 20,3926 }, { 21,3926 }, { 22,3926 }, { 23,3926 }, { 24,3926 },
{ 25,3926 }, { 26,3926 }, { 27,3926 }, { 28,3926 }, { 29,3926 },
{ 30,3926 }, { 31,3926 }, { 32,4184 }, { 33,3926 }, { 34,3926 },
{ 35,3926 }, { 36,3926 }, { 37,3926 }, { 38,3926 }, { 39,3926 },
{ 40,3926 }, { 41,3926 }, { 42,3926 }, { 43,3926 }, { 44,3926 },
{ 45,4442 }, { 46,3926 }, { 47,3926 }, { 48,3926 }, { 49,3926 },
{ 50,3926 }, { 51,3926 }, { 52,3926 }, { 53,3926 }, { 54,3926 },
{ 55,3926 }, { 56,3926 }, { 57,3926 }, { 58,3926 }, { 59,3926 },
{ 60,3926 }, { 61,3926 }, { 62,3926 }, { 63,3926 }, { 64,3926 },
{ 65,3926 }, { 66,3926 }, { 67,3926 }, { 68,3926 }, { 69,3926 },
{ 70,3926 }, { 71,3926 }, { 72,3926 }, { 73,3926 }, { 74,3926 },
{ 75,3926 }, { 76,3926 }, { 77,3926 }, { 78,3926 }, { 79,3926 },
{ 80,3926 }, { 81,3926 }, { 82,3926 }, { 83,3926 }, { 84,3926 },
{ 85,3926 }, { 86,3926 }, { 87,3926 }, { 88,3926 }, { 89,3926 },
{ 90,3926 }, { 91,3926 }, { 92,3926 }, { 93,3926 }, { 94,3926 },
{ 95,3926 }, { 96,3926 }, { 97,3926 }, { 98,3926 }, { 99,3926 },
{ 100,3926 }, { 101,3926 }, { 102,3926 }, { 103,3926 }, { 104,3926 },
{ 105,3926 }, { 106,3926 }, { 107,3926 }, { 108,3926 }, { 109,3926 },
{ 110,3926 }, { 111,3926 }, { 112,3926 }, { 113,3926 }, { 114,3926 },
{ 115,3926 }, { 116,3926 }, { 117,3926 }, { 118,3926 }, { 119,3926 },
{ 120,3926 }, { 121,3926 }, { 122,3926 }, { 123,3926 }, { 124,3926 },
{ 125,3926 }, { 126,3926 }, { 127,3926 }, { 128,3926 }, { 129,3926 },
{ 130,3926 }, { 131,3926 }, { 132,3926 }, { 133,3926 }, { 134,3926 },
{ 135,3926 }, { 136,3926 }, { 137,3926 }, { 138,3926 }, { 139,3926 },
{ 140,3926 }, { 141,3926 }, { 142,3926 }, { 143,3926 }, { 144,3926 },
{ 145,3926 }, { 146,3926 }, { 147,3926 }, { 148,3926 }, { 149,3926 },
{ 150,3926 }, { 151,3926 }, { 152,3926 }, { 153,3926 }, { 154,3926 },
{ 155,3926 }, { 156,3926 }, { 157,3926 }, { 158,3926 }, { 159,3926 },
{ 160,3926 }, { 161,3926 }, { 162,3926 }, { 163,3926 }, { 164,3926 },
{ 165,3926 }, { 166,3926 }, { 167,3926 }, { 168,3926 }, { 169,3926 },
{ 170,3926 }, { 171,3926 }, { 172,3926 }, { 173,3926 }, { 174,3926 },
{ 175,3926 }, { 176,3926 }, { 177,3926 }, { 178,3926 }, { 179,3926 },
{ 180,3926 }, { 181,3926 }, { 182,3926 }, { 183,3926 }, { 184,3926 },
{ 185,3926 }, { 186,3926 }, { 187,3926 }, { 188,3926 }, { 189,3926 },
{ 190,3926 }, { 191,3926 }, { 192,3926 }, { 193,3926 }, { 194,3926 },
{ 195,3926 }, { 196,3926 }, { 197,3926 }, { 198,3926 }, { 199,3926 },
{ 200,3926 }, { 201,3926 }, { 202,3926 }, { 203,3926 }, { 204,3926 },
{ 205,3926 }, { 206,3926 }, { 207,3926 }, { 208,3926 }, { 209,3926 },
{ 210,3926 }, { 211,3926 }, { 212,3926 }, { 213,3926 }, { 214,3926 },
{ 215,3926 }, { 216,3926 }, { 217,3926 }, { 218,3926 }, { 219,3926 },
{ 220,3926 }, { 221,3926 }, { 222,3926 }, { 223,3926 }, { 224,3926 },
{ 225,3926 }, { 226,3926 }, { 227,3926 }, { 228,3926 }, { 229,3926 },
{ 230,3926 }, { 231,3926 }, { 232,3926 }, { 233,3926 }, { 234,3926 },
{ 235,3926 }, { 236,3926 }, { 237,3926 }, { 238,3926 }, { 239,3926 },
{ 240,3926 }, { 241,3926 }, { 242,3926 }, { 243,3926 }, { 244,3926 },
{ 245,3926 }, { 246,3926 }, { 247,3926 }, { 248,3926 }, { 249,3926 },
{ 250,3926 }, { 251,3926 }, { 252,3926 }, { 253,3926 }, { 254,3926 },
{ 255,3926 }, { 256,3926 }, { 0, 39 }, { 0,18277 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 37 }, { 0,18269 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 37 }, { 0,18246 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 48,-10829 }, { 49,-10829 }, { 50,-10829 }, { 51,-10829 },
{ 52,-10829 }, { 53,-10829 }, { 54,-10829 }, { 55,-10829 }, { 48,4434 },
{ 49,4434 }, { 50,4434 }, { 51,4434 }, { 52,4434 }, { 53,4434 },
{ 54,4434 }, { 55,4434 }, { 56,4434 }, { 57,4434 }, { 0, 0 },
{ 0, 0 }, { 0, 40 }, { 0,18208 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 65,4434 }, { 66,4434 }, { 67,4434 }, { 68,4434 },
{ 69,4434 }, { 70,4434 }, { 48,4434 }, { 49,4434 }, { 50,4434 },
{ 51,4434 }, { 52,4434 }, { 53,4434 }, { 54,4434 }, { 55,4434 },
{ 56,4434 }, { 57,4434 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,4434 },
{ 66,4434 }, { 67,4434 }, { 68,4434 }, { 69,4434 }, { 70,4434 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,4434 }, { 98,4434 },
{ 99,4434 }, { 100,4434 }, { 101,4434 }, { 102,4434 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48,-10896 }, { 49,-10896 }, { 50,-10896 }, { 51,-10896 }, { 52,-10896 },
{ 53,-10896 }, { 54,-10896 }, { 55,-10896 }, { 56,-10896 }, { 57,-10896 },
{ 0, 0 }, { 97,4434 }, { 98,4434 }, { 99,4434 }, { 100,4434 },
{ 101,4434 }, { 102,4434 }, { 65,-10896 }, { 66,-10896 }, { 67,-10896 },
{ 68,-10896 }, { 69,-10896 }, { 70,-10896 }, { 0, 47 }, { 0,18136 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-10896 },
{ 98,-10896 }, { 99,-10896 }, { 100,-10896 }, { 101,-10896 }, { 102,-10896 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 36,-11399 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 },
{ 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 },
{ 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 },
{ 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 },
{ 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 },
{ 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95, 0 },
{ 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 },
{ 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 },
{ 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 },
{ 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 },
{ 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 },
{ 121, 0 }, { 122, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 },
{ 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 },
{ 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 },
{ 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 },
{ 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 },
{ 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 },
{ 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 },
{ 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 },
{ 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 },
{ 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 },
{ 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 },
{ 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 },
{ 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 },
{ 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 },
{ 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 },
{ 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 },
{ 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 },
{ 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 },
{ 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 },
{ 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 },
{ 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 },
{ 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 },
{ 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 },
{ 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 },
{ 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 },
{ 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 },
{ 0, 53 }, { 0,17879 }, { 1, 0 }, { 2, 0 }, { 3, 0 },
{ 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 },
{ 9, 0 }, { 0, 0 }, { 11, 0 }, { 12, 0 }, { 0, 0 },
{ 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 },
{ 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 },
{ 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 },
{ 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 },
{ 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 },
{ 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 },
{ 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 },
{ 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 },
{ 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 },
{ 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 },
{ 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 24 }, { 0,17621 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 },
{ 0, 0 }, { 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 39,-11838 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-11774 },
{ 0, 24 }, { 0,17574 }, { 1,4124 }, { 2,4124 }, { 3,4124 },
{ 4,4124 }, { 5,4124 }, { 6,4124 }, { 7,4124 }, { 8,4124 },
{ 9,4382 }, { 10,-2960 }, { 11,4124 }, { 12,4382 }, { 13,-2960 },
{ 14,4124 }, { 15,4124 }, { 16,4124 }, { 17,4124 }, { 18,4124 },
{ 19,4124 }, { 20,4124 }, { 21,4124 }, { 22,4124 }, { 23,4124 },
{ 24,4124 }, { 25,4124 }, { 26,4124 }, { 27,4124 }, { 28,4124 },
{ 29,4124 }, { 30,4124 }, { 31,4124 }, { 32,4382 }, { 33,4124 },
{ 34,4124 }, { 35,4124 }, { 36,4124 }, { 37,4124 }, { 38,4124 },
{ 39,4124 }, { 40,4124 }, { 41,4124 }, { 42,4124 }, { 43,4124 },
{ 44,4124 }, { 45,4640 }, { 46,4124 }, { 47,4124 }, { 48,4124 },
{ 49,4124 }, { 50,4124 }, { 51,4124 }, { 52,4124 }, { 53,4124 },
{ 54,4124 }, { 55,4124 }, { 56,4124 }, { 57,4124 }, { 58,4124 },
{ 59,4124 }, { 60,4124 }, { 61,4124 }, { 62,4124 }, { 63,4124 },
{ 64,4124 }, { 65,4124 }, { 66,4124 }, { 67,4124 }, { 68,4124 },
{ 69,4124 }, { 70,4124 }, { 71,4124 }, { 72,4124 }, { 73,4124 },
{ 74,4124 }, { 75,4124 }, { 76,4124 }, { 77,4124 }, { 78,4124 },
{ 79,4124 }, { 80,4124 }, { 81,4124 }, { 82,4124 }, { 83,4124 },
{ 84,4124 }, { 85,4124 }, { 86,4124 }, { 87,4124 }, { 88,4124 },
{ 89,4124 }, { 90,4124 }, { 91,4124 }, { 92,4124 }, { 93,4124 },
{ 94,4124 }, { 95,4124 }, { 96,4124 }, { 97,4124 }, { 98,4124 },
{ 99,4124 }, { 100,4124 }, { 101,4124 }, { 102,4124 }, { 103,4124 },
{ 104,4124 }, { 105,4124 }, { 106,4124 }, { 107,4124 }, { 108,4124 },
{ 109,4124 }, { 110,4124 }, { 111,4124 }, { 112,4124 }, { 113,4124 },
{ 114,4124 }, { 115,4124 }, { 116,4124 }, { 117,4124 }, { 118,4124 },
{ 119,4124 }, { 120,4124 }, { 121,4124 }, { 122,4124 }, { 123,4124 },
{ 124,4124 }, { 125,4124 }, { 126,4124 }, { 127,4124 }, { 128,4124 },
{ 129,4124 }, { 130,4124 }, { 131,4124 }, { 132,4124 }, { 133,4124 },
{ 134,4124 }, { 135,4124 }, { 136,4124 }, { 137,4124 }, { 138,4124 },
{ 139,4124 }, { 140,4124 }, { 141,4124 }, { 142,4124 }, { 143,4124 },
{ 144,4124 }, { 145,4124 }, { 146,4124 }, { 147,4124 }, { 148,4124 },
{ 149,4124 }, { 150,4124 }, { 151,4124 }, { 152,4124 }, { 153,4124 },
{ 154,4124 }, { 155,4124 }, { 156,4124 }, { 157,4124 }, { 158,4124 },
{ 159,4124 }, { 160,4124 }, { 161,4124 }, { 162,4124 }, { 163,4124 },
{ 164,4124 }, { 165,4124 }, { 166,4124 }, { 167,4124 }, { 168,4124 },
{ 169,4124 }, { 170,4124 }, { 171,4124 }, { 172,4124 }, { 173,4124 },
{ 174,4124 }, { 175,4124 }, { 176,4124 }, { 177,4124 }, { 178,4124 },
{ 179,4124 }, { 180,4124 }, { 181,4124 }, { 182,4124 }, { 183,4124 },
{ 184,4124 }, { 185,4124 }, { 186,4124 }, { 187,4124 }, { 188,4124 },
{ 189,4124 }, { 190,4124 }, { 191,4124 }, { 192,4124 }, { 193,4124 },
{ 194,4124 }, { 195,4124 }, { 196,4124 }, { 197,4124 }, { 198,4124 },
{ 199,4124 }, { 200,4124 }, { 201,4124 }, { 202,4124 }, { 203,4124 },
{ 204,4124 }, { 205,4124 }, { 206,4124 }, { 207,4124 }, { 208,4124 },
{ 209,4124 }, { 210,4124 }, { 211,4124 }, { 212,4124 }, { 213,4124 },
{ 214,4124 }, { 215,4124 }, { 216,4124 }, { 217,4124 }, { 218,4124 },
{ 219,4124 }, { 220,4124 }, { 221,4124 }, { 222,4124 }, { 223,4124 },
{ 224,4124 }, { 225,4124 }, { 226,4124 }, { 227,4124 }, { 228,4124 },
{ 229,4124 }, { 230,4124 }, { 231,4124 }, { 232,4124 }, { 233,4124 },
{ 234,4124 }, { 235,4124 }, { 236,4124 }, { 237,4124 }, { 238,4124 },
{ 239,4124 }, { 240,4124 }, { 241,4124 }, { 242,4124 }, { 243,4124 },
{ 244,4124 }, { 245,4124 }, { 246,4124 }, { 247,4124 }, { 248,4124 },
{ 249,4124 }, { 250,4124 }, { 251,4124 }, { 252,4124 }, { 253,4124 },
{ 254,4124 }, { 255,4124 }, { 256,4124 }, { 0, 26 }, { 0,17316 },
{ 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 },
{ 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 0, 0 },
{ 11, 0 }, { 12, 0 }, { 0, 0 }, { 14, 0 }, { 15, 0 },
{ 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 },
{ 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 },
{ 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 },
{ 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 },
{ 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 },
{ 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 },
{ 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 },
{ 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 },
{ 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 },
{ 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 },
{ 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 },
{ 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 },
{ 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 },
{ 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 },
{ 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 },
{ 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 },
{ 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 },
{ 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 },
{ 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 },
{ 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 },
{ 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 },
{ 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 },
{ 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 },
{ 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 },
{ 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 },
{ 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 },
{ 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 },
{ 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 },
{ 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 },
{ 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 },
{ 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 },
{ 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 },
{ 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 },
{ 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 },
{ 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 },
{ 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 },
{ 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 },
{ 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 },
{ 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 },
{ 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 },
{ 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 },
{ 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 },
{ 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 },
{ 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 },
{ 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 },
{ 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 },
{ 256, 0 }, { 0, 37 }, { 0,17058 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 37 },
{ 0,17035 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48,4382 }, { 49,4382 }, { 50,4382 }, { 51,4382 }, { 52,4382 },
{ 53,4382 }, { 54,4382 }, { 55,4382 }, { 56,4382 }, { 57,4382 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,4382 }, { 66,4382 }, { 67,4382 },
{ 68,4382 }, { 69,4382 }, { 70,4382 }, { 48,4382 }, { 49,4382 },
{ 50,4382 }, { 51,4382 }, { 52,4382 }, { 53,4382 }, { 54,4382 },
{ 55,4382 }, { 56,4382 }, { 57,4382 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 65,4382 }, { 66,4382 }, { 67,4382 }, { 68,4382 }, { 69,4382 },
{ 70,4382 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,4382 },
{ 98,4382 }, { 99,4382 }, { 100,4382 }, { 101,4382 }, { 102,4382 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 97,4382 }, { 98,4382 }, { 99,4382 },
{ 100,4382 }, { 101,4382 }, { 102,4382 }, { 0, 9 }, { 0,16931 },
{ 1,4382 }, { 2,4382 }, { 3,4382 }, { 4,4382 }, { 5,4382 },
{ 6,4382 }, { 7,4382 }, { 8,4382 }, { 9,4640 }, { 10,4898 },
{ 11,4382 }, { 12,4640 }, { 13,4898 }, { 14,4382 }, { 15,4382 },
{ 16,4382 }, { 17,4382 }, { 18,4382 }, { 19,4382 }, { 20,4382 },
{ 21,4382 }, { 22,4382 }, { 23,4382 }, { 24,4382 }, { 25,4382 },
{ 26,4382 }, { 27,4382 }, { 28,4382 }, { 29,4382 }, { 30,4382 },
{ 31,4382 }, { 32,4640 }, { 33,4382 }, { 34,4382 }, { 35,4382 },
{ 36,4382 }, { 37,4382 }, { 38,4382 }, { 39,4382 }, { 40,4382 },
{ 41,4382 }, { 42,4382 }, { 43,4382 }, { 44,4382 }, { 45,4945 },
{ 46,4382 }, { 47,4382 }, { 48,4382 }, { 49,4382 }, { 50,4382 },
{ 51,4382 }, { 52,4382 }, { 53,4382 }, { 54,4382 }, { 55,4382 },
{ 56,4382 }, { 57,4382 }, { 58,4382 }, { 59,4382 }, { 60,4382 },
{ 61,4382 }, { 62,4382 }, { 63,4382 }, { 64,4382 }, { 65,4382 },
{ 66,4382 }, { 67,4382 }, { 68,4382 }, { 69,4382 }, { 70,4382 },
{ 71,4382 }, { 72,4382 }, { 73,4382 }, { 74,4382 }, { 75,4382 },
{ 76,4382 }, { 77,4382 }, { 78,4382 }, { 79,4382 }, { 80,4382 },
{ 81,4382 }, { 82,4382 }, { 83,4382 }, { 84,4382 }, { 85,4382 },
{ 86,4382 }, { 87,4382 }, { 88,4382 }, { 89,4382 }, { 90,4382 },
{ 91,4382 }, { 92,4382 }, { 93,4382 }, { 94,4382 }, { 95,4382 },
{ 96,4382 }, { 97,4382 }, { 98,4382 }, { 99,4382 }, { 100,4382 },
{ 101,4382 }, { 102,4382 }, { 103,4382 }, { 104,4382 }, { 105,4382 },
{ 106,4382 }, { 107,4382 }, { 108,4382 }, { 109,4382 }, { 110,4382 },
{ 111,4382 }, { 112,4382 }, { 113,4382 }, { 114,4382 }, { 115,4382 },
{ 116,4382 }, { 117,4382 }, { 118,4382 }, { 119,4382 }, { 120,4382 },
{ 121,4382 }, { 122,4382 }, { 123,4382 }, { 124,4382 }, { 125,4382 },
{ 126,4382 }, { 127,4382 }, { 128,4382 }, { 129,4382 }, { 130,4382 },
{ 131,4382 }, { 132,4382 }, { 133,4382 }, { 134,4382 }, { 135,4382 },
{ 136,4382 }, { 137,4382 }, { 138,4382 }, { 139,4382 }, { 140,4382 },
{ 141,4382 }, { 142,4382 }, { 143,4382 }, { 144,4382 }, { 145,4382 },
{ 146,4382 }, { 147,4382 }, { 148,4382 }, { 149,4382 }, { 150,4382 },
{ 151,4382 }, { 152,4382 }, { 153,4382 }, { 154,4382 }, { 155,4382 },
{ 156,4382 }, { 157,4382 }, { 158,4382 }, { 159,4382 }, { 160,4382 },
{ 161,4382 }, { 162,4382 }, { 163,4382 }, { 164,4382 }, { 165,4382 },
{ 166,4382 }, { 167,4382 }, { 168,4382 }, { 169,4382 }, { 170,4382 },
{ 171,4382 }, { 172,4382 }, { 173,4382 }, { 174,4382 }, { 175,4382 },
{ 176,4382 }, { 177,4382 }, { 178,4382 }, { 179,4382 }, { 180,4382 },
{ 181,4382 }, { 182,4382 }, { 183,4382 }, { 184,4382 }, { 185,4382 },
{ 186,4382 }, { 187,4382 }, { 188,4382 }, { 189,4382 }, { 190,4382 },
{ 191,4382 }, { 192,4382 }, { 193,4382 }, { 194,4382 }, { 195,4382 },
{ 196,4382 }, { 197,4382 }, { 198,4382 }, { 199,4382 }, { 200,4382 },
{ 201,4382 }, { 202,4382 }, { 203,4382 }, { 204,4382 }, { 205,4382 },
{ 206,4382 }, { 207,4382 }, { 208,4382 }, { 209,4382 }, { 210,4382 },
{ 211,4382 }, { 212,4382 }, { 213,4382 }, { 214,4382 }, { 215,4382 },
{ 216,4382 }, { 217,4382 }, { 218,4382 }, { 219,4382 }, { 220,4382 },
{ 221,4382 }, { 222,4382 }, { 223,4382 }, { 224,4382 }, { 225,4382 },
{ 226,4382 }, { 227,4382 }, { 228,4382 }, { 229,4382 }, { 230,4382 },
{ 231,4382 }, { 232,4382 }, { 233,4382 }, { 234,4382 }, { 235,4382 },
{ 236,4382 }, { 237,4382 }, { 238,4382 }, { 239,4382 }, { 240,4382 },
{ 241,4382 }, { 242,4382 }, { 243,4382 }, { 244,4382 }, { 245,4382 },
{ 246,4382 }, { 247,4382 }, { 248,4382 }, { 249,4382 }, { 250,4382 },
{ 251,4382 }, { 252,4382 }, { 253,4382 }, { 254,4382 }, { 255,4382 },
{ 256,4382 }, { 0, 9 }, { 0,16673 }, { 1, 0 }, { 2, 0 },
{ 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 },
{ 8, 0 }, { 9, 258 }, { 10,-6341 }, { 11, 0 }, { 12, 258 },
{ 13,-6341 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 },
{ 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 },
{ 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 },
{ 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 258 },
{ 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 },
{ 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 },
{ 43, 0 }, { 44, 0 }, { 45, 516 }, { 46, 0 }, { 47, 0 },
{ 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 },
{ 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 },
{ 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 },
{ 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 },
{ 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 },
{ 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 },
{ 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 },
{ 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 },
{ 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 },
{ 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 },
{ 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 },
{ 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 },
{ 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 },
{ 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 },
{ 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 },
{ 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 },
{ 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 },
{ 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 },
{ 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 },
{ 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 },
{ 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 },
{ 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 },
{ 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 },
{ 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 },
{ 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 },
{ 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 },
{ 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 },
{ 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 },
{ 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 },
{ 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 },
{ 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 },
{ 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 },
{ 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 },
{ 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 },
{ 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 },
{ 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 },
{ 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 },
{ 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 },
{ 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 },
{ 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 },
{ 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 },
{ 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 9 },
{ 0,16415 }, { 1,-258 }, { 2,-258 }, { 3,-258 }, { 4,-258 },
{ 5,-258 }, { 6,-258 }, { 7,-258 }, { 8,-258 }, { 9, 0 },
{ 10,-6599 }, { 11,-258 }, { 12, 0 }, { 13,-6599 }, { 14,-258 },
{ 15,-258 }, { 16,-258 }, { 17,-258 }, { 18,-258 }, { 19,-258 },
{ 20,-258 }, { 21,-258 }, { 22,-258 }, { 23,-258 }, { 24,-258 },
{ 25,-258 }, { 26,-258 }, { 27,-258 }, { 28,-258 }, { 29,-258 },
{ 30,-258 }, { 31,-258 }, { 32, 0 }, { 33,-258 }, { 34,-258 },
{ 35,-258 }, { 36,-258 }, { 37,-258 }, { 38,-258 }, { 39,-258 },
{ 40,-258 }, { 41,-258 }, { 42,-258 }, { 43,-258 }, { 44,-258 },
{ 45, 258 }, { 46,-258 }, { 47,-258 }, { 48,-258 }, { 49,-258 },
{ 50,-258 }, { 51,-258 }, { 52,-258 }, { 53,-258 }, { 54,-258 },
{ 55,-258 }, { 56,-258 }, { 57,-258 }, { 58,-258 }, { 59,-258 },
{ 60,-258 }, { 61,-258 }, { 62,-258 }, { 63,-258 }, { 64,-258 },
{ 65,-258 }, { 66,-258 }, { 67,-258 }, { 68,-258 }, { 69,-258 },
{ 70,-258 }, { 71,-258 }, { 72,-258 }, { 73,-258 }, { 74,-258 },
{ 75,-258 }, { 76,-258 }, { 77,-258 }, { 78,-258 }, { 79,-258 },
{ 80,-258 }, { 81,-258 }, { 82,-258 }, { 83,-258 }, { 84,-258 },
{ 85,-258 }, { 86,-258 }, { 87,-258 }, { 88,-258 }, { 89,-258 },
{ 90,-258 }, { 91,-258 }, { 92,-258 }, { 93,-258 }, { 94,-258 },
{ 95,-258 }, { 96,-258 }, { 97,-258 }, { 98,-258 }, { 99,-258 },
{ 100,-258 }, { 101,-258 }, { 102,-258 }, { 103,-258 }, { 104,-258 },
{ 105,-258 }, { 106,-258 }, { 107,-258 }, { 108,-258 }, { 109,-258 },
{ 110,-258 }, { 111,-258 }, { 112,-258 }, { 113,-258 }, { 114,-258 },
{ 115,-258 }, { 116,-258 }, { 117,-258 }, { 118,-258 }, { 119,-258 },
{ 120,-258 }, { 121,-258 }, { 122,-258 }, { 123,-258 }, { 124,-258 },
{ 125,-258 }, { 126,-258 }, { 127,-258 }, { 128,-258 }, { 129,-258 },
{ 130,-258 }, { 131,-258 }, { 132,-258 }, { 133,-258 }, { 134,-258 },
{ 135,-258 }, { 136,-258 }, { 137,-258 }, { 138,-258 }, { 139,-258 },
{ 140,-258 }, { 141,-258 }, { 142,-258 }, { 143,-258 }, { 144,-258 },
{ 145,-258 }, { 146,-258 }, { 147,-258 }, { 148,-258 }, { 149,-258 },
{ 150,-258 }, { 151,-258 }, { 152,-258 }, { 153,-258 }, { 154,-258 },
{ 155,-258 }, { 156,-258 }, { 157,-258 }, { 158,-258 }, { 159,-258 },
{ 160,-258 }, { 161,-258 }, { 162,-258 }, { 163,-258 }, { 164,-258 },
{ 165,-258 }, { 166,-258 }, { 167,-258 }, { 168,-258 }, { 169,-258 },
{ 170,-258 }, { 171,-258 }, { 172,-258 }, { 173,-258 }, { 174,-258 },
{ 175,-258 }, { 176,-258 }, { 177,-258 }, { 178,-258 }, { 179,-258 },
{ 180,-258 }, { 181,-258 }, { 182,-258 }, { 183,-258 }, { 184,-258 },
{ 185,-258 }, { 186,-258 }, { 187,-258 }, { 188,-258 }, { 189,-258 },
{ 190,-258 }, { 191,-258 }, { 192,-258 }, { 193,-258 }, { 194,-258 },
{ 195,-258 }, { 196,-258 }, { 197,-258 }, { 198,-258 }, { 199,-258 },
{ 200,-258 }, { 201,-258 }, { 202,-258 }, { 203,-258 }, { 204,-258 },
{ 205,-258 }, { 206,-258 }, { 207,-258 }, { 208,-258 }, { 209,-258 },
{ 210,-258 }, { 211,-258 }, { 212,-258 }, { 213,-258 }, { 214,-258 },
{ 215,-258 }, { 216,-258 }, { 217,-258 }, { 218,-258 }, { 219,-258 },
{ 220,-258 }, { 221,-258 }, { 222,-258 }, { 223,-258 }, { 224,-258 },
{ 225,-258 }, { 226,-258 }, { 227,-258 }, { 228,-258 }, { 229,-258 },
{ 230,-258 }, { 231,-258 }, { 232,-258 }, { 233,-258 }, { 234,-258 },
{ 235,-258 }, { 236,-258 }, { 237,-258 }, { 238,-258 }, { 239,-258 },
{ 240,-258 }, { 241,-258 }, { 242,-258 }, { 243,-258 }, { 244,-258 },
{ 245,-258 }, { 246,-258 }, { 247,-258 }, { 248,-258 }, { 249,-258 },
{ 250,-258 }, { 251,-258 }, { 252,-258 }, { 253,-258 }, { 254,-258 },
{ 255,-258 }, { 256,-258 }, { 0, 9 }, { 0,16157 }, { 1,-516 },
{ 2,-516 }, { 3,-516 }, { 4,-516 }, { 5,-516 }, { 6,-516 },
{ 7,-516 }, { 8,-516 }, { 9,-258 }, { 10,-6857 }, { 11,-516 },
{ 12,-258 }, { 13,-6857 }, { 14,-516 }, { 15,-516 }, { 16,-516 },
{ 17,-516 }, { 18,-516 }, { 19,-516 }, { 20,-516 }, { 21,-516 },
{ 22,-516 }, { 23,-516 }, { 24,-516 }, { 25,-516 }, { 26,-516 },
{ 27,-516 }, { 28,-516 }, { 29,-516 }, { 30,-516 }, { 31,-516 },
{ 32,-258 }, { 33,-516 }, { 34,-516 }, { 35,-516 }, { 36,-516 },
{ 37,-516 }, { 38,-516 }, { 39,-516 }, { 40,-516 }, { 41,-516 },
{ 42,-516 }, { 43,-516 }, { 44,-516 }, { 45,4429 }, { 46,-516 },
{ 47,-516 }, { 48,-516 }, { 49,-516 }, { 50,-516 }, { 51,-516 },
{ 52,-516 }, { 53,-516 }, { 54,-516 }, { 55,-516 }, { 56,-516 },
{ 57,-516 }, { 58,-516 }, { 59,-516 }, { 60,-516 }, { 61,-516 },
{ 62,-516 }, { 63,-516 }, { 64,-516 }, { 65,-516 }, { 66,-516 },
{ 67,-516 }, { 68,-516 }, { 69,-516 }, { 70,-516 }, { 71,-516 },
{ 72,-516 }, { 73,-516 }, { 74,-516 }, { 75,-516 }, { 76,-516 },
{ 77,-516 }, { 78,-516 }, { 79,-516 }, { 80,-516 }, { 81,-516 },
{ 82,-516 }, { 83,-516 }, { 84,-516 }, { 85,-516 }, { 86,-516 },
{ 87,-516 }, { 88,-516 }, { 89,-516 }, { 90,-516 }, { 91,-516 },
{ 92,-516 }, { 93,-516 }, { 94,-516 }, { 95,-516 }, { 96,-516 },
{ 97,-516 }, { 98,-516 }, { 99,-516 }, { 100,-516 }, { 101,-516 },
{ 102,-516 }, { 103,-516 }, { 104,-516 }, { 105,-516 }, { 106,-516 },
{ 107,-516 }, { 108,-516 }, { 109,-516 }, { 110,-516 }, { 111,-516 },
{ 112,-516 }, { 113,-516 }, { 114,-516 }, { 115,-516 }, { 116,-516 },
{ 117,-516 }, { 118,-516 }, { 119,-516 }, { 120,-516 }, { 121,-516 },
{ 122,-516 }, { 123,-516 }, { 124,-516 }, { 125,-516 }, { 126,-516 },
{ 127,-516 }, { 128,-516 }, { 129,-516 }, { 130,-516 }, { 131,-516 },
{ 132,-516 }, { 133,-516 }, { 134,-516 }, { 135,-516 }, { 136,-516 },
{ 137,-516 }, { 138,-516 }, { 139,-516 }, { 140,-516 }, { 141,-516 },
{ 142,-516 }, { 143,-516 }, { 144,-516 }, { 145,-516 }, { 146,-516 },
{ 147,-516 }, { 148,-516 }, { 149,-516 }, { 150,-516 }, { 151,-516 },
{ 152,-516 }, { 153,-516 }, { 154,-516 }, { 155,-516 }, { 156,-516 },
{ 157,-516 }, { 158,-516 }, { 159,-516 }, { 160,-516 }, { 161,-516 },
{ 162,-516 }, { 163,-516 }, { 164,-516 }, { 165,-516 }, { 166,-516 },
{ 167,-516 }, { 168,-516 }, { 169,-516 }, { 170,-516 }, { 171,-516 },
{ 172,-516 }, { 173,-516 }, { 174,-516 }, { 175,-516 }, { 176,-516 },
{ 177,-516 }, { 178,-516 }, { 179,-516 }, { 180,-516 }, { 181,-516 },
{ 182,-516 }, { 183,-516 }, { 184,-516 }, { 185,-516 }, { 186,-516 },
{ 187,-516 }, { 188,-516 }, { 189,-516 }, { 190,-516 }, { 191,-516 },
{ 192,-516 }, { 193,-516 }, { 194,-516 }, { 195,-516 }, { 196,-516 },
{ 197,-516 }, { 198,-516 }, { 199,-516 }, { 200,-516 }, { 201,-516 },
{ 202,-516 }, { 203,-516 }, { 204,-516 }, { 205,-516 }, { 206,-516 },
{ 207,-516 }, { 208,-516 }, { 209,-516 }, { 210,-516 }, { 211,-516 },
{ 212,-516 }, { 213,-516 }, { 214,-516 }, { 215,-516 }, { 216,-516 },
{ 217,-516 }, { 218,-516 }, { 219,-516 }, { 220,-516 }, { 221,-516 },
{ 222,-516 }, { 223,-516 }, { 224,-516 }, { 225,-516 }, { 226,-516 },
{ 227,-516 }, { 228,-516 }, { 229,-516 }, { 230,-516 }, { 231,-516 },
{ 232,-516 }, { 233,-516 }, { 234,-516 }, { 235,-516 }, { 236,-516 },
{ 237,-516 }, { 238,-516 }, { 239,-516 }, { 240,-516 }, { 241,-516 },
{ 242,-516 }, { 243,-516 }, { 244,-516 }, { 245,-516 }, { 246,-516 },
{ 247,-516 }, { 248,-516 }, { 249,-516 }, { 250,-516 }, { 251,-516 },
{ 252,-516 }, { 253,-516 }, { 254,-516 }, { 255,-516 }, { 256,-516 },
{ 0, 16 }, { 0,15899 }, { 1,4429 }, { 2,4429 }, { 3,4429 },
{ 4,4429 }, { 5,4429 }, { 6,4429 }, { 7,4429 }, { 8,4429 },
{ 9,4687 }, { 10,4945 }, { 11,4429 }, { 12,4687 }, { 13,4945 },
{ 14,4429 }, { 15,4429 }, { 16,4429 }, { 17,4429 }, { 18,4429 },
{ 19,4429 }, { 20,4429 }, { 21,4429 }, { 22,4429 }, { 23,4429 },
{ 24,4429 }, { 25,4429 }, { 26,4429 }, { 27,4429 }, { 28,4429 },
{ 29,4429 }, { 30,4429 }, { 31,4429 }, { 32,4687 }, { 33,4429 },
{ 34,4429 }, { 35,4429 }, { 36,4429 }, { 37,4429 }, { 38,4429 },
{ 39,4429 }, { 40,4429 }, { 41,4429 }, { 42,4429 }, { 43,4429 },
{ 44,4429 }, { 45,4992 }, { 46,4429 }, { 47,4429 }, { 48,4429 },
{ 49,4429 }, { 50,4429 }, { 51,4429 }, { 52,4429 }, { 53,4429 },
{ 54,4429 }, { 55,4429 }, { 56,4429 }, { 57,4429 }, { 58,4429 },
{ 59,4429 }, { 60,4429 }, { 61,4429 }, { 62,4429 }, { 63,4429 },
{ 64,4429 }, { 65,4429 }, { 66,4429 }, { 67,4429 }, { 68,4429 },
{ 69,4429 }, { 70,4429 }, { 71,4429 }, { 72,4429 }, { 73,4429 },
{ 74,4429 }, { 75,4429 }, { 76,4429 }, { 77,4429 }, { 78,4429 },
{ 79,4429 }, { 80,4429 }, { 81,4429 }, { 82,4429 }, { 83,4429 },
{ 84,4429 }, { 85,4429 }, { 86,4429 }, { 87,4429 }, { 88,4429 },
{ 89,4429 }, { 90,4429 }, { 91,4429 }, { 92,4429 }, { 93,4429 },
{ 94,4429 }, { 95,4429 }, { 96,4429 }, { 97,4429 }, { 98,4429 },
{ 99,4429 }, { 100,4429 }, { 101,4429 }, { 102,4429 }, { 103,4429 },
{ 104,4429 }, { 105,4429 }, { 106,4429 }, { 107,4429 }, { 108,4429 },
{ 109,4429 }, { 110,4429 }, { 111,4429 }, { 112,4429 }, { 113,4429 },
{ 114,4429 }, { 115,4429 }, { 116,4429 }, { 117,4429 }, { 118,4429 },
{ 119,4429 }, { 120,4429 }, { 121,4429 }, { 122,4429 }, { 123,4429 },
{ 124,4429 }, { 125,4429 }, { 126,4429 }, { 127,4429 }, { 128,4429 },
{ 129,4429 }, { 130,4429 }, { 131,4429 }, { 132,4429 }, { 133,4429 },
{ 134,4429 }, { 135,4429 }, { 136,4429 }, { 137,4429 }, { 138,4429 },
{ 139,4429 }, { 140,4429 }, { 141,4429 }, { 142,4429 }, { 143,4429 },
{ 144,4429 }, { 145,4429 }, { 146,4429 }, { 147,4429 }, { 148,4429 },
{ 149,4429 }, { 150,4429 }, { 151,4429 }, { 152,4429 }, { 153,4429 },
{ 154,4429 }, { 155,4429 }, { 156,4429 }, { 157,4429 }, { 158,4429 },
{ 159,4429 }, { 160,4429 }, { 161,4429 }, { 162,4429 }, { 163,4429 },
{ 164,4429 }, { 165,4429 }, { 166,4429 }, { 167,4429 }, { 168,4429 },
{ 169,4429 }, { 170,4429 }, { 171,4429 }, { 172,4429 }, { 173,4429 },
{ 174,4429 }, { 175,4429 }, { 176,4429 }, { 177,4429 }, { 178,4429 },
{ 179,4429 }, { 180,4429 }, { 181,4429 }, { 182,4429 }, { 183,4429 },
{ 184,4429 }, { 185,4429 }, { 186,4429 }, { 187,4429 }, { 188,4429 },
{ 189,4429 }, { 190,4429 }, { 191,4429 }, { 192,4429 }, { 193,4429 },
{ 194,4429 }, { 195,4429 }, { 196,4429 }, { 197,4429 }, { 198,4429 },
{ 199,4429 }, { 200,4429 }, { 201,4429 }, { 202,4429 }, { 203,4429 },
{ 204,4429 }, { 205,4429 }, { 206,4429 }, { 207,4429 }, { 208,4429 },
{ 209,4429 }, { 210,4429 }, { 211,4429 }, { 212,4429 }, { 213,4429 },
{ 214,4429 }, { 215,4429 }, { 216,4429 }, { 217,4429 }, { 218,4429 },
{ 219,4429 }, { 220,4429 }, { 221,4429 }, { 222,4429 }, { 223,4429 },
{ 224,4429 }, { 225,4429 }, { 226,4429 }, { 227,4429 }, { 228,4429 },
{ 229,4429 }, { 230,4429 }, { 231,4429 }, { 232,4429 }, { 233,4429 },
{ 234,4429 }, { 235,4429 }, { 236,4429 }, { 237,4429 }, { 238,4429 },
{ 239,4429 }, { 240,4429 }, { 241,4429 }, { 242,4429 }, { 243,4429 },
{ 244,4429 }, { 245,4429 }, { 246,4429 }, { 247,4429 }, { 248,4429 },
{ 249,4429 }, { 250,4429 }, { 251,4429 }, { 252,4429 }, { 253,4429 },
{ 254,4429 }, { 255,4429 }, { 256,4429 }, { 0, 16 }, { 0,15641 },
{ 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 },
{ 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 258 }, { 10,-6419 },
{ 11, 0 }, { 12, 258 }, { 13,-6419 }, { 14, 0 }, { 15, 0 },
{ 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 },
{ 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 },
{ 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 },
{ 31, 0 }, { 32, 258 }, { 33, 0 }, { 34, 0 }, { 35, 0 },
{ 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 },
{ 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 516 },
{ 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 },
{ 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 },
{ 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 },
{ 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 },
{ 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 },
{ 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 },
{ 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 },
{ 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 },
{ 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 },
{ 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 },
{ 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 },
{ 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 },
{ 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 },
{ 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 },
{ 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 },
{ 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 },
{ 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 },
{ 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 },
{ 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 },
{ 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 },
{ 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 },
{ 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 },
{ 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 },
{ 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 },
{ 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 },
{ 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 },
{ 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 },
{ 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 },
{ 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 },
{ 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 },
{ 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 },
{ 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 },
{ 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 },
{ 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 },
{ 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 },
{ 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 },
{ 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 },
{ 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 },
{ 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 },
{ 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 },
{ 256, 0 }, { 0, 16 }, { 0,15383 }, { 1,-258 }, { 2,-258 },
{ 3,-258 }, { 4,-258 }, { 5,-258 }, { 6,-258 }, { 7,-258 },
{ 8,-258 }, { 9, 0 }, { 10,-6677 }, { 11,-258 }, { 12, 0 },
{ 13,-6677 }, { 14,-258 }, { 15,-258 }, { 16,-258 }, { 17,-258 },
{ 18,-258 }, { 19,-258 }, { 20,-258 }, { 21,-258 }, { 22,-258 },
{ 23,-258 }, { 24,-258 }, { 25,-258 }, { 26,-258 }, { 27,-258 },
{ 28,-258 }, { 29,-258 }, { 30,-258 }, { 31,-258 }, { 32, 0 },
{ 33,-258 }, { 34,-258 }, { 35,-258 }, { 36,-258 }, { 37,-258 },
{ 38,-258 }, { 39,-258 }, { 40,-258 }, { 41,-258 }, { 42,-258 },
{ 43,-258 }, { 44,-258 }, { 45, 258 }, { 46,-258 }, { 47,-258 },
{ 48,-258 }, { 49,-258 }, { 50,-258 }, { 51,-258 }, { 52,-258 },
{ 53,-258 }, { 54,-258 }, { 55,-258 }, { 56,-258 }, { 57,-258 },
{ 58,-258 }, { 59,-258 }, { 60,-258 }, { 61,-258 }, { 62,-258 },
{ 63,-258 }, { 64,-258 }, { 65,-258 }, { 66,-258 }, { 67,-258 },
{ 68,-258 }, { 69,-258 }, { 70,-258 }, { 71,-258 }, { 72,-258 },
{ 73,-258 }, { 74,-258 }, { 75,-258 }, { 76,-258 }, { 77,-258 },
{ 78,-258 }, { 79,-258 }, { 80,-258 }, { 81,-258 }, { 82,-258 },
{ 83,-258 }, { 84,-258 }, { 85,-258 }, { 86,-258 }, { 87,-258 },
{ 88,-258 }, { 89,-258 }, { 90,-258 }, { 91,-258 }, { 92,-258 },
{ 93,-258 }, { 94,-258 }, { 95,-258 }, { 96,-258 }, { 97,-258 },
{ 98,-258 }, { 99,-258 }, { 100,-258 }, { 101,-258 }, { 102,-258 },
{ 103,-258 }, { 104,-258 }, { 105,-258 }, { 106,-258 }, { 107,-258 },
{ 108,-258 }, { 109,-258 }, { 110,-258 }, { 111,-258 }, { 112,-258 },
{ 113,-258 }, { 114,-258 }, { 115,-258 }, { 116,-258 }, { 117,-258 },
{ 118,-258 }, { 119,-258 }, { 120,-258 }, { 121,-258 }, { 122,-258 },
{ 123,-258 }, { 124,-258 }, { 125,-258 }, { 126,-258 }, { 127,-258 },
{ 128,-258 }, { 129,-258 }, { 130,-258 }, { 131,-258 }, { 132,-258 },
{ 133,-258 }, { 134,-258 }, { 135,-258 }, { 136,-258 }, { 137,-258 },
{ 138,-258 }, { 139,-258 }, { 140,-258 }, { 141,-258 }, { 142,-258 },
{ 143,-258 }, { 144,-258 }, { 145,-258 }, { 146,-258 }, { 147,-258 },
{ 148,-258 }, { 149,-258 }, { 150,-258 }, { 151,-258 }, { 152,-258 },
{ 153,-258 }, { 154,-258 }, { 155,-258 }, { 156,-258 }, { 157,-258 },
{ 158,-258 }, { 159,-258 }, { 160,-258 }, { 161,-258 }, { 162,-258 },
{ 163,-258 }, { 164,-258 }, { 165,-258 }, { 166,-258 }, { 167,-258 },
{ 168,-258 }, { 169,-258 }, { 170,-258 }, { 171,-258 }, { 172,-258 },
{ 173,-258 }, { 174,-258 }, { 175,-258 }, { 176,-258 }, { 177,-258 },
{ 178,-258 }, { 179,-258 }, { 180,-258 }, { 181,-258 }, { 182,-258 },
{ 183,-258 }, { 184,-258 }, { 185,-258 }, { 186,-258 }, { 187,-258 },
{ 188,-258 }, { 189,-258 }, { 190,-258 }, { 191,-258 }, { 192,-258 },
{ 193,-258 }, { 194,-258 }, { 195,-258 }, { 196,-258 }, { 197,-258 },
{ 198,-258 }, { 199,-258 }, { 200,-258 }, { 201,-258 }, { 202,-258 },
{ 203,-258 }, { 204,-258 }, { 205,-258 }, { 206,-258 }, { 207,-258 },
{ 208,-258 }, { 209,-258 }, { 210,-258 }, { 211,-258 }, { 212,-258 },
{ 213,-258 }, { 214,-258 }, { 215,-258 }, { 216,-258 }, { 217,-258 },
{ 218,-258 }, { 219,-258 }, { 220,-258 }, { 221,-258 }, { 222,-258 },
{ 223,-258 }, { 224,-258 }, { 225,-258 }, { 226,-258 }, { 227,-258 },
{ 228,-258 }, { 229,-258 }, { 230,-258 }, { 231,-258 }, { 232,-258 },
{ 233,-258 }, { 234,-258 }, { 235,-258 }, { 236,-258 }, { 237,-258 },
{ 238,-258 }, { 239,-258 }, { 240,-258 }, { 241,-258 }, { 242,-258 },
{ 243,-258 }, { 244,-258 }, { 245,-258 }, { 246,-258 }, { 247,-258 },
{ 248,-258 }, { 249,-258 }, { 250,-258 }, { 251,-258 }, { 252,-258 },
{ 253,-258 }, { 254,-258 }, { 255,-258 }, { 256,-258 }, { 0, 16 },
{ 0,15125 }, { 1,-516 }, { 2,-516 }, { 3,-516 }, { 4,-516 },
{ 5,-516 }, { 6,-516 }, { 7,-516 }, { 8,-516 }, { 9,-258 },
{ 10,-6935 }, { 11,-516 }, { 12,-258 }, { 13,-6935 }, { 14,-516 },
{ 15,-516 }, { 16,-516 }, { 17,-516 }, { 18,-516 }, { 19,-516 },
{ 20,-516 }, { 21,-516 }, { 22,-516 }, { 23,-516 }, { 24,-516 },
{ 25,-516 }, { 26,-516 }, { 27,-516 }, { 28,-516 }, { 29,-516 },
{ 30,-516 }, { 31,-516 }, { 32,-258 }, { 33,-516 }, { 34,-516 },
{ 35,-516 }, { 36,-516 }, { 37,-516 }, { 38,-516 }, { 39,-516 },
{ 40,-516 }, { 41,-516 }, { 42,-516 }, { 43,-516 }, { 44,-516 },
{ 45,4476 }, { 46,-516 }, { 47,-516 }, { 48,-516 }, { 49,-516 },
{ 50,-516 }, { 51,-516 }, { 52,-516 }, { 53,-516 }, { 54,-516 },
{ 55,-516 }, { 56,-516 }, { 57,-516 }, { 58,-516 }, { 59,-516 },
{ 60,-516 }, { 61,-516 }, { 62,-516 }, { 63,-516 }, { 64,-516 },
{ 65,-516 }, { 66,-516 }, { 67,-516 }, { 68,-516 }, { 69,-516 },
{ 70,-516 }, { 71,-516 }, { 72,-516 }, { 73,-516 }, { 74,-516 },
{ 75,-516 }, { 76,-516 }, { 77,-516 }, { 78,-516 }, { 79,-516 },
{ 80,-516 }, { 81,-516 }, { 82,-516 }, { 83,-516 }, { 84,-516 },
{ 85,-516 }, { 86,-516 }, { 87,-516 }, { 88,-516 }, { 89,-516 },
{ 90,-516 }, { 91,-516 }, { 92,-516 }, { 93,-516 }, { 94,-516 },
{ 95,-516 }, { 96,-516 }, { 97,-516 }, { 98,-516 }, { 99,-516 },
{ 100,-516 }, { 101,-516 }, { 102,-516 }, { 103,-516 }, { 104,-516 },
{ 105,-516 }, { 106,-516 }, { 107,-516 }, { 108,-516 }, { 109,-516 },
{ 110,-516 }, { 111,-516 }, { 112,-516 }, { 113,-516 }, { 114,-516 },
{ 115,-516 }, { 116,-516 }, { 117,-516 }, { 118,-516 }, { 119,-516 },
{ 120,-516 }, { 121,-516 }, { 122,-516 }, { 123,-516 }, { 124,-516 },
{ 125,-516 }, { 126,-516 }, { 127,-516 }, { 128,-516 }, { 129,-516 },
{ 130,-516 }, { 131,-516 }, { 132,-516 }, { 133,-516 }, { 134,-516 },
{ 135,-516 }, { 136,-516 }, { 137,-516 }, { 138,-516 }, { 139,-516 },
{ 140,-516 }, { 141,-516 }, { 142,-516 }, { 143,-516 }, { 144,-516 },
{ 145,-516 }, { 146,-516 }, { 147,-516 }, { 148,-516 }, { 149,-516 },
{ 150,-516 }, { 151,-516 }, { 152,-516 }, { 153,-516 }, { 154,-516 },
{ 155,-516 }, { 156,-516 }, { 157,-516 }, { 158,-516 }, { 159,-516 },
{ 160,-516 }, { 161,-516 }, { 162,-516 }, { 163,-516 }, { 164,-516 },
{ 165,-516 }, { 166,-516 }, { 167,-516 }, { 168,-516 }, { 169,-516 },
{ 170,-516 }, { 171,-516 }, { 172,-516 }, { 173,-516 }, { 174,-516 },
{ 175,-516 }, { 176,-516 }, { 177,-516 }, { 178,-516 }, { 179,-516 },
{ 180,-516 }, { 181,-516 }, { 182,-516 }, { 183,-516 }, { 184,-516 },
{ 185,-516 }, { 186,-516 }, { 187,-516 }, { 188,-516 }, { 189,-516 },
{ 190,-516 }, { 191,-516 }, { 192,-516 }, { 193,-516 }, { 194,-516 },
{ 195,-516 }, { 196,-516 }, { 197,-516 }, { 198,-516 }, { 199,-516 },
{ 200,-516 }, { 201,-516 }, { 202,-516 }, { 203,-516 }, { 204,-516 },
{ 205,-516 }, { 206,-516 }, { 207,-516 }, { 208,-516 }, { 209,-516 },
{ 210,-516 }, { 211,-516 }, { 212,-516 }, { 213,-516 }, { 214,-516 },
{ 215,-516 }, { 216,-516 }, { 217,-516 }, { 218,-516 }, { 219,-516 },
{ 220,-516 }, { 221,-516 }, { 222,-516 }, { 223,-516 }, { 224,-516 },
{ 225,-516 }, { 226,-516 }, { 227,-516 }, { 228,-516 }, { 229,-516 },
{ 230,-516 }, { 231,-516 }, { 232,-516 }, { 233,-516 }, { 234,-516 },
{ 235,-516 }, { 236,-516 }, { 237,-516 }, { 238,-516 }, { 239,-516 },
{ 240,-516 }, { 241,-516 }, { 242,-516 }, { 243,-516 }, { 244,-516 },
{ 245,-516 }, { 246,-516 }, { 247,-516 }, { 248,-516 }, { 249,-516 },
{ 250,-516 }, { 251,-516 }, { 252,-516 }, { 253,-516 }, { 254,-516 },
{ 255,-516 }, { 256,-516 }, { 0, 22 }, { 0,14867 }, { 1,4476 },
{ 2,4476 }, { 3,4476 }, { 4,4476 }, { 5,4476 }, { 6,4476 },
{ 7,4476 }, { 8,4476 }, { 9,4734 }, { 10,4992 }, { 11,4476 },
{ 12,4734 }, { 13,4992 }, { 14,4476 }, { 15,4476 }, { 16,4476 },
{ 17,4476 }, { 18,4476 }, { 19,4476 }, { 20,4476 }, { 21,4476 },
{ 22,4476 }, { 23,4476 }, { 24,4476 }, { 25,4476 }, { 26,4476 },
{ 27,4476 }, { 28,4476 }, { 29,4476 }, { 30,4476 }, { 31,4476 },
{ 32,4734 }, { 33,4476 }, { 34,4476 }, { 35,4476 }, { 36,4476 },
{ 37,4476 }, { 38,4476 }, { 39,4476 }, { 40,4476 }, { 41,4476 },
{ 42,4476 }, { 43,4476 }, { 44,4476 }, { 45,5039 }, { 46,4476 },
{ 47,4476 }, { 48,4476 }, { 49,4476 }, { 50,4476 }, { 51,4476 },
{ 52,4476 }, { 53,4476 }, { 54,4476 }, { 55,4476 }, { 56,4476 },
{ 57,4476 }, { 58,4476 }, { 59,4476 }, { 60,4476 }, { 61,4476 },
{ 62,4476 }, { 63,4476 }, { 64,4476 }, { 65,4476 }, { 66,4476 },
{ 67,4476 }, { 68,4476 }, { 69,4476 }, { 70,4476 }, { 71,4476 },
{ 72,4476 }, { 73,4476 }, { 74,4476 }, { 75,4476 }, { 76,4476 },
{ 77,4476 }, { 78,4476 }, { 79,4476 }, { 80,4476 }, { 81,4476 },
{ 82,4476 }, { 83,4476 }, { 84,4476 }, { 85,4476 }, { 86,4476 },
{ 87,4476 }, { 88,4476 }, { 89,4476 }, { 90,4476 }, { 91,4476 },
{ 92,4476 }, { 93,4476 }, { 94,4476 }, { 95,4476 }, { 96,4476 },
{ 97,4476 }, { 98,4476 }, { 99,4476 }, { 100,4476 }, { 101,4476 },
{ 102,4476 }, { 103,4476 }, { 104,4476 }, { 105,4476 }, { 106,4476 },
{ 107,4476 }, { 108,4476 }, { 109,4476 }, { 110,4476 }, { 111,4476 },
{ 112,4476 }, { 113,4476 }, { 114,4476 }, { 115,4476 }, { 116,4476 },
{ 117,4476 }, { 118,4476 }, { 119,4476 }, { 120,4476 }, { 121,4476 },
{ 122,4476 }, { 123,4476 }, { 124,4476 }, { 125,4476 }, { 126,4476 },
{ 127,4476 }, { 128,4476 }, { 129,4476 }, { 130,4476 }, { 131,4476 },
{ 132,4476 }, { 133,4476 }, { 134,4476 }, { 135,4476 }, { 136,4476 },
{ 137,4476 }, { 138,4476 }, { 139,4476 }, { 140,4476 }, { 141,4476 },
{ 142,4476 }, { 143,4476 }, { 144,4476 }, { 145,4476 }, { 146,4476 },
{ 147,4476 }, { 148,4476 }, { 149,4476 }, { 150,4476 }, { 151,4476 },
{ 152,4476 }, { 153,4476 }, { 154,4476 }, { 155,4476 }, { 156,4476 },
{ 157,4476 }, { 158,4476 }, { 159,4476 }, { 160,4476 }, { 161,4476 },
{ 162,4476 }, { 163,4476 }, { 164,4476 }, { 165,4476 }, { 166,4476 },
{ 167,4476 }, { 168,4476 }, { 169,4476 }, { 170,4476 }, { 171,4476 },
{ 172,4476 }, { 173,4476 }, { 174,4476 }, { 175,4476 }, { 176,4476 },
{ 177,4476 }, { 178,4476 }, { 179,4476 }, { 180,4476 }, { 181,4476 },
{ 182,4476 }, { 183,4476 }, { 184,4476 }, { 185,4476 }, { 186,4476 },
{ 187,4476 }, { 188,4476 }, { 189,4476 }, { 190,4476 }, { 191,4476 },
{ 192,4476 }, { 193,4476 }, { 194,4476 }, { 195,4476 }, { 196,4476 },
{ 197,4476 }, { 198,4476 }, { 199,4476 }, { 200,4476 }, { 201,4476 },
{ 202,4476 }, { 203,4476 }, { 204,4476 }, { 205,4476 }, { 206,4476 },
{ 207,4476 }, { 208,4476 }, { 209,4476 }, { 210,4476 }, { 211,4476 },
{ 212,4476 }, { 213,4476 }, { 214,4476 }, { 215,4476 }, { 216,4476 },
{ 217,4476 }, { 218,4476 }, { 219,4476 }, { 220,4476 }, { 221,4476 },
{ 222,4476 }, { 223,4476 }, { 224,4476 }, { 225,4476 }, { 226,4476 },
{ 227,4476 }, { 228,4476 }, { 229,4476 }, { 230,4476 }, { 231,4476 },
{ 232,4476 }, { 233,4476 }, { 234,4476 }, { 235,4476 }, { 236,4476 },
{ 237,4476 }, { 238,4476 }, { 239,4476 }, { 240,4476 }, { 241,4476 },
{ 242,4476 }, { 243,4476 }, { 244,4476 }, { 245,4476 }, { 246,4476 },
{ 247,4476 }, { 248,4476 }, { 249,4476 }, { 250,4476 }, { 251,4476 },
{ 252,4476 }, { 253,4476 }, { 254,4476 }, { 255,4476 }, { 256,4476 },
{ 0, 22 }, { 0,14609 }, { 1, 0 }, { 2, 0 }, { 3, 0 },
{ 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 },
{ 9, 258 }, { 10,-7141 }, { 11, 0 }, { 12, 258 }, { 13,-7141 },
{ 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 },
{ 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 },
{ 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 },
{ 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 },
{ 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 },
{ 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 },
{ 44, 0 }, { 45, 516 }, { 46, 0 }, { 47, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 },
{ 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 },
{ 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 },
{ 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 },
{ 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 22 }, { 0,14351 },
{ 1,-258 }, { 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 },
{ 6,-258 }, { 7,-258 }, { 8,-258 }, { 9, 0 }, { 10,-7399 },
{ 11,-258 }, { 12, 0 }, { 13,-7399 }, { 14,-258 }, { 15,-258 },
{ 16,-258 }, { 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 },
{ 21,-258 }, { 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 },
{ 26,-258 }, { 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 },
{ 31,-258 }, { 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 },
{ 36,-258 }, { 37,-258 }, { 38,-258 }, { 39,-258 }, { 40,-258 },
{ 41,-258 }, { 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 258 },
{ 46,-258 }, { 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 },
{ 51,-258 }, { 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 },
{ 56,-258 }, { 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 },
{ 61,-258 }, { 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 },
{ 66,-258 }, { 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 },
{ 71,-258 }, { 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 },
{ 76,-258 }, { 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 },
{ 81,-258 }, { 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 },
{ 86,-258 }, { 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 },
{ 91,-258 }, { 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 },
{ 96,-258 }, { 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 },
{ 101,-258 }, { 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 },
{ 106,-258 }, { 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 },
{ 111,-258 }, { 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 },
{ 116,-258 }, { 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 },
{ 121,-258 }, { 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 },
{ 126,-258 }, { 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 },
{ 131,-258 }, { 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 },
{ 136,-258 }, { 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 },
{ 141,-258 }, { 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 },
{ 146,-258 }, { 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 },
{ 151,-258 }, { 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 },
{ 156,-258 }, { 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 },
{ 161,-258 }, { 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 },
{ 166,-258 }, { 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 },
{ 171,-258 }, { 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 },
{ 176,-258 }, { 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 },
{ 181,-258 }, { 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 },
{ 186,-258 }, { 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 },
{ 191,-258 }, { 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 },
{ 196,-258 }, { 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 },
{ 201,-258 }, { 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 },
{ 206,-258 }, { 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 },
{ 211,-258 }, { 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 },
{ 216,-258 }, { 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 },
{ 221,-258 }, { 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 },
{ 226,-258 }, { 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 },
{ 231,-258 }, { 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 },
{ 236,-258 }, { 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 },
{ 241,-258 }, { 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 },
{ 246,-258 }, { 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 },
{ 251,-258 }, { 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 },
{ 256,-258 }, { 0, 22 }, { 0,14093 }, { 1,-516 }, { 2,-516 },
{ 3,-516 }, { 4,-516 }, { 5,-516 }, { 6,-516 }, { 7,-516 },
{ 8,-516 }, { 9,-258 }, { 10,-7657 }, { 11,-516 }, { 12,-258 },
{ 13,-7657 }, { 14,-516 }, { 15,-516 }, { 16,-516 }, { 17,-516 },
{ 18,-516 }, { 19,-516 }, { 20,-516 }, { 21,-516 }, { 22,-516 },
{ 23,-516 }, { 24,-516 }, { 25,-516 }, { 26,-516 }, { 27,-516 },
{ 28,-516 }, { 29,-516 }, { 30,-516 }, { 31,-516 }, { 32,-258 },
{ 33,-516 }, { 34,-516 }, { 35,-516 }, { 36,-516 }, { 37,-516 },
{ 38,-516 }, { 39,-516 }, { 40,-516 }, { 41,-516 }, { 42,-516 },
{ 43,-516 }, { 44,-516 }, { 45,4523 }, { 46,-516 }, { 47,-516 },
{ 48,-516 }, { 49,-516 }, { 50,-516 }, { 51,-516 }, { 52,-516 },
{ 53,-516 }, { 54,-516 }, { 55,-516 }, { 56,-516 }, { 57,-516 },
{ 58,-516 }, { 59,-516 }, { 60,-516 }, { 61,-516 }, { 62,-516 },
{ 63,-516 }, { 64,-516 }, { 65,-516 }, { 66,-516 }, { 67,-516 },
{ 68,-516 }, { 69,-516 }, { 70,-516 }, { 71,-516 }, { 72,-516 },
{ 73,-516 }, { 74,-516 }, { 75,-516 }, { 76,-516 }, { 77,-516 },
{ 78,-516 }, { 79,-516 }, { 80,-516 }, { 81,-516 }, { 82,-516 },
{ 83,-516 }, { 84,-516 }, { 85,-516 }, { 86,-516 }, { 87,-516 },
{ 88,-516 }, { 89,-516 }, { 90,-516 }, { 91,-516 }, { 92,-516 },
{ 93,-516 }, { 94,-516 }, { 95,-516 }, { 96,-516 }, { 97,-516 },
{ 98,-516 }, { 99,-516 }, { 100,-516 }, { 101,-516 }, { 102,-516 },
{ 103,-516 }, { 104,-516 }, { 105,-516 }, { 106,-516 }, { 107,-516 },
{ 108,-516 }, { 109,-516 }, { 110,-516 }, { 111,-516 }, { 112,-516 },
{ 113,-516 }, { 114,-516 }, { 115,-516 }, { 116,-516 }, { 117,-516 },
{ 118,-516 }, { 119,-516 }, { 120,-516 }, { 121,-516 }, { 122,-516 },
{ 123,-516 }, { 124,-516 }, { 125,-516 }, { 126,-516 }, { 127,-516 },
{ 128,-516 }, { 129,-516 }, { 130,-516 }, { 131,-516 }, { 132,-516 },
{ 133,-516 }, { 134,-516 }, { 135,-516 }, { 136,-516 }, { 137,-516 },
{ 138,-516 }, { 139,-516 }, { 140,-516 }, { 141,-516 }, { 142,-516 },
{ 143,-516 }, { 144,-516 }, { 145,-516 }, { 146,-516 }, { 147,-516 },
{ 148,-516 }, { 149,-516 }, { 150,-516 }, { 151,-516 }, { 152,-516 },
{ 153,-516 }, { 154,-516 }, { 155,-516 }, { 156,-516 }, { 157,-516 },
{ 158,-516 }, { 159,-516 }, { 160,-516 }, { 161,-516 }, { 162,-516 },
{ 163,-516 }, { 164,-516 }, { 165,-516 }, { 166,-516 }, { 167,-516 },
{ 168,-516 }, { 169,-516 }, { 170,-516 }, { 171,-516 }, { 172,-516 },
{ 173,-516 }, { 174,-516 }, { 175,-516 }, { 176,-516 }, { 177,-516 },
{ 178,-516 }, { 179,-516 }, { 180,-516 }, { 181,-516 }, { 182,-516 },
{ 183,-516 }, { 184,-516 }, { 185,-516 }, { 186,-516 }, { 187,-516 },
{ 188,-516 }, { 189,-516 }, { 190,-516 }, { 191,-516 }, { 192,-516 },
{ 193,-516 }, { 194,-516 }, { 195,-516 }, { 196,-516 }, { 197,-516 },
{ 198,-516 }, { 199,-516 }, { 200,-516 }, { 201,-516 }, { 202,-516 },
{ 203,-516 }, { 204,-516 }, { 205,-516 }, { 206,-516 }, { 207,-516 },
{ 208,-516 }, { 209,-516 }, { 210,-516 }, { 211,-516 }, { 212,-516 },
{ 213,-516 }, { 214,-516 }, { 215,-516 }, { 216,-516 }, { 217,-516 },
{ 218,-516 }, { 219,-516 }, { 220,-516 }, { 221,-516 }, { 222,-516 },
{ 223,-516 }, { 224,-516 }, { 225,-516 }, { 226,-516 }, { 227,-516 },
{ 228,-516 }, { 229,-516 }, { 230,-516 }, { 231,-516 }, { 232,-516 },
{ 233,-516 }, { 234,-516 }, { 235,-516 }, { 236,-516 }, { 237,-516 },
{ 238,-516 }, { 239,-516 }, { 240,-516 }, { 241,-516 }, { 242,-516 },
{ 243,-516 }, { 244,-516 }, { 245,-516 }, { 246,-516 }, { 247,-516 },
{ 248,-516 }, { 249,-516 }, { 250,-516 }, { 251,-516 }, { 252,-516 },
{ 253,-516 }, { 254,-516 }, { 255,-516 }, { 256,-516 }, { 0, 37 },
{ 0,13835 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 37 }, { 0,13812 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,4523 }, { 49,4523 },
{ 50,4523 }, { 51,4523 }, { 52,4523 }, { 53,4523 }, { 54,4523 },
{ 55,4523 }, { 56,4523 }, { 57,4523 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 65,4523 }, { 66,4523 }, { 67,4523 }, { 68,4523 }, { 69,4523 },
{ 70,4523 }, { 48,4523 }, { 49,4523 }, { 50,4523 }, { 51,4523 },
{ 52,4523 }, { 53,4523 }, { 54,4523 }, { 55,4523 }, { 56,4523 },
{ 57,4523 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,4523 }, { 66,4523 },
{ 67,4523 }, { 68,4523 }, { 69,4523 }, { 70,4523 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 97,4523 }, { 98,4523 }, { 99,4523 },
{ 100,4523 }, { 101,4523 }, { 102,4523 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 97,4523 }, { 98,4523 }, { 99,4523 }, { 100,4523 }, { 101,4523 },
{ 102,4523 }, { 0, 24 }, { 0,13708 }, { 1,4523 }, { 2,4523 },
{ 3,4523 }, { 4,4523 }, { 5,4523 }, { 6,4523 }, { 7,4523 },
{ 8,4523 }, { 9,4781 }, { 10,5039 }, { 11,4523 }, { 12,4781 },
{ 13,5039 }, { 14,4523 }, { 15,4523 }, { 16,4523 }, { 17,4523 },
{ 18,4523 }, { 19,4523 }, { 20,4523 }, { 21,4523 }, { 22,4523 },
{ 23,4523 }, { 24,4523 }, { 25,4523 }, { 26,4523 }, { 27,4523 },
{ 28,4523 }, { 29,4523 }, { 30,4523 }, { 31,4523 }, { 32,4781 },
{ 33,4523 }, { 34,4523 }, { 35,4523 }, { 36,4523 }, { 37,4523 },
{ 38,4523 }, { 39,4523 }, { 40,4523 }, { 41,4523 }, { 42,4523 },
{ 43,4523 }, { 44,4523 }, { 45,5086 }, { 46,4523 }, { 47,4523 },
{ 48,4523 }, { 49,4523 }, { 50,4523 }, { 51,4523 }, { 52,4523 },
{ 53,4523 }, { 54,4523 }, { 55,4523 }, { 56,4523 }, { 57,4523 },
{ 58,4523 }, { 59,4523 }, { 60,4523 }, { 61,4523 }, { 62,4523 },
{ 63,4523 }, { 64,4523 }, { 65,4523 }, { 66,4523 }, { 67,4523 },
{ 68,4523 }, { 69,4523 }, { 70,4523 }, { 71,4523 }, { 72,4523 },
{ 73,4523 }, { 74,4523 }, { 75,4523 }, { 76,4523 }, { 77,4523 },
{ 78,4523 }, { 79,4523 }, { 80,4523 }, { 81,4523 }, { 82,4523 },
{ 83,4523 }, { 84,4523 }, { 85,4523 }, { 86,4523 }, { 87,4523 },
{ 88,4523 }, { 89,4523 }, { 90,4523 }, { 91,4523 }, { 92,4523 },
{ 93,4523 }, { 94,4523 }, { 95,4523 }, { 96,4523 }, { 97,4523 },
{ 98,4523 }, { 99,4523 }, { 100,4523 }, { 101,4523 }, { 102,4523 },
{ 103,4523 }, { 104,4523 }, { 105,4523 }, { 106,4523 }, { 107,4523 },
{ 108,4523 }, { 109,4523 }, { 110,4523 }, { 111,4523 }, { 112,4523 },
{ 113,4523 }, { 114,4523 }, { 115,4523 }, { 116,4523 }, { 117,4523 },
{ 118,4523 }, { 119,4523 }, { 120,4523 }, { 121,4523 }, { 122,4523 },
{ 123,4523 }, { 124,4523 }, { 125,4523 }, { 126,4523 }, { 127,4523 },
{ 128,4523 }, { 129,4523 }, { 130,4523 }, { 131,4523 }, { 132,4523 },
{ 133,4523 }, { 134,4523 }, { 135,4523 }, { 136,4523 }, { 137,4523 },
{ 138,4523 }, { 139,4523 }, { 140,4523 }, { 141,4523 }, { 142,4523 },
{ 143,4523 }, { 144,4523 }, { 145,4523 }, { 146,4523 }, { 147,4523 },
{ 148,4523 }, { 149,4523 }, { 150,4523 }, { 151,4523 }, { 152,4523 },
{ 153,4523 }, { 154,4523 }, { 155,4523 }, { 156,4523 }, { 157,4523 },
{ 158,4523 }, { 159,4523 }, { 160,4523 }, { 161,4523 }, { 162,4523 },
{ 163,4523 }, { 164,4523 }, { 165,4523 }, { 166,4523 }, { 167,4523 },
{ 168,4523 }, { 169,4523 }, { 170,4523 }, { 171,4523 }, { 172,4523 },
{ 173,4523 }, { 174,4523 }, { 175,4523 }, { 176,4523 }, { 177,4523 },
{ 178,4523 }, { 179,4523 }, { 180,4523 }, { 181,4523 }, { 182,4523 },
{ 183,4523 }, { 184,4523 }, { 185,4523 }, { 186,4523 }, { 187,4523 },
{ 188,4523 }, { 189,4523 }, { 190,4523 }, { 191,4523 }, { 192,4523 },
{ 193,4523 }, { 194,4523 }, { 195,4523 }, { 196,4523 }, { 197,4523 },
{ 198,4523 }, { 199,4523 }, { 200,4523 }, { 201,4523 }, { 202,4523 },
{ 203,4523 }, { 204,4523 }, { 205,4523 }, { 206,4523 }, { 207,4523 },
{ 208,4523 }, { 209,4523 }, { 210,4523 }, { 211,4523 }, { 212,4523 },
{ 213,4523 }, { 214,4523 }, { 215,4523 }, { 216,4523 }, { 217,4523 },
{ 218,4523 }, { 219,4523 }, { 220,4523 }, { 221,4523 }, { 222,4523 },
{ 223,4523 }, { 224,4523 }, { 225,4523 }, { 226,4523 }, { 227,4523 },
{ 228,4523 }, { 229,4523 }, { 230,4523 }, { 231,4523 }, { 232,4523 },
{ 233,4523 }, { 234,4523 }, { 235,4523 }, { 236,4523 }, { 237,4523 },
{ 238,4523 }, { 239,4523 }, { 240,4523 }, { 241,4523 }, { 242,4523 },
{ 243,4523 }, { 244,4523 }, { 245,4523 }, { 246,4523 }, { 247,4523 },
{ 248,4523 }, { 249,4523 }, { 250,4523 }, { 251,4523 }, { 252,4523 },
{ 253,4523 }, { 254,4523 }, { 255,4523 }, { 256,4523 }, { 0, 24 },
{ 0,13450 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 },
{ 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 258 },
{ 10,-7084 }, { 11, 0 }, { 12, 258 }, { 13,-7084 }, { 14, 0 },
{ 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 },
{ 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 },
{ 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 },
{ 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 }, { 34, 0 },
{ 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 },
{ 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 },
{ 45, 516 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 },
{ 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
{ 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 },
{ 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 },
{ 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 },
{ 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 },
{ 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 },
{ 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 },
{ 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 },
{ 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 },
{ 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 },
{ 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 },
{ 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 },
{ 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 },
{ 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 },
{ 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 },
{ 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 },
{ 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 },
{ 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 },
{ 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 },
{ 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 },
{ 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 },
{ 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 },
{ 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 },
{ 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 },
{ 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 },
{ 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 },
{ 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 },
{ 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 },
{ 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 },
{ 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 },
{ 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 },
{ 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 },
{ 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 },
{ 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 },
{ 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 },
{ 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 },
{ 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 },
{ 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 },
{ 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 },
{ 255, 0 }, { 256, 0 }, { 0, 24 }, { 0,13192 }, { 1,-258 },
{ 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 }, { 6,-258 },
{ 7,-258 }, { 8,-258 }, { 9, 0 }, { 10,-7342 }, { 11,-258 },
{ 12, 0 }, { 13,-7342 }, { 14,-258 }, { 15,-258 }, { 16,-258 },
{ 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 }, { 21,-258 },
{ 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 }, { 26,-258 },
{ 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 }, { 31,-258 },
{ 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 }, { 36,-258 },
{ 37,-258 }, { 38,-258 }, { 39,-258 }, { 40,-258 }, { 41,-258 },
{ 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 258 }, { 46,-258 },
{ 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 }, { 51,-258 },
{ 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 }, { 56,-258 },
{ 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 }, { 61,-258 },
{ 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 }, { 66,-258 },
{ 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 }, { 71,-258 },
{ 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 }, { 76,-258 },
{ 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 }, { 81,-258 },
{ 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 }, { 86,-258 },
{ 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 }, { 91,-258 },
{ 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 }, { 96,-258 },
{ 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 }, { 101,-258 },
{ 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 }, { 106,-258 },
{ 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 }, { 111,-258 },
{ 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 }, { 116,-258 },
{ 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 }, { 121,-258 },
{ 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 }, { 126,-258 },
{ 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 }, { 131,-258 },
{ 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 }, { 136,-258 },
{ 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 }, { 141,-258 },
{ 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 }, { 146,-258 },
{ 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 }, { 151,-258 },
{ 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 }, { 156,-258 },
{ 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 }, { 161,-258 },
{ 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 }, { 166,-258 },
{ 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 }, { 171,-258 },
{ 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 }, { 176,-258 },
{ 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 }, { 181,-258 },
{ 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 }, { 186,-258 },
{ 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 }, { 191,-258 },
{ 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 }, { 196,-258 },
{ 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 }, { 201,-258 },
{ 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 }, { 206,-258 },
{ 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 }, { 211,-258 },
{ 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 }, { 216,-258 },
{ 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 }, { 221,-258 },
{ 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 }, { 226,-258 },
{ 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 }, { 231,-258 },
{ 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 }, { 236,-258 },
{ 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 }, { 241,-258 },
{ 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 }, { 246,-258 },
{ 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 }, { 251,-258 },
{ 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 }, { 256,-258 },
{ 0, 24 }, { 0,12934 }, { 1,-516 }, { 2,-516 }, { 3,-516 },
{ 4,-516 }, { 5,-516 }, { 6,-516 }, { 7,-516 }, { 8,-516 },
{ 9,-258 }, { 10,-7600 }, { 11,-516 }, { 12,-258 }, { 13,-7600 },
{ 14,-516 }, { 15,-516 }, { 16,-516 }, { 17,-516 }, { 18,-516 },
{ 19,-516 }, { 20,-516 }, { 21,-516 }, { 22,-516 }, { 23,-516 },
{ 24,-516 }, { 25,-516 }, { 26,-516 }, { 27,-516 }, { 28,-516 },
{ 29,-516 }, { 30,-516 }, { 31,-516 }, { 32,-258 }, { 33,-516 },
{ 34,-516 }, { 35,-516 }, { 36,-516 }, { 37,-516 }, { 38,-516 },
{ 39,-516 }, { 40,-516 }, { 41,-516 }, { 42,-516 }, { 43,-516 },
{ 44,-516 }, { 45,4570 }, { 46,-516 }, { 47,-516 }, { 48,-516 },
{ 49,-516 }, { 50,-516 }, { 51,-516 }, { 52,-516 }, { 53,-516 },
{ 54,-516 }, { 55,-516 }, { 56,-516 }, { 57,-516 }, { 58,-516 },
{ 59,-516 }, { 60,-516 }, { 61,-516 }, { 62,-516 }, { 63,-516 },
{ 64,-516 }, { 65,-516 }, { 66,-516 }, { 67,-516 }, { 68,-516 },
{ 69,-516 }, { 70,-516 }, { 71,-516 }, { 72,-516 }, { 73,-516 },
{ 74,-516 }, { 75,-516 }, { 76,-516 }, { 77,-516 }, { 78,-516 },
{ 79,-516 }, { 80,-516 }, { 81,-516 }, { 82,-516 }, { 83,-516 },
{ 84,-516 }, { 85,-516 }, { 86,-516 }, { 87,-516 }, { 88,-516 },
{ 89,-516 }, { 90,-516 }, { 91,-516 }, { 92,-516 }, { 93,-516 },
{ 94,-516 }, { 95,-516 }, { 96,-516 }, { 97,-516 }, { 98,-516 },
{ 99,-516 }, { 100,-516 }, { 101,-516 }, { 102,-516 }, { 103,-516 },
{ 104,-516 }, { 105,-516 }, { 106,-516 }, { 107,-516 }, { 108,-516 },
{ 109,-516 }, { 110,-516 }, { 111,-516 }, { 112,-516 }, { 113,-516 },
{ 114,-516 }, { 115,-516 }, { 116,-516 }, { 117,-516 }, { 118,-516 },
{ 119,-516 }, { 120,-516 }, { 121,-516 }, { 122,-516 }, { 123,-516 },
{ 124,-516 }, { 125,-516 }, { 126,-516 }, { 127,-516 }, { 128,-516 },
{ 129,-516 }, { 130,-516 }, { 131,-516 }, { 132,-516 }, { 133,-516 },
{ 134,-516 }, { 135,-516 }, { 136,-516 }, { 137,-516 }, { 138,-516 },
{ 139,-516 }, { 140,-516 }, { 141,-516 }, { 142,-516 }, { 143,-516 },
{ 144,-516 }, { 145,-516 }, { 146,-516 }, { 147,-516 }, { 148,-516 },
{ 149,-516 }, { 150,-516 }, { 151,-516 }, { 152,-516 }, { 153,-516 },
{ 154,-516 }, { 155,-516 }, { 156,-516 }, { 157,-516 }, { 158,-516 },
{ 159,-516 }, { 160,-516 }, { 161,-516 }, { 162,-516 }, { 163,-516 },
{ 164,-516 }, { 165,-516 }, { 166,-516 }, { 167,-516 }, { 168,-516 },
{ 169,-516 }, { 170,-516 }, { 171,-516 }, { 172,-516 }, { 173,-516 },
{ 174,-516 }, { 175,-516 }, { 176,-516 }, { 177,-516 }, { 178,-516 },
{ 179,-516 }, { 180,-516 }, { 181,-516 }, { 182,-516 }, { 183,-516 },
{ 184,-516 }, { 185,-516 }, { 186,-516 }, { 187,-516 }, { 188,-516 },
{ 189,-516 }, { 190,-516 }, { 191,-516 }, { 192,-516 }, { 193,-516 },
{ 194,-516 }, { 195,-516 }, { 196,-516 }, { 197,-516 }, { 198,-516 },
{ 199,-516 }, { 200,-516 }, { 201,-516 }, { 202,-516 }, { 203,-516 },
{ 204,-516 }, { 205,-516 }, { 206,-516 }, { 207,-516 }, { 208,-516 },
{ 209,-516 }, { 210,-516 }, { 211,-516 }, { 212,-516 }, { 213,-516 },
{ 214,-516 }, { 215,-516 }, { 216,-516 }, { 217,-516 }, { 218,-516 },
{ 219,-516 }, { 220,-516 }, { 221,-516 }, { 222,-516 }, { 223,-516 },
{ 224,-516 }, { 225,-516 }, { 226,-516 }, { 227,-516 }, { 228,-516 },
{ 229,-516 }, { 230,-516 }, { 231,-516 }, { 232,-516 }, { 233,-516 },
{ 234,-516 }, { 235,-516 }, { 236,-516 }, { 237,-516 }, { 238,-516 },
{ 239,-516 }, { 240,-516 }, { 241,-516 }, { 242,-516 }, { 243,-516 },
{ 244,-516 }, { 245,-516 }, { 246,-516 }, { 247,-516 }, { 248,-516 },
{ 249,-516 }, { 250,-516 }, { 251,-516 }, { 252,-516 }, { 253,-516 },
{ 254,-516 }, { 255,-516 }, { 256,-516 }, { 0, 37 }, { 0,12676 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 37 }, { 0,12653 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48,4570 }, { 49,4570 }, { 50,4570 },
{ 51,4570 }, { 52,4570 }, { 53,4570 }, { 54,4570 }, { 55,4570 },
{ 56,4570 }, { 57,4570 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,4570 },
{ 66,4570 }, { 67,4570 }, { 68,4570 }, { 69,4570 }, { 70,4570 },
{ 48,4570 }, { 49,4570 }, { 50,4570 }, { 51,4570 }, { 52,4570 },
{ 53,4570 }, { 54,4570 }, { 55,4570 }, { 56,4570 }, { 57,4570 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,4570 }, { 66,4570 }, { 67,4570 },
{ 68,4570 }, { 69,4570 }, { 70,4570 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 97,4570 }, { 98,4570 }, { 99,4570 }, { 100,4570 },
{ 101,4570 }, { 102,4570 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,4570 },
{ 98,4570 }, { 99,4570 }, { 100,4570 }, { 101,4570 }, { 102,4570 },
{ 0, 9 }, { 0,12549 }, { 1, 0 }, { 2, 0 }, { 3, 0 },
{ 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 },
{ 9, 258 }, { 10, 516 }, { 11, 0 }, { 12, 258 }, { 13, 516 },
{ 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 },
{ 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 },
{ 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 },
{ 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 },
{ 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 },
{ 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 },
{ 44, 0 }, { 45, 563 }, { 46, 0 }, { 47, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 },
{ 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 },
{ 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 },
{ 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 },
{ 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 9 }, { 0,12291 },
{ 1,-258 }, { 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 },
{ 6,-258 }, { 7,-258 }, { 8,-258 }, { 9, 0 }, { 10, 258 },
{ 11,-258 }, { 12, 0 }, { 13, 258 }, { 14,-258 }, { 15,-258 },
{ 16,-258 }, { 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 },
{ 21,-258 }, { 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 },
{ 26,-258 }, { 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 },
{ 31,-258 }, { 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 },
{ 36,-258 }, { 37,-258 }, { 38,-258 }, { 39,-258 }, { 40,-258 },
{ 41,-258 }, { 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 305 },
{ 46,-258 }, { 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 },
{ 51,-258 }, { 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 },
{ 56,-258 }, { 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 },
{ 61,-258 }, { 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 },
{ 66,-258 }, { 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 },
{ 71,-258 }, { 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 },
{ 76,-258 }, { 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 },
{ 81,-258 }, { 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 },
{ 86,-258 }, { 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 },
{ 91,-258 }, { 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 },
{ 96,-258 }, { 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 },
{ 101,-258 }, { 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 },
{ 106,-258 }, { 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 },
{ 111,-258 }, { 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 },
{ 116,-258 }, { 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 },
{ 121,-258 }, { 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 },
{ 126,-258 }, { 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 },
{ 131,-258 }, { 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 },
{ 136,-258 }, { 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 },
{ 141,-258 }, { 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 },
{ 146,-258 }, { 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 },
{ 151,-258 }, { 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 },
{ 156,-258 }, { 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 },
{ 161,-258 }, { 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 },
{ 166,-258 }, { 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 },
{ 171,-258 }, { 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 },
{ 176,-258 }, { 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 },
{ 181,-258 }, { 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 },
{ 186,-258 }, { 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 },
{ 191,-258 }, { 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 },
{ 196,-258 }, { 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 },
{ 201,-258 }, { 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 },
{ 206,-258 }, { 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 },
{ 211,-258 }, { 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 },
{ 216,-258 }, { 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 },
{ 221,-258 }, { 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 },
{ 226,-258 }, { 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 },
{ 231,-258 }, { 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 },
{ 236,-258 }, { 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 },
{ 241,-258 }, { 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 },
{ 246,-258 }, { 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 },
{ 251,-258 }, { 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 },
{ 256,-258 }, { 0, 9 }, { 0,12033 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 9,-7240 }, { 10,-7240 }, { 0, 0 }, { 12,-7240 },
{ 13,-7240 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-7240 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 39,-17444 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 45,-17442 }, { 0, 9 }, { 0,11986 },
{ 1,-563 }, { 2,-563 }, { 3,-563 }, { 4,-563 }, { 5,-563 },
{ 6,-563 }, { 7,-563 }, { 8,-563 }, { 9,-305 }, { 10, -47 },
{ 11,-563 }, { 12,-305 }, { 13, -47 }, { 14,-563 }, { 15,-563 },
{ 16,-563 }, { 17,-563 }, { 18,-563 }, { 19,-563 }, { 20,-563 },
{ 21,-563 }, { 22,-563 }, { 23,-563 }, { 24,-563 }, { 25,-563 },
{ 26,-563 }, { 27,-563 }, { 28,-563 }, { 29,-563 }, { 30,-563 },
{ 31,-563 }, { 32,-305 }, { 33,-563 }, { 34,-563 }, { 35,-563 },
{ 36,-563 }, { 37,-563 }, { 38,-563 }, { 39,-563 }, { 40,-563 },
{ 41,-563 }, { 42,-563 }, { 43,-563 }, { 44,-563 }, { 45,4007 },
{ 46,-563 }, { 47,-563 }, { 48,-563 }, { 49,-563 }, { 50,-563 },
{ 51,-563 }, { 52,-563 }, { 53,-563 }, { 54,-563 }, { 55,-563 },
{ 56,-563 }, { 57,-563 }, { 58,-563 }, { 59,-563 }, { 60,-563 },
{ 61,-563 }, { 62,-563 }, { 63,-563 }, { 64,-563 }, { 65,-563 },
{ 66,-563 }, { 67,-563 }, { 68,-563 }, { 69,-563 }, { 70,-563 },
{ 71,-563 }, { 72,-563 }, { 73,-563 }, { 74,-563 }, { 75,-563 },
{ 76,-563 }, { 77,-563 }, { 78,-563 }, { 79,-563 }, { 80,-563 },
{ 81,-563 }, { 82,-563 }, { 83,-563 }, { 84,-563 }, { 85,-563 },
{ 86,-563 }, { 87,-563 }, { 88,-563 }, { 89,-563 }, { 90,-563 },
{ 91,-563 }, { 92,-563 }, { 93,-563 }, { 94,-563 }, { 95,-563 },
{ 96,-563 }, { 97,-563 }, { 98,-563 }, { 99,-563 }, { 100,-563 },
{ 101,-563 }, { 102,-563 }, { 103,-563 }, { 104,-563 }, { 105,-563 },
{ 106,-563 }, { 107,-563 }, { 108,-563 }, { 109,-563 }, { 110,-563 },
{ 111,-563 }, { 112,-563 }, { 113,-563 }, { 114,-563 }, { 115,-563 },
{ 116,-563 }, { 117,-563 }, { 118,-563 }, { 119,-563 }, { 120,-563 },
{ 121,-563 }, { 122,-563 }, { 123,-563 }, { 124,-563 }, { 125,-563 },
{ 126,-563 }, { 127,-563 }, { 128,-563 }, { 129,-563 }, { 130,-563 },
{ 131,-563 }, { 132,-563 }, { 133,-563 }, { 134,-563 }, { 135,-563 },
{ 136,-563 }, { 137,-563 }, { 138,-563 }, { 139,-563 }, { 140,-563 },
{ 141,-563 }, { 142,-563 }, { 143,-563 }, { 144,-563 }, { 145,-563 },
{ 146,-563 }, { 147,-563 }, { 148,-563 }, { 149,-563 }, { 150,-563 },
{ 151,-563 }, { 152,-563 }, { 153,-563 }, { 154,-563 }, { 155,-563 },
{ 156,-563 }, { 157,-563 }, { 158,-563 }, { 159,-563 }, { 160,-563 },
{ 161,-563 }, { 162,-563 }, { 163,-563 }, { 164,-563 }, { 165,-563 },
{ 166,-563 }, { 167,-563 }, { 168,-563 }, { 169,-563 }, { 170,-563 },
{ 171,-563 }, { 172,-563 }, { 173,-563 }, { 174,-563 }, { 175,-563 },
{ 176,-563 }, { 177,-563 }, { 178,-563 }, { 179,-563 }, { 180,-563 },
{ 181,-563 }, { 182,-563 }, { 183,-563 }, { 184,-563 }, { 185,-563 },
{ 186,-563 }, { 187,-563 }, { 188,-563 }, { 189,-563 }, { 190,-563 },
{ 191,-563 }, { 192,-563 }, { 193,-563 }, { 194,-563 }, { 195,-563 },
{ 196,-563 }, { 197,-563 }, { 198,-563 }, { 199,-563 }, { 200,-563 },
{ 201,-563 }, { 202,-563 }, { 203,-563 }, { 204,-563 }, { 205,-563 },
{ 206,-563 }, { 207,-563 }, { 208,-563 }, { 209,-563 }, { 210,-563 },
{ 211,-563 }, { 212,-563 }, { 213,-563 }, { 214,-563 }, { 215,-563 },
{ 216,-563 }, { 217,-563 }, { 218,-563 }, { 219,-563 }, { 220,-563 },
{ 221,-563 }, { 222,-563 }, { 223,-563 }, { 224,-563 }, { 225,-563 },
{ 226,-563 }, { 227,-563 }, { 228,-563 }, { 229,-563 }, { 230,-563 },
{ 231,-563 }, { 232,-563 }, { 233,-563 }, { 234,-563 }, { 235,-563 },
{ 236,-563 }, { 237,-563 }, { 238,-563 }, { 239,-563 }, { 240,-563 },
{ 241,-563 }, { 242,-563 }, { 243,-563 }, { 244,-563 }, { 245,-563 },
{ 246,-563 }, { 247,-563 }, { 248,-563 }, { 249,-563 }, { 250,-563 },
{ 251,-563 }, { 252,-563 }, { 253,-563 }, { 254,-563 }, { 255,-563 },
{ 256,-563 }, { 0, 9 }, { 0,11728 }, { 1,-4945 }, { 2,-4945 },
{ 3,-4945 }, { 4,-4945 }, { 5,-4945 }, { 6,-4945 }, { 7,-4945 },
{ 8,-4945 }, { 9,-4687 }, { 10,-11286 }, { 11,-4945 }, { 12,-4687 },
{ 13,-11286 }, { 14,-4945 }, { 15,-4945 }, { 16,-4945 }, { 17,-4945 },
{ 18,-4945 }, { 19,-4945 }, { 20,-4945 }, { 21,-4945 }, { 22,-4945 },
{ 23,-4945 }, { 24,-4945 }, { 25,-4945 }, { 26,-4945 }, { 27,-4945 },
{ 28,-4945 }, { 29,-4945 }, { 30,-4945 }, { 31,-4945 }, { 32,-4687 },
{ 33,-4945 }, { 34,-4945 }, { 35,-4945 }, { 36,-4945 }, { 37,-4945 },
{ 38,-4945 }, { 39,-4945 }, { 40,-4945 }, { 41,-4945 }, { 42,-4945 },
{ 43,-4945 }, { 44,-4945 }, { 45, 0 }, { 46,-4945 }, { 47,-4945 },
{ 48,-4945 }, { 49,-4945 }, { 50,-4945 }, { 51,-4945 }, { 52,-4945 },
{ 53,-4945 }, { 54,-4945 }, { 55,-4945 }, { 56,-4945 }, { 57,-4945 },
{ 58,-4945 }, { 59,-4945 }, { 60,-4945 }, { 61,-4945 }, { 62,-4945 },
{ 63,-4945 }, { 64,-4945 }, { 65,-4945 }, { 66,-4945 }, { 67,-4945 },
{ 68,-4945 }, { 69,-4945 }, { 70,-4945 }, { 71,-4945 }, { 72,-4945 },
{ 73,-4945 }, { 74,-4945 }, { 75,-4945 }, { 76,-4945 }, { 77,-4945 },
{ 78,-4945 }, { 79,-4945 }, { 80,-4945 }, { 81,-4945 }, { 82,-4945 },
{ 83,-4945 }, { 84,-4945 }, { 85,-4945 }, { 86,-4945 }, { 87,-4945 },
{ 88,-4945 }, { 89,-4945 }, { 90,-4945 }, { 91,-4945 }, { 92,-4945 },
{ 93,-4945 }, { 94,-4945 }, { 95,-4945 }, { 96,-4945 }, { 97,-4945 },
{ 98,-4945 }, { 99,-4945 }, { 100,-4945 }, { 101,-4945 }, { 102,-4945 },
{ 103,-4945 }, { 104,-4945 }, { 105,-4945 }, { 106,-4945 }, { 107,-4945 },
{ 108,-4945 }, { 109,-4945 }, { 110,-4945 }, { 111,-4945 }, { 112,-4945 },
{ 113,-4945 }, { 114,-4945 }, { 115,-4945 }, { 116,-4945 }, { 117,-4945 },
{ 118,-4945 }, { 119,-4945 }, { 120,-4945 }, { 121,-4945 }, { 122,-4945 },
{ 123,-4945 }, { 124,-4945 }, { 125,-4945 }, { 126,-4945 }, { 127,-4945 },
{ 128,-4945 }, { 129,-4945 }, { 130,-4945 }, { 131,-4945 }, { 132,-4945 },
{ 133,-4945 }, { 134,-4945 }, { 135,-4945 }, { 136,-4945 }, { 137,-4945 },
{ 138,-4945 }, { 139,-4945 }, { 140,-4945 }, { 141,-4945 }, { 142,-4945 },
{ 143,-4945 }, { 144,-4945 }, { 145,-4945 }, { 146,-4945 }, { 147,-4945 },
{ 148,-4945 }, { 149,-4945 }, { 150,-4945 }, { 151,-4945 }, { 152,-4945 },
{ 153,-4945 }, { 154,-4945 }, { 155,-4945 }, { 156,-4945 }, { 157,-4945 },
{ 158,-4945 }, { 159,-4945 }, { 160,-4945 }, { 161,-4945 }, { 162,-4945 },
{ 163,-4945 }, { 164,-4945 }, { 165,-4945 }, { 166,-4945 }, { 167,-4945 },
{ 168,-4945 }, { 169,-4945 }, { 170,-4945 }, { 171,-4945 }, { 172,-4945 },
{ 173,-4945 }, { 174,-4945 }, { 175,-4945 }, { 176,-4945 }, { 177,-4945 },
{ 178,-4945 }, { 179,-4945 }, { 180,-4945 }, { 181,-4945 }, { 182,-4945 },
{ 183,-4945 }, { 184,-4945 }, { 185,-4945 }, { 186,-4945 }, { 187,-4945 },
{ 188,-4945 }, { 189,-4945 }, { 190,-4945 }, { 191,-4945 }, { 192,-4945 },
{ 193,-4945 }, { 194,-4945 }, { 195,-4945 }, { 196,-4945 }, { 197,-4945 },
{ 198,-4945 }, { 199,-4945 }, { 200,-4945 }, { 201,-4945 }, { 202,-4945 },
{ 203,-4945 }, { 204,-4945 }, { 205,-4945 }, { 206,-4945 }, { 207,-4945 },
{ 208,-4945 }, { 209,-4945 }, { 210,-4945 }, { 211,-4945 }, { 212,-4945 },
{ 213,-4945 }, { 214,-4945 }, { 215,-4945 }, { 216,-4945 }, { 217,-4945 },
{ 218,-4945 }, { 219,-4945 }, { 220,-4945 }, { 221,-4945 }, { 222,-4945 },
{ 223,-4945 }, { 224,-4945 }, { 225,-4945 }, { 226,-4945 }, { 227,-4945 },
{ 228,-4945 }, { 229,-4945 }, { 230,-4945 }, { 231,-4945 }, { 232,-4945 },
{ 233,-4945 }, { 234,-4945 }, { 235,-4945 }, { 236,-4945 }, { 237,-4945 },
{ 238,-4945 }, { 239,-4945 }, { 240,-4945 }, { 241,-4945 }, { 242,-4945 },
{ 243,-4945 }, { 244,-4945 }, { 245,-4945 }, { 246,-4945 }, { 247,-4945 },
{ 248,-4945 }, { 249,-4945 }, { 250,-4945 }, { 251,-4945 }, { 252,-4945 },
{ 253,-4945 }, { 254,-4945 }, { 255,-4945 }, { 256,-4945 }, { 0, 16 },
{ 0,11470 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 },
{ 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 258 },
{ 10, 516 }, { 11, 0 }, { 12, 258 }, { 13, 516 }, { 14, 0 },
{ 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 },
{ 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 },
{ 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 },
{ 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 }, { 34, 0 },
{ 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 },
{ 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 },
{ 45, 563 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 },
{ 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
{ 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 },
{ 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 },
{ 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 },
{ 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 },
{ 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 },
{ 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 },
{ 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 },
{ 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 },
{ 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 },
{ 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 },
{ 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 },
{ 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 },
{ 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 },
{ 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 },
{ 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 },
{ 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 },
{ 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 },
{ 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 },
{ 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 },
{ 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 },
{ 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 },
{ 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 },
{ 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 },
{ 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 },
{ 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 },
{ 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 },
{ 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 },
{ 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 },
{ 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 },
{ 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 },
{ 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 },
{ 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 },
{ 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 },
{ 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 },
{ 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 },
{ 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 },
{ 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 },
{ 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 },
{ 255, 0 }, { 256, 0 }, { 0, 16 }, { 0,11212 }, { 1,-258 },
{ 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 }, { 6,-258 },
{ 7,-258 }, { 8,-258 }, { 9, 0 }, { 10, 258 }, { 11,-258 },
{ 12, 0 }, { 13, 258 }, { 14,-258 }, { 15,-258 }, { 16,-258 },
{ 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 }, { 21,-258 },
{ 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 }, { 26,-258 },
{ 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 }, { 31,-258 },
{ 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 }, { 36,-258 },
{ 37,-258 }, { 38,-258 }, { 39,-258 }, { 40,-258 }, { 41,-258 },
{ 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 305 }, { 46,-258 },
{ 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 }, { 51,-258 },
{ 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 }, { 56,-258 },
{ 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 }, { 61,-258 },
{ 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 }, { 66,-258 },
{ 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 }, { 71,-258 },
{ 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 }, { 76,-258 },
{ 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 }, { 81,-258 },
{ 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 }, { 86,-258 },
{ 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 }, { 91,-258 },
{ 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 }, { 96,-258 },
{ 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 }, { 101,-258 },
{ 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 }, { 106,-258 },
{ 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 }, { 111,-258 },
{ 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 }, { 116,-258 },
{ 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 }, { 121,-258 },
{ 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 }, { 126,-258 },
{ 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 }, { 131,-258 },
{ 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 }, { 136,-258 },
{ 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 }, { 141,-258 },
{ 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 }, { 146,-258 },
{ 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 }, { 151,-258 },
{ 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 }, { 156,-258 },
{ 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 }, { 161,-258 },
{ 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 }, { 166,-258 },
{ 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 }, { 171,-258 },
{ 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 }, { 176,-258 },
{ 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 }, { 181,-258 },
{ 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 }, { 186,-258 },
{ 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 }, { 191,-258 },
{ 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 }, { 196,-258 },
{ 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 }, { 201,-258 },
{ 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 }, { 206,-258 },
{ 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 }, { 211,-258 },
{ 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 }, { 216,-258 },
{ 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 }, { 221,-258 },
{ 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 }, { 226,-258 },
{ 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 }, { 231,-258 },
{ 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 }, { 236,-258 },
{ 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 }, { 241,-258 },
{ 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 }, { 246,-258 },
{ 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 }, { 251,-258 },
{ 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 }, { 256,-258 },
{ 0, 16 }, { 0,10954 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,-8007 }, { 10,-8007 }, { 0, 0 }, { 12,-8007 }, { 13,-8007 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-8007 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,-18519 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-18514 }, { 0, 16 }, { 0,10907 }, { 1,-563 },
{ 2,-563 }, { 3,-563 }, { 4,-563 }, { 5,-563 }, { 6,-563 },
{ 7,-563 }, { 8,-563 }, { 9,-305 }, { 10, -47 }, { 11,-563 },
{ 12,-305 }, { 13, -47 }, { 14,-563 }, { 15,-563 }, { 16,-563 },
{ 17,-563 }, { 18,-563 }, { 19,-563 }, { 20,-563 }, { 21,-563 },
{ 22,-563 }, { 23,-563 }, { 24,-563 }, { 25,-563 }, { 26,-563 },
{ 27,-563 }, { 28,-563 }, { 29,-563 }, { 30,-563 }, { 31,-563 },
{ 32,-305 }, { 33,-563 }, { 34,-563 }, { 35,-563 }, { 36,-563 },
{ 37,-563 }, { 38,-563 }, { 39,-563 }, { 40,-563 }, { 41,-563 },
{ 42,-563 }, { 43,-563 }, { 44,-563 }, { 45,3186 }, { 46,-563 },
{ 47,-563 }, { 48,-563 }, { 49,-563 }, { 50,-563 }, { 51,-563 },
{ 52,-563 }, { 53,-563 }, { 54,-563 }, { 55,-563 }, { 56,-563 },
{ 57,-563 }, { 58,-563 }, { 59,-563 }, { 60,-563 }, { 61,-563 },
{ 62,-563 }, { 63,-563 }, { 64,-563 }, { 65,-563 }, { 66,-563 },
{ 67,-563 }, { 68,-563 }, { 69,-563 }, { 70,-563 }, { 71,-563 },
{ 72,-563 }, { 73,-563 }, { 74,-563 }, { 75,-563 }, { 76,-563 },
{ 77,-563 }, { 78,-563 }, { 79,-563 }, { 80,-563 }, { 81,-563 },
{ 82,-563 }, { 83,-563 }, { 84,-563 }, { 85,-563 }, { 86,-563 },
{ 87,-563 }, { 88,-563 }, { 89,-563 }, { 90,-563 }, { 91,-563 },
{ 92,-563 }, { 93,-563 }, { 94,-563 }, { 95,-563 }, { 96,-563 },
{ 97,-563 }, { 98,-563 }, { 99,-563 }, { 100,-563 }, { 101,-563 },
{ 102,-563 }, { 103,-563 }, { 104,-563 }, { 105,-563 }, { 106,-563 },
{ 107,-563 }, { 108,-563 }, { 109,-563 }, { 110,-563 }, { 111,-563 },
{ 112,-563 }, { 113,-563 }, { 114,-563 }, { 115,-563 }, { 116,-563 },
{ 117,-563 }, { 118,-563 }, { 119,-563 }, { 120,-563 }, { 121,-563 },
{ 122,-563 }, { 123,-563 }, { 124,-563 }, { 125,-563 }, { 126,-563 },
{ 127,-563 }, { 128,-563 }, { 129,-563 }, { 130,-563 }, { 131,-563 },
{ 132,-563 }, { 133,-563 }, { 134,-563 }, { 135,-563 }, { 136,-563 },
{ 137,-563 }, { 138,-563 }, { 139,-563 }, { 140,-563 }, { 141,-563 },
{ 142,-563 }, { 143,-563 }, { 144,-563 }, { 145,-563 }, { 146,-563 },
{ 147,-563 }, { 148,-563 }, { 149,-563 }, { 150,-563 }, { 151,-563 },
{ 152,-563 }, { 153,-563 }, { 154,-563 }, { 155,-563 }, { 156,-563 },
{ 157,-563 }, { 158,-563 }, { 159,-563 }, { 160,-563 }, { 161,-563 },
{ 162,-563 }, { 163,-563 }, { 164,-563 }, { 165,-563 }, { 166,-563 },
{ 167,-563 }, { 168,-563 }, { 169,-563 }, { 170,-563 }, { 171,-563 },
{ 172,-563 }, { 173,-563 }, { 174,-563 }, { 175,-563 }, { 176,-563 },
{ 177,-563 }, { 178,-563 }, { 179,-563 }, { 180,-563 }, { 181,-563 },
{ 182,-563 }, { 183,-563 }, { 184,-563 }, { 185,-563 }, { 186,-563 },
{ 187,-563 }, { 188,-563 }, { 189,-563 }, { 190,-563 }, { 191,-563 },
{ 192,-563 }, { 193,-563 }, { 194,-563 }, { 195,-563 }, { 196,-563 },
{ 197,-563 }, { 198,-563 }, { 199,-563 }, { 200,-563 }, { 201,-563 },
{ 202,-563 }, { 203,-563 }, { 204,-563 }, { 205,-563 }, { 206,-563 },
{ 207,-563 }, { 208,-563 }, { 209,-563 }, { 210,-563 }, { 211,-563 },
{ 212,-563 }, { 213,-563 }, { 214,-563 }, { 215,-563 }, { 216,-563 },
{ 217,-563 }, { 218,-563 }, { 219,-563 }, { 220,-563 }, { 221,-563 },
{ 222,-563 }, { 223,-563 }, { 224,-563 }, { 225,-563 }, { 226,-563 },
{ 227,-563 }, { 228,-563 }, { 229,-563 }, { 230,-563 }, { 231,-563 },
{ 232,-563 }, { 233,-563 }, { 234,-563 }, { 235,-563 }, { 236,-563 },
{ 237,-563 }, { 238,-563 }, { 239,-563 }, { 240,-563 }, { 241,-563 },
{ 242,-563 }, { 243,-563 }, { 244,-563 }, { 245,-563 }, { 246,-563 },
{ 247,-563 }, { 248,-563 }, { 249,-563 }, { 250,-563 }, { 251,-563 },
{ 252,-563 }, { 253,-563 }, { 254,-563 }, { 255,-563 }, { 256,-563 },
{ 0, 16 }, { 0,10649 }, { 1,-4992 }, { 2,-4992 }, { 3,-4992 },
{ 4,-4992 }, { 5,-4992 }, { 6,-4992 }, { 7,-4992 }, { 8,-4992 },
{ 9,-4734 }, { 10,-11411 }, { 11,-4992 }, { 12,-4734 }, { 13,-11411 },
{ 14,-4992 }, { 15,-4992 }, { 16,-4992 }, { 17,-4992 }, { 18,-4992 },
{ 19,-4992 }, { 20,-4992 }, { 21,-4992 }, { 22,-4992 }, { 23,-4992 },
{ 24,-4992 }, { 25,-4992 }, { 26,-4992 }, { 27,-4992 }, { 28,-4992 },
{ 29,-4992 }, { 30,-4992 }, { 31,-4992 }, { 32,-4734 }, { 33,-4992 },
{ 34,-4992 }, { 35,-4992 }, { 36,-4992 }, { 37,-4992 }, { 38,-4992 },
{ 39,-4992 }, { 40,-4992 }, { 41,-4992 }, { 42,-4992 }, { 43,-4992 },
{ 44,-4992 }, { 45, 0 }, { 46,-4992 }, { 47,-4992 }, { 48,-4992 },
{ 49,-4992 }, { 50,-4992 }, { 51,-4992 }, { 52,-4992 }, { 53,-4992 },
{ 54,-4992 }, { 55,-4992 }, { 56,-4992 }, { 57,-4992 }, { 58,-4992 },
{ 59,-4992 }, { 60,-4992 }, { 61,-4992 }, { 62,-4992 }, { 63,-4992 },
{ 64,-4992 }, { 65,-4992 }, { 66,-4992 }, { 67,-4992 }, { 68,-4992 },
{ 69,-4992 }, { 70,-4992 }, { 71,-4992 }, { 72,-4992 }, { 73,-4992 },
{ 74,-4992 }, { 75,-4992 }, { 76,-4992 }, { 77,-4992 }, { 78,-4992 },
{ 79,-4992 }, { 80,-4992 }, { 81,-4992 }, { 82,-4992 }, { 83,-4992 },
{ 84,-4992 }, { 85,-4992 }, { 86,-4992 }, { 87,-4992 }, { 88,-4992 },
{ 89,-4992 }, { 90,-4992 }, { 91,-4992 }, { 92,-4992 }, { 93,-4992 },
{ 94,-4992 }, { 95,-4992 }, { 96,-4992 }, { 97,-4992 }, { 98,-4992 },
{ 99,-4992 }, { 100,-4992 }, { 101,-4992 }, { 102,-4992 }, { 103,-4992 },
{ 104,-4992 }, { 105,-4992 }, { 106,-4992 }, { 107,-4992 }, { 108,-4992 },
{ 109,-4992 }, { 110,-4992 }, { 111,-4992 }, { 112,-4992 }, { 113,-4992 },
{ 114,-4992 }, { 115,-4992 }, { 116,-4992 }, { 117,-4992 }, { 118,-4992 },
{ 119,-4992 }, { 120,-4992 }, { 121,-4992 }, { 122,-4992 }, { 123,-4992 },
{ 124,-4992 }, { 125,-4992 }, { 126,-4992 }, { 127,-4992 }, { 128,-4992 },
{ 129,-4992 }, { 130,-4992 }, { 131,-4992 }, { 132,-4992 }, { 133,-4992 },
{ 134,-4992 }, { 135,-4992 }, { 136,-4992 }, { 137,-4992 }, { 138,-4992 },
{ 139,-4992 }, { 140,-4992 }, { 141,-4992 }, { 142,-4992 }, { 143,-4992 },
{ 144,-4992 }, { 145,-4992 }, { 146,-4992 }, { 147,-4992 }, { 148,-4992 },
{ 149,-4992 }, { 150,-4992 }, { 151,-4992 }, { 152,-4992 }, { 153,-4992 },
{ 154,-4992 }, { 155,-4992 }, { 156,-4992 }, { 157,-4992 }, { 158,-4992 },
{ 159,-4992 }, { 160,-4992 }, { 161,-4992 }, { 162,-4992 }, { 163,-4992 },
{ 164,-4992 }, { 165,-4992 }, { 166,-4992 }, { 167,-4992 }, { 168,-4992 },
{ 169,-4992 }, { 170,-4992 }, { 171,-4992 }, { 172,-4992 }, { 173,-4992 },
{ 174,-4992 }, { 175,-4992 }, { 176,-4992 }, { 177,-4992 }, { 178,-4992 },
{ 179,-4992 }, { 180,-4992 }, { 181,-4992 }, { 182,-4992 }, { 183,-4992 },
{ 184,-4992 }, { 185,-4992 }, { 186,-4992 }, { 187,-4992 }, { 188,-4992 },
{ 189,-4992 }, { 190,-4992 }, { 191,-4992 }, { 192,-4992 }, { 193,-4992 },
{ 194,-4992 }, { 195,-4992 }, { 196,-4992 }, { 197,-4992 }, { 198,-4992 },
{ 199,-4992 }, { 200,-4992 }, { 201,-4992 }, { 202,-4992 }, { 203,-4992 },
{ 204,-4992 }, { 205,-4992 }, { 206,-4992 }, { 207,-4992 }, { 208,-4992 },
{ 209,-4992 }, { 210,-4992 }, { 211,-4992 }, { 212,-4992 }, { 213,-4992 },
{ 214,-4992 }, { 215,-4992 }, { 216,-4992 }, { 217,-4992 }, { 218,-4992 },
{ 219,-4992 }, { 220,-4992 }, { 221,-4992 }, { 222,-4992 }, { 223,-4992 },
{ 224,-4992 }, { 225,-4992 }, { 226,-4992 }, { 227,-4992 }, { 228,-4992 },
{ 229,-4992 }, { 230,-4992 }, { 231,-4992 }, { 232,-4992 }, { 233,-4992 },
{ 234,-4992 }, { 235,-4992 }, { 236,-4992 }, { 237,-4992 }, { 238,-4992 },
{ 239,-4992 }, { 240,-4992 }, { 241,-4992 }, { 242,-4992 }, { 243,-4992 },
{ 244,-4992 }, { 245,-4992 }, { 246,-4992 }, { 247,-4992 }, { 248,-4992 },
{ 249,-4992 }, { 250,-4992 }, { 251,-4992 }, { 252,-4992 }, { 253,-4992 },
{ 254,-4992 }, { 255,-4992 }, { 256,-4992 }, { 0, 22 }, { 0,10391 },
{ 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 },
{ 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 258 }, { 10, 516 },
{ 11, 0 }, { 12, 258 }, { 13, 516 }, { 14, 0 }, { 15, 0 },
{ 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 },
{ 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 },
{ 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 },
{ 31, 0 }, { 32, 258 }, { 33, 0 }, { 34, 0 }, { 35, 0 },
{ 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 },
{ 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 563 },
{ 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 },
{ 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 },
{ 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 },
{ 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 },
{ 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 },
{ 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 },
{ 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 },
{ 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 },
{ 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 },
{ 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 },
{ 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 },
{ 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 },
{ 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 },
{ 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 },
{ 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 },
{ 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 },
{ 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 },
{ 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 },
{ 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 },
{ 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 },
{ 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 },
{ 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 },
{ 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 },
{ 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 },
{ 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 },
{ 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 },
{ 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 },
{ 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 },
{ 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 },
{ 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 },
{ 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 },
{ 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 },
{ 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 },
{ 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 },
{ 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 },
{ 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 },
{ 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 },
{ 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 },
{ 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 },
{ 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 },
{ 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 },
{ 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 },
{ 256, 0 }, { 0, 22 }, { 0,10133 }, { 1,-258 }, { 2,-258 },
{ 3,-258 }, { 4,-258 }, { 5,-258 }, { 6,-258 }, { 7,-258 },
{ 8,-258 }, { 9, 0 }, { 10, 258 }, { 11,-258 }, { 12, 0 },
{ 13, 258 }, { 14,-258 }, { 15,-258 }, { 16,-258 }, { 17,-258 },
{ 18,-258 }, { 19,-258 }, { 20,-258 }, { 21,-258 }, { 22,-258 },
{ 23,-258 }, { 24,-258 }, { 25,-258 }, { 26,-258 }, { 27,-258 },
{ 28,-258 }, { 29,-258 }, { 30,-258 }, { 31,-258 }, { 32, 0 },
{ 33,-258 }, { 34,-258 }, { 35,-258 }, { 36,-258 }, { 37,-258 },
{ 38,-258 }, { 39,-258 }, { 40,-258 }, { 41,-258 }, { 42,-258 },
{ 43,-258 }, { 44,-258 }, { 45, 305 }, { 46,-258 }, { 47,-258 },
{ 48,-258 }, { 49,-258 }, { 50,-258 }, { 51,-258 }, { 52,-258 },
{ 53,-258 }, { 54,-258 }, { 55,-258 }, { 56,-258 }, { 57,-258 },
{ 58,-258 }, { 59,-258 }, { 60,-258 }, { 61,-258 }, { 62,-258 },
{ 63,-258 }, { 64,-258 }, { 65,-258 }, { 66,-258 }, { 67,-258 },
{ 68,-258 }, { 69,-258 }, { 70,-258 }, { 71,-258 }, { 72,-258 },
{ 73,-258 }, { 74,-258 }, { 75,-258 }, { 76,-258 }, { 77,-258 },
{ 78,-258 }, { 79,-258 }, { 80,-258 }, { 81,-258 }, { 82,-258 },
{ 83,-258 }, { 84,-258 }, { 85,-258 }, { 86,-258 }, { 87,-258 },
{ 88,-258 }, { 89,-258 }, { 90,-258 }, { 91,-258 }, { 92,-258 },
{ 93,-258 }, { 94,-258 }, { 95,-258 }, { 96,-258 }, { 97,-258 },
{ 98,-258 }, { 99,-258 }, { 100,-258 }, { 101,-258 }, { 102,-258 },
{ 103,-258 }, { 104,-258 }, { 105,-258 }, { 106,-258 }, { 107,-258 },
{ 108,-258 }, { 109,-258 }, { 110,-258 }, { 111,-258 }, { 112,-258 },
{ 113,-258 }, { 114,-258 }, { 115,-258 }, { 116,-258 }, { 117,-258 },
{ 118,-258 }, { 119,-258 }, { 120,-258 }, { 121,-258 }, { 122,-258 },
{ 123,-258 }, { 124,-258 }, { 125,-258 }, { 126,-258 }, { 127,-258 },
{ 128,-258 }, { 129,-258 }, { 130,-258 }, { 131,-258 }, { 132,-258 },
{ 133,-258 }, { 134,-258 }, { 135,-258 }, { 136,-258 }, { 137,-258 },
{ 138,-258 }, { 139,-258 }, { 140,-258 }, { 141,-258 }, { 142,-258 },
{ 143,-258 }, { 144,-258 }, { 145,-258 }, { 146,-258 }, { 147,-258 },
{ 148,-258 }, { 149,-258 }, { 150,-258 }, { 151,-258 }, { 152,-258 },
{ 153,-258 }, { 154,-258 }, { 155,-258 }, { 156,-258 }, { 157,-258 },
{ 158,-258 }, { 159,-258 }, { 160,-258 }, { 161,-258 }, { 162,-258 },
{ 163,-258 }, { 164,-258 }, { 165,-258 }, { 166,-258 }, { 167,-258 },
{ 168,-258 }, { 169,-258 }, { 170,-258 }, { 171,-258 }, { 172,-258 },
{ 173,-258 }, { 174,-258 }, { 175,-258 }, { 176,-258 }, { 177,-258 },
{ 178,-258 }, { 179,-258 }, { 180,-258 }, { 181,-258 }, { 182,-258 },
{ 183,-258 }, { 184,-258 }, { 185,-258 }, { 186,-258 }, { 187,-258 },
{ 188,-258 }, { 189,-258 }, { 190,-258 }, { 191,-258 }, { 192,-258 },
{ 193,-258 }, { 194,-258 }, { 195,-258 }, { 196,-258 }, { 197,-258 },
{ 198,-258 }, { 199,-258 }, { 200,-258 }, { 201,-258 }, { 202,-258 },
{ 203,-258 }, { 204,-258 }, { 205,-258 }, { 206,-258 }, { 207,-258 },
{ 208,-258 }, { 209,-258 }, { 210,-258 }, { 211,-258 }, { 212,-258 },
{ 213,-258 }, { 214,-258 }, { 215,-258 }, { 216,-258 }, { 217,-258 },
{ 218,-258 }, { 219,-258 }, { 220,-258 }, { 221,-258 }, { 222,-258 },
{ 223,-258 }, { 224,-258 }, { 225,-258 }, { 226,-258 }, { 227,-258 },
{ 228,-258 }, { 229,-258 }, { 230,-258 }, { 231,-258 }, { 232,-258 },
{ 233,-258 }, { 234,-258 }, { 235,-258 }, { 236,-258 }, { 237,-258 },
{ 238,-258 }, { 239,-258 }, { 240,-258 }, { 241,-258 }, { 242,-258 },
{ 243,-258 }, { 244,-258 }, { 245,-258 }, { 246,-258 }, { 247,-258 },
{ 248,-258 }, { 249,-258 }, { 250,-258 }, { 251,-258 }, { 252,-258 },
{ 253,-258 }, { 254,-258 }, { 255,-258 }, { 256,-258 }, { 0, 22 },
{ 0,9875 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-8707 },
{ 10,-8707 }, { 0, 0 }, { 12,-8707 }, { 13,-8707 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32,-8707 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 39,-19584 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 45,-19557 }, { 0, 22 }, { 0,9828 }, { 1,-563 }, { 2,-563 },
{ 3,-563 }, { 4,-563 }, { 5,-563 }, { 6,-563 }, { 7,-563 },
{ 8,-563 }, { 9,-305 }, { 10, -47 }, { 11,-563 }, { 12,-305 },
{ 13, -47 }, { 14,-563 }, { 15,-563 }, { 16,-563 }, { 17,-563 },
{ 18,-563 }, { 19,-563 }, { 20,-563 }, { 21,-563 }, { 22,-563 },
{ 23,-563 }, { 24,-563 }, { 25,-563 }, { 26,-563 }, { 27,-563 },
{ 28,-563 }, { 29,-563 }, { 30,-563 }, { 31,-563 }, { 32,-305 },
{ 33,-563 }, { 34,-563 }, { 35,-563 }, { 36,-563 }, { 37,-563 },
{ 38,-563 }, { 39,-563 }, { 40,-563 }, { 41,-563 }, { 42,-563 },
{ 43,-563 }, { 44,-563 }, { 45,2365 }, { 46,-563 }, { 47,-563 },
{ 48,-563 }, { 49,-563 }, { 50,-563 }, { 51,-563 }, { 52,-563 },
{ 53,-563 }, { 54,-563 }, { 55,-563 }, { 56,-563 }, { 57,-563 },
{ 58,-563 }, { 59,-563 }, { 60,-563 }, { 61,-563 }, { 62,-563 },
{ 63,-563 }, { 64,-563 }, { 65,-563 }, { 66,-563 }, { 67,-563 },
{ 68,-563 }, { 69,-563 }, { 70,-563 }, { 71,-563 }, { 72,-563 },
{ 73,-563 }, { 74,-563 }, { 75,-563 }, { 76,-563 }, { 77,-563 },
{ 78,-563 }, { 79,-563 }, { 80,-563 }, { 81,-563 }, { 82,-563 },
{ 83,-563 }, { 84,-563 }, { 85,-563 }, { 86,-563 }, { 87,-563 },
{ 88,-563 }, { 89,-563 }, { 90,-563 }, { 91,-563 }, { 92,-563 },
{ 93,-563 }, { 94,-563 }, { 95,-563 }, { 96,-563 }, { 97,-563 },
{ 98,-563 }, { 99,-563 }, { 100,-563 }, { 101,-563 }, { 102,-563 },
{ 103,-563 }, { 104,-563 }, { 105,-563 }, { 106,-563 }, { 107,-563 },
{ 108,-563 }, { 109,-563 }, { 110,-563 }, { 111,-563 }, { 112,-563 },
{ 113,-563 }, { 114,-563 }, { 115,-563 }, { 116,-563 }, { 117,-563 },
{ 118,-563 }, { 119,-563 }, { 120,-563 }, { 121,-563 }, { 122,-563 },
{ 123,-563 }, { 124,-563 }, { 125,-563 }, { 126,-563 }, { 127,-563 },
{ 128,-563 }, { 129,-563 }, { 130,-563 }, { 131,-563 }, { 132,-563 },
{ 133,-563 }, { 134,-563 }, { 135,-563 }, { 136,-563 }, { 137,-563 },
{ 138,-563 }, { 139,-563 }, { 140,-563 }, { 141,-563 }, { 142,-563 },
{ 143,-563 }, { 144,-563 }, { 145,-563 }, { 146,-563 }, { 147,-563 },
{ 148,-563 }, { 149,-563 }, { 150,-563 }, { 151,-563 }, { 152,-563 },
{ 153,-563 }, { 154,-563 }, { 155,-563 }, { 156,-563 }, { 157,-563 },
{ 158,-563 }, { 159,-563 }, { 160,-563 }, { 161,-563 }, { 162,-563 },
{ 163,-563 }, { 164,-563 }, { 165,-563 }, { 166,-563 }, { 167,-563 },
{ 168,-563 }, { 169,-563 }, { 170,-563 }, { 171,-563 }, { 172,-563 },
{ 173,-563 }, { 174,-563 }, { 175,-563 }, { 176,-563 }, { 177,-563 },
{ 178,-563 }, { 179,-563 }, { 180,-563 }, { 181,-563 }, { 182,-563 },
{ 183,-563 }, { 184,-563 }, { 185,-563 }, { 186,-563 }, { 187,-563 },
{ 188,-563 }, { 189,-563 }, { 190,-563 }, { 191,-563 }, { 192,-563 },
{ 193,-563 }, { 194,-563 }, { 195,-563 }, { 196,-563 }, { 197,-563 },
{ 198,-563 }, { 199,-563 }, { 200,-563 }, { 201,-563 }, { 202,-563 },
{ 203,-563 }, { 204,-563 }, { 205,-563 }, { 206,-563 }, { 207,-563 },
{ 208,-563 }, { 209,-563 }, { 210,-563 }, { 211,-563 }, { 212,-563 },
{ 213,-563 }, { 214,-563 }, { 215,-563 }, { 216,-563 }, { 217,-563 },
{ 218,-563 }, { 219,-563 }, { 220,-563 }, { 221,-563 }, { 222,-563 },
{ 223,-563 }, { 224,-563 }, { 225,-563 }, { 226,-563 }, { 227,-563 },
{ 228,-563 }, { 229,-563 }, { 230,-563 }, { 231,-563 }, { 232,-563 },
{ 233,-563 }, { 234,-563 }, { 235,-563 }, { 236,-563 }, { 237,-563 },
{ 238,-563 }, { 239,-563 }, { 240,-563 }, { 241,-563 }, { 242,-563 },
{ 243,-563 }, { 244,-563 }, { 245,-563 }, { 246,-563 }, { 247,-563 },
{ 248,-563 }, { 249,-563 }, { 250,-563 }, { 251,-563 }, { 252,-563 },
{ 253,-563 }, { 254,-563 }, { 255,-563 }, { 256,-563 }, { 0, 22 },
{ 0,9570 }, { 1,-5039 }, { 2,-5039 }, { 3,-5039 }, { 4,-5039 },
{ 5,-5039 }, { 6,-5039 }, { 7,-5039 }, { 8,-5039 }, { 9,-4781 },
{ 10,-12180 }, { 11,-5039 }, { 12,-4781 }, { 13,-12180 }, { 14,-5039 },
{ 15,-5039 }, { 16,-5039 }, { 17,-5039 }, { 18,-5039 }, { 19,-5039 },
{ 20,-5039 }, { 21,-5039 }, { 22,-5039 }, { 23,-5039 }, { 24,-5039 },
{ 25,-5039 }, { 26,-5039 }, { 27,-5039 }, { 28,-5039 }, { 29,-5039 },
{ 30,-5039 }, { 31,-5039 }, { 32,-4781 }, { 33,-5039 }, { 34,-5039 },
{ 35,-5039 }, { 36,-5039 }, { 37,-5039 }, { 38,-5039 }, { 39,-5039 },
{ 40,-5039 }, { 41,-5039 }, { 42,-5039 }, { 43,-5039 }, { 44,-5039 },
{ 45, 0 }, { 46,-5039 }, { 47,-5039 }, { 48,-5039 }, { 49,-5039 },
{ 50,-5039 }, { 51,-5039 }, { 52,-5039 }, { 53,-5039 }, { 54,-5039 },
{ 55,-5039 }, { 56,-5039 }, { 57,-5039 }, { 58,-5039 }, { 59,-5039 },
{ 60,-5039 }, { 61,-5039 }, { 62,-5039 }, { 63,-5039 }, { 64,-5039 },
{ 65,-5039 }, { 66,-5039 }, { 67,-5039 }, { 68,-5039 }, { 69,-5039 },
{ 70,-5039 }, { 71,-5039 }, { 72,-5039 }, { 73,-5039 }, { 74,-5039 },
{ 75,-5039 }, { 76,-5039 }, { 77,-5039 }, { 78,-5039 }, { 79,-5039 },
{ 80,-5039 }, { 81,-5039 }, { 82,-5039 }, { 83,-5039 }, { 84,-5039 },
{ 85,-5039 }, { 86,-5039 }, { 87,-5039 }, { 88,-5039 }, { 89,-5039 },
{ 90,-5039 }, { 91,-5039 }, { 92,-5039 }, { 93,-5039 }, { 94,-5039 },
{ 95,-5039 }, { 96,-5039 }, { 97,-5039 }, { 98,-5039 }, { 99,-5039 },
{ 100,-5039 }, { 101,-5039 }, { 102,-5039 }, { 103,-5039 }, { 104,-5039 },
{ 105,-5039 }, { 106,-5039 }, { 107,-5039 }, { 108,-5039 }, { 109,-5039 },
{ 110,-5039 }, { 111,-5039 }, { 112,-5039 }, { 113,-5039 }, { 114,-5039 },
{ 115,-5039 }, { 116,-5039 }, { 117,-5039 }, { 118,-5039 }, { 119,-5039 },
{ 120,-5039 }, { 121,-5039 }, { 122,-5039 }, { 123,-5039 }, { 124,-5039 },
{ 125,-5039 }, { 126,-5039 }, { 127,-5039 }, { 128,-5039 }, { 129,-5039 },
{ 130,-5039 }, { 131,-5039 }, { 132,-5039 }, { 133,-5039 }, { 134,-5039 },
{ 135,-5039 }, { 136,-5039 }, { 137,-5039 }, { 138,-5039 }, { 139,-5039 },
{ 140,-5039 }, { 141,-5039 }, { 142,-5039 }, { 143,-5039 }, { 144,-5039 },
{ 145,-5039 }, { 146,-5039 }, { 147,-5039 }, { 148,-5039 }, { 149,-5039 },
{ 150,-5039 }, { 151,-5039 }, { 152,-5039 }, { 153,-5039 }, { 154,-5039 },
{ 155,-5039 }, { 156,-5039 }, { 157,-5039 }, { 158,-5039 }, { 159,-5039 },
{ 160,-5039 }, { 161,-5039 }, { 162,-5039 }, { 163,-5039 }, { 164,-5039 },
{ 165,-5039 }, { 166,-5039 }, { 167,-5039 }, { 168,-5039 }, { 169,-5039 },
{ 170,-5039 }, { 171,-5039 }, { 172,-5039 }, { 173,-5039 }, { 174,-5039 },
{ 175,-5039 }, { 176,-5039 }, { 177,-5039 }, { 178,-5039 }, { 179,-5039 },
{ 180,-5039 }, { 181,-5039 }, { 182,-5039 }, { 183,-5039 }, { 184,-5039 },
{ 185,-5039 }, { 186,-5039 }, { 187,-5039 }, { 188,-5039 }, { 189,-5039 },
{ 190,-5039 }, { 191,-5039 }, { 192,-5039 }, { 193,-5039 }, { 194,-5039 },
{ 195,-5039 }, { 196,-5039 }, { 197,-5039 }, { 198,-5039 }, { 199,-5039 },
{ 200,-5039 }, { 201,-5039 }, { 202,-5039 }, { 203,-5039 }, { 204,-5039 },
{ 205,-5039 }, { 206,-5039 }, { 207,-5039 }, { 208,-5039 }, { 209,-5039 },
{ 210,-5039 }, { 211,-5039 }, { 212,-5039 }, { 213,-5039 }, { 214,-5039 },
{ 215,-5039 }, { 216,-5039 }, { 217,-5039 }, { 218,-5039 }, { 219,-5039 },
{ 220,-5039 }, { 221,-5039 }, { 222,-5039 }, { 223,-5039 }, { 224,-5039 },
{ 225,-5039 }, { 226,-5039 }, { 227,-5039 }, { 228,-5039 }, { 229,-5039 },
{ 230,-5039 }, { 231,-5039 }, { 232,-5039 }, { 233,-5039 }, { 234,-5039 },
{ 235,-5039 }, { 236,-5039 }, { 237,-5039 }, { 238,-5039 }, { 239,-5039 },
{ 240,-5039 }, { 241,-5039 }, { 242,-5039 }, { 243,-5039 }, { 244,-5039 },
{ 245,-5039 }, { 246,-5039 }, { 247,-5039 }, { 248,-5039 }, { 249,-5039 },
{ 250,-5039 }, { 251,-5039 }, { 252,-5039 }, { 253,-5039 }, { 254,-5039 },
{ 255,-5039 }, { 256,-5039 }, { 0, 37 }, { 0,9312 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 37 }, { 0,9289 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 48,2107 }, { 49,2107 }, { 50,2107 }, { 51,2107 },
{ 52,2107 }, { 53,2107 }, { 54,2107 }, { 55,2107 }, { 56,2107 },
{ 57,2107 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2107 }, { 66,2107 },
{ 67,2107 }, { 68,2107 }, { 69,2107 }, { 70,2107 }, { 48,-19314 },
{ 49,-19314 }, { 50,-19314 }, { 51,-19314 }, { 52,-19314 }, { 53,-19314 },
{ 54,-19314 }, { 55,-19314 }, { 56,-19314 }, { 57,-19314 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 65,-19314 }, { 66,-19314 }, { 67,-19314 }, { 68,-19314 },
{ 69,-19314 }, { 70,-19314 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 97,2107 }, { 98,2107 }, { 99,2107 }, { 100,2107 }, { 101,2107 },
{ 102,2107 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-19314 }, { 98,-19314 },
{ 99,-19314 }, { 100,-19314 }, { 101,-19314 }, { 102,-19314 }, { 0, 24 },
{ 0,9185 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 },
{ 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 258 },
{ 10, 516 }, { 11, 0 }, { 12, 258 }, { 13, 516 }, { 14, 0 },
{ 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 },
{ 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 },
{ 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 },
{ 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 }, { 34, 0 },
{ 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 },
{ 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 },
{ 45, 563 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 },
{ 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
{ 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 },
{ 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
{ 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 },
{ 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 },
{ 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 },
{ 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 },
{ 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 },
{ 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 },
{ 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 },
{ 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 },
{ 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 },
{ 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 },
{ 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 },
{ 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 },
{ 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 },
{ 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 },
{ 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 },
{ 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 },
{ 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 },
{ 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 },
{ 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 },
{ 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 },
{ 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 },
{ 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 },
{ 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 },
{ 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 },
{ 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 },
{ 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 },
{ 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 },
{ 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 },
{ 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 },
{ 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 },
{ 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 },
{ 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 },
{ 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 },
{ 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 },
{ 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 },
{ 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 },
{ 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 },
{ 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 },
{ 255, 0 }, { 256, 0 }, { 0, 24 }, { 0,8927 }, { 1,-258 },
{ 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 }, { 6,-258 },
{ 7,-258 }, { 8,-258 }, { 9, 0 }, { 10, 258 }, { 11,-258 },
{ 12, 0 }, { 13, 258 }, { 14,-258 }, { 15,-258 }, { 16,-258 },
{ 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 }, { 21,-258 },
{ 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 }, { 26,-258 },
{ 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 }, { 31,-258 },
{ 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 }, { 36,-258 },
{ 37,-258 }, { 38,-258 }, { 39,-258 }, { 40,-258 }, { 41,-258 },
{ 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 305 }, { 46,-258 },
{ 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 }, { 51,-258 },
{ 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 }, { 56,-258 },
{ 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 }, { 61,-258 },
{ 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 }, { 66,-258 },
{ 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 }, { 71,-258 },
{ 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 }, { 76,-258 },
{ 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 }, { 81,-258 },
{ 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 }, { 86,-258 },
{ 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 }, { 91,-258 },
{ 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 }, { 96,-258 },
{ 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 }, { 101,-258 },
{ 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 }, { 106,-258 },
{ 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 }, { 111,-258 },
{ 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 }, { 116,-258 },
{ 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 }, { 121,-258 },
{ 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 }, { 126,-258 },
{ 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 }, { 131,-258 },
{ 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 }, { 136,-258 },
{ 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 }, { 141,-258 },
{ 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 }, { 146,-258 },
{ 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 }, { 151,-258 },
{ 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 }, { 156,-258 },
{ 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 }, { 161,-258 },
{ 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 }, { 166,-258 },
{ 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 }, { 171,-258 },
{ 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 }, { 176,-258 },
{ 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 }, { 181,-258 },
{ 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 }, { 186,-258 },
{ 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 }, { 191,-258 },
{ 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 }, { 196,-258 },
{ 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 }, { 201,-258 },
{ 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 }, { 206,-258 },
{ 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 }, { 211,-258 },
{ 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 }, { 216,-258 },
{ 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 }, { 221,-258 },
{ 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 }, { 226,-258 },
{ 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 }, { 231,-258 },
{ 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 }, { 236,-258 },
{ 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 }, { 241,-258 },
{ 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 }, { 246,-258 },
{ 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 }, { 251,-258 },
{ 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 }, { 256,-258 },
{ 0, 24 }, { 0,8669 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,-8952 }, { 10,-8952 }, { 0, 0 }, { 12,-8952 }, { 13,-8952 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-8952 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,-20790 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-20726 }, { 0, 24 }, { 0,8622 }, { 1,-563 },
{ 2,-563 }, { 3,-563 }, { 4,-563 }, { 5,-563 }, { 6,-563 },
{ 7,-563 }, { 8,-563 }, { 9,-305 }, { 10, -47 }, { 11,-563 },
{ 12,-305 }, { 13, -47 }, { 14,-563 }, { 15,-563 }, { 16,-563 },
{ 17,-563 }, { 18,-563 }, { 19,-563 }, { 20,-563 }, { 21,-563 },
{ 22,-563 }, { 23,-563 }, { 24,-563 }, { 25,-563 }, { 26,-563 },
{ 27,-563 }, { 28,-563 }, { 29,-563 }, { 30,-563 }, { 31,-563 },
{ 32,-305 }, { 33,-563 }, { 34,-563 }, { 35,-563 }, { 36,-563 },
{ 37,-563 }, { 38,-563 }, { 39,-563 }, { 40,-563 }, { 41,-563 },
{ 42,-563 }, { 43,-563 }, { 44,-563 }, { 45,1521 }, { 46,-563 },
{ 47,-563 }, { 48,-563 }, { 49,-563 }, { 50,-563 }, { 51,-563 },
{ 52,-563 }, { 53,-563 }, { 54,-563 }, { 55,-563 }, { 56,-563 },
{ 57,-563 }, { 58,-563 }, { 59,-563 }, { 60,-563 }, { 61,-563 },
{ 62,-563 }, { 63,-563 }, { 64,-563 }, { 65,-563 }, { 66,-563 },
{ 67,-563 }, { 68,-563 }, { 69,-563 }, { 70,-563 }, { 71,-563 },
{ 72,-563 }, { 73,-563 }, { 74,-563 }, { 75,-563 }, { 76,-563 },
{ 77,-563 }, { 78,-563 }, { 79,-563 }, { 80,-563 }, { 81,-563 },
{ 82,-563 }, { 83,-563 }, { 84,-563 }, { 85,-563 }, { 86,-563 },
{ 87,-563 }, { 88,-563 }, { 89,-563 }, { 90,-563 }, { 91,-563 },
{ 92,-563 }, { 93,-563 }, { 94,-563 }, { 95,-563 }, { 96,-563 },
{ 97,-563 }, { 98,-563 }, { 99,-563 }, { 100,-563 }, { 101,-563 },
{ 102,-563 }, { 103,-563 }, { 104,-563 }, { 105,-563 }, { 106,-563 },
{ 107,-563 }, { 108,-563 }, { 109,-563 }, { 110,-563 }, { 111,-563 },
{ 112,-563 }, { 113,-563 }, { 114,-563 }, { 115,-563 }, { 116,-563 },
{ 117,-563 }, { 118,-563 }, { 119,-563 }, { 120,-563 }, { 121,-563 },
{ 122,-563 }, { 123,-563 }, { 124,-563 }, { 125,-563 }, { 126,-563 },
{ 127,-563 }, { 128,-563 }, { 129,-563 }, { 130,-563 }, { 131,-563 },
{ 132,-563 }, { 133,-563 }, { 134,-563 }, { 135,-563 }, { 136,-563 },
{ 137,-563 }, { 138,-563 }, { 139,-563 }, { 140,-563 }, { 141,-563 },
{ 142,-563 }, { 143,-563 }, { 144,-563 }, { 145,-563 }, { 146,-563 },
{ 147,-563 }, { 148,-563 }, { 149,-563 }, { 150,-563 }, { 151,-563 },
{ 152,-563 }, { 153,-563 }, { 154,-563 }, { 155,-563 }, { 156,-563 },
{ 157,-563 }, { 158,-563 }, { 159,-563 }, { 160,-563 }, { 161,-563 },
{ 162,-563 }, { 163,-563 }, { 164,-563 }, { 165,-563 }, { 166,-563 },
{ 167,-563 }, { 168,-563 }, { 169,-563 }, { 170,-563 }, { 171,-563 },
{ 172,-563 }, { 173,-563 }, { 174,-563 }, { 175,-563 }, { 176,-563 },
{ 177,-563 }, { 178,-563 }, { 179,-563 }, { 180,-563 }, { 181,-563 },
{ 182,-563 }, { 183,-563 }, { 184,-563 }, { 185,-563 }, { 186,-563 },
{ 187,-563 }, { 188,-563 }, { 189,-563 }, { 190,-563 }, { 191,-563 },
{ 192,-563 }, { 193,-563 }, { 194,-563 }, { 195,-563 }, { 196,-563 },
{ 197,-563 }, { 198,-563 }, { 199,-563 }, { 200,-563 }, { 201,-563 },
{ 202,-563 }, { 203,-563 }, { 204,-563 }, { 205,-563 }, { 206,-563 },
{ 207,-563 }, { 208,-563 }, { 209,-563 }, { 210,-563 }, { 211,-563 },
{ 212,-563 }, { 213,-563 }, { 214,-563 }, { 215,-563 }, { 216,-563 },
{ 217,-563 }, { 218,-563 }, { 219,-563 }, { 220,-563 }, { 221,-563 },
{ 222,-563 }, { 223,-563 }, { 224,-563 }, { 225,-563 }, { 226,-563 },
{ 227,-563 }, { 228,-563 }, { 229,-563 }, { 230,-563 }, { 231,-563 },
{ 232,-563 }, { 233,-563 }, { 234,-563 }, { 235,-563 }, { 236,-563 },
{ 237,-563 }, { 238,-563 }, { 239,-563 }, { 240,-563 }, { 241,-563 },
{ 242,-563 }, { 243,-563 }, { 244,-563 }, { 245,-563 }, { 246,-563 },
{ 247,-563 }, { 248,-563 }, { 249,-563 }, { 250,-563 }, { 251,-563 },
{ 252,-563 }, { 253,-563 }, { 254,-563 }, { 255,-563 }, { 256,-563 },
{ 0, 24 }, { 0,8364 }, { 1,-5086 }, { 2,-5086 }, { 3,-5086 },
{ 4,-5086 }, { 5,-5086 }, { 6,-5086 }, { 7,-5086 }, { 8,-5086 },
{ 9,-4828 }, { 10,-12170 }, { 11,-5086 }, { 12,-4828 }, { 13,-12170 },
{ 14,-5086 }, { 15,-5086 }, { 16,-5086 }, { 17,-5086 }, { 18,-5086 },
{ 19,-5086 }, { 20,-5086 }, { 21,-5086 }, { 22,-5086 }, { 23,-5086 },
{ 24,-5086 }, { 25,-5086 }, { 26,-5086 }, { 27,-5086 }, { 28,-5086 },
{ 29,-5086 }, { 30,-5086 }, { 31,-5086 }, { 32,-4828 }, { 33,-5086 },
{ 34,-5086 }, { 35,-5086 }, { 36,-5086 }, { 37,-5086 }, { 38,-5086 },
{ 39,-5086 }, { 40,-5086 }, { 41,-5086 }, { 42,-5086 }, { 43,-5086 },
{ 44,-5086 }, { 45, 0 }, { 46,-5086 }, { 47,-5086 }, { 48,-5086 },
{ 49,-5086 }, { 50,-5086 }, { 51,-5086 }, { 52,-5086 }, { 53,-5086 },
{ 54,-5086 }, { 55,-5086 }, { 56,-5086 }, { 57,-5086 }, { 58,-5086 },
{ 59,-5086 }, { 60,-5086 }, { 61,-5086 }, { 62,-5086 }, { 63,-5086 },
{ 64,-5086 }, { 65,-5086 }, { 66,-5086 }, { 67,-5086 }, { 68,-5086 },
{ 69,-5086 }, { 70,-5086 }, { 71,-5086 }, { 72,-5086 }, { 73,-5086 },
{ 74,-5086 }, { 75,-5086 }, { 76,-5086 }, { 77,-5086 }, { 78,-5086 },
{ 79,-5086 }, { 80,-5086 }, { 81,-5086 }, { 82,-5086 }, { 83,-5086 },
{ 84,-5086 }, { 85,-5086 }, { 86,-5086 }, { 87,-5086 }, { 88,-5086 },
{ 89,-5086 }, { 90,-5086 }, { 91,-5086 }, { 92,-5086 }, { 93,-5086 },
{ 94,-5086 }, { 95,-5086 }, { 96,-5086 }, { 97,-5086 }, { 98,-5086 },
{ 99,-5086 }, { 100,-5086 }, { 101,-5086 }, { 102,-5086 }, { 103,-5086 },
{ 104,-5086 }, { 105,-5086 }, { 106,-5086 }, { 107,-5086 }, { 108,-5086 },
{ 109,-5086 }, { 110,-5086 }, { 111,-5086 }, { 112,-5086 }, { 113,-5086 },
{ 114,-5086 }, { 115,-5086 }, { 116,-5086 }, { 117,-5086 }, { 118,-5086 },
{ 119,-5086 }, { 120,-5086 }, { 121,-5086 }, { 122,-5086 }, { 123,-5086 },
{ 124,-5086 }, { 125,-5086 }, { 126,-5086 }, { 127,-5086 }, { 128,-5086 },
{ 129,-5086 }, { 130,-5086 }, { 131,-5086 }, { 132,-5086 }, { 133,-5086 },
{ 134,-5086 }, { 135,-5086 }, { 136,-5086 }, { 137,-5086 }, { 138,-5086 },
{ 139,-5086 }, { 140,-5086 }, { 141,-5086 }, { 142,-5086 }, { 143,-5086 },
{ 144,-5086 }, { 145,-5086 }, { 146,-5086 }, { 147,-5086 }, { 148,-5086 },
{ 149,-5086 }, { 150,-5086 }, { 151,-5086 }, { 152,-5086 }, { 153,-5086 },
{ 154,-5086 }, { 155,-5086 }, { 156,-5086 }, { 157,-5086 }, { 158,-5086 },
{ 159,-5086 }, { 160,-5086 }, { 161,-5086 }, { 162,-5086 }, { 163,-5086 },
{ 164,-5086 }, { 165,-5086 }, { 166,-5086 }, { 167,-5086 }, { 168,-5086 },
{ 169,-5086 }, { 170,-5086 }, { 171,-5086 }, { 172,-5086 }, { 173,-5086 },
{ 174,-5086 }, { 175,-5086 }, { 176,-5086 }, { 177,-5086 }, { 178,-5086 },
{ 179,-5086 }, { 180,-5086 }, { 181,-5086 }, { 182,-5086 }, { 183,-5086 },
{ 184,-5086 }, { 185,-5086 }, { 186,-5086 }, { 187,-5086 }, { 188,-5086 },
{ 189,-5086 }, { 190,-5086 }, { 191,-5086 }, { 192,-5086 }, { 193,-5086 },
{ 194,-5086 }, { 195,-5086 }, { 196,-5086 }, { 197,-5086 }, { 198,-5086 },
{ 199,-5086 }, { 200,-5086 }, { 201,-5086 }, { 202,-5086 }, { 203,-5086 },
{ 204,-5086 }, { 205,-5086 }, { 206,-5086 }, { 207,-5086 }, { 208,-5086 },
{ 209,-5086 }, { 210,-5086 }, { 211,-5086 }, { 212,-5086 }, { 213,-5086 },
{ 214,-5086 }, { 215,-5086 }, { 216,-5086 }, { 217,-5086 }, { 218,-5086 },
{ 219,-5086 }, { 220,-5086 }, { 221,-5086 }, { 222,-5086 }, { 223,-5086 },
{ 224,-5086 }, { 225,-5086 }, { 226,-5086 }, { 227,-5086 }, { 228,-5086 },
{ 229,-5086 }, { 230,-5086 }, { 231,-5086 }, { 232,-5086 }, { 233,-5086 },
{ 234,-5086 }, { 235,-5086 }, { 236,-5086 }, { 237,-5086 }, { 238,-5086 },
{ 239,-5086 }, { 240,-5086 }, { 241,-5086 }, { 242,-5086 }, { 243,-5086 },
{ 244,-5086 }, { 245,-5086 }, { 246,-5086 }, { 247,-5086 }, { 248,-5086 },
{ 249,-5086 }, { 250,-5086 }, { 251,-5086 }, { 252,-5086 }, { 253,-5086 },
{ 254,-5086 }, { 255,-5086 }, { 256,-5086 }, { 0, 37 }, { 0,8106 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 37 }, { 0,8083 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48,1263 }, { 49,1263 }, { 50,1263 },
{ 51,1263 }, { 52,1263 }, { 53,1263 }, { 54,1263 }, { 55,1263 },
{ 56,1263 }, { 57,1263 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,1263 },
{ 66,1263 }, { 67,1263 }, { 68,1263 }, { 69,1263 }, { 70,1263 },
{ 48,-20508 }, { 49,-20508 }, { 50,-20508 }, { 51,-20508 }, { 52,-20508 },
{ 53,-20508 }, { 54,-20508 }, { 55,-20508 }, { 56,-20508 }, { 57,-20508 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,-20508 }, { 66,-20508 }, { 67,-20508 },
{ 68,-20508 }, { 69,-20508 }, { 70,-20508 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 97,1263 }, { 98,1263 }, { 99,1263 }, { 100,1263 },
{ 101,1263 }, { 102,1263 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-20508 },
{ 98,-20508 }, { 99,-20508 }, { 100,-20508 }, { 101,-20508 }, { 102,-20508 },
{ 0, 9 }, { 0,7979 }, { 1,-4570 }, { 2,-4570 }, { 3,-4570 },
{ 4,-4570 }, { 5,-4570 }, { 6,-4570 }, { 7,-4570 }, { 8,-4570 },
{ 9,-4312 }, { 10,-4054 }, { 11,-4570 }, { 12,-4312 }, { 13,-4054 },
{ 14,-4570 }, { 15,-4570 }, { 16,-4570 }, { 17,-4570 }, { 18,-4570 },
{ 19,-4570 }, { 20,-4570 }, { 21,-4570 }, { 22,-4570 }, { 23,-4570 },
{ 24,-4570 }, { 25,-4570 }, { 26,-4570 }, { 27,-4570 }, { 28,-4570 },
{ 29,-4570 }, { 30,-4570 }, { 31,-4570 }, { 32,-4312 }, { 33,-4570 },
{ 34,-4570 }, { 35,-4570 }, { 36,-4570 }, { 37,-4570 }, { 38,-4570 },
{ 39,-4570 }, { 40,-4570 }, { 41,-4570 }, { 42,-4570 }, { 43,-4570 },
{ 44,-4570 }, { 45, 0 }, { 46,-4570 }, { 47,-4570 }, { 48,-4570 },
{ 49,-4570 }, { 50,-4570 }, { 51,-4570 }, { 52,-4570 }, { 53,-4570 },
{ 54,-4570 }, { 55,-4570 }, { 56,-4570 }, { 57,-4570 }, { 58,-4570 },
{ 59,-4570 }, { 60,-4570 }, { 61,-4570 }, { 62,-4570 }, { 63,-4570 },
{ 64,-4570 }, { 65,-4570 }, { 66,-4570 }, { 67,-4570 }, { 68,-4570 },
{ 69,-4570 }, { 70,-4570 }, { 71,-4570 }, { 72,-4570 }, { 73,-4570 },
{ 74,-4570 }, { 75,-4570 }, { 76,-4570 }, { 77,-4570 }, { 78,-4570 },
{ 79,-4570 }, { 80,-4570 }, { 81,-4570 }, { 82,-4570 }, { 83,-4570 },
{ 84,-4570 }, { 85,-4570 }, { 86,-4570 }, { 87,-4570 }, { 88,-4570 },
{ 89,-4570 }, { 90,-4570 }, { 91,-4570 }, { 92,-4570 }, { 93,-4570 },
{ 94,-4570 }, { 95,-4570 }, { 96,-4570 }, { 97,-4570 }, { 98,-4570 },
{ 99,-4570 }, { 100,-4570 }, { 101,-4570 }, { 102,-4570 }, { 103,-4570 },
{ 104,-4570 }, { 105,-4570 }, { 106,-4570 }, { 107,-4570 }, { 108,-4570 },
{ 109,-4570 }, { 110,-4570 }, { 111,-4570 }, { 112,-4570 }, { 113,-4570 },
{ 114,-4570 }, { 115,-4570 }, { 116,-4570 }, { 117,-4570 }, { 118,-4570 },
{ 119,-4570 }, { 120,-4570 }, { 121,-4570 }, { 122,-4570 }, { 123,-4570 },
{ 124,-4570 }, { 125,-4570 }, { 126,-4570 }, { 127,-4570 }, { 128,-4570 },
{ 129,-4570 }, { 130,-4570 }, { 131,-4570 }, { 132,-4570 }, { 133,-4570 },
{ 134,-4570 }, { 135,-4570 }, { 136,-4570 }, { 137,-4570 }, { 138,-4570 },
{ 139,-4570 }, { 140,-4570 }, { 141,-4570 }, { 142,-4570 }, { 143,-4570 },
{ 144,-4570 }, { 145,-4570 }, { 146,-4570 }, { 147,-4570 }, { 148,-4570 },
{ 149,-4570 }, { 150,-4570 }, { 151,-4570 }, { 152,-4570 }, { 153,-4570 },
{ 154,-4570 }, { 155,-4570 }, { 156,-4570 }, { 157,-4570 }, { 158,-4570 },
{ 159,-4570 }, { 160,-4570 }, { 161,-4570 }, { 162,-4570 }, { 163,-4570 },
{ 164,-4570 }, { 165,-4570 }, { 166,-4570 }, { 167,-4570 }, { 168,-4570 },
{ 169,-4570 }, { 170,-4570 }, { 171,-4570 }, { 172,-4570 }, { 173,-4570 },
{ 174,-4570 }, { 175,-4570 }, { 176,-4570 }, { 177,-4570 }, { 178,-4570 },
{ 179,-4570 }, { 180,-4570 }, { 181,-4570 }, { 182,-4570 }, { 183,-4570 },
{ 184,-4570 }, { 185,-4570 }, { 186,-4570 }, { 187,-4570 }, { 188,-4570 },
{ 189,-4570 }, { 190,-4570 }, { 191,-4570 }, { 192,-4570 }, { 193,-4570 },
{ 194,-4570 }, { 195,-4570 }, { 196,-4570 }, { 197,-4570 }, { 198,-4570 },
{ 199,-4570 }, { 200,-4570 }, { 201,-4570 }, { 202,-4570 }, { 203,-4570 },
{ 204,-4570 }, { 205,-4570 }, { 206,-4570 }, { 207,-4570 }, { 208,-4570 },
{ 209,-4570 }, { 210,-4570 }, { 211,-4570 }, { 212,-4570 }, { 213,-4570 },
{ 214,-4570 }, { 215,-4570 }, { 216,-4570 }, { 217,-4570 }, { 218,-4570 },
{ 219,-4570 }, { 220,-4570 }, { 221,-4570 }, { 222,-4570 }, { 223,-4570 },
{ 224,-4570 }, { 225,-4570 }, { 226,-4570 }, { 227,-4570 }, { 228,-4570 },
{ 229,-4570 }, { 230,-4570 }, { 231,-4570 }, { 232,-4570 }, { 233,-4570 },
{ 234,-4570 }, { 235,-4570 }, { 236,-4570 }, { 237,-4570 }, { 238,-4570 },
{ 239,-4570 }, { 240,-4570 }, { 241,-4570 }, { 242,-4570 }, { 243,-4570 },
{ 244,-4570 }, { 245,-4570 }, { 246,-4570 }, { 247,-4570 }, { 248,-4570 },
{ 249,-4570 }, { 250,-4570 }, { 251,-4570 }, { 252,-4570 }, { 253,-4570 },
{ 254,-4570 }, { 255,-4570 }, { 256,-4570 }, { 0, 16 }, { 0,7721 },
{ 1,-3749 }, { 2,-3749 }, { 3,-3749 }, { 4,-3749 }, { 5,-3749 },
{ 6,-3749 }, { 7,-3749 }, { 8,-3749 }, { 9,-3491 }, { 10,-3233 },
{ 11,-3749 }, { 12,-3491 }, { 13,-3233 }, { 14,-3749 }, { 15,-3749 },
{ 16,-3749 }, { 17,-3749 }, { 18,-3749 }, { 19,-3749 }, { 20,-3749 },
{ 21,-3749 }, { 22,-3749 }, { 23,-3749 }, { 24,-3749 }, { 25,-3749 },
{ 26,-3749 }, { 27,-3749 }, { 28,-3749 }, { 29,-3749 }, { 30,-3749 },
{ 31,-3749 }, { 32,-3491 }, { 33,-3749 }, { 34,-3749 }, { 35,-3749 },
{ 36,-3749 }, { 37,-3749 }, { 38,-3749 }, { 39,-3749 }, { 40,-3749 },
{ 41,-3749 }, { 42,-3749 }, { 43,-3749 }, { 44,-3749 }, { 45, 0 },
{ 46,-3749 }, { 47,-3749 }, { 48,-3749 }, { 49,-3749 }, { 50,-3749 },
{ 51,-3749 }, { 52,-3749 }, { 53,-3749 }, { 54,-3749 }, { 55,-3749 },
{ 56,-3749 }, { 57,-3749 }, { 58,-3749 }, { 59,-3749 }, { 60,-3749 },
{ 61,-3749 }, { 62,-3749 }, { 63,-3749 }, { 64,-3749 }, { 65,-3749 },
{ 66,-3749 }, { 67,-3749 }, { 68,-3749 }, { 69,-3749 }, { 70,-3749 },
{ 71,-3749 }, { 72,-3749 }, { 73,-3749 }, { 74,-3749 }, { 75,-3749 },
{ 76,-3749 }, { 77,-3749 }, { 78,-3749 }, { 79,-3749 }, { 80,-3749 },
{ 81,-3749 }, { 82,-3749 }, { 83,-3749 }, { 84,-3749 }, { 85,-3749 },
{ 86,-3749 }, { 87,-3749 }, { 88,-3749 }, { 89,-3749 }, { 90,-3749 },
{ 91,-3749 }, { 92,-3749 }, { 93,-3749 }, { 94,-3749 }, { 95,-3749 },
{ 96,-3749 }, { 97,-3749 }, { 98,-3749 }, { 99,-3749 }, { 100,-3749 },
{ 101,-3749 }, { 102,-3749 }, { 103,-3749 }, { 104,-3749 }, { 105,-3749 },
{ 106,-3749 }, { 107,-3749 }, { 108,-3749 }, { 109,-3749 }, { 110,-3749 },
{ 111,-3749 }, { 112,-3749 }, { 113,-3749 }, { 114,-3749 }, { 115,-3749 },
{ 116,-3749 }, { 117,-3749 }, { 118,-3749 }, { 119,-3749 }, { 120,-3749 },
{ 121,-3749 }, { 122,-3749 }, { 123,-3749 }, { 124,-3749 }, { 125,-3749 },
{ 126,-3749 }, { 127,-3749 }, { 128,-3749 }, { 129,-3749 }, { 130,-3749 },
{ 131,-3749 }, { 132,-3749 }, { 133,-3749 }, { 134,-3749 }, { 135,-3749 },
{ 136,-3749 }, { 137,-3749 }, { 138,-3749 }, { 139,-3749 }, { 140,-3749 },
{ 141,-3749 }, { 142,-3749 }, { 143,-3749 }, { 144,-3749 }, { 145,-3749 },
{ 146,-3749 }, { 147,-3749 }, { 148,-3749 }, { 149,-3749 }, { 150,-3749 },
{ 151,-3749 }, { 152,-3749 }, { 153,-3749 }, { 154,-3749 }, { 155,-3749 },
{ 156,-3749 }, { 157,-3749 }, { 158,-3749 }, { 159,-3749 }, { 160,-3749 },
{ 161,-3749 }, { 162,-3749 }, { 163,-3749 }, { 164,-3749 }, { 165,-3749 },
{ 166,-3749 }, { 167,-3749 }, { 168,-3749 }, { 169,-3749 }, { 170,-3749 },
{ 171,-3749 }, { 172,-3749 }, { 173,-3749 }, { 174,-3749 }, { 175,-3749 },
{ 176,-3749 }, { 177,-3749 }, { 178,-3749 }, { 179,-3749 }, { 180,-3749 },
{ 181,-3749 }, { 182,-3749 }, { 183,-3749 }, { 184,-3749 }, { 185,-3749 },
{ 186,-3749 }, { 187,-3749 }, { 188,-3749 }, { 189,-3749 }, { 190,-3749 },
{ 191,-3749 }, { 192,-3749 }, { 193,-3749 }, { 194,-3749 }, { 195,-3749 },
{ 196,-3749 }, { 197,-3749 }, { 198,-3749 }, { 199,-3749 }, { 200,-3749 },
{ 201,-3749 }, { 202,-3749 }, { 203,-3749 }, { 204,-3749 }, { 205,-3749 },
{ 206,-3749 }, { 207,-3749 }, { 208,-3749 }, { 209,-3749 }, { 210,-3749 },
{ 211,-3749 }, { 212,-3749 }, { 213,-3749 }, { 214,-3749 }, { 215,-3749 },
{ 216,-3749 }, { 217,-3749 }, { 218,-3749 }, { 219,-3749 }, { 220,-3749 },
{ 221,-3749 }, { 222,-3749 }, { 223,-3749 }, { 224,-3749 }, { 225,-3749 },
{ 226,-3749 }, { 227,-3749 }, { 228,-3749 }, { 229,-3749 }, { 230,-3749 },
{ 231,-3749 }, { 232,-3749 }, { 233,-3749 }, { 234,-3749 }, { 235,-3749 },
{ 236,-3749 }, { 237,-3749 }, { 238,-3749 }, { 239,-3749 }, { 240,-3749 },
{ 241,-3749 }, { 242,-3749 }, { 243,-3749 }, { 244,-3749 }, { 245,-3749 },
{ 246,-3749 }, { 247,-3749 }, { 248,-3749 }, { 249,-3749 }, { 250,-3749 },
{ 251,-3749 }, { 252,-3749 }, { 253,-3749 }, { 254,-3749 }, { 255,-3749 },
{ 256,-3749 }, { 0, 22 }, { 0,7463 }, { 1,-2928 }, { 2,-2928 },
{ 3,-2928 }, { 4,-2928 }, { 5,-2928 }, { 6,-2928 }, { 7,-2928 },
{ 8,-2928 }, { 9,-2670 }, { 10,-2412 }, { 11,-2928 }, { 12,-2670 },
{ 13,-2412 }, { 14,-2928 }, { 15,-2928 }, { 16,-2928 }, { 17,-2928 },
{ 18,-2928 }, { 19,-2928 }, { 20,-2928 }, { 21,-2928 }, { 22,-2928 },
{ 23,-2928 }, { 24,-2928 }, { 25,-2928 }, { 26,-2928 }, { 27,-2928 },
{ 28,-2928 }, { 29,-2928 }, { 30,-2928 }, { 31,-2928 }, { 32,-2670 },
{ 33,-2928 }, { 34,-2928 }, { 35,-2928 }, { 36,-2928 }, { 37,-2928 },
{ 38,-2928 }, { 39,-2928 }, { 40,-2928 }, { 41,-2928 }, { 42,-2928 },
{ 43,-2928 }, { 44,-2928 }, { 45, 0 }, { 46,-2928 }, { 47,-2928 },
{ 48,-2928 }, { 49,-2928 }, { 50,-2928 }, { 51,-2928 }, { 52,-2928 },
{ 53,-2928 }, { 54,-2928 }, { 55,-2928 }, { 56,-2928 }, { 57,-2928 },
{ 58,-2928 }, { 59,-2928 }, { 60,-2928 }, { 61,-2928 }, { 62,-2928 },
{ 63,-2928 }, { 64,-2928 }, { 65,-2928 }, { 66,-2928 }, { 67,-2928 },
{ 68,-2928 }, { 69,-2928 }, { 70,-2928 }, { 71,-2928 }, { 72,-2928 },
{ 73,-2928 }, { 74,-2928 }, { 75,-2928 }, { 76,-2928 }, { 77,-2928 },
{ 78,-2928 }, { 79,-2928 }, { 80,-2928 }, { 81,-2928 }, { 82,-2928 },
{ 83,-2928 }, { 84,-2928 }, { 85,-2928 }, { 86,-2928 }, { 87,-2928 },
{ 88,-2928 }, { 89,-2928 }, { 90,-2928 }, { 91,-2928 }, { 92,-2928 },
{ 93,-2928 }, { 94,-2928 }, { 95,-2928 }, { 96,-2928 }, { 97,-2928 },
{ 98,-2928 }, { 99,-2928 }, { 100,-2928 }, { 101,-2928 }, { 102,-2928 },
{ 103,-2928 }, { 104,-2928 }, { 105,-2928 }, { 106,-2928 }, { 107,-2928 },
{ 108,-2928 }, { 109,-2928 }, { 110,-2928 }, { 111,-2928 }, { 112,-2928 },
{ 113,-2928 }, { 114,-2928 }, { 115,-2928 }, { 116,-2928 }, { 117,-2928 },
{ 118,-2928 }, { 119,-2928 }, { 120,-2928 }, { 121,-2928 }, { 122,-2928 },
{ 123,-2928 }, { 124,-2928 }, { 125,-2928 }, { 126,-2928 }, { 127,-2928 },
{ 128,-2928 }, { 129,-2928 }, { 130,-2928 }, { 131,-2928 }, { 132,-2928 },
{ 133,-2928 }, { 134,-2928 }, { 135,-2928 }, { 136,-2928 }, { 137,-2928 },
{ 138,-2928 }, { 139,-2928 }, { 140,-2928 }, { 141,-2928 }, { 142,-2928 },
{ 143,-2928 }, { 144,-2928 }, { 145,-2928 }, { 146,-2928 }, { 147,-2928 },
{ 148,-2928 }, { 149,-2928 }, { 150,-2928 }, { 151,-2928 }, { 152,-2928 },
{ 153,-2928 }, { 154,-2928 }, { 155,-2928 }, { 156,-2928 }, { 157,-2928 },
{ 158,-2928 }, { 159,-2928 }, { 160,-2928 }, { 161,-2928 }, { 162,-2928 },
{ 163,-2928 }, { 164,-2928 }, { 165,-2928 }, { 166,-2928 }, { 167,-2928 },
{ 168,-2928 }, { 169,-2928 }, { 170,-2928 }, { 171,-2928 }, { 172,-2928 },
{ 173,-2928 }, { 174,-2928 }, { 175,-2928 }, { 176,-2928 }, { 177,-2928 },
{ 178,-2928 }, { 179,-2928 }, { 180,-2928 }, { 181,-2928 }, { 182,-2928 },
{ 183,-2928 }, { 184,-2928 }, { 185,-2928 }, { 186,-2928 }, { 187,-2928 },
{ 188,-2928 }, { 189,-2928 }, { 190,-2928 }, { 191,-2928 }, { 192,-2928 },
{ 193,-2928 }, { 194,-2928 }, { 195,-2928 }, { 196,-2928 }, { 197,-2928 },
{ 198,-2928 }, { 199,-2928 }, { 200,-2928 }, { 201,-2928 }, { 202,-2928 },
{ 203,-2928 }, { 204,-2928 }, { 205,-2928 }, { 206,-2928 }, { 207,-2928 },
{ 208,-2928 }, { 209,-2928 }, { 210,-2928 }, { 211,-2928 }, { 212,-2928 },
{ 213,-2928 }, { 214,-2928 }, { 215,-2928 }, { 216,-2928 }, { 217,-2928 },
{ 218,-2928 }, { 219,-2928 }, { 220,-2928 }, { 221,-2928 }, { 222,-2928 },
{ 223,-2928 }, { 224,-2928 }, { 225,-2928 }, { 226,-2928 }, { 227,-2928 },
{ 228,-2928 }, { 229,-2928 }, { 230,-2928 }, { 231,-2928 }, { 232,-2928 },
{ 233,-2928 }, { 234,-2928 }, { 235,-2928 }, { 236,-2928 }, { 237,-2928 },
{ 238,-2928 }, { 239,-2928 }, { 240,-2928 }, { 241,-2928 }, { 242,-2928 },
{ 243,-2928 }, { 244,-2928 }, { 245,-2928 }, { 246,-2928 }, { 247,-2928 },
{ 248,-2928 }, { 249,-2928 }, { 250,-2928 }, { 251,-2928 }, { 252,-2928 },
{ 253,-2928 }, { 254,-2928 }, { 255,-2928 }, { 256,-2928 }, { 0, 37 },
{ 0,7205 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 385 }, { 49, 385 },
{ 50, 385 }, { 51, 385 }, { 52, 385 }, { 53, 385 }, { 54, 385 },
{ 55, 385 }, { 56, 385 }, { 57, 385 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 65, 385 }, { 66, 385 }, { 67, 385 }, { 68, 385 }, { 69, 385 },
{ 70, 385 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 97, 385 }, { 98, 385 }, { 99, 385 },
{ 100, 385 }, { 101, 385 }, { 102, 385 }, { 0, 24 }, { 0,7101 },
{ 1,-2084 }, { 2,-2084 }, { 3,-2084 }, { 4,-2084 }, { 5,-2084 },
{ 6,-2084 }, { 7,-2084 }, { 8,-2084 }, { 9,-1826 }, { 10,-1568 },
{ 11,-2084 }, { 12,-1826 }, { 13,-1568 }, { 14,-2084 }, { 15,-2084 },
{ 16,-2084 }, { 17,-2084 }, { 18,-2084 }, { 19,-2084 }, { 20,-2084 },
{ 21,-2084 }, { 22,-2084 }, { 23,-2084 }, { 24,-2084 }, { 25,-2084 },
{ 26,-2084 }, { 27,-2084 }, { 28,-2084 }, { 29,-2084 }, { 30,-2084 },
{ 31,-2084 }, { 32,-1826 }, { 33,-2084 }, { 34,-2084 }, { 35,-2084 },
{ 36,-2084 }, { 37,-2084 }, { 38,-2084 }, { 39,-2084 }, { 40,-2084 },
{ 41,-2084 }, { 42,-2084 }, { 43,-2084 }, { 44,-2084 }, { 45, 0 },
{ 46,-2084 }, { 47,-2084 }, { 48,-2084 }, { 49,-2084 }, { 50,-2084 },
{ 51,-2084 }, { 52,-2084 }, { 53,-2084 }, { 54,-2084 }, { 55,-2084 },
{ 56,-2084 }, { 57,-2084 }, { 58,-2084 }, { 59,-2084 }, { 60,-2084 },
{ 61,-2084 }, { 62,-2084 }, { 63,-2084 }, { 64,-2084 }, { 65,-2084 },
{ 66,-2084 }, { 67,-2084 }, { 68,-2084 }, { 69,-2084 }, { 70,-2084 },
{ 71,-2084 }, { 72,-2084 }, { 73,-2084 }, { 74,-2084 }, { 75,-2084 },
{ 76,-2084 }, { 77,-2084 }, { 78,-2084 }, { 79,-2084 }, { 80,-2084 },
{ 81,-2084 }, { 82,-2084 }, { 83,-2084 }, { 84,-2084 }, { 85,-2084 },
{ 86,-2084 }, { 87,-2084 }, { 88,-2084 }, { 89,-2084 }, { 90,-2084 },
{ 91,-2084 }, { 92,-2084 }, { 93,-2084 }, { 94,-2084 }, { 95,-2084 },
{ 96,-2084 }, { 97,-2084 }, { 98,-2084 }, { 99,-2084 }, { 100,-2084 },
{ 101,-2084 }, { 102,-2084 }, { 103,-2084 }, { 104,-2084 }, { 105,-2084 },
{ 106,-2084 }, { 107,-2084 }, { 108,-2084 }, { 109,-2084 }, { 110,-2084 },
{ 111,-2084 }, { 112,-2084 }, { 113,-2084 }, { 114,-2084 }, { 115,-2084 },
{ 116,-2084 }, { 117,-2084 }, { 118,-2084 }, { 119,-2084 }, { 120,-2084 },
{ 121,-2084 }, { 122,-2084 }, { 123,-2084 }, { 124,-2084 }, { 125,-2084 },
{ 126,-2084 }, { 127,-2084 }, { 128,-2084 }, { 129,-2084 }, { 130,-2084 },
{ 131,-2084 }, { 132,-2084 }, { 133,-2084 }, { 134,-2084 }, { 135,-2084 },
{ 136,-2084 }, { 137,-2084 }, { 138,-2084 }, { 139,-2084 }, { 140,-2084 },
{ 141,-2084 }, { 142,-2084 }, { 143,-2084 }, { 144,-2084 }, { 145,-2084 },
{ 146,-2084 }, { 147,-2084 }, { 148,-2084 }, { 149,-2084 }, { 150,-2084 },
{ 151,-2084 }, { 152,-2084 }, { 153,-2084 }, { 154,-2084 }, { 155,-2084 },
{ 156,-2084 }, { 157,-2084 }, { 158,-2084 }, { 159,-2084 }, { 160,-2084 },
{ 161,-2084 }, { 162,-2084 }, { 163,-2084 }, { 164,-2084 }, { 165,-2084 },
{ 166,-2084 }, { 167,-2084 }, { 168,-2084 }, { 169,-2084 }, { 170,-2084 },
{ 171,-2084 }, { 172,-2084 }, { 173,-2084 }, { 174,-2084 }, { 175,-2084 },
{ 176,-2084 }, { 177,-2084 }, { 178,-2084 }, { 179,-2084 }, { 180,-2084 },
{ 181,-2084 }, { 182,-2084 }, { 183,-2084 }, { 184,-2084 }, { 185,-2084 },
{ 186,-2084 }, { 187,-2084 }, { 188,-2084 }, { 189,-2084 }, { 190,-2084 },
{ 191,-2084 }, { 192,-2084 }, { 193,-2084 }, { 194,-2084 }, { 195,-2084 },
{ 196,-2084 }, { 197,-2084 }, { 198,-2084 }, { 199,-2084 }, { 200,-2084 },
{ 201,-2084 }, { 202,-2084 }, { 203,-2084 }, { 204,-2084 }, { 205,-2084 },
{ 206,-2084 }, { 207,-2084 }, { 208,-2084 }, { 209,-2084 }, { 210,-2084 },
{ 211,-2084 }, { 212,-2084 }, { 213,-2084 }, { 214,-2084 }, { 215,-2084 },
{ 216,-2084 }, { 217,-2084 }, { 218,-2084 }, { 219,-2084 }, { 220,-2084 },
{ 221,-2084 }, { 222,-2084 }, { 223,-2084 }, { 224,-2084 }, { 225,-2084 },
{ 226,-2084 }, { 227,-2084 }, { 228,-2084 }, { 229,-2084 }, { 230,-2084 },
{ 231,-2084 }, { 232,-2084 }, { 233,-2084 }, { 234,-2084 }, { 235,-2084 },
{ 236,-2084 }, { 237,-2084 }, { 238,-2084 }, { 239,-2084 }, { 240,-2084 },
{ 241,-2084 }, { 242,-2084 }, { 243,-2084 }, { 244,-2084 }, { 245,-2084 },
{ 246,-2084 }, { 247,-2084 }, { 248,-2084 }, { 249,-2084 }, { 250,-2084 },
{ 251,-2084 }, { 252,-2084 }, { 253,-2084 }, { 254,-2084 }, { 255,-2084 },
{ 256,-2084 }, { 0, 37 }, { 0,6843 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 37 },
{ 0,6820 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48, 136 }, { 49, 136 }, { 50, 136 }, { 51, 136 }, { 52, 136 },
{ 53, 136 }, { 54, 136 }, { 55, 136 }, { 56, 136 }, { 57, 136 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65, 136 }, { 66, 136 }, { 67, 136 },
{ 68, 136 }, { 69, 136 }, { 70, 136 }, { 48, 137 }, { 49, 137 },
{ 50, 137 }, { 51, 137 }, { 52, 137 }, { 53, 137 }, { 54, 137 },
{ 55, 137 }, { 56, 137 }, { 57, 137 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 65, 137 }, { 66, 137 }, { 67, 137 }, { 68, 137 }, { 69, 137 },
{ 70, 137 }, { 0, 55 }, { 0,6748 }, { 0, 0 }, { 97, 136 },
{ 98, 136 }, { 99, 136 }, { 100, 136 }, { 101, 136 }, { 102, 136 },
{ 0, 0 }, { 9, 137 }, { 10, 137 }, { 0, 0 }, { 12, 137 },
{ 13, 137 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 28 }, { 0,6724 }, { 97, 137 }, { 98, 137 }, { 99, 137 },
{ 100, 137 }, { 101, 137 }, { 102, 137 }, { 0, 0 }, { 32, 137 },
{ 9, 418 }, { 10, 418 }, { 0, 0 }, { 12, 418 }, { 13, 418 },
{ 0, 0 }, { 39, 184 }, { 0, 37 }, { 0,6707 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 45,-21611 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 418 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39, 465 }, { 0, 37 }, { 0,6683 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-21624 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 48, 706 }, { 49, 706 }, { 50, 706 }, { 51, 706 },
{ 52, 706 }, { 53, 706 }, { 54, 706 }, { 55, 706 }, { 56, 706 },
{ 57, 706 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 706 }, { 66, 706 },
{ 67, 706 }, { 68, 706 }, { 69, 706 }, { 70, 706 }, { 0, 0 },
{ 48, 705 }, { 49, 705 }, { 50, 705 }, { 51, 705 }, { 52, 705 },
{ 53, 705 }, { 54, 705 }, { 55, 705 }, { 56, 705 }, { 57, 705 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65, 705 }, { 66, 705 }, { 67, 705 },
{ 68, 705 }, { 69, 705 }, { 70, 705 }, { 0, 55 }, { 0,6611 },
{ 97, 706 }, { 98, 706 }, { 99, 706 }, { 100, 706 }, { 101, 706 },
{ 102, 706 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 },
{ 0, 0 }, { 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97, 705 },
{ 98, 705 }, { 99, 705 }, { 100, 705 }, { 101, 705 }, { 102, 705 },
{ 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 39, 47 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-21748 },
{ 0, 55 }, { 0,6564 }, { 1,-21777 }, { 2,-21777 }, { 3,-21777 },
{ 4,-21777 }, { 5,-21777 }, { 6,-21777 }, { 7,-21777 }, { 8,-21777 },
{ 9,-21777 }, { 10,-21777 }, { 11,-21777 }, { 12,-21777 }, { 13,-21777 },
{ 14,-21777 }, { 15,-21777 }, { 16,-21777 }, { 17,-21777 }, { 18,-21777 },
{ 19,-21777 }, { 20,-21777 }, { 21,-21777 }, { 22,-21777 }, { 23,-21777 },
{ 24,-21777 }, { 25,-21777 }, { 26,-21777 }, { 27,-21777 }, { 28,-21777 },
{ 29,-21777 }, { 30,-21777 }, { 31,-21777 }, { 32,-21777 }, { 33,-21777 },
{ 34,-21777 }, { 35,-21777 }, { 36,-21777 }, { 37,-21777 }, { 38,-21777 },
{ 0, 0 }, { 40,-21777 }, { 41,-21777 }, { 42,-21777 }, { 43,-21777 },
{ 44,-21777 }, { 45,-21777 }, { 46,-21777 }, { 47,-21777 }, { 48,-21777 },
{ 49,-21777 }, { 50,-21777 }, { 51,-21777 }, { 52,-21777 }, { 53,-21777 },
{ 54,-21777 }, { 55,-21777 }, { 56,-21777 }, { 57,-21777 }, { 58,-21777 },
{ 59,-21777 }, { 60,-21777 }, { 61,-21777 }, { 62,-21777 }, { 63,-21777 },
{ 64,-21777 }, { 65,-21777 }, { 66,-21777 }, { 67,-21777 }, { 68,-21777 },
{ 69,-21777 }, { 70,-21777 }, { 71,-21777 }, { 72,-21777 }, { 73,-21777 },
{ 74,-21777 }, { 75,-21777 }, { 76,-21777 }, { 77,-21777 }, { 78,-21777 },
{ 79,-21777 }, { 80,-21777 }, { 81,-21777 }, { 82,-21777 }, { 83,-21777 },
{ 84,-21777 }, { 85,-21777 }, { 86,-21777 }, { 87,-21777 }, { 88,-21777 },
{ 89,-21777 }, { 90,-21777 }, { 91,-21777 }, { 92,-21777 }, { 93,-21777 },
{ 94,-21777 }, { 95,-21777 }, { 96,-21777 }, { 97,-21777 }, { 98,-21777 },
{ 99,-21777 }, { 100,-21777 }, { 101,-21777 }, { 102,-21777 }, { 103,-21777 },
{ 104,-21777 }, { 105,-21777 }, { 106,-21777 }, { 107,-21777 }, { 108,-21777 },
{ 109,-21777 }, { 110,-21777 }, { 111,-21777 }, { 112,-21777 }, { 113,-21777 },
{ 114,-21777 }, { 115,-21777 }, { 116,-21777 }, { 117,-21777 }, { 118,-21777 },
{ 119,-21777 }, { 120,-21777 }, { 121,-21777 }, { 122,-21777 }, { 123,-21777 },
{ 124,-21777 }, { 125,-21777 }, { 126,-21777 }, { 127,-21777 }, { 128,-21777 },
{ 129,-21777 }, { 130,-21777 }, { 131,-21777 }, { 132,-21777 }, { 133,-21777 },
{ 134,-21777 }, { 135,-21777 }, { 136,-21777 }, { 137,-21777 }, { 138,-21777 },
{ 139,-21777 }, { 140,-21777 }, { 141,-21777 }, { 142,-21777 }, { 143,-21777 },
{ 144,-21777 }, { 145,-21777 }, { 146,-21777 }, { 147,-21777 }, { 148,-21777 },
{ 149,-21777 }, { 150,-21777 }, { 151,-21777 }, { 152,-21777 }, { 153,-21777 },
{ 154,-21777 }, { 155,-21777 }, { 156,-21777 }, { 157,-21777 }, { 158,-21777 },
{ 159,-21777 }, { 160,-21777 }, { 161,-21777 }, { 162,-21777 }, { 163,-21777 },
{ 164,-21777 }, { 165,-21777 }, { 166,-21777 }, { 167,-21777 }, { 168,-21777 },
{ 169,-21777 }, { 170,-21777 }, { 171,-21777 }, { 172,-21777 }, { 173,-21777 },
{ 174,-21777 }, { 175,-21777 }, { 176,-21777 }, { 177,-21777 }, { 178,-21777 },
{ 179,-21777 }, { 180,-21777 }, { 181,-21777 }, { 182,-21777 }, { 183,-21777 },
{ 184,-21777 }, { 185,-21777 }, { 186,-21777 }, { 187,-21777 }, { 188,-21777 },
{ 189,-21777 }, { 190,-21777 }, { 191,-21777 }, { 192,-21777 }, { 193,-21777 },
{ 194,-21777 }, { 195,-21777 }, { 196,-21777 }, { 197,-21777 }, { 198,-21777 },
{ 199,-21777 }, { 200,-21777 }, { 201,-21777 }, { 202,-21777 }, { 203,-21777 },
{ 204,-21777 }, { 205,-21777 }, { 206,-21777 }, { 207,-21777 }, { 208,-21777 },
{ 209,-21777 }, { 210,-21777 }, { 211,-21777 }, { 212,-21777 }, { 213,-21777 },
{ 214,-21777 }, { 215,-21777 }, { 216,-21777 }, { 217,-21777 }, { 218,-21777 },
{ 219,-21777 }, { 220,-21777 }, { 221,-21777 }, { 222,-21777 }, { 223,-21777 },
{ 224,-21777 }, { 225,-21777 }, { 226,-21777 }, { 227,-21777 }, { 228,-21777 },
{ 229,-21777 }, { 230,-21777 }, { 231,-21777 }, { 232,-21777 }, { 233,-21777 },
{ 234,-21777 }, { 235,-21777 }, { 236,-21777 }, { 237,-21777 }, { 238,-21777 },
{ 239,-21777 }, { 240,-21777 }, { 241,-21777 }, { 242,-21777 }, { 243,-21777 },
{ 244,-21777 }, { 245,-21777 }, { 246,-21777 }, { 247,-21777 }, { 248,-21777 },
{ 249,-21777 }, { 250,-21777 }, { 251,-21777 }, { 252,-21777 }, { 253,-21777 },
{ 254,-21777 }, { 255,-21777 }, { 256,-21777 }, { 0, 28 }, { 0,6306 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 0 },
{ 0, 0 }, { 12, 0 }, { 13, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 39, 47 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-22042 },
{ 0, 28 }, { 0,6259 }, { 1,-22080 }, { 2,-22080 }, { 3,-22080 },
{ 4,-22080 }, { 5,-22080 }, { 6,-22080 }, { 7,-22080 }, { 8,-22080 },
{ 9,-22080 }, { 10,-22080 }, { 11,-22080 }, { 12,-22080 }, { 13,-22080 },
{ 14,-22080 }, { 15,-22080 }, { 16,-22080 }, { 17,-22080 }, { 18,-22080 },
{ 19,-22080 }, { 20,-22080 }, { 21,-22080 }, { 22,-22080 }, { 23,-22080 },
{ 24,-22080 }, { 25,-22080 }, { 26,-22080 }, { 27,-22080 }, { 28,-22080 },
{ 29,-22080 }, { 30,-22080 }, { 31,-22080 }, { 32,-22080 }, { 33,-22080 },
{ 34,-22080 }, { 35,-22080 }, { 36,-22080 }, { 37,-22080 }, { 38,-22080 },
{ 0, 0 }, { 40,-22080 }, { 41,-22080 }, { 42,-22080 }, { 43,-22080 },
{ 44,-22080 }, { 45,-22080 }, { 46,-22080 }, { 47,-22080 }, { 48,-22080 },
{ 49,-22080 }, { 50,-22080 }, { 51,-22080 }, { 52,-22080 }, { 53,-22080 },
{ 54,-22080 }, { 55,-22080 }, { 56,-22080 }, { 57,-22080 }, { 58,-22080 },
{ 59,-22080 }, { 60,-22080 }, { 61,-22080 }, { 62,-22080 }, { 63,-22080 },
{ 64,-22080 }, { 65,-22080 }, { 66,-22080 }, { 67,-22080 }, { 68,-22080 },
{ 69,-22080 }, { 70,-22080 }, { 71,-22080 }, { 72,-22080 }, { 73,-22080 },
{ 74,-22080 }, { 75,-22080 }, { 76,-22080 }, { 77,-22080 }, { 78,-22080 },
{ 79,-22080 }, { 80,-22080 }, { 81,-22080 }, { 82,-22080 }, { 83,-22080 },
{ 84,-22080 }, { 85,-22080 }, { 86,-22080 }, { 87,-22080 }, { 88,-22080 },
{ 89,-22080 }, { 90,-22080 }, { 91,-22080 }, { 92,-22080 }, { 93,-22080 },
{ 94,-22080 }, { 95,-22080 }, { 96,-22080 }, { 97,-22080 }, { 98,-22080 },
{ 99,-22080 }, { 100,-22080 }, { 101,-22080 }, { 102,-22080 }, { 103,-22080 },
{ 104,-22080 }, { 105,-22080 }, { 106,-22080 }, { 107,-22080 }, { 108,-22080 },
{ 109,-22080 }, { 110,-22080 }, { 111,-22080 }, { 112,-22080 }, { 113,-22080 },
{ 114,-22080 }, { 115,-22080 }, { 116,-22080 }, { 117,-22080 }, { 118,-22080 },
{ 119,-22080 }, { 120,-22080 }, { 121,-22080 }, { 122,-22080 }, { 123,-22080 },
{ 124,-22080 }, { 125,-22080 }, { 126,-22080 }, { 127,-22080 }, { 128,-22080 },
{ 129,-22080 }, { 130,-22080 }, { 131,-22080 }, { 132,-22080 }, { 133,-22080 },
{ 134,-22080 }, { 135,-22080 }, { 136,-22080 }, { 137,-22080 }, { 138,-22080 },
{ 139,-22080 }, { 140,-22080 }, { 141,-22080 }, { 142,-22080 }, { 143,-22080 },
{ 144,-22080 }, { 145,-22080 }, { 146,-22080 }, { 147,-22080 }, { 148,-22080 },
{ 149,-22080 }, { 150,-22080 }, { 151,-22080 }, { 152,-22080 }, { 153,-22080 },
{ 154,-22080 }, { 155,-22080 }, { 156,-22080 }, { 157,-22080 }, { 158,-22080 },
{ 159,-22080 }, { 160,-22080 }, { 161,-22080 }, { 162,-22080 }, { 163,-22080 },
{ 164,-22080 }, { 165,-22080 }, { 166,-22080 }, { 167,-22080 }, { 168,-22080 },
{ 169,-22080 }, { 170,-22080 }, { 171,-22080 }, { 172,-22080 }, { 173,-22080 },
{ 174,-22080 }, { 175,-22080 }, { 176,-22080 }, { 177,-22080 }, { 178,-22080 },
{ 179,-22080 }, { 180,-22080 }, { 181,-22080 }, { 182,-22080 }, { 183,-22080 },
{ 184,-22080 }, { 185,-22080 }, { 186,-22080 }, { 187,-22080 }, { 188,-22080 },
{ 189,-22080 }, { 190,-22080 }, { 191,-22080 }, { 192,-22080 }, { 193,-22080 },
{ 194,-22080 }, { 195,-22080 }, { 196,-22080 }, { 197,-22080 }, { 198,-22080 },
{ 199,-22080 }, { 200,-22080 }, { 201,-22080 }, { 202,-22080 }, { 203,-22080 },
{ 204,-22080 }, { 205,-22080 }, { 206,-22080 }, { 207,-22080 }, { 208,-22080 },
{ 209,-22080 }, { 210,-22080 }, { 211,-22080 }, { 212,-22080 }, { 213,-22080 },
{ 214,-22080 }, { 215,-22080 }, { 216,-22080 }, { 217,-22080 }, { 218,-22080 },
{ 219,-22080 }, { 220,-22080 }, { 221,-22080 }, { 222,-22080 }, { 223,-22080 },
{ 224,-22080 }, { 225,-22080 }, { 226,-22080 }, { 227,-22080 }, { 228,-22080 },
{ 229,-22080 }, { 230,-22080 }, { 231,-22080 }, { 232,-22080 }, { 233,-22080 },
{ 234,-22080 }, { 235,-22080 }, { 236,-22080 }, { 237,-22080 }, { 238,-22080 },
{ 239,-22080 }, { 240,-22080 }, { 241,-22080 }, { 242,-22080 }, { 243,-22080 },
{ 244,-22080 }, { 245,-22080 }, { 246,-22080 }, { 247,-22080 }, { 248,-22080 },
{ 249,-22080 }, { 250,-22080 }, { 251,-22080 }, { 252,-22080 }, { 253,-22080 },
{ 254,-22080 }, { 255,-22080 }, { 256,-22080 }, { 0, 37 }, { 0,6001 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 37 }, { 0,5978 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 48, 643 }, { 49, 643 }, { 50, 643 },
{ 51, 643 }, { 52, 643 }, { 53, 643 }, { 54, 643 }, { 55, 643 },
{ 56, 643 }, { 57, 643 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 643 },
{ 66, 643 }, { 67, 643 }, { 68, 643 }, { 69, 643 }, { 70, 643 },
{ 48,-22625 }, { 49,-22625 }, { 50,-22625 }, { 51,-22625 }, { 52,-22625 },
{ 53,-22625 }, { 54,-22625 }, { 55,-22625 }, { 56,-22625 }, { 57,-22625 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,-22625 }, { 66,-22625 }, { 67,-22625 },
{ 68,-22625 }, { 69,-22625 }, { 70,-22625 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 97, 643 }, { 98, 643 }, { 99, 643 }, { 100, 643 },
{ 101, 643 }, { 102, 643 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-22625 },
{ 98,-22625 }, { 99,-22625 }, { 100,-22625 }, { 101,-22625 }, { 102,-22625 },
{ 0, 55 }, { 0,5874 }, { 1, 620 }, { 2, 620 }, { 3, 620 },
{ 4, 620 }, { 5, 620 }, { 6, 620 }, { 7, 620 }, { 8, 620 },
{ 9, 878 }, { 10,-737 }, { 11, 620 }, { 12, 878 }, { 13,-737 },
{ 14, 620 }, { 15, 620 }, { 16, 620 }, { 17, 620 }, { 18, 620 },
{ 19, 620 }, { 20, 620 }, { 21, 620 }, { 22, 620 }, { 23, 620 },
{ 24, 620 }, { 25, 620 }, { 26, 620 }, { 27, 620 }, { 28, 620 },
{ 29, 620 }, { 30, 620 }, { 31, 620 }, { 32, 878 }, { 33, 620 },
{ 34, 620 }, { 35, 620 }, { 36, 620 }, { 37, 620 }, { 38, 620 },
{ 39,1136 }, { 40, 620 }, { 41, 620 }, { 42, 620 }, { 43, 620 },
{ 44, 620 }, { 45,1394 }, { 46, 620 }, { 47, 620 }, { 48, 620 },
{ 49, 620 }, { 50, 620 }, { 51, 620 }, { 52, 620 }, { 53, 620 },
{ 54, 620 }, { 55, 620 }, { 56, 620 }, { 57, 620 }, { 58, 620 },
{ 59, 620 }, { 60, 620 }, { 61, 620 }, { 62, 620 }, { 63, 620 },
{ 64, 620 }, { 65, 620 }, { 66, 620 }, { 67, 620 }, { 68, 620 },
{ 69, 620 }, { 70, 620 }, { 71, 620 }, { 72, 620 }, { 73, 620 },
{ 74, 620 }, { 75, 620 }, { 76, 620 }, { 77, 620 }, { 78, 620 },
{ 79, 620 }, { 80, 620 }, { 81, 620 }, { 82, 620 }, { 83, 620 },
{ 84, 620 }, { 85, 620 }, { 86, 620 }, { 87, 620 }, { 88, 620 },
{ 89, 620 }, { 90, 620 }, { 91, 620 }, { 92, 620 }, { 93, 620 },
{ 94, 620 }, { 95, 620 }, { 96, 620 }, { 97, 620 }, { 98, 620 },
{ 99, 620 }, { 100, 620 }, { 101, 620 }, { 102, 620 }, { 103, 620 },
{ 104, 620 }, { 105, 620 }, { 106, 620 }, { 107, 620 }, { 108, 620 },
{ 109, 620 }, { 110, 620 }, { 111, 620 }, { 112, 620 }, { 113, 620 },
{ 114, 620 }, { 115, 620 }, { 116, 620 }, { 117, 620 }, { 118, 620 },
{ 119, 620 }, { 120, 620 }, { 121, 620 }, { 122, 620 }, { 123, 620 },
{ 124, 620 }, { 125, 620 }, { 126, 620 }, { 127, 620 }, { 128, 620 },
{ 129, 620 }, { 130, 620 }, { 131, 620 }, { 132, 620 }, { 133, 620 },
{ 134, 620 }, { 135, 620 }, { 136, 620 }, { 137, 620 }, { 138, 620 },
{ 139, 620 }, { 140, 620 }, { 141, 620 }, { 142, 620 }, { 143, 620 },
{ 144, 620 }, { 145, 620 }, { 146, 620 }, { 147, 620 }, { 148, 620 },
{ 149, 620 }, { 150, 620 }, { 151, 620 }, { 152, 620 }, { 153, 620 },
{ 154, 620 }, { 155, 620 }, { 156, 620 }, { 157, 620 }, { 158, 620 },
{ 159, 620 }, { 160, 620 }, { 161, 620 }, { 162, 620 }, { 163, 620 },
{ 164, 620 }, { 165, 620 }, { 166, 620 }, { 167, 620 }, { 168, 620 },
{ 169, 620 }, { 170, 620 }, { 171, 620 }, { 172, 620 }, { 173, 620 },
{ 174, 620 }, { 175, 620 }, { 176, 620 }, { 177, 620 }, { 178, 620 },
{ 179, 620 }, { 180, 620 }, { 181, 620 }, { 182, 620 }, { 183, 620 },
{ 184, 620 }, { 185, 620 }, { 186, 620 }, { 187, 620 }, { 188, 620 },
{ 189, 620 }, { 190, 620 }, { 191, 620 }, { 192, 620 }, { 193, 620 },
{ 194, 620 }, { 195, 620 }, { 196, 620 }, { 197, 620 }, { 198, 620 },
{ 199, 620 }, { 200, 620 }, { 201, 620 }, { 202, 620 }, { 203, 620 },
{ 204, 620 }, { 205, 620 }, { 206, 620 }, { 207, 620 }, { 208, 620 },
{ 209, 620 }, { 210, 620 }, { 211, 620 }, { 212, 620 }, { 213, 620 },
{ 214, 620 }, { 215, 620 }, { 216, 620 }, { 217, 620 }, { 218, 620 },
{ 219, 620 }, { 220, 620 }, { 221, 620 }, { 222, 620 }, { 223, 620 },
{ 224, 620 }, { 225, 620 }, { 226, 620 }, { 227, 620 }, { 228, 620 },
{ 229, 620 }, { 230, 620 }, { 231, 620 }, { 232, 620 }, { 233, 620 },
{ 234, 620 }, { 235, 620 }, { 236, 620 }, { 237, 620 }, { 238, 620 },
{ 239, 620 }, { 240, 620 }, { 241, 620 }, { 242, 620 }, { 243, 620 },
{ 244, 620 }, { 245, 620 }, { 246, 620 }, { 247, 620 }, { 248, 620 },
{ 249, 620 }, { 250, 620 }, { 251, 620 }, { 252, 620 }, { 253, 620 },
{ 254, 620 }, { 255, 620 }, { 256, 620 }, { 0, 28 }, { 0,5616 },
{ 1,1394 }, { 2,1394 }, { 3,1394 }, { 4,1394 }, { 5,1394 },
{ 6,1394 }, { 7,1394 }, { 8,1394 }, { 9,1652 }, { 10,-690 },
{ 11,1394 }, { 12,1652 }, { 13,-690 }, { 14,1394 }, { 15,1394 },
{ 16,1394 }, { 17,1394 }, { 18,1394 }, { 19,1394 }, { 20,1394 },
{ 21,1394 }, { 22,1394 }, { 23,1394 }, { 24,1394 }, { 25,1394 },
{ 26,1394 }, { 27,1394 }, { 28,1394 }, { 29,1394 }, { 30,1394 },
{ 31,1394 }, { 32,1652 }, { 33,1394 }, { 34,1394 }, { 35,1394 },
{ 36,1394 }, { 37,1394 }, { 38,1394 }, { 39,1910 }, { 40,1394 },
{ 41,1394 }, { 42,1394 }, { 43,1394 }, { 44,1394 }, { 45,2168 },
{ 46,1394 }, { 47,1394 }, { 48,1394 }, { 49,1394 }, { 50,1394 },
{ 51,1394 }, { 52,1394 }, { 53,1394 }, { 54,1394 }, { 55,1394 },
{ 56,1394 }, { 57,1394 }, { 58,1394 }, { 59,1394 }, { 60,1394 },
{ 61,1394 }, { 62,1394 }, { 63,1394 }, { 64,1394 }, { 65,1394 },
{ 66,1394 }, { 67,1394 }, { 68,1394 }, { 69,1394 }, { 70,1394 },
{ 71,1394 }, { 72,1394 }, { 73,1394 }, { 74,1394 }, { 75,1394 },
{ 76,1394 }, { 77,1394 }, { 78,1394 }, { 79,1394 }, { 80,1394 },
{ 81,1394 }, { 82,1394 }, { 83,1394 }, { 84,1394 }, { 85,1394 },
{ 86,1394 }, { 87,1394 }, { 88,1394 }, { 89,1394 }, { 90,1394 },
{ 91,1394 }, { 92,1394 }, { 93,1394 }, { 94,1394 }, { 95,1394 },
{ 96,1394 }, { 97,1394 }, { 98,1394 }, { 99,1394 }, { 100,1394 },
{ 101,1394 }, { 102,1394 }, { 103,1394 }, { 104,1394 }, { 105,1394 },
{ 106,1394 }, { 107,1394 }, { 108,1394 }, { 109,1394 }, { 110,1394 },
{ 111,1394 }, { 112,1394 }, { 113,1394 }, { 114,1394 }, { 115,1394 },
{ 116,1394 }, { 117,1394 }, { 118,1394 }, { 119,1394 }, { 120,1394 },
{ 121,1394 }, { 122,1394 }, { 123,1394 }, { 124,1394 }, { 125,1394 },
{ 126,1394 }, { 127,1394 }, { 128,1394 }, { 129,1394 }, { 130,1394 },
{ 131,1394 }, { 132,1394 }, { 133,1394 }, { 134,1394 }, { 135,1394 },
{ 136,1394 }, { 137,1394 }, { 138,1394 }, { 139,1394 }, { 140,1394 },
{ 141,1394 }, { 142,1394 }, { 143,1394 }, { 144,1394 }, { 145,1394 },
{ 146,1394 }, { 147,1394 }, { 148,1394 }, { 149,1394 }, { 150,1394 },
{ 151,1394 }, { 152,1394 }, { 153,1394 }, { 154,1394 }, { 155,1394 },
{ 156,1394 }, { 157,1394 }, { 158,1394 }, { 159,1394 }, { 160,1394 },
{ 161,1394 }, { 162,1394 }, { 163,1394 }, { 164,1394 }, { 165,1394 },
{ 166,1394 }, { 167,1394 }, { 168,1394 }, { 169,1394 }, { 170,1394 },
{ 171,1394 }, { 172,1394 }, { 173,1394 }, { 174,1394 }, { 175,1394 },
{ 176,1394 }, { 177,1394 }, { 178,1394 }, { 179,1394 }, { 180,1394 },
{ 181,1394 }, { 182,1394 }, { 183,1394 }, { 184,1394 }, { 185,1394 },
{ 186,1394 }, { 187,1394 }, { 188,1394 }, { 189,1394 }, { 190,1394 },
{ 191,1394 }, { 192,1394 }, { 193,1394 }, { 194,1394 }, { 195,1394 },
{ 196,1394 }, { 197,1394 }, { 198,1394 }, { 199,1394 }, { 200,1394 },
{ 201,1394 }, { 202,1394 }, { 203,1394 }, { 204,1394 }, { 205,1394 },
{ 206,1394 }, { 207,1394 }, { 208,1394 }, { 209,1394 }, { 210,1394 },
{ 211,1394 }, { 212,1394 }, { 213,1394 }, { 214,1394 }, { 215,1394 },
{ 216,1394 }, { 217,1394 }, { 218,1394 }, { 219,1394 }, { 220,1394 },
{ 221,1394 }, { 222,1394 }, { 223,1394 }, { 224,1394 }, { 225,1394 },
{ 226,1394 }, { 227,1394 }, { 228,1394 }, { 229,1394 }, { 230,1394 },
{ 231,1394 }, { 232,1394 }, { 233,1394 }, { 234,1394 }, { 235,1394 },
{ 236,1394 }, { 237,1394 }, { 238,1394 }, { 239,1394 }, { 240,1394 },
{ 241,1394 }, { 242,1394 }, { 243,1394 }, { 244,1394 }, { 245,1394 },
{ 246,1394 }, { 247,1394 }, { 248,1394 }, { 249,1394 }, { 250,1394 },
{ 251,1394 }, { 252,1394 }, { 253,1394 }, { 254,1394 }, { 255,1394 },
{ 256,1394 }, { 0, 37 }, { 0,5358 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 48,-23233 }, { 49,-23233 }, { 50,-23233 }, { 51,-23233 }, { 52,-23233 },
{ 53,-23233 }, { 54,-23233 }, { 55,-23233 }, { 56,-23233 }, { 57,-23233 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 65,-23233 }, { 66,-23233 }, { 67,-23233 },
{ 68,-23233 }, { 69,-23233 }, { 70,-23233 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-23233 },
{ 98,-23233 }, { 99,-23233 }, { 100,-23233 }, { 101,-23233 }, { 102,-23233 },
{ 0, 55 }, { 0,5254 }, { 1, 0 }, { 2, 0 }, { 3, 0 },
{ 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 },
{ 9, 258 }, { 10,-1357 }, { 11, 0 }, { 12, 258 }, { 13,-1357 },
{ 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 },
{ 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 },
{ 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 },
{ 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 258 }, { 33, 0 },
{ 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 },
{ 39, 516 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 },
{ 44, 0 }, { 45, 774 }, { 46, 0 }, { 47, 0 }, { 48, 0 },
{ 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 },
{ 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 },
{ 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 },
{ 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 },
{ 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 },
{ 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 },
{ 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 },
{ 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 },
{ 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 },
{ 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 },
{ 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 },
{ 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 },
{ 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 },
{ 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 },
{ 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 },
{ 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 },
{ 129, 0 }, { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 },
{ 134, 0 }, { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 },
{ 139, 0 }, { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 },
{ 144, 0 }, { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 },
{ 149, 0 }, { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 },
{ 154, 0 }, { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 },
{ 159, 0 }, { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 },
{ 164, 0 }, { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 },
{ 169, 0 }, { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 },
{ 174, 0 }, { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 },
{ 179, 0 }, { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 },
{ 184, 0 }, { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 },
{ 189, 0 }, { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 },
{ 194, 0 }, { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 },
{ 199, 0 }, { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 },
{ 204, 0 }, { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 },
{ 209, 0 }, { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 },
{ 214, 0 }, { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 },
{ 219, 0 }, { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 },
{ 224, 0 }, { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 },
{ 229, 0 }, { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 },
{ 234, 0 }, { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 },
{ 239, 0 }, { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 },
{ 244, 0 }, { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 },
{ 249, 0 }, { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 },
{ 254, 0 }, { 255, 0 }, { 256, 0 }, { 0, 55 }, { 0,4996 },
{ 1,-258 }, { 2,-258 }, { 3,-258 }, { 4,-258 }, { 5,-258 },
{ 6,-258 }, { 7,-258 }, { 8,-258 }, { 9, 0 }, { 10,-1615 },
{ 11,-258 }, { 12, 0 }, { 13,-1615 }, { 14,-258 }, { 15,-258 },
{ 16,-258 }, { 17,-258 }, { 18,-258 }, { 19,-258 }, { 20,-258 },
{ 21,-258 }, { 22,-258 }, { 23,-258 }, { 24,-258 }, { 25,-258 },
{ 26,-258 }, { 27,-258 }, { 28,-258 }, { 29,-258 }, { 30,-258 },
{ 31,-258 }, { 32, 0 }, { 33,-258 }, { 34,-258 }, { 35,-258 },
{ 36,-258 }, { 37,-258 }, { 38,-258 }, { 39, 258 }, { 40,-258 },
{ 41,-258 }, { 42,-258 }, { 43,-258 }, { 44,-258 }, { 45, 516 },
{ 46,-258 }, { 47,-258 }, { 48,-258 }, { 49,-258 }, { 50,-258 },
{ 51,-258 }, { 52,-258 }, { 53,-258 }, { 54,-258 }, { 55,-258 },
{ 56,-258 }, { 57,-258 }, { 58,-258 }, { 59,-258 }, { 60,-258 },
{ 61,-258 }, { 62,-258 }, { 63,-258 }, { 64,-258 }, { 65,-258 },
{ 66,-258 }, { 67,-258 }, { 68,-258 }, { 69,-258 }, { 70,-258 },
{ 71,-258 }, { 72,-258 }, { 73,-258 }, { 74,-258 }, { 75,-258 },
{ 76,-258 }, { 77,-258 }, { 78,-258 }, { 79,-258 }, { 80,-258 },
{ 81,-258 }, { 82,-258 }, { 83,-258 }, { 84,-258 }, { 85,-258 },
{ 86,-258 }, { 87,-258 }, { 88,-258 }, { 89,-258 }, { 90,-258 },
{ 91,-258 }, { 92,-258 }, { 93,-258 }, { 94,-258 }, { 95,-258 },
{ 96,-258 }, { 97,-258 }, { 98,-258 }, { 99,-258 }, { 100,-258 },
{ 101,-258 }, { 102,-258 }, { 103,-258 }, { 104,-258 }, { 105,-258 },
{ 106,-258 }, { 107,-258 }, { 108,-258 }, { 109,-258 }, { 110,-258 },
{ 111,-258 }, { 112,-258 }, { 113,-258 }, { 114,-258 }, { 115,-258 },
{ 116,-258 }, { 117,-258 }, { 118,-258 }, { 119,-258 }, { 120,-258 },
{ 121,-258 }, { 122,-258 }, { 123,-258 }, { 124,-258 }, { 125,-258 },
{ 126,-258 }, { 127,-258 }, { 128,-258 }, { 129,-258 }, { 130,-258 },
{ 131,-258 }, { 132,-258 }, { 133,-258 }, { 134,-258 }, { 135,-258 },
{ 136,-258 }, { 137,-258 }, { 138,-258 }, { 139,-258 }, { 140,-258 },
{ 141,-258 }, { 142,-258 }, { 143,-258 }, { 144,-258 }, { 145,-258 },
{ 146,-258 }, { 147,-258 }, { 148,-258 }, { 149,-258 }, { 150,-258 },
{ 151,-258 }, { 152,-258 }, { 153,-258 }, { 154,-258 }, { 155,-258 },
{ 156,-258 }, { 157,-258 }, { 158,-258 }, { 159,-258 }, { 160,-258 },
{ 161,-258 }, { 162,-258 }, { 163,-258 }, { 164,-258 }, { 165,-258 },
{ 166,-258 }, { 167,-258 }, { 168,-258 }, { 169,-258 }, { 170,-258 },
{ 171,-258 }, { 172,-258 }, { 173,-258 }, { 174,-258 }, { 175,-258 },
{ 176,-258 }, { 177,-258 }, { 178,-258 }, { 179,-258 }, { 180,-258 },
{ 181,-258 }, { 182,-258 }, { 183,-258 }, { 184,-258 }, { 185,-258 },
{ 186,-258 }, { 187,-258 }, { 188,-258 }, { 189,-258 }, { 190,-258 },
{ 191,-258 }, { 192,-258 }, { 193,-258 }, { 194,-258 }, { 195,-258 },
{ 196,-258 }, { 197,-258 }, { 198,-258 }, { 199,-258 }, { 200,-258 },
{ 201,-258 }, { 202,-258 }, { 203,-258 }, { 204,-258 }, { 205,-258 },
{ 206,-258 }, { 207,-258 }, { 208,-258 }, { 209,-258 }, { 210,-258 },
{ 211,-258 }, { 212,-258 }, { 213,-258 }, { 214,-258 }, { 215,-258 },
{ 216,-258 }, { 217,-258 }, { 218,-258 }, { 219,-258 }, { 220,-258 },
{ 221,-258 }, { 222,-258 }, { 223,-258 }, { 224,-258 }, { 225,-258 },
{ 226,-258 }, { 227,-258 }, { 228,-258 }, { 229,-258 }, { 230,-258 },
{ 231,-258 }, { 232,-258 }, { 233,-258 }, { 234,-258 }, { 235,-258 },
{ 236,-258 }, { 237,-258 }, { 238,-258 }, { 239,-258 }, { 240,-258 },
{ 241,-258 }, { 242,-258 }, { 243,-258 }, { 244,-258 }, { 245,-258 },
{ 246,-258 }, { 247,-258 }, { 248,-258 }, { 249,-258 }, { 250,-258 },
{ 251,-258 }, { 252,-258 }, { 253,-258 }, { 254,-258 }, { 255,-258 },
{ 256,-258 }, { 0, 55 }, { 0,4738 }, { 1,1548 }, { 2,1548 },
{ 3,1548 }, { 4,1548 }, { 5,1548 }, { 6,1548 }, { 7,1548 },
{ 8,1548 }, { 9,1806 }, { 10,2064 }, { 11,1548 }, { 12,1806 },
{ 13,2064 }, { 14,1548 }, { 15,1548 }, { 16,1548 }, { 17,1548 },
{ 18,1548 }, { 19,1548 }, { 20,1548 }, { 21,1548 }, { 22,1548 },
{ 23,1548 }, { 24,1548 }, { 25,1548 }, { 26,1548 }, { 27,1548 },
{ 28,1548 }, { 29,1548 }, { 30,1548 }, { 31,1548 }, { 32,1806 },
{ 33,1548 }, { 34,1548 }, { 35,1548 }, { 36,1548 }, { 37,1548 },
{ 38,1548 }, { 39, 0 }, { 40,1548 }, { 41,1548 }, { 42,1548 },
{ 43,1548 }, { 44,1548 }, { 45,2111 }, { 46,1548 }, { 47,1548 },
{ 48,1548 }, { 49,1548 }, { 50,1548 }, { 51,1548 }, { 52,1548 },
{ 53,1548 }, { 54,1548 }, { 55,1548 }, { 56,1548 }, { 57,1548 },
{ 58,1548 }, { 59,1548 }, { 60,1548 }, { 61,1548 }, { 62,1548 },
{ 63,1548 }, { 64,1548 }, { 65,1548 }, { 66,1548 }, { 67,1548 },
{ 68,1548 }, { 69,1548 }, { 70,1548 }, { 71,1548 }, { 72,1548 },
{ 73,1548 }, { 74,1548 }, { 75,1548 }, { 76,1548 }, { 77,1548 },
{ 78,1548 }, { 79,1548 }, { 80,1548 }, { 81,1548 }, { 82,1548 },
{ 83,1548 }, { 84,1548 }, { 85,1548 }, { 86,1548 }, { 87,1548 },
{ 88,1548 }, { 89,1548 }, { 90,1548 }, { 91,1548 }, { 92,1548 },
{ 93,1548 }, { 94,1548 }, { 95,1548 }, { 96,1548 }, { 97,1548 },
{ 98,1548 }, { 99,1548 }, { 100,1548 }, { 101,1548 }, { 102,1548 },
{ 103,1548 }, { 104,1548 }, { 105,1548 }, { 106,1548 }, { 107,1548 },
{ 108,1548 }, { 109,1548 }, { 110,1548 }, { 111,1548 }, { 112,1548 },
{ 113,1548 }, { 114,1548 }, { 115,1548 }, { 116,1548 }, { 117,1548 },
{ 118,1548 }, { 119,1548 }, { 120,1548 }, { 121,1548 }, { 122,1548 },
{ 123,1548 }, { 124,1548 }, { 125,1548 }, { 126,1548 }, { 127,1548 },
{ 128,1548 }, { 129,1548 }, { 130,1548 }, { 131,1548 }, { 132,1548 },
{ 133,1548 }, { 134,1548 }, { 135,1548 }, { 136,1548 }, { 137,1548 },
{ 138,1548 }, { 139,1548 }, { 140,1548 }, { 141,1548 }, { 142,1548 },
{ 143,1548 }, { 144,1548 }, { 145,1548 }, { 146,1548 }, { 147,1548 },
{ 148,1548 }, { 149,1548 }, { 150,1548 }, { 151,1548 }, { 152,1548 },
{ 153,1548 }, { 154,1548 }, { 155,1548 }, { 156,1548 }, { 157,1548 },
{ 158,1548 }, { 159,1548 }, { 160,1548 }, { 161,1548 }, { 162,1548 },
{ 163,1548 }, { 164,1548 }, { 165,1548 }, { 166,1548 }, { 167,1548 },
{ 168,1548 }, { 169,1548 }, { 170,1548 }, { 171,1548 }, { 172,1548 },
{ 173,1548 }, { 174,1548 }, { 175,1548 }, { 176,1548 }, { 177,1548 },
{ 178,1548 }, { 179,1548 }, { 180,1548 }, { 181,1548 }, { 182,1548 },
{ 183,1548 }, { 184,1548 }, { 185,1548 }, { 186,1548 }, { 187,1548 },
{ 188,1548 }, { 189,1548 }, { 190,1548 }, { 191,1548 }, { 192,1548 },
{ 193,1548 }, { 194,1548 }, { 195,1548 }, { 196,1548 }, { 197,1548 },
{ 198,1548 }, { 199,1548 }, { 200,1548 }, { 201,1548 }, { 202,1548 },
{ 203,1548 }, { 204,1548 }, { 205,1548 }, { 206,1548 }, { 207,1548 },
{ 208,1548 }, { 209,1548 }, { 210,1548 }, { 211,1548 }, { 212,1548 },
{ 213,1548 }, { 214,1548 }, { 215,1548 }, { 216,1548 }, { 217,1548 },
{ 218,1548 }, { 219,1548 }, { 220,1548 }, { 221,1548 }, { 222,1548 },
{ 223,1548 }, { 224,1548 }, { 225,1548 }, { 226,1548 }, { 227,1548 },
{ 228,1548 }, { 229,1548 }, { 230,1548 }, { 231,1548 }, { 232,1548 },
{ 233,1548 }, { 234,1548 }, { 235,1548 }, { 236,1548 }, { 237,1548 },
{ 238,1548 }, { 239,1548 }, { 240,1548 }, { 241,1548 }, { 242,1548 },
{ 243,1548 }, { 244,1548 }, { 245,1548 }, { 246,1548 }, { 247,1548 },
{ 248,1548 }, { 249,1548 }, { 250,1548 }, { 251,1548 }, { 252,1548 },
{ 253,1548 }, { 254,1548 }, { 255,1548 }, { 256,1548 }, { 0, 55 },
{ 0,4480 }, { 1,-774 }, { 2,-774 }, { 3,-774 }, { 4,-774 },
{ 5,-774 }, { 6,-774 }, { 7,-774 }, { 8,-774 }, { 9,-516 },
{ 10,-2131 }, { 11,-774 }, { 12,-516 }, { 13,-2131 }, { 14,-774 },
{ 15,-774 }, { 16,-774 }, { 17,-774 }, { 18,-774 }, { 19,-774 },
{ 20,-774 }, { 21,-774 }, { 22,-774 }, { 23,-774 }, { 24,-774 },
{ 25,-774 }, { 26,-774 }, { 27,-774 }, { 28,-774 }, { 29,-774 },
{ 30,-774 }, { 31,-774 }, { 32,-516 }, { 33,-774 }, { 34,-774 },
{ 35,-774 }, { 36,-774 }, { 37,-774 }, { 38,-774 }, { 39,-258 },
{ 40,-774 }, { 41,-774 }, { 42,-774 }, { 43,-774 }, { 44,-774 },
{ 45,2111 }, { 46,-774 }, { 47,-774 }, { 48,-774 }, { 49,-774 },
{ 50,-774 }, { 51,-774 }, { 52,-774 }, { 53,-774 }, { 54,-774 },
{ 55,-774 }, { 56,-774 }, { 57,-774 }, { 58,-774 }, { 59,-774 },
{ 60,-774 }, { 61,-774 }, { 62,-774 }, { 63,-774 }, { 64,-774 },
{ 65,-774 }, { 66,-774 }, { 67,-774 }, { 68,-774 }, { 69,-774 },
{ 70,-774 }, { 71,-774 }, { 72,-774 }, { 73,-774 }, { 74,-774 },
{ 75,-774 }, { 76,-774 }, { 77,-774 }, { 78,-774 }, { 79,-774 },
{ 80,-774 }, { 81,-774 }, { 82,-774 }, { 83,-774 }, { 84,-774 },
{ 85,-774 }, { 86,-774 }, { 87,-774 }, { 88,-774 }, { 89,-774 },
{ 90,-774 }, { 91,-774 }, { 92,-774 }, { 93,-774 }, { 94,-774 },
{ 95,-774 }, { 96,-774 }, { 97,-774 }, { 98,-774 }, { 99,-774 },
{ 100,-774 }, { 101,-774 }, { 102,-774 }, { 103,-774 }, { 104,-774 },
{ 105,-774 }, { 106,-774 }, { 107,-774 }, { 108,-774 }, { 109,-774 },
{ 110,-774 }, { 111,-774 }, { 112,-774 }, { 113,-774 }, { 114,-774 },
{ 115,-774 }, { 116,-774 }, { 117,-774 }, { 118,-774 }, { 119,-774 },
{ 120,-774 }, { 121,-774 }, { 122,-774 }, { 123,-774 }, { 124,-774 },
{ 125,-774 }, { 126,-774 }, { 127,-774 }, { 128,-774 }, { 129,-774 },
{ 130,-774 }, { 131,-774 }, { 132,-774 }, { 133,-774 }, { 134,-774 },
{ 135,-774 }, { 136,-774 }, { 137,-774 }, { 138,-774 }, { 139,-774 },
{ 140,-774 }, { 141,-774 }, { 142,-774 }, { 143,-774 }, { 144,-774 },
{ 145,-774 }, { 146,-774 }, { 147,-774 }, { 148,-774 }, { 149,-774 },
{ 150,-774 }, { 151,-774 }, { 152,-774 }, { 153,-774 }, { 154,-774 },
{ 155,-774 }, { 156,-774 }, { 157,-774 }, { 158,-774 }, { 159,-774 },
{ 160,-774 }, { 161,-774 }, { 162,-774 }, { 163,-774 }, { 164,-774 },
{ 165,-774 }, { 166,-774 }, { 167,-774 }, { 168,-774 }, { 169,-774 },
{ 170,-774 }, { 171,-774 }, { 172,-774 }, { 173,-774 }, { 174,-774 },
{ 175,-774 }, { 176,-774 }, { 177,-774 }, { 178,-774 }, { 179,-774 },
{ 180,-774 }, { 181,-774 }, { 182,-774 }, { 183,-774 }, { 184,-774 },
{ 185,-774 }, { 186,-774 }, { 187,-774 }, { 188,-774 }, { 189,-774 },
{ 190,-774 }, { 191,-774 }, { 192,-774 }, { 193,-774 }, { 194,-774 },
{ 195,-774 }, { 196,-774 }, { 197,-774 }, { 198,-774 }, { 199,-774 },
{ 200,-774 }, { 201,-774 }, { 202,-774 }, { 203,-774 }, { 204,-774 },
{ 205,-774 }, { 206,-774 }, { 207,-774 }, { 208,-774 }, { 209,-774 },
{ 210,-774 }, { 211,-774 }, { 212,-774 }, { 213,-774 }, { 214,-774 },
{ 215,-774 }, { 216,-774 }, { 217,-774 }, { 218,-774 }, { 219,-774 },
{ 220,-774 }, { 221,-774 }, { 222,-774 }, { 223,-774 }, { 224,-774 },
{ 225,-774 }, { 226,-774 }, { 227,-774 }, { 228,-774 }, { 229,-774 },
{ 230,-774 }, { 231,-774 }, { 232,-774 }, { 233,-774 }, { 234,-774 },
{ 235,-774 }, { 236,-774 }, { 237,-774 }, { 238,-774 }, { 239,-774 },
{ 240,-774 }, { 241,-774 }, { 242,-774 }, { 243,-774 }, { 244,-774 },
{ 245,-774 }, { 246,-774 }, { 247,-774 }, { 248,-774 }, { 249,-774 },
{ 250,-774 }, { 251,-774 }, { 252,-774 }, { 253,-774 }, { 254,-774 },
{ 255,-774 }, { 256,-774 }, { 0, 28 }, { 0,4222 }, { 1, 0 },
{ 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 },
{ 7, 0 }, { 8, 0 }, { 9, 258 }, { 10,-2084 }, { 11, 0 },
{ 12, 258 }, { 13,-2084 }, { 14, 0 }, { 15, 0 }, { 16, 0 },
{ 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 },
{ 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 },
{ 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 },
{ 32, 258 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 },
{ 37, 0 }, { 38, 0 }, { 39, 516 }, { 40, 0 }, { 41, 0 },
{ 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 774 }, { 46, 0 },
{ 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
{ 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
{ 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 },
{ 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 },
{ 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 },
{ 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 },
{ 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 },
{ 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 },
{ 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 },
{ 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 },
{ 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 },
{ 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 },
{ 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 },
{ 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 },
{ 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 },
{ 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 },
{ 127, 0 }, { 128, 0 }, { 129, 0 }, { 130, 0 }, { 131, 0 },
{ 132, 0 }, { 133, 0 }, { 134, 0 }, { 135, 0 }, { 136, 0 },
{ 137, 0 }, { 138, 0 }, { 139, 0 }, { 140, 0 }, { 141, 0 },
{ 142, 0 }, { 143, 0 }, { 144, 0 }, { 145, 0 }, { 146, 0 },
{ 147, 0 }, { 148, 0 }, { 149, 0 }, { 150, 0 }, { 151, 0 },
{ 152, 0 }, { 153, 0 }, { 154, 0 }, { 155, 0 }, { 156, 0 },
{ 157, 0 }, { 158, 0 }, { 159, 0 }, { 160, 0 }, { 161, 0 },
{ 162, 0 }, { 163, 0 }, { 164, 0 }, { 165, 0 }, { 166, 0 },
{ 167, 0 }, { 168, 0 }, { 169, 0 }, { 170, 0 }, { 171, 0 },
{ 172, 0 }, { 173, 0 }, { 174, 0 }, { 175, 0 }, { 176, 0 },
{ 177, 0 }, { 178, 0 }, { 179, 0 }, { 180, 0 }, { 181, 0 },
{ 182, 0 }, { 183, 0 }, { 184, 0 }, { 185, 0 }, { 186, 0 },
{ 187, 0 }, { 188, 0 }, { 189, 0 }, { 190, 0 }, { 191, 0 },
{ 192, 0 }, { 193, 0 }, { 194, 0 }, { 195, 0 }, { 196, 0 },
{ 197, 0 }, { 198, 0 }, { 199, 0 }, { 200, 0 }, { 201, 0 },
{ 202, 0 }, { 203, 0 }, { 204, 0 }, { 205, 0 }, { 206, 0 },
{ 207, 0 }, { 208, 0 }, { 209, 0 }, { 210, 0 }, { 211, 0 },
{ 212, 0 }, { 213, 0 }, { 214, 0 }, { 215, 0 }, { 216, 0 },
{ 217, 0 }, { 218, 0 }, { 219, 0 }, { 220, 0 }, { 221, 0 },
{ 222, 0 }, { 223, 0 }, { 224, 0 }, { 225, 0 }, { 226, 0 },
{ 227, 0 }, { 228, 0 }, { 229, 0 }, { 230, 0 }, { 231, 0 },
{ 232, 0 }, { 233, 0 }, { 234, 0 }, { 235, 0 }, { 236, 0 },
{ 237, 0 }, { 238, 0 }, { 239, 0 }, { 240, 0 }, { 241, 0 },
{ 242, 0 }, { 243, 0 }, { 244, 0 }, { 245, 0 }, { 246, 0 },
{ 247, 0 }, { 248, 0 }, { 249, 0 }, { 250, 0 }, { 251, 0 },
{ 252, 0 }, { 253, 0 }, { 254, 0 }, { 255, 0 }, { 256, 0 },
{ 0, 28 }, { 0,3964 }, { 1,-258 }, { 2,-258 }, { 3,-258 },
{ 4,-258 }, { 5,-258 }, { 6,-258 }, { 7,-258 }, { 8,-258 },
{ 9, 0 }, { 10,-2342 }, { 11,-258 }, { 12, 0 }, { 13,-2342 },
{ 14,-258 }, { 15,-258 }, { 16,-258 }, { 17,-258 }, { 18,-258 },
{ 19,-258 }, { 20,-258 }, { 21,-258 }, { 22,-258 }, { 23,-258 },
{ 24,-258 }, { 25,-258 }, { 26,-258 }, { 27,-258 }, { 28,-258 },
{ 29,-258 }, { 30,-258 }, { 31,-258 }, { 32, 0 }, { 33,-258 },
{ 34,-258 }, { 35,-258 }, { 36,-258 }, { 37,-258 }, { 38,-258 },
{ 39, 258 }, { 40,-258 }, { 41,-258 }, { 42,-258 }, { 43,-258 },
{ 44,-258 }, { 45, 516 }, { 46,-258 }, { 47,-258 }, { 48,-258 },
{ 49,-258 }, { 50,-258 }, { 51,-258 }, { 52,-258 }, { 53,-258 },
{ 54,-258 }, { 55,-258 }, { 56,-258 }, { 57,-258 }, { 58,-258 },
{ 59,-258 }, { 60,-258 }, { 61,-258 }, { 62,-258 }, { 63,-258 },
{ 64,-258 }, { 65,-258 }, { 66,-258 }, { 67,-258 }, { 68,-258 },
{ 69,-258 }, { 70,-258 }, { 71,-258 }, { 72,-258 }, { 73,-258 },
{ 74,-258 }, { 75,-258 }, { 76,-258 }, { 77,-258 }, { 78,-258 },
{ 79,-258 }, { 80,-258 }, { 81,-258 }, { 82,-258 }, { 83,-258 },
{ 84,-258 }, { 85,-258 }, { 86,-258 }, { 87,-258 }, { 88,-258 },
{ 89,-258 }, { 90,-258 }, { 91,-258 }, { 92,-258 }, { 93,-258 },
{ 94,-258 }, { 95,-258 }, { 96,-258 }, { 97,-258 }, { 98,-258 },
{ 99,-258 }, { 100,-258 }, { 101,-258 }, { 102,-258 }, { 103,-258 },
{ 104,-258 }, { 105,-258 }, { 106,-258 }, { 107,-258 }, { 108,-258 },
{ 109,-258 }, { 110,-258 }, { 111,-258 }, { 112,-258 }, { 113,-258 },
{ 114,-258 }, { 115,-258 }, { 116,-258 }, { 117,-258 }, { 118,-258 },
{ 119,-258 }, { 120,-258 }, { 121,-258 }, { 122,-258 }, { 123,-258 },
{ 124,-258 }, { 125,-258 }, { 126,-258 }, { 127,-258 }, { 128,-258 },
{ 129,-258 }, { 130,-258 }, { 131,-258 }, { 132,-258 }, { 133,-258 },
{ 134,-258 }, { 135,-258 }, { 136,-258 }, { 137,-258 }, { 138,-258 },
{ 139,-258 }, { 140,-258 }, { 141,-258 }, { 142,-258 }, { 143,-258 },
{ 144,-258 }, { 145,-258 }, { 146,-258 }, { 147,-258 }, { 148,-258 },
{ 149,-258 }, { 150,-258 }, { 151,-258 }, { 152,-258 }, { 153,-258 },
{ 154,-258 }, { 155,-258 }, { 156,-258 }, { 157,-258 }, { 158,-258 },
{ 159,-258 }, { 160,-258 }, { 161,-258 }, { 162,-258 }, { 163,-258 },
{ 164,-258 }, { 165,-258 }, { 166,-258 }, { 167,-258 }, { 168,-258 },
{ 169,-258 }, { 170,-258 }, { 171,-258 }, { 172,-258 }, { 173,-258 },
{ 174,-258 }, { 175,-258 }, { 176,-258 }, { 177,-258 }, { 178,-258 },
{ 179,-258 }, { 180,-258 }, { 181,-258 }, { 182,-258 }, { 183,-258 },
{ 184,-258 }, { 185,-258 }, { 186,-258 }, { 187,-258 }, { 188,-258 },
{ 189,-258 }, { 190,-258 }, { 191,-258 }, { 192,-258 }, { 193,-258 },
{ 194,-258 }, { 195,-258 }, { 196,-258 }, { 197,-258 }, { 198,-258 },
{ 199,-258 }, { 200,-258 }, { 201,-258 }, { 202,-258 }, { 203,-258 },
{ 204,-258 }, { 205,-258 }, { 206,-258 }, { 207,-258 }, { 208,-258 },
{ 209,-258 }, { 210,-258 }, { 211,-258 }, { 212,-258 }, { 213,-258 },
{ 214,-258 }, { 215,-258 }, { 216,-258 }, { 217,-258 }, { 218,-258 },
{ 219,-258 }, { 220,-258 }, { 221,-258 }, { 222,-258 }, { 223,-258 },
{ 224,-258 }, { 225,-258 }, { 226,-258 }, { 227,-258 }, { 228,-258 },
{ 229,-258 }, { 230,-258 }, { 231,-258 }, { 232,-258 }, { 233,-258 },
{ 234,-258 }, { 235,-258 }, { 236,-258 }, { 237,-258 }, { 238,-258 },
{ 239,-258 }, { 240,-258 }, { 241,-258 }, { 242,-258 }, { 243,-258 },
{ 244,-258 }, { 245,-258 }, { 246,-258 }, { 247,-258 }, { 248,-258 },
{ 249,-258 }, { 250,-258 }, { 251,-258 }, { 252,-258 }, { 253,-258 },
{ 254,-258 }, { 255,-258 }, { 256,-258 }, { 0, 28 }, { 0,3706 },
{ 1,1595 }, { 2,1595 }, { 3,1595 }, { 4,1595 }, { 5,1595 },
{ 6,1595 }, { 7,1595 }, { 8,1595 }, { 9,1853 }, { 10,2111 },
{ 11,1595 }, { 12,1853 }, { 13,2111 }, { 14,1595 }, { 15,1595 },
{ 16,1595 }, { 17,1595 }, { 18,1595 }, { 19,1595 }, { 20,1595 },
{ 21,1595 }, { 22,1595 }, { 23,1595 }, { 24,1595 }, { 25,1595 },
{ 26,1595 }, { 27,1595 }, { 28,1595 }, { 29,1595 }, { 30,1595 },
{ 31,1595 }, { 32,1853 }, { 33,1595 }, { 34,1595 }, { 35,1595 },
{ 36,1595 }, { 37,1595 }, { 38,1595 }, { 39, 0 }, { 40,1595 },
{ 41,1595 }, { 42,1595 }, { 43,1595 }, { 44,1595 }, { 45,2158 },
{ 46,1595 }, { 47,1595 }, { 48,1595 }, { 49,1595 }, { 50,1595 },
{ 51,1595 }, { 52,1595 }, { 53,1595 }, { 54,1595 }, { 55,1595 },
{ 56,1595 }, { 57,1595 }, { 58,1595 }, { 59,1595 }, { 60,1595 },
{ 61,1595 }, { 62,1595 }, { 63,1595 }, { 64,1595 }, { 65,1595 },
{ 66,1595 }, { 67,1595 }, { 68,1595 }, { 69,1595 }, { 70,1595 },
{ 71,1595 }, { 72,1595 }, { 73,1595 }, { 74,1595 }, { 75,1595 },
{ 76,1595 }, { 77,1595 }, { 78,1595 }, { 79,1595 }, { 80,1595 },
{ 81,1595 }, { 82,1595 }, { 83,1595 }, { 84,1595 }, { 85,1595 },
{ 86,1595 }, { 87,1595 }, { 88,1595 }, { 89,1595 }, { 90,1595 },
{ 91,1595 }, { 92,1595 }, { 93,1595 }, { 94,1595 }, { 95,1595 },
{ 96,1595 }, { 97,1595 }, { 98,1595 }, { 99,1595 }, { 100,1595 },
{ 101,1595 }, { 102,1595 }, { 103,1595 }, { 104,1595 }, { 105,1595 },
{ 106,1595 }, { 107,1595 }, { 108,1595 }, { 109,1595 }, { 110,1595 },
{ 111,1595 }, { 112,1595 }, { 113,1595 }, { 114,1595 }, { 115,1595 },
{ 116,1595 }, { 117,1595 }, { 118,1595 }, { 119,1595 }, { 120,1595 },
{ 121,1595 }, { 122,1595 }, { 123,1595 }, { 124,1595 }, { 125,1595 },
{ 126,1595 }, { 127,1595 }, { 128,1595 }, { 129,1595 }, { 130,1595 },
{ 131,1595 }, { 132,1595 }, { 133,1595 }, { 134,1595 }, { 135,1595 },
{ 136,1595 }, { 137,1595 }, { 138,1595 }, { 139,1595 }, { 140,1595 },
{ 141,1595 }, { 142,1595 }, { 143,1595 }, { 144,1595 }, { 145,1595 },
{ 146,1595 }, { 147,1595 }, { 148,1595 }, { 149,1595 }, { 150,1595 },
{ 151,1595 }, { 152,1595 }, { 153,1595 }, { 154,1595 }, { 155,1595 },
{ 156,1595 }, { 157,1595 }, { 158,1595 }, { 159,1595 }, { 160,1595 },
{ 161,1595 }, { 162,1595 }, { 163,1595 }, { 164,1595 }, { 165,1595 },
{ 166,1595 }, { 167,1595 }, { 168,1595 }, { 169,1595 }, { 170,1595 },
{ 171,1595 }, { 172,1595 }, { 173,1595 }, { 174,1595 }, { 175,1595 },
{ 176,1595 }, { 177,1595 }, { 178,1595 }, { 179,1595 }, { 180,1595 },
{ 181,1595 }, { 182,1595 }, { 183,1595 }, { 184,1595 }, { 185,1595 },
{ 186,1595 }, { 187,1595 }, { 188,1595 }, { 189,1595 }, { 190,1595 },
{ 191,1595 }, { 192,1595 }, { 193,1595 }, { 194,1595 }, { 195,1595 },
{ 196,1595 }, { 197,1595 }, { 198,1595 }, { 199,1595 }, { 200,1595 },
{ 201,1595 }, { 202,1595 }, { 203,1595 }, { 204,1595 }, { 205,1595 },
{ 206,1595 }, { 207,1595 }, { 208,1595 }, { 209,1595 }, { 210,1595 },
{ 211,1595 }, { 212,1595 }, { 213,1595 }, { 214,1595 }, { 215,1595 },
{ 216,1595 }, { 217,1595 }, { 218,1595 }, { 219,1595 }, { 220,1595 },
{ 221,1595 }, { 222,1595 }, { 223,1595 }, { 224,1595 }, { 225,1595 },
{ 226,1595 }, { 227,1595 }, { 228,1595 }, { 229,1595 }, { 230,1595 },
{ 231,1595 }, { 232,1595 }, { 233,1595 }, { 234,1595 }, { 235,1595 },
{ 236,1595 }, { 237,1595 }, { 238,1595 }, { 239,1595 }, { 240,1595 },
{ 241,1595 }, { 242,1595 }, { 243,1595 }, { 244,1595 }, { 245,1595 },
{ 246,1595 }, { 247,1595 }, { 248,1595 }, { 249,1595 }, { 250,1595 },
{ 251,1595 }, { 252,1595 }, { 253,1595 }, { 254,1595 }, { 255,1595 },
{ 256,1595 }, { 0, 28 }, { 0,3448 }, { 1,-774 }, { 2,-774 },
{ 3,-774 }, { 4,-774 }, { 5,-774 }, { 6,-774 }, { 7,-774 },
{ 8,-774 }, { 9,-516 }, { 10,-2858 }, { 11,-774 }, { 12,-516 },
{ 13,-2858 }, { 14,-774 }, { 15,-774 }, { 16,-774 }, { 17,-774 },
{ 18,-774 }, { 19,-774 }, { 20,-774 }, { 21,-774 }, { 22,-774 },
{ 23,-774 }, { 24,-774 }, { 25,-774 }, { 26,-774 }, { 27,-774 },
{ 28,-774 }, { 29,-774 }, { 30,-774 }, { 31,-774 }, { 32,-516 },
{ 33,-774 }, { 34,-774 }, { 35,-774 }, { 36,-774 }, { 37,-774 },
{ 38,-774 }, { 39,-258 }, { 40,-774 }, { 41,-774 }, { 42,-774 },
{ 43,-774 }, { 44,-774 }, { 45,2158 }, { 46,-774 }, { 47,-774 },
{ 48,-774 }, { 49,-774 }, { 50,-774 }, { 51,-774 }, { 52,-774 },
{ 53,-774 }, { 54,-774 }, { 55,-774 }, { 56,-774 }, { 57,-774 },
{ 58,-774 }, { 59,-774 }, { 60,-774 }, { 61,-774 }, { 62,-774 },
{ 63,-774 }, { 64,-774 }, { 65,-774 }, { 66,-774 }, { 67,-774 },
{ 68,-774 }, { 69,-774 }, { 70,-774 }, { 71,-774 }, { 72,-774 },
{ 73,-774 }, { 74,-774 }, { 75,-774 }, { 76,-774 }, { 77,-774 },
{ 78,-774 }, { 79,-774 }, { 80,-774 }, { 81,-774 }, { 82,-774 },
{ 83,-774 }, { 84,-774 }, { 85,-774 }, { 86,-774 }, { 87,-774 },
{ 88,-774 }, { 89,-774 }, { 90,-774 }, { 91,-774 }, { 92,-774 },
{ 93,-774 }, { 94,-774 }, { 95,-774 }, { 96,-774 }, { 97,-774 },
{ 98,-774 }, { 99,-774 }, { 100,-774 }, { 101,-774 }, { 102,-774 },
{ 103,-774 }, { 104,-774 }, { 105,-774 }, { 106,-774 }, { 107,-774 },
{ 108,-774 }, { 109,-774 }, { 110,-774 }, { 111,-774 }, { 112,-774 },
{ 113,-774 }, { 114,-774 }, { 115,-774 }, { 116,-774 }, { 117,-774 },
{ 118,-774 }, { 119,-774 }, { 120,-774 }, { 121,-774 }, { 122,-774 },
{ 123,-774 }, { 124,-774 }, { 125,-774 }, { 126,-774 }, { 127,-774 },
{ 128,-774 }, { 129,-774 }, { 130,-774 }, { 131,-774 }, { 132,-774 },
{ 133,-774 }, { 134,-774 }, { 135,-774 }, { 136,-774 }, { 137,-774 },
{ 138,-774 }, { 139,-774 }, { 140,-774 }, { 141,-774 }, { 142,-774 },
{ 143,-774 }, { 144,-774 }, { 145,-774 }, { 146,-774 }, { 147,-774 },
{ 148,-774 }, { 149,-774 }, { 150,-774 }, { 151,-774 }, { 152,-774 },
{ 153,-774 }, { 154,-774 }, { 155,-774 }, { 156,-774 }, { 157,-774 },
{ 158,-774 }, { 159,-774 }, { 160,-774 }, { 161,-774 }, { 162,-774 },
{ 163,-774 }, { 164,-774 }, { 165,-774 }, { 166,-774 }, { 167,-774 },
{ 168,-774 }, { 169,-774 }, { 170,-774 }, { 171,-774 }, { 172,-774 },
{ 173,-774 }, { 174,-774 }, { 175,-774 }, { 176,-774 }, { 177,-774 },
{ 178,-774 }, { 179,-774 }, { 180,-774 }, { 181,-774 }, { 182,-774 },
{ 183,-774 }, { 184,-774 }, { 185,-774 }, { 186,-774 }, { 187,-774 },
{ 188,-774 }, { 189,-774 }, { 190,-774 }, { 191,-774 }, { 192,-774 },
{ 193,-774 }, { 194,-774 }, { 195,-774 }, { 196,-774 }, { 197,-774 },
{ 198,-774 }, { 199,-774 }, { 200,-774 }, { 201,-774 }, { 202,-774 },
{ 203,-774 }, { 204,-774 }, { 205,-774 }, { 206,-774 }, { 207,-774 },
{ 208,-774 }, { 209,-774 }, { 210,-774 }, { 211,-774 }, { 212,-774 },
{ 213,-774 }, { 214,-774 }, { 215,-774 }, { 216,-774 }, { 217,-774 },
{ 218,-774 }, { 219,-774 }, { 220,-774 }, { 221,-774 }, { 222,-774 },
{ 223,-774 }, { 224,-774 }, { 225,-774 }, { 226,-774 }, { 227,-774 },
{ 228,-774 }, { 229,-774 }, { 230,-774 }, { 231,-774 }, { 232,-774 },
{ 233,-774 }, { 234,-774 }, { 235,-774 }, { 236,-774 }, { 237,-774 },
{ 238,-774 }, { 239,-774 }, { 240,-774 }, { 241,-774 }, { 242,-774 },
{ 243,-774 }, { 244,-774 }, { 245,-774 }, { 246,-774 }, { 247,-774 },
{ 248,-774 }, { 249,-774 }, { 250,-774 }, { 251,-774 }, { 252,-774 },
{ 253,-774 }, { 254,-774 }, { 255,-774 }, { 256,-774 }, { 0, 55 },
{ 0,3190 }, { 1,-2064 }, { 2,-2064 }, { 3,-2064 }, { 4,-2064 },
{ 5,-2064 }, { 6,-2064 }, { 7,-2064 }, { 8,-2064 }, { 9,-1806 },
{ 10,-3421 }, { 11,-2064 }, { 12,-1806 }, { 13,-3421 }, { 14,-2064 },
{ 15,-2064 }, { 16,-2064 }, { 17,-2064 }, { 18,-2064 }, { 19,-2064 },
{ 20,-2064 }, { 21,-2064 }, { 22,-2064 }, { 23,-2064 }, { 24,-2064 },
{ 25,-2064 }, { 26,-2064 }, { 27,-2064 }, { 28,-2064 }, { 29,-2064 },
{ 30,-2064 }, { 31,-2064 }, { 32,-1806 }, { 33,-2064 }, { 34,-2064 },
{ 35,-2064 }, { 36,-2064 }, { 37,-2064 }, { 38,-2064 }, { 39,2158 },
{ 40,-2064 }, { 41,-2064 }, { 42,-2064 }, { 43,-2064 }, { 44,-2064 },
{ 45,-1290 }, { 46,-2064 }, { 47,-2064 }, { 48,-2064 }, { 49,-2064 },
{ 50,-2064 }, { 51,-2064 }, { 52,-2064 }, { 53,-2064 }, { 54,-2064 },
{ 55,-2064 }, { 56,-2064 }, { 57,-2064 }, { 58,-2064 }, { 59,-2064 },
{ 60,-2064 }, { 61,-2064 }, { 62,-2064 }, { 63,-2064 }, { 64,-2064 },
{ 65,-2064 }, { 66,-2064 }, { 67,-2064 }, { 68,-2064 }, { 69,-2064 },
{ 70,-2064 }, { 71,-2064 }, { 72,-2064 }, { 73,-2064 }, { 74,-2064 },
{ 75,-2064 }, { 76,-2064 }, { 77,-2064 }, { 78,-2064 }, { 79,-2064 },
{ 80,-2064 }, { 81,-2064 }, { 82,-2064 }, { 83,-2064 }, { 84,-2064 },
{ 85,-2064 }, { 86,-2064 }, { 87,-2064 }, { 88,-2064 }, { 89,-2064 },
{ 90,-2064 }, { 91,-2064 }, { 92,-2064 }, { 93,-2064 }, { 94,-2064 },
{ 95,-2064 }, { 96,-2064 }, { 97,-2064 }, { 98,-2064 }, { 99,-2064 },
{ 100,-2064 }, { 101,-2064 }, { 102,-2064 }, { 103,-2064 }, { 104,-2064 },
{ 105,-2064 }, { 106,-2064 }, { 107,-2064 }, { 108,-2064 }, { 109,-2064 },
{ 110,-2064 }, { 111,-2064 }, { 112,-2064 }, { 113,-2064 }, { 114,-2064 },
{ 115,-2064 }, { 116,-2064 }, { 117,-2064 }, { 118,-2064 }, { 119,-2064 },
{ 120,-2064 }, { 121,-2064 }, { 122,-2064 }, { 123,-2064 }, { 124,-2064 },
{ 125,-2064 }, { 126,-2064 }, { 127,-2064 }, { 128,-2064 }, { 129,-2064 },
{ 130,-2064 }, { 131,-2064 }, { 132,-2064 }, { 133,-2064 }, { 134,-2064 },
{ 135,-2064 }, { 136,-2064 }, { 137,-2064 }, { 138,-2064 }, { 139,-2064 },
{ 140,-2064 }, { 141,-2064 }, { 142,-2064 }, { 143,-2064 }, { 144,-2064 },
{ 145,-2064 }, { 146,-2064 }, { 147,-2064 }, { 148,-2064 }, { 149,-2064 },
{ 150,-2064 }, { 151,-2064 }, { 152,-2064 }, { 153,-2064 }, { 154,-2064 },
{ 155,-2064 }, { 156,-2064 }, { 157,-2064 }, { 158,-2064 }, { 159,-2064 },
{ 160,-2064 }, { 161,-2064 }, { 162,-2064 }, { 163,-2064 }, { 164,-2064 },
{ 165,-2064 }, { 166,-2064 }, { 167,-2064 }, { 168,-2064 }, { 169,-2064 },
{ 170,-2064 }, { 171,-2064 }, { 172,-2064 }, { 173,-2064 }, { 174,-2064 },
{ 175,-2064 }, { 176,-2064 }, { 177,-2064 }, { 178,-2064 }, { 179,-2064 },
{ 180,-2064 }, { 181,-2064 }, { 182,-2064 }, { 183,-2064 }, { 184,-2064 },
{ 185,-2064 }, { 186,-2064 }, { 187,-2064 }, { 188,-2064 }, { 189,-2064 },
{ 190,-2064 }, { 191,-2064 }, { 192,-2064 }, { 193,-2064 }, { 194,-2064 },
{ 195,-2064 }, { 196,-2064 }, { 197,-2064 }, { 198,-2064 }, { 199,-2064 },
{ 200,-2064 }, { 201,-2064 }, { 202,-2064 }, { 203,-2064 }, { 204,-2064 },
{ 205,-2064 }, { 206,-2064 }, { 207,-2064 }, { 208,-2064 }, { 209,-2064 },
{ 210,-2064 }, { 211,-2064 }, { 212,-2064 }, { 213,-2064 }, { 214,-2064 },
{ 215,-2064 }, { 216,-2064 }, { 217,-2064 }, { 218,-2064 }, { 219,-2064 },
{ 220,-2064 }, { 221,-2064 }, { 222,-2064 }, { 223,-2064 }, { 224,-2064 },
{ 225,-2064 }, { 226,-2064 }, { 227,-2064 }, { 228,-2064 }, { 229,-2064 },
{ 230,-2064 }, { 231,-2064 }, { 232,-2064 }, { 233,-2064 }, { 234,-2064 },
{ 235,-2064 }, { 236,-2064 }, { 237,-2064 }, { 238,-2064 }, { 239,-2064 },
{ 240,-2064 }, { 241,-2064 }, { 242,-2064 }, { 243,-2064 }, { 244,-2064 },
{ 245,-2064 }, { 246,-2064 }, { 247,-2064 }, { 248,-2064 }, { 249,-2064 },
{ 250,-2064 }, { 251,-2064 }, { 252,-2064 }, { 253,-2064 }, { 254,-2064 },
{ 255,-2064 }, { 256,-2064 }, { 0, 55 }, { 0,2932 }, { 1,-2322 },
{ 2,-2322 }, { 3,-2322 }, { 4,-2322 }, { 5,-2322 }, { 6,-2322 },
{ 7,-2322 }, { 8,-2322 }, { 9,-2064 }, { 10,-3679 }, { 11,-2322 },
{ 12,-2064 }, { 13,-3679 }, { 14,-2322 }, { 15,-2322 }, { 16,-2322 },
{ 17,-2322 }, { 18,-2322 }, { 19,-2322 }, { 20,-2322 }, { 21,-2322 },
{ 22,-2322 }, { 23,-2322 }, { 24,-2322 }, { 25,-2322 }, { 26,-2322 },
{ 27,-2322 }, { 28,-2322 }, { 29,-2322 }, { 30,-2322 }, { 31,-2322 },
{ 32,-2064 }, { 33,-2322 }, { 34,-2322 }, { 35,-2322 }, { 36,-2322 },
{ 37,-2322 }, { 38,-2322 }, { 39,1900 }, { 40,-2322 }, { 41,-2322 },
{ 42,-2322 }, { 43,-2322 }, { 44,-2322 }, { 45,-1548 }, { 46,-2322 },
{ 47,-2322 }, { 48,-2322 }, { 49,-2322 }, { 50,-2322 }, { 51,-2322 },
{ 52,-2322 }, { 53,-2322 }, { 54,-2322 }, { 55,-2322 }, { 56,-2322 },
{ 57,-2322 }, { 58,-2322 }, { 59,-2322 }, { 60,-2322 }, { 61,-2322 },
{ 62,-2322 }, { 63,-2322 }, { 64,-2322 }, { 65,-2322 }, { 66,-2322 },
{ 67,-2322 }, { 68,-2322 }, { 69,-2322 }, { 70,-2322 }, { 71,-2322 },
{ 72,-2322 }, { 73,-2322 }, { 74,-2322 }, { 75,-2322 }, { 76,-2322 },
{ 77,-2322 }, { 78,-2322 }, { 79,-2322 }, { 80,-2322 }, { 81,-2322 },
{ 82,-2322 }, { 83,-2322 }, { 84,-2322 }, { 85,-2322 }, { 86,-2322 },
{ 87,-2322 }, { 88,-2322 }, { 89,-2322 }, { 90,-2322 }, { 91,-2322 },
{ 92,-2322 }, { 93,-2322 }, { 94,-2322 }, { 95,-2322 }, { 96,-2322 },
{ 97,-2322 }, { 98,-2322 }, { 99,-2322 }, { 100,-2322 }, { 101,-2322 },
{ 102,-2322 }, { 103,-2322 }, { 104,-2322 }, { 105,-2322 }, { 106,-2322 },
{ 107,-2322 }, { 108,-2322 }, { 109,-2322 }, { 110,-2322 }, { 111,-2322 },
{ 112,-2322 }, { 113,-2322 }, { 114,-2322 }, { 115,-2322 }, { 116,-2322 },
{ 117,-2322 }, { 118,-2322 }, { 119,-2322 }, { 120,-2322 }, { 121,-2322 },
{ 122,-2322 }, { 123,-2322 }, { 124,-2322 }, { 125,-2322 }, { 126,-2322 },
{ 127,-2322 }, { 128,-2322 }, { 129,-2322 }, { 130,-2322 }, { 131,-2322 },
{ 132,-2322 }, { 133,-2322 }, { 134,-2322 }, { 135,-2322 }, { 136,-2322 },
{ 137,-2322 }, { 138,-2322 }, { 139,-2322 }, { 140,-2322 }, { 141,-2322 },
{ 142,-2322 }, { 143,-2322 }, { 144,-2322 }, { 145,-2322 }, { 146,-2322 },
{ 147,-2322 }, { 148,-2322 }, { 149,-2322 }, { 150,-2322 }, { 151,-2322 },
{ 152,-2322 }, { 153,-2322 }, { 154,-2322 }, { 155,-2322 }, { 156,-2322 },
{ 157,-2322 }, { 158,-2322 }, { 159,-2322 }, { 160,-2322 }, { 161,-2322 },
{ 162,-2322 }, { 163,-2322 }, { 164,-2322 }, { 165,-2322 }, { 166,-2322 },
{ 167,-2322 }, { 168,-2322 }, { 169,-2322 }, { 170,-2322 }, { 171,-2322 },
{ 172,-2322 }, { 173,-2322 }, { 174,-2322 }, { 175,-2322 }, { 176,-2322 },
{ 177,-2322 }, { 178,-2322 }, { 179,-2322 }, { 180,-2322 }, { 181,-2322 },
{ 182,-2322 }, { 183,-2322 }, { 184,-2322 }, { 185,-2322 }, { 186,-2322 },
{ 187,-2322 }, { 188,-2322 }, { 189,-2322 }, { 190,-2322 }, { 191,-2322 },
{ 192,-2322 }, { 193,-2322 }, { 194,-2322 }, { 195,-2322 }, { 196,-2322 },
{ 197,-2322 }, { 198,-2322 }, { 199,-2322 }, { 200,-2322 }, { 201,-2322 },
{ 202,-2322 }, { 203,-2322 }, { 204,-2322 }, { 205,-2322 }, { 206,-2322 },
{ 207,-2322 }, { 208,-2322 }, { 209,-2322 }, { 210,-2322 }, { 211,-2322 },
{ 212,-2322 }, { 213,-2322 }, { 214,-2322 }, { 215,-2322 }, { 216,-2322 },
{ 217,-2322 }, { 218,-2322 }, { 219,-2322 }, { 220,-2322 }, { 221,-2322 },
{ 222,-2322 }, { 223,-2322 }, { 224,-2322 }, { 225,-2322 }, { 226,-2322 },
{ 227,-2322 }, { 228,-2322 }, { 229,-2322 }, { 230,-2322 }, { 231,-2322 },
{ 232,-2322 }, { 233,-2322 }, { 234,-2322 }, { 235,-2322 }, { 236,-2322 },
{ 237,-2322 }, { 238,-2322 }, { 239,-2322 }, { 240,-2322 }, { 241,-2322 },
{ 242,-2322 }, { 243,-2322 }, { 244,-2322 }, { 245,-2322 }, { 246,-2322 },
{ 247,-2322 }, { 248,-2322 }, { 249,-2322 }, { 250,-2322 }, { 251,-2322 },
{ 252,-2322 }, { 253,-2322 }, { 254,-2322 }, { 255,-2322 }, { 256,-2322 },
{ 0, 55 }, { 0,2674 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 9,-3937 }, { 10,-3937 }, { 0, 0 }, { 12,-3937 }, { 13,-3937 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-3937 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 39,1900 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 45,-25685 }, { 0, 55 }, { 0,2627 }, { 1,-2627 },
{ 2,-2627 }, { 3,-2627 }, { 4,-2627 }, { 5,-2627 }, { 6,-2627 },
{ 7,-2627 }, { 8,-2627 }, { 9,-2369 }, { 10,-3984 }, { 11,-2627 },
{ 12,-2369 }, { 13,-3984 }, { 14,-2627 }, { 15,-2627 }, { 16,-2627 },
{ 17,-2627 }, { 18,-2627 }, { 19,-2627 }, { 20,-2627 }, { 21,-2627 },
{ 22,-2627 }, { 23,-2627 }, { 24,-2627 }, { 25,-2627 }, { 26,-2627 },
{ 27,-2627 }, { 28,-2627 }, { 29,-2627 }, { 30,-2627 }, { 31,-2627 },
{ 32,-2369 }, { 33,-2627 }, { 34,-2627 }, { 35,-2627 }, { 36,-2627 },
{ 37,-2627 }, { 38,-2627 }, { 39,1595 }, { 40,-2627 }, { 41,-2627 },
{ 42,-2627 }, { 43,-2627 }, { 44,-2627 }, { 45, 258 }, { 46,-2627 },
{ 47,-2627 }, { 48,-2627 }, { 49,-2627 }, { 50,-2627 }, { 51,-2627 },
{ 52,-2627 }, { 53,-2627 }, { 54,-2627 }, { 55,-2627 }, { 56,-2627 },
{ 57,-2627 }, { 58,-2627 }, { 59,-2627 }, { 60,-2627 }, { 61,-2627 },
{ 62,-2627 }, { 63,-2627 }, { 64,-2627 }, { 65,-2627 }, { 66,-2627 },
{ 67,-2627 }, { 68,-2627 }, { 69,-2627 }, { 70,-2627 }, { 71,-2627 },
{ 72,-2627 }, { 73,-2627 }, { 74,-2627 }, { 75,-2627 }, { 76,-2627 },
{ 77,-2627 }, { 78,-2627 }, { 79,-2627 }, { 80,-2627 }, { 81,-2627 },
{ 82,-2627 }, { 83,-2627 }, { 84,-2627 }, { 85,-2627 }, { 86,-2627 },
{ 87,-2627 }, { 88,-2627 }, { 89,-2627 }, { 90,-2627 }, { 91,-2627 },
{ 92,-2627 }, { 93,-2627 }, { 94,-2627 }, { 95,-2627 }, { 96,-2627 },
{ 97,-2627 }, { 98,-2627 }, { 99,-2627 }, { 100,-2627 }, { 101,-2627 },
{ 102,-2627 }, { 103,-2627 }, { 104,-2627 }, { 105,-2627 }, { 106,-2627 },
{ 107,-2627 }, { 108,-2627 }, { 109,-2627 }, { 110,-2627 }, { 111,-2627 },
{ 112,-2627 }, { 113,-2627 }, { 114,-2627 }, { 115,-2627 }, { 116,-2627 },
{ 117,-2627 }, { 118,-2627 }, { 119,-2627 }, { 120,-2627 }, { 121,-2627 },
{ 122,-2627 }, { 123,-2627 }, { 124,-2627 }, { 125,-2627 }, { 126,-2627 },
{ 127,-2627 }, { 128,-2627 }, { 129,-2627 }, { 130,-2627 }, { 131,-2627 },
{ 132,-2627 }, { 133,-2627 }, { 134,-2627 }, { 135,-2627 }, { 136,-2627 },
{ 137,-2627 }, { 138,-2627 }, { 139,-2627 }, { 140,-2627 }, { 141,-2627 },
{ 142,-2627 }, { 143,-2627 }, { 144,-2627 }, { 145,-2627 }, { 146,-2627 },
{ 147,-2627 }, { 148,-2627 }, { 149,-2627 }, { 150,-2627 }, { 151,-2627 },
{ 152,-2627 }, { 153,-2627 }, { 154,-2627 }, { 155,-2627 }, { 156,-2627 },
{ 157,-2627 }, { 158,-2627 }, { 159,-2627 }, { 160,-2627 }, { 161,-2627 },
{ 162,-2627 }, { 163,-2627 }, { 164,-2627 }, { 165,-2627 }, { 166,-2627 },
{ 167,-2627 }, { 168,-2627 }, { 169,-2627 }, { 170,-2627 }, { 171,-2627 },
{ 172,-2627 }, { 173,-2627 }, { 174,-2627 }, { 175,-2627 }, { 176,-2627 },
{ 177,-2627 }, { 178,-2627 }, { 179,-2627 }, { 180,-2627 }, { 181,-2627 },
{ 182,-2627 }, { 183,-2627 }, { 184,-2627 }, { 185,-2627 }, { 186,-2627 },
{ 187,-2627 }, { 188,-2627 }, { 189,-2627 }, { 190,-2627 }, { 191,-2627 },
{ 192,-2627 }, { 193,-2627 }, { 194,-2627 }, { 195,-2627 }, { 196,-2627 },
{ 197,-2627 }, { 198,-2627 }, { 199,-2627 }, { 200,-2627 }, { 201,-2627 },
{ 202,-2627 }, { 203,-2627 }, { 204,-2627 }, { 205,-2627 }, { 206,-2627 },
{ 207,-2627 }, { 208,-2627 }, { 209,-2627 }, { 210,-2627 }, { 211,-2627 },
{ 212,-2627 }, { 213,-2627 }, { 214,-2627 }, { 215,-2627 }, { 216,-2627 },
{ 217,-2627 }, { 218,-2627 }, { 219,-2627 }, { 220,-2627 }, { 221,-2627 },
{ 222,-2627 }, { 223,-2627 }, { 224,-2627 }, { 225,-2627 }, { 226,-2627 },
{ 227,-2627 }, { 228,-2627 }, { 229,-2627 }, { 230,-2627 }, { 231,-2627 },
{ 232,-2627 }, { 233,-2627 }, { 234,-2627 }, { 235,-2627 }, { 236,-2627 },
{ 237,-2627 }, { 238,-2627 }, { 239,-2627 }, { 240,-2627 }, { 241,-2627 },
{ 242,-2627 }, { 243,-2627 }, { 244,-2627 }, { 245,-2627 }, { 246,-2627 },
{ 247,-2627 }, { 248,-2627 }, { 249,-2627 }, { 250,-2627 }, { 251,-2627 },
{ 252,-2627 }, { 253,-2627 }, { 254,-2627 }, { 255,-2627 }, { 256,-2627 },
{ 0, 55 }, { 0,2369 }, { 1,-2885 }, { 2,-2885 }, { 3,-2885 },
{ 4,-2885 }, { 5,-2885 }, { 6,-2885 }, { 7,-2885 }, { 8,-2885 },
{ 9,-2627 }, { 10,-4242 }, { 11,-2885 }, { 12,-2627 }, { 13,-4242 },
{ 14,-2885 }, { 15,-2885 }, { 16,-2885 }, { 17,-2885 }, { 18,-2885 },
{ 19,-2885 }, { 20,-2885 }, { 21,-2885 }, { 22,-2885 }, { 23,-2885 },
{ 24,-2885 }, { 25,-2885 }, { 26,-2885 }, { 27,-2885 }, { 28,-2885 },
{ 29,-2885 }, { 30,-2885 }, { 31,-2885 }, { 32,-2627 }, { 33,-2885 },
{ 34,-2885 }, { 35,-2885 }, { 36,-2885 }, { 37,-2885 }, { 38,-2885 },
{ 39,-2369 }, { 40,-2885 }, { 41,-2885 }, { 42,-2885 }, { 43,-2885 },
{ 44,-2885 }, { 45, 0 }, { 46,-2885 }, { 47,-2885 }, { 48,-2885 },
{ 49,-2885 }, { 50,-2885 }, { 51,-2885 }, { 52,-2885 }, { 53,-2885 },
{ 54,-2885 }, { 55,-2885 }, { 56,-2885 }, { 57,-2885 }, { 58,-2885 },
{ 59,-2885 }, { 60,-2885 }, { 61,-2885 }, { 62,-2885 }, { 63,-2885 },
{ 64,-2885 }, { 65,-2885 }, { 66,-2885 }, { 67,-2885 }, { 68,-2885 },
{ 69,-2885 }, { 70,-2885 }, { 71,-2885 }, { 72,-2885 }, { 73,-2885 },
{ 74,-2885 }, { 75,-2885 }, { 76,-2885 }, { 77,-2885 }, { 78,-2885 },
{ 79,-2885 }, { 80,-2885 }, { 81,-2885 }, { 82,-2885 }, { 83,-2885 },
{ 84,-2885 }, { 85,-2885 }, { 86,-2885 }, { 87,-2885 }, { 88,-2885 },
{ 89,-2885 }, { 90,-2885 }, { 91,-2885 }, { 92,-2885 }, { 93,-2885 },
{ 94,-2885 }, { 95,-2885 }, { 96,-2885 }, { 97,-2885 }, { 98,-2885 },
{ 99,-2885 }, { 100,-2885 }, { 101,-2885 }, { 102,-2885 }, { 103,-2885 },
{ 104,-2885 }, { 105,-2885 }, { 106,-2885 }, { 107,-2885 }, { 108,-2885 },
{ 109,-2885 }, { 110,-2885 }, { 111,-2885 }, { 112,-2885 }, { 113,-2885 },
{ 114,-2885 }, { 115,-2885 }, { 116,-2885 }, { 117,-2885 }, { 118,-2885 },
{ 119,-2885 }, { 120,-2885 }, { 121,-2885 }, { 122,-2885 }, { 123,-2885 },
{ 124,-2885 }, { 125,-2885 }, { 126,-2885 }, { 127,-2885 }, { 128,-2885 },
{ 129,-2885 }, { 130,-2885 }, { 131,-2885 }, { 132,-2885 }, { 133,-2885 },
{ 134,-2885 }, { 135,-2885 }, { 136,-2885 }, { 137,-2885 }, { 138,-2885 },
{ 139,-2885 }, { 140,-2885 }, { 141,-2885 }, { 142,-2885 }, { 143,-2885 },
{ 144,-2885 }, { 145,-2885 }, { 146,-2885 }, { 147,-2885 }, { 148,-2885 },
{ 149,-2885 }, { 150,-2885 }, { 151,-2885 }, { 152,-2885 }, { 153,-2885 },
{ 154,-2885 }, { 155,-2885 }, { 156,-2885 }, { 157,-2885 }, { 158,-2885 },
{ 159,-2885 }, { 160,-2885 }, { 161,-2885 }, { 162,-2885 }, { 163,-2885 },
{ 164,-2885 }, { 165,-2885 }, { 166,-2885 }, { 167,-2885 }, { 168,-2885 },
{ 169,-2885 }, { 170,-2885 }, { 171,-2885 }, { 172,-2885 }, { 173,-2885 },
{ 174,-2885 }, { 175,-2885 }, { 176,-2885 }, { 177,-2885 }, { 178,-2885 },
{ 179,-2885 }, { 180,-2885 }, { 181,-2885 }, { 182,-2885 }, { 183,-2885 },
{ 184,-2885 }, { 185,-2885 }, { 186,-2885 }, { 187,-2885 }, { 188,-2885 },
{ 189,-2885 }, { 190,-2885 }, { 191,-2885 }, { 192,-2885 }, { 193,-2885 },
{ 194,-2885 }, { 195,-2885 }, { 196,-2885 }, { 197,-2885 }, { 198,-2885 },
{ 199,-2885 }, { 200,-2885 }, { 201,-2885 }, { 202,-2885 }, { 203,-2885 },
{ 204,-2885 }, { 205,-2885 }, { 206,-2885 }, { 207,-2885 }, { 208,-2885 },
{ 209,-2885 }, { 210,-2885 }, { 211,-2885 }, { 212,-2885 }, { 213,-2885 },
{ 214,-2885 }, { 215,-2885 }, { 216,-2885 }, { 217,-2885 }, { 218,-2885 },
{ 219,-2885 }, { 220,-2885 }, { 221,-2885 }, { 222,-2885 }, { 223,-2885 },
{ 224,-2885 }, { 225,-2885 }, { 226,-2885 }, { 227,-2885 }, { 228,-2885 },
{ 229,-2885 }, { 230,-2885 }, { 231,-2885 }, { 232,-2885 }, { 233,-2885 },
{ 234,-2885 }, { 235,-2885 }, { 236,-2885 }, { 237,-2885 }, { 238,-2885 },
{ 239,-2885 }, { 240,-2885 }, { 241,-2885 }, { 242,-2885 }, { 243,-2885 },
{ 244,-2885 }, { 245,-2885 }, { 246,-2885 }, { 247,-2885 }, { 248,-2885 },
{ 249,-2885 }, { 250,-2885 }, { 251,-2885 }, { 252,-2885 }, { 253,-2885 },
{ 254,-2885 }, { 255,-2885 }, { 256,-2885 }, { 0, 28 }, { 0,2111 },
{ 1,-2111 }, { 2,-2111 }, { 3,-2111 }, { 4,-2111 }, { 5,-2111 },
{ 6,-2111 }, { 7,-2111 }, { 8,-2111 }, { 9,-1853 }, { 10,-4195 },
{ 11,-2111 }, { 12,-1853 }, { 13,-4195 }, { 14,-2111 }, { 15,-2111 },
{ 16,-2111 }, { 17,-2111 }, { 18,-2111 }, { 19,-2111 }, { 20,-2111 },
{ 21,-2111 }, { 22,-2111 }, { 23,-2111 }, { 24,-2111 }, { 25,-2111 },
{ 26,-2111 }, { 27,-2111 }, { 28,-2111 }, { 29,-2111 }, { 30,-2111 },
{ 31,-2111 }, { 32,-1853 }, { 33,-2111 }, { 34,-2111 }, { 35,-2111 },
{ 36,-2111 }, { 37,-2111 }, { 38,-2111 }, { 39,1595 }, { 40,-2111 },
{ 41,-2111 }, { 42,-2111 }, { 43,-2111 }, { 44,-2111 }, { 45,-1337 },
{ 46,-2111 }, { 47,-2111 }, { 48,-2111 }, { 49,-2111 }, { 50,-2111 },
{ 51,-2111 }, { 52,-2111 }, { 53,-2111 }, { 54,-2111 }, { 55,-2111 },
{ 56,-2111 }, { 57,-2111 }, { 58,-2111 }, { 59,-2111 }, { 60,-2111 },
{ 61,-2111 }, { 62,-2111 }, { 63,-2111 }, { 64,-2111 }, { 65,-2111 },
{ 66,-2111 }, { 67,-2111 }, { 68,-2111 }, { 69,-2111 }, { 70,-2111 },
{ 71,-2111 }, { 72,-2111 }, { 73,-2111 }, { 74,-2111 }, { 75,-2111 },
{ 76,-2111 }, { 77,-2111 }, { 78,-2111 }, { 79,-2111 }, { 80,-2111 },
{ 81,-2111 }, { 82,-2111 }, { 83,-2111 }, { 84,-2111 }, { 85,-2111 },
{ 86,-2111 }, { 87,-2111 }, { 88,-2111 }, { 89,-2111 }, { 90,-2111 },
{ 91,-2111 }, { 92,-2111 }, { 93,-2111 }, { 94,-2111 }, { 95,-2111 },
{ 96,-2111 }, { 97,-2111 }, { 98,-2111 }, { 99,-2111 }, { 100,-2111 },
{ 101,-2111 }, { 102,-2111 }, { 103,-2111 }, { 104,-2111 }, { 105,-2111 },
{ 106,-2111 }, { 107,-2111 }, { 108,-2111 }, { 109,-2111 }, { 110,-2111 },
{ 111,-2111 }, { 112,-2111 }, { 113,-2111 }, { 114,-2111 }, { 115,-2111 },
{ 116,-2111 }, { 117,-2111 }, { 118,-2111 }, { 119,-2111 }, { 120,-2111 },
{ 121,-2111 }, { 122,-2111 }, { 123,-2111 }, { 124,-2111 }, { 125,-2111 },
{ 126,-2111 }, { 127,-2111 }, { 128,-2111 }, { 129,-2111 }, { 130,-2111 },
{ 131,-2111 }, { 132,-2111 }, { 133,-2111 }, { 134,-2111 }, { 135,-2111 },
{ 136,-2111 }, { 137,-2111 }, { 138,-2111 }, { 139,-2111 }, { 140,-2111 },
{ 141,-2111 }, { 142,-2111 }, { 143,-2111 }, { 144,-2111 }, { 145,-2111 },
{ 146,-2111 }, { 147,-2111 }, { 148,-2111 }, { 149,-2111 }, { 150,-2111 },
{ 151,-2111 }, { 152,-2111 }, { 153,-2111 }, { 154,-2111 }, { 155,-2111 },
{ 156,-2111 }, { 157,-2111 }, { 158,-2111 }, { 159,-2111 }, { 160,-2111 },
{ 161,-2111 }, { 162,-2111 }, { 163,-2111 }, { 164,-2111 }, { 165,-2111 },
{ 166,-2111 }, { 167,-2111 }, { 168,-2111 }, { 169,-2111 }, { 170,-2111 },
{ 171,-2111 }, { 172,-2111 }, { 173,-2111 }, { 174,-2111 }, { 175,-2111 },
{ 176,-2111 }, { 177,-2111 }, { 178,-2111 }, { 179,-2111 }, { 180,-2111 },
{ 181,-2111 }, { 182,-2111 }, { 183,-2111 }, { 184,-2111 }, { 185,-2111 },
{ 186,-2111 }, { 187,-2111 }, { 188,-2111 }, { 189,-2111 }, { 190,-2111 },
{ 191,-2111 }, { 192,-2111 }, { 193,-2111 }, { 194,-2111 }, { 195,-2111 },
{ 196,-2111 }, { 197,-2111 }, { 198,-2111 }, { 199,-2111 }, { 200,-2111 },
{ 201,-2111 }, { 202,-2111 }, { 203,-2111 }, { 204,-2111 }, { 205,-2111 },
{ 206,-2111 }, { 207,-2111 }, { 208,-2111 }, { 209,-2111 }, { 210,-2111 },
{ 211,-2111 }, { 212,-2111 }, { 213,-2111 }, { 214,-2111 }, { 215,-2111 },
{ 216,-2111 }, { 217,-2111 }, { 218,-2111 }, { 219,-2111 }, { 220,-2111 },
{ 221,-2111 }, { 222,-2111 }, { 223,-2111 }, { 224,-2111 }, { 225,-2111 },
{ 226,-2111 }, { 227,-2111 }, { 228,-2111 }, { 229,-2111 }, { 230,-2111 },
{ 231,-2111 }, { 232,-2111 }, { 233,-2111 }, { 234,-2111 }, { 235,-2111 },
{ 236,-2111 }, { 237,-2111 }, { 238,-2111 }, { 239,-2111 }, { 240,-2111 },
{ 241,-2111 }, { 242,-2111 }, { 243,-2111 }, { 244,-2111 }, { 245,-2111 },
{ 246,-2111 }, { 247,-2111 }, { 248,-2111 }, { 249,-2111 }, { 250,-2111 },
{ 251,-2111 }, { 252,-2111 }, { 253,-2111 }, { 254,-2111 }, { 255,-2111 },
{ 256,-2111 }, { 0, 28 }, { 0,1853 }, { 1,-2369 }, { 2,-2369 },
{ 3,-2369 }, { 4,-2369 }, { 5,-2369 }, { 6,-2369 }, { 7,-2369 },
{ 8,-2369 }, { 9,-2111 }, { 10,-4453 }, { 11,-2369 }, { 12,-2111 },
{ 13,-4453 }, { 14,-2369 }, { 15,-2369 }, { 16,-2369 }, { 17,-2369 },
{ 18,-2369 }, { 19,-2369 }, { 20,-2369 }, { 21,-2369 }, { 22,-2369 },
{ 23,-2369 }, { 24,-2369 }, { 25,-2369 }, { 26,-2369 }, { 27,-2369 },
{ 28,-2369 }, { 29,-2369 }, { 30,-2369 }, { 31,-2369 }, { 32,-2111 },
{ 33,-2369 }, { 34,-2369 }, { 35,-2369 }, { 36,-2369 }, { 37,-2369 },
{ 38,-2369 }, { 39,1337 }, { 40,-2369 }, { 41,-2369 }, { 42,-2369 },
{ 43,-2369 }, { 44,-2369 }, { 45,-1595 }, { 46,-2369 }, { 47,-2369 },
{ 48,-2369 }, { 49,-2369 }, { 50,-2369 }, { 51,-2369 }, { 52,-2369 },
{ 53,-2369 }, { 54,-2369 }, { 55,-2369 }, { 56,-2369 }, { 57,-2369 },
{ 58,-2369 }, { 59,-2369 }, { 60,-2369 }, { 61,-2369 }, { 62,-2369 },
{ 63,-2369 }, { 64,-2369 }, { 65,-2369 }, { 66,-2369 }, { 67,-2369 },
{ 68,-2369 }, { 69,-2369 }, { 70,-2369 }, { 71,-2369 }, { 72,-2369 },
{ 73,-2369 }, { 74,-2369 }, { 75,-2369 }, { 76,-2369 }, { 77,-2369 },
{ 78,-2369 }, { 79,-2369 }, { 80,-2369 }, { 81,-2369 }, { 82,-2369 },
{ 83,-2369 }, { 84,-2369 }, { 85,-2369 }, { 86,-2369 }, { 87,-2369 },
{ 88,-2369 }, { 89,-2369 }, { 90,-2369 }, { 91,-2369 }, { 92,-2369 },
{ 93,-2369 }, { 94,-2369 }, { 95,-2369 }, { 96,-2369 }, { 97,-2369 },
{ 98,-2369 }, { 99,-2369 }, { 100,-2369 }, { 101,-2369 }, { 102,-2369 },
{ 103,-2369 }, { 104,-2369 }, { 105,-2369 }, { 106,-2369 }, { 107,-2369 },
{ 108,-2369 }, { 109,-2369 }, { 110,-2369 }, { 111,-2369 }, { 112,-2369 },
{ 113,-2369 }, { 114,-2369 }, { 115,-2369 }, { 116,-2369 }, { 117,-2369 },
{ 118,-2369 }, { 119,-2369 }, { 120,-2369 }, { 121,-2369 }, { 122,-2369 },
{ 123,-2369 }, { 124,-2369 }, { 125,-2369 }, { 126,-2369 }, { 127,-2369 },
{ 128,-2369 }, { 129,-2369 }, { 130,-2369 }, { 131,-2369 }, { 132,-2369 },
{ 133,-2369 }, { 134,-2369 }, { 135,-2369 }, { 136,-2369 }, { 137,-2369 },
{ 138,-2369 }, { 139,-2369 }, { 140,-2369 }, { 141,-2369 }, { 142,-2369 },
{ 143,-2369 }, { 144,-2369 }, { 145,-2369 }, { 146,-2369 }, { 147,-2369 },
{ 148,-2369 }, { 149,-2369 }, { 150,-2369 }, { 151,-2369 }, { 152,-2369 },
{ 153,-2369 }, { 154,-2369 }, { 155,-2369 }, { 156,-2369 }, { 157,-2369 },
{ 158,-2369 }, { 159,-2369 }, { 160,-2369 }, { 161,-2369 }, { 162,-2369 },
{ 163,-2369 }, { 164,-2369 }, { 165,-2369 }, { 166,-2369 }, { 167,-2369 },
{ 168,-2369 }, { 169,-2369 }, { 170,-2369 }, { 171,-2369 }, { 172,-2369 },
{ 173,-2369 }, { 174,-2369 }, { 175,-2369 }, { 176,-2369 }, { 177,-2369 },
{ 178,-2369 }, { 179,-2369 }, { 180,-2369 }, { 181,-2369 }, { 182,-2369 },
{ 183,-2369 }, { 184,-2369 }, { 185,-2369 }, { 186,-2369 }, { 187,-2369 },
{ 188,-2369 }, { 189,-2369 }, { 190,-2369 }, { 191,-2369 }, { 192,-2369 },
{ 193,-2369 }, { 194,-2369 }, { 195,-2369 }, { 196,-2369 }, { 197,-2369 },
{ 198,-2369 }, { 199,-2369 }, { 200,-2369 }, { 201,-2369 }, { 202,-2369 },
{ 203,-2369 }, { 204,-2369 }, { 205,-2369 }, { 206,-2369 }, { 207,-2369 },
{ 208,-2369 }, { 209,-2369 }, { 210,-2369 }, { 211,-2369 }, { 212,-2369 },
{ 213,-2369 }, { 214,-2369 }, { 215,-2369 }, { 216,-2369 }, { 217,-2369 },
{ 218,-2369 }, { 219,-2369 }, { 220,-2369 }, { 221,-2369 }, { 222,-2369 },
{ 223,-2369 }, { 224,-2369 }, { 225,-2369 }, { 226,-2369 }, { 227,-2369 },
{ 228,-2369 }, { 229,-2369 }, { 230,-2369 }, { 231,-2369 }, { 232,-2369 },
{ 233,-2369 }, { 234,-2369 }, { 235,-2369 }, { 236,-2369 }, { 237,-2369 },
{ 238,-2369 }, { 239,-2369 }, { 240,-2369 }, { 241,-2369 }, { 242,-2369 },
{ 243,-2369 }, { 244,-2369 }, { 245,-2369 }, { 246,-2369 }, { 247,-2369 },
{ 248,-2369 }, { 249,-2369 }, { 250,-2369 }, { 251,-2369 }, { 252,-2369 },
{ 253,-2369 }, { 254,-2369 }, { 255,-2369 }, { 256,-2369 }, { 0, 28 },
{ 0,1595 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-4711 },
{ 10,-4711 }, { 0, 0 }, { 12,-4711 }, { 13,-4711 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 32,-4711 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 39,1337 },
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 45,-26753 }, { 0, 28 }, { 0,1548 }, { 1,-2674 }, { 2,-2674 },
{ 3,-2674 }, { 4,-2674 }, { 5,-2674 }, { 6,-2674 }, { 7,-2674 },
{ 8,-2674 }, { 9,-2416 }, { 10,-4758 }, { 11,-2674 }, { 12,-2416 },
{ 13,-4758 }, { 14,-2674 }, { 15,-2674 }, { 16,-2674 }, { 17,-2674 },
{ 18,-2674 }, { 19,-2674 }, { 20,-2674 }, { 21,-2674 }, { 22,-2674 },
{ 23,-2674 }, { 24,-2674 }, { 25,-2674 }, { 26,-2674 }, { 27,-2674 },
{ 28,-2674 }, { 29,-2674 }, { 30,-2674 }, { 31,-2674 }, { 32,-2416 },
{ 33,-2674 }, { 34,-2674 }, { 35,-2674 }, { 36,-2674 }, { 37,-2674 },
{ 38,-2674 }, { 39,1032 }, { 40,-2674 }, { 41,-2674 }, { 42,-2674 },
{ 43,-2674 }, { 44,-2674 }, { 45, 258 }, { 46,-2674 }, { 47,-2674 },
{ 48,-2674 }, { 49,-2674 }, { 50,-2674 }, { 51,-2674 }, { 52,-2674 },
{ 53,-2674 }, { 54,-2674 }, { 55,-2674 }, { 56,-2674 }, { 57,-2674 },
{ 58,-2674 }, { 59,-2674 }, { 60,-2674 }, { 61,-2674 }, { 62,-2674 },
{ 63,-2674 }, { 64,-2674 }, { 65,-2674 }, { 66,-2674 }, { 67,-2674 },
{ 68,-2674 }, { 69,-2674 }, { 70,-2674 }, { 71,-2674 }, { 72,-2674 },
{ 73,-2674 }, { 74,-2674 }, { 75,-2674 }, { 76,-2674 }, { 77,-2674 },
{ 78,-2674 }, { 79,-2674 }, { 80,-2674 }, { 81,-2674 }, { 82,-2674 },
{ 83,-2674 }, { 84,-2674 }, { 85,-2674 }, { 86,-2674 }, { 87,-2674 },
{ 88,-2674 }, { 89,-2674 }, { 90,-2674 }, { 91,-2674 }, { 92,-2674 },
{ 93,-2674 }, { 94,-2674 }, { 95,-2674 }, { 96,-2674 }, { 97,-2674 },
{ 98,-2674 }, { 99,-2674 }, { 100,-2674 }, { 101,-2674 }, { 102,-2674 },
{ 103,-2674 }, { 104,-2674 }, { 105,-2674 }, { 106,-2674 }, { 107,-2674 },
{ 108,-2674 }, { 109,-2674 }, { 110,-2674 }, { 111,-2674 }, { 112,-2674 },
{ 113,-2674 }, { 114,-2674 }, { 115,-2674 }, { 116,-2674 }, { 117,-2674 },
{ 118,-2674 }, { 119,-2674 }, { 120,-2674 }, { 121,-2674 }, { 122,-2674 },
{ 123,-2674 }, { 124,-2674 }, { 125,-2674 }, { 126,-2674 }, { 127,-2674 },
{ 128,-2674 }, { 129,-2674 }, { 130,-2674 }, { 131,-2674 }, { 132,-2674 },
{ 133,-2674 }, { 134,-2674 }, { 135,-2674 }, { 136,-2674 }, { 137,-2674 },
{ 138,-2674 }, { 139,-2674 }, { 140,-2674 }, { 141,-2674 }, { 142,-2674 },
{ 143,-2674 }, { 144,-2674 }, { 145,-2674 }, { 146,-2674 }, { 147,-2674 },
{ 148,-2674 }, { 149,-2674 }, { 150,-2674 }, { 151,-2674 }, { 152,-2674 },
{ 153,-2674 }, { 154,-2674 }, { 155,-2674 }, { 156,-2674 }, { 157,-2674 },
{ 158,-2674 }, { 159,-2674 }, { 160,-2674 }, { 161,-2674 }, { 162,-2674 },
{ 163,-2674 }, { 164,-2674 }, { 165,-2674 }, { 166,-2674 }, { 167,-2674 },
{ 168,-2674 }, { 169,-2674 }, { 170,-2674 }, { 171,-2674 }, { 172,-2674 },
{ 173,-2674 }, { 174,-2674 }, { 175,-2674 }, { 176,-2674 }, { 177,-2674 },
{ 178,-2674 }, { 179,-2674 }, { 180,-2674 }, { 181,-2674 }, { 182,-2674 },
{ 183,-2674 }, { 184,-2674 }, { 185,-2674 }, { 186,-2674 }, { 187,-2674 },
{ 188,-2674 }, { 189,-2674 }, { 190,-2674 }, { 191,-2674 }, { 192,-2674 },
{ 193,-2674 }, { 194,-2674 }, { 195,-2674 }, { 196,-2674 }, { 197,-2674 },
{ 198,-2674 }, { 199,-2674 }, { 200,-2674 }, { 201,-2674 }, { 202,-2674 },
{ 203,-2674 }, { 204,-2674 }, { 205,-2674 }, { 206,-2674 }, { 207,-2674 },
{ 208,-2674 }, { 209,-2674 }, { 210,-2674 }, { 211,-2674 }, { 212,-2674 },
{ 213,-2674 }, { 214,-2674 }, { 215,-2674 }, { 216,-2674 }, { 217,-2674 },
{ 218,-2674 }, { 219,-2674 }, { 220,-2674 }, { 221,-2674 }, { 222,-2674 },
{ 223,-2674 }, { 224,-2674 }, { 225,-2674 }, { 226,-2674 }, { 227,-2674 },
{ 228,-2674 }, { 229,-2674 }, { 230,-2674 }, { 231,-2674 }, { 232,-2674 },
{ 233,-2674 }, { 234,-2674 }, { 235,-2674 }, { 236,-2674 }, { 237,-2674 },
{ 238,-2674 }, { 239,-2674 }, { 240,-2674 }, { 241,-2674 }, { 242,-2674 },
{ 243,-2674 }, { 244,-2674 }, { 245,-2674 }, { 246,-2674 }, { 247,-2674 },
{ 248,-2674 }, { 249,-2674 }, { 250,-2674 }, { 251,-2674 }, { 252,-2674 },
{ 253,-2674 }, { 254,-2674 }, { 255,-2674 }, { 256,-2674 }, { 0, 28 },
{ 0,1290 }, { 1,-2932 }, { 2,-2932 }, { 3,-2932 }, { 4,-2932 },
{ 5,-2932 }, { 6,-2932 }, { 7,-2932 }, { 8,-2932 }, { 9,-2674 },
{ 10,-5016 }, { 11,-2932 }, { 12,-2674 }, { 13,-5016 }, { 14,-2932 },
{ 15,-2932 }, { 16,-2932 }, { 17,-2932 }, { 18,-2932 }, { 19,-2932 },
{ 20,-2932 }, { 21,-2932 }, { 22,-2932 }, { 23,-2932 }, { 24,-2932 },
{ 25,-2932 }, { 26,-2932 }, { 27,-2932 }, { 28,-2932 }, { 29,-2932 },
{ 30,-2932 }, { 31,-2932 }, { 32,-2674 }, { 33,-2932 }, { 34,-2932 },
{ 35,-2932 }, { 36,-2932 }, { 37,-2932 }, { 38,-2932 }, { 39,-2416 },
{ 40,-2932 }, { 41,-2932 }, { 42,-2932 }, { 43,-2932 }, { 44,-2932 },
{ 45, 0 }, { 46,-2932 }, { 47,-2932 }, { 48,-2932 }, { 49,-2932 },
{ 50,-2932 }, { 51,-2932 }, { 52,-2932 }, { 53,-2932 }, { 54,-2932 },
{ 55,-2932 }, { 56,-2932 }, { 57,-2932 }, { 58,-2932 }, { 59,-2932 },
{ 60,-2932 }, { 61,-2932 }, { 62,-2932 }, { 63,-2932 }, { 64,-2932 },
{ 65,-2932 }, { 66,-2932 }, { 67,-2932 }, { 68,-2932 }, { 69,-2932 },
{ 70,-2932 }, { 71,-2932 }, { 72,-2932 }, { 73,-2932 }, { 74,-2932 },
{ 75,-2932 }, { 76,-2932 }, { 77,-2932 }, { 78,-2932 }, { 79,-2932 },
{ 80,-2932 }, { 81,-2932 }, { 82,-2932 }, { 83,-2932 }, { 84,-2932 },
{ 85,-2932 }, { 86,-2932 }, { 87,-2932 }, { 88,-2932 }, { 89,-2932 },
{ 90,-2932 }, { 91,-2932 }, { 92,-2932 }, { 93,-2932 }, { 94,-2932 },
{ 95,-2932 }, { 96,-2932 }, { 97,-2932 }, { 98,-2932 }, { 99,-2932 },
{ 100,-2932 }, { 101,-2932 }, { 102,-2932 }, { 103,-2932 }, { 104,-2932 },
{ 105,-2932 }, { 106,-2932 }, { 107,-2932 }, { 108,-2932 }, { 109,-2932 },
{ 110,-2932 }, { 111,-2932 }, { 112,-2932 }, { 113,-2932 }, { 114,-2932 },
{ 115,-2932 }, { 116,-2932 }, { 117,-2932 }, { 118,-2932 }, { 119,-2932 },
{ 120,-2932 }, { 121,-2932 }, { 122,-2932 }, { 123,-2932 }, { 124,-2932 },
{ 125,-2932 }, { 126,-2932 }, { 127,-2932 }, { 128,-2932 }, { 129,-2932 },
{ 130,-2932 }, { 131,-2932 }, { 132,-2932 }, { 133,-2932 }, { 134,-2932 },
{ 135,-2932 }, { 136,-2932 }, { 137,-2932 }, { 138,-2932 }, { 139,-2932 },
{ 140,-2932 }, { 141,-2932 }, { 142,-2932 }, { 143,-2932 }, { 144,-2932 },
{ 145,-2932 }, { 146,-2932 }, { 147,-2932 }, { 148,-2932 }, { 149,-2932 },
{ 150,-2932 }, { 151,-2932 }, { 152,-2932 }, { 153,-2932 }, { 154,-2932 },
{ 155,-2932 }, { 156,-2932 }, { 157,-2932 }, { 158,-2932 }, { 159,-2932 },
{ 160,-2932 }, { 161,-2932 }, { 162,-2932 }, { 163,-2932 }, { 164,-2932 },
{ 165,-2932 }, { 166,-2932 }, { 167,-2932 }, { 168,-2932 }, { 169,-2932 },
{ 170,-2932 }, { 171,-2932 }, { 172,-2932 }, { 173,-2932 }, { 174,-2932 },
{ 175,-2932 }, { 176,-2932 }, { 177,-2932 }, { 178,-2932 }, { 179,-2932 },
{ 180,-2932 }, { 181,-2932 }, { 182,-2932 }, { 183,-2932 }, { 184,-2932 },
{ 185,-2932 }, { 186,-2932 }, { 187,-2932 }, { 188,-2932 }, { 189,-2932 },
{ 190,-2932 }, { 191,-2932 }, { 192,-2932 }, { 193,-2932 }, { 194,-2932 },
{ 195,-2932 }, { 196,-2932 }, { 197,-2932 }, { 198,-2932 }, { 199,-2932 },
{ 200,-2932 }, { 201,-2932 }, { 202,-2932 }, { 203,-2932 }, { 204,-2932 },
{ 205,-2932 }, { 206,-2932 }, { 207,-2932 }, { 208,-2932 }, { 209,-2932 },
{ 210,-2932 }, { 211,-2932 }, { 212,-2932 }, { 213,-2932 }, { 214,-2932 },
{ 215,-2932 }, { 216,-2932 }, { 217,-2932 }, { 218,-2932 }, { 219,-2932 },
{ 220,-2932 }, { 221,-2932 }, { 222,-2932 }, { 223,-2932 }, { 224,-2932 },
{ 225,-2932 }, { 226,-2932 }, { 227,-2932 }, { 228,-2932 }, { 229,-2932 },
{ 230,-2932 }, { 231,-2932 }, { 232,-2932 }, { 233,-2932 }, { 234,-2932 },
{ 235,-2932 }, { 236,-2932 }, { 237,-2932 }, { 238,-2932 }, { 239,-2932 },
{ 240,-2932 }, { 241,-2932 }, { 242,-2932 }, { 243,-2932 }, { 244,-2932 },
{ 245,-2932 }, { 246,-2932 }, { 247,-2932 }, { 248,-2932 }, { 249,-2932 },
{ 250,-2932 }, { 251,-2932 }, { 252,-2932 }, { 253,-2932 }, { 254,-2932 },
{ 255,-2932 }, { 256,-2932 }, { 0, 55 }, { 0,1032 }, { 1,-2158 },
{ 2,-2158 }, { 3,-2158 }, { 4,-2158 }, { 5,-2158 }, { 6,-2158 },
{ 7,-2158 }, { 8,-2158 }, { 9,-1900 }, { 10,-1642 }, { 11,-2158 },
{ 12,-1900 }, { 13,-1642 }, { 14,-2158 }, { 15,-2158 }, { 16,-2158 },
{ 17,-2158 }, { 18,-2158 }, { 19,-2158 }, { 20,-2158 }, { 21,-2158 },
{ 22,-2158 }, { 23,-2158 }, { 24,-2158 }, { 25,-2158 }, { 26,-2158 },
{ 27,-2158 }, { 28,-2158 }, { 29,-2158 }, { 30,-2158 }, { 31,-2158 },
{ 32,-1900 }, { 33,-2158 }, { 34,-2158 }, { 35,-2158 }, { 36,-2158 },
{ 37,-2158 }, { 38,-2158 }, { 39,-3706 }, { 40,-2158 }, { 41,-2158 },
{ 42,-2158 }, { 43,-2158 }, { 44,-2158 }, { 45,-1595 }, { 46,-2158 },
{ 47,-2158 }, { 48,-2158 }, { 49,-2158 }, { 50,-2158 }, { 51,-2158 },
{ 52,-2158 }, { 53,-2158 }, { 54,-2158 }, { 55,-2158 }, { 56,-2158 },
{ 57,-2158 }, { 58,-2158 }, { 59,-2158 }, { 60,-2158 }, { 61,-2158 },
{ 62,-2158 }, { 63,-2158 }, { 64,-2158 }, { 65,-2158 }, { 66,-2158 },
{ 67,-2158 }, { 68,-2158 }, { 69,-2158 }, { 70,-2158 }, { 71,-2158 },
{ 72,-2158 }, { 73,-2158 }, { 74,-2158 }, { 75,-2158 }, { 76,-2158 },
{ 77,-2158 }, { 78,-2158 }, { 79,-2158 }, { 80,-2158 }, { 81,-2158 },
{ 82,-2158 }, { 83,-2158 }, { 84,-2158 }, { 85,-2158 }, { 86,-2158 },
{ 87,-2158 }, { 88,-2158 }, { 89,-2158 }, { 90,-2158 }, { 91,-2158 },
{ 92,-2158 }, { 93,-2158 }, { 94,-2158 }, { 95,-2158 }, { 96,-2158 },
{ 97,-2158 }, { 98,-2158 }, { 99,-2158 }, { 100,-2158 }, { 101,-2158 },
{ 102,-2158 }, { 103,-2158 }, { 104,-2158 }, { 105,-2158 }, { 106,-2158 },
{ 107,-2158 }, { 108,-2158 }, { 109,-2158 }, { 110,-2158 }, { 111,-2158 },
{ 112,-2158 }, { 113,-2158 }, { 114,-2158 }, { 115,-2158 }, { 116,-2158 },
{ 117,-2158 }, { 118,-2158 }, { 119,-2158 }, { 120,-2158 }, { 121,-2158 },
{ 122,-2158 }, { 123,-2158 }, { 124,-2158 }, { 125,-2158 }, { 126,-2158 },
{ 127,-2158 }, { 128,-2158 }, { 129,-2158 }, { 130,-2158 }, { 131,-2158 },
{ 132,-2158 }, { 133,-2158 }, { 134,-2158 }, { 135,-2158 }, { 136,-2158 },
{ 137,-2158 }, { 138,-2158 }, { 139,-2158 }, { 140,-2158 }, { 141,-2158 },
{ 142,-2158 }, { 143,-2158 }, { 144,-2158 }, { 145,-2158 }, { 146,-2158 },
{ 147,-2158 }, { 148,-2158 }, { 149,-2158 }, { 150,-2158 }, { 151,-2158 },
{ 152,-2158 }, { 153,-2158 }, { 154,-2158 }, { 155,-2158 }, { 156,-2158 },
{ 157,-2158 }, { 158,-2158 }, { 159,-2158 }, { 160,-2158 }, { 161,-2158 },
{ 162,-2158 }, { 163,-2158 }, { 164,-2158 }, { 165,-2158 }, { 166,-2158 },
{ 167,-2158 }, { 168,-2158 }, { 169,-2158 }, { 170,-2158 }, { 171,-2158 },
{ 172,-2158 }, { 173,-2158 }, { 174,-2158 }, { 175,-2158 }, { 176,-2158 },
{ 177,-2158 }, { 178,-2158 }, { 179,-2158 }, { 180,-2158 }, { 181,-2158 },
{ 182,-2158 }, { 183,-2158 }, { 184,-2158 }, { 185,-2158 }, { 186,-2158 },
{ 187,-2158 }, { 188,-2158 }, { 189,-2158 }, { 190,-2158 }, { 191,-2158 },
{ 192,-2158 }, { 193,-2158 }, { 194,-2158 }, { 195,-2158 }, { 196,-2158 },
{ 197,-2158 }, { 198,-2158 }, { 199,-2158 }, { 200,-2158 }, { 201,-2158 },
{ 202,-2158 }, { 203,-2158 }, { 204,-2158 }, { 205,-2158 }, { 206,-2158 },
{ 207,-2158 }, { 208,-2158 }, { 209,-2158 }, { 210,-2158 }, { 211,-2158 },
{ 212,-2158 }, { 213,-2158 }, { 214,-2158 }, { 215,-2158 }, { 216,-2158 },
{ 217,-2158 }, { 218,-2158 }, { 219,-2158 }, { 220,-2158 }, { 221,-2158 },
{ 222,-2158 }, { 223,-2158 }, { 224,-2158 }, { 225,-2158 }, { 226,-2158 },
{ 227,-2158 }, { 228,-2158 }, { 229,-2158 }, { 230,-2158 }, { 231,-2158 },
{ 232,-2158 }, { 233,-2158 }, { 234,-2158 }, { 235,-2158 }, { 236,-2158 },
{ 237,-2158 }, { 238,-2158 }, { 239,-2158 }, { 240,-2158 }, { 241,-2158 },
{ 242,-2158 }, { 243,-2158 }, { 244,-2158 }, { 245,-2158 }, { 246,-2158 },
{ 247,-2158 }, { 248,-2158 }, { 249,-2158 }, { 250,-2158 }, { 251,-2158 },
{ 252,-2158 }, { 253,-2158 }, { 254,-2158 }, { 255,-2158 }, { 256,-2158 },
{ 0, 55 }, { 0, 774 }, { 1,-27567 }, { 2,-27567 }, { 3,-27567 },
{ 4,-27567 }, { 5,-27567 }, { 6,-27567 }, { 7,-27567 }, { 8,-27567 },
{ 9,-27567 }, { 10,-27567 }, { 11,-27567 }, { 12,-27567 }, { 13,-27567 },
{ 14,-27567 }, { 15,-27567 }, { 16,-27567 }, { 17,-27567 }, { 18,-27567 },
{ 19,-27567 }, { 20,-27567 }, { 21,-27567 }, { 22,-27567 }, { 23,-27567 },
{ 24,-27567 }, { 25,-27567 }, { 26,-27567 }, { 27,-27567 }, { 28,-27567 },
{ 29,-27567 }, { 30,-27567 }, { 31,-27567 }, { 32,-27567 }, { 33,-27567 },
{ 34,-27567 }, { 35,-27567 }, { 36,-27567 }, { 37,-27567 }, { 38,-27567 },
{ 0, 0 }, { 40,-27567 }, { 41,-27567 }, { 42,-27567 }, { 43,-27567 },
{ 44,-27567 }, { 45,-27567 }, { 46,-27567 }, { 47,-27567 }, { 48,-27567 },
{ 49,-27567 }, { 50,-27567 }, { 51,-27567 }, { 52,-27567 }, { 53,-27567 },
{ 54,-27567 }, { 55,-27567 }, { 56,-27567 }, { 57,-27567 }, { 58,-27567 },
{ 59,-27567 }, { 60,-27567 }, { 61,-27567 }, { 62,-27567 }, { 63,-27567 },
{ 64,-27567 }, { 65,-27567 }, { 66,-27567 }, { 67,-27567 }, { 68,-27567 },
{ 69,-27567 }, { 70,-27567 }, { 71,-27567 }, { 72,-27567 }, { 73,-27567 },
{ 74,-27567 }, { 75,-27567 }, { 76,-27567 }, { 77,-27567 }, { 78,-27567 },
{ 79,-27567 }, { 80,-27567 }, { 81,-27567 }, { 82,-27567 }, { 83,-27567 },
{ 84,-27567 }, { 85,-27567 }, { 86,-27567 }, { 87,-27567 }, { 88,-27567 },
{ 89,-27567 }, { 90,-27567 }, { 91,-27567 }, { 92,-27567 }, { 93,-27567 },
{ 94,-27567 }, { 95,-27567 }, { 96,-27567 }, { 97,-27567 }, { 98,-27567 },
{ 99,-27567 }, { 100,-27567 }, { 101,-27567 }, { 102,-27567 }, { 103,-27567 },
{ 104,-27567 }, { 105,-27567 }, { 106,-27567 }, { 107,-27567 }, { 108,-27567 },
{ 109,-27567 }, { 110,-27567 }, { 111,-27567 }, { 112,-27567 }, { 113,-27567 },
{ 114,-27567 }, { 115,-27567 }, { 116,-27567 }, { 117,-27567 }, { 118,-27567 },
{ 119,-27567 }, { 120,-27567 }, { 121,-27567 }, { 122,-27567 }, { 123,-27567 },
{ 124,-27567 }, { 125,-27567 }, { 126,-27567 }, { 127,-27567 }, { 128,-27567 },
{ 129,-27567 }, { 130,-27567 }, { 131,-27567 }, { 132,-27567 }, { 133,-27567 },
{ 134,-27567 }, { 135,-27567 }, { 136,-27567 }, { 137,-27567 }, { 138,-27567 },
{ 139,-27567 }, { 140,-27567 }, { 141,-27567 }, { 142,-27567 }, { 143,-27567 },
{ 144,-27567 }, { 145,-27567 }, { 146,-27567 }, { 147,-27567 }, { 148,-27567 },
{ 149,-27567 }, { 150,-27567 }, { 151,-27567 }, { 152,-27567 }, { 153,-27567 },
{ 154,-27567 }, { 155,-27567 }, { 156,-27567 }, { 157,-27567 }, { 158,-27567 },
{ 159,-27567 }, { 160,-27567 }, { 161,-27567 }, { 162,-27567 }, { 163,-27567 },
{ 164,-27567 }, { 165,-27567 }, { 166,-27567 }, { 167,-27567 }, { 168,-27567 },
{ 169,-27567 }, { 170,-27567 }, { 171,-27567 }, { 172,-27567 }, { 173,-27567 },
{ 174,-27567 }, { 175,-27567 }, { 176,-27567 }, { 177,-27567 }, { 178,-27567 },
{ 179,-27567 }, { 180,-27567 }, { 181,-27567 }, { 182,-27567 }, { 183,-27567 },
{ 184,-27567 }, { 185,-27567 }, { 186,-27567 }, { 187,-27567 }, { 188,-27567 },
{ 189,-27567 }, { 190,-27567 }, { 191,-27567 }, { 192,-27567 }, { 193,-27567 },
{ 194,-27567 }, { 195,-27567 }, { 196,-27567 }, { 197,-27567 }, { 198,-27567 },
{ 199,-27567 }, { 200,-27567 }, { 201,-27567 }, { 202,-27567 }, { 203,-27567 },
{ 204,-27567 }, { 205,-27567 }, { 206,-27567 }, { 207,-27567 }, { 208,-27567 },
{ 209,-27567 }, { 210,-27567 }, { 211,-27567 }, { 212,-27567 }, { 213,-27567 },
{ 214,-27567 }, { 215,-27567 }, { 216,-27567 }, { 217,-27567 }, { 218,-27567 },
{ 219,-27567 }, { 220,-27567 }, { 221,-27567 }, { 222,-27567 }, { 223,-27567 },
{ 224,-27567 }, { 225,-27567 }, { 226,-27567 }, { 227,-27567 }, { 228,-27567 },
{ 229,-27567 }, { 230,-27567 }, { 231,-27567 }, { 232,-27567 }, { 233,-27567 },
{ 234,-27567 }, { 235,-27567 }, { 236,-27567 }, { 237,-27567 }, { 238,-27567 },
{ 239,-27567 }, { 240,-27567 }, { 241,-27567 }, { 242,-27567 }, { 243,-27567 },
{ 244,-27567 }, { 245,-27567 }, { 246,-27567 }, { 247,-27567 }, { 248,-27567 },
{ 249,-27567 }, { 250,-27567 }, { 251,-27567 }, { 252,-27567 }, { 253,-27567 },
{ 254,-27567 }, { 255,-27567 }, { 256,-27567 }, { 0, 28 }, { 0, 516 },
{ 1,-1595 }, { 2,-1595 }, { 3,-1595 }, { 4,-1595 }, { 5,-1595 },
{ 6,-1595 }, { 7,-1595 }, { 8,-1595 }, { 9,-1337 }, { 10,-1079 },
{ 11,-1595 }, { 12,-1337 }, { 13,-1079 }, { 14,-1595 }, { 15,-1595 },
{ 16,-1595 }, { 17,-1595 }, { 18,-1595 }, { 19,-1595 }, { 20,-1595 },
{ 21,-1595 }, { 22,-1595 }, { 23,-1595 }, { 24,-1595 }, { 25,-1595 },
{ 26,-1595 }, { 27,-1595 }, { 28,-1595 }, { 29,-1595 }, { 30,-1595 },
{ 31,-1595 }, { 32,-1337 }, { 33,-1595 }, { 34,-1595 }, { 35,-1595 },
{ 36,-1595 }, { 37,-1595 }, { 38,-1595 }, { 39,-3190 }, { 40,-1595 },
{ 41,-1595 }, { 42,-1595 }, { 43,-1595 }, { 44,-1595 }, { 45,-1032 },
{ 46,-1595 }, { 47,-1595 }, { 48,-1595 }, { 49,-1595 }, { 50,-1595 },
{ 51,-1595 }, { 52,-1595 }, { 53,-1595 }, { 54,-1595 }, { 55,-1595 },
{ 56,-1595 }, { 57,-1595 }, { 58,-1595 }, { 59,-1595 }, { 60,-1595 },
{ 61,-1595 }, { 62,-1595 }, { 63,-1595 }, { 64,-1595 }, { 65,-1595 },
{ 66,-1595 }, { 67,-1595 }, { 68,-1595 }, { 69,-1595 }, { 70,-1595 },
{ 71,-1595 }, { 72,-1595 }, { 73,-1595 }, { 74,-1595 }, { 75,-1595 },
{ 76,-1595 }, { 77,-1595 }, { 78,-1595 }, { 79,-1595 }, { 80,-1595 },
{ 81,-1595 }, { 82,-1595 }, { 83,-1595 }, { 84,-1595 }, { 85,-1595 },
{ 86,-1595 }, { 87,-1595 }, { 88,-1595 }, { 89,-1595 }, { 90,-1595 },
{ 91,-1595 }, { 92,-1595 }, { 93,-1595 }, { 94,-1595 }, { 95,-1595 },
{ 96,-1595 }, { 97,-1595 }, { 98,-1595 }, { 99,-1595 }, { 100,-1595 },
{ 101,-1595 }, { 102,-1595 }, { 103,-1595 }, { 104,-1595 }, { 105,-1595 },
{ 106,-1595 }, { 107,-1595 }, { 108,-1595 }, { 109,-1595 }, { 110,-1595 },
{ 111,-1595 }, { 112,-1595 }, { 113,-1595 }, { 114,-1595 }, { 115,-1595 },
{ 116,-1595 }, { 117,-1595 }, { 118,-1595 }, { 119,-1595 }, { 120,-1595 },
{ 121,-1595 }, { 122,-1595 }, { 123,-1595 }, { 124,-1595 }, { 125,-1595 },
{ 126,-1595 }, { 127,-1595 }, { 128,-1595 }, { 129,-1595 }, { 130,-1595 },
{ 131,-1595 }, { 132,-1595 }, { 133,-1595 }, { 134,-1595 }, { 135,-1595 },
{ 136,-1595 }, { 137,-1595 }, { 138,-1595 }, { 139,-1595 }, { 140,-1595 },
{ 141,-1595 }, { 142,-1595 }, { 143,-1595 }, { 144,-1595 }, { 145,-1595 },
{ 146,-1595 }, { 147,-1595 }, { 148,-1595 }, { 149,-1595 }, { 150,-1595 },
{ 151,-1595 }, { 152,-1595 }, { 153,-1595 }, { 154,-1595 }, { 155,-1595 },
{ 156,-1595 }, { 157,-1595 }, { 158,-1595 }, { 159,-1595 }, { 160,-1595 },
{ 161,-1595 }, { 162,-1595 }, { 163,-1595 }, { 164,-1595 }, { 165,-1595 },
{ 166,-1595 }, { 167,-1595 }, { 168,-1595 }, { 169,-1595 }, { 170,-1595 },
{ 171,-1595 }, { 172,-1595 }, { 173,-1595 }, { 174,-1595 }, { 175,-1595 },
{ 176,-1595 }, { 177,-1595 }, { 178,-1595 }, { 179,-1595 }, { 180,-1595 },
{ 181,-1595 }, { 182,-1595 }, { 183,-1595 }, { 184,-1595 }, { 185,-1595 },
{ 186,-1595 }, { 187,-1595 }, { 188,-1595 }, { 189,-1595 }, { 190,-1595 },
{ 191,-1595 }, { 192,-1595 }, { 193,-1595 }, { 194,-1595 }, { 195,-1595 },
{ 196,-1595 }, { 197,-1595 }, { 198,-1595 }, { 199,-1595 }, { 200,-1595 },
{ 201,-1595 }, { 202,-1595 }, { 203,-1595 }, { 204,-1595 }, { 205,-1595 },
{ 206,-1595 }, { 207,-1595 }, { 208,-1595 }, { 209,-1595 }, { 210,-1595 },
{ 211,-1595 }, { 212,-1595 }, { 213,-1595 }, { 214,-1595 }, { 215,-1595 },
{ 216,-1595 }, { 217,-1595 }, { 218,-1595 }, { 219,-1595 }, { 220,-1595 },
{ 221,-1595 }, { 222,-1595 }, { 223,-1595 }, { 224,-1595 }, { 225,-1595 },
{ 226,-1595 }, { 227,-1595 }, { 228,-1595 }, { 229,-1595 }, { 230,-1595 },
{ 231,-1595 }, { 232,-1595 }, { 233,-1595 }, { 234,-1595 }, { 235,-1595 },
{ 236,-1595 }, { 237,-1595 }, { 238,-1595 }, { 239,-1595 }, { 240,-1595 },
{ 241,-1595 }, { 242,-1595 }, { 243,-1595 }, { 244,-1595 }, { 245,-1595 },
{ 246,-1595 }, { 247,-1595 }, { 248,-1595 }, { 249,-1595 }, { 250,-1595 },
{ 251,-1595 }, { 252,-1595 }, { 253,-1595 }, { 254,-1595 }, { 255,-1595 },
{ 256,-1595 }, { 0, 28 }, { 0, 258 }, { 1,-28081 }, { 2,-28081 },
{ 3,-28081 }, { 4,-28081 }, { 5,-28081 }, { 6,-28081 }, { 7,-28081 },
{ 8,-28081 }, { 9,-28081 }, { 10,-28081 }, { 11,-28081 }, { 12,-28081 },
{ 13,-28081 }, { 14,-28081 }, { 15,-28081 }, { 16,-28081 }, { 17,-28081 },
{ 18,-28081 }, { 19,-28081 }, { 20,-28081 }, { 21,-28081 }, { 22,-28081 },
{ 23,-28081 }, { 24,-28081 }, { 25,-28081 }, { 26,-28081 }, { 27,-28081 },
{ 28,-28081 }, { 29,-28081 }, { 30,-28081 }, { 31,-28081 }, { 32,-28081 },
{ 33,-28081 }, { 34,-28081 }, { 35,-28081 }, { 36,-28081 }, { 37,-28081 },
{ 38,-28081 }, { 0, 0 }, { 40,-28081 }, { 41,-28081 }, { 42,-28081 },
{ 43,-28081 }, { 44,-28081 }, { 45,-28081 }, { 46,-28081 }, { 47,-28081 },
{ 48,-28081 }, { 49,-28081 }, { 50,-28081 }, { 51,-28081 }, { 52,-28081 },
{ 53,-28081 }, { 54,-28081 }, { 55,-28081 }, { 56,-28081 }, { 57,-28081 },
{ 58,-28081 }, { 59,-28081 }, { 60,-28081 }, { 61,-28081 }, { 62,-28081 },
{ 63,-28081 }, { 64,-28081 }, { 65,-28081 }, { 66,-28081 }, { 67,-28081 },
{ 68,-28081 }, { 69,-28081 }, { 70,-28081 }, { 71,-28081 }, { 72,-28081 },
{ 73,-28081 }, { 74,-28081 }, { 75,-28081 }, { 76,-28081 }, { 77,-28081 },
{ 78,-28081 }, { 79,-28081 }, { 80,-28081 }, { 81,-28081 }, { 82,-28081 },
{ 83,-28081 }, { 84,-28081 }, { 85,-28081 }, { 86,-28081 }, { 87,-28081 },
{ 88,-28081 }, { 89,-28081 }, { 90,-28081 }, { 91,-28081 }, { 92,-28081 },
{ 93,-28081 }, { 94,-28081 }, { 95,-28081 }, { 96,-28081 }, { 97,-28081 },
{ 98,-28081 }, { 99,-28081 }, { 100,-28081 }, { 101,-28081 }, { 102,-28081 },
{ 103,-28081 }, { 104,-28081 }, { 105,-28081 }, { 106,-28081 }, { 107,-28081 },
{ 108,-28081 }, { 109,-28081 }, { 110,-28081 }, { 111,-28081 }, { 112,-28081 },
{ 113,-28081 }, { 114,-28081 }, { 115,-28081 }, { 116,-28081 }, { 117,-28081 },
{ 118,-28081 }, { 119,-28081 }, { 120,-28081 }, { 121,-28081 }, { 122,-28081 },
{ 123,-28081 }, { 124,-28081 }, { 125,-28081 }, { 126,-28081 }, { 127,-28081 },
{ 128,-28081 }, { 129,-28081 }, { 130,-28081 }, { 131,-28081 }, { 132,-28081 },
{ 133,-28081 }, { 134,-28081 }, { 135,-28081 }, { 136,-28081 }, { 137,-28081 },
{ 138,-28081 }, { 139,-28081 }, { 140,-28081 }, { 141,-28081 }, { 142,-28081 },
{ 143,-28081 }, { 144,-28081 }, { 145,-28081 }, { 146,-28081 }, { 147,-28081 },
{ 148,-28081 }, { 149,-28081 }, { 150,-28081 }, { 151,-28081 }, { 152,-28081 },
{ 153,-28081 }, { 154,-28081 }, { 155,-28081 }, { 156,-28081 }, { 157,-28081 },
{ 158,-28081 }, { 159,-28081 }, { 160,-28081 }, { 161,-28081 }, { 162,-28081 },
{ 163,-28081 }, { 164,-28081 }, { 165,-28081 }, { 166,-28081 }, { 167,-28081 },
{ 168,-28081 }, { 169,-28081 }, { 170,-28081 }, { 171,-28081 }, { 172,-28081 },
{ 173,-28081 }, { 174,-28081 }, { 175,-28081 }, { 176,-28081 }, { 177,-28081 },
{ 178,-28081 }, { 179,-28081 }, { 180,-28081 }, { 181,-28081 }, { 182,-28081 },
{ 183,-28081 }, { 184,-28081 }, { 185,-28081 }, { 186,-28081 }, { 187,-28081 },
{ 188,-28081 }, { 189,-28081 }, { 190,-28081 }, { 191,-28081 }, { 192,-28081 },
{ 193,-28081 }, { 194,-28081 }, { 195,-28081 }, { 196,-28081 }, { 197,-28081 },
{ 198,-28081 }, { 199,-28081 }, { 200,-28081 }, { 201,-28081 }, { 202,-28081 },
{ 203,-28081 }, { 204,-28081 }, { 205,-28081 }, { 206,-28081 }, { 207,-28081 },
{ 208,-28081 }, { 209,-28081 }, { 210,-28081 }, { 211,-28081 }, { 212,-28081 },
{ 213,-28081 }, { 214,-28081 }, { 215,-28081 }, { 216,-28081 }, { 217,-28081 },
{ 218,-28081 }, { 219,-28081 }, { 220,-28081 }, { 221,-28081 }, { 222,-28081 },
{ 223,-28081 }, { 224,-28081 }, { 225,-28081 }, { 226,-28081 }, { 227,-28081 },
{ 228,-28081 }, { 229,-28081 }, { 230,-28081 }, { 231,-28081 }, { 232,-28081 },
{ 233,-28081 }, { 234,-28081 }, { 235,-28081 }, { 236,-28081 }, { 237,-28081 },
{ 238,-28081 }, { 239,-28081 }, { 240,-28081 }, { 241,-28081 }, { 242,-28081 },
{ 243,-28081 }, { 244,-28081 }, { 245,-28081 }, { 246,-28081 }, { 247,-28081 },
{ 248,-28081 }, { 249,-28081 }, { 250,-28081 }, { 251,-28081 }, { 252,-28081 },
{ 253,-28081 }, { 254,-28081 }, { 255,-28081 }, { 256,-28081 }, { 257, 81 },
{ 1, 0 }, };
static __thread yyconst struct yy_trans_info *yy_start_state_list[27] =
{
&yy_transition[1],
&yy_transition[3],
&yy_transition[261],
&yy_transition[519],
&yy_transition[777],
&yy_transition[1035],
&yy_transition[1293],
&yy_transition[1551],
&yy_transition[1809],
&yy_transition[2067],
&yy_transition[2325],
&yy_transition[2583],
&yy_transition[2841],
&yy_transition[3099],
&yy_transition[3357],
&yy_transition[3615],
&yy_transition[3873],
&yy_transition[4131],
&yy_transition[4389],
&yy_transition[4647],
&yy_transition[4905],
&yy_transition[5163],
&yy_transition[5421],
&yy_transition[5679],
&yy_transition[5937],
&yy_transition[6195],
&yy_transition[6453],
}
;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
*/
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
#line 1 "scan.l"
#line 44 "scan.l"
/* Avoid exit() on fatal scanner errors (a bit ugly -- see yy_fatal_error) */
#undef fprintf
#define fprintf(file, fmt, msg) fprintf_to_ereport(fmt, msg)
static void
fprintf_to_ereport(const char *fmt, const char *msg)
{
ereport(ERROR, (errmsg_internal("%s", msg)));
}
/*
* GUC variables. This is a DIRECT violation of the warning given at the
* head of gram.y, ie flex/bison code must not depend on any GUC variables;
* as such, changing their values can induce very unintuitive behavior.
* But we shall have to live with it until we can remove these variables.
*/
__thread int backslash_quote = BACKSLASH_QUOTE_SAFE_ENCODING;
__thread bool escape_string_warning = true;
__thread bool standard_conforming_strings = true;
/*
* Set the type of YYSTYPE.
*/
#define YYSTYPE core_YYSTYPE
/*
* Set the type of yyextra. All state variables used by the scanner should
* be in yyextra, *not* statically allocated.
*/
#define YY_EXTRA_TYPE core_yy_extra_type *
/*
* Each call to core_yylex must set yylloc to the location of the found token
* (expressed as a byte offset from the start of the input text).
* When we parse a token that requires multiple lexer rules to process,
* this should be done in the first such rule, else yylloc will point
* into the middle of the token.
*/
#define SET_YYLLOC() (*(yylloc) = yytext - yyextra->scanbuf)
/*
* Advance yylloc by the given number of bytes.
*/
#define ADVANCE_YYLLOC(delta) ( *(yylloc) += (delta) )
#define startlit() ( yyextra->literallen = 0 )
static void addlit(char *ytext, int yleng, core_yyscan_t yyscanner);
static void addlitchar(unsigned char ychar, core_yyscan_t yyscanner);
static char *litbufdup(core_yyscan_t yyscanner);
static char *litbuf_udeescape(unsigned char escape, core_yyscan_t yyscanner);
static unsigned char unescape_single_char(unsigned char c, core_yyscan_t yyscanner);
static int process_integer_literal(const char *token, YYSTYPE *lval);
static bool is_utf16_surrogate_first(pg_wchar c);
static bool is_utf16_surrogate_second(pg_wchar c);
static pg_wchar surrogate_pair_to_codepoint(pg_wchar first, pg_wchar second);
static void addunicode(pg_wchar c, yyscan_t yyscanner);
static bool check_uescapechar(unsigned char escape);
#define yyerror(msg) scanner_yyerror(msg, yyscanner)
#define lexer_errposition() scanner_errposition(*(yylloc), yyscanner)
static void check_string_escape_warning(unsigned char ychar, core_yyscan_t yyscanner);
static void check_escape_warning(core_yyscan_t yyscanner);
/*
* Work around a bug in flex 2.5.35: it emits a couple of functions that
* it forgets to emit declarations for. Since we use -Wmissing-prototypes,
* this would cause warnings. Providing our own declarations should be
* harmless even when the bug gets fixed.
*/
extern int core_yyget_column(yyscan_t yyscanner);
extern void core_yyset_column(int column_no, yyscan_t yyscanner);
#define YY_NO_INPUT 1
/*
* OK, here is a short description of lex/flex rules behavior.
* The longest pattern which matches an input string is always chosen.
* For equal-length patterns, the first occurring in the rules list is chosen.
* INITIAL is the starting state, to which all non-conditional rules apply.
* Exclusive states change parsing rules while the state is active. When in
* an exclusive state, only those rules defined for that state apply.
*
* We use exclusive states for quoted strings, extended comments,
* and to eliminate parsing troubles for numeric strings.
* Exclusive states:
* <xb> bit string literal
* <xc> extended C-style comments
* <xd> delimited identifiers (double-quoted identifiers)
* <xh> hexadecimal numeric string
* <xq> standard quoted strings
* <xe> extended quoted strings (support backslash escape sequences)
* <xdolq> $foo$ quoted strings
* <xui> quoted identifier with Unicode escapes
* <xuiend> end of a quoted identifier with Unicode escapes, UESCAPE can follow
* <xus> quoted string with Unicode escapes
* <xusend> end of a quoted string with Unicode escapes, UESCAPE can follow
* <xeu> Unicode surrogate pair in extended quoted string
*
* Remember to add an <<EOF>> case whenever you add a new exclusive state!
* The default one is probably not the right thing.
*/
/*
* In order to make the world safe for Windows and Mac clients as well as
* Unix ones, we accept either \n or \r as a newline. A DOS-style \r\n
* sequence will be seen as two successive newlines, but that doesn't cause
* any problems. Comments that start with -- and extend to the next
* newline are treated as equivalent to a single whitespace character.
*
* NOTE a fine point: if there is no newline following --, we will absorb
* everything to the end of the input as a comment. This is correct. Older
* versions of Postgres failed to recognize -- as a comment if the input
* did not end with a newline.
*
* XXX perhaps \f (formfeed) should be treated as a newline as well?
*
* XXX if you change the set of whitespace characters, fix scanner_isspace()
* to agree, and see also the plpgsql lexer.
*/
/*
* SQL requires at least one newline in the whitespace separating
* string literals that are to be concatenated. Silly, but who are we
* to argue? Note that {whitespace_with_newline} should not have * after
* it, whereas {whitespace} should generally have a * after it...
*/
/*
* To ensure that {quotecontinue} can be scanned without having to back up
* if the full pattern isn't matched, we include trailing whitespace in
* {quotestop}. This matches all cases where {quotecontinue} fails to match,
* except for {quote} followed by whitespace and just one "-" (not two,
* which would start a {comment}). To cover that we have {quotefail}.
* The actions for {quotestop} and {quotefail} must throw back characters
* beyond the quote proper.
*/
/* Bit string
* It is tempting to scan the string for only those characters
* which are allowed. However, this leads to silently swallowed
* characters if illegal characters are included in the string.
* For example, if xbinside is [01] then B'ABCD' is interpreted
* as a zero-length string, and the ABCD' is lost!
* Better to pass the string forward and let the input routines
* validate the contents.
*/
/* Hexadecimal number */
/* National character */
/* Quoted string that allows backslash escapes */
/* Normalized escaped string */
/* Extended quote
* xqdouble implements embedded quote, ''''
*/
/* $foo$ style quotes ("dollar quoting")
* The quoted string starts with $foo$ where "foo" is an optional string
* in the form of an identifier, except that it may not contain "$",
* and extends to the first occurrence of an identical string.
* There is *no* processing of the quoted text.
*
* {dolqfailed} is an error rule to avoid scanner backup when {dolqdelim}
* fails to match its trailing "$".
*/
/* Double quote
* Allows embedded spaces and other special characters into identifiers.
*/
/* Unicode escapes */
/* error rule to avoid backup */
/* Quoted identifier with Unicode escapes */
/* Quoted string with Unicode escapes */
/* Optional UESCAPE after a quoted string or identifier with Unicode escapes. */
/* error rule to avoid backup */
/* C-style comments
*
* The "extended comment" syntax closely resembles allowable operator syntax.
* The tricky part here is to get lex to recognize a string starting with
* slash-star as a comment, when interpreting it as an operator would produce
* a longer match --- remember lex will prefer a longer match! Also, if we
* have something like plus-slash-star, lex will think this is a 3-character
* operator whereas we want to see it as a + operator and a comment start.
* The solution is two-fold:
* 1. append {op_chars}* to xcstart so that it matches as much text as
* {operator} would. Then the tie-breaker (first matching rule of same
* length) ensures xcstart wins. We put back the extra stuff with yyless()
* in case it contains a star-slash that should terminate the comment.
* 2. In the operator rule, check for slash-star within the operator, and
* if found throw it back with yyless(). This handles the plus-slash-star
* problem.
* Dash-dash comments have similar interactions with the operator rule.
*/
/* Assorted special-case operators and operator-like tokens */
/*
* These operator-like tokens (unlike the above ones) also match the {operator}
* rule, which means that they might be overridden by a longer match if they
* are followed by a comment start or a + or - character. Accordingly, if you
* add to this list, you must also add corresponding code to the {operator}
* block to return the correct token in such cases. (This is not needed in
* psqlscan.l since the token value is ignored there.)
*/
/*
* "self" is the set of chars that should be returned as single-character
* tokens. "op_chars" is the set of chars that can make up "Op" tokens,
* which can be one or more characters long (but if a single-char token
* appears in the "self" set, it is not to be returned as an Op). Note
* that the sets overlap, but each has some chars that are not in the other.
*
* If you change either set, adjust the character lists appearing in the
* rule for "operator"!
*/
/* we no longer allow unary minus in numbers.
* instead we pass it separately to parser. there it gets
* coerced via doNegate() -- Leon aug 20 1999
*
* {decimalfail} is used because we would like "1..10" to lex as 1, dot_dot, 10.
*
* {realfail1} and {realfail2} are added to prevent the need for scanner
* backup when the {real} rule fails to match completely.
*/
/*
* Dollar quoted strings are totally opaque, and no escaping is done on them.
* Other quoted strings must allow some special characters such as single-quote
* and newline.
* Embedded single-quotes are implemented both in the SQL standard
* style of two adjacent single quotes "''" and in the Postgres/Java style
* of escaped-quote "\'".
* Other embedded escaped characters are matched explicitly and the leading
* backslash is dropped from the string.
* Note that xcstart must appear before operator, as explained above!
* Also whitespace (comment) must appear before operator.
*/
#line 8772 "scan.c"
#define INITIAL 0
#define xb 1
#define xc 2
#define xd 3
#define xh 4
#define xe 5
#define xq 6
#define xdolq 7
#define xui 8
#define xuiend 9
#define xus 10
#define xusend 11
#define xeu 12
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
/* Holds the entire state of the reentrant scanner. */
struct yyguts_t
{
/* User-defined. Not touched by flex. */
YY_EXTRA_TYPE yyextra_r;
/* The rest are the same as the globals declared in the non-reentrant scanner. */
FILE *yyin_r, *yyout_r;
size_t yy_buffer_stack_top; /**< index of top of stack. */
size_t yy_buffer_stack_max; /**< capacity of stack. */
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
char yy_hold_char;
yy_size_t yy_n_chars;
yy_size_t yyleng_r;
char *yy_c_buf_p;
int yy_init;
int yy_start;
int yy_did_buffer_switch_on_eof;
int yy_start_stack_ptr;
int yy_start_stack_depth;
int *yy_start_stack;
yy_state_type yy_last_accepting_state;
char* yy_last_accepting_cpos;
int yylineno_r;
int yy_flex_debug_r;
char *yytext_r;
int yy_more_flag;
int yy_more_len;
YYSTYPE * yylval_r;
YYLTYPE * yylloc_r;
}; /* end struct yyguts_t */
static int yy_init_globals (yyscan_t yyscanner );
/* This must go here because YYSTYPE and YYLTYPE are included
* from bison output in section 1.*/
# define yylval yyg->yylval_r
# define yylloc yyg->yylloc_r
int core_yylex_init (yyscan_t* scanner);
int core_yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int core_yylex_destroy (yyscan_t yyscanner );
int core_yyget_debug (yyscan_t yyscanner );
void core_yyset_debug (int debug_flag ,yyscan_t yyscanner );
YY_EXTRA_TYPE core_yyget_extra (yyscan_t yyscanner );
void core_yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );
FILE *core_yyget_in (yyscan_t yyscanner );
void core_yyset_in (FILE * in_str ,yyscan_t yyscanner );
FILE *core_yyget_out (yyscan_t yyscanner );
void core_yyset_out (FILE * out_str ,yyscan_t yyscanner );
yy_size_t core_yyget_leng (yyscan_t yyscanner );
char *core_yyget_text (yyscan_t yyscanner );
int core_yyget_lineno (yyscan_t yyscanner );
void core_yyset_lineno (int line_number ,yyscan_t yyscanner );
YYSTYPE * core_yyget_lval (yyscan_t yyscanner );
void core_yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner );
YYLTYPE *core_yyget_lloc (yyscan_t yyscanner );
void core_yyset_lloc (YYLTYPE * yylloc_param ,yyscan_t yyscanner );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int core_yywrap (yyscan_t yyscanner );
#else
extern int core_yywrap (yyscan_t yyscanner );
#endif
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (yyscan_t yyscanner );
#else
static int input (yyscan_t yyscanner );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO fwrite( yytext, yyleng, 1, yyout )
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
yy_size_t n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( yyin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int core_yylex \
(YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner);
#define YY_DECL int core_yylex \
(YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
#line 405 "scan.l"
#line 9026 "scan.c"
yylval = yylval_param;
yylloc = yylloc_param;
if ( !yyg->yy_init )
{
yyg->yy_init = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! yyg->yy_start )
yyg->yy_start = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
core_yyensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
core_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
core_yy_load_buffer_state(yyscanner );
}
while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = yyg->yy_c_buf_p;
/* Support of yytext. */
*yy_cp = yyg->yy_hold_char;
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = yy_start_state_list[yyg->yy_start];
yy_match:
{
register yyconst struct yy_trans_info *yy_trans_info;
register YY_CHAR yy_c;
for ( yy_c = YY_SC_TO_UI(*yy_cp);
(yy_trans_info = &yy_current_state[(unsigned int) yy_c])->
yy_verify == yy_c;
yy_c = YY_SC_TO_UI(*++yy_cp) )
yy_current_state += yy_trans_info->yy_nxt;
}
yy_find_action:
yy_act = yy_current_state[-1].yy_nxt;
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 1:
/* rule 1 can match eol */
YY_RULE_SETUP
#line 407 "scan.l"
{
/* ignore */
}
YY_BREAK
case 2:
YY_RULE_SETUP
#line 411 "scan.l"
{
/* Set location in case of syntax error in comment */
SET_YYLLOC();
yyextra->xcdepth = 0;
BEGIN(xc);
/* Put back any characters past slash-star; see above */
yyless(2);
}
YY_BREAK
case 3:
YY_RULE_SETUP
#line 420 "scan.l"
{
(yyextra->xcdepth)++;
/* Put back any characters past slash-star; see above */
yyless(2);
}
YY_BREAK
case 4:
YY_RULE_SETUP
#line 426 "scan.l"
{
if (yyextra->xcdepth <= 0)
BEGIN(INITIAL);
else
(yyextra->xcdepth)--;
}
YY_BREAK
case 5:
/* rule 5 can match eol */
YY_RULE_SETUP
#line 433 "scan.l"
{
/* ignore */
}
YY_BREAK
case 6:
YY_RULE_SETUP
#line 437 "scan.l"
{
/* ignore */
}
YY_BREAK
case 7:
YY_RULE_SETUP
#line 441 "scan.l"
{
/* ignore */
}
YY_BREAK
case YY_STATE_EOF(xc):
#line 445 "scan.l"
{ yyerror("unterminated /* comment"); }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 447 "scan.l"
{
/* Binary bit type.
* At some point we should simply pass the string
* forward to the parser and label it there.
* In the meantime, place a leading "b" on the string
* to mark it for the input routine as a binary string.
*/
SET_YYLLOC();
BEGIN(xb);
startlit();
addlitchar('b', yyscanner);
}
YY_BREAK
case 9:
/* rule 9 can match eol */
#line 460 "scan.l"
case 10:
/* rule 10 can match eol */
YY_RULE_SETUP
#line 460 "scan.l"
{
yyless(1);
BEGIN(INITIAL);
yylval->str = litbufdup(yyscanner);
return BCONST;
}
YY_BREAK
case 11:
/* rule 11 can match eol */
#line 467 "scan.l"
case 12:
/* rule 12 can match eol */
YY_RULE_SETUP
#line 467 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case 13:
/* rule 13 can match eol */
#line 471 "scan.l"
case 14:
/* rule 14 can match eol */
YY_RULE_SETUP
#line 471 "scan.l"
{
/* ignore */
}
YY_BREAK
case YY_STATE_EOF(xb):
#line 474 "scan.l"
{ yyerror("unterminated bit string literal"); }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 476 "scan.l"
{
/* Hexadecimal bit type.
* At some point we should simply pass the string
* forward to the parser and label it there.
* In the meantime, place a leading "x" on the string
* to mark it for the input routine as a hex string.
*/
SET_YYLLOC();
BEGIN(xh);
startlit();
addlitchar('x', yyscanner);
}
YY_BREAK
case 16:
/* rule 16 can match eol */
#line 489 "scan.l"
case 17:
/* rule 17 can match eol */
YY_RULE_SETUP
#line 489 "scan.l"
{
yyless(1);
BEGIN(INITIAL);
yylval->str = litbufdup(yyscanner);
return XCONST;
}
YY_BREAK
case YY_STATE_EOF(xh):
#line 495 "scan.l"
{ yyerror("unterminated hexadecimal string literal"); }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 497 "scan.l"
{
/* National character.
* We will pass this along as a normal character string,
* but preceded with an internally-generated "NCHAR".
*/
const ScanKeyword *keyword;
SET_YYLLOC();
yyless(1); /* eat only 'n' this time */
keyword = ScanKeywordLookup("nchar",
yyextra->keywords,
yyextra->num_keywords);
if (keyword != NULL)
{
yylval->keyword = keyword->name;
return keyword->value;
}
else
{
/* If NCHAR isn't a keyword, just return "n" */
yylval->str = pstrdup("n");
return IDENT;
}
}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 523 "scan.l"
{
yyextra->warn_on_first_escape = true;
yyextra->saw_non_ascii = false;
SET_YYLLOC();
if (yyextra->standard_conforming_strings)
BEGIN(xq);
else
BEGIN(xe);
startlit();
}
YY_BREAK
case 20:
YY_RULE_SETUP
#line 533 "scan.l"
{
yyextra->warn_on_first_escape = false;
yyextra->saw_non_ascii = false;
SET_YYLLOC();
BEGIN(xe);
startlit();
}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 540 "scan.l"
{
SET_YYLLOC();
if (!yyextra->standard_conforming_strings)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("unsafe use of string constant with Unicode escapes"),
errdetail("String constants with Unicode escapes cannot be used when standard_conforming_strings is off."),
lexer_errposition()));
BEGIN(xus);
startlit();
}
YY_BREAK
case 22:
/* rule 22 can match eol */
#line 552 "scan.l"
case 23:
/* rule 23 can match eol */
YY_RULE_SETUP
#line 552 "scan.l"
{
yyless(1);
BEGIN(INITIAL);
/*
* check that the data remains valid if it might have been
* made invalid by unescaping any chars.
*/
if (yyextra->saw_non_ascii)
pg_verifymbstr(yyextra->literalbuf,
yyextra->literallen,
false);
yylval->str = litbufdup(yyscanner);
return SCONST;
}
YY_BREAK
case 24:
/* rule 24 can match eol */
#line 567 "scan.l"
case 25:
/* rule 25 can match eol */
YY_RULE_SETUP
#line 567 "scan.l"
{
/* throw back all but the quote */
yyless(1);
/* xusend state looks for possible UESCAPE */
BEGIN(xusend);
}
YY_BREAK
case 26:
/* rule 26 can match eol */
YY_RULE_SETUP
#line 573 "scan.l"
{
/* stay in xusend state over whitespace */
}
YY_BREAK
case YY_STATE_EOF(xusend):
#line 576 "scan.l"
case 27:
/* rule 27 can match eol */
#line 578 "scan.l"
case 28:
/* rule 28 can match eol */
YY_RULE_SETUP
#line 578 "scan.l"
{
/* no UESCAPE after the quote, throw back everything */
yyless(0);
BEGIN(INITIAL);
yylval->str = litbuf_udeescape('\\', yyscanner);
return SCONST;
}
YY_BREAK
case 29:
/* rule 29 can match eol */
YY_RULE_SETUP
#line 585 "scan.l"
{
/* found UESCAPE after the end quote */
BEGIN(INITIAL);
if (!check_uescapechar(yytext[yyleng - 2]))
{
SET_YYLLOC();
ADVANCE_YYLLOC(yyleng - 2);
yyerror("invalid Unicode escape character");
}
yylval->str = litbuf_udeescape(yytext[yyleng - 2],
yyscanner);
return SCONST;
}
YY_BREAK
case 30:
YY_RULE_SETUP
#line 598 "scan.l"
{
addlitchar('\'', yyscanner);
}
YY_BREAK
case 31:
/* rule 31 can match eol */
YY_RULE_SETUP
#line 601 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case 32:
/* rule 32 can match eol */
YY_RULE_SETUP
#line 604 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case 33:
YY_RULE_SETUP
#line 607 "scan.l"
{
pg_wchar c = strtoul(yytext + 2, NULL, 16);
check_escape_warning(yyscanner);
if (is_utf16_surrogate_first(c))
{
yyextra->utf16_first_part = c;
BEGIN(xeu);
}
else if (is_utf16_surrogate_second(c))
yyerror("invalid Unicode surrogate pair");
else
addunicode(c, yyscanner);
}
YY_BREAK
case 34:
YY_RULE_SETUP
#line 622 "scan.l"
{
pg_wchar c = strtoul(yytext + 2, NULL, 16);
if (!is_utf16_surrogate_second(c))
yyerror("invalid Unicode surrogate pair");
c = surrogate_pair_to_codepoint(yyextra->utf16_first_part, c);
addunicode(c, yyscanner);
BEGIN(xe);
}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 634 "scan.l"
{ yyerror("invalid Unicode surrogate pair"); }
YY_BREAK
case 36:
/* rule 36 can match eol */
YY_RULE_SETUP
#line 635 "scan.l"
{ yyerror("invalid Unicode surrogate pair"); }
YY_BREAK
case YY_STATE_EOF(xeu):
#line 636 "scan.l"
{ yyerror("invalid Unicode surrogate pair"); }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 637 "scan.l"
{
ereport(ERROR,
(errcode(ERRCODE_INVALID_ESCAPE_SEQUENCE),
errmsg("invalid Unicode escape"),
errhint("Unicode escapes must be \\uXXXX or \\UXXXXXXXX."),
lexer_errposition()));
}
YY_BREAK
case 38:
/* rule 38 can match eol */
YY_RULE_SETUP
#line 644 "scan.l"
{
if (yytext[1] == '\'')
{
if (yyextra->backslash_quote == BACKSLASH_QUOTE_OFF ||
(yyextra->backslash_quote == BACKSLASH_QUOTE_SAFE_ENCODING &&
PG_ENCODING_IS_CLIENT_ONLY(pg_get_client_encoding())))
ereport(ERROR,
(errcode(ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER),
errmsg("unsafe use of \\' in a string literal"),
errhint("Use '' to write quotes in strings. \\' is insecure in client-only encodings."),
lexer_errposition()));
}
check_string_escape_warning(yytext[1], yyscanner);
addlitchar(unescape_single_char(yytext[1], yyscanner),
yyscanner);
}
YY_BREAK
case 39:
YY_RULE_SETUP
#line 660 "scan.l"
{
unsigned char c = strtoul(yytext + 1, NULL, 8);
check_escape_warning(yyscanner);
addlitchar(c, yyscanner);
if (c == '\0' || IS_HIGHBIT_SET(c))
yyextra->saw_non_ascii = true;
}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 668 "scan.l"
{
unsigned char c = strtoul(yytext + 2, NULL, 16);
check_escape_warning(yyscanner);
addlitchar(c, yyscanner);
if (c == '\0' || IS_HIGHBIT_SET(c))
yyextra->saw_non_ascii = true;
}
YY_BREAK
case 41:
/* rule 41 can match eol */
YY_RULE_SETUP
#line 676 "scan.l"
{
/* ignore */
}
YY_BREAK
case 42:
YY_RULE_SETUP
#line 679 "scan.l"
{
/* This is only needed for \ just before EOF */
addlitchar(yytext[0], yyscanner);
}
YY_BREAK
case YY_STATE_EOF(xq):
case YY_STATE_EOF(xe):
case YY_STATE_EOF(xus):
#line 683 "scan.l"
{ yyerror("unterminated quoted string"); }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 685 "scan.l"
{
SET_YYLLOC();
yyextra->dolqstart = pstrdup(yytext);
BEGIN(xdolq);
startlit();
}
YY_BREAK
case 44:
YY_RULE_SETUP
#line 691 "scan.l"
{
SET_YYLLOC();
/* throw back all but the initial "$" */
yyless(1);
/* and treat it as {other} */
return yytext[0];
}
YY_BREAK
case 45:
YY_RULE_SETUP
#line 698 "scan.l"
{
if (strcmp(yytext, yyextra->dolqstart) == 0)
{
pfree(yyextra->dolqstart);
yyextra->dolqstart = NULL;
BEGIN(INITIAL);
yylval->str = litbufdup(yyscanner);
return SCONST;
}
else
{
/*
* When we fail to match $...$ to dolqstart, transfer
* the $... part to the output, but put back the final
* $ for rescanning. Consider $delim$...$junk$delim$
*/
addlit(yytext, yyleng - 1, yyscanner);
yyless(yyleng - 1);
}
}
YY_BREAK
case 46:
/* rule 46 can match eol */
YY_RULE_SETUP
#line 718 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case 47:
YY_RULE_SETUP
#line 721 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 724 "scan.l"
{
/* This is only needed for $ inside the quoted text */
addlitchar(yytext[0], yyscanner);
}
YY_BREAK
case YY_STATE_EOF(xdolq):
#line 728 "scan.l"
{ yyerror("unterminated dollar-quoted string"); }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 730 "scan.l"
{
SET_YYLLOC();
BEGIN(xd);
startlit();
}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 735 "scan.l"
{
SET_YYLLOC();
BEGIN(xui);
startlit();
}
YY_BREAK
case 51:
YY_RULE_SETUP
#line 740 "scan.l"
{
char *ident;
BEGIN(INITIAL);
if (yyextra->literallen == 0)
yyerror("zero-length delimited identifier");
ident = litbufdup(yyscanner);
if (yyextra->literallen >= NAMEDATALEN)
truncate_identifier(ident, yyextra->literallen, true);
yylval->str = ident;
return IDENT;
}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 752 "scan.l"
{
yyless(1);
/* xuiend state looks for possible UESCAPE */
BEGIN(xuiend);
}
YY_BREAK
case 53:
/* rule 53 can match eol */
YY_RULE_SETUP
#line 757 "scan.l"
{
/* stay in xuiend state over whitespace */
}
YY_BREAK
case YY_STATE_EOF(xuiend):
#line 760 "scan.l"
case 54:
/* rule 54 can match eol */
#line 762 "scan.l"
case 55:
/* rule 55 can match eol */
YY_RULE_SETUP
#line 762 "scan.l"
{
/* no UESCAPE after the quote, throw back everything */
char *ident;
int identlen;
yyless(0);
BEGIN(INITIAL);
if (yyextra->literallen == 0)
yyerror("zero-length delimited identifier");
ident = litbuf_udeescape('\\', yyscanner);
identlen = strlen(ident);
if (identlen >= NAMEDATALEN)
truncate_identifier(ident, identlen, true);
yylval->str = ident;
return IDENT;
}
YY_BREAK
case 56:
/* rule 56 can match eol */
YY_RULE_SETUP
#line 779 "scan.l"
{
/* found UESCAPE after the end quote */
char *ident;
int identlen;
BEGIN(INITIAL);
if (yyextra->literallen == 0)
yyerror("zero-length delimited identifier");
if (!check_uescapechar(yytext[yyleng - 2]))
{
SET_YYLLOC();
ADVANCE_YYLLOC(yyleng - 2);
yyerror("invalid Unicode escape character");
}
ident = litbuf_udeescape(yytext[yyleng - 2], yyscanner);
identlen = strlen(ident);
if (identlen >= NAMEDATALEN)
truncate_identifier(ident, identlen, true);
yylval->str = ident;
return IDENT;
}
YY_BREAK
case 57:
YY_RULE_SETUP
#line 800 "scan.l"
{
addlitchar('"', yyscanner);
}
YY_BREAK
case 58:
/* rule 58 can match eol */
YY_RULE_SETUP
#line 803 "scan.l"
{
addlit(yytext, yyleng, yyscanner);
}
YY_BREAK
case YY_STATE_EOF(xd):
case YY_STATE_EOF(xui):
#line 806 "scan.l"
{ yyerror("unterminated quoted identifier"); }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 808 "scan.l"
{
char *ident;
SET_YYLLOC();
/* throw back all but the initial u/U */
yyless(1);
/* and treat it as {identifier} */
ident = downcase_truncate_identifier(yytext, yyleng, true);
yylval->str = ident;
return IDENT;
}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 820 "scan.l"
{
/* ignore E */
return yytext[1];
}
YY_BREAK
case 61:
YY_RULE_SETUP
#line 825 "scan.l"
{
SET_YYLLOC();
return TYPECAST;
}
YY_BREAK
case 62:
YY_RULE_SETUP
#line 830 "scan.l"
{
SET_YYLLOC();
return DOT_DOT;
}
YY_BREAK
case 63:
YY_RULE_SETUP
#line 835 "scan.l"
{
SET_YYLLOC();
return COLON_EQUALS;
}
YY_BREAK
case 64:
YY_RULE_SETUP
#line 840 "scan.l"
{
SET_YYLLOC();
return EQUALS_GREATER;
}
YY_BREAK
case 65:
YY_RULE_SETUP
#line 845 "scan.l"
{
SET_YYLLOC();
return LESS_EQUALS;
}
YY_BREAK
case 66:
YY_RULE_SETUP
#line 850 "scan.l"
{
SET_YYLLOC();
return GREATER_EQUALS;
}
YY_BREAK
case 67:
YY_RULE_SETUP
#line 855 "scan.l"
{
/* We accept both "<>" and "!=" as meaning NOT_EQUALS */
SET_YYLLOC();
return NOT_EQUALS;
}
YY_BREAK
case 68:
YY_RULE_SETUP
#line 861 "scan.l"
{
/* We accept both "<>" and "!=" as meaning NOT_EQUALS */
SET_YYLLOC();
return NOT_EQUALS;
}
YY_BREAK
case 69:
YY_RULE_SETUP
#line 867 "scan.l"
{
SET_YYLLOC();
return yytext[0];
}
YY_BREAK
case 70:
YY_RULE_SETUP
#line 872 "scan.l"
{
/*
* Check for embedded slash-star or dash-dash; those
* are comment starts, so operator must stop there.
* Note that slash-star or dash-dash at the first
* character will match a prior rule, not this one.
*/
int nchars = yyleng;
char *slashstar = strstr(yytext, "/*");
char *dashdash = strstr(yytext, "--");
if (slashstar && dashdash)
{
/* if both appear, take the first one */
if (slashstar > dashdash)
slashstar = dashdash;
}
else if (!slashstar)
slashstar = dashdash;
if (slashstar)
nchars = slashstar - yytext;
/*
* For SQL compatibility, '+' and '-' cannot be the
* last char of a multi-char operator unless the operator
* contains chars that are not in SQL operators.
* The idea is to lex '=-' as two operators, but not
* to forbid operator names like '?-' that could not be
* sequences of SQL operators.
*/
if (nchars > 1 &&
(yytext[nchars - 1] == '+' ||
yytext[nchars - 1] == '-'))
{
int ic;
for (ic = nchars - 2; ic >= 0; ic--)
{
char c = yytext[ic];
if (c == '~' || c == '!' || c == '@' ||
c == '#' || c == '^' || c == '&' ||
c == '|' || c == '`' || c == '?' ||
c == '%')
break;
}
if (ic < 0)
{
/*
* didn't find a qualifying character, so remove
* all trailing [+-]
*/
do {
nchars--;
} while (nchars > 1 &&
(yytext[nchars - 1] == '+' ||
yytext[nchars - 1] == '-'));
}
}
/* We don't accept leading ? in any multi-character operators
* except for those in use by hstore, JSON and geometric operators.
*
* We don't accept contained or trailing ? in any
* multi-character operators.
*
* This is necessary in order to support normalized queries without
* spacing between ? as a substition character and a simple operator (e.g. "?=?")
*/
if (yytext[0] == '?' &&
strcmp(yytext, "?|") != 0 && strcmp(yytext, "?&") != 0 &&
strcmp(yytext, "?#") != 0 && strcmp(yytext, "?-") != 0 &&
strcmp(yytext, "?-|") != 0 && strcmp(yytext, "?||") != 0)
nchars = 1;
if (yytext[0] != '?' && strchr(yytext, '?'))
/* Lex up to just before the ? character */
nchars = strchr(yytext, '?') - yytext;
SET_YYLLOC();
if (nchars < yyleng)
{
/* Strip the unwanted chars from the token */
yyless(nchars);
/*
* If what we have left is only one char, and it's
* one of the characters matching "self", then
* return it as a character token the same way
* that the "self" rule would have.
*/
if (nchars == 1 &&
strchr(",()[].;:+-*/%^<>=?", yytext[0]))
return yytext[0];
/*
* Likewise, if what we have left is two chars, and
* those match the tokens ">=", "<=", "=>", "<>" or
* "!=", then we must return the appropriate token
* rather than the generic Op.
*/
if (nchars == 2)
{
if (yytext[0] == '=' && yytext[1] == '>')
return EQUALS_GREATER;
if (yytext[0] == '>' && yytext[1] == '=')
return GREATER_EQUALS;
if (yytext[0] == '<' && yytext[1] == '=')
return LESS_EQUALS;
if (yytext[0] == '<' && yytext[1] == '>')
return NOT_EQUALS;
if (yytext[0] == '!' && yytext[1] == '=')
return NOT_EQUALS;
}
}
/*
* Complain if operator is too long. Unlike the case
* for identifiers, we make this an error not a notice-
* and-truncate, because the odds are we are looking at
* a syntactic mistake anyway.
*/
if (nchars >= NAMEDATALEN)
yyerror("operator too long");
yylval->str = pstrdup(yytext);
return Op;
}
YY_BREAK
case 71:
YY_RULE_SETUP
#line 999 "scan.l"
{
SET_YYLLOC();
yylval->ival = atol(yytext + 1);
return PARAM;
}
YY_BREAK
case 72:
YY_RULE_SETUP
#line 1005 "scan.l"
{
SET_YYLLOC();
return process_integer_literal(yytext, yylval);
}
YY_BREAK
case 73:
YY_RULE_SETUP
#line 1009 "scan.l"
{
SET_YYLLOC();
yylval->str = pstrdup(yytext);
return FCONST;
}
YY_BREAK
case 74:
YY_RULE_SETUP
#line 1014 "scan.l"
{
/* throw back the .., and treat as integer */
yyless(yyleng - 2);
SET_YYLLOC();
return process_integer_literal(yytext, yylval);
}
YY_BREAK
case 75:
YY_RULE_SETUP
#line 1020 "scan.l"
{
SET_YYLLOC();
yylval->str = pstrdup(yytext);
return FCONST;
}
YY_BREAK
case 76:
YY_RULE_SETUP
#line 1025 "scan.l"
{
/*
* throw back the [Ee], and treat as {decimal}. Note
* that it is possible the input is actually {integer},
* but since this case will almost certainly lead to a
* syntax error anyway, we don't bother to distinguish.
*/
yyless(yyleng - 1);
SET_YYLLOC();
yylval->str = pstrdup(yytext);
return FCONST;
}
YY_BREAK
case 77:
YY_RULE_SETUP
#line 1037 "scan.l"
{
/* throw back the [Ee][+-], and proceed as above */
yyless(yyleng - 2);
SET_YYLLOC();
yylval->str = pstrdup(yytext);
return FCONST;
}
YY_BREAK
case 78:
YY_RULE_SETUP
#line 1046 "scan.l"
{
const ScanKeyword *keyword;
char *ident;
char *keyword_text = pstrdup(yytext);
SET_YYLLOC();
/* Is it a keyword? */
if (yytext[yyleng - 1] == '?')
keyword_text[yyleng - 1] = '\0';
keyword = ScanKeywordLookup(keyword_text,
yyextra->keywords,
yyextra->num_keywords);
if (keyword != NULL)
{
if (keyword_text[yyleng - 1] == '\0')
yyless(yyleng - 1);
yylval->keyword = keyword->name;
return keyword->value;
}
/*
* No. Convert the identifier to lower case, and truncate
* if necessary.
*/
ident = downcase_truncate_identifier(yytext, yyleng, true);
yylval->str = ident;
return IDENT;
}
YY_BREAK
case 79:
YY_RULE_SETUP
#line 1077 "scan.l"
{
SET_YYLLOC();
return yytext[0];
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
#line 1082 "scan.l"
{
SET_YYLLOC();
yyterminate();
}
YY_BREAK
case 80:
YY_RULE_SETUP
#line 1087 "scan.l"
YY_FATAL_ERROR( "flex scanner jammed" );
YY_BREAK
#line 10096 "scan.c"
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = yyg->yy_hold_char;
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* core_yylex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( yyscanner );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++yyg->yy_c_buf_p;
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = yyg->yy_c_buf_p;
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( yyscanner ) )
{
case EOB_ACT_END_OF_FILE:
{
yyg->yy_did_buffer_switch_on_eof = 0;
if ( core_yywrap(yyscanner ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! yyg->yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
yyg->yy_c_buf_p =
yyg->yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( yyscanner );
yy_cp = yyg->yy_c_buf_p;
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
yyg->yy_c_buf_p =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
yy_current_state = yy_get_previous_state( yyscanner );
yy_cp = yyg->yy_c_buf_p;
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of core_yylex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = yyg->yytext_ptr;
register int number_to_move, i;
int ret_val;
if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
else
{
yy_size_t num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
int yy_c_buf_p_offset =
(int) (yyg->yy_c_buf_p - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
yy_size_t new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
core_yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
yyg->yy_n_chars, num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
}
if ( yyg->yy_n_chars == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
core_yyrestart(yyin ,yyscanner);
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) core_yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
}
yyg->yy_n_chars += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
{
register yy_state_type yy_current_state;
register char *yy_cp;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yy_current_state = yy_start_state_list[yyg->yy_start];
for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
{
yy_current_state += yy_current_state[(*yy_cp ? YY_SC_TO_UI(*yy_cp) : 256)].yy_nxt;
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
{
register int yy_is_jam;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
register int yy_c = 256;
register yyconst struct yy_trans_info *yy_trans_info;
yy_trans_info = &yy_current_state[(unsigned int) yy_c];
yy_current_state += yy_trans_info->yy_nxt;
yy_is_jam = (yy_trans_info->yy_verify != yy_c);
(void) yyg;
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (yyscan_t yyscanner)
#else
static int input (yyscan_t yyscanner)
#endif
{
int c;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
*yyg->yy_c_buf_p = yyg->yy_hold_char;
if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
/* This was really a NUL. */
*yyg->yy_c_buf_p = '\0';
else
{ /* need more input */
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
++yyg->yy_c_buf_p;
switch ( yy_get_next_buffer( yyscanner ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
core_yyrestart(yyin ,yyscanner);
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( core_yywrap(yyscanner ) )
return 0;
if ( ! yyg->yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput(yyscanner);
#else
return input(yyscanner);
#endif
}
case EOB_ACT_CONTINUE_SCAN:
yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
break;
}
}
}
c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
*yyg->yy_c_buf_p = '\0'; /* preserve yytext */
yyg->yy_hold_char = *++yyg->yy_c_buf_p;
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
* @param yyscanner The scanner object.
* @note This function does not reset the start condition to @c INITIAL .
*/
void core_yyrestart (FILE * input_file , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! YY_CURRENT_BUFFER ){
core_yyensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
core_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
core_yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner);
core_yy_load_buffer_state(yyscanner );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
* @param yyscanner The scanner object.
*/
void core_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* TODO. We should be able to replace this entire function body
* with
* core_yypop_buffer_state();
* core_yypush_buffer_state(new_buffer);
*/
core_yyensure_buffer_stack (yyscanner);
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*yyg->yy_c_buf_p = yyg->yy_hold_char;
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
core_yy_load_buffer_state(yyscanner );
/* We don't actually know whether we did this switch during
* EOF (core_yywrap()) processing, but the only time this flag
* is looked at is after core_yywrap() is called, so it's safe
* to go ahead and always set it.
*/
yyg->yy_did_buffer_switch_on_eof = 1;
}
static void core_yy_load_buffer_state (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
yyg->yy_hold_char = *yyg->yy_c_buf_p;
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
* @param yyscanner The scanner object.
* @return the allocated buffer state.
*/
YY_BUFFER_STATE core_yy_create_buffer (FILE * file, int size , yyscan_t yyscanner)
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) core_yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in core_yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) core_yyalloc(b->yy_buf_size + 2 ,yyscanner );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in core_yy_create_buffer()" );
b->yy_is_our_buffer = 1;
core_yy_init_buffer(b,file ,yyscanner);
return b;
}
/** Destroy the buffer.
* @param b a buffer created with core_yy_create_buffer()
* @param yyscanner The scanner object.
*/
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a core_yyrestart() or at EOF.
*/
static void core_yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
{
int oerrno = errno;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
core_yy_flush_buffer(b ,yyscanner);
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then core_yy_init_buffer was _probably_
* called from core_yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
* @param yyscanner The scanner object.
*/
void core_yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
core_yy_load_buffer_state(yyscanner );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
* @param yyscanner The scanner object.
*/
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
* @param yyscanner The scanner object.
*/
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void core_yyensure_buffer_stack (yyscan_t yyscanner)
{
yy_size_t num_to_alloc;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (!yyg->yy_buffer_stack) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
yyg->yy_buffer_stack = (struct yy_buffer_state**)core_yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
, yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in core_yyensure_buffer_stack()" );
memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
yyg->yy_buffer_stack_max = num_to_alloc;
yyg->yy_buffer_stack_top = 0;
return;
}
if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
yyg->yy_buffer_stack = (struct yy_buffer_state**)core_yyrealloc
(yyg->yy_buffer_stack,
num_to_alloc * sizeof(struct yy_buffer_state*)
, yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in core_yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
yyg->yy_buffer_stack_max = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE core_yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) core_yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in core_yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
core_yy_switch_to_buffer(b ,yyscanner );
return b;
}
/** Setup the input buffer state to scan a string. The next call to core_yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* core_yy_scan_bytes() instead.
*/
/** Setup the input buffer state to scan the given bytes. The next call to core_yylex() will
* scan from a @e copy of @a bytes.
* @param bytes the byte buffer to scan
* @param len the number of bytes in the buffer pointed to by @a bytes.
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner)
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = yyg->yy_hold_char; \
yyg->yy_c_buf_p = yytext + yyless_macro_arg; \
yyg->yy_hold_char = *yyg->yy_c_buf_p; \
*yyg->yy_c_buf_p = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the user-defined data for this scanner.
* @param yyscanner The scanner object.
*/
/** Get the current line number.
* @param yyscanner The scanner object.
*/
/** Get the current column number.
* @param yyscanner The scanner object.
*/
/** Get the input stream.
* @param yyscanner The scanner object.
*/
/** Get the output stream.
* @param yyscanner The scanner object.
*/
/** Get the length of the current token.
* @param yyscanner The scanner object.
*/
/** Get the current token.
* @param yyscanner The scanner object.
*/
/** Set the user-defined data. This data is never touched by the scanner.
* @param user_defined The data to be associated with this scanner.
* @param yyscanner The scanner object.
*/
void core_yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyextra = user_defined ;
}
/** Set the current line number.
* @param line_number
* @param yyscanner The scanner object.
*/
/** Set the current column.
* @param line_number
* @param yyscanner The scanner object.
*/
/** Set the input stream. This does not discard the current
* input buffer.
* @param in_str A readable stream.
* @param yyscanner The scanner object.
* @see core_yy_switch_to_buffer
*/
/* Accessor methods for yylval and yylloc */
/* User-visible API */
/* core_yylex_init is special because it creates the scanner itself, so it is
* the ONLY reentrant function that doesn't take the scanner as the last argument.
* That's why we explicitly handle the declaration, instead of using our macros.
*/
int core_yylex_init(yyscan_t* ptr_yy_globals)
{
if (ptr_yy_globals == NULL){
errno = EINVAL;
return 1;
}
*ptr_yy_globals = (yyscan_t) core_yyalloc ( sizeof( struct yyguts_t ), NULL );
if (*ptr_yy_globals == NULL){
errno = ENOMEM;
return 1;
}
/* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
return yy_init_globals ( *ptr_yy_globals );
}
/* core_yylex_init_extra has the same functionality as core_yylex_init, but follows the
* convention of taking the scanner as the last argument. Note however, that
* this is a *pointer* to a scanner, as it will be allocated by this call (and
* is the reason, too, why this function also must handle its own declaration).
* The user defined value in the first argument will be available to core_yyalloc in
* the yyextra field.
*/
static int yy_init_globals (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from core_yylex_destroy(), so don't allocate here.
*/
yyg->yy_buffer_stack = 0;
yyg->yy_buffer_stack_top = 0;
yyg->yy_buffer_stack_max = 0;
yyg->yy_c_buf_p = (char *) 0;
yyg->yy_init = 0;
yyg->yy_start = 0;
yyg->yy_start_stack_ptr = 0;
yyg->yy_start_stack_depth = 0;
yyg->yy_start_stack = NULL;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = (FILE *) 0;
yyout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* core_yylex_init()
*/
return 0;
}
/* core_yylex_destroy is for both reentrant and non-reentrant scanners. */
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner)
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner)
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
#define YYTABLES_NAME "yytables"
#line 1087 "scan.l"
/*
* Arrange access to yyextra for subroutines of the main core_yylex() function.
* We expect each subroutine to have a yyscanner parameter. Rather than
* use the yyget_xxx functions, which might or might not get inlined by the
* compiler, we cheat just a bit and cast yyscanner to the right type.
*/
#undef yyextra
#define yyextra (((struct yyguts_t *) yyscanner)->yyextra_r)
/* Likewise for a couple of other things we need. */
#undef yylloc
#define yylloc (((struct yyguts_t *) yyscanner)->yylloc_r)
#undef yyleng
#define yyleng (((struct yyguts_t *) yyscanner)->yyleng_r)
/*
* scanner_errposition
* Report a lexer or grammar error cursor position, if possible.
*
* This is expected to be used within an ereport() call. The return value
* is a dummy (always 0, in fact).
*
* Note that this can only be used for messages emitted during raw parsing
* (essentially, scan.l and gram.y), since it requires the yyscanner struct
* to still be available.
*/
int
scanner_errposition(int location, core_yyscan_t yyscanner)
{
int pos;
if (location < 0)
return 0; /* no-op if location is unknown */
/* Convert byte offset to character number */
pos = pg_mbstrlen_with_len(yyextra->scanbuf, location) + 1;
/* And pass it to the ereport mechanism */
return errposition(pos);
}
/*
* scanner_yyerror
* Report a lexer or grammar error.
*
* The message's cursor position is whatever YYLLOC was last set to,
* ie, the start of the current token if called within core_yylex(), or the
* most recently lexed token if called from the grammar.
* This is OK for syntax error messages from the Bison parser, because Bison
* parsers report error as soon as the first unparsable token is reached.
* Beware of using yyerror for other purposes, as the cursor position might
* be misleading!
*/
void
scanner_yyerror(const char *message, core_yyscan_t yyscanner)
{
const char *loc = yyextra->scanbuf + *yylloc;
if (*loc == YY_END_OF_BUFFER_CHAR)
{
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
/* translator: %s is typically the translation of "syntax error" */
errmsg("%s at end of input", _(message)),
lexer_errposition()));
}
else
{
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
/* translator: first %s is typically the translation of "syntax error" */
errmsg("%s at or near \"%s\"", _(message), loc),
lexer_errposition()));
}
}
/*
* Called before any actual parsing is done
*/
core_yyscan_t
scanner_init(const char *str,
core_yy_extra_type *yyext,
const ScanKeyword *keywords,
int num_keywords)
{
Size slen = strlen(str);
yyscan_t scanner;
if (core_yylex_init(&scanner) != 0)
elog(ERROR, "core_yylex_init() failed: %m");
core_yyset_extra(yyext, scanner);
yyext->keywords = keywords;
yyext->num_keywords = num_keywords;
yyext->backslash_quote = backslash_quote;
yyext->escape_string_warning = escape_string_warning;
yyext->standard_conforming_strings = standard_conforming_strings;
/*
* Make a scan buffer with special termination needed by flex.
*/
yyext->scanbuf = (char *) palloc(slen + 2);
yyext->scanbuflen = slen;
memcpy(yyext->scanbuf, str, slen);
yyext->scanbuf[slen] = yyext->scanbuf[slen + 1] = YY_END_OF_BUFFER_CHAR;
core_yy_scan_buffer(yyext->scanbuf,slen + 2,scanner);
/* initialize literal buffer to a reasonable but expansible size */
yyext->literalalloc = 1024;
yyext->literalbuf = (char *) palloc(yyext->literalalloc);
yyext->literallen = 0;
return scanner;
}
/*
* Called after parsing is done to clean up after scanner_init()
*/
void
scanner_finish(core_yyscan_t yyscanner)
{
/*
* We don't bother to call core_yylex_destroy(), because all it would do is
* pfree a small amount of control storage. It's cheaper to leak the
* storage until the parsing context is destroyed. The amount of space
* involved is usually negligible compared to the output parse tree
* anyway.
*
* We do bother to pfree the scanbuf and literal buffer, but only if they
* represent a nontrivial amount of space. The 8K cutoff is arbitrary.
*/
if (yyextra->scanbuflen >= 8192)
pfree(yyextra->scanbuf);
if (yyextra->literalalloc >= 8192)
pfree(yyextra->literalbuf);
}
static void
addlit(char *ytext, int yleng, core_yyscan_t yyscanner)
{
/* enlarge buffer if needed */
if ((yyextra->literallen + yleng) >= yyextra->literalalloc)
{
do
{
yyextra->literalalloc *= 2;
} while ((yyextra->literallen + yleng) >= yyextra->literalalloc);
yyextra->literalbuf = (char *) repalloc(yyextra->literalbuf,
yyextra->literalalloc);
}
/* append new data */
memcpy(yyextra->literalbuf + yyextra->literallen, ytext, yleng);
yyextra->literallen += yleng;
}
static void
addlitchar(unsigned char ychar, core_yyscan_t yyscanner)
{
/* enlarge buffer if needed */
if ((yyextra->literallen + 1) >= yyextra->literalalloc)
{
yyextra->literalalloc *= 2;
yyextra->literalbuf = (char *) repalloc(yyextra->literalbuf,
yyextra->literalalloc);
}
/* append new data */
yyextra->literalbuf[yyextra->literallen] = ychar;
yyextra->literallen += 1;
}
/*
* Create a palloc'd copy of literalbuf, adding a trailing null.
*/
static char *
litbufdup(core_yyscan_t yyscanner)
{
int llen = yyextra->literallen;
char *new;
new = palloc(llen + 1);
memcpy(new, yyextra->literalbuf, llen);
new[llen] = '\0';
return new;
}
static int
process_integer_literal(const char *token, YYSTYPE *lval)
{
long val;
char *endptr;
errno = 0;
val = strtol(token, &endptr, 10);
if (*endptr != '\0' || errno == ERANGE
#ifdef HAVE_LONG_INT_64
/* if long > 32 bits, check for overflow of int4 */
|| val != (long) ((int32) val)
#endif
)
{
/* integer too large, treat it as a float */
lval->str = pstrdup(token);
return FCONST;
}
lval->ival = val;
return ICONST;
}
static unsigned int
hexval(unsigned char c)
{
if (c >= '0' && c <= '9')
return c - '0';
if (c >= 'a' && c <= 'f')
return c - 'a' + 0xA;
if (c >= 'A' && c <= 'F')
return c - 'A' + 0xA;
elog(ERROR, "invalid hexadecimal digit");
return 0; /* not reached */
}
static void
check_unicode_value(pg_wchar c, char *loc, core_yyscan_t yyscanner)
{
if (GetDatabaseEncoding() == PG_UTF8)
return;
if (c > 0x7F)
{
ADVANCE_YYLLOC(loc - yyextra->literalbuf + 3); /* 3 for U&" */
yyerror("Unicode escape values cannot be used for code point values above 007F when the server encoding is not UTF8");
}
}
static bool
is_utf16_surrogate_first(pg_wchar c)
{
return (c >= 0xD800 && c <= 0xDBFF);
}
static bool
is_utf16_surrogate_second(pg_wchar c)
{
return (c >= 0xDC00 && c <= 0xDFFF);
}
static pg_wchar
surrogate_pair_to_codepoint(pg_wchar first, pg_wchar second)
{
return ((first & 0x3FF) << 10) + 0x10000 + (second & 0x3FF);
}
static void
addunicode(pg_wchar c, core_yyscan_t yyscanner)
{
char buf[8];
if (c == 0 || c > 0x10FFFF)
yyerror("invalid Unicode escape value");
if (c > 0x7F)
{
if (GetDatabaseEncoding() != PG_UTF8)
yyerror("Unicode escape values cannot be used for code point values above 007F when the server encoding is not UTF8");
yyextra->saw_non_ascii = true;
}
unicode_to_utf8(c, (unsigned char *) buf);
addlit(buf, pg_mblen(buf), yyscanner);
}
/* is 'escape' acceptable as Unicode escape character (UESCAPE syntax) ? */
static bool
check_uescapechar(unsigned char escape)
{
if (isxdigit(escape)
|| escape == '+'
|| escape == '\''
|| escape == '"'
|| scanner_isspace(escape))
{
return false;
}
else
return true;
}
/* like litbufdup, but handle unicode escapes */
static char *
litbuf_udeescape(unsigned char escape, core_yyscan_t yyscanner)
{
char *new;
char *litbuf,
*in,
*out;
pg_wchar pair_first = 0;
/* Make literalbuf null-terminated to simplify the scanning loop */
litbuf = yyextra->literalbuf;
litbuf[yyextra->literallen] = '\0';
/*
* This relies on the subtle assumption that a UTF-8 expansion cannot be
* longer than its escaped representation.
*/
new = palloc(yyextra->literallen + 1);
in = litbuf;
out = new;
while (*in)
{
if (in[0] == escape)
{
if (in[1] == escape)
{
if (pair_first)
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode surrogate pair");
}
*out++ = escape;
in += 2;
}
else if (isxdigit((unsigned char) in[1]) &&
isxdigit((unsigned char) in[2]) &&
isxdigit((unsigned char) in[3]) &&
isxdigit((unsigned char) in[4]))
{
pg_wchar unicode;
unicode = (hexval(in[1]) << 12) +
(hexval(in[2]) << 8) +
(hexval(in[3]) << 4) +
hexval(in[4]);
check_unicode_value(unicode, in, yyscanner);
if (pair_first)
{
if (is_utf16_surrogate_second(unicode))
{
unicode = surrogate_pair_to_codepoint(pair_first, unicode);
pair_first = 0;
}
else
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode surrogate pair");
}
}
else if (is_utf16_surrogate_second(unicode))
yyerror("invalid Unicode surrogate pair");
if (is_utf16_surrogate_first(unicode))
pair_first = unicode;
else
{
unicode_to_utf8(unicode, (unsigned char *) out);
out += pg_mblen(out);
}
in += 5;
}
else if (in[1] == '+' &&
isxdigit((unsigned char) in[2]) &&
isxdigit((unsigned char) in[3]) &&
isxdigit((unsigned char) in[4]) &&
isxdigit((unsigned char) in[5]) &&
isxdigit((unsigned char) in[6]) &&
isxdigit((unsigned char) in[7]))
{
pg_wchar unicode;
unicode = (hexval(in[2]) << 20) +
(hexval(in[3]) << 16) +
(hexval(in[4]) << 12) +
(hexval(in[5]) << 8) +
(hexval(in[6]) << 4) +
hexval(in[7]);
check_unicode_value(unicode, in, yyscanner);
if (pair_first)
{
if (is_utf16_surrogate_second(unicode))
{
unicode = surrogate_pair_to_codepoint(pair_first, unicode);
pair_first = 0;
}
else
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode surrogate pair");
}
}
else if (is_utf16_surrogate_second(unicode))
yyerror("invalid Unicode surrogate pair");
if (is_utf16_surrogate_first(unicode))
pair_first = unicode;
else
{
unicode_to_utf8(unicode, (unsigned char *) out);
out += pg_mblen(out);
}
in += 8;
}
else
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode escape value");
}
}
else
{
if (pair_first)
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode surrogate pair");
}
*out++ = *in++;
}
}
/* unfinished surrogate pair? */
if (pair_first)
{
ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */
yyerror("invalid Unicode surrogate pair");
}
*out = '\0';
/*
* We could skip pg_verifymbstr if we didn't process any non-7-bit-ASCII
* codes; but it's probably not worth the trouble, since this isn't likely
* to be a performance-critical path.
*/
pg_verifymbstr(new, out - new, false);
return new;
}
static unsigned char
unescape_single_char(unsigned char c, core_yyscan_t yyscanner)
{
switch (c)
{
case 'b':
return '\b';
case 'f':
return '\f';
case 'n':
return '\n';
case 'r':
return '\r';
case 't':
return '\t';
default:
/* check for backslash followed by non-7-bit-ASCII */
if (c == '\0' || IS_HIGHBIT_SET(c))
yyextra->saw_non_ascii = true;
return c;
}
}
static void
check_string_escape_warning(unsigned char ychar, core_yyscan_t yyscanner)
{
if (ychar == '\'')
{
if (yyextra->warn_on_first_escape && yyextra->escape_string_warning)
ereport(WARNING,
(errcode(ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER),
errmsg("nonstandard use of \\' in a string literal"),
errhint("Use '' to write quotes in strings, or use the escape string syntax (E'...')."),
lexer_errposition()));
yyextra->warn_on_first_escape = false; /* warn only once per string */
}
else if (ychar == '\\')
{
if (yyextra->warn_on_first_escape && yyextra->escape_string_warning)
ereport(WARNING,
(errcode(ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER),
errmsg("nonstandard use of \\\\ in a string literal"),
errhint("Use the escape string syntax for backslashes, e.g., E'\\\\'."),
lexer_errposition()));
yyextra->warn_on_first_escape = false; /* warn only once per string */
}
else
check_escape_warning(yyscanner);
}
static void
check_escape_warning(core_yyscan_t yyscanner)
{
if (yyextra->warn_on_first_escape && yyextra->escape_string_warning)
ereport(WARNING,
(errcode(ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER),
errmsg("nonstandard use of escape in a string literal"),
errhint("Use the escape string syntax for escapes, e.g., E'\\r\\n'."),
lexer_errposition()));
yyextra->warn_on_first_escape = false; /* warn only once per string */
}
/*
* Interface functions to make flex use palloc() instead of malloc().
* It'd be better to make these static, but flex insists otherwise.
*/
void *
core_yyalloc(yy_size_t bytes, core_yyscan_t yyscanner)
{
return palloc(bytes);
}
void *
core_yyrealloc(void *ptr, yy_size_t bytes, core_yyscan_t yyscanner)
{
if (ptr)
return repalloc(ptr, bytes);
else
return palloc(bytes);
}
| lfittl/libpg_query | src/postgres/src_backend_parser_scan.c | C | bsd-3-clause | 620,535 |
/*=============================================================================
Copyright (c) 2003 Joel de Guzman
Copyright (c) 2004 Peder Holt
Use, modification and distribution is subject to the Boost Software
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(FUSION_SEQUENCE_JOINT_VIEW_HPP)
#define FUSION_SEQUENCE_JOINT_VIEW_HPP
#include <boost/spirit/fusion/detail/access.hpp>
#include <boost/spirit/fusion/sequence/begin.hpp>
#include <boost/spirit/fusion/sequence/end.hpp>
#include <boost/spirit/fusion/iterator/joint_view_iterator.hpp>
#include <boost/spirit/fusion/sequence/detail/joint_view_begin_end_traits.hpp>
#include <boost/spirit/fusion/sequence/detail/sequence_base.hpp>
#include <boost/spirit/fusion/sequence/as_fusion_sequence.hpp>
namespace boost { namespace fusion
{
struct joint_view_tag;
template <typename View1, typename View2>
struct joint_view : sequence_base<joint_view<View1, View2> >
{
typedef as_fusion_sequence<View1> view1_converter;
typedef typename view1_converter::type view1;
typedef as_fusion_sequence<View2> view2_converter;
typedef typename view2_converter::type view2;
typedef joint_view_tag tag;
typedef typename meta::begin<view1>::type first_type;
typedef typename meta::end<view1>::type last_type;
typedef typename meta::begin<view2>::type concat_type;
typedef typename meta::end<view2>::type concat_last_type;
joint_view(View1& view1, View2& view2);
first_type first;
concat_type concat;
concat_last_type concat_last;
};
template <typename View1, typename View2>
joint_view<View1,View2>::joint_view(View1& view1, View2& view2)
: first(fusion::begin(view1))
, concat(fusion::begin(view2))
, concat_last(fusion::end(view2))
{}
}}
#endif
| darwin/upgradr | ieaddon/Upgradr/boost/spirit/fusion/sequence/joint_view.hpp | C++ | bsd-3-clause | 2,083 |
<?php
/**
* osCommerce Online Merchant
*
* @copyright Copyright (c) 2011 osCommerce; http://www.oscommerce.com
* @license BSD License; http://www.oscommerce.com/bsdlicense.txt
*/
namespace osCommerce\OM\Core\Site\Shop\Module\Box\BestSellers;
use osCommerce\OM\Core\HTML;
use osCommerce\OM\Core\OSCOM;
use osCommerce\OM\Core\Registry;
class Controller extends \osCommerce\OM\Core\Modules {
var $_title,
$_code = 'BestSellers',
$_author_name = 'osCommerce',
$_author_www = 'http://www.oscommerce.com',
$_group = 'Box';
public function __construct() {
$this->_title = OSCOM::getDef('box_best_sellers_heading');
}
public function initialize() {
global $current_category_id;
$OSCOM_PDO = Registry::get('PDO');
$OSCOM_Language = Registry::get('Language');
if ( isset($current_category_id) && ($current_category_id > 0) ) {
$Qbestsellers = $OSCOM_PDO->prepare('select distinct p.products_id, pd.products_name, pd.products_keyword from :table_products p, :table_products_description pd, :table_products_to_categories p2c, :table_categories c where p.products_status = 1 and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = :language_id and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and :current_category_id in (c.categories_id, c.parent_id) order by p.products_ordered desc, pd.products_name limit :max_display_bestsellers');
$Qbestsellers->bindInt(':language_id', $OSCOM_Language->getID());
$Qbestsellers->bindInt(':current_category_id', $current_category_id);
$Qbestsellers->bindInt(':max_display_bestsellers', BOX_BEST_SELLERS_MAX_LIST);
if ( BOX_BEST_SELLERS_CACHE > 0 ) {
$Qbestsellers->setCache('box_best_sellers-' . $current_category_id . '-' . $OSCOM_Language->getCode(), BOX_BEST_SELLERS_CACHE);
}
$Qbestsellers->execute();
} else {
$Qbestsellers = $OSCOM_PDO->prepare('select p.products_id, pd.products_name, pd.products_keyword from :table_products p, :table_products_description pd where p.products_status = 1 and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = :language_id order by p.products_ordered desc, pd.products_name limit :max_display_bestsellers');
$Qbestsellers->bindInt(':language_id', $OSCOM_Language->getID());
$Qbestsellers->bindInt(':max_display_bestsellers', BOX_BEST_SELLERS_MAX_LIST);
if ( BOX_BEST_SELLERS_CACHE > 0 ) {
$Qbestsellers->setCache('box_best_sellers-0-' . $OSCOM_Language->getCode(), BOX_BEST_SELLERS_CACHE);
}
$Qbestsellers->execute();
}
$result = $Qbestsellers->fetchAll();
if ( count($result) >= BOX_BEST_SELLERS_MIN_LIST ) {
$this->_content = '<ol style="margin: 0; padding: 0 0 0 20px;">';
foreach ( $result as $r ) {
$this->_content .= '<li>' . HTML::link(OSCOM::getLink(null, 'Products', $r['products_keyword']), $r['products_name']) . '</li>';
}
$this->_content .= '</ol>';
}
}
public function install() {
$OSCOM_PDO = Registry::get('PDO');
parent::install();
$OSCOM_PDO->exec("insert into :table_configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Minimum List Size', 'BOX_BEST_SELLERS_MIN_LIST', '3', 'Minimum amount of products that must be shown in the listing', '6', '0', now())");
$OSCOM_PDO->exec("insert into :table_configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum List Size', 'BOX_BEST_SELLERS_MAX_LIST', '10', 'Maximum amount of products to show in the listing', '6', '0', now())");
$OSCOM_PDO->exec("insert into :table_configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Cache Contents', 'BOX_BEST_SELLERS_CACHE', '60', 'Number of minutes to keep the contents cached (0 = no cache)', '6', '0', now())");
}
public function getKeys() {
if (!isset($this->_keys)) {
$this->_keys = array('BOX_BEST_SELLERS_MIN_LIST',
'BOX_BEST_SELLERS_MAX_LIST',
'BOX_BEST_SELLERS_CACHE');
}
return $this->_keys;
}
}
?>
| haraldpdl/oscommerce | osCommerce/OM/Core/Site/Shop/Module/Box/BestSellers/Controller.php | PHP | bsd-3-clause | 4,526 |
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
* Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved.
* Copyright (C) 2012 Samsung Electronics 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "config.h"
#include "WebContext.h"
#include "Logging.h"
#include "WebCookieManagerProxy.h"
#include "WebInspectorServer.h"
#include "WebProcessCreationParameters.h"
#include "WebProcessMessages.h"
#include "WebSoupRequestManagerProxy.h"
#include <WebCore/FileSystem.h>
#include <WebCore/NotImplemented.h>
#include <WebCore/SchemeRegistry.h>
#include <wtf/gobject/GOwnPtr.h>
#include <wtf/text/CString.h>
namespace WebKit {
static void initInspectorServer()
{
#if ENABLE(INSPECTOR_SERVER)
static bool initialized = false;
if (initialized)
return;
initialized = true;
String serverAddress(g_getenv("WEBKIT_INSPECTOR_SERVER"));
if (!serverAddress.isNull()) {
String bindAddress = "127.0.0.1";
unsigned short port = 2999;
Vector<String> result;
serverAddress.split(":", result);
if (result.size() == 2) {
bindAddress = result[0];
bool ok = false;
port = result[1].toInt(&ok);
if (!ok) {
port = 2999;
LOG_ERROR("Couldn't parse the port. Use 2999 instead.");
}
} else
LOG_ERROR("Couldn't parse %s, wrong format? Use 127.0.0.1:2999 instead.", serverAddress.utf8().data());
if (!WebInspectorServer::shared().listen(bindAddress, port))
LOG_ERROR("Couldn't start listening on: IP address=%s, port=%d.", bindAddress.utf8().data(), port);
return;
}
LOG(InspectorServer, "To start inspector server set WEBKIT_INSPECTOR_SERVER to 127.0.0.1:2999 for example.");
#endif
}
WTF::String WebContext::platformDefaultApplicationCacheDirectory() const
{
GOwnPtr<gchar> cacheDirectory(g_build_filename(g_get_user_cache_dir(), "webkitgtk", "applications", NULL));
return WebCore::filenameToString(cacheDirectory.get());
}
void WebContext::platformInitializeWebProcess(WebProcessCreationParameters& parameters)
{
initInspectorServer();
if (!parameters.urlSchemesRegisteredAsLocal.contains("resource")) {
WebCore::SchemeRegistry::registerURLSchemeAsLocal("resource");
parameters.urlSchemesRegisteredAsLocal.append("resource");
}
parameters.urlSchemesRegistered = supplement<WebSoupRequestManagerProxy>()->registeredURISchemes();
supplement<WebCookieManagerProxy>()->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookiePersistentStorageType);
parameters.cookieAcceptPolicy = m_initialHTTPCookieAcceptPolicy;
parameters.ignoreTLSErrors = m_ignoreTLSErrors;
parameters.shouldTrackVisitedLinks = true;
}
void WebContext::platformInvalidateContext()
{
}
String WebContext::platformDefaultDatabaseDirectory() const
{
GOwnPtr<gchar> databaseDirectory(g_build_filename(g_get_user_data_dir(), "webkitgtk", "databases", NULL));
return WebCore::filenameToString(databaseDirectory.get());
}
String WebContext::platformDefaultIconDatabasePath() const
{
GOwnPtr<gchar> databaseDirectory(g_build_filename(g_get_user_data_dir(), "webkitgtk", "icondatabase", NULL));
return WebCore::filenameToString(databaseDirectory.get());
}
String WebContext::platformDefaultLocalStorageDirectory() const
{
GOwnPtr<gchar> storageDirectory(g_build_filename(g_get_user_data_dir(), "webkitgtk", "localstorage", NULL));
return WebCore::filenameToString(storageDirectory.get());
}
String WebContext::platformDefaultDiskCacheDirectory() const
{
GOwnPtr<char> diskCacheDirectory(g_build_filename(g_get_user_cache_dir(), g_get_prgname(), NULL));
return WebCore::filenameToString(diskCacheDirectory.get());
}
String WebContext::platformDefaultCookieStorageDirectory() const
{
notImplemented();
return String();
}
void WebContext::setIgnoreTLSErrors(bool ignoreTLSErrors)
{
m_ignoreTLSErrors = ignoreTLSErrors;
sendToAllProcesses(Messages::WebProcess::SetIgnoreTLSErrors(m_ignoreTLSErrors));
}
} // namespace WebKit
| klim-iv/phantomjs-qt5 | src/webkit/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp | C++ | bsd-3-clause | 5,430 |
package org.jbehave.core.failures;
public final class PassingUponPendingStep implements PendingStepStrategy {
@Override
public void handleFailure(Throwable throwable) {
// do nothing
}
}
| skundrik/jbehave-core | jbehave-core/src/main/java/org/jbehave/core/failures/PassingUponPendingStep.java | Java | bsd-3-clause | 198 |
using System;
using System.Configuration;
namespace Shuttle.Core.Infrastructure
{
public class ComponentResolverCollectionElement : ConfigurationElementCollection
{
protected override ConfigurationElement CreateNewElement()
{
return new ComponentResolverElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return Guid.NewGuid();
}
}
} | Shuttle/shuttle-core-infrastructure | Shuttle.Core.Infrastructure/ComponentContainer/Resolver/ComponentResolverCollectionElement.cs | C# | bsd-3-clause | 453 |
/************************************************************************************
* Copyright (c) 2006, University of Kansas - Hybridthreads Group
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of the University of Kansas nor the name of the
* Hybridthreads Group nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
************************************************************************************/
/** \internal
* \file commands.h
* \brief This file contains the declaration of the commands that
* can be issued to the timer subsystem
*
* \author Wesley Peck <peckw@ittc.ku.edu>\n
* Ed Komp <komp@ittc.ku.edu>
*
* This file contains the declaration of the commands which can be issued
* the the hardware timers. This includes the ability to start timers, stop
* timers, load delta values and others.
*/
#ifndef _HYBRID_THREADS_TIMER_COMMANDS_H_
#define _HYBRID_THREADS_TIMER_COMMANDS_H_
#include <config.h>
#include <util/rops.h>
#define HT_TIMER_GLB_LO 0x00
#define HT_TIMER_GLB_HI 0x04
#define HT_TIMER0_CMD 0x08
#define HT_TIMER0_CMDSET 0x0C
#define HT_TIMER0_CMDCLR 0x10
#define HT_TIMER0_DELTA 0x14
#define HT_TIMER0_DATA 0x18
#define HT_TIMER0_DELAY 0x1C
#define HT_TIMER0_VALUE 0x20
#define HT_TIMER0_INTR_COUNT 0x48
#define HT_TIMER1_CMD 0x24
#define HT_TIMER1_CMDSET 0x28
#define HT_TIMER1_CMDCLR 0x2C
#define HT_TIMER1_DELTA 0x30
#define HT_TIMER1_DATA 0x34
#define HT_TIMER1_DELAY 0x38
#define HT_TIMER1_VALUE 0x3C
#define HT_TIMER1_INTR_COUNT 0x4C
#define HT_DECISION_REG 0x40
#define HT_DECISION_DELAY 0x44
#define HT_TIMER_CMD_RUN 0x01
#define HT_TIMER_CMD_LOAD 0x02
#define HT_TIMER_CMD_ENABLE 0x04
#define HT_TIMER_CMD_PERIODIC 0x08
#define timer_get_command(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_CMD )
#define timer_set_command(t,v) write_reg( TIMER_BASEADDR + \
HT_TIMER##t##_CMDSET, \
(Huint)(v) )
#define timer_clr_command(t,v) write_reg( TIMER_BASEADDR + \
HT_TIMER##t##_CMDCLR, \
(Huint)(v) )
#define timer_get_delta(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_DELTA )
#define timer_set_delta(t,v) write_reg( TIMER_BASEADDR + \
HT_TIMER##t##_DELTA, \
(Huint)(v) )
#define timer_get_data(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_DATA )
#define timer_set_data(t,v) write_reg( TIMER_BASEADDR + \
HT_TIMER##t##_DATA, \
(Huint)(v) )
#define timer_get_intr_count(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_INTR_COUNT )
#define timer_reset_intr_count(t) write_reg( TIMER_BASEADDR + \
HT_TIMER##t##_INTR_COUNT, \
0x00000001 )
#define timer_get_delay(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_DELAY )
#define timer_get_value(t) read_reg( TIMER_BASEADDR + \
HT_TIMER##t##_VALUE )
#define timer_decision_set(v) write_reg( TIMER_BASEADDR + \
HT_DECISION_REG, \
v );
#define timer_decision_get() read_reg( TIMER_BASEADDR + \
HT_DECISION_REG );
#define timer_decision_delay() read_reg( TIMER_BASEADDR + \
HT_DECISION_DELAY );
#define timer_get_globallo() read_reg( TIMER_BASEADDR + \
HT_TIMER_GLB_LO )
#define timer_get_globalhi() read_reg( TIMER_BASEADDR + \
HT_TIMER_GLB_HI )
#endif
| masson2013/heterogeneous_hthreads | include/time/commands.h | C | bsd-3-clause | 5,922 |
#include "aikido/statespace/dart/JointStateSpaceHelpers.hpp"
namespace aikido {
namespace statespace {
namespace dart {
//==============================================================================
std::unique_ptr<JointStateSpace> createJointStateSpace(
const ::dart::dynamics::Joint* joint)
{
auto space = common::DynamicCastFactory<
detail::createJointStateSpaceFor_impl,
common::DynamicCastFactory_raw_ptr,
const ::dart::dynamics::Joint,
detail::ConstSupportedJoints>::create(joint);
if (!space)
{
std::stringstream msg;
msg << "Joint '" << joint->getName() << "' has unsupported type '"
<< joint->getType() << "'.";
throw std::runtime_error(msg.str());
}
return space;
}
} // namespace dart
} // namespace statespace
} // namespace aikido
| personalrobotics/aikido | src/statespace/dart/JointStateSpaceHelpers.cpp | C++ | bsd-3-clause | 809 |
export const description = `
setBindGroup validation tests.
TODO: merge these notes and implement.
> (Note: If there are errors with using certain binding types in certain passes, test those in the file for that pass type, not here.)
>
> - state tracking (probably separate file)
> - x= {compute pass, render pass}
> - {null, compatible, incompatible} current pipeline (should have no effect without draw/dispatch)
> - setBindGroup in different orders (e.g. 0,1,2 vs 2,0,1)
`;
import { makeTestGroup } from '../../../../../common/framework/test_group.js';
import { range, unreachable } from '../../../../../common/util/util.js';
import { kMinDynamicBufferOffsetAlignment } from '../../../../capability_info.js';
import { kResourceStates, ResourceState } from '../../../../gpu_test.js';
import {
kProgrammableEncoderTypes,
ProgrammableEncoderType,
} from '../../../../util/command_buffer_maker.js';
import { ValidationTest } from '../../validation_test.js';
class F extends ValidationTest {
encoderTypeToStageFlag(encoderType: ProgrammableEncoderType): GPUShaderStageFlags {
switch (encoderType) {
case 'compute pass':
return GPUShaderStage.COMPUTE;
case 'render pass':
case 'render bundle':
return GPUShaderStage.FRAGMENT;
default:
unreachable('Unknown encoder type');
}
}
createBindingResourceWithState(
resourceType: 'texture' | 'buffer',
state: 'valid' | 'destroyed'
): GPUBindingResource {
switch (resourceType) {
case 'texture': {
const texture = this.createTextureWithState('valid');
const view = texture.createView();
if (state === 'destroyed') {
texture.destroy();
}
return view;
}
case 'buffer':
return {
buffer: this.createBufferWithState(state, {
size: 4,
usage: GPUBufferUsage.STORAGE,
}),
};
default:
unreachable('unknown resource type');
}
}
/**
* If state is 'invalid', creates an invalid bind group with valid resources.
* If state is 'destroyed', creates a valid bind group with destroyed resources.
*/
createBindGroup(
state: ResourceState,
resourceType: 'buffer' | 'texture',
encoderType: ProgrammableEncoderType,
indices: number[]
) {
if (state === 'invalid') {
this.device.pushErrorScope('validation');
indices = new Array<number>(indices.length + 1).fill(0);
}
const layout = this.device.createBindGroupLayout({
entries: indices.map(binding => ({
binding,
visibility: this.encoderTypeToStageFlag(encoderType),
...(resourceType === 'buffer' ? { buffer: { type: 'storage' } } : { texture: {} }),
})),
});
const bindGroup = this.device.createBindGroup({
layout,
entries: indices.map(binding => ({
binding,
resource: this.createBindingResourceWithState(
resourceType,
state === 'destroyed' ? state : 'valid'
),
})),
});
if (state === 'invalid') {
this.device.popErrorScope();
}
return bindGroup;
}
}
export const g = makeTestGroup(F);
g.test('state_and_binding_index')
.desc('Tests that setBindGroup correctly handles {valid, invalid, destroyed} bindGroups.')
.params(u =>
u
.combine('encoderType', kProgrammableEncoderTypes)
.combine('state', kResourceStates)
.combine('resourceType', ['buffer', 'texture'] as const)
)
.fn(async t => {
const { encoderType, state, resourceType } = t.params;
const maxBindGroups = t.device.limits?.maxBindGroups ?? 4;
async function runTest(index: number) {
const { encoder, validateFinishAndSubmit } = t.createEncoder(encoderType);
encoder.setBindGroup(index, t.createBindGroup(state, resourceType, encoderType, [index]));
validateFinishAndSubmit(state !== 'invalid' && index < maxBindGroups, state !== 'destroyed');
}
// MAINTENANCE_TODO: move to subcases() once we can query the device limits
for (const index of [1, maxBindGroups - 1, maxBindGroups]) {
t.debug(`test bind group index ${index}`);
await runTest(index);
}
});
g.test('bind_group,device_mismatch')
.desc(
`
Tests setBindGroup cannot be called with a bind group created from another device
- x= setBindGroup {sequence overload, Uint32Array overload}
`
)
.params(u =>
u
.combine('encoderType', kProgrammableEncoderTypes)
.beginSubcases()
.combine('useU32Array', [true, false])
.combine('mismatched', [true, false])
)
.unimplemented();
g.test('dynamic_offsets_passed_but_not_expected')
.desc('Tests that setBindGroup correctly errors on unexpected dynamicOffsets.')
.params(u => u.combine('encoderType', kProgrammableEncoderTypes))
.fn(async t => {
const { encoderType } = t.params;
const bindGroup = t.createBindGroup('valid', 'buffer', encoderType, []);
const dynamicOffsets = [0];
const { encoder, validateFinish } = t.createEncoder(encoderType);
encoder.setBindGroup(0, bindGroup, dynamicOffsets);
validateFinish(false);
});
g.test('dynamic_offsets_match_expectations_in_pass_encoder')
.desc('Tests that given dynamicOffsets match the specified bindGroup.')
.params(u =>
u
.combine('encoderType', kProgrammableEncoderTypes)
.combineWithParams([
{ dynamicOffsets: [256, 0], _success: true }, // Dynamic offsets aligned
{ dynamicOffsets: [1, 2], _success: false }, // Dynamic offsets not aligned
// Wrong number of dynamic offsets
{ dynamicOffsets: [256, 0, 0], _success: false },
{ dynamicOffsets: [256], _success: false },
{ dynamicOffsets: [], _success: false },
// Dynamic uniform buffer out of bounds because of binding size
{ dynamicOffsets: [512, 0], _success: false },
{ dynamicOffsets: [1024, 0], _success: false },
{ dynamicOffsets: [0xffffffff, 0], _success: false },
// Dynamic storage buffer out of bounds because of binding size
{ dynamicOffsets: [0, 512], _success: false },
{ dynamicOffsets: [0, 1024], _success: false },
{ dynamicOffsets: [0, 0xffffffff], _success: false },
])
.combine('useU32array', [false, true])
)
.fn(async t => {
const kBindingSize = 9;
const bindGroupLayout = t.device.createBindGroupLayout({
entries: [
{
binding: 0,
visibility: GPUShaderStage.COMPUTE | GPUShaderStage.FRAGMENT,
buffer: {
type: 'uniform',
hasDynamicOffset: true,
},
},
{
binding: 1,
visibility: GPUShaderStage.COMPUTE | GPUShaderStage.FRAGMENT,
buffer: {
type: 'storage',
hasDynamicOffset: true,
},
},
],
});
const uniformBuffer = t.device.createBuffer({
size: 2 * kMinDynamicBufferOffsetAlignment + 8,
usage: GPUBufferUsage.UNIFORM,
});
const storageBuffer = t.device.createBuffer({
size: 2 * kMinDynamicBufferOffsetAlignment + 8,
usage: GPUBufferUsage.STORAGE,
});
const bindGroup = t.device.createBindGroup({
layout: bindGroupLayout,
entries: [
{
binding: 0,
resource: {
buffer: uniformBuffer,
size: kBindingSize,
},
},
{
binding: 1,
resource: {
buffer: storageBuffer,
size: kBindingSize,
},
},
],
});
const { encoderType, dynamicOffsets, useU32array, _success } = t.params;
const { encoder, validateFinish } = t.createEncoder(encoderType);
if (useU32array) {
encoder.setBindGroup(0, bindGroup, new Uint32Array(dynamicOffsets), 0, dynamicOffsets.length);
} else {
encoder.setBindGroup(0, bindGroup, dynamicOffsets);
}
validateFinish(_success);
});
g.test('u32array_start_and_length')
.desc('Tests that dynamicOffsetsData(Start|Length) apply to the given Uint32Array.')
.paramsSubcasesOnly([
// dynamicOffsetsDataLength > offsets.length
{
offsets: [0] as const,
dynamicOffsetsDataStart: 0,
dynamicOffsetsDataLength: 2,
_success: false,
},
// dynamicOffsetsDataStart + dynamicOffsetsDataLength > offsets.length
{
offsets: [0] as const,
dynamicOffsetsDataStart: 1,
dynamicOffsetsDataLength: 1,
_success: false,
},
{
offsets: [0, 0] as const,
dynamicOffsetsDataStart: 1,
dynamicOffsetsDataLength: 1,
_success: true,
},
{
offsets: [0, 0, 0] as const,
dynamicOffsetsDataStart: 1,
dynamicOffsetsDataLength: 1,
_success: true,
},
{
offsets: [0, 0] as const,
dynamicOffsetsDataStart: 0,
dynamicOffsetsDataLength: 2,
_success: true,
},
])
.fn(t => {
const { offsets, dynamicOffsetsDataStart, dynamicOffsetsDataLength, _success } = t.params;
const kBindingSize = 8;
const bindGroupLayout = t.device.createBindGroupLayout({
entries: range(dynamicOffsetsDataLength, i => ({
binding: i,
visibility: GPUShaderStage.FRAGMENT,
buffer: {
type: 'storage',
hasDynamicOffset: true,
},
})),
});
const bindGroup = t.device.createBindGroup({
layout: bindGroupLayout,
entries: range(dynamicOffsetsDataLength, i => ({
binding: i,
resource: {
buffer: t.createBufferWithState('valid', {
size: kBindingSize,
usage: GPUBufferUsage.STORAGE,
}),
size: kBindingSize,
},
})),
});
const { encoder, validateFinish } = t.createEncoder('render pass');
const doSetBindGroup = () => {
encoder.setBindGroup(
0,
bindGroup,
new Uint32Array(offsets),
dynamicOffsetsDataStart,
dynamicOffsetsDataLength
);
};
if (_success) {
doSetBindGroup();
} else {
t.shouldThrow('RangeError', doSetBindGroup);
}
// RangeError in setBindGroup does not cause the encoder to become invalid.
validateFinish(true);
});
| gpuweb/cts | src/webgpu/api/validation/encoding/cmds/setBindGroup.spec.ts | TypeScript | bsd-3-clause | 10,251 |
"""
Django ID mapper
Modified for Evennia by making sure that no model references
leave caching unexpectedly (no use if WeakRefs).
Also adds cache_size() for monitoring the size of the cache.
"""
import os, threading
#from twisted.internet import reactor
#from twisted.internet.threads import blockingCallFromThread
from twisted.internet.reactor import callFromThread
from django.core.exceptions import ObjectDoesNotExist, FieldError
from django.db.models.base import Model, ModelBase
from django.db.models.signals import post_save, pre_delete, post_syncdb
from src.utils.utils import dbref, get_evennia_pids, to_str
from manager import SharedMemoryManager
_FIELD_CACHE_GET = None
_FIELD_CACHE_SET = None
_GA = object.__getattribute__
_SA = object.__setattr__
_DA = object.__delattr__
# determine if our current pid is different from the server PID (i.e.
# if we are in a subprocess or not)
from src import PROC_MODIFIED_OBJS
# get info about the current process and thread
_SELF_PID = os.getpid()
_SERVER_PID, _PORTAL_PID = get_evennia_pids()
_IS_SUBPROCESS = (_SERVER_PID and _PORTAL_PID) and not _SELF_PID in (_SERVER_PID, _PORTAL_PID)
_IS_MAIN_THREAD = threading.currentThread().getName() == "MainThread"
#_SERVER_PID = None
#_PORTAL_PID = None
# #global _SERVER_PID, _PORTAL_PID, _IS_SUBPROCESS, _SELF_PID
# if not _SERVER_PID and not _PORTAL_PID:
# _IS_SUBPROCESS = (_SERVER_PID and _PORTAL_PID) and not _SELF_PID in (_SERVER_PID, _PORTAL_PID)
class SharedMemoryModelBase(ModelBase):
# CL: upstream had a __new__ method that skipped ModelBase's __new__ if
# SharedMemoryModelBase was not in the model class's ancestors. It's not
# clear what was the intended purpose, but skipping ModelBase.__new__
# broke things; in particular, default manager inheritance.
def __call__(cls, *args, **kwargs):
"""
this method will either create an instance (by calling the default implementation)
or try to retrieve one from the class-wide cache by infering the pk value from
args and kwargs. If instance caching is enabled for this class, the cache is
populated whenever possible (ie when it is possible to infer the pk value).
"""
def new_instance():
return super(SharedMemoryModelBase, cls).__call__(*args, **kwargs)
instance_key = cls._get_cache_key(args, kwargs)
# depending on the arguments, we might not be able to infer the PK, so in that case we create a new instance
if instance_key is None:
return new_instance()
cached_instance = cls.get_cached_instance(instance_key)
if cached_instance is None:
cached_instance = new_instance()
cls.cache_instance(cached_instance)
return cached_instance
def _prepare(cls):
cls.__instance_cache__ = {} #WeakValueDictionary()
super(SharedMemoryModelBase, cls)._prepare()
def __new__(cls, classname, bases, classdict, *args, **kwargs):
"""
Field shortcut creation:
Takes field names db_* and creates property wrappers named without the db_ prefix. So db_key -> key
This wrapper happens on the class level, so there is no overhead when creating objects. If a class
already has a wrapper of the given name, the automatic creation is skipped. Note: Remember to
document this auto-wrapping in the class header, this could seem very much like magic to the user otherwise.
"""
def create_wrapper(cls, fieldname, wrappername, editable=True, foreignkey=False):
"Helper method to create property wrappers with unique names (must be in separate call)"
def _get(cls, fname):
"Wrapper for getting database field"
#print "_get:", fieldname, wrappername,_GA(cls,fieldname)
return _GA(cls, fieldname)
def _get_foreign(cls, fname):
"Wrapper for returing foreignkey fields"
value = _GA(cls, fieldname)
#print "_get_foreign:value:", value
try:
return _GA(value, "typeclass")
except:
return value
def _set_nonedit(cls, fname, value):
"Wrapper for blocking editing of field"
raise FieldError("Field %s cannot be edited." % fname)
def _set(cls, fname, value):
"Wrapper for setting database field"
_SA(cls, fname, value)
# only use explicit update_fields in save if we actually have a
# primary key assigned already (won't be set when first creating object)
update_fields = [fname] if _GA(cls, "_get_pk_val")(_GA(cls, "_meta")) is not None else None
_GA(cls, "save")(update_fields=update_fields)
def _set_foreign(cls, fname, value):
"Setter only used on foreign key relations, allows setting with #dbref"
try:
value = _GA(value, "dbobj")
except AttributeError:
pass
if isinstance(value, (basestring, int)):
value = to_str(value, force_string=True)
if (value.isdigit() or value.startswith("#")):
# we also allow setting using dbrefs, if so we try to load the matching object.
# (we assume the object is of the same type as the class holding the field, if
# not a custom handler must be used for that field)
dbid = dbref(value, reqhash=False)
if dbid:
model = _GA(cls, "_meta").get_field(fname).model
try:
value = model._default_manager.get(id=dbid)
except ObjectDoesNotExist:
# maybe it is just a name that happens to look like a dbid
pass
_SA(cls, fname, value)
# only use explicit update_fields in save if we actually have a
# primary key assigned already (won't be set when first creating object)
update_fields = [fname] if _GA(cls, "_get_pk_val")(_GA(cls, "_meta")) is not None else None
_GA(cls, "save")(update_fields=update_fields)
def _del_nonedit(cls, fname):
"wrapper for not allowing deletion"
raise FieldError("Field %s cannot be edited." % fname)
def _del(cls, fname):
"Wrapper for clearing database field - sets it to None"
_SA(cls, fname, None)
update_fields = [fname] if _GA(cls, "_get_pk_val")(_GA(cls, "_meta")) is not None else None
_GA(cls, "save")(update_fields=update_fields)
# wrapper factories
fget = lambda cls: _get(cls, fieldname)
if not editable:
fset = lambda cls, val: _set_nonedit(cls, fieldname, val)
elif foreignkey:
fget = lambda cls: _get_foreign(cls, fieldname)
fset = lambda cls, val: _set_foreign(cls, fieldname, val)
else:
fset = lambda cls, val: _set(cls, fieldname, val)
fdel = lambda cls: _del(cls, fieldname) if editable else _del_nonedit(cls,fieldname)
# assigning
classdict[wrappername] = property(fget, fset, fdel)
#type(cls).__setattr__(cls, wrappername, property(fget, fset, fdel))#, doc))
# exclude some models that should not auto-create wrapper fields
if cls.__name__ in ("ServerConfig", "TypeNick"):
return
# dynamically create the wrapper properties for all fields not already handled (manytomanyfields are always handlers)
for fieldname, field in ((fname, field) for fname, field in classdict.items()
if fname.startswith("db_") and type(field).__name__ != "ManyToManyField"):
foreignkey = type(field).__name__ == "ForeignKey"
#print fieldname, type(field).__name__, field
wrappername = "dbid" if fieldname == "id" else fieldname.replace("db_", "", 1)
if wrappername not in classdict:
# makes sure not to overload manually created wrappers on the model
#print "wrapping %s -> %s" % (fieldname, wrappername)
create_wrapper(cls, fieldname, wrappername, editable=field.editable, foreignkey=foreignkey)
return super(SharedMemoryModelBase, cls).__new__(cls, classname, bases, classdict, *args, **kwargs)
#def __init__(cls, *args, **kwargs):
# """
# Field shortcut creation:
# Takes field names db_* and creates property wrappers named without the db_ prefix. So db_key -> key
# This wrapper happens on the class level, so there is no overhead when creating objects. If a class
# already has a wrapper of the given name, the automatic creation is skipped. Note: Remember to
# document this auto-wrapping in the class header, this could seem very much like magic to the user otherwise.
# """
# super(SharedMemoryModelBase, cls).__init__(*args, **kwargs)
# def create_wrapper(cls, fieldname, wrappername, editable=True):
# "Helper method to create property wrappers with unique names (must be in separate call)"
# def _get(cls, fname):
# "Wrapper for getting database field"
# value = _GA(cls, fieldname)
# if type(value) in (basestring, int, float, bool):
# return value
# elif hasattr(value, "typeclass"):
# return _GA(value, "typeclass")
# return value
# def _set_nonedit(cls, fname, value):
# "Wrapper for blocking editing of field"
# raise FieldError("Field %s cannot be edited." % fname)
# def _set(cls, fname, value):
# "Wrapper for setting database field"
# #print "_set:", fname
# if hasattr(value, "dbobj"):
# value = _GA(value, "dbobj")
# elif isinstance(value, basestring) and (value.isdigit() or value.startswith("#")):
# # we also allow setting using dbrefs, if so we try to load the matching object.
# # (we assume the object is of the same type as the class holding the field, if
# # not a custom handler must be used for that field)
# dbid = dbref(value, reqhash=False)
# if dbid:
# try:
# value = cls._default_manager.get(id=dbid)
# except ObjectDoesNotExist:
# # maybe it is just a name that happens to look like a dbid
# from src.utils.logger import log_trace
# log_trace()
# #print "_set wrapper:", fname, value, type(value), cls._get_pk_val(cls._meta)
# _SA(cls, fname, value)
# # only use explicit update_fields in save if we actually have a
# # primary key assigned already (won't be set when first creating object)
# update_fields = [fname] if _GA(cls, "_get_pk_val")(_GA(cls, "_meta")) is not None else None
# _GA(cls, "save")(update_fields=update_fields)
# def _del_nonedit(cls, fname):
# "wrapper for not allowing deletion"
# raise FieldError("Field %s cannot be edited." % fname)
# def _del(cls, fname):
# "Wrapper for clearing database field - sets it to None"
# _SA(cls, fname, None)
# update_fields = [fname] if _GA(cls, "_get_pk_val")(_GA(cls, "_meta")) is not None else None
# _GA(cls, "save")(update_fields=update_fields)
# # create class field wrappers
# fget = lambda cls: _get(cls, fieldname)
# fset = lambda cls, val: _set(cls, fieldname, val) if editable else _set_nonedit(cls, fieldname, val)
# fdel = lambda cls: _del(cls, fieldname) if editable else _del_nonedit(cls,fieldname)
# type(cls).__setattr__(cls, wrappername, property(fget, fset, fdel))#, doc))
# # exclude some models that should not auto-create wrapper fields
# if cls.__name__ in ("ServerConfig", "TypeNick"):
# return
# # dynamically create the wrapper properties for all fields not already handled
# for field in cls._meta.fields:
# fieldname = field.name
# if fieldname.startswith("db_"):
# wrappername = "dbid" if fieldname == "id" else fieldname.replace("db_", "")
# if not hasattr(cls, wrappername):
# # makes sure not to overload manually created wrappers on the model
# #print "wrapping %s -> %s" % (fieldname, wrappername)
# create_wrapper(cls, fieldname, wrappername, editable=field.editable)
class SharedMemoryModel(Model):
# CL: setting abstract correctly to allow subclasses to inherit the default
# manager.
__metaclass__ = SharedMemoryModelBase
objects = SharedMemoryManager()
class Meta:
abstract = True
def _get_cache_key(cls, args, kwargs):
"""
This method is used by the caching subsystem to infer the PK value from the constructor arguments.
It is used to decide if an instance has to be built or is already in the cache.
"""
result = None
# Quick hack for my composites work for now.
if hasattr(cls._meta, 'pks'):
pk = cls._meta.pks[0]
else:
pk = cls._meta.pk
# get the index of the pk in the class fields. this should be calculated *once*, but isn't atm
pk_position = cls._meta.fields.index(pk)
if len(args) > pk_position:
# if it's in the args, we can get it easily by index
result = args[pk_position]
elif pk.attname in kwargs:
# retrieve the pk value. Note that we use attname instead of name, to handle the case where the pk is a
# a ForeignKey.
result = kwargs[pk.attname]
elif pk.name != pk.attname and pk.name in kwargs:
# ok we couldn't find the value, but maybe it's a FK and we can find the corresponding object instead
result = kwargs[pk.name]
if result is not None and isinstance(result, Model):
# if the pk value happens to be a model instance (which can happen wich a FK), we'd rather use its own pk as the key
result = result._get_pk_val()
return result
_get_cache_key = classmethod(_get_cache_key)
def _flush_cached_by_key(cls, key):
try:
del cls.__instance_cache__[key]
except KeyError:
pass
_flush_cached_by_key = classmethod(_flush_cached_by_key)
def get_cached_instance(cls, id):
"""
Method to retrieve a cached instance by pk value. Returns None when not found
(which will always be the case when caching is disabled for this class). Please
note that the lookup will be done even when instance caching is disabled.
"""
return cls.__instance_cache__.get(id)
get_cached_instance = classmethod(get_cached_instance)
def cache_instance(cls, instance):
"""
Method to store an instance in the cache.
"""
if instance._get_pk_val() is not None:
cls.__instance_cache__[instance._get_pk_val()] = instance
cache_instance = classmethod(cache_instance)
def get_all_cached_instances(cls):
"return the objects so far cached by idmapper for this class."
return cls.__instance_cache__.values()
get_all_cached_instances = classmethod(get_all_cached_instances)
def flush_cached_instance(cls, instance):
"""
Method to flush an instance from the cache. The instance will always be flushed from the cache,
since this is most likely called from delete(), and we want to make sure we don't cache dead objects.
"""
cls._flush_cached_by_key(instance._get_pk_val())
flush_cached_instance = classmethod(flush_cached_instance)
def flush_instance_cache(cls):
cls.__instance_cache__ = {} #WeakValueDictionary()
flush_instance_cache = classmethod(flush_instance_cache)
def save(cls, *args, **kwargs):
"save method tracking process/thread issues"
if _IS_SUBPROCESS:
# we keep a store of objects modified in subprocesses so
# we know to update their caches in the central process
PROC_MODIFIED_OBJS.append(cls)
if _IS_MAIN_THREAD:
# in main thread - normal operation
super(SharedMemoryModel, cls).save(*args, **kwargs)
else:
# in another thread; make sure to save in reactor thread
def _save_callback(cls, *args, **kwargs):
super(SharedMemoryModel, cls).save(*args, **kwargs)
#blockingCallFromThread(reactor, _save_callback, cls, *args, **kwargs)
callFromThread(_save_callback, cls, *args, **kwargs)
# Use a signal so we make sure to catch cascades.
def flush_cache(**kwargs):
def class_hierarchy(root):
"""Recursively yield a class hierarchy."""
yield root
for subcls in root.__subclasses__():
for cls in class_hierarchy(subcls):
yield cls
for model in class_hierarchy(SharedMemoryModel):
model.flush_instance_cache()
#request_finished.connect(flush_cache)
post_syncdb.connect(flush_cache)
def flush_cached_instance(sender, instance, **kwargs):
# XXX: Is this the best way to make sure we can flush?
if not hasattr(instance, 'flush_cached_instance'):
return
sender.flush_cached_instance(instance)
pre_delete.connect(flush_cached_instance)
def update_cached_instance(sender, instance, **kwargs):
if not hasattr(instance, 'cache_instance'):
return
sender.cache_instance(instance)
post_save.connect(update_cached_instance)
def cache_size(mb=True):
"""
Returns a dictionary with estimates of the
cache size of each subclass.
mb - return the result in MB.
"""
import sys
sizedict = {"_total": [0, 0]}
def getsize(model):
instances = model.get_all_cached_instances()
linst = len(instances)
size = sum([sys.getsizeof(o) for o in instances])
size = (mb and size/1024.0) or size
return (linst, size)
def get_recurse(submodels):
for submodel in submodels:
subclasses = submodel.__subclasses__()
if not subclasses:
tup = getsize(submodel)
sizedict["_total"][0] += tup[0]
sizedict["_total"][1] += tup[1]
sizedict[submodel.__name__] = tup
else:
get_recurse(subclasses)
get_recurse(SharedMemoryModel.__subclasses__())
sizedict["_total"] = tuple(sizedict["_total"])
return sizedict
| tectronics/evennia | src/utils/idmapper/base.py | Python | bsd-3-clause | 19,327 |
// Copyright 2012, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package bson
import (
"bytes"
"testing"
"time"
"github.com/youtube/vitess/go/bytes2"
)
func TestVariety(t *testing.T) {
in := map[string]string{"Val": "test"}
encoded := VerifyMarshal(t, in)
expected := []byte("\x13\x00\x00\x00\x05Val\x00\x04\x00\x00\x00\x00test\x00")
compare(t, encoded, expected)
out := make(map[string]interface{})
err := Unmarshal(encoded, &out)
if in["Val"] != string(out["Val"].([]byte)) {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out)
}
var out1 string
err = Unmarshal(encoded, &out1)
if out1 != "test" {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out1)
}
var out2 interface{}
err = Unmarshal(encoded, &out2)
if string(out2.(map[string]interface{})["Val"].([]byte)) != "test" {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out2)
}
type mystruct struct {
Val string
}
var out3 mystruct
err = Unmarshal(encoded, &out3)
if out3.Val != "test" {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out3)
}
}
type alltypes struct {
Bytes []byte
Float64 float64
String string
Bool bool
Time time.Time
Int32 int32
Int int
Int64 int64
Uint64 uint64
Strings []string
Nil interface{}
}
func (a *alltypes) UnmarshalBson(buf *bytes.Buffer) {
Next(buf, 4)
kind := NextByte(buf)
for kind != EOO {
key := ReadCString(buf)
switch key {
case "Bytes":
verifyKind("Bytes", Binary, kind)
a.Bytes = DecodeBytes(buf, kind)
case "Float64":
verifyKind("Float64", Number, kind)
a.Float64 = DecodeFloat64(buf, kind)
case "String":
verifyKind("String", Binary, kind)
a.String = DecodeString(buf, kind)
case "Bool":
verifyKind("Bool", Boolean, kind)
a.Bool = DecodeBool(buf, kind)
case "Time":
verifyKind("Time", Datetime, kind)
a.Time = DecodeTime(buf, kind)
case "Int32":
verifyKind("Int32", Int, kind)
a.Int32 = DecodeInt32(buf, kind)
case "Int":
verifyKind("Int", Long, kind)
a.Int = DecodeInt(buf, kind)
case "Int64":
verifyKind("Int64", Long, kind)
a.Int64 = DecodeInt64(buf, kind)
case "Uint64":
verifyKind("Uint64", Ulong, kind)
a.Uint64 = DecodeUint64(buf, kind)
case "Strings":
verifyKind("Strings", Array, kind)
a.Strings = DecodeStringArray(buf, kind)
case "Nil":
verifyKind("Nil", Null, kind)
default:
panic(NewBsonError("Unrecognized tag %s", key))
}
kind = NextByte(buf)
}
}
func verifyKind(tag string, expecting, actual byte) {
if expecting != actual {
panic(NewBsonError("Decode %s: expecting %v, actual %v", tag, expecting, actual))
}
}
// TestCustom tests custom unmarshalling
func TestCustom(t *testing.T) {
a := alltypes{
Bytes: []byte("bytes"),
Float64: float64(64),
String: "string",
Bool: true,
Time: time.Unix(1136243045, 0),
Int32: int32(-0x80000000),
Int: int(-0x80000000),
Int64: int64(-0x8000000000000000),
Uint64: uint64(0xFFFFFFFFFFFFFFFF),
Strings: []string{"a", "b"},
Nil: nil,
}
encoded := VerifyMarshal(t, a)
var out alltypes
err := Unmarshal(encoded, &out)
if err != nil {
t.Fatalf("unmarshal fail: %v\n", err)
}
if string(out.Bytes) != "bytes" {
t.Errorf("bytes fail: %s", out.Bytes)
}
if out.Float64 != 64 {
t.Error("float fail: %v", out.Float64)
}
if out.String != "string" {
t.Errorf("string fail: %v", out.String)
}
if !out.Bool {
t.Errorf("bool fail: %v", out.Bool)
}
if out.Time.Unix() != 1136243045 {
t.Errorf("time fail: %v", out.Time)
}
if out.Int32 != -0x80000000 {
t.Errorf("int32 fail: %v", out.Int32)
}
if out.Int != -0x80000000 {
t.Errorf("int fail: %v", out.Int)
}
if out.Int64 != -0x8000000000000000 {
t.Errorf("int64 fail: %v", out.Int64)
}
if out.Uint64 != 0xFFFFFFFFFFFFFFFF {
t.Errorf("uint64 fail: %v", out.Uint64)
}
if out.Strings[0] != "a" || out.Strings[1] != "b" {
t.Errorf("strings fail: %v", out.Strings)
}
b := alltypes{Bytes: []byte(""), Strings: []string{"a"}}
encoded = VerifyMarshal(t, b)
var outb alltypes
err = Unmarshal(encoded, &outb)
if err != nil {
t.Fatalf("unmarshal fail: %v\n", err)
}
if outb.Bytes == nil || len(outb.Bytes) != 0 {
t.Errorf("nil bytes fail: %s", outb.Bytes)
}
}
func TestTypes(t *testing.T) {
in := make(map[string]interface{})
in["bytes"] = []byte("bytes")
in["float64"] = float64(64)
in["string"] = "string"
in["bool"] = true
in["time"] = time.Unix(1136243045, 0)
in["int32"] = int32(-0x80000000)
in["int"] = int(-0x80000000)
in["int64"] = int64(-0x8000000000000000)
in["uint"] = uint(0xFFFFFFFF)
in["uint32"] = uint32(0xFFFFFFFF)
in["uint64"] = uint64(0xFFFFFFFFFFFFFFFF)
in["slice"] = []interface{}{1, nil}
in["nil"] = nil
encoded := VerifyMarshal(t, in)
out := make(map[string]interface{})
err := Unmarshal(encoded, &out)
if err != nil {
t.Fatalf("unmarshal fail: %v\n", err)
}
if string(in["bytes"].([]byte)) != "bytes" {
t.Errorf("bytes fail")
}
if out["float64"].(float64) != float64(64) {
t.Errorf("float fail")
}
if string(out["string"].([]byte)) != "string" {
t.Errorf("string fail")
}
if out["bool"].(bool) == false {
t.Errorf("bool fail")
}
tm, ok := out["time"].(time.Time)
if !ok {
t.Errorf("time type failed")
}
if tm.Unix() != 1136243045 {
t.Error("time failed")
}
if v := out["int32"].(int32); v != int32(-0x80000000) {
t.Errorf("int32 fail: %v", v)
}
if v := out["int"].(int64); v != int64(-0x80000000) {
t.Errorf("int fail: %v", v)
}
if v := out["int64"].(int64); v != int64(-0x8000000000000000) {
t.Errorf("int64 fail: %v", v)
}
if v := out["uint"].(uint64); v != uint64(0xFFFFFFFF) {
t.Errorf("uint fail: %v", v)
}
if v := out["uint32"].(uint64); v != uint64(0xFFFFFFFF) {
t.Errorf("uint32 fail: %v", v)
}
if v := out["uint64"].(uint64); v != uint64(0xFFFFFFFFFFFFFFFF) {
t.Errorf("uint64 fail: %v", v)
}
if v := out["slice"].([]interface{})[0].(int64); v != 1 {
t.Errorf("slice fail: %v", v)
}
if v := out["slice"].([]interface{})[1]; v != nil {
t.Errorf("slice fail: %v", v)
}
if nilval, ok := out["nil"]; !ok || nilval != nil {
t.Errorf("nil fail")
}
}
func TestBinary(t *testing.T) {
in := map[string][]byte{"Val": []byte("test")}
encoded := VerifyMarshal(t, in)
expected := []byte("\x13\x00\x00\x00\x05Val\x00\x04\x00\x00\x00\x00test\x00")
compare(t, encoded, expected)
out := make(map[string]interface{})
err := Unmarshal(encoded, &out)
if string(out["Val"].([]byte)) != "test" {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out)
}
var out1 []byte
err = Unmarshal(encoded, &out1)
if string(out1) != "test" {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out1)
}
}
func TestInt(t *testing.T) {
in := map[string]int{"Val": 20}
encoded := VerifyMarshal(t, in)
expected := []byte("\x12\x00\x00\x00\x12Val\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00")
compare(t, encoded, expected)
out := make(map[string]interface{})
err := Unmarshal(encoded, &out)
if out["Val"].(int64) != 20 {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%v\n", err, in, out)
}
var out1 int
err = Unmarshal(encoded, &out1)
if out1 != 20 {
t.Errorf("unmarshal doesn't match input: %v\n%v\n%vn", err, in, out1)
}
}
// test that we are calling the right encoding method
// if we use the reflection code, this will fail as reflection
// cannot access the non-exported field
type PrivateStruct struct {
veryPrivate uint64
}
// an array can use non-pointers for custom marshaler
type PrivateStructList struct {
List []PrivateStruct
}
// the map has to be using pointers, so the custom marshaler is used
type PrivateStructMap struct {
Map map[string]*PrivateStruct
}
func (ps *PrivateStruct) MarshalBson(buf *bytes2.ChunkedWriter) {
lenWriter := NewLenWriter(buf)
EncodePrefix(buf, Long, "Type")
EncodeUint64(buf, ps.veryPrivate)
buf.WriteByte(0)
lenWriter.RecordLen()
}
func TestCustomMarshaler(t *testing.T) {
s := &PrivateStruct{1}
_, err := Marshal(s)
if err != nil {
t.Errorf("Marshal error 1: %s\n", err)
}
sl := &PrivateStructList{make([]PrivateStruct, 1)}
sl.List[0] = *s
_, err = Marshal(sl)
if err != nil {
t.Errorf("Marshal error 2: %s\n", err)
}
sm := &PrivateStructMap{make(map[string]*PrivateStruct)}
sm.Map["first"] = s
_, err = Marshal(sm)
if err != nil {
t.Errorf("Marshal error 3: %s\n", err)
}
}
func VerifyMarshal(t *testing.T, Val interface{}) []byte {
encoded, err := Marshal(Val)
if err != nil {
t.Errorf("marshal2 error: %s\n", err)
}
return encoded
}
type HasPrivate struct {
private string
Public string
}
func TestIgnorePrivateFields(t *testing.T) {
v := HasPrivate{private: "private", Public: "public"}
marshaled := VerifyMarshal(t, v)
unmarshaled := new(HasPrivate)
Unmarshal(marshaled, unmarshaled)
if unmarshaled.Public != "Public" && unmarshaled.private != "" {
t.Errorf("private fields were not ignored: %#v", unmarshaled)
}
}
func compare(t *testing.T, encoded []byte, expected []byte) {
if len(encoded) != len(expected) {
t.Errorf("encoding mismatch:\n%#v\n%#v\n", string(encoded), string(expected))
} else {
for i := range encoded {
if encoded[i] != expected[i] {
t.Errorf("encoding mismatch:\n%#v\n%#v\n", string(encoded), string(expected))
break
}
}
}
}
var testMap map[string]interface{}
var testBlob []byte
func init() {
in := make(map[string]interface{})
in["bytes"] = []byte("bytes")
in["float64"] = float64(64)
in["string"] = "string"
in["bool"] = true
in["time"] = time.Unix(1136243045, 0)
in["int32"] = int32(-0x80000000)
in["int"] = int(-0x80000000)
in["int64"] = int64(-0x8000000000000000)
in["uint"] = uint(0xFFFFFFFF)
in["uint32"] = uint32(0xFFFFFFFF)
in["uint64"] = uint64(0xFFFFFFFFFFFFFFFF)
in["slice"] = []interface{}{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, nil}
in["nil"] = nil
testMap = in
testBlob, _ = Marshal(testMap)
}
func BenchmarkMarshal(b *testing.B) {
for i := 0; i < b.N; i++ {
_, err := Marshal(testMap)
if err != nil {
panic(err)
}
}
}
func BenchmarkUnmarshal(b *testing.B) {
for i := 0; i < b.N; i++ {
err := Unmarshal(testBlob, map[string]interface{}{})
if err != nil {
panic(err)
}
}
}
| HeisenbergUncertain/vitess | go/bson/bson_test.go | GO | bsd-3-clause | 10,358 |
var searchData=
[
['put_125',['put',['../classpmem_1_1kv_1_1db.html#a31dbecf3c960dec47d4a04328b9efd92',1,'pmem::kv::db']]],
['put_5fcomparator_126',['put_comparator',['../classpmem_1_1kv_1_1config.html#a95af80763cf924cf0b656d4ded034222',1,'pmem::kv::config']]],
['put_5fdata_127',['put_data',['../classpmem_1_1kv_1_1config.html#af6c8419518a384cdce1f36cd2a1e4545',1,'pmem::kv::config']]],
['put_5fforce_5fcreate_128',['put_force_create',['../classpmem_1_1kv_1_1config.html#ae64b5cc81866de14f975d7238acb26c3',1,'pmem::kv::config']]],
['put_5fint64_129',['put_int64',['../classpmem_1_1kv_1_1config.html#ad9020906aa23b44157ce25fc83c425c8',1,'pmem::kv::config']]],
['put_5fobject_130',['put_object',['../classpmem_1_1kv_1_1config.html#ab8dba893f7332490c7624a2802ebd931',1,'pmem::kv::config::put_object(const std::string &key, T *value, void(*deleter)(void *)) noexcept'],['../classpmem_1_1kv_1_1config.html#a1c0f1b1157e5922f2287f36be2d92015',1,'pmem::kv::config::put_object(const std::string &key, std::unique_ptr< T, D > object) noexcept']]],
['put_5foid_131',['put_oid',['../classpmem_1_1kv_1_1config.html#ab41100ae393deddbfbcd2bbfef818744',1,'pmem::kv::config']]],
['put_5fpath_132',['put_path',['../classpmem_1_1kv_1_1config.html#acc5378a2f1df9c5273dcfd81b67b3664',1,'pmem::kv::config']]],
['put_5fsize_133',['put_size',['../classpmem_1_1kv_1_1config.html#a44b187e6f020ae04a024a6df2b6629e0',1,'pmem::kv::config']]],
['put_5fstring_134',['put_string',['../classpmem_1_1kv_1_1config.html#a6b14f4878bd1ba832e43da8bf2a6ffc9',1,'pmem::kv::config']]],
['put_5fuint64_135',['put_uint64',['../classpmem_1_1kv_1_1config.html#a3b21e4344c87f542f6e2b6fc152e74a9',1,'pmem::kv::config']]]
];
| pbalcer/pbalcer.github.io | content/pmemkv/v1.3/doxygen/search/functions_6.js | JavaScript | bsd-3-clause | 1,713 |
package net.emaze.dysfunctional.consumers;
import java.util.Iterator;
import net.emaze.dysfunctional.contracts.dbc;
import java.util.function.Function;
/**
* A unary function consuming an iterator and yielding last element contained in
* it.
*
* @param <E> the iterator element type
* @author rferranti
*/
public class LastElement<E> implements Function<Iterator<E>, E> {
/**
* Consumes the iterator and yields the last element contained in it.
*
* @param consumable the iterator to be consumed
* @throws IllegalArgumentException if the source iterator is empty
* @return the last element
*/
@Override
public E apply(Iterator<E> consumable) {
dbc.precondition(consumable != null, "consuming a null iterator");
dbc.precondition(consumable.hasNext(), "no element to consume");
E value = consumable.next();
while (consumable.hasNext()) {
value = consumable.next();
}
return value;
}
}
| EdMcBane/emaze-dysfunctional | src/main/java/net/emaze/dysfunctional/consumers/LastElement.java | Java | bsd-3-clause | 997 |
/*
* BSD 3-Clause License
*
* Copyright (c) 2017, Shogun-Toolbox e.V. <shogun-team@shogun-toolbox.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of the copyright holder 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.
*
* Written (W) 2017 Giovanni De Toni
*
*/
#include <shogun/lib/config.h>
#ifdef HAVE_TFLOGGER
#include <shogun/io/TBOutputFormat.h>
#include <shogun/lib/observers/ObservedValueTemplated.h>
#include <shogun/lib/observers/ParameterObserverHistogram.h>
using namespace shogun;
CParameterObserverHistogram::CParameterObserverHistogram()
: ParameterObserverTensorBoard()
{
}
CParameterObserverHistogram::CParameterObserverHistogram(
std::vector<std::string>& parameters)
: ParameterObserverTensorBoard(parameters)
{
}
CParameterObserverHistogram::CParameterObserverHistogram(
const std::string& filename, std::vector<std::string>& parameters)
: ParameterObserverTensorBoard(filename, parameters)
{
}
CParameterObserverHistogram::~CParameterObserverHistogram()
{
}
void CParameterObserverHistogram::on_next_impl(const TimedObservedValue& value)
{
auto node_name = std::string("node");
auto format = TBOutputFormat();
auto event_value = format.convert_vector(value, node_name);
m_writer.writeEvent(event_value);
}
void CParameterObserverHistogram::on_error(std::exception_ptr)
{
}
void CParameterObserverHistogram::on_complete()
{
}
#endif // HAVE_TFLOGGER
| karlnapf/shogun | src/shogun/lib/observers/ParameterObserverHistogram.cpp | C++ | bsd-3-clause | 2,792 |
from unittest import mock
from django.db import connection, migrations
try:
from django.contrib.postgres.operations import (
BloomExtension, BtreeGinExtension, BtreeGistExtension, CITextExtension,
CreateExtension, CryptoExtension, HStoreExtension, TrigramExtension,
UnaccentExtension,
)
except ImportError:
BloomExtension = mock.Mock()
BtreeGinExtension = mock.Mock()
BtreeGistExtension = mock.Mock()
CITextExtension = mock.Mock()
CreateExtension = mock.Mock()
CryptoExtension = mock.Mock()
HStoreExtension = mock.Mock()
TrigramExtension = mock.Mock()
UnaccentExtension = mock.Mock()
class Migration(migrations.Migration):
operations = [
(
BloomExtension()
if getattr(connection.features, 'has_bloom_index', False)
else mock.Mock()
),
BtreeGinExtension(),
BtreeGistExtension(),
CITextExtension(),
# Ensure CreateExtension quotes extension names by creating one with a
# dash in its name.
CreateExtension('uuid-ossp'),
CryptoExtension(),
HStoreExtension(),
TrigramExtension(),
UnaccentExtension(),
]
| kaedroho/django | tests/postgres_tests/migrations/0001_setup_extensions.py | Python | bsd-3-clause | 1,212 |
#ifndef _t_sync_message_
#define _t_sync_message_
#include <stdio.h>
enum messageT {REQ_PUB,
REQ_SD
};
#endif
| suzlab/Autoware | ros/src/system/sync/include/t_sync_message.h | C | bsd-3-clause | 128 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xml:lang="en" lang="en">
<!-- this is a JXR report set -->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>pool 1.0 Reference</title>
</head>
<frameset cols="20%,80%">
<frameset rows="30%,70%">
<frame src="overview-frame.html" name="packageListFrame" />
<frame src="allclasses-frame.html" name="packageFrame" />
</frameset>
<frame src="overview-summary.html" name="classFrame" />
<noframes>
<body>
<h1>Frame Alert</h1>
<p>
You don't have frames. Go <a href="overview-summary.html">here</a>
</p>
</body>
</noframes>
</frameset>
</html>
| mbeiter/crypto4j | docs/1.0/pool/xref/index.html | HTML | bsd-3-clause | 827 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE23_Relative_Path_Traversal__char_environment_w32CreateFile_14.cpp
Label Definition File: CWE23_Relative_Path_Traversal.label.xml
Template File: sources-sink-14.tmpl.cpp
*/
/*
* @description
* CWE: 23 Relative Path Traversal
* BadSource: environment Read input from an environment variable
* GoodSource: Use a fixed file name
* Sink: w32CreateFile
* BadSink : Open the file named in data using CreateFile()
* Flow Variant: 14 Control flow: if(globalFive==5) and if(globalFive!=5)
*
* */
#include "std_testcase.h"
#ifdef _WIN32
#define BASEPATH "c:\\temp\\"
#else
#include <wchar.h>
#define BASEPATH "/tmp/"
#endif
#define ENV_VARIABLE "ADD"
#ifdef _WIN32
#define GETENV getenv
#else
#define GETENV getenv
#endif
#include <windows.h>
namespace CWE23_Relative_Path_Traversal__char_environment_w32CreateFile_14
{
#ifndef OMITBAD
void bad()
{
char * data;
char dataBuffer[FILENAME_MAX] = BASEPATH;
data = dataBuffer;
if(globalFive==5)
{
{
/* Append input from an environment variable to data */
size_t dataLen = strlen(data);
char * environment = GETENV(ENV_VARIABLE);
/* If there is data in the environment variable */
if (environment != NULL)
{
/* POTENTIAL FLAW: Read data from an environment variable */
strncat(data+dataLen, environment, FILENAME_MAX-dataLen-1);
}
}
}
{
HANDLE hFile;
/* POTENTIAL FLAW: Possibly creating and opening a file without validating the file name or path */
hFile = CreateFileA(data,
(GENERIC_WRITE|GENERIC_READ),
0,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
NULL);
if (hFile != INVALID_HANDLE_VALUE)
{
CloseHandle(hFile);
}
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B1() - use goodsource and badsink by changing the globalFive==5 to globalFive!=5 */
static void goodG2B1()
{
char * data;
char dataBuffer[FILENAME_MAX] = BASEPATH;
data = dataBuffer;
if(globalFive!=5)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Use a fixed file name */
strcat(data, "file.txt");
}
{
HANDLE hFile;
/* POTENTIAL FLAW: Possibly creating and opening a file without validating the file name or path */
hFile = CreateFileA(data,
(GENERIC_WRITE|GENERIC_READ),
0,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
NULL);
if (hFile != INVALID_HANDLE_VALUE)
{
CloseHandle(hFile);
}
}
}
/* goodG2B2() - use goodsource and badsink by reversing the blocks in the if statement */
static void goodG2B2()
{
char * data;
char dataBuffer[FILENAME_MAX] = BASEPATH;
data = dataBuffer;
if(globalFive==5)
{
/* FIX: Use a fixed file name */
strcat(data, "file.txt");
}
{
HANDLE hFile;
/* POTENTIAL FLAW: Possibly creating and opening a file without validating the file name or path */
hFile = CreateFileA(data,
(GENERIC_WRITE|GENERIC_READ),
0,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
NULL);
if (hFile != INVALID_HANDLE_VALUE)
{
CloseHandle(hFile);
}
}
}
void good()
{
goodG2B1();
goodG2B2();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE23_Relative_Path_Traversal__char_environment_w32CreateFile_14; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE23_Relative_Path_Traversal/s02/CWE23_Relative_Path_Traversal__char_environment_w32CreateFile_14.cpp | C++ | bsd-3-clause | 4,939 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>Repast HPC::ReLogo: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Repast HPC::ReLogo
 <span id="projectnumber">2.0</span>
</div>
<div id="projectbrief">Logo-Like Semantics for Repast HPC</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>repast</b></li><li class="navelem"><b>relogo</b></li><li class="navelem"><a class="el" href="structrepast_1_1relogo_1_1_type_info_cmp.html">TypeInfoCmp</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">repast::relogo::TypeInfoCmp Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="structrepast_1_1relogo_1_1_type_info_cmp.html">repast::relogo::TypeInfoCmp</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>operator()</b>(const std::type_info *one, const std::type_info *two) const (defined in <a class="el" href="structrepast_1_1relogo_1_1_type_info_cmp.html">repast::relogo::TypeInfoCmp</a>)</td><td class="entry"><a class="el" href="structrepast_1_1relogo_1_1_type_info_cmp.html">repast::relogo::TypeInfoCmp</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Aug 11 2013 13:43:51 for Repast HPC::ReLogo by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
</small></address>
</body>
</html>
| gnu3ra/SCC15HPCRepast | docs/API/relogo/html/structrepast_1_1relogo_1_1_type_info_cmp-members.html | HTML | bsd-3-clause | 5,477 |
# Licensed under a 3-clause BSD style license - see LICENSE.rst
""" astropy.cosmology contains classes and functions for cosmological
distance measures and other cosmology-related calculations.
See the `Astropy documentation
<https://docs.astropy.org/en/latest/cosmology/index.html>`_ for more
detailed usage examples and references.
"""
from . import core, flrw, funcs, parameter, units, utils
from . import io # needed before 'realizations' # isort: split
from . import realizations
from .core import *
from .flrw import *
from .funcs import *
from .parameter import *
from .realizations import *
from .utils import *
__all__ = (core.__all__ + flrw.__all__ # cosmology classes
+ realizations.__all__ # instances thereof
+ funcs.__all__ + parameter.__all__ + utils.__all__) # utils
| mhvk/astropy | astropy/cosmology/__init__.py | Python | bsd-3-clause | 830 |
/**
* Copyright 2015 Palantir Technologies
*
* Licensed under the BSD-3 License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://opensource.org/licenses/BSD-3-Clause
*
* 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.
*/
package com.palantir.atlasdb.cleaner;
import java.util.Collection;
import java.util.Set;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Lists;
import com.google.common.collect.Multimap;
import com.palantir.atlasdb.cleaner.api.OnCleanupTask;
import com.palantir.atlasdb.keyvalue.api.Cell;
import com.palantir.atlasdb.keyvalue.api.TableReference;
import com.palantir.atlasdb.table.description.Schema;
import com.palantir.atlasdb.transaction.api.Transaction;
import com.palantir.atlasdb.transaction.api.Transaction.TransactionType;
import com.palantir.atlasdb.transaction.api.TransactionManager;
import com.palantir.atlasdb.transaction.api.TransactionTask;
public class CleanupFollower implements Follower {
private final ImmutableMultimap<TableReference, OnCleanupTask> cleanupTasksByTable;
public static CleanupFollower create(Iterable<Schema> schemas) {
ImmutableMultimap.Builder<TableReference, OnCleanupTask> cleanupTasksByTable = ImmutableMultimap.builder();
for (Schema schema : schemas) {
cleanupTasksByTable.putAll(schema.getCleanupTasksByTable());
}
return new CleanupFollower(cleanupTasksByTable.build());
}
public static CleanupFollower create(Schema schema) {
return new CleanupFollower(schema.getCleanupTasksByTable());
}
private CleanupFollower(Multimap<TableReference, OnCleanupTask> cleanupTasksByTable) {
this.cleanupTasksByTable = ImmutableMultimap.copyOf(cleanupTasksByTable);
}
@Override
public void run(TransactionManager txManager, TableReference tableRef, final Set<Cell> cells, final TransactionType transactionType) {
Collection<OnCleanupTask> nextTasks = cleanupTasksByTable.get(tableRef);
while (!nextTasks.isEmpty()) {
final Collection<OnCleanupTask> cleanupTasks = nextTasks;
nextTasks = txManager.runTaskWithRetry(new TransactionTask<Collection<OnCleanupTask>, RuntimeException>() {
@Override
public Collection<OnCleanupTask> execute(Transaction t) {
Collection<OnCleanupTask> toRetry = Lists.newArrayList();
Preconditions.checkArgument(
transactionType == TransactionType.HARD_DELETE ||
transactionType == TransactionType.AGGRESSIVE_HARD_DELETE);
t.setTransactionType(transactionType);
for (OnCleanupTask task : cleanupTasks) {
boolean needsRetry = task.cellsCleanedUp(t, cells);
if (needsRetry) {
toRetry.add(task);
}
}
return toRetry;
}
});
}
}
}
| sh4nth/atlasdb-1 | atlasdb-impl-shared/src/main/java/com/palantir/atlasdb/cleaner/CleanupFollower.java | Java | bsd-3-clause | 3,440 |
/*
* Package: message.js
*
* Namespace: bbop.widget.message
*
* TODO: Code needs to be cleaned with <bbop.html>.
*
* BBOP object to produce a self-constructing/self-destructing
* sliding message/announcments/warnings.
*
* Note that this is a steal of some older code. We'll probably have
* to clean this up a bit at some point.
*
* These messages make use of the classes "bbop-js-message" and
* "bbop-js-message-CTYPE", where CTYPE is one of "error",
* "warning", or "notice".
*
* Initial placement and the likes should be manipulated through
* "bbop-js-message"--the created divs are append to the end of
* the body and will not be particularly useful unless styled.
*
* This is a completely self-contained UI.
*/
if ( typeof bbop == "undefined" ){ var bbop = {}; }
if ( typeof bbop.widget == "undefined" ){ bbop.widget = {}; }
/*
* Constructor: message
*
* Contructor for the bbop.widget.message object.
*
* A trivial invocation might be something like:
* : var m = new bbop.widget.message();
* : m.notice("Hello, World!");
*
* Arguments:
* n/a
*
* Returns:
* self
*/
bbop.widget.message = function(){
this._is_a = 'bbop.widget.message';
var anchor = this;
// Per-UI logger.
var logger = new bbop.logger();
logger.DEBUG = true;
function ll(str){ logger.kvetch('W (message): ' + str); }
// Generate tags.
function _generate_element(ctype, str){
var message_classes = ['bbop-js-message',
'bbop-js-message-' + ctype];
var message_elt =
new bbop.html.tag('div',
{'generate_id': true,
'class': message_classes.join(' ')},
'<h2>' + str + '</h2>');
jQuery("body").append(jQuery(message_elt.to_string()).hide());
// jQuery-ify the element.
var elt = jQuery('#' + message_elt.get_id());
return elt;
}
// Destroy tags.
function _destroy_element(){
jQuery(this).remove();
}
///
/// Notice and error handling.
///
// elt.show().fadeIn('slow').fadeOut('slow', _destroy_element);
/*
* Function: notice
*
* Temporarily display a messsage styled for notices.
*
* Parameters:
* msg - the message
*
* Returns
* n/a
*/
this.notice = function(msg){
var elt = _generate_element('notice', msg);
elt.show().slideDown('slow').slideUp('slow', _destroy_element);
};
/*
* Function: warning
*
* Temporarily display a messsage styled for warnings.
*
* Parameters:
* msg - the message
*
* Returns
* n/a
*/
this.warning = function(msg){
var elt = _generate_element('warning', msg);
elt.show().slideDown('slow').slideUp('slow', _destroy_element);
};
/*
* Function: error
*
* Temporarily display a messsage styled for errors.
*
* Parameters:
* msg - the message
*
* Returns
* n/a
*/
this.error = function(msg){
var elt = _generate_element('error', msg);
elt.show().fadeTo(2500, 0.9).fadeOut(1000, _destroy_element);
};
};
| mugitty/bbop-js | lib/bbop/widget/message.js | JavaScript | bsd-3-clause | 3,120 |
<?php
declare(strict_types=1);
namespace Kafka\Exception;
use Kafka\Exception;
class Protocol extends Exception
{
}
| nmred/kafka-php | src/Exception/Protocol.php | PHP | bsd-3-clause | 119 |
# -*- coding:utf-8 -*-
from django.utils.translation import ugettext_lazy as _
# SearchForm's strings
SEARCH_FORM_KEYWORDS = _(u'Key Words / Profession')
SEARCH_FORM_LOCATION = _(u'City, State or Zip Code')
# SearchFiltersForm's strings
SEARCH_FILTERS_FORM_JOB_POSITION = _(u'Job Position')
SEARCH_FILTERS_FORM_EXPERIENCE_YEARS = _(u'Experience')
SEARCH_FILTERS_FORM_DISTANCE = _(u'Distance')
SEARCH_FILTERS_FORM_FULL_TIME = _(u'Full Time')
SEARCH_FILTERS_FORM_PART_TIME = _(u'Part Time')
SEARCH_FILTERS_FORM_VISA = _(u'Has a Visa / Visa required')
| hellhovnd/dentexchange | dentexchange/apps/search/strings.py | Python | bsd-3-clause | 551 |
--+ holdcas on;
set names utf8;
set system parameters 'intl_date_lang = es_ES';
-- TO_TIME
-- text
SELECT TO_TIME('10:11:12 teÌt pm', 'HH:MI:SS "teìt" PM');
SELECT TO_DATE('2010-01 teìt Nov', 'yyyy-dd "teÌt" Mon');
select 'TO_TIME( , PM)';
SELECT TO_TIME('10:11:12 PM', 'HH:MI:SS PM');
SELECT TO_TIME('10:11:12 AM', 'HH:MI:SS AM');
SELECT TO_TIME('10:11:12 P.M.', 'HH:MI:SS P.M.');
SELECT TO_TIME('10:11:12 A.M.', 'HH:MI:SS A.M.');
set system parameters 'intl_date_lang = en_US';
set names iso88591;
commit;
--+ holdcas off;
| CUBRID/cubrid-testcases | sql/_23_apricot_qa/_03_i18n/es_ES/_01_string_date_func/cases/_005_to_time.sql | SQL | bsd-3-clause | 534 |
# -*- coding: utf-8 -*-
""":mod:`itertools` is full of great examples of Python generator
usage. However, there are still some critical gaps. ``iterutils``
fills many of those gaps with featureful, tested, and Pythonic
solutions.
Many of the functions below have two versions, one which
returns an iterator (denoted by the ``*_iter`` naming pattern), and a
shorter-named convenience form that returns a list. Some of the
following are based on examples in itertools docs.
"""
import math
import random
import itertools
from collections import Mapping, Sequence, Set, ItemsView
try:
from typeutils import make_sentinel
_UNSET = make_sentinel('_UNSET')
_REMAP_EXIT = make_sentinel('_REMAP_EXIT')
except ImportError:
_REMAP_EXIT = object()
_UNSET = object()
try:
from itertools import izip
except ImportError:
# Python 3 compat
basestring = (str, bytes)
izip, xrange = zip, range
def is_iterable(obj):
"""Similar in nature to :func:`callable`, ``is_iterable`` returns
``True`` if an object is `iterable`_, ``False`` if not.
>>> is_iterable([])
True
>>> is_iterable(object())
False
.. _iterable: https://docs.python.org/2/glossary.html#term-iterable
"""
try:
iter(obj)
except TypeError:
return False
return True
def is_scalar(obj):
"""A near-mirror of :func:`is_iterable`. Returns ``False`` if an
object is an iterable container type. Strings are considered
scalar as well, because strings are more often treated as whole
values as opposed to iterables of 1-character substrings.
>>> is_scalar(object())
True
>>> is_scalar(range(10))
False
>>> is_scalar('hello')
True
"""
return not is_iterable(obj) or isinstance(obj, basestring)
def is_collection(obj):
"""The opposite of :func:`is_scalar`. Returns ``True`` if an object
is an iterable other than a string.
>>> is_collection(object())
False
>>> is_collection(range(10))
True
>>> is_collection('hello')
False
"""
return is_iterable(obj) and not isinstance(obj, basestring)
def split(src, sep=None, maxsplit=None):
"""Splits an iterable based on a separator. Like :meth:`str.split`,
but for all iterables. Returns a list of lists.
>>> split(['hi', 'hello', None, None, 'sup', None, 'soap', None])
[['hi', 'hello'], ['sup'], ['soap']]
See :func:`split_iter` docs for more info.
"""
return list(split_iter(src, sep, maxsplit))
def split_iter(src, sep=None, maxsplit=None):
"""Splits an iterable based on a separator, *sep*, a max of
*maxsplit* times (no max by default). *sep* can be:
* a single value
* an iterable of separators
* a single-argument callable that returns True when a separator is
encountered
``split_iter()`` yields lists of non-separator values. A separator will
never appear in the output.
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None, 'soap', None]))
[['hi', 'hello'], ['sup'], ['soap']]
Note that ``split_iter`` is based on :func:`str.split`, so if
*sep* is ``None``, ``split()`` **groups** separators. If empty lists
are desired between two contiguous ``None`` values, simply use
``sep=[None]``:
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None]))
[['hi', 'hello'], ['sup']]
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None], sep=[None]))
[['hi', 'hello'], [], ['sup'], []]
Using a callable separator:
>>> falsy_sep = lambda x: not x
>>> list(split_iter(['hi', 'hello', None, '', 'sup', False], falsy_sep))
[['hi', 'hello'], [], ['sup'], []]
See :func:`split` for a list-returning version.
"""
if not is_iterable(src):
raise TypeError('expected an iterable')
if maxsplit is not None:
maxsplit = int(maxsplit)
if maxsplit == 0:
yield [src]
return
if callable(sep):
sep_func = sep
elif not is_scalar(sep):
sep = frozenset(sep)
sep_func = lambda x: x in sep
else:
sep_func = lambda x: x == sep
cur_group = []
split_count = 0
for s in src:
if maxsplit is not None and split_count >= maxsplit:
sep_func = lambda x: False
if sep_func(s):
if sep is None and not cur_group:
# If sep is none, str.split() "groups" separators
# check the str.split() docs for more info
continue
split_count += 1
yield cur_group
cur_group = []
else:
cur_group.append(s)
if cur_group or sep is not None:
yield cur_group
return
def chunked(src, size, count=None, **kw):
"""Returns a list of *count* chunks, each with *size* elements,
generated from iterable *src*. If *src* is not evenly divisible by
*size*, the final chunk will have fewer than *size* elements.
Provide the *fill* keyword argument to provide a pad value and
enable padding, otherwise no padding will take place.
>>> chunked(range(10), 3)
[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]
>>> chunked(range(10), 3, fill=None)
[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, None, None]]
>>> chunked(range(10), 3, count=2)
[[0, 1, 2], [3, 4, 5]]
See :func:`chunked_iter` for more info.
"""
chunk_iter = chunked_iter(src, size, **kw)
if count is None:
return list(chunk_iter)
else:
return list(itertools.islice(chunk_iter, count))
def chunked_iter(src, size, **kw):
"""Generates *size*-sized chunks from *src* iterable. Unless the
optional *fill* keyword argument is provided, iterables not even
divisible by *size* will have a final chunk that is smaller than
*size*.
>>> list(chunked_iter(range(10), 3))
[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]
>>> list(chunked_iter(range(10), 3, fill=None))
[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, None, None]]
Note that ``fill=None`` in fact uses ``None`` as the fill value.
"""
# TODO: add count kwarg?
if not is_iterable(src):
raise TypeError('expected an iterable')
size = int(size)
if size <= 0:
raise ValueError('expected a positive integer chunk size')
do_fill = True
try:
fill_val = kw.pop('fill')
except KeyError:
do_fill = False
fill_val = None
if kw:
raise ValueError('got unexpected keyword arguments: %r' % kw.keys())
if not src:
return
postprocess = lambda chk: chk
if isinstance(src, basestring):
postprocess = lambda chk, _sep=type(src)(): _sep.join(chk)
cur_chunk = []
i = 0
for item in src:
cur_chunk.append(item)
i += 1
if i % size == 0:
yield postprocess(cur_chunk)
cur_chunk = []
if cur_chunk:
if do_fill:
lc = len(cur_chunk)
cur_chunk[lc:] = [fill_val] * (size - lc)
yield postprocess(cur_chunk)
return
def pairwise(src):
"""Convenience function for calling :func:`windowed` on *src*, with
*size* set to 2.
>>> pairwise(range(5))
[(0, 1), (1, 2), (2, 3), (3, 4)]
>>> pairwise([])
[]
The number of pairs is always one less than the number of elements
in the iterable passed in, except on empty inputs, which returns
an empty list.
"""
return windowed(src, 2)
def pairwise_iter(src):
"""Convenience function for calling :func:`windowed_iter` on *src*,
with *size* set to 2.
>>> list(pairwise_iter(range(5)))
[(0, 1), (1, 2), (2, 3), (3, 4)]
>>> list(pairwise_iter([]))
[]
The number of pairs is always one less than the number of elements
in the iterable passed in, or zero, when *src* is empty.
"""
return windowed_iter(src, 2)
def windowed(src, size):
"""Returns tuples with exactly length *size*. If the iterable is
too short to make a window of length *size*, no tuples are
returned. See :func:`windowed_iter` for more.
"""
return list(windowed_iter(src, size))
def windowed_iter(src, size):
"""Returns tuples with length *size* which represent a sliding
window over iterable *src*.
>>> list(windowed_iter(range(7), 3))
[(0, 1, 2), (1, 2, 3), (2, 3, 4), (3, 4, 5), (4, 5, 6)]
If the iterable is too short to make a window of length *size*,
then no window tuples are returned.
>>> list(windowed_iter(range(3), 5))
[]
"""
# TODO: lists? (for consistency)
tees = itertools.tee(src, size)
try:
for i, t in enumerate(tees):
for _ in xrange(i):
next(t)
except StopIteration:
return izip([])
return izip(*tees)
def xfrange(stop, start=None, step=1.0):
"""Same as :func:`frange`, but generator-based instead of returning a
list.
>>> tuple(xfrange(1, 3, step=0.75))
(1.0, 1.75, 2.5)
See :func:`frange` for more details.
"""
if not step:
raise ValueError('step must be non-zero')
if start is None:
start, stop = 0.0, stop * 1.0
else:
# swap when all args are used
stop, start = start * 1.0, stop * 1.0
cur = start
while cur < stop:
yield cur
cur += step
def frange(stop, start=None, step=1.0):
"""A :func:`range` clone for float-based ranges.
>>> frange(5)
[0.0, 1.0, 2.0, 3.0, 4.0]
>>> frange(6, step=1.25)
[0.0, 1.25, 2.5, 3.75, 5.0]
>>> frange(100.5, 101.5, 0.25)
[100.5, 100.75, 101.0, 101.25]
>>> frange(5, 0)
[]
>>> frange(5, 0, step=-1.25)
[5.0, 3.75, 2.5, 1.25]
"""
if not step:
raise ValueError('step must be non-zero')
if start is None:
start, stop = 0.0, stop * 1.0
else:
# swap when all args are used
stop, start = start * 1.0, stop * 1.0
count = int(math.ceil((stop - start) / step))
ret = [None] * count
if not ret:
return ret
ret[0] = start
for i in xrange(1, count):
ret[i] = ret[i - 1] + step
return ret
def backoff(start, stop, count=None, factor=2.0, jitter=False):
"""Returns a list of geometrically-increasing floating-point numbers,
suitable for usage with `exponential backoff`_. Exactly like
:func:`backoff_iter`, but without the ``'repeat'`` option for
*count*. See :func:`backoff_iter` for more details.
.. _exponential backoff: https://en.wikipedia.org/wiki/Exponential_backoff
>>> backoff(1, 10)
[1.0, 2.0, 4.0, 8.0, 10.0]
"""
if count == 'repeat':
raise ValueError("'repeat' supported in backoff_iter, not backoff")
return list(backoff_iter(start, stop, count=count,
factor=factor, jitter=jitter))
def backoff_iter(start, stop, count=None, factor=2.0, jitter=False):
"""Generates a sequence of geometrically-increasing floats, suitable
for usage with `exponential backoff`_. Starts with *start*,
increasing by *factor* until *stop* is reached, optionally
stopping iteration once *count* numbers are yielded. *factor*
defaults to 2. In general retrying with properly-configured
backoff creates a better-behaved component for a larger service
ecosystem.
.. _exponential backoff: https://en.wikipedia.org/wiki/Exponential_backoff
>>> list(backoff_iter(1.0, 10.0, count=5))
[1.0, 2.0, 4.0, 8.0, 10.0]
>>> list(backoff_iter(1.0, 10.0, count=8))
[1.0, 2.0, 4.0, 8.0, 10.0, 10.0, 10.0, 10.0]
>>> list(backoff_iter(0.25, 100.0, factor=10))
[0.25, 2.5, 25.0, 100.0]
A simplified usage example:
.. code-block:: python
for timeout in backoff_iter(0.25, 5.0):
try:
res = network_call()
break
except Exception as e:
log(e)
time.sleep(timeout)
An enhancement for large-scale systems would be to add variation,
or *jitter*, to timeout values. This is done to avoid a thundering
herd on the receiving end of the network call.
Finally, for *count*, the special value ``'repeat'`` can be passed to
continue yielding indefinitely.
Args:
start (float): Positive number for baseline.
stop (float): Positive number for maximum.
count (int): Number of steps before stopping
iteration. Defaults to the number of steps between *start* and
*stop*. Pass the string, `'repeat'`, to continue iteration
indefinitely.
factor (float): Rate of exponential increase. Defaults to `2.0`,
e.g., `[1, 2, 4, 8, 16]`.
jitter (float): A factor between `-1.0` and `1.0`, used to
uniformly randomize and thus spread out timeouts in a distributed
system, avoiding rhythm effects. Positive values use the base
backoff curve as a maximum, negative values use the curve as a
minimum. Set to 1.0 or `True` for a jitter approximating
Ethernet's time-tested backoff solution. Defaults to `False`.
"""
start = float(start)
stop = float(stop)
factor = float(factor)
if start < 0.0:
raise ValueError('expected start >= 0, not %r' % start)
if factor < 1.0:
raise ValueError('expected factor >= 1.0, not %r' % factor)
if stop == 0.0:
raise ValueError('expected stop >= 0')
if stop < start:
raise ValueError('expected stop >= start, not %r' % stop)
if count is None:
denom = start if start else 1
count = 1 + math.ceil(math.log(stop/denom, factor))
count = count if start else count + 1
if count != 'repeat' and count < 0:
raise ValueError('count must be positive or "repeat", not %r' % count)
if jitter:
jitter = float(jitter)
if not (-1.0 <= jitter <= 1.0):
raise ValueError('expected jitter -1 <= j <= 1, not: %r' % jitter)
cur, i = start, 0
while count == 'repeat' or i < count:
if not jitter:
cur_ret = cur
elif jitter:
cur_ret = cur - (cur * jitter * random.random())
yield cur_ret
i += 1
if cur == 0:
cur = 1
elif cur < stop:
cur *= factor
if cur > stop:
cur = stop
return
def bucketize(src, key=None):
"""Group values in the *src* iterable by the value returned by *key*,
which defaults to :class:`bool`, grouping values by
truthiness.
>>> bucketize(range(5))
{False: [0], True: [1, 2, 3, 4]}
>>> is_odd = lambda x: x % 2 == 1
>>> bucketize(range(5), is_odd)
{False: [0, 2, 4], True: [1, 3]}
Value lists are not deduplicated:
>>> bucketize([None, None, None, 'hello'])
{False: [None, None, None], True: ['hello']}
Note in these examples there were at most two keys, ``True`` and
``False``, and each key present has a list with at least one
item. See :func:`partition` for a version specialized for binary
use cases.
"""
if not is_iterable(src):
raise TypeError('expected an iterable')
if key is None:
key = bool
if not callable(key):
raise TypeError('expected callable key function')
ret = {}
for val in src:
keyval = key(val)
ret.setdefault(keyval, []).append(val)
return ret
def partition(src, key=None):
"""No relation to :meth:`str.partition`, ``partition`` is like
:func:`bucketize`, but for added convenience returns a tuple of
``(truthy_values, falsy_values)``.
>>> nonempty, empty = partition(['', '', 'hi', '', 'bye'])
>>> nonempty
['hi', 'bye']
*key* defaults to :class:`bool`, but can be carefully overridden to
use any function that returns either ``True`` or ``False``.
>>> import string
>>> is_digit = lambda x: x in string.digits
>>> decimal_digits, hexletters = partition(string.hexdigits, is_digit)
>>> ''.join(decimal_digits), ''.join(hexletters)
('0123456789', 'abcdefABCDEF')
"""
bucketized = bucketize(src, key)
return bucketized.get(True, []), bucketized.get(False, [])
def unique(src, key=None):
"""``unique()`` returns a list of unique values, as determined by
*key*, in the order they first appeared in the input iterable,
*src*.
>>> ones_n_zeros = '11010110001010010101010'
>>> ''.join(unique(ones_n_zeros))
'10'
See :func:`unique_iter` docs for more details.
"""
return list(unique_iter(src, key))
def unique_iter(src, key=None):
"""Yield unique elements from the iterable, *src*, based on *key*,
in the order in which they first appeared in *src*.
>>> repetitious = [1, 2, 3] * 10
>>> list(unique_iter(repetitious))
[1, 2, 3]
By default, *key* is the object itself, but *key* can either be a
callable or, for convenience, a string name of the attribute on
which to uniqueify objects, falling back on identity when the
attribute is not present.
>>> pleasantries = ['hi', 'hello', 'ok', 'bye', 'yes']
>>> list(unique_iter(pleasantries, key=lambda x: len(x)))
['hi', 'hello', 'bye']
"""
if not is_iterable(src):
raise TypeError('expected an iterable, not %r' % type(src))
if key is None:
key_func = lambda x: x
elif callable(key):
key_func = key
elif isinstance(key, basestring):
key_func = lambda x: getattr(x, key, x)
else:
raise TypeError('"key" expected a string or callable, not %r' % key)
seen = set()
for i in src:
k = key_func(i)
if k not in seen:
seen.add(k)
yield i
return
def one(src, default=None, key=None):
"""Along the same lines as builtins, :func:`all` and :func:`any`, and
similar to :func:`first`, ``one()`` returns the single object in
the given iterable *src* that evaluates to ``True``, as determined
by callable *key*. If unset, *key* defaults to :class:`bool`. If
no such objects are found, *default* is returned. If *default* is
not passed, ``None`` is returned.
If *src* has more than one object that evaluates to ``True``, or
if there is no object that fulfills such condition, return
``False``. It's like an `XOR`_ over an iterable.
>>> one((True, False, False))
True
>>> one((True, False, True))
>>> one((0, 0, 'a'))
'a'
>>> one((0, False, None))
>>> one((True, True), default=False)
False
>>> bool(one(('', 1)))
True
>>> one((10, 20, 30, 42), key=lambda i: i > 40)
42
See `Martín Gaitán's original repo`_ for further use cases.
.. _Martín Gaitán's original repo: https://github.com/mgaitan/one
.. _XOR: https://en.wikipedia.org/wiki/Exclusive_or
"""
the_one = default
for i in src:
if key(i) if key else i:
if the_one:
return default
the_one = i
return the_one
def first(iterable, default=None, key=None):
"""Return first element of *iterable* that evaluates to ``True``, else
return ``None`` or optional *default*. Similar to :func:`one`.
>>> first([0, False, None, [], (), 42])
42
>>> first([0, False, None, [], ()]) is None
True
>>> first([0, False, None, [], ()], default='ohai')
'ohai'
>>> import re
>>> m = first(re.match(regex, 'abc') for regex in ['b.*', 'a(.*)'])
>>> m.group(1)
'bc'
The optional *key* argument specifies a one-argument predicate function
like that used for *filter()*. The *key* argument, if supplied, should be
in keyword form. For example, finding the first even number in an iterable:
>>> first([1, 1, 3, 4, 5], key=lambda x: x % 2 == 0)
4
Contributed by Hynek Schlawack, author of `the original standalone module`_.
.. _the original standalone module: https://github.com/hynek/first
"""
if key is None:
for el in iterable:
if el:
return el
else:
for el in iterable:
if key(el):
return el
return default
def same(iterable, ref=_UNSET):
"""``same()`` returns ``True`` when all values in *iterable* are
equal to one another, or optionally a reference value,
*ref*. Similar to :func:`all` and :func:`any` in that it evaluates
an iterable and returns a :class:`bool`. ``same()`` returns
``True`` for empty iterables.
>>> same([])
True
>>> same([1])
True
>>> same(['a', 'a', 'a'])
True
>>> same(range(20))
False
>>> same([[], []])
True
>>> same([[], []], ref='test')
False
"""
iterator = iter(iterable)
if ref is _UNSET:
try:
ref = next(iterator)
except StopIteration:
return True # those that were there were all equal
for val in iterator:
if val != ref:
return False # short circuit on first unequal value
return True
def default_visit(path, key, value):
# print('visit(%r, %r, %r)' % (path, key, value))
return key, value
# enable the extreme: monkeypatching iterutils with a different default_visit
_orig_default_visit = default_visit
def default_enter(path, key, value):
# print('enter(%r, %r)' % (key, value))
try:
iter(value)
except TypeError:
return value, False
if isinstance(value, basestring):
return value, False
elif isinstance(value, Mapping):
return value.__class__(), ItemsView(value)
elif isinstance(value, Sequence):
return value.__class__(), enumerate(value)
elif isinstance(value, Set):
return value.__class__(), enumerate(value)
return value, False
def default_exit(path, key, old_parent, new_parent, new_items):
# print('exit(%r, %r, %r, %r, %r)'
# % (path, key, old_parent, new_parent, new_items))
ret = new_parent
if isinstance(new_parent, Mapping):
new_parent.update(new_items)
elif isinstance(new_parent, Sequence):
vals = [v for i, v in new_items]
try:
new_parent.extend(vals)
except AttributeError:
ret = new_parent.__class__(vals) # tuples
elif isinstance(new_parent, Set):
vals = [v for i, v in new_items]
try:
new_parent.update(new_items)
except AttributeError:
ret = new_parent.__class__(vals) # frozensets
else:
raise RuntimeError('unexpected iterable type: %r' % type(new_parent))
return ret
def remap(root, visit=default_visit, enter=default_enter, exit=default_exit,
**kwargs):
"""The remap ("recursive map") function is used to traverse and
transform nested structures. Lists, tuples, sets, and dictionaries
are just a few of the data structures nested into heterogenous
tree-like structures that are so common in programming.
Unfortunately, Python's built-in ways to manipulate collections
are almost all flat. List comprehensions may be fast and succinct,
but they do not recurse, making it tedious to apply quick changes
or complex transforms to real-world data.
remap goes where list comprehensions cannot.
Here's an example of removing all Nones from some data:
>>> from pprint import pprint
>>> reviews = {'Star Trek': {'TNG': 10, 'DS9': 8.5, 'ENT': None},
... 'Babylon 5': 6, 'Dr. Who': None}
>>> pprint(remap(reviews, lambda p, k, v: v is not None))
{'Babylon 5': 6, 'Star Trek': {'DS9': 8.5, 'TNG': 10}}
Notice how both Nones have been removed despite the nesting in the
dictionary. Not bad for a one-liner, and that's just the beginning.
See `this remap cookbook`_ for more delicious recipes.
.. _this remap cookbook: http://sedimental.org/remap.html
remap takes four main arguments: the object to traverse and three
optional callables which determine how the remapped object will be
created.
Args:
root: The target object to traverse. By default, remap
supports iterables like :class:`list`, :class:`tuple`,
:class:`dict`, and :class:`set`, but any object traversable by
*enter* will work.
visit (callable): This function is called on every item in
*root*. It must accept three positional arguments, *path*,
*key*, and *value*. *path* is simply a tuple of parents'
keys. *visit* should return the new key-value pair. It may
also return ``True`` as shorthand to keep the old item
unmodified, or ``False`` to drop the item from the new
structure. *visit* is called after *enter*, on the new parent.
The *visit* function is called for every item in root,
including duplicate items. For traversable values, it is
called on the new parent object, after all its children
have been visited. The default visit behavior simply
returns the key-value pair unmodified.
enter (callable): This function controls which items in *root*
are traversed. It accepts the same arguments as *visit*: the
path, the key, and the value of the current item. It returns a
pair of the blank new parent, and an iterator over the items
which should be visited. If ``False`` is returned instead of
an iterator, the value will not be traversed.
The *enter* function is only called once per unique value. The
default enter behavior support mappings, sequences, and
sets. Strings and all other iterables will not be traversed.
exit (callable): This function determines how to handle items
once they have been visited. It gets the same three
arguments as the other functions -- *path*, *key*, *value*
-- plus two more: the blank new parent object returned
from *enter*, and a list of the new items, as remapped by
*visit*.
Like *enter*, the *exit* function is only called once per
unique value. The default exit behavior is to simply add
all new items to the new parent, e.g., using
:meth:`list.extend` and :meth:`dict.update` to add to the
new parent. Immutable objects, such as a :class:`tuple` or
:class:`namedtuple`, must be recreated from scratch, but
use the same type as the new parent passed back from the
*enter* function.
reraise_visit (bool): A pragmatic convenience for the *visit*
callable. When set to ``False``, remap ignores any errors
raised by the *visit* callback. Items causing exceptions
are kept. See examples for more details.
remap is designed to cover the majority of cases with just the
*visit* callable. While passing in multiple callables is very
empowering, remap is designed so very few cases should require
passing more than one function.
When passing *enter* and *exit*, it's common and easiest to build
on the default behavior. Simply add ``from boltons.iterutils import
default_enter`` (or ``default_exit``), and have your enter/exit
function call the default behavior before or after your custom
logic. See `this example`_.
Duplicate and self-referential objects (aka reference loops) are
automatically handled internally, `as shown here`_.
.. _this example: http://sedimental.org/remap.html#sort_all_lists
.. _as shown here: http://sedimental.org/remap.html#corner_cases
"""
# TODO: improve argument formatting in sphinx doc
# TODO: enter() return (False, items) to continue traverse but cancel copy?
if not callable(visit):
raise TypeError('visit expected callable, not: %r' % visit)
if not callable(enter):
raise TypeError('enter expected callable, not: %r' % enter)
if not callable(exit):
raise TypeError('exit expected callable, not: %r' % exit)
reraise_visit = kwargs.pop('reraise_visit', True)
if kwargs:
raise TypeError('unexpected keyword arguments: %r' % kwargs.keys())
path, registry, stack = (), {}, [(None, root)]
new_items_stack = []
while stack:
key, value = stack.pop()
id_value = id(value)
if key is _REMAP_EXIT:
key, new_parent, old_parent = value
id_value = id(old_parent)
path, new_items = new_items_stack.pop()
value = exit(path, key, old_parent, new_parent, new_items)
registry[id_value] = value
if not new_items_stack:
continue
elif id_value in registry:
value = registry[id_value]
else:
res = enter(path, key, value)
try:
new_parent, new_items = res
except TypeError:
# TODO: handle False?
raise TypeError('enter should return a tuple of (new_parent,'
' items_iterator), not: %r' % res)
if new_items is not False:
# traverse unless False is explicitly passed
registry[id_value] = new_parent
new_items_stack.append((path, []))
if value is not root:
path += (key,)
stack.append((_REMAP_EXIT, (key, new_parent, value)))
if new_items:
stack.extend(reversed(list(new_items)))
continue
if visit is _orig_default_visit:
# avoid function call overhead by inlining identity operation
visited_item = (key, value)
else:
try:
visited_item = visit(path, key, value)
except Exception:
if reraise_visit:
raise
visited_item = True
if visited_item is False:
continue # drop
elif visited_item is True:
visited_item = (key, value)
# TODO: typecheck?
# raise TypeError('expected (key, value) from visit(),'
# ' not: %r' % visited_item)
try:
new_items_stack[-1][1].append(visited_item)
except IndexError:
raise TypeError('expected remappable root, not: %r' % root)
return value
class PathAccessError(KeyError, IndexError, TypeError):
# TODO: could maybe get fancy with an isinstance
# TODO: should accept an idx argument
def __init__(self, exc, seg, path):
self.exc = exc
self.seg = seg
self.path = path
def __repr__(self):
cn = self.__class__.__name__
return '%s(%r, %r, %r)' % (cn, self.exc, self.seg, self.path)
def __str__(self):
return ('could not access %r from path %r, got error: %r'
% (self.seg, self.path, self.exc))
def get_path(root, path, default=_UNSET):
"""EAFP is great, but the error message on this isn't:
var_key = 'last_key'
x['key'][-1]['other_key'][var_key]
KeyError: 'last_key'
One of get_path's chief aims is to have a good exception that is
better than a plain old KeyError: 'missing_key'
"""
# TODO: integrate default
# TODO: listify kwarg? to allow indexing into sets
# TODO: raise better error on not iterable?
if isinstance(path, basestring):
path = path.split('.')
cur = root
for seg in path:
try:
cur = cur[seg]
except (KeyError, IndexError) as exc:
raise PathAccessError(exc, seg, path)
except TypeError as exc:
# either string index in a list, or a parent that
# doesn't support indexing
try:
seg = int(seg)
cur = cur[seg]
except (ValueError, KeyError, IndexError, TypeError):
raise PathAccessError(exc, seg, path)
return cur
# TODO: get_path/set_path
# TODO: recollect()
# TODO: reiter()
"""
May actually be faster to do an isinstance check for a str path
$ python -m timeit -s "x = [1]" "x[0]"
10000000 loops, best of 3: 0.0207 usec per loop
$ python -m timeit -s "x = [1]" "try: x[0] \nexcept: pass"
10000000 loops, best of 3: 0.029 usec per loop
$ python -m timeit -s "x = [1]" "try: x[1] \nexcept: pass"
1000000 loops, best of 3: 0.315 usec per loop
# setting up try/except is fast, only around 0.01us
# actually triggering the exception takes almost 10x as long
$ python -m timeit -s "x = [1]" "isinstance(x, basestring)"
10000000 loops, best of 3: 0.141 usec per loop
$ python -m timeit -s "x = [1]" "isinstance(x, str)"
10000000 loops, best of 3: 0.131 usec per loop
$ python -m timeit -s "x = [1]" "try: x.split('.')\n except: pass"
1000000 loops, best of 3: 0.443 usec per loop
$ python -m timeit -s "x = [1]" "try: x.split('.') \nexcept AttributeError: pass"
1000000 loops, best of 3: 0.544 usec per loop
"""
| doublereedkurt/boltons | boltons/iterutils.py | Python | bsd-3-clause | 32,952 |
/*=========================================================================
Program: Visualization Toolkit
Module: vtkImageMagnitude.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkImageMagnitude - Colapses components with magnitude function..
// .SECTION Description
// vtkImageMagnitude takes the magnitude of the components.
#ifndef vtkImageMagnitude_h
#define vtkImageMagnitude_h
#include "vtkImagingMathModule.h" // For export macro
#include "vtkThreadedImageAlgorithm.h"
class VTKIMAGINGMATH_EXPORT vtkImageMagnitude : public vtkThreadedImageAlgorithm
{
public:
static vtkImageMagnitude *New();
vtkTypeMacro(vtkImageMagnitude,vtkThreadedImageAlgorithm);
protected:
vtkImageMagnitude();
~vtkImageMagnitude() {}
virtual int RequestInformation (vtkInformation *, vtkInformationVector**,
vtkInformationVector *);
void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
int outExt[6], int id);
private:
vtkImageMagnitude(const vtkImageMagnitude&) VTK_DELETE_FUNCTION;
void operator=(const vtkImageMagnitude&) VTK_DELETE_FUNCTION;
};
#endif
// VTK-HeaderTest-Exclude: vtkImageMagnitude.h
| keithroe/vtkoptix | Imaging/Math/vtkImageMagnitude.h | C | bsd-3-clause | 1,612 |
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/console-test.js"></script>
<script>
function onload()
{
var obj = new Object();
obj["a"] = 1;
obj[Symbol()] = 2;
obj[Symbol("a")] = 3;
obj[Symbol("a")] = Symbol.iterator;
obj[Symbol.iterator] = Symbol("foo");
console.dir(obj);
// This used to crash in debug build.
console.dir(Symbol());
[new Map(), new WeakMap()].forEach(function(m) {
m.set(obj, {foo: 1});
console.dir(m);
});
[new Set(), new WeakSet()].forEach(function(s) {
s.add(obj);
console.dir(s);
});
// Test circular dependency by entries.
var s1 = new Set();
var s2 = new Set();
s1.add(s2);
s2.add(s1);
console.dir(s1);
// Test "No Entries" placeholder.
console.dir(new WeakMap());
// Test Map/Set iterators.
var m = new Map();
m.set(obj, {foo: 1});
var s = new Set();
s.add(obj);
[m, s].forEach(function(c) {
console.dir(c.keys());
console.dir(c.values());
console.dir(c.entries());
});
console.dir({ a: () => { /* function Incorrect() */ } });
runTest();
}
function test()
{
InspectorTest.expandConsoleMessages(dumpConsoleMessages);
function dumpConsoleMessages()
{
InspectorTest.dumpConsoleMessages(false, false, InspectorTest.textContentWithLineBreaks);
InspectorTest.completeTest();
}
}
</script>
</head>
<body onload="onload()">
<p>
Tests that console logging dumps proper messages.
</p>
</body>
</html>
| danakj/chromium | third_party/WebKit/LayoutTests/inspector/console/console-dir-es6.html | HTML | bsd-3-clause | 1,615 |
// Copyright Aleksey Gurtovoy 2001-2004
//
// 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)
//
// Preprocessed version of "boost/mpl/aux_/full_lambda.hpp" header
// -- DO NOT modify by hand!
namespace pdalboost {} namespace boost = pdalboost; namespace pdalboost { namespace mpl {
namespace aux {
template<
bool C1 = false, bool C2 = false, bool C3 = false, bool C4 = false
, bool C5 = false
>
struct lambda_or
: true_
{
};
template<>
struct lambda_or< false,false,false,false,false >
: false_
{
};
} // namespace aux
template<
typename T
, typename Tag
, typename Arity
>
struct lambda
{
typedef false_ is_le;
typedef T result_;
typedef T type;
};
template<
typename T
>
struct is_lambda_expression
: lambda<T>::is_le
{
};
template< int N, typename Tag >
struct lambda< arg<N>,Tag, int_< -1 > >
{
typedef true_ is_le;
typedef mpl::arg<N> result_; // qualified for the sake of MIPSpro 7.41
typedef mpl::protect<result_> type;
};
template<
typename F
, typename Tag
>
struct lambda<
bind0<F>
, Tag
, int_<1>
>
{
typedef false_ is_le;
typedef bind0<
F
> result_;
typedef result_ type;
};
namespace aux {
template<
typename IsLE, typename Tag
, template< typename P1 > class F
, typename L1
>
struct le_result1
{
typedef F<
typename L1::type
> result_;
typedef result_ type;
};
template<
typename Tag
, template< typename P1 > class F
, typename L1
>
struct le_result1< true_,Tag,F,L1 >
{
typedef bind1<
quote1< F,Tag >
, typename L1::result_
> result_;
typedef mpl::protect<result_> type;
};
} // namespace aux
template<
template< typename P1 > class F
, typename T1
, typename Tag
>
struct lambda<
F<T1>
, Tag
, int_<1>
>
{
typedef lambda< T1,Tag > l1;
typedef typename l1::is_le is_le1;
typedef typename aux::lambda_or<
is_le1::value
>::type is_le;
typedef aux::le_result1<
is_le, Tag, F, l1
> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
template<
typename F, typename T1
, typename Tag
>
struct lambda<
bind1< F,T1 >
, Tag
, int_<2>
>
{
typedef false_ is_le;
typedef bind1<
F
, T1
> result_;
typedef result_ type;
};
namespace aux {
template<
typename IsLE, typename Tag
, template< typename P1, typename P2 > class F
, typename L1, typename L2
>
struct le_result2
{
typedef F<
typename L1::type, typename L2::type
> result_;
typedef result_ type;
};
template<
typename Tag
, template< typename P1, typename P2 > class F
, typename L1, typename L2
>
struct le_result2< true_,Tag,F,L1,L2 >
{
typedef bind2<
quote2< F,Tag >
, typename L1::result_, typename L2::result_
> result_;
typedef mpl::protect<result_> type;
};
} // namespace aux
template<
template< typename P1, typename P2 > class F
, typename T1, typename T2
, typename Tag
>
struct lambda<
F< T1,T2 >
, Tag
, int_<2>
>
{
typedef lambda< T1,Tag > l1;
typedef lambda< T2,Tag > l2;
typedef typename l1::is_le is_le1;
typedef typename l2::is_le is_le2;
typedef typename aux::lambda_or<
is_le1::value, is_le2::value
>::type is_le;
typedef aux::le_result2<
is_le, Tag, F, l1, l2
> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
template<
typename F, typename T1, typename T2
, typename Tag
>
struct lambda<
bind2< F,T1,T2 >
, Tag
, int_<3>
>
{
typedef false_ is_le;
typedef bind2<
F
, T1, T2
> result_;
typedef result_ type;
};
namespace aux {
template<
typename IsLE, typename Tag
, template< typename P1, typename P2, typename P3 > class F
, typename L1, typename L2, typename L3
>
struct le_result3
{
typedef F<
typename L1::type, typename L2::type, typename L3::type
> result_;
typedef result_ type;
};
template<
typename Tag
, template< typename P1, typename P2, typename P3 > class F
, typename L1, typename L2, typename L3
>
struct le_result3< true_,Tag,F,L1,L2,L3 >
{
typedef bind3<
quote3< F,Tag >
, typename L1::result_, typename L2::result_, typename L3::result_
> result_;
typedef mpl::protect<result_> type;
};
} // namespace aux
template<
template< typename P1, typename P2, typename P3 > class F
, typename T1, typename T2, typename T3
, typename Tag
>
struct lambda<
F< T1,T2,T3 >
, Tag
, int_<3>
>
{
typedef lambda< T1,Tag > l1;
typedef lambda< T2,Tag > l2;
typedef lambda< T3,Tag > l3;
typedef typename l1::is_le is_le1;
typedef typename l2::is_le is_le2;
typedef typename l3::is_le is_le3;
typedef typename aux::lambda_or<
is_le1::value, is_le2::value, is_le3::value
>::type is_le;
typedef aux::le_result3<
is_le, Tag, F, l1, l2, l3
> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
template<
typename F, typename T1, typename T2, typename T3
, typename Tag
>
struct lambda<
bind3< F,T1,T2,T3 >
, Tag
, int_<4>
>
{
typedef false_ is_le;
typedef bind3<
F
, T1, T2, T3
> result_;
typedef result_ type;
};
namespace aux {
template<
typename IsLE, typename Tag
, template< typename P1, typename P2, typename P3, typename P4 > class F
, typename L1, typename L2, typename L3, typename L4
>
struct le_result4
{
typedef F<
typename L1::type, typename L2::type, typename L3::type
, typename L4::type
> result_;
typedef result_ type;
};
template<
typename Tag
, template< typename P1, typename P2, typename P3, typename P4 > class F
, typename L1, typename L2, typename L3, typename L4
>
struct le_result4< true_,Tag,F,L1,L2,L3,L4 >
{
typedef bind4<
quote4< F,Tag >
, typename L1::result_, typename L2::result_, typename L3::result_
, typename L4::result_
> result_;
typedef mpl::protect<result_> type;
};
} // namespace aux
template<
template< typename P1, typename P2, typename P3, typename P4 > class F
, typename T1, typename T2, typename T3, typename T4
, typename Tag
>
struct lambda<
F< T1,T2,T3,T4 >
, Tag
, int_<4>
>
{
typedef lambda< T1,Tag > l1;
typedef lambda< T2,Tag > l2;
typedef lambda< T3,Tag > l3;
typedef lambda< T4,Tag > l4;
typedef typename l1::is_le is_le1;
typedef typename l2::is_le is_le2;
typedef typename l3::is_le is_le3;
typedef typename l4::is_le is_le4;
typedef typename aux::lambda_or<
is_le1::value, is_le2::value, is_le3::value, is_le4::value
>::type is_le;
typedef aux::le_result4<
is_le, Tag, F, l1, l2, l3, l4
> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
template<
typename F, typename T1, typename T2, typename T3, typename T4
, typename Tag
>
struct lambda<
bind4< F,T1,T2,T3,T4 >
, Tag
, int_<5>
>
{
typedef false_ is_le;
typedef bind4<
F
, T1, T2, T3, T4
> result_;
typedef result_ type;
};
namespace aux {
template<
typename IsLE, typename Tag
, template< typename P1, typename P2, typename P3, typename P4, typename P5 > class F
, typename L1, typename L2, typename L3, typename L4, typename L5
>
struct le_result5
{
typedef F<
typename L1::type, typename L2::type, typename L3::type
, typename L4::type, typename L5::type
> result_;
typedef result_ type;
};
template<
typename Tag
, template< typename P1, typename P2, typename P3, typename P4, typename P5 > class F
, typename L1, typename L2, typename L3, typename L4, typename L5
>
struct le_result5< true_,Tag,F,L1,L2,L3,L4,L5 >
{
typedef bind5<
quote5< F,Tag >
, typename L1::result_, typename L2::result_, typename L3::result_
, typename L4::result_, typename L5::result_
> result_;
typedef mpl::protect<result_> type;
};
} // namespace aux
template<
template<
typename P1, typename P2, typename P3, typename P4
, typename P5
>
class F
, typename T1, typename T2, typename T3, typename T4, typename T5
, typename Tag
>
struct lambda<
F< T1,T2,T3,T4,T5 >
, Tag
, int_<5>
>
{
typedef lambda< T1,Tag > l1;
typedef lambda< T2,Tag > l2;
typedef lambda< T3,Tag > l3;
typedef lambda< T4,Tag > l4;
typedef lambda< T5,Tag > l5;
typedef typename l1::is_le is_le1;
typedef typename l2::is_le is_le2;
typedef typename l3::is_le is_le3;
typedef typename l4::is_le is_le4;
typedef typename l5::is_le is_le5;
typedef typename aux::lambda_or<
is_le1::value, is_le2::value, is_le3::value, is_le4::value
, is_le5::value
>::type is_le;
typedef aux::le_result5<
is_le, Tag, F, l1, l2, l3, l4, l5
> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
template<
typename F, typename T1, typename T2, typename T3, typename T4
, typename T5
, typename Tag
>
struct lambda<
bind5< F,T1,T2,T3,T4,T5 >
, Tag
, int_<6>
>
{
typedef false_ is_le;
typedef bind5<
F
, T1, T2, T3, T4, T5
> result_;
typedef result_ type;
};
/// special case for 'protect'
template< typename T, typename Tag >
struct lambda< mpl::protect<T>,Tag, int_<1> >
{
typedef false_ is_le;
typedef mpl::protect<T> result_;
typedef result_ type;
};
/// specializations for the main 'bind' form
template<
typename F, typename T1, typename T2, typename T3, typename T4
, typename T5
, typename Tag
>
struct lambda<
bind< F,T1,T2,T3,T4,T5 >
, Tag
, int_<6>
>
{
typedef false_ is_le;
typedef bind< F,T1,T2,T3,T4,T5 > result_;
typedef result_ type;
};
template<
typename F
, typename Tag1
, typename Tag2
, typename Arity
>
struct lambda<
lambda< F,Tag1,Arity >
, Tag2
, int_<3>
>
{
typedef lambda< F,Tag2 > l1;
typedef lambda< Tag1,Tag2 > l2;
typedef typename l1::is_le is_le;
typedef bind1< quote1<aux::template_arity>, typename l1::result_ > arity_;
typedef lambda< typename if_< is_le,arity_,Arity >::type, Tag2 > l3;
typedef aux::le_result3<is_le, Tag2, mpl::lambda, l1, l2, l3> le_result_;
typedef typename le_result_::result_ result_;
typedef typename le_result_::type type;
};
BOOST_MPL_AUX_NA_SPEC2(2, 3, lambda)
}}
| verma/PDAL | boost/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp | C++ | bsd-3-clause | 11,566 |
class Module:
def __init__(self, mainMenu, params=[]):
# metadata info about the module, not modified during runtime
self.info = {
# name for the module that will appear in module menus
'Name': 'Prompt',
# list of one or more authors for the module
'Author': ['@FuzzyNop', '@harmj0y'],
# more verbose multi-line description of the module
'Description': ('Launches a specified application with an prompt for credentials with osascript.'),
# True if the module needs to run in the background
'Background' : False,
# File extension to save the file as
'OutputExtension' : "",
# if the module needs administrative privileges
'NeedsAdmin' : False,
# True if the method doesn't touch disk/is reasonably opsec safe
'OpsecSafe' : False,
# the module language
'Language' : 'python',
# the minimum language version needed
'MinLanguageVersion' : '2.6',
# list of any references/other comments
'Comments': [
"https://github.com/fuzzynop/FiveOnceInYourLife"
]
}
# any options needed by the module, settable during runtime
self.options = {
# format:
# value_name : {description, required, default_value}
'Agent' : {
# The 'Agent' option is the only one that MUST be in a module
'Description' : 'Agent to execute module on.',
'Required' : True,
'Value' : ''
},
'AppName' : {
# The 'Agent' option is the only one that MUST be in a module
'Description' : 'The name of the application to launch.',
'Required' : True,
'Value' : 'App Store'
},
'ListApps' : {
# The 'Agent' option is the only one that MUST be in a module
'Description' : 'Switch. List applications suitable for launching.',
'Required' : False,
'Value' : ''
}
}
# save off a copy of the mainMenu object to access external functionality
# like listeners/agent handlers/etc.
self.mainMenu = mainMenu
# During instantiation, any settable option parameters
# are passed as an object set to the module and the
# options dictionary is automatically set. This is mostly
# in case options are passed on the command line
if params:
for param in params:
# parameter format is [Name, Value]
option, value = param
if option in self.options:
self.options[option]['Value'] = value
def generate(self):
listApps = self.options['ListApps']['Value']
appName = self.options['AppName']['Value']
if listApps != "":
script = """
import os
apps = [ app.split('.app')[0] for app in os.listdir('/Applications/') if not app.split('.app')[0].startswith('.')]
choices = []
for x in xrange(len(apps)):
choices.append("[%s] %s " %(x+1, apps[x]) )
print "\\nAvailable applications:\\n"
print '\\n'.join(choices)
"""
else:
# osascript prompt for the specific application
script = """
import os
print os.popen('osascript -e \\\'tell app "%s" to activate\\\' -e \\\'tell app "%s" to display dialog "%s requires your password to continue." & return default answer "" with icon 1 with hidden answer with title "%s Alert"\\\'').read()
""" % (appName, appName, appName, appName)
return script
| Hackplayers/Empire-mod-Hpys-tests | lib/modules/python/collection/osx/prompt.py | Python | bsd-3-clause | 3,830 |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_
#define CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_
#include <list>
#include <string>
#include <utility>
#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/browser/worker_host/worker_document_set.h"
#include "content/browser/worker_host/worker_storage_partition.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_child_process_host_delegate.h"
#include "content/public/browser/browser_child_process_host_iterator.h"
#include "content/public/common/process_type.h"
#include "content/public/common/resource_type.h"
#include "ipc/ipc_sender.h"
#include "third_party/WebKit/public/web/WebContentSecurityPolicy.h"
#include "url/gurl.h"
struct ResourceHostMsg_Request;
namespace fileapi {
class FileSystemContext;
} // namespace fileapi
namespace net {
class URLRequestContext;
}
namespace webkit_database {
class DatabaseTracker;
} // namespace webkit_database
namespace content {
class BrowserChildProcessHostImpl;
class IndexedDBContextImpl;
class ResourceContext;
class SocketStreamDispatcherHost;
class WorkerMessageFilter;
class WorkerServiceImpl;
// The WorkerProcessHost is the interface that represents the browser side of
// the browser <-> worker communication channel. There will be one
// WorkerProcessHost per worker process. Currently each worker runs in its own
// process, but that may change. However, we do assume (by storing a
// net::URLRequestContext) that a WorkerProcessHost serves a single
// BrowserContext.
class WorkerProcessHost : public BrowserChildProcessHostDelegate,
public IPC::Sender {
public:
// Contains information about each worker instance, needed to forward messages
// between the renderer and worker processes.
class WorkerInstance {
public:
WorkerInstance(const GURL& url,
const base::string16& name,
const base::string16& content_security_policy,
blink::WebContentSecurityPolicyType security_policy_type,
int worker_route_id,
int render_frame_id,
ResourceContext* resource_context,
const WorkerStoragePartition& partition);
~WorkerInstance();
// Unique identifier for a worker client.
class FilterInfo {
public:
FilterInfo(WorkerMessageFilter* filter, int route_id)
: filter_(filter), route_id_(route_id), message_port_id_(0) { }
WorkerMessageFilter* filter() const { return filter_; }
int route_id() const { return route_id_; }
int message_port_id() const { return message_port_id_; }
void set_message_port_id(int id) { message_port_id_ = id; }
private:
WorkerMessageFilter* filter_;
int route_id_;
int message_port_id_;
};
// APIs to manage the filter list for a given instance.
void AddFilter(WorkerMessageFilter* filter, int route_id);
void RemoveFilter(WorkerMessageFilter* filter, int route_id);
void RemoveFilters(WorkerMessageFilter* filter);
bool HasFilter(WorkerMessageFilter* filter, int route_id) const;
bool FrameIsParent(int render_process_id, int render_frame_id) const;
int NumFilters() const { return filters_.size(); }
void SetMessagePortID(WorkerMessageFilter* filter,
int route_id,
int message_port_id);
// Returns the single filter (must only be one).
FilterInfo GetFilter() const;
typedef std::list<FilterInfo> FilterList;
const FilterList& filters() const { return filters_; }
// Checks if this WorkerInstance matches the passed url/name params
// (per the comparison algorithm in the WebWorkers spec). This API only
// applies to shared workers.
bool Matches(
const GURL& url,
const base::string16& name,
const WorkerStoragePartition& partition,
ResourceContext* resource_context) const;
// Shares the passed instance's WorkerDocumentSet with this instance. This
// instance's current WorkerDocumentSet is dereferenced (and freed if this
// is the only reference) as a result.
void ShareDocumentSet(const WorkerInstance& instance) {
worker_document_set_ = instance.worker_document_set_;
};
// Accessors
bool closed() const { return closed_; }
void set_closed(bool closed) { closed_ = closed; }
const GURL& url() const { return url_; }
const base::string16 name() const { return name_; }
const base::string16 content_security_policy() const {
return content_security_policy_;
}
blink::WebContentSecurityPolicyType security_policy_type() const {
return security_policy_type_;
}
int worker_route_id() const { return worker_route_id_; }
int render_frame_id() const { return render_frame_id_; }
WorkerDocumentSet* worker_document_set() const {
return worker_document_set_.get();
}
ResourceContext* resource_context() const {
return resource_context_;
}
const WorkerStoragePartition& partition() const {
return partition_;
}
void set_load_failed(bool failed) { load_failed_ = failed; }
bool load_failed() { return load_failed_; }
private:
// Set of all filters (clients) associated with this worker.
GURL url_;
bool closed_;
base::string16 name_;
base::string16 content_security_policy_;
blink::WebContentSecurityPolicyType security_policy_type_;
int worker_route_id_;
int render_frame_id_;
FilterList filters_;
scoped_refptr<WorkerDocumentSet> worker_document_set_;
ResourceContext* const resource_context_;
WorkerStoragePartition partition_;
bool load_failed_;
};
WorkerProcessHost(ResourceContext* resource_context,
const WorkerStoragePartition& partition);
virtual ~WorkerProcessHost();
// IPC::Sender implementation:
virtual bool Send(IPC::Message* message) OVERRIDE;
// Starts the process. Returns true iff it succeeded.
// |render_process_id| and |render_frame_id| are the renderer process and the
// renderer frame responsible for starting this worker.
bool Init(int render_process_id, int render_frame_id);
// Creates a worker object in the process.
void CreateWorker(const WorkerInstance& instance, bool pause_on_start);
// Returns true iff the given message from a renderer process was forwarded to
// the worker.
bool FilterMessage(const IPC::Message& message, WorkerMessageFilter* filter);
void FilterShutdown(WorkerMessageFilter* filter);
// Shuts down any shared workers that are no longer referenced by active
// documents.
void DocumentDetached(WorkerMessageFilter* filter,
unsigned long long document_id);
// Terminates the given worker, i.e. based on a UI action.
CONTENT_EXPORT void TerminateWorker(int worker_route_id);
// Callers can reduce the WorkerProcess' priority.
void SetBackgrounded(bool backgrounded);
CONTENT_EXPORT const ChildProcessData& GetData();
typedef std::list<WorkerInstance> Instances;
const Instances& instances() const { return instances_; }
ResourceContext* resource_context() const {
return resource_context_;
}
bool process_launched() const { return process_launched_; }
protected:
friend class WorkerServiceImpl;
Instances& mutable_instances() { return instances_; }
private:
// BrowserChildProcessHostDelegate implementation:
virtual void OnProcessLaunched() OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
// Creates and adds the message filters.
void CreateMessageFilters(int render_process_id);
void OnWorkerContextClosed(int worker_route_id);
void OnWorkerContextDestroyed(int worker_route_id);
void OnWorkerScriptLoaded(int worker_route_id);
void OnWorkerScriptLoadFailed(int worker_route_id);
void OnWorkerConnected(int message_port_id, int worker_route_id);
void OnAllowDatabase(int worker_route_id,
const GURL& url,
const base::string16& name,
const base::string16& display_name,
unsigned long estimated_size,
bool* result);
void OnRequestFileSystemAccess(int worker_route_id,
const GURL& url,
IPC::Message* reply_msg);
void OnRequestFileSystemAccessResponse(scoped_ptr<IPC::Message> reply_msg,
bool allowed);
void OnAllowIndexedDB(int worker_route_id,
const GURL& url,
const base::string16& name,
bool* result);
void OnForceKillWorkerProcess();
// Relays a message to the given endpoint. Takes care of parsing the message
// if it contains a message port and sending it a valid route id.
void RelayMessage(const IPC::Message& message,
WorkerMessageFilter* incoming_filter,
WorkerInstance* instance);
void ShutdownSocketStreamDispatcherHostIfNecessary();
virtual bool CanShutdown() OVERRIDE;
// Updates the title shown in the task manager.
void UpdateTitle();
// Return a vector of all the render process/render frame IDs that use the
// given worker.
std::vector<std::pair<int, int> > GetRenderFrameIDsForWorker(int route_id);
// Callbacks for ResourceMessageFilter and SocketStreamDispatcherHost.
void GetContexts(const ResourceHostMsg_Request& request,
ResourceContext** resource_context,
net::URLRequestContext** request_context);
net::URLRequestContext* GetRequestContext(ResourceType::Type resource_type);
Instances instances_;
ResourceContext* const resource_context_;
WorkerStoragePartition partition_;
// A reference to the filter associated with this worker process. We need to
// keep this around since we'll use it when forward messages to the worker
// process.
scoped_refptr<WorkerMessageFilter> worker_message_filter_;
scoped_ptr<BrowserChildProcessHostImpl> process_;
bool process_launched_;
scoped_refptr<SocketStreamDispatcherHost> socket_stream_dispatcher_host_;
base::WeakPtrFactory<WorkerProcessHost> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(WorkerProcessHost);
};
class WorkerProcessHostIterator
: public BrowserChildProcessHostTypeIterator<WorkerProcessHost> {
public:
WorkerProcessHostIterator()
: BrowserChildProcessHostTypeIterator<WorkerProcessHost>(
PROCESS_TYPE_WORKER) {
}
};
} // namespace content
#endif // CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_
| chromium2014/src | content/browser/worker_host/worker_process_host.h | C | bsd-3-clause | 10,953 |
/*****************************************************************************
* CVS File Information :
* $RCSfile$
* Author: patmiller $
* Date: 2007/06/11 14:12:54 $
* Revision: 1.2 $
****************************************************************************/
/***********************************************************************************************/
/* FILE ************************** _MPI_Utility.c ***********************************/
/***********************************************************************************************/
/* Author : Lisa Alano June 26 2002 */
/* Copyright (c) 2002 University of California Regents */
/***********************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mpi.h"
void _MPI_safeFree(void* buffer,char* message) {
_MPI_COVERAGE();
if ( buffer ) free(buffer);
}
/*=============================================================================================*/
void *_MPI_safeMalloc(int size, char* message)
{
void *temp;
_MPI_COVERAGE();
temp = malloc(size+128); /* HACK: Padding */
_MPI_checkMemAlloc(temp,message);
memset(temp,0,size);
return temp;
}
/*=============================================================================================*/
void _MPI_checkMemAlloc (void* array, char* message)
{
_MPI_COVERAGE();
if (array == (void*) NULL) {
_MPI_COVERAGE();
fprintf(stderr, "Cannot allocate: %s\n", message);
fflush(stderr);
MPI_Abort(MPI_COMM_WORLD, -1);
}
}
/*=============================================================================================*/
void *_MPI_safeRealloc(void* oldBuffer, int size, char* message)
{
_MPI_COVERAGE();
oldBuffer = realloc (oldBuffer, size);
_MPI_checkMemAlloc(oldBuffer, message);
/* memset(oldBuffer+oldsize????,0,size); */
return oldBuffer;
}
/*=============================================================================================*/
int _MPI_checkIntP (int *pt)
{
_MPI_COVERAGE();
if (pt == NULL)
return _MPI_NOT_OK;
return MPI_SUCCESS;
}
/*=============================================================================================*/
| nschloe/seacas | packages/zoltan/siMPI/pyMPI/siMPI/_MPI_UTILITY.c | C | bsd-3-clause | 2,338 |
#!/usr/bin/python
# ex:set fileencoding=utf-8:
from __future__ import unicode_literals
from django.conf.urls import patterns
from django.conf.urls import url
from django.contrib.admin.sites import AlreadyRegistered
from django.contrib.contenttypes.models import ContentType
from django.core.exceptions import ImproperlyConfigured
from django.db.models import signals
from django.http import Http404
from django.utils import six
from django.utils.text import slugify
from rest_framework.reverse import reverse
from djangobmf.core.relationship import DocumentRelationship
from djangobmf.core.serializers.document import DocumentSerializer
from djangobmf.core.workflow import Workflow
from djangobmf.models import Document
from djangobmf.permissions import ModulePermission
from djangobmf.views import ModuleCreateView
from djangobmf.views import ModuleDeleteView
from djangobmf.views import ModuleDetail
from djangobmf.views import ModuleFormAPI
from djangobmf.views import ModuleUpdateView
from djangobmf.views import ModuleWorkflowView
from collections import OrderedDict
import logging
logger = logging.getLogger(__name__)
class Module(object):
"""
Under the ``Module`-class the framework stores every informations
needed to display and manage views and API's. It also provides
many functions used in the whole framework.
"""
open_relation = None
workflow_class = None
workflow_field_name = "state"
detail_view = ModuleDetail
def __init__(self, bmfconfig):
# validation
if not hasattr(self, 'model'):
raise ImproperlyConfigured(
'No model defined in %s.' % self.__class__
)
self.bmfconfig = bmfconfig
self._class_reports = {}
self._object_reports = {}
self._relations = []
self.signals_setup()
self.validate_workflow()
# auto add document relationship
if hasattr(self.model, '_bmfmeta') and self.model._bmfmeta.has_files:
class FileDownload(DocumentRelationship):
model_to = self.model
serializer = DocumentSerializer
self.add_relation(FileDownload, Document)
# TODO: OLD OLD OLD
self.create_view = self.create
self.delete_view = self.delete
self.update_view = self.update
# --- misc ----------------------------------------------------------------
def get_contenttype(self): # pragma: no cover
"""
returns the models contenttype
"""
return ContentType.objects.get_for_model(self.model)
# --- single views --------------------------------------------------------
# TODO
def get_update_view(self):
"""
"""
pass
# TODO
def get_delete_view(self):
"""
"""
pass
def get_detail_view(self, request, *args, **kwargs):
"""
generates a detail-view response
"""
if hasattr(self, '_detail_view'):
return self._detail_view(request, *args, **kwargs)
self._detail_view = self.detail_view.as_view(
module=self,
model=self.model
)
return self._detail_view(request, *args, **kwargs)
# --- serialization -------------------------------------------------------
# TODO
def serialize_class(self, request=None):
"""
"""
return OrderedDict([
('app', self.model._meta.app_label),
('creates', self.get_create_views()),
('ct', self.get_contenttype().pk),
('model', self.model._meta.model_name),
('name', self.model._meta.verbose_name_plural),
('open_relation', self.open_relation),
('relations', self.get_relations(request)),
])
# TODO
def serialize_object(self, obj):
"""
"""
return {}
# --- workflow ------------------------------------------------------------
# TODO
def validate_workflow(self):
"""
"""
if self.workflow_class:
if not issubclass(self.workflow_class, Workflow):
raise ImproperlyConfigured(
"%s is not a Workflow in %s" % (
self.workflow_class.__name__,
self.__name__
)
)
# self.workflow = self.workflow_class()
def has_workflow(self):
"""
"""
return bool(self.workflow_class)
# TODO
def get_workflow_states(self, obj):
"""
"""
pass
# TODO
def get_workflow_transitions(self, obj, state_name):
"""
"""
pass
# --- permissions ---------------------------------------------------------
# TODO
def get_permissions(self, obj):
"""
"""
pass
# --- Create views --------------------------------------------------------
def has_create_views(self):
"""
return True if the module has one or more create views
"""
return getattr(self, '_has_create_views', False)
# TODO
def get_create_views(self):
"""
"""
if self.bmfconfig:
namespace_api = '%s:moduleapi_%s_%s' % (
self.bmfconfig.label,
self.model._meta.app_label,
self.model._meta.model_name,
)
return [{
'name': i[1],
'url': reverse(namespace_api + ':create', kwargs={"key": i[0]}),
} for i in self.list_creates()]
return []
# TODO
def get_create_view(self, name):
"""
"""
pass
# TODO
def add_create_view(self, name, view):
"""
"""
pass
self._has_create_views = True
# --- Clone views ---------------------------------------------------------
def has_clone_views(self):
"""
return True if the module has one or more clone views
"""
return getattr(self, '_has_clone_views', False)
# TODO
def get_clone_views(self):
"""
"""
pass
# TODO
def get_clone_view(self, name):
"""
"""
pass
# TODO
def add_clone_view(self, name, view):
"""
"""
pass
self._has_clone_views = True
# --- Functions for both report types -------------------------------------
def add_report(self, report):
"""
"""
if not getattr(report, "renderer_class", None):
raise ImproperlyConfigured(
'%s needs a renderer_class attribute',
report,
)
if report.has_object:
return self.add_object_report(report)
else:
return self.add_class_report(report)
# --- Class specific reports ----------------------------------------------
# TODO
def get_class_reports(self):
"""
"""
pass
# TODO
def get_class_report(self, name):
"""
"""
pass
# TODO
def add_class_report(self, report):
"""
"""
self._class_reports[report.__name__] = {
'class': report,
}
# --- Object specific reports ---------------------------------------------
def get_object_reports(self):
"""
Returns all available reports
"""
qs = self.bmfconfig.get_model("Report").objects.filter(
contenttype=self.get_contenttype(),
enabled=True
).values('pk', 'name', 'slug', 'renderer_view')
items = []
for data in qs:
cls = self._object_reports[data['renderer_view']]
if data['renderer_view'] in self._object_reports:
items.append({
'name': data['name'],
'slug': data['slug'],
'verbose_name': cls['class'].verbose_name,
'has_form': bool(cls['class'].form_class),
})
else:
self.bmfconfig.get_model("Report").objects.filter(pk=data['pk']).update(enabled=False)
return items
def get_object_report(self, slug):
"""
"""
obj = self.bmfconfig.get_model("Report").objects.get(
contenttype=self.get_contenttype(),
enabled=True,
slug=slug,
)
if not obj.renderer:
logger.error('No renderer defined')
raise Http404
if obj.renderer_view in self._object_reports:
report = self._object_reports[obj.renderer_view]
if not report["view"]:
report["view"] = report["class"].as_view()
return report['view'], obj.renderer
else:
raise Http404
def add_object_report(self, report):
"""
"""
name = report.__module__ + '.' + report.__name__
self._object_reports[name] = {
'class': report,
'view': None, # the view is added by get_object_report
}
# --- Class specific custom apis ------------------------------------------
# TODO
def get_class_apis(self):
"""
"""
pass
# TODO
def get_class_api(self, name):
"""
"""
pass
# TODO
def add_class_api(self, name, view):
"""
"""
pass
# --- Object specific custom apis -----------------------------------------
# TODO
def get_object_apis(self):
"""
"""
pass
# TODO
def get_object_api(self, name):
"""
"""
pass
# TODO
def add_object_api(self, name, view):
"""
"""
pass
# --- Object specific custom apis -----------------------------------------
def has_relations(self):
"""
return True if the module has one or more relations
"""
return bool(self._relations)
# TODO
def get_relations(self, request):
"""
"""
relations = []
for relation in self._relations:
perm = '%s.view_%s'
info = (relation._model_to._meta.app_label, relation._model_to._meta.model_name)
if not request.user.has_perms([perm % info]):
continue
data = OrderedDict([
('app_label', relation._model_from._meta.app_label),
('model_name', relation._model_from._meta.model_name),
('name', relation.name),
('slug', relation.slug),
('template', relation.template),
])
relations.append(data)
return relations
# TODO
def get_relation(self, name):
"""
"""
pass
# TODO
def add_relation(self, cls, model_from):
"""
"""
relation = cls()
relation._model_from = model_from
for obj in self._relations:
if obj == relation:
raise AlreadyRegistered(
'Can not register the relationship %s' % cls.__name__
)
self._relations.append(relation)
# --- number ranges -------------------------------------------------------
def has_numberranges(self):
"""
"""
pass
# TODO
def get_numberranges(self):
"""
"""
pass
# TODO
def get_numberrange(self, name):
"""
"""
pass
# TODO
def add_numberrange(self, name, number_range):
"""
"""
pass
# --- Signals -------------------------------------------------------------
def signals_setup(self):
"""
Bind own signal methods to the djangos signals
"""
logger.debug("Setup signals for %s", self.__class__.__name__)
signals.pre_delete.connect(self.signal_pre_delete, sender=self.model)
signals.pre_init.connect(self.signal_pre_init, sender=self.model)
signals.pre_save.connect(self.signal_pre_save, sender=self.model)
signals.post_delete.connect(self.signal_post_delete, sender=self.model)
signals.post_init.connect(self.signal_post_init, sender=self.model)
signals.post_save.connect(self.signal_post_save, sender=self.model)
def signal_pre_delete(self, *args, **kwargs):
"""
This function is called bevor a model instance is deleted
"""
pass
def signal_pre_init(self, *args, **kwargs):
"""
This function is called bevor a model instance is initialized
"""
pass
def signal_pre_save(self, *args, **kwargs):
"""
This function is called bevor a model instance is saved
"""
pass
def signal_post_delete(self, *args, **kwargs):
"""
This function is called after a model instance is deleted
"""
pass
def signal_post_init(self, *args, **kwargs):
"""
This function is called after a model instance is initialized
"""
pass
def signal_post_save(self, *args, **kwargs):
"""
This function is called after a model instance is saved
"""
pass
# TODO: OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD OLD
detail = ModuleDetail
create = ModuleCreateView
delete = ModuleDeleteView
update = ModuleUpdateView
permissions = ModulePermission
detail_urlpatterns = None
api_urlpatterns = None
def list_creates(self):
if hasattr(self, 'listed_creates'):
return self.listed_creates
self.listed_creates = []
if isinstance(self.create, dict):
for label, view in six.iteritems(self.create):
key = slugify(label)
if isinstance(view, (list, tuple)) and len(view) == 2:
# overwrite the label, and use the correct the view function
label = view[0]
view = view[1]
self.listed_creates.append((key, label, view))
elif issubclass(self.create, ModuleCreateView):
self.listed_creates.append(('default', 'default', self.create))
return self.listed_creates
def get_detail_urls(self):
# add custom url patterns
if self.detail_urlpatterns:
return self.detail_urlpatterns
return patterns('')
def get_api_urls(self):
creates = self.list_creates()
urlpatterns = patterns(
'',
url(
r'^update/(?P<pk>[0-9]+)/$',
self.update.as_view(
module=self,
model=self.model
),
name='update',
),
url(
r'^update/(?P<pk>[0-9]+)/form/$',
ModuleFormAPI.as_view(
module=self,
model=self.model,
form_view=self.update,
),
name='update-form',
),
url(
r'^delete/(?P<pk>[0-9]+)/$',
self.delete.as_view(
module=self,
model=self.model
),
name='delete',
),
)
if self.model._bmfmeta.can_clone:
urlpatterns += patterns(
'',
url(
r'^clone/(?P<pk>[0-9]+)/$',
self.clone.as_view(
module=self,
model=self.model
),
name='clone',
),
url(
r'^clone/(?P<pk>[0-9]+)/form/$',
ModuleFormAPI.as_view(
module=self,
model=self.model,
form_view=self.clone,
),
name='clone-form',
),
)
for key, label, view in creates:
urlpatterns += patterns(
'',
url(
r'^create/(?P<key>%s)/$' % key,
view.as_view(
module=self,
model=self.model
),
name='create',
),
url(
r'^create/(?P<key>%s)/form/$' % key,
ModuleFormAPI.as_view(
module=self,
model=self.model,
form_view=view,
),
name='create-form',
),
)
# workflow interactions
if self.model._bmfmeta.has_workflow:
urlpatterns += patterns(
'',
url(
r'^workflow/(?P<pk>[0-9]+)/(?P<transition>\w+)/$',
ModuleWorkflowView.as_view(
module=self,
model=self.model
),
name='workflow',
),
)
# add custom url patterns
if self.api_urlpatterns:
urlpatterns += self.api_urlpatterns
return urlpatterns
| django-bmf/django-bmf | djangobmf/core/module.py | Python | bsd-3-clause | 17,355 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE134_Uncontrolled_Format_String__char_environment_printf_18.c
Label Definition File: CWE134_Uncontrolled_Format_String.label.xml
Template File: sources-sinks-18.tmpl.c
*/
/*
* @description
* CWE: 134 Uncontrolled Format String
* BadSource: environment Read input from an environment variable
* GoodSource: Copy a fixed string into data
* Sinks: printf
* GoodSink: printf with "%s" as the first argument and data as the second
* BadSink : printf with only data as an argument
* Flow Variant: 18 Control flow: goto statements
*
* */
#include "std_testcase.h"
#ifndef _WIN32
#include <wchar.h>
#endif
#define ENV_VARIABLE "ADD"
#ifdef _WIN32
#define GETENV getenv
#else
#define GETENV getenv
#endif
#ifndef OMITBAD
void CWE134_Uncontrolled_Format_String__char_environment_printf_18_bad()
{
char * data;
char dataBuffer[100] = "";
data = dataBuffer;
goto source;
source:
{
/* Append input from an environment variable to data */
size_t dataLen = strlen(data);
char * environment = GETENV(ENV_VARIABLE);
/* If there is data in the environment variable */
if (environment != NULL)
{
/* POTENTIAL FLAW: Read data from an environment variable */
strncat(data+dataLen, environment, 100-dataLen-1);
}
}
goto sink;
sink:
/* POTENTIAL FLAW: Do not specify the format allowing a possible format string vulnerability */
printf(data);
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodB2G() - use badsource and goodsink by reversing the blocks on the second goto statement */
static void goodB2G()
{
char * data;
char dataBuffer[100] = "";
data = dataBuffer;
goto source;
source:
{
/* Append input from an environment variable to data */
size_t dataLen = strlen(data);
char * environment = GETENV(ENV_VARIABLE);
/* If there is data in the environment variable */
if (environment != NULL)
{
/* POTENTIAL FLAW: Read data from an environment variable */
strncat(data+dataLen, environment, 100-dataLen-1);
}
}
goto sink;
sink:
/* FIX: Specify the format disallowing a format string vulnerability */
printf("%s\n", data);
}
/* goodG2B() - use goodsource and badsink by reversing the blocks on the first goto statement */
static void goodG2B()
{
char * data;
char dataBuffer[100] = "";
data = dataBuffer;
goto source;
source:
/* FIX: Use a fixed string that does not contain a format specifier */
strcpy(data, "fixedstringtest");
goto sink;
sink:
/* POTENTIAL FLAW: Do not specify the format allowing a possible format string vulnerability */
printf(data);
}
void CWE134_Uncontrolled_Format_String__char_environment_printf_18_good()
{
goodB2G();
goodG2B();
}
#endif /* OMITGOOD */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
CWE134_Uncontrolled_Format_String__char_environment_printf_18_good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
CWE134_Uncontrolled_Format_String__char_environment_printf_18_bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE134_Uncontrolled_Format_String/s02/CWE134_Uncontrolled_Format_String__char_environment_printf_18.c | C | bsd-3-clause | 3,837 |
/*
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
// Tests for the UdpSocketWrapper interface.
// This will test the UdpSocket implementations on various platforms.
// Note that this test is using a real SocketManager, which starts up
// an extra worker thread, making the testing more complex than it
// should be.
// This is because on Posix, the CloseBlocking function waits for the
// ReadyForDeletion function to be called, which has to be called after
// CloseBlocking, and thus has to be called from another thread.
// The manager is the one actually doing the deleting.
// This is done differently in the Winsock2 code, but that code
// will also hang if the destructor is called directly.
#include "gtest/gtest.h"
#include "gmock/gmock.h"
#include "webrtc/test/channel_transport/udp_socket_wrapper.h"
#include "webrtc/test/channel_transport/udp_socket_manager_wrapper.h"
using ::testing::_;
using ::testing::Return;
namespace webrtc {
namespace test {
class MockSocketManager : public UdpSocketManager {
public:
MockSocketManager() {}
// Access to protected destructor.
void Destroy() {
delete this;
}
MOCK_METHOD2(Init, bool(WebRtc_Word32, WebRtc_UWord8&));
MOCK_METHOD1(ChangeUniqueId, WebRtc_Word32(const WebRtc_Word32));
MOCK_METHOD0(Start, bool());
MOCK_METHOD0(Stop, bool());
MOCK_METHOD1(AddSocket, bool(UdpSocketWrapper*));
MOCK_METHOD1(RemoveSocket, bool(UdpSocketWrapper*));
};
// Creates a socket using the static constructor method and verifies that
// it's added to the socket manager.
TEST(UdpSocketWrapper, CreateSocket) {
WebRtc_Word32 id = 42;
// We can't test deletion of sockets without a socket manager.
WebRtc_UWord8 threads = 1;
UdpSocketManager* mgr = UdpSocketManager::Create(id, threads);
UdpSocketWrapper* socket =
UdpSocketWrapper::CreateSocket(id,
mgr,
NULL, // CallbackObj
NULL, // IncomingSocketCallback
false, // ipV6Enable
false); // disableGQOS
socket->CloseBlocking();
UdpSocketManager::Return();
}
} // namespace test
} // namespace webrtc
| unisontech/webrtc-core | test/channel_transport/udp_socket_wrapper_unittest.cc | C++ | bsd-3-clause | 2,590 |
import sys
from apps.cowry.exceptions import PaymentMethodNotFound
from django.utils.importlib import import_module
def _load_from_module(path):
package, attr = path.rsplit('.', 1)
module = import_module(package)
return getattr(module, attr)
# TODO read django settings to find out what adapters to load.
# TODO Ensure not duplicate payment method names.
# ADAPTERS = getattr(settings, 'COWRY_ADAPTERS')
ADAPTERS = ('apps.cowry_docdata.adapters.DocDataPaymentAdapter',)
_adapters = []
for adapter_str in ADAPTERS:
adapter_class = _load_from_module(adapter_str)
_adapters.append(adapter_class())
def _adapter_for_payment_method(payment_method_id):
for adapter in _adapters:
for pmi in adapter.get_payment_methods():
if payment_method_id == pmi:
return adapter
raise PaymentMethodNotFound('', payment_method_id)
def create_payment_object(order, payment_method_id, payment_submethod='', amount='', currency=''):
adapter = _adapter_for_payment_method(payment_method_id)
payment = adapter.create_payment_object(order, payment_method_id, payment_submethod, amount, currency)
payment.save()
return payment
def get_payment_methods(amount=None, currency='', country='', recurring=None, pm_ids=None):
payment_methods = []
for adapter in _adapters:
cur_payment_methods = adapter.get_payment_methods()
for pm_id in cur_payment_methods:
if pm_ids is None or pm_id in pm_ids:
# Extract values from the configuration.
pm_config = cur_payment_methods[pm_id]
max_amount = pm_config.get('max_amount', sys.maxint)
min_amount = pm_config.get('min_amount', 0)
restricted_currencies = pm_config.get('restricted_currencies', (currency,))
restricted_countries = pm_config.get('restricted_countries', (country,))
supports_recurring = pm_config.get('supports_recurring', True)
supports_single = pm_config.get('supports_single', True)
# See if we need to exclude the current payment_method (pm).
add_pm = True
if amount and (amount > max_amount or amount < min_amount):
add_pm = False
if country not in restricted_countries:
add_pm = False
if currency not in restricted_currencies:
add_pm = False
if recurring and not supports_recurring:
add_pm = False
if not recurring and not supports_single:
add_pm = False
# For now we only return a few params. Later on we might want to return the entire object.
if add_pm:
payment_methods.append({'id': pm_id, 'name': pm_config.get('name')})
return payment_methods
def get_payment_method_ids(amount=None, currency='', country='', recurring=None, pm_ids=None):
payment_method_ids = []
for pm in get_payment_methods(amount=amount, currency=currency, country=country, recurring=recurring, pm_ids=pm_ids):
payment_method_ids.append(pm['id'])
return payment_method_ids
def get_payment_submethods(payment_method_id):
adapter = _adapter_for_payment_method(payment_method_id)
for payment_methods in adapter.get_payment_method_config():
for pmi in payment_methods.keys():
config = payment_methods[pmi]
return config.get('submethods')
| onepercentclub/onepercentclub-site | apps/cowry/factory.py | Python | bsd-3-clause | 3,526 |
/***********************************************************************************************************************
**
** Copyright (c) 2011, 2014 ETH Zurich
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
** following conditions are met:
**
** * Redistributions of source code must retain the above copyright notice, this list of conditions and the
** following disclaimer.
** * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
** following disclaimer in the documentation and/or other materials provided with the distribution.
** * Neither the name of the ETH Zurich 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.
**
**********************************************************************************************************************/
package envision.java.importtool;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.Stack;
import java.util.UUID;
import org.apache.commons.lang3.StringEscapeUtils;
/**
* The Node class represents an Envision model node that will be saved to the generated XML output.
*
* This single class is used to model all corresponding nodes in Envision. Therefore it can represent both leaf nodes
* and composite nodes such as lists or CompositeNode.
*/
public class Node {
// These are all the properties a node might have
private Node parent_;
private String tag_;
private String name_;
private UUID id_;
private String symbol_ = null; // only set this if this node defines a symbol (e.g. class or method definition)
private String text_ = null; // only set this if this is a terminal node and contains text (e.g. a literal)
private SizeEstimator.Size estimatedSize_ = null;
// These are used when writing the nodes to a stream
private static Stack<String> outputDir_ = new Stack<>();
private static Stack<PrintStream> out_ = new Stack<>();
private static OutputFormat format_ = OutputFormat.XML;
private static String suffix = null;
/**
* If true, sort children by label when writing encoding.
*/
private final boolean SORT_BY_LABEL = true;
public static boolean FORCE_SINGLE_PERSISTENT_UNIT = false;
/**
* This comparator is used to sort children lists by label.
* This is to ensure consistency between all methods used to produce Envision encodings.
*/
private static Comparator<Node> labelComparator = (Node n1, Node n2) -> {
try {
int l1 = Integer.parseInt(n1.name_);
int l2 = Integer.parseInt(n2.name_);
return l1 - l2;
} catch (NumberFormatException e) {
return n1.name_.compareTo(n2.name_);
}
};
private List<Node> children_ = new LinkedList<>();
// Getters and setters
public Node parent() { return parent_; }
public String tag() { return tag_; }
public String name() { return name_; }
public String symbol() { return symbol_; }
public int numChildren() { return children_.size(); }
public List<Node> children() { return children_;}
public SizeEstimator.Size estimatedSize() throws ConversionException
{
if (estimatedSize_ == null) estimatedSize_ = SizeEstimator.estimateSize(this);
return estimatedSize_;
}
public void setName(String name) { name_ = name; }
public void setName(int name) { name_ = Integer.toString(name); }
public void setDoubleValue(double val) { text_ = "D_" + Double.toString(val); }
public void setStringValue(String val) { text_ = "S_" + val; }
public void setLongValue(long val){ text_ = "I_" + Integer.toString((int)val); }
//TODO: In Envision, implement long integers
public boolean hasValue() { return text_ != null;}
public String valueAsText() { return text_; }
public boolean isPersistenceUnit()
{
return !FORCE_SINGLE_PERSISTENT_UNIT && NodeDescriptors.isPersistenceUnit(this);
}
public void setSymbol(String symbol) throws ConversionException
{
symbol_ = symbol;
child("name").setStringValue(symbol);
}
// Constructors
public Node(Node parent, String tag)
{
parent_ = parent;
tag_ = tag;
id_ = UUID.randomUUID();
NodeDescriptors.initialize(this, tag_);
}
public Node(Node parent, String tag, String name)
{
this(parent, tag);
name_ = name;
}
public Node(Node parent, String tag, int name)
{
this(parent, tag, Integer.toString(name));
}
// Other methods
public Node add(Node n)
{
n.parent_ = this;
children_.add(n);
return n;
}
public Node childOrNull(String name)
{
for (Node c : children_)
if (c.name_.equals(name)) return c;
return null;
}
public Node child(String name) throws ConversionException
{
for (Node c : children_)
{
if (c.name_.equals(name)) return c;
}
throw new ConversionException("Could not find child '" + name + "' in a node of type '" + tag_ + "'");
}
public Node setChild(String name, Node newNode) throws ConversionException
{
ListIterator<Node> it = children_.listIterator();
while(it.hasNext())
{
Node n = it.next();
if (n.name_.equals(name))
{
it.set(newNode);
newNode.parent_ = this;
newNode.setName(name);
return newNode;
}
}
throw new ConversionException("Could not find child '" + name + "' in a node of type '" + tag_ + "'");
}
public Node getModuleContext(String restOfQualifiedName) throws ConversionException
{
return getModuleContext(restOfQualifiedName.split("\\."));
}
public Node getModuleContext(String[] restOfQualifiedName) throws ConversionException
{
if (restOfQualifiedName.length == 0 )
return this;
String[] remaining = new String[restOfQualifiedName.length-1];
for (int i = 0; i <remaining.length; ++i) remaining[i] = restOfQualifiedName[i+1];
for (Node c : child("modules").children_)
{
if (c.symbol_ != null && c.symbol_.equals(restOfQualifiedName[0])) {
return c.getModuleContext(remaining);
}
}
return addSymbolNodeInList("modules", "Module", restOfQualifiedName[0]).getModuleContext(remaining);
}
public Node addSymbolNodeInList(String listName, String tag, String symbolName) throws ConversionException
{
for(Node child : children_)
{
if (child.name_.equals(listName))
{
Node newNode = child.add(new Node(child, tag, child.children_.size()));
newNode.setSymbol(symbolName);
return newNode;
}
}
throw new ConversionException("Symbol list '" + listName + "' is unknown in node of type '" + tag + "'");
}
public enum OutputFormat {XML, CLIPBOARD, SIMPLE};
// Save as XML to a stream in either file or clipboard format
public void renderRootTree(String dir, String projectName, OutputFormat format)
throws ConversionException, FileNotFoundException, UnsupportedEncodingException
{
outputDir_.push(dir);
format_ = format;
suffix = (format_ == OutputFormat.XML) ? ".xml" : "";
out_.push( new PrintStream(new File(outputDir_.peek() + projectName + suffix), "UTF-8") );
if (format_ == OutputFormat.XML || format_ == OutputFormat.CLIPBOARD)
out_.peek().println("<!DOCTYPE EnvisionFilePersistence>");
if (format_ == OutputFormat.CLIPBOARD) out_.peek().println("<clipboard>");
else setName(symbol_);
renderTree("", false);
if (format_ == OutputFormat.CLIPBOARD) out_.peek().println("</clipboard>");
}
private void renderTree(String indentation, boolean considerPersistenceUnits)
throws ConversionException, FileNotFoundException, UnsupportedEncodingException
{
if (SORT_BY_LABEL)
java.util.Collections.sort(children_, labelComparator);
if (considerPersistenceUnits && isPersistenceUnit() && format_ != OutputFormat.CLIPBOARD)
{
String relativeDirectoryPath = relativeDirectoryPathForPersistenceUnit();
String relativeFilePath = relativeDirectoryPath + symbol() + " {" + id_ + "}" + suffix;
String fullDirectoryPath = outputDir_.peek() + relativeDirectoryPath;
String fullFilePath = outputDir_.peek() + relativeFilePath;
// Create a new file for this persistence unit
if (format_ == OutputFormat.XML)
{
assert false; // "This code is actually invalid at this point, due to parent id handling");
out_.peek().print(indentation + "<persistencenewunit name=\"" + name_ + "\">S_{" + id_ + "}");
out_.peek().println("</persistencenewunit>");
}
else if (format_ == OutputFormat.SIMPLE)
{
out_.peek().print(indentation + name_ + " persistencenewunit {" + id_ +"}");
out_.peek().print(parent_ == null ? " {00000000-0000-0000-0000-000000000000}": " {" + parent_.id_ + "}");
out_.peek().println(". S_" + relativeFilePath );
}
(new File(fullDirectoryPath)).mkdirs(); // Make the directory if it doesn't exist.
out_.push( new PrintStream(new File(fullFilePath), "UTF-8") );
outputDir_.push(fullDirectoryPath);
if (format_ == OutputFormat.XML) out_.peek().println("<!DOCTYPE EnvisionFilePersistence>");
renderTree("", false);
outputDir_.pop();
out_.pop().close();
}
else
{
if (!children_.isEmpty() && text_ != null)
throw new ConversionException("Invalid node content. Node has both children and textual content.");
// This file is not a persistence unit
if (format_ == OutputFormat.XML || format_ == OutputFormat.CLIPBOARD)
{
out_.peek().print(indentation + "<" + tag_);
if (format_ == OutputFormat.XML)
{
out_.peek().print(" id=\"{" + id_ + "}\" parentId=\"");
assert parent_ != null || !considerPersistenceUnits;
out_.peek().print(parent_ == null ? "{00000000-0000-0000-0000-000000000000}\"": " {" + parent_.id_ + "}\"");
}
out_.peek().print(" name=\"" + name_ + "\"");
if (text_ != null) out_.peek().println(">" + StringEscapeUtils.escapeXml(text_) + "</" + tag_ + ">");
else if (children_.isEmpty()) out_.peek().println(" />");
else
{
out_.peek().println(">");
for(Node child : children_)
child.renderTree(indentation + "\t", true);
out_.peek().println(indentation + "</" + tag_ + ">");
}
}
else if (format_ == OutputFormat.SIMPLE)
{
// Do not output empty lists
/* Actually do because deleting the single element of a list confuses the merge.
* There is a note on this in Envision/misc/version-control.
if (children_.isEmpty() && (tag_.startsWith("TypedListOf") || tag_.endsWith("List")))
return;
*/
out_.peek().print(indentation + name_ + " " + tag_ + " {" + id_+"}");
assert parent_ != null || !considerPersistenceUnits;
out_.peek().print(parent_ == null ? " {00000000-0000-0000-0000-000000000000}": " {" + parent_.id_ + "}");
if (text_ != null) out_.peek().print(". " + escape(text_));
out_.peek().println();
for (Node child : children_)
child.renderTree(indentation + "\t", true);
}
}
}
String relativeDirectoryPathForPersistenceUnit()
{
Node ancestor = parent_;
while (ancestor != null && ancestor.symbol() == null)
ancestor = ancestor.parent_;
if (ancestor != null && ancestor.parent_ != null)
return ancestor.symbol() + "/";
return "";
}
String escape(String s)
{
s = s.replace("\\", "\\\\");
s = s.replace("\r", "\\r");
s = s.replace("\n", "\\n");
s = s.replace("\0", "\\0");
return s;
}
}
| lukedirtwalker/Envision | JavaImportTool/src/main/java/envision/java/importtool/Node.java | Java | bsd-3-clause | 12,291 |
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "adc.h"
#include "adc_chip.h"
#include "common.h"
#include "console.h"
#include "dma.h"
#include "hooks.h"
#include "registers.h"
#include "task.h"
#include "timer.h"
#include "util.h"
#define ADC_SINGLE_READ_TIMEOUT 3000 /* 3 ms */
#define SMPR1_EXPAND(v) ((v) | ((v) << 3) | ((v) << 6) | ((v) << 9) | \
((v) << 12) | ((v) << 15) | ((v) << 18) | \
((v) << 21))
#define SMPR2_EXPAND(v) (SMPR1_EXPAND(v) | ((v) << 24) | ((v) << 27))
/* Default ADC sample time = 13.5 cycles */
#ifndef CONFIG_ADC_SAMPLE_TIME
#define CONFIG_ADC_SAMPLE_TIME 2
#endif
struct mutex adc_lock;
static int watchdog_ain_id;
static const struct dma_option dma_adc_option = {
STM32_DMAC_ADC, (void *)&STM32_ADC_DR,
STM32_DMA_CCR_MSIZE_16_BIT | STM32_DMA_CCR_PSIZE_16_BIT,
};
static inline void adc_set_channel(int sample_id, int channel)
{
uint32_t mask, val;
volatile uint32_t *sqr_reg;
if (sample_id < 6) {
mask = 0x1f << (sample_id * 5);
val = channel << (sample_id * 5);
sqr_reg = &STM32_ADC_SQR3;
} else if (sample_id < 12) {
mask = 0x1f << ((sample_id - 6) * 5);
val = channel << ((sample_id - 6) * 5);
sqr_reg = &STM32_ADC_SQR2;
} else {
mask = 0x1f << ((sample_id - 12) * 5);
val = channel << ((sample_id - 12) * 5);
sqr_reg = &STM32_ADC_SQR1;
}
*sqr_reg = (*sqr_reg & ~mask) | val;
}
static void adc_configure(int ain_id)
{
/* Set ADC channel */
adc_set_channel(0, ain_id);
/* Disable DMA */
STM32_ADC_CR2 &= ~(1 << 8);
/* Disable scan mode */
STM32_ADC_CR1 &= ~(1 << 8);
}
static void __attribute__((unused)) adc_configure_all(void)
{
int i;
/* Set ADC channels */
STM32_ADC_SQR1 = (ADC_CH_COUNT - 1) << 20;
for (i = 0; i < ADC_CH_COUNT; ++i)
adc_set_channel(i, adc_channels[i].channel);
/* Enable DMA */
STM32_ADC_CR2 |= (1 << 8);
/* Enable scan mode */
STM32_ADC_CR1 |= (1 << 8);
}
static inline int adc_powered(void)
{
return STM32_ADC_CR2 & (1 << 0);
}
static inline int adc_conversion_ended(void)
{
return STM32_ADC_SR & (1 << 1);
}
static int adc_watchdog_enabled(void)
{
return STM32_ADC_CR1 & (1 << 23);
}
static int adc_enable_watchdog_no_lock(void)
{
/* Fail if watchdog already enabled */
if (adc_watchdog_enabled())
return EC_ERROR_UNKNOWN;
/* Set channel */
STM32_ADC_SQR3 = watchdog_ain_id;
STM32_ADC_SQR1 = 0;
STM32_ADC_CR1 = (STM32_ADC_CR1 & ~0x1f) | watchdog_ain_id;
/* Clear interrupt bit */
STM32_ADC_SR &= ~0x1;
/* AWDSGL=1, SCAN=1, AWDIE=1, AWDEN=1 */
STM32_ADC_CR1 |= (1 << 9) | (1 << 8) | (1 << 6) | (1 << 23);
/* Disable DMA */
STM32_ADC_CR2 &= ~(1 << 8);
/* CONT=1 */
STM32_ADC_CR2 |= (1 << 1);
/* Start conversion */
STM32_ADC_CR2 |= (1 << 0);
return EC_SUCCESS;
}
int adc_enable_watchdog(int ain_id, int high, int low)
{
int ret;
if (!adc_powered())
return EC_ERROR_UNKNOWN;
mutex_lock(&adc_lock);
watchdog_ain_id = ain_id;
/* Set thresholds */
STM32_ADC_HTR = high & 0xfff;
STM32_ADC_LTR = low & 0xfff;
ret = adc_enable_watchdog_no_lock();
mutex_unlock(&adc_lock);
return ret;
}
static int adc_disable_watchdog_no_lock(void)
{
/* Fail if watchdog not running */
if (!adc_watchdog_enabled())
return EC_ERROR_UNKNOWN;
/* AWDEN=0, AWDIE=0 */
STM32_ADC_CR1 &= ~(1 << 23) & ~(1 << 6);
/* CONT=0 */
STM32_ADC_CR2 &= ~(1 << 1);
return EC_SUCCESS;
}
int adc_disable_watchdog(void)
{
int ret;
if (!adc_powered())
return EC_ERROR_UNKNOWN;
mutex_lock(&adc_lock);
ret = adc_disable_watchdog_no_lock();
mutex_unlock(&adc_lock);
return ret;
}
int adc_read_channel(enum adc_channel ch)
{
const struct adc_t *adc = adc_channels + ch;
int value;
int restore_watchdog = 0;
timestamp_t deadline;
if (!adc_powered())
return EC_ERROR_UNKNOWN;
mutex_lock(&adc_lock);
if (adc_watchdog_enabled()) {
restore_watchdog = 1;
adc_disable_watchdog_no_lock();
}
adc_configure(adc->channel);
/* Clear EOC bit */
STM32_ADC_SR &= ~(1 << 1);
/* Start conversion */
STM32_ADC_CR2 |= (1 << 0); /* ADON */
/* Wait for EOC bit set */
deadline.val = get_time().val + ADC_SINGLE_READ_TIMEOUT;
value = ADC_READ_ERROR;
do {
if (adc_conversion_ended()) {
value = STM32_ADC_DR & ADC_READ_MAX;
break;
}
} while (!timestamp_expired(deadline, NULL));
if (restore_watchdog)
adc_enable_watchdog_no_lock();
mutex_unlock(&adc_lock);
return (value == ADC_READ_ERROR) ? ADC_READ_ERROR :
value * adc->factor_mul / adc->factor_div + adc->shift;
}
int adc_read_all_channels(int *data)
{
int i;
int16_t raw_data[ADC_CH_COUNT];
const struct adc_t *adc;
int restore_watchdog = 0;
int ret = EC_SUCCESS;
if (!adc_powered())
return EC_ERROR_UNKNOWN;
mutex_lock(&adc_lock);
if (adc_watchdog_enabled()) {
restore_watchdog = 1;
adc_disable_watchdog_no_lock();
}
adc_configure_all();
dma_clear_isr(STM32_DMAC_ADC);
dma_start_rx(&dma_adc_option, ADC_CH_COUNT, raw_data);
/* Start conversion */
STM32_ADC_CR2 |= (1 << 0); /* ADON */
if (dma_wait(STM32_DMAC_ADC)) {
ret = EC_ERROR_UNKNOWN;
goto exit_all_channels;
}
for (i = 0; i < ADC_CH_COUNT; ++i) {
adc = adc_channels + i;
data[i] = raw_data[i] * adc->factor_mul / adc->factor_div +
adc->shift;
}
exit_all_channels:
dma_disable(STM32_DMAC_ADC);
if (restore_watchdog)
adc_enable_watchdog_no_lock();
mutex_unlock(&adc_lock);
return ret;
}
static void adc_init(void)
{
/*
* Enable ADC clock.
* APB2 clock is 16MHz. ADC clock prescaler is /2.
* So the ADC clock is 8MHz.
*/
STM32_RCC_APB2ENR |= (1 << 9);
/*
* ADC clock is divided with respect to AHB, so no delay needed
* here. If ADC clock is the same as AHB, a dummy read on ADC
* register is needed here.
*/
if (!adc_powered()) {
/* Power on ADC module */
STM32_ADC_CR2 |= (1 << 0); /* ADON */
/* Reset calibration */
STM32_ADC_CR2 |= (1 << 3); /* RSTCAL */
while (STM32_ADC_CR2 & (1 << 3))
;
/* A/D Calibrate */
STM32_ADC_CR2 |= (1 << 2); /* CAL */
while (STM32_ADC_CR2 & (1 << 2))
;
}
/* Set right alignment */
STM32_ADC_CR2 &= ~(1 << 11);
/* Set sample time of all channels */
STM32_ADC_SMPR1 = SMPR1_EXPAND(CONFIG_ADC_SAMPLE_TIME);
STM32_ADC_SMPR2 = SMPR2_EXPAND(CONFIG_ADC_SAMPLE_TIME);
}
DECLARE_HOOK(HOOK_INIT, adc_init, HOOK_PRIO_DEFAULT);
| md5555/ec | chip/stm32/adc-stm32f3.c | C | bsd-3-clause | 6,390 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for /home/gerard/sites/modules.w.doctrine/modules.zendframework.com/vendor/ZF2/library/Zend/Loader/AutoloaderFactory.php</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">/home/gerard/sites/modules.w.doctrine/modules.zendframework.com</a> <span class="divider">/</span></li>
<li><a href="vendor.html">vendor</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2.html">ZF2</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library.html">library</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend.html">Zend</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend_Loader.html">Loader</a> <span class="divider">/</span></li>
<li class="active">AutoloaderFactory.php</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="10"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
<td colspan="4"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="danger">Total</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 7</div></td>
<td class="danger small"><abbr title="Change Risk Anti-Patterns (CRAP) Index">CRAP</abbr></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 10.45%;"></div>
</div>
</td>
<td class="danger small"><div align="right">10.45%</div></td>
<td class="danger small"><div align="right">7 / 67</div></td>
</tr>
<tr>
<td class="danger">AutoloaderFactory</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 7</div></td>
<td class="danger small">473.86</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 10.45%;"></div>
</div>
</td>
<td class="danger small"><div align="right">10.45%</div></td>
<td class="danger small"><div align="right">7 / 67</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#67">factory($options = null)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">71.60</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 20.59%;"></div>
</div>
</td>
<td class="danger small"><div align="right">20.59%</div></td>
<td class="danger small"><div align="right">7 / 34</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#124">getRegisteredAutoloaders()</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">2</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#136">getRegisteredAutoloader($class)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">6</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 4</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#151">unregisterAutoloaders()</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">6</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#165">unregisterAutoloader($autoloaderClass)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">6</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 6</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#186">getStandardAutoloader()</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">12</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 9</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#213">isSubclassOf($className, $type)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">20</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 8</div></td>
</tr>
</tbody>
</table>
<table class="table table-borderless table-condensed">
<tbody>
<tr><td><div align="right"><a name="1"></a><a href="#1">1</a></div></td><td class="codeLine"><?php</td></tr>
<tr><td><div align="right"><a name="2"></a><a href="#2">2</a></div></td><td class="codeLine">/**</td></tr>
<tr><td><div align="right"><a name="3"></a><a href="#3">3</a></div></td><td class="codeLine"> * Zend Framework (http://framework.zend.com/)</td></tr>
<tr><td><div align="right"><a name="4"></a><a href="#4">4</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="5"></a><a href="#5">5</a></div></td><td class="codeLine"> * @link http://github.com/zendframework/zf2 for the canonical source repository</td></tr>
<tr><td><div align="right"><a name="6"></a><a href="#6">6</a></div></td><td class="codeLine"> * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)</td></tr>
<tr><td><div align="right"><a name="7"></a><a href="#7">7</a></div></td><td class="codeLine"> * @license http://framework.zend.com/license/new-bsd New BSD License</td></tr>
<tr><td><div align="right"><a name="8"></a><a href="#8">8</a></div></td><td class="codeLine"> * @package Zend_Loader</td></tr>
<tr><td><div align="right"><a name="9"></a><a href="#9">9</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="10"></a><a href="#10">10</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="11"></a><a href="#11">11</a></div></td><td class="codeLine">namespace Zend\Loader;</td></tr>
<tr><td><div align="right"><a name="12"></a><a href="#12">12</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="13"></a><a href="#13">13</a></div></td><td class="codeLine">use ReflectionClass;</td></tr>
<tr><td><div align="right"><a name="14"></a><a href="#14">14</a></div></td><td class="codeLine">use Traversable;</td></tr>
<tr><td><div align="right"><a name="15"></a><a href="#15">15</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="16"></a><a href="#16">16</a></div></td><td class="codeLine">require_once __DIR__ . '/SplAutoloader.php';</td></tr>
<tr><td><div align="right"><a name="17"></a><a href="#17">17</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="18"></a><a href="#18">18</a></div></td><td class="codeLine">if (class_exists('Zend\Loader\AutoloaderFactory')) {</td></tr>
<tr><td><div align="right"><a name="19"></a><a href="#19">19</a></div></td><td class="codeLine"> return;</td></tr>
<tr><td><div align="right"><a name="20"></a><a href="#20">20</a></div></td><td class="codeLine">}</td></tr>
<tr><td><div align="right"><a name="21"></a><a href="#21">21</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="22"></a><a href="#22">22</a></div></td><td class="codeLine">/**</td></tr>
<tr><td><div align="right"><a name="23"></a><a href="#23">23</a></div></td><td class="codeLine"> * @category Zend</td></tr>
<tr><td><div align="right"><a name="24"></a><a href="#24">24</a></div></td><td class="codeLine"> * @package Zend_Loader</td></tr>
<tr><td><div align="right"><a name="25"></a><a href="#25">25</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="26"></a><a href="#26">26</a></div></td><td class="codeLine">abstract class AutoloaderFactory</td></tr>
<tr><td><div align="right"><a name="27"></a><a href="#27">27</a></div></td><td class="codeLine">{</td></tr>
<tr><td><div align="right"><a name="28"></a><a href="#28">28</a></div></td><td class="codeLine"> const STANDARD_AUTOLOADER = 'Zend\Loader\StandardAutoloader';</td></tr>
<tr><td><div align="right"><a name="29"></a><a href="#29">29</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="30"></a><a href="#30">30</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="31"></a><a href="#31">31</a></div></td><td class="codeLine"> * @var array All autoloaders registered using the factory</td></tr>
<tr><td><div align="right"><a name="32"></a><a href="#32">32</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="33"></a><a href="#33">33</a></div></td><td class="codeLine"> protected static $loaders = array();</td></tr>
<tr><td><div align="right"><a name="34"></a><a href="#34">34</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="35"></a><a href="#35">35</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="36"></a><a href="#36">36</a></div></td><td class="codeLine"> * @var StandardAutoloader StandardAutoloader instance for resolving</td></tr>
<tr><td><div align="right"><a name="37"></a><a href="#37">37</a></div></td><td class="codeLine"> * autoloader classes via the include_path</td></tr>
<tr><td><div align="right"><a name="38"></a><a href="#38">38</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="39"></a><a href="#39">39</a></div></td><td class="codeLine"> protected static $standardAutoloader;</td></tr>
<tr><td><div align="right"><a name="40"></a><a href="#40">40</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="41"></a><a href="#41">41</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="42"></a><a href="#42">42</a></div></td><td class="codeLine"> * Factory for autoloaders</td></tr>
<tr><td><div align="right"><a name="43"></a><a href="#43">43</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="44"></a><a href="#44">44</a></div></td><td class="codeLine"> * Options should be an array or Traversable object of the following structure:</td></tr>
<tr><td><div align="right"><a name="45"></a><a href="#45">45</a></div></td><td class="codeLine"> * <code></td></tr>
<tr><td><div align="right"><a name="46"></a><a href="#46">46</a></div></td><td class="codeLine"> * array(</td></tr>
<tr><td><div align="right"><a name="47"></a><a href="#47">47</a></div></td><td class="codeLine"> * '<autoloader class name>' => $autoloaderOptions,</td></tr>
<tr><td><div align="right"><a name="48"></a><a href="#48">48</a></div></td><td class="codeLine"> * )</td></tr>
<tr><td><div align="right"><a name="49"></a><a href="#49">49</a></div></td><td class="codeLine"> * </code></td></tr>
<tr><td><div align="right"><a name="50"></a><a href="#50">50</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="51"></a><a href="#51">51</a></div></td><td class="codeLine"> * The factory will then loop through and instantiate each autoloader with</td></tr>
<tr><td><div align="right"><a name="52"></a><a href="#52">52</a></div></td><td class="codeLine"> * the specified options, and register each with the spl_autoloader.</td></tr>
<tr><td><div align="right"><a name="53"></a><a href="#53">53</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="54"></a><a href="#54">54</a></div></td><td class="codeLine"> * You may retrieve the concrete autoloader instances later using</td></tr>
<tr><td><div align="right"><a name="55"></a><a href="#55">55</a></div></td><td class="codeLine"> * {@link getRegisteredAutoloaders()}.</td></tr>
<tr><td><div align="right"><a name="56"></a><a href="#56">56</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="57"></a><a href="#57">57</a></div></td><td class="codeLine"> * Note that the class names must be resolvable on the include_path or via</td></tr>
<tr><td><div align="right"><a name="58"></a><a href="#58">58</a></div></td><td class="codeLine"> * the Zend library, using PSR-0 rules (unless the class has already been</td></tr>
<tr><td><div align="right"><a name="59"></a><a href="#59">59</a></div></td><td class="codeLine"> * loaded).</td></tr>
<tr><td><div align="right"><a name="60"></a><a href="#60">60</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="61"></a><a href="#61">61</a></div></td><td class="codeLine"> * @param array|Traversable $options (optional) options to use. Defaults to Zend\Loader\StandardAutoloader</td></tr>
<tr><td><div align="right"><a name="62"></a><a href="#62">62</a></div></td><td class="codeLine"> * @return void</td></tr>
<tr><td><div align="right"><a name="63"></a><a href="#63">63</a></div></td><td class="codeLine"> * @throws Exception\InvalidArgumentException for invalid options</td></tr>
<tr><td><div align="right"><a name="64"></a><a href="#64">64</a></div></td><td class="codeLine"> * @throws Exception\InvalidArgumentException for unloadable autoloader classes</td></tr>
<tr><td><div align="right"><a name="65"></a><a href="#65">65</a></div></td><td class="codeLine"> * @throws Exception\DomainException for autoloader classes not implementing SplAutoloader</td></tr>
<tr><td><div align="right"><a name="66"></a><a href="#66">66</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="67"></a><a href="#67">67</a></div></td><td class="codeLine"> public static function factory($options = null)</td></tr>
<tr><td><div align="right"><a name="68"></a><a href="#68">68</a></div></td><td class="codeLine"> {</td></tr>
<tr class="success popin" data-title="7 tests cover line 69" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="69"></a><a href="#69">69</a></div></td><td class="codeLine"> if (null === $options) {</td></tr>
<tr class="danger"><td><div align="right"><a name="70"></a><a href="#70">70</a></div></td><td class="codeLine"> if (!isset(static::$loaders[static::STANDARD_AUTOLOADER])) {</td></tr>
<tr class="danger"><td><div align="right"><a name="71"></a><a href="#71">71</a></div></td><td class="codeLine"> $autoloader = static::getStandardAutoloader();</td></tr>
<tr class="danger"><td><div align="right"><a name="72"></a><a href="#72">72</a></div></td><td class="codeLine"> $autoloader->register();</td></tr>
<tr class="danger"><td><div align="right"><a name="73"></a><a href="#73">73</a></div></td><td class="codeLine"> static::$loaders[static::STANDARD_AUTOLOADER] = $autoloader;</td></tr>
<tr class="danger"><td><div align="right"><a name="74"></a><a href="#74">74</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="75"></a><a href="#75">75</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="76"></a><a href="#76">76</a></div></td><td class="codeLine"> // Return so we don't hit the next check's exception (we're done here anyway)</td></tr>
<tr class="danger"><td><div align="right"><a name="77"></a><a href="#77">77</a></div></td><td class="codeLine"> return;</td></tr>
<tr><td><div align="right"><a name="78"></a><a href="#78">78</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="79"></a><a href="#79">79</a></div></td><td class="codeLine"></td></tr>
<tr class="success popin" data-title="7 tests cover line 80" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="80"></a><a href="#80">80</a></div></td><td class="codeLine"> if (!is_array($options) && !($options instanceof Traversable)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="81"></a><a href="#81">81</a></div></td><td class="codeLine"> require_once __DIR__ . '/Exception/InvalidArgumentException.php';</td></tr>
<tr class="danger"><td><div align="right"><a name="82"></a><a href="#82">82</a></div></td><td class="codeLine"> throw new Exception\InvalidArgumentException(</td></tr>
<tr><td><div align="right"><a name="83"></a><a href="#83">83</a></div></td><td class="codeLine"> 'Options provided must be an array or Traversable'</td></tr>
<tr class="danger"><td><div align="right"><a name="84"></a><a href="#84">84</a></div></td><td class="codeLine"> );</td></tr>
<tr><td><div align="right"><a name="85"></a><a href="#85">85</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="86"></a><a href="#86">86</a></div></td><td class="codeLine"></td></tr>
<tr class="success popin" data-title="7 tests cover line 87" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="87"></a><a href="#87">87</a></div></td><td class="codeLine"> foreach ($options as $class => $options) {</td></tr>
<tr class="success popin" data-title="7 tests cover line 88" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="88"></a><a href="#88">88</a></div></td><td class="codeLine"> if (!isset(static::$loaders[$class])) {</td></tr>
<tr class="danger"><td><div align="right"><a name="89"></a><a href="#89">89</a></div></td><td class="codeLine"> $autoloader = static::getStandardAutoloader();</td></tr>
<tr class="danger"><td><div align="right"><a name="90"></a><a href="#90">90</a></div></td><td class="codeLine"> if (!class_exists($class) && !$autoloader->autoload($class)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="91"></a><a href="#91">91</a></div></td><td class="codeLine"> require_once 'Exception/InvalidArgumentException.php';</td></tr>
<tr class="danger"><td><div align="right"><a name="92"></a><a href="#92">92</a></div></td><td class="codeLine"> throw new Exception\InvalidArgumentException(</td></tr>
<tr class="danger"><td><div align="right"><a name="93"></a><a href="#93">93</a></div></td><td class="codeLine"> sprintf('Autoloader class "%s" not loaded', $class)</td></tr>
<tr class="danger"><td><div align="right"><a name="94"></a><a href="#94">94</a></div></td><td class="codeLine"> );</td></tr>
<tr><td><div align="right"><a name="95"></a><a href="#95">95</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="96"></a><a href="#96">96</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="97"></a><a href="#97">97</a></div></td><td class="codeLine"> if (!self::isSubclassOf($class, 'Zend\Loader\SplAutoloader')) {</td></tr>
<tr class="danger"><td><div align="right"><a name="98"></a><a href="#98">98</a></div></td><td class="codeLine"> require_once 'Exception/InvalidArgumentException.php';</td></tr>
<tr class="danger"><td><div align="right"><a name="99"></a><a href="#99">99</a></div></td><td class="codeLine"> throw new Exception\InvalidArgumentException(</td></tr>
<tr class="danger"><td><div align="right"><a name="100"></a><a href="#100">100</a></div></td><td class="codeLine"> sprintf('Autoloader class %s must implement Zend\\Loader\\SplAutoloader', $class)</td></tr>
<tr class="danger"><td><div align="right"><a name="101"></a><a href="#101">101</a></div></td><td class="codeLine"> );</td></tr>
<tr><td><div align="right"><a name="102"></a><a href="#102">102</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="103"></a><a href="#103">103</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="104"></a><a href="#104">104</a></div></td><td class="codeLine"> if ($class === static::STANDARD_AUTOLOADER) {</td></tr>
<tr class="danger"><td><div align="right"><a name="105"></a><a href="#105">105</a></div></td><td class="codeLine"> $autoloader->setOptions($options);</td></tr>
<tr class="danger"><td><div align="right"><a name="106"></a><a href="#106">106</a></div></td><td class="codeLine"> } else {</td></tr>
<tr class="danger"><td><div align="right"><a name="107"></a><a href="#107">107</a></div></td><td class="codeLine"> $autoloader = new $class($options);</td></tr>
<tr><td><div align="right"><a name="108"></a><a href="#108">108</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="109"></a><a href="#109">109</a></div></td><td class="codeLine"> $autoloader->register();</td></tr>
<tr class="danger"><td><div align="right"><a name="110"></a><a href="#110">110</a></div></td><td class="codeLine"> static::$loaders[$class] = $autoloader;</td></tr>
<tr class="danger"><td><div align="right"><a name="111"></a><a href="#111">111</a></div></td><td class="codeLine"> } else {</td></tr>
<tr class="success popin" data-title="7 tests cover line 112" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="112"></a><a href="#112">112</a></div></td><td class="codeLine"> static::$loaders[$class]->setOptions($options);</td></tr>
<tr><td><div align="right"><a name="113"></a><a href="#113">113</a></div></td><td class="codeLine"> }</td></tr>
<tr class="success popin" data-title="7 tests cover line 114" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="114"></a><a href="#114">114</a></div></td><td class="codeLine"> }</td></tr>
<tr class="success popin" data-title="7 tests cover line 115" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="115"></a><a href="#115">115</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="116"></a><a href="#116">116</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="117"></a><a href="#117">117</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="118"></a><a href="#118">118</a></div></td><td class="codeLine"> * Get an list of all autoloaders registered with the factory</td></tr>
<tr><td><div align="right"><a name="119"></a><a href="#119">119</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="120"></a><a href="#120">120</a></div></td><td class="codeLine"> * Returns an array of autoloader instances.</td></tr>
<tr><td><div align="right"><a name="121"></a><a href="#121">121</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="122"></a><a href="#122">122</a></div></td><td class="codeLine"> * @return array</td></tr>
<tr><td><div align="right"><a name="123"></a><a href="#123">123</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="124"></a><a href="#124">124</a></div></td><td class="codeLine"> public static function getRegisteredAutoloaders()</td></tr>
<tr><td><div align="right"><a name="125"></a><a href="#125">125</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="126"></a><a href="#126">126</a></div></td><td class="codeLine"> return static::$loaders;</td></tr>
<tr><td><div align="right"><a name="127"></a><a href="#127">127</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="128"></a><a href="#128">128</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="129"></a><a href="#129">129</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="130"></a><a href="#130">130</a></div></td><td class="codeLine"> * Retrieves an autoloader by class name</td></tr>
<tr><td><div align="right"><a name="131"></a><a href="#131">131</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="132"></a><a href="#132">132</a></div></td><td class="codeLine"> * @param string $class</td></tr>
<tr><td><div align="right"><a name="133"></a><a href="#133">133</a></div></td><td class="codeLine"> * @return SplAutoloader</td></tr>
<tr><td><div align="right"><a name="134"></a><a href="#134">134</a></div></td><td class="codeLine"> * @throws Exception\InvalidArgumentException for non-registered class</td></tr>
<tr><td><div align="right"><a name="135"></a><a href="#135">135</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="136"></a><a href="#136">136</a></div></td><td class="codeLine"> public static function getRegisteredAutoloader($class)</td></tr>
<tr><td><div align="right"><a name="137"></a><a href="#137">137</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="138"></a><a href="#138">138</a></div></td><td class="codeLine"> if (!isset(static::$loaders[$class])) {</td></tr>
<tr class="danger"><td><div align="right"><a name="139"></a><a href="#139">139</a></div></td><td class="codeLine"> require_once 'Exception/InvalidArgumentException.php';</td></tr>
<tr class="danger"><td><div align="right"><a name="140"></a><a href="#140">140</a></div></td><td class="codeLine"> throw new Exception\InvalidArgumentException(sprintf('Autoloader class "%s" not loaded', $class));</td></tr>
<tr><td><div align="right"><a name="141"></a><a href="#141">141</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="142"></a><a href="#142">142</a></div></td><td class="codeLine"> return static::$loaders[$class];</td></tr>
<tr><td><div align="right"><a name="143"></a><a href="#143">143</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="144"></a><a href="#144">144</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="145"></a><a href="#145">145</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="146"></a><a href="#146">146</a></div></td><td class="codeLine"> * Unregisters all autoloaders that have been registered via the factory.</td></tr>
<tr><td><div align="right"><a name="147"></a><a href="#147">147</a></div></td><td class="codeLine"> * This will NOT unregister autoloaders registered outside of the fctory.</td></tr>
<tr><td><div align="right"><a name="148"></a><a href="#148">148</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="149"></a><a href="#149">149</a></div></td><td class="codeLine"> * @return void</td></tr>
<tr><td><div align="right"><a name="150"></a><a href="#150">150</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="151"></a><a href="#151">151</a></div></td><td class="codeLine"> public static function unregisterAutoloaders()</td></tr>
<tr><td><div align="right"><a name="152"></a><a href="#152">152</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="153"></a><a href="#153">153</a></div></td><td class="codeLine"> foreach (static::getRegisteredAutoloaders() as $class => $autoloader) {</td></tr>
<tr class="danger"><td><div align="right"><a name="154"></a><a href="#154">154</a></div></td><td class="codeLine"> spl_autoload_unregister(array($autoloader, 'autoload'));</td></tr>
<tr class="danger"><td><div align="right"><a name="155"></a><a href="#155">155</a></div></td><td class="codeLine"> unset(static::$loaders[$class]);</td></tr>
<tr class="danger"><td><div align="right"><a name="156"></a><a href="#156">156</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="157"></a><a href="#157">157</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="158"></a><a href="#158">158</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="159"></a><a href="#159">159</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="160"></a><a href="#160">160</a></div></td><td class="codeLine"> * Unregister a single autoloader by class name</td></tr>
<tr><td><div align="right"><a name="161"></a><a href="#161">161</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="162"></a><a href="#162">162</a></div></td><td class="codeLine"> * @param string $autoloaderClass</td></tr>
<tr><td><div align="right"><a name="163"></a><a href="#163">163</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="164"></a><a href="#164">164</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="165"></a><a href="#165">165</a></div></td><td class="codeLine"> public static function unregisterAutoloader($autoloaderClass)</td></tr>
<tr><td><div align="right"><a name="166"></a><a href="#166">166</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="167"></a><a href="#167">167</a></div></td><td class="codeLine"> if (!isset(static::$loaders[$autoloaderClass])) {</td></tr>
<tr class="danger"><td><div align="right"><a name="168"></a><a href="#168">168</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="169"></a><a href="#169">169</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="170"></a><a href="#170">170</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="171"></a><a href="#171">171</a></div></td><td class="codeLine"> $autoloader = static::$loaders[$autoloaderClass];</td></tr>
<tr class="danger"><td><div align="right"><a name="172"></a><a href="#172">172</a></div></td><td class="codeLine"> spl_autoload_unregister(array($autoloader, 'autoload'));</td></tr>
<tr class="danger"><td><div align="right"><a name="173"></a><a href="#173">173</a></div></td><td class="codeLine"> unset(static::$loaders[$autoloaderClass]);</td></tr>
<tr class="danger"><td><div align="right"><a name="174"></a><a href="#174">174</a></div></td><td class="codeLine"> return true;</td></tr>
<tr><td><div align="right"><a name="175"></a><a href="#175">175</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="176"></a><a href="#176">176</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="177"></a><a href="#177">177</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="178"></a><a href="#178">178</a></div></td><td class="codeLine"> * Get an instance of the standard autoloader</td></tr>
<tr><td><div align="right"><a name="179"></a><a href="#179">179</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="180"></a><a href="#180">180</a></div></td><td class="codeLine"> * Used to attempt to resolve autoloader classes, using the</td></tr>
<tr><td><div align="right"><a name="181"></a><a href="#181">181</a></div></td><td class="codeLine"> * StandardAutoloader. The instance is marked as a fallback autoloader, to</td></tr>
<tr><td><div align="right"><a name="182"></a><a href="#182">182</a></div></td><td class="codeLine"> * allow resolving autoloaders not under the "Zend" namespace.</td></tr>
<tr><td><div align="right"><a name="183"></a><a href="#183">183</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="184"></a><a href="#184">184</a></div></td><td class="codeLine"> * @return SplAutoloader</td></tr>
<tr><td><div align="right"><a name="185"></a><a href="#185">185</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="186"></a><a href="#186">186</a></div></td><td class="codeLine"> protected static function getStandardAutoloader()</td></tr>
<tr><td><div align="right"><a name="187"></a><a href="#187">187</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="188"></a><a href="#188">188</a></div></td><td class="codeLine"> if (null !== static::$standardAutoloader) {</td></tr>
<tr class="danger"><td><div align="right"><a name="189"></a><a href="#189">189</a></div></td><td class="codeLine"> return static::$standardAutoloader;</td></tr>
<tr><td><div align="right"><a name="190"></a><a href="#190">190</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="191"></a><a href="#191">191</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="192"></a><a href="#192">192</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="193"></a><a href="#193">193</a></div></td><td class="codeLine"> if (!class_exists(static::STANDARD_AUTOLOADER)) {</td></tr>
<tr><td><div align="right"><a name="194"></a><a href="#194">194</a></div></td><td class="codeLine"> // Extract the filename from the classname</td></tr>
<tr class="danger"><td><div align="right"><a name="195"></a><a href="#195">195</a></div></td><td class="codeLine"> $stdAutoloader = substr(strrchr(static::STANDARD_AUTOLOADER, '\\'), 1);</td></tr>
<tr class="danger"><td><div align="right"><a name="196"></a><a href="#196">196</a></div></td><td class="codeLine"> require_once __DIR__ . "/$stdAutoloader.php";</td></tr>
<tr class="danger"><td><div align="right"><a name="197"></a><a href="#197">197</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="198"></a><a href="#198">198</a></div></td><td class="codeLine"> $loader = new StandardAutoloader();</td></tr>
<tr class="danger"><td><div align="right"><a name="199"></a><a href="#199">199</a></div></td><td class="codeLine"> static::$standardAutoloader = $loader;</td></tr>
<tr class="danger"><td><div align="right"><a name="200"></a><a href="#200">200</a></div></td><td class="codeLine"> return static::$standardAutoloader;</td></tr>
<tr><td><div align="right"><a name="201"></a><a href="#201">201</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="202"></a><a href="#202">202</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="203"></a><a href="#203">203</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="204"></a><a href="#204">204</a></div></td><td class="codeLine"> * Checks if the object has this class as one of its parents</td></tr>
<tr><td><div align="right"><a name="205"></a><a href="#205">205</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="206"></a><a href="#206">206</a></div></td><td class="codeLine"> * @see https://bugs.php.net/bug.php?id=53727</td></tr>
<tr><td><div align="right"><a name="207"></a><a href="#207">207</a></div></td><td class="codeLine"> * @see https://github.com/zendframework/zf2/pull/1807</td></tr>
<tr><td><div align="right"><a name="208"></a><a href="#208">208</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="209"></a><a href="#209">209</a></div></td><td class="codeLine"> * @param string $className</td></tr>
<tr><td><div align="right"><a name="210"></a><a href="#210">210</a></div></td><td class="codeLine"> * @param string $type</td></tr>
<tr><td><div align="right"><a name="211"></a><a href="#211">211</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="212"></a><a href="#212">212</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="213"></a><a href="#213">213</a></div></td><td class="codeLine"> protected static function isSubclassOf($className, $type)</td></tr>
<tr><td><div align="right"><a name="214"></a><a href="#214">214</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="215"></a><a href="#215">215</a></div></td><td class="codeLine"> if (is_subclass_of($className, $type)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="216"></a><a href="#216">216</a></div></td><td class="codeLine"> return true;</td></tr>
<tr><td><div align="right"><a name="217"></a><a href="#217">217</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="218"></a><a href="#218">218</a></div></td><td class="codeLine"> if (version_compare(PHP_VERSION, '5.3.7', '>=')) {</td></tr>
<tr class="danger"><td><div align="right"><a name="219"></a><a href="#219">219</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="220"></a><a href="#220">220</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="221"></a><a href="#221">221</a></div></td><td class="codeLine"> if (!interface_exists($type)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="222"></a><a href="#222">222</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="223"></a><a href="#223">223</a></div></td><td class="codeLine"> }</td></tr>
<tr class="danger"><td><div align="right"><a name="224"></a><a href="#224">224</a></div></td><td class="codeLine"> $r = new ReflectionClass($className);</td></tr>
<tr class="danger"><td><div align="right"><a name="225"></a><a href="#225">225</a></div></td><td class="codeLine"> return $r->implementsInterface($type);</td></tr>
<tr><td><div align="right"><a name="226"></a><a href="#226">226</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="227"></a><a href="#227">227</a></div></td><td class="codeLine">}</td></tr>
</tbody>
</table>
<footer>
<h4>Legend</h4>
<p>
<span class="success"><strong>Executed</strong></span>
<span class="danger"><strong>Not Executed</strong></span>
<span class="warning"><strong>Dead Code</strong></span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.3.10-1ubuntu3.8</a> and <a href="http://phpunit.de/">PHPUnit 3.7.27</a> at Sat Oct 12 3:31:18 CEST 2013.</small>
</p>
</footer>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">$('.popin').popover({trigger: 'hover'});</script>
</body>
</html>
| gerardoloan/moduleswdoctrine | module/ZfModule/test/clover-html/vendor_ZF2_library_Zend_Loader_AutoloaderFactory.php.html | HTML | bsd-3-clause | 49,782 |
/*******************************************************************************
* Caleydo - Visualization for Molecular Biology - http://caleydo.org
* Copyright (c) The Caleydo Team. All rights reserved.
* Licensed under the new BSD license, available at http://caleydo.org/license
******************************************************************************/
package org.caleydo.view.tourguide.spi.algorithm;
import java.util.List;
import java.util.Set;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* similar to {@link IGroupAlgorithm} but this time for a whole stratification consisting of a a list of groups
*
* @author Samuel Gratzl
*
*/
public interface IStratificationAlgorithm extends IAlgorithm{
/**
* computes the score between the two stratifications identified by their collection of group sets
*
* @param a
* @param b
* @return
*/
float compute(List<Set<Integer>> a, List<Set<Integer>> b, IProgressMonitor monitor);
/**
* returns the abbreviation of this algorithm
*
* @return
*/
@Override
String getAbbreviation();
@Override
String getDescription();
}
| Caleydo/caleydo | org.caleydo.view.tourguide/src/main/java/org/caleydo/view/tourguide/spi/algorithm/IStratificationAlgorithm.java | Java | bsd-3-clause | 1,118 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE126_Buffer_Overread__char_declare_memcpy_52c.c
Label Definition File: CWE126_Buffer_Overread.stack.label.xml
Template File: sources-sink-52c.tmpl.c
*/
/*
* @description
* CWE: 126 Buffer Over-read
* BadSource: Set data pointer to a small buffer
* GoodSource: Set data pointer to a large buffer
* Sink: memcpy
* BadSink : Copy data to string using memcpy
* Flow Variant: 52 Data flow: data passed as an argument from one function to another to another in three different source files
*
* */
#include "std_testcase.h"
#include <wchar.h>
/* all the sinks are the same, we just want to know where the hit originated if a tool flags one */
#ifndef OMITBAD
void CWE126_Buffer_Overread__char_declare_memcpy_52c_badSink(char * data)
{
{
char dest[100];
memset(dest, 'C', 100-1);
dest[100-1] = '\0'; /* null terminate */
/* POTENTIAL FLAW: using memcpy with the length of the dest where data
* could be smaller than dest causing buffer overread */
memcpy(dest, data, strlen(dest)*sizeof(char));
dest[100-1] = '\0';
printLine(dest);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void CWE126_Buffer_Overread__char_declare_memcpy_52c_goodG2BSink(char * data)
{
{
char dest[100];
memset(dest, 'C', 100-1);
dest[100-1] = '\0'; /* null terminate */
/* POTENTIAL FLAW: using memcpy with the length of the dest where data
* could be smaller than dest causing buffer overread */
memcpy(dest, data, strlen(dest)*sizeof(char));
dest[100-1] = '\0';
printLine(dest);
}
}
#endif /* OMITGOOD */
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE126_Buffer_Overread/s01/CWE126_Buffer_Overread__char_declare_memcpy_52c.c | C | bsd-3-clause | 1,793 |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/declarative_content/content_action.h"
#include <map>
#include "base/lazy_instance.h"
#include "base/strings/stringprintf.h"
#include "base/values.h"
#include "chrome/browser/extensions/api/declarative_content/content_constants.h"
#include "chrome/browser/extensions/api/extension_action/extension_action_api.h"
#include "chrome/browser/extensions/declarative_user_script_manager.h"
#include "chrome/browser/extensions/extension_action.h"
#include "chrome/browser/extensions/extension_action_manager.h"
#include "chrome/browser/extensions/extension_tab_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/session_tab_helper.h"
#include "content/public/browser/invalidate_type.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_messages.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
namespace extensions {
namespace keys = declarative_content_constants;
namespace {
// Error messages.
const char kInvalidIconDictionary[] =
"Icon dictionary must be of the form {\"19\": ImageData1, \"38\": "
"ImageData2}";
const char kInvalidInstanceTypeError[] =
"An action has an invalid instanceType: %s";
const char kMissingParameter[] = "Missing parameter is required: %s";
const char kNoPageAction[] =
"Can't use declarativeContent.ShowPageAction without a page action";
const char kNoPageOrBrowserAction[] =
"Can't use declarativeContent.SetIcon without a page or browser action";
#define INPUT_FORMAT_VALIDATE(test) do { \
if (!(test)) { \
*bad_message = true; \
return false; \
} \
} while (0)
//
// The following are concrete actions.
//
// Action that instructs to show an extension's page action.
class ShowPageAction : public ContentAction {
public:
ShowPageAction() {}
static scoped_refptr<ContentAction> Create(
content::BrowserContext* browser_context,
const Extension* extension,
const base::DictionaryValue* dict,
std::string* error,
bool* bad_message) {
// We can't show a page action if the extension doesn't have one.
if (ActionInfo::GetPageActionInfo(extension) == NULL) {
*error = kNoPageAction;
return scoped_refptr<ContentAction>();
}
return scoped_refptr<ContentAction>(new ShowPageAction);
}
// Implementation of ContentAction:
Type GetType() const override { return ACTION_SHOW_PAGE_ACTION; }
void Apply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {
ExtensionAction* action =
GetPageAction(apply_info->browser_context, extension_id);
action->DeclarativeShow(ExtensionTabUtil::GetTabId(apply_info->tab));
ExtensionActionAPI::Get(apply_info->browser_context)->NotifyChange(
action, apply_info->tab, apply_info->browser_context);
}
// The page action is already showing, so nothing needs to be done here.
void Reapply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {}
void Revert(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {
if (ExtensionAction* action =
GetPageAction(apply_info->browser_context, extension_id)) {
action->UndoDeclarativeShow(ExtensionTabUtil::GetTabId(apply_info->tab));
ExtensionActionAPI::Get(apply_info->browser_context)->NotifyChange(
action, apply_info->tab, apply_info->browser_context);
}
}
private:
static ExtensionAction* GetPageAction(
content::BrowserContext* browser_context,
const std::string& extension_id) {
const Extension* extension =
ExtensionRegistry::Get(browser_context)
->GetExtensionById(extension_id, ExtensionRegistry::EVERYTHING);
if (!extension)
return NULL;
return ExtensionActionManager::Get(browser_context)
->GetPageAction(*extension);
}
~ShowPageAction() override {}
DISALLOW_COPY_AND_ASSIGN(ShowPageAction);
};
// Action that sets an extension's action icon.
class SetIcon : public ContentAction {
public:
SetIcon(const gfx::Image& icon, ActionInfo::Type action_type)
: icon_(icon), action_type_(action_type) {}
static scoped_refptr<ContentAction> Create(
content::BrowserContext* browser_context,
const Extension* extension,
const base::DictionaryValue* dict,
std::string* error,
bool* bad_message);
// Implementation of ContentAction:
Type GetType() const override { return ACTION_SET_ICON; }
void Apply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {
Profile* profile = Profile::FromBrowserContext(apply_info->browser_context);
ExtensionAction* action = GetExtensionAction(profile, extension_id);
if (action) {
action->DeclarativeSetIcon(ExtensionTabUtil::GetTabId(apply_info->tab),
apply_info->priority,
icon_);
ExtensionActionAPI::Get(profile)
->NotifyChange(action, apply_info->tab, profile);
}
}
void Reapply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {}
void Revert(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const override {
Profile* profile = Profile::FromBrowserContext(apply_info->browser_context);
ExtensionAction* action = GetExtensionAction(profile, extension_id);
if (action) {
action->UndoDeclarativeSetIcon(
ExtensionTabUtil::GetTabId(apply_info->tab),
apply_info->priority,
icon_);
ExtensionActionAPI::Get(apply_info->browser_context)
->NotifyChange(action, apply_info->tab, profile);
}
}
private:
ExtensionAction* GetExtensionAction(Profile* profile,
const std::string& extension_id) const {
const Extension* extension =
ExtensionRegistry::Get(profile)
->GetExtensionById(extension_id, ExtensionRegistry::EVERYTHING);
if (!extension)
return NULL;
switch (action_type_) {
case ActionInfo::TYPE_BROWSER:
return ExtensionActionManager::Get(profile)
->GetBrowserAction(*extension);
case ActionInfo::TYPE_PAGE:
return ExtensionActionManager::Get(profile)->GetPageAction(*extension);
default:
NOTREACHED();
}
return NULL;
}
~SetIcon() override {}
gfx::Image icon_;
ActionInfo::Type action_type_;
DISALLOW_COPY_AND_ASSIGN(SetIcon);
};
// Helper for getting JS collections into C++.
static bool AppendJSStringsToCPPStrings(const base::ListValue& append_strings,
std::vector<std::string>* append_to) {
for (base::ListValue::const_iterator it = append_strings.begin();
it != append_strings.end();
++it) {
std::string value;
if ((*it)->GetAsString(&value)) {
append_to->push_back(value);
} else {
return false;
}
}
return true;
}
struct ContentActionFactory {
// Factory methods for ContentAction instances. |extension| is the extension
// for which the action is being created. |dict| contains the json dictionary
// that describes the action. |error| is used to return error messages in case
// the extension passed an action that was syntactically correct but
// semantically incorrect. |bad_message| is set to true in case |dict| does
// not confirm to the validated JSON specification.
typedef scoped_refptr<ContentAction>(*FactoryMethod)(
content::BrowserContext* /* browser_context */,
const Extension* /* extension */,
const base::DictionaryValue* /* dict */,
std::string* /* error */,
bool* /* bad_message */);
// Maps the name of a declarativeContent action type to the factory
// function creating it.
std::map<std::string, FactoryMethod> factory_methods;
ContentActionFactory() {
factory_methods[keys::kShowPageAction] =
&ShowPageAction::Create;
factory_methods[keys::kRequestContentScript] =
&RequestContentScript::Create;
factory_methods[keys::kSetIcon] =
&SetIcon::Create;
}
};
base::LazyInstance<ContentActionFactory>::Leaky
g_content_action_factory = LAZY_INSTANCE_INITIALIZER;
} // namespace
//
// RequestContentScript
//
struct RequestContentScript::ScriptData {
ScriptData();
~ScriptData();
std::vector<std::string> css_file_names;
std::vector<std::string> js_file_names;
bool all_frames;
bool match_about_blank;
};
RequestContentScript::ScriptData::ScriptData()
: all_frames(false),
match_about_blank(false) {}
RequestContentScript::ScriptData::~ScriptData() {}
// static
scoped_refptr<ContentAction> RequestContentScript::Create(
content::BrowserContext* browser_context,
const Extension* extension,
const base::DictionaryValue* dict,
std::string* error,
bool* bad_message) {
ScriptData script_data;
if (!InitScriptData(dict, error, bad_message, &script_data))
return scoped_refptr<ContentAction>();
return scoped_refptr<ContentAction>(new RequestContentScript(
browser_context,
extension,
script_data));
}
// static
scoped_refptr<ContentAction> RequestContentScript::CreateForTest(
DeclarativeUserScriptMaster* master,
const Extension* extension,
const base::Value& json_action,
std::string* error,
bool* bad_message) {
// Simulate ContentAction-level initialization. Check that instance type is
// RequestContentScript.
ContentAction::ResetErrorData(error, bad_message);
const base::DictionaryValue* action_dict = NULL;
std::string instance_type;
if (!ContentAction::Validate(
json_action,
error,
bad_message,
&action_dict,
&instance_type) ||
instance_type != std::string(keys::kRequestContentScript))
return scoped_refptr<ContentAction>();
// Normal RequestContentScript data initialization.
ScriptData script_data;
if (!InitScriptData(action_dict, error, bad_message, &script_data))
return scoped_refptr<ContentAction>();
// Inject provided DeclarativeUserScriptMaster, rather than looking it up
// using a BrowserContext.
return scoped_refptr<ContentAction>(new RequestContentScript(
master,
extension,
script_data));
}
// static
bool RequestContentScript::InitScriptData(const base::DictionaryValue* dict,
std::string* error,
bool* bad_message,
ScriptData* script_data) {
const base::ListValue* list_value = NULL;
if (!dict->HasKey(keys::kCss) && !dict->HasKey(keys::kJs)) {
*error = base::StringPrintf(kMissingParameter, "css or js");
return false;
}
if (dict->HasKey(keys::kCss)) {
INPUT_FORMAT_VALIDATE(dict->GetList(keys::kCss, &list_value));
INPUT_FORMAT_VALIDATE(
AppendJSStringsToCPPStrings(*list_value, &script_data->css_file_names));
}
if (dict->HasKey(keys::kJs)) {
INPUT_FORMAT_VALIDATE(dict->GetList(keys::kJs, &list_value));
INPUT_FORMAT_VALIDATE(
AppendJSStringsToCPPStrings(*list_value, &script_data->js_file_names));
}
if (dict->HasKey(keys::kAllFrames)) {
INPUT_FORMAT_VALIDATE(
dict->GetBoolean(keys::kAllFrames, &script_data->all_frames));
}
if (dict->HasKey(keys::kMatchAboutBlank)) {
INPUT_FORMAT_VALIDATE(
dict->GetBoolean(
keys::kMatchAboutBlank,
&script_data->match_about_blank));
}
return true;
}
RequestContentScript::RequestContentScript(
content::BrowserContext* browser_context,
const Extension* extension,
const ScriptData& script_data) {
HostID host_id(HostID::EXTENSIONS, extension->id());
InitScript(host_id, extension, script_data);
master_ = ExtensionSystem::Get(browser_context)
->declarative_user_script_manager()
->GetDeclarativeUserScriptMasterByID(host_id);
AddScript();
}
RequestContentScript::RequestContentScript(
DeclarativeUserScriptMaster* master,
const Extension* extension,
const ScriptData& script_data) {
HostID host_id(HostID::EXTENSIONS, extension->id());
InitScript(host_id, extension, script_data);
master_ = master;
AddScript();
}
RequestContentScript::~RequestContentScript() {
DCHECK(master_);
master_->RemoveScript(script_);
}
void RequestContentScript::InitScript(const HostID& host_id,
const Extension* extension,
const ScriptData& script_data) {
script_.set_id(UserScript::GenerateUserScriptID());
script_.set_host_id(host_id);
script_.set_run_location(UserScript::BROWSER_DRIVEN);
script_.set_match_all_frames(script_data.all_frames);
script_.set_match_about_blank(script_data.match_about_blank);
for (std::vector<std::string>::const_iterator it =
script_data.css_file_names.begin();
it != script_data.css_file_names.end(); ++it) {
GURL url = extension->GetResourceURL(*it);
ExtensionResource resource = extension->GetResource(*it);
script_.css_scripts().push_back(UserScript::File(
resource.extension_root(), resource.relative_path(), url));
}
for (std::vector<std::string>::const_iterator it =
script_data.js_file_names.begin();
it != script_data.js_file_names.end(); ++it) {
GURL url = extension->GetResourceURL(*it);
ExtensionResource resource = extension->GetResource(*it);
script_.js_scripts().push_back(UserScript::File(
resource.extension_root(), resource.relative_path(), url));
}
}
ContentAction::Type RequestContentScript::GetType() const {
return ACTION_REQUEST_CONTENT_SCRIPT;
}
void RequestContentScript::Apply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const {
InstructRenderProcessToInject(apply_info->tab, extension_id);
}
void RequestContentScript::Reapply(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const {
InstructRenderProcessToInject(apply_info->tab, extension_id);
}
void RequestContentScript::Revert(const std::string& extension_id,
const base::Time& extension_install_time,
ApplyInfo* apply_info) const {}
void RequestContentScript::InstructRenderProcessToInject(
content::WebContents* contents,
const std::string& extension_id) const {
content::RenderViewHost* render_view_host = contents->GetRenderViewHost();
render_view_host->Send(new ExtensionMsg_ExecuteDeclarativeScript(
render_view_host->GetRoutingID(),
SessionTabHelper::IdForTab(contents),
extension_id,
script_.id(),
contents->GetLastCommittedURL()));
}
// static
scoped_refptr<ContentAction> SetIcon::Create(
content::BrowserContext* browser_context,
const Extension* extension,
const base::DictionaryValue* dict,
std::string* error,
bool* bad_message) {
// We can't set a page or action's icon if the extension doesn't have one.
ActionInfo::Type type;
if (ActionInfo::GetPageActionInfo(extension) != NULL) {
type = ActionInfo::TYPE_PAGE;
} else if (ActionInfo::GetBrowserActionInfo(extension) != NULL) {
type = ActionInfo::TYPE_BROWSER;
} else {
*error = kNoPageOrBrowserAction;
return scoped_refptr<ContentAction>();
}
gfx::ImageSkia icon;
const base::DictionaryValue* canvas_set = NULL;
if (dict->GetDictionary("imageData", &canvas_set) &&
!ExtensionAction::ParseIconFromCanvasDictionary(*canvas_set, &icon)) {
*error = kInvalidIconDictionary;
*bad_message = true;
return scoped_refptr<ContentAction>();
}
return scoped_refptr<ContentAction>(new SetIcon(gfx::Image(icon), type));
}
//
// ContentAction
//
ContentAction::ContentAction() {}
ContentAction::~ContentAction() {}
// static
scoped_refptr<ContentAction> ContentAction::Create(
content::BrowserContext* browser_context,
const Extension* extension,
const base::Value& json_action,
std::string* error,
bool* bad_message) {
ResetErrorData(error, bad_message);
const base::DictionaryValue* action_dict = NULL;
std::string instance_type;
if (!Validate(json_action, error, bad_message, &action_dict, &instance_type))
return scoped_refptr<ContentAction>();
ContentActionFactory& factory = g_content_action_factory.Get();
std::map<std::string, ContentActionFactory::FactoryMethod>::iterator
factory_method_iter = factory.factory_methods.find(instance_type);
if (factory_method_iter != factory.factory_methods.end())
return (*factory_method_iter->second)(
browser_context, extension, action_dict, error, bad_message);
*error = base::StringPrintf(kInvalidInstanceTypeError, instance_type.c_str());
return scoped_refptr<ContentAction>();
}
bool ContentAction::Validate(const base::Value& json_action,
std::string* error,
bool* bad_message,
const base::DictionaryValue** action_dict,
std::string* instance_type) {
INPUT_FORMAT_VALIDATE(json_action.GetAsDictionary(action_dict));
INPUT_FORMAT_VALIDATE(
(*action_dict)->GetString(keys::kInstanceType, instance_type));
return true;
}
} // namespace extensions
| hefen1/chromium | chrome/browser/extensions/api/declarative_content/content_action.cc | C++ | bsd-3-clause | 18,231 |
Module("block.ui", function (m) {
Class("Shape", {
isa: block.ui.Container,
has: {
_left: {
is: "rw",
init: 200
},
_top: {
is: "rw",
init: 100
},
_width: { is: "rw" },
_height: { is: "rw" },
_zIndex: {
is: "rw",
init: -1
},
_minWidth: {
is: "rw",
init: 20
},
_minHeight: {
is: "rw",
init: 20
},
_guid: {
is: "rw",
init: function () { return this.initGuid() }
},
_lastUpdate: {
is: "rw",
init: 0
},
// general ViewPort Offset
_offsetLeft: {
is: "rw",
init: function () { return 150; return this.getViewPort().offset().left },
lazy: true
},
_offsetTop: {
is: "rw",
init: function () { return 0; return this.getViewPort().offset().top },
lazy: true
},
_style : {
is: "rw",
init: function () { return {} }
}
},
methods: {
create: function () {
throw "Abstract"
},
initGuid: function () {
return document.manager.makeGuid(this)
},
addDragPoints: function () {},
makeDraggable: function () {},
place: function () {
this.$ = this.create()
this.getViewPort().append(this.$)
var zIndex = this.getZIndex();
if(zIndex == -1) {
zIndex = document.manager.nextZIndex();
}
this.zIndex(zIndex)
this.x(this.getLeft());
this.y(this.getTop())
//this.width(""+ this.getWidth()+"px");
//this.height(""+this.getHeight()+"px");
this.width(this.getWidth());
this.height(this.getHeight());
this.addDragPoints();
this.makeDraggable();
},
prepareStorage: function () {
//this._updateStateCore()
},
_updateStateCore: function () {
var offset = this.offset()
this.setLeft(offset.left);
this.setTop(offset.top);
this.setWidth(this.width());
this.setHeight(this.height())
},
updateState: function () {
if(!this.isDeleted()) {
document.undo.addUpdateStep(this)
this._updateStateCore();
this.touch();
}
},
touch: function () {
document.propPanel.refresh(this);
this.setLastUpdate(this.syncedTime())
console.log("Touch: "+this.getLastUpdate())
document.manager.setDirty(true)
// notify listeners
this.updated()
document.sync.saveState()
},
// augment in sub class or role to update extra state
_updateFromCore: function (shape) {
if(shape.isDeleted() && !this.isDeleted()) {
this.destroy()
}
else if(!this.isDeleted()) {
if(shape.getLeft() != this.getLeft())
this.x(shape.getLeft());
if(shape.getTop() != this.getTop())
this.y(shape.getTop());
if(shape.getWidth() != this.getWidth())
this.width(shape.getWidth());
if(shape.getHeight() != this.getHeight())
this.height(shape.getHeight());
this.setLastUpdate(shape.getLastUpdate())
}
},
updateFrom: function (shape) {
console.log(shape.getLastUpdate() +">"+ this.getLastUpdate())
if(shape.getLastUpdate() > this.getLastUpdate()) {
console.log("Change shape")
this._updateFromCore(shape)
this._updateStateCore()
document.propPanel.refresh(this);
// notify listeners
this.updated()
}
},
syncedTime: function () {
return document.manager.syncedTime();
},
offset: function () {
var offset = this.dim$().offset();
offset.left -= this.getOffsetLeft();
offset.top -= this.getOffsetTop();
return offset;
},
left: function (left) {
var ele = this.dim$();
if(arguments.length > 0) {
var before = this.left()
ele.css("left", ""+left+"px")
ele.width(this.width() - (left - before))
} else {
return ele.offset().left - this.getOffsetLeft()
}
},
top: function (top) {
var ele = this.dim$();
if(arguments.length > 0) {
var before = this.top()
ele.css("top", ""+top+"px")
ele.height(this.height() - (top - before))
} else {
var base = ele.offset().top;
var offset = this.getOffsetTop()
return base - offset
}
},
dim$: function () {
return this.$
},
height: function () {
var ele = this.dim$()
return ele.height.apply(ele, arguments)
},
width: function () {
var ele = this.dim$()
return ele.width.apply(ele, arguments)
},
right: function (right) {
if(arguments.length > 0) {
this.width(right - this.left())
} else {
var right = this.left() + this.width();
return right
}
},
bottom: function (bottom) {
if(arguments.length > 0) {
var top = this.top()
this.height(bottom - top)
} else {
var bottom = this.top() + this.height();
return bottom;
}
},
zIndex: function (index) {
if(arguments.length > 0) {
this.setZIndex(index);
document.manager.setMaxZIndex(index);
this.$.css("zIndex", index)
} else {
throw "Only settable"
}
},
x: function (x) {
if(arguments.length > 0) {
this.$.css("left", ""+x+"px")
} else {
return this.left()
}
},
y: function (y) {
if(arguments.length > 0) {
this.$.css("top", ""+y+"px")
} else {
return this.top()
}
},
center: function (left, top) {
if(arguments.length > 0) {
this.x(Math.round(left - this.width() / 2))
this.y(Math.round(top - this.height() / 2))
} else {
return {
left: Math.round(this.left() + this.width() / 2),
top: Math.round(this.top() + this.height() / 2)
}
}
},
show: function () {
this.$.show()
},
hide: function () {
this.$.hide()
},
resetGuid: function () {
var guid = this.initGuid();
this.setGuid(guid)
this.registerGuid();
this.touch()
return guid
},
paste: function (target) {
block.ui.Guid.replaceGuids(this)
target.addAndDraw(this);
document.manager.asyncSwitchFocus(this)
},
getGuid: function () {
return this._guid
},
registerGuid: function () {
document.manager.shapeByGuidMap[this.getGuid()] = this
},
optionalRegisterGuid: function () {
if(!document.manager.shapeByGuidMap[this.getGuid()]) {
this.registerGuid()
}
},
/*finishUnpack: function () {
this.optionalRegisterGuid()
},*/
destroy: function () {
this.setDeleted(true);
this.$.hide()
this.$.remove()
this.touch()
document.undo.addDestroyStep(this)
},
type: function () {
var name = this.meta.className();
return name.split('.').pop()
},
drawOnDoc: function () {
var me = this;
document.shapes.addAndDraw(me);
me.touch()
document.undo.addCreateStep(me)
return me
},
// calculate whether this shapes overlaps with other shapes
// by negating the conditions for no overlap
// Only works for rectangular shapes
overlaps: function (other) {
return !(
other.left() > this.right() ||
other.right() < this.left() ||
other.top() > this.bottom() ||
other.bottom() < this.top()
)
}
},
after: {
initialize: function () {
this.optionalRegisterGuid();
}
},
classMethods: {
addToDoc: function (paras) { // use to add new shapes to the document
var me = this.meta.instantiate(paras);
return me.drawOnDoc()
}
}
})
}) | erpframework/joose-js | examples/blok/block/ui/Shape.js | JavaScript | bsd-3-clause | 11,209 |
---
id: 5ddb965c65d27e1512d44da4
title: Step 11
challengeType: 0
dashedName: step-11
---
# --description--
Log `meal.value` to the console, enter a number in the Breakfast input and hit the Calculate button. You'll notice that it displays what you entered.
# --hints--
See description above for instructions.
```js
```
# --seed--
## --before-user-code--
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<form id="calorie-form">
<h2 class="center">Calorie Counter</h2>
<div class="grid">
<legend>Sex</legend>
<div>
<input type="radio" name="sex" id="female" value="F" checked />
<label for="female">
Female (2,000 calories)
</label>
<div>
<input type="radio" name="sex" id="male" value="M" />
<label for="male">
Male (2,500 calories)
</label>
</div>
</div>
</div>
<div class="grid" id="entries">
Breakfast
<input
type="number"
min="0"
class="cal-control"
id="breakfast"
/><br />
Lunch
<input type="number" min="0" class="cal-control" id="lunch" /><br />
Dinner <input type="number" min="0" class="cal-control" id="dinner" />
</div>
<button type="button" class="btn-add" id="add">
Add Entry
</button>
<button type="submit" class="btn-solid" id="calculate">
Calculate
</button>
<button type="button" class="btn-outline" id="clear">
Clear
</button>
</form>
<div id="output"></div>
</div>
</body>
</html>
```
## --after-user-code--
```html
</body>
</html>
```
## --seed-contents--
```html
<script>
document.getElementById('calorie-form').onsubmit = calculate;
function calculate(e) {
e.preventDefault();
const total = Array.from(document.getElementsByClassName('cal-control'));
const meal = total[0];
}
</script>
```
# --solutions--
```html
<script>
document.getElementById('calorie-form').onsubmit = calculate;
function calculate(e) {
e.preventDefault();
const total = Array.from(document.getElementsByClassName('cal-control'));
const meal = total[0];
}
</script>
```
| FreeCodeCamp/FreeCodeCamp | curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-javascript-calorie-counter/step-011.md | Markdown | bsd-3-clause | 2,585 |
---
id: afd15382cdfb22c9efe8b7de
title: Parear DNA
challengeType: 5
forumTopicId: 16009
dashedName: dna-pairing
---
# --description--
A faixa de DNA está faltando o elemento de pareamento. Pegue cada caractere, pegue seu par e retorne os resultados como um array de duas dimensões.
[Pares de base](http://en.wikipedia.org/wiki/Base_pair) são pares de AT e CG. Associe o elemento faltando para o caractere fornecido.
Retorne o caractere fornecido como o primeiro elemento em cada array.
Por exemplo, para a entrada `GCG`, retorne `[["G", "C"], ["C","G"], ["G", "C"]]`
O caractere e seu par estão emparelhados em um array, e todos os arrays estão agrupados em um array encapsulador.
# --hints--
`pairElement("ATCGA")` deve retornar `[["A","T"],["T","A"],["C","G"],["G","C"],["A","T"]]`.
```js
assert.deepEqual(pairElement('ATCGA'), [
['A', 'T'],
['T', 'A'],
['C', 'G'],
['G', 'C'],
['A', 'T']
]);
```
`pairElement("TTGAG")` deve retornar `[["T","A"],["T","A"],["G","C"],["A","T"],["G","C"]]`.
```js
assert.deepEqual(pairElement('TTGAG'), [
['T', 'A'],
['T', 'A'],
['G', 'C'],
['A', 'T'],
['G', 'C']
]);
```
`pairElement("CTCTA")` deve retornar `[["C","G"],["T","A"],["C","G"],["T","A"],["A","T"]]`.
```js
assert.deepEqual(pairElement('CTCTA'), [
['C', 'G'],
['T', 'A'],
['C', 'G'],
['T', 'A'],
['A', 'T']
]);
```
# --seed--
## --seed-contents--
```js
function pairElement(str) {
return str;
}
pairElement("GCG");
```
# --solutions--
```js
var lookup = Object.create(null);
lookup.A = 'T';
lookup.T = 'A';
lookup.C = 'G';
lookup.G = 'C';
function pairElement(str) {
return str.split('').map(function(p) {return [p, lookup[p]];});
}
```
| FreeCodeCamp/FreeCodeCamp | curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/dna-pairing.md | Markdown | bsd-3-clause | 1,691 |
/* -----------------------------------------------------------------------------
*
* (c) The University of Glasgow 2006-2008
*
* OS-specific memory management
*
* ---------------------------------------------------------------------------*/
#ifndef SM_OSMEM_H
#define SM_OSMEM_H
#include "BeginPrivate.h"
void osMemInit(void);
void *osGetMBlocks(uint32_t n);
void osFreeMBlocks(void *addr, uint32_t n);
void osReleaseFreeMemory(void);
void osFreeAllMBlocks(void);
size_t getPageSize (void);
StgWord64 getPhysicalMemorySize (void);
void setExecutable (void *p, W_ len, rtsBool exec);
rtsBool osNumaAvailable(void);
uint32_t osNumaNodes(void);
StgWord osNumaMask(void);
void osBindMBlocksToNode(void *addr, StgWord size, uint32_t node);
INLINE_HEADER size_t
roundDownToPage (size_t x)
{
size_t size = getPageSize();
return (x & ~(size - 1));
}
INLINE_HEADER size_t
roundUpToPage (size_t x)
{
size_t size = getPageSize();
return ((x + size - 1) & ~(size - 1));
}
#ifdef USE_LARGE_ADDRESS_SPACE
/*
If "large address space" is enabled, we allocate memory in two
steps: first we request some address space, and then we request some
memory in it. This allows us to ask for much more address space that
we will ever need, which keeps everything nice and consecutive.
*/
// Reserve the large address space blob of the given size, and return the
// address that the OS has chosen for it. It is not safe to access the memory
// pointed to by the return value, until that memory is committed using
// osCommitMemory().
//
// The value pointed to by len will be filled by the caller with an upper
// bound on the amount of memory to reserve. On return this will be set
// to the amount of memory actually reserved.
//
// This function is called once when the block allocator is initialized.
void *osReserveHeapMemory(W_ *len);
// Commit (allocate memory for) a piece of address space, which must
// be within the previously reserved space After this call, it is safe
// to access @p up to @len bytes.
//
// There is no guarantee on the contents of the memory pointed to by
// @p, in particular it must not be assumed to contain all zeros.
void osCommitMemory(void *p, W_ len);
// Decommit (release backing memory for) a piece of address space,
// which must be within the previously reserve space and must have
// been previously committed After this call, it is again unsafe to
// access @p (up to @len bytes), but there is no guarantee that the
// memory will be released to the system (as far as eg. RSS statistics
// from top are concerned).
void osDecommitMemory(void *p, W_ len);
// Release the address space previously obtained and undo the effects of
// osReserveHeapMemory
//
// This function is called once, when the block allocator is deinitialized
// before the program terminates.
void osReleaseHeapMemory(void);
#endif
#include "EndPrivate.h"
#endif /* SM_OSMEM_H */
| sgillespie/ghc | rts/sm/OSMem.h | C | bsd-3-clause | 2,912 |
SUBDIRS=lucida-suite lucida
DOCKER_CONTAINER=claritylab/lucida
VERSION=latest
THREADS=4
include ./Makefile.common
.PHONY: docker local
## build docker environment
docker:
docker build -t $(DOCKER_CONTAINER):$(VERSION) .
## build local environment
THRIFT_VERSION=0.9.2
export THRIFT_ROOT=$(shell pwd)/tools/thrift-$(THRIFT_VERSION)
export CAFFE=$(shell pwd)/tools/caffe/distribute
export LUCIDAROOT=$(shell pwd)/lucida
local:
cd tools && make && cd - && cd lucida && ./thrift-gen.sh && cd - && make all
| yunshengb/lucida | Makefile | Makefile | bsd-3-clause | 510 |
package com.lunarworkshop.tinker;
import java.io.IOException;
import java.util.Arrays;
import android.view.*;
import android.app.*;
import android.content.res.*;
import android.graphics.*;
import android.content.*;
import android.util.*;
import android.os.*;
import android.util.Log;
import org.libsdl.app.SDLActivity;
public class TinkerActivity extends SDLActivity {
void TinkerLog(String s)
{
//Log.v("TinkerDebug", s);
}
AssetManager am;
String[] assetList;
int assetList_index;
public boolean assetOpenDir(String sDirectory)
{
if (am == null)
am = getAssets();
try
{
assetList = am.list(sDirectory);
}
catch (IOException e)
{
return false;
}
if (assetList == null)
return false;
assetList_index = 0;
return true;
}
public String assetGetNext()
{
if (assetList_index >= assetList.length)
return null;
return assetList[assetList_index++];
}
public boolean assetIsDirectory(String sDirectory)
{
if (!assetExists(sDirectory))
return false;
if (am == null)
am = getAssets();
try
{
return am.open(sDirectory) == null;
}
catch (IOException e)
{
// Assume the file exists so if it can't be opened as a file it must be a directory.
return true;
}
}
public boolean assetExists(String sFile)
{
if (am == null)
am = getAssets();
int slash = sFile.lastIndexOf('/');
try
{
if (slash < 0)
return Arrays.asList(am.list("")).contains(sFile);
String sPath = sFile.substring(0, slash);
String sFileOnly = sFile.substring(slash+1);
return Arrays.asList(am.list(sPath)).contains(sFileOnly);
}
catch (IOException e)
{
return false;
}
}
@Override
public void onActionModeFinished(ActionMode mode)
{
TinkerLog("onActionModeFinished()");
super.onActionModeFinished(mode);
}
@Override
public void onActionModeStarted(ActionMode mode)
{
TinkerLog("onActionModeStarted()");
super.onActionModeStarted(mode);
}
@Override
public void onAttachFragment(Fragment fragment)
{
TinkerLog("onAttachFragment()");
super.onAttachFragment(fragment);
}
@Override
public void onAttachedToWindow()
{
TinkerLog("onAttachedToWindow()");
super.onAttachedToWindow();
}
@Override
public void onBackPressed()
{
TinkerLog("onBackPressed()");
super.onBackPressed();
}
@Override
public void onConfigurationChanged(Configuration newConfig)
{
TinkerLog("onConfigurationChanged()");
super.onConfigurationChanged(newConfig);
}
@Override
public void onContentChanged()
{
TinkerLog("onContentChanged()");
super.onContentChanged();
}
@Override
public boolean onContextItemSelected(MenuItem item)
{
TinkerLog("onContextItemSelected()");
return super.onContextItemSelected(item);
}
@Override
public void onContextMenuClosed(Menu menu)
{
TinkerLog("onContextMenuClosed()");
super.onContextMenuClosed(menu);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo)
{
TinkerLog("onCreateContextMenu()");
super.onCreateContextMenu(menu, v, menuInfo);
}
@Override
public CharSequence onCreateDescription()
{
TinkerLog("onCreateDescription()");
return super.onCreateDescription();
}
@Override
public void onCreateNavigateUpTaskStack(TaskStackBuilder builder)
{
TinkerLog("onCreateNavigateUpTaskStack()");
super.onCreateNavigateUpTaskStack(builder);
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
TinkerLog("onCreateOptionsMenu()");
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onCreatePanelMenu(int featureId, Menu menu)
{
TinkerLog("onCreatePanelMenu()");
return super.onCreatePanelMenu(featureId, menu);
}
@Override
public View onCreatePanelView(int featureId)
{
TinkerLog("onCreatePanelView()");
return super.onCreatePanelView(featureId);
}
@Override
public boolean onCreateThumbnail(Bitmap outBitmap, Canvas canvas)
{
TinkerLog("onCreateThumbnail()");
return super.onCreateThumbnail(outBitmap, canvas);
}
@Override
public View onCreateView(View parent, String name, Context context, AttributeSet attrs)
{
TinkerLog("onCreateView()");
return super.onCreateView(parent, name, context, attrs);
}
@Override
public View onCreateView(String name, Context context, AttributeSet attrs)
{
TinkerLog("onCreateView()");
return super.onCreateView(name, context, attrs);
}
@Override
public void onDetachedFromWindow()
{
TinkerLog("onDetachedFromWindow()");
super.onDetachedFromWindow();
}
@Override
public boolean onGenericMotionEvent(MotionEvent event)
{
TinkerLog("onGenericMotionEvent()");
return super.onGenericMotionEvent(event);
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
TinkerLog("onKeyDown()");
return super.onKeyDown(keyCode, event);
}
@Override
public boolean onKeyLongPress(int keyCode, KeyEvent event)
{
TinkerLog("onKeyLongPress()");
return super.onKeyLongPress(keyCode, event);
}
@Override
public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event)
{
TinkerLog("onKeyMultiple()");
return super.onKeyMultiple(keyCode, repeatCount, event);
}
@Override
public boolean onKeyShortcut(int keyCode, KeyEvent event)
{
TinkerLog("onKeyShortcut()");
return super.onKeyShortcut(keyCode, event);
}
@Override
public boolean onKeyUp(int keyCode, KeyEvent event)
{
TinkerLog("onKeyUp()");
return super.onKeyUp(keyCode, event);
}
@Override
public void onLowMemory()
{
TinkerLog("onLowMemory()");
super.onLowMemory();
}
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item)
{
TinkerLog("onMenuItemSelected()");
return super.onMenuItemSelected(featureId, item);
}
@Override
public boolean onMenuOpened(int featureId, Menu menu)
{
TinkerLog("onMenuOpened()");
return super.onMenuOpened(featureId, menu);
}
@Override
public boolean onNavigateUp()
{
TinkerLog("onNavigateUp()");
return super.onNavigateUp();
}
@Override
public boolean onNavigateUpFromChild(Activity child)
{
TinkerLog("onNavigateUpFromChild()");
return super.onNavigateUpFromChild(child);
}
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
TinkerLog("onOptionsItemSelected()");
return super.onOptionsItemSelected(item);
}
@Override
public void onOptionsMenuClosed(Menu menu)
{
TinkerLog("onOptionsMenuClosed()");
super.onOptionsMenuClosed(menu);
}
@Override
public void onPanelClosed(int featureId, Menu menu)
{
TinkerLog("onPanelClosed()");
super.onPanelClosed(featureId, menu);
}
@Override
public void onPrepareNavigateUpTaskStack(TaskStackBuilder builder)
{
TinkerLog("onPrepareNavigateUpTaskStack()");
super.onPrepareNavigateUpTaskStack(builder);
}
@Override
public boolean onPrepareOptionsMenu(Menu menu)
{
TinkerLog("onPrepareOptionsMenu()");
return super.onPrepareOptionsMenu(menu);
}
@Override
public boolean onPreparePanel(int featureId, View view, Menu menu)
{
TinkerLog("onPreparePanel()");
return super.onPreparePanel(featureId, view, menu);
}
@Override
public void onProvideAssistData(Bundle data)
{
TinkerLog("onProvideAssistData()");
super.onProvideAssistData(data);
}
@Override
public boolean onSearchRequested()
{
TinkerLog("onSearchRequested()");
return super.onSearchRequested();
}
@Override
public boolean onTouchEvent(MotionEvent event)
{
TinkerLog("onTouchEvent()");
return super.onTouchEvent(event);
}
@Override
public boolean onTrackballEvent(MotionEvent event)
{
TinkerLog("onTrackballEvent()");
return super.onTrackballEvent(event);
}
@Override
public void onTrimMemory(int level)
{
TinkerLog("onTrimMemory()");
super.onTrimMemory(level);
}
@Override
public void onUserInteraction()
{
TinkerLog("onUserInteraction()");
super.onUserInteraction();
}
@Override
public void onWindowAttributesChanged(WindowManager.LayoutParams params)
{
TinkerLog("onWindowAttributesChanged()");
super.onWindowAttributesChanged(params);
}
@Override
public void onWindowFocusChanged(boolean hasFocus)
{
TinkerLog("onWindowFocusChanged()");
super.onWindowFocusChanged(hasFocus);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
TinkerLog("onActivityResult()");
super.onActivityResult(requestCode, resultCode, data);
}
@Override
protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first)
{
TinkerLog("onApplyThemeResource()");
super.onApplyThemeResource(theme, resid, first);
}
@Override
protected void onChildTitleChanged(Activity childActivity, CharSequence title)
{
TinkerLog("onChildTitleChanged()");
super.onChildTitleChanged(childActivity, title);
}
@Override
protected void onCreate(Bundle savedInstanceState)
{
TinkerLog("onCreate()");
super.onCreate(savedInstanceState);
}
@Override
protected void onDestroy()
{
TinkerLog("onDestroy()");
super.onDestroy();
}
@Override
protected void onNewIntent(Intent intent)
{
TinkerLog("onNewIntent()");
super.onNewIntent(intent);
}
@Override
protected void onPause()
{
TinkerLog("onPause()");
super.onPause();
}
@Override
protected void onPostCreate(Bundle savedInstanceState)
{
TinkerLog("onPostCreate()");
super.onPostCreate(savedInstanceState);
}
@Override
protected void onPostResume()
{
TinkerLog("onPostResume()");
super.onPostResume();
}
@Override
protected void onRestart()
{
TinkerLog("onRestart()");
super.onRestart();
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState)
{
TinkerLog("onRestoreInstanceState()");
super.onRestoreInstanceState(savedInstanceState);
}
@Override
protected void onResume()
{
TinkerLog("onResume()");
super.onResume();
}
@Override
protected void onSaveInstanceState(Bundle outState)
{
TinkerLog("onSaveInstanceState()");
super.onSaveInstanceState(outState);
}
@Override
protected void onStart()
{
TinkerLog("onStart()");
super.onStart();
}
@Override
protected void onStop()
{
TinkerLog("onStop()");
super.onStop();
}
@Override
protected void onTitleChanged(CharSequence title, int color)
{
TinkerLog("onTitleChanged()");
super.onTitleChanged(title, color);
}
@Override
protected void onUserLeaveHint()
{
TinkerLog("onUserLeaveHint()");
super.onUserLeaveHint();
}
}
| BSVino/ViewbackMonitor | android/src/com/lunarworkshop/tinker/TinkerActivity.java | Java | bsd-3-clause | 10,404 |
;(function($B){
eval($B.InjectBuiltins())
var $ObjectDict = _b_.object.$dict
function $list(){
// used for list displays
// different from list : $list(1) is valid (matches [1])
// but list(1) is invalid (integer 1 is not iterable)
var args = [], pos=0
for(var i=0, _len_i = arguments.length; i < _len_i;i++){args[pos++]=arguments[i]}
return new $ListDict(args)
}
var $ListDict = {__class__:$B.$type,
__name__:'list',
$native:true,
__dir__:$ObjectDict.__dir__}
$ListDict.__add__ = function(self,other){
var res = self.valueOf().concat(other.valueOf())
if(isinstance(self,tuple)) res = tuple(res)
return res
}
$ListDict.__contains__ = function(self,item){
var _eq = getattr(item, '__eq__')
var i=self.length
while(i--) {
try{if(_eq(self[i])) return true
}catch(err){}
}
return false
}
$ListDict.__delitem__ = function(self,arg){
if(isinstance(arg,_b_.int)){
var pos = arg
if(arg<0) pos=self.length+pos
if(pos>=0 && pos<self.length){
self.splice(pos,1)
return
}
throw _b_.IndexError('list index out of range')
}
if(isinstance(arg,_b_.slice)) {
var start = arg.start;if(start===None){start=0}
var stop = arg.stop;if(stop===None){stop=self.length}
var step = arg.step || 1
if(start<0) start=self.length+start
if(stop<0) stop=self.length+stop
var res = [],i=null, pos=0
if(step>0){
if(stop>start){
for(var i=start;i<stop;i+=step){
if(self[i]!==undefined){res[pos++]=i}
}
}
} else {
if(stop<start){
for(var i=start;i>stop;i+=step.value){
if(self[i]!==undefined){res[pos++]=i}
}
res.reverse() // must be in ascending order
}
}
// delete items from left to right
var i=res.length
while(i--) {
//for(var i=res.length-1;i>=0;i--){
self.splice(res[i],1)
}
return
}
if (hasattr(arg, '__int__') || hasattr(arg, '__index__')) {
$ListDict.__delitem__(self, _b_.int(arg))
return
}
throw _b_.TypeError('list indices must be integer, not '+_b_.str(arg.__class__))
}
$ListDict.__eq__ = function(self,other){
// compare object "self" to class "list"
if(other===undefined) return self===list
if($B.get_class(other)===$B.get_class(self)){
if(other.length==self.length){
var i=self.length
while(i--) {
if(!getattr(self[i],'__eq__')(other[i])) return false
}
return true
}
}
if (isinstance(other, [_b_.set, _b_.tuple, _b_.list])) {
if (self.length != getattr(other, '__len__')()) return false
var i=self.length
while(i--) {
if (!getattr(other, '__contains__')(self[i])) return false
}
return true
}
return false
}
$ListDict.__getitem__ = function(self,arg){
if(isinstance(arg,_b_.int)){
var items=self.valueOf()
var pos = arg
if(arg<0) pos=items.length+pos
if(pos>=0 && pos<items.length) return items[pos]
throw _b_.IndexError('list index out of range')
}
if (isinstance(arg,_b_.slice)) {
/* Find the real values for start, stop and step */
var step = arg.step===None ? 1 : arg.step
if (step == 0) {
throw Error('ValueError : slice step cannot be zero');
}
var length = self.length;
var start, end;
if (arg.start === None) {
start = step<0 ? length-1 : 0;
} else {
start = arg.start;
if (start < 0) start += length;
if (start < 0) start = step<0 ? -1 : 0
if (start >= length) start = step<0 ? length-1 : length;
}
if (arg.stop === None) {
stop = step<0 ? -1 : length;
} else {
stop = arg.stop;
if (stop < 0) stop += length
if (stop < 0) stop = step<0 ? -1 : 0
if (stop >= length) stop = step<0 ? length-1 : length;
}
/* Return the sliced list */
var res = [], i=null, items=self.valueOf(), pos=0
if (step > 0) {
if (stop <= start) return res;
for(var i=start; i<stop; i+=step) {
res[pos++]=items[i]
}
return res;
} else {
if (stop > start) return res;
for(var i=start; i>stop; i+=step) {
res[pos++]=items[i]
}
return res;
}
}
if (hasattr(arg, '__int__') || hasattr(arg, '__index__')) {
return $ListDict.__getitem__(self, _b_.int(arg))
}
throw _b_.TypeError('list indices must be integer, not '+arg.__class__.__name__)
}
$ListDict.__ge__ = function(self,other){
if(!isinstance(other,[list, _b_.tuple])){
throw _b_.TypeError("unorderable types: list() >= "+
$B.get_class(other).__name__+'()')
}
var i=0
while(i<self.length){
if(i>=other.length) return true
if(getattr(self[i],'__eq__')(other[i])){i++}
else return(getattr(self[i],"__ge__")(other[i]))
}
//if(other.length==self.length) return true
// other starts like self, but is longer
//return false
return other.length == self.length
}
$ListDict.__gt__ = function(self,other){
if(!isinstance(other,[list, _b_.tuple])){
throw _b_.TypeError("unorderable types: list() > "+
$B.get_class(other).__name__+'()')
}
var i=0
while(i<self.length){
if(i>=other.length) return true
if(getattr(self[i],'__eq__')(other[i])){i++}
else return(getattr(self[i],'__gt__')(other[i]))
}
// other starts like self, but is as long or longer
return false
}
$ListDict.__hash__ = None
$ListDict.__iadd__ = function(self, other) {
for (var i = 0; i < other.length; i++) {
self.push(other[i])
}
return self
}
$ListDict.__init__ = function(self,arg){
var len_func = getattr(self,'__len__'),pop_func=getattr(self,'pop')
while(len_func()) pop_func()
if(arg===undefined) return
var arg = iter(arg)
var next_func = getattr(arg,'__next__')
var pos=self.length
while(1){
try{self[pos++]=next_func()}
catch(err){
if(err.__name__=='StopIteration'){break}
else{throw err}
}
}
}
var $list_iterator = $B.$iterator_class('list_iterator')
$ListDict.__iter__ = function(self){
return $B.$iterator(self,$list_iterator)
}
$ListDict.__le__ = function(self,other){
return !$ListDict.__gt__(self,other)
}
$ListDict.__len__ = function(self){return self.length}
$ListDict.__lt__ = function(self,other){
return !$ListDict.__ge__(self,other)
}
$ListDict.__mro__ = [$ListDict,$ObjectDict]
$ListDict.__mul__ = function(self,other){
if(isinstance(other,_b_.int)) { //this should be faster..
var res=[]
var $temp = self.slice(0,self.length)
for(var i=0;i<other;i++) res=res.concat($temp)
return _b_.list(res)
}
if (hasattr(other, '__int__') || hasattr(other, '__index__')) {
return $ListDict.__mul__(self, _b_.int(other))
}
throw _b_.TypeError("can't multiply sequence by non-int of type '"+
$B.get_class(other).__name__+"'")
}
$ListDict.__ne__ = function(self,other){return !$ListDict.__eq__(self,other)}
$ListDict.__repr__ = function(self){
if(self===undefined) return "<class 'list'>"
var _r=self.map(_b_.repr)
if (self.__class__===$TupleDict){
if(self.length==1){return '('+_r[0]+',)'}
return '('+_r.join(', ')+')'
}
return '['+_r.join(', ')+']'
}
$ListDict.__setitem__ = function(self,arg,value){
if(isinstance(arg,_b_.int)){
var pos = arg
if(arg<0) pos=self.length+pos
if(pos>=0 && pos<self.length){self[pos]=value}
else {throw _b_.IndexError('list index out of range')}
return
}
if(isinstance(arg,slice)){
var start = arg.start===None ? 0 : arg.start
var stop = arg.stop===None ? self.length : arg.stop
var step = arg.step===None ? 1 : arg.step
if(start<0) start=self.length+start
if(stop<0) stop=self.length+stop
self.splice(start,stop-start)
// copy items in a temporary JS array
// otherwise, a[:0]=a fails
var $temp
if(Array.isArray(value)){$temp = Array.prototype.slice.call(value)}
else if(hasattr(value,'__iter__')){$temp = list(value)}
if($temp!==undefined){
for(var i=$temp.length-1;i>=0;i--){
self.splice(start,0,$temp[i])
}
return
}
throw _b_.TypeError("can only assign an iterable")
}
if (hasattr(arg, '__int__') || hasattr(arg, '__index__')) {
$ListDict.__setitem__(self, _b_.int(arg), value)
return
}
throw _b_.TypeError('list indices must be integer, not '+arg.__class__.__name__)
}
$ListDict.__str__ = $ListDict.__repr__
// add "reflected" methods
$B.make_rmethods($ListDict)
var _ops=['add', 'sub']
$ListDict.append = function(self,other){self[self.length]=other}
$ListDict.clear = function(self){ while(self.length) self.pop()}
$ListDict.copy = function(self){return self.slice(0,self.length)}
$ListDict.count = function(self,elt){
var res = 0
_eq=getattr(elt, '__eq__')
var i=self.length
while (i--) if (_eq(self[i])) res++
return res
}
$ListDict.extend = function(self,other){
if(arguments.length!=2){throw _b_.TypeError(
"extend() takes exactly one argument ("+arguments.length+" given)")}
other = iter(other)
var pos=self.length
while(1){
try{self[pos++]=next(other)}
catch(err){
if(err.__name__=='StopIteration'){break}
else{throw err}
}
}
}
$ListDict.index = function(self,elt){
var _eq = getattr(elt, '__eq__')
for(var i=0, _len_i = self.length; i < _len_i;i++){
if(_eq(self[i])) return i
}
throw _b_.ValueError(_b_.str(elt)+" is not in list")
}
$ListDict.insert = function(self,i,item){self.splice(i,0,item)}
$ListDict.remove = function(self,elt){
var _eq = getattr(elt, '__eq__')
for(var i=0, _len_i = self.length; i < _len_i;i++){
if(_eq(self[i])){
self.splice(i,1)
return
}
}
throw _b_.ValueError(_b_.str(elt)+" is not in list")
}
$ListDict.pop = function(self,pos){
if(pos===undefined){ // can't use self.pop() : too much recursion !
return self.splice(self.length-1,1)[0]
}
if(arguments.length==2){
if(isinstance(pos,_b_.int)){
var res = self[pos]
self.splice(pos,1)
return res
}
throw _b_.TypeError(pos.__class__+" object cannot be interpreted as an integer")
}
throw _b_.TypeError("pop() takes at most 1 argument ("+(arguments.length-1)+' given)')
}
$ListDict.reverse = function(self){
var _len=self.length-1
var i=parseInt(self.length/2)
while (i--) {
var buf = self[i]
self[i] = self[_len-i]
self[_len-i] = buf
}
}
// QuickSort implementation found at http://en.literateprograms.org/Quicksort_(JavaScript)
function $partition(arg,array,begin,end,pivot)
{
var piv=array[pivot];
array = swap(array, pivot, end-1);
var store=begin;
if(arg===null){
if(array.$cl!==false){
// Optimisation : if all elements have the same time, the
// comparison function __le__ can be computed once
var le_func = _b_.getattr(array.$cl, '__le__')
for(var ix=begin;ix<end-1;++ix) {
if(le_func(array[ix],piv)) {
array = swap(array, store, ix);
++store;
}
}
}else{
for(var ix=begin;ix<end-1;++ix) {
if(getattr(array[ix],'__le__')(piv)) {
array = swap(array, store, ix);
++store;
}
}
}
}else{
for(var ix=begin;ix<end-1;++ix) {
if(getattr(arg(array[ix]),'__le__')(arg(piv))) {
array = swap(array, store, ix);
++store;
}
}
}
array = swap(array, end-1, store);
return store;
}
function swap(_array,a,b){
var tmp=_array[a];
_array[a]=_array[b];
_array[b]=tmp;
return _array
}
function $qsort(arg,array, begin, end)
{
if(end-1>begin) {
var pivot=begin+Math.floor(Math.random()*(end-begin));
pivot=$partition(arg,array, begin, end, pivot);
$qsort(arg,array, begin, pivot);
$qsort(arg,array, pivot+1, end);
}
}
function $elts_class(self){
// If all elements are of the same class, return it
if(self.length==0){return null}
var cl = $B.get_class(self[0]), i=self.length
while (i--) {
//for(var i=1, _len_i = self.length; i < _len_i;i++){
if($B.get_class(self[i])!==cl) return false
}
return cl
}
$ListDict.sort = function(self){
var func=null
var reverse = false
for(var i=1, _len_i = arguments.length; i < _len_i;i++){
var arg = arguments[i]
if(arg.$nat=='kw'){
var kw_args = arg.kw
for(var key in kw_args){
if(key=='key'){func=getattr(kw_args[key],'__call__')}
else if(key=='reverse'){reverse=kw_args[key]}
}
}
}
if(self.length==0) return
self.$cl = $elts_class(self)
if(func===null && self.$cl===_b_.str.$dict){self.sort()}
else if(func===null && self.$cl===_b_.int.$dict){
self.sort(function(a,b){return a-b})
}
else{$qsort(func,self,0,self.length)}
if(reverse) $ListDict.reverse(self)
// Javascript libraries might use the return value
if(!self.__brython__) return self
}
$B.set_func_names($ListDict)
// constructor for built-in type 'list'
function list(obj){
if(arguments.length===0) return []
if(arguments.length>1){
throw _b_.TypeError("list() takes at most 1 argument ("+arguments.length+" given)")
}
if(Array.isArray(obj)){ // most simple case
obj.__brython__ = true;
if(obj.__class__==$TupleDict){
var res = obj.slice()
res.__class__ = $ListDict
return res
}
return obj
}
var res = [], pos=0
var arg = iter(obj)
var next_func = getattr(arg,'__next__')
while(1){
try{res[pos++]=next_func()}
catch(err){
if(err.__name__!='StopIteration'){throw err}
break
}
}
res.__brython__ = true // false for Javascript arrays - used in sort()
return res
}
list.__class__ = $B.$factory
list.$dict = $ListDict
$ListDict.$factory = list
list.$is_func = true
list.__module__='builtins'
list.__bases__=[]
// dictionary and factory for subclasses of list
var $ListSubclassDict = {
__class__:$B.$type,
__name__:'list'
}
// the methods in subclass apply the methods in $ListDict to the
// result of instance.valueOf(), which is a Javascript list
for(var $attr in $ListDict){
if(typeof $ListDict[$attr]=='function'){
$ListSubclassDict[$attr]=(function(attr){
return function(){
var args = []
if(arguments.length>0){
var args = [arguments[0].valueOf()]
var pos=1
for(var i=1, _len_i = arguments.length; i < _len_i;i++){
args[pos++]=arguments[i]
}
}
return $ListDict[attr].apply(null,args)
}
})($attr)
}
}
$ListSubclassDict.__init__ = function(self){
var res = [], args=[res], pos=1
for(var i=1;i<arguments.length;i++){args[pos++]=arguments[i]}
$ListDict.__init__.apply(null, args)
self.valueOf = function(){return res}
}
$ListSubclassDict.__mro__ = [$ListSubclassDict,$ObjectDict]
// factory for list subclasses
$B.$ListSubclassFactory = {
__class__:$B.$factory,
$dict:$ListSubclassDict
}
// Tuples
function $tuple(arg){return arg} // used for parenthesed expressions
var $TupleDict = {__class__:$B.$type,__name__:'tuple',$native:true}
$TupleDict.__iter__ = function(self){
return $B.$iterator(self,$tuple_iterator)
}
// other attributes are defined in py_list.js, once list is defined
var $tuple_iterator = $B.$iterator_class('tuple_iterator')
// type() is implemented in py_utils
function tuple(){
var obj = list.apply(null,arguments)
obj.__class__ = $TupleDict
return obj
}
tuple.__class__ = $B.$factory
tuple.$dict = $TupleDict
tuple.$is_func = true
$TupleDict.$factory = tuple
$TupleDict.__new__ = $B.$__new__(tuple)
tuple.__module__='builtins'
// add tuple methods
for(var attr in $ListDict){
switch(attr) {
case '__delitem__':
case '__setitem__':
case 'append':
case 'extend':
case 'insert':
case 'remove':
case 'pop':
case 'reverse':
case 'sort':
break
default:
if($TupleDict[attr]===undefined){
if(typeof $ListDict[attr]=='function'){
$TupleDict[attr] = (function(x){
return function(){return $ListDict[x].apply(null, arguments)}
})(attr)
}else{
$TupleDict[attr] = $ListDict[attr]
}
}
}//switch
}
$TupleDict.__delitem__ = function(){
throw _b_.TypeError("'tuple' object doesn't support item deletion")
}
$TupleDict.__setitem__ = function(){
throw _b_.TypeError("'tuple' object does not support item assignment")
}
$TupleDict.__eq__ = function(self,other){
// compare object "self" to class "list"
if(other===undefined) return self===tuple
return $ListDict.__eq__(self,other)
}
$TupleDict.__hash__ = function (self) {
// http://nullege.com/codes/show/src%40p%40y%40pypy-HEAD%40pypy%40rlib%40test%40test_objectmodel.py/145/pypy.rlib.objectmodel._hash_float/python
var x= 0x345678
for(var i=0, _len_i = self.length; i < _len_i; i++) {
var y=_b_.hash(self[i]);
x=(1000003 * x) ^ y & 0xFFFFFFFF;
}
return x
}
$TupleDict.__mro__ = [$TupleDict,$ObjectDict]
$TupleDict.__name__ = 'tuple'
// set __repr__ and __str__
$B.set_func_names($TupleDict)
_b_.list = list
_b_.tuple = tuple
// set object.__bases__ to an empty tuple
_b_.object.$dict.__bases__ = tuple()
})(__BRYTHON__)
| Lh4cKg/brython | www/src/py_list.js | JavaScript | bsd-3-clause | 18,655 |
<div>
<h3><div class="gpiic-speakText-announce-label gpii-label"></div></h3>
<div>
<label class="gpiic-speakText-punctuationVerbosity-label gpii-description"></label>
<div class="gpiic-punctuationVerbosity-container gpii-punctuationVerbosity-container" role="radiogroup" aria-labelledby="" aria-describedby="">
<div class="gpiic-speakText-punctuationVerbosity-row gpii-speakText-punctuationVerbosity-row">
<input type="radio" class="gpii-prefsEditor-focusableRadio gpiic-speakText-punctuationVerbosity" id="radioButton-option"/>
<label class="gpiic-speakText-punctuationVerbosity-option-label gpii-speakText-punctuationVerbosity-option-label" for="radioButton-option"></label>
</div>
</div>
</div>
</div>
| kaspermarkus/prefsEditors | src/shared/adjusters/html/punctuationVerbosityTemplate.html | HTML | bsd-3-clause | 797 |
"""
Example OAuthenticator to use with My Service
"""
import json
from jupyterhub.auth import LocalAuthenticator
from oauthenticator.oauth2 import OAuthLoginHandler, OAuthenticator
from tornado.auth import OAuth2Mixin
from tornado.httputil import url_concat
from tornado.httpclient import HTTPRequest, AsyncHTTPClient, HTTPError
class MyServiceMixin(OAuth2Mixin):
# authorize is the URL users are redirected to to authorize your service
_OAUTH_AUTHORIZE_URL = "https://myservice.biz/login/oauth/authorize"
# token is the URL JupyterHub accesses to finish the OAuth process
_OAUTH_ACCESS_TOKEN_URL = "https://myservice.biz/login/oauth/access_token"
class MyServiceLoginHandler(OAuthLoginHandler, MyServiceMixin):
pass
class GitHubOAuthenticator(OAuthenticator):
# login_service is the text displayed on the "Login with..." button
login_service = "My Service"
login_handler = MyServiceLoginHandler
async def authenticate(self, handler, data=None):
"""We set up auth_state based on additional GitHub info if we
receive it.
"""
code = handler.get_argument("code")
# TODO: Configure the curl_httpclient for tornado
http_client = AsyncHTTPClient()
# Exchange the OAuth code for an Access Token
# this is the TOKEN URL in your provider
params = dict(
client_id=self.client_id, client_secret=self.client_secret, code=code
)
url = url_concat("https://myservice.biz/login/oauth/access_token", params)
req = HTTPRequest(
url, method="POST", headers={"Accept": "application/json"}, body=''
)
resp = await http_client.fetch(req)
resp_json = json.loads(resp.body.decode('utf8', 'replace'))
if 'access_token' in resp_json:
access_token = resp_json['access_token']
elif 'error_description' in resp_json:
raise HTTPError(
403,
"An access token was not returned: {}".format(
resp_json['error_description']
),
)
else:
raise HTTPError(500, "Bad response: %s".format(resp))
# Determine who the logged in user is
# by using the new access token to make a request
# check with your OAuth provider for this URL.
# it could also be in the response to the token request,
# making this request unnecessary.
req = HTTPRequest(
"https://myservice.biz/api/user",
method="GET",
headers={"Authorization": f"Bearer {access_token}"},
)
resp = await http_client.fetch(req)
resp_json = json.loads(resp.body.decode('utf8', 'replace'))
# check the documentation for what field contains a unique username
# it might not be the 'username'!
username = resp_json["username"]
if not username:
# return None means that no user is authenticated
# and login has failed
return None
# here we can add additional checks such as against team whitelists
# if the OAuth provider has such a concept
# 'name' is the JupyterHub username
user_info = {"name": username}
# We can also persist auth state,
# which is information encrypted in the Jupyter database
# and can be passed to the Spawner for e.g. authenticated data access
# these fields are up to you, and not interpreted by JupyterHub
# see Authenticator.pre_spawn_start for how to use this information
user_info["auth_state"] = auth_state = {}
auth_state['access_token'] = access_token
auth_state['auth_reply'] = resp_json
return user_info
class LocalGitHubOAuthenticator(LocalAuthenticator, GitHubOAuthenticator):
"""A version that mixes in local system user creation"""
pass
| minrk/oauthenticator | docs/source/example-oauthenticator.py | Python | bsd-3-clause | 3,918 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE124_Buffer_Underwrite__char_alloca_loop_73b.cpp
Label Definition File: CWE124_Buffer_Underwrite.stack.label.xml
Template File: sources-sink-73b.tmpl.cpp
*/
/*
* @description
* CWE: 124 Buffer Underwrite
* BadSource: Set data pointer to before the allocated memory buffer
* GoodSource: Set data pointer to the allocated memory buffer
* Sinks: loop
* BadSink : Copy string to data using a loop
* Flow Variant: 73 Data flow: data passed in a list from one function to another in different source files
*
* */
#include "std_testcase.h"
#include <list>
#include <wchar.h>
using namespace std;
namespace CWE124_Buffer_Underwrite__char_alloca_loop_73
{
#ifndef OMITBAD
void badSink(list<char *> dataList)
{
/* copy data out of dataList */
char * data = dataList.back();
{
size_t i;
char source[100];
memset(source, 'C', 100-1); /* fill with 'C's */
source[100-1] = '\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copying data to memory before the destination buffer */
for (i = 0; i < 100; i++)
{
data[i] = source[i];
}
/* Ensure the destination buffer is null terminated */
data[100-1] = '\0';
printLine(data);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void goodG2BSink(list<char *> dataList)
{
char * data = dataList.back();
{
size_t i;
char source[100];
memset(source, 'C', 100-1); /* fill with 'C's */
source[100-1] = '\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copying data to memory before the destination buffer */
for (i = 0; i < 100; i++)
{
data[i] = source[i];
}
/* Ensure the destination buffer is null terminated */
data[100-1] = '\0';
printLine(data);
}
}
#endif /* OMITGOOD */
} /* close namespace */
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE124_Buffer_Underwrite/s01/CWE124_Buffer_Underwrite__char_alloca_loop_73b.cpp | C++ | bsd-3-clause | 2,053 |
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ------------------------------------------------------------------------
// Constant folding.
namespace sawzall {
class ConstantFoldingVisitor : public NodeVisitor {
public:
ConstantFoldingVisitor(Proc* proc) : proc_(proc) { }
protected:
// May be used in contexts which have different mechanisms
// for reporting warnings. So the client must provide this method.
virtual void Warning(const FileLine* fileline, const char* fmt, ...) = 0;
// For most nodes just visit the child nodes.
virtual void DoNode(Node* x) {
x->VisitChildren(this);
}
// Do not look inside functions.
virtual void DoFunction(Function* x) { }
virtual Expr* VisitBinary(Binary* x);
virtual Expr* VisitCall(Call* x);
virtual Expr* VisitConversion(Conversion* x);
virtual Expr* VisitDollar(Dollar* x);
virtual Expr* VisitRuntimeGuard(RuntimeGuard* x);
virtual Expr* VisitIndex(Index* x);
virtual Expr* VisitNew(New* x);
virtual Expr* VisitSlice(Slice* x);
// Regex is folded by the code generators
// Saw is not practical to fold
// Selector is not, but could be, folded when applied to a Composite
// Variable and TempVariable are not foldable, but see SubstitutionVisitor
private:
Proc* proc_;
};
// In addition to standard constant folding,
// encapsulates optimizations we can do at parse-time for expression
// referencing static variables.
class StaticVarFoldingVisitor : public ConstantFoldingVisitor {
public:
StaticVarFoldingVisitor(Proc* proc) : ConstantFoldingVisitor(proc) {}
private:
virtual void Warning(const FileLine* fileline, const char* fmt, ...) {}
virtual Expr* VisitVariable(Variable* x);
};
} // namespace sawzall
| xushiwei/szl | src/engine/constantfolding.h | C | bsd-3-clause | 2,275 |
class ServiceError(Exception):
"""Base class for exceptions in this module."""
pass
class UnsupportedFormatError(ServiceError):
"""Used to raise exceptions when a response doesn't match expected semantics or for failed version checks."""
pass
class MissingLayerError(ServiceError):
"""Used if expected layer could not be found in the service."""
def __init__(self, message):
self.message = message
| venicegeo/eventkit-cloud | eventkit_cloud/utils/services/errors.py | Python | bsd-3-clause | 454 |
package com.oracle.xmlns.apps.crmcommon.salesparties.salespartiesservice.types;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.oracle.xmlns.adf.svc.types.FindControl;
import com.oracle.xmlns.adf.svc.types.FindCriteria;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="findCriteria" type="{http://xmlns.oracle.com/adf/svc/types/}FindCriteria"/>
* <element name="findControl" type="{http://xmlns.oracle.com/adf/svc/types/}FindControl"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"findCriteria",
"findControl"
})
@XmlRootElement(name = "findMySalesAccountMyVC")
public class FindMySalesAccountMyVC {
@XmlElement(required = true)
protected FindCriteria findCriteria;
@XmlElement(required = true)
protected FindControl findControl;
/**
* Gets the value of the findCriteria property.
*
* @return
* possible object is
* {@link FindCriteria }
*
*/
public FindCriteria getFindCriteria() {
return findCriteria;
}
/**
* Sets the value of the findCriteria property.
*
* @param value
* allowed object is
* {@link FindCriteria }
*
*/
public void setFindCriteria(FindCriteria value) {
this.findCriteria = value;
}
/**
* Gets the value of the findControl property.
*
* @return
* possible object is
* {@link FindControl }
*
*/
public FindControl getFindControl() {
return findControl;
}
/**
* Sets the value of the findControl property.
*
* @param value
* allowed object is
* {@link FindControl }
*
*/
public void setFindControl(FindControl value) {
this.findControl = value;
}
}
| delkyd/Oracle-Cloud | PaaS_SaaS_Accelerator_RESTFulFacade/FusionProxy_SalesPartyService/src/com/oracle/xmlns/apps/crmcommon/salesparties/salespartiesservice/types/FindMySalesAccountMyVC.java | Java | bsd-3-clause | 2,508 |
# -*- coding: utf-8 -*-
from django.contrib import admin
from ionyweb.page.models import Page, Layout
admin.site.register(Page)
admin.site.register(Layout)
| makinacorpus/ionyweb | ionyweb/page/admin.py | Python | bsd-3-clause | 158 |
require 'spec_helper'
describe "booking_countries/edit" do
before(:each) do
@booking_country = assign(:booking_country, stub_model(BookingCountry,
:name => "MyString",
:group_id => 1
))
end
it "renders the edit booking_country form" do
render
# Run the generator again with the --webrat flag if you want to use webrat matchers
assert_select "form", :action => booking_countries_path(@booking_country), :method => "post" do
assert_select "input#booking_country_name", :name => "booking_country[name]"
assert_select "input#booking_country_group_id", :name => "booking_country[group_id]"
end
end
end
| sibanand-cis/spree_city_group | spec/views/booking_countries/edit.html.erb_spec.rb | Ruby | bsd-3-clause | 656 |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/extension_sync_data.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/version.h"
#include "sync/protocol/extension_specifics.pb.h"
#include "sync/protocol/sync.pb.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace extensions {
namespace {
const char kValidId[] = "abcdefghijklmnopabcdefghijklmnop";
const char kVersion[] = "1.0.0.1";
const char kValidUpdateUrl[] =
"https://clients2.google.com/service/update2/crx";
const char kName[] = "MyExtension";
// Serializes a protobuf structure (entity specifics) into an ExtensionSyncData
// and back again, and confirms that the input is the same as the output.
void ProtobufToSyncDataEqual(const sync_pb::EntitySpecifics& entity) {
syncer::SyncData sync_data =
syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity);
ExtensionSyncData extension_sync_data(sync_data);
syncer::SyncData output_sync_data = extension_sync_data.GetSyncData();
const sync_pb::ExtensionSpecifics& output =
output_sync_data.GetSpecifics().extension();
const sync_pb::ExtensionSpecifics& input = entity.extension();
// Check for field-by-field quality. It'd be nice if we could use
// AssertionResults here (instead of EXPECT_EQ) so that we could get valid
// line numbers, but it's not worth the ugliness of the verbose comparison.
EXPECT_EQ(input.id(), output.id());
EXPECT_EQ(input.name(), output.name());
EXPECT_EQ(input.version(), output.version());
EXPECT_EQ(input.update_url(), output.update_url());
EXPECT_EQ(input.enabled(), output.enabled());
EXPECT_EQ(input.incognito_enabled(), output.incognito_enabled());
EXPECT_EQ(input.remote_install(), output.remote_install());
EXPECT_EQ(input.installed_by_custodian(), output.installed_by_custodian());
EXPECT_EQ(input.has_all_urls_enabled(), output.has_all_urls_enabled());
if (input.has_all_urls_enabled())
EXPECT_EQ(input.all_urls_enabled(), output.all_urls_enabled());
}
// Serializes an ExtensionSyncData into a protobuf structure and back again, and
// confirms that the input is the same as the output.
void SyncDataToProtobufEqual(const ExtensionSyncData& input) {
syncer::SyncData sync_data = input.GetSyncData();
ExtensionSyncData output(sync_data);
EXPECT_EQ(input.id(), output.id());
EXPECT_EQ(input.uninstalled(), output.uninstalled());
EXPECT_EQ(input.enabled(), output.enabled());
EXPECT_EQ(input.incognito_enabled(), output.incognito_enabled());
EXPECT_EQ(input.remote_install(), output.remote_install());
EXPECT_EQ(input.installed_by_custodian(), output.installed_by_custodian());
EXPECT_EQ(input.all_urls_enabled(), output.all_urls_enabled());
EXPECT_TRUE(input.version().Equals(output.version()));
EXPECT_EQ(input.update_url(), output.update_url());
EXPECT_EQ(input.name(), output.name());
}
} // namespace
class ExtensionSyncDataTest : public testing::Test {
};
// Tests the conversion process from a protobuf to an ExtensionSyncData and vice
// versa.
TEST_F(ExtensionSyncDataTest, ExtensionSyncDataForExtension) {
sync_pb::EntitySpecifics entity;
sync_pb::ExtensionSpecifics* extension_specifics = entity.mutable_extension();
extension_specifics->set_id(kValidId);
extension_specifics->set_update_url(kValidUpdateUrl);
extension_specifics->set_enabled(false);
extension_specifics->set_incognito_enabled(true);
extension_specifics->set_remote_install(false);
extension_specifics->set_installed_by_custodian(false);
extension_specifics->set_all_urls_enabled(true);
extension_specifics->set_version(kVersion);
extension_specifics->set_name(kName);
// Check the serialize-deserialize process for proto to ExtensionSyncData.
ProtobufToSyncDataEqual(entity);
// Explicitly test that conversion to an ExtensionSyncData gets the correct
// result (otherwise we just know that conversion to/from a proto gives us
// the same result, but don't know that it's right).
ExtensionSyncData extension_sync_data;
extension_sync_data.PopulateFromExtensionSpecifics(*extension_specifics);
EXPECT_EQ(kValidId, extension_sync_data.id());
EXPECT_EQ(GURL(kValidUpdateUrl), extension_sync_data.update_url());
EXPECT_FALSE(extension_sync_data.enabled());
EXPECT_EQ(true, extension_sync_data.incognito_enabled());
EXPECT_FALSE(extension_sync_data.remote_install());
EXPECT_EQ(ExtensionSyncData::BOOLEAN_TRUE,
extension_sync_data.all_urls_enabled());
EXPECT_TRUE(Version(kVersion).Equals(extension_sync_data.version()));
EXPECT_EQ(std::string(kName), extension_sync_data.name());
// Check the serialize-deserialize process for ExtensionSyncData to proto.
SyncDataToProtobufEqual(extension_sync_data);
// The most important thing to test is the "all urls" bit, since it is a
// tri-state boolean (and thus has more logic). Also flip another bit for a
// sanity check.
extension_specifics->set_all_urls_enabled(false);
extension_specifics->set_incognito_enabled(false);
ProtobufToSyncDataEqual(entity);
extension_sync_data.PopulateFromExtensionSpecifics(*extension_specifics);
EXPECT_EQ(ExtensionSyncData::BOOLEAN_FALSE,
extension_sync_data.all_urls_enabled());
EXPECT_FALSE(extension_sync_data.incognito_enabled());
SyncDataToProtobufEqual(extension_sync_data);
extension_specifics->clear_all_urls_enabled();
ProtobufToSyncDataEqual(entity);
extension_sync_data.PopulateFromExtensionSpecifics(*extension_specifics);
EXPECT_FALSE(extension_specifics->has_all_urls_enabled());
EXPECT_EQ(ExtensionSyncData::BOOLEAN_UNSET,
extension_sync_data.all_urls_enabled());
SyncDataToProtobufEqual(extension_sync_data);
}
} // namespace extensions
| CTSRD-SOAAP/chromium-42.0.2311.135 | chrome/browser/extensions/extension_sync_data_unittest.cc | C++ | bsd-3-clause | 5,920 |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Module Index — django BMF alpha documentation</title>
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="top" title="django BMF alpha documentation" href="index.html"/>
<script src="_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="index.html" class="icon icon-home"> django BMF
</a>
<div class="version">
0.2.3
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul>
<li class="toctree-l1"><a class="reference internal" href="getting_started/index.html">Getting Started</a></li>
<li class="toctree-l1"><a class="reference internal" href="userguide/index.html">User Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="developing/index.html">Developing Applications</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial/index.html">Tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/philosophies.html">Philosophies</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/about-us.html">About Us</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/contributing.html">Contributing</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/todo.html">TODO-List</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/roadmap.html">Roadmap</a></li>
<li class="toctree-l1"><a class="reference internal" href="internals/changelog.html">Changelog</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">django BMF</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html">Docs</a> »</li>
<li></li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<h1>Python Module Index</h1>
<div class="modindex-jumpbox">
<a href="#cap-d"><strong>d</strong></a>
</div>
<table class="indextable modindextable" cellspacing="0" cellpadding="2">
<tr class="pcap"><td></td><td> </td><td></td></tr>
<tr class="cap" id="cap-d"><td></td><td>
<strong>d</strong></td><td></td></tr>
<tr>
<td><img src="_static/minus.png" class="toggler"
id="toggle-1" style="display: none" alt="-" /></td>
<td>
<code class="xref">djangobmf</code></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="userguide/accounting.html#module-djangobmf.contrib.accounting"><code class="xref">djangobmf.contrib.accounting</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/accounting.html#module-djangobmf.contrib.accounting.models"><code class="xref">djangobmf.contrib.accounting.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/address.html#module-djangobmf.contrib.address.models"><code class="xref">djangobmf.contrib.address.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/customer.html#module-djangobmf.contrib.customer.models"><code class="xref">djangobmf.contrib.customer.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/employee.html#module-djangobmf.contrib.employee.models"><code class="xref">djangobmf.contrib.employee.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/invoice.html#module-djangobmf.contrib.invoice.models"><code class="xref">djangobmf.contrib.invoice.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/position.html#module-djangobmf.contrib.position.models"><code class="xref">djangobmf.contrib.position.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/product.html#module-djangobmf.contrib.product.models"><code class="xref">djangobmf.contrib.product.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/project.html#module-djangobmf.contrib.project.models"><code class="xref">djangobmf.contrib.project.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/quotation.html#module-djangobmf.contrib.quotation.models"><code class="xref">djangobmf.contrib.quotation.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/task.html#module-djangobmf.contrib.task.models"><code class="xref">djangobmf.contrib.task.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/tax.html#module-djangobmf.contrib.taxing.models"><code class="xref">djangobmf.contrib.taxing.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/team.html#module-djangobmf.contrib.team.models"><code class="xref">djangobmf.contrib.team.models</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>
<a href="developing/contrib/timesheet.html#module-djangobmf.contrib.timesheet.models"><code class="xref">djangobmf.contrib.timesheet.models</code></a></td><td>
<em></em></td></tr>
</table>
</div>
</div>
<footer>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2013, Sebastian Braun.
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'alpha',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
</body>
</html> | glomium/django-bmf.org | docs/dev/py-modindex.html | HTML | bsd-3-clause | 8,860 |
package com.compositesw.services.system.admin.execute;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for rowValueList complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="rowValueList">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="row" type="{http://www.compositesw.com/services/system/admin/execute}valueList" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rowValueList", propOrder = {
"row"
})
public class RowValueList {
protected List<ValueList> row;
/**
* Gets the value of the row property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the row property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getRow().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ValueList }
*
*
*/
public List<ValueList> getRow() {
if (row == null) {
row = new ArrayList<ValueList>();
}
return this.row;
}
}
| cisco/PDTool | CISAdminApi8.0.0/src/com/compositesw/services/system/admin/execute/RowValueList.java | Java | bsd-3-clause | 1,842 |
/*
Copyright (C) 2014 Parrot SA
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 Parrot nor the names
of its contributors may be used to endorse or promote products
derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
*/
/**
* @file ARSTREAM_Sender.h
* @brief Stream sender over network
* @date 03/21/2013
* @author nicolas.brulez@parrot.com
*/
#ifndef _ARSTREAM_SENDER_H_
#define _ARSTREAM_SENDER_H_
/*
* System Headers
*/
#include <inttypes.h>
/*
* ARSDK Headers
*/
#include <libARNetwork/ARNETWORK_Manager.h>
#include <libARStream/ARSTREAM_Filter.h>
#include <libARStream/ARSTREAM_Error.h>
/*
* Macros
*/
/*
* Types
*/
/**
* @brief Callback status values
*/
typedef enum {
ARSTREAM_SENDER_STATUS_FRAME_SENT = 0, /**< Frame was sent and acknowledged by peer */
ARSTREAM_SENDER_STATUS_FRAME_CANCEL, /**< Frame was not sent, and was cancelled by a new frame */
ARSTREAM_SENDER_STATUS_FRAME_LATE_ACK, /**< We received a full ack for an old frame. The callback will be called with null pointer and zero size. */
ARSTREAM_SENDER_STATUS_MAX,
} eARSTREAM_SENDER_STATUS;
/**
* @brief Callback type for sender informations
* This callback is called when a frame pointer is no longer needed by the library.
* This can occur when a frame is acknowledged, cancelled, or if a network error happened.
*
* This callback is also used when we receive the first "full-ack" for an old frame. In
* this case, the framePointer and frameSize arguments are unused and set to NULL. There
* is no way to identify the "old" frame, but the library guarantees that the LATE_ACK status
* will only be called for previously cancelled frames, and at most once per cancelled frame.
*
* @param[in] status Why the call was made
* @param[in] framePointer Pointer to the frame which was sent/cancelled
* @param[in] frameSize Size, in bytes, of the frame
* @param[in] custom Custom pointer passed during ARSTREAM_Sender_New
* @warning If the status is ARSTREAM_SENDER_STATUS_FRAME_LATE_ACK, then the framePointer will be NULL.
* @see eARSTREAM_SENDER_STATUS
*/
typedef void (*ARSTREAM_Sender_FrameUpdateCallback_t)(eARSTREAM_SENDER_STATUS status, uint8_t *framePointer, uint32_t frameSize, void *custom);
/**
* @brief An ARSTREAM_Sender_t instance allow streaming frames over a network
*/
typedef struct ARSTREAM_Sender_t ARSTREAM_Sender_t;
/**
* @brief Default minimum wait time for ARSTREAM_Sender_SetTimeBetweenRetries calls
*/
#define ARSTREAM_SENDER_DEFAULT_MINIMUM_TIME_BETWEEN_RETRIES_MS (15)
/**
* @brief Default maximum wait time for ARSTREAM_Sender_SetTimeBetweenRetries calls
*/
#define ARSTREAM_SENDER_DEFAULT_MAXIMUM_TIME_BETWEEN_RETRIES_MS (50)
/**
* @brief "Infinite" time.
* Use this time as both minimum and maximum time in ARSTREAM_Sender_SetTimeBetweenRetries
* to disable retries.
* @warning Disabling the retry system will lower the reliability of the stream!
*/
#define ARSTREAM_SENDER_INFINITE_TIME_BETWEEN_RETRIES (100000)
/*
* Functions declarations
*/
/**
* @brief Sets an ARNETWORK_IOBufferParam_t to describe a stream data buffer
* @param[in] bufferParams Pointer to the ARNETWORK_IOBufferParam_t to set
* @param[in] bufferID ID to set in the ARNETWORK_IOBufferParam_t
* @param[in] maxFragmentSize Maximum allowed size for a video data fragment. Video frames larger that will be fragmented.
* @param[in] maxNumberOfFragment number maximum of fragment of one frame.
*/
void ARSTREAM_Sender_InitStreamDataBuffer (ARNETWORK_IOBufferParam_t *bufferParams, int bufferID, int maxFragmentSize, uint32_t maxFragmentPerFrame);
/**
* @brief Sets an ARNETWORK_IOBufferParam_t to describe a stream ack buffer
* @param[in] bufferParams Pointer to the ARNETWORK_IOBufferParam_t to set
* @param[in] bufferID ID to set in the ARNETWORK_IOBufferParam_t
*/
void ARSTREAM_Sender_InitStreamAckBuffer (ARNETWORK_IOBufferParam_t *bufferParams, int bufferID);
/**
* @brief Creates a new ARSTREAM_Sender_t
* @warning This function allocates memory. An ARSTREAM_Sender_t muse be deleted by a call to ARSTREAM_Sender_Delete
*
* @param[in] manager Pointer to a valid and connected ARNETWORK_Manager_t, which will be used to stream frames
* @param[in] dataBufferID ID of a StreamDataBuffer available within the manager
* @param[in] ackBufferID ID of a StreamAckBuffer available within the manager
* @param[in] callback The status update callback which will be called every time the status of a send-frame is updated
* @param[in] framesBufferSize Number of frames that the ARSTREAM_Sender_t instance will be able to hold in queue
* @param[in] maxFragmentSize Maximum allowed size for a video data fragment. Video frames larger that will be fragmented.
* @param[in] maxNumberOfFragment number maximum of fragment of one frame.
* @param[in] custom Custom pointer which will be passed to callback
* @param[out] error Optionnal pointer to an eARSTREAM_ERROR to hold any error information
* @return A pointer to the new ARSTREAM_Sender_t, or NULL if an error occured
*
* @note framesBufferSize should be greater than the number of frames between two I-Frames
*
* @see ARSTREAM_Sender_InitStreamDataBuffer()
* @see ARSTREAM_Sender_InitStreamAckBuffer()
* @see ARSTREAM_Sender_StopSender()
* @see ARSTREAM_Sender_Delete()
*/
ARSTREAM_Sender_t* ARSTREAM_Sender_New (ARNETWORK_Manager_t *manager, int dataBufferID, int ackBufferID, ARSTREAM_Sender_FrameUpdateCallback_t callback, uint32_t framesBufferSize, uint32_t maxFragmentSize, uint32_t maxNumberOfFragment, void *custom, eARSTREAM_ERROR *error);
/**
* @brief Sets the minimum and maximum time between retries.
* Setting a small retry time might increase reliability, at the cost of network and cpu loads.
* Setting a high retry time might decrease reliability, but also reduce the network and cpu loads.
* These rules apply to both the minimum and the maximum time.
*
* The library selects a wait time between the two bounds using data retrieved from the ARNETWORK_Manager_t.
*
* If the minimum and maximum wait times are equal, then the library will always use this time.
*
* @note To reset to default values, use ARSTREAM_SENDER_DEFAULT_MINIMUM_TIME_BETWEEN_RETRIES_MS and ARSTREAM_SENDER_DEFAULT_MAXIMUM_TIME_BETWEEN_RETRIES_MS.
* @note To disable retries, use ARSTREAM_SENDER_INFINITE_TIME_BETWEEN_RETRIES as both minimum and maximum time.
* @warning Setting a too low maximum wait time might create a very high network bandwidth, and a very high cpu load.
* @warning Setting a too big minimum wait time (i.e. greater than the time between two flush frames) will effectively disable retries.
* @param minWaitTimeMs The minimum time between two retries, in miliseconds.
* @param maxWaitTimeMs The maximum time between two retries, in miliseconds.
*
* @return ARSTREAM_OK if the new time range is set.
* @return ARSTREAM_ERROR_BAD_PARAMETERS if sender is NULL, or if minWaitTimeMs is greater than maxWaitTimeMs.
*/
eARSTREAM_ERROR ARSTREAM_Sender_SetTimeBetweenRetries (ARSTREAM_Sender_t *sender, int minWaitTimeMs, int maxWaitTimeMs);
/**
* @brief Stops a running ARSTREAM_Sender_t
* @warning Once stopped, an ARSTREAM_Sender_t can not be restarted
*
* @param[in] sender The ARSTREAM_Sender_t to stop
*
* @note Calling this function multiple times has no effect
*/
void ARSTREAM_Sender_StopSender (ARSTREAM_Sender_t *sender);
/**
* @brief Deletes an ARSTREAM_Sender_t
* @warning This function should NOT be called on a running ARSTREAM_Sender_t
*
* @param sender Pointer to the ARSTREAM_Sender_t * to delete
*
* @return ARSTREAM_OK if the ARSTREAM_Sender_t was deleted
* @return ARSTREAM_ERROR_BUSY if the ARSTREAM_Sender_t is still busy and can not be stopped now (probably because ARSTREAM_Sender_StopSender() was not called yet)
* @return ARSTREAM_ERROR_BAD_PARAMETERS if sender does not point to a valid ARSTREAM_Sender_t
*
* @note The library use a double pointer, so it can set *sender to NULL after freeing it
*/
eARSTREAM_ERROR ARSTREAM_Sender_Delete (ARSTREAM_Sender_t **sender);
/**
* @brief Sends a new frame
*
* @param[in] sender The ARSTREAM_Sender_t which will try to send the frame
* @param[in] frameBuffer pointer to the frame in memory
* @param[in] frameSize size of the frame in memory
* @param[in] flushPreviousFrames Boolean-like flag (0/1). If active, tells the sender to flush the frame queue when adding this frame.
* @param[out] nbPreviousFrames Optionnal int pointer which will store the number of frames previously in the buffer (even if the buffer is flushed)
* @return ARSTREAM_OK if no error happened
* @return ARSTREAM_ERROR_BAD_PARAMETERS if the sender or frameBuffer pointer is invalid, or if frameSize is zero
* @return ARSTREAM_ERROR_FRAME_TOO_LARGE if the frameSize is greater that the maximum frame size of the libARStream (typically 128000 bytes)
* @return ARSTREAM_ERROR_QUEUE_FULL if the frame can not be added to queue. This value can not happen if flushPreviousFrames is active
*/
eARSTREAM_ERROR ARSTREAM_Sender_SendNewFrame (ARSTREAM_Sender_t *sender, uint8_t *frameBuffer, uint32_t frameSize, int flushPreviousFrames, int *nbPreviousFrames);
/**
* @brief Flushes all currently queued frames
*
* @param[in] sender The ARSTREAM_Sender_t to be flushed.
* @return ARSTREAM_OK if no error occured.
* @return ARSTREAM_ERROR_BAD_PARAMETERS if the sender is invalid.
*/
eARSTREAM_ERROR ARSTREAM_Sender_FlushFramesQueue (ARSTREAM_Sender_t *sender);
/**
* @brief Runs the data loop of the ARSTREAM_Sender_t
* @warning This function never returns until ARSTREAM_Sender_StopSender() is called. Thus, it should be called on its own thread
* @post Stop the ARSTREAM_Sender_t by calling ARSTREAM_Sender_StopSender() before joining the thread calling this function
* @param[in] ARSTREAM_Sender_t_Param A valid (ARSTREAM_Sender_t *) casted as a (void *)
*/
void* ARSTREAM_Sender_RunDataThread (void *ARSTREAM_Sender_t_Param);
/**
* @brief Runs the acknowledge loop of the ARSTREAM_Sender_t
* @warning This function never returns until ARSTREAM_Sender_StopSender() is called. Thus, it should be called on its own thread
* @post Stop the ARSTREAM_Sender_t by calling ARSTREAM_Sender_StopSender() before joining the thread calling this function
* @param[in] ARSTREAM_Sender_t_Param A valid (ARSTREAM_Sender_t *) casted as a (void *)
*/
void* ARSTREAM_Sender_RunAckThread (void *ARSTREAM_Sender_t_Param);
/**
* @brief Gets the estimated network efficiency for the ARSTREAM link
* An efficiency of 1.0f means that we did not do any retries
* @warning This function is a debug-only function and will disappear on release builds
* @param[in] sender The ARSTREAM_Sender_t
*/
float ARSTREAM_Sender_GetEstimatedEfficiency (ARSTREAM_Sender_t *sender);
/**
* @brief Gets the custom pointer associated with the sender
* @param[in] sender The ARSTREAM_Sender_t
* @return The custom pointer associated with this sender, or NULL if sender does not point to a valid sender
*/
void* ARSTREAM_Sender_GetCustom (ARSTREAM_Sender_t *sender);
/**
* @brief Adds a new ARSTREAM_Filter_t to the sender
* @param[in] sender The ARSTREAM_Sender_t
* @param[in] filter The ARSTREAM_Filter_t to add (at the end of the filter chain !)
*
* @return ARSTREAM_OK if the filter was added
* @return ARSTREAM_ERROR_BUSY if the ARSTREAM_Sender_t is running (you cannot add filters to a running instance)
* @return ARSTREAM_ERROR_BAD_PARAMETERS if sender does not point to a valid ARSTREAM_Sender_t
*
* @note The sender will keep a reference on the filter until deleted, so you should not invalidate the filter before stopping/deleting the sender.
*/
eARSTREAM_ERROR ARSTREAM_Sender_AddFilter (ARSTREAM_Sender_t *sender, ARSTREAM_Filter_t *filter);
#endif /* _ARSTREAM_SENDER_H_ */
| Parrot-Developers/libARStream | Includes/libARStream/ARSTREAM_Sender.h | C | bsd-3-clause | 13,125 |
from distutils.core import setup
setup(
name='PyMonad',
version='1.3',
author='Jason DeLaat',
author_email='jason.develops@gmail.com',
packages=['pymonad', 'pymonad.test'],
url='https://bitbucket.org/jason_delaat/pymonad',
license=open('LICENSE.txt').read(),
description='Collection of classes for programming with functors, applicative functors and monads.',
long_description=open('README.txt').read() + open("CHANGES.txt").read(),
classifiers=[ "Intended Audience :: Developers"
, "License :: OSI Approved :: BSD License"
, "Operating System :: OS Independent"
, "Programming Language :: Python :: 2.7"
, "Programming Language :: Python :: 3"
, "Topic :: Software Development"
, "Topic :: Software Development :: Libraries"
, "Topic :: Utilities"
],
)
| fnl/pymonad | setup.py | Python | bsd-3-clause | 824 |
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Module containing the various stages that a builder runs."""
import json
import logging
import os
from chromite.cbuildbot import commands
from chromite.cbuildbot import failures_lib
from chromite.cbuildbot import cbuildbot_run
from chromite.cbuildbot.stages import artifact_stages
from chromite.lib import cros_build_lib
from chromite.lib import gs
from chromite.lib import osutils
from chromite.lib import parallel
from chromite.lib import timeout_util
class InvalidTestConditionException(Exception):
"""Raised when pre-conditions for a test aren't met."""
class SignerTestStage(artifact_stages.ArchivingStage):
"""Run signer related tests."""
option_name = 'tests'
config_name = 'signer_tests'
# If the signer tests take longer than 30 minutes, abort. They usually take
# five minutes to run.
SIGNER_TEST_TIMEOUT = 1800
def PerformStage(self):
if not self.archive_stage.WaitForRecoveryImage():
raise InvalidTestConditionException('Missing recovery image.')
with timeout_util.Timeout(self.SIGNER_TEST_TIMEOUT):
commands.RunSignerTests(self._build_root, self._current_board)
class SignerResultsTimeout(failures_lib.StepFailure):
"""The signer did not produce any results inside the expected time."""
class SignerFailure(failures_lib.StepFailure):
"""The signer returned an error result."""
class MissingInstructionException(failures_lib.StepFailure):
"""We didn't receive the list of signing instructions PushImage uploaded."""
class MalformedResultsException(failures_lib.StepFailure):
"""The Signer results aren't formatted as we expect."""
class PaygenSigningRequirementsError(failures_lib.StepFailure):
"""Paygen stage can't run if signing failed."""
class PaygenCrostoolsNotAvailableError(failures_lib.StepFailure):
"""Paygen stage can't run if signing failed."""
class PaygenNoPaygenConfigForBoard(failures_lib.StepFailure):
"""Paygen can't run with a release.conf config for the board."""
class PaygenStage(artifact_stages.ArchivingStage):
"""Stage that generates release payloads.
If this stage is created with a 'channels' argument, it can run
independantly. Otherwise, it's dependent on values queued up by
the ArchiveStage (push_image).
"""
option_name = 'paygen'
config_name = 'paygen'
# Poll for new results every 30 seconds.
SIGNING_PERIOD = 30
# Timeout for PushImage to finish uploading images. 2 hours in seconds.
PUSHIMAGE_TIMEOUT = 2 * 60 * 60
# Timeout for the signing process. 2 hours in seconds.
SIGNING_TIMEOUT = 2 * 60 * 60
FINISHED = 'finished'
def __init__(self, builder_run, board, archive_stage, channels=None,
**kwargs):
"""Init that accepts the channels argument, if present.
Args:
builder_run: See builder_run on ArchivingStage.
board: See board on ArchivingStage.
archive_stage: See archive_stage on ArchivingStage.
channels: Explicit list of channels to generate payloads for.
If empty, will instead wait on values from push_image.
Channels is normally None in release builds, and normally set
for trybot 'payloads' builds.
"""
super(PaygenStage, self).__init__(builder_run, board, archive_stage,
**kwargs)
self.signing_results = {}
self.channels = channels
def _HandleStageException(self, exc_info):
"""Override and don't set status to FAIL but FORGIVEN instead."""
exc_type, exc_value, _exc_tb = exc_info
# If Paygen fails to find anything needed in release.conf, treat it
# as a warning, not a failure. This is common during new board bring up.
if issubclass(exc_type, PaygenNoPaygenConfigForBoard):
return self._HandleExceptionAsWarning(exc_info)
# If the exception is a TestLabFailure that means we couldn't schedule the
# test. We don't fail the build for that. We do the CompoundFailure dance,
# because that's how we'll get failures from background processes returned
# to us.
if (issubclass(exc_type, failures_lib.TestLabFailure) or
(issubclass(exc_type, failures_lib.CompoundFailure) and
exc_value.MatchesFailureType(failures_lib.TestLabFailure))):
return self._HandleExceptionAsWarning(exc_info)
return super(PaygenStage, self)._HandleStageException(exc_info)
def _JsonFromUrl(self, gs_ctx, url):
"""Fetch a GS Url, and parse it as Json.
Args:
gs_ctx: GS Context.
url: Url to fetch and parse.
Returns:
None if the Url doesn't exist.
Parsed Json structure if it did.
Raises:
MalformedResultsException if it failed to parse.
"""
try:
signer_txt = gs_ctx.Cat(url).output
except gs.GSNoSuchKey:
return None
try:
return json.loads(signer_txt)
except ValueError:
# We should never see malformed Json, even for intermediate statuses.
raise MalformedResultsException(signer_txt)
def _SigningStatusFromJson(self, signer_json):
"""Extract a signing status from a signer result Json DOM.
Args:
signer_json: The parsed json status from a signer operation.
Returns:
string with a simple status: 'passed', 'failed', 'downloading', etc,
or '' if the json doesn't contain a status.
"""
return (signer_json or {}).get('status', {}).get('status', '')
def _CheckForResults(self, gs_ctx, instruction_urls_per_channel,
channel_notifier):
"""timeout_util.WaitForSuccess func to check a list of signer results.
Args:
gs_ctx: Google Storage Context.
instruction_urls_per_channel: Urls of the signer result files
we're expecting.
channel_notifier: BackgroundTaskRunner into which we push channels for
processing.
Returns:
Number of results not yet collected.
"""
COMPLETED_STATUS = ('passed', 'failed')
# Assume we are done, then try to prove otherwise.
results_completed = True
for channel in instruction_urls_per_channel.keys():
self.signing_results.setdefault(channel, {})
if (len(self.signing_results[channel]) ==
len(instruction_urls_per_channel[channel])):
continue
for url in instruction_urls_per_channel[channel]:
# Convert from instructions URL to instructions result URL.
url += '.json'
# We already have a result for this URL.
if url in self.signing_results[channel]:
continue
signer_json = self._JsonFromUrl(gs_ctx, url)
if self._SigningStatusFromJson(signer_json) in COMPLETED_STATUS:
# If we find a completed result, remember it.
self.signing_results[channel][url] = signer_json
# If we don't have full results for this channel, we aren't done
# waiting.
if (len(self.signing_results[channel]) !=
len(instruction_urls_per_channel[channel])):
results_completed = False
continue
# If we reach here, the channel has just been completed for the first
# time.
# If all results 'passed' the channel was successfully signed.
channel_success = True
for signer_result in self.signing_results[channel].values():
if self._SigningStatusFromJson(signer_result) != 'passed':
channel_success = False
# If we successfully completed the channel, inform paygen.
if channel_success:
channel_notifier(channel)
return results_completed
def _WaitForPushImage(self):
"""Block until push_image data is ready.
Returns:
Push_image results, expected to be of the form:
{ 'channel': ['gs://instruction_uri1', 'gs://signer_instruction_uri2'] }
Raises:
MissingInstructionException: If push_image sent us an error, or timed out.
"""
try:
instruction_urls_per_channel = self.board_runattrs.GetParallel(
'instruction_urls_per_channel', timeout=self.PUSHIMAGE_TIMEOUT)
except cbuildbot_run.AttrTimeoutError:
instruction_urls_per_channel = None
# A value of None signals an error, either in PushImage, or a timeout.
if instruction_urls_per_channel is None:
raise MissingInstructionException('PushImage results not available.')
return instruction_urls_per_channel
def _WaitForSigningResults(self,
instruction_urls_per_channel,
channel_notifier):
"""Do the work of waiting for signer results and logging them.
Args:
instruction_urls_per_channel: push_image data (see _WaitForPushImage).
channel_notifier: BackgroundTaskRunner into which we push channels for
processing.
Raises:
ValueError: If the signer result isn't valid json.
RunCommandError: If we are unable to download signer results.
"""
gs_ctx = gs.GSContext(dry_run=self._run.debug)
try:
cros_build_lib.Info('Waiting for signer results.')
timeout_util.WaitForReturnTrue(
self._CheckForResults,
func_args=(gs_ctx, instruction_urls_per_channel, channel_notifier),
timeout=self.SIGNING_TIMEOUT, period=self.SIGNING_PERIOD)
except timeout_util.TimeoutError:
msg = 'Image signing timed out.'
cros_build_lib.Error(msg)
cros_build_lib.PrintBuildbotStepText(msg)
raise SignerResultsTimeout(msg)
# Log all signer results, then handle any signing failures.
failures = []
for url_results in self.signing_results.values():
for url, signer_result in url_results.iteritems():
result_description = os.path.basename(url)
cros_build_lib.PrintBuildbotStepText(result_description)
cros_build_lib.Info('Received results for: %s', result_description)
cros_build_lib.Info(json.dumps(signer_result, indent=4))
status = self._SigningStatusFromJson(signer_result)
if status != 'passed':
failures.append(result_description)
cros_build_lib.Error('Signing failed for: %s', result_description)
if failures:
cros_build_lib.Error('Failure summary:')
for failure in failures:
cros_build_lib.Error(' %s', failure)
raise SignerFailure(failures)
def PerformStage(self):
"""Do the work of generating our release payloads."""
# Convert to release tools naming for boards.
board = self._current_board.replace('_', '-')
version = self._run.attrs.release_tag
assert version, "We can't generate payloads without a release_tag."
logging.info("Generating payloads for: %s, %s", board, version)
# Test to see if the current board has a Paygen configuration. We do
# this here, no in the sub-process so we don't have to pass back a
# failure reason.
try:
from crostools.lib import paygen_build_lib
paygen_build_lib.ValidateBoardConfig(board)
except paygen_build_lib.BoardNotConfigured:
raise PaygenNoPaygenConfigForBoard(
'No release.conf entry was found for board %s. Get a TPM to fix.' %
board)
except ImportError:
raise PaygenCrostoolsNotAvailableError()
with parallel.BackgroundTaskRunner(self._RunPaygenInProcess) as per_channel:
def channel_notifier(channel):
per_channel.put((channel, board, version, self._run.debug,
self._run.config.paygen_skip_testing,
self._run.config.paygen_skip_delta_payloads))
if self.channels:
logging.info("Using explicit channels: %s", self.channels)
# If we have an explicit list of channels, use it.
for channel in self.channels:
channel_notifier(channel)
else:
instruction_urls_per_channel = self._WaitForPushImage()
self._WaitForSigningResults(instruction_urls_per_channel,
channel_notifier)
def _RunPaygenInProcess(self, channel, board, version, debug,
skip_test_payloads, skip_delta_payloads):
"""Helper for PaygenStage that invokes payload generation.
This method is intended to be safe to invoke inside a process.
Args:
channel: Channel of payloads to generate ('stable', 'beta', etc)
board: Board of payloads to generate ('x86-mario', 'x86-alex-he', etc)
version: Version of payloads to generate.
debug: Flag telling if this is a real run, or a test run.
skip_test_payloads: Skip generating test payloads, and auto tests.
skip_delta_payloads: Skip generating delta payloads.
"""
# TODO(dgarrett): Remove when crbug.com/341152 is fixed.
# These modules are imported here because they aren't always available at
# cbuildbot startup.
# pylint: disable=F0401
try:
from crostools.lib import gspaths
from crostools.lib import paygen_build_lib
except ImportError:
# We can't generate payloads without crostools.
raise PaygenCrostoolsNotAvailableError()
# Convert to release tools naming for channels.
if not channel.endswith('-channel'):
channel += '-channel'
with osutils.TempDir(sudo_rm=True) as tempdir:
# Create the definition of the build to generate payloads for.
build = gspaths.Build(channel=channel,
board=board,
version=version)
try:
# Generate the payloads.
self._PrintLoudly('Starting %s, %s, %s' % (channel, version, board))
paygen_build_lib.CreatePayloads(build,
work_dir=tempdir,
dry_run=debug,
run_parallel=True,
run_on_builder=True,
skip_delta_payloads=skip_delta_payloads,
skip_test_payloads=skip_test_payloads,
skip_autotest=skip_test_payloads)
except (paygen_build_lib.BuildFinished,
paygen_build_lib.BuildLocked,
paygen_build_lib.BuildSkip) as e:
# These errors are normal if it's possible for another process to
# work on the same build. This process could be a Paygen server, or
# another builder (perhaps by a trybot generating payloads on request).
#
# This means the build was finished by the other process, is already
# being processed (so the build is locked), or that it's been marked
# to skip (probably done manually).
cros_build_lib.Info('Paygen skipped because: %s', e)
| bpsinc-native/src_third_party_chromite | cbuildbot/stages/release_stages.py | Python | bsd-3-clause | 14,805 |
from __future__ import print_function
from __future__ import division
from __future__ import unicode_literals
from __future__ import absolute_import
# Standard imports
from future import standard_library
standard_library.install_aliases()
from builtins import *
from past.utils import old_div
import unittest
import json
import logging
import re
from datetime import datetime, timedelta
# Our imports
from emission.analysis.result import carbon
import emission.core.get_database as edb
from emission.core.get_database import get_mode_db, get_section_db
import emission.tests.common as etc
from emission.core import common
class TestCarbon(unittest.TestCase):
def setUp(self):
from copy import copy
self.testUsers = ["test@example.com", "best@example.com", "fest@example.com",
"rest@example.com", "nest@example.com"]
self.serverName = 'localhost'
# Sometimes, we may have entries left behind in the database if one of the tests failed
# or threw an exception, so let us start by cleaning up all entries
etc.dropAllCollections(edb._get_current_db())
self.ModesColl = get_mode_db()
self.assertEquals(self.ModesColl.estimated_document_count(), 0)
etc.loadTable(self.serverName, "Stage_Modes", "emission/tests/data/modes.json")
etc.loadTable(self.serverName, "Stage_Sections", "emission/tests/data/testCarbonFile")
self.SectionsColl = get_section_db()
self.walkExpect = 1057.2524056424411
self.busExpect = 2162.668467546699
self.busCarbon = old_div(267.0,1609)
self.airCarbon = old_div(217.0,1609)
self.driveCarbon = old_div(278.0,1609)
self.busOptimalCarbon = old_div(92.0,1609)
self.now = datetime.now()
self.dayago = self.now - timedelta(days=1)
self.weekago = self.now - timedelta(weeks = 1)
for section in self.SectionsColl.find():
section['section_start_datetime'] = self.dayago
section['section_end_datetime'] = self.dayago + timedelta(hours = 1)
if section['confirmed_mode'] == 5:
airSection = copy(section)
airSection['confirmed_mode'] = 9
airSection['_id'] = section['_id'] + "_air"
self.SectionsColl.insert(airSection)
# print("Section start = %s, section end = %s" %
# (section['section_start_datetime'], section['section_end_datetime']))
self.SectionsColl.save(section)
def tearDown(self):
for testUser in self.testUsers:
etc.purgeSectionData(self.SectionsColl, testUser)
self.ModesColl.remove()
self.assertEquals(self.ModesColl.estimated_document_count(), 0)
def getMyQuerySpec(self, user, modeId):
return common.getQuerySpec(user, modeId, self.weekago, self.now)
def testGetModes(self):
modes = carbon.getAllModes()
for mode in modes:
print(mode['mode_id'], mode['mode_name'])
self.assertEquals(len(modes), 9)
def testGetDisplayModes(self):
modes = carbon.getDisplayModes()
for mode in modes:
print(mode['mode_id'], mode['mode_name'])
# skipping transport, underground and not a trip
self.assertEquals(len(modes), 8)
def testGetTripCountForMode(self):
modes = carbon.getDisplayModes()
# try different modes
self.assertEqual(carbon.getTripCountForMode("test@example.com", 1, self.weekago, self.now), 1) # walk
self.assertEqual(carbon.getTripCountForMode("test@example.com", 5, self.weekago, self.now), 1) # bus
self.assertEqual(carbon.getTripCountForMode("test@example.com", 9, self.weekago, self.now), 1) # bus
# try different users
self.assertEqual(carbon.getTripCountForMode("best@example.com", 1, self.weekago, self.now), 1) # walk
self.assertEqual(carbon.getTripCountForMode("rest@example.com", 5, self.weekago, self.now), 1) # bus
# try to sum across users
# We have 5 users - best, fest, rest, nest and test
self.assertEqual(carbon.getTripCountForMode(None, 1, self.weekago, self.now), 5) # walk
self.assertEqual(carbon.getTripCountForMode(None, 5, self.weekago, self.now), 5) # bus
def testTotalModeShare(self):
modeshare = carbon.getModeShare(None, self.weekago, self.now)
self.assertEqual(modeshare['walking'], 5)
self.assertEqual(modeshare['bus'], 5)
self.assertEqual(modeshare['cycling'], 0)
self.assertEqual(modeshare['car'], 0)
self.assertEqual(modeshare['train'], 0)
# self.assertFalse(modeshare.keys() contains 'not a trip')
# self.assertFalse(modeshare.keys() contains 'transport')
def testMyModeShare(self):
modeshare = carbon.getModeShare('fest@example.com', self.weekago, self.now)
print(modeshare)
self.assertEqual(modeshare['walking'], 1)
self.assertEqual(modeshare['bus'], 1)
self.assertEqual(modeshare['cycling'], 0)
self.assertEqual(modeshare['car'], 0)
self.assertEqual(modeshare['train'], 0)
# self.assertFalse(modeshare.keys() contains 'not a trip')
# self.assertFalse(modeshare.keys() contains 'transport')
def testDistanceForMode(self):
# try different modes
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec("test@example.com", 1)),
self.walkExpect) # walk
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec("test@example.com", 5)),
self.busExpect) # bus
# try different users
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec("best@example.com", 1)), self.walkExpect) # walk
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec("rest@example.com", 5)), self.busExpect) # bus
# try to sum across users
# We have 5 users - best, fest, rest, nest and test
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec(None, 1)), len(self.testUsers) * self.walkExpect) # walk
self.assertEqual(carbon.getDistanceForMode(self.getMyQuerySpec(None, 5)), len(self.testUsers) * self.busExpect) # bus
def testMyModeDistance(self):
myModeDistance = carbon.getModeShareDistance('fest@example.com', self.weekago, self.now)
self.assertEqual(myModeDistance['walking'], self.walkExpect)
self.assertEqual(myModeDistance['cycling'], 0)
self.assertEqual(myModeDistance['bus'], self.busExpect)
self.assertEqual(myModeDistance['train'], 0)
def testTotalModeDistance(self):
totalModeDistance = carbon.getModeShareDistance(None, self.weekago, self.now)
self.assertEqual(totalModeDistance['walking'], len(self.testUsers) * self.walkExpect)
self.assertEqual(totalModeDistance['cycling'], 0)
self.assertEqual(totalModeDistance['bus'], len(self.testUsers) * self.busExpect)
self.assertEqual(totalModeDistance['train'], 0)
def testMyCarbonFootprint(self):
myModeDistance = carbon.getModeCarbonFootprint('fest@example.com', carbon.carbonFootprintForMode, self.weekago, self.now)
self.assertEqual(myModeDistance['walking'], 0)
self.assertEqual(myModeDistance['cycling'], 0)
self.assertEqual(myModeDistance['bus_short'], (self.busCarbon * self.busExpect/1000))
self.assertEqual(myModeDistance['train_short'], 0)
# We duplicate the bus trips to get air trips, so the distance should be the same
self.assertEqual(myModeDistance['air_short'], (self.airCarbon * self.busExpect/1000))
def testTotalCarbonFootprint(self):
totalModeDistance = carbon.getModeCarbonFootprint(None, carbon.carbonFootprintForMode, self.weekago, self.now)
self.assertEqual(totalModeDistance['walking'], 0)
self.assertEqual(totalModeDistance['cycling'], 0)
# We divide by 1000 to make it comprehensible in getModeCarbonFootprint
self.assertEqual(totalModeDistance['bus_short'], old_div((self.busCarbon * len(self.testUsers) * self.busExpect),1000))
self.assertEqual(totalModeDistance['air_short'], old_div((self.airCarbon * len(self.testUsers) * self.busExpect),1000))
self.assertEqual(totalModeDistance['train_short'], 0)
def testMySummary(self):
(myModeShareCount, avgModeShareCount,
myModeShareDistance, avgModeShareDistance,
myModeCarbonFootprint, avgModeCarbonFootprint,
myModeCarbonFootprintNoLongMotorized, avgModeCarbonFootprintNoLongMotorized,
myOptimalCarbonFootprint, avgOptimalCarbonFootprint,
myOptimalCarbonFootprintNoLongMotorized, avgOptimalCarbonFootprintNoLongMotorized) = carbon.getFootprintCompare('fest@example.com')
# >>> m = {'air_long': 0, 'air_short': 0.2, 'bus_long': 0, 'bus_short': 0.3}
# >>> f = [(i, m[i]) for i in m if m[i] != 0]
# >>> f
# [('bus_short', 0.3), ('air_short', 0.2)]
# >>> dict(f)
# {'bus_short': 0.3, 'air_short': 0.2}
filterZero = lambda m: dict([(i, m[i]) for i in m if m[i] != 0])
self.assertEqual(len(myModeShareCount), len(carbon.getDisplayModes()))
self.assertEqual(len(myModeShareDistance), len(carbon.getDisplayModes()))
# We have duplicated the bus trip to get bus, air and unconfirmed trips.
# we ignore the unconfirmed trip, so only expect to get three values...
self.assertAlmostEqual(sum(myModeShareDistance.values()), 2 * self.busExpect + self.walkExpect, places = 4)
self.assertEqual(filterZero(myModeShareDistance),
{'bus': self.busExpect,
'walking': self.walkExpect,
'air': self.busExpect})
logging.debug(filterZero(myModeShareDistance))
self.assertEqual(filterZero(myModeCarbonFootprint),
{'bus_short': old_div((self.busExpect * self.busCarbon),1000),
'air_short': old_div((self.busExpect * self.airCarbon),1000)})
self.assertEqual(filterZero(myModeCarbonFootprintNoLongMotorized),
{'bus_short': old_div((self.busExpect * self.busCarbon),1000)})
self.assertEqual(filterZero(myOptimalCarbonFootprint),
{'air_short': old_div((self.busExpect * self.busOptimalCarbon),1000)})
self.assertEqual(filterZero(myOptimalCarbonFootprintNoLongMotorized),
{})
def testSummaryAllTrips(self):
summary = carbon.getSummaryAllTrips(self.weekago, self.now)
# *2 because the walking trips don't count, but we have doubled the bus
# trips to count as air trips
self.assertEqual(summary['current'], old_div((self.busCarbon * self.busExpect + self.airCarbon * self.busExpect),1000))
# No * 2 because the optimal value for short bus trips is to actually move to bikes :)
self.assertEqual(summary['optimal'], old_div((self.busOptimalCarbon * self.busExpect),1000))
# These are are without air, so will only count the bus trips
self.assertEqual(summary['current no air'], old_div((self.busCarbon * self.busExpect),1000))
self.assertEqual(summary['optimal no air'], 0)
self.assertAlmostEqual(summary['all drive'], old_div((self.driveCarbon * (self.busExpect * 2 + self.walkExpect)),1000), places = 4)
def testDistinctUserCount(self):
self.assertEqual(carbon.getDistinctUserCount({}), len(self.testUsers))
def testFilteredDistinctUserCount(self):
# Now, move all the sections before a week
# Now there should be no matches in the last week
for section in self.SectionsColl.find():
section['section_start_datetime'] = self.weekago + timedelta(days = -1)
section['section_end_datetime'] = self.weekago + timedelta(days = -1) + timedelta(hours = 1)
# print("Section start = %s, section end = %s" %
# (section['section_start_datetime'], section['section_end_datetime']))
self.SectionsColl.save(section)
print("About to check for distinct users from a week ago")
self.assertEqual(carbon.getDistinctUserCount(carbon.getQuerySpec(None, None,
self.weekago, self.now)), 0)
self.assertEqual(carbon.getDistinctUserCount(carbon.getQuerySpec(None, None,
self.weekago + timedelta(weeks = -1), self.now)), len(self.testUsers))
def testDelLongMotorizedModes(self):
testMap = {'bus': 1, 'air': 3}
carbon.delLongMotorizedModes(testMap)
self.assertEqual(len(testMap), 1)
self.assertEqual(testMap, {'bus': 1})
def testDelLongMotorizedModesShortLong(self):
testMap = {'bus_short': 1, 'bus_long': 2, 'air_short': 3, 'air_long': 4}
carbon.delLongMotorizedModes(testMap)
self.assertEqual(len(testMap), 2)
self.assertIn('bus_short', testMap)
self.assertIn('bus_long', testMap)
self.assertNotIn('air_short', testMap)
self.assertNotIn('air_long', testMap)
def testGetCarbonFootprintsForMap(self):
testDistanceMap = {'a': 1, 'b': 2, 'c': 3}
testModeFootprintMap = {'a': 1, 'b': 2, 'c': 3}
footprintMap = carbon.getCarbonFootprintsForMap(testDistanceMap, testModeFootprintMap)
self.assertEqual(footprintMap, {'a': 0.001, 'b': 0.004, 'c': 0.009})
def testAvgCalculation(self):
testMap = {'a': 5, 'b': 10, 'c': 15, 'd': 3, 'e': 7, 'f': 13}
avgTestMap = carbon.convertToAvg(testMap, 5)
self.assertEquals(avgTestMap['a'], 1)
self.assertEquals(avgTestMap['b'], 2)
self.assertEquals(avgTestMap['c'], 3)
self.assertEquals(avgTestMap['d'], 0.6)
self.assertEquals(avgTestMap['e'], 1.4)
self.assertEquals(avgTestMap['f'], 2.6)
if __name__ == '__main__':
etc.configLogging()
unittest.main()
| shankari/e-mission-server | emission/incomplete_tests/TestCarbon.py | Python | bsd-3-clause | 13,159 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE190_Integer_Overflow__int_listen_socket_multiply_01.c
Label Definition File: CWE190_Integer_Overflow__int.label.xml
Template File: sources-sinks-01.tmpl.c
*/
/*
* @description
* CWE: 190 Integer Overflow
* BadSource: listen_socket Read data using a listen socket (server side)
* GoodSource: Set data to a small, non-zero number (two)
* Sinks: multiply
* GoodSink: Ensure there will not be an overflow before multiplying data by 2
* BadSink : If data is positive, multiply by 2, which can cause an overflow
* Flow Variant: 01 Baseline
*
* */
#include "std_testcase.h"
#ifdef _WIN32
#include <winsock2.h>
#include <windows.h>
#include <direct.h>
#pragma comment(lib, "ws2_32") /* include ws2_32.lib when linking */
#define CLOSE_SOCKET closesocket
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define CLOSE_SOCKET close
#define SOCKET int
#endif
#define TCP_PORT 27015
#define LISTEN_BACKLOG 5
#define CHAR_ARRAY_SIZE (3 * sizeof(data) + 2)
#ifndef OMITBAD
void CWE190_Integer_Overflow__int_listen_socket_multiply_01_bad()
{
int data;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
if(data > 0) /* ensure we won't have an underflow */
{
/* POTENTIAL FLAW: if (data*2) > INT_MAX, this will overflow */
int result = data * 2;
printIntLine(result);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
static void goodG2B()
{
int data;
/* Initialize data */
data = 0;
/* FIX: Use a small, non-zero value that will not cause an integer overflow in the sinks */
data = 2;
if(data > 0) /* ensure we won't have an underflow */
{
/* POTENTIAL FLAW: if (data*2) > INT_MAX, this will overflow */
int result = data * 2;
printIntLine(result);
}
}
/* goodB2G uses the BadSource with the GoodSink */
static void goodB2G()
{
int data;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
if(data > 0) /* ensure we won't have an underflow */
{
/* FIX: Add a check to prevent an overflow from occurring */
if (data < (INT_MAX/2))
{
int result = data * 2;
printIntLine(result);
}
else
{
printLine("data value is too large to perform arithmetic safely.");
}
}
}
void CWE190_Integer_Overflow__int_listen_socket_multiply_01_good()
{
goodG2B();
goodB2G();
}
#endif /* OMITGOOD */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
CWE190_Integer_Overflow__int_listen_socket_multiply_01_good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
CWE190_Integer_Overflow__int_listen_socket_multiply_01_bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE190_Integer_Overflow/s03/CWE190_Integer_Overflow__int_listen_socket_multiply_01.c | C | bsd-3-clause | 7,768 |
// Manages the rendering of the visualization
function GLRunner(canvas, cfg) {
this.init(canvas, cfg);
}
//Use initialization method rather than constructor to facilitate monkey-patched backends
GLRunner.prototype.init = function (canvas, cfg) {
this.canvas = canvas;
this.cfg = cfg;
cfg.ignoreGL = cfg.hasOwnProperty('ignoreGL') ? cfg.ignoreGL : false;
cfg.antialias = cfg.hasOwnProperty("antialias") ? cfg.antialias : true;
this.initCanvas();
}
//Common functions (e.g., painting)
//May be copied into a worker so must not contain open variables (unless other env)
//Different backends will augment
GLRunner.prototype.env = {
lerpColor: function (start_color, end_color, fk) {
if(fk >= 1) { return end_color; }
var red_start = (start_color >> 24) & 255;
var green_start = (start_color >> 16) & 255;
var blue_start = start_color >> 8 & 255;
var red_end = (end_color >> 24) & 255;
var green_end = (end_color >> 16) & 255;
var blue_end = (end_color >> 8) & 255;
var red_blended = (((1 - fk) * red_start) + (fk * red_end)) & 255;
var green_blended = (((1 - fk) * green_start) + (fk * green_end)) & 255;
var blue_blended = (((1 - fk) * blue_start) + (fk * blue_end)) & 255;
return (red_blended << 24) + (green_blended << 16) + (blue_blended << 8) + 255;
},
rgb: function(r, g, b) {
return ((r|0 & 255) << 24) + ((g|0 & 255) << 16) + ((b|0 & 255) << 8) + 255;
},
rgba: function(r, g, b, a) {
return (((r|0) & 255) << 24) + (((g|0) & 255) << 16) + (((b|0) & 255) << 8) + ((a|0) & 255);
},
Circle_size: function () { return 50; },
CircleZ_size: function () { return 50; },
ArcZ_size: function (x, y, z, radius, alpha, sectorAng, w, colorRgb) {
//circle
if (sectorAng >= 360)
return 50;
//skip small
//TODO what if zoomed in? Line?
if (w < 0.001 || sectorAng < 0.02)
return 0;
var NUM_VERT_ARC = 20;
return sectorAng >= 180 ? NUM_VERT_ARC * 6
: sectorAng >= 90 ? NUM_VERT_ARC * 4
: sectorAng >= 45 ? NUM_VERT_ARC * 3
: sectorAng >= 25 ? NUM_VERT_ARC * 2
: NUM_VERT_ARC;
},
Arc_size: function (x, y, radius, alpha, sectorAng, w, colorRgb) {
return ArcZ_size(x, y, 0, radius, alpha, sectorAng, w, colorRGB);
},
Rectangle_size: function () { return 6; },
RectangleOutline_size: function () { return 12; },
RectangleOutlineZ_size: function () { return 12; },
Line3D_size: function () { return 6; },
Line_size: function () { return 6; },
RectangleZ_size: function () { return 6; },
PI: function () { return 3.14768; },
clamp: function (v, a, b) { return Math.max(Math.min(v, b), a); },
cos: function (v) { return Math.cos(v); },
sin: function (v) { return Math.sin(v); },
floor: function (v) { return Math.floor(v); },
abs: function (v) { return Math.abs(v); },
min: function (a,b) { return Math.min(a,b); },
max: function (a,b) { return Math.max(a,b); },
dist: function (a,b) { return Math.sqrt((a-b)*(a-b)); },
mod: function (a, b) { return a % b; },
fmod: function (a, b) { return a % b; }
};
//Package env for constructing a worker
GLRunner.prototype.envStr = function () {
function exportGlobal (name, val) {
return typeof(val) == "function" ?
(val.toString().replace(/^function/, "function " + name))
: ("" + name + " = " + JSON.stringify(val));
}
var res = "";
for (i in this.env)
res += exportGlobal(i, this.env[i]) + ";\n";
return res;
};
//Maybe workers; pure canvas
//FIXME pos should use context transforms
GLRunner.prototype.initCanvas = function () {
this.context = this.canvas.getContext("2d");
var canvas = this.canvas;
var context = this.context;
//sets context in case multiple renderers
this.startRender = function () {
if (!window.sc) window.sc = {};
window.sc.context = this.context;
}
//Retina support
var devicePixelRatio = window.devicePixelRatio || 1;
var w = canvas.clientWidth;
var h = canvas.clientHeight;
canvas.width = w;
canvas.height = h;
canvas.style.width = w / devicePixelRatio;
canvas.style.height = h / devicePixelRatio;
var pos = [ 0, 0, 1.0, 1.0 ];
this.position = {};
this.position.__defineGetter__("x", function () { return pos[0]; });
this.position.__defineGetter__("y", function () { return pos[1]; });
this.position.__defineGetter__("z", function () { return pos[2]; });
this.movePosition = function(x, y, z) {
pos[0] += x;
pos[1] += y;
pos[2] += z;
};
this.setW = function (w) {
pos[3] = w;
}
for (var i in this.env)
window[i] = this.env[i];
//TODO implement
window.Arc_draw = function () { }
window.ArcZ_draw = function () { }
window.Circle_draw = function () { }
window.CircleZ_draw = function () { }
//FIXME optimize use of paths
window.Rectangle_draw = function(_, _, _, x, y, w, h, color) {
window.sc.context.beginPath();
window.sc.context.rect(pos[2] * pos[3] * (pos[0] + x), pos[2] * pos[3] * (pos[1] + y), pos[2] * pos[3] * w, pos[2] * pos[3] * h);
window.sc.context.fillStyle = "rgba(" + ((color >> 24) & 255) + "," + ((color >> 16) & 255) + "," + ((color >> 8) & 255) + "," + (color & 255)/255 + ")";
window.sc.context.fill();
};
window.RectangleZ_draw = function(_, _, _, x, y, w, h, _, color) {
window.Rectangle_draw(0, 0, 0, x, y, w, h, color);
};
window.RectangleOutline_draw = function(_, _, _, x, y, w, h, thickness, color) {
window.sc.context.beginPath();
window.sc.context.lineWidth = thickness * pos[2] * pos[3];
window.sc.context.strokeStyle = "rgba(" + (color >> 24 & 255) + "," + ((color >> 16) & 255) + "," + ((color >> 8) & 255) + "," + (color & 255)/255 + ")";
window.sc.context.strokeRect(pos[2] * pos[3] * (pos[0] + x), pos[2] * pos[3] * (pos[1] + y), pos[2] * pos[3] * w, pos[2] * pos[3] * h);
};
window.GetAbsoluteIndex = function (rel, ref) { return rel == 0 ? 0 : (rel + ref); } ;
window.Line_draw = function (_, _, _, x1, y1, x2, y2, thickness, color) {
window.sc.context.beginPath();
window.sc.context.lineWidth = thickness * pos[2] * pos[3];
window.sc.context.strokeStyle = "rgba(" + (color >> 24 & 255) + "," + ((color >> 16) & 255) + "," + ((color >> 8) & 255) + "," + (color & 255)/255 + ")";
window.sc.context.moveTo(pos[2] * pos[3] * (pos[0] + x1), pos[2] * pos[3] * (pos[1] + y1));
window.sc.context.lineTo(pos[2] * pos[3] * (pos[0] + x2), pos[2] * pos[3] * (pos[1] + y2));
window.sc.context.stroke();
}
window.Line3D_draw = function (_, _, _, x1, y1, z1, x2, y2, z2, thickness, color) {
window.Line_draw(0, 0, 0, x1, y1, x2, y2, thickness, color);
}
var nop = function () { };
var kills = [ "Arc_size", "ArcZ_size", "Circle_size", "CircleZ_size", "Line_size", "Line3D_size", "RectangleOutline_size", "Rectangle_size", "paintStart", "RectangleZ_size", "glBufferMacro" ];
kills.forEach(function(fnName) {
window[fnName] = nop; });
};
GLRunner.prototype.renderFrame = function() {
//FIXME rerun last pass because camera may have moved
};
// Sets the object translation to (x, y, z)
GLRunner.prototype.setPosition = function(xPos, yPos, zPos) {
this.position = {x: xPos, y: yPos, z: zPos};
this.updateModelView();
};
// Moves the scene by (x, y, z) relative to the current position
GLRunner.prototype.movePosition = function(x, y, z) {
this.setPosition(this.position.x + x, this.position.y + y, this.position.z + z);
};
// Sets the object rotation
GLRunner.prototype.setRotation = function(xDeg, yDeg, zDeg) {
this.rotation = {x: xDeg, y: yDeg, z: zDeg};
this.updateModelView();
};
GLRunner.prototype.rotate = function(xDeg, yDeg, zDeg) {
this.rotation.x += xDeg;
this.rotation.y += yDeg;
this.rotation.z += zDeg;
this.updateModelView();
};
// Sets the W attribute of the vertices drawn
GLRunner.prototype.setW = function(w) {
if (this.cfg.ignoreGL) {
console.warn('setW not implemented for non-GL backends');
return;
}
this.vertex_w = 20 / w;
var w_location = this.gl.getUniformLocation(this.program, "u_w");
this.gl.uniform1f(w_location, this.vertex_w);
};
| modulexcite/superconductor | superconductorjs/src/GLRunner.js | JavaScript | bsd-3-clause | 8,014 |
<?php
/*
* Transport interface file
*/
namespace Moneybird;
/**
* Transport interface
*/
interface Transport
{
/**
* Perform the request
*
* @param string $url URL of request
* @param string $requestMethod (GET|POST|PUT|DELETE)
* @param string $data Data in string format
* @param array $headers
* @return string
* @throws HttpRequest\Exception
* @throws HttpRequest\HttpStatusException
* @throws HttpRequest\UnknownHttpStatusException
* @throws HttpRequest\ConnectionErrorException
* @access public
*/
public function send($url, $requestMethod, $data = null, Array $headers = null);
/**
* Number of requests left
* @return int
*/
public function requestsLeft();
/**
* Get last response
*
* @return string
* @access public
*/
public function getLastResponse();
/**
* Set useragent
* @param string $userAgent
* @access public
* @return HttpClient
*/
public function setUserAgent($userAgent);
} | Blinden/HKJ | aangifte-doen/vendor/moneybird-php-api/Transport.php | PHP | bsd-3-clause | 1,064 |
package com.jbooktrader.platform.preferences;
import java.util.prefs.*;
/**
* @author Eugene Kononov
*/
public class PreferencesHolder {
private static PreferencesHolder instance;
private final Preferences prefs;
public static synchronized PreferencesHolder getInstance() {
if (instance == null) {
instance = new PreferencesHolder();
}
return instance;
}
// private constructor for non-instantiability
private PreferencesHolder() {
prefs = Preferences.userNodeForPackage(getClass());
}
public int getInt(JBTPreferences pref) {
String value = get(pref);
return Integer.valueOf(value);
}
public String get(JBTPreferences pref) {
return prefs.get(pref.getName(), pref.getDefault());
}
public void set(JBTPreferences pref, Object propertyValue) {
prefs.put(pref.getName(), String.valueOf(propertyValue));
}
}
| GabrielDancause/jbooktrader | source/com/jbooktrader/platform/preferences/PreferencesHolder.java | Java | bsd-3-clause | 942 |
"""
Module to read MODPATH output files. The module contains two
important classes that can be accessed by the user.
* EndpointFile (ascii endpoint file)
* PathlineFile (ascii pathline file)
"""
import numpy as np
from ..utils.flopy_io import loadtxt
class PathlineFile():
"""
PathlineFile Class.
Parameters
----------
filename : string
Name of the pathline file
verbose : bool
Write information to the screen. Default is False.
Attributes
----------
Methods
-------
See Also
--------
Notes
-----
The PathlineFile class provides simple ways to retrieve MODPATH 6
pathline data from a MODPATH 6 ascii pathline file.
Examples
--------
>>> import flopy
>>> pthobj = flopy.utils.PathlineFile('model.mppth')
>>> p1 = pthobj.get_data(partid=1)
"""
kijnames = ['k', 'i', 'j', 'particleid', 'particlegroup', 'linesegmentindex']
def __init__(self, filename, verbose=False):
"""
Class constructor.
"""
self.fname = filename
self.dtype, self.outdtype = self._get_dtypes()
self._build_index()
self._data = loadtxt(self.file, dtype=self.dtype, skiprows=self.skiprows)
# set number of particle ids
self.nid = self._data['particleid'].max()
# convert layer, row, and column indices; particle id and group; and
# line segment indices to zero-based
for n in self.kijnames:
self._data[n] -= 1
# close the input file
self.file.close()
return
def _build_index(self):
"""
Set position of the start of the pathline data.
"""
self.skiprows = 0
self.file = open(self.fname, 'r')
while True:
line = self.file.readline()
if isinstance(line, bytes):
line = line.decode()
if self.skiprows < 1:
if 'MODPATH_PATHLINE_FILE 6' not in line.upper():
errmsg = '{} is not a valid pathline file'.format(self.fname)
raise Exception(errmsg)
self.skiprows += 1
if 'end header' in line.lower():
break
self.file.seek(0)
def _get_dtypes(self):
"""
Build numpy dtype for the MODPATH 6 pathline file.
"""
dtype = np.dtype([("particleid", np.int), ("particlegroup", np.int),
("timepointindex", np.int), ("cumulativetimestep", np.int),
("time", np.float32), ("x", np.float32),
("y", np.float32), ("z", np.float32),
("k", np.int), ("i", np.int), ("j", np.int),
("grid", np.int), ("xloc", np.float32),
("yloc", np.float32), ("zloc", np.float32),
("linesegmentindex", np.int)])
outdtype = np.dtype([("x", np.float32), ("y", np.float32), ("z", np.float32),
("time", np.float32), ("k", np.int), ("id", np.int)])
return dtype, outdtype
def get_maxid(self):
"""
Get the maximum pathline number in the file pathline file
Returns
----------
out : int
Maximum pathline number.
"""
return self.maxid
def get_maxtime(self):
"""
Get the maximum time in pathline file
Returns
----------
out : float
Maximum pathline time.
"""
return self.data['time'].max()
def get_data(self, partid=0, totim=None, ge=True):
"""
get pathline data from the pathline file for a single pathline.
Parameters
----------
partid : int
The zero-based particle id. The first record is record 0.
totim : float
The simulation time. All pathline points for particle partid
that are greater than or equal to (ge=True) or less than or
equal to (ge=False) totim will be returned. Default is None
ge : bool
Boolean that determines if pathline times greater than or equal
to or less than or equal to totim is used to create a subset
of pathlines. Default is True.
Returns
----------
ra : numpy record array
A numpy recarray with the x, y, z, time, k, and particleid for
pathline partid.
See Also
--------
Notes
-----
Examples
--------
>>> import flopy.utils.modpathfile as mpf
>>> pthobj = flopy.utils.PathlineFile('model.mppth')
>>> p1 = pthobj.get_data(partid=1)
"""
idx = self._data['particleid'] == partid
if totim is not None:
if ge:
idx = (self._data['time'] >= totim) & (self._data['particleid'] == partid)
else:
idx = (self._data['time'] <= totim) & (self._data['particleid'] == partid)
else:
idx = self._data['particleid'] == partid
self._ta = self._data[idx]
ra = np.rec.fromarrays((self._ta['x'], self._ta['y'], self._ta['z'],
self._ta['time'], self._ta['k'], self._ta['particleid']), dtype=self.outdtype)
return ra
def get_alldata(self, totim=None, ge=True):
"""
get pathline data from the pathline file for all pathlines and all times.
Parameters
----------
totim : float
The simulation time. All pathline points for particle partid
that are greater than or equal to (ge=True) or less than or
equal to (ge=False) totim will be returned. Default is None
ge : bool
Boolean that determines if pathline times greater than or equal
to or less than or equal to totim is used to create a subset
of pathlines. Default is True.
Returns
----------
plist : a list of numpy record array
A list of numpy recarrays with the x, y, z, time, k, and particleid for
all pathlines.
See Also
--------
Notes
-----
Examples
--------
>>> import flopy.utils.modpathfile as mpf
>>> pthobj = flopy.utils.PathlineFile('model.mppth')
>>> p = pthobj.get_alldata()
"""
plist = []
for partid in range(self.nid):
plist.append(self.get_data(partid=partid, totim=totim, ge=ge))
return plist
def get_destination_pathline_data(self, dest_cells):
"""Get pathline data for set of destination cells.
Parameters
----------
dest_cells : list or array of tuples
(k, i, j) of each destination cell (zero-based)
Returns
-------
pthldest : np.recarray
Slice of pathline data array (e.g. PathlineFile._data)
containing only pathlines with final k,i,j in dest_cells.
"""
ra = self._data.view(np.recarray)
# find the intersection of endpoints and dest_cells
# convert dest_cells to same dtype for comparison
raslice = ra[['k', 'i', 'j']]
dest_cells = np.array(dest_cells, dtype=raslice.dtype)
inds = np.in1d(raslice, dest_cells)
epdest = ra[inds].copy().view(np.recarray)
# use particle ids to get the rest of the paths
inds = np.in1d(ra.particleid, epdest.particleid)
pthldes = ra[inds].copy()
pthldes.sort(order=['particleid', 'time'])
return pthldes
def write_shapefile(self, pathline_data=None,
one_per_particle=True,
direction='ending',
shpname='endpoings.shp',
sr=None, epsg=None,
**kwargs):
"""Write pathlines to shapefile.
pathline_data : np.recarry
Record array of same form as that returned by EndpointFile.get_alldata.
(if none, EndpointFile.get_alldata() is exported).
one_per_particle : boolean (default True)
True writes a single LineString with a single set of attribute data for each
particle. False writes a record/geometry for each pathline segment
(each row in the PathLine file). This option can be used to visualize
attribute information (time, model layer, etc.) across a pathline in a GIS.
direction : str
String defining if starting or ending particle locations should be
included in shapefile attribute information. Only used if one_per_particle=False.
(default is 'ending')
shpname : str
File path for shapefile
sr : flopy.utils.reference.SpatialReference instance
Used to scale and rotate Global x,y,z values in MODPATH Endpoint file
epsg : int
EPSG code for writing projection (.prj) file. If this is not supplied,
the proj4 string or epgs code associated with sr will be used.
kwargs : keyword arguments to flopy.export.shapefile_utils.recarray2shp
"""
from ..utils.reference import SpatialReference
from ..utils.geometry import LineString
from ..export.shapefile_utils import recarray2shp
pth = pathline_data
if pth is None:
pth = self._data.view(np.recarray)
pth = pth.copy()
pth.sort(order=['particleid', 'time'])
if sr is None:
sr = SpatialReference()
particles = np.unique(pth.particleid)
geoms = []
# 1 geometry for each path
if one_per_particle:
loc_inds = 0
if direction == 'ending':
loc_inds = -1
pthdata = []
for pid in particles:
ra = pth[pth.particleid == pid]
x, y = sr.transform(ra.x, ra.y)
z = ra.z
geoms.append(LineString(list(zip(x, y, z))))
pthdata.append((pid,
ra.particlegroup[0],
ra.time.max(),
ra.k[loc_inds],
ra.i[loc_inds],
ra.j[loc_inds]))
pthdata = np.array(pthdata, dtype=[('particleid', np.int),
('particlegroup', np.int),
('time', np.float),
('k', np.int),
('i', np.int),
('j', np.int)
]).view(np.recarray)
# geometry for each row in PathLine file
else:
dtype = pth.dtype
#pthdata = np.empty((0, len(dtype)), dtype=dtype).view(np.recarray)
pthdata = []
for pid in particles:
ra = pth[pth.particleid == pid]
x, y = sr.transform(ra.x, ra.y)
z = ra.z
geoms += [LineString([(x[i-1], y[i-1], z[i-1]),
(x[i], y[i], z[i])])
for i in np.arange(1, (len(ra)))]
#pthdata = np.append(pthdata, ra[1:]).view(np.recarray)
pthdata += ra[1:].tolist()
pthdata = np.array(pthdata, dtype=dtype).view(np.recarray)
# convert back to one-based
for n in set(self.kijnames).intersection(set(pthdata.dtype.names)):
pthdata[n] += 1
recarray2shp(pthdata, geoms, shpname=shpname, epsg=sr.epsg, **kwargs)
class EndpointFile():
"""
EndpointFile Class.
Parameters
----------
filename : string
Name of the endpoint file
verbose : bool
Write information to the screen. Default is False.
Attributes
----------
Methods
-------
See Also
--------
Notes
-----
The EndpointFile class provides simple ways to retrieve MODPATH 6
endpoint data from a MODPATH 6 ascii endpoint file.
Examples
--------
>>> import flopy
>>> endobj = flopy.utils.EndpointFile('model.mpend')
>>> e1 = endobj.get_data(partid=1)
"""
kijnames = ['k0', 'i0', 'j0', 'k', 'i', 'j', 'particleid', 'particlegroup']
def __init__(self, filename, verbose=False):
"""
Class constructor.
"""
self.fname = filename
self.dtype = self._get_dtypes()
self._build_index()
self._data = loadtxt(self.file, dtype=self.dtype, skiprows=self.skiprows)
# set number of particle ids
self.nid = self._data['particleid'].max()
# convert layer, row, and column indices; particle id and group; and
# line segment indices to zero-based
for n in self.kijnames:
self._data[n] -= 1
# close the input file
self.file.close()
return
def _build_index(self):
"""
Set position of the start of the pathline data.
"""
self.skiprows = 0
self.file = open(self.fname, 'r')
idx = 0
while True:
line = self.file.readline()
if isinstance(line, bytes):
line = line.decode()
if self.skiprows < 1:
if 'MODPATH_ENDPOINT_FILE 6' not in line.upper():
errmsg = '{} is not a valid endpoint file'.format(self.fname)
raise Exception(errmsg)
self.skiprows += 1
if idx == 1:
t = line.strip()
self.direction = 1
if int(t[0]) == 2:
self.direction = -1
if 'end header' in line.lower():
break
self.file.seek(0)
def _get_dtypes(self):
"""
Build numpy dtype for the MODPATH 6 endpoint file.
"""
dtype = np.dtype([("particleid", np.int), ("particlegroup", np.int),
('status', np.int), ('initialtime', np.float32),
('finaltime', np.float32), ('initialgrid', np.int),
('k0', np.int), ('i0', np.int),
('j0', np.int), ('initialcellface', np.int),
('initialzone', np.int), ('xloc0', np.float32),
('yloc0', np.float32), ('zloc0', np.float32),
('x0', np.float32), ('y0', np.float32), ('z0', np.float32),
('finalgrid', np.int), ('k', np.int), ('i', np.int),
('j', np.int), ('finalcellface', np.int),
('finalzone', np.int), ('xloc', np.float32),
('yloc', np.float32), ('zloc', np.float32),
('x', np.float32), ('y', np.float32), ('z', np.float32),
('label', '|S40')])
return dtype
def get_maxid(self):
"""
Get the maximum endpoint particle id in the file endpoint file
Returns
----------
out : int
Maximum endpoint particle id.
"""
return self.maxid
def get_maxtime(self):
"""
Get the maximum time in the endpoint file
Returns
----------
out : float
Maximum endpoint time.
"""
return self.data['finaltime'].max()
def get_maxtraveltime(self):
"""
Get the maximum travel time in the endpoint file
Returns
----------
out : float
Maximum endpoint travel time.
"""
return (self.data['finaltime'] - self.data['initialtime']).max()
def get_data(self, partid=0):
"""
Get endpoint data from the endpoint file for a single particle.
Parameters
----------
partid : int
The zero-based particle id. The first record is record 0.
(default is 0)
Returns
----------
ra : numpy record array
A numpy recarray with the endpoint particle data for
endpoint partid.
See Also
--------
Notes
-----
Examples
--------
>>> import flopy
>>> endobj = flopy.utils.EndpointFile('model.mpend')
>>> e1 = endobj.get_data(partid=1)
"""
idx = self._data['particleid'] == partid
ra = self._data[idx]
return ra
def get_alldata(self):
"""
Get endpoint data from the endpoint file for all endpoints.
Parameters
----------
Returns
----------
ra : numpy record array
A numpy recarray with the endpoint particle data
See Also
--------
Notes
-----
Examples
--------
>>> import flopy
>>> endobj = flopy.utils.EndpointFile('model.mpend')
>>> e = endobj.get_alldata()
"""
ra = self._data.view(np.recarray).copy()
# if final:
# ra = np.rec.fromarrays((self._data['x'], self._data['y'], self._data['z'],
# self._data['finaltime'], self._data['k'],
# self._data['particleid']), dtype=self.outdtype)
# else:
# ra = np.rec.fromarrays((self._data['x0'], self._data['y0'], self._data['z0'],
# self._data['initialtime'], self._data['k0'],
# self._data['particleid']), dtype=self.outdtype)
return ra
def get_destination_endpoint_data(self, dest_cells):
"""Get endpoint data for set of destination cells.
Parameters
----------
dest_cells : list or array of tuples
(k, i, j) of each destination cell (zero-based)
Returns
-------
epdest : np.recarray
Slice of endpoint data array (e.g. EndpointFile.get_alldata)
containing only data with final k,i,j in dest_cells.
"""
ra = self.get_alldata()
# find the intersection of endpoints and dest_cells
# convert dest_cells to same dtype for comparison
raslice = ra[['k', 'i', 'j']]
dest_cells = np.array(dest_cells, dtype=raslice.dtype)
inds = np.in1d(raslice, dest_cells)
epdest = ra[inds].copy().view(np.recarray)
return epdest
def write_shapefile(self, endpoint_data=None,
shpname='endpoings.shp',
direction='ending', sr=None, epsg=None,
**kwargs):
"""Write particle starting / ending locations to shapefile.
endpoint_data : np.recarry
Record array of same form as that returned by EndpointFile.get_alldata.
(if none, EndpointFile.get_alldata() is exported).
shpname : str
File path for shapefile
direction : str
String defining if starting or ending particle locations should be
considered. (default is 'ending')
sr : flopy.utils.reference.SpatialReference instance
Used to scale and rotate Global x,y,z values in MODPATH Endpoint file
epsg : int
EPSG code for writing projection (.prj) file. If this is not supplied,
the proj4 string or epgs code associated with sr will be used.
kwargs : keyword arguments to flopy.export.shapefile_utils.recarray2shp
"""
from ..utils.reference import SpatialReference
from ..utils.geometry import Point
from ..export.shapefile_utils import recarray2shp
epd = endpoint_data.copy()
if epd is None:
epd = self.get_alldata()
if direction.lower() == 'ending':
xcol, ycol, zcol = 'x', 'y', 'z'
elif direction.lower() == 'starting':
xcol, ycol, zcol = 'x0', 'y0', 'z0'
else:
errmsg = 'flopy.map.plot_endpoint direction must be "ending" ' + \
'or "starting".'
raise Exception(errmsg)
if sr is None:
sr = SpatialReference()
x, y = sr.transform(epd[xcol], epd[ycol])
z = epd[zcol]
geoms = [Point(x[i], y[i], z[i]) for i in range(len(epd))]
# convert back to one-based
for n in self.kijnames:
epd[n] += 1
recarray2shp(epd, geoms, shpname=shpname, epsg=epsg, **kwargs)
| brclark-usgs/flopy | flopy/utils/modpathfile.py | Python | bsd-3-clause | 20,645 |
<?php
namespace Contracts\ControllerFactory;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class ArtRequestControllerFactory implements FactoryInterface
{
/**
* Creates a New Service
* @param \Zend\ServiceManager\ServiceLocatorInterface $serviceLocator
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
$sm = $serviceLocator->getServiceLocator();
$c = new \ArtRequest\Controller\ArtRequestController();
$c->setServiceLocator($sm);
return $c;
}
}
?> | tomtuner/app | module/Contracts/src/ContractsRequest/ControllerFactory/ArtRequestControllerFactory.php | PHP | bsd-3-clause | 584 |
// Copyright 2010-2021, 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:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <cmath>
#include <cstdlib>
#include <fstream>
#include <string>
#include "base/file_util.h"
#include "base/logging.h"
#include "rewriter/calculator/calculator_interface.h"
#include "testing/base/public/gunit.h"
#include "testing/base/public/mozctest.h"
namespace mozc {
namespace {
// Runs calculation with |expression| and compares the result and |expect|.
void VerifyCalculation(const CalculatorInterface *calculator,
const std::string &expression,
const std::string &expected) {
std::string result;
EXPECT_TRUE(calculator->CalculateString(expression, &result))
<< expression << " expected = " << expected;
const double result_val = atof(result.c_str());
const double expected_val = atof(expected.c_str());
const double err = fabs(result_val - expected_val);
EXPECT_DOUBLE_EQ(expected_val, result_val)
<< "comparison: " << result_val << " vs " << expected_val << std::endl
<< "error: " << err << std::endl
<< "expr = " << expression << std::endl
<< "result = " << result;
}
// Runs calculation and compare results in PRINTED string.
void VerifyCalculationInString(const CalculatorInterface *calculator,
const std::string &expression,
const std::string &expected) {
std::string result;
EXPECT_TRUE(calculator->CalculateString(expression, &result))
<< expression << " expected = " << expected;
EXPECT_EQ(expected, result) << "expr = " << expression << std::endl;
}
// Tries to calculate |wrong_key| and returns true if it fails.
void VerifyRejection(const CalculatorInterface *calculator,
const std::string &wrong_key) {
std::string result;
EXPECT_FALSE(calculator->CalculateString(wrong_key, &result))
<< "expression: " << wrong_key << std::endl;
}
} // namespace
TEST(CalculatorTest, BasicTest) {
CalculatorInterface *calculator = CalculatorFactory::GetCalculator();
// These are not expressions
// apparently
VerifyRejection(calculator, "test");
// Expression must be ended with equal '='.
VerifyRejection(calculator, "5+4");
// Expression must include at least one operator other than parentheses.
VerifyRejection(calculator, "111=");
VerifyRejection(calculator, "(5)=");
// Expression must include at least one number.
VerifyRejection(calculator, "()=");
// Expression with both heading and tailing '='s should be rejected.
VerifyRejection(calculator, "=(0-0)=");
// Test for each operators
VerifyCalculation(calculator, "38+2.5=", "40.5");
VerifyCalculation(calculator, "5.5-21=", "-15.5");
VerifyCalculation(calculator, "4*2.1=", "8.4");
VerifyCalculation(calculator, "8/2=", "4");
VerifyCalculation(calculator, "15・3=", "5");
VerifyCalculation(calculator, "100%6=", "4");
VerifyCalculation(calculator, "2^10=", "1024");
VerifyCalculation(calculator, "4*-2=", "-8");
VerifyCalculation(calculator, "-10.3+3.5=", "-6.8");
// Expression can starts with '=' instead of ending with '='.
VerifyCalculation(calculator, "=-10.3+3.5", "-6.8");
// Full width cases (some operators may appear as full width character).
VerifyCalculation(calculator, "12345+67890=", "80235");
VerifyCalculation(calculator, "5−1=", "4"); // − is U+2212
VerifyCalculation(calculator, "-ー3+5=", "8"); // ー is U+30FC
VerifyCalculation(calculator, "1.5*2=", "3");
VerifyCalculation(calculator, "10/2=", "5");
VerifyCalculation(calculator, "2^ー2=", "0.25");
VerifyCalculation(calculator, "13%3=", "1");
VerifyCalculation(calculator, "(1+1)*2=", "4");
// Expressions with more than one operator.
VerifyCalculation(calculator, "(1+2)-4=", "-1");
VerifyCalculation(calculator, "5*(2+3)=", "25");
VerifyCalculation(calculator, "(70-((3+2)*4))%8=", "2");
// Issue 3082576: 7472.4 - 7465.6 = 6.7999999999993 is not expected.
VerifyCalculationInString(calculator, "7472.4-7465.6=", "6.8");
}
// Test large number of queries. Test data is located at
// data/test/calculator/testset.txt.
// In this file, each test case is written in one line in the format
// "expression=answer". Answer is suppressed if the expression is invalid,
// i.e. it is a false test.
TEST(CalculatorTest, StressTest) {
const std::string filename = testing::GetSourceFileOrDie(
{"data", "test", "calculator", "testset.txt"});
CalculatorInterface *calculator = CalculatorFactory::GetCalculator();
std::ifstream finput(filename.c_str());
std::string line;
int lineno = 0;
while (std::getline(finput, line)) {
++lineno;
// |line| is of format "expression=answer".
const size_t index_of_equal = line.find('=');
DCHECK(index_of_equal != std::string::npos);
const size_t query_length = index_of_equal + 1;
const std::string query(line, 0, query_length);
// Smoke test.
// If (OS_ANDROID && x86) the result differs from expectation
// because of floating point specification so on such environment
// Following verification is skipped.
std::string unused_result;
calculator->CalculateString(query, &unused_result);
#if !defined(OS_ANDROID) || !defined(__i386__)
if (line.size() == query_length) {
// False test
VerifyRejection(calculator, line);
continue;
}
const std::string answer(line, query_length);
VerifyCalculation(calculator, query, answer);
#endif // !defined(OS_ANDROID) || !defined(__i386__)
}
LOG(INFO) << "done " << lineno << " tests from " << filename << std::endl;
}
} // namespace mozc
| fcitx/mozc | src/rewriter/calculator/calculator_test.cc | C++ | bsd-3-clause | 7,161 |
/*
Copyright (c) 2016, Apple 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.
3. Neither the name of the copyright holder(s) nor the names of any contributors
may be used to endorse or promote products derived from this software without
specific prior written permission. No license is granted to the trademarks of
the copyright holders even if such marks are included in this software.
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.
*/
#import <CareKit/CareKit.h>
@interface OCKInsightsTableViewHeaderView : UIView
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subtitle;
@end
| eburns1148/CareKit | CareKit/Insights/OCKInsightsTableViewHeaderView.h | C | bsd-3-clause | 1,819 |
<?php
/**
* @copyright Copyright © Kartik Visweswaran, communityii, 2014 - 2015
* @package communityii/yii2-user
* @version 1.0.0
*
* @author derekisbusy https://github.com/derekisbusy
* @author kartik-v https://github.com/kartik-v
*/
namespace comyii\user\components;
use yii\base\Component;
/**
* Class Account the user account settings for the module.
*
* @package comyii\user\components
*/
class Account extends Component
{
/**
* @var bool allow username to be changed for user. Defaults to `true`.
* If set to `true`, can be changed by the respective user OR any admin/superuser via
* admin user interface. If set to `false` change access will be disabled for all users.
*/
public $changeUsername = true;
/**
* @var bool allow email to be changed for user. Defaults to `true`.
* If set to `true`, can be changed by the respective user OR any admin/superuser via
* admin user interface. Note that `email` change by normal users needs to be revalidated
* by user by following instructions via the system mail sent. If set to `false` change
* access will be disabled for all users.
*/
public $changeEmail = true;
}
| derekisbusy/yii2-user | components/Account.php | PHP | bsd-3-clause | 1,217 |
package org.hisp.dhis.user;
/*
* Copyright (c) 2004-2018, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import org.hisp.dhis.common.GenericStore;
/**
* @author Lars Helge Overland
*/
public interface UserCredentialsStore
extends GenericStore<UserCredentials>
{
String ID = UserCredentialsStore.class.getName();
/**
* Retrieves the UserCredentials associated with the User with the given
* name.
*
* @param username the name of the User.
* @return the UserCredentials.
*/
UserCredentials getUserCredentialsByUsername( String username );
/**
* Retrieves the UserCredentials associated with the User with the given
* open ID.
*
* @param openId open ID.
* @return the UserCredentials.
*/
UserCredentials getUserCredentialsByOpenId( String openId );
/**
* Retrieves the UserCredentials associated with the User with the given
* LDAP ID.
*
* @param ldapId LDAP ID.
* @return the UserCredentials.
*/
UserCredentials getUserCredentialsByLdapId( String ldapId );
} | vietnguyen/dhis2-core | dhis-2/dhis-api/src/main/java/org/hisp/dhis/user/UserCredentialsStore.java | Java | bsd-3-clause | 2,566 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53c.c
Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_src.label.xml
Template File: sources-sink-53c.tmpl.c
*/
/*
* @description
* CWE: 122 Heap Based Buffer Overflow
* BadSource: Initialize data as a large string
* GoodSource: Initialize data as a small string
* Sink: cpy
* BadSink : Copy data to string using wcscpy
* Flow Variant: 53 Data flow: data passed as an argument from one function through two others to a fourth; all four functions are in different source files
*
* */
#include "std_testcase.h"
#include <wchar.h>
/* all the sinks are the same, we just want to know where the hit originated if a tool flags one */
#ifndef OMITBAD
/* bad function declaration */
void CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53d_badSink(wchar_t * data);
void CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53c_badSink(wchar_t * data)
{
CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53d_badSink(data);
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* good function declaration */
void CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53d_goodG2BSink(wchar_t * data);
/* goodG2B uses the GoodSource with the BadSink */
void CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53c_goodG2BSink(wchar_t * data)
{
CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53d_goodG2BSink(data);
}
#endif /* OMITGOOD */
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE122_Heap_Based_Buffer_Overflow/s10/CWE122_Heap_Based_Buffer_Overflow__c_src_wchar_t_cpy_53c.c | C | bsd-3-clause | 1,515 |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE127_Buffer_Underread__wchar_t_declare_cpy_72b.cpp
Label Definition File: CWE127_Buffer_Underread.stack.label.xml
Template File: sources-sink-72b.tmpl.cpp
*/
/*
* @description
* CWE: 127 Buffer Under-read
* BadSource: Set data pointer to before the allocated memory buffer
* GoodSource: Set data pointer to the allocated memory buffer
* Sinks: cpy
* BadSink : Copy data to string using wcscpy
* Flow Variant: 72 Data flow: data passed in a vector from one function to another in different source files
*
* */
#include "std_testcase.h"
#include <vector>
#include <wchar.h>
using namespace std;
namespace CWE127_Buffer_Underread__wchar_t_declare_cpy_72
{
#ifndef OMITBAD
void badSink(vector<wchar_t *> dataVector)
{
/* copy data out of dataVector */
wchar_t * data = dataVector[2];
{
wchar_t dest[100*2];
wmemset(dest, L'C', 100*2-1); /* fill with 'C's */
dest[100*2-1] = L'\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copy from a memory location located before the source buffer */
wcscpy(dest, data);
printWLine(dest);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void goodG2BSink(vector<wchar_t *> dataVector)
{
wchar_t * data = dataVector[2];
{
wchar_t dest[100*2];
wmemset(dest, L'C', 100*2-1); /* fill with 'C's */
dest[100*2-1] = L'\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copy from a memory location located before the source buffer */
wcscpy(dest, data);
printWLine(dest);
}
}
#endif /* OMITGOOD */
} /* close namespace */
| JianpingZeng/xcc | xcc/test/juliet/testcases/CWE127_Buffer_Underread/s04/CWE127_Buffer_Underread__wchar_t_declare_cpy_72b.cpp | C++ | bsd-3-clause | 1,759 |
<?php
/**
* TOP API: tmall.item.increment.update.schema.get request
*
* @author auto create
* @since 1.0, 2015.08.03
*/
class TmallItemIncrementUpdateSchemaGetRequest
{
/**
* 需要编辑的商品ID
**/
private $itemId;
/**
* 如果入参xml_data指定了更新的字段,则只返回指定字段的规则(ISV如果功能性很强,如明确更新Title,请拼装好此字段以提升API整体性能)
**/
private $xmlData;
private $apiParas = array();
public function setItemId($itemId)
{
$this->itemId = $itemId;
$this->apiParas["item_id"] = $itemId;
}
public function getItemId()
{
return $this->itemId;
}
public function setXmlData($xmlData)
{
$this->xmlData = $xmlData;
$this->apiParas["xml_data"] = $xmlData;
}
public function getXmlData()
{
return $this->xmlData;
}
public function getApiMethodName()
{
return "tmall.item.increment.update.schema.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->itemId,"itemId");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}
| qq1156092409/subway | extensions/taobao/top/request/TmallItemIncrementUpdateSchemaGetRequest.php | PHP | bsd-3-clause | 1,202 |
#ifndef __MORDOR_HTTP_OAUTH_H__
#define __MORDOR_HTTP_OAUTH_H__
// Copyright (c) 2009 - Mozy, Inc.
#include "broker.h"
namespace Mordor {
namespace HTTP {
namespace OAuth {
std::pair<std::string, std::string>
getTemporaryCredentials(RequestBroker::ptr requestBroker, const URI &uri,
const std::string &method, const std::string &signatureMethod,
const std::pair<std::string, std::string> &clientCredentials,
const URI &callbackUri = URI());
std::pair<std::string, std::string>
getTokenCredentials(RequestBroker::ptr requestBroker, const URI &uri,
const std::string &method, const std::string &signatureMethod,
const std::pair<std::string, std::string> &clientCredentials,
const std::pair<std::string, std::string> &temporaryCredentials,
const std::string &verifier);
void authorize(Request &nextRequest,
const std::string &signatureMethod,
const std::pair<std::string, std::string> &clientCredentials,
const std::pair<std::string, std::string> &tokenCredentials,
const std::string &realm = std::string(),
const std::string &scheme = std::string());
// Helpers for setting up an OAuth request
template <class T>
void nonceAndTimestamp(T &oauthParameters);
// oauthParameters should *not* be empty; instead if oauth params are in the
// POST body or in the querystring, those fields should be empty instead
template <class T>
std::string generateSignature(const URI &uri, const std::string &method,
const std::string &clientSecret, const std::string &tokenSecret,
const T &oauthParameters,
const URI::QueryString &postParameters = URI::QueryString());
template <class T>
void sign(const URI &uri, const std::string &method,
const std::string &signatureMethod, const std::string &clientSecret,
const std::string &tokenSecret, T &oauthParameters,
const URI::QueryString &postParameters = URI::QueryString());
template <class T>
bool validate(const URI &uri, const std::string &method,
const std::string &clientSecret, const std::string &tokenSecret,
const T &oauthParameters,
const URI::QueryString &postParameters = URI::QueryString());
std::pair<std::string, std::string>
extractCredentials(std::shared_ptr<ClientRequest> request);
class RequestBroker : public RequestBrokerFilter
{
public:
RequestBroker(HTTP::RequestBroker::ptr parent,
std::function<bool (const URI &,
std::shared_ptr<ClientRequest> /* priorRequest = ClientRequest::ptr() */,
std::string & /* signatureMethod */,
std::pair<std::string, std::string> & /* clientCredentials */,
std::pair<std::string, std::string> & /* tokenCredentials */,
std::string & /* realm */,
size_t /* attempts */)> getCredentialsDg)
: RequestBrokerFilter(parent),
m_getCredentialsDg(getCredentialsDg)
{}
std::shared_ptr<ClientRequest> request(Request &requestHeaders,
bool forceNewConnection = false,
std::function<void (std::shared_ptr<ClientRequest>)> bodyDg = NULL);
private:
std::function<bool (const URI &, std::shared_ptr<ClientRequest>, std::string &,
std::pair<std::string, std::string> &,
std::pair<std::string, std::string> &,
std::string &, size_t)> m_getCredentialsDg;
};
}}}
#endif
| adfin/mordor | mordor/http/oauth.h | C | bsd-3-clause | 3,290 |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use app\models\general\GeneralLabel;
/* @var $this yii\web\View */
/* @var $model app\models\RefHubungan */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="ref-hubungan-form">
<p class="text-muted"><span style="color: red">*</span> <?= GeneralLabel::lapangan_mandatori ?></p>
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'desc')->textInput(['maxlength' => true]) ?>
<?php $model->isNewRecord ? $model->aktif = 1: $model->aktif = $model->aktif ; ?>
<?= $form->field($model, 'aktif')->radioList(array(true=>GeneralLabel::yes,false=>GeneralLabel::no)); ?>
<div class="form-group">
<?= Html::submitButton($model->isNewRecord ? GeneralLabel::create : GeneralLabel::update, ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
| hung101/kbs | frontend/views/ref-instructor-penilaian-pendidikan/_form.php | PHP | bsd-3-clause | 943 |
<!DOCTYPE html>
<!--
Copyright (c) 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/tracing/model/user_model/user_expectation.html">
<script>
'use strict';
tr.exportTo('tr.metrics.sh', function() {
// Returns a weight for this score.
// score should be a number between 0 and 1 inclusive.
// This function is expected to be passed to tr.b.math.Statistics.weightedMean
// as its weightCallback.
function perceptualBlend(ir, index, score) {
// Lower scores are exponentially more important than higher scores
// due to the Peak-end rule.
// Other than that general rule, there is no specific reasoning behind this
// specific formula -- it is fairly arbitrary.
return Math.exp(1 - score);
}
function filterExpectationsByRange(irs, opt_range) {
const filteredExpectations = [];
irs.forEach(function(ir) {
if (!(ir instanceof tr.model.um.UserExpectation)) return;
if (!opt_range ||
opt_range.intersectsExplicitRangeInclusive(ir.start, ir.end)) {
filteredExpectations.push(ir);
}
});
return filteredExpectations;
}
return {
perceptualBlend,
filterExpectationsByRange,
};
});
</script>
| benschmaus/catapult | tracing/tracing/metrics/system_health/utils.html | HTML | bsd-3-clause | 1,312 |
--
-- tests/base/test_configset.lua
-- Test suite for the configset API.
-- Copyright (c) 2012 Jason Perkins and the Premake project
--
T.configset = {}
local suite = T.configset
local configset = premake.configset
--
-- Setup and teardown
--
local cset, parentset
function suite.setup()
parentset = configset.new()
cset = configset.new(parentset)
end
--
-- Make sure that new() returns a valid object.
--
function suite.new_returnsValidObject()
test.isequal("table", type(cset))
end
--
-- Check the default values for different field types.
--
function suite.defaultValue_onString()
test.isnil(configset.fetchvalue(cset, "targetextension", {}))
end
--
-- Make sure that I can roundtrip a value stored into the
-- initial, default configuration.
--
function suite.canRoundtrip_onDefaultBlock()
configset.addvalue(cset, "targetextension", ".so")
test.isequal(".so", configset.fetchvalue(cset, "targetextension", {}))
end
function suite.canRoundtrip_onDefaultBlock_usingDirectSet()
cset.targetextension = ".so"
test.isequal(".so", configset.fetchvalue(cset, "targetextension", {}))
end
--
-- Make sure that I can roundtrip a value stored into a block
-- with a simple matching term.
--
function suite.canRoundtrip_onSimpleTermMatch()
configset.addblock(cset, { "Windows" })
configset.addvalue(cset, "targetextension", ".dll")
test.isequal(".dll", configset.fetchvalue(cset, "targetextension", { "windows" }))
end
function suite.canRoundtrip_onSimpleTermMatch_usingDirectGet()
configset.addblock(cset, { "Windows" })
configset.addvalue(cset, "targetextension", ".dll")
test.isequal(".dll", cset.targetextension)
end
--
-- Make sure that blocks that do not match the context terms
-- do not contribute to the result.
--
function suite.skipsBlock_onTermMismatch()
configset.addvalue(cset, "targetextension", ".so")
configset.addblock(cset, { "Windows" })
configset.addvalue(cset, "targetextension", ".dll")
test.isequal(".so", configset.fetchvalue(cset, "targetextension", { "linux" }))
end
--
-- Values stored in a parent configuration set should propagate into child.
--
function suite.canRoundtrip_fromParentToChild()
configset.addvalue(parentset, "targetextension", ".so")
test.isequal(".so", configset.fetchvalue(cset, "targetextension", {}))
end
--
-- Child should be able to override parent values.
--
function suite.child_canOverrideStringValueFromParent()
configset.addvalue(parentset, "targetextension", ".so")
configset.addvalue(cset, "targetextension", ".dll")
test.isequal(".dll", configset.fetchvalue(cset, "targetextension", {}))
end
--
-- If a base directory is set, filename tests should be performed
-- relative to this path.
--
function suite.filenameMadeRelative_onBaseDirSet()
configset.addblock(cset, { "hello.c" }, os.getcwd())
configset.addvalue(cset, "buildaction", "copy")
test.isequal("copy", configset.fetchvalue(cset, "buildaction", {}, path.join(os.getcwd(), "hello.c")))
end
--
-- List fields should return an empty list of not set.
--
function suite.lists_returnsEmptyTable_onNotSet()
test.isequal({}, configset.fetchvalue(cset, "buildoptions", {}))
end
--
-- List fields should merge values fetched from different blocks.
--
function suite.lists_mergeValues_onFetch()
configset.addvalue(cset, "buildoptions", "v1")
configset.addblock(cset, { "windows" })
configset.addvalue(cset, "buildoptions", "v2")
test.isequal({"v1", "v2"}, configset.fetchvalue(cset, "buildoptions", {"windows"}))
end
--
-- Multiple adds to a list field in the same block should be merged together.
--
function suite.lists_mergeValues_onAdd()
configset.addvalue(cset, "buildoptions", "v1")
configset.addvalue(cset, "buildoptions", "v2")
test.isequal({"v1", "v2"}, configset.fetchvalue(cset, "buildoptions", {"windows"}))
end
--
-- Fetched lists should be both keyed and indexed.
--
function suite.lists_includeValueKeys()
configset.addvalue(cset, "buildoptions", { "v1", "v2" })
local x = configset.fetchvalue(cset, "buildoptions", {})
test.isequal("v2", x.v2)
end
--
-- Check removing a value with an exact match.
--
function suite.remove_onExactValueMatch()
configset.addvalue(cset, "flags", { "Symbols", "Unsafe", "NoRTTI" })
configset.removevalues(cset, "flags", { "Unsafe" })
test.isequal({ "Symbols", "NoRTTI" }, configset.fetchvalue(cset, "flags", {}))
end
function suite.remove_onMultipleValues()
configset.addvalue(cset, "flags", { "Symbols", "NoExceptions", "Unsafe", "NoRTTI" })
configset.removevalues(cset, "flags", { "NoExceptions", "NoRTTI" })
test.isequal({ "Symbols", "Unsafe" }, configset.fetchvalue(cset, "flags", {}))
end
--
-- Remove should also accept wildcards.
--
function suite.remove_onWildcard()
configset.addvalue(cset, "defines", { "WIN32", "WIN64", "LINUX", "MACOSX" })
configset.removevalues(cset, "defines", { "WIN*" })
test.isequal({ "LINUX", "MACOSX" }, configset.fetchvalue(cset, "defines", {}))
end
--
-- Keyed values should merge keys fetched from different blocks.
--
function suite.keyed_mergesKeys_onFetch()
configset.addvalue(cset, "configmap", { Debug="Debug", Release="Release" })
configset.addblock(cset, { "windows" })
configset.addvalue(cset, "configmap", { Profile="Profile" })
local x = configset.fetchvalue(cset, "configmap", {"windows"})
test.istrue(x.Debug and x.Release and x.Profile)
end
--
-- Multiple adds to a keyed value field in the same block should be merged.
--
function suite.keyed_mergesKeys_onAdd()
configset.addvalue(cset, "configmap", { Debug="Debug", Release="Release" })
configset.addvalue(cset, "configmap", { Profile="Profile" })
local x = configset.fetchvalue(cset, "configmap", {"windows"})
test.istrue(x.Debug and x.Release and x.Profile)
end
--
-- Keyed values should overwrite when non-merged fields are fetched.
--
function suite.keyed_overwritesValues_onNonMergeFetch()
configset.addvalue(cset, "configmap", { Debug="Debug" })
configset.addblock(cset, { "windows" })
configset.addvalue(cset, "configmap", { Debug="Development" })
local x = configset.fetchvalue(cset, "configmap", {"windows"})
test.isequal("Development", x.Debug)
end
function suite.keyed_overwritesValues_onNonMergeAdd()
configset.addvalue(cset, "configmap", { Debug="Debug" })
configset.addvalue(cset, "configmap", { Debug="Development" })
local x = configset.fetchvalue(cset, "configmap", {"windows"})
test.isequal("Development", x.Debug)
end
--
-- Keyed values should merge when merged fields are fetched.
--
function suite.keyed_mergesValues_onMergeFetch()
configset.addvalue(cset, "vpaths", { includes="*.h" })
configset.addblock(cset, { "windows" })
configset.addvalue(cset, "vpaths", { includes="*.hpp" })
local x = configset.fetchvalue(cset, "vpaths", {"windows"})
test.isequal({ "*.h", "*.hpp" }, x.includes)
end
function suite.keyed_mergesValues_onMergeAdd()
configset.addvalue(cset, "vpaths", { includes="*.h" })
configset.addvalue(cset, "vpaths", { includes="*.hpp" })
local x = configset.fetchvalue(cset, "vpaths", {"windows"})
test.isequal({ "*.h", "*.hpp" }, x.includes)
end
| Lusito/premake | tests/base/test_configset.lua | Lua | bsd-3-clause | 7,212 |
//
// Copyright (c) 2004-2020 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of Jaroslaw Kowalski nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//
using System;
using System.Text;
namespace NLog.LayoutRenderers.Wrappers
{
/// <summary>
/// Base class for <see cref="LayoutRenderer"/>s which wrapping other <see cref="LayoutRenderer"/>s.
///
/// This expects the transformation to work on a <see cref="StringBuilder"/>
/// </summary>
public abstract class WrapperLayoutRendererBuilderBase : WrapperLayoutRendererBase
{
/// <inheritdoc/>
protected override void RenderInnerAndTransform(LogEventInfo logEvent, StringBuilder builder, int orgLength)
{
using (var localTarget = new Internal.AppendBuilderCreator(builder, true))
{
#pragma warning disable CS0618 // Type or member is obsolete
RenderFormattedMessage(logEvent, localTarget.Builder);
TransformFormattedMesssage(logEvent, localTarget.Builder);
#pragma warning restore CS0618 // Type or member is obsolete
}
}
/// <summary>
/// Transforms the output of another layout.
/// </summary>
/// <param name="logEvent"></param>
/// <param name="target">Output to be transform.</param>
[Obsolete("Inherit from WrapperLayoutRendererBase and override RenderInnerAndTransform() instead. Marked obsolete in NLog 4.6")]
protected virtual void TransformFormattedMesssage(LogEventInfo logEvent, StringBuilder target)
{
TransformFormattedMesssage(target);
}
/// <summary>
/// Transforms the output of another layout.
/// </summary>
/// <param name="target">Output to be transform.</param>
[Obsolete("Inherit from WrapperLayoutRendererBase and override RenderInnerAndTransform() instead. Marked obsolete in NLog 4.6")]
protected abstract void TransformFormattedMesssage(StringBuilder target);
/// <summary>
/// Renders the inner layout contents.
/// </summary>
/// <param name="logEvent"></param>
/// <param name="target"><see cref="StringBuilder"/> for the result</param>
[Obsolete("Inherit from WrapperLayoutRendererBase and override RenderInnerAndTransform() instead. Marked obsolete in NLog 4.6")]
protected virtual void RenderFormattedMessage(LogEventInfo logEvent, StringBuilder target)
{
Inner.RenderAppendBuilder(logEvent, target);
}
/// <summary>
///
/// </summary>
/// <param name="text"></param>
/// <returns></returns>
protected sealed override string Transform(string text)
{
throw new NotSupportedException("Use TransformFormattedMesssage");
}
/// <summary>
///
/// </summary>
/// <param name="logEvent"></param>
/// <returns></returns>
protected sealed override string RenderInner(LogEventInfo logEvent)
{
throw new NotSupportedException("Use RenderFormattedMessage");
}
}
}
| BrutalCode/NLog | src/NLog/LayoutRenderers/Wrappers/WrapperLayoutRendererBuilderBase.cs | C# | bsd-3-clause | 4,655 |
# -*- encoding: utf-8 -*-
# Module iacolorhist
def iacolorhist(f, mask=None):
import numpy as np
from iahistogram import iahistogram
WFRAME=5
f = np.asarray(f)
if len(f.shape) == 1: f = f[np.newaxis,:]
if not f.dtype == 'uint8':
raise Exception,'error, can only process uint8 images'
if not f.shape[0] == 3:
raise Exception, 'error, can only process 3-band images'
r,g,b = f[0].astype(np.int), f[1].astype(np.int), f[2].astype(np.int)
n_zeros = 0
if mask:
n_zeros = f.shape[0]*f.shape[1]-len(np.nonzero(np.ravel(mask)))
r,g,b = mask*r, mask*g, mask*b
hrg = np.zeros((256,256), np.int32); hbg=hrg+0; hrb=hrg+0
img = 256*r + g; m1 = img.max()
aux = iahistogram(img.astype(np.int32)); aux[0] = aux[0] - n_zeros
np.put(np.ravel(hrg), range(m1+1), aux)
img = 256*b + g; m2 = img.max()
aux = iahistogram(img.astype(np.int32)); aux[0] = aux[0] - n_zeros
np.put(np.ravel(hbg), range(m2+1), aux)
img = 256*r + b; m3 = img.max()
aux = iahistogram(img.astype(np.int32)); aux[0] = aux[0] - n_zeros
np.put(np.ravel(hrb), range(m3+1), aux)
m=max(hrg.max(),hbg.max(),hrb.max())
hc=m*np.ones((3*WFRAME+2*256,3*WFRAME+2*256))
hc[WFRAME:WFRAME+256,WFRAME:WFRAME+256] = np.transpose(hrg)
hc[WFRAME:WFRAME+256,2*WFRAME+256:2*WFRAME+512] = np.transpose(hbg)
hc[2*WFRAME+256:2*WFRAME+512,WFRAME:WFRAME+256] = np.transpose(hrb)
return hc
| robertoalotufo/ia636 | ia636/iacolorhist.py | Python | bsd-3-clause | 1,449 |
import {Range} from "./range"
import * as p from "core/properties"
export namespace Range1d {
export interface Attrs extends Range.Attrs {
start: number
end: number
}
export interface Props extends Range.Props {}
}
export interface Range1d extends Range1d.Attrs {}
export class Range1d extends Range {
properties: Range1d.Props
constructor(attrs?: Partial<Range1d.Attrs>) {
super(attrs)
}
static initClass(): void {
this.prototype.type = "Range1d"
this.define({
start: [ p.Number, 0 ],
end: [ p.Number, 1 ],
})
}
protected _initial_start: number
protected _initial_end: number
protected _set_auto_bounds(): void {
if (this.bounds == 'auto') {
const min = Math.min(this._initial_start, this._initial_end)
const max = Math.max(this._initial_start, this._initial_end)
this.setv({bounds: [min, max]}, {silent: true})
}
}
initialize(): void {
super.initialize()
this._initial_start = this.start
this._initial_end = this.end
this._set_auto_bounds()
}
get min(): number {
return Math.min(this.start, this.end)
}
get max(): number {
return Math.max(this.start, this.end)
}
get is_reversed(): boolean {
return this.start > this.end
}
reset(): void {
this._set_auto_bounds()
if (this.start != this._initial_start || this.end != this._initial_end)
this.setv({start: this._initial_start, end: this._initial_end})
else
this.change.emit()
}
}
Range1d.initClass()
| Karel-van-de-Plassche/bokeh | bokehjs/src/lib/models/ranges/range1d.ts | TypeScript | bsd-3-clause | 1,529 |
<?php
/**
* Unit test class for the JoinStrings sniff.
*
* PHP version 5
*
* @category PHP
* @package PHP_CodeSniffer_MySource
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
/**
* Unit test class for the JoinStrings sniff.
*
* A sniff unit test checks a .inc file for expected violations of a single
* coding standard. Expected errors and warnings are stored in this class.
*
* @category PHP
* @package PHP_CodeSniffer_MySource
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @version Release: @package_version@
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
class MySource_Tests_Strings_JoinStringsUnitTest extends AbstractSniffUnitTest
{
/**
* Returns the lines where errors should occur.
*
* The key of the array should represent the line number and the value
* should represent the number of errors that should occur on that line.
*
* @param string $testFile The name of the file being tested.
*
* @return array(int => int)
*/
public function getErrorList($testFile='JoinStringsUnitTest.js')
{
if ($testFile !== 'JoinStringsUnitTest.js') {
return array();
}
return array(
6 => 1,
7 => 1,
8 => 2,
9 => 2,
10 => 2,
12 => 2,
15 => 1,
);
}//end getErrorList()
/**
* Returns the lines where warnings should occur.
*
* The key of the array should represent the line number and the value
* should represent the number of warnings that should occur on that line.
*
* @return array(int => int)
*/
public function getWarningList()
{
return array();
}//end getWarningList()
}//end class
?>
| benbeezy/Dollo3d | vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Tests/Strings/JoinStringsUnitTest.php | PHP | bsd-3-clause | 2,195 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for /home/gerard/sites/modules.w.doctrine/modules.zendframework.com/vendor/AssetManager</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">/home/gerard/sites/modules.w.doctrine/modules.zendframework.com</a> <span class="divider">/</span></li>
<li><a href="vendor.html">vendor</a> <span class="divider">/</span></li>
<li class="active">AssetManager</li>
<li>(<a href="vendor_AssetManager.dashboard.html">Dashboard</a>)</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="9"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
<td colspan="3"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="warning">Total</td>
<td class="warning big"> <div class="progress progress-warning" style="width: 100px;">
<div class="bar" style="width: 50.83%;"></div>
</div>
</td>
<td class="warning small"><div align="right">50.83%</div></td>
<td class="warning small"><div align="right">215 / 423</div></td>
<td class="warning big"> <div class="progress progress-warning" style="width: 100px;">
<div class="bar" style="width: 47.37%;"></div>
</div>
</td>
<td class="warning small"><div align="right">47.37%</div></td>
<td class="warning small"><div align="right">36 / 76</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 22.22%;"></div>
</div>
</td>
<td class="danger small"><div align="right">22.22%</div></td>
<td class="danger small"><div align="right">4 / 18</div></td>
</tr>
<tr>
<td class="success"><i class="icon-folder-open"></i> <a href="vendor_AssetManager_config.html">config</a></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">19 / 19</div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
</tr>
<tr>
<td class="warning"><i class="icon-folder-open"></i> <a href="vendor_AssetManager_src.html">src</a></td>
<td class="warning big"> <div class="progress progress-warning" style="width: 100px;">
<div class="bar" style="width: 48.39%;"></div>
</div>
</td>
<td class="warning small"><div align="right">48.39%</div></td>
<td class="warning small"><div align="right">195 / 403</div></td>
<td class="warning big"> <div class="progress progress-warning" style="width: 100px;">
<div class="bar" style="width: 47.37%;"></div>
</div>
</td>
<td class="warning small"><div align="right">47.37%</div></td>
<td class="warning small"><div align="right">36 / 76</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 22.22%;"></div>
</div>
</td>
<td class="danger small"><div align="right">22.22%</div></td>
<td class="danger small"><div align="right">4 / 18</div></td>
</tr>
<tr>
<td class="success"><i class="icon-file"></i> <a href="vendor_AssetManager_Module.php.html">Module.php</a></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">1 / 1</div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
</tr>
</tbody>
</table>
<footer>
<h4>Legend</h4>
<p>
<span class="danger"><strong>Low</strong>: 0% to 35%</span>
<span class="warning"><strong>Medium</strong>: 35% to 70%</span>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.3.10-1ubuntu3.8</a> and <a href="http://phpunit.de/">PHPUnit 3.7.27</a> at Sat Oct 12 3:31:18 CEST 2013.</small>
</p>
</footer>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
| gerardoloan/moduleswdoctrine | module/ZfModule/test/clover-html/vendor_AssetManager.html | HTML | bsd-3-clause | 6,046 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.