hexsha
stringlengths 40
40
| size
int64 7
1.05M
| ext
stringclasses 13
values | lang
stringclasses 1
value | max_stars_repo_path
stringlengths 4
269
| max_stars_repo_name
stringlengths 5
108
| max_stars_repo_head_hexsha
stringlengths 40
40
| max_stars_repo_licenses
listlengths 1
9
| max_stars_count
int64 1
191k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 4
269
| max_issues_repo_name
stringlengths 5
116
| max_issues_repo_head_hexsha
stringlengths 40
40
| max_issues_repo_licenses
listlengths 1
9
| max_issues_count
int64 1
67k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 4
269
| max_forks_repo_name
stringlengths 5
116
| max_forks_repo_head_hexsha
stringlengths 40
40
| max_forks_repo_licenses
listlengths 1
9
| max_forks_count
int64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 7
1.05M
| avg_line_length
float64 1.21
330k
| max_line_length
int64 6
990k
| alphanum_fraction
float64 0.01
0.99
| author_id
stringlengths 2
40
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ba597694175d6671a7e19b840d418421ce576468
| 3,218
|
hpp
|
C++
|
src/factor.hpp
|
mgbellemare/SkipCTS
|
ff142fa87bc16b1e2e381cf4f9e4959e754b9028
|
[
"Apache-2.0"
] | 48
|
2015-01-27T10:19:27.000Z
|
2022-02-02T07:49:56.000Z
|
src/factor.hpp
|
GitHubBeinner/SkipCTS
|
48af5c74ed43f724c61cdcf2e1a022f48c460ed7
|
[
"Apache-2.0"
] | 2
|
2017-02-12T21:42:47.000Z
|
2018-02-27T01:44:10.000Z
|
src/factor.hpp
|
GitHubBeinner/SkipCTS
|
48af5c74ed43f724c61cdcf2e1a022f48c460ed7
|
[
"Apache-2.0"
] | 10
|
2016-06-15T07:06:33.000Z
|
2020-08-10T12:04:21.000Z
|
#ifndef __FACTOR_HPP__
#define __FACTOR_HPP__
/******************************
Author: Joel Veness
Date: 2011
******************************/
#include "common.hpp"
// a generic structure for combining compressors for byte oriented data
template <typename T, size_t N>
class Factor : public Compressor {
public:
/// create a context tree of specified maximum depth and size
Factor(history_t &history, size_t depth);
/// delete the factored context tree
~Factor();
/// file extension
const char *fileExtension() const;
/// the logarithm of the probability of all processed experience
double logBlockProbability() const;
// the probability of seeing a particular symbol next
double prob(bit_t b);
/// process a new piece of sensory experience
void update(bit_t b);
/// the depth of the context tree
size_t depth() const;
/// number of nodes in the context tree
size_t size() const;
private:
/// copy contructor / assignment operator disabled
Factor(const Factor &rhs);
const Factor &operator=(const Factor &rhs);
T *m_models[N];
size_t m_depth;
history_t &m_history;
};
/* create the factored context tree */
template <typename T, size_t N>
Factor<T,N>::Factor(history_t &history, size_t depth) :
m_depth(depth),
m_history(history)
{
for (size_t i=0; i < N; i++) {
//m_models[i] = new T(history, depth+i, static_cast<int>(i));
m_models[i] = new T(history, depth+i);
}
}
/* delete the factored context tree */
template <typename T, size_t N>
Factor<T,N>::~Factor() {
for (size_t i=0; i < N; i++) {
delete m_models[i];
}
}
/* the logarithm of the probability of all processed experience */
template <typename T, size_t N>
double Factor<T,N>::logBlockProbability() const {
double sum = 0.0;
for (size_t i=0; i < N; i++) {
sum += m_models[i]->logBlockProbability();
}
return sum;
}
/* the probability of seeing a particular symbol next */
template <typename T, size_t N>
double Factor<T,N>::prob(bit_t b) {
size_t idx = (m_history.size() - m_depth) % N;
return m_models[idx]->prob(b);
}
/* process a new piece of data */
template <typename T, size_t N>
void Factor<T,N>::update(bit_t b) {
size_t idx = (m_history.size() - m_depth) % N;
m_models[idx]->update(b);
}
/* the depth of the context tree */
template <typename T, size_t N>
size_t Factor<T,N>::depth() const {
return m_depth;
}
/* number of nodes in the factored context tree */
template <typename T, size_t N>
size_t Factor<T,N>::size() const {
size_t sum = 0;
for (size_t i=0; i < N; i++) {
sum += m_models[i]->size();
}
return sum;
}
/* file extension */
template <typename T, size_t N>
const char *Factor<T, N>::fileExtension() const {
static const std::string ext = std::string("fac") + m_models[0]->fileExtension();
return ext.c_str();
}
#endif // __FACTOR_HPP__
| 23.489051
| 86
| 0.585768
|
mgbellemare
|
ba6100fde06249aa43bfcc6992e3430ba02c6454
| 1,082
|
cpp
|
C++
|
libs/numeric/linear_algebra/test/vector_test_rolf.cpp
|
lit-uriy/mtl4-mirror
|
37cf7c2847165d3537cbc3400cb5fde6f80e3d8b
|
[
"MTLL"
] | 24
|
2019-03-26T15:25:45.000Z
|
2022-03-26T10:00:45.000Z
|
libs/numeric/linear_algebra/test/vector_test_rolf.cpp
|
lit-uriy/mtl4-mirror
|
37cf7c2847165d3537cbc3400cb5fde6f80e3d8b
|
[
"MTLL"
] | 2
|
2020-04-17T12:35:32.000Z
|
2021-03-03T15:46:25.000Z
|
libs/numeric/linear_algebra/test/vector_test_rolf.cpp
|
lit-uriy/mtl4-mirror
|
37cf7c2847165d3537cbc3400cb5fde6f80e3d8b
|
[
"MTLL"
] | 10
|
2019-12-01T13:40:30.000Z
|
2022-01-14T08:39:54.000Z
|
#include<boost/numeric/ublas/vector.hpp>
#include<boost/numeric/ublas/io.hpp>
// #include "vector_concepts.hpp"
#include <boost/numeric/linear_algebra/vector_concepts.hpp>
typedef double Type;
namespace ublas = boost::numeric::ublas;
typedef ublas::vector<Type> Vector;
namespace math {
concept_map AdditiveAbelianGroup<Vector> {
typedef boost::numeric::ublas::vector_binary<boost::numeric::ublas::vector<double, boost::numeric::ublas::unbounded_array<double, std::allocator<double> > >, boost::numeric::ublas::vector<double, boost::numeric::ublas::unbounded_array<double, std::allocator<double> > >, boost::numeric::ublas::scalar_minus<double, double> > result_type;
}
concept_map math::VectorSpace<Vector,Type>
{
typedef AdditiveAbelianGroup<Vector>::result_type result_type;
typedef AdditiveAbelianGroup<Vector>::assign_result_type assign_result_type;
}
}
template< typename Vec, typename Scalar>
requires math::VectorSpace <Vec,Scalar>
void cg(Vec& u, Scalar s)
{
}
int main() {
Vector u(2);
u(0)=1.; u(1)=2.;;
Type s=1.;
cg(u,s);
}
| 27.74359
| 340
| 0.735675
|
lit-uriy
|
ba66771c3bd8825de3c402918534382e02f7d236
| 4,940
|
cpp
|
C++
|
accelerator/compression/ZlibStreamCompressor.cpp
|
Yeolar/accelerator
|
04d36eac69490df9ae71c7cfd71481d83ca51914
|
[
"Apache-2.0"
] | 2
|
2019-05-13T02:34:51.000Z
|
2019-11-14T06:52:44.000Z
|
accelerator/compression/ZlibStreamCompressor.cpp
|
Yeolar/accelerator
|
04d36eac69490df9ae71c7cfd71481d83ca51914
|
[
"Apache-2.0"
] | null | null | null |
accelerator/compression/ZlibStreamCompressor.cpp
|
Yeolar/accelerator
|
04d36eac69490df9ae71c7cfd71481d83ca51914
|
[
"Apache-2.0"
] | null | null | null |
/*
* Copyright 2017 Facebook, Inc.
* Copyright 2017 Yeolar
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "accelerator/compression/ZlibStreamCompressor.h"
#include "accelerator/Logging.h"
#include "accelerator/io/Cursor.h"
// IOBuf uses 24 bytes of data for bookeeping purposes, so requesting for 4073
// bytes of data will be rounded up to an allocation of 1 page.
DEFINE_int64(zlib_compressor_buffer_growth, 2024,
"The buffer growth size to use during IOBuf zlib deflation");
DEFINE_int64(zlib_compressor_buffer_minsize, 1024,
"The minimum buffer size to use before growing during IOBuf "
"zlib deflation");
namespace acc {
int64_t FLAGS_zlib_compressor_buffer_growth = 2024;
int64_t FLAGS_zlib_compressor_buffer_minsize = 1024;
void ZlibStreamCompressor::init(ZlibCompressionType type, int32_t level) {
DCHECK(type_ == ZlibCompressionType::NONE)
<< "Attempt to re-initialize compression stream";
type_ = type;
level_ = level;
status_ = Z_OK;
zlibStream_.zalloc = Z_NULL;
zlibStream_.zfree = Z_NULL;
zlibStream_.opaque = Z_NULL;
zlibStream_.total_in = 0;
zlibStream_.next_in = Z_NULL;
zlibStream_.avail_in = 0;
zlibStream_.avail_out = 0;
zlibStream_.next_out = Z_NULL;
DCHECK(level_ >= Z_NO_COMPRESSION && level_ <= Z_BEST_COMPRESSION)
<< "Invalid Zlib compression level. level=" << level_;
switch (type_) {
case ZlibCompressionType::GZIP:
status_ = deflateInit2(&zlibStream_,
level_,
Z_DEFLATED,
static_cast<int32_t>(type),
MAX_MEM_LEVEL,
Z_DEFAULT_STRATEGY);
break;
case ZlibCompressionType::DEFLATE:
status_ = deflateInit(&zlibStream_, level);
break;
default:
DCHECK(false) << "Unsupported zlib compression type.";
break;
}
if (status_ != Z_OK) {
ACCLOG(ERROR) << "error initializing zlib stream. r=" << status_;
}
}
ZlibStreamCompressor::ZlibStreamCompressor(ZlibCompressionType type, int level)
: status_(Z_OK) {
init(type, level);
}
ZlibStreamCompressor::~ZlibStreamCompressor() {
if (type_ != ZlibCompressionType::NONE) {
status_ = deflateEnd(&zlibStream_);
}
}
// Compress an IOBuf chain. Compress can be called multiple times and the
// Zlib stream will be synced after each call. trailer must be set to
// true on the final compression call.
std::unique_ptr<IOBuf> ZlibStreamCompressor::compress(const IOBuf* in,
bool trailer) {
const IOBuf* crtBuf{in};
size_t offset{0};
int flush{Z_NO_FLUSH};
auto out = IOBuf::create(FLAGS_zlib_compressor_buffer_growth);
auto appender = acc::io::Appender(out.get(),
FLAGS_zlib_compressor_buffer_growth);
auto chunkSize = FLAGS_zlib_compressor_buffer_minsize;
do {
// Advance to the next IOBuf if necessary
DCHECK_GE(crtBuf->length(), offset);
if (crtBuf->length() == offset) {
crtBuf = crtBuf->next();
if (crtBuf == in) {
// We hit the end of the IOBuf chain, and are done.
// Need to flush the stream
// Completely flush if the final call, otherwise flush state
if (trailer) {
flush = Z_FINISH;
} else {
flush = Z_SYNC_FLUSH;
}
} else {
// Prepare to process next buffer
offset = 0;
}
}
if (status_ == Z_STREAM_ERROR) {
ACCLOG(ERROR) << "error compressing buffer. r=" << status_;
return nullptr;
}
const size_t origAvailIn = crtBuf->length() - offset;
zlibStream_.next_in = const_cast<uint8_t*>(crtBuf->data() + offset);
zlibStream_.avail_in = origAvailIn;
// Zlib may not write it's entire state on the first pass.
do {
appender.ensure(chunkSize);
zlibStream_.next_out = appender.writableData();
zlibStream_.avail_out = chunkSize;
status_ = deflate(&zlibStream_, flush);
// Move output buffer ahead
auto outMove = chunkSize - zlibStream_.avail_out;
appender.append(outMove);
} while (zlibStream_.avail_out == 0);
DCHECK(zlibStream_.avail_in == 0);
// Adjust the input offset ahead
auto inConsumed = origAvailIn - zlibStream_.avail_in;
offset += inConsumed;
} while (flush != Z_FINISH && flush != Z_SYNC_FLUSH);
return out;
}
} // namespace acc
| 31.069182
| 79
| 0.664575
|
Yeolar
|
ba682e4e3c88c10e6bda68d00264237a3bd1d7d8
| 6,651
|
cpp
|
C++
|
hlp/dlls/carnet.cpp
|
Parpaing-1337-Krew/HL-Parpaing-updated
|
cd93465941fc359fd1e3b2f5e3be9a0cd89cd13a
|
[
"Unlicense"
] | 2
|
2020-01-08T10:13:18.000Z
|
2020-07-14T12:50:08.000Z
|
hlp/dlls/carnet.cpp
|
Parpaing-1337-Krew/HL-Parpaing-updated
|
cd93465941fc359fd1e3b2f5e3be9a0cd89cd13a
|
[
"Unlicense"
] | null | null | null |
hlp/dlls/carnet.cpp
|
Parpaing-1337-Krew/HL-Parpaing-updated
|
cd93465941fc359fd1e3b2f5e3be9a0cd89cd13a
|
[
"Unlicense"
] | null | null | null |
#include "extdll.h"
#include "util.h"
#include "cbase.h"
#include "weapons.h"
#include "player.h"
LINK_ENTITY_TO_CLASS( weapon_carnet, CCarnet );
enum carnet_e {
CARNET_IDLE = 0,
CARNET_IDLE2,
CARNET_ATTACK,
CARNET_HOLSTER,
CARNET_DRAW,
};
// --------------------------------------------
// UseDecrement() -
// --------------------------------------------
BOOL CCarnet::UseDecrement( void )
{
#if defined( CLIENT_WEAPONS )
return TRUE;
#else
return FALSE;
#endif
}
// --------------------------------------------
// SendWeaponAnim() - jou l'animation iAnim de
// du modèle de l'arme.
// --------------------------------------------
void CCarnet::SendWeaponAnim( int iAnim, int skiplocal, int body )
{
#ifndef CLIENT_DLL
MESSAGE_BEGIN( MSG_ONE, SVC_WEAPONANIM, NULL, m_pPlayer->pev );
WRITE_BYTE( iAnim );
WRITE_BYTE( body );
MESSAGE_END();
#endif
}
// --------------------------------------------
// Spawn() - Apparition de l'arme sur la map.
// --------------------------------------------
void CCarnet::Spawn( void )
{
pev->classname = MAKE_STRING( "weapon_carnet" ); // nom de l'entité
m_iId = WEAPON_CARNET; // ID de l'arme
//m_iDefaultAmmo = MONARME_DEFAULT_GIVE; // munitions que donne l'arme quand on la ramasse
Precache(); // Précache des ressources necessaires
SET_MODEL( ENT(pev), "models/w_carnet.mdl" ); // modèle "world" de l'arme
FallInit(); // prète à tomber au sol
}
void CCarnet::Precache( void )
{
// modèles de l'arme
PRECACHE_MODEL("models/v_carnet.mdl");
PRECACHE_MODEL("models/w_carnet.mdl");
PRECACHE_MODEL("models/p_carnet.mdl");
PRECACHE_SOUND("weapons/carnet_ecrit.wav");
/* PRECACHE_SOUND("weapons/carnet1.wav");
PRECACHE_SOUND("weapons/carnet2.wav");
PRECACHE_SOUND("weapons/carnet3.wav");*/
}
int CCarnet::GetItemInfo( ItemInfo *p )
{
p->pszName = STRING( pev->classname ); // nom de l'entité
p->pszAmmo1 = NULL; // type de munitions pour le premier mode de tire
p->iMaxAmmo1 = -1; // nombre maximum de munition type #1
p->pszAmmo2 = NULL; // type de munitions pour le second mode de tire
p->iMaxAmmo2 = -1; // nombre maximum de munition type #2
p->iMaxClip = WEAPON_NOCLIP; // capacité maximale du chargeur
p->iSlot = 0; // slot dans le HUD
p->iPosition = 2; // position dans le slot
p->iFlags = 0; // drapeau d'état
p->iId = m_iId = WEAPON_CARNET; // ID de l'arme
p->iWeight = CARNET_WEIGHT; // priorité dans le choix automatique
return 1; // tout s'est bien passé, on retourne 1
}
void CCarnet::PrimaryAttack(void)
{
#ifndef CLIENT_DLL
SendWeaponAnim( CARNET_ATTACK );
m_pPlayer->SetAnimation( PLAYER_ATTACK1 );
/* switch( RANDOM_LONG(0,2) )
{
case 0:
EMIT_SOUND(ENT(m_pPlayer->pev), CHAN_WEAPON, "weapons/carnet1.wav", 1, ATTN_NORM); break;
case 1:
EMIT_SOUND(ENT(m_pPlayer->pev), CHAN_WEAPON, "weapons/carnet2.wav", 1, ATTN_NORM); break;
case 2:
EMIT_SOUND(ENT(m_pPlayer->pev), CHAN_WEAPON, "weapons/carnet3.wav", 1, ATTN_NORM); break;
}*/
EMIT_SOUND(ENT(m_pPlayer->pev), CHAN_WEAPON, "weapons/carnet_ecrit.wav", 1, ATTN_NORM);
TraceResult tr;
UTIL_MakeVectors(m_pPlayer->pev->v_angle);
UTIL_TraceLine(m_pPlayer->pev->origin + m_pPlayer->pev->view_ofs,m_pPlayer->pev->origin + m_pPlayer->pev->view_ofs + gpGlobals->v_forward * 8192,dont_ignore_monsters, m_pPlayer->edict(), &tr );
if ( tr.flFraction != 1.0 && !FNullEnt( tr.pHit) )
{
CBaseEntity *pHit = CBaseEntity::Instance( tr.pHit );
if (pHit->IsPlayer())
{
CBasePlayer *pMauvais;
pMauvais = GetClassPtr((CBasePlayer *)pHit->pev);
if (pMauvais->m_iTeam == MACON1 || pMauvais->m_iTeam == MACON2)
{
if (pMauvais->IsCheck) {
pMauvais->BlameMacon(m_pPlayer,pMauvais); // hop un petit sprite ki lui rappele son dur labeur !
m_pPlayer->AddPoints (1,1);
}
}
}
}
///////////// pour mes tests solo
/* CBaseEntity *pEntity = NULL;
while ((pEntity = UTIL_FindEntityInSphere( pEntity, m_pPlayer->pev->origin, 200 )) != NULL)
{
if (pEntity->IsPlayer() && !pEntity->IsMoving()) // si l'obj est bien 1 player et kil ne bouge pas.
{
CBasePlayer *pMauvais;
pMauvais = GetClassPtr((CBasePlayer *)pEntity->pev);
if (pMauvais->m_iTeam == MACON1 || pMauvais->m_iTeam == MACON2 || pMauvais->m_iTeam == 3)
{
if (pMauvais->IsCheck) {
pMauvais->BlameMacon(m_pPlayer,pMauvais); // hop un petit sprite ki lui rappele son dur labeur !
m_pPlayer->AddPoints (1,1);
}
}
}
}*/
#endif
int flags;
#ifdef CLIENT_WEAPONS
flags = FEV_NOTHOST;
#else
flags = 0;
#endif
//PLAYBACK_EVENT_FULL( flags, m_pPlayer->edict(), m_usCarnetFire, 0.0, (float *)&g_vecZero, (float *)&g_vecZero, 0.0, 0.0, 0, 0, 0, 0 );
m_pPlayer->m_flNextAttack = UTIL_WeaponTimeBase() + 7.0;
}
void CCarnet::SecondaryAttack(void)
{
m_pPlayer->SelectItem ("weapon_sifflet");
}
int CCarnet::AddToPlayer( CBasePlayer *pPlayer )
{
if( CBasePlayerWeapon::AddToPlayer( pPlayer ) )
{
MESSAGE_BEGIN( MSG_ONE, gmsgWeapPickup, NULL, pPlayer->pev );
WRITE_BYTE( m_iId );
MESSAGE_END();
return TRUE;
}
return FALSE;
}
BOOL CCarnet::Deploy( void )
{
return DefaultDeploy( "models/v_carnet.mdl", "models/p_carnet.mdl", CARNET_IDLE, "hive" );
}
// --------------------------------------------
// Holster() -
// --------------------------------------------
void CCarnet::Holster( int skiplocal /* = 0 */ )
{
SendWeaponAnim( CARNET_HOLSTER );
}
// --------------------------------------------
// WeaponIdle() -
// --------------------------------------------
void CCarnet::WeaponIdle( void )
{
ResetEmptySound();
m_pPlayer->GetAutoaimVector( AUTOAIM_5DEGREES );
if( m_flTimeWeaponIdle > UTIL_WeaponTimeBase() )
return;
switch( RANDOM_LONG( 0, 1 ) )
{
// on joue une animation "idle" au hasard
default:
case 0: SendWeaponAnim( CARNET_IDLE ); break;
case 1: SendWeaponAnim( CARNET_IDLE2 ); break;
}
// temps aléatoire avant de rappler cette fonction
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + UTIL_SharedRandomFloat( m_pPlayer->random_seed, 10, 15 );
}
| 27.37037
| 194
| 0.574049
|
Parpaing-1337-Krew
|
ba6a30c247258445d3cf7673c7de9cbaa36b8230
| 3,959
|
cpp
|
C++
|
opentera-webrtc-native-client/OpenteraWebrtcNativeClient/src/Utils/Client.cpp
|
introlab/opentera-webrtc
|
cf92ccd0b239646f6caf68e3638b8f28598ea609
|
[
"Apache-2.0"
] | 12
|
2021-05-30T18:32:36.000Z
|
2022-03-25T12:31:57.000Z
|
opentera-webrtc-native-client/OpenteraWebrtcNativeClient/src/Utils/Client.cpp
|
introlab/opentera-webrtc
|
cf92ccd0b239646f6caf68e3638b8f28598ea609
|
[
"Apache-2.0"
] | 22
|
2021-03-17T12:18:42.000Z
|
2022-03-19T19:12:51.000Z
|
opentera-webrtc-native-client/OpenteraWebrtcNativeClient/src/Utils/Client.cpp
|
introlab/opentera-webrtc-teleop
|
ecb671635832d6d66e0f2f0a7e90b0877ce7c338
|
[
"Apache-2.0"
] | 1
|
2022-02-07T21:30:33.000Z
|
2022-02-07T21:30:33.000Z
|
#include <OpenteraWebrtcNativeClient/Utils/Client.h>
using namespace opentera;
using namespace std;
bool opentera::operator==(const sio::message& m1, const sio::message& m2)
{
if (m1.get_flag() != m2.get_flag())
{
return false;
}
switch (m1.get_flag())
{
case sio::message::flag_integer:
return m1.get_int() == m2.get_int();
case sio::message::flag_double:
return m1.get_double() == m2.get_double();
case sio::message::flag_string:
return m1.get_string() == m2.get_string();
case sio::message::flag_binary:
if (m1.get_binary() == m2.get_binary())
{
return true;
}
if (m1.get_binary() && m2.get_binary())
{
return *m1.get_binary() == *m2.get_binary();
}
else
{
return false;
}
case sio::message::flag_boolean:
return m1.get_bool() == m2.get_bool();
case sio::message::flag_null:
return true;
case sio::message::flag_array:
if (m1.get_vector().size() != m2.get_vector().size())
{
return false;
}
for (size_t i = 0; i < m1.get_vector().size(); i++)
{
if (*m1.get_vector()[i] != *m2.get_vector()[i])
{
return false;
}
}
return true;
case sio::message::flag_object:
for (const auto& m1Pair : m1.get_map())
{
if (m2.get_map().find(m1Pair.first) == m2.get_map().end() ||
*m1Pair.second != *m2.get_map().at(m1Pair.first))
{
return false;
}
}
return true;
}
return true;
}
bool opentera::operator!=(const sio::message& m1, const sio::message& m2)
{
return !(m1 == m2);
}
/**
* @brief Creates a client with the specified values.
*
* @param id The client id
* @param name The client name
* @param data The client data
*/
Client::Client(string id, string name, sio::message::ptr data) :
m_id(move(id)), m_name(move(name)), m_data(move(data))
{
}
Client::Client(const sio::message::ptr& message)
{
if (isValid(message))
{
auto id = message->get_map()["id"];
auto name = message->get_map()["name"];
auto data = message->get_map()["data"];
m_id = id->get_string();
m_name = name->get_string();
m_data = data;
}
}
bool Client::isValid(const sio::message::ptr &message)
{
if (message->get_flag() != sio::message::flag_object)
{
return false;
}
if (message->get_map().find("id") == message->get_map().end() ||
message->get_map().find("name") == message->get_map().end() ||
message->get_map().find("data") == message->get_map().end())
{
return false;
}
auto id = message->get_map()["id"];
auto name = message->get_map()["name"];
return id->get_flag() == sio::message::flag_string && name->get_flag() == sio::message::flag_string;
}
/**
* @brief Creates a room client with the specified values.
*
* @param id The client id
* @param name The client name
* @param data The client data
* @param isConnected Indicates if the client is connected (RTCPeerConnection)
*/
RoomClient::RoomClient(string id, string name, sio::message::ptr data, bool isConnected) :
m_id(move(id)), m_name(move(name)), m_data(move(data)), m_isConnected(isConnected)
{
}
/**
* @brief Creates a room client from a client.
*
* @param client The client
* @param isConnected Indicates if the client is connected (RTCPeerConnection)
*/
RoomClient::RoomClient(const Client& client, bool isConnected) :
m_id(client.id()), m_name(client.name()), m_data(client.data()), m_isConnected(isConnected)
{
}
| 27.493056
| 104
| 0.547866
|
introlab
|
ba6b28d9bb741c070d86d00659946b69938084c1
| 53,813
|
cpp
|
C++
|
src/liboslcomp/oslcomp.cpp
|
brechtvl/OpenShadingLanguage
|
71c4fb263fcdc88decf2b86d346836f7a2b4d463
|
[
"BSD-3-Clause"
] | 1
|
2019-08-08T04:31:36.000Z
|
2019-08-08T04:31:36.000Z
|
src/liboslcomp/oslcomp.cpp
|
brechtvl/OpenShadingLanguage
|
71c4fb263fcdc88decf2b86d346836f7a2b4d463
|
[
"BSD-3-Clause"
] | null | null | null |
src/liboslcomp/oslcomp.cpp
|
brechtvl/OpenShadingLanguage
|
71c4fb263fcdc88decf2b86d346836f7a2b4d463
|
[
"BSD-3-Clause"
] | null | null | null |
/*
Copyright (c) 2009-2010 Sony Pictures Imageworks Inc., et al.
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 Sony Pictures Imageworks 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 <vector>
#include <string>
#include <fstream>
#include <cstdio>
#include <streambuf>
#include <cstdio>
#include <cerrno>
#include "oslcomp_pvt.h"
#include <OpenImageIO/platform.h>
#include <OpenImageIO/sysutil.h>
#include <OpenImageIO/strutil.h>
#include <OpenImageIO/dassert.h>
#include <OpenImageIO/filesystem.h>
#include <OpenImageIO/thread.h>
#ifndef USE_BOOST_WAVE
# define USE_BOOST_WAVE 0
#endif
#if USE_BOOST_WAVE
# include <boost/wave.hpp>
# include <boost/wave/cpplexer/cpp_lex_token.hpp>
# include <boost/wave/cpplexer/cpp_lex_iterator.hpp>
#else
# if !defined(__STDC_CONSTANT_MACROS)
# define __STDC_CONSTANT_MACROS 1
# endif
# include <clang/Frontend/CompilerInstance.h>
# include <clang/Frontend/TextDiagnosticPrinter.h>
# include <clang/Frontend/Utils.h>
# include <clang/Basic/TargetInfo.h>
# include <clang/Lex/PreprocessorOptions.h>
# include <llvm/Support/ToolOutputFile.h>
# include <llvm/Support/Host.h>
# include <llvm/Support/MemoryBuffer.h>
# include <llvm/Support/raw_ostream.h>
#endif
OSL_NAMESPACE_ENTER
OSLCompiler::OSLCompiler (ErrorHandler *errhandler)
{
m_impl = new pvt::OSLCompilerImpl (errhandler);
}
OSLCompiler::~OSLCompiler ()
{
delete m_impl;
}
bool
OSLCompiler::compile (string_view filename,
const std::vector<std::string> &options,
string_view stdoslpath)
{
return m_impl->compile (filename, options, stdoslpath);
}
bool
OSLCompiler::compile_buffer (string_view sourcecode,
std::string &osobuffer,
const std::vector<std::string> &options,
string_view stdoslpath)
{
return m_impl->compile_buffer (sourcecode, osobuffer, options, stdoslpath);
}
string_view
OSLCompiler::output_filename () const
{
return m_impl->output_filename();
}
namespace pvt { // OSL::pvt
OSLCompilerImpl *oslcompiler = NULL;
static ustring op_for("for");
static ustring op_while("while");
static ustring op_dowhile("dowhile");
OSLCompilerImpl::OSLCompilerImpl (ErrorHandler *errhandler)
: m_errhandler(errhandler ? errhandler : &ErrorHandler::default_handler()),
m_err(false), m_symtab(*this),
m_current_typespec(TypeDesc::UNKNOWN), m_current_output(false),
m_verbose(false), m_quiet(false), m_debug(false),
m_preprocess_only(false), m_optimizelevel(1),
m_next_temp(0), m_next_const(0),
m_osofile(NULL),
m_total_nesting(0), m_loop_nesting(0), m_derivsym(NULL),
m_main_method_start(-1),
m_declaring_shader_formals(false)
{
initialize_globals ();
initialize_builtin_funcs ();
}
OSLCompilerImpl::~OSLCompilerImpl ()
{
delete m_derivsym;
}
bool
OSLCompilerImpl::preprocess_file (const std::string &filename,
const std::string &stdoslpath,
const std::vector<std::string> &defines,
const std::vector<std::string> &includepaths,
std::string &result)
{
// Read file contents into a string
std::ifstream instream;
OIIO::Filesystem::open(instream, filename);
if (! instream.is_open()) {
error (ustring(filename), 0, "Could not open \"%s\"\n", filename.c_str());
return false;
}
instream.unsetf (std::ios::skipws);
std::string instring (std::istreambuf_iterator<char>(instream.rdbuf()),
std::istreambuf_iterator<char>());
instream.close ();
return preprocess_buffer (instring, filename, stdoslpath, defines,
includepaths, result);
}
#if USE_BOOST_WAVE
bool
OSLCompilerImpl::preprocess_buffer (const std::string &buffer,
const std::string &filename,
const std::string &stdoslpath,
const std::vector<std::string> &defines,
const std::vector<std::string> &includepaths,
std::string &result)
{
std::ostringstream ss;
boost::wave::util::file_position_type current_position;
std::string instring;
if (!stdoslpath.empty())
instring = OIIO::Strutil::format("#include \"%s\"\n", stdoslpath.c_str());
else
instring = "\n";
instring += buffer;
try {
typedef boost::wave::cpplexer::lex_token<> token_type;
typedef boost::wave::cpplexer::lex_iterator<token_type> lex_iterator_type;
typedef boost::wave::context<std::string::iterator, lex_iterator_type> context_type;
// Setup wave context
context_type ctx (instring.begin(), instring.end(), filename.c_str());
// Turn on support of variadic macros, e.g. #define FOO(...) __VA_ARGS__
boost::wave::language_support lang = boost::wave::language_support (
ctx.get_language() | boost::wave::support_option_variadics);
ctx.set_language (lang);
ctx.add_macro_definition (OIIO::Strutil::format("OSL_VERSION_MAJOR=%d",
OSL_LIBRARY_VERSION_MAJOR).c_str());
ctx.add_macro_definition (OIIO::Strutil::format("OSL_VERSION_MINOR=%d",
OSL_LIBRARY_VERSION_MINOR).c_str());
ctx.add_macro_definition (OIIO::Strutil::format("OSL_VERSION_PATCH=%d",
OSL_LIBRARY_VERSION_PATCH).c_str());
ctx.add_macro_definition (OIIO::Strutil::format("OSL_VERSION=%d",
OSL_LIBRARY_VERSION_CODE).c_str());
for (size_t i = 0; i < defines.size(); ++i) {
if (defines[i][1] == 'D')
ctx.add_macro_definition (defines[i].c_str()+2);
else if (defines[i][1] == 'U')
ctx.remove_macro_definition (defines[i].c_str()+2);
}
for (size_t i = 0; i < includepaths.size(); ++i) {
ctx.add_sysinclude_path (includepaths[i].c_str());
ctx.add_include_path (includepaths[i].c_str());
}
context_type::iterator_type first = ctx.begin();
context_type::iterator_type last = ctx.end();
#if 0
// N.B. The force_include() method is buggy, see
// https://svn.boost.org/trac/boost/ticket/6838
// It turns out that it screws up all file/line tracking therafter.
// So instead, we simply force a '#include "stdosl.h"' as the first
// line (see above) and then doctor the subsequent line numbers to
// subtract one in osllex.h. Oh, the tangled web we weave when
// we attempt to work around boost bugs.
// Add standard include
first.force_include (stdinclude.c_str(), true);
#endif
// Get result
while (first != last) {
current_position = (*first).get_position();
ss << (*first).get_value();
++first;
}
} catch (boost::wave::cpp_exception const& e) {
// Processing error, ignore pedantic last line not terminated warning
if (e.get_errorcode() == boost::wave::preprocess_exception::last_line_not_terminated) {
ss << "\n";
}
else {
error (ustring(e.file_name()), e.line_no(), "%s\n", e.description());
return false;
}
} catch (std::exception const& e) {
// STL exception
error (ustring(current_position.get_file().c_str()),
current_position.get_line(),
"preprocessor exception caught: %s\n", e.what());
return false;
} catch (...) {
// Other exception
error (ustring(current_position.get_file().c_str()),
current_position.get_line(),
"unexpected exception caught\n");
return false;
}
result = ss.str();
return true;
}
#else /* LLVM: vvvvvvvvvv */
bool
OSLCompilerImpl::preprocess_buffer (const std::string &buffer,
const std::string &filename,
const std::string &stdoslpath,
const std::vector<std::string> &defines,
const std::vector<std::string> &includepaths,
std::string &result)
{
std::string instring;
if (!stdoslpath.empty())
instring = OIIO::Strutil::format("#include \"%s\"\n", stdoslpath);
else
instring = "\n";
instring += buffer;
std::unique_ptr<llvm::MemoryBuffer> mbuf (llvm::MemoryBuffer::getMemBuffer(instring, filename));
clang::CompilerInstance inst;
// Set up error capture for the preprocessor
std::string preproc_errors;
llvm::raw_string_ostream errstream(preproc_errors);
clang::DiagnosticOptions *diagOptions = new clang::DiagnosticOptions();
clang::TextDiagnosticPrinter *diagPrinter =
new clang::TextDiagnosticPrinter(errstream, diagOptions);
llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> diagIDs(new clang::DiagnosticIDs);
clang::DiagnosticsEngine *diagEngine =
new clang::DiagnosticsEngine(diagIDs, diagOptions, diagPrinter);
inst.setDiagnostics(diagEngine);
const std::shared_ptr<clang::TargetOptions> &targetopts =
std::make_shared<clang::TargetOptions>(inst.getTargetOpts());
targetopts->Triple = llvm::sys::getDefaultTargetTriple();
clang::TargetInfo *target =
clang::TargetInfo::CreateTargetInfo(inst.getDiagnostics(), targetopts);
inst.setTarget(target);
inst.createFileManager();
inst.createSourceManager(inst.getFileManager());
#if OSL_LLVM_VERSION <= 35
clang::FrontendInputFile inputFile(mbuf.release(), clang::IK_None);
inst.InitializeSourceManager(inputFile);
#else
clang::SourceManager &sm = inst.getSourceManager();
sm.setMainFileID (sm.createFileID(std::move(mbuf), clang::SrcMgr::C_User));
#endif
inst.getPreprocessorOutputOpts().ShowCPP = 1;
inst.getPreprocessorOutputOpts().ShowMacros = 0;
clang::HeaderSearchOptions &headerOpts = inst.getHeaderSearchOpts();
headerOpts.UseBuiltinIncludes = 0;
headerOpts.UseStandardSystemIncludes = 0;
headerOpts.UseStandardCXXIncludes = 0;
std::string directory = OIIO::Filesystem::parent_path(filename);
if (directory.empty())
directory = OIIO::Filesystem::current_path();
headerOpts.AddPath (directory, clang::frontend::Angled, false, true);
for (auto&& inc : includepaths) {
headerOpts.AddPath (inc, clang::frontend::Angled,
false /* not a framework */,
true /* ignore sys root */);
}
clang::PreprocessorOptions &preprocOpts = inst.getPreprocessorOpts();
preprocOpts.UsePredefines = 0;
preprocOpts.addMacroDef (OIIO::Strutil::format("OSL_VERSION_MAJOR=%d",
OSL_LIBRARY_VERSION_MAJOR).c_str());
preprocOpts.addMacroDef (OIIO::Strutil::format("OSL_VERSION_MINOR=%d",
OSL_LIBRARY_VERSION_MINOR).c_str());
preprocOpts.addMacroDef (OIIO::Strutil::format("OSL_VERSION_PATCH=%d",
OSL_LIBRARY_VERSION_PATCH).c_str());
preprocOpts.addMacroDef (OIIO::Strutil::format("OSL_VERSION=%d",
OSL_LIBRARY_VERSION_CODE).c_str());
for (auto&& d : defines) {
if (d[1] == 'D')
preprocOpts.addMacroDef (d.c_str()+2);
else if (d[1] == 'U')
preprocOpts.addMacroUndef (d.c_str()+2);
}
inst.getLangOpts().LineComment = 1;
inst.createPreprocessor(clang::TU_Prefix);
llvm::raw_string_ostream ostream(result);
diagPrinter->BeginSourceFile (inst.getLangOpts(), &inst.getPreprocessor());
clang::DoPrintPreprocessedInput (inst.getPreprocessor(),
&ostream, inst.getPreprocessorOutputOpts());
diagPrinter->EndSourceFile ();
if (preproc_errors.size()) {
while (preproc_errors.size() &&
preproc_errors[preproc_errors.size()-1] == '\n')
preproc_errors.erase (preproc_errors.size()-1);
error (ustring(), -1, "%s", preproc_errors.c_str());
return false;
}
return true;
}
#endif
void
OSLCompilerImpl::read_compile_options (const std::vector<std::string> &options,
std::vector<std::string> &defines,
std::vector<std::string> &includepaths)
{
m_output_filename.clear ();
m_preprocess_only = false;
for (size_t i = 0; i < options.size(); ++i) {
if (options[i] == "-v") {
// verbose mode
m_verbose = true;
} else if (options[i] == "-q") {
// quiet mode
m_quiet = true;
} else if (options[i] == "-d") {
// debug mode
m_debug = true;
} else if (options[i] == "-E") {
m_preprocess_only = true;
} else if (options[i] == "-o" && i < options.size()-1) {
++i;
m_output_filename = options[i];
} else if (options[i] == "-O0") {
m_optimizelevel = 0;
} else if (options[i] == "-O" || options[i] == "-O1") {
m_optimizelevel = 1;
} else if (options[i] == "-O2") {
m_optimizelevel = 2;
} else if (options[i].c_str()[0] == '-' && options[i].size() > 2) {
// options meant for the preprocessor
if (options[i].c_str()[1] == 'D' || options[i].c_str()[1] == 'U')
defines.push_back(options[i]);
else if (options[i].c_str()[1] == 'I')
includepaths.push_back(options[i].substr(2));
}
}
}
// Guess the path for stdosl.h. This is only called if no explicit
// stdoslpath is given to the compile command.
static string_view
find_stdoslpath (const std::vector<std::string>& includepaths)
{
// first look in $OSLHOME/shaders
std::string OSLHOME = OIIO::Sysutil::getenv ("OSLHOME");
if (! OSLHOME.empty()) {
std::string path = OSLHOME + "/shaders";
if (OIIO::Filesystem::is_directory (path)) {
path = path + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
}
// If no OSLHOME, try looking wherever this program (the one running)
// lives, in a shaders or lib/osl/include directory.
std::string program = OIIO::Sysutil::this_program_path ();
if (program.size()) {
std::string path (program); // our program
path = OIIO::Filesystem::parent_path(path); // the bin dir of our program
path = OIIO::Filesystem::parent_path(path); // now the parent dir
std::string savepath = path;
// We search two spots: ../../lib/osl/include, and ../shaders
path = savepath + "/lib/osl/include";
if (OIIO::Filesystem::is_directory (path)) {
path = path + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
path = savepath + "/shaders";
if (OIIO::Filesystem::is_directory (path)) {
path = path + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
path = OIIO::Filesystem::parent_path(savepath); // Try one level higher
path = path + "/shaders";
if (OIIO::Filesystem::is_directory (path)) {
path = path + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
}
// Try looking for "oslc" binary in the $PATH, and if so, look in
// ../../shaders/stdosl.h
std::vector<std::string> exec_path_dirs;
OIIO::Filesystem::searchpath_split (OIIO::Sysutil::getenv("PATH"),
exec_path_dirs, true);
if (exec_path_dirs.size()) {
#ifdef WIN32
std::string oslcbin = "oslc.exe";
#else
std::string oslcbin = "oslc";
#endif
oslcbin = OIIO::Filesystem::searchpath_find (oslcbin, exec_path_dirs);
if (oslcbin.size()) {
std::string path = OIIO::Filesystem::parent_path(oslcbin); // the bin dir of our program
path = OIIO::Filesystem::parent_path(path); // now the parent dir
path += "/shaders";
if (OIIO::Filesystem::is_directory (path)) {
path = path + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
}
}
// Try the include paths
for (const auto& incpath : includepaths) {
std::string path = incpath + "/stdosl.h";
if (OIIO::Filesystem::exists (path))
return ustring(path);
}
// Give up
return string_view();
}
bool
OSLCompilerImpl::compile (string_view filename,
const std::vector<std::string> &options,
string_view stdoslpath)
{
if (! OIIO::Filesystem::exists (filename)) {
error (ustring(), 0, "Input file \"%s\" not found", filename.c_str());
return false;
}
std::vector<std::string> defines;
std::vector<std::string> includepaths;
m_cwd = OIIO::Filesystem::current_path();
m_main_filename = filename;
read_compile_options (options, defines, includepaths);
// Determine where the installed shader include directory is, and
// look for ../shaders/stdosl.h and force it to include.
if (stdoslpath.empty()) {
stdoslpath = find_stdoslpath(includepaths);
}
if (stdoslpath.empty() || ! OIIO::Filesystem::exists(stdoslpath))
warning (ustring(filename), 0, "Unable to find \"stdosl.h\"");
else {
// Add the directory of stdosl.h to the include paths
includepaths.push_back (OIIO::Filesystem::parent_path (stdoslpath));
}
std::string preprocess_result;
if (! preprocess_file (filename, stdoslpath,
defines, includepaths, preprocess_result)) {
return false;
} else if (m_preprocess_only) {
std::cout << preprocess_result;
} else {
bool parseerr = osl_parse_buffer (preprocess_result);
if (! parseerr) {
if (shader())
shader()->typecheck ();
else
error (ustring(), 0, "No shader function defined");
}
// Print the parse tree if there were no errors
if (m_debug) {
symtab().print ();
if (shader())
shader()->print (std::cout);
}
if (! error_encountered()) {
shader()->codegen ();
track_variable_dependencies ();
track_variable_lifetimes ();
check_for_illegal_writes ();
// if (m_optimizelevel >= 1)
// coalesce_temporaries ();
}
if (! error_encountered()) {
if (m_output_filename.size() == 0)
m_output_filename = default_output_filename ();
std::ofstream oso_output;
OIIO::Filesystem::open (oso_output, m_output_filename);
if (! oso_output.good()) {
error (ustring(), 0, "Could not open \"%s\"",
m_output_filename.c_str());
return false;
}
ASSERT (m_osofile == NULL);
m_osofile = &oso_output;
write_oso_file (m_output_filename, OIIO::Strutil::join(options," "));
ASSERT (m_osofile == NULL);
}
oslcompiler = NULL;
}
return ! error_encountered();
}
bool
OSLCompilerImpl::compile_buffer (string_view sourcecode,
std::string &osobuffer,
const std::vector<std::string> &options,
string_view stdoslpath)
{
string_view filename ("<buffer>");
std::vector<std::string> defines;
std::vector<std::string> includepaths;
read_compile_options (options, defines, includepaths);
m_cwd = OIIO::Filesystem::current_path();
m_main_filename = filename;
// Determine where the installed shader include directory is, and
// look for ../shaders/stdosl.h and force it to include.
if (stdoslpath.empty()) {
stdoslpath = find_stdoslpath(includepaths);
}
if (stdoslpath.empty() || ! OIIO::Filesystem::exists(stdoslpath))
warning (ustring(filename), 0, "Unable to find \"stdosl.h\"");
std::string preprocess_result;
if (! preprocess_buffer (sourcecode, filename, stdoslpath,
defines, includepaths, preprocess_result)) {
return false;
} else if (m_preprocess_only) {
std::cout << preprocess_result;
} else {
bool parseerr = osl_parse_buffer (preprocess_result);
if (! parseerr) {
if (shader())
shader()->typecheck ();
else
error (ustring(), 0, "No shader function defined");
}
// Print the parse tree if there were no errors
if (m_debug) {
symtab().print ();
if (shader())
shader()->print (std::cout);
}
if (! error_encountered()) {
shader()->codegen ();
track_variable_dependencies ();
track_variable_lifetimes ();
check_for_illegal_writes ();
// if (m_optimizelevel >= 1)
// coalesce_temporaries ();
}
if (! error_encountered()) {
m_output_filename = "<buffer>";
std::ostringstream oso_output;
oso_output.imbue (std::locale::classic()); // force C locale
ASSERT (m_osofile == NULL);
m_osofile = &oso_output;
write_oso_file (m_output_filename, OIIO::Strutil::join(options," "));
osobuffer = oso_output.str();
ASSERT (m_osofile == NULL);
}
oslcompiler = NULL;
}
return ! error_encountered();
}
struct GlobalTable {
const char *name;
TypeSpec type;
};
void
OSLCompilerImpl::initialize_globals ()
{
static GlobalTable globals[] = {
{ "P", TypeDesc::TypePoint },
{ "I", TypeDesc::TypeVector },
{ "N", TypeDesc::TypeNormal },
{ "Ng", TypeDesc::TypeNormal },
{ "u", TypeDesc::TypeFloat },
{ "v", TypeDesc::TypeFloat },
{ "dPdu", TypeDesc::TypeVector },
{ "dPdv", TypeDesc::TypeVector },
#if 0
// Light variables -- we don't seem to be on a route to support this
// kind of light shader, so comment these out for now.
{ "L", TypeDesc::TypeVector },
{ "Cl", TypeDesc::TypeColor },
{ "Ns", TypeDesc::TypeNormal },
{ "Pl", TypeDesc::TypePoint },
{ "Nl", TypeDesc::TypeNormal },
#endif
{ "Ps", TypeDesc::TypePoint },
{ "Ci", TypeSpec (TypeDesc::TypeColor, true) },
{ "time", TypeDesc::TypeFloat },
{ "dtime", TypeDesc::TypeFloat },
{ "dPdtime", TypeDesc::TypeVector },
{ NULL }
};
for (int i = 0; globals[i].name; ++i) {
Symbol *s = new Symbol (ustring(globals[i].name), globals[i].type,
SymTypeGlobal);
symtab().insert (s);
}
}
std::string
OSLCompilerImpl::default_output_filename ()
{
if (m_shader && shader_decl())
return shader_decl()->shadername().string() + ".oso";
return std::string();
}
void
OSLCompilerImpl::write_oso_metadata (const ASTNode *metanode) const
{
ASSERT (metanode->nodetype() == ASTNode::variable_declaration_node);
const ASTvariable_declaration *metavar = static_cast<const ASTvariable_declaration *>(metanode);
Symbol *metasym = metavar->sym();
ASSERT (metasym);
TypeSpec ts = metasym->typespec();
std::string pdl;
bool ok = metavar->param_default_literals (metasym, metavar->init().get(), pdl, ",");
if (ok) {
oso ("%%meta{%s,%s,%s} ", ts.string().c_str(), metasym->name(), pdl);
} else {
error (metanode->sourcefile(), metanode->sourceline(),
"Don't know how to print metadata %s (%s) with node type %s",
metasym->name().c_str(), ts.string().c_str(),
metavar->init()->nodetypename());
}
}
void
OSLCompilerImpl::write_oso_const_value (const ConstantSymbol *sym) const
{
ASSERT (sym);
TypeDesc type = sym->typespec().simpletype();
TypeDesc elemtype = type.elementtype();
int nelements = std::max (1, type.arraylen);
if (elemtype == TypeDesc::STRING)
for (int i = 0; i < nelements; ++i)
oso ("\"%s\"%s", sym->strval(i), nelements>1 ? " " : "");
else if (elemtype == TypeDesc::INT)
for (int i = 0; i < nelements; ++i)
oso ("%d%s", sym->intval(i), nelements>1 ? " " : "");
else if (elemtype == TypeDesc::FLOAT)
for (int i = 0; i < nelements; ++i)
oso ("%.8g%s", sym->floatval(i), nelements>1 ? " " : "");
else if (equivalent (elemtype, TypeDesc::TypeVector))
for (int i = 0; i < nelements; ++i)
oso ("%.8g %.8g %.8g%s", sym->vecval(i)[0], sym->vecval(i)[1],
sym->vecval(i)[2], nelements>1 ? " " : "");
else {
ASSERT (0 && "Don't know how to output this constant type");
}
}
void
OSLCompilerImpl::write_oso_symbol (const Symbol *sym)
{
// symtype / datatype / name
oso ("%s\t%s\t%s", sym->symtype_shortname(),
type_c_str(sym->typespec()), sym->mangled().c_str());
ASTvariable_declaration *v = NULL;
if (sym->node() && sym->node()->nodetype() == ASTNode::variable_declaration_node)
v = static_cast<ASTvariable_declaration *>(sym->node());
// Print default values
bool isparam = (sym->symtype() == SymTypeParam ||
sym->symtype() == SymTypeOutputParam);
if (sym->symtype() == SymTypeConst) {
oso ("\t");
write_oso_const_value (static_cast<const ConstantSymbol *>(sym));
oso ("\t");
} else if (v && isparam) {
std::string out;
v->param_default_literals (sym, v->init().get(), out);
oso ("\t%s\t", out.c_str());
}
//
// Now output all the hints, which is most of the work!
//
int hints = 0;
// %meta{} encodes metadata (handled by write_oso_metadata)
if (v) {
ASSERT (v);
for (ASTNode::ref m = v->meta(); m; m = m->next()) {
if (hints++ == 0)
oso ("\t");
write_oso_metadata (m.get());
}
}
// %read and %write give the range of ops over which a symbol is used.
oso ("%c%%read{%d,%d} %%write{%d,%d}", hints++ ? ' ' : '\t',
sym->firstread(), sym->lastread(),
sym->firstwrite(), sym->lastwrite());
// %struct, %structfields, and %structfieldtypes document the
// definition of a structure and which other symbols comprise the
// individual fields.
if (sym->typespec().is_structure()) {
const StructSpec *structspec (sym->typespec().structspec());
std::string fieldlist, signature;
for (int i = 0; i < (int)structspec->numfields(); ++i) {
if (i > 0)
fieldlist += ",";
fieldlist += structspec->field(i).name.string();
signature += code_from_type (structspec->field(i).type);
}
oso ("%c%%struct{\"%s\"} %%structfields{%s} %%structfieldtypes{\"%s\"} %%structnfields{%d}",
hints++ ? ' ' : '\t',
structspec->mangled().c_str(), fieldlist.c_str(),
signature.c_str(), structspec->numfields());
}
// %mystruct and %mystructfield document the symbols holding structure
// fields, linking them back to the structures they are part of.
if (sym->fieldid() >= 0) {
ASTvariable_declaration *vd = (ASTvariable_declaration *) sym->node();
if (vd)
oso ("%c%%mystruct{%s} %%mystructfield{%d}", hints++ ? ' ' : '\t',
vd->sym()->mangled().c_str(), sym->fieldid());
}
// %derivs hint marks symbols that need to carry derivatives
if (sym->has_derivs())
oso ("%c%%derivs", hints++ ? ' ' : '\t');
// %initexpr hint marks parameters whose default is the result of code
// that must be executed (an expression, like =noise(P) or =u), rather
// than a true default value that is statically known (like =3.14).
if (isparam && sym->has_init_ops())
oso ("%c%%initexpr", hints++ ? ' ' : '\t');
#if 0 // this is recomputed by the runtime optimizer, no need to bloat the .oso with these
// %depends marks, for potential OUTPUTs, which symbols they depend
// upon. This is so that derivativeness, etc., may be
// back-propagated as shader networks are linked together.
if (isparam || sym->symtype() == SymTypeGlobal) {
// FIXME
const SymPtrSet &deps (m_symdeps[sym]);
std::vector<const Symbol *> inputdeps;
for (auto&& d : deps)
if (d->symtype() == SymTypeParam ||
d->symtype() == SymTypeOutputParam ||
d->symtype() == SymTypeGlobal ||
d->symtype() == SymTypeLocal ||
d->symtype() == SymTypeTemp)
inputdeps.push_back (d);
if (inputdeps.size()) {
if (hints++ == 0)
oso ("\t");
oso (" %%depends{");
int deps = 0;
for (size_t i = 0; i < inputdeps.size(); ++i) {
if (inputdeps[i]->symtype() == SymTypeTemp &&
inputdeps[i]->dealias() != inputdeps[i])
continue; // Skip aliased temporaries
if (deps++)
oso (",");
oso ("%s", inputdeps[i]->mangled().c_str());
}
oso ("}");
}
}
#endif
oso ("\n");
}
void
OSLCompilerImpl::write_oso_file (const std::string &outfilename,
string_view options)
{
ASSERT (m_osofile != NULL && m_osofile->good());
oso ("OpenShadingLanguage %d.%02d\n",
OSO_FILE_VERSION_MAJOR, OSO_FILE_VERSION_MINOR);
oso ("# Compiled by oslc %s\n", OSL_LIBRARY_VERSION_STRING);
oso ("# options: %s\n", options);
ASTshader_declaration *shaderdecl = shader_decl();
oso ("%s %s", shaderdecl->shadertypename(),
shaderdecl->shadername().c_str());
// output global hints and metadata
int hints = 0;
for (ASTNode::ref m = shaderdecl->metadata(); m; m = m->next()) {
if (hints++ == 0)
oso ("\t");
write_oso_metadata (m.get());
}
oso ("\n");
// Output params, so they are first
for (auto&& s : symtab()) {
if (s->symtype() == SymTypeParam || s->symtype() == SymTypeOutputParam)
write_oso_symbol (s);
}
// Output globals, locals, temps, const
for (auto&& s : symtab()) {
if (s->symtype() == SymTypeLocal || s->symtype() == SymTypeTemp ||
s->symtype() == SymTypeGlobal || s->symtype() == SymTypeConst) {
// Don't bother writing symbols that are never used
if (s->lastuse() >= 0) {
write_oso_symbol (s);
}
}
}
// Output all opcodes
int lastline = -1;
ustring lastfile;
ustring lastmethod ("___uninitialized___");
for (auto& op : m_ircode) {
if (lastmethod != op.method()) {
oso ("code %s\n", op.method());
lastmethod = op.method();
lastfile = ustring();
lastline = -1;
}
if (/*m_debug &&*/ op.sourcefile()) {
ustring file = op.sourcefile();
int line = op.sourceline();
if (file != lastfile || line != lastline)
oso ("# %s:%d\n# %s\n", file, line,
retrieve_source (file, line));
}
// Op name
oso ("\t%s", op.opname());
// Register arguments
if (op.nargs())
oso (op.opname().length() < 8 ? "\t\t" : "\t");
for (int i = 0; i < op.nargs(); ++i) {
int arg = op.firstarg() + i;
oso ("%s ", m_opargs[arg]->dealias()->mangled());
}
// Jump targets
for (size_t i = 0; i < Opcode::max_jumps; ++i)
if (op.jump(i) >= 0)
oso ("%d ", op.jump(i));
//
// Opcode Hints
//
bool firsthint = true;
// %filename and %line document the source code file and line that
// contained code that generated this op. To avoid clutter, we
// only output these hints when they DIFFER from the previous op.
if (op.sourcefile()) {
if (op.sourcefile() != lastfile) {
lastfile = op.sourcefile();
oso ("%c%%filename{\"%s\"}", firsthint ? '\t' : ' ', lastfile);
firsthint = false;
}
if (op.sourceline() != lastline) {
lastline = op.sourceline();
oso ("%c%%line{%d}", firsthint ? '\t' : ' ', lastline);
firsthint = false;
}
}
// %argrw documents which arguments are read, written, or both (rwW).
if (op.nargs()) {
oso ("%c%%argrw{\"", firsthint ? '\t' : ' ');
for (int i = 0; i < op.nargs(); ++i) {
if (op.argwrite(i))
oso (op.argread(i) ? "W" : "w");
else
oso (op.argread(i) ? "r" : "-");
}
oso ("\"}");
firsthint = false;
}
// %argderivs documents which arguments have derivs taken of
// them by the op.
if (op.argtakesderivs_all()) {
#if OIIO_VERSION >= 10803
oso (" %%argderivs{");
#else
oso (" %cargderivs{", '%'); // trick to work with older OIIO
#endif
int any = 0;
for (int i = 0; i < op.nargs(); ++i)
if (op.argtakesderivs(i)) {
if (any++)
oso (",");
oso ("%d", i);
}
oso ("}");
firsthint = false;
}
oso ("\n");
}
if (lastmethod != main_method_name()) // If no code, still need a code marker
oso ("code %s\n", main_method_name().c_str());
oso ("\tend\n");
m_osofile = NULL;
}
std::string
OSLCompilerImpl::retrieve_source (ustring filename, int line)
{
// If we don't already have the file open, open it
if (filename != m_last_sourcefile) {
bool ok = OIIO::Filesystem::read_text_file (filename, m_filecontents);
if (ok) {
m_last_sourcefile = filename;
} else {
m_last_sourcefile = ustring();
return "<file not found>";
}
}
// Now read lines up to and including the file we want.
OIIO::string_view s (m_filecontents);
for ( ; line > 1; --line) {
size_t p = s.find_first_of ('\n');
if (p == OIIO::string_view::npos)
return "<line not found>";
s.remove_prefix (p+1);
}
s = s.substr (0, s.find_first_of ('\n'));
return s;
}
void
OSLCompilerImpl::push_nesting (bool isloop)
{
++m_total_nesting;
if (isloop)
++m_loop_nesting;
if (current_function())
current_function()->push_nesting (isloop);
}
void
OSLCompilerImpl::pop_nesting (bool isloop)
{
--m_total_nesting;
if (isloop)
--m_loop_nesting;
if (current_function())
current_function()->pop_nesting (isloop);
}
const char *
OSLCompilerImpl::type_c_str (const TypeSpec &type) const
{
if (type.is_structure())
return ustring::format ("struct %s", type.structspec()->name().c_str()).c_str();
else
return type.c_str();
}
void
OSLCompilerImpl::struct_field_pair (Symbol *sym1, Symbol *sym2, int fieldnum,
Symbol * &field1, Symbol * &field2)
{
ASSERT (sym1 && sym2 && sym1->typespec().is_structure() &&
sym1->typespec().structure() && sym2->typespec().structure());
// Find the StructSpec for the type of struct that the symbols are
StructSpec *structspec (sym1->typespec().structspec());
ASSERT (structspec && fieldnum < (int)structspec->numfields());
// Find the FieldSpec for the field we are interested in
const StructSpec::FieldSpec &field (structspec->field(fieldnum));
// Construct mangled names that describe the symbols for the
// individual fields
ustring name1 = ustring::format ("%s.%s", sym1->mangled().c_str(),
field.name.c_str());
ustring name2 = ustring::format ("%s.%s", sym2->mangled().c_str(),
field.name.c_str());
// Retrieve the symbols
field1 = symtab().find_exact (name1);
field2 = symtab().find_exact (name2);
ASSERT (field1 && field2);
}
void
OSLCompilerImpl::struct_field_pair (const StructSpec *structspec, int fieldnum,
ustring sym1, ustring sym2,
Symbol * &field1, Symbol * &field2)
{
// Find the FieldSpec for the field we are interested in
const StructSpec::FieldSpec &field (structspec->field(fieldnum));
ustring name1 = ustring::format ("%s.%s", sym1.c_str(),
field.name.c_str());
ustring name2 = ustring::format ("%s.%s", sym2.c_str(),
field.name.c_str());
// Retrieve the symbols
field1 = symtab().find_exact (name1);
field2 = symtab().find_exact (name2);
ASSERT (field1 && field2);
}
/// Verify that the given symbol (written by the given op) is legal to
/// be written.
void
OSLCompilerImpl::check_write_legality (const Opcode &op, int opnum,
const Symbol *sym)
{
// We can never write to constant symbols
if (sym->symtype() == SymTypeConst) {
error (op.sourcefile(), op.sourceline(),
"Attempted to write to a constant value");
}
// Params can only write if it's part of their initialization
if (sym->symtype() == SymTypeParam &&
(opnum < sym->initbegin() || opnum >= sym->initend())) {
error (op.sourcefile(), op.sourceline(),
"Cannot write to input parameter '%s' (op %d)",
sym->name().c_str(), opnum);
}
// FIXME -- check for writing to globals. But it's tricky, depends on
// what kind of shader we are.
}
void
OSLCompilerImpl::check_for_illegal_writes ()
{
// For each op, make sure any arguments it writes are legal to do so
int opnum = 0;
for (auto&& op : m_ircode) {
for (int a = 0; a < op.nargs(); ++a) {
SymbolPtr s = m_opargs[op.firstarg()+a];
if (op.argwrite(a))
check_write_legality (op, opnum, s);
}
++opnum;
}
}
/// Called after code is generated, this function loops over all the ops
/// and figures out the lifetimes of all variables, based on whether the
/// args in each op are read or written.
void
OSLCompilerImpl::track_variable_lifetimes (const OpcodeVec &code,
const SymbolPtrVec &opargs,
const SymbolPtrVec &allsyms,
std::vector<int> *bblockids)
{
// Clear the lifetimes for all symbols
for (auto&& s : allsyms)
s->clear_rw ();
// Keep track of the nested loops we're inside. We track them by pairs
// of begin/end instruction numbers for that loop body, including
// conditional evaluation (skip the initialization). Note that the end
// is inclusive. We use this vector of ranges as a stack.
typedef std::pair<int,int> intpair;
std::vector<intpair> loop_bounds;
// For each op, mark its arguments as being used at that op
int opnum = 0;
for (auto&& op : code) {
if (op.opname() == op_for || op.opname() == op_while ||
op.opname() == op_dowhile) {
// If this is a loop op, we need to mark its control variable
// (the only arg) as used for the duration of the loop!
ASSERT (op.nargs() == 1); // loops should have just one arg
SymbolPtr s = opargs[op.firstarg()];
int loopcond = op.jump (0); // after initialization, before test
int loopend = op.farthest_jump() - 1; // inclusive end
s->mark_rw (opnum+1, true, true);
s->mark_rw (loopend, true, true);
// Also push the loop bounds for this loop
loop_bounds.push_back (std::make_pair(loopcond, loopend));
}
// Some work to do for each argument to the op...
for (int a = 0; a < op.nargs(); ++a) {
SymbolPtr s = opargs[op.firstarg()+a];
ASSERT (s->dealias() == s); // Make sure it's de-aliased
// Mark that it's read and/or written for this op
bool readhere = op.argread(a);
bool writtenhere = op.argwrite(a);
s->mark_rw (opnum, readhere, writtenhere);
// Adjust lifetimes of symbols whose values need to be preserved
// between loop iterations.
for (auto oprange : loop_bounds) {
int loopcond = oprange.first;
int loopend = oprange.second;
DASSERT (s->firstuse() <= loopend);
// Special case: a temp or local, even if written inside a
// loop, if it's entire lifetime is within one basic block
// and it's strictly written before being read, then its
// lifetime is truly local and doesn't need to be expanded
// for the duration of the loop.
if (bblockids &&
(s->symtype()==SymTypeLocal || s->symtype()==SymTypeTemp) &&
(*bblockids)[s->firstuse()] == (*bblockids)[s->lastuse()] &&
s->lastwrite() < s->firstread()) {
continue;
}
// Syms written before or inside the loop, and referenced
// inside or after the loop, need to preserve their value
// for the duration of the loop. We know it's referenced
// inside the loop because we're here examining it!
if (s->firstwrite() <= loopend) {
s->mark_rw (loopcond, readhere, writtenhere);
s->mark_rw (loopend, readhere, writtenhere);
}
}
}
++opnum; // Advance to the next op index
// Pop any loop bounds for loops we've just exited
while (!loop_bounds.empty() && loop_bounds.back().second < opnum)
loop_bounds.pop_back ();
}
}
// This has O(n^2) memory usage, so only for debugging
//#define DEBUG_SYMBOL_DEPENDENCIES
// Add to the dependency map that "A depends on B".
static void
add_dependency (SymDependencyMap &dmap, const Symbol *A, const Symbol *B)
{
dmap[A].insert (B);
#ifdef DEBUG_SYMBOL_DEPENDENCIES
// Perform unification -- all of B's dependencies are now
// dependencies of A.
for (auto&& r : dmap[B])
dmap[A].insert (r);
#endif
}
static void
mark_symbol_derivatives (SymDependencyMap &dmap, SymPtrSet &visited, const Symbol *sym)
{
for (auto&& r : dmap[sym]) {
if (visited.find(r) == visited.end()) {
visited.insert(r);
const_cast<Symbol *>(r)->has_derivs (true);
mark_symbol_derivatives(dmap, visited, r);
}
}
}
/// Run through all the ops, for each one marking its 'written'
/// arguments as dependent upon its 'read' arguments (and performing
/// unification as we go), yielding a dependency map that lets us look
/// up any symbol and see the set of other symbols on which it ever
/// depends on during execution of the shader.
void
OSLCompilerImpl::track_variable_dependencies ()
{
// It's important to note that this is simplistically conservative
// in that it overestimates dependencies. To see why this is the
// case, consider the following code:
// // inputs a,b; outputs x,y; local variable t
// t = a;
// x = t;
// t = b;
// y = t;
// We can see that x depends on a and y depends on b. But the
// dependency analysis we do below thinks that y also depends on a
// (because t depended on both a and b, but at different times).
//
// This naivite will never miss a dependency, but it may
// overestimate dependencies. (Hence we call this "conservative"
// rather than "wrong.") We deem this acceptable for now, since
// it's so much easer to implement the conservative dependency
// analysis, and it's not yet clear that getting it closer to
// optimal will have any performance impact on final shaders. Also
// because this is probably no worse than the "dependency slop" that
// would happen with loops and conditionals. But we certainly may
// revisit with a more sophisticated algorithm if this crops up
// a legitimate issue.
//
// Because of this conservative approach, it is critical that this
// analysis is done BEFORE temporaries are coalesced (which would
// cause them to be reassigned in exactly the way that confuses this
// analysis).
m_symdeps.clear ();
std::vector<Symbol *> read, written;
int opnum = 0;
// We define a pseudo-symbol just for tracking derivatives. This
// symbol "depends on" whatever things have derivs taken of them.
if (! m_derivsym)
m_derivsym = new Symbol (ustring("$derivs"), TypeSpec(), SymTypeGlobal);
// Loop over all ops...
for (OpcodeVec::const_iterator op = m_ircode.begin();
op != m_ircode.end(); ++op, ++opnum) {
// Gather the list of syms read and written by the op. Reuse the
// vectors defined outside the loop to cut down on malloc/free.
read.clear ();
written.clear ();
syms_used_in_op_range (op, op+1, &read, &written);
// FIXME -- special cases here! like if any ops implicitly read
// or write to globals without them needing to be arguments.
bool deriv = op->argtakesderivs_all();
// For each sym written by the op...
for (auto&& wsym : written) {
// For each sym read by the op...
for (auto&& rsym : read) {
if (rsym->symtype() != SymTypeConst)
add_dependency (m_symdeps, wsym, rsym);
}
if (deriv) {
// If the op takes derivs, make the pseudo-symbol m_derivsym
// depend on those arguments.
for (int a = 0; a < op->nargs(); ++a)
if (op->argtakesderivs(a))
add_dependency (m_symdeps, m_derivsym,
m_opargs[a+op->firstarg()]);
}
}
}
// Recursively tag all symbols that need derivatives
SymPtrSet visited;
mark_symbol_derivatives (m_symdeps, visited, m_derivsym);
#ifdef DEBUG_SYMBOL_DEPENDENCIES
// Helpful for debugging
std::cerr << "track_variable_dependencies\n";
std::cerr << "\nDependencies:\n";
for (auto&& m, m_symdeps) {
std::cerr << m.first->mangled() << " depends on ";
for (auto&& d : m.second)
std::cerr << d->mangled() << ' ';
std::cerr << "\n";
}
std::cerr << "\n\n";
// Invert the dependency
SymDependencyMap influences;
for (auto&& m, m_symdeps)
for (auto&& d : m.second)
influences[d].insert (m.first);
std::cerr << "\nReverse dependencies:\n";
for (auto&& m, influences) {
std::cerr << m.first->mangled() << " contributes to ";
for (auto&& d : m.second)
std::cerr << d->mangled() << ' ';
std::cerr << "\n";
}
std::cerr << "\n\n";
#endif
}
// Is the symbol coalescable?
inline bool
coalescable (const Symbol *s)
{
return (s->symtype() == SymTypeTemp && // only coalesce temporaries
s->everused() && // only if they're used
s->dealias() == s && // only if not already aliased
! s->typespec().is_structure() && // only if not a struct
s->fieldid() < 0); // or a struct field
}
/// Coalesce temporaries. During code generation, we make a new
/// temporary EVERY time we need one. Now we examine them all and merge
/// ones of identical type and non-overlapping lifetimes.
void
OSLCompilerImpl::coalesce_temporaries (SymbolPtrVec &symtab)
{
// We keep looping until we can't coalesce any more.
int ncoalesced = 1;
while (ncoalesced) {
ncoalesced = 0; // assume we're done, unless we coalesce something
// We use a greedy algorithm that loops over each symbol, and
// then examines all higher-numbered symbols (in order) and
// tries to merge the first one it can find that doesn't overlap
// lifetimes. The temps were created as we generated code, so
// they are already sorted by their "first use". Thus, for any
// pair t1 and t2 that are merged, it is guaranteed that t2 is
// the symbol whose first use the earliest of all symbols whose
// lifetimes do not overlap t1.
SymbolPtrVec::iterator s;
for (s = symtab.begin(); s != symtab.end(); ++s) {
// Skip syms that can't be (or don't need to be) coalesced
if (! coalescable(*s))
continue;
int sfirst = (*s)->firstuse ();
int slast = (*s)->lastuse ();
// Loop through every other symbol
for (SymbolPtrVec::iterator t = s+1; t != symtab.end(); ++t) {
// Coalesce s and t if both syms are coalescable,
// equivalent types, and have nonoverlapping lifetimes.
if (coalescable (*t) &&
equivalent ((*s)->typespec(), (*t)->typespec()) &&
(slast < (*t)->firstuse() || sfirst > (*t)->lastuse())) {
// Make all future t references alias to s
(*t)->alias (*s);
// s gets union of the lifetimes
(*s)->union_rw ((*t)->firstread(), (*t)->lastread(),
(*t)->firstwrite(), (*t)->lastwrite());
sfirst = (*s)->firstuse ();
slast = (*s)->lastuse ();
// t gets marked as unused
(*t)->clear_rw ();
++ncoalesced;
}
}
}
// std::cerr << "Coalesced " << ncoalesced << "\n";
}
}
bool
OSLCompilerImpl::op_uses_sym (const Opcode &op, const Symbol *sym,
bool read, bool write)
{
// Loop through all the op's arguments, see if one matches sym
for (int i = 0; i < op.nargs(); ++i)
if (m_opargs[i+op.firstarg()] == sym &&
((read && op.argread(i)) || (write && op.argwrite(i))))
return true;
return false;
}
void
OSLCompilerImpl::syms_used_in_op_range (OpcodeVec::const_iterator opbegin,
OpcodeVec::const_iterator opend,
std::vector<Symbol *> *rsyms,
std::vector<Symbol *> *wsyms)
{
for (OpcodeVec::const_iterator op = opbegin; op != opend; ++op) {
for (int i = 0; i < op->nargs(); ++i) {
Symbol *s = m_opargs[i+op->firstarg()];
if (rsyms && op->argread(i))
if (std::find (rsyms->begin(), rsyms->end(), s) == rsyms->end())
rsyms->push_back (s);
if (wsyms && op->argwrite(i))
if (std::find (wsyms->begin(), wsyms->end(), s) == wsyms->end())
wsyms->push_back (s);
}
}
}
}; // namespace pvt
OSL_NAMESPACE_EXIT
| 35.380013
| 101
| 0.566852
|
brechtvl
|
ba6bf1d4d74ecc1ae8703547a00746bd2410bb94
| 14,219
|
cxx
|
C++
|
Src/Projects/shader_SuperDynamicLighting/SuperDynamicLighting_shader.cxx
|
musterchef/OpenMoBu
|
b98e9f8d6182d84e54da1b790bbe69620ea818de
|
[
"BSD-3-Clause"
] | null | null | null |
Src/Projects/shader_SuperDynamicLighting/SuperDynamicLighting_shader.cxx
|
musterchef/OpenMoBu
|
b98e9f8d6182d84e54da1b790bbe69620ea818de
|
[
"BSD-3-Clause"
] | null | null | null |
Src/Projects/shader_SuperDynamicLighting/SuperDynamicLighting_shader.cxx
|
musterchef/OpenMoBu
|
b98e9f8d6182d84e54da1b790bbe69620ea818de
|
[
"BSD-3-Clause"
] | null | null | null |
// SuperDynamicLighting_shader.cxx
/*
Sergei <Neill3d> Solokhin 2018
GitHub page - https://github.com/Neill3d/OpenMoBu
Licensed under The "New" BSD License - https ://github.com/Neill3d/OpenMoBu/blob/master/LICENSE
*/
// Class declaration
#include "SuperDynamicLighting_shader.h"
#include "SuperShaderModelInfo.h"
#include <math.h>
//--- Registration defines
#define DYNAMICLIGHTING__CLASS DYNAMICLIGHTING__CLASSNAME
#define DYNAMICLIGHTING__DESC "Super Dynamic Lighting" // This is what shows up in the shader window ...
//--- FiLMBOX Registration & Implementation.
FBShaderImplementation( DYNAMICLIGHTING__CLASS );
FBRegisterShader (DYNAMICLIGHTING__DESCSTR, // Unique name
DYNAMICLIGHTING__CLASS, // Class
DYNAMICLIGHTING__DESCSTR, // Short description
DYNAMICLIGHTING__DESC, // Long description
FB_DEFAULT_SDK_ICON ); // Icon filename (default=Open Reality icon)
Graphics::SuperShader* SuperDynamicLighting::mpLightShader = nullptr;
int SuperDynamicLighting::mpLightShaderRefCount = 0;
/************************************************
* FiLMBOX Constructor.
************************************************/
bool SuperDynamicLighting::FBCreate()
{
mpLightShaderRefCount++;
FBPropertyPublish(this, ReloadShaders, "Reload Shaders", nullptr, SetReloadShaders);
FBPropertyPublish(this, UseSceneLights, "Use Scene Lights", nullptr, nullptr);
FBPropertyPublish(this, AffectingLights, "AffectingLights", nullptr, nullptr);
AffectingLights.SetFilter(FBLight::GetInternalClassId());
AffectingLights.SetSingleConnect(false);
FBPropertyPublish(this, Transparency, "Transparency", nullptr, SetTransparencyProperty);
Transparency = kFBAlphaSourceNoAlpha;
RenderingPass = GetRenderingPassNeededForAlpha(Transparency);
FBPropertyPublish(this, TransparencyFactor, "TransparencyFactor", nullptr, nullptr);
TransparencyFactor.SetMinMax(0.0, 1.0);
TransparencyFactor = 1.0;
//
FBPropertyPublish(this, SwitchAlbedoTosRGB, "Switch Albedo To sRGB", nullptr, nullptr);
SwitchAlbedoTosRGB = false;
FBPropertyPublish(this, ForceUpdateTextures, "Force Update Textures", nullptr, nullptr);
ForceUpdateTextures = false;
// rim lighting
FBPropertyPublish(this, UseRim, "Use Rim Lighting", nullptr, nullptr);
FBPropertyPublish(this, RimPower, "Rim Power", nullptr, nullptr);
FBPropertyPublish(this, RimColor, "Rim Color", nullptr, nullptr);
UseRim.SetMinMax(0.0, 100.0);
UseRim = 0.0;
RimPower.SetMinMax(0.0, 200.0);
RimPower = 100.0;
RimColor = FBColor(1.0, 1.0, 1.0);
// matcap
FBPropertyPublish(this, UseMatCap, "Use MatCap", nullptr, nullptr);
FBPropertyPublish(this, MatCapTexture, "MatCap Texture", nullptr, nullptr);
UseMatCap = false;
MatCapTexture.SetSingleConnect(true);
MatCapTexture.SetFilter(FBTexture::GetInternalClassId());
//Set up shader capacity. It seems cg2.0 has problem regarding INSTNCEID currently.
//SetShaderCapacity(FBShaderCapacity(kFBShaderCapacityMaterialEffect | kFBShaderCapacityDrawInstanced), true);
SetShaderCapacity(FBShaderCapacity(kFBShaderCapacityMaterialEffect), true);
//Hook up the callback
SetShaderPassActionCallback(FBShaderPassActionCallback(kFBShaderPassTypeBegin | kFBShaderPassTypeEnd | kFBShaderPassInstanceBegin | kFBShaderPassInstanceEnd | kFBShaderPassMaterialBegin | kFBShaderPassMaterialEnd | kFBShaderPassModelDraw));
SetDrawInstancedMaximumSize(kMaxDrawInstancedSize);
UseSceneLights = false;
mNeedUpdateLightsList = true;
mNeedUpdateTextures = true;
mSkipRendering = false;
return true;
}
/************************************************
* FiLMBOX Destructor.
************************************************/
void SuperDynamicLighting::FBDestroy()
{
// Delete lighting shader
mpLightShaderRefCount--;
if (mpLightShaderRefCount == 0)
{
if (nullptr != mpLightShader)
{
delete mpLightShader;
mpLightShader = nullptr;
}
}
ParentClass::FBDestroy();
}
/************************************************
* Shader functions.
************************************************/
void SuperDynamicLighting::ShaderPassTypeBegin(FBRenderOptions* pRenderOptions, FBRenderingPass pPass)
{
if ( nullptr == mpLightShader )
{
// Setup the path to the shader ...
FBSystem lSystem;
FBString lPath;
lPath = lSystem.ApplicationPath ;
//
// This is use when you build the Open Reality sample
//
lPath += "/plugins/GLSL/";
// Create the lighting shader
mpLightShader = new Graphics::SuperShader();
if( !mpLightShader->Initialize(lPath) )
{
FBTrace("Failed to initialize a super lighting effect!\n");
delete mpLightShader;
mpLightShader = nullptr;
mSkipRendering = true;
Enable = false;
return;
}
}
StoreCullMode(mCullFaceInfo);
mLastCullingMode = kFBCullingOff;
// bind a shader here, prepare a global scene light set
if (false == mpLightShader->BeginShading(pRenderOptions, nullptr))
{
mSkipRendering = true;
}
else
if (true == pRenderOptions->IsIDBufferRendering() || nullptr == mpLightShader)
mSkipRendering = true;
else
{
mSkipRendering = false;
}
mSkipRendering = false;
if (ForceUpdateTextures)
mNeedUpdateTextures = true;
}
void SuperDynamicLighting::ShaderPassTypeEnd(FBRenderOptions* pRenderOptions, FBRenderingPass pPass)
{
if (true == mSkipRendering)
return;
// global unbind
mpLightShader->EndShading();
FetchCullMode(mCullFaceInfo);
mNeedUpdateTextures = false;
}
void SuperDynamicLighting::ShaderPassInstanceBegin(FBRenderOptions* pRenderOptions, FBRenderingPass pPass)
{
if (true == mSkipRendering)
return;
mHasExclusiveLights = false;
if (false == pRenderOptions->IsIDBufferRendering() && nullptr != mpLightShader)
{
if (false == UseSceneLights && AffectingLights.GetCount() > 0)
{
mpLightShader->BindLights(false, GetShaderLightsPtr());
mHasExclusiveLights = true;
}
double useRim = 0.01 * UseRim;
double rimPower = 0.01 * RimPower;
FBColor rimColor = RimColor;
mpLightShader->UploadRimInformation(useRim, rimPower, rimColor);
mpLightShader->UploadSwitchAlbedoTosRGB(SwitchAlbedoTosRGB);
//
if (true == UseMatCap && MatCapTexture.GetCount() > 0)
{
FBTexture *pTexture = (FBTexture*)MatCapTexture.GetAt(0);
GLuint texId = pTexture->TextureOGLId;
if (0 == texId || true == mNeedUpdateTextures)
{
pTexture->OGLInit();
texId = pTexture->TextureOGLId;
}
mpLightShader->SetMatCap(texId);
}
else
{
mpLightShader->SetMatCap(0);
}
EventBeforeRenderNotify();
}
}
void SuperDynamicLighting::ShaderPassInstanceEnd(FBRenderOptions* pRenderOptions, FBRenderingPass pPass)
{
if (true == mSkipRendering)
return;
if (mHasExclusiveLights)
mpLightShader->BindLights(false);
}
void SuperDynamicLighting::ShaderPassMaterialBegin(FBRenderOptions* pRenderOptions, FBRenderingPass pPass, FBShaderModelInfo* pInfo)
{
if (true == mSkipRendering)
return;
mpLightShader->SwitchMaterial(pRenderOptions, pInfo, pInfo->GetFBMaterial(), TransparencyFactor, mNeedUpdateTextures);
}
void SuperDynamicLighting::ShaderPassMaterialEnd(FBRenderOptions* pRenderOptions, FBRenderingPass pPass, FBShaderModelInfo* pInfo)
{
}
void SuperDynamicLighting::ShaderPassModelDraw(FBRenderOptions* pRenderOptions, FBRenderingPass pPass, FBShaderModelInfo* pInfo)
{
if (true == mSkipRendering)
return;
FBModel *pModel = pInfo->GetFBModel();
if (nullptr != pModel)
{
FBModelCullingMode cullMode = pModel->GetCullingMode();
if (cullMode != mLastCullingMode)
{
switch (cullMode)
{
case kFBCullingOff:
glDisable(GL_CULL_FACE);
break;
case kFBCullingOnCW:
glEnable(GL_CULL_FACE);
glCullFace(GL_FRONT);
break;
case kFBCullingOnCCW:
glEnable(GL_CULL_FACE);
glCullFace(GL_BACK);
break;
}
mLastCullingMode = cullMode;
//((CRenderOptions&)options).SetLastCullingMode(cullMode);
}
}
mpLightShader->ShaderPassModelDraw(pRenderOptions, pPass, pInfo, mNeedUpdateTextures);
// bind vertex buffers
SuperShaderModelInfo *lInfo = (SuperShaderModelInfo*)pInfo;
if (nullptr != lInfo && false == pRenderOptions->IsIDBufferRendering())
{
lInfo->Bind();
}
}
void SuperDynamicLighting::ShaderPassDrawShadowBegin(FBRenderOptions* pRenderOptions)
{
//Here we should setup the shader's draw shadow states
}
void SuperDynamicLighting::ShaderPassDrawShadowEnd(FBRenderOptions* pRenderOptions)
{
//Here we should clean the shader's draw shadow states
}
void SuperDynamicLighting::UploadModelViewMatrixArrayForDrawInstanced(const double* pModelViewMatrixArray, int pCount)
{
if (true == mSkipRendering)
return;
mpLightShader->UploadModelViewMatrixArrayForDrawInstanced(pModelViewMatrixArray, pCount);
}
FBShaderModelInfo* SuperDynamicLighting::NewShaderModelInfo(HKModelRenderInfo pModelRenderInfo, int pSubRegionIndex)
{
FBShaderModelInfo* lShaderModelInfo = new SuperShaderModelInfo(this, pModelRenderInfo, pSubRegionIndex);
return lShaderModelInfo;
}
void SuperDynamicLighting::UpdateModelShaderInfo(FBRenderOptions* pOptions, FBShaderModelInfo* pModelRenderInfo)
{
//pModelRenderInfo->UpdateModelShaderInfo(GetShaderVersion());
unsigned int lVBOFormat = kFBGeometryArrayID_Point | kFBGeometryArrayID_Normal;
if (pModelRenderInfo->GetOriginalTextureFlag())
{
FBMaterial* lMaterial = pModelRenderInfo->GetFBMaterial();
if (lMaterial)
{
//FBTexture* lDiffuseTexture = pMaterial->GetTexture(kFBMaterialTextureDiffuse);
FBTexture* lNormalMapTexture = lMaterial->GetTexture(kFBMaterialTextureBump);
if (lNormalMapTexture == NULL)
lNormalMapTexture = lMaterial->GetTexture(kFBMaterialTextureNormalMap);
if (lNormalMapTexture)
lVBOFormat = lVBOFormat | kFBGeometryArrayID_Tangent | kFBGeometryArrayID_Binormal;
}
}
// check if second uv set is needed in some texture
if (pModelRenderInfo->GetFBModel())
{
bool needSecondUV = false;
FBModel *pModel = pModelRenderInfo->GetFBModel();
for (int i = 0; i<pModel->Textures.GetCount(); ++i)
{
FBTexture *pTexture = pModel->Textures[i];
FBString uvset("");
FBProperty *lProp = pTexture->PropertyList.Find("UVSet");
if (lProp)
{
uvset = lProp->AsString();
}
if (uvset != "")
{
needSecondUV = true;
break;
}
}
if (needSecondUV)
{
lVBOFormat = lVBOFormat | kFBGeometryArrayID_SecondUVSet;
}
}
pModelRenderInfo->SetGeometryArrayIds(lVBOFormat);
pModelRenderInfo->UpdateModelShaderInfo(GetShaderVersion());
//pModelRenderInfo->SetGeometryArrayIds(lVBOFormat);
}
void SuperDynamicLighting::SetTransparencyType(FBAlphaSource pTransparency)
{
if (Transparency != pTransparency)
{
Transparency = pTransparency;
//To trigger render to update the model-shader information.
InvalidateShaderVersion();
}
}
FBAlphaSource SuperDynamicLighting::GetTransparencyType()
{
return Transparency;
}
void SuperDynamicLighting::SetTransparencyProperty(HIObject pObject, FBAlphaSource pState)
{
SuperDynamicLighting* lShader = FBCast<SuperDynamicLighting>(pObject);
if (lShader->Transparency != pState)
{
lShader->Transparency.SetPropertyValue(pState);
lShader->RenderingPass = GetRenderingPassNeededForAlpha(pState);
// if shader use alpha and thus generate custom shape than the original geometry shape,
// we need to let it handle DrawShadow functiionality as well.
lShader->SetShaderCapacity(kFBShaderCapacityDrawShadow, pState != kFBAlphaSourceNoAlpha);
}
}
void SuperDynamicLighting::SetReloadShaders(HIObject pObject, bool val)
{
SuperDynamicLighting* lShader = FBCast<SuperDynamicLighting>(pObject);
if (lShader && val)
{
lShader->DoReloadShaders();
}
}
void SuperDynamicLighting::DoReloadShaders()
{
if (nullptr != mpLightShader)
{
delete mpLightShader;
mpLightShader = nullptr;
}
}
void SuperDynamicLighting::DetachDisplayContext(FBRenderOptions* pOptions, FBShaderModelInfo* pInfo)
{
// TODO:
DoReloadShaders();
if (mShaderLights.get())
mShaderLights.reset(nullptr);
mNeedUpdateLightsList = true;
mNeedUpdateTextures = true;
}
bool SuperDynamicLighting::PlugDataNotify(FBConnectionAction pAction, FBPlug* pThis, void* pData, void* pDataOld, int pDataSize)
{
if (pAction == kFBCandidated)
{
if (pThis == &UseSceneLights)
{
mNeedUpdateLightsList = true;
}
}
return ParentClass::PlugDataNotify(pAction, pThis, pData, pDataOld, pDataSize);
}
bool SuperDynamicLighting::PlugNotify(FBConnectionAction pAction, FBPlug* pThis, int pIndex, FBPlug* pPlug, FBConnectionType pConnectionType, FBPlug* pNewPlug)
{
if (pThis == &AffectingLights)
{
if (pAction == kFBConnectedSrc)
{
ConnectSrc(pPlug);
AskToUpdateLightList();
}
else if (pAction == kFBDisconnectedSrc)
{
DisconnectSrc(pPlug);
AskToUpdateLightList();
}
}
else if (pThis == &MatCapTexture)
{
if (pAction == kFBConnectedSrc)
{
ConnectSrc(pPlug);
}
else if (pAction == kFBDisconnectedSrc)
{
DisconnectSrc(pPlug);
}
}
return ParentClass::PlugNotify(pAction, pThis, pIndex, pPlug, pConnectionType, pNewPlug);
}
void SuperDynamicLighting::AskToUpdateLightList()
{
mNeedUpdateLightsList = true;
}
void SuperDynamicLighting::EventBeforeRenderNotify()
{
// if we have any lights attached
// we should update lights every frame
if (true == Enable
&& false == UseSceneLights
&& AffectingLights.GetCount() > 0)
{
mNeedUpdateLightsList = true;
}
if (mNeedUpdateLightsList && false == UseSceneLights)
{
if (nullptr == mShaderLights.get())
mShaderLights.reset(new Graphics::CGPUShaderLights());
if (nullptr != mpLightShader)
{
mpLightShader->PrepShaderLights(UseSceneLights,
&AffectingLights, mLightsPtr, mShaderLights.get());
mpLightShader->PrepLightsInViewSpace(mShaderLights.get());
}
mShaderLights->MapOnGPU();
mShaderLights->PrepGPUPtr();
mNeedUpdateLightsList = false;
}
}
| 27.449807
| 244
| 0.717983
|
musterchef
|
ba6c36dbbcf34975ef6d78b779bf32d8dcf7a97e
| 578
|
hpp
|
C++
|
src/Builtins/Lists/ListsModule.hpp
|
pawel-jarosz/nastya-lisp
|
813a58523b741e00c8c27980fe658b546e9ff38c
|
[
"MIT"
] | 1
|
2021-03-12T13:39:17.000Z
|
2021-03-12T13:39:17.000Z
|
src/Builtins/Lists/ListsModule.hpp
|
pawel-jarosz/nastya-lisp
|
813a58523b741e00c8c27980fe658b546e9ff38c
|
[
"MIT"
] | null | null | null |
src/Builtins/Lists/ListsModule.hpp
|
pawel-jarosz/nastya-lisp
|
813a58523b741e00c8c27980fe658b546e9ff38c
|
[
"MIT"
] | null | null | null |
//
// Created by caedus on 21.12.2020.
//
#pragma once
#include <string>
#include "Modules/ModuleBuilder.hpp"
#include "Builtins/Lists/ListsEvaluators.hpp"
namespace nastya::builtins::lists {
const std::string MODULE_NAME = "Lang.Lists";
using Builder = modules::ModuleBuilder<HeadEvaluator, TailEvaluator, QuoteEvaluator>;
inline std::unique_ptr<modules::IModuleBuilder> create_module_builder()
{
auto builder = std::make_unique<Builder>(MODULE_NAME);
return std::unique_ptr<modules::IModuleBuilder>(builder.release());
}
} // namespace nastya::builtins::lists
| 24.083333
| 85
| 0.754325
|
pawel-jarosz
|
ba6d1a8a428059866e62a5786b783efc64f029a2
| 9,803
|
cpp
|
C++
|
regress/ged/push.cpp
|
luzpaz/brlcad
|
9a63f606548d12e18f7f4b91b0a609c1862312f7
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null |
regress/ged/push.cpp
|
luzpaz/brlcad
|
9a63f606548d12e18f7f4b91b0a609c1862312f7
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null |
regress/ged/push.cpp
|
luzpaz/brlcad
|
9a63f606548d12e18f7f4b91b0a609c1862312f7
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null |
/* R E G R E S S _ P U S H . C P P
* BRL-CAD
*
* Copyright (c) 2020-2022 United States Government as represented by
* the U.S. Army Research Laboratory.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this file; see the file named COPYING for more
* information.
*/
/** @file push.cpp
*
* Testing logic for the push command.
*/
#include "common.h"
#include <fstream>
#include <iostream>
#include <iomanip>
#include <regex>
#include <set>
#include <sstream>
#include <string>
#include <vector>
#include "bu/app.h"
#include "bu/path.h"
#include "bu/str.h"
#include "ged.h"
static void
regress_push_usage(struct bu_vls *str, struct bu_opt_desc *d) {
char *option_help = bu_opt_describe(d, NULL);
bu_vls_sprintf(str, "Usage: regress_push [options] control.g working.g\n");
bu_vls_printf(str, "\nRuns the specified push configuration on a series of pre-defined objects in the working.g file, then compares the results to those from the control.g file.\n \n");
if (option_help) {
bu_vls_printf(str, "Options:\n%s\n", option_help);
bu_free(option_help, "help str");
}
}
int
main(int argc, const char **argv)
{
int print_help = 0;
int xpush = 0;
int to_regions = 0;
int to_solids = 0;
int max_depth = 0;
int verbosity = 0;
int local_changes_only = 0;
int dry_run = 0;
struct bu_opt_desc d[11];
BU_OPT(d[0], "h", "help", "", NULL, &print_help, "Print help and exit");
BU_OPT(d[1], "?", "", "", NULL, &print_help, "");
BU_OPT(d[2], "v", "verbosity", "", &bu_opt_incr_long, &verbosity, "Increase output verbosity (multiple specifications of -v increase verbosity)");
BU_OPT(d[3], "f", "force", "", NULL, &xpush, "Create new objects if needed to push matrices (xpush)");
BU_OPT(d[4], "x", "xpush", "", NULL, &xpush, "");
BU_OPT(d[5], "r", "regions", "", NULL, &to_regions, "Halt push at regions (matrix will be above region reference)");
BU_OPT(d[6], "s", "solids", "", NULL, &to_solids, "Halt push at solids (matrix will be above solid reference)");
BU_OPT(d[7], "d", "max-depth", "", &bu_opt_int, &max_depth, "Halt at depth # from tree root (matrix will be above item # layers deep)");
BU_OPT(d[8], "L", "local", "", NULL, &local_changes_only, "Ensure push operations do not impact geometry outside the specified trees.");
BU_OPT(d[9], "D", "dry-run", "", NULL, &dry_run, "Calculate the changes but do not apply them.");
BU_OPT_NULL(d[10]);
bu_setprogname(argv[0]);
// We will reuse most of the argv array when we actually call the ged command, but we also need
// to process it here so we know what to look for when comparing the control and the output. Make
// a duplicate for later use.
int gargc = argc;
char **gargv = bu_argv_dup(argc, argv);
/* parse standard options */
argc--;argv++;
int opt_ret = bu_opt_parse(NULL, argc, argv, d);
/* adjust argc to match the leftovers of the options parsing */
argc = opt_ret;
if (argc != 2 || print_help) {
struct bu_vls push_help = BU_VLS_INIT_ZERO;
regress_push_usage(&push_help, d);
bu_log("%s", bu_vls_cstr(&push_help));
bu_vls_free(&push_help);
return -1;
}
if (BU_STR_EQUAL(argv[0], argv[1])) {
bu_log("Error - control and working .g file cannot match.\n");
return -1;
}
if (!bu_file_exists(argv[0], NULL)) {
bu_exit(1, "%s does not exist", argv[0]);
}
if (!bu_file_exists(argv[1], NULL)) {
bu_exit(1, "%s does not exist", argv[1]);
}
// Adjust the duplicate argv copy for ged purposes.
bu_free(gargv[0], "free copy of argv[0]");
bu_free(gargv[gargc-2], "free copy of argv[argc-1]");
bu_free(gargv[gargc-1], "free copy of argv[argc-1]");
gargv[0] = bu_strdup("npush");
gargv[gargc-2] = NULL;
gargv[gargc-1] = NULL;
// All set - open up the .g file and go to work.
struct ged *gedp = ged_open("db", argv[1], 1);
if (gedp == GED_NULL) {
bu_exit(1, "Failed to open \"%s\" ", argv[1]);
}
// Make sure our reference counts are up to date
db_update_nref(gedp->ged_wdbp->dbip, &rt_uniresource);
// Perform the specified push operation on all example objects
for (size_t i = 0; i <= 16; i++) {
std::ostringstream ss;
ss << "sph_";
ss << std::setfill('0') << std::setw(3) << i;
std::string oname = ss.str();
char *gobj = bu_strdup(oname.c_str());
gargv[gargc-2] = gobj;
char **av = bu_argv_dup(gargc-1, (const char **)gargv);
ged_exec(gedp, gargc - 1, (const char **)av);
bu_argv_free((size_t)gargc-1, av);
bu_free(gobj, "free objname");
gargv[gargc-2] = NULL;
}
// To avoid problems with bu_argv_free, make very sure the last two entires
// are not pointing to something else.
gargv[gargc-2] = NULL;
gargv[gargc-1] = NULL;
bu_argv_free((size_t)gargc, gargv);
// dbconcat the control file into the current database, with a prefix
const char *dbcargv[4];
dbcargv[0] = "dbconcat";
dbcargv[1] = argv[0];
dbcargv[2] = "ctrl_";
dbcargv[3] = NULL;
ged_exec(gedp, 3, (const char **)dbcargv);
// object names may not be identical - what we are concerned with is that
// the geometry shapes remain unchanged from what is expected (or, in a few
// specific cases, we check that differences are found.) Use the libged
// raytracing based gdiff and a parallel tree walk to check this.
bool have_diff_vol = false;
bool have_diff_struct = false;
const char *gdiffargv[4];
gdiffargv[0] = "gdiff";
for (size_t i = 0; i <= 16; i++) {
std::ostringstream ss;
ss << "sph_";
ss << std::setfill('0') << std::setw(3) << i;
std::string oname = ss.str();
char *gobj = bu_strdup(oname.c_str());
std::string cname = std::string("ctrl_") + oname;
char *cobj = bu_strdup(cname.c_str());
std::cout << "\nChecking: " << cobj << " and " << gobj << ":\n";
gdiffargv[1] = cobj;
gdiffargv[2] = gobj;
bu_vls_trunc(gedp->ged_result_str, 0);
ged_exec(gedp, 3, (const char **)gdiffargv);
if (!BU_STR_EQUAL(bu_vls_cstr(gedp->ged_result_str), "0")) {
std::cout << "***VOL DIFF***\n";
have_diff_vol = true;
} else {
std::cout << "VOL match\n";
}
gdiffargv[1] = "-S";
gdiffargv[2] = cobj;
gdiffargv[3] = gobj;
bu_vls_trunc(gedp->ged_result_str, 0);
ged_exec(gedp, 4, (const char **)gdiffargv);
if (!BU_STR_EQUAL(bu_vls_cstr(gedp->ged_result_str), "0")) {
std::cout << "***STRUCT DIFF***\n";
have_diff_struct = true;
} else {
std::cout << "STRUCT match\n";
}
bu_free(cobj, "ctrl objname");
bu_free(gobj, "push objname");
}
// We also check, when they exist, _ext trees for expected results. What
// we expect depends on the type of push - if -L is set we expect no
// differences, without -L there are expected structural differences.
for (size_t i = 0; i <= 16; i++) {
bool dvol = false;
bool dstruct = false;
std::ostringstream ss;
ss << "sph_";
ss << std::setfill('0') << std::setw(3) << i;
ss << "_ext";
std::string oname = ss.str();
if (db_lookup(gedp->ged_wdbp->dbip, oname.c_str(), LOOKUP_QUIET) == RT_DIR_NULL) {
continue;
}
char *gobj = bu_strdup(oname.c_str());
std::string cname = std::string("ctrl_") + oname;
char *cobj = bu_strdup(cname.c_str());
std::cout << "\nChecking: " << cobj << " and " << gobj << ":\n";
gdiffargv[1] = cobj;
gdiffargv[2] = gobj;
bu_vls_trunc(gedp->ged_result_str, 0);
ged_exec(gedp, 3, (const char **)gdiffargv);
if (!BU_STR_EQUAL(bu_vls_cstr(gedp->ged_result_str), "0")) {
dvol = true;
}
gdiffargv[1] = "-S";
gdiffargv[2] = cobj;
gdiffargv[3] = gobj;
bu_vls_trunc(gedp->ged_result_str, 0);
ged_exec(gedp, 4, (const char **)gdiffargv);
if (!BU_STR_EQUAL(bu_vls_cstr(gedp->ged_result_str), "0")) {
dstruct = true;
}
// Whether we expect a differences depends on the options. There
// is only one condition in which we expect ext changes: local
// protection disabled and xpush enabled:
if (!local_changes_only && xpush) {
if (!dvol) {
std::cout << "ERROR: expected volume change not found\n";
have_diff_vol = true;
} else {
std::cout << "VOL expected change\n";
}
if (!dstruct) {
std::cout << "ERROR: expected struct change not found\n";
have_diff_struct = true;
} else {
std::cout << "STRUCT expected change\n";
}
} else {
if (dvol) {
std::cout << "ERROR: unexpected volume change\n";
have_diff_vol = true;
} else {
std::cout << "VOL match\n";
}
if (dstruct) {
std::cout << "ERROR: unexpected struct change\n";
have_diff_struct = true;
} else {
std::cout << "STRUCT match\n";
}
}
bu_free(cobj, "ctrl objname");
bu_free(gobj, "push objname");
}
if (!have_diff_vol && !have_diff_struct) {
// Remove the copy of the .g file
//std::remove(bu_vls_cstr(&gfile));
}
// Clean up
ged_close(gedp);
if (have_diff_vol || have_diff_struct) {
bu_log("Found differences.\n");
return -1;
} else {
bu_log("Push results match.\n");
}
return 0;
}
// Local Variables:
// tab-width: 8
// mode: C++
// c-basic-offset: 4
// indent-tabs-mode: t
// c-file-style: "stroustrup"
// End:
// ex: shiftwidth=4 tabstop=8
| 33.230508
| 190
| 0.630113
|
luzpaz
|
ba6d2cb4d9b45d4972a3e37d4608c558a464d707
| 593
|
cpp
|
C++
|
785A.cpp
|
dipubiswas1303/codeforces_solve
|
ccfa55ca42e8e1504d72fc02f84ea1717f4f1f79
|
[
"MIT"
] | null | null | null |
785A.cpp
|
dipubiswas1303/codeforces_solve
|
ccfa55ca42e8e1504d72fc02f84ea1717f4f1f79
|
[
"MIT"
] | null | null | null |
785A.cpp
|
dipubiswas1303/codeforces_solve
|
ccfa55ca42e8e1504d72fc02f84ea1717f4f1f79
|
[
"MIT"
] | null | null | null |
#include<bits/stdc++.h>
using namespace std;
/*
NAME : DIPU BISWAS
JUST CSE 2019 - 2020
PROBLEM CODE : 785A
LINK : https://codeforces.com/problemset/problem/785/A
*/
int main()
{
int t, sum = 0;
cin >> t;
while(t--)
{
string a;
cin >> a;
if(a[0] == 'T')
sum = sum + 4;
else if(a[0] == 'C')
sum = sum + 6;
else if(a[0] == 'O')
sum = sum + 8;
else if(a[0] == 'D')
sum = sum + 12;
else
sum = sum + 20;
}
cout << sum;
return 0;
}
| 16.472222
| 57
| 0.409781
|
dipubiswas1303
|
ba6e04e48ffb434f8c5bc2e8a4646e4dd5ccf55b
| 406,115
|
tpp
|
C++
|
uppsrc/ide/app.tpp/Assist_en-us.tpp
|
UltimateScript/Forgotten
|
ac59ad21767af9628994c0eecc91e9e0e5680d95
|
[
"BSD-3-Clause"
] | null | null | null |
uppsrc/ide/app.tpp/Assist_en-us.tpp
|
UltimateScript/Forgotten
|
ac59ad21767af9628994c0eecc91e9e0e5680d95
|
[
"BSD-3-Clause"
] | null | null | null |
uppsrc/ide/app.tpp/Assist_en-us.tpp
|
UltimateScript/Forgotten
|
ac59ad21767af9628994c0eecc91e9e0e5680d95
|
[
"BSD-3-Clause"
] | null | null | null |
topic "Assist++";
[l288;i1120;a17;O9;~~~.1408;2 $$1,0#10431211400427159095818037425705:param]
[a83;*R6 $$2,5#31310162474203024125188417583966:caption]
[H4;b83;*4 $$3,5#07864147445237544204411237157677:title]
[i288;O9;C2 $$4,6#40027414424643823182269349404212:item]
[b42;a42;ph2 $$5,5#45413000475342174754091244180557:text]
[l288;b17;a17;2 $$6,6#27521748481378242620020725143825:desc]
[l321;t246;C@5;1 $$7,7#20902679421464641399138805415013:code]
[b2503;2 $$8,0#65142375456100023862071332075487:separator]
[*@(0.0.255)2 $$9,0#83433469410354161042741608181528:base]
[t4167;C2 $$10,0#37138531426314131251341829483380:class]
[l288;a17;*1 $$11,11#70004532496200323422659154056402:requirement]
[i417;b42;a42;O9;~~~.416;2 $$12,12#10566046415157235020018451313112:tparam]
[b167;C2 $$13,13#92430459443460461911108080531343:item1]
[i288;a42;O9;C2 $$14,14#77422149456609303542238260500223:item2]
[*@2$(0.128.128)2 $$15,15#34511555403152284025741354420178:NewsDate]
[l321;*C$7;2 $$16,16#03451589433145915344929335295360:result]
[l321;b83;a83;*C$7;2 $$17,17#07531550463529505371228428965313:result`-line]
[l160;t4167;*C+117 $$18,5#88603949442205825958800053222425:package`-title]
[2 $$19,0#53580023442335529039900623488521:gap]
[t4167;C2 $$20,20#70211524482531209251820423858195:class`-nested]
[b50;2 $$21,21#03324558446220344731010354752573:Par]
[2 $$0,0#00000000000000000000000000000000:Default]
[{_}%EN-US
[s2; Assist`+`+&]
[s3; Table of contents&]
[s0; &]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#1^ 1. Introduction]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#2^ 2. Assist `- code`-completion]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#3^ 3. Simple symbol completion,
abbreviations]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#4^ 4. Code navigation]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#5^ 5. Navigator]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#6^ 6. Graphical symbols
used by Assist`+`+]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#7^ 7. Definition/Declaration
conversion]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#8^ 8. Virtual functions]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#9^ 9. THISBACKs]&]
[s0; [^topic`:`/`/ide`/app`/Assist`_en`-us`#10^ 10. Layout code generation]&]
[s0; &]
[s3;:1: 1. Introduction&]
[s5; Assist`+`+ analyzes C`+`+ code of your project and provides
several useful tools. The C`+`+ code analyzer is quite good,
it is able to cope with most C`+`+ features used in U`+`+, including
templates. But as C`+`+ is syntactically very complex language
and speed is important in this case, some compromises had to
be made. There is a [^topic`:`/`/ide`/app`/Cpp`$en`-us^ separate
topic] about how TheIDE parses C/C`+`+ code and maintains the
database of items.&]
[s3;:2: 2. Assist `- code`-completion&]
[s5; This tool provides list of class members after typing `'[*@(0.0.255) .]`',
`'[*@(0.0.255) `->]`', `'[*@(0.0.255) `::]`'. It can also be invoked
explicitly by pressing [*@(0.0.255) Ctrl`+Space]. In that case,
it can also list a complete list of global objects (classes,
functions, variables, macros, ...) starting with the letters
immediately preceding current position of the cursor.&]
[s5; &]
[s0;=
@@image:2084&1225
(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)
&]
[s5; &]
[s5; When list is displayed, you can use vertical movement keys or
mouse to select desired method and then press [*@(0.0.255) Enter]
to insert it. Alternatively, you can press [*@(0.0.255) Tab] to
insert the first item in the list.&]
[s5; You can also limit the list to particular type by choosing it.
To do so using the keyboard, use movement keys with [*@(0.0.255) Ctrl].&]
[s5; When you insert a function or macro with arguments, tooltip
with the function signature is displayed and current argument
is highlighted as you type:&]
[s5; &]
[s0;=
@@PING:2662&250
(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)
&]
[s5; &]
[s3;:3: 3. Simple symbol completion, abbreviations&]
[s5; Sometimes it is useful to just complete identifier based solely
on symbols in the file using [* Complete identifier ](default [*@(0.0.255) Ctrl`+,])&]
[s5; &]
[s0;=
@@image:1659&1362
(AxMCtAEAAAAAAAAAAHic7Z09iyxLdq7z54w9DGWUKeTMP5AhI638FTJ6rlNuGRvaGjjGGBuKHrOMDUKwQbrOvi1vOz0cmGNIcA+IQuJwLkhQNz8jVkSsyMqszKyPjOflYVMdFflR3bXjzRWRudb5/OQ6FlmWbfcflxuX0Q8//FD+exqpcpP/tdvLll/H68+lfvqp5a9/rfjzn2WH8/nfKo6/vhT/8fP+v9+O/9a2+PzH2/Y/I28JPv7zdUi3uTm+/W7/89D241uWvf2pef3x9XfZ6x9M+/brP9v2l2Db499nxZ8GnU+RFdHfZC8//2Hbnc+g9hG/oqz4HrR//3v5Mfev3Wu3vfzR/GYM+1dthyHlrqadOTwpP6DJuqdxNH5hCIzje3F+yQRm5C9doGt8OwrjEO0vwiZi+yn9qGl53f9f07lpfCt+7fr/+t185SL772GEcQQjcDuiDhiZ91thBx9/2GaVqpbSUCr9bv8h3t1eM1raoXtY+3C0X9Gfipe/P4qW0i5rL/DbQypj7cy3+tW9ZNlL92usXsvNL+8NVgqapAc3jorjr+Wo/r34769m6CtDjMz8WL62Y/jXre1Wjf9ybI9HHGVPaRzttp1fyHf79h9huHGUI55/8dxcTmsX1S5/KjJ3AKy8ozaL2kTcEKPsLHxkGMq59baPYv/qj96dTTi/iqplyK/CC8dKv2h8xLzo6QypgCbp8Y2jGbcd46itxH4HjCPIcEANFsYYh50ZM4fr33+EWY2jHOiq6+cKOQZW7hBcObdxh+IRTngyhMUmqdoPFewk/OU0Lba9CyVKnF+aNvtUTQBWPdW4BuNIEzRJj20cdTQhaAfwmHH0L3ZMN46BiykucgyUF9JKe89UlXup7I+rqnG0k1SKR4w1juUmqSqcT9eaiP8Buz5Ke/AbC0OSelXItdoG1jjSZag+9tv6P9FNl54fX49tHNWfuBnDv27ltX1pKPbHav2iG8/L154FWGYwjt79RxhhHPHFcW+IDi7I/amqj/3vsralfKv8tv+z23nEVNWik1QVcvapMwhn52I13Fm/aN7yLdU3DvNrlL/bWGdIhqHSjaN+XTWmqjsbR6DQOJpJKtc46lutTCRS/OoucyhTSW5jucl/1J39iKbpb1bMK+/oDiSWOQZPVVUjXubRTNTr7fVW3bxK5lwMi5kZ9eJZBhG1a3iL48I7Ri2OLzpJ5X0od95p/2oaHU+0vx/399Z+dt9xzAxVN8vnrJuzMp4sQ2WNQ6j2DYzjPsbxyy+/9Hdo/sS1cVwzR5QWy9yOu+wk1RIEMUj8ow27ZRfWSCZnnRpv6C6wPoI2L+JoXEO8ISQ2q/bUbFIUW7lztfHZdEfjuKi7f7uei/12wATUtffiPg+D7rCdbZ4NnhRvBqoZ/02jiCjsSzFVpUcczebSCJp+dYt9U218NmEcAJAaNl5w4oe2UfqCusahGofiAnJZxHUlv/HZhHEAQHq0Uq/5pxiH04hx3Mc4EEJoGR33drbIjN11o3AT8bYY8OV4bzsPmKoy+/Ebn00YB0IoNcUXwuX9tvri+Fm+Xxwdu9AWx929qLt+PmEcCCG0iO6dw3Y5YRwIIbSIMA6MAyGERgnjwDgQQmvRHcpXrE5njAMhhNBgYRwIIYRGCeNACCE0ShgHQig5uUkMvaVqanBcFMaBEEpOvekFqcFxURgHQig5DTQOIWpwSGEcCKHkpBnHlTU4khTGgRBKTq5J2NyDY2twpCqMAyGUnIKI47pU6skK40AIJSeMY5owDoRQcgqMY1QNDoRxIISSk7IQPqIGx33P/RGEcSCEEBoljAMhhNAo3dE4/qzJMY5LN0+X70/JBuBFq03qAe0gfvvE40a1rs+737ozyMqxBp0xCR8QejTd2Th++qnlr3+t8Iyj1rFYcOT4kKNbdHCrTuHirvbbeaY+V/J5S7Nx3w8aLss5W4Tm0x3KV6xO5zsaR+MXhsHGYS6e5XvtbQ9FoVy0y6ttMSp2Q1MwVIr+xdG+qx43vJT3RsgiO2fZORw11fYVfN5zZStB4/igA+NA6DH1pMbRKBxY6iGtHbHku96FdhYMjO7kjJybUaZu1AGt5wp8unHEjvuYnzcSXoye8cI4EHpMrc847IBltlQm973B1r0C9w4ZXCqPH0hHaA2f90MJOM5qGBJXZWBXLIsghJbXcxnHhztaDR1I45P2+jXtwxjHs37eOYwjerYIzajhFTcm1OboHh5ULumm3fzhPXoy6RGTUU84pmEc0VkSbw/d1s5MS3jpGxlI5XNCzq//6qmqJ/28TFWhB5cdIW9qHM6PV363nbIgMg/K1Jwoz2QcI27HlZYavlE1Gzu3uS7FXyd8UlSzf/cP0rYV3bS/ftyzv4n/ux9qHGv5vGcWx9FjS//WLqYZjcO1B+enieUKn8U4fvnll/4OV35+9Aia43ZcnuNAC8le8pjRth3Nt+b2kaLYOldGXU//AkymsnKv3rS8JrY9eqeinzDLvg6e9BLGoZqTPJ+mr/mA/SepfRypOxrHRc39ZUE31QwPACK0jJTLdD3LoWj1L+jbgdgOyl5qXbXAx9l28XflZ+Y1vZSEWdpMQTAdoJ6P+IDRKiT6+TjCOBBCqSlqHOLiXViCYhzSNtQ5XT1P+/l8Do0jNiUs7553+wZTVe4u1R0G0YmpbKgmk1fORwjjQAilponG0Y7o7myPN6Mz3DiiSx4jjOMcBhT+Dgcbx5AlmJSNo/wcAJAgk4zDs42zM7dV73MfnfoS3d1ndP3Nba+j09v1oHDgl/fBuDvUjKNvfs4/H0cYBwCkhq2sMdo4jv7NieHieGQGa+jieP2OnApzB3JZFkRd8ZAL6uJ8NOOInqT2caQwDgBIDTRRGAcApAaaKIyj5JBnm93HyO/eMS9juM3+7v8Fejjk1QOGLXlfz/fdoG4A6wBNFMYxgWP+yMZxqIzgMGaTymgwDkiAO5SvWJ1SNo73XbsEFEYcu023NLTZboxBvO9Nc36wxtF0LnfS7bBoR+yDXXlyD1EHLPXC025XqCdgsOGAYLPr+3+x2/j9m/NxYpDN+d3dSjGO9/Mm08OWPNi5+9G2u/f7jw8AKmiiEjeOhnK098Zt2XLIzZRUOSSa8TCYqmo8omk5FPmhaTyaQbU0l7ZRvq6daPxE2QAuRRyluXjuExpH6Q7mnCv/arymdhOnPTsLm8A44NFBE4VxnDTjEBGBEz443cox3zUOZfwXEUodpCgbakd3uCLiqM9HM45D305C43Ail7zvfIyPADw+aKIwjtPFobsMJbo4YqRxyAilOopqHLrjTCc0DjdSGBJx2HYxu9UYx6jVE4CHwkvtpxXWtM9JDEuzObo0RrvBLInaI+ewXIJQjOOkGcduI2ZaSuPIj/Xr0ggKM2CKKay2mz/+S4OoQw8xaNv97za3mqqSLYcBEUdtNIdw82bhI3fabcQhp+wAHpL+tBq6cTiFMEKNK40xqSTHudc4vLS3y6SPT9s45HyUMyu12yiNFWKxO8uLbpnD34+Y/zfXNds83zqzVd0bm82FqaoryL2ppG4d3MYOeTcNlWv9mzULb2XcWchwNxHr7JWfyt8YwOMx1DiELpnBuNIYo4pfDN7eO+xUd+pR2sbxEFxc43gqnNk5gMdEHVOVyhTdSOynLzcjtJeRZFhpDOdAJqugOKxWDkOcgk1E6BXX8P3Kz9Futg/2H2ZwtJkTqcfh6r5fXXG77/7u/48AksIziWhlCjFw6hGFbxxy9D/brkGSXMdb/KyJyia6JXjFNSLGoSdmFIdysh12vxnzWo1YMA4ASI1ILSW9MoViHIrGlMZQjcMr9eFuYoyu7SW3j5UMUatCnd33XI9og6mm+GEbaOkzXRgHAKTGksYxoDRGr3FEVyaMoZgI4YJxRBL+yhO0W7TRxb4wPlUUUd/AOAAgOcLRWa9MEUz9X5qqGlYaoz/i6CuH4U4t9RqHU6PQOYQ/LyU+YLVqIosAxlbWMQ4ASA1tIVyrTKGMxAMWx23fSGmMfuPQNhHn5i9sxNZZYr4oP0qzuu4uv8s7iqMRFsYBAKmBJgrjAIDUQBOFcQyneZovTMpUP/L2iA8vUI8DQAVNFMYxCptvysVJUfIgUI8DIMIdylesTskaRxtB5GZByUmUIbKO2PbKOHYmW0ghUqZvdwfT7ua56iQfD4/W79CgHgfAvKCJStk4Tu3sUztoy9QfTuJBkx237d8OiV5/O1RWeahMJna9Hke72yyo3zEj1OMAiIAmCuOQaV1bIyhH/jYdbssht2ah9A9MwcmgLm6P84xjYIoq6nEAzAuaKIxjJuNwLrC7bpF6HMHmi0A9DoAI89fjmLhD77mS5QppzCSMY4AR2NriPRFH5pTeqKeq4vU4vM0XgXocABHmr8cxcYdy88vVPO6vlI3DFMuoBr1uFdsGHcEUU6x/cztuU27DWxyP1OOI1u+YC+pxAPQwfz2OiTsMcn9gHA9rHHf/9q4R6nHAEzB/PY6JOwwijrAKh5Jv937mgnEAQGrMX49j4g613FlqbagRVdCXFMYBAKkxf1r1iTvUAhalQ1iY407COAAgNZ7XOOwbdzUPjAMAUmP+ehwTd6iurcc6e+/dQxgHAKTG/PU4Ju4wdlNWsDiurJbfQxgHAKQGmiiMAwBSA00UxhESq7uxNHev60H9DkgENFEYh0qs7sYV7DYjHqO+Z10P6ndAMtyhfMXqlLhx2Lobm+1G5qTS6m6ctDodbUuXF7EOHOpkTW7eEieKidbpiNT1iJynCvU7APpBsyhZ45A1NaoBf0DdDaVORzyb7ikWcUTqdMTqesTOc06o3wHJgGZRssbh5ht0K/2NSbfeuEOXI9dm0z3FjCNSpyNa1yNynirU7wDoB82ihI1D4Fb6G2Uc9YvKL6oXB6ebZhzROh2Ruh7R85wT6ndAMqBZlKxxOAN1OSB3A/7YOh1V7de87lZ23jijvd2kWte4UKdDr+sRP885oX4HJAOaRQkbh/Nkp1lQsDNIA+p0dO3N2B7kFbfr4M5UWNdo63T01PVQz3NGqN8BSYFmUbLGAfeG+h1wB9AswjgAIB3QLMI4ACAd0CzCOAAgHdAswjgAIB3QLMI4ACAd0CzCOAAgHdAswjgAIB3QLMI4hnB1vYxyQ5kC9wE4fs6ylyUePwd4BtAsStk4nqZexnx82WSfd/tPGAekCppFiRrH8vUyTGoRL+IQKUcyJ1OTPKVL6Zuuy4L7Lc8+lSfzHhoH6c0hFdAsStQ46q/QDeplyHdNS7tPm+Sq2b+TNXf21H8/7rbtDBXGAQmDZhHG4X+1Zq2XERqHOIoYqIMIqD/73xURRxluvGSWT4+18gJwI9Aswjjc79XM9TJ04/BcoznuzbKLKxEHQCqgWZS2cSxeL0MxDsc1rF/c7v6r0DioiwHJgGZRysaxZL0MOX/lvHXw3nBKzQ6dqroaM2Elp6qoiwHpgGZR0sYBFdTFgIRAswjjAIB0QLMI4wCAdECzCOMAgHRAswjjAIB0QLMI4wCAdECzSFrAP/3TP3k2EbacMQ4AeFrQLPJsQjqF9yPGAQDPDppFoXE0ZiFfr9g45ON4SgqRx8Ce5GavpzqZ4xAzPrfupWdpnjrUs2Mdii59VvGtaZEP7wPMDZpF4dyU1CnQeU3GMdMYNaqux1gq1+gyhDRPtT+swbW4eVfarLyHIjSO6i3jF+5HfvTPCE8LmkWhNfS4xpqMY1jqD5s7vRqx8yBFSU9dD43RWW3L/ccTEkbP82A/oIkjms7lj11OFWeTLKgbEqsPEtuP7KCmf/SN433/KebaUUMn/TtMBc0i1R1irrEm46jQBqhy3LNDqMh2W4+TSg2O06IRx6GIzSD1nKcsSuVsLpMZHgovS7x3oL76IPH91GO7WuUkMI6yJS8+tfNU2y9ermDdHTAOmAqaRTGDSNQ4giv8Q94OUz0D8nDjGB1xxIzjqvPssSHfOPrrg8T3I/MGex/EM456nqpb+AiiDz1sAZgMmkUYh/O9Wtg4RhObtFnaOPrrg8xlHOIQXzZO0IFxwEKgWYRxeN8r944gO372GkdQ12M+3Pudqrma5jR6znPTXcZvvJWLEcbRe59Vj3EMn6qqzCL73FVR/Oz8ISJTVdQNgcmgWZSscez8Ve3uAl4rHWtWkKsfuyoezhJDOJ8zH/JUrXlFStyK9u1uV3Tn6dcH0ere+h9Bqw8S249ztrLRK1n74hrE5679s9xPJM6ibghMB82iZI0DliIogziWyO241A2BGUD3EsYB/XgPAI6DBwBhScrhC+4FxgEAzwl6CGEcAPAs/PDDD2bsesbXqxHGAQDPw0OM/3gHxgEAzwN6CGEcAPAs3H2BOGUwDgB4RtC9tBrjsA+45UVfho1e/AcJ5bOEt6K9/dU++lc/JSefBOxujp1ed+MhPu+n7e7H7scf95tP2t+O23pBB03SDz/8cE74AUCZZKN6JHnAIBPLSeW09yZCXwTngTs/x9QSebTu/Hm/FdlnN0/X5yz/pvSkrgdooEnCOKKJZ821tBmEe+tuNANpkGs9y9S6FTY/SSaTSmWbbd50aztoJT80d/NSfDijpUgqNaruRhtWdI7Q1i6x7971834KbGJ00EF69pRBk5S4cZzkrItTqChahyIecbgDo0GtW3E4ymRQbWM9WnaJsNphOUxm6NfFqAiSCooQwKTMNQytuxHPvnv/z/sS/hXKRjF55fxyqOsBDrv3ctCqp2zfI2Ncfe11qq+Wqk7mxXx6r/8LlQdZYudGvR/yemEcBmfAzDzJpH99U1VKCKNmkVWTE5pr427eqR1I++tinPQ05nbJI7jeHl53o/lQ1Re82okzA3bPz1sGF4pxaGFIe6rMVoHHqXdMLQf1+q3bG0f9umqc8zjzWwfGITDX7X11KAatcUiUgdS5Brap2mMDaX9djFOk/kV9XCcP/MkecWDdjTrEqN6tXhycAOSenxfjgKmc+oyjHGubsXvJWMAah1AzITyrcXTR06xK2zjcSQxneid631Gs7saIgVRGAWa65tQzkF68D0qtf9FMxShnNaLuxqHI8/r8y0+x2YZrOnf7vNOnqqjrkTB2qurQzrlKdzC+oUQczci+2Wwyd7N3cadhb+O7e0uijDjaZUT7hpDYzJ5PnjunoTaeFok5eowjz/PYVisyDilneNHqUNRodTdEZ7eykrN/e91rFqnL/nlevc533fxMOYQe2goaTbdu2j9yPt0JDIosMk/9dTeacb75RM7we//PO3lxnLoeKSPG2fplNSybsVVcoEeNo+orQgYxweTNQHmNIqKwL8WJ6BFHs7kc/IPTUM+t22L+kCNmHHkndau1GMeKmFz/4smYejsudT2SJlwct2PrIXdaVeOou/ojtnvNpDZKX1DXOFTjCH3DmUNzXclvbH+YOeRQjSN3FW6FcTwgk+pfPCE8AAhXExjHex2zB2PsMONQBnZ1tHd9YaxxOI3jjOMWEYf0i5h3YBwA8LyYQVoMs50ZyCF2YMTRLkCYCa6dnS1yG4WbiLe9OTPXWTbuZvLE/BkzfRrtRmscnlNgHACwMkzEYVaSzVitX9j3G4f5oZW6EC7vt3XmtNx7t7r380Ns/8rkmLgHzG883eiuqtAmMA4AWBeq5PLGY0u9T1i/eZjnODAOAJiFJ9dg46ja5g43ThgHAKTIk2tExLGIMA4ASA80SRhHSO3bI25t7e5lqB61s0+6xe8CFU/DNZrnNlrndlxuQwWI8wOaLIwjZOwzEYd8u9mIp60vDdpOCqlDMUPii+ABQOpQAMRAE9UYx/8Zo5UZh7jLbWsG/Mo4DkrtvBhVDsBdN3S7xiFuyLMJLnzjcJIHBv27bLFdBnLllJSUI9ShAIiAJipx44hVAKxH725oVXPPujSFKtpyFWLErjPgdNmiRGThzlY5CaPU/jZnlEwSaIklOaQOBYACmqjEjcPNy+cM4HJwVpOTSxzLMMYRL4TkRxzGFOKFk7q4QxvwI9ZGOnEAFTRRyRuHQFzhe2scQ42j6bkbaRyygFGPcXRZeZUzwTgAxoAmKnHjcAxCrDV0Ne/q9mBYzrNzlp1lixjh6xBGNyBbn8g1Djun1NM/M0Wmwmqto6aqqEMByYMmKnnjkLfFtmNvcztuUzZCXYn2jMNkiGnHc39twqoxi+B2XGEEvf3F4rjvHcMXx6lDAYAmKnHjWA9Db8elDgXAeb+vrv1Ktvt2NDgWbUtWtC1Fdt4fz9u6sTieP4JNzh/tuyXHumG/bX8sjv4eeg4Ubhju+dGEcawGHgAEGEg7aB+Vkbka7T/aF9n2/NF1a0d+sYnpWf5cvXt0vMDZQ20EbefgQKVrWDNS9/x4wjgAIDXMGC6H6Ky7yDfGoXQzr0VQ0IYPdYsc5+VWZaDRRhPegeqtHPMK9/x4wjgAIDVUFzDTTcONI5xHama07FRVt1W526oxPFDEOB5zhsoI4wCA1PBd4KjMKV0wjvqFOo9UekfTbjsYL9AOpE5VPeYMlRHGAQCpEbpAuzxdxgUDI46zO6dUOHNQZhGkKNxVb+1ATc/Y4jhTVRgHADwCt1ERLIivRhgHAKTGbYRxrNQ4RKKq6M2rzpPgsXb3QcLmab3jFd/nKVxMBd9XZ4TbdyElbiOMY6XGUVOPmU5WKB+b+qOnfbcRj2MHWacWJ3gAUKXHXKjfAelw+7JH61PixtGmjToUThIPkfojPwiDiLV3xiHztJ+6SKRs6dKGdObSZQ6xyUOaPW+2edOt7eCX5IgFR2HKkdF1RqjfAQmBJgnj6CIF6QIyL4eckoq1N/sJEk81yKSCh6Id3g9HJYW7qbVRbdLaUPOWjBQqD/JHeD/J4VV1RqjfAemAJil14xAzPHauJow+umFfb69RIw5lK7NtkMxQHqg5K5tu3V9BcbMUKmnVr6kzQhp2SAY0SYkbxyF3x+PGRCYYh/IVVYzDuba3o3fMOKKLLOJMehLeDq4zgnFAMgzVex2l54fTqR4sNrv32QbfZ1baxuEPyHbaSozDYqon1i63DQiNQzqOLAUbNY7qWErYYvGnqq6qM0L9DkiHodKNo35dNaaqdI3jw1sjNnM79Y9i8TrLC7ucEWkXt+O6lZi8gKa7nhclOdrCH1XdQBP11EcxS+rdMkd8qioIFq6pM0L9DkiIobLGIdTMVGAcKRrHyh4AHHY7bg/U74B0yOSs07u4zuoa391rLxlxOPPbnnmIzao9NZvk+UbuXG18NmEcq+HiA4B98AAgJIU3A9WM/6ZRRBT2pZiq0iOOZnNpBE2/usW+qTY+mzAOAEgNGy/498dUjdIX1DUO1TgUF5DLIq4r+Y3PJowDANKjlXrNP8U4nEaMA+MAgPVQjuo7O1tkxu66UbiJeFsM+HK8t50HTFWZ/fiNzyaMAwBSw1mWdhbC5f22cvrKe46jez8/OHahLY67e1F3/XzCOAAgPW4i9ZnBVTxIiHEAQHrcRBhHSsbRV7dCIfLkYH6Uj+9Nx8bAeXEhA8l4zAOJ3vPpsfZ5DvrlNXt5cXnd/Xg+fXtrfsy/ua/LP81nt//n7/b388k0vuWfvmr7r3dedf6em8a6p/PX/2zfKvdQHtfup+z849dNZEPvdujH+ntxu7XPTYRxpGQcp7HPRARJRczmXjKoq4llu50XJUNjb/vUw3153Xz5+VSP1Y0v7D61Y3szYrc9S+8QBiE3VFuqkb8b1f39yNG+tIBPXw+fjZt023bHavyi2VzuR/aR3wH5AOYD/r2ot+KCJgnjGF23IqQr21TuqvkPa/JWVcZhcolkbqUnszrWHbSNUHKT1cT27xm67VLbZm8MK1oHxMlG4icSmWgc77tzlvlsdpf/FxvjsLuaYBwD99O+9e3NblhaSegI7n6quEbrE6Ydfri/F/VWBLcve7Q+pWwcV9WtCGj/Sx7zzTZvX0gvsNGHOVasvkbd35pOWBNKGk17zt2FrjxWhVYHxFhb28EdSW4ccdhPoRmHnGUaYhN2qkqEFe5+3pw8kJ+aH7/npr80kZN/Pvm3aoIr0sFPMvmQfy/qrVjQRCVuHNfVrVD+65X/o+sJq9oRHOOwG5oZrXh9Db1/MCzYbL09cyBqVl43n5VXMPdhI46B8YV5NzpVZZY5RPRhj95rHM20VWlPSp/eS4vH+XuRNt+AJip543D+5w6sW6H9lyzyeg65+j+bFxtxVakZQXQAGWIc4vr2sYzjauY1jnrtuw0unP2IH/VF9nrVQ/+7iP10oYr7i+2LSR/l74VxGNBEJW4cV9WtOOf1tbRX/2LTrGvU0YT5bxszglh9jajRyJkEMZ64+6mip37fcQ3RH8ee1jhKpxBr3GKpwjUO001MTzW/ls4LyjMRe67mpsLF8XDNJZiqesy/F/VWLGiikjcOZb7oQt0KzTjk3LWZlzb3RnZlxNsFUNPNO3S8v1fXI3Lbpx2FonVA9JK1Qf/MXCFHptTmQl2DMI3ydlxz/5V2O664vVbcdhve7lvtxNxPa0zE3cqulQjXcFdP6k0863Eu5h/y70W9FYGnY3He7pceb1alxI0DYB4m10NZGuqtSELtt+f9x9JDznqEcQDMwqR6KEvDA4Auio7nrFh6yFmPMA4ASI39Nts2AcaxaF99nLfbMzHHQGEcAJAatWEUx/bfVkV2PvaMF0gI4wCA1Kh0rO4/KYRVsMwxXBgHAKRGpcA4iDiGC+MAgNRQpqpY4xgjjAMAUsMsjn+YV9xVNUYYxyz0162IPSd+F6qMUvn9TwPgjoRigWOUMI6xmJTpIUun5piFQ45xQOp4OhaEG+OEcYT1EWTlvubdWFZb71Hc0DjUSKSn7oZapyPGFdloc69/7rbnta3Ur8vfw27jN8pEK3JXrpOmmKYbngs0UYkbR6w+Qk+W2isijoihKHU3YnU6ZiQWcRh3OIjpLKfzofOI9/MmO5vfT+NfTi4+jAMem9uXPVqfEjaOa9Kbz2Uco+p0RA53Tf2LfuM49HQ+CFsJjku+bngi/vIXmATGoX6v7mMc/fUaZqLPOIL2HuNILZ8qrIm7D7zPTtrGEa2PYId6t77GSc4mVZnPHROZbBy3uP9K3lW129gI5aJxNEseZqrKMxT5cYYs0ADckbsPvM9O4sZx0usjyFmj7W5XOKvbh3BRe1x9hLF1Omb/X2PXtTfn9/ZDRSe7TOfdztnEWWc3+0m1vgM8F3cfeJ8djANmJdH6DvBc/OUf978V12e//YcPOSr+4z9Ul3Z/98fzX/5YhO8CxgEACdIax2/3/6iNirpx1K+rxnsP2o8AxgEAqTHUOETjH/8uwzgwDowDIFlU42j8wkhGHI1rdG8c7z5u3x2MAwBSw1vjMB7RmIINLsRUFREHxoFxAKRMGHFIX1DXODAOjAPjAEgZjAPjwDgAYBShcTRmUXvExz/8VpmqUlfMkyVl46gfVZv9oYP6ob9bPTfdXwfkKfiWZy9Z9ulpzx+eEW+NQy5tqIvj9Wh5/DsWxzGOOuKQ2Wjn4xYppyRPUQdE5cfd9iU/ng4FxgG35O4D77ODcewOIruIMBGR+sMm0Ggay1G6u9Tv3hKJbfODMI5IfY3ofrT6ID3n0+AZh15PpDmTzTZv9tCmOrEpUPT6IBrXZeXtQzcO0rPDUtx94H12kjcOMTRVQ2s7ZpbtTnIqGUHIJH6Hoh6fZZ4NZ6qqr76Gsp9ofZC+8xmZtr1LkNVahknqqNYHuREYB9yWuw+8zw7GIQtJtANpOcB2o3fDIRfDl5tlXWkpN28G9v76GuF+YnNc/eczyjg6n2rsSRpHLI18yAyVB72s7ExVwW25fdmj9Slt4/BH4DmNo3+x42mNY34wDrgtRzRNyRuHWHpwpqq2Ti1Ud4pJGfC9RYquf199DW18jtUH6TufiHEo9USeyzio6wGLce9x9+mVsnE0t+PmuUlQIwZnd5apG1T9+hp+9aK2tXCXOcKpqvh+LtcH6TsfbbG+qyeSF21LfRdTJpbmN5u++iCL0tyLaxE2QV0PWI57j7tPr5SN4+7fXohDXQ9YkHuPu08vjAMAUqOMZn//h+PxD78vX/ym+KM6Nv6x+K/s9//6h9+ff1N8vfGw/PjCOAAgNRTjqF9XjY3++PGb33zUb3wtfvNfEW9JVxgHAKSG4xG1at+wjWW4YQONP/x7GXrcdFx+eGEcAJAaXsTRuEar6g03yrDRB2qFcQBAaoRTVW7E8a+/z/5dRCTejwjjAIDkGGkcLHP4wjgAIDWIOCYqZeOgHse8HD6/ZC8vmy8/Vyf25bV8XfHpa9/5d92arS62A8xCaBx/LH4jjIM1jgtK2ThO1OOYm8Pn182nt/Zx7x+/bnpdw57/l1fVIGLtABPRnuPoVshr8+Cuqn5hHOurx3HN+WtckQW3NI7dl7fs8/fqx844mvAh/9Z00OOLMcZBunWYyuWRkec4epW8cWSrrMcx8vxnozKOH9t/ZcRRWkBjHBXf3jAOuC9Dxkbz5DjhRiiMY4X1OMaef4QrIw5jGUsZB8BU7j3uPr2SN4411uOYyTiuoDWOxim+YBzwoNy+7NH6lLZxrLMex8jznw1jHKfT91zcUmUtoAxDJq5xUKcDJoMmKmXjSKMex7Dzn4Nm4duufX97s/fi1n5Rv1uvnrd9anNxaO7IirXXR8kz6nTARNBEpWwcd//2wnio0wEzgCYK4wCA1EAThXEAQGpU051Hbzw4Ftl2/3E+f+y3zYtAH/tzVpT9ztv90oPTowvjAIDU0NQZR6zl47zdnpuf9tuz6izpCOMAgNTQdME4ynDDBhrHKvRIWRgHAKSGVTUxVd9Sud93NtH4xdHeKFnPajlRhog+0hTGAQCp0S1xVO7QvKoNRBrH2Ys4iuwsV0W8H1MTxgEAqdGqdAvrDKFf9BlH4sscGMcD0ve8+X3OR6Sryvt62vRWvd0A7kurCcZBxHHGOJ6B3eZOj0sfKiMYdejKaDAOeGA6jZiqYo1DCuMI61aYihjVZb/JJRImvL1UX6Pdc5dvsN1tvVWsLoZe0S/IsqunIrmUvumKbLe7jd+/+xWJxs353d1KMY738ybTw5Y82HkH6dNhKbLOJM7dGniwOC7erK2Fu6qkEjeOWN0KJ21g2d4N/uPqa1zKUuv3P52Vo3eoEUff+czFpYijNBfPfULjKN3BfMDKvxqvqd3Eac/OTm5GjAOW4RrxHIdQ0sbRN7DbhLd2cB5dX6Md7bscvEOz1A41jv7zUXY7OuKoz1MzjkPfTkLjcCKXvO985s27CKByncyT44mHG2eMIx4RtLU5RLgxvr5Gs8Nqq+rFwT3cdOO4TXHz0DjcSGFIxGHbxexWYxzkuYXbgyYqaeO4UOei+tGr9DS2vkY1B5UXzVrJZrN1LqdHG0d3JtUcl12OWfz+q9A4ZMthQMRRG80h3LxZ+Middj9TPXU3YAFuX/ZofUrZOCJ1K1qqVQM3JDmNra9R7b8Z8IO65Er/eH2Nkyz54YQe2vnMRu5NJXXr4DZ2yLtpqFzr36xZeCvjzkKGu4lYZ6fuBiwHmqjUjQMeFOpuwIKgicI4ACA10ERhHACQGmiiMA4ASI1ObW7crqiTfOCve3O7/2heBJWfhqreq3kEvbmn1z55mMk3NcULS13Wx3mbLfLICcYBAKlhZMzB/uA+VF69ntE47FOE9vn0Kc6glREZoeJaW8E4ACA1rJoL/zapSJWuaruVP9Yv5zMOkbdEDvhTBn+MA+MAgFugxRX1qzplVWMSx8JxlMZSMnfWaRvONoWNwjhErpKIcYjNxQSaSKK1L8S+/WpToYw1VC/27X3vjXkV5jZ48SD8z/vtS5ZZtvuf60ZvtxgHAKSGFk60RtGlyRXpcsV8lgg+rLGIVq1RGIdIxq5OVdlsvaJVGkdYgepCxCGNozWIY2UWR/fdQMe3yji2X2t3Kh3EexvjOIl0uJn7DGD4XLaevfbBOHx+yV5eNl9+rk74y2v5uuLT16a9eUu2n769ta8r3uwzd7F2gCdHXqW3DnHcb4WTNFf2ztqHHbHrdrm4bfYWb9SMI4gWqgPZyKHs0TlUmOZdz/0eyok4Pvoapb4XVbjxWr/XvPY6YBzVw90j81oMz157Lw6fXzefuqH+x6+b0h269t2Pptv3vGsP3jpfbAd4Xhw1A/t2604tmbUO3TicVfVOauPFiMPd/v7G0c5W1ZNUZ4wj0MmNNepAonWQ/sjCN47x9TJi9ThUrshqW432X96yz9+rH5cyDtKew7NS6bgXg3At7+YqJxAIIg7/Tt69ncnyGi+vcRh5U1XeZNRNjONj/2omqWo1PuLtNnHjqIhHHGpkEWsfXS8jXo9jOs1o3475GAeAi/QJ6xSuUfjve8ZxdtfBtdVtuYLde1eVkN283yO0alPHcxbUJew3jipFvLM4/vF1K1bGu7ijDDq808Q4FjSO8fU7IqdxVcRhLIOpKgCXu2nJmrOlC1x9y/BYYRxLRhyj63fMhRnt37+85l8ixiEMxXur2urbhXaA5+WO6p4cn19iAWVxYRzzGcfIehk3MY4qrGhunWrO/Mtru/Dhvj5dYRzUy4CnBU1U4sax81e1m+obsboYc9XLiNfvmAN5223V8u0tcyKLF3sjbtPo3HbbUhlErL3ZT+5/UoBn4fZlj9anlI0DroV6GfDEoInCOAAgNdBEYRwAkBpoojAOAEgNNFEYBwCkxmyKVEq6Ol35swjjAIDUWHpUxzgwDgBYGQs9gmeEcWAcALAy/LwfQeKo/Vak7zA5oOqJqSbnj3nXekT37naPcaRoHE3G2nkfylslh1ykz8r7etp0W73dAG6Dn50jzDh4tFGJyQFVGL8QSxsyi2BXwan6qmMcqRnHqfYOjOMCh+p/x6gnxyujwTjgARDpzaMy5lKIcEMUy7BuUidUd6IYIo7VG4dNCbLZbkQ9jnxnctvGUoi07W1Lm66kq/HR7Srcf92y3e1MihLxCLbNW+InubKlQzZ7mxcrUu8j9rlUrsi+u9v4/bvcXKJxc353t1KM4/28yfSwJQ923kE6d5jKkHyATQp0mwgd4xBK3DhkusJqZHYKObVDk+xTjsZ2PC8H+aZ/OXp3rtHtStlW7r8e1Ts/qgb/7vXhaAbJso+Jeqptu0PIc4vV+4gdd04uRRyluXjuExpH6Q7mM1b+1XhN7SZOe3YWNoFxwFQurnFUqr2gDDeMWXhTVV7Zbqaq0jEON9+gjSycqSqTxjZuEE1O9coOqiFaZlPX9y9NwTmcW8Kj6xNJz95X70M/rsoVEUf9a9GM49C3k9A4nMgl7zsfZg5hRvy7qiJVlfZbt6dYHA+LIlXLIiyOp2IcAhNBjDeO+kU1vFcvDn63cP8yUhCHczIHinOI1fXorfehHXdOQuNwI4UhEYdtF7NbjXGQdxeWY92j+g2UuHE4A3g5wIrpIMU4/AFfjNuHIs/rbmXnzVYMnvr+u9jEdKuDAlkZpI4m5FSVWPKooonmrVi9j9hx5yQ0DtlyGBBx1EZzCDdvFj5yp13+OcIFHYBRoIlK3jiUeZ7mdtx2pqhbrbZBhzKV1LQ3Y7UTNaj7r9u3eW5LE5vB3xw6y9oOwoO040YOETvuXOTeVFK3Dm5jh7ybhsq1/s2ahbcy7ixkuJuIdXbqgMB00EQlbhz3wpuqgsFQBwRm4PZlj9YnjOPGiBtlmW8BuANoojAOAEgNNFEYBwCkBpoojAMAUgNNFMYBAKlxUdXT30W0TtNYHYsub8nFjt6DiB/7rfpoYt8exP2Ufl6Vbv/x3TaPvVf0Zp7HOAAgNS7oI8hJEtHwJ8SHpFWMPsE+Qv17ULIAOy1aKhVVGAcApEa/bGLDSxqRWuQ4pHrUAxhH55it00U8FOMImbEeh3mgT32+O/bc96NB3Q1YGfUjtvV4WU3amIdu986YWUvmMNx30ziNrRSZNqtzLF6y7GW7fS3/rV7sf27awxFYGeN7Bvb6xb5wz1SefzMvpRlH16feXuztQ8xrdbNax8JNxoVxBOr5Xs1bj0Pmqn0+qLsBqyOz42c3Zjaja/1aJl2XxtEaRJ3MMDqf0xpH5Rc/77fl6zdRK/BC9agLxiHMIbSJY1G/kmscfu/6I0rjCI54bC3D+bBaoIRxLF2P46QZhxqJtJFOXmThcam7ATAf7VjprCTbsTZmHHoYohpHvZ/GOF67HgOWOS5FHB9uowyX2pPXltdtQ7g30T8oOFIGVqbsiKfEjWPpehxmb2rEETEUmzJLTa5I3Q2AibQjZT3uhksCCxnHgOpRVxiHN65PMA5TWr2Tn1VeKHHjWL4eR7u34cahHze4MKLuBsDVtGqv2M38/r4ZQqNrHFOMY5Y1jo+w0dtA3cPQqSpbqepsy4uoZpe8cQgWq8cx1TiouwEwK1mmLY53Q6i8q6rfONql5HBxPDSOcLFANw7vbPqNwz3/dqoq+DxHs6S+D/fWvtlai61U1UQf7WMdW3/wTNw4lq7HYfY2zTiouwEwJxc0+DmO4Rr2HMfTKHnjUOZ/5qvHIeeR5CH09r7jUncDYD4uqn1yfCZVgcl8e3sEJW4c8KhQdwMWBE0UxgEAqXH7skfrE8YBAEmBJgrjAIDUQBOFcQBAaqCJwjgAIDXQRGEcAJAaqrREuYHq5+Umpj6PHH3O0lGK6icTX/t2LX4Blz4hxgEAqRGqeYDaTz4S6Te/cSxQOspXv3HUpmHzjXzs9715tTCOkBnrcSxA/fDgtc9T99cHWZQqwQi51uEx8CVyql/QMsaxSOkoT33GoWRL7BfGoTJvPY65GZa6qvfT3d44KNIBj4OboqrYx3xDZH6SqZ2q18JBrO20+Xa33c63RRHUWZIdZikdVZ9BWzfKpsYqXrQW3Th6fKP7RXnNGMei9Tiat8pRurvU73YVq69xsF9UZ2wX/fODYxzh+fTV9eg6aDu3aeT9s/I3H51l109Fkrvtuc1hUp6DyWEiq34ctF1RvwOuoxsPfTdwJGavrDUMMg5RK8NrbY3DdmjG60mloxrXMKUGz0qixbfjJePQgyibWddT4sZxi3ocMlnfoWgCmVh9jdPhaAbD8lhd1BPkv+r66+cTr+txirTIhIqnLkv8vP9VL6bMPYjpLKezmxSR+h0wHa8Uh7vAIQZN02hG+SHGIbxGVO8TxhF0mFIBxKv6Uep7kb2YyoONrdRnPjriiEciiRvHLepxuGNyu5/MkxaJmHUWbw9ln0uGFcuyaz5dOFVlzSI8YZfr6nr0G8ehp/NB2Ar1O2AO/BpOWsjxXMbxJsb30cYRcwiMQ5P/dVqoHocyDscWKZzMfvYcbmIcptsS4cap3ziC9h7jIF8uTCco/qeVdFKtwTWOZgP78lrjmFQ6KjJV1XjEoKmq7hSDu6qYqlJ0uk09Du0CXq+vYRzh1IYeYqrKDuZySi12PtcYR2MZl8KNq5F3VcnaTxeNo1nyoH4HzIhWNVYr6dSzOC76N2vdU4xjUumo88jF8aBErPILML8ZFscDnW5ej0MaSv+hy79cnou7gsWieZYXuRkhtfOJn3+sPkhH1XnBEhh2XdvU3ThEJ7tM593O2YT6HTCdh9MCpaNiKq1n1J23qhI3DnBYLNxYHup3wAgeUPOWjupRESkjPkoYB5zMLcRBWASwStBEYRwAkBq3L3u0PmEcAJAUaKIwDgBIDTRRGAcApAaaKIwDAFIDTRTGAQCpMUTd/bHiIcD5Eqo3WUFetvvPxcCE6uVpuAevHs0bdTrOBwke5ej2P2y3GEfHpDoX9+I29TVkltr+1Og2nRQZ1OGBUeTn3DBP5AUj9gjp23ppCWW+kbG7mn4y8Xf7+mMcgql1LkYxY0qoZetrHEZniKL0Bjw4obwEuSIHyFLGYdMSHoc8+odxPJJxjKlzcbqivoZ8tm6zb1NLBdlx9VQkoj5Iz/5Pg43jiqy2bWmMoASGE4OIvB8n865nHE2aKS1sob4G3B6vlFI4iSOiAG38FGmdTF7Eqtu+0PcqJoYa12hp2sN8I8oxewb28NDeSZoiUtEPUm8v9vahn7xR2sYxus5F+2M2tL5G5RoicaIcBtWII1YfJFq/I9hqfi5FHDJjYXfmvnHkXh2NxmuorwF3Iiyl5EUcIi9H6CoiZ6xdERBTXfb9YRFHmAZktHH0HvpYBPbo965/FdI4oiffKGnjGJ+uvGJEfY2+ua/IVJVWH6SnfkfNchFH/Xk14zj07SQ0DidyyfvOh4QncAMiCWxjxhGuStur8PLtzk22QZAy1DgGLHNciji8Qzu5fk1G+OCD2IZwb6J/cG4Yh/06XW0cPfU1RhuHwEY6FxZfbh1xuJHCkIjDtovZLeprwL14NOMYkHjwCuMISxpeaxzBySVtHOPrXFQMr6/ht1fRhBhvu0OIZOax+iCx/Tfc2jhky2FAxFEbzSHcnPoacCe0ihhbaRy9axzeVFU4KzXSOGZZ41AO7W3Q90GYqhqu6is0ps7FFfU1vHavwFN/Z28+SnvrUn2NyeTeVFK3Dm5jh7ybhsq1/s2ahbcy7ixkUF8D7kBoHHYJoH2r964qUcRJ8xf7ut2pe+1/+a4q3TisujWLHuNwZ6tM8cLMPe+jWVLfh3tTT75R6sYBDwr1NWBBLuuGlZWGPcfxWMI4ACA1hug2lZWqUrA3qd80rzAOAEgNNFEYBwCkxu3LHq1PsxjH3/7t/3hgHADwmKCJwjgAIDXQRGEcAJAaaKIwDgBIDTRRKRtHk+FWTY7UX+ei/znum3H4/JK9vGy+/Fyd8JfX8nXFp689m5huzVYX2wFWyVDpCQ5H5zdv7uw9Dq3ZtLzs5zJPQo77TCkbx6k2iJ6sesum8piDw+fXzae39vHqH79uel3Dfq4vr6pBxNoBVkZUspyTm4XkWFxrHOJZwqWf9SuyAfuXaaw+9vtLSbJUYRz5zmQX8RNchMahRiJt5JIrKUT662ic/MONzl5bGsfuy1v2+Xv1Y2ccTfiQf2s66PHFGOMgvTmsjZhkqkM3Icn1EtlLBtZsul6DjGN6SSiMQ9TIUG1CjTgihtL6hXy3v47GdCrj+LH9V0YcpQU0xlHx7Q3jAJC0DtFfzsnmcRKjbBdxeGnLnVSJ7mZOlBHJZFL2aS4Uu2DnvM3clsYU9m2jcSK5YWEuOKU3RdJeqfkPnQ8l7bPcqSuMQ6ZjnWIcyn4u1dEIdntVxGEsYynjAFgbnXFcKOek+IA/VSV2JOe5xE69lOlhBvVy8PfWPgrXQZqjFcYRjtXIcDwr8YsScejxRfvJnPKFH3KbvkJUZ4xjUeNYvoh5axyNU3zBOAAGIR2ipypHI1te9cM3DmkbbsRiL9o9p/CXOWprcA7othyL1kSkKbSv657SdAZNVbkfLCgmYm1DGqe3KcaxpHEsfv+VMY7T6XsubqmyFlCGIRPXOKiLAatjlHGcZQAhjKMdVt0s5uEF+oWIY4pxtMe1M1rjjMOukzt1Zt2IS0uqnrZxmJXuaszvqmPU43yszoXeHt9P9RXtKbExkWbh2659f3uz9+LWflG/W6+et31qc3Fo7siKtddHyWc+bYC7EzMOOW31sS+6QVh0Mcbh2cY5nP7ZN29dXOO4OFV17BpV4ziL9fdBU1XdiYnbcGVpD+kU4WpIq5SN4+7f3meAuhiwQmLGIcs5ucvfzvvb/dFbG1cWx7tNhtxVVWTRxXHVLNrXR7sYemzPbujieHcle5SdlFJPLI4Huvu3FwDuwk11w+c4biaMAwBS48YyT44/Y80mVRgHAKQGmqi5jONv/uZ/PDAOAHhMbl/2aH3COAAgKdBEYRwAkBpoojAOAEgNNFEYBwCkBpoojAMAUmOQwipO8W7X5ym/dvPmFl+ZBfGWwjgAIDV0XaziFN9q3MgvD3SdcUTSs4cam71qoDAOAEgNVVdWcRo/8sdSKQ6Xk8akVxjH7Lr7txcA7kIlkVeqHPYHVXFyt5IZdU1eqrCQ05ADhYnZnRa34NTZTV1SiIIdXqUnvbTTx/41y14atvuf66PUr7evstHt6Q2eGAcApIYaUVyu4qSWarIjv/buxQOZzYO8iyaLe1hwSuZmL3oqPfVHHLVfvNaHNn7x835bvn47dq5hTMQVxgEAqaHORA2s4uRIGof27uUDdZs7ja4rhVl8Y8ahhyGhcYhQwhpHfZTGOMpG80IdPDEOAEgNd+m71cUqTvrCh1uF3Hv38oFubhzfC8cv+o3jLbIQg3EAQGqoHnC5ipNaqskv7eS+e+lAXsDi15OKGEd0jeOycXx83ZbGsf36YT1CNQ6mqmK6+7cXAO5CPYI6a9Z106UqTu5WShVyrZBT/4EGLY4rlQrtXVX9xqGWdmonqba9xnFmcVzX3b+9AHAXnl6Dn+NYSBgHAKTGCtQ+OX4nzWUcpvSt4dtP/28i//vXfwEAmJ27Dbhr0SMbx9Kf/e6XPQBwF25f9mh9wjgAICnQRGEcAJAaaKIwDgBIDTRRGMduUxzu/TUGgFuCJipp43jfbzJH+eH+X2kAWJpBeopCTour/S14rUkbR/0VIuIASA1dayzkNEpaRsTy/JSzwzgwDoDUULXKQk6jhHEMUfMVwjgAUqPSWgo5NT82o24XLlWFyJ0WrcyTt6Fe9QnjCNR8hXab7e69fn0o/0aYCMD6WVMhp3Lw96KPwnWQaJmno79KEok4WONw1H6LDsblcQ2AJFhPIafaGpxTdluOxdl4jZ87t+4pTYepqiG6+7cXAO7Cego5TTGO9lB2RgvjGKK7f3sB4C6sqZDTxamqsPi4ZxBmqR3jGKK7f3sB4C40w+U6Cjmdz3ZdO1wcV82ifX20w3VnYmtYHL977mUAWCXXXWo+kNZSyGl62abbF3KKqfxoALBi7jW2zKh1FHJamXHc69AIIfT4wjhCYRwIrVu3L3u0Pp0xDlcYB0II9ejxjUPmA7uNeoyjXvd/CV8jhFA6enzjONfecUvnwDgQQqhHT2EcH/vteoxjSC7NiRn+EUJoSWEcoVTjEI+ovISvHfVPrmEcCD2RnqGc07FYJMt6j57COJpf680G0ohxvPQge15Ito8pIPTIes5yTl6i9aX1FMbxCBFHo4tTVf7lSSx7f1G4CfbFdiILgZv3wE1kE+RCQAhN17OWcwpypC8qjCPUxDUO/fvg5V4WKdO6xJjiS6f+LI3Hy/mPEBqjUVWWFEd4wHJOkSQkc9V48vQUxvEId1UNX+PwjcNLcRZ+wURGNfk9Md84aRt6RQCE0BgNrbL0POWcwh/Ps9Z48vT4xvEgz3Fct8Zh/+Ba8mTnS2AcwY1A2u+tm2iTCSqEpigTF2xrKOdUy1/mmLXGk6fHN47ba+JUlXAD+0e2ryIXD7Wcb4/I8B9mdXZz/iOExms95Zxq+RHHrDWePGEcoSY/x+En28+66UnlgqT+q/iTmu236OitjSuL4wQfCF2hYVWWnqick7rGMWONJ08YRyieHEdo3RpYZemZyjlFViXmqvHkCeMIRZJDhNATiOc4MA6EEBop8+T4jYs6YRyhMA6EEOoRxhEK40Bo3bp92aP16YxxuGJxHCGEeoRxhMI4EEKoRxhHKIwDIYR6hHGEWrYeB0IIPbkwjlDL1uNACD2RnqGQ0/LyPzfGEWqpehzlz2o+gbP7qClJRBC6o56zkNOM8rKO1MI4LmvOehxelkLdOCixgdCj6FkLOc0njOM6zVmPw/vm9WQwk8I4EFpSKyzkNF/NpnZwc2bAMI7LmnONY4BxUGIDoRtrfYWcZqzZRMRxnearx6Ebh0ylXr2kxAZCt1XzH249hZxmrdmEcVynOetx+N8Ye/3SxJ3K4jjBB0I30XoKOc1aswnjuE48AIjQyrW6Qk4z1mzCOK4TSQ4RWrdWWMhpvppNVZJ2FsfHC+NACD2BlnmOY4gwjlAYB0LoKXSrJ8d9YRyhMA6EEOrRHY3jz5oc47iUJaZ8f8odSO4EZjuleMY4EFq7bl/2aH0639E4fvqp5a9/rfCMo9axWPD21NI7nFtlMQ6EELqkOxtH4xeGwcZhggX5Xnv3WlEoQYr7/Kdsbm+JEI0YB0II9ehJjaOREy90LfLpGfOuF1gY7xDP42EcCCE0SOszjkI8LandVu0EI0QcCCE0Vs9lHI4vDDcO1xe8/qEtYRwIoVp+5qmpiaufoSzUsbicrT0N44jef+Xtodka40AI1ZK5o64qoPGcZaG8hO2h7mwcI27HlSatV7AwM1KyyIVY5oj299oxDoRQLT33+XXbP1NZqCDXuqc7Gscvv/zS3+H6X8E0YRwIrVt+CimZVdC54lTLY4gNvcvT1ZSFupTM5I7GcVFXfysmCuNAaN3yvCJewTm2JnFVtabnKQsV/ugJ4wiFcSC0brk50Hvmv83I6w7W11Vr6vToZaFq9S9zYByhMA6E1q12ZD1a34gsQAQ1O8WF+uhqTVrnRywLVYuIY6wwDoRWrnrErKf5vXoZXgXncHE7Xu55RWWhWOO4QhgHQmuXM13ktYk33IihnTgSY67TeUVloR74riqMAyGEHkVP8hwHxoEQQo8j8+T4xeJQGEcojAMhhHqEcYTCOBBat25f9mh9OmMcrjAOhBDqEcYRCuNACKEeYRyhMA6E1q3/D36MKHc=)
&]
[s5;* &]
[s5; [* Complete abbreviation] (default [*@(0.0.255) Alt`+.]) is able
to assist with writing basic blocks by expanding abbreviations
into templates:&]
[s5; &]
[s0;=
@@image:1384&1015
(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)
&]
[s5; &]
[s5; after activating [* Complete abbreviation], expands to&]
[s5; &]
[s0;=
@@image:1478&868
(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)
&]
[s5; &]
[s5; Abbreviations can be defined in [* Setup/Abbreviations..]&]
[s5;* &]
[s0;=
@@image:2268&1834
(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)
&]
[s3;:4: 4. Code navigation&]
[s5; [* Context go to] (default [*@(0.0.255) Alt`+J]) navigates to the
place where current symbol (function, method, type, variable)
is defined. It can also be used to go to header file (when used
on #include line) or matching #if/#else/#endif. Note that this
is perhaps the most often used Assist`+`+ tool...&]
[s5; [* Go to definition/declaration] (default [*@(0.0.255) Alt`+I])
function goes to another place where code or data currently at
cursor position are defined/declared. In most cases, this means
going between declaration and definition.&]
[s5; While jumping around the various places in code, it is often
useful to go to the code you`'ve seen previously. You can do
this easily by pressing [*@(0.0.255) Alt`+Left arrow] and also
go forward through the history of jumps with [*@(0.0.255) Alt`+Right
arrow].&]
[s3;:5: 5. Navigator&]
[s5; On the left side from code editor resides [* Navigator bar]. It
allows you to browse and search the code base by the name of
symbol. The bar can be hidden or brought back using (default
[*@(0.0.255) Ctrl`+N]).&]
[s5; When the search field is empty, Navigator is a list of symbols
in the current file:&]
[s5; &]
[s0;=
@@image:2350&1546
(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)
&]
[s5; &]
[s5; You can write a [/ symbol] name into Symbol/line field, or [/ scope].[/ symbol].
Navigator will sort entries based on relevance: complete case
sensitive matches are first in the list, then entries that start
with search field case`-sensitive, then entries that contain
the text, case insensitive.&]
[s5; If you do not want to have Navigator displayed on screen all
the time, you can also use Navigator window using (default [*@(0.0.255) Ctrl`+J]):&]
[s5; &]
[s0;=
@@image:2456&1906
(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)
&]
[s0; &]
[s3;:6: 6. Graphical symbols used by Assist`+`+&]
[s5; There is quite regular system in graphical symbols used by Assist`+`+.
Circles indicate code, boxes data, triangles types. Cyan color
is used for global data/code, yellow color for instance data/code,
gray color for class data/code.&]
[ {{594:9406<417;>992; [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/9/kAIGvAC7eiCJFY2qp496UuJrkAAAoktRyw==)
]
:: [s0; Global variable.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/9/kAIGvACreiCBFY2qp496kuJrkAAAIdpRyw==)
]
:: [s0; Instance variable.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/9/kAIGvACr+gM4wKh6+qgnKb4GCQAAq8JiSw==)
]
:: [s0; Class variable.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohVCWRAEF5dKCqREQ4tJKnHqRiHFlqrp7V/EVqIDn90XUSoHAwAAKiybLA=)
]
:: [s0; Global function.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohUCaQhCL8uZJXICJcWktTjUoxLC63V09q/cC3Ehz+aLmJUDgYAACJHbLA=)
]
:: [s0; Instance method.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohUCaQhCL8uZJUNqLrwqG/AILGqRzYcyAGpxGsF3HBMhEc98eaT6n4ywuc/ieGPposYlYMBAAAU809W)
]
:: [s0; Constructor.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohUCaQhCL8uZJXICJcWiHq4FcgMPIajAVxWYDobTYRC80l1Pxnh85/E8EfTRYzKwQAACLNC2g==)
]
:: [s0; Destructor.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohUeQAG8OtCVokMcGkhST0uxbi00Fo9rf0L10J8+KPpIkblYAAAFt98ag==)
]
:: [s0; Class method.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+f3oABBohUCaQhCL8uZJVwdODAAVxaMNWDFEPFiVYMcxl+9SiKCalHV4zXSUQqhqjHohi3+v9IIY4cAbgUo+siQuVgAADJjm5+)
]
:: [s0; Friend function.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+fCoCBgYFUxURqQVZGUAumAjxacElhFcdvNZosMV4jSQtJTiLJyyQFKUlRRkaSGBAAAGFmtWc=)
]
:: [s0; Enumerated constant.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/9/AAADAwOJihmI10KSeohiCCJGC0nqkRUTo4Uk9ZiK8WshST0uxbi0MBAC+ANqAAEAoCJ6og==)
]
:: [s0; struct, class or union.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/+fHoABDEhST5IuZGXE6MJUgF8XLilcuvA7AKvtFJpPvPuJDx+Swp+k+B08AADoK6N5)
]
:: [s0; typedef.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHic+/8fChiQACYXEwDFD4ABXD0yF00lBMAVYOVimowHUKieJPeM+he/f9FsYSAu/QwSAAAhk/DA)
]
:: [s0; Macro.]
:: [s0;
@@image:100&100
(AxAAEAAAAPD/AAAAAHictZJBCgAgCAR7ej/fDqKipmjQ4slmUCrAZ+1FFU4SElylpaSErRQmSppiWUXg+9ygjPgajspvfrr/A4/h/Rul976qtP+PtxpkJwecjxAf)
]
:: [s0; Green border indicates template.]}}&]
[s0;3%- &]
[s3;:7: 7. Definition/Declaration conversion&]
[s5; [* Copy as definition/declaration] operation (default [*@(0.0.255) Alt`+C])
is capable of converting between method declaration and definition.
To use it, select desired methods:&]
[s5; &]
[s0;=
@@image:1983&925
(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)
&]
[s5; &]
[s5; and invoke operation (default [*@(0.0.255) Alt`+C]). Assist performs
conversion and stores the result to the clipboard. Move to file/position
where you want your method definitions and paste:&]
[s5; &]
[s0;=
@@image:2100&1470
(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)
&]
[s5; &]
[s5; In similar way you can perform inverse conversion (from .cpp
definition to header declaration).&]
[s5; In addition, it is possible to use this function to `"extract`"
functions from THISBACKs:&]
[s5; &]
[s0;=
@@image:1525&306
(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)
&]
[s5; &]
[s5; gets converted to&]
[s5; &]
[s0;=
@@image:671&159
(A9cAMwAAAAAAAAAAAHic7ZtLcpwwEIZZ5kiJDqTzcJIsdYRk4xuw8txhytkRJPTo1gOw8dBQ/F+pykYSGsb6poWY9tvj39u+0jlGAL7KTgMhIdgPJATiQEIgDiQE4kBCIA4kBOJAQiDOfgl//vg1lb8ff1BQvlY+diP9MQKXBxICcSAhEAcSAnFWHftd4xIS6m5UfaPNjNOGfipmaQCju0BzIDF6pfohHAz2SPJq9rFJwsfDl/d3Wy4i4QpmVUKHm1+jyYwfQq/00rVNnw/eXlRciU0Szu7FcqSEw6g6H7XsHzlEMH9oJyvUqJEEhlCp8/F07LxNwmG2IVo4HdvAqFyQ1MYHyzT/rrmjlfMZ88HcfR7K12ud9fcNhNKuqUde2QyG9DVPytkldEymxT+wFSz4polmRudS2RouYVqgg9urEoaIZC2MV6BmMez02p9D6DQ1pMmeWsMpA41rJKrGkUYvURJlMRJWw557vYppkPCbMEw8PwFFKEtNczuXkNpbPb32umm2068x5oQq79iQi0PDZ0vCav24LOFQCYRjNTxehGtI6IKhX46jSK+XkOxMyLoICb+bq0hondHWK3rj87nl2C3BcZrmm8mV3TG/y/JitCTMdqzk9LTUugV4m4ThKCz67MK2L8dhNV56o9JskvAcj2h07S4ubUyKqBjryaOMtM3p+6KVknYH88zmQdFa4Oqm5rT14HuKJAodrWdnden2kt+6mWLDwt711o2JG+bsAXJVwufzudxB+h3ckq2PaFq7lXOxKuEq0u/gptzqYTUkBK8GEgJxICEQBxICcSAhEAcSAnFWHTvPw+rPsjufcMzSWU71xO1Wj2junU/IngHzb+VEQT7hjfIJ2dymr3pZzjXzMgVPpWh0qtfTr/ny76nr48RW5BMeHAnl8gkbkdAYmsUae9CcQDv3ZQIDr6ehdXDJiMv9q1dFKpFP+Eqk8gl53gI3ppaowPrzaynriwxqckprnHgiUrnukk+4JeYUWYSs12J9nirWvISsGyS8UT7hWJeQ3n3RBP1s50JObdW3VtBW/6WrQj7hIRyaT+gHr+8/yEKqtE7/x8TX1+p/P+XLa7VpoX88C/mEIhKCBPIJIeEJuNXDakgIXg0kBOJAQiAOJATiQEIgDiQE4kBCIA4kBOJAQiAOJATiQEIgDiQE4vwHF7IzRw==)
&]
[s5; &]
[s3;:8: 8. Virtual functions&]
[s5; This assist operation (default [*@(0.0.255) Alt`+V]) invokes the
overview of virtual methods defined in current class bases (defined
by actual position, to make this operation work, place cursor
inside class declaration):&]
[s5; &]
[s0;=
@@image:2271&1656
(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)
&]
[s5; &]
[s5; You can select one or more virtual methods to override in the
current class. After pushing the `"OK`" button, declaration of
virtual methods are inserted at current position. Definitions
of virtual methods are placed on clipboard so that they can be
inserted to the source file (.cpp) later.&]
[s3;:9: 9. THISBACKs&]
[s5; THISBACKs tools provides assistance with binding Callbacks of
current class and its members (usually but not limited to some
GUI dialog and its widgets) to methods:&]
[s5; &]
[s0;=
@@image:2271&1659
(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)
&]
[s5; &]
[s5; Check the `"Insert`" column for Callbacks you want to process
by method, alternatively adjust the name of method. After clicking
`"OK`" button, TheIDE will insert THISBACK assignments to the
actual position and places methods definitions and declarations
to the clipboard (you have to reselect declaration and move it
to the class).&]
[s3;:10: 10. Layout code generation&]
[s5; There is a tool [* Generate code] (default [*@(0.0.255) Alt`+C])
in layout designer that can be used to generate code snippets
from layouts:&]
[s5; &]
[s0;=
@@image:1903&1281
(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)
&]
[s5;= &]
[s5; &]
[s5; It invokes this dialog that provides some common code generators
based on the layout:&]
[s5; &]
[s0;=%-
@@image:2471&1878
(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)
&]
[s0;=%- &]
[s0;=
@@image:2471&1878
(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)
&]
[s5;* &]
[s5; [* Go to class using this layout ](default [*@(0.0.255) Alt`+J])
finds usage of current layout in the code:&]
[s5; &]
[s0;=
@@image:1903&1281
(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)
&]
[s0; ]]
| 1,245.751534
| 48,871
| 0.959492
|
UltimateScript
|
ba72f34a97aa3b29f0b9bf199c01d1041d16a9b1
| 249,840
|
cpp
|
C++
|
source/keyboard_mouse.cpp
|
cpascal/LuaAutoHotkey
|
5acf40c2014093754106281ba7617060f686ffee
|
[
"BSD-3-Clause"
] | null | null | null |
source/keyboard_mouse.cpp
|
cpascal/LuaAutoHotkey
|
5acf40c2014093754106281ba7617060f686ffee
|
[
"BSD-3-Clause"
] | null | null | null |
source/keyboard_mouse.cpp
|
cpascal/LuaAutoHotkey
|
5acf40c2014093754106281ba7617060f686ffee
|
[
"BSD-3-Clause"
] | null | null | null |
/*
AutoHotkey
Copyright 2003-2009 Chris Mallett (support@autohotkey.com)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
#include "stdafx.h" // pre-compiled headers
#include "keyboard_mouse.h"
#include "globaldata.h" // for g->KeyDelay
#include "application.h" // for MsgSleep()
#include "util.h" // for strlicmp()
#include "window.h" // for IsWindowHung()
// Added for v1.0.25. Search on sPrevEventType for more comments:
static KeyEventTypes sPrevEventType;
static vk_type sPrevVK = 0;
// For v1.0.25, the below is static to track it in between sends, so that the below will continue
// to work:
// Send {LWinDown}
// Send {LWinUp} ; Should still open the Start Menu even though it's a separate Send.
static vk_type sPrevEventModifierDown = 0;
static modLR_type sModifiersLR_persistent = 0; // Tracks this script's own lifetime/persistent modifiers (the ones it caused to be persistent and thus is responsible for tracking).
// v1.0.44.03: Below supports multiple keyboard layouts better by having script adapt to active window's layout.
#define MAX_CACHED_LAYOUTS 10 // Hard to imagine anyone using more languages/layouts than this, but even if they do it will still work; performance would just be a little worse due to being uncached.
static CachedLayoutType sCachedLayout[MAX_CACHED_LAYOUTS] = {{0}};
static HKL sTargetKeybdLayout; // Set by SendKeys() for use by the functions it calls directly and indirectly.
static ResultType sTargetLayoutHasAltGr; //
// v1.0.43: Support for SendInput() and journal-playback hook:
#define MAX_INITIAL_EVENTS_SI 500UL // sizeof(INPUT) == 28 as of 2006. Since Send is called so often, and since most Sends are short, reducing the load on the stack is also a deciding factor for these.
#define MAX_INITIAL_EVENTS_PB 1500UL // sizeof(PlaybackEvent) == 8, so more events are justified before resorting to malloc().
static LPINPUT sEventSI; // No init necessary. An array that's allocated/deallocated by SendKeys().
static PlaybackEvent *&sEventPB = (PlaybackEvent *&)sEventSI;
static UINT sEventCount, sMaxEvents; // Number of items in the above arrays and the current array capacity.
static UINT sCurrentEvent;
static modLR_type sEventModifiersLR; // Tracks the modifier state to following the progress/building of the SendInput array.
static POINT sSendInputCursorPos; // Tracks/predicts cursor position as SendInput array is built.
static HookType sHooksToRemoveDuringSendInput;
static SendModes sSendMode = SM_EVENT; // Whether a SendInput or Hook array is currently being constructed.
static bool sAbortArraySend; // No init needed.
static bool sFirstCallForThisEvent; //
static bool sInBlindMode; //
static DWORD sThisEventTime; //
// Dynamically resolve SendInput() because otherwise the app won't launch at all on Windows 95/NT-pre-SP3:
typedef UINT (WINAPI *MySendInputType)(UINT, LPINPUT, int);
static MySendInputType sMySendInput = (MySendInputType)GetProcAddress(GetModuleHandle(_T("user32")), "SendInput");
// Above will be NULL for Win95/NT-pre-SP3.
void DisguiseWinAltIfNeeded(vk_type aVK)
// For v1.0.25, the following situation is fixed by the code below: If LWin or LAlt
// becomes a persistent modifier (e.g. via Send {LWin down}) and the user physically
// releases LWin immediately before: 1) the {LWin up} is scheduled; and 2) SendKey()
// returns. Then SendKey() will push the modifier back down so that it is in effect
// for other things done by its caller (SendKeys) and also so that if the Send
// operation ends, the key will still be down as the user intended (to modify future
// keystrokes, physical or simulated). However, since that down-event is followed
// immediately by an up-event, the Start Menu appears for WIN-key or the active
// window's menu bar is activated for ALT-key. SOLUTION: Disguise Win-up and Alt-up
// events in these cases. This workaround has been successfully tested. It's also
// limited is scope so that a script can still explicitly invoke the Start Menu with
// "Send {LWin}", or activate the menu bar with "Send {Alt}".
// The check of sPrevEventModifierDown allows "Send {LWinDown}{LWinUp}" etc., to
// continue to work.
// v1.0.40: For maximum flexibility and minimum interference while in blind mode,
// don't disguise Win and Alt keystrokes then.
{
// Caller has ensured that aVK is about to have a key-up event, so if the event immediately
// prior to this one is a key-down of the same type of modifier key, it's our job here
// to send the disguising keystrokes now (if appropriate).
if (sPrevEventType == KEYDOWN && sPrevEventModifierDown != aVK && !sInBlindMode
// SendPlay mode can't display Start Menu, so no need for disguise keystrokes (such keystrokes might cause
// unwanted effects in certain games):
&& ((aVK == VK_LWIN || aVK == VK_RWIN) && (sPrevVK == VK_LWIN || sPrevVK == VK_RWIN) && sSendMode != SM_PLAY
|| (aVK == VK_LMENU || (aVK == VK_RMENU && sTargetLayoutHasAltGr != CONDITION_TRUE)) && (sPrevVK == VK_LMENU || sPrevVK == VK_RMENU)))
KeyEvent(KEYDOWNANDUP, g_MenuMaskKey); // Disguise it to suppress Start Menu or prevent activation of active window's menu bar.
}
// moved from SendKeys
void SendUnicodeChar(wchar_t aChar, int aModifiers = -1)
{
// Set modifier keystate for consistent results. If not specified by caller, default to releasing
// Alt/Ctrl/Shift since these are known to interfere in some cases, and because SendAsc() does it
// (except for LAlt). Leave LWin/RWin as they are, for consistency with SendAsc().
if (aModifiers == -1)
{
aModifiers = sSendMode ? sEventModifiersLR : GetModifierLRState();
aModifiers &= ~(MOD_LALT | MOD_RALT | MOD_LCONTROL | MOD_RCONTROL | MOD_LSHIFT | MOD_RSHIFT);
}
SetModifierLRState((modLR_type)aModifiers, sSendMode ? sEventModifiersLR : GetModifierLRState(), NULL, false, true, KEY_IGNORE);
if (sSendMode == SM_INPUT)
{
// Calling SendInput() now would cause characters to appear out of sequence.
// Instead, put them into the array and allow them to be sent in sequence.
PutKeybdEventIntoArray(0, 0, aChar, KEYEVENTF_UNICODE, KEY_IGNORE_LEVEL(g->SendLevel));
PutKeybdEventIntoArray(0, 0, aChar, KEYEVENTF_UNICODE | KEYEVENTF_KEYUP, KEY_IGNORE_LEVEL(g->SendLevel));
return;
}
//else caller has ensured sSendMode is SM_EVENT. In that mode, events are sent one at a time,
// so it is safe to immediately call SendInput(). SM_PLAY is not supported; for simplicity,
// SendASC() is called instead of this function. Although this means Unicode chars probably
// won't work, it seems better than sending chars out of order. One possible alternative could
// be to "flush" the event array, but since SendInput and SendEvent are probably much more common,
// this is left for a future version.
INPUT u_input[2];
u_input[0].type = INPUT_KEYBOARD;
u_input[0].ki.wVk = 0;
u_input[0].ki.wScan = aChar;
u_input[0].ki.dwFlags = KEYEVENTF_UNICODE;
u_input[0].ki.time = 0;
// L25: Set dwExtraInfo to ensure AutoHotkey ignores the event; otherwise it may trigger a SCxxx hotkey (where xxx is u_code).
u_input[0].ki.dwExtraInfo = KEY_IGNORE_LEVEL(g->SendLevel);
u_input[1].type = INPUT_KEYBOARD;
u_input[1].ki.wVk = 0;
u_input[1].ki.wScan = aChar;
u_input[1].ki.dwFlags = KEYEVENTF_UNICODE | KEYEVENTF_KEYUP;
u_input[1].ki.time = 0;
u_input[1].ki.dwExtraInfo = KEY_IGNORE_LEVEL(g->SendLevel);
SendInput(2, u_input, sizeof(INPUT));
}
void SendKeys(LPTSTR aKeys, bool aSendRaw, SendModes aSendModeOrig, HWND aTargetWindow)
// The aKeys string must be modifiable (not constant), since for performance reasons,
// it's allowed to be temporarily altered by this function. mThisHotkeyModifiersLR, if non-zero,
// should be the set of modifiers used to trigger the hotkey that called the subroutine
// containing the Send that got us here. If any of those modifiers are still down,
// they will be released prior to sending the batch of keys specified in <aKeys>.
// v1.0.43: aSendModeOrig was added.
{
if (!*aKeys)
return;
global_struct &g = *::g; // Reduces code size and may improve performance.
// For performance and also to reserve future flexibility, recognize {Blind} only when it's the first item
// in the string.
if (sInBlindMode = !aSendRaw && !_tcsnicmp(aKeys, _T("{Blind}"), 7)) // Don't allow {Blind} while in raw mode due to slight chance {Blind} is intended to be sent as a literal string.
// Blind Mode (since this seems too obscure to document, it's mentioned here): Blind Mode relies
// on modifiers already down for something like ^c because ^c is saying "manifest a ^c", which will
// happen if ctrl is already down. By contrast, Blind does not release shift to produce lowercase
// letters because avoiding that adds flexibility that couldn't be achieved otherwise.
// Thus, ^c::Send {Blind}c produces the same result when ^c is substituted for the final c.
// But Send {Blind}{LControl down} will generate the extra events even if ctrl already down.
aKeys += 7; // Remove "{Blind}" from further consideration.
int orig_key_delay = g.KeyDelay;
int orig_press_duration = g.PressDuration;
if (aSendModeOrig == SM_INPUT || aSendModeOrig == SM_INPUT_FALLBACK_TO_PLAY) // Caller has ensured aTargetWindow==NULL for SendInput and SendPlay modes.
{
// Both of these modes fall back to a different mode depending on whether some other script
// is running with a keyboard/mouse hook active. Of course, the detection of this isn't foolproof
// because older versions of AHK may be running and/or other apps with LL keyboard hooks. It's
// just designed to add a lot of value for typical usage because SendInput is preferred due to it
// being considerably faster than SendPlay, especially for long replacements when the CPU is under
// heavy load.
if ( !sMySendInput // Win95/NT-pre-SP3 don't support SendInput, so fall back to the specified mode.
|| SystemHasAnotherKeybdHook() // This function has been benchmarked to ensure it doesn't yield our timeslice, etc. 200 calls take 0ms according to tick-count, even when CPU is maxed.
|| !aSendRaw && SystemHasAnotherMouseHook() && tcscasestr(aKeys, _T("{Click")) ) // Ordered for short-circuit boolean performance. v1.0.43.09: Fixed to be strcasestr vs. !strcasestr
{
// Need to detect in advance what type of array to build (for performance and code size). That's why
// it done this way, and here are the comments about it:
// strcasestr() above has an unwanted amount of overhead if aKeys is huge, but it seems acceptable
// because it's called only when system has another mouse hook but *not* another keybd hook (very rare).
// Also, for performance reasons, {LButton and such are not checked for, which is documented and seems
// justified because the new {Click} method is expected to become prevalent, especially since this
// whole section only applies when the new SendInput mode is in effect.
// Finally, checking aSendRaw isn't foolproof because the string might contain {Raw} prior to {Click,
// but the complexity and performance of checking for that seems unjustified given the rarity,
// especially since there are almost never any consequences to reverting to hook mode vs. SendInput.
if (aSendModeOrig == SM_INPUT_FALLBACK_TO_PLAY)
aSendModeOrig = SM_PLAY;
else // aSendModeOrig == SM_INPUT, so fall back to EVENT.
{
aSendModeOrig = SM_EVENT;
// v1.0.43.08: When SendInput reverts to SendEvent mode, the majority of users would want
// a fast sending rate that is more comparable to SendInput's speed that the default KeyDelay
// of 10ms. PressDuration may be generally superior to KeyDelay because it does a delay after
// each changing of modifier state (which tends to improve reliability for certain apps).
// The following rules seem likely to be the best benefit in terms of speed and reliability:
// KeyDelay 0+,-1+ --> -1, 0
// KeyDelay -1, 0+ --> -1, 0
// KeyDelay -1,-1 --> -1, -1
g.PressDuration = (g.KeyDelay < 0 && g.PressDuration < 0) ? -1 : 0;
g.KeyDelay = -1; // Above line must be done before this one.
}
}
else // SendInput is available and no other impacting hooks are obviously present on the system, so use SendInput unconditionally.
aSendModeOrig = SM_INPUT; // Resolve early so that other sections don't have to consider SM_INPUT_FALLBACK_TO_PLAY a valid value.
}
// Might be better to do this prior to changing capslock state. UPDATE: In v1.0.44.03, the following section
// has been moved to the top of the function because:
// 1) For ControlSend, GetModifierLRState() might be more accurate if the threads are attached beforehand.
// 2) Determines sTargetKeybdLayout and sTargetLayoutHasAltGr early (for maintainability).
bool threads_are_attached = false; // Set default.
DWORD keybd_layout_thread = 0; //
DWORD target_thread; // Doesn't need init.
if (aTargetWindow) // Caller has ensured this is NULL for SendInput and SendPlay modes.
{
if ((target_thread = GetWindowThreadProcessId(aTargetWindow, NULL)) // Assign.
&& target_thread != g_MainThreadID && !IsWindowHung(aTargetWindow))
{
threads_are_attached = AttachThreadInput(g_MainThreadID, target_thread, TRUE) != 0;
keybd_layout_thread = target_thread; // Testing shows that ControlSend benefits from the adapt-to-layout technique too.
}
//else no target thread, or it's our thread, or it's hung; so keep keybd_layout_thread at its default.
}
else
{
// v1.0.48.01: On Vista or later, work around the fact that an "L" keystroke (physical or artificial) will
// lock the computer whenever either Windows key is physically pressed down (artificially releasing the
// Windows key isn't enough to solve it because Win+L is apparently detected aggressively like
// Ctrl-Alt-Delete. Unlike the handling of SM_INPUT in another section, this one here goes into
// effect for all Sends because waiting for an "L" keystroke to be sent would be too late since the
// Windows would have already been artificially released by then, so IsKeyDownAsync() wouldn't be
// able to detect when the user physically releases the key.
if ( (g_script.mThisHotkeyModifiersLR & (MOD_LWIN|MOD_RWIN)) // Limit the scope to only those hotkeys that have a Win modifier, since anything outside that scope hasn't been fully analyzed.
&& (GetTickCount() - g_script.mThisHotkeyStartTime) < (DWORD)50 // Ensure g_script.mThisHotkeyModifiersLR is up-to-date enough to be reliable.
&& aSendModeOrig != SM_PLAY // SM_PLAY is reported to be incapable of locking the computer.
&& !sInBlindMode // The philosophy of blind-mode is that the script should have full control, so don't do any waiting during blind mode.
&& g_os.IsWinVistaOrLater() // Only Vista (and presumably later OSes) check the physical state of the Windows key for Win+L.
&& GetCurrentThreadId() == g_MainThreadID // Exclude the hook thread because it isn't allowed to call anything like MsgSleep, nor are any calls from the hook thread within the understood/analyzed scope of this workaround.
)
{
bool wait_for_win_key_release;
if (aSendRaw)
wait_for_win_key_release = StrChrAny(aKeys, _T("Ll")) != NULL;
else
{
// It seems worthwhile to scan for any "L" characters to avoid waiting for the release
// of the Windows key when there are no L's. For performance and code size, the check
// below isn't comprehensive (e.g. it fails to consider things like {L} and #L).
// Although RegExMatch() could be used instead of the below, that would use up one of
// the RegEx cache entries, plus it would probably perform worse. So scan manually.
LPTSTR L_pos, brace_pos;
for (wait_for_win_key_release = false, brace_pos = aKeys; L_pos = StrChrAny(brace_pos, _T("Ll"));)
{
// Encountering a #L seems too rare, and the consequences too mild (or nonexistent), to
// justify the following commented-out section:
//if (L_pos > aKeys && L_pos[-1] == '#') // A simple check; it won't detect things like #+L.
// brace_pos = L_pos + 1;
//else
if (!(brace_pos = StrChrAny(L_pos + 1, _T("{}"))) || *brace_pos == '{') // See comment below.
{
wait_for_win_key_release = true;
break;
}
//else it found a '}' without a preceding '{', which means this "L" is inside braces.
// For simplicity, ignore such L's (probably not a perfect check, but seems worthwhile anyway).
}
}
if (wait_for_win_key_release)
while (IsKeyDownAsync(VK_LWIN) || IsKeyDownAsync(VK_RWIN)) // Even if the keyboard hook is installed, it seems best to use IsKeyDownAsync() vs. g_PhysicalKeyState[] because it's more likely to produce consistent behavior.
SLEEP_WITHOUT_INTERRUPTION(INTERVAL_UNSPECIFIED); // Seems best not to allow other threads to launch, for maintainability and because SendKeys() isn't designed to be interruptible.
}
// v1.0.44.03: The following change is meaningful only to people who use more than one keyboard layout.
// It seems that the vast majority of them would want the Send command (as well as other features like
// Hotstrings and the Input command) to adapt to the keyboard layout of the active window (or target window
// in the case of ControlSend) rather than sticking with the script's own keyboard layout. In addition,
// testing shows that this adapt-to-layout method costs almost nothing in performance, especially since
// the active window, its thread, and its layout are retrieved only once for each Send rather than once
// for each keystroke.
HWND active_window;
if (active_window = GetForegroundWindow())
keybd_layout_thread = GetWindowThreadProcessId(active_window, NULL);
//else no foreground window, so keep keybd_layout_thread at default.
}
sTargetKeybdLayout = GetKeyboardLayout(keybd_layout_thread); // If keybd_layout_thread==0, this will get our thread's own layout, which seems like the best/safest default.
sTargetLayoutHasAltGr = LayoutHasAltGr(sTargetKeybdLayout); // Note that WM_INPUTLANGCHANGEREQUEST is not monitored by MsgSleep for the purpose of caching our thread's keyboard layout. This is because it would be unreliable if another msg pump such as MsgBox is running. Plus it hardly helps perf. at all, and hurts maintainability.
// Below is now called with "true" so that the hook's modifier state will be corrected (if necessary)
// prior to every send.
modLR_type mods_current = GetModifierLRState(true); // Current "logical" modifier state.
// Make a best guess of what the physical state of the keys is prior to starting (there's no way
// to be certain without the keyboard hook). Note: We only want those physical
// keys that are also logically down (it's possible for a key to be down physically
// but not logically such as when R-control, for example, is a suffix hotkey and the
// user is physically holding it down):
modLR_type mods_down_physically_orig, mods_down_physically_and_logically
, mods_down_physically_but_not_logically_orig;
if (g_KeybdHook)
{
// Since hook is installed, use its more reliable tracking to determine which
// modifiers are down.
mods_down_physically_orig = g_modifiersLR_physical;
mods_down_physically_and_logically = g_modifiersLR_physical & g_modifiersLR_logical; // intersect
mods_down_physically_but_not_logically_orig = g_modifiersLR_physical & ~g_modifiersLR_logical;
}
else // Use best-guess instead.
{
// Even if TickCount has wrapped due to system being up more than about 49 days,
// DWORD subtraction still gives the right answer as long as g_script.mThisHotkeyStartTime
// itself isn't more than about 49 days ago:
if ((GetTickCount() - g_script.mThisHotkeyStartTime) < (DWORD)g_HotkeyModifierTimeout) // Elapsed time < timeout-value
mods_down_physically_orig = mods_current & g_script.mThisHotkeyModifiersLR; // Bitwise AND is set intersection.
else
// Since too much time as passed since the user pressed the hotkey, it seems best,
// based on the action that will occur below, to assume that no hotkey modifiers
// are physically down:
mods_down_physically_orig = 0;
mods_down_physically_and_logically = mods_down_physically_orig;
mods_down_physically_but_not_logically_orig = 0; // There's no way of knowing, so assume none.
}
// Any of the external modifiers that are down but NOT due to the hotkey are probably
// logically down rather than physically (perhaps from a prior command such as
// "Send, {CtrlDown}". Since there's no way to be sure without the keyboard hook or some
// driver-level monitoring, it seems best to assume that
// they are logically vs. physically down. This value contains the modifiers that
// we will not attempt to change (e.g. "Send, A" will not release the LWin
// before sending "A" if this value indicates that LWin is down). The below sets
// the value to be all the down-keys in mods_current except any that are physically
// down due to the hotkey itself. UPDATE: To improve the above, we now exclude from
// the set of persistent modifiers any that weren't made persistent by this script.
// Such a policy seems likely to do more good than harm as there have been cases where
// a modifier was detected as persistent just because #HotkeyModifier had timed out
// while the user was still holding down the key, but then when the user released it,
// this logic here would think it's still persistent and push it back down again
// to enforce it as "always-down" during the send operation. Thus, the key would
// basically get stuck down even after the send was over:
sModifiersLR_persistent &= mods_current & ~mods_down_physically_and_logically;
modLR_type persistent_modifiers_for_this_SendKeys, extra_persistent_modifiers_for_blind_mode;
if (sInBlindMode)
{
// The following value is usually zero unless the user is currently holding down
// some modifiers as part of a hotkey. These extra modifiers are the ones that
// this send operation (along with all its calls to SendKey and similar) should
// consider to be down for the duration of the Send (unless they go up via an
// explicit {LWin up}, etc.)
extra_persistent_modifiers_for_blind_mode = mods_current & ~sModifiersLR_persistent;
persistent_modifiers_for_this_SendKeys = mods_current;
}
else
{
extra_persistent_modifiers_for_blind_mode = 0;
persistent_modifiers_for_this_SendKeys = sModifiersLR_persistent;
}
// Above:
// Keep sModifiersLR_persistent and persistent_modifiers_for_this_SendKeys in sync with each other from now on.
// By contrast to persistent_modifiers_for_this_SendKeys, sModifiersLR_persistent is the lifetime modifiers for
// this script that stay in effect between sends. For example, "Send {LAlt down}" leaves the alt key down
// even after the Send ends, by design.
//
// It seems best not to change persistent_modifiers_for_this_SendKeys in response to the user making physical
// modifier changes during the course of the Send. This is because it seems more often desirable that a constant
// state of modifiers be kept in effect for the entire Send rather than having the user's release of a hotkey
// modifier key, which typically occurs at some unpredictable time during the Send, to suddenly alter the nature
// of the Send in mid-stride. Another reason is to make the behavior of Send consistent with that of SendInput.
// The default behavior is to turn the capslock key off prior to sending any keys
// because otherwise lowercase letters would come through as uppercase and vice versa.
ToggleValueType prior_capslock_state;
if (threads_are_attached || !g_os.IsWin9x())
{
// Only under either of the above conditions can the state of Capslock be reliably
// retrieved and changed. Remember that apps like MS Word have an auto-correct feature that
// might make it wrongly seem that the turning off of Capslock below needs a Sleep(0) to take effect.
prior_capslock_state = g.StoreCapslockMode && !sInBlindMode
? ToggleKeyState(VK_CAPITAL, TOGGLED_OFF)
: TOGGLE_INVALID; // In blind mode, don't do store capslock (helps remapping and also adds flexibility).
}
else // OS is Win9x and threads are not attached.
{
// Attempt to turn off capslock, but never attempt to turn it back on because we can't
// reliably detect whether it was on beforehand. Update: This didn't do any good, so
// it's disabled for now:
//CapslockOffWin9x();
prior_capslock_state = TOGGLE_INVALID;
}
// sSendMode must be set only after setting Capslock state above, because the hook method
// is incapable of changing the on/off state of toggleable keys like Capslock.
// However, it can change Capslock state as seen in the window to which playback events are being
// sent; but the behavior seems inconsistent and might vary depending on OS type, so it seems best
// not to rely on it.
sSendMode = aSendModeOrig;
if (sSendMode) // Build an array. We're also responsible for setting sSendMode to SM_EVENT prior to returning.
{
size_t mem_size;
if (sSendMode == SM_INPUT)
{
mem_size = MAX_INITIAL_EVENTS_SI * sizeof(INPUT);
sMaxEvents = MAX_INITIAL_EVENTS_SI;
}
else // Playback type.
{
mem_size = MAX_INITIAL_EVENTS_PB * sizeof(PlaybackEvent);
sMaxEvents = MAX_INITIAL_EVENTS_PB;
}
// _alloca() is used to avoid the overhead of malloc/free (99% of Sends will thus fit in stack memory).
// _alloca() never returns a failure code, it just raises an exception (e.g. stack overflow).
InitEventArray(_alloca(mem_size), sMaxEvents, mods_current);
}
bool blockinput_prev = g_BlockInput;
bool do_selective_blockinput = (g_BlockInputMode == TOGGLE_SEND || g_BlockInputMode == TOGGLE_SENDANDMOUSE)
&& !sSendMode && !aTargetWindow && g_os.IsWinNT4orLater();
if (do_selective_blockinput)
Line::ScriptBlockInput(true); // Turn it on unconditionally even if it was on, since Ctrl-Alt-Del might have disabled it.
vk_type vk;
sc_type sc;
modLR_type key_as_modifiersLR = 0;
modLR_type mods_for_next_key = 0;
// Above: For v1.0.35, it was changed to modLR vs. mod so that AltGr keys such as backslash and '{'
// are supported on layouts such as German when sending to apps such as Putty that are fussy about
// which ALT key is held down to produce the character.
vk_type this_event_modifier_down;
size_t key_text_length, key_name_length;
TCHAR *end_pos, *space_pos, *next_word, old_char, single_char_string[2];
KeyEventTypes event_type;
int repeat_count, click_x, click_y;
bool move_offset, key_down_is_persistent;
DWORD placeholder;
single_char_string[1] = '\0'; // Terminate in advance.
LONG_OPERATION_INIT // Needed even for SendInput/Play.
for (; *aKeys; ++aKeys, sPrevEventModifierDown = this_event_modifier_down)
{
this_event_modifier_down = 0; // Set default for this iteration, overridden selectively below.
if (!sSendMode)
LONG_OPERATION_UPDATE_FOR_SENDKEYS // This does not measurably affect the performance of SendPlay/Event.
if (!aSendRaw && _tcschr(_T("^+!#{}"), *aKeys))
{
switch (*aKeys)
{
case '^':
if (!(persistent_modifiers_for_this_SendKeys & (MOD_LCONTROL|MOD_RCONTROL)))
mods_for_next_key |= MOD_LCONTROL;
// else don't add it, because the value of mods_for_next_key may also used to determine
// which keys to release after the key to which this modifier applies is sent.
// We don't want persistent modifiers to ever be released because that's how
// AutoIt2 behaves and it seems like a reasonable standard.
continue;
case '+':
if (!(persistent_modifiers_for_this_SendKeys & (MOD_LSHIFT|MOD_RSHIFT)))
mods_for_next_key |= MOD_LSHIFT;
continue;
case '!':
if (!(persistent_modifiers_for_this_SendKeys & (MOD_LALT|MOD_RALT)))
mods_for_next_key |= MOD_LALT;
continue;
case '#':
if (!(persistent_modifiers_for_this_SendKeys & (MOD_LWIN|MOD_RWIN)))
mods_for_next_key |= MOD_LWIN;
continue;
case '}': continue; // Important that these be ignored. Be very careful about changing this, see below.
case '{':
{
if ( !(end_pos = _tcschr(aKeys + 1, '}')) ) // Ignore it and due to rarity, don't reset mods_for_next_key.
continue; // This check is relied upon by some things below that assume a '}' is present prior to the terminator.
aKeys = omit_leading_whitespace(aKeys + 1); // v1.0.43: Skip leading whitespace inside the braces to be more flexible.
if ( !(key_text_length = end_pos - aKeys) )
{
if (end_pos[1] == '}')
{
// The literal string "{}}" has been encountered, which is interpreted as a single "}".
++end_pos;
key_text_length = 1;
}
else if (IS_SPACE_OR_TAB(end_pos[1])) // v1.0.48: Support "{} down}", "{} downtemp}" and "{} up}".
{
next_word = omit_leading_whitespace(end_pos + 1);
if ( !_tcsnicmp(next_word, _T("Down"), 4) // "Down" or "DownTemp" (or likely enough).
|| !_tcsnicmp(next_word, _T("Up"), 2) )
{
if ( !(end_pos = _tcschr(next_word, '}')) ) // See comments at similar section above.
continue;
key_text_length = end_pos - aKeys; // This result must be non-zero due to the checks above.
}
else
goto brace_case_end; // The loop's ++aKeys will now skip over the '}', ignoring it.
}
else // Empty braces {} were encountered (or all whitespace, but literal whitespace isn't sent).
goto brace_case_end; // The loop's ++aKeys will now skip over the '}', ignoring it.
}
if (!_tcsnicmp(aKeys, _T("Click"), 5))
{
*end_pos = '\0'; // Temporarily terminate the string here to omit the closing brace from consideration below.
ParseClickOptions(omit_leading_whitespace(aKeys + 5), click_x, click_y, vk
, event_type, repeat_count, move_offset);
*end_pos = '}'; // Undo temp termination.
if (repeat_count < 1) // Allow {Click 100, 100, 0} to do a mouse-move vs. click (but modifiers like ^{Click..} aren't supported in this case.
MouseMove(click_x, click_y, placeholder, g.DefaultMouseSpeed, move_offset);
else // Use SendKey because it supports modifiers (e.g. ^{Click}) SendKey requires repeat_count>=1.
SendKey(vk, 0, mods_for_next_key, persistent_modifiers_for_this_SendKeys
, repeat_count, event_type, 0, aTargetWindow, click_x, click_y, move_offset);
goto brace_case_end; // This {} item completely handled, so move on to next.
}
else if (!_tcsnicmp(aKeys, _T("Raw"), 3)) // This is used by auto-replace hotstrings too.
{
// As documented, there's no way to switch back to non-raw mode afterward since there's no
// correct way to support special (non-literal) strings such as {Raw Off} while in raw mode.
aSendRaw = true;
goto brace_case_end; // This {} item completely handled, so move on to next.
}
// Since above didn't "goto", this item isn't {Click}.
event_type = KEYDOWNANDUP; // Set defaults.
repeat_count = 1; //
key_name_length = key_text_length; //
*end_pos = '\0'; // Temporarily terminate the string here to omit the closing brace from consideration below.
if (space_pos = StrChrAny(aKeys, _T(" \t"))) // Assign. Also, it relies on the fact that {} key names contain no spaces.
{
old_char = *space_pos;
*space_pos = '\0'; // Temporarily terminate here so that TextToVK() can properly resolve a single char.
key_name_length = space_pos - aKeys; // Override the default value set above.
next_word = omit_leading_whitespace(space_pos + 1);
UINT next_word_length = (UINT)(end_pos - next_word);
if (next_word_length > 0)
{
if (!_tcsnicmp(next_word, _T("Down"), 4))
{
event_type = KEYDOWN;
// v1.0.44.05: Added key_down_is_persistent (which is not initialized except here because
// it's only applicable when event_type==KEYDOWN). It avoids the following problem:
// When a key is remapped to become a modifier (such as F1::Control), launching one of
// the script's own hotkeys via F1 would lead to bad side-effects if that hotkey uses
// the Send command. This is because the Send command assumes that any modifiers pressed
// down by the script itself (such as Control) are intended to stay down during all
// keystrokes generated by that script. To work around this, something like KeyWait F1
// would otherwise be needed. within any hotkey triggered by the F1 key.
key_down_is_persistent = _tcsnicmp(next_word + 4, _T("Temp"), 4); // "DownTemp" means non-persistent.
}
else if (!_tcsicmp(next_word, _T("Up")))
event_type = KEYUP;
else
repeat_count = ATOI(next_word);
// Above: If negative or zero, that is handled further below.
// There is no complaint for values <1 to support scripts that want to conditionally send
// zero keystrokes, e.g. Send {a %Count%}
}
}
vk = TextToVK(aKeys, &mods_for_next_key, true, false, sTargetKeybdLayout); // false must be passed due to below.
sc = vk ? 0 : TextToSC(aKeys); // If sc is 0, it will be resolved by KeyEvent() later.
if (!vk && !sc && ctoupper(aKeys[0]) == 'V' && ctoupper(aKeys[1]) == 'K')
{
LPTSTR sc_string = StrChrAny(aKeys + 2, _T("Ss")); // Look for the "SC" that demarks the scan code.
if (sc_string && ctoupper(sc_string[1]) == 'C')
sc = (sc_type)_tcstol(sc_string + 2, NULL, 16); // Convert from hex.
// else leave sc set to zero and just get the specified VK. This supports Send {VKnn}.
vk = (vk_type)_tcstol(aKeys + 2, NULL, 16); // Convert from hex.
}
if (space_pos) // undo the temporary termination
*space_pos = old_char;
*end_pos = '}'; // undo the temporary termination
if (repeat_count < 1)
goto brace_case_end; // Gets rid of one level of indentation. Well worth it.
if (vk || sc)
{
if (key_as_modifiersLR = KeyToModifiersLR(vk, sc)) // Assign
{
if (!aTargetWindow)
{
if (event_type == KEYDOWN) // i.e. make {Shift down} have the same effect {ShiftDown}
{
this_event_modifier_down = vk;
if (key_down_is_persistent) // v1.0.44.05.
sModifiersLR_persistent |= key_as_modifiersLR;
persistent_modifiers_for_this_SendKeys |= key_as_modifiersLR; // v1.0.44.06: Added this line to fix the fact that "DownTemp" should keep the key pressed down after the send.
}
else if (event_type == KEYUP) // *not* KEYDOWNANDUP, since that would be an intentional activation of the Start Menu or menu bar.
{
DisguiseWinAltIfNeeded(vk);
sModifiersLR_persistent &= ~key_as_modifiersLR;
// By contrast with KEYDOWN, KEYUP should also remove this modifier
// from extra_persistent_modifiers_for_blind_mode if it happens to be
// in there. For example, if "#i::Send {LWin Up}" is a hotkey,
// LWin should become persistently up in every respect.
extra_persistent_modifiers_for_blind_mode &= ~key_as_modifiersLR;
// Fix for v1.0.43: Also remove LControl if this key happens to be AltGr.
if (vk == VK_RMENU && sTargetLayoutHasAltGr == CONDITION_TRUE) // It is AltGr.
extra_persistent_modifiers_for_blind_mode &= ~MOD_LCONTROL;
// Since key_as_modifiersLR isn't 0, update to reflect any changes made above:
persistent_modifiers_for_this_SendKeys = sModifiersLR_persistent | extra_persistent_modifiers_for_blind_mode;
}
// else must never change sModifiersLR_persistent in response to KEYDOWNANDUP
// because that would break existing scripts. This is because that same
// modifier key may have been pushed down via {ShiftDown} rather than "{Shift Down}".
// In other words, {Shift} should never undo the effects of a prior {ShiftDown}
// or {Shift down}.
}
//else don't add this event to sModifiersLR_persistent because it will not be
// manifest via keybd_event. Instead, it will done via less intrusively
// (less interference with foreground window) via SetKeyboardState() and
// PostMessage(). This change is for ControlSend in v1.0.21 and has been
// documented.
}
// Below: sModifiersLR_persistent stays in effect (pressed down) even if the key
// being sent includes that same modifier. Surprisingly, this is how AutoIt2
// behaves also, which is good. Example: Send, {AltDown}!f ; this will cause
// Alt to still be down after the command is over, even though F is modified
// by Alt.
SendKey(vk, sc, mods_for_next_key, persistent_modifiers_for_this_SendKeys
, repeat_count, event_type, key_as_modifiersLR, aTargetWindow);
}
else if (key_name_length == 1) // No vk/sc means a char of length one is sent via special method.
{
// v1.0.40: SendKeySpecial sends only keybd_event keystrokes, not ControlSend style
// keystrokes.
// v1.0.43.07: Added check of event_type!=KEYUP, which causes something like Send {?up} to
// do nothing if the curr. keyboard layout lacks such a key. This is relied upon by remappings
// such as F1::?(i.e. a destination key that doesn't have a VK, at least in English).
if (event_type != KEYUP) // In this mode, mods_for_next_key and event_type are ignored due to being unsupported.
{
if (aTargetWindow)
// Although MSDN says WM_CHAR uses UTF-16, it seems to really do automatic
// translation between ANSI and UTF-16; we rely on this for correct results:
PostMessage(aTargetWindow, WM_CHAR, aKeys[0], 0);
else
SendKeySpecial(aKeys[0], repeat_count);
}
}
// See comment "else must never change sModifiersLR_persistent" above about why
// !aTargetWindow is used below:
else if (vk = TextToSpecial(aKeys, key_text_length, event_type
, persistent_modifiers_for_this_SendKeys, !aTargetWindow)) // Assign.
{
if (!aTargetWindow)
{
if (event_type == KEYDOWN)
this_event_modifier_down = vk;
else // It must be KEYUP because TextToSpecial() never returns KEYDOWNANDUP.
DisguiseWinAltIfNeeded(vk);
}
// Since we're here, repeat_count > 0.
// v1.0.42.04: A previous call to SendKey() or SendKeySpecial() might have left modifiers
// in the wrong state (e.g. Send +{F1}{ControlDown}). Since modifiers can sometimes affect
// each other, make sure they're in the state intended by the user before beginning:
SetModifierLRState(persistent_modifiers_for_this_SendKeys
, sSendMode ? sEventModifiersLR : GetModifierLRState()
, aTargetWindow, false, false); // It also does DoKeyDelay(g->PressDuration).
for (int i = 0; i < repeat_count; ++i)
{
// Don't tell it to save & restore modifiers because special keys like this one
// should have maximum flexibility (i.e. nothing extra should be done so that the
// user can have more control):
KeyEvent(event_type, vk, 0, aTargetWindow, true);
if (!sSendMode)
LONG_OPERATION_UPDATE_FOR_SENDKEYS
}
}
else if (key_text_length > 4 && !_tcsnicmp(aKeys, _T("ASC "), 4) && !aTargetWindow) // {ASC nnnnn}
{
// Include the trailing space in "ASC " to increase uniqueness (selectivity).
// Also, sending the ASC sequence to window doesn't work, so don't even try:
SendASC(omit_leading_whitespace(aKeys + 3));
// Do this only once at the end of the sequence:
DoKeyDelay(); // It knows not to do the delay for SM_INPUT.
}
else if (key_text_length > 2 && !_tcsnicmp(aKeys, _T("U+"), 2))
{
// L24: Send a unicode value as shown by Character Map.
wchar_t u_code = (wchar_t) _tcstol(aKeys + 2, NULL, 16);
if (aTargetWindow)
{
// Although MSDN says WM_CHAR uses UTF-16, PostMessageA appears to truncate it to 8-bit.
// This probably means it does automatic translation between ANSI and UTF-16. Since we
// specifically want to send a Unicode character value, use PostMessageW:
PostMessageW(aTargetWindow, WM_CHAR, u_code, 0);
}
else
{
// Use SendInput in unicode mode if available, otherwise fall back to SendASC.
// To know why the following requires sSendMode != SM_PLAY, see SendUnicodeChar.
if (sSendMode != SM_PLAY && g_os.IsWin2000orLater())
{
SendUnicodeChar(u_code, mods_for_next_key | persistent_modifiers_for_this_SendKeys);
}
else // Note that this method generally won't work with Unicode characters except
{ // with specific controls which support it, such as RichEdit (tested on WordPad).
TCHAR asc[8];
*asc = '0';
_itot(u_code, asc + 1, 10);
SendASC(asc);
}
}
DoKeyDelay();
}
//else do nothing since it isn't recognized as any of the above "else if" cases (see below).
// If what's between {} is unrecognized, such as {Bogus}, it's safest not to send
// the contents literally since that's almost certainly not what the user intended.
// In addition, reset the modifiers, since they were intended to apply only to
// the key inside {}. Also, the below is done even if repeat-count is zero.
brace_case_end: // This label is used to simplify the code without sacrificing performance.
aKeys = end_pos; // In prep for aKeys++ done by the loop.
mods_for_next_key = 0;
continue;
} // case '{'
} // switch()
} // if (!aSendRaw && strchr("^+!#{}", *aKeys))
else // Encountered a character other than ^+!#{} ... or we're in raw mode.
{
// Best to call this separately, rather than as first arg in SendKey, since it changes the
// value of modifiers and the updated value is *not* guaranteed to be passed.
// In other words, SendKey(TextToVK(...), modifiers, ...) would often send the old
// value for modifiers.
single_char_string[0] = *aKeys; // String was pre-terminated earlier.
if (vk = TextToVK(single_char_string, &mods_for_next_key, true, true, sTargetKeybdLayout))
// TextToVK() takes no measurable time compared to the amount of time SendKey takes.
SendKey(vk, 0, mods_for_next_key, persistent_modifiers_for_this_SendKeys, 1, KEYDOWNANDUP
, 0, aTargetWindow);
else // Try to send it by alternate means.
{
// In this mode, mods_for_next_key is ignored due to being unsupported.
if (aTargetWindow)
// Although MSDN says WM_CHAR uses UTF-16, it seems to really do automatic
// translation between ANSI and UTF-16; we rely on this for correct results:
PostMessage(aTargetWindow, WM_CHAR, *aKeys, 0);
else
SendKeySpecial(*aKeys, 1);
}
mods_for_next_key = 0; // Safest to reset this regardless of whether a key was sent.
}
} // for()
modLR_type mods_to_set;
if (sSendMode)
{
int final_key_delay = -1; // Set default.
if (!sAbortArraySend && sEventCount > 0) // Check for zero events for performance, but more importantly because playback hook will not operate correctly with zero.
{
// Add more events to the array (prior to sending) to support the following:
// Restore the modifiers to match those the user is physically holding down, but do it as *part*
// of the single SendInput/Play call. The reasons it's done here as part of the array are:
// 1) It avoids the need for #HotkeyModifierTimeout (and it's superior to it) for both SendInput
// and SendPlay.
// 2) The hook will not be present during the SendInput, nor can it be reinstalled in time to
// catch any physical events generated by the user during the Send. Consequently, there is no
// known way to reliably detect physical keystate changes.
// 3) Changes made to modifier state by SendPlay are seen only by the active window's thread.
// Thus, it would be inconsistent and possibly incorrect to adjust global modifier state
// after (or during) a SendPlay.
// So rather than resorting to #HotkeyModifierTimeout, we can restore the modifiers within the
// protection of SendInput/Play's uninterruptibility, allowing the user's buffered keystrokes
// (if any) to hit against the correct modifier state when the SendInput/Play completes.
// For example, if #c:: is a hotkey and the user releases Win during the SendInput/Play, that
// release would hit after SendInput/Play restores Win to the down position, and thus Win would
// not be stuck down. Furthermore, if the user didn't release Win, Win would be in the
// correct/intended position.
// This approach has a few weaknesses (but the strengths appear to outweigh them):
// 1) Hitting SendInput's 5000 char limit would omit the tail-end keystrokes, which would mess up
// all the assumptions here. But hitting that limit should be very rare, especially since it's
// documented and thus scripts will avoid it.
// 2) SendInput's assumed uninterruptibility is false if any other app or script has an LL hook
// installed. This too is documented, so scripts should generally avoid using SendInput when
// they know there are other LL hooks in the system. In any case, there's no known solution
// for it, so nothing can be done.
mods_to_set = persistent_modifiers_for_this_SendKeys
| (sInBlindMode ? 0 : (mods_down_physically_orig & ~mods_down_physically_but_not_logically_orig)); // The last item is usually 0.
// Above: When in blind mode, don't restore physical modifiers. This is done to allow a hotkey
// such as the following to release Shift:
// +space::SendInput/Play {Blind}{Shift up}
// Note that SendPlay can make such a change only from the POV of the target window; i.e. it can
// release shift as seen by the target window, but not by any other thread; so the shift key would
// still be considered to be down for the purpose of firing hotkeys (it can't change global key state
// as seen by GetAsyncKeyState).
// For more explanation of above, see a similar section for the non-array/old Send below.
SetModifierLRState(mods_to_set, sEventModifiersLR, NULL, true, true); // Disguise in case user released or pressed Win/Alt during the Send (seems best to do it even for SendPlay, though it probably needs only Alt, not Win).
// mods_to_set is used further below as the set of modifiers that were explicitly put into effect at the tail end of SendInput.
SendEventArray(final_key_delay, mods_to_set);
}
CleanupEventArray(final_key_delay);
}
else // A non-array send is in effect, so a more elaborate adjustment to logical modifiers is called for.
{
// Determine (or use best-guess, if necessary) which modifiers are down physically now as opposed
// to right before the Send began.
modLR_type mods_down_physically; // As compared to mods_down_physically_orig.
if (g_KeybdHook)
mods_down_physically = g_modifiersLR_physical;
else // No hook, so consult g_HotkeyModifierTimeout to make the determination.
// Assume that the same modifiers that were phys+logically down before the Send are still
// physically down (though not necessarily logically, since the Send may have released them),
// but do this only if the timeout period didn't expire (or the user specified that it never
// times out; i.e. elapsed time < timeout-value; DWORD subtraction gives the right answer even if
// tick-count has wrapped around).
mods_down_physically = (g_HotkeyModifierTimeout < 0 // It never times out or...
|| (GetTickCount() - g_script.mThisHotkeyStartTime) < (DWORD)g_HotkeyModifierTimeout) // It didn't time out.
? mods_down_physically_orig : 0;
// Restore the state of the modifiers to be those the user is physically holding down right now.
// Any modifiers that are logically "persistent", as detected upon entrance to this function
// (e.g. due to something such as a prior "Send, {LWinDown}"), are also pushed down if they're not already.
// Don't press back down the modifiers that were used to trigger this hotkey if there's
// any doubt that they're still down, since doing so when they're not physically down
// would cause them to be stuck down, which might cause unwanted behavior when the unsuspecting
// user resumes typing.
// v1.0.42.04: Now that SendKey() is lazy about releasing Ctrl and/or Shift (but not Win/Alt),
// the section below also releases Ctrl/Shift if appropriate. See SendKey() for more details.
mods_to_set = persistent_modifiers_for_this_SendKeys; // Set default.
if (sInBlindMode) // This section is not needed for the array-sending modes because they exploit uninterruptibility to perform a more reliable restoration.
{
// At the end of a blind-mode send, modifiers are restored differently than normal. One
// reason for this is to support the explicit ability for a Send to turn off a hotkey's
// modifiers even if the user is still physically holding them down. For example:
// #space::Send {LWin up} ; Fails to release it, by design and for backward compatibility.
// #space::Send {Blind}{LWin up} ; Succeeds, allowing LWin to be logically up even though it's physically down.
modLR_type mods_changed_physically_during_send = mods_down_physically_orig ^ mods_down_physically;
// Fix for v1.0.42.04: To prevent keys from getting stuck down, compensate for any modifiers
// the user physically pressed or released during the Send (especially those released).
// Remove any modifiers physically released during the send so that they don't get pushed back down:
mods_to_set &= ~(mods_changed_physically_during_send & mods_down_physically_orig); // Remove those that changed from down to up.
// Conversely, add any modifiers newly, physically pressed down during the Send, because in
// most cases the user would want such modifiers to be logically down after the Send.
// Obsolete comment from v1.0.40: For maximum flexibility and minimum interference while
// in blind mode, never restore modifiers to the down position then.
mods_to_set |= mods_changed_physically_during_send & mods_down_physically; // Add those that changed from up to down.
}
else // Regardless of whether the keyboard hook is present, the following formula applies.
mods_to_set |= mods_down_physically & ~mods_down_physically_but_not_logically_orig; // The second item is usually 0.
// Above takes into account the fact that the user may have pressed and/or released some modifiers
// during the Send.
// So it includes all keys that are physically down except those that were down physically but not
// logically at the *start* of the send operation (since the send operation may have changed the
// logical state). In other words, we want to restore the keys to their former logical-down
// position to match the fact that the user is still holding them down physically. The
// previously-down keys we don't do this for are those that were physically but not logically down,
// such as a naked Control key that's used as a suffix without being a prefix. More details:
// mods_down_physically_but_not_logically_orig is used to distinguish between the following two cases,
// allowing modifiers to be properly restored to the down position when the hook is installed:
// 1) A naked modifier key used only as suffix: when the user phys. presses it, it isn't
// logically down because the hook suppressed it.
// 2) A modifier that is a prefix, that triggers a hotkey via a suffix, and that hotkey sends
// that modifier. The modifier will go back up after the SEND, so the key will be physically
// down but not logically.
// Use KEY_IGNORE_ALL_EXCEPT_MODIFIER to tell the hook to adjust g_modifiersLR_logical_non_ignored
// because these keys being put back down match the physical pressing of those same keys by the
// user, and we want such modifiers to be taken into account for the purpose of deciding whether
// other hotkeys should fire (or the same one again if auto-repeating):
// v1.0.42.04: A previous call to SendKey() might have left Shift/Ctrl in the down position
// because by procrastinating, extraneous keystrokes in examples such as "Send ABCD" are
// eliminated (previously, such that example released the shift key after sending each key,
// only to have to press it down again for the next one. For this reason, some modifiers
// might get released here in addition to any that need to get pressed down. That's why
// SetModifierLRState() is called rather than the old method of pushing keys down only,
// never releasing them.
// Put the modifiers in mods_to_set into effect. Although "true" is passed to disguise up-events,
// there generally shouldn't be any up-events for Alt or Win because SendKey() would have already
// released them. One possible exception to this is when the user physically released Alt or Win
// during the send (perhaps only during specific sensitive/vulnerable moments).
SetModifierLRState(mods_to_set, GetModifierLRState(), aTargetWindow, true, true); // It also does DoKeyDelay(g->PressDuration).
} // End of non-array Send.
// For peace of mind and because that's how it was tested originally, the following is done
// only after adjusting the modifier state above (since that adjustment might be able to
// affect the global variables used below in a meaningful way).
if (g_KeybdHook)
{
// Ensure that g_modifiersLR_logical_non_ignored does not contain any down-modifiers
// that aren't down in g_modifiersLR_logical. This is done mostly for peace-of-mind,
// since there might be ways, via combinations of physical user input and the Send
// commands own input (overlap and interference) for one to get out of sync with the
// other. The below uses ^ to find the differences between the two, then uses & to
// find which are down in non_ignored that aren't in logical, then inverts those bits
// in g_modifiersLR_logical_non_ignored, which sets those keys to be in the up position:
g_modifiersLR_logical_non_ignored &= ~((g_modifiersLR_logical ^ g_modifiersLR_logical_non_ignored)
& g_modifiersLR_logical_non_ignored);
}
if (prior_capslock_state == TOGGLED_ON) // The current user setting requires us to turn it back on.
ToggleKeyState(VK_CAPITAL, TOGGLED_ON);
// Might be better to do this after changing capslock state, since having the threads attached
// tends to help with updating the global state of keys (perhaps only under Win9x in this case):
if (threads_are_attached)
AttachThreadInput(g_MainThreadID, target_thread, FALSE);
if (do_selective_blockinput && !blockinput_prev) // Turn it back off only if it was off before we started.
Line::ScriptBlockInput(false);
// v1.0.43.03: Someone reported that when a non-autoreplace hotstring calls us to do its backspacing, the
// hotstring's subroutine can execute a command that activates another window owned by the script before
// the original window finished receiving its backspaces. Although I can't reproduce it, this behavior
// fits with expectations since our thread won't necessarily have a chance to process the incoming
// keystrokes before executing the command that comes after SendInput. If those command(s) activate
// another of this thread's windows, that window will most likely intercept the keystrokes (assuming
// that the message pump dispatches buffered keystrokes to whichever window is active at the time the
// message is processed).
// This fix does not apply to the SendPlay or SendEvent modes, the former due to the fact that it sleeps
// a lot while the playback is running, and the latter due to key-delay and because testing has never shown
// a need for it.
if (aSendModeOrig == SM_INPUT && GetWindowThreadProcessId(GetForegroundWindow(), NULL) == g_MainThreadID) // GetWindowThreadProcessId() tolerates a NULL hwnd.
SLEEP_WITHOUT_INTERRUPTION(-1);
// v1.0.43.08: Restore the original thread key-delay values in case above temporarily overrode them.
g.KeyDelay = orig_key_delay;
g.PressDuration = orig_press_duration;
}
void SendKey(vk_type aVK, sc_type aSC, modLR_type aModifiersLR, modLR_type aModifiersLRPersistent
, int aRepeatCount, KeyEventTypes aEventType, modLR_type aKeyAsModifiersLR, HWND aTargetWindow
, int aX, int aY, bool aMoveOffset)
// Caller has ensured that: 1) vk or sc may be zero, but not both; 2) aRepeatCount > 0.
// This function is responsible for first setting the correct state of the modifier keys
// (as specified by the caller) before sending the key. After sending, it should put the
// modifier keys back to the way they were originally (UPDATE: It does this only for Win/Alt
// for the reasons described near the end of this function).
{
// Caller is now responsible for verifying this:
// Avoid changing modifier states and other things if there is nothing to be sent.
// Otherwise, menu bar might activated due to ALT keystrokes that don't modify any key,
// the Start Menu might appear due to WIN keystrokes that don't modify anything, etc:
//if ((!aVK && !aSC) || aRepeatCount < 1)
// return;
// I thought maybe it might be best not to release unwanted modifier keys that are already down
// (perhaps via something like "Send, {altdown}{esc}{altup}"), but that harms the case where
// modifier keys are down somehow, unintentionally: The send command wouldn't behave as expected.
// e.g. "Send, abc" while the control key is held down by other means, would send ^a^b^c,
// possibly dangerous. So it seems best to default to making sure all modifiers are in the
// proper down/up position prior to sending any Keybd events. UPDATE: This has been changed
// so that only modifiers that were actually used to trigger that hotkey are released during
// the send. Other modifiers that are down may be down intentionally, e.g. due to a previous
// call to Send such as: Send {ShiftDown}.
// UPDATE: It seems best to save the initial state only once, prior to sending the key-group,
// because only at the beginning can the original state be determined without having to
// save and restore it in each loop iteration.
// UPDATE: Not saving and restoring at all anymore, due to interference (side-effects)
// caused by the extra keybd events.
// The combination of aModifiersLR and aModifiersLRPersistent are the modifier keys that
// should be down prior to sending the specified aVK/aSC. aModifiersLR are the modifiers
// for this particular aVK keystroke, but aModifiersLRPersistent are the ones that will stay
// in pressed down even after it's sent.
modLR_type modifiersLR_specified = aModifiersLR | aModifiersLRPersistent;
bool vk_is_mouse = IsMouseVK(aVK); // Caller has ensured that VK is non-zero when it wants a mouse click.
LONG_OPERATION_INIT
for (int i = 0; i < aRepeatCount; ++i)
{
if (!sSendMode)
LONG_OPERATION_UPDATE_FOR_SENDKEYS // This does not measurably affect the performance of SendPlay/Event.
// These modifiers above stay in effect for each of these keypresses.
// Always on the first iteration, and thereafter only if the send won't be essentially
// instantaneous. The modifiers are checked before every key is sent because
// if a high repeat-count was specified, the user may have time to release one or more
// of the modifier keys that were used to trigger a hotkey. That physical release
// will cause a key-up event which will cause the state of the modifiers, as seen
// by the system, to change. For example, if user releases control-key during the operation,
// some of the D's won't be control-D's:
// ^c::Send,^{d 15}
// Also: Seems best to do SetModifierLRState() even if Keydelay < 0:
// Update: If this key is itself a modifier, don't change the state of the other
// modifier keys just for it, since most of the time that is unnecessary and in
// some cases, the extra generated keystrokes would cause complications/side-effects.
if (!aKeyAsModifiersLR)
{
// DISGUISE UP: Pass "true" to disguise UP-events on WIN and ALT due to hotkeys such as:
// !a::Send test
// !a::Send {LButton}
// v1.0.40: It seems okay to tell SetModifierLRState to disguise Win/Alt regardless of
// whether our caller is in blind mode. This is because our caller already put any extra
// blind-mode modifiers into modifiersLR_specified, which prevents any actual need to
// disguise anything (only the release of Win/Alt is ever disguised).
// DISGUISE DOWN: Pass "false" to avoid disguising DOWN-events on Win and Alt because Win/Alt
// will be immediately followed by some key for them to "modify". The exceptions to this are
// when aVK is a mouse button (e.g. sending !{LButton} or #{LButton}). But both of those are
// so rare that the flexibility of doing exactly what the script specifies seems better than
// a possibly unwanted disguising. Also note that hotkeys such as #LButton automatically use
// both hooks so that the Start Menu doesn't appear when the Win key is released, so we're
// not responsible for that type of disguising here.
SetModifierLRState(modifiersLR_specified, sSendMode ? sEventModifiersLR : GetModifierLRState()
, aTargetWindow, false, true, KEY_IGNORE_LEVEL(g->SendLevel)); // See keyboard_mouse.h for explanation of KEY_IGNORE.
// SetModifierLRState() also does DoKeyDelay(g->PressDuration).
}
// v1.0.42.04: Mouse clicks are now handled here in the same loop as keystrokes so that the modifiers
// will be readjusted (above) if the user presses/releases modifier keys during the mouse clicks.
if (vk_is_mouse && !aTargetWindow)
MouseClick(aVK, aX, aY, 1, g->DefaultMouseSpeed, aEventType, aMoveOffset);
// Above: Since it's rare to send more than one click, it seems best to simplify and reduce code size
// by not doing more than one click at a time event when mode is SendInput/Play.
else
// Sending mouse clicks via ControlSend is not supported, so in that case fall back to the
// old method of sending the VK directly (which probably has no effect 99% of the time):
KeyEvent(aEventType, aVK, aSC, aTargetWindow, true, KEY_IGNORE_LEVEL(g->SendLevel));
} // for() [aRepeatCount]
// The final iteration by the above loop does a key or mouse delay (KeyEvent and MouseClick do it internally)
// prior to us changing the modifiers below. This is a good thing because otherwise the modifiers would
// sometimes be released so soon after the keys they modify that the modifiers are not in effect.
// This can be seen sometimes when/ ctrl-shift-tabbing back through a multi-tabbed dialog:
// The last ^+{tab} might otherwise not take effect because the CTRL key would be released too quickly.
// Release any modifiers that were pressed down just for the sake of the above
// event (i.e. leave any persistent modifiers pressed down). The caller should
// already have verified that aModifiersLR does not contain any of the modifiers
// in aModifiersLRPersistent. Also, call GetModifierLRState() again explicitly
// rather than trying to use a saved value from above, in case the above itself
// changed the value of the modifiers (i.e. aVk/aSC is a modifier). Admittedly,
// that would be pretty strange but it seems the most correct thing to do (another
// reason is that the user may have pressed or released modifier keys during the
// final mouse/key delay that was done above).
if (!aKeyAsModifiersLR) // See prior use of this var for explanation.
{
// It seems best not to use KEY_IGNORE_ALL_EXCEPT_MODIFIER in this case, though there's
// a slight chance that a script or two might be broken by not doing so. The chance
// is very slight because the only thing KEY_IGNORE_ALL_EXCEPT_MODIFIER would allow is
// something like the following example. Note that the hotkey below must be a hook
// hotkey (even more rare) because registered hotkeys will still see the logical modifier
// state and thus fire regardless of whether g_modifiersLR_logical_non_ignored says that
// they shouldn't:
// #b::Send, {CtrlDown}{AltDown}
// $^!a::MsgBox You pressed the A key after pressing the B key.
// In the above, making ^!a a hook hotkey prevents it from working in conjunction with #b.
// UPDATE: It seems slightly better to have it be KEY_IGNORE_ALL_EXCEPT_MODIFIER for these reasons:
// 1) Persistent modifiers are fairly rare. When they're in effect, it's usually for a reason
// and probably a pretty good one and from a user who knows what they're doing.
// 2) The condition that g_modifiersLR_logical_non_ignored was added to fix occurs only when
// the user physically presses a suffix key (or auto-repeats one by holding it down)
// during the course of a SendKeys() operation. Since the persistent modifiers were
// (by definition) already in effect prior to the Send, putting them back down for the
// purpose of firing hook hotkeys does not seem unreasonable, and may in fact add value.
// DISGUISE DOWN: When SetModifierLRState() is called below, it should only release keys, not press
// any down (except if the user's physical keystrokes interfered). Therefore, passing true or false
// for the disguise-down-events parameter doesn't matter much (but pass "true" in case the user's
// keystrokes did interfere in a way that requires a Alt or Win to be pressed back down, because
// disguising it seems best).
// DISGUISE UP: When SetModifierLRState() is called below, it is passed "false" for disguise-up
// to avoid generating unnecessary disguise-keystrokes. They are not needed because if our keystrokes
// were modified by either WIN or ALT, the release of the WIN or ALT key will already be disguised due to
// its having modified something while it was down. The exceptions to this are when aVK is a mouse button
// (e.g. sending !{LButton} or #{LButton}). But both of those are so rare that the flexibility of doing
// exactly what the script specifies seems better than a possibly unwanted disguising.
// UPDATE for v1.0.42.04: Only release Win and Alt (if appropriate), not Ctrl and Shift, since we know
// Win/Alt don't have to be disguised but our caller would have trouble tracking that info or making that
// determination. This avoids extra keystrokes, while still procrastinating the release of Ctrl/Shift so
// that those can be left down if the caller's next keystroke happens to need them.
modLR_type state_now = sSendMode ? sEventModifiersLR : GetModifierLRState();
modLR_type win_alt_to_be_released = ((state_now ^ aModifiersLRPersistent) & state_now) // The modifiers to be released...
& (MOD_LWIN|MOD_RWIN|MOD_LALT|MOD_RALT); // ... but restrict them to only Win/Alt.
if (win_alt_to_be_released)
SetModifierLRState(state_now & ~win_alt_to_be_released
, state_now, aTargetWindow, true, false); // It also does DoKeyDelay(g->PressDuration).
}
}
void SendKeySpecial(TCHAR aChar, int aRepeatCount)
// Caller must be aware that keystrokes are sent directly (i.e. never to a target window via ControlSend mode).
// It must also be aware that the event type KEYDOWNANDUP is always what's used since there's no way
// to support anything else. Furthermore, there's no way to support "modifiersLR_for_next_key" such as ^
// (assuming is a character for which SendKeySpecial() is required in the current layout).
// This function uses some of the same code as SendKey() above, so maintain them together.
{
// Caller must verify that aRepeatCount > 1.
// Avoid changing modifier states and other things if there is nothing to be sent.
// Otherwise, menu bar might activated due to ALT keystrokes that don't modify any key,
// the Start Menu might appear due to WIN keystrokes that don't modify anything, etc:
//if (aRepeatCount < 1)
// return;
// v1.0.40: This function was heavily simplified because the old method of simulating
// characters via dead keys apparently never executed under any keyboard layout. It never
// got past the following on the layouts I tested (Russian, German, Danish, Spanish):
// if (!send1 && !send2) // Can't simulate aChar.
// return;
// This might be partially explained by the fact that the following old code always exceeded
// the bounds of the array (because aChar was always between 0 and 127), so it was never valid
// in the first place:
// asc_int = cAnsiToAscii[(int)((aChar - 128) & 0xff)] & 0xff;
// Producing ANSI characters via Alt+Numpad and a leading zero appears standard on most languages
// and layouts (at least those whose active code page is 1252/Latin 1 US/Western Europe). However,
// Russian (code page 1251 Cyrillic) is apparently one exception as shown by the fact that sending
// all of the characters above Chr(127) while under Russian layout produces Cyrillic characters
// if the active window's focused control is an Edit control (even if its an ANSI app).
// I don't know the difference between how such characters are actually displayed as opposed to how
// they're stored in memory (in notepad at least, there appears to be some kind of on-the-fly
// translation to Unicode as shown when you try to save such a file). But for now it doesn't matter
// because for backward compatibility, it seems best not to change it until some alternative is
// discovered that's high enough in value to justify breaking existing scripts that run under Russian
// and other non-code-page-1252 layouts.
//
// Production of ANSI characters above 127 has been tested on both Windows XP and 98se (but not the
// Win98 command prompt).
TCHAR asc_string[16], *cp = asc_string;
// The following range isn't checked because this function appears never to be called for such
// characters (tested in English and Russian so far), probably because VkKeyScan() finds a way to
// manifest them via Control+VK combinations:
//if (aChar > -1 && aChar < 32)
// return;
if (aChar & ~127) // Try using ANSI.
*cp++ = '0'; // ANSI mode is achieved via leading zero in the Alt+Numpad keystrokes.
//else use Alt+Numpad without the leading zero, which allows the characters a-z, A-Z, and quite
// a few others to be produced in Russian and perhaps other layouts, which was impossible in versions
// prior to 1.0.40.
_itot((TBYTE)aChar, cp, 10); // Convert to UCHAR in case aChar < 0.
LONG_OPERATION_INIT
for (int i = 0; i < aRepeatCount; ++i)
{
if (!sSendMode)
LONG_OPERATION_UPDATE_FOR_SENDKEYS
#ifdef UNICODE
if (sSendMode != SM_PLAY) // See SendUnicodeChar for comments.
SendUnicodeChar(aChar);
else
#endif
SendASC(asc_string);
DoKeyDelay(); // It knows not to do the delay for SM_INPUT.
}
// It is not necessary to do SetModifierLRState() to put a caller-specified set of persistent modifier
// keys back into effect because:
// 1) Our call to SendASC above (if any) at most would have released some of the modifiers (though never
// WIN because it isn't necessary); but never pushed any new modifiers down (it even releases ALT
// prior to returning).
// 2) Our callers, if they need to push ALT back down because we didn't do it, will either disguise it
// or avoid doing so because they're about to send a keystroke (just about anything) that ALT will
// modify and thus not need to be disguised.
}
void SendASC(LPCTSTR aAscii)
// Caller must be aware that keystrokes are sent directly (i.e. never to a target window via ControlSend mode).
// aAscii is a string to support explicit leading zeros because sending 216, for example, is not the same as
// sending 0216. The caller is also responsible for restoring any desired modifier keys to the down position
// (this function needs to release some of them if they're down).
{
// UPDATE: In v1.0.42.04, the left Alt key is always used below because:
// 1) It might be required on Win95/NT (though testing shows that RALT works okay on Windows 98se).
// 2) It improves maintainability because if the keyboard layout has AltGr, and the Control portion
// of AltGr is released without releasing the RAlt portion, anything that expects LControl to
// be down whenever RControl is down would be broken.
// The following test demonstrates that on previous versions under German layout, the right-Alt key
// portion of AltGr could be used to manifest Alt+Numpad combinations:
// Send {RAlt down}{Asc 67}{RAlt up} ; Should create a C character even when both the active window an AHK are set to German layout.
// KeyHistory ; Shows that the right-Alt key was successfully used rather than the left.
// Changing the modifier state via SetModifierLRState() (rather than some more error-prone multi-step method)
// also ensures that the ALT key is pressed down only after releasing any shift key that needed it above.
// Otherwise, the OS's switch-keyboard-layout hotkey would be triggered accidentally; e.g. the following
// in English layout: Send ~~讐{^}.
//
// Make sure modifier state is correct: ALT pressed down and other modifiers UP
// because CTRL and SHIFT seem to interfere with this technique if they are down,
// at least under WinXP (though the Windows key doesn't seem to be a problem).
// Specify KEY_IGNORE so that this action does not affect the modifiers that the
// hook uses to determine which hotkey should be triggered for a suffix key that
// has more than one set of triggering modifiers (for when the user is holding down
// that suffix to auto-repeat it -- see keyboard_mouse.h for details).
modLR_type modifiersLR_now = sSendMode ? sEventModifiersLR : GetModifierLRState();
SetModifierLRState((modifiersLR_now | MOD_LALT) & ~(MOD_RALT | MOD_LCONTROL | MOD_RCONTROL | MOD_LSHIFT | MOD_RSHIFT)
, modifiersLR_now, NULL, false // Pass false because there's no need to disguise the down-event of LALT.
, true, KEY_IGNORE); // Pass true so that any release of RALT is disguised (Win is never released here).
// Note: It seems best never to press back down any key released above because the
// act of doing so may do more harm than good (i.e. the keystrokes may caused
// unexpected side-effects.
// Known limitation (but obscure): There appears to be some OS limitation that prevents the following
// AltGr hotkey from working more than once in a row:
// <^>!i::Send {ASC 97}
// Key history indicates it's doing what it should, but it doesn't actually work. You have to press the
// left-Alt key (not RAlt) once to get the hotkey working again.
// This is not correct because it is possible to generate unicode characters by typing
// Alt+256 and beyond:
// int value = ATOI(aAscii);
// if (value < 0 || value > 255) return 0; // Sanity check.
// Known issue: If the hotkey that triggers this Send command is CONTROL-ALT
// (and maybe either CTRL or ALT separately, as well), the {ASC nnnn} method
// might not work reliably due to strangeness with that OS feature, at least on
// WinXP. I already tried adding delays between the keystrokes and it didn't help.
// Caller relies upon us to stop upon reaching the first non-digit character:
for (LPCTSTR cp = aAscii; *cp >= '0' && *cp <= '9'; ++cp)
// A comment from AutoIt3: ASCII 0 is 48, NUMPAD0 is 96, add on 48 to the ASCII.
// Also, don't do WinDelay after each keypress in this case because it would make
// such keys take up to 3 or 4 times as long to send (AutoIt3 avoids doing the
// delay also). Note that strings longer than 4 digits are allowed because
// some or all OSes support Unicode characters 0 through 65535.
KeyEvent(KEYDOWNANDUP, *cp + 48);
// Must release the key regardless of whether it was already down, so that the sequence will take effect
// immediately. Otherwise, our caller might not release the Alt key (since it might need to stay down for
// other purposes), in which case Alt+Numpad character would never appear and the caller's subsequent
// keystrokes might get absorbed by the OS's special state of "waiting for Alt+Numpad sequence to complete".
// Another reason is that the user may be physically holding down Alt, in which case the caller might never
// release it. In that case, we want the Alt+Numpad character to appear immediately rather than waiting for
// the user to release Alt (in the meantime, the caller will likely press Alt back down to match the physical
// state).
KeyEvent(KEYUP, VK_MENU);
}
LRESULT CALLBACK PlaybackProc(int aCode, WPARAM wParam, LPARAM lParam)
// Journal playback hook.
{
static bool sThisEventHasBeenLogged, sThisEventIsScreenCoord;
switch (aCode)
{
case HC_GETNEXT:
{
if (sFirstCallForThisEvent)
{
// Gather the delay(s) for this event, if any, and calculate the time the keystroke should be sent.
// NOTE: It must be done this way because testing shows that simply returning the desired delay
// for the first call of each event is not reliable, at least not for the first few events (they
// tend to get sent much more quickly than specified). More details:
// MSDN says, "When the system ...calls the hook procedure [after the first time] with code set to
// HC_GETNEXT to retrieve the same message... the return value... should be zero."
// Apparently the above is overly cautious wording with the intent to warn people not to write code
// that gets stuck in infinite playback due to never returning 0, because returning non-zero on
// calls after the first works fine as long as 0 is eventually returned. Furthermore, I've seen
// other professional code examples that uses this "countdown" approach, so it seems valid.
sFirstCallForThisEvent = false;
sThisEventHasBeenLogged = false;
sThisEventIsScreenCoord = false;
for (sThisEventTime = GetTickCount()
; !sEventPB[sCurrentEvent].message // HC_SKIP has ensured there is a non-delay event, so no need to check sCurrentEvent < sEventCount.
; sThisEventTime += sEventPB[sCurrentEvent++].time_to_wait); // Overflow is okay.
}
// Above has ensured that sThisEventTime is valid regardless of whether this is the first call
// for this event. It has also incremented sCurrentEvent, if needed, for use below.
// Copy the current mouse/keyboard event to the EVENTMSG structure (lParam).
// MSDN says that HC_GETNEXT can be received multiple times consecutively, in which case the
// same event should be copied into the structure each time.
PlaybackEvent &source_event = sEventPB[sCurrentEvent];
EVENTMSG &event = *(PEVENTMSG)lParam; // For convenience, maintainability, and possibly performance.
// Currently, the following isn't documented entirely accurately at MSDN, but other sources confirm
// the below are the proper values to store. In addition, the extended flag as set below has been
// confirmed to work properly by monitoring the resulting WM_KEYDOWN message in a main message loop.
//
// Strip off extra bits early for maintainability. It must be stripped off the source event itself
// because if HC_GETNEXT is called again for this same event, don't want to apply the offset again.
bool has_coord_offset;
if (has_coord_offset = source_event.message & MSG_OFFSET_MOUSE_MOVE)
source_event.message &= ~MSG_OFFSET_MOUSE_MOVE;
event.message = source_event.message;
// The following members are not set because testing confirms that they're ignored:
// event.hwnd: ignored even if assigned the HWND of an existing window or control.
// event.time: Apparently ignored in favor of this playback proc's return value. Furthermore,
// testing shows that the posted keystroke message (e.g. WM_KEYDOWN) has the correct timestamp
// even when event.time is left as a random time, which shows that the member is completely
// ignored during playback, at least on XP.
bool is_keyboard_not_mouse;
if (is_keyboard_not_mouse = (source_event.message >= WM_KEYFIRST && source_event.message <= WM_KEYLAST)) // Keyboard event.
{
event.paramL = (source_event.sc << 8) | source_event.vk;
event.paramH = source_event.sc & 0xFF; // 0xFF omits the extended-key-bit, if present.
if (source_event.sc & 0x100) // It's an extended key.
event.paramH |= 0x8000; // So mark it that way using EVENTMSG's convention.
// Notes about inability of playback to simulate LWin and RWin in a way that performs their native function:
// For the following reasons, it seems best not to send LWin/RWin via keybd_event inside the playback hook:
// 1) Complexities such as having to check for an array that consists entirely of LWin/RWin events,
// in which case the playback hook mustn't be activated because it requires that we send
// at least one event through it. Another complexity is that all keys modified by Win would
// have to be flagged in the array as needing to be sent via keybd_event.
// 2) It might preserve some flexibility to be able to send LWin/RWin events directly to a window,
// similar to ControlSend (perhaps for shells other than Explorer, who might allow apps to make
// use of LWin/RWin internally). The window should receive LWIN/RWIN as WM_KEYDOWN messages when
// sent via playback. Note: unlike the neutral SHIFT/ALT/CTRL keys, which are detectible via the
// target thread's call to GetKeyState(), LWin and RWin aren't detectible that way.
// 3) Code size and complexity.
//
// Related: LWin and RWin are released and pressed down during playback for simplicity and also
// on the off-chance the target window takes note of the incoming WM_KEYDOWN on VK_LWIN/RWIN and
// changes state until the up-event is received (however, the target thread's call of GetKeyState
// can't see a any effect for hook-sent LWin/RWin).
//
// Related: If LWin or RWin is logically down at start of SendPlay, SendPlay's events won't be
// able to release it from the POV of the target thread's calls to GetKeyState(). That might mess
// things up for apps that check the logical state of the Win keys. But due to rarity: in those
// cases, a workaround would be to do an explicit old-style Send {Blind} (as the first line of the
// hotkey) to release the modifier logically prior to SendPlay commands.
//
// Related: Although some apps might not like receiving SendPlay's LWin/RWin if shell==Explorer
// (since there may be no normal way for such keystrokes to arrive as WM_KEYDOWN events) maybe it's
// best not to omit/ignore LWin/RWin if it is possible in other shells, or adds flexibility.
// After all, sending {LWin/RWin} via hook should be rare, especially if it has no effect (except
// for cases where a Win hotkey releases LWin as part of SendPlay, but even that can be worked
// around via an explicit Send {Blind}{LWin up} beforehand).
}
else // MOUSE EVENT.
{
// Unlike keybd_event() and SendInput(), explicit coordinates must be specified for each mouse event.
// The builder of this array must ensure that coordinates are valid or set to COORD_UNSPECIFIED_SHORT.
if (source_event.x == COORD_UNSPECIFIED_SHORT || has_coord_offset)
{
// For simplicity with calls such as CoordToScreen(), the one who set up this array has ensured
// that both X and Y are either COORD_UNSPECIFIED_SHORT or not so (i.e. not a combination).
// Since the user nor anything else can move the cursor during our playback, GetCursorPos()
// should accurately reflect the position set by any previous mouse-move done by this playback.
// This seems likely to be true even for DirectInput games, though hasn't been tested yet.
POINT cursor;
GetCursorPos(&cursor);
event.paramL = cursor.x;
event.paramH = cursor.y;
if (has_coord_offset) // The specified coordinates are offsets to be applied to the cursor's current position.
{
event.paramL += source_event.x;
event.paramH += source_event.y;
// Update source array in case HC_GETNEXT is called again for this same event, in which case
// don't want to apply the offset again (the has-offset flag has already been removed from the
// source event higher above).
source_event.x = event.paramL;
source_event.y = event.paramH;
sThisEventIsScreenCoord = true; // Mark the above as absolute vs. relative in case HC_GETNEXT is called again for this event.
}
}
else
{
event.paramL = source_event.x;
event.paramH = source_event.y;
if (!sThisEventIsScreenCoord) // Coordinates are relative to the window that is active now (during realtime playback).
CoordToScreen((int &)event.paramL, (int &)event.paramH, COORD_MODE_MOUSE); // Playback uses screen coords.
}
}
LRESULT time_until_event = (int)(sThisEventTime - GetTickCount()); // Cast to int to avoid loss of negatives from DWORD subtraction.
if (time_until_event > 0)
return time_until_event;
// Otherwise, the event is scheduled to occur immediately (or is overdue). In case HC_GETNEXT can be
// called multiple times even when we previously returned 0, ensure the event is logged only once.
if (!sThisEventHasBeenLogged && is_keyboard_not_mouse) // Mouse events aren't currently logged for consistency with other send methods.
{
// The event is logged here rather than higher above so that its timestamp is accurate.
// It's also so that events aren't logged if the user cancel's the operation in the middle
// (by pressing Ctrl-Alt-Del or Ctrl-Esc).
UpdateKeyEventHistory(source_event.message == WM_KEYUP || source_event.message == WM_SYSKEYUP
, source_event.vk, source_event.sc);
sThisEventHasBeenLogged = true;
}
return 0; // No CallNextHookEx(). See comments further below.
} // case HC_GETNEXT.
case HC_SKIP: // Advance to the next mouse/keyboard event, if any.
// Advance to the next item, which is either a delay or an event (preps for next HC_GETNEXT).
++sCurrentEvent;
// Although caller knows it has to do the tail-end delay (if any) since there's no way to
// do a trailing delay at the end of playback, it may have put a delay at the end of the
// array anyway for code simplicity. For that reason and maintainability:
// Skip over any delays that are present to discover if there is a next event.
UINT u;
for (u = sCurrentEvent; u < sEventCount && !sEventPB[u].message; ++u);
if (u == sEventCount) // No more events.
{
// MSDN implies in the following statement that it's acceptable (and perhaps preferable in
// the case of a playback hook) for the hook to unhook itself: "The hook procedure can be in the
// state of being called by another thread even after UnhookWindowsHookEx returns."
UnhookWindowsHookEx(g_PlaybackHook);
g_PlaybackHook = NULL; // Signal the installer of the hook that it's gone now.
// The following is an obsolete method from pre-v1.0.44. Do not reinstate it without adding handling
// to MainWindowProc() to do "g_PlaybackHook = NULL" upon receipt of WM_CANCELJOURNAL.
// PostMessage(g_hWnd, WM_CANCELJOURNAL, 0, 0); // v1.0.44: Post it to g_hWnd vs. NULL because it's a little safer (SEE COMMENTS in MsgSleep's WM_CANCELJOURNAL for why it's almost completely safe with NULL).
// Above: By using WM_CANCELJOURNAL instead of a custom message, the creator of this hook can easily
// use a message filter to watch for both a system-generated removal of the hook (via the user
// pressing Ctrl-Esc. or Ctrl-Alt-Del) or one we generate here (though it's currently not implemented
// that way because it would prevent journal playback to one of our thread's own windows).
}
else
sFirstCallForThisEvent = true; // Reset to prepare for next HC_GETNEXT.
return 0; // MSDN: The return value is used only if the hook code is HC_GETNEXT; otherwise, it is ignored.
default:
// Covers the following cases:
//case HC_NOREMOVE: // MSDN: An application has called the PeekMessage function with wRemoveMsg set to PM_NOREMOVE, indicating that the message is not removed from the message queue after PeekMessage processing.
//case HC_SYSMODALON: // MSDN: A system-modal dialog box is being displayed. Until the dialog box is destroyed, the hook procedure must stop playing back messages.
//case HC_SYSMODALOFF: // MSDN: A system-modal dialog box has been destroyed. The hook procedure must resume playing back the messages.
//case(...aCode < 0...): MSDN docs specify that the hook should return in this case.
//
// MS gives some sample code at http://support.microsoft.com/default.aspx?scid=KB;EN-US;124835
// about the proper values to return to avoid hangs on NT (it seems likely that this implementation
// is compliant enough if you read between the lines). Their sample code indicates that
// "return CallNextHook()" should be done for basically everything except HC_SKIP/HC_GETNEXT, so
// as of 1.0.43.08, that is what is done here.
// Testing shows that when a so-called system modal dialog is displayed (even if it isn't the
// active window) playback stops automatically, probably because the system doesn't call the hook
// during such times (only a "MsgBox 4096" has been tested so far).
//
// The first parameter uses g_PlaybackHook rather than NULL because MSDN says it's merely
// "currently ignored", but in the older "Win32 hooks" article, it says that the behavior
// may change in the future.
return CallNextHookEx(g_PlaybackHook, aCode, wParam, lParam);
// Except for the cases above, CallNextHookEx() is not called for performance and also because from
// what I can tell from the MSDN docs and other examples, it is neither required nor desirable to do so
// during playback's SKIP/GETNEXT.
// MSDN: The return value is used only if the hook code is HC_GETNEXT; otherwise, it is ignored.
} // switch().
// Execution should never reach since all cases do their own custom return above.
}
#ifdef JOURNAL_RECORD_MODE
LRESULT CALLBACK RecordProc(int aCode, WPARAM wParam, LPARAM lParam)
{
switch (aCode)
{
case HC_ACTION:
{
EVENTMSG &event = *(PEVENTMSG)lParam;
PlaybackEvent &dest_event = sEventPB[sEventCount];
dest_event.message = event.message;
if (event.message >= WM_MOUSEFIRST && event.message <= WM_MOUSELAST) // Mouse event, including wheel.
{
if (event.message != WM_MOUSEMOVE)
{
// WHEEL: No info comes in about which direction the wheel was turned (nor by how many notches).
// In addition, it appears impossible to specify such info when playing back the event.
// Therefore, playback usually produces downward wheel movement (but upward in some apps like
// Visual Studio).
dest_event.x = event.paramL;
dest_event.y = event.paramH;
++sEventCount;
}
}
else // Keyboard event.
{
dest_event.vk = event.paramL & 0x00FF;
dest_event.sc = (event.paramL & 0xFF00) >> 8;
if (event.paramH & 0x8000) // Extended key.
dest_event.sc |= 0x100;
if (dest_event.vk == VK_CANCEL) // Ctrl+Break.
{
UnhookWindowsHookEx(g_PlaybackHook);
g_PlaybackHook = NULL; // Signal the installer of the hook that it's gone now.
// Obsolete method, pre-v1.0.44:
//PostMessage(g_hWnd, WM_CANCELJOURNAL, 0, 0); // v1.0.44: Post it to g_hWnd vs. NULL so that it isn't lost when script is displaying a MsgBox or other dialog.
}
++sEventCount;
}
break;
}
//case HC_SYSMODALON: // A system-modal dialog box is being displayed. Until the dialog box is destroyed, the hook procedure must stop playing back messages.
//case HC_SYSMODALOFF: // A system-modal dialog box has been destroyed. The hook procedure must resume playing back the messages.
// break;
}
// Unlike the playback hook, it seems more correct to call CallNextHookEx() unconditionally so that
// any other journal record hooks can also record the event. But MSDN is quite vague about this.
return CallNextHookEx(g_PlaybackHook, aCode, wParam, lParam);
// Return value is ignored, except possibly when aCode < 0 (MSDN is unclear).
}
#endif
void KeyEvent(KeyEventTypes aEventType, vk_type aVK, sc_type aSC, HWND aTargetWindow
, bool aDoKeyDelay, DWORD aExtraInfo)
// aSC or aVK (but not both), can be zero to cause the default to be used.
// For keys like NumpadEnter -- that have a unique scancode but a non-unique virtual key --
// caller can just specify the sc. In addition, the scan code should be specified for keys
// like NumpadPgUp and PgUp. In that example, the caller would send the same scan code for
// both except that PgUp would be extended. sc_to_vk() would map both of them to the same
// virtual key, which is fine since it's the scan code that matters to apps that can
// differentiate between keys with the same vk.
//
// Thread-safe: This function is not fully thread-safe because keystrokes can get interleaved,
// but that's always a risk with anything short of SendInput. In fact,
// when the hook ISN'T installed, keystrokes can occur in another thread, causing the key state to
// change in the middle of KeyEvent, which is the same effect as not having thread-safe key-states
// such as GetKeyboardState in here. Also, the odds of both our threads being in here simultaneously
// is greatly reduced by the fact that the hook thread never passes "true" for aDoKeyDelay, thus
// its calls should always be very fast. Even if a collision does occur, there are thread-safety
// things done in here that should reduce the impact to nearly as low as having a dedicated
// KeyEvent function solely for calling by the hook thread (which might have other problems of its own).
{
if (!(aVK | aSC)) // MUST USE BITWISE-OR (see comment below).
return;
// The above implements the rule "if neither VK nor SC was specified, return". But they must be done as
// bitwise-OR rather than logical-AND/OR, otherwise MSVC++ 7.1 generates 16KB of extra OBJ size for some reason.
// That results in an 2 KB increase in compressed EXE size, and I think about 6 KB uncompressed.
// I tried all kids of variations and reconfigurations, but the above is the only simple one that works.
// Strangely, the same logic above (but with the preferred logical-AND/OR operator) appears elsewhere in the
// code but doesn't bloat there. Examples:
// !aVK && !aSC
// !vk && !sc
// !(aVK || aSC)
if (!aExtraInfo) // Shouldn't be called this way because 0 is considered false in some places below (search on " = aExtraInfo" to find them).
aExtraInfo = KEY_IGNORE_ALL_EXCEPT_MODIFIER; // Seems slightly better to use a standard default rather than something arbitrary like 1.
// Since calls from the hook thread could come in even while the SendInput array is being constructed,
// don't let those events get interspersed with the script's explicit use of SendInput.
bool caller_is_keybd_hook = (GetCurrentThreadId() == g_HookThreadID);
bool put_event_into_array = sSendMode && !caller_is_keybd_hook;
if (sSendMode == SM_INPUT || caller_is_keybd_hook) // First check is necessary but second is just for maintainability.
aDoKeyDelay = false;
// Even if the sc_to_vk() mapping results in a zero-value vk, don't return.
// I think it may be valid to send keybd_events that have a zero vk.
// In any case, it's unlikely to hurt anything:
if (!aVK)
aVK = sc_to_vk(aSC);
else
if (!aSC)
// In spite of what the MSDN docs say, the scan code parameter *is* used, as evidenced by
// the fact that the hook receives the proper scan code as sent by the below, rather than
// zero like it normally would. Even though the hook would try to use MapVirtualKey() to
// convert zero-value scan codes, it's much better to send it here also for full compatibility
// with any apps that may rely on scan code (and such would be the case if the hook isn't
// active because the user doesn't need it; also for some games maybe). In addition, if the
// current OS is Win9x, we must map it here manually (above) because otherwise the hook
// wouldn't be able to differentiate left/right on keys such as RControl, which is detected
// via its scan code.
aSC = vk_to_sc(aVK);
BYTE aSC_lobyte = LOBYTE(aSC);
DWORD event_flags = HIBYTE(aSC) ? KEYEVENTF_EXTENDEDKEY : 0;
// Do this only after the above, so that the SC is left/right specific if the VK was such,
// even on Win9x (though it's probably never called that way for Win9x; it's probably always
// called with either just the proper left/right SC or that plus the neutral VK).
// Under WinNT/2k/XP, sending VK_LCONTROL and such result in the high-level (but not low-level
// I think) hook receiving VK_CONTROL. So somewhere internally it's being translated (probably
// by keybd_event itself). In light of this, translate the keys here manually to ensure full
// support under Win9x (which might not support this internal translation). The scan code
// looked up above should still be correct for left-right centric keys even under Win9x.
// v1.0.43: Apparently, the journal playback hook also requires neutral modifier keystrokes
// rather than left/right ones. Otherwise, the Shift key can't capitalize letters, etc.
if (sSendMode == SM_PLAY || g_os.IsWin9x())
{
// Convert any non-neutral VK's to neutral for these OSes, since apps and the OS itself
// can't be expected to support left/right specific VKs while running under Win9x:
switch(aVK)
{
case VK_LCONTROL:
case VK_RCONTROL: aVK = VK_CONTROL; break; // But leave scan code set to a left/right specific value rather than converting it to "left" unconditionally.
case VK_LSHIFT:
case VK_RSHIFT: aVK = VK_SHIFT; break;
case VK_LMENU:
case VK_RMENU: aVK = VK_MENU; break;
}
}
// aTargetWindow is almost always passed in as NULL by our caller, even if the overall command
// being executed is ControlSend. This is because of the following reasons:
// 1) Modifiers need to be logically changed via keybd_event() when using ControlSend against
// a cmd-prompt, console, or possibly other types of windows.
// 2) If a hotkey triggered the ControlSend that got us here and that hotkey is a naked modifier
// such as RAlt:: or modified modifier such as ^#LShift, that modifier would otherwise auto-repeat
// an possibly interfere with the send operation. This auto-repeat occurs because unlike a normal
// send, there are no calls to keybd_event() (keybd_event() stop the auto-repeat as a side-effect).
// One exception to this is something like "ControlSend, Edit1, {Control down}", which explicitly
// calls us with a target window. This exception is by design and has been bug-fixed and documented
// in ControlSend for v1.0.21:
if (aTargetWindow) // This block shouldn't affect overall thread-safety because hook thread never calls it in this mode.
{
if (KeyToModifiersLR(aVK, aSC))
{
// When sending modifier keystrokes directly to a window, use the AutoIt3 SetKeyboardState()
// technique to improve the reliability of changes to modifier states. If this is not done,
// sometimes the state of the SHIFT key (and perhaps other modifiers) will get out-of-sync
// with what's intended, resulting in uppercase vs. lowercase problems (and that's probably
// just the tip of the iceberg). For this to be helpful, our caller must have ensured that
// our thread is attached to aTargetWindow's (but it seems harmless to do the below even if
// that wasn't done for any reason). Doing this here in this function rather than at a
// higher level probably isn't best in terms of performance (e.g. in the case where more
// than one modifier is being changed, the multiple calls to Get/SetKeyboardState() could
// be consolidated into one call), but it is much easier to code and maintain this way
// since many different functions might call us to change the modifier state:
BYTE state[256];
GetKeyboardState((PBYTE)&state);
if (aEventType == KEYDOWN)
state[aVK] |= 0x80;
else if (aEventType == KEYUP)
state[aVK] &= ~0x80;
// else KEYDOWNANDUP, in which case it seems best (for now) not to change the state at all.
// It's rarely if ever called that way anyway.
// If aVK is a left/right specific key, be sure to also update the state of the neutral key:
switch(aVK)
{
case VK_LCONTROL:
case VK_RCONTROL:
if ((state[VK_LCONTROL] & 0x80) || (state[VK_RCONTROL] & 0x80))
state[VK_CONTROL] |= 0x80;
else
state[VK_CONTROL] &= ~0x80;
break;
case VK_LSHIFT:
case VK_RSHIFT:
if ((state[VK_LSHIFT] & 0x80) || (state[VK_RSHIFT] & 0x80))
state[VK_SHIFT] |= 0x80;
else
state[VK_SHIFT] &= ~0x80;
break;
case VK_LMENU:
case VK_RMENU:
if ((state[VK_LMENU] & 0x80) || (state[VK_RMENU] & 0x80))
state[VK_MENU] |= 0x80;
else
state[VK_MENU] &= ~0x80;
break;
}
SetKeyboardState((PBYTE)&state);
// Even after doing the above, we still continue on to send the keystrokes
// themselves to the window, for greater reliability (same as AutoIt3).
}
// lowest 16 bits: repeat count: always 1 for up events, probably 1 for down in our case.
// highest order bits: 11000000 (0xC0) for keyup, usually 00000000 (0x00) for keydown.
LPARAM lParam = (LPARAM)(aSC << 16);
if (aEventType != KEYUP) // i.e. always do it for KEYDOWNANDUP
PostMessage(aTargetWindow, WM_KEYDOWN, aVK, lParam | 0x00000001);
// The press-duration delay is done only when this is a down-and-up because otherwise,
// the normal g->KeyDelay will be in effect. In other words, it seems undesirable in
// most cases to do both delays for only "one half" of a keystroke:
if (aDoKeyDelay && aEventType == KEYDOWNANDUP)
DoKeyDelay(g->PressDuration); // Since aTargetWindow!=NULL, sSendMode!=SM_PLAY, so no need for to ever use the SendPlay press-duration.
if (aEventType != KEYDOWN) // i.e. always do it for KEYDOWNANDUP
PostMessage(aTargetWindow, WM_KEYUP, aVK, lParam | 0xC0000001);
}
else // Keystrokes are to be sent with keybd_event() or the event array rather than PostMessage().
{
// The following static variables are intentionally NOT thread-safe because their whole purpose
// is to watch the combined stream of keystrokes from all our threads. Due to our threads'
// keystrokes getting interleaved with the user's and those of other threads, this kind of
// monitoring is never 100% reliable. All we can do is aim for an astronomically low chance
// of failure.
// Users of the below want them updated only for keybd_event() keystrokes (not PostMessage ones):
sPrevEventType = aEventType;
sPrevVK = aVK;
// Turn off BlockInput momentarily to support sending of the ALT key. This is not done for
// Win9x because input cannot be simulated during BlockInput on that platform anyway; thus
// it seems best (due to backward compatibility) not to turn off BlockInput then.
// Jon Bennett noted: "As many of you are aware BlockInput was "broken" by a SP1 hotfix under
// Windows XP so that the ALT key could not be sent. I just tried it under XP SP2 and it seems
// to work again." In light of this, it seems best to unconditionally and momentarily disable
// input blocking regardless of which OS is being used (except Win9x, since no simulated input
// is even possible for those OSes).
// For thread safety, allow block-input modification only by the main thread. This should avoid
// any chance that block-input will get stuck on due to two threads simultaneously reading+changing
// g_BlockInput (changes occur via calls to ScriptBlockInput).
bool we_turned_blockinput_off = g_BlockInput && (aVK == VK_MENU || aVK == VK_LMENU || aVK == VK_RMENU)
&& !caller_is_keybd_hook && g_os.IsWinNT4orLater(); // Ordered for short-circuit performance.
if (we_turned_blockinput_off)
Line::ScriptBlockInput(false);
vk_type control_vk; // When not set somewhere below, these are left uninitialized to help catch bugs.
HKL target_keybd_layout; //
ResultType r_mem, &target_layout_has_altgr = caller_is_keybd_hook ? r_mem : sTargetLayoutHasAltGr; // Same as above.
bool hookable_ralt, lcontrol_was_down, do_detect_altgr;
if (do_detect_altgr = hookable_ralt = (aVK == VK_RMENU && !put_event_into_array && g_KeybdHook)) // This is an RALT that the hook will be able to monitor. Using VK_RMENU vs. VK_MENU should be safe since this logic is only needed for the hook, which is never in effect on Win9x.
{
if (!caller_is_keybd_hook) // sTargetKeybdLayout is set/valid only by SendKeys().
target_keybd_layout = sTargetKeybdLayout;
else
{
// Below is similar to the macro "Get_active_window_keybd_layout":
HWND active_window;
target_keybd_layout = GetKeyboardLayout((active_window = GetForegroundWindow())\
? GetWindowThreadProcessId(active_window, NULL) : 0); // When no foreground window, the script's own layout seems like the safest default.
target_layout_has_altgr = LayoutHasAltGr(target_keybd_layout); // In the case of this else's "if", target_layout_has_altgr was already set properly higher above.
}
if (target_layout_has_altgr != LAYOUT_UNDETERMINED) // This layout's AltGr status is already known with certainty.
do_detect_altgr = false; // So don't go through the detection steps here and other places later below.
else
{
control_vk = g_os.IsWin2000orLater() ? VK_LCONTROL : VK_CONTROL;
lcontrol_was_down = IsKeyDownAsync(control_vk);
// Add extra detection of AltGr if hook is installed, which has been show to be useful for some
// scripts where the other AltGr detection methods don't occur in a timely enough fashion.
// The following method relies upon the fact that it's impossible for the hook to receive
// events from the user while it's processing our keybd_event() here. This is because
// any physical keystrokes that happen to occur at the exact moment of our keybd_event()
// will stay queued until the main event loop routes them to the hook via GetMessage().
g_HookReceiptOfLControlMeansAltGr = aExtraInfo;
// Thread-safe: g_HookReceiptOfLControlMeansAltGr isn't thread-safe, but by its very nature it probably
// shouldn't be (ways to do it might introduce an unwarranted amount of complexity and performance loss
// given that the odds of collision might be astronomically low in this case, and the consequences too
// mild). The whole point of g_HookReceiptOfLControlMeansAltGr and related altgr things below is to
// watch what keystrokes the hook receives in response to simulating a press of the right-alt key.
// Due to their global/system nature, keystrokes are never thread-safe in the sense that any process
// in the entire system can be sending keystrokes simultaneously with ours.
}
}
// Calculated only once for performance (and avoided entirely if not needed):
modLR_type key_as_modifiersLR = put_event_into_array ? KeyToModifiersLR(aVK, aSC) : 0;
bool do_key_history = !caller_is_keybd_hook // If caller is hook, don't log because it does logs it.
&& sSendMode != SM_PLAY // In playback mode, the journal hook logs so that timestamps are accurate.
&& (!g_KeybdHook || sSendMode == SM_INPUT); // In the remaining cases, log only when the hook isn't installed or won't be at the time of the event.
if (aEventType != KEYUP) // i.e. always do it for KEYDOWNANDUP
{
if (put_event_into_array)
PutKeybdEventIntoArray(key_as_modifiersLR, aVK, aSC, event_flags, aExtraInfo);
else
{
// In v1.0.35.07, g_IgnoreNextLControlDown/Up was added.
// The following global is used to flag as our own the keyboard driver's LControl-down keystroke
// that is triggered by RAlt-down (AltGr). This prevents it from triggering hotkeys such as
// "*Control::". It probably fixes other obscure side-effects and bugs also, since the
// event should be considered script-generated even though indirect. Note: The problem with
// having the hook detect AltGr's automatic LControl-down is that the keyboard driver seems
// to generate the LControl-down *before* notifying the system of the RAlt-down. That makes
// it impossible for the hook to flag the LControl keystroke in advance, so it would have to
// retroactively undo the effects. But that is impossible because the previous keystroke might
// already have wrongly fired a hotkey.
if (hookable_ralt && target_layout_has_altgr == CONDITION_TRUE)
g_IgnoreNextLControlDown = aExtraInfo; // Must be set prior to keybd_event() to be effective.
keybd_event(aVK, aSC_lobyte // naked scan code (the 0xE0 prefix, if any, is omitted)
, event_flags, aExtraInfo);
// The following is done by us rather than by the hook to avoid problems where:
// 1) The hook is removed at a critical point during the operation, preventing the variable from
// being reset to false.
// 2) For some reason this AltGr keystroke done above did not cause LControl to go down (perhaps
// because the current keyboard layout doesn't have AltGr as we thought), which would be a bug
// because some other Ctrl keystroke would then be wrongly ignored.
g_IgnoreNextLControlDown = 0; // Unconditional reset.
if (do_detect_altgr)
{
do_detect_altgr = false; // Indicate to the KEYUP section later below that detection has already been done.
if (g_HookReceiptOfLControlMeansAltGr)
{
g_HookReceiptOfLControlMeansAltGr = 0; // Must reset promptly in case key-delay below routes physical keystrokes to hook.
// The following line is multipurpose:
// 1) Retrieves an updated value of target_layout_has_altgr in case the hook just changed it.
// 2) If the hook didn't change it, the target keyboard layout doesn't have an AltGr key.
// Only in that case will the following line set it to FALSE (because LayoutHasAltGr only
// changes the value if it's currently undetermined).
// Finally, this also updates sTargetLayoutHasAltGr in cases where target_layout_has_altgr
// is an alias/reference for it.
target_layout_has_altgr = LayoutHasAltGr(target_keybd_layout, CONDITION_FALSE);
}
else if (!lcontrol_was_down) // i.e. if LControl was already down, this detection method isn't possible.
// Called this way, it updates the specified layout as long as keybd_event's call to the hook didn't already determine it to be FALSE or TRUE:
target_layout_has_altgr = LayoutHasAltGr(target_keybd_layout, IsKeyDownAsync(control_vk) ? CONDITION_TRUE : CONDITION_FALSE);
// Above also updates sTargetLayoutHasAltGr in cases where target_layout_has_altgr is an alias/reference for it.
}
}
#ifdef CONFIG_WIN9X
if (aVK == VK_NUMLOCK && g_os.IsWin9x()) // Under Win9x, Numlock needs special treatment.
ToggleNumlockWin9x();
#endif
if (do_key_history)
UpdateKeyEventHistory(false, aVK, aSC); // Should be thread-safe since if no hook means only one thread ever sends keystrokes (with possible exception of mouse hook, but that seems too rare).
}
// The press-duration delay is done only when this is a down-and-up because otherwise,
// the normal g->KeyDelay will be in effect. In other words, it seems undesirable in
// most cases to do both delays for only "one half" of a keystroke:
if (aDoKeyDelay && aEventType == KEYDOWNANDUP) // Hook should never specify a delay, so no need to check if caller is hook.
DoKeyDelay(sSendMode == SM_PLAY ? g->PressDurationPlay : g->PressDuration); // DoKeyDelay() is not thread safe but since the hook thread should never pass true for aKeyDelay, it shouldn't be an issue.
if (aEventType != KEYDOWN) // i.e. always do it for KEYDOWNANDUP
{
event_flags |= KEYEVENTF_KEYUP;
if (put_event_into_array)
PutKeybdEventIntoArray(key_as_modifiersLR, aVK, aSC, event_flags, aExtraInfo);
else
{
if (hookable_ralt && target_layout_has_altgr == CONDITION_TRUE) // See comments in similar section above for details.
g_IgnoreNextLControlUp = aExtraInfo; // Must be set prior to keybd_event() to be effective.
keybd_event(aVK, aSC_lobyte, event_flags, aExtraInfo);
g_IgnoreNextLControlUp = 0; // Unconditional reset (see similar section above).
if (do_detect_altgr) // This should be true only when aEventType==KEYUP because otherwise the KEYDOWN event above would have set it to false.
{
if (g_HookReceiptOfLControlMeansAltGr)
{
g_HookReceiptOfLControlMeansAltGr = 0; // Must reset promptly in case key-delay below routes physical keystrokes to hook.
target_layout_has_altgr = LayoutHasAltGr(target_keybd_layout, CONDITION_FALSE); // See similar section above for comments.
}
else if (lcontrol_was_down) // i.e. if LControl was already up, this detection method isn't possible.
// See similar section above for comments:
target_layout_has_altgr = LayoutHasAltGr(target_keybd_layout, IsKeyDownAsync(control_vk) ? CONDITION_FALSE : CONDITION_TRUE);
}
}
// The following is done to avoid an extraneous artificial {LCtrl Up} later on,
// since the keyboard driver should insert one in response to this {RAlt Up}:
if (target_layout_has_altgr && aSC == SC_RALT)
sEventModifiersLR &= ~MOD_LCONTROL;
if (do_key_history)
UpdateKeyEventHistory(true, aVK, aSC);
}
if (we_turned_blockinput_off) // Already made thread-safe by action higher above.
Line::ScriptBlockInput(true); // Turn BlockInput back on.
}
if (aDoKeyDelay) // SM_PLAY also uses DoKeyDelay(): it stores the delay item in the event array.
DoKeyDelay(); // Thread-safe because only called by main thread in this mode. See notes above.
}
///////////////////
// Mouse related //
///////////////////
ResultType PerformClick(LPTSTR aOptions)
{
int x, y;
vk_type vk;
KeyEventTypes event_type;
int repeat_count;
bool move_offset;
ParseClickOptions(aOptions, x, y, vk, event_type, repeat_count, move_offset);
PerformMouseCommon(repeat_count < 1 ? ACT_MOUSEMOVE : ACT_MOUSECLICK // Treat repeat-count<1 as a move (like {click}).
, vk, x, y, 0, 0, repeat_count, event_type, g->DefaultMouseSpeed, move_offset);
return OK; // For caller convenience.
}
void ParseClickOptions(LPTSTR aOptions, int &aX, int &aY, vk_type &aVK, KeyEventTypes &aEventType
, int &aRepeatCount, bool &aMoveOffset)
// Caller has trimmed leading whitespace from aOptions, but not necessarily the trailing whitespace.
// aOptions must be a modifiable string because this function temporarily alters it.
{
// Set defaults for all output parameters for caller.
aX = COORD_UNSPECIFIED;
aY = COORD_UNSPECIFIED;
aVK = VK_LBUTTON_LOGICAL; // v1.0.43: Logical vs. physical for {Click} and Click-cmd, in case user has buttons swapped via control panel.
aEventType = KEYDOWNANDUP;
aRepeatCount = 1;
aMoveOffset = false;
TCHAR *next_option, *option_end, orig_char;
vk_type temp_vk;
for (next_option = aOptions; *next_option; next_option = omit_leading_whitespace(option_end))
{
// Allow optional commas to make scripts more readable. Don't support g_delimiter because StrChrAny
// below doesn't.
while (*next_option == ',') // Ignore all commas.
if (!*(next_option = omit_leading_whitespace(next_option + 1)))
goto break_both; // Entire option string ends in a comma.
// Find the end of this option item:
if ( !(option_end = StrChrAny(next_option, _T(" \t,"))) ) // Space, tab, comma.
option_end = next_option + _tcslen(next_option); // Set to position of zero terminator instead.
// Temp termination for IsPureNumeric(), ConvertMouseButton(), and peace-of-mind.
orig_char = *option_end;
*option_end = '\0';
// Parameters can occur in almost any order to enhance usability (at the cost of
// slightly diminishing the ability unambiguously add more parameters in the future).
// Seems okay to support floats because ATOI() will just omit the decimal portion.
if (IsPureNumeric(next_option, true, false, true))
{
// Any numbers present must appear in the order: X, Y, RepeatCount
// (optionally with other options between them).
if (aX == COORD_UNSPECIFIED) // This will be converted into repeat-count if it is later discovered there's no Y coordinate.
aX = ATOI(next_option);
else if (aY == COORD_UNSPECIFIED)
aY = ATOI(next_option);
else // Third number is the repeat-count (but if there's only one number total, that's repeat count too, see further below).
aRepeatCount = ATOI(next_option); // If negative or zero, caller knows to handle it as a MouseMove vs. Click.
}
else // Mouse button/name and/or Down/Up/Repeat-count is present.
{
if (temp_vk = Line::ConvertMouseButton(next_option, true, true))
aVK = temp_vk;
else
{
switch (ctoupper(*next_option))
{
case 'D': aEventType = KEYDOWN; break;
case 'U': aEventType = KEYUP; break;
case 'R': aMoveOffset = true; break; // Since it wasn't recognized as the right mouse button, it must have other letters after it, e.g. Rel/Relative.
// default: Ignore anything else to reserve them for future use.
}
}
}
// If the item was not handled by the above, ignore it because it is unknown.
*option_end = orig_char; // Undo the temporary termination because the caller needs aOptions to be unaltered.
} // for() each item in option list
break_both:
if (aX != COORD_UNSPECIFIED && aY == COORD_UNSPECIFIED)
{
// When only one number is present (e.g. {Click 2}, it's assumed to be the repeat count.
aRepeatCount = aX;
aX = COORD_UNSPECIFIED;
}
}
ResultType PerformMouse(ActionTypeType aActionType, LPTSTR aButton, LPTSTR aX1, LPTSTR aY1, LPTSTR aX2, LPTSTR aY2
, LPTSTR aSpeed, LPTSTR aOffsetMode, LPTSTR aRepeatCount, LPTSTR aDownUp)
{
vk_type vk;
if (aActionType == ACT_MOUSEMOVE)
vk = 0;
else
// ConvertMouseButton() treats blank as "Left":
if ( !(vk = Line::ConvertMouseButton(aButton, aActionType == ACT_MOUSECLICK)) )
vk = VK_LBUTTON; // See below.
// v1.0.43: Seems harmless (due to rarity) to treat invalid button names as "Left" (keeping in
// mind that due to loadtime validation, invalid buttons are possible only when the button name is
// contained in a variable, e.g. MouseClick %ButtonName%.
KeyEventTypes event_type = KEYDOWNANDUP; // Set defaults.
int repeat_count = 1; //
if (aActionType == ACT_MOUSECLICK)
{
if (*aRepeatCount)
repeat_count = ATOI(aRepeatCount);
switch(*aDownUp)
{
case 'u':
case 'U':
event_type = KEYUP;
break;
case 'd':
case 'D':
event_type = KEYDOWN;
break;
// Otherwise, leave it set to the default.
}
}
PerformMouseCommon(aActionType, vk
, *aX1 ? ATOI(aX1) : COORD_UNSPECIFIED // If no starting coords are specified, mark it as "use the
, *aY1 ? ATOI(aY1) : COORD_UNSPECIFIED // current mouse position":
, *aX2 ? ATOI(aX2) : COORD_UNSPECIFIED // These two are blank except for dragging.
, *aY2 ? ATOI(aY2) : COORD_UNSPECIFIED //
, repeat_count, event_type
, *aSpeed ? ATOI(aSpeed) : g->DefaultMouseSpeed
, ctoupper(*aOffsetMode) == 'R'); // aMoveOffset.
return OK; // For caller convenience.
}
void PerformMouseCommon(ActionTypeType aActionType, vk_type aVK, int aX1, int aY1, int aX2, int aY2
, int aRepeatCount, KeyEventTypes aEventType, int aSpeed, bool aMoveOffset)
{
// The maximum number of events, which in this case would be from a MouseClickDrag. To be conservative
// (even though INPUT is a much larger struct than PlaybackEvent and SendInput doesn't use mouse-delays),
// include room for the maximum number of mouse delays too.
// Drag consists of at most:
// 1) Move; 2) Delay; 3) Down; 4) Delay; 5) Move; 6) Delay; 7) Delay (dupe); 8) Up; 9) Delay.
#define MAX_PERFORM_MOUSE_EVENTS 10
INPUT event_array[MAX_PERFORM_MOUSE_EVENTS]; // Use type INPUT vs. PlaybackEvent since the former is larger (i.e. enough to hold either one).
sSendMode = g->SendMode;
if (sSendMode == SM_INPUT || sSendMode == SM_INPUT_FALLBACK_TO_PLAY)
{
if (!sMySendInput || SystemHasAnotherMouseHook()) // See similar section in SendKeys() for details.
sSendMode = (sSendMode == SM_INPUT) ? SM_EVENT : SM_PLAY;
else
sSendMode = SM_INPUT; // Resolve early so that other sections don't have to consider SM_INPUT_FALLBACK_TO_PLAY a valid value.
}
if (sSendMode) // We're also responsible for setting sSendMode to SM_EVENT prior to returning.
InitEventArray(event_array, MAX_PERFORM_MOUSE_EVENTS, 0);
// Turn it on unconditionally even if it was on, since Ctrl-Alt-Del might have disabled it.
// Turn it back off only if it wasn't ON before we started.
bool blockinput_prev = g_BlockInput;
bool do_selective_blockinput = (g_BlockInputMode == TOGGLE_MOUSE || g_BlockInputMode == TOGGLE_SENDANDMOUSE)
&& !sSendMode && g_os.IsWinNT4orLater();
if (do_selective_blockinput) // It seems best NOT to use g_BlockMouseMove for this, since often times the user would want keyboard input to be disabled too, until after the mouse event is done.
Line::ScriptBlockInput(true); // Turn it on unconditionally even if it was on, since Ctrl-Alt-Del might have disabled it.
switch (aActionType)
{
case ACT_MOUSEMOVE:
DWORD unused;
MouseMove(aX1, aY1, unused, aSpeed, aMoveOffset); // Does nothing if coords are invalid.
break;
case ACT_MOUSECLICK:
MouseClick(aVK, aX1, aY1, aRepeatCount, aSpeed, aEventType, aMoveOffset); // Does nothing if coords are invalid.
break;
case ACT_MOUSECLICKDRAG:
MouseClickDrag(aVK, aX1, aY1, aX2, aY2, aSpeed, aMoveOffset); // Does nothing if coords are invalid.
break;
} // switch()
if (sSendMode)
{
int final_key_delay = -1; // Set default.
if (!sAbortArraySend && sEventCount > 0)
SendEventArray(final_key_delay, 0); // Last parameter is ignored because keybd hook isn't removed for a pure-mouse SendInput.
CleanupEventArray(final_key_delay);
}
if (do_selective_blockinput && !blockinput_prev) // Turn it back off only if it was off before we started.
Line::ScriptBlockInput(false);
}
void MouseClickDrag(vk_type aVK, int aX1, int aY1, int aX2, int aY2, int aSpeed, bool aMoveOffset)
{
// Check if one of the coordinates is missing, which can happen in cases where this was called from
// a source that didn't already validate it. Can't call Line::ValidateMouseCoords() because that accepts strings.
if ( (aX1 == COORD_UNSPECIFIED && aY1 != COORD_UNSPECIFIED) || (aX1 != COORD_UNSPECIFIED && aY1 == COORD_UNSPECIFIED)
|| (aX2 == COORD_UNSPECIFIED && aY2 != COORD_UNSPECIFIED) || (aX2 != COORD_UNSPECIFIED && aY2 == COORD_UNSPECIFIED) )
return;
// I asked Jon, "Have you discovered that insta-drags almost always fail?" and he said
// "Yeah, it was weird, absolute lack of drag... Don't know if it was my config or what."
// However, testing reveals "insta-drags" work ok, at least on my system, so leaving them enabled.
// User can easily increase the speed if there's any problem:
//if (aSpeed < 2)
// aSpeed = 2;
// v1.0.43: Translate logical buttons into physical ones. Which physical button it becomes depends
// on whether the mouse buttons are swapped via the Control Panel. Note that journal playback doesn't
// need the swap because every aspect of it is "logical".
if (aVK == VK_LBUTTON_LOGICAL)
aVK = sSendMode != SM_PLAY && GetSystemMetrics(SM_SWAPBUTTON) ? VK_RBUTTON : VK_LBUTTON;
else if (aVK == VK_RBUTTON_LOGICAL)
aVK = sSendMode != SM_PLAY && GetSystemMetrics(SM_SWAPBUTTON) ? VK_LBUTTON : VK_RBUTTON;
// MSDN: If [event_flags] is not MOUSEEVENTF_WHEEL, [MOUSEEVENTF_HWHEEL,] MOUSEEVENTF_XDOWN,
// or MOUSEEVENTF_XUP, then [event_data] should be zero.
DWORD event_down, event_up, event_flags = 0, event_data = 0; // Set defaults for some.
switch (aVK)
{
case VK_LBUTTON:
event_down = MOUSEEVENTF_LEFTDOWN;
event_up = MOUSEEVENTF_LEFTUP;
break;
case VK_RBUTTON:
event_down = MOUSEEVENTF_RIGHTDOWN;
event_up = MOUSEEVENTF_RIGHTUP;
break;
case VK_MBUTTON:
event_down = MOUSEEVENTF_MIDDLEDOWN;
event_up = MOUSEEVENTF_MIDDLEUP;
break;
case VK_XBUTTON1:
case VK_XBUTTON2:
event_down = MOUSEEVENTF_XDOWN;
event_up = MOUSEEVENTF_XUP;
event_data = (aVK == VK_XBUTTON1) ? XBUTTON1 : XBUTTON2;
break;
}
// If the drag isn't starting at the mouse's current position, move the mouse to the specified position:
if (aX1 != COORD_UNSPECIFIED && aY1 != COORD_UNSPECIFIED)
{
// The movement must be a separate event from the click, otherwise it's completely unreliable with
// SendInput() and probably keybd_event() too. SendPlay is unknown, but it seems best for
// compatibility and peace-of-mind to do it for that too. For example, some apps may be designed
// to expect mouse movement prior to a click at a *new* position, which is not unreasonable given
// that this would be the case 99.999% of the time if the user were moving the mouse physically.
MouseMove(aX1, aY1, event_flags, aSpeed, aMoveOffset); // It calls DoMouseDelay() and also converts aX1 and aY1 to MOUSEEVENTF_ABSOLUTE coordinates.
// v1.0.43: event_flags was added to improve reliability. Explanation: Since the mouse was just moved to an
// explicitly specified set of coordinates, use those coordinates with subsequent clicks. This has been
// shown to significantly improve reliability in cases where the user is moving the mouse during the
// MouseClick/Drag commands.
}
MouseEvent(event_flags | event_down, event_data, aX1, aY1); // It ignores aX and aY when MOUSEEVENTF_MOVE is absent.
DoMouseDelay(); // Inserts delay for all modes except SendInput, for which it does nothing.
// Now that the mouse button has been pushed down, move the mouse to perform the drag:
MouseMove(aX2, aY2, event_flags, aSpeed, aMoveOffset); // It calls DoMouseDelay() and also converts aX2 and aY2 to MOUSEEVENTF_ABSOLUTE coordinates.
DoMouseDelay(); // Duplicate, see below.
// Above is a *duplicate* delay because MouseMove() already did one. But it seems best to keep it because:
// 1) MouseClickDrag can be a CPU intensive operation for the target window depending on what it does
// during the drag (selecting objects, etc.) Thus, and extra delay might help a lot of things.
// 2) It would probably break some existing scripts to remove the delay, due to timing issues.
// 3) Dragging is pretty rarely used, so the added performance of removing the delay wouldn't be
// a big benefit.
MouseEvent(event_flags | event_up, event_data, aX2, aY2); // It ignores aX and aY when MOUSEEVENTF_MOVE is absent.
DoMouseDelay();
// Above line: It seems best to always do this delay too in case the script line that
// caused us to be called here is followed immediately by another script line which
// is either another mouse click or something that relies upon this mouse drag
// having been completed:
}
void MouseClick(vk_type aVK, int aX, int aY, int aRepeatCount, int aSpeed, KeyEventTypes aEventType
, bool aMoveOffset)
{
// Check if one of the coordinates is missing, which can happen in cases where this was called from
// a source that didn't already validate it (such as MouseClick, %x%, %BlankVar%).
// Allow aRepeatCount<1 to simply "do nothing", because it increases flexibility in the case where
// the number of clicks is a dereferenced script variable that may sometimes (by intent) resolve to
// zero or negative. For backward compatibility, a RepeatCount <1 does not move the mouse (unlike
// the Click command and Send {Click}).
if ( (aX == COORD_UNSPECIFIED && aY != COORD_UNSPECIFIED) || (aX != COORD_UNSPECIFIED && aY == COORD_UNSPECIFIED)
|| (aRepeatCount < 1) )
return;
DWORD event_flags = 0; // Set default.
if (!(aX == COORD_UNSPECIFIED || aY == COORD_UNSPECIFIED)) // Both coordinates were specified.
{
// The movement must be a separate event from the click, otherwise it's completely unreliable with
// SendInput() and probably keybd_event() too. SendPlay is unknown, but it seems best for
// compatibility and peace-of-mind to do it for that too. For example, some apps may be designed
// to expect mouse movement prior to a click at a *new* position, which is not unreasonable given
// that this would be the case 99.999% of the time if the user were moving the mouse physically.
MouseMove(aX, aY, event_flags, aSpeed, aMoveOffset); // It calls DoMouseDelay() and also converts aX and aY to MOUSEEVENTF_ABSOLUTE coordinates.
// v1.0.43: event_flags was added to improve reliability. Explanation: Since the mouse was just moved to an
// explicitly specified set of coordinates, use those coordinates with subsequent clicks. This has been
// shown to significantly improve reliability in cases where the user is moving the mouse during the
// MouseClick/Drag commands.
}
// Above must be done prior to below because initial mouse-move is supported even for wheel turning.
// For wheel turning, if the user activated this command via a hotkey, and that hotkey
// has a modifier such as CTRL, the user is probably still holding down the CTRL key
// at this point. Therefore, there's some merit to the fact that we should release
// those modifier keys prior to turning the mouse wheel (since some apps disable the
// wheel or give it different behavior when the CTRL key is down -- for example, MSIE
// changes the font size when you use the wheel while CTRL is down). However, if that
// were to be done, there would be no way to ever hold down the CTRL key explicitly
// (via Send, {CtrlDown}) unless the hook were installed. The same argument could probably
// be made for mouse button clicks: modifier keys can often affect their behavior. But
// changing this function to adjust modifiers for all types of events would probably break
// some existing scripts. Maybe it can be a script option in the future. In the meantime,
// it seems best not to adjust the modifiers for any mouse events and just document that
// behavior in the MouseClick command.
switch (aVK)
{
case VK_WHEEL_UP:
MouseEvent(event_flags | MOUSEEVENTF_WHEEL, aRepeatCount * WHEEL_DELTA, aX, aY); // It ignores aX and aY when MOUSEEVENTF_MOVE is absent.
return;
case VK_WHEEL_DOWN:
MouseEvent(event_flags | MOUSEEVENTF_WHEEL, -(aRepeatCount * WHEEL_DELTA), aX, aY);
return;
// v1.0.48: Lexikos: Support horizontal scrolling in Windows Vista and later.
case VK_WHEEL_LEFT:
MouseEvent(event_flags | MOUSEEVENTF_HWHEEL, -(aRepeatCount * WHEEL_DELTA), aX, aY);
return;
case VK_WHEEL_RIGHT:
MouseEvent(event_flags | MOUSEEVENTF_HWHEEL, aRepeatCount * WHEEL_DELTA, aX, aY);
return;
}
// Since above didn't return:
// Although not thread-safe, the following static vars seem okay because:
// 1) This function is currently only called by the main thread.
// 2) Even if that isn't true, the serialized nature of simulated mouse clicks makes it likely that
// the statics will produce the correct behavior anyway.
// 3) Even if that isn't true, the consequences of incorrect behavior seem minimal in this case.
static vk_type sWorkaroundVK = 0;
static LRESULT sWorkaroundHitTest; // Not initialized because the above will be the sole signal of whether the workaround is in progress.
DWORD event_down, event_up, event_data = 0; // Set default.
// MSDN: If [event_flags] is not MOUSEEVENTF_WHEEL, MOUSEEVENTF_XDOWN, or MOUSEEVENTF_XUP, then [event_data]
// should be zero.
// v1.0.43: Translate logical buttons into physical ones. Which physical button it becomes depends
// on whether the mouse buttons are swapped via the Control Panel.
if (aVK == VK_LBUTTON_LOGICAL)
aVK = sSendMode != SM_PLAY && GetSystemMetrics(SM_SWAPBUTTON) ? VK_RBUTTON : VK_LBUTTON;
else if (aVK == VK_RBUTTON_LOGICAL)
aVK = sSendMode != SM_PLAY && GetSystemMetrics(SM_SWAPBUTTON) ? VK_LBUTTON : VK_RBUTTON;
switch (aVK)
{
case VK_LBUTTON:
case VK_RBUTTON:
// v1.0.43 The first line below means: We're not in SendInput/Play mode or we are but this
// will be the first event inside the array. The latter case also implies that no initial
// mouse-move was done above (otherwise there would already be a MouseMove event in the array,
// and thus the click here wouldn't be the first item). It doesn't seem necessary to support
// the MouseMove case above because the workaround generally isn't needed in such situations
// (see detailed comments below). Furthermore, if the MouseMove were supported in array-mode,
// it would require that GetCursorPos() below be conditionally replaced with something like
// the following (since when in array-mode, the cursor hasn't actually moved *yet*):
// CoordToScreen(aX_orig, aY_orig, COORD_MODE_MOUSE); // Moving mouse relative to the active window.
// Known limitation: the work-around described below isn't as complete for SendPlay as it is
// for the other modes: because dragging the title bar of one of this thread's windows with a
// remap such as F1::LButton doesn't work if that remap uses SendPlay internally (the window
// gets stuck to the mouse cursor).
if ( (!sSendMode || !sEventCount) // See above.
&& (aEventType == KEYDOWN || (aEventType == KEYUP && sWorkaroundVK)) ) // i.e. this is a down-only event or up-only event.
{
// v1.0.40.01: The following section corrects misbehavior caused by a thread sending
// simulated mouse clicks to one of its own windows. A script consisting only of the
// following two lines can reproduce this issue:
// F1::LButton
// F2::RButton
// The problems came about from the following sequence of events:
// 1) Script simulates a left-click-down in the title bar's close, minimize, or maximize button.
// 2) WM_NCLBUTTONDOWN is sent to the window's window proc, which then passes it on to
// DefWindowProc or DefDlgProc, which then apparently enters a loop in which no messages
// (or a very limited subset) are pumped.
// 3) Thus, if the user presses a hotkey while the thread is in this state, that hotkey is
// queued/buffered until DefWindowProc/DefDlgProc exits its loop.
// 4) But the buffered hotkey is the very thing that's supposed to exit the loop via sending a
// simulated left-click-up event.
// 5) Thus, a deadlock occurs.
// 6) A similar situation arises when a right-click-down is sent to the title bar or sys-menu-icon.
//
// The following workaround operates by suppressing qualified click-down events until the
// corresponding click-up occurs, at which time the click-up is transformed into a down+up if the
// click-up is still in the same cursor position as the down. It seems preferable to fix this here
// rather than changing each window proc. to always respond to click-down rather vs. click-up
// because that would make all of the script's windows behave in a non-standard way, possibly
// producing side-effects and defeating other programs' attempts to interact with them.
// (Thanks to Shimanov for this solution.)
//
// Remaining known limitations:
// 1) Title bar buttons are not visibly in a pressed down state when a simulated click-down is sent
// to them.
// 2) A window that should not be activated, such as AlwaysOnTop+Disabled, is activated anyway
// by SetForegroundWindowEx(). Not yet fixed due to its rarity and minimal consequences.
// 3) A related problem for which no solution has been discovered (and perhaps it's too obscure
// an issue to justify any added code size): If a remapping such as "F1::LButton" is in effect,
// pressing and releasing F1 while the cursor is over a script window's title bar will cause the
// window to move slightly the next time the mouse is moved.
// 4) Clicking one of the script's window's title bar with a key/button that has been remapped to
// become the left mouse button sometimes causes the button to get stuck down from the window's
// point of view. The reasons are related to those in #1 above. In both #1 and #2, the workaround
// is not at fault because it's not in effect then. Instead, the issue is that DefWindowProc enters
// a non-msg-pumping loop while it waits for the user to drag-move the window. If instead the user
// releases the button without dragging, the loop exits on its own after a 500ms delay or so.
// 5) Obscure behavior caused by keyboard's auto-repeat feature: Use a key that's been remapped to
// become the left mouse button to click and hold the minimize button of one of the script's windows.
// Drag to the left. The window starts moving. This is caused by the fact that the down-click is
// suppressed, thus the remap's hotkey subroutine thinks the mouse button is down, thus its
// auto-repeat suppression doesn't work and it sends another click.
POINT point;
GetCursorPos(&point); // Assuming success seems harmless.
// Despite what MSDN says, WindowFromPoint() appears to fetch a non-NULL value even when the
// mouse is hovering over a disabled control (at least on XP).
HWND child_under_cursor, parent_under_cursor;
if ( (child_under_cursor = WindowFromPoint(point))
&& (parent_under_cursor = GetNonChildParent(child_under_cursor)) // WM_NCHITTEST below probably requires parent vs. child.
&& GetWindowThreadProcessId(parent_under_cursor, NULL) == g_MainThreadID ) // It's one of our thread's windows.
{
LRESULT hit_test = SendMessage(parent_under_cursor, WM_NCHITTEST, 0, MAKELPARAM(point.x, point.y));
if ( aVK == VK_LBUTTON && (hit_test == HTCLOSE || hit_test == HTMAXBUTTON // Title bar buttons: Close, Maximize.
|| hit_test == HTMINBUTTON || hit_test == HTHELP) // Title bar buttons: Minimize, Help.
|| aVK == VK_RBUTTON && (hit_test == HTCAPTION || hit_test == HTSYSMENU) )
{
if (aEventType == KEYDOWN)
{
// Ignore this event and substitute for it: Activate the window when one
// of its title bar buttons is down-clicked.
sWorkaroundVK = aVK;
sWorkaroundHitTest = hit_test;
SetForegroundWindowEx(parent_under_cursor); // Try to reproduce customary behavior.
// For simplicity, aRepeatCount>1 is ignored and DoMouseDelay() is not done.
return;
}
else // KEYUP
{
if (sWorkaroundHitTest == hit_test) // To weed out cases where user clicked down on a button then released somewhere other than the button.
aEventType = KEYDOWNANDUP; // Translate this click-up into down+up to make up for the fact that the down was previously suppressed.
//else let the click-up occur in case it does something or user wants it.
}
}
} // Work-around for sending mouse clicks to one of our thread's own windows.
}
// sWorkaroundVK is reset later below.
// Since above didn't return, the work-around isn't in effect and normal click(s) will be sent:
if (aVK == VK_LBUTTON)
{
event_down = MOUSEEVENTF_LEFTDOWN;
event_up = MOUSEEVENTF_LEFTUP;
}
else // aVK == VK_RBUTTON
{
event_down = MOUSEEVENTF_RIGHTDOWN;
event_up = MOUSEEVENTF_RIGHTUP;
}
break;
case VK_MBUTTON:
event_down = MOUSEEVENTF_MIDDLEDOWN;
event_up = MOUSEEVENTF_MIDDLEUP;
break;
case VK_XBUTTON1:
case VK_XBUTTON2:
event_down = MOUSEEVENTF_XDOWN;
event_up = MOUSEEVENTF_XUP;
event_data = (aVK == VK_XBUTTON1) ? XBUTTON1 : XBUTTON2;
break;
} // switch()
// For simplicity and possibly backward compatibility, LONG_OPERATION_INIT/UPDATE isn't done.
// In addition, some callers might do it for themselves, at least when aRepeatCount==1.
for (int i = 0; i < aRepeatCount; ++i)
{
if (aEventType != KEYUP) // It's either KEYDOWN or KEYDOWNANDUP.
{
// v1.0.43: Reliability is significantly improved by specifying the coordinates with the event (if
// caller gave us coordinates). This is mostly because of SetMouseDelay: In previously versions,
// the delay between a MouseClick's move and its click allowed time for the user to move the mouse
// away from the target position before the click was sent.
MouseEvent(event_flags | event_down, event_data, aX, aY); // It ignores aX and aY when MOUSEEVENTF_MOVE is absent.
// It seems best to always Sleep a certain minimum time between events
// because the click-down event may cause the target app to do something which
// changes the context or nature of the click-up event. AutoIt3 has also been
// revised to do this. v1.0.40.02: Avoid doing the Sleep between the down and up
// events when the workaround is in effect because any MouseDelay greater than 10
// would cause DoMouseDelay() to pump messages, which would defeat the workaround:
if (!sWorkaroundVK)
DoMouseDelay(); // Inserts delay for all modes except SendInput, for which it does nothing.
}
if (aEventType != KEYDOWN) // It's either KEYUP or KEYDOWNANDUP.
{
MouseEvent(event_flags | event_up, event_data, aX, aY); // It ignores aX and aY when MOUSEEVENTF_MOVE is absent.
// It seems best to always do this one too in case the script line that caused
// us to be called here is followed immediately by another script line which
// is either another mouse click or something that relies upon the mouse click
// having been completed:
DoMouseDelay(); // Inserts delay for all modes except SendInput, for which it does nothing.
}
} // for()
sWorkaroundVK = 0; // Reset this indicator in all cases except those for which above already returned.
}
void MouseMove(int &aX, int &aY, DWORD &aEventFlags, int aSpeed, bool aMoveOffset)
// This function also does DoMouseDelay() for the caller.
// This function converts aX and aY for the caller into MOUSEEVENTF_ABSOLUTE coordinates.
// The exception is when the playback mode is in effect, in which case such a conversion would be undesirable
// both here and by the caller.
// It also puts appropriate bit-flags into aEventFlags.
{
// Most callers have already validated this, but some haven't. Since it doesn't take too long to check,
// do it here rather than requiring all callers to do (helps maintainability).
if (aX == COORD_UNSPECIFIED || aY == COORD_UNSPECIFIED)
return;
if (sSendMode == SM_PLAY) // Journal playback mode.
{
// Mouse speed (aSpeed) is ignored for SendInput/Play mode: the mouse always moves instantaneously
// (though in the case of playback-mode, MouseDelay still applies between each movement and click).
// Playback-mode ignores mouse speed because the cases where the user would want to move the mouse more
// slowly (such as a demo) seem too rare to justify the code size and complexity, especially since the
// incremental-move code would have to be implemented in the hook itself to ensure reliability. This is
// because calling GetCursorPos() before playback begins could cause the mouse to wind up at the wrong
// destination, especially if our thread is preempted while building the array (which would give the user
// a chance to physically move the mouse before uninterruptibility begins).
// For creating demonstrations that user slower mouse movement, the older MouseMove command can be used
// in conjunction with BlockInput. This also applies to SendInput because it's conceivable that mouse
// speed could be supported there (though it seems useless both visually and to improve reliability
// because no mouse delays are possible within SendInput).
//
// MSG_OFFSET_MOUSE_MOVE is used to have the playback hook apply the offset (rather than doing it here
// like is done for SendInput mode). This adds flexibility in cases where a new window becomes active
// during playback, or the active window changes position -- if that were to happen, the offset would
// otherwise be wrong while CoordMode is Relative because the changes can only be observed and
// compensated for during playback.
PutMouseEventIntoArray(MOUSEEVENTF_MOVE | (aMoveOffset ? MSG_OFFSET_MOUSE_MOVE : 0)
, 0, aX, aY); // The playback hook uses normal vs. MOUSEEVENTF_ABSOLUTE coordinates.
DoMouseDelay();
if (aMoveOffset)
{
// Now that we're done using the old values of aX and aY above, reset them to COORD_UNSPECIFIED
// for the caller so that any subsequent clicks it does will be marked as "at current coordinates".
aX = COORD_UNSPECIFIED;
aY = COORD_UNSPECIFIED;
}
return; // Other parts below rely on this returning early to avoid converting aX/aY into MOUSEEVENTF_ABSOLUTE.
}
// The playback mode returned from above doesn't need these flags added because they're ignored for clicks:
aEventFlags |= MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE; // Done here for caller, for easier maintenance.
POINT cursor_pos;
if (aMoveOffset) // We're moving the mouse cursor relative to its current position.
{
if (sSendMode == SM_INPUT)
{
// Since GetCursorPos() can't be called to find out a future cursor position, use the position
// tracked for SendInput (facilitates MouseClickDrag's R-option as well as Send{Click}'s).
if (sSendInputCursorPos.x == COORD_UNSPECIFIED) // Initial/starting value hasn't yet been set.
GetCursorPos(&sSendInputCursorPos); // Start it off where the cursor is now.
aX += sSendInputCursorPos.x;
aY += sSendInputCursorPos.y;
}
else
{
GetCursorPos(&cursor_pos); // None of this is done for playback mode since that mode already returned higher above.
aX += cursor_pos.x;
aY += cursor_pos.y;
}
}
else
{
// Convert relative coords to screen coords if necessary (depends on CoordMode).
// None of this is done for playback mode since that mode already returned higher above.
CoordToScreen(aX, aY, COORD_MODE_MOUSE);
}
if (sSendMode == SM_INPUT) // Track predicted cursor position for use by subsequent events put into the array.
{
sSendInputCursorPos.x = aX; // Always stores normal coords (non-MOUSEEVENTF_ABSOLUTE).
sSendInputCursorPos.y = aY; //
}
// Find dimensions of primary monitor.
// Without the MOUSEEVENTF_VIRTUALDESK flag (supported only by SendInput, and then only on
// Windows 2000/XP or later), MOUSEEVENTF_ABSOLUTE coordinates are relative to the primary monitor.
int screen_width = GetSystemMetrics(SM_CXSCREEN);
int screen_height = GetSystemMetrics(SM_CYSCREEN);
// Convert the specified screen coordinates to mouse event coordinates (MOUSEEVENTF_ABSOLUTE).
// MSDN: "In a multimonitor system, [MOUSEEVENTF_ABSOLUTE] coordinates map to the primary monitor."
// The above implies that values greater than 65535 or less than 0 are appropriate, but only on
// multi-monitor systems. For simplicity, performance, and backward compatibility, no check for
// multi-monitor is done here. Instead, the system's default handling for out-of-bounds coordinates
// is used; for example, mouse_event() stops the cursor at the edge of the screen.
// UPDATE: In v1.0.43, the following formula was fixed (actually broken, see below) to always yield an
// in-range value. The previous formula had a +1 at the end:
// aX|Y = ((65535 * aX|Y) / (screen_width|height - 1)) + 1;
// The extra +1 would produce 65536 (an out-of-range value for a single-monitor system) if the maximum
// X or Y coordinate was input (e.g. x-position 1023 on a 1024x768 screen). Although this correction
// seems inconsequential on single-monitor systems, it may fix certain misbehaviors that have been reported
// on multi-monitor systems. Update: according to someone I asked to test it, it didn't fix anything on
// multimonitor systems, at least those whose monitors vary in size to each other. In such cases, he said
// that only SendPlay or DllCall("SetCursorPos") make mouse movement work properly.
// FIX for v1.0.44: Although there's no explanation yet, the v1.0.43 formula is wrong and the one prior
// to it was correct; i.e. unless +1 is present below, a mouse movement to coords near the upper-left corner of
// the screen is typically off by one pixel (only the y-coordinate is affected in 1024x768 resolution, but
// in other resolutions both might be affected).
// v1.0.44.07: The following old formula has been replaced:
// (((65535 * coord) / (width_or_height - 1)) + 1)
// ... with the new one below. This is based on numEric's research, which indicates that mouse_event()
// uses the following inverse formula internally:
// x_or_y_coord = (x_or_y_abs_coord * screen_width_or_height) / 65536
#define MOUSE_COORD_TO_ABS(coord, width_or_height) (((65536 * coord) / width_or_height) + (coord < 0 ? -1 : 1))
aX = MOUSE_COORD_TO_ABS(aX, screen_width);
aY = MOUSE_COORD_TO_ABS(aY, screen_height);
// aX and aY MUST BE SET UNCONDITIONALLY because the output parameters must be updated for caller.
// The incremental-move section further below also needs it.
if (aSpeed < 0) // This can happen during script's runtime due to something like: MouseMove, X, Y, %VarContainingNegative%
aSpeed = 0; // 0 is the fastest.
else
if (aSpeed > MAX_MOUSE_SPEED)
aSpeed = MAX_MOUSE_SPEED;
if (aSpeed == 0 || sSendMode == SM_INPUT) // Instantaneous move to destination coordinates with no incremental positions in between.
{
// See the comments in the playback-mode section at the top of this function for why SM_INPUT ignores aSpeed.
MouseEvent(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, 0, aX, aY);
DoMouseDelay(); // Inserts delay for all modes except SendInput, for which it does nothing.
return;
}
// Since above didn't return, use the incremental mouse move to gradually move the cursor until
// it arrives at the destination coordinates.
// Convert the cursor's current position to mouse event coordinates (MOUSEEVENTF_ABSOLUTE).
GetCursorPos(&cursor_pos);
DoIncrementalMouseMove(
MOUSE_COORD_TO_ABS(cursor_pos.x, screen_width) // Source/starting coords.
, MOUSE_COORD_TO_ABS(cursor_pos.y, screen_height) //
, aX, aY, aSpeed); // Destination/ending coords.
}
void MouseEvent(DWORD aEventFlags, DWORD aData, DWORD aX, DWORD aY)
// Having this part outsourced to a function helps remember to use KEY_IGNORE so that our own mouse
// events won't be falsely detected as hotkeys by the hooks (if they are installed).
{
if (sSendMode)
PutMouseEventIntoArray(aEventFlags, aData, aX, aY);
else
mouse_event(aEventFlags
, aX == COORD_UNSPECIFIED ? 0 : aX // v1.0.43.01: Must be zero if no change in position is desired
, aY == COORD_UNSPECIFIED ? 0 : aY // (fixes compatibility with certain apps/games).
, aData, KEY_IGNORE_LEVEL(g->SendLevel));
}
///////////////////////
// SUPPORT FUNCTIONS //
///////////////////////
void PutKeybdEventIntoArray(modLR_type aKeyAsModifiersLR, vk_type aVK, sc_type aSC, DWORD aEventFlags, DWORD aExtraInfo)
// This function is designed to be called from only one thread (the main thread) since it's not thread-safe.
// Playback hook only supports sending neutral modifiers. Caller must ensure that any left/right modifiers
// such as VK_RCONTROL are translated into neutral (e.g. VK_CONTROL).
{
bool key_up = aEventFlags & KEYEVENTF_KEYUP;
// To make the SendPlay method identical in output to the other keystroke methods, have it generate
// a leading down/up LControl event immediately prior to each RAlt event (with no key-delay).
// This avoids having to add special handling to places like SetModifierLRState() to do AltGr things
// differently when sending via playback vs. other methods. The event order recorded by the journal
// record hook is a little different than what the low-level keyboard hook sees, but I don't think
// the order should matter in this case:
// sc vk key msg
// 138 12 Alt syskeydown (right vs. left scan code)
// 01d 11 Ctrl keydown (left scan code) <-- In keyboard hook, normally this precedes Alt, not follows it. Seems inconsequential (testing confirms).
// 01d 11 Ctrl keyup (left scan code)
// 138 12 Alt syskeyup (right vs. left scan code)
// Check for VK_MENU not VK_RMENU because caller should have translated it to neutral:
if (aVK == VK_MENU && aSC == SC_RALT && sTargetLayoutHasAltGr == CONDITION_TRUE && sSendMode == SM_PLAY)
// Must pass VK_CONTROL rather than VK_LCONTROL because playback hook requires neutral modifiers.
PutKeybdEventIntoArray(MOD_LCONTROL, VK_CONTROL, SC_LCONTROL, aEventFlags, aExtraInfo); // Recursive call to self.
// Above must be done prior to the capacity check below because above might add a new array item.
if (sEventCount == sMaxEvents) // Array's capacity needs expanding.
if (!ExpandEventArray())
return;
// Keep track of the predicted modifier state for use in other places:
if (key_up)
sEventModifiersLR &= ~aKeyAsModifiersLR;
else
sEventModifiersLR |= aKeyAsModifiersLR;
if (sSendMode == SM_INPUT)
{
INPUT &this_event = sEventSI[sEventCount]; // For performance and convenience.
this_event.type = INPUT_KEYBOARD;
this_event.ki.wVk = aVK;
this_event.ki.wScan = (aEventFlags & KEYEVENTF_UNICODE) ? aSC : LOBYTE(aSC);
this_event.ki.dwFlags = aEventFlags;
this_event.ki.dwExtraInfo = aExtraInfo; // Although our hook won't be installed (or won't detect, in the case of playback), that of other scripts might be, so set this for them.
this_event.ki.time = 0; // Let the system provide its own timestamp, which might be more accurate for individual events if this will be a very long SendInput.
sHooksToRemoveDuringSendInput |= HOOK_KEYBD; // Presence of keyboard hook defeats uninterruptibility of keystrokes.
}
else // Playback hook.
{
PlaybackEvent &this_event = sEventPB[sEventCount]; // For performance and convenience.
if (!(aVK || aSC)) // Caller is signaling that aExtraInfo contains a delay/sleep event.
{
// Although delays at the tail end of the playback array can't be implemented by the playback
// itself, caller wants them put in too.
this_event.message = 0; // Message number zero flags it as a delay rather than an actual event.
this_event.time_to_wait = aExtraInfo;
}
else // A normal (non-delay) event for playback.
{
// By monitoring incoming events in a message/event loop, the following key combinations were
// confirmed to be WM_SYSKEYDOWN vs. WM_KEYDOWN (up events weren't tested, so are assumed to
// be the same as down-events):
// Alt+Win
// Alt+Shift
// Alt+Capslock/Numlock/Scrolllock
// Alt+AppsKey
// Alt+F2/Delete/Home/End/Arrow/BS
// Alt+Space/Enter
// Alt+Numpad (tested all digits & most other keys, with/without Numlock ON)
// F10 (by itself) / Win+F10 / Alt+F10 / Shift+F10 (but not Ctrl+F10)
// By contrast, the following are not SYS: Alt+Ctrl, Alt+Esc, Alt+Tab (the latter two
// are never received by msg/event loop probably because the system intercepts them).
// So the rule appears to be: It's a normal (non-sys) key if Alt isn't down and the key
// isn't F10, or if Ctrl is down. Though a press of the Alt key itself is a syskey unless Ctrl is down.
// Update: The release of ALT is WM_KEYUP vs. WM_SYSKEYUP when it modified at least one key while it was down.
if (sEventModifiersLR & (MOD_LCONTROL | MOD_RCONTROL) // Control is down...
|| !(sEventModifiersLR & (MOD_LALT | MOD_RALT)) // ... or: Alt isn't down and this key isn't Alt or F10...
&& aVK != VK_F10 && !(aKeyAsModifiersLR & (MOD_LALT | MOD_RALT))
|| (sEventModifiersLR & (MOD_LALT | MOD_RALT)) && key_up) // ... or this is the release of Alt (for simplicity, assume that Alt modified something while it was down).
this_event.message = key_up ? WM_KEYUP : WM_KEYDOWN;
else
this_event.message = key_up ? WM_SYSKEYUP : WM_SYSKEYDOWN;
this_event.vk = aVK;
this_event.sc = aSC; // Don't omit the extended-key-bit because it is used later on.
}
}
++sEventCount;
}
void PutMouseEventIntoArray(DWORD aEventFlags, DWORD aData, DWORD aX, DWORD aY)
// This function is designed to be called from only one thread (the main thread) since it's not thread-safe.
// If the array-type is journal playback, caller should include MOUSEEVENTF_ABSOLUTE in aEventFlags if the
// the mouse coordinates aX and aY are relative to the screen rather than the active window.
{
if (sEventCount == sMaxEvents) // Array's capacity needs expanding.
if (!ExpandEventArray())
return;
if (sSendMode == SM_INPUT)
{
INPUT &this_event = sEventSI[sEventCount]; // For performance and convenience.
this_event.type = INPUT_MOUSE;
this_event.mi.dx = (aX == COORD_UNSPECIFIED) ? 0 : aX; // v1.0.43.01: Must be zero if no change in position is
this_event.mi.dy = (aY == COORD_UNSPECIFIED) ? 0 : aY; // desired (fixes compatibility with certain apps/games).
this_event.mi.dwFlags = aEventFlags;
this_event.mi.mouseData = aData;
this_event.mi.dwExtraInfo = KEY_IGNORE_LEVEL(g->SendLevel); // Although our hook won't be installed (or won't detect, in the case of playback), that of other scripts might be, so set this for them.
this_event.mi.time = 0; // Let the system provide its own timestamp, which might be more accurate for individual events if this will be a very long SendInput.
sHooksToRemoveDuringSendInput |= HOOK_MOUSE; // Presence of mouse hook defeats uninterruptibility of mouse clicks/moves.
}
else // Playback hook.
{
// Note: Delay events (sleeps), which are supported in playback mode but not SendInput, are always inserted
// via PutKeybdEventIntoArray() rather than this function.
PlaybackEvent &this_event = sEventPB[sEventCount]; // For performance and convenience.
// Determine the type of event specified by caller, but also omit MOUSEEVENTF_MOVE so that the
// follow variations can be differentiated:
// 1) MOUSEEVENTF_MOVE by itself.
// 2) MOUSEEVENTF_MOVE with a click event or wheel turn (in this case MOUSEEVENTF_MOVE is permitted but
// not required, since all mouse events in playback mode must have explicit coordinates at the
// time they're played back).
// 3) A click event or wheel turn by itself (same remark as above).
// Bits are isolated in what should be a future-proof way (also omits MSG_OFFSET_MOUSE_MOVE bit).
switch (aEventFlags & (0x1FFF & ~MOUSEEVENTF_MOVE)) // v1.0.48: 0x1FFF vs. 0xFFF to support MOUSEEVENTF_HWHEEL.
{
case 0: this_event.message = WM_MOUSEMOVE; break; // It's a movement without a click.
// In cases other than the above, it's a click or wheel turn with optional WM_MOUSEMOVE too.
case MOUSEEVENTF_LEFTDOWN: this_event.message = WM_LBUTTONDOWN; break;
case MOUSEEVENTF_LEFTUP: this_event.message = WM_LBUTTONUP; break;
case MOUSEEVENTF_RIGHTDOWN: this_event.message = WM_RBUTTONDOWN; break;
case MOUSEEVENTF_RIGHTUP: this_event.message = WM_RBUTTONUP; break;
case MOUSEEVENTF_MIDDLEDOWN: this_event.message = WM_MBUTTONDOWN; break;
case MOUSEEVENTF_MIDDLEUP: this_event.message = WM_MBUTTONUP; break;
case MOUSEEVENTF_XDOWN: this_event.message = WM_XBUTTONDOWN; break;
case MOUSEEVENTF_XUP: this_event.message = WM_XBUTTONUP; break;
case MOUSEEVENTF_WHEEL: this_event.message = WM_MOUSEWHEEL; break;
case MOUSEEVENTF_HWHEEL: this_event.message = WM_MOUSEHWHEEL; break; // v1.0.48
// WHEEL: No info comes into journal-record about which direction the wheel was turned (nor by how many
// notches). In addition, it appears impossible to specify such info when playing back the event.
// Therefore, playback usually produces downward wheel movement (but upward in some apps like
// Visual Studio).
}
// COORD_UNSPECIFIED_SHORT is used so that the very first event can be a click with unspecified
// coordinates: it seems best to have the cursor's position fetched during playback rather than
// here because if done here, there might be time for the cursor to move physically before
// playback begins (especially if our thread is preempted while building the array).
this_event.x = (aX == COORD_UNSPECIFIED) ? COORD_UNSPECIFIED_SHORT : (WORD)aX;
this_event.y = (aY == COORD_UNSPECIFIED) ? COORD_UNSPECIFIED_SHORT : (WORD)aY;
if (aEventFlags & MSG_OFFSET_MOUSE_MOVE) // Caller wants this event marked as a movement relative to cursor's current position.
this_event.message |= MSG_OFFSET_MOUSE_MOVE;
}
++sEventCount;
}
ResultType ExpandEventArray()
// Returns OK or FAIL.
{
#define EVENT_EXPANSION_MULTIPLIER 2 // Should be very rare for array to need to expand more than a few times.
size_t event_size = (sSendMode == SM_INPUT) ? sizeof(INPUT) : sizeof(PlaybackEvent);
void *new_mem;
// SendInput() appears to be limited to 5000 chars (10000 events in array), at least on XP. This is
// either an undocumented SendInput limit or perhaps it's due to the system setting that determines
// how many messages can get backlogged in each thread's msg queue before some start to get dropped.
// Note that SendInput()'s return value always seems to indicate that all the characters were sent
// even when the ones beyond the limit were clearly never received by the target window.
// In any case, it seems best not to restrict to 5000 here in case the limit can vary for any reason.
// The 5000 limit is documented in the help file.
if ( !(new_mem = malloc(EVENT_EXPANSION_MULTIPLIER * sMaxEvents * event_size)) )
sAbortArraySend = true; // Usually better to send nothing rather than partial.
// And continue on below to free the old block, if appropriate.
else // Copy old array into new memory area (note that sEventSI and sEventPB are different views of the same variable).
memcpy(new_mem, sEventSI, sEventCount * event_size);
if (sMaxEvents > (sSendMode == SM_INPUT ? MAX_INITIAL_EVENTS_SI : MAX_INITIAL_EVENTS_PB))
free(sEventSI); // Previous block was malloc'd vs. _alloc'd, so free it.
if (sAbortArraySend)
return FAIL;
sEventSI = (LPINPUT)new_mem; // Note that sEventSI and sEventPB are different views of the same variable.
sMaxEvents *= EVENT_EXPANSION_MULTIPLIER;
return OK;
}
void InitEventArray(void *aMem, UINT aMaxEvents, modLR_type aModifiersLR)
{
sEventPB = (PlaybackEvent *)aMem; // Sets sEventSI too, since both are the same.
sMaxEvents = aMaxEvents;
sEventModifiersLR = aModifiersLR;
sSendInputCursorPos.x = COORD_UNSPECIFIED;
sSendInputCursorPos.y = COORD_UNSPECIFIED;
sHooksToRemoveDuringSendInput = 0;
sEventCount = 0;
sAbortArraySend = false; // If KeyEvent() ever sets it to true, that allows us to send nothing at all rather than a partial send.
sFirstCallForThisEvent = true;
// The above isn't a local static inside PlaybackProc because PlaybackProc might get aborted in the
// middle of a NEXT/SKIP pair by user pressing Ctrl-Esc, etc, which would make it unreliable.
}
void SendEventArray(int &aFinalKeyDelay, modLR_type aModsDuringSend)
// Caller must avoid calling this function if sMySendInput is NULL.
// aFinalKeyDelay (which the caller should have initialized to -1 prior to calling) may be changed here
// to the desired/final delay. Caller must not act upon it until changing sTypeOfHookToBuild to something
// that will allow DoKeyDelay() to do a real delay.
{
if (sSendMode == SM_INPUT)
{
// Remove hook(s) temporarily because the presence of low-level (LL) keybd hook completely disables
// the uninterruptibility of SendInput's keystrokes (but the mouse hook doesn't affect them).
// The converse is also true. This was tested via:
// #space::
// SendInput {Click 400, 400, 100}
// MsgBox
// ExitApp
// ... and also with BurnK6 running, a CPU maxing utility. The mouse clicks were sent directly to the
// BurnK6 window, and were pretty slow, and also I could physically move the mouse cursor a little
// between each of sendinput's mouse clicks. But removing the mouse-hook during SendInputs solves all that.
// Rather than removing both hooks unconditionally, it's better to
// remove only those that actually have corresponding events in the array. This avoids temporarily
// losing visibility of physical key states (especially when the keyboard hook is removed).
HookType active_hooks;
if (active_hooks = GetActiveHooks())
AddRemoveHooks(active_hooks & ~sHooksToRemoveDuringSendInput, true);
// Caller has ensured that sMySendInput isn't NULL.
sMySendInput(sEventCount, sEventSI, sizeof(INPUT)); // Must call dynamically-resolved version for Win95/NT compatibility.
// The return value is ignored because it never seems to be anything other than sEventCount, even if
// the Send seems to partially fail (e.g. due to hitting 5000 event maximum).
// Typical speed of SendInput: 10ms or less for short sends (under 100 events).
// Typically 30ms for 500 events; and typically no more than 200ms for 5000 events (which is
// the apparent max).
// Testing shows that when SendInput returns to its caller, all of its key states are in effect
// even if the target window hasn't yet had time to receive them all. For example, the
// following reports that LShift is down:
// SendInput {a 4900}{LShift down}
// MsgBox % GetKeyState("LShift")
// Furthermore, if the user manages to physically press or release a key during the call to
// SendInput, testing shows that such events are in effect immediately when SendInput returns
// to its caller, perhaps because SendInput clears out any backlog of physical keystrokes prior to
// returning, or perhaps because the part of the OS that updates key states is a very high priority.
if (active_hooks)
{
if (active_hooks & sHooksToRemoveDuringSendInput & HOOK_KEYBD) // Keyboard hook was actually removed during SendInput.
{
// The above call to SendInput() has not only sent its own events, it has also emptied
// the buffer of any events generated outside but during the SendInput. Since such
// events are almost always physical events rather than simulated ones, it seems to do
// more good than harm on average to consider any such changes to be physical.
// The g_PhysicalKeyState array is also updated by GetModifierLRState(true), but only
// for the modifier keys, not for all keys on the keyboard. Even if adjust all keys
// is possible, it seems overly complex and it might impact performance more than it's
// worth given the rarity of the user changing physical key states during a SendInput
// and then wanting to explicitly retrieve that state via GetKeyState(Key, "P").
modLR_type mods_current = GetModifierLRState(true); // This also serves to correct the hook's logical modifiers, since hook was absent during the SendInput.
modLR_type mods_changed_physically_during_send = aModsDuringSend ^ mods_current;
g_modifiersLR_physical &= ~(mods_changed_physically_during_send & aModsDuringSend); // Remove those that changed from down to up.
g_modifiersLR_physical |= mods_changed_physically_during_send & mods_current; // Add those that changed from up to down.
g_HShwnd = GetForegroundWindow(); // An item done by ResetHook() that seems worthwhile here.
// Most other things done by ResetHook() seem like they would do more harm than good to reset here
// because of the the time the hook is typically missing is very short, usually under 30ms.
}
AddRemoveHooks(active_hooks, true); // Restore the hooks that were active before the SendInput.
}
return;
}
// Since above didn't return, sSendMode == SM_PLAY.
// It seems best not to call IsWindowHung() here because:
// 1) It might improve script reliability to allow playback to a hung window because even though
// the entire system would appear frozen, if the window becomes unhung, the keystrokes would
// eventually get sent to it as intended (and the script may be designed to rely on this).
// Furthermore, the user can press Ctrl-Alt-Del or Ctrl-Esc to unfreeze the system.
// 2) It might hurt performance.
//
// During journal playback, it appears that LL hook receives events in realtime; its just that
// keystrokes the hook passes through (or generates itself) don't actually hit the active window
// until after the playback is done. Preliminary testing shows that the hook's disguise of Alt/Win
// still function properly for Win/Alt hotkeys that use the playback method.
sCurrentEvent = 0; // Reset for use by the hook below. Should be done BEFORE the hook is installed in the next line.
#ifdef JOURNAL_RECORD_MODE
// To record and analyze events via the above:
// - Uncomment the line that defines this in the header file.
// - Put breakpoint after the hook removes itself (a few lines below). Don't try to put breakpoint in RECORD hook
// itself because it tends to freeze keyboard input (must press Ctrl-Alt-Del or Ctrl-Esc to unfreeze).
// - Have the script send a keystroke (best to use non-character keystroke such as SendPlay {Shift}).
// - It is now recording, so press the desired keys.
// - Press Ctrl+Break, Ctrl-Esc, or Ctrl-Alt-Del to stop recording (which should then hit breakpoint below).
// - Study contents of the sEventPB array, which contains the keystrokes just recorded.
sEventCount = 0; // Used by RecordProc().
if ( !(g_PlaybackHook = SetWindowsHookEx(WH_JOURNALRECORD, RecordProc, g_hInstance, 0)) )
return;
#else
if ( !(g_PlaybackHook = SetWindowsHookEx(WH_JOURNALPLAYBACK, PlaybackProc, g_hInstance, 0)) )
return;
// During playback, have the keybd hook (if it's installed) block presses of the Windows key.
// This is done because the Windows key is about the only key (other than Ctrl-Esc or Ctrl-Alt-Del)
// that takes effect immediately rather than getting buffered/postponed until after the playback.
// It should be okay to set this after the playback hook is installed because playback shouldn't
// actually begin until we have our thread do its first MsgSleep later below.
g_BlockWinKeys = true;
#endif
// Otherwise, hook is installed, so:
// Wait for the hook to remove itself because the script should not be allowed to continue
// until the Send finishes.
// GetMessage(single_msg_filter) can't be used because then our thread couldn't playback
// keystrokes to one of its own windows. In addition, testing shows that it wouldn't
// measurably improve performance anyway.
// Note: User can't activate tray icon with mouse (because mouse is blocked), so there's
// no need to call our main event loop merely to have the tray menu responsive.
// Sleeping for 0 performs at least 15% worse than INTERVAL_UNSPECIFIED. I think this is
// because the journal playback hook can operate only when this thread is in a message-pumping
// state, and message pumping is far more efficient with GetMessage than PeekMessage.
// Also note that both registered and hook hotkeys are noticed/caught during journal playback
// (confirmed through testing). However, they are kept buffered until the Send finishes
// because ACT_SEND and such are designed to be uninterruptible by other script threads;
// also, it would be undesirable in almost any conceivable case.
//
// Use a loop rather than a single call to MsgSleep(WAIT_FOR_MESSAGES) because
// WAIT_FOR_MESSAGES is designed only for use by WinMain(). The loop doesn't measurably
// affect performance because there used to be the following here in place of the loop,
// and it didn't perform any better:
// GetMessage(&msg, NULL, WM_CANCELJOURNAL, WM_CANCELJOURNAL);
while (g_PlaybackHook)
SLEEP_WITHOUT_INTERRUPTION(INTERVAL_UNSPECIFIED); // For maintainability, macro is used rather than optimizing/splitting the code it contains.
g_BlockWinKeys = false;
// Either the hook unhooked itself or the OS did due to Ctrl-Esc or Ctrl-Alt-Del.
// MSDN: When an application sees a [system-generated] WM_CANCELJOURNAL message, it can assume
// two things: the user has intentionally cancelled the journal record or playback mode,
// and the system has already unhooked any journal record or playback hook procedures.
if (!sEventPB[sEventCount - 1].message) // Playback hook can't do the final delay, so we do it here.
// Don't do delay right here because the delay would be put into the array instead.
aFinalKeyDelay = sEventPB[sEventCount - 1].time_to_wait;
// GetModifierLRState(true) is not done because keystrokes generated by the playback hook
// aren't really keystrokes in the sense that they affect global key state or modifier state.
// They affect only the keystate retrieved when the target thread calls GetKeyState()
// (GetAsyncKeyState can never see such changes, even if called from the target thread).
// Furthermore, the hook (if present) continues to operate during journal playback, so it
// will keep its own modifiers up-to-date if any physical or simulate keystrokes happen to
// come in during playback (such keystrokes arrive in the hook in real time, but they don't
// actually hit the active window until the playback finishes).
}
void CleanupEventArray(int aFinalKeyDelay)
{
if (sMaxEvents > (sSendMode == SM_INPUT ? MAX_INITIAL_EVENTS_SI : MAX_INITIAL_EVENTS_PB))
free(sEventSI); // Previous block was malloc'd vs. _alloc'd, so free it. Note that sEventSI and sEventPB are different views of the same variable.
// The following must be done only after functions called above are done using it. But it must also be done
// prior to our caller toggling capslock back on , to avoid the capslock keystroke from going into the array.
sSendMode = SM_EVENT;
DoKeyDelay(aFinalKeyDelay); // Do this only after resetting sSendMode above. Should be okay for mouse events too.
}
/////////////////////////////////
void DoKeyDelay(int aDelay)
// Doesn't need to be thread safe because it should only ever be called from main thread.
{
if (aDelay < 0) // To support user-specified KeyDelay of -1 (fastest send rate).
return;
if (sSendMode)
{
if (sSendMode == SM_PLAY && aDelay > 0) // Zero itself isn't supported by playback hook, so no point in inserting such delays into the array.
PutKeybdEventIntoArray(0, 0, 0, 0, aDelay); // Passing zero for vk and sc signals it that aExtraInfo contains the delay.
//else for other types of arrays, never insert a delay or do one now.
return;
}
if (g_os.IsWin9x())
{
// Do a true sleep on Win9x because the MsgSleep() method is very inaccurate on Win9x
// for some reason (a MsgSleep(1) causes a sleep between 10 and 55ms, for example):
Sleep(aDelay);
return;
}
SLEEP_WITHOUT_INTERRUPTION(aDelay);
}
void DoMouseDelay() // Helper function for the mouse functions below.
{
int mouse_delay = sSendMode == SM_PLAY ? g->MouseDelayPlay : g->MouseDelay;
if (mouse_delay < 0) // To support user-specified KeyDelay of -1 (fastest send rate).
return;
if (sSendMode)
{
if (sSendMode == SM_PLAY && mouse_delay > 0) // Zero itself isn't supported by playback hook, so no point in inserting such delays into the array.
PutKeybdEventIntoArray(0, 0, 0, 0, mouse_delay); // Passing zero for vk and sc signals it that aExtraInfo contains the delay.
//else for other types of arrays, never insert a delay or do one now (caller should have already
// checked that, so it's written this way here only for maintainability).
return;
}
// I believe the varying sleep methods below were put in place to avoid issues when simulating
// clicks on the script's own windows. There are extensive comments in MouseClick() and the
// hook about these issues. Also, Sleep() is more accurate on Win9x than MsgSleep, which is
// why it's used in that case. Here are more details from an older comment:
// Always sleep a certain minimum amount of time between events to improve reliability,
// but allow the user to specify a higher time if desired. Note that for Win9x,
// a true Sleep() is done because it is much more accurate than the MsgSleep() method,
// at least on Win98SE when short sleeps are done. UPDATE: A true sleep is now done
// unconditionally if the delay period is small. This fixes a small issue where if
// LButton is a hotkey that includes "MouseClick left" somewhere in its subroutine,
// the script's own main window's title bar buttons for min/max/close would not
// properly respond to left-clicks. By contrast, the following is no longer an issue
// due to the dedicated thread in v1.0.39 (or more likely, due to an older change that
// causes the tray menu to open upon RButton-up rather than down):
// RButton is a hotkey that includes "MouseClick right" somewhere in its subroutine,
// the user would not be able to correctly open the script's own tray menu via
// right-click (note that this issue affected only the one script itself, not others).
if (mouse_delay < 11 || (mouse_delay < 25 && g_os.IsWin9x()))
Sleep(mouse_delay);
else
SLEEP_WITHOUT_INTERRUPTION(mouse_delay)
}
void UpdateKeyEventHistory(bool aKeyUp, vk_type aVK, sc_type aSC)
{
if (!g_KeyHistory) // Don't access the array if it doesn't exist (i.e. key history is disabled).
return;
g_KeyHistory[g_KeyHistoryNext].key_up = aKeyUp;
g_KeyHistory[g_KeyHistoryNext].vk = aVK;
g_KeyHistory[g_KeyHistoryNext].sc = aSC;
g_KeyHistory[g_KeyHistoryNext].event_type = 'i'; // Callers all want this.
g_HistoryTickNow = GetTickCount();
g_KeyHistory[g_KeyHistoryNext].elapsed_time = (g_HistoryTickNow - g_HistoryTickPrev) / (float)1000;
g_HistoryTickPrev = g_HistoryTickNow;
HWND fore_win = GetForegroundWindow();
if (fore_win)
{
if (fore_win != g_HistoryHwndPrev)
GetWindowText(fore_win, g_KeyHistory[g_KeyHistoryNext].target_window, _countof(g_KeyHistory[g_KeyHistoryNext].target_window));
else // i.e. avoid the call to GetWindowText() if possible.
*g_KeyHistory[g_KeyHistoryNext].target_window = '\0';
}
else
_tcscpy(g_KeyHistory[g_KeyHistoryNext].target_window, _T("N/A"));
g_HistoryHwndPrev = fore_win; // Update unconditionally in case it's NULL.
if (++g_KeyHistoryNext >= g_MaxHistoryKeys)
g_KeyHistoryNext = 0;
}
ToggleValueType ToggleKeyState(vk_type aVK, ToggleValueType aToggleValue)
// Toggle the given aVK into another state. For performance, it is the caller's responsibility to
// ensure that aVK is a toggleable key such as capslock, numlock, insert, or scrolllock.
// Returns the state the key was in before it was changed (but it's only a best-guess under Win9x).
{
// Can't use IsKeyDownAsync/GetAsyncKeyState() because it doesn't have this info:
ToggleValueType starting_state = IsKeyToggledOn(aVK) ? TOGGLED_ON : TOGGLED_OFF;
if (aToggleValue != TOGGLED_ON && aToggleValue != TOGGLED_OFF) // Shouldn't be called this way.
return starting_state;
if (starting_state == aToggleValue) // It's already in the desired state, so just return the state.
return starting_state;
if (aVK == VK_NUMLOCK)
{
#ifdef CONFIG_WIN9X
if (g_os.IsWin9x())
{
// For Win9x, we want to set the state unconditionally to be sure it's right. This is because
// the retrieval of the Capslock state, for example, is unreliable, at least under Win98se
// (probably due to lack of an AttachThreadInput() having been done). Although the
// SetKeyboardState() method used by ToggleNumlockWin9x is not required for caps & scroll lock keys,
// it is required for Numlock:
ToggleNumlockWin9x();
return starting_state; // Best guess, but might be wrong.
}
#endif
// Otherwise, NT/2k/XP:
// Sending an extra up-event first seems to prevent the problem where the Numlock
// key's indicator light doesn't change to reflect its true state (and maybe its
// true state doesn't change either). This problem tends to happen when the key
// is pressed while the hook is forcing it to be either ON or OFF (or it suppresses
// it because it's a hotkey). Needs more testing on diff. keyboards & OSes:
KeyEvent(KEYUP, aVK);
}
// Since it's not already in the desired state, toggle it:
KeyEvent(KEYDOWNANDUP, aVK);
// Fix for v1.0.40: IsKeyToggledOn()'s call to GetKeyState() relies on our thread having
// processed messages. Confirmed necessary 100% of the time if our thread owns the active window.
// v1.0.43: Extended the above fix to include all toggleable keys (not just Capslock) and to apply
// to both directions (ON and OFF) since it seems likely to be needed for them all.
bool our_thread_is_foreground;
if (our_thread_is_foreground = (GetWindowThreadProcessId(GetForegroundWindow(), NULL) == g_MainThreadID)) // GetWindowThreadProcessId() tolerates a NULL hwnd.
SLEEP_WITHOUT_INTERRUPTION(-1);
if (aVK == VK_CAPITAL && aToggleValue == TOGGLED_OFF && IsKeyToggledOn(aVK))
{
// Fix for v1.0.36.06: Since it's Capslock and it didn't turn off as attempted, it's probably because
// the OS is configured to turn Capslock off only in response to pressing the SHIFT key (via Ctrl Panel's
// Regional settings). So send shift to do it instead:
KeyEvent(KEYDOWNANDUP, VK_SHIFT);
if (our_thread_is_foreground) // v1.0.43: Added to try to achieve 100% reliability in all situations.
SLEEP_WITHOUT_INTERRUPTION(-1); // Check msg queue to put SHIFT's turning off of Capslock into effect from our thread's POV.
}
return starting_state;
}
#ifdef CONFIG_WIN9X
void ToggleNumlockWin9x()
// Numlock requires a special method to toggle the state and its indicator light under Win9x.
// Capslock and Scrolllock do not need this method, since keybd_event() works for them.
{
BYTE state[256];
GetKeyboardState((PBYTE)&state);
state[VK_NUMLOCK] ^= 0x01; // Toggle the low-order bit to the opposite state.
SetKeyboardState((PBYTE)&state);
}
//void CapslockOffWin9x()
//{
// BYTE state[256];
// GetKeyboardState((PBYTE)&state);
// state[VK_CAPITAL] &= ~0x01;
// SetKeyboardState((PBYTE)&state);
//}
#endif
/*
void SetKeyState (vk_type vk, int aKeyUp)
// Later need to adapt this to support Win9x by using SetKeyboardState for those OSs.
{
if (!vk) return;
int key_already_up = !(GetKeyState(vk) & 0x8000);
if ((key_already_up && aKeyUp) || (!key_already_up && !aKeyUp))
return;
KeyEvent(aKeyUp, vk);
}
*/
void SetModifierLRState(modLR_type aModifiersLRnew, modLR_type aModifiersLRnow, HWND aTargetWindow
, bool aDisguiseDownWinAlt, bool aDisguiseUpWinAlt, DWORD aExtraInfo)
// This function is designed to be called from only the main thread; it's probably not thread-safe.
// Puts modifiers into the specified state, releasing or pressing down keys as needed.
// The modifiers are released and pressed down in a very delicate order due to their interactions with
// each other and their ability to show the Start Menu, activate the menu bar, or trigger the OS's language
// bar hotkeys. Side-effects like these would occur if a more simple approach were used, such as releasing
// all modifiers that are going up prior to pushing down the ones that are going down.
// When the target layout has an altgr key, it is tempting to try to simplify things by removing MOD_LCONTROL
// from aModifiersLRnew whenever aModifiersLRnew contains MOD_RALT. However, this a careful review how that
// would impact various places below where sTargetLayoutHasAltGr is checked indicates that it wouldn't help.
// Note that by design and as documented for ControlSend, aTargetWindow is not used as the target for the
// various calls to KeyEvent() here. It is only used as a workaround for the GUI window issue described
// at the bottom.
{
if (aModifiersLRnow == aModifiersLRnew) // They're already in the right state, so avoid doing all the checks.
return; // Especially avoids the aTargetWindow check at the bottom.
// Notes about modifier key behavior on Windows XP (these probably apply to NT/2k also, and has also
// been tested to be true on Win98): The WIN and ALT keys are the problem keys, because if either is
// released without having modified something (even another modifier), the WIN key will cause the
// Start Menu to appear, and the ALT key will activate the menu bar of the active window (if it has one).
// For example, a hook hotkey such as "$#c::Send text" (text must start with a lowercase letter
// to reproduce the issue, because otherwise WIN would be auto-disguised as a side effect of the SHIFT
// keystroke) would cause the Start Menu to appear if the disguise method below weren't used.
//
// Here are more comments formerly in SetModifierLRStateSpecific(), which has since been eliminated
// because this function is sufficient:
// To prevent it from activating the menu bar, the release of the ALT key should be disguised
// unless a CTRL key is currently down. This is because CTRL always seems to avoid the
// activation of the menu bar (unlike SHIFT, which sometimes allows the menu to be activated,
// though this is hard to reproduce on XP). Another reason not to use SHIFT is that the OS
// uses LAlt+Shift as a hotkey to switch languages. Such a hotkey would be triggered if SHIFT
// were pressed down to disguise the release of LALT.
//
// Alt-down events are also disguised whenever they won't be accompanied by a Ctrl-down.
// This is necessary whenever our caller does not plan to disguise the key itself. For example,
// if "!a::Send Test" is a registered hotkey, two things must be done to avoid complications:
// 1) Prior to sending the word test, ALT must be released in a way that does not activate the
// menu bar. This is done by sandwiching it between a CTRL-down and a CTRL-up.
// 2) After the send is complete, SendKeys() will restore the ALT key to the down position if
// the user is still physically holding ALT down (this is done to make the logical state of
// the key match its physical state, which allows the same hotkey to be fired twice in a row
// without the user having to release and press down the ALT key physically).
// The #2 case above is the one handled below by ctrl_wont_be_down. It is especially necessary
// when the user releases the ALT key prior to releasing the hotkey suffix, which would otherwise
// cause the menu bar (if any) of the active window to be activated.
//
// Some of the same comments above for ALT key apply to the WIN key. More about this issue:
// Although the disguise of the down-event is usually not needed, it is needed in the rare case
// where the user releases the WIN or ALT key prior to releasing the hotkey's suffix.
// Although the hook could be told to disguise the physical release of ALT or WIN in these
// cases, it's best not to rely on the hook since it is not always installed.
//
// Registered WIN and ALT hotkeys that don't use the Send command work okay except ALT hotkeys,
// which if the user releases ALT prior the hotkey's suffix key, cause the menu bar to be activated.
// Since it is unusual for users to do this and because it is standard behavior for ALT hotkeys
// registered in the OS, fixing it via the hook seems like a low priority, and perhaps isn't worth
// the added code complexity/size. But if there is ever a need to do so, the following note applies:
// If the hook is installed, could tell it to disguise any need-to-be-disguised Alt-up that occurs
// after receipt of the registered ALT hotkey. But what if that hotkey uses the send command:
// there might be interference? Doesn't seem so, because the hook only disguises non-ignored events.
// Set up some conditions so that the keystrokes that disguise the release of Win or Alt
// are only sent when necessary (which helps avoid complications caused by keystroke interaction,
// while improving performance):
modLR_type aModifiersLRunion = aModifiersLRnow | aModifiersLRnew; // The set of keys that were or will be down.
bool ctrl_not_down = !(aModifiersLRnow & (MOD_LCONTROL | MOD_RCONTROL)); // Neither CTRL key is down now.
bool ctrl_will_not_be_down = !(aModifiersLRnew & (MOD_LCONTROL | MOD_RCONTROL)) // Nor will it be.
&& !(sTargetLayoutHasAltGr == CONDITION_TRUE && (aModifiersLRnew & MOD_RALT)); // Nor will it be pushed down indirectly due to AltGr.
bool ctrl_nor_shift_nor_alt_down = ctrl_not_down // Neither CTRL key is down now.
&& !(aModifiersLRnow & (MOD_LSHIFT | MOD_RSHIFT | MOD_LALT | MOD_RALT)); // Nor is any SHIFT/ALT key.
bool ctrl_or_shift_or_alt_will_be_down = !ctrl_will_not_be_down // CTRL will be down.
|| (aModifiersLRnew & (MOD_LSHIFT | MOD_RSHIFT | MOD_LALT | MOD_RALT)); // or SHIFT or ALT will be.
// If the required disguise keys aren't down now but will be, defer the release of Win and/or Alt
// until after the disguise keys are in place (since in that case, the caller wanted them down
// as part of the normal operation here):
bool defer_win_release = ctrl_nor_shift_nor_alt_down && ctrl_or_shift_or_alt_will_be_down;
bool defer_alt_release = ctrl_not_down && !ctrl_will_not_be_down; // i.e. Ctrl not down but it will be.
bool release_shift_before_alt_ctrl = defer_alt_release // i.e. Control is moving into the down position or...
|| !(aModifiersLRnow & (MOD_LALT | MOD_RALT)) && (aModifiersLRnew & (MOD_LALT | MOD_RALT)); // ...Alt is moving into the down position.
// Concerning "release_shift_before_alt_ctrl" above: Its purpose is to prevent unwanted firing of the OS's
// language bar hotkey. See the bottom of this function for more explanation.
// ALT:
bool disguise_alt_down = aDisguiseDownWinAlt && ctrl_not_down && ctrl_will_not_be_down; // Since this applies to both Left and Right Alt, don't take sTargetLayoutHasAltGr into account here. That is done later below.
// WIN: The WIN key is successfully disguised under a greater number of conditions than ALT.
// Since SendPlay can't display Start Menu, there's no need to send the disguise-keystrokes (such
// keystrokes might cause unwanted effects in certain games):
bool disguise_win_down = aDisguiseDownWinAlt && sSendMode != SM_PLAY
&& ctrl_not_down && ctrl_will_not_be_down
&& !(aModifiersLRunion & (MOD_LSHIFT | MOD_RSHIFT)) // And neither SHIFT key is down, nor will it be.
&& !(aModifiersLRunion & (MOD_LALT | MOD_RALT)); // And neither ALT key is down, nor will it be.
bool release_lwin = (aModifiersLRnow & MOD_LWIN) && !(aModifiersLRnew & MOD_LWIN);
bool release_rwin = (aModifiersLRnow & MOD_RWIN) && !(aModifiersLRnew & MOD_RWIN);
bool release_lalt = (aModifiersLRnow & MOD_LALT) && !(aModifiersLRnew & MOD_LALT);
bool release_ralt = (aModifiersLRnow & MOD_RALT) && !(aModifiersLRnew & MOD_RALT);
bool release_lshift = (aModifiersLRnow & MOD_LSHIFT) && !(aModifiersLRnew & MOD_LSHIFT);
bool release_rshift = (aModifiersLRnow & MOD_RSHIFT) && !(aModifiersLRnew & MOD_RSHIFT);
// Handle ALT and WIN prior to the other modifiers because the "disguise" methods below are
// only needed upon release of ALT or WIN. This is because such releases tend to have a better
// chance of being "disguised" if SHIFT or CTRL is down at the time of the release. Thus, the
// release of SHIFT or CTRL (if called for) is deferred until afterward.
// ** WIN
// Must be done before ALT in case it is relying on ALT being down to disguise the release WIN.
// If ALT is going to be pushed down further below, defer_win_release should be true, which will make sure
// the WIN key isn't released until after the ALT key is pushed down here at the top.
// Also, WIN is a little more troublesome than ALT, so it is done first in case the ALT key
// is down but will be going up, since the ALT key being down might help the WIN key.
// For example, if you hold down CTRL, then hold down LWIN long enough for it to auto-repeat,
// then release CTRL before releasing LWIN, the Start Menu would appear, at least on XP.
// But it does not appear if CTRL is released after LWIN.
// Also note that the ALT key can disguise the WIN key, but not vice versa.
if (release_lwin)
{
if (!defer_win_release)
{
// Fixed for v1.0.25: To avoid triggering the system's LAlt+Shift language hotkey, the
// Control key is now used to suppress LWIN/RWIN (preventing the Start Menu from appearing)
// rather than the Shift key. This is definitely needed for ALT, but is done here for
// WIN also in case ALT is down, which might cause the use of SHIFT as the disguise key
// to trigger the language switch.
if (ctrl_nor_shift_nor_alt_down && aDisguiseUpWinAlt // Nor will they be pushed down later below, otherwise defer_win_release would have been true and we couldn't get to this point.
&& sSendMode != SM_PLAY) // SendPlay can't display Start Menu, so disguise not needed (also, disguise might mess up some games).
KeyEvent(KEYDOWNANDUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Disguise key release to suppress Start Menu.
// The above event is safe because if we're here, it means VK_CONTROL will not be
// pressed down further below. In other words, we're not defeating the job
// of this function by sending these disguise keystrokes.
KeyEvent(KEYUP, VK_LWIN, 0, NULL, false, aExtraInfo);
}
// else release it only after the normal operation of the function pushes down the disguise keys.
}
else if (!(aModifiersLRnow & MOD_LWIN) && (aModifiersLRnew & MOD_LWIN)) // Press down LWin.
{
if (disguise_win_down)
KeyEvent(KEYDOWN, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that the Start Menu does not appear.
KeyEvent(KEYDOWN, VK_LWIN, 0, NULL, false, aExtraInfo);
if (disguise_win_down)
KeyEvent(KEYUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that the Start Menu does not appear.
}
if (release_rwin)
{
if (!defer_win_release)
{
if (ctrl_nor_shift_nor_alt_down && aDisguiseUpWinAlt && sSendMode != SM_PLAY)
KeyEvent(KEYDOWNANDUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Disguise key release to suppress Start Menu.
KeyEvent(KEYUP, VK_RWIN, 0, NULL, false, aExtraInfo);
}
// else release it only after the normal operation of the function pushes down the disguise keys.
}
else if (!(aModifiersLRnow & MOD_RWIN) && (aModifiersLRnew & MOD_RWIN)) // Press down RWin.
{
if (disguise_win_down)
KeyEvent(KEYDOWN, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that the Start Menu does not appear.
KeyEvent(KEYDOWN, VK_RWIN, 0, NULL, false, aExtraInfo);
if (disguise_win_down)
KeyEvent(KEYUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that the Start Menu does not appear.
}
// ** SHIFT (PART 1 OF 2)
if (release_shift_before_alt_ctrl)
{
if (release_lshift)
KeyEvent(KEYUP, VK_LSHIFT, 0, NULL, false, aExtraInfo);
if (release_rshift)
KeyEvent(KEYUP, VK_RSHIFT, 0, NULL, false, aExtraInfo);
}
// ** ALT
if (release_lalt)
{
if (!defer_alt_release)
{
if (ctrl_not_down && aDisguiseUpWinAlt)
KeyEvent(KEYDOWNANDUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Disguise key release to suppress menu activation.
KeyEvent(KEYUP, VK_LMENU, 0, NULL, false, aExtraInfo);
}
}
else if (!(aModifiersLRnow & MOD_LALT) && (aModifiersLRnew & MOD_LALT))
{
if (disguise_alt_down)
KeyEvent(KEYDOWN, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that menu bar is not activated.
KeyEvent(KEYDOWN, VK_LMENU, 0, NULL, false, aExtraInfo);
if (disguise_alt_down)
KeyEvent(KEYUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo);
}
if (release_ralt)
{
if (!defer_alt_release || sTargetLayoutHasAltGr == CONDITION_TRUE) // No need to defer if RAlt==AltGr. But don't change the value of defer_alt_release because LAlt uses it too.
{
if (sTargetLayoutHasAltGr == CONDITION_TRUE)
{
// Indicate that control is up now, since the release of AltGr will cause that indirectly.
// Fix for v1.0.43: Unlike the pressing down of AltGr in a later section, which callers want
// to automatically press down LControl too (by the very nature of AltGr), callers do not want
// the release of AltGr to release LControl unless they specifically asked for LControl to be
// released too. This is because the caller may need LControl down to manifest something
// like ^c. So don't do: aModifiersLRnew &= ~MOD_LCONTROL.
// Without this fix, a hotkey like <^>!m::Send ^c would send "c" vs. "^c" on the German layout.
// See similar section below for more details.
aModifiersLRnow &= ~MOD_LCONTROL; // To reflect what KeyEvent(KEYUP, VK_RMENU) below will do.
}
else // No AltGr, so check if disguise is necessary (AltGr itself never needs disguise).
if (ctrl_not_down && aDisguiseUpWinAlt)
KeyEvent(KEYDOWNANDUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Disguise key release to suppress menu activation.
KeyEvent(KEYUP, VK_RMENU, 0, NULL, false, aExtraInfo);
}
}
else if (!(aModifiersLRnow & MOD_RALT) && (aModifiersLRnew & MOD_RALT)) // Press down RALT.
{
// For the below: There should never be a need to disguise AltGr. Doing so would likely cause unwanted
// side-effects. Also, disguise_alt_key does not take sTargetLayoutHasAltGr into account because
// disguise_alt_key also applies to the left alt key.
if (disguise_alt_down && sTargetLayoutHasAltGr != CONDITION_TRUE)
{
KeyEvent(KEYDOWN, g_MenuMaskKey, 0, NULL, false, aExtraInfo); // Ensures that menu bar is not activated.
KeyEvent(KEYDOWN, VK_RMENU, 0, NULL, false, aExtraInfo);
KeyEvent(KEYUP, g_MenuMaskKey, 0, NULL, false, aExtraInfo);
}
else // No disguise needed.
{
// v1.0.43: The following check was added to complement the other .43 fix higher above.
// It may also fix other things independently of that other fix.
// The following two lines release LControl before pushing down AltGr because otherwise,
// the next time RAlt is released (such as by the user), some quirk of the OS or driver
// prevents it from automatically releasing LControl like it normally does (perhaps
// because the OS is designed to leave LControl down if it was down before AltGr went down).
// This would cause LControl to get stuck down for hotkeys in German layout such as:
// <^>!a::SendRaw, {
// <^>!m::Send ^c
if (sTargetLayoutHasAltGr == CONDITION_TRUE && (aModifiersLRnow & MOD_LCONTROL))
KeyEvent(KEYUP, VK_LCONTROL, 0, NULL, false, aExtraInfo);
KeyEvent(KEYDOWN, VK_RMENU, 0, NULL, false, aExtraInfo);
if (sTargetLayoutHasAltGr == CONDITION_TRUE) // Note that KeyEvent() might have just changed the value of sTargetLayoutHasAltGr.
{
// Indicate that control is both down and required down so that the section after this one won't
// release it. Without this fix, a hotkey that sends an AltGr char such as "^?: SendRaw, {"
// would fail to work under German layout because left-alt would be released after right-alt
// goes down.
aModifiersLRnow |= MOD_LCONTROL; // To reflect what KeyEvent() did above.
aModifiersLRnew |= MOD_LCONTROL; // All callers want LControl to be down if they wanted AltGr to be down.
}
}
}
// CONTROL and SHIFT are done only after the above because the above might rely on them
// being down before for certain early operations.
// ** CONTROL
if ( (aModifiersLRnow & MOD_LCONTROL) && !(aModifiersLRnew & MOD_LCONTROL) // Release LControl.
// v1.0.41.01: The following line was added to fix the fact that callers do not want LControl
// released when the new modifier state includes AltGr. This solves a hotkey such as the following and
// probably several other circumstances:
// <^>!a::send \ ; Backslash is solved by this fix; it's manifest via AltGr+Dash on German layout.
&& !((aModifiersLRnew & MOD_RALT) && sTargetLayoutHasAltGr == CONDITION_TRUE) )
KeyEvent(KEYUP, VK_LCONTROL, 0, NULL, false, aExtraInfo);
else if (!(aModifiersLRnow & MOD_LCONTROL) && (aModifiersLRnew & MOD_LCONTROL)) // Press down LControl.
KeyEvent(KEYDOWN, VK_LCONTROL, 0, NULL, false, aExtraInfo);
if ((aModifiersLRnow & MOD_RCONTROL) && !(aModifiersLRnew & MOD_RCONTROL)) // Release RControl
KeyEvent(KEYUP, VK_RCONTROL, 0, NULL, false, aExtraInfo);
else if (!(aModifiersLRnow & MOD_RCONTROL) && (aModifiersLRnew & MOD_RCONTROL)) // Press down RControl.
KeyEvent(KEYDOWN, VK_RCONTROL, 0, NULL, false, aExtraInfo);
// ** SHIFT (PART 2 OF 2)
// Must follow CTRL and ALT because a release of SHIFT while ALT/CTRL is down-but-soon-to-be-up
// would switch languages via the OS hotkey. It's okay if defer_alt_release==true because in that case,
// CTRL just went down above (by definition of defer_alt_release), which will prevent the language hotkey
// from firing.
if (release_lshift && !release_shift_before_alt_ctrl) // Release LShift.
KeyEvent(KEYUP, VK_LSHIFT, 0, NULL, false, aExtraInfo);
else if (!(aModifiersLRnow & MOD_LSHIFT) && (aModifiersLRnew & MOD_LSHIFT)) // Press down LShift.
KeyEvent(KEYDOWN, VK_LSHIFT, 0, NULL, false, aExtraInfo);
if (release_rshift && !release_shift_before_alt_ctrl) // Release RShift.
KeyEvent(KEYUP, VK_RSHIFT, 0, NULL, false, aExtraInfo);
else if (!(aModifiersLRnow & MOD_RSHIFT) && (aModifiersLRnew & MOD_RSHIFT)) // Press down RShift.
KeyEvent(KEYDOWN, VK_RSHIFT, 0, NULL, false, aExtraInfo);
// ** KEYS DEFERRED FROM EARLIER
if (defer_win_release) // Must be done before ALT because it might rely on ALT being down to disguise release of WIN key.
{
if (release_lwin)
KeyEvent(KEYUP, VK_LWIN, 0, NULL, false, aExtraInfo);
if (release_rwin)
KeyEvent(KEYUP, VK_RWIN, 0, NULL, false, aExtraInfo);
}
if (defer_alt_release)
{
if (release_lalt)
KeyEvent(KEYUP, VK_LMENU, 0, NULL, false, aExtraInfo);
if (release_ralt && sTargetLayoutHasAltGr != CONDITION_TRUE) // If AltGr is present, RAlt would already have been released earlier since defer_alt_release would have been ignored for it.
KeyEvent(KEYUP, VK_RMENU, 0, NULL, false, aExtraInfo);
}
// When calling KeyEvent(), probably best not to specify a scan code unless
// absolutely necessary, since some keyboards may have non-standard scan codes
// which KeyEvent() will resolve into the proper vk translations for us.
// Decided not to Sleep() between keystrokes, even zero, out of concern that this
// would result in a significant delay (perhaps more than 10ms) while the system
// is under load.
// Since the above didn't return early, keybd_event() has been used to change the state
// of at least one modifier. As a result, if the caller gave a non-NULL aTargetWindow,
// it wants us to check if that window belongs to our thread. If it does, we should do
// a short msg queue check to prevent an apparent synchronization problem when using
// ControlSend against the script's own GUI or other windows. Here is an example of a
// line whose modifier would not be in effect in time for its keystroke to be modified
// by it:
// ControlSend, Edit1, ^{end}, Test Window
// Update: Another bug-fix for v1.0.21, as was the above: If the keyboard hook is installed,
// the modifier keystrokes must have a way to get routed through the hook BEFORE the
// keystrokes get sent via PostMessage(). If not, the correct modifier state will usually
// not be in effect (or at least not be in sync) for the keys sent via PostMessage() afterward.
// Notes about the macro below:
// aTargetWindow!=NULL means ControlSend mode is in effect.
// The g_KeybdHook check must come first (it should take precedence if both conditions are true).
// -1 has been verified to be insufficient, at least for the very first letter sent if it is
// supposed to be capitalized.
// g_MainThreadID is the only thread of our process that owns any windows.
int press_duration = (sSendMode == SM_PLAY) ? g->PressDurationPlay : g->PressDuration;
if (press_duration > -1) // SM_PLAY does use DoKeyDelay() to store a delay item in the event array.
// Since modifiers were changed by the above, do a key-delay if the special intra-keystroke
// delay is in effect.
// Since there normally isn't a delay between a change in modifiers and the first keystroke,
// if a PressDuration is in effect, also do it here to improve reliability (I have observed
// cases where modifiers need to be left alone for a short time in order for the keystrokes
// that follow to be be modified by the intended set of modifiers).
DoKeyDelay(press_duration); // It knows not to do the delay for SM_INPUT.
else // Since no key-delay was done, check if a a delay is needed for any other reason.
{
// IMPORTANT UPDATE for v1.0.39: Now that the hooks are in a separate thread from the part
// of the program that sends keystrokes for the script, you might think synchronization of
// keystrokes would become problematic or at least change. However, this is apparently not
// the case. MSDN doesn't spell this out, but testing shows that what happens with a low-level
// hook is that the moment a keystroke comes into a thread (either physical or simulated), the OS
// immediately calls something similar to SendMessage() from that thread to notify the hook
// thread that a keystroke has arrived. However, if the hook thread's priority is lower than
// some other thread next in line for a timeslice, it might take some time for the hook thread
// to get a timeslice (that's why the hook thread is given a high priority).
// The SendMessage() call doesn't return until its timeout expires (as set in the registry for
// hooks) or the hook thread processes the keystroke (which requires that it call something like
// GetMessage/PeekMessage followed by a HookProc "return"). This is good news because it serializes
// keyboard and mouse input to make the presence of the hook transparent to other threads (unless
// the hook does something to reveal itself, such as suppressing keystrokes). Serialization avoids
// any chance of synchronization problems such as a program that changes the state of a key then
// immediately checks the state of that same key via GetAsyncKeyState(). Another way to look at
// all of this is that in essence, a single-threaded hook program that simulates keystrokes or
// mouse clicks should behave the same when the hook is moved into a separate thread because from
// the program's point-of-view, keystrokes & mouse clicks result in a calling the hook almost
// exactly as if the hook were in the same thread.
if (aTargetWindow)
{
if (g_KeybdHook)
SLEEP_WITHOUT_INTERRUPTION(0) // Don't use ternary operator to combine this with next due to "else if".
else if (GetWindowThreadProcessId(aTargetWindow, NULL) == g_MainThreadID)
SLEEP_WITHOUT_INTERRUPTION(-1)
}
}
// Commented out because a return value is no longer needed by callers (since we do the key-delay here,
// if appropriate).
//return aModifiersLRnow ^ aModifiersLRnew; // Calculate the set of modifiers that changed (currently excludes AltGr's change of LControl's state).
// NOTES about "release_shift_before_alt_ctrl":
// If going down on alt or control (but not both, though it might not matter), and shift is to be released:
// Release shift first.
// If going down on shift, and control or alt (but not both) is to be released:
// Release ctrl/alt first (this is already the case so nothing needs to be done).
//
// Release both shifts before going down on lalt/ralt or lctrl/rctrl (but not necessary if going down on
// *both* alt+ctrl?
// Release alt and both controls before going down on lshift/rshift.
// Rather than the below, do the above (for the reason below).
// But if do this, don't want to prevent a legit/intentional language switch such as:
// Send {LAlt down}{Shift}{LAlt up}.
// If both Alt and Shift are down, Win or Ctrl (or any other key for that matter) must be pressed before either
// is released.
// If both Ctrl and Shift are down, Win or Alt (or any other key) must be pressed before either is released.
// remind: Despite what the Regional Settings window says, RAlt+Shift (and Shift+RAlt) is also a language hotkey (i.e. not just LAlt), at least when RAlt isn't AltGr!
// remind: Control being down suppresses language switch only once. After that, control being down doesn't help if lalt is re-pressed prior to re-pressing shift.
//
// Language switch occurs when:
// alt+shift (upon release of shift)
// shift+alt (upon release of lalt)
// ctrl+shift (upon release of shift)
// shift+ctrl (upon release of ctrl)
// Because language hotkey only takes effect upon release of Shift, it can be disguised via a Control keystroke if that is ever needed.
// NOTES: More details about disguising ALT and WIN:
// Registered Alt hotkeys don't quite work if the Alt key is released prior to the suffix.
// Key history for Alt-B hotkey released this way, which undesirably activates the menu bar:
// A4 038 d 0.03 Alt
// 42 030 d 0.03 B
// A4 038 u 0.24 Alt
// 42 030 u 0.19 B
// Testing shows that the above does not happen for a normal (non-hotkey) alt keystroke such as Alt-8,
// so the above behavior is probably caused by the fact that B-down is suppressed by the OS's hotkey
// routine, but not B-up.
// The above also happens with registered WIN hotkeys, but only if the Send cmd resulted in the WIN
// modifier being pushed back down afterward to match the fact that the user is still holding it down.
// This behavior applies to ALT hotkeys also.
// One solution: if the hook is installed, have it keep track of when the start menu or menu bar
// *would* be activated. These tracking vars can be consulted by the Send command, and the hook
// can also be told when to use them after a registered hotkey has been pressed, so that the Alt-up
// or Win-up keystroke that belongs to it can be disguised.
// The following are important ways in which other methods of disguise might not be sufficient:
// Sequence: shift-down win-down shift-up win-up: invokes Start Menu when WIN is held down long enough
// to auto-repeat. Same when Ctrl or Alt is used in lieu of Shift.
// Sequence: shift-down alt-down alt-up shift-up: invokes menu bar. However, as long as another key,
// even Shift, is pressed down *after* alt is pressed down, menu bar is not activated, e.g. alt-down
// shift-down shift-up alt-up. In addition, CTRL always prevents ALT from activating the menu bar,
// even with the following sequences:
// ctrl-down alt-down alt-up ctrl-up
// alt-down ctrl-down ctrl-up alt-up
// (also seems true for all other permutations of Ctrl/Alt)
}
modLR_type GetModifierLRState(bool aExplicitlyGet)
// Try to report a more reliable state of the modifier keys than GetKeyboardState alone could.
// Fix for v1.0.42.01: On Windows 2000/XP or later, GetAsyncKeyState() should be called rather than
// GetKeyState(). This is because our callers always want the current state of the modifier keys
// rather than their state at the time of the currently-in-process message was posted. For example,
// if the control key wasn't down at the time our thread's current message was posted, but it's logically
// down according to the system, we would want to release that control key before sending non-control
// keystrokes, even if one of our thread's own windows has keyboard focus (because if it does, the
// control-up keystroke should wind up getting processed after our thread realizes control is down).
// This applies even when the keyboard/mouse hook call use because keystrokes routed to the hook via
// the hook's message pump aren't messages per se, and thus GetKeyState and GetAsyncKeyState probably
// return the exact same thing whenever there are no messages in the hook's thread-queue (which is almost
// always the case).
{
// If the hook is active, rely only on its tracked value rather than calling Get():
if (g_KeybdHook && !aExplicitlyGet)
return g_modifiersLR_logical;
// Very old comment:
// Use GetKeyState() rather than GetKeyboardState() because it's the only way to get
// accurate key state when a console window is active, it seems. I've also seen other
// cases where GetKeyboardState() is incorrect (at least under WinXP) when GetKeyState(),
// in its place, yields the correct info. Very strange.
modLR_type modifiersLR = 0; // Allows all to default to up/off to simplify the below.
if (g_os.IsWin9x() || g_os.IsWinNT4())
{
// Assume it's the left key since there's no way to tell which of the pair it
// is? (unless the hook is installed, in which case it's value would have already
// been returned, above).
if (IsKeyDown9xNT(VK_SHIFT)) modifiersLR |= MOD_LSHIFT;
if (IsKeyDown9xNT(VK_CONTROL)) modifiersLR |= MOD_LCONTROL;
if (IsKeyDown9xNT(VK_MENU)) modifiersLR |= MOD_LALT;
if (IsKeyDown9xNT(VK_LWIN)) modifiersLR |= MOD_LWIN;
if (IsKeyDown9xNT(VK_RWIN)) modifiersLR |= MOD_RWIN;
}
else
{
if (IsKeyDownAsync(VK_LSHIFT)) modifiersLR |= MOD_LSHIFT;
if (IsKeyDownAsync(VK_RSHIFT)) modifiersLR |= MOD_RSHIFT;
if (IsKeyDownAsync(VK_LCONTROL)) modifiersLR |= MOD_LCONTROL;
if (IsKeyDownAsync(VK_RCONTROL)) modifiersLR |= MOD_RCONTROL;
if (IsKeyDownAsync(VK_LMENU)) modifiersLR |= MOD_LALT;
if (IsKeyDownAsync(VK_RMENU)) modifiersLR |= MOD_RALT;
if (IsKeyDownAsync(VK_LWIN)) modifiersLR |= MOD_LWIN;
if (IsKeyDownAsync(VK_RWIN)) modifiersLR |= MOD_RWIN;
}
// Thread-safe: The following section isn't thread-safe because either the hook thread
// or the main thread can be calling it. However, given that anything dealing with
// keystrokes isn't thread-safe in the sense that keystrokes can be coming in simultaneously
// from multiple sources, it seems acceptable to keep it this way (especially since
// the consequences of a thread collision seem very mild in this case).
if (g_KeybdHook)
{
// Since hook is installed, fix any modifiers that it incorrectly thinks are down.
// Though rare, this situation does arise during periods when the hook cannot track
// the user's keystrokes, such as when the OS is doing something with the hardware,
// e.g. switching to TV-out or changing video resolutions. There are probably other
// situations where this happens -- never fully explored and identified -- so it
// seems best to do this, at least when the caller specified aExplicitlyGet = true.
// To limit the scope of this workaround, only change the state of the hook modifiers
// to be "up" for those keys the hook thinks are logically down but which the OS thinks
// are logically up. Note that it IS possible for a key to be physically down without
// being logically down (i.e. during a Send command where the user is physically holding
// down a modifier, but the Send command needs to put it up temporarily), so do not
// change the hook's physical state for such keys in that case.
// UPDATE: The following adjustment is now also relied upon by the SendInput method
// to correct physical modifier state during periods when the hook was temporarily removed
// to allow a SendInput to be uninterruptible.
modLR_type modifiers_wrongly_down = g_modifiersLR_logical & ~modifiersLR;
if (modifiers_wrongly_down)
{
// Adjust the physical and logical hook state to release the keys that are wrongly down.
// If a key is wrongly logically down, it seems best to release it both physically and
// logically, since the hook's failure to see the up-event probably makes its physical
// state wrong in most such cases.
g_modifiersLR_physical &= ~modifiers_wrongly_down;
g_modifiersLR_logical &= ~modifiers_wrongly_down;
g_modifiersLR_logical_non_ignored &= ~modifiers_wrongly_down;
// Also adjust physical state so that the GetKeyState command will retrieve the correct values:
AdjustKeyState(g_PhysicalKeyState, g_modifiersLR_physical);
}
}
return modifiersLR;
// Only consider a modifier key to be really down if both the hook's tracking of it
// and GetKeyboardState() agree that it should be down. The should minimize the impact
// of the inherent unreliability present in each method (and each method is unreliable in
// ways different from the other). I have verified through testing that this eliminates
// many misfires of hotkeys. UPDATE: Both methods are fairly reliable now due to starting
// to send scan codes with keybd_event(), using MapVirtualKey to resolve zero-value scan
// codes in the keyboardproc(), and using GetKeyState() rather than GetKeyboardState().
// There are still a few cases when they don't agree, so return the bitwise-and of both
// if the keyboard hook is active. Bitwise and is used because generally it's safer
// to assume a modifier key is up, when in doubt (e.g. to avoid firing unwanted hotkeys):
// return g_KeybdHook ? (g_modifiersLR_logical & g_modifiersLR_get) : g_modifiersLR_get;
}
void AdjustKeyState(BYTE aKeyState[], modLR_type aModifiersLR)
// Caller has ensured that aKeyState is a 256-BYTE array of key states, in the same format used
// by GetKeyboardState() and ToAsciiEx().
{
aKeyState[VK_LSHIFT] = (aModifiersLR & MOD_LSHIFT) ? STATE_DOWN : 0;
aKeyState[VK_RSHIFT] = (aModifiersLR & MOD_RSHIFT) ? STATE_DOWN : 0;
aKeyState[VK_LCONTROL] = (aModifiersLR & MOD_LCONTROL) ? STATE_DOWN : 0;
aKeyState[VK_RCONTROL] = (aModifiersLR & MOD_RCONTROL) ? STATE_DOWN : 0;
aKeyState[VK_LMENU] = (aModifiersLR & MOD_LALT) ? STATE_DOWN : 0;
aKeyState[VK_RMENU] = (aModifiersLR & MOD_RALT) ? STATE_DOWN : 0;
aKeyState[VK_LWIN] = (aModifiersLR & MOD_LWIN) ? STATE_DOWN : 0;
aKeyState[VK_RWIN] = (aModifiersLR & MOD_RWIN) ? STATE_DOWN : 0;
// Update the state of neutral keys only after the above, in case both keys of the pair were wrongly down:
aKeyState[VK_SHIFT] = (aKeyState[VK_LSHIFT] || aKeyState[VK_RSHIFT]) ? STATE_DOWN : 0;
aKeyState[VK_CONTROL] = (aKeyState[VK_LCONTROL] || aKeyState[VK_RCONTROL]) ? STATE_DOWN : 0;
aKeyState[VK_MENU] = (aKeyState[VK_LMENU] || aKeyState[VK_RMENU]) ? STATE_DOWN : 0;
}
modLR_type KeyToModifiersLR(vk_type aVK, sc_type aSC, bool *pIsNeutral)
// Convert the given virtual key / scan code to its equivalent bitwise modLR value.
// Callers rely upon the fact that we convert a neutral key such as VK_SHIFT into MOD_LSHIFT,
// not the bitwise combo of MOD_LSHIFT|MOD_RSHIFT.
// v1.0.43: VK_SHIFT should yield MOD_RSHIFT if the caller explicitly passed the right vs. left scan code.
// The SendPlay method relies on this to properly release AltGr, such as after "SendPlay @" in German.
// Other things may also rely on it because it is more correct.
{
bool placeholder;
bool &is_neutral = pIsNeutral ? *pIsNeutral : placeholder; // Simplifies other things below.
is_neutral = false; // Set default for output parameter for caller.
if (!(aVK || aSC))
return 0;
if (aVK) // Have vk take precedence over any non-zero sc.
switch(aVK)
{
case VK_SHIFT:
if (aSC == SC_RSHIFT)
return MOD_RSHIFT;
//else aSC is omitted (0) or SC_LSHIFT. Either way, most callers would probably want that considered "neutral".
is_neutral = true;
return MOD_LSHIFT;
case VK_LSHIFT: return MOD_LSHIFT;
case VK_RSHIFT: return MOD_RSHIFT;
case VK_CONTROL:
if (aSC == SC_RCONTROL)
return MOD_RCONTROL;
//else aSC is omitted (0) or SC_LCONTROL. Either way, most callers would probably want that considered "neutral".
is_neutral = true;
return MOD_LCONTROL;
case VK_LCONTROL: return MOD_LCONTROL;
case VK_RCONTROL: return MOD_RCONTROL;
case VK_MENU:
if (aSC == SC_RALT)
return MOD_RALT;
//else aSC is omitted (0) or SC_LALT. Either way, most callers would probably want that considered "neutral".
is_neutral = true;
return MOD_LALT;
case VK_LMENU: return MOD_LALT;
case VK_RMENU: return MOD_RALT;
case VK_LWIN: return MOD_LWIN;
case VK_RWIN: return MOD_RWIN;
default:
return 0;
}
// If above didn't return, rely on the scan code instead, which is now known to be non-zero.
switch(aSC)
{
case SC_LSHIFT: return MOD_LSHIFT;
case SC_RSHIFT: return MOD_RSHIFT;
case SC_LCONTROL: return MOD_LCONTROL;
case SC_RCONTROL: return MOD_RCONTROL;
case SC_LALT: return MOD_LALT;
case SC_RALT: return MOD_RALT;
case SC_LWIN: return MOD_LWIN;
case SC_RWIN: return MOD_RWIN;
}
return 0;
}
modLR_type ConvertModifiers(mod_type aModifiers)
// Convert the input param to a modifiersLR value and return it.
{
modLR_type modifiersLR = 0;
if (aModifiers & MOD_WIN) modifiersLR |= (MOD_LWIN | MOD_RWIN);
if (aModifiers & MOD_ALT) modifiersLR |= (MOD_LALT | MOD_RALT);
if (aModifiers & MOD_CONTROL) modifiersLR |= (MOD_LCONTROL | MOD_RCONTROL);
if (aModifiers & MOD_SHIFT) modifiersLR |= (MOD_LSHIFT | MOD_RSHIFT);
return modifiersLR;
}
mod_type ConvertModifiersLR(modLR_type aModifiersLR)
// Convert the input param to a normal modifiers value and return it.
{
mod_type modifiers = 0;
if (aModifiersLR & (MOD_LWIN | MOD_RWIN)) modifiers |= MOD_WIN;
if (aModifiersLR & (MOD_LALT | MOD_RALT)) modifiers |= MOD_ALT;
if (aModifiersLR & (MOD_LSHIFT | MOD_RSHIFT)) modifiers |= MOD_SHIFT;
if (aModifiersLR & (MOD_LCONTROL | MOD_RCONTROL)) modifiers |= MOD_CONTROL;
return modifiers;
}
LPTSTR ModifiersLRToText(modLR_type aModifiersLR, LPTSTR aBuf)
// Caller has ensured that aBuf is not NULL.
{
*aBuf = '\0';
if (aModifiersLR & MOD_LWIN) _tcscat(aBuf, _T("LWin "));
if (aModifiersLR & MOD_RWIN) _tcscat(aBuf, _T("RWin "));
if (aModifiersLR & MOD_LSHIFT) _tcscat(aBuf, _T("LShift "));
if (aModifiersLR & MOD_RSHIFT) _tcscat(aBuf, _T("RShift "));
if (aModifiersLR & MOD_LCONTROL) _tcscat(aBuf, _T("LCtrl "));
if (aModifiersLR & MOD_RCONTROL) _tcscat(aBuf, _T("RCtrl "));
if (aModifiersLR & MOD_LALT) _tcscat(aBuf, _T("LAlt "));
if (aModifiersLR & MOD_RALT) _tcscat(aBuf, _T("RAlt "));
return aBuf;
}
bool ActiveWindowLayoutHasAltGr()
// Thread-safety: See comments in LayoutHasAltGr() below.
{
Get_active_window_keybd_layout // Defines the variable active_window_keybd_layout for use below.
return LayoutHasAltGr(active_window_keybd_layout) == CONDITION_TRUE; // i.e caller wants both CONDITION_FALSE and LAYOUT_UNDETERMINED to be considered non-AltGr.
}
ResultType LayoutHasAltGr(HKL aLayout, ResultType aHasAltGr)
// Thread-safety: While not thoroughly thread-safe, due to the extreme simplicity of the cache array, even if
// a collision occurs it should be inconsequential.
// Caller must ensure that aLayout is a valid layout (special values like 0 aren't supported here).
// If aHasAltGr is not at its default of LAYOUT_UNDETERMINED, the specified layout's has_altgr property is
// updated to the new value, but only if it is currently undetermined (callers can rely on this).
{
// Layouts are cached for performance (to avoid the discovery loop later below).
int i;
for (i = 0; i < MAX_CACHED_LAYOUTS && sCachedLayout[i].hkl; ++i)
if (sCachedLayout[i].hkl == aLayout) // Match Found.
{
if (aHasAltGr != LAYOUT_UNDETERMINED && sCachedLayout[i].has_altgr == LAYOUT_UNDETERMINED) // Caller relies on this.
sCachedLayout[i].has_altgr = aHasAltGr;
return sCachedLayout[i].has_altgr;
}
// Since above didn't return, this layout isn't cached yet. So create a new cache entry for it and
// determine whether this layout has an AltGr key. If i<MAX_CACHED_LAYOUTS (which it almost always will be),
// there's room in the array for a new cache entry. In the very unlikely event that there isn't room,
// overwrite an arbitrary item in the array. An LRU/MRU algorithm (timestamp) isn't used because running out
// of slots seems too unlikely, and the consequences of running out are merely a slight degradation in performance.
CachedLayoutType &cl = sCachedLayout[(i < MAX_CACHED_LAYOUTS) ? i : MAX_CACHED_LAYOUTS-1];
if (aHasAltGr != LAYOUT_UNDETERMINED) // Caller determined it for us. See top of function for explanation.
{
cl.hkl = aLayout;
return cl.has_altgr = aHasAltGr;
}
// Otherwise, do AltGr detection on this newly cached layout so that we can return the AltGr state to caller.
// This detection is probably not 100% reliable because there may be some layouts (especially custom ones)
// that have an AltGr key yet none of its characters actually require AltGr to manifest. A more reliable
// way to detect AltGr would be to simulate an RALT keystroke (maybe only an up event, not a down) and have
// a keyboard hook catch and block it. If the layout has altgr, the hook would see a driver-generated LCtrl
// keystroke immediately prior to RAlt.
// Performance: This loop is quite fast. Doing this section 1000 times only takes about 160ms
// on a 2gHz system (0.16ms per call).
SHORT s;
for (cl.has_altgr = LAYOUT_UNDETERMINED, i = 32; i <= UorA(WCHAR_MAX,UCHAR_MAX); ++i) // Include Spacebar up through final ANSI character (i.e. include 255 but not 256).
{
s = VkKeyScanEx((TCHAR)i, aLayout);
// Check for presence of Ctrl+Alt but allow other modifiers like Shift to be present because
// I believe there are some layouts that manifest characters via Shift+AltGr.
if (s != -1 && (s & 0x600) == 0x600) // In this context, Ctrl+Alt means AltGr.
{
cl.has_altgr = CONDITION_TRUE;
break;
}
}
// If loop didn't break, leave cl.has_altgr as LAYOUT_UNDETERMINED because we can't be sure whether AltGr is
// present (see other comments for details).
cl.hkl = aLayout; // This is done here (immediately after has_altgr was set in the loop above) rather than earlier to minimize the consequences of not being fully thread-safe.
return cl.has_altgr;
}
LPTSTR SCtoKeyName(sc_type aSC, LPTSTR aBuf, int aBufSize, bool aUseFallback)
// aBufSize is an int so that any negative values passed in from caller are not lost.
// Always produces a non-empty string.
{
for (int i = 0; i < g_key_to_sc_count; ++i)
{
if (g_key_to_sc[i].sc == aSC)
{
tcslcpy(aBuf, g_key_to_sc[i].key_name, aBufSize);
return aBuf;
}
}
// Since above didn't return, no match was found. Use the default format for an unknown scan code:
if (aUseFallback)
sntprintf(aBuf, aBufSize, _T("sc%03X"), aSC);
else
*aBuf = '\0';
return aBuf;
}
LPTSTR VKtoKeyName(vk_type aVK, LPTSTR aBuf, int aBufSize, bool aUseFallback)
// aBufSize is an int so that any negative values passed in from caller are not lost.
// Caller may omit aSC and it will be derived if needed.
{
for (int i = 0; i < g_key_to_vk_count; ++i)
{
if (g_key_to_vk[i].vk == aVK)
{
tcslcpy(aBuf, g_key_to_vk[i].key_name, aBufSize);
return aBuf;
}
}
// Since above didn't return, no match was found. Try to map it to
// a character or use the default format for an unknown key code:
if (*aBuf = VKtoChar(aVK))
aBuf[1] = '\0';
else if (aUseFallback && aVK)
sntprintf(aBuf, aBufSize, _T("vk%02X"), aVK);
else
*aBuf = '\0';
return aBuf;
}
TCHAR VKtoChar(vk_type aVK, HKL aKeybdLayout)
// Given a VK code, returns the character that an unmodified keypress would produce
// on the given keyboard layout. Defaults to the script's own layout if omitted.
// Using this rather than MapVirtualKey() fixes some inconsistency that used to
// exist between 'A'-'Z' and every other key.
{
if (!aKeybdLayout)
aKeybdLayout = GetKeyboardLayout(0);
// MapVirtualKeyEx() always produces 'A'-'Z' for those keys regardless of keyboard layout,
// but for any other keys it produces the correct results, so we'll use it:
if (aVK > 'Z' || aVK < 'A')
return (TCHAR)MapVirtualKeyEx(aVK, MAPVK_VK_TO_CHAR, aKeybdLayout);
// For any other keys,
TCHAR ch[3], ch_not_used[2];
BYTE key_state[256];
ZeroMemory(key_state, sizeof(key_state));
TCHAR dead_char = 0;
int n;
// If there's a pending dead-key char in aKeybdLayout's buffer, it would modify the result.
// We don't want that to happen, so as a workaround we pass a key-code which doesn't combine
// with any dead chars, and will therefore pull it out. VK_DECIMAL is used because it is
// almost always valid; see http://www.siao2.com/2007/10/27/5717859.aspx
if (ToUnicodeOrAsciiEx(VK_DECIMAL, 0, key_state, ch, 0, aKeybdLayout) == 2)
{
// Save the char to be later re-injected.
dead_char = ch[0];
}
// Retrieve the character that corresponds to aVK, if any.
n = ToUnicodeOrAsciiEx(aVK, 0, key_state, ch, 0, aKeybdLayout);
if (n < 0) // aVK is a dead key, and we've just placed it into aKeybdLayout's buffer.
{
// Flush it out in the same manner as before (see above).
ToUnicodeOrAsciiEx(VK_DECIMAL, 0, key_state, ch_not_used, 0, aKeybdLayout);
}
if (dead_char)
{
// Re-inject the dead-key char so that user input is not interrupted.
// To do this, we need to find the right VK and modifier key combination:
modLR_type modLR;
vk_type dead_vk = CharToVKAndModifiers(dead_char, &modLR, aKeybdLayout);
if (dead_vk)
{
AdjustKeyState(key_state, modLR);
ToUnicodeOrAsciiEx(dead_vk, 0, key_state, ch_not_used, 0, aKeybdLayout);
}
//else: can't do it.
}
// ch[0] is set even for n < 0, but might not be for n == 0.
return n ? ch[0] : 0;
}
sc_type TextToSC(LPTSTR aText)
{
if (!*aText) return 0;
for (int i = 0; i < g_key_to_sc_count; ++i)
if (!_tcsicmp(g_key_to_sc[i].key_name, aText))
return g_key_to_sc[i].sc;
// Do this only after the above, in case any valid key names ever start with SC:
if (ctoupper(*aText) == 'S' && ctoupper(*(aText + 1)) == 'C')
return (sc_type)_tcstol(aText + 2, NULL, 16); // Convert from hex.
return 0; // Indicate "not found".
}
vk_type TextToVK(LPTSTR aText, modLR_type *pModifiersLR, bool aExcludeThoseHandledByScanCode, bool aAllowExplicitVK
, HKL aKeybdLayout)
// If modifiers_p is non-NULL, place the modifiers that are needed to realize the key in there.
// e.g. M is really +m (shift-m), # is really shift-3.
// HOWEVER, this function does not completely overwrite the contents of pModifiersLR; instead, it just
// adds the required modifiers into whatever is already there.
{
if (!*aText) return 0;
// Don't trim() aText or modify it because that will mess up the caller who expects it to be unchanged.
// Instead, for now, just check it as-is. The only extra whitespace that should exist, due to trimming
// of text during load, is that on either side of the COMPOSITE_DELIMITER (e.g. " then ").
if (!aText[1]) // _tcslen(aText) == 1
return CharToVKAndModifiers(*aText, pModifiersLR, aKeybdLayout); // Making this a function simplifies things because it can do early return, etc.
if (aAllowExplicitVK && ctoupper(aText[0]) == 'V' && ctoupper(aText[1]) == 'K')
return (vk_type)_tcstol(aText + 2, NULL, 16); // Convert from hex.
for (int i = 0; i < g_key_to_vk_count; ++i)
if (!_tcsicmp(g_key_to_vk[i].key_name, aText))
return g_key_to_vk[i].vk;
if (aExcludeThoseHandledByScanCode)
return 0; // Zero is not a valid virtual key, so it should be a safe failure indicator.
// Otherwise check if aText is the name of a key handled by scan code and if so, map that
// scan code to its corresponding virtual key:
sc_type sc = TextToSC(aText);
return sc ? sc_to_vk(sc) : 0;
}
vk_type CharToVKAndModifiers(TCHAR aChar, modLR_type *pModifiersLR, HKL aKeybdLayout)
// If non-NULL, pModifiersLR contains the initial set of modifiers provided by the caller, to which
// we add any extra modifiers required to realize aChar.
{
// For v1.0.25.12, it seems best to avoid the many recent problems with linefeed (`n) being sent
// as Ctrl+Enter by changing it to always send a plain Enter, just like carriage return (`r).
if (aChar == '\n')
return VK_RETURN;
// Otherwise:
SHORT mod_plus_vk = VkKeyScanEx(aChar, aKeybdLayout); // v1.0.44.03: Benchmark shows that VkKeyScanEx() is the same speed as VkKeyScan() when the layout has been pre-fetched.
vk_type vk = LOBYTE(mod_plus_vk);
char keyscan_modifiers = HIBYTE(mod_plus_vk);
if (keyscan_modifiers == -1 && vk == (UCHAR)-1) // No translation could be made.
return 0;
if (keyscan_modifiers & 0x38) // "The Hankaku key is pressed" or either of the "Reserved" state bits (for instance, used by Neo2 keyboard layout).
// Callers expect failure in this case so that a fallback method can be used.
return 0;
// For v1.0.35, pModifiersLR was changed to modLR vs. mod so that AltGr keys such as backslash and
// '{' are supported on layouts such as German when sending to apps such as Putty that are fussy about
// which ALT key is held down to produce the character. The following section detects AltGr by the
// assuming that any character that requires both CTRL and ALT (with optional SHIFT) to be held
// down is in fact an AltGr key (I don't think there are any that aren't AltGr in this case, but
// confirmation would be nice). Also, this is not done for Win9x because the distinction between
// right and left-alt is not well-supported and it might do more harm than good (testing is
// needed on fussy apps like Putty on Win9x). UPDATE: Windows NT4 is now excluded from this
// change because apparently it wants the left Alt key's virtual key and not the right's (though
// perhaps it would prefer the right scan code vs. the left in apps such as Putty, but until that
// is proven, the complexity is not added here). Otherwise, on French and other layouts on NT4,
// AltGr-produced characters such as backslash do not get sent properly. In hindsight, this is
// not surprising because the keyboard hook also receives neutral modifier keys on NT4 rather than
// a more specific left/right key.
// The win docs for VkKeyScan() are a bit confusing, referring to flag "bits" when it should really
// say flag "values". In addition, it seems that these flag values are incompatible with
// MOD_ALT, MOD_SHIFT, and MOD_CONTROL, so they must be translated:
if (pModifiersLR) // The caller wants this info added to the output param.
{
// Best not to reset this value because some callers want to retain what was in it before,
// merely merging these new values into it:
//*pModifiers = 0;
if ((keyscan_modifiers & 0x06) == 0x06 && g_os.IsWin2000orLater()) // 0x06 means "requires/includes AltGr".
{
// v1.0.35: The critical difference below is right vs. left ALT. Must not include MOD_LCONTROL
// because simulating the RAlt keystroke on these keyboard layouts will automatically
// press LControl down.
*pModifiersLR |= MOD_RALT;
}
else // Do normal/default translation.
{
// v1.0.40: If caller-supplied modifiers already include the right-side key, no need to
// add the left-side key (avoids unnecessary keystrokes).
if ( (keyscan_modifiers & 0x02) && !(*pModifiersLR & (MOD_LCONTROL|MOD_RCONTROL)) )
*pModifiersLR |= MOD_LCONTROL; // Must not be done if requires_altgr==true, see above.
if ( (keyscan_modifiers & 0x04) && !(*pModifiersLR & (MOD_LALT|MOD_RALT)) )
*pModifiersLR |= MOD_LALT;
}
// v1.0.36.06: Done unconditionally because presence of AltGr should not preclude the presence of Shift.
// v1.0.40: If caller-supplied modifiers already contains MOD_RSHIFT, no need to add LSHIFT (avoids
// unnecessary keystrokes).
if ( (keyscan_modifiers & 0x01) && !(*pModifiersLR & (MOD_LSHIFT|MOD_RSHIFT)) )
*pModifiersLR |= MOD_LSHIFT;
}
return vk;
}
vk_type TextToSpecial(LPTSTR aText, size_t aTextLength, KeyEventTypes &aEventType, modLR_type &aModifiersLR
, bool aUpdatePersistent)
// Returns vk for key-down, negative vk for key-up, or zero if no translation.
// We also update whatever's in *pModifiers and *pModifiersLR to reflect the type of key-action
// specified in <aText>. This makes it so that {altdown}{esc}{altup} behaves the same as !{esc}.
// Note that things like LShiftDown are not supported because: 1) they are rarely needed; and 2)
// they can be down via "lshift down".
{
if (!tcslicmp(aText, _T("ALTDOWN"), aTextLength))
{
if (aUpdatePersistent)
if (!(aModifiersLR & (MOD_LALT | MOD_RALT))) // i.e. do nothing if either left or right is already present.
aModifiersLR |= MOD_LALT; // If neither is down, use the left one because it's more compatible.
aEventType = KEYDOWN;
return VK_MENU;
}
if (!tcslicmp(aText, _T("ALTUP"), aTextLength))
{
// Unlike for Lwin/Rwin, it seems best to have these neutral keys (e.g. ALT vs. LALT or RALT)
// restore either or both of the ALT keys into the up position. The user can use {LAlt Up}
// to be more specific and avoid this behavior:
if (aUpdatePersistent)
aModifiersLR &= ~(MOD_LALT | MOD_RALT);
aEventType = KEYUP;
return VK_MENU;
}
if (!tcslicmp(aText, _T("SHIFTDOWN"), aTextLength))
{
if (aUpdatePersistent)
if (!(aModifiersLR & (MOD_LSHIFT | MOD_RSHIFT))) // i.e. do nothing if either left or right is already present.
aModifiersLR |= MOD_LSHIFT; // If neither is down, use the left one because it's more compatible.
aEventType = KEYDOWN;
return VK_SHIFT;
}
if (!tcslicmp(aText, _T("SHIFTUP"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR &= ~(MOD_LSHIFT | MOD_RSHIFT); // See "ALTUP" for explanation.
aEventType = KEYUP;
return VK_SHIFT;
}
if (!tcslicmp(aText, _T("CTRLDOWN"), aTextLength) || !tcslicmp(aText, _T("CONTROLDOWN"), aTextLength))
{
if (aUpdatePersistent)
if (!(aModifiersLR & (MOD_LCONTROL | MOD_RCONTROL))) // i.e. do nothing if either left or right is already present.
aModifiersLR |= MOD_LCONTROL; // If neither is down, use the left one because it's more compatible.
aEventType = KEYDOWN;
return VK_CONTROL;
}
if (!tcslicmp(aText, _T("CTRLUP"), aTextLength) || !tcslicmp(aText, _T("CONTROLUP"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR &= ~(MOD_LCONTROL | MOD_RCONTROL); // See "ALTUP" for explanation.
aEventType = KEYUP;
return VK_CONTROL;
}
if (!tcslicmp(aText, _T("LWINDOWN"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR |= MOD_LWIN;
aEventType = KEYDOWN;
return VK_LWIN;
}
if (!tcslicmp(aText, _T("LWINUP"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR &= ~MOD_LWIN;
aEventType = KEYUP;
return VK_LWIN;
}
if (!tcslicmp(aText, _T("RWINDOWN"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR |= MOD_RWIN;
aEventType = KEYDOWN;
return VK_RWIN;
}
if (!tcslicmp(aText, _T("RWINUP"), aTextLength))
{
if (aUpdatePersistent)
aModifiersLR &= ~MOD_RWIN;
aEventType = KEYUP;
return VK_RWIN;
}
// Otherwise, leave aEventType unchanged and return zero to indicate failure:
return 0;
}
#ifdef ENABLE_KEY_HISTORY_FILE
ResultType KeyHistoryToFile(LPTSTR aFilespec, char aType, bool aKeyUp, vk_type aVK, sc_type aSC)
{
static TCHAR sTargetFilespec[MAX_PATH] = _T("");
static FILE *fp = NULL;
static HWND last_foreground_window = NULL;
static DWORD last_tickcount = GetTickCount();
if (!g_KeyHistory) // Since key history is disabled, keys are not being tracked by the hook, so there's nothing to log.
return OK; // Files should not need to be closed since they would never have been opened in the first place.
if (!aFilespec && !aVK && !aSC) // Caller is signaling to close the file if it's open.
{
if (fp)
{
fclose(fp);
fp = NULL;
}
return OK;
}
if (aFilespec && *aFilespec && lstrcmpi(aFilespec, sTargetFilespec)) // Target filename has changed.
{
if (fp)
{
fclose(fp);
fp = NULL; // To indicate to future calls to this function that it's closed.
}
tcslcpy(sTargetFilespec, aFilespec, _countof(sTargetFilespec));
}
if (!aVK && !aSC) // Caller didn't want us to log anything this time.
return OK;
if (!*sTargetFilespec)
return OK; // No target filename has ever been specified, so don't even attempt to open the file.
if (!aVK)
aVK = sc_to_vk(aSC);
else
if (!aSC)
aSC = vk_to_sc(aVK);
TCHAR buf[2048] = _T(""), win_title[1024] = _T("<Init>"), key_name[128] = _T("");
HWND curr_foreground_window = GetForegroundWindow();
DWORD curr_tickcount = GetTickCount();
bool log_changed_window = (curr_foreground_window != last_foreground_window);
if (log_changed_window)
{
if (curr_foreground_window)
GetWindowText(curr_foreground_window, win_title, _countof(win_title));
else
tcslcpy(win_title, _T("<None>"), _countof(win_title));
last_foreground_window = curr_foreground_window;
}
sntprintf(buf, _countof(buf), _T("%02X") _T("\t%03X") _T("\t%0.2f") _T("\t%c") _T("\t%c") _T("\t%s") _T("%s%s\n")
, aVK, aSC
, (float)(curr_tickcount - last_tickcount) / (float)1000
, aType
, aKeyUp ? 'u' : 'd'
, GetKeyName(aVK, aSC, key_name, sizeof(key_name))
, log_changed_window ? _T("\t") : _T("")
, log_changed_window ? win_title : _T("")
);
last_tickcount = curr_tickcount;
if (!fp)
if ( !(fp = _tfopen(sTargetFilespec, _T("a"))) )
return OK;
_fputts(buf, fp);
return OK;
}
#endif
LPTSTR GetKeyName(vk_type aVK, sc_type aSC, LPTSTR aBuf, int aBufSize, LPTSTR aDefault)
// aBufSize is an int so that any negative values passed in from caller are not lost.
// Caller has ensured that aBuf isn't NULL.
{
if (aBufSize < 3)
return aBuf;
*aBuf = '\0'; // Set default.
if (!aVK && !aSC)
return aBuf;
if (!aVK)
aVK = sc_to_vk(aSC);
else
if (!aSC)
aSC = vk_to_sc(aVK);
// Check SC first to properly differentiate between Home/NumpadHome, End/NumpadEnd, etc.
// v1.0.43: WheelDown/Up store the notch/turn count in SC, so don't consider that to be a valid SC.
if (aSC && !IS_WHEEL_VK(aVK))
{
if (*SCtoKeyName(aSC, aBuf, aBufSize, false))
return aBuf;
// Otherwise this key is probably one we can handle by VK.
}
if (*VKtoKeyName(aVK, aBuf, aBufSize, false))
return aBuf;
// Since this key is unrecognized, return the caller-supplied default value.
return aDefault;
}
sc_type vk_to_sc(vk_type aVK, bool aReturnSecondary)
// For v1.0.37.03, vk_to_sc() was converted into a function rather than being an array because if the
// script's keyboard layout changes while it's running, the array would get out-of-date.
// If caller passes true for aReturnSecondary, the non-primary scan code will be returned for
// virtual keys that two scan codes (if there's only one scan code, callers rely on zero being returned).
{
// Try to minimize the number mappings done manually because MapVirtualKey is a more reliable
// way to get the mapping if user has non-standard or custom keyboard layout.
sc_type sc = 0;
switch (aVK)
{
// Yield a manually translation for virtual keys that MapVirtualKey() doesn't support or for which it
// doesn't yield consistent result (such as Win9x supporting only SHIFT rather than VK_LSHIFT/VK_RSHIFT).
case VK_LSHIFT: sc = SC_LSHIFT; break; // Modifiers are listed first for performance.
case VK_RSHIFT: sc = SC_RSHIFT; break;
case VK_LCONTROL: sc = SC_LCONTROL; break;
case VK_RCONTROL: sc = SC_RCONTROL; break;
case VK_LMENU: sc = SC_LALT; break;
case VK_RMENU: sc = SC_RALT; break;
case VK_LWIN: sc = SC_LWIN; break; // Earliest versions of Win95/NT might not support these, so map them manually.
case VK_RWIN: sc = SC_RWIN; break; //
// According to http://support.microsoft.com/default.aspx?scid=kb;en-us;72583
// most or all numeric keypad keys cannot be mapped reliably under any OS. The article is
// a little unclear about which direction, if any, that MapVirtualKey() does work in for
// the numpad keys, so for peace-of-mind map them all manually for now:
case VK_NUMPAD0: sc = SC_NUMPAD0; break;
case VK_NUMPAD1: sc = SC_NUMPAD1; break;
case VK_NUMPAD2: sc = SC_NUMPAD2; break;
case VK_NUMPAD3: sc = SC_NUMPAD3; break;
case VK_NUMPAD4: sc = SC_NUMPAD4; break;
case VK_NUMPAD5: sc = SC_NUMPAD5; break;
case VK_NUMPAD6: sc = SC_NUMPAD6; break;
case VK_NUMPAD7: sc = SC_NUMPAD7; break;
case VK_NUMPAD8: sc = SC_NUMPAD8; break;
case VK_NUMPAD9: sc = SC_NUMPAD9; break;
case VK_DECIMAL: sc = SC_NUMPADDOT; break;
case VK_NUMLOCK: sc = SC_NUMLOCK; break;
case VK_DIVIDE: sc = SC_NUMPADDIV; break;
case VK_MULTIPLY: sc = SC_NUMPADMULT; break;
case VK_SUBTRACT: sc = SC_NUMPADSUB; break;
case VK_ADD: sc = SC_NUMPADADD; break;
}
if (sc) // Above found a match.
return aReturnSecondary ? 0 : sc; // Callers rely on zero being returned for VKs that don't have secondary SCs.
// Use the OS API's MapVirtualKey() to resolve any not manually done above:
if ( !(sc = MapVirtualKey(aVK, 0)) )
return 0; // Indicate "no mapping".
// Turn on the extended flag for those that need it.
// Because MapVirtualKey can only accept (and return) naked scan codes (the low-order byte),
// handle extended scan codes that have a non-extended counterpart manually.
// Older comment: MapVirtualKey() should include 0xE0 in HIBYTE if key is extended, BUT IT DOESN'T.
// There doesn't appear to be any built-in function to determine whether a vk's scan code
// is extended or not. See MSDN topic "keyboard input" for the below list.
// Note: NumpadEnter is probably the only extended key that doesn't have a unique VK of its own.
// So in that case, probably safest not to set the extended flag. To send a true NumpadEnter,
// as well as a true NumPadDown and any other key that shares the same VK with another, the
// caller should specify the sc param to circumvent the need for KeyEvent() to use the below:
switch (aVK)
{
case VK_APPS: // Application key on keyboards with LWIN/RWIN/Apps. Not listed in MSDN as "extended"?
case VK_CANCEL: // Ctrl-break
case VK_SNAPSHOT: // PrintScreen
case VK_DIVIDE: // NumpadDivide (slash)
case VK_NUMLOCK:
// Below are extended but were already handled and returned from higher above:
//case VK_LWIN:
//case VK_RWIN:
//case VK_RMENU:
//case VK_RCONTROL:
//case VK_RSHIFT: // WinXP needs this to be extended for keybd_event() to work properly.
sc |= 0x0100;
break;
// The following virtual keys have more than one physical key, and thus more than one scan code.
// If the caller passed true for aReturnSecondary, the extended version of the scan code will be
// returned (all of the following VKs have two SCs):
case VK_RETURN:
case VK_INSERT:
case VK_DELETE:
case VK_PRIOR: // PgUp
case VK_NEXT: // PgDn
case VK_HOME:
case VK_END:
case VK_UP:
case VK_DOWN:
case VK_LEFT:
case VK_RIGHT:
return aReturnSecondary ? (sc | 0x0100) : sc; // Below relies on the fact that these cases return early.
}
// Since above didn't return, if aReturnSecondary==true, return 0 to indicate "no secondary SC for this VK".
return aReturnSecondary ? 0 : sc; // Callers rely on zero being returned for VKs that don't have secondary SCs.
}
vk_type sc_to_vk(sc_type aSC)
{
// These are mapped manually because MapVirtualKey() doesn't support them correctly, at least
// on some -- if not all -- OSs. The main app also relies upon the values assigned below to
// determine which keys should be handled by scan code rather than vk:
switch (aSC)
{
// Even though neither of the SHIFT keys are extended -- and thus could be mapped with MapVirtualKey()
// -- it seems better to define them explicitly because under Win9x (maybe just Win95).
// I'm pretty sure MapVirtualKey() would return VK_SHIFT instead of the left/right VK.
case SC_LSHIFT: return VK_LSHIFT; // Modifiers are listed first for performance.
case SC_RSHIFT: return VK_RSHIFT;
case SC_LCONTROL: return VK_LCONTROL;
case SC_RCONTROL: return VK_RCONTROL;
case SC_LALT: return VK_LMENU;
case SC_RALT: return VK_RMENU;
// Numpad keys require explicit mapping because MapVirtualKey() doesn't support them on all OSes.
// See comments in vk_to_sc() for details.
case SC_NUMLOCK: return VK_NUMLOCK;
case SC_NUMPADDIV: return VK_DIVIDE;
case SC_NUMPADMULT: return VK_MULTIPLY;
case SC_NUMPADSUB: return VK_SUBTRACT;
case SC_NUMPADADD: return VK_ADD;
case SC_NUMPADENTER: return VK_RETURN;
// The following are ambiguous because each maps to more than one VK. But be careful
// changing the value to the other choice because some callers rely upon the values
// assigned below to determine which keys should be handled by scan code rather than vk:
case SC_NUMPADDEL: return VK_DELETE;
case SC_NUMPADCLEAR: return VK_CLEAR;
case SC_NUMPADINS: return VK_INSERT;
case SC_NUMPADUP: return VK_UP;
case SC_NUMPADDOWN: return VK_DOWN;
case SC_NUMPADLEFT: return VK_LEFT;
case SC_NUMPADRIGHT: return VK_RIGHT;
case SC_NUMPADHOME: return VK_HOME;
case SC_NUMPADEND: return VK_END;
case SC_NUMPADPGUP: return VK_PRIOR;
case SC_NUMPADPGDN: return VK_NEXT;
// No callers currently need the following alternate virtual key mappings. If it is ever needed,
// could have a new aReturnSecondary parameter that if true, causes these to be returned rather
// than the above:
//case SC_NUMPADDEL: return VK_DECIMAL;
//case SC_NUMPADCLEAR: return VK_NUMPAD5; // Same key as Numpad5 on most keyboards?
//case SC_NUMPADINS: return VK_NUMPAD0;
//case SC_NUMPADUP: return VK_NUMPAD8;
//case SC_NUMPADDOWN: return VK_NUMPAD2;
//case SC_NUMPADLEFT: return VK_NUMPAD4;
//case SC_NUMPADRIGHT: return VK_NUMPAD6;
//case SC_NUMPADHOME: return VK_NUMPAD7;
//case SC_NUMPADEND: return VK_NUMPAD1;
//case SC_NUMPADPGUP: return VK_NUMPAD9;
//case SC_NUMPADPGDN: return VK_NUMPAD3;
case SC_APPSKEY: return VK_APPS; // Added in v1.1.17.00.
}
// Use the OS API call to resolve any not manually set above. This should correctly
// resolve even elements such as SC_INSERT, which is an extended scan code, because
// it passes in only the low-order byte which is SC_NUMPADINS. In the case of SC_INSERT
// and similar ones, MapVirtualKey() will return the same vk for both, which is correct.
// Only pass the LOBYTE because I think it fails to work properly otherwise.
// Also, DO NOT pass 3 for the 2nd param of MapVirtualKey() because apparently
// that is not compatible with Win9x so it winds up returning zero for keys
// such as UP, LEFT, HOME, and PGUP (maybe other sorts of keys too). This
// should be okay even on XP because the left/right specific keys have already
// been resolved above so don't need to be looked up here (LWIN and RWIN
// each have their own VK's so shouldn't be problem for the below call to resolve):
return MapVirtualKey((BYTE)aSC, 1);
}
| 56.95008
| 336
| 0.735098
|
cpascal
|
ba7483e7d1040721503ac4dca15f9cbfc3b303c2
| 14,680
|
cc
|
C++
|
mistral/arch.cc
|
MyskYko/nextpnr
|
4707bfc3c9b3f6605e335586333c6337c2896224
|
[
"0BSD"
] | null | null | null |
mistral/arch.cc
|
MyskYko/nextpnr
|
4707bfc3c9b3f6605e335586333c6337c2896224
|
[
"0BSD"
] | null | null | null |
mistral/arch.cc
|
MyskYko/nextpnr
|
4707bfc3c9b3f6605e335586333c6337c2896224
|
[
"0BSD"
] | null | null | null |
/*
* nextpnr -- Next Generation Place and Route
*
* Copyright (C) 2021 Lofty <dan.ravensloft@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <algorithm>
#include "log.h"
#include "nextpnr.h"
#include "placer1.h"
#include "placer_heap.h"
#include "router1.h"
#include "router2.h"
#include "timing.h"
#include "util.h"
#include "cyclonev.h"
NEXTPNR_NAMESPACE_BEGIN
using namespace mistral;
void IdString::initialize_arch(const BaseCtx *ctx)
{
#define X(t) initialize_add(ctx, #t, ID_##t);
#include "constids.inc"
#undef X
}
Arch::Arch(ArchArgs args)
{
this->args = args;
this->cyclonev = mistral::CycloneV::get_model(args.device);
NPNR_ASSERT(this->cyclonev != nullptr);
// Setup fast identifier maps
for (int i = 0; i < 1024; i++) {
IdString int_id = id(stringf("%d", i));
int2id.push_back(int_id);
id2int[int_id] = i;
}
for (int t = int(CycloneV::NONE); t <= int(CycloneV::DCMUX); t++) {
IdString rnode_id = id(CycloneV::rnode_type_names[t]);
rn_t2id.push_back(rnode_id);
id2rn_t[rnode_id] = CycloneV::rnode_type_t(t);
}
log_info("Initialising bels...\n");
bels_by_tile.resize(cyclonev->get_tile_sx() * cyclonev->get_tile_sy());
for (int x = 0; x < cyclonev->get_tile_sx(); x++) {
for (int y = 0; y < cyclonev->get_tile_sy(); y++) {
CycloneV::pos_t pos = cyclonev->xy2pos(x, y);
for (CycloneV::block_type_t bel : cyclonev->pos_get_bels(pos)) {
switch (bel) {
case CycloneV::block_type_t::LAB:
create_lab(x, y);
break;
default:
continue;
}
}
}
}
for (auto gpio_pos : cyclonev->gpio_get_pos())
create_gpio(CycloneV::pos2x(gpio_pos), CycloneV::pos2y(gpio_pos));
for (auto cmuxh_pos : cyclonev->cmuxh_get_pos())
create_clkbuf(CycloneV::pos2x(cmuxh_pos), CycloneV::pos2y(cmuxh_pos));
// This import takes about 5s, perhaps long term we can speed it up, e.g. defer to Mistral more...
log_info("Initialising routing graph...\n");
int pip_count = 0;
for (const auto &mux : cyclonev->dest_node_to_rmux) {
const auto &rmux = cyclonev->rmux_info[mux.second];
WireId dst_wire(mux.first);
for (const auto &src : rmux.sources) {
if (CycloneV::rn2t(src) == CycloneV::NONE)
continue;
WireId src_wire(src);
wires[dst_wire].wires_uphill.push_back(src_wire);
wires[src_wire].wires_downhill.push_back(dst_wire);
++pip_count;
}
}
log_info(" imported %d wires and %d pips\n", int(wires.size()), pip_count);
BaseArch::init_cell_types();
BaseArch::init_bel_buckets();
}
int Arch::getTileBelDimZ(int x, int y) const
{
// This seems like a reasonable upper bound
return 256;
}
BelId Arch::getBelByName(IdStringList name) const
{
BelId bel;
NPNR_ASSERT(name.size() == 4);
int x = id2int.at(name[1]);
int y = id2int.at(name[2]);
int z = id2int.at(name[3]);
bel.pos = CycloneV::xy2pos(x, y);
bel.z = z;
NPNR_ASSERT(name[0] == getBelType(bel));
return bel;
}
IdStringList Arch::getBelName(BelId bel) const
{
int x = CycloneV::pos2x(bel.pos);
int y = CycloneV::pos2y(bel.pos);
int z = bel.z & 0xFF;
std::array<IdString, 4> ids{
getBelType(bel),
int2id.at(x),
int2id.at(y),
int2id.at(z),
};
return IdStringList(ids);
}
bool Arch::isBelLocationValid(BelId bel) const
{
auto &data = bel_data(bel);
if (data.type == id_MISTRAL_COMB) {
return is_alm_legal(data.lab_data.lab, data.lab_data.alm) && check_lab_input_count(data.lab_data.lab);
} else if (data.type == id_MISTRAL_FF) {
return is_alm_legal(data.lab_data.lab, data.lab_data.alm) && check_lab_input_count(data.lab_data.lab) &&
is_lab_ctrlset_legal(data.lab_data.lab);
}
return true;
}
void Arch::update_bel(BelId bel)
{
auto &data = bel_data(bel);
if (data.type == id_MISTRAL_COMB || data.type == id_MISTRAL_FF) {
update_alm_input_count(data.lab_data.lab, data.lab_data.alm);
}
}
WireId Arch::getWireByName(IdStringList name) const
{
// non-mistral wires
auto found_npnr = npnr_wirebyname.find(name);
if (found_npnr != npnr_wirebyname.end())
return found_npnr->second;
// mistral wires
NPNR_ASSERT(name.size() == 4);
CycloneV::rnode_type_t ty = id2rn_t.at(name[0]);
int x = id2int.at(name[1]);
int y = id2int.at(name[2]);
int z = id2int.at(name[3]);
return WireId(CycloneV::rnode(ty, x, y, z));
}
IdStringList Arch::getWireName(WireId wire) const
{
if (wire.is_nextpnr_created()) {
// non-mistral wires
std::array<IdString, 4> ids{
id_WIRE,
int2id.at(CycloneV::rn2x(wire.node)),
int2id.at(CycloneV::rn2y(wire.node)),
wires.at(wire).name_override,
};
return IdStringList(ids);
} else {
std::array<IdString, 4> ids{
rn_t2id.at(CycloneV::rn2t(wire.node)),
int2id.at(CycloneV::rn2x(wire.node)),
int2id.at(CycloneV::rn2y(wire.node)),
int2id.at(CycloneV::rn2z(wire.node)),
};
return IdStringList(ids);
}
}
PipId Arch::getPipByName(IdStringList name) const
{
WireId src = getWireByName(name.slice(0, 4));
WireId dst = getWireByName(name.slice(4, 8));
NPNR_ASSERT(src != WireId());
NPNR_ASSERT(dst != WireId());
return PipId(src.node, dst.node);
}
IdStringList Arch::getPipName(PipId pip) const
{
return IdStringList::concat(getWireName(getPipSrcWire(pip)), getWireName(getPipDstWire(pip)));
}
std::vector<BelId> Arch::getBelsByTile(int x, int y) const
{
// This should probably be redesigned, but it's a hack.
std::vector<BelId> bels;
if (x >= 0 && x < cyclonev->get_tile_sx() && y >= 0 && y < cyclonev->get_tile_sy()) {
for (size_t i = 0; i < bels_by_tile.at(pos2idx(x, y)).size(); i++)
bels.push_back(BelId(CycloneV::xy2pos(x, y), i));
}
return bels;
}
IdString Arch::getBelType(BelId bel) const { return bel_data(bel).type; }
std::vector<IdString> Arch::getBelPins(BelId bel) const
{
std::vector<IdString> pins;
for (auto &p : bel_data(bel).pins)
pins.push_back(p.first);
return pins;
}
bool Arch::isValidBelForCellType(IdString cell_type, BelId bel) const
{
// Any combinational cell type can - theoretically - be placed at a combinational ALM bel
// The precise legality mechanics will be dealt with in isBelLocationValid.
IdString bel_type = getBelType(bel);
if (bel_type == id_MISTRAL_COMB)
return is_comb_cell(cell_type);
else if (bel_type == id_MISTRAL_IO)
return is_io_cell(cell_type);
else if (bel_type == id_MISTRAL_CLKENA)
return is_clkbuf_cell(cell_type);
else
return bel_type == cell_type;
}
BelBucketId Arch::getBelBucketForCellType(IdString cell_type) const
{
if (is_comb_cell(cell_type))
return id_MISTRAL_COMB;
else if (is_io_cell(cell_type))
return id_MISTRAL_IO;
else if (is_clkbuf_cell(cell_type))
return id_MISTRAL_CLKENA;
else
return cell_type;
}
BelId Arch::bel_by_block_idx(int x, int y, IdString type, int block_index) const
{
auto &bels = bels_by_tile.at(pos2idx(x, y));
for (size_t i = 0; i < bels.size(); i++) {
auto &bel_data = bels.at(i);
if (bel_data.type == type && bel_data.block_index == block_index)
return BelId(CycloneV::xy2pos(x, y), i);
}
return BelId();
}
BelId Arch::add_bel(int x, int y, IdString name, IdString type)
{
auto &bels = bels_by_tile.at(pos2idx(x, y));
BelId id = BelId(CycloneV::xy2pos(x, y), bels.size());
all_bels.push_back(id);
bels.emplace_back();
auto &bel = bels.back();
bel.name = name;
bel.type = type;
// TODO: buckets (for example LABs and MLABs in the same bucket)
bel.bucket = type;
return id;
}
WireId Arch::add_wire(int x, int y, IdString name, uint64_t flags)
{
std::array<IdString, 4> ids{
id_WIRE,
int2id.at(x),
int2id.at(y),
name,
};
IdStringList full_name(ids);
auto existing = npnr_wirebyname.find(full_name);
if (existing != npnr_wirebyname.end()) {
// Already exists, don't create anything
return existing->second;
} else {
// Determine a unique ID for the wire
int z = 0;
WireId id;
while (wires.count(id = WireId(CycloneV::rnode(CycloneV::rnode_type_t((z >> 10) + 128), x, y, (z & 0x3FF)))))
z++;
wires[id].name_override = name;
wires[id].flags = flags;
npnr_wirebyname[full_name] = id;
return id;
}
}
void Arch::reserve_route(WireId src, WireId dst)
{
auto &dst_data = wires.at(dst);
int idx = -1;
for (int i = 0; i < int(dst_data.wires_uphill.size()); i++) {
if (dst_data.wires_uphill.at(i) == src) {
idx = i;
break;
}
}
NPNR_ASSERT(idx != -1);
dst_data.flags = WireInfo::RESERVED_ROUTE | unsigned(idx);
}
bool Arch::wires_connected(WireId src, WireId dst) const
{
PipId pip(src.node, dst.node);
return getBoundPipNet(pip) != nullptr;
}
PipId Arch::add_pip(WireId src, WireId dst)
{
wires[src].wires_downhill.push_back(dst);
wires[dst].wires_uphill.push_back(src);
return PipId(src.node, dst.node);
}
void Arch::add_bel_pin(BelId bel, IdString pin, PortType dir, WireId wire)
{
auto &b = bel_data(bel);
NPNR_ASSERT(!b.pins.count(pin));
b.pins[pin].dir = dir;
b.pins[pin].wire = wire;
BelPin bel_pin;
bel_pin.bel = bel;
bel_pin.pin = pin;
wires[wire].bel_pins.push_back(bel_pin);
}
void Arch::assign_default_pinmap(CellInfo *cell)
{
for (auto &port : cell->ports) {
auto &pinmap = cell->pin_data[port.first].bel_pins;
if (!pinmap.empty())
continue; // already mapped
if (is_comb_cell(cell->type) && comb_pinmap.count(port.first))
pinmap.push_back(comb_pinmap.at(port.first)); // default comb mapping for placer purposes
else
pinmap.push_back(port.first); // default: assume bel pin named the same as cell pin
}
}
void Arch::assignArchInfo()
{
for (auto &cell : cells) {
CellInfo *ci = cell.second.get();
if (is_comb_cell(ci->type))
assign_comb_info(ci);
else if (ci->type == id_MISTRAL_FF)
assign_ff_info(ci);
assign_default_pinmap(ci);
}
}
delay_t Arch::estimateDelay(WireId src, WireId dst) const
{
int x0 = CycloneV::rn2x(src.node);
int y0 = CycloneV::rn2y(src.node);
int x1 = CycloneV::rn2x(dst.node);
int y1 = CycloneV::rn2y(dst.node);
return 100 * std::abs(y1 - y0) + 100 * std::abs(x1 - x0) + 100;
}
ArcBounds Arch::getRouteBoundingBox(WireId src, WireId dst) const
{
ArcBounds bounds;
int src_x = CycloneV::rn2x(src.node);
int src_y = CycloneV::rn2y(src.node);
int dst_x = CycloneV::rn2x(dst.node);
int dst_y = CycloneV::rn2y(dst.node);
bounds.x0 = std::min(src_x, dst_x);
bounds.y0 = std::min(src_y, dst_y);
bounds.x1 = std::max(src_x, dst_x);
bounds.y1 = std::max(src_y, dst_y);
return bounds;
}
delay_t Arch::predictDelay(const NetInfo *net_info, const PortRef &sink) const
{
if (net_info->driver.cell == nullptr || net_info->driver.cell->bel == BelId())
return 100;
if (sink.cell->bel == BelId())
return 100;
Loc src_loc = getBelLocation(net_info->driver.cell->bel);
Loc dst_loc = getBelLocation(sink.cell->bel);
return std::abs(dst_loc.y - src_loc.y) * 100 + std::abs(dst_loc.x - src_loc.x) * 100 + 100;
}
bool Arch::place()
{
std::string placer = str_or_default(settings, id("placer"), defaultPlacer);
if (placer == "heap") {
PlacerHeapCfg cfg(getCtx());
cfg.ioBufTypes.insert(id_MISTRAL_IO);
cfg.ioBufTypes.insert(id_MISTRAL_IB);
cfg.ioBufTypes.insert(id_MISTRAL_OB);
cfg.cellGroups.emplace_back();
cfg.cellGroups.back().insert({id_MISTRAL_COMB});
cfg.cellGroups.back().insert({id_MISTRAL_FF});
cfg.beta = 0.5; // TODO: find a good value of beta for sensible ALM spreading
cfg.criticalityExponent = 7;
if (!placer_heap(getCtx(), cfg))
return false;
} else if (placer == "sa") {
if (!placer1(getCtx(), Placer1Cfg(getCtx())))
return false;
} else {
log_error("Mistral architecture does not support placer '%s'\n", placer.c_str());
}
getCtx()->attrs[getCtx()->id("step")] = std::string("place");
archInfoToAttributes();
return true;
}
bool Arch::route()
{
assign_budget(getCtx(), true);
lab_pre_route();
std::string router = str_or_default(settings, id("router"), defaultRouter);
bool result;
if (router == "router1") {
result = router1(getCtx(), Router1Cfg(getCtx()));
} else if (router == "router2") {
router2(getCtx(), Router2Cfg(getCtx()));
result = true;
} else {
log_error("Mistral architecture does not support router '%s'\n", router.c_str());
}
getCtx()->attrs[getCtx()->id("step")] = std::string("route");
archInfoToAttributes();
return result;
}
#ifdef WITH_HEAP
const std::string Arch::defaultPlacer = "heap";
#else
const std::string Arch::defaultPlacer = "sa";
#endif
const std::vector<std::string> Arch::availablePlacers = {"sa",
#ifdef WITH_HEAP
"heap"
#endif
};
const std::string Arch::defaultRouter = "router2";
const std::vector<std::string> Arch::availableRouters = {"router1", "router2"};
NEXTPNR_NAMESPACE_END
| 30.081967
| 117
| 0.623297
|
MyskYko
|
ba7557b4902636f0d5563ea825a20d9ebb50a5bf
| 15,052
|
cpp
|
C++
|
opencl/test/unit_test/helpers/memory_properties_helpers_tests.cpp
|
rscohn2/compute-runtime
|
c0b6e6852d1c3870b089de651c3dd27ca82b1431
|
[
"MIT"
] | 1
|
2020-09-03T17:10:38.000Z
|
2020-09-03T17:10:38.000Z
|
opencl/test/unit_test/helpers/memory_properties_helpers_tests.cpp
|
Acidburn0zzz/compute-runtime
|
79ba0ff1f963c80aec47384728d3733995a0e09c
|
[
"MIT"
] | null | null | null |
opencl/test/unit_test/helpers/memory_properties_helpers_tests.cpp
|
Acidburn0zzz/compute-runtime
|
79ba0ff1f963c80aec47384728d3733995a0e09c
|
[
"MIT"
] | null | null | null |
/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/test/unit_test/mocks/mock_device.h"
#include "shared/test/unit_test/mocks/ult_device_factory.h"
#include "opencl/source/helpers/memory_properties_helpers.h"
#include "opencl/source/mem_obj/mem_obj_helper.h"
#include "opencl/test/unit_test/mocks/mock_context.h"
#include "opencl/test/unit_test/mocks/mock_graphics_allocation.h"
#include "CL/cl_ext_intel.h"
#include "gtest/gtest.h"
using namespace NEO;
TEST(MemoryProperties, givenValidPropertiesWhenCreateMemoryPropertiesThenTrueIsReturned) {
UltDeviceFactory deviceFactory{1, 0};
auto pDevice = deviceFactory.rootDevices[0];
MemoryProperties properties;
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_READ_WRITE, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.readWrite);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_WRITE_ONLY, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.writeOnly);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_READ_ONLY, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.readOnly);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_USE_HOST_PTR, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.useHostPtr);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_ALLOC_HOST_PTR, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.allocHostPtr);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_COPY_HOST_PTR, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.copyHostPtr);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_HOST_WRITE_ONLY, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.hostWriteOnly);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_HOST_READ_ONLY, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.hostReadOnly);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_HOST_NO_ACCESS, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.hostNoAccess);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_KERNEL_READ_AND_WRITE, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.kernelReadAndWrite);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_ACCESS_FLAGS_UNRESTRICTED_INTEL, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.accessFlagsUnrestricted);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_NO_ACCESS_INTEL, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.noAccess);
properties = MemoryPropertiesHelper::createMemoryProperties(0, CL_MEM_LOCALLY_UNCACHED_RESOURCE, 0, pDevice);
EXPECT_TRUE(properties.flags.locallyUncachedResource);
properties = MemoryPropertiesHelper::createMemoryProperties(0, CL_MEM_LOCALLY_UNCACHED_SURFACE_STATE_RESOURCE, 0, pDevice);
EXPECT_TRUE(properties.flags.locallyUncachedInSurfaceState);
properties = MemoryPropertiesHelper::createMemoryProperties(CL_MEM_FORCE_SHARED_PHYSICAL_MEMORY_INTEL, 0, 0, pDevice);
EXPECT_TRUE(properties.flags.forceSharedPhysicalMemory);
properties = MemoryPropertiesHelper::createMemoryProperties(0, 0, CL_MEM_ALLOC_WRITE_COMBINED_INTEL, pDevice);
EXPECT_TRUE(properties.allocFlags.allocWriteCombined);
properties = MemoryPropertiesHelper::createMemoryProperties(0, CL_MEM_48BIT_RESOURCE_INTEL, 0, pDevice);
EXPECT_TRUE(properties.flags.resource48Bit);
}
TEST(MemoryProperties, givenClMemForceLinearStorageFlagWhenCreateMemoryPropertiesThenReturnProperValue) {
UltDeviceFactory deviceFactory{1, 0};
auto pDevice = deviceFactory.rootDevices[0];
MemoryProperties memoryProperties;
cl_mem_flags flags = 0;
cl_mem_flags_intel flagsIntel = 0;
flags |= CL_MEM_FORCE_LINEAR_STORAGE_INTEL;
flagsIntel = 0;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.forceLinearStorage);
flags = 0;
flagsIntel |= CL_MEM_FORCE_LINEAR_STORAGE_INTEL;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.forceLinearStorage);
flags |= CL_MEM_FORCE_LINEAR_STORAGE_INTEL;
flagsIntel |= CL_MEM_FORCE_LINEAR_STORAGE_INTEL;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.forceLinearStorage);
flags = 0;
flagsIntel = 0;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_FALSE(memoryProperties.flags.forceLinearStorage);
}
TEST(MemoryProperties, givenClAllowUnrestrictedSizeFlagWhenCreateMemoryPropertiesThenReturnProperValue) {
UltDeviceFactory deviceFactory{1, 0};
auto pDevice = deviceFactory.rootDevices[0];
MemoryProperties memoryProperties;
cl_mem_flags flags = 0;
cl_mem_flags_intel flagsIntel = 0;
flags |= CL_MEM_ALLOW_UNRESTRICTED_SIZE_INTEL;
flagsIntel = 0;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.allowUnrestrictedSize);
flags = 0;
flagsIntel |= CL_MEM_ALLOW_UNRESTRICTED_SIZE_INTEL;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.allowUnrestrictedSize);
flags |= CL_MEM_ALLOW_UNRESTRICTED_SIZE_INTEL;
flagsIntel |= CL_MEM_ALLOW_UNRESTRICTED_SIZE_INTEL;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_TRUE(memoryProperties.flags.allowUnrestrictedSize);
flags = 0;
flagsIntel = 0;
memoryProperties = MemoryPropertiesHelper::createMemoryProperties(flags, flagsIntel, 0, pDevice);
EXPECT_FALSE(memoryProperties.flags.allowUnrestrictedSize);
}
struct MemoryPropertiesHelperTests : ::testing::Test {
MockContext context;
MemoryProperties memoryProperties;
cl_mem_flags flags = 0;
cl_mem_flags_intel flagsIntel = 0;
cl_mem_alloc_flags_intel allocflags = 0;
};
TEST_F(MemoryPropertiesHelperTests, givenNullPropertiesWhenParsingMemoryPropertiesThenTrueIsReturned) {
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(nullptr, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::UNKNOWN, context));
}
TEST_F(MemoryPropertiesHelperTests, givenEmptyPropertiesWhenParsingMemoryPropertiesThenTrueIsReturned) {
cl_mem_properties_intel properties[] = {0};
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::UNKNOWN, context));
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenValidPropertiesWhenParsingMemoryPropertiesThenTrueIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
CL_MEM_READ_WRITE | CL_MEM_WRITE_ONLY | CL_MEM_READ_ONLY | CL_MEM_ALLOC_HOST_PTR | CL_MEM_COPY_HOST_PTR |
CL_MEM_USE_HOST_PTR | CL_MEM_HOST_WRITE_ONLY | CL_MEM_HOST_READ_ONLY | CL_MEM_HOST_NO_ACCESS,
CL_MEM_FLAGS_INTEL,
CL_MEM_LOCALLY_UNCACHED_RESOURCE | CL_MEM_LOCALLY_UNCACHED_SURFACE_STATE_RESOURCE,
CL_MEM_ALLOC_FLAGS_INTEL,
CL_MEM_ALLOC_WRITE_COMBINED_INTEL, CL_MEM_ALLOC_DEFAULT_INTEL,
0};
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::UNKNOWN, context));
}
TEST_F(MemoryPropertiesHelperTests, givenValidPropertiesWhenParsingMemoryPropertiesForBufferThenTrueIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForBuffer,
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForBufferIntel,
0};
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
}
TEST_F(MemoryPropertiesHelperTests, givenValidPropertiesWhenParsingMemoryPropertiesForImageThenTrueIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForImage,
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForImageIntel,
0};
EXPECT_TRUE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidPropertiesWhenParsingMemoryPropertiesThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
(1 << 30), CL_MEM_ALLOC_HOST_PTR | CL_MEM_COPY_HOST_PTR | CL_MEM_USE_HOST_PTR,
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::UNKNOWN, context));
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidPropertiesWhenParsingMemoryPropertiesForImageThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForBuffer,
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForBufferIntel,
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidFlagsWhenParsingMemoryPropertiesForImageThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
(1 << 30),
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForImageIntel,
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidFlagsIntelWhenParsingMemoryPropertiesForImageThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForImage,
CL_MEM_FLAGS_INTEL,
(1 << 30),
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::IMAGE, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidPropertiesWhenParsingMemoryPropertiesForBufferThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForImage,
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForImageIntel,
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidFlagsWhenParsingMemoryPropertiesForBufferThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
(1 << 30),
CL_MEM_FLAGS_INTEL,
MemObjHelper::validFlagsForBufferIntel,
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
}
TEST_F(MemoryPropertiesHelperTests, givenInvalidFlagsIntelWhenParsingMemoryPropertiesForBufferThenFalseIsReturned) {
cl_mem_properties_intel properties[] = {
CL_MEM_FLAGS,
MemObjHelper::validFlagsForBuffer,
CL_MEM_FLAGS_INTEL,
(1 << 30),
0};
EXPECT_FALSE(MemoryPropertiesHelper::parseMemoryProperties(properties, memoryProperties, flags, flagsIntel, allocflags,
MemoryPropertiesHelper::ObjType::BUFFER, context));
}
TEST_F(MemoryPropertiesHelperTests, givenDifferentParametersWhenCallingFillCachePolicyInPropertiesThenFlushL3FlagsAreCorrectlySet) {
AllocationProperties allocationProperties{mockRootDeviceIndex, 0, GraphicsAllocation::AllocationType::BUFFER, mockDeviceBitfield};
for (auto uncached : ::testing::Bool()) {
for (auto readOnly : ::testing::Bool()) {
for (auto deviceOnlyVisibilty : ::testing::Bool()) {
if (uncached || readOnly || deviceOnlyVisibilty) {
allocationProperties.flags.flushL3RequiredForRead = true;
allocationProperties.flags.flushL3RequiredForWrite = true;
MemoryPropertiesHelper::fillCachePolicyInProperties(allocationProperties, uncached, readOnly, deviceOnlyVisibilty);
EXPECT_FALSE(allocationProperties.flags.flushL3RequiredForRead);
EXPECT_FALSE(allocationProperties.flags.flushL3RequiredForWrite);
} else {
allocationProperties.flags.flushL3RequiredForRead = false;
allocationProperties.flags.flushL3RequiredForWrite = false;
MemoryPropertiesHelper::fillCachePolicyInProperties(allocationProperties, uncached, readOnly, deviceOnlyVisibilty);
EXPECT_TRUE(allocationProperties.flags.flushL3RequiredForRead);
EXPECT_TRUE(allocationProperties.flags.flushL3RequiredForWrite);
}
}
}
}
}
| 49.35082
| 135
| 0.732261
|
rscohn2
|
ba759b8fcb848d440e6d9a154daa88494d6299d8
| 27,354
|
hpp
|
C++
|
esp/bindings/SOAP/Platform/soapmessage.hpp
|
oxhead/HPCC-Platform
|
62e092695542a9bbea1bb3672f0d1ff572666cfc
|
[
"Apache-2.0"
] | null | null | null |
esp/bindings/SOAP/Platform/soapmessage.hpp
|
oxhead/HPCC-Platform
|
62e092695542a9bbea1bb3672f0d1ff572666cfc
|
[
"Apache-2.0"
] | null | null | null |
esp/bindings/SOAP/Platform/soapmessage.hpp
|
oxhead/HPCC-Platform
|
62e092695542a9bbea1bb3672f0d1ff572666cfc
|
[
"Apache-2.0"
] | null | null | null |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
############################################################################## */
#pragma warning( disable : 4786)
#ifndef esp_http_decl
#define esp_http_decl
#endif
#ifndef _SOAPMESSAGE_HPP__
#define _SOAPMESSAGE_HPP__
#include "jliball.hpp"
#include "jexcept.hpp"
#include "soapesp.hpp"
#include "esp.hpp"
#include "http/platform/mime.hpp"
#include "http/platform/httptransport.hpp"
#include <xpp/XmlPullParser.h>
#include "xslprocessor.hpp"
#define SOAP_OK 0
#define SOAP_CLIENT_ERROR -1
#define SOAP_SERVER_ERROR -2
#define SOAP_RPC_ERROR -3
#define SOAP_CONNECTION_ERROR -4
#define SOAP_REQUEST_TYPE_ERROR -5
#define SOAP_AUTHENTICATION_ERROR -6
#define SOAP_AUTHENTICATION_REQUIRED -7
#define SOAP_ENVELOPE_NAME "Envelope"
#define SOAP_HEADER_NAME "Header"
#define SOAP_BODY_NAME "Body"
class CSoapValue;
typedef IArrayOf<CSoapValue> SoapValueArray;
using namespace std;
using namespace xpp;
const char* const SOAPEnvelopeStart = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
"<soap:Envelope"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\""
" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\""
// " xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\""
" xmlns:wsse=\"http://schemas.xmlsoap.org/ws/2002/04/secext\""
">";
const char* const SOAPEnvelopeEnd = "</soap:Envelope>";
class CSoapMessage : public CInterface, implements ISoapMessage
{
private:
StringAttr m_content_type;
StringAttr m_soapaction;
StringBuffer m_text;
protected:
Owned<IEspContext> m_context;
Owned<CMimeMultiPart> m_multipart;
public:
IMPLEMENT_IINTERFACE;
CSoapMessage() {};
virtual ~CSoapMessage() {};
virtual void set_text(const char* text);
virtual const char* get_text();
virtual StringBuffer& query_text() { return m_text;}
virtual int get_text_length();
virtual void set_content_type(const char* content_type);
virtual const char* get_content_type();
virtual void set_soapaction(const char* soapaction) {m_soapaction.set(soapaction);};
virtual const char* get_soapaction() {return m_soapaction.get();};
virtual const char * getMessageType() {return "SoapMessage";};
virtual StringBuffer& toString(StringBuffer& str)
{
str.append("TO BE IMPLEMNTED!!!");
return str;
};
virtual IEspContext * queryContext() { return m_context; }
virtual void setContext(IEspContext *ctx) { m_context.set(ctx); }
virtual void setOwnMultiPart(CMimeMultiPart* multipart)
{
m_multipart.setown(multipart);
}
virtual CMimeMultiPart* queryMultiPart()
{
return m_multipart.get();
}
};
class CSoapFault : public CSoapMessage
{
protected:
StringBuffer SoapStr;
void AppendDetails(int code, const char* message, const char* actor="", const char* detailNS=NULL, const char* details = NULL)
{
StringBuffer encFaultStr;
encodeXML(message, encFaultStr);
SoapStr.append(SOAPEnvelopeStart);
SoapStr.append("<soap:Body><soap:Fault>");
SoapStr.appendf("<faultcode>%d</faultcode>"
"<faultstring>%s</faultstring>"
"<faultactor>%s</faultactor>", code,encFaultStr.str(),actor);
if (detailNS)
{
const char* p = strstr(details,"<Exceptions>");
if (p)
{
StringBuffer newDetails(details);
VStringBuffer nsAttr(" %s", detailNS);
newDetails.insert(strlen("<Exceptions>")-1,nsAttr.str());
SoapStr.appendf("<detail>%s</detail>",newDetails.str());
}
}
SoapStr.append("</soap:Fault></soap:Body>");
SoapStr.append(SOAPEnvelopeEnd);
}
public:
IMPLEMENT_IINTERFACE;
CSoapFault(int code, const char* message)
{
AppendDetails(code,message);
}
CSoapFault(IMultiException* mex, const char* detailNS=NULL)
{
StringBuffer errorStr,details;
mex->errorMessage(errorStr);
mex->serialize(details);
AppendDetails(mex->errorCode(),errorStr.str(),mex->source(),detailNS,details.str());
}
CSoapFault(IException* e)
{
StringBuffer errorStr;
e->errorMessage(errorStr);
AppendDetails(e->errorCode(),errorStr.str());
}
virtual const char* get_text() { return SoapStr.str(); }
virtual int get_text_length() { return SoapStr.length(); }
};
class CSoapRequest : public CSoapMessage
{
public:
CSoapRequest() {};
virtual ~CSoapRequest() {};
};
class CSoapResponse : public CSoapMessage
{
private:
int m_status;
StringBuffer m_err;
public:
CSoapResponse(){m_status = SOAP_OK;};
virtual ~CSoapResponse() {};
virtual void set_status(int status);
virtual int get_status();
virtual void set_err(const char* err);
virtual const char* get_err();
};
class esp_http_decl CSoapValue : public CInterface, implements IInterface //ISoapValue
{
private:
StringAttr m_ns;
StringAttr m_name;
StringAttr m_type;
StringBuffer m_value;
SoapValueArray m_children;
Owned<IProperties> m_attributes;
bool m_is_array_element;
bool m_encode_xml;
void serialize_attributes(StringBuffer& outbuf);
void init(const char* ns, const char* name, const char* type, const char* value);
public:
IMPLEMENT_IINTERFACE;
CSoapValue(CSoapValue* soapvalue);
CSoapValue(const char* ns, const char* name, const char* type, const char* value, bool encode=true);
CSoapValue(const char* ns, const char* name, const char* type, int value);
CSoapValue(const char* ns, const char* name, const char* type, unsigned long value);
CSoapValue(const char* ns, const char* name, const char* type, __int64 value);
CSoapValue(const char* ns, const char* name, const char* type, unsigned int value);
CSoapValue(const char* ns, const char* name, const char* type, unsigned short value);
CSoapValue(const char* ns, const char* name, const char* type, double value);
CSoapValue(const char* ns, const char* name, const char* type, float value);
CSoapValue(const char* ns, const char* name, const char* type, bool value);
virtual ~CSoapValue() { }
void setEncodeXml(bool encode=true){m_encode_xml=encode;}
virtual const char* get_name() {return m_name.get();};
virtual CSoapValue* get_value(const char* path);
virtual CSoapValue* get_element(const char* path, StringBuffer *attrname);
virtual SoapValueArray* get_valuearray(const char* path);
virtual SoapValueArray* query_children(){return &m_children;}
virtual bool get_value_str(const char* path, StringBuffer& value);
virtual const char *query_value(const char* path);
virtual const char* query_attr_value(const char *path);
virtual bool get_value(const char* path, StringAttr& value);
virtual bool get_value(const char* path, StringBuffer& value);
virtual bool get_value(const char* path, StringBuffer& value, bool simpleXml);
virtual bool get_value(const char* path, const char*& value) { throw "should not be called"; }
virtual bool get_value(const char* path, int& value);
virtual bool get_value(const char* path, unsigned long& value);
virtual bool get_value(const char* path, unsigned char& value);
virtual bool get_value(const char* path, long& value);
virtual bool get_value(const char* path, __int64& value);
virtual bool get_value(const char* path, unsigned int& value);
virtual bool get_value(const char* path, unsigned short& value);
virtual bool get_value(const char* path, short& value);
virtual bool get_value(const char* path, StringArray& value, bool simpleXml);
virtual bool get_value(const char* path, StringArray& value) { return get_value(path,value,false); }
virtual bool get_value(const char* path, ShortArray& value);
virtual bool get_value(const char* path, IntArray& value);
virtual bool get_value(const char* path, Int64Array& value);
virtual bool get_value(const char* path, BoolArray& value);
virtual bool get_value(const char* path, FloatArray& value);
virtual bool get_value(const char* path, DoubleArray& value);
virtual bool get_value(const char* path, bool& value);
virtual bool get_value(const char* path, double& value);
virtual bool get_value(const char* path, float& value);
virtual void set_value(const char* value) {m_value.clear(); m_value.append(value);};
virtual void add_value(const char* path, const char* ns, CSoapValue* value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, SoapValueArray& valuearray);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value, bool encodeXml);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, int value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned long value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, long value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, __int64 value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned int value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned short value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, bool value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, double value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, float value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, StringArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, ShortArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, IntArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, Int64Array& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, BoolArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, FloatArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* childns,
const char* childname, const char* childtype, DoubleArray& value);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value, IProperties& attrs);
void add_attribute(const char* name, const char* value);
virtual CSoapValue* ensure(const char* ns, const char* path);
virtual void add_child(CSoapValue* child);
virtual void serializeChildren(StringBuffer& outbuf, CMimeMultiPart* multipart);
virtual void serialize(StringBuffer& outbuf, CMimeMultiPart* multipart);
virtual void serializeContent(StringBuffer& outbuf, CMimeMultiPart* multipart);
virtual void simple_serialize(StringBuffer& outbuf);
virtual void simple_serializeChildren(StringBuffer& outbuf);
};
class esp_http_decl CRpcMessage : public CInterface, implements IRpcMessage
{
private:
StringAttr m_ns;
StringAttr m_nsuri;
StringAttr m_name;
StringBuffer m_text;
StringAttr m_serializedContent;
Owned<IEspContext> m_context;
Owned<CSoapValue> m_params;
Owned<IProperties> m_attributes;
bool m_encode_xml;
public:
IMPLEMENT_IINTERFACE;
CRpcMessage()
{
Init();
};
CRpcMessage(const char* name)
{
m_name.set(name);
Init();
};
void Init()
{
m_params.setown(new CSoapValue("", ".", "", ""));
m_encode_xml = true;
m_params->setEncodeXml(true);
}
virtual ~CRpcMessage(){};
void setEncodeXml(bool encode)
{
m_encode_xml = encode;
m_params->setEncodeXml(encode);
}
bool getEncodeXml(){return m_encode_xml;}
virtual IEspContext * queryContext(){return m_context;}
void setContext(IEspContext *value){m_context.set(value);}
virtual void set_ns(const char* ns) {m_ns.set(ns);};
virtual void set_nsuri(const char* nsuri) {m_nsuri.set(nsuri);};
virtual StringBuffer& get_nsuri(StringBuffer& nsuri)
{
nsuri.append(m_nsuri.get());
return nsuri;
};
virtual const char* get_name() {return m_name.get();};
virtual void set_name(const char* name) {m_name.set(name);};
virtual CSoapValue* get_value(const char* path) {return m_params->get_value(path); };
virtual SoapValueArray* get_valuearray(const char* path) {return m_params->get_valuearray(path); };
virtual bool get_value(const char* path, StringAttr& value){return m_params->get_value(path, value); };
virtual bool get_value(const char* path, StringBuffer& value){return m_params->get_value(path, value); };
virtual bool get_value(const char* path, StringBuffer& value, bool bSimpleXml){return m_params->get_value(path, value, bSimpleXml); };
virtual bool get_value(const char* path, int& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, unsigned long& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, unsigned char& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, long& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, __int64& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, unsigned int& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, unsigned short& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, short& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, bool& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, double& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, float& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, StringArray& value) {return m_params->get_value(path, value, false);};
virtual bool get_value(const char* path, StringArray& value, bool simpleXml) {return m_params->get_value(path, value, simpleXml);};
virtual bool get_value(const char* path, ShortArray& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, IntArray& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, Int64Array& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, BoolArray& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, FloatArray& value) {return m_params->get_value(path, value);};
virtual bool get_value(const char* path, DoubleArray& value) {return m_params->get_value(path, value);};
virtual void add_value(const char* path, const char* ns, CSoapValue* value)
{
m_params->add_value(path, ns, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, SoapValueArray& valuearray)
{
m_params->add_value(path, ns, name, type, valuearray);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value, bool encodeXml)
{
m_params->add_value(path, ns, name, type, value, encodeXml);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, StringBuffer& value)
{
m_params->add_value(path, ns, name, type, value.str());
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, int value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned long value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, long value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, __int64 value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned int value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, unsigned short value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, bool value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, double value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, float value)
{
m_params->add_value(path, ns, name, type, value);
}
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, StringArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, ShortArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, IntArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, Int64Array& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, FloatArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, DoubleArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
virtual void add_value(const char* path, const char* ns, const char* name,
const char* childns, const char* childname, const char* childtype, BoolArray& value)
{ m_params->add_value(path, ns, name, childns, childname, childtype, value); }
void add_attribute(const char* name, const char* value);
void serialize_attributes(StringBuffer& outbuf);
virtual void add_attr(const char * path, const char * name, const char * value, IProperties & attrs);
virtual void add_value(const char* path, const char* ns, const char* name, const char* type, const char* value, IProperties& attrs)
{
m_params->add_value(path, ns, name, type, value, attrs);
}
virtual void add_value(const char* path, const char* name, const char* value, IProperties& attrs)
{
add_value(path, "", name, "", value, attrs);
}
//virtual void marshall(StringBuffer& outbuf);
virtual void marshall(StringBuffer& outbuf, CMimeMultiPart* multipart);
virtual void simple_marshall(StringBuffer& outbuf);
virtual const char* get_text() {return m_text.str();};
virtual void set_text(const char* text) {m_text.clear(); m_text.append(text);};
virtual void append_text(const char* text) {m_text.append(text);};
virtual void unmarshall(XmlPullParser* xpp);
virtual void unmarshall(XmlPullParser* xpp, CSoapValue* soapvalue, const char* tagname);
virtual void unmarshall(XmlPullParser* xpp, CMimeMultiPart* multipart);
virtual void unmarshall(XmlPullParser* xpp, CSoapValue* soapvalue, const char* tagname, CMimeMultiPart* multipart);
virtual void marshall(StringBuffer & outbuf)
{
throw MakeStringException(-1, "not implemented");
}
virtual void setSerializedContent(const char* c) { m_serializedContent.set(c); }
};
esp_http_decl IRpcMessage* createRpcMessage(const char* rootTag,StringBuffer& src);
class CRpcCall : public CRpcMessage
{
private:
StringBuffer m_proxy;
StringAttr m_url;
public:
CRpcCall() {};
CRpcCall(const char* url) {m_url.set(url);}
virtual ~CRpcCall(){}
virtual const char* get_url() {return m_url.get();}
virtual void set_url(const char* url) {m_url.set(url);}
virtual const char* getProxy() {return m_proxy.str();}
virtual void setProxy(const char* proxy) {m_proxy.clear().append(proxy);}
};
class CRpcResponse : public CRpcMessage
{
private:
int m_status;
StringBuffer m_err;
public:
CRpcResponse(){ }
CRpcResponse(const char* name):CRpcMessage(name) { }
virtual ~CRpcResponse(){ }
virtual int get_status() { return m_status; }
virtual void set_status(int status) { m_status = status; }
void set_err(const char* err) { m_err.clear().append(err); }
const char* get_err() { return m_err.str(); }
bool handleExceptions(IXslProcessor *xslp, IMultiException *me, const char *serv, const char *meth, const char *errorXslt);
};
class CHeader : public CInterface, implements IInterface
{
private:
IArrayOf<IRpcMessage> m_headerblocks;
public:
IMPLEMENT_IINTERFACE;
CHeader(){};
virtual ~CHeader(){};
virtual void addHeaderBlock(IRpcMessage* block);
virtual int getNumBlocks();
virtual IRpcMessage* getHeaderBlock(int seq);
virtual IRpcMessage* getHeaderBlock(const char* name);
virtual void unmarshall(XmlPullParser* xpp);
virtual StringBuffer& marshall(StringBuffer& str, CMimeMultiPart* multipart);
virtual const char * getMessageType() {return "EnvelopeHeader";};
};
class CBody : public CInterface, implements IInterface
{
private:
XmlPullParser* m_xpp;
IArrayOf<IRpcMessage> m_rpcmessages;
public:
IMPLEMENT_IINTERFACE;
CBody() : m_xpp(NULL) { }
virtual ~CBody() { }
virtual XmlPullParser* get_xpp() {return m_xpp;};
virtual void set_xpp(XmlPullParser* xpp) {m_xpp = xpp;};
virtual void add_rpcmessage(IRpcMessage* rpcmessage) {
if(rpcmessage)
{
m_rpcmessages.append(*LINK(rpcmessage));
}
};
virtual void nextRpcMessage(IRpcMessage* rpcmessage);
virtual const char * getMessageType() {return "EnvelopeBody";};
virtual StringBuffer& marshall(StringBuffer& str, CMimeMultiPart* multipart) {
str.append("<soap:Body>");
ForEachItemIn(x, m_rpcmessages)
{
IRpcMessage& oneelem = m_rpcmessages.item(x);
StringBuffer oneelembuf;
oneelem.marshall(oneelembuf, multipart);
str.append(oneelembuf.str());
//str.append("\r\n");
}
str.append("</soap:Body>");
return str;
};
};
class CEnvelope : public CInterface, implements IInterface
{
private:
Owned<CHeader> m_header;
Owned<CBody> m_body;
public:
IMPLEMENT_IINTERFACE;
CEnvelope(){m_header.setown(new CHeader); m_body.setown(new CBody);};
CEnvelope(CHeader* header, CBody* body) {m_header.setown(header); m_body.setown(body);};
virtual ~CEnvelope(){};
virtual CHeader* get_header() {return m_header.get();}
virtual CBody* get_body() {return m_body.get();}
virtual void unmarshall(XmlPullParser* xpp);
virtual const char * getMessageType() {return "SoapEnvelope";};
virtual void marshall(CMimeMultiPart* multipart)
{
CMimeBodyPart* rootpart = new CMimeBodyPart("text/xml", "8bit", "soaproot", "", NULL);
multipart->setRootPart(rootpart);
StringBuffer str(SOAPEnvelopeStart);
if(m_header)
{
m_header->marshall(str, multipart);
//str.append("\r\n");
}
if(m_body)
{
m_body->marshall(str, multipart);
//str.append("\r\n");
}
str.append(SOAPEnvelopeEnd);
// str.append("</soap:Envelope>");
rootpart->setContent(str.length(), str.str());
if(multipart->getBodyCount() <= 1)
multipart->setContentType(HTTP_TYPE_TEXT_XML_UTF8);
else
multipart->setContentType(HTTP_TYPE_MULTIPART_RELATED);
};
};
#endif
| 40.705357
| 138
| 0.672187
|
oxhead
|
ba76ec310ab996d0702c19fa8d6da305c5c67e1c
| 5,633
|
cpp
|
C++
|
gzip.cpp
|
nvbodong/cryptopp-NV_8_2_0
|
d9226d28cbf15cee40dad53a828f78bf7631fa37
|
[
"BSL-1.0"
] | null | null | null |
gzip.cpp
|
nvbodong/cryptopp-NV_8_2_0
|
d9226d28cbf15cee40dad53a828f78bf7631fa37
|
[
"BSL-1.0"
] | null | null | null |
gzip.cpp
|
nvbodong/cryptopp-NV_8_2_0
|
d9226d28cbf15cee40dad53a828f78bf7631fa37
|
[
"BSL-1.0"
] | null | null | null |
// gzip.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h"
#include "gzip.h"
#include "argnames.h"
NAMESPACE_BEGIN(CryptoPP_NV_2)
// Checks whether the character is valid for ISO/IEC 8859-1 as required by RFC 1952
static inline bool Is8859Character(char c) {
const unsigned char cc = static_cast<unsigned char>(c);
return (cc >= 32 && cc <= 126) || (cc >= 160);
}
void Gzip::IsolatedInitialize(const NameValuePairs ¶meters)
{
Deflator::IsolatedInitialize(parameters);
ConstByteArrayParameter v;
if (parameters.GetValue(Name::FileName(), v))
m_filename.assign(reinterpret_cast<const char*>(v.begin()), v.size());
if (parameters.GetValue(Name::Comment(), v))
m_comment.assign(reinterpret_cast<const char*>(v.begin()), v.size());
m_filetime = parameters.GetIntValueWithDefault(Name::FileTime(), 0);
}
void Gzip::WritePrestreamHeader()
{
m_totalLen = 0;
m_crc.Restart();
int flags = 0;
if(!m_filename.empty())
flags |= FILENAME;
if(!m_comment.empty())
flags |= COMMENTS;
AttachedTransformation()->Put(MAGIC1);
AttachedTransformation()->Put(MAGIC2);
AttachedTransformation()->Put(DEFLATED);
AttachedTransformation()->Put((byte)flags); // general flag
AttachedTransformation()->PutWord32(m_filetime, LITTLE_ENDIAN_ORDER); // time stamp
byte extra = static_cast<byte>((GetDeflateLevel() == 1) ?
FAST : ((GetDeflateLevel() == 9) ? SLOW : 0));
AttachedTransformation()->Put(extra);
AttachedTransformation()->Put(GZIP_OS_CODE);
// Filename is NULL terminated, hence the +1
if(!m_filename.empty())
AttachedTransformation()->Put((const unsigned char*)m_filename.data(), m_filename.size() +1);
// Comment is NULL terminated, hence the +1
if(!m_comment.empty())
AttachedTransformation()->Put((const unsigned char*)m_comment.data(), m_comment.size() +1);
}
void Gzip::ProcessUncompressedData(const byte *inString, size_t length)
{
m_crc.Update(inString, length);
m_totalLen += (word32)length;
}
void Gzip::WritePoststreamTail()
{
SecByteBlock crc(4);
m_crc.Final(crc);
AttachedTransformation()->Put(crc, 4);
AttachedTransformation()->PutWord32(m_totalLen, LITTLE_ENDIAN_ORDER);
m_filetime = 0;
m_filename.clear();
m_comment.clear();
}
void Gzip::SetComment(const std::string& comment, bool throwOnEncodingError)
{
if(throwOnEncodingError)
{
for(size_t i = 0; i < comment.length(); i++) {
const char c = comment[i];
if(!Is8859Character(c))
throw InvalidDataFormat("The comment is not ISO/IEC 8859-1 encoded");
}
}
m_comment = comment;
}
void Gzip::SetFilename(const std::string& filename, bool throwOnEncodingError)
{
if(throwOnEncodingError)
{
for(size_t i = 0; i < filename.length(); i++) {
const char c = filename[i];
if(!Is8859Character(c))
throw InvalidDataFormat("The filename is not ISO/IEC 8859-1 encoded");
}
}
m_filename = filename;
}
// *************************************************************
Gunzip::Gunzip(BufferedTransformation *attachment, bool repeat, int propagation)
: Inflator(attachment, repeat, propagation), m_length(0), m_filetime(0)
{
}
void Gunzip::ProcessPrestreamHeader()
{
m_length = 0;
m_crc.Restart();
m_filetime = 0;
m_filename.clear();
m_comment.clear();
byte buf[6];
byte b, flags;
if (m_inQueue.Get(buf, 2)!=2) throw HeaderErr();
if (buf[0] != MAGIC1 || buf[1] != MAGIC2) throw HeaderErr();
if (!m_inQueue.Get(b) || (b != DEFLATED)) throw HeaderErr(); // skip CM flag
if (!m_inQueue.Get(flags)) throw HeaderErr();
if (flags & (ENCRYPTED | CONTINUED)) throw HeaderErr();
if (m_inQueue.GetWord32(m_filetime, LITTLE_ENDIAN_ORDER) != 4) throw HeaderErr();
if (m_inQueue.Skip(2)!=2) throw HeaderErr(); // Skip extra flags and OS type
if (flags & EXTRA_FIELDS) // skip extra fields
{
word16 length;
if (m_inQueue.GetWord16(length, LITTLE_ENDIAN_ORDER) != 2) throw HeaderErr();
if (m_inQueue.Skip(length)!=length) throw HeaderErr();
}
if (flags & FILENAME) // extract filename
{
do
{
if(!m_inQueue.Get(b)) throw HeaderErr();
if(b) m_filename.append( 1, (char)b );
}
while (b);
}
if (flags & COMMENTS) // extract comments
{
do
{
if(!m_inQueue.Get(b)) throw HeaderErr();
if(b) m_comment.append( 1, (char)b );
}
while (b);
}
}
void Gunzip::ProcessDecompressedData(const byte *inString, size_t length)
{
AttachedTransformation()->Put(inString, length);
m_crc.Update(inString, length);
m_length += (word32)length;
}
void Gunzip::ProcessPoststreamTail()
{
SecByteBlock crc(4);
if (m_inQueue.Get(crc, 4) != 4)
throw TailErr();
if (!m_crc.Verify(crc))
throw CrcErr();
word32 lengthCheck;
if (m_inQueue.GetWord32(lengthCheck, LITTLE_ENDIAN_ORDER) != 4)
throw TailErr();
if (lengthCheck != m_length)
throw LengthErr();
}
const std::string& Gunzip::GetComment(bool throwOnEncodingError) const
{
if(throwOnEncodingError)
{
for(size_t i = 0; i < m_comment.length(); i++) {
const char c = m_comment[i];
if(!Is8859Character(c))
throw InvalidDataFormat("The comment is not ISO/IEC 8859-1 encoded");
}
}
return m_comment;
}
const std::string& Gunzip::GetFilename(bool throwOnEncodingError) const
{
if(throwOnEncodingError)
{
for(size_t i = 0; i < m_filename.length(); i++) {
const char c = m_filename[i];
if(!Is8859Character(c))
throw InvalidDataFormat("The filename is not ISO/IEC 8859-1 encoded");
}
}
return m_filename;
}
NAMESPACE_END
| 26.952153
| 96
| 0.665542
|
nvbodong
|
ba78390bfc840a22d880e234fcc8cf6f38249a7c
| 1,594
|
cpp
|
C++
|
THEVERSION/lib/SafeTexture.cpp
|
gordonfreeman424/GSGE
|
8814710ed89fb1abb05b595aa6af6f8893aafee5
|
[
"BSD-2-Clause"
] | 4
|
2020-11-01T01:53:06.000Z
|
2021-06-04T02:02:30.000Z
|
THEVERSION/lib/SafeTexture.cpp
|
gordonfreeman424/GSGE
|
8814710ed89fb1abb05b595aa6af6f8893aafee5
|
[
"BSD-2-Clause"
] | null | null | null |
THEVERSION/lib/SafeTexture.cpp
|
gordonfreeman424/GSGE
|
8814710ed89fb1abb05b595aa6af6f8893aafee5
|
[
"BSD-2-Clause"
] | null | null | null |
#include "SafeTexture.h"
#include <cassert>
#include <iostream>
namespace gekRender {
SafeTexture::SafeTexture(GLuint texture_object) {
m_texture = texture_object;
DaddyO = nullptr;
TextureUpdates = false;
if (texture_object)
isnull = false;
else
isnull = true;
}
SafeTexture::SafeTexture(Texture* inTex) // What texture should this be a copy of?
{
if (inTex) {
m_texture = inTex->getHandle();
isTransparent = inTex->amITransparent();
TextureUpdates = true;
DaddyO = inTex;
isnull = false;
} else {
isnull = true;
}
}
void SafeTexture::bind(unsigned int unit) {
if (DaddyO && TextureUpdates)
m_texture = DaddyO->getHandle();
assert(unit >= 0 && unit <= 31);
glActiveTexture(GL_TEXTURE0 + unit);
glBindTexture(GL_TEXTURE_2D, m_texture);
}
SafeTexture::~SafeTexture() {
// What needs to be destroyed? Nothing! NOTHING NEEDS TO BE DESTROYED!
DaddyO = nullptr;
TextureUpdates = false;
};
SafeTexture::SafeTexture(const SafeTexture& other) {
isTransparent = other.amITransparent();
m_texture = other.getHandle();
isnull = other.amINull();
TextureUpdates = other.TextureUpdates;
DaddyO = other.DaddyO;
}
bool SafeTexture::operator==(const SafeTexture& other) { return (other.getHandle() == getHandle()); }
void SafeTexture::bindGeneric() {
if (DaddyO && TextureUpdates)
m_texture = DaddyO->getHandle();
glBindTexture(GL_TEXTURE_2D, m_texture);
}
void SafeTexture::setActiveUnit(unsigned int unit) {
assert(unit >= 0 && unit <= 31);
glActiveTexture(GL_TEXTURE0 + unit);
}
}; // namespace gekRender
| 27.482759
| 102
| 0.695107
|
gordonfreeman424
|
ba7bd9cd59eef41be13be1ed1728fded3897e2e4
| 2,286
|
cpp
|
C++
|
test/test_chain_iterator.cpp
|
JohnReid/myrrh
|
09dc97c739232c03493e2344e64735b30eea5f99
|
[
"MIT"
] | 1
|
2015-06-04T00:39:51.000Z
|
2015-06-04T00:39:51.000Z
|
test/test_chain_iterator.cpp
|
JohnReid/myrrh
|
09dc97c739232c03493e2344e64735b30eea5f99
|
[
"MIT"
] | null | null | null |
test/test_chain_iterator.cpp
|
JohnReid/myrrh
|
09dc97c739232c03493e2344e64735b30eea5f99
|
[
"MIT"
] | null | null | null |
/**
@file
Copyright John Reid 2006, 2013, 2015
*/
#define BOOST_TEST_MODULE chain iterator // Generate main() in this object file
#ifdef _MSC_VER
# pragma warning( disable : 4244 )
#endif //_MSC_VER
#include "myrrh/chain_iterator.h"
#include <boost/progress.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/test/unit_test_monitor.hpp>
#include <boost/test/parameterized_test.hpp>
#include <boost/assign/list_of.hpp>
#include <boost/foreach.hpp>
#include <boost/iterator/counting_iterator.hpp>
using namespace myrrh;
using namespace boost;
using namespace boost::unit_test;
using namespace boost::assign;
using namespace std;
BOOST_AUTO_TEST_CASE( check_chain_iterator )
{
typedef std::vector< int > vector;
typedef chain_iterator<
boost::range_const_iterator< vector >::type,
boost::range_const_iterator< vector >::type
> iterator;
{
const vector v1 = list_of(1)(2)(3)(4);
const vector v2 = list_of(5)(6)(7)(8);
//BOOST_FOREACH( int i, make_chain_iterator_range( v1, v2 ) ) std::cout << i << "\n";
BOOST_CHECK( std::equal( make_chain_iterator_begin( v1, v2 ), make_chain_iterator_begin( v1, v2 ), counting_iterator< int >( 1 ) ) );
iterator i = make_chain_iterator_begin( v1, v2 );
iterator j = make_chain_iterator_begin( v1, v2 );
j = next( j, 6 );
BOOST_CHECK_EQUAL( j - i, 6 );
BOOST_CHECK_EQUAL( i - j, -6 );
BOOST_CHECK_EQUAL( *j, 7 );
BOOST_CHECK_EQUAL( *prior( j, 6 ), 1 );
}
typedef std::deque< int > deque;
typedef chain_iterator<
boost::range_const_iterator< vector >::type,
boost::range_const_iterator< deque >::type
> hetero_iterator;
{
const vector v1 = list_of(1)(2)(3)(4);
deque l2 = list_of(5)(6)(7)(8);
BOOST_CHECK( std::equal( make_chain_iterator_begin( v1, l2 ), make_chain_iterator_begin( v1, l2 ), counting_iterator< int >( 1 ) ) );
hetero_iterator i = make_chain_iterator_begin( v1, l2 );
hetero_iterator j = make_chain_iterator_begin( v1, l2 );
j = next( j, 6 );
BOOST_CHECK_EQUAL( j - i, 6 );
BOOST_CHECK_EQUAL( i - j, -6 );
BOOST_CHECK_EQUAL( *j, 7 );
BOOST_CHECK_EQUAL( *prior( j, 6 ), 1 );
}
}
| 30.891892
| 141
| 0.646107
|
JohnReid
|
ba7f4071802d34e076dfff87bfce98aec61aa837
| 1,865
|
hpp
|
C++
|
fgsig/include/fgsig/any_connection.hpp
|
fgoujeon/signal
|
f798522534788b9ab1e25a0e38db6faf20fb6f3a
|
[
"BSL-1.0"
] | 34
|
2018-10-29T23:37:48.000Z
|
2022-02-15T16:12:47.000Z
|
fgsig/include/fgsig/any_connection.hpp
|
fgoujeon/signal
|
f798522534788b9ab1e25a0e38db6faf20fb6f3a
|
[
"BSL-1.0"
] | 3
|
2018-11-02T19:56:22.000Z
|
2019-03-30T16:30:07.000Z
|
fgsig/include/fgsig/any_connection.hpp
|
fgoujeon/signal
|
f798522534788b9ab1e25a0e38db6faf20fb6f3a
|
[
"BSL-1.0"
] | 3
|
2018-11-03T04:51:20.000Z
|
2021-03-25T09:21:25.000Z
|
//Copyright Florian Goujeon 2018 - 2019.
//Distributed under the Boost Software License, Version 1.0.
//(See accompanying file LICENSE_1_0.txt or copy at
//https://www.boost.org/LICENSE_1_0.txt)
//Official repository: https://github.com/fgoujeon/signal
#ifndef FGSIG_ANY_CONNECTION_HPP
#define FGSIG_ANY_CONNECTION_HPP
#include <memory>
#include <type_traits>
#include <utility>
namespace fgsig
{
/*
any_connection is a type-erasing container for any connection or
owning_connection object.
*/
struct any_connection
{
private:
struct abstract_connection_holder
{
virtual ~abstract_connection_holder(){}
virtual void close() = 0;
};
template<typename Connection>
struct connection_holder: abstract_connection_holder
{
public:
connection_holder(Connection&& c):
connection_(std::move(c))
{
}
void close()
{
connection_.close();
}
private:
Connection connection_;
};
public:
template<typename Connection>
any_connection(Connection&& c):
holder_
{
std::make_unique<connection_holder<std::decay_t<Connection>>>
(
std::forward<Connection>(c)
)
}
{
}
any_connection(const any_connection&) = delete;
any_connection(any_connection&&) = delete;
any_connection& operator=(const any_connection&) = delete;
any_connection& operator=(any_connection&&) = delete;
void close()
{
holder_->close();
}
private:
std::unique_ptr<abstract_connection_holder> holder_;
};
} //namespace
#endif
| 23.024691
| 77
| 0.57319
|
fgoujeon
|
ba8124b5c3ac15fc110cefe94101ea769462756a
| 6,830
|
cpp
|
C++
|
src/contacts/contact-point.cpp
|
Rascof/tsid
|
567982b46ab06522bf414cad180d941a7cc532a8
|
[
"BSD-2-Clause"
] | null | null | null |
src/contacts/contact-point.cpp
|
Rascof/tsid
|
567982b46ab06522bf414cad180d941a7cc532a8
|
[
"BSD-2-Clause"
] | null | null | null |
src/contacts/contact-point.cpp
|
Rascof/tsid
|
567982b46ab06522bf414cad180d941a7cc532a8
|
[
"BSD-2-Clause"
] | null | null | null |
//
// Copyright (c) 2017 CNRS, NYU, MPI Tübingen
//
// This file is part of tsid
// tsid is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation, either version
// 3 of the License, or (at your option) any later version.
// tsid is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Lesser Public License for more details. You should have
// received a copy of the GNU Lesser General Public License along with
// tsid If not, see
// <http://www.gnu.org/licenses/>.
//
#include "tsid/math/utils.hpp"
#include "tsid/contacts/contact-point.hpp"
#include <pinocchio/spatial/skew.hpp>
using namespace tsid;
using namespace contacts;
using namespace math;
using namespace trajectories;
using namespace tasks;
ContactPoint::ContactPoint(const std::string & name,
RobotWrapper & robot,
const std::string & frameName,
ConstRefVector contactNormal,
const double frictionCoefficient,
const double minNormalForce,
const double maxNormalForce):
ContactBase(name, robot),
m_motionTask(name, robot, frameName),
m_forceInequality(name, 5, 3),
m_forceRegTask(name, 3, 3),
m_contactNormal(contactNormal),
m_mu(frictionCoefficient),
m_fMin(minNormalForce),
m_fMax(maxNormalForce)
{
m_weightForceRegTask << 1, 1, 1e-3;
m_forceGenMat.resize(3, 3);
m_fRef = Vector3::Zero();
updateForceGeneratorMatrix();
updateForceInequalityConstraints();
updateForceRegularizationTask();
math::Vector motion_mask(6);
motion_mask << 1., 1., 1., 0., 0., 0.;
m_motionTask.setMask(motion_mask);
}
void ContactPoint::useLocalFrame(bool local_frame)
{
m_motionTask.useLocalFrame(local_frame);
}
void ContactPoint::updateForceInequalityConstraints()
{
Vector3 t1, t2;
const int n_in = 4*1 + 1;
const int n_var = 3*1;
Matrix B = Matrix::Zero(n_in, n_var);
Vector lb = -1e10*Vector::Ones(n_in);
Vector ub = Vector::Zero(n_in);
t1 = m_contactNormal.cross(Vector3::UnitX());
if(t1.norm()<1e-5)
t1 = m_contactNormal.cross(Vector3::UnitY());
t2 = m_contactNormal.cross(t1);
t1.normalize();
t2.normalize();
B.block<1,3>(0,0) = (-t1 - m_mu*m_contactNormal).transpose();
B.block<1,3>(1,0) = (t1 - m_mu*m_contactNormal).transpose();
B.block<1,3>(2,0) = (-t2 - m_mu*m_contactNormal).transpose();
B.block<1,3>(3,0) = (t2 - m_mu*m_contactNormal).transpose();
B.block<1,3>(n_in-1,0) = m_contactNormal.transpose();
ub(n_in-1) = m_fMax;
lb(n_in-1) = m_fMin;
m_forceInequality.setMatrix(B);
m_forceInequality.setLowerBound(lb);
m_forceInequality.setUpperBound(ub);
}
double ContactPoint::getNormalForce(ConstRefVector f) const
{
assert(f.size()==n_force());
return m_contactNormal.dot(f);
}
void ContactPoint::setRegularizationTaskWeightVector(ConstRefVector & w)
{
m_weightForceRegTask = w;
updateForceRegularizationTask();
}
void ContactPoint::updateForceRegularizationTask()
{
typedef Eigen::Matrix<double,3,3> Matrix3;
Matrix3 A = Matrix3::Zero();
A.diagonal() = m_weightForceRegTask;
m_forceRegTask.setMatrix(A);
m_forceRegTask.setVector(A*m_fRef);
}
void ContactPoint:: updateForceGeneratorMatrix()
{
m_forceGenMat.setIdentity();
}
unsigned int ContactPoint::n_motion() const { return m_motionTask.dim(); }
unsigned int ContactPoint::n_force() const { return 3; }
const Vector & ContactPoint::Kp() const { return m_motionTask.Kp().head<3>(); }
const Vector & ContactPoint::Kd() const { return m_motionTask.Kd().head<3>(); }
void ContactPoint::Kp(ConstRefVector Kp)
{
assert(Kp.size()==3);
Vector6 Kp6;
Kp6.head<3>() = Kp;
m_motionTask.Kp(Kp6);
}
void ContactPoint::Kd(ConstRefVector Kd)
{
assert(Kd.size()==3);
Vector6 Kd6;
Kd6.head<3>() = Kd;
m_motionTask.Kd(Kd6);
}
bool ContactPoint::setContactNormal(ConstRefVector contactNormal)
{
assert(contactNormal.size()==3);
if(contactNormal.size()!=3)
return false;
m_contactNormal = contactNormal;
updateForceInequalityConstraints();
return true;
}
bool ContactPoint::setFrictionCoefficient(const double frictionCoefficient)
{
assert(frictionCoefficient>0.0);
if(frictionCoefficient<=0.0)
return false;
m_mu = frictionCoefficient;
updateForceInequalityConstraints();
return true;
}
bool ContactPoint::setMinNormalForce(const double minNormalForce)
{
assert(minNormalForce>0.0 && minNormalForce<=m_fMax);
if(minNormalForce<=0.0 || minNormalForce>m_fMax)
return false;
m_fMin = minNormalForce;
Vector & lb = m_forceInequality.lowerBound();
lb(lb.size()-1) = m_fMin;
return true;
}
bool ContactPoint::setMaxNormalForce(const double maxNormalForce)
{
assert(maxNormalForce>=m_fMin);
if(maxNormalForce<m_fMin)
return false;
m_fMax = maxNormalForce;
Vector & ub = m_forceInequality.upperBound();
ub(ub.size()-1) = m_fMax;
return true;
}
void ContactPoint::setForceReference(ConstRefVector & f_ref)
{
m_fRef = f_ref;
updateForceRegularizationTask();
}
void ContactPoint::setReference(const SE3 & ref)
{
TrajectorySample s(12, 6);
SE3ToVector(ref, s.pos);
m_motionTask.setReference(s);
}
const ConstraintBase & ContactPoint::computeMotionTask(const double t,
ConstRefVector q,
ConstRefVector v,
Data & data)
{
return m_motionTask.compute(t, q, v, data);
}
const ConstraintInequality & ContactPoint::computeForceTask(const double,
ConstRefVector ,
ConstRefVector ,
const Data & )
{
return m_forceInequality;
}
const Matrix & ContactPoint::getForceGeneratorMatrix()
{
return m_forceGenMat;
}
const ConstraintEquality & ContactPoint::
computeForceRegularizationTask(const double ,
ConstRefVector ,
ConstRefVector ,
const Data & )
{
return m_forceRegTask;
}
double ContactPoint::getMinNormalForce() const { return m_fMin; }
double ContactPoint::getMaxNormalForce() const { return m_fMax; }
const TaskMotion & ContactPoint::getMotionTask() const { return m_motionTask; }
const ConstraintBase & ContactPoint::getMotionConstraint() const { return m_motionTask.getConstraint(); }
const ConstraintInequality & ContactPoint::getForceConstraint() const { return m_forceInequality; }
const ConstraintEquality & ContactPoint::getForceRegularizationTask() const { return m_forceRegTask; }
| 29.313305
| 105
| 0.688726
|
Rascof
|
ba82018eafa170caa6d16c48ff2356d63921da3b
| 26,542
|
cpp
|
C++
|
samples/meta_reader/main.cpp
|
stephenatwork/xlang
|
0747c3b362c02a9736b3a4ca1bd3e005b4f52279
|
[
"MIT"
] | 1
|
2019-10-23T20:33:45.000Z
|
2019-10-23T20:33:45.000Z
|
samples/meta_reader/main.cpp
|
stephenatwork/xlang
|
0747c3b362c02a9736b3a4ca1bd3e005b4f52279
|
[
"MIT"
] | null | null | null |
samples/meta_reader/main.cpp
|
stephenatwork/xlang
|
0747c3b362c02a9736b3a4ca1bd3e005b4f52279
|
[
"MIT"
] | null | null | null |
#include "pch.h"
using namespace std::chrono;
using namespace std::experimental::filesystem;
using namespace std::string_view_literals;
using namespace xlang;
using namespace xlang::meta::reader;
using namespace xlang::text;
using namespace xlang::cmd;
template <typename...T> struct overloaded : T... { using T::operator()...; };
template <typename...T> overloaded(T...)->overloaded<T...>;
struct writer : writer_base<writer>
{
using writer_base<writer>::write;
struct indent_guard
{
explicit indent_guard(writer& w, int32_t offset = 1) noexcept : _writer(w), _offset(offset)
{
_writer.indent += _offset;
}
~indent_guard()
{
_writer.indent -= _offset;
}
private:
writer& _writer;
int32_t _offset;
};
std::string_view current;
int32_t indent{};
std::vector<std::pair<GenericParam, GenericParam>> generic_param_stack;
struct generic_param_guard
{
explicit generic_param_guard(writer* arg)
: owner(arg)
{}
~generic_param_guard()
{
if (owner)
{
owner->generic_param_stack.pop_back();
}
}
generic_param_guard(generic_param_guard && other)
: owner(other.owner)
{
owner = nullptr;
}
generic_param_guard& operator=(generic_param_guard const&) = delete;
writer* owner;
};
generic_param_guard push_generic_params(std::pair<GenericParam, GenericParam>&& arg)
{
generic_param_stack.push_back(std::move(arg));
return generic_param_guard{ this };
}
void write_indent()
{
for (int32_t i = 0; i < indent; i++)
{
writer_base::write_impl(" ");
}
}
void write_impl(std::string_view const& value)
{
std::string_view::size_type current_pos{ 0 };
auto on_new_line = back() == '\n';
while (true)
{
const auto pos = value.find('\n', current_pos);
if (pos == std::string_view::npos)
{
if (current_pos < value.size())
{
if (on_new_line)
{
write_indent();
}
writer_base::write_impl(value.substr(current_pos));
}
return;
}
auto current_line = value.substr(current_pos, pos - current_pos + 1);
auto empty_line = current_line[0] == '\n';
if (on_new_line && !empty_line)
{
write_indent();
}
writer_base::write_impl(current_line);
on_new_line = true;
current_pos = pos + 1;
}
}
void write_impl(char const value)
{
if (back() == '\n' && value != '\n')
{
write_indent();
}
writer_base::write_impl(value);
}
template <typename... Args>
std::string write_temp(std::string_view const& value, Args const& ... args)
{
auto restore_indent = indent;
indent = 0;
auto result = writer_base::write_temp(value, args...);
indent = restore_indent;
return result;
}
void write_value(bool value)
{
write(value ? "TRUE"sv : "FALSE"sv);
}
void write_value(char16_t value)
{
write_printf("%#0hx", value);
}
void write_value(int8_t value)
{
write_printf("%hhd", value);
}
void write_value(uint8_t value)
{
write_printf("%#0hhx", value);
}
void write_value(int16_t value)
{
write_printf("%hd", value);
}
void write_value(uint16_t value)
{
write_printf("%#0hx", value);
}
void write_value(int32_t value)
{
write_printf("%d", value);
}
void write_value(uint32_t value)
{
write_printf("%#0x", value);
}
void write_value(int64_t value)
{
write_printf("%lld", value);
}
void write_value(uint64_t value)
{
write_printf("%#0llx", value);
}
void write_value(float value)
{
write_printf("%f", value);
}
void write_value(double value)
{
write_printf("%f", value);
}
void write_value(std::string_view value)
{
write("\"%\"", value);
}
void write(Constant const& value)
{
switch (value.Type())
{
case ConstantType::Boolean:
write_value(value.ValueBoolean());
break;
case ConstantType::Char:
write_value(value.ValueChar());
break;
case ConstantType::Int8:
write_value(value.ValueInt8());
break;
case ConstantType::UInt8:
write_value(value.ValueUInt8());
break;
case ConstantType::Int16:
write_value(value.ValueInt16());
break;
case ConstantType::UInt16:
write_value(value.ValueUInt16());
break;
case ConstantType::Int32:
write_value(value.ValueInt32());
break;
case ConstantType::UInt32:
write_value(value.ValueUInt32());
break;
case ConstantType::Int64:
write_value(value.ValueInt64());
break;
case ConstantType::UInt64:
write_value(value.ValueUInt64());
break;
case ConstantType::Float32:
write_value(value.ValueFloat32());
break;
case ConstantType::Float64:
write_value(value.ValueFloat64());
break;
case ConstantType::String:
write_value(value.ValueString());
break;
case ConstantType::Class:
write("null");
break;
}
}
void write(TypeDef const& type)
{
write("%.%", type.TypeNamespace(), type.TypeName());
}
void write(TypeRef const& type)
{
auto ns = type.TypeNamespace();
if (ns == current)
{
write("%", type.TypeName());
}
else
{
write("%.%", type.TypeNamespace(), type.TypeName());
}
}
void write(TypeSpec const& type)
{
write(type.Signature().GenericTypeInst());
}
void write(coded_index<TypeDefOrRef> const& type)
{
switch (type.type())
{
case TypeDefOrRef::TypeDef:
write(type.TypeDef());
break;
case TypeDefOrRef::TypeRef:
write(type.TypeRef());
break;
case TypeDefOrRef::TypeSpec:
write(type.TypeSpec());
break;
}
}
void write(GenericTypeInstSig const& type)
{
write("%<%>",
type.GenericType(),
bind_list(", ", type.GenericArgs()));
}
void write(TypeSig const& signature)
{
std::visit(overloaded
{
[&](ElementType type)
{
if (type <= ElementType::String)
{
static constexpr const char* primitives[]
{
"End",
"Void",
"Boolean",
"Char",
"Int8",
"UInt8",
"Int16",
"UInt16",
"Int32",
"UInt32",
"Int64",
"UInt64",
"Single",
"Double",
"String"
};
write(primitives[static_cast<uint32_t>(type)]);
}
else if (type == ElementType::Object)
{
write("Object");
}
},
[&](GenericTypeIndex var)
{
write("%", begin(generic_param_stack.back())[var.index].Name());
},
[&](GenericMethodTypeIndex)
{
throw_invalid("Generic methods not supported.");
},
[&](auto&& type)
{
write(type);
}
},
signature.Type());
}
void write(InterfaceImpl const& impl)
{
write(impl.Interface());
}
void write(MethodDef const& method)
{
auto signature{ method.Signature() };
auto param_list = method.ParamList();
Param param;
if (method.Signature().ReturnType() && !empty(param_list) && param_list.first.Sequence() == 0)
{
param = param_list.first + 1;
}
else
{
param = param_list.first;
}
bool first{ true };
for (auto&& arg : signature.Params())
{
if (first)
{
first = false;
}
else
{
write(", ");
}
if (arg.ByRef())
{
write("ref ");
}
if (is_const(arg))
{
write("const ");
}
write("% %", arg.Type(), param.Name());
++param;
}
}
void write(RetTypeSig const& signature)
{
if (signature)
{
write(signature.Type());
}
else
{
write("void");
}
}
std::vector<Field> find_enumerators(ElemSig::EnumValue const& arg)
{
std::vector<Field> result;
uint64_t const original_value = std::visit([](auto&& value) { return static_cast<uint64_t>(value); }, arg.value);
uint64_t flags_value = original_value;
auto get_enumerator_value = [](auto&& arg) -> uint64_t
{
if constexpr (std::is_integral_v<std::remove_reference_t<decltype(arg)>>)
{
return static_cast<uint64_t>(arg);
}
else
{
throw_invalid("Non-integral enumerator encountered");
}
};
for (auto const& field : arg.type.m_typedef.FieldList())
{
if (auto const& constant = field.Constant())
{
uint64_t const enumerator_value = std::visit(get_enumerator_value, constant.Value());
if (enumerator_value == original_value)
{
result.assign(1, field);
return result;
}
else if ((flags_value & enumerator_value) == enumerator_value)
{
result.push_back(field);
flags_value &= (~enumerator_value);
}
}
}
// Didn't find a match, or a set of flags that could build up the value
if (flags_value != 0)
{
result.clear();
}
return result;
}
void write(FixedArgSig const& arg)
{
std::visit(overloaded{
[this](ElemSig::SystemType arg)
{
write(arg.name);
},
[this](ElemSig::EnumValue arg)
{
auto const enumerators = find_enumerators(arg);
if (enumerators.empty())
{
std::visit([this](auto&& value) { write_value(value); }, arg.value);
}
else
{
bool first = true;
for (auto const& enumerator : enumerators)
{
if (!first)
{
write(" | ");
}
write("%.%.%", arg.type.m_typedef.TypeNamespace(), arg.type.m_typedef.TypeName(), enumerator.Name());
first = false;
}
}
},
[this](auto&& arg)
{
write_value(arg);
}
}, std::get<ElemSig>(arg.value).value);
}
void write(NamedArgSig const& arg)
{
write(arg.value);
}
void write_uuid(CustomAttributeSig const& arg)
{
auto const& args = arg.FixedArgs();
write_printf("[Windows.Foundation.Metadata.GuidAttribute(%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X)]",
std::get<uint32_t>(std::get<ElemSig>(args[0].value).value),
std::get<uint16_t>(std::get<ElemSig>(args[1].value).value),
std::get<uint16_t>(std::get<ElemSig>(args[2].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[3].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[4].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[5].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[6].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[7].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[8].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[9].value).value),
std::get<uint8_t>(std::get<ElemSig>(args[10].value).value));
}
void write(CustomAttribute const& attr)
{
auto const& name = attr.TypeNamespaceAndName();
auto const& sig = attr.Value();
if (name.first == "Windows.Foundation.Metadata"sv && name.second == "GuidAttribute"sv)
{
write_uuid(sig);
return;
}
write("[%.%", name.first, name.second);
bool first = true;
for (auto const& fixed_arg : sig.FixedArgs())
{
if (first)
{
first = false;
write("(%", fixed_arg);
}
else
{
write(", %", fixed_arg);
}
}
for (auto const& named_arg : sig.NamedArgs())
{
if (first)
{
first = false;
write("(%", named_arg);
}
else
{
write(", %", named_arg);
}
}
if (first)
{
write("]");
}
else
{
write(")]");
}
}
};
void write_custom_attribute(writer& w, CustomAttribute const& attr)
{
w.write("\n%", attr);
}
void write_type_name(writer& w, std::string_view name)
{
w.write(name);
bool found = false;
for (auto const& param : w.generic_param_stack.back())
{
if (found)
{
w.write(", %", param.Name());
}
else
{
found = true;
w.write("<%", param.Name());
}
}
if (found)
{
w.write(">");
}
}
void write_enum_field(writer& w, Field const& field)
{
writer::indent_guard _{ w };
if (auto const& constant = field.Constant())
{
w.write("\n% = %,", field.Name(), constant);
}
}
void write_enum(writer& w, TypeDef const& type)
{
writer::indent_guard _{ w };
w.write("%\nenum %\n{%\n};\n",
bind_each<write_custom_attribute>(type.CustomAttribute()),
type.TypeName(),
bind_each<write_enum_field>(type.FieldList()));
}
void write_struct_field(writer& w, Field const& field)
{
writer::indent_guard _{ w };
w.write("\n% %;", field.Signature().Type(), field.Name());
}
void write_struct(writer& w, TypeDef const& type)
{
writer::indent_guard _{ w };
w.write("%\nstruct %\n{%\n};\n",
bind_each<write_custom_attribute>(type.CustomAttribute()),
type.TypeName(),
bind_each<write_struct_field>(type.FieldList()));
}
void write_delegate(writer& w, TypeDef const& type)
{
auto guard{ w.push_generic_params(type.GenericParam()) };
auto methods = type.MethodList();
writer::indent_guard _{ w };
auto method = std::find_if(begin(methods), end(methods), [](auto&& method)
{
return method.Name() == "Invoke";
});
if (method == end(methods))
{
throw_invalid("Delegate's Invoke method not found");
}
w.write("%\ndelegate % %(%);\n",
bind_each<write_custom_attribute>(type.CustomAttribute()),
method.Signature().ReturnType(),
bind<write_type_name>(type.TypeName()),
method);
}
void write_method(writer& w, MethodDef const& method)
{
w.write("%\n% %(%);",
bind_each<write_custom_attribute>(method.CustomAttribute()),
method.Signature().ReturnType(),
method.Name(),
method);
}
void write_method_semantic(writer& w, MethodSemantics const& method_semantic, MethodDef& method)
{
auto const& target = method_semantic.Association();
auto const& semantic = method_semantic.Semantic();
if (target.type() == HasSemantics::Property)
{
if (!semantic.Getter() && !semantic.Setter())
{
xlang::throw_invalid("Invalid semantic: properties can only have a setter and/or getter");
}
auto const& property = target.Property();
auto const& accessors = property.MethodSemantic();
if (distance(accessors) < 1 || 2 < distance(accessors))
{
xlang::throw_invalid("Properties can only have 1 or 2 accessors");
}
if (distance(accessors) == 2)
{
auto const& other_method_semantic = (accessors.first == method_semantic) ? accessors.first + 1 : accessors.first;
auto const& other_method = other_method_semantic.Method();
if (method < other_method)
{
// First accessor seen for this property
w.write(bind_each<write_custom_attribute>(property.CustomAttribute()));
}
if (semantic.Getter())
{
if (method + 1 == other_method)
{
if (!other_method_semantic.Semantic().Setter())
{
xlang::throw_invalid("Invalid semantic: properties can only have a setter and/or getter");
}
w.write("\n% %;", property.Type().Type(), property.Name());
++method;
}
else
{
XLANG_ASSERT(semantic.Getter());
w.write("\n% % { get; };", property.Type().Type(), property.Name());
}
}
else
{
XLANG_ASSERT(semantic.Setter());
w.write("\n% % { set; };", property.Type().Type(), property.Name());
}
}
else
{
XLANG_ASSERT(distance(accessors) == 1);
w.write(bind_each<write_custom_attribute>(property.CustomAttribute()));
if (semantic.Getter())
{
w.write("\n% % { get; };", property.Type().Type(), property.Name());
}
else
{
XLANG_ASSERT(semantic.Setter());
w.write("\n% % { set; };", property.Type().Type(), property.Name());
}
}
}
else
{
if (!semantic.AddOn() && !semantic.RemoveOn())
{
xlang::throw_invalid("Invalid semantic: events can only have an add and/or remove");
}
auto const& event = target.Event();
auto const& accessors = event.MethodSemantic();
if (distance(accessors) < 1 || 2 < distance(accessors))
{
xlang::throw_invalid("Events can only have 1 or 2 accessors");
}
if (distance(accessors) == 2)
{
auto const& other_method_semantic = (accessors.first == method_semantic) ? accessors.first + 1 : accessors.first;
auto const& other_method = other_method_semantic.Method();
if (method < other_method)
{
// First accessor seen for this event
w.write(bind_each<write_custom_attribute>(event.CustomAttribute()));
}
if (semantic.AddOn())
{
if (method + 1 == other_method)
{
if (!other_method_semantic.Semantic().RemoveOn())
{
xlang::throw_invalid("Invalid semantic: events can only have a add and/or remove");
}
w.write("\n% %;", event.EventType(), event.Name());
++method;
}
else
{
XLANG_ASSERT(semantic.AddOn());
w.write("\n% % { add; };", event.EventType(), event.Name());
}
}
else
{
XLANG_ASSERT(semantic.RemoveOn());
w.write("\n% % { remove; };", event.EventType(), event.Name());
}
}
else
{
XLANG_ASSERT(distance(accessors) == 1);
w.write(bind_each<write_custom_attribute>(event.CustomAttribute()));
if (semantic.AddOn())
{
w.write("\n% % { add; };", event.EventType(), event.Name());
}
else
{
XLANG_ASSERT(semantic.RemoveOn());
w.write("\n% % { remove; };", event.EventType(), event.Name());
}
}
}
}
void write_required_interface(writer& w, InterfaceImpl const& interface_impl)
{
writer::indent_guard _{ w };
w.write("\n%", interface_impl.Interface());
}
void write_required(writer& w, std::string_view const& requires, TypeDef const& type)
{
auto interfaces{ type.InterfaceImpl() };
if (begin(interfaces) == end(interfaces))
{
return;
}
w.write(" %%",
requires,
bind_list<write_required_interface>(",", interfaces));
}
void write_interface_methods(writer& w, TypeDef const& type)
{
auto const& methods = type.MethodList();
auto const& properties = type.PropertyList();
auto const& events = type.EventList();
writer::indent_guard _{ w };
auto method_semantic = [&properties, &events](MethodDef const& method) -> MethodSemantics
{
for (auto const& prop : properties)
{
for (auto const& semantic : prop.MethodSemantic())
{
if (semantic.Method() == method)
{
return semantic;
}
}
}
for (auto const& event : events)
{
for (auto const& semantic : event.MethodSemantic())
{
if (semantic.Method() == method)
{
return semantic;
}
}
}
return {};
};
for (auto method = begin(methods); method != end(methods); ++method)
{
auto const& semantic = method_semantic(method);
if (semantic)
{
write_method_semantic(w, semantic, method);
}
else
{
write_method(w, method);
}
}
}
void write_interface(writer& w, TypeDef const& type)
{
auto guard = w.push_generic_params(type.GenericParam());
writer::indent_guard _{ w };
w.write("%\ninterface %%\n{%\n};\n",
bind_each<write_custom_attribute>(type.CustomAttribute()),
bind<write_type_name>(type.TypeName()),
bind<write_required>("requires", type),
bind<write_interface_methods>(type));
}
void write_class(writer& w, TypeDef const& type)
{
auto guard = w.push_generic_params(type.GenericParam());
writer::indent_guard _{ w };
w.write("%\nruntimeclass %%\n{\n};\n",
bind_each<write_custom_attribute>(type.CustomAttribute()),
bind<write_type_name>(type.TypeName()),
bind<write_required>(":", type));
}
auto get_out(reader const& args)
{
auto out{ absolute(args.value("output", "idl")) };
create_directories(out);
out += path::preferred_separator;
return out.string();
}
void print_usage()
{
puts("Usage...");
}
int main(int const argc, char** argv)
{
writer w;
try
{
auto start = high_resolution_clock::now();
static constexpr cmd::option options[]
{
// name, min, max
{ "input", 1 },
{ "output", 0, 1 },
{ "include", 0 },
{ "exclude", 0 },
{ "verbose", 0, 0 },
};
reader args{ argc, argv, options };
if (!args)
{
print_usage();
return 0;
}
cache c{ args.values("input") };
auto const out = get_out(args);
bool const verbose = args.exists("verbose");
filter f{ args.values("include"), args.values("exclude") };
if (verbose)
{
std::for_each(c.databases().begin(), c.databases().end(), [&](auto&& db)
{
w.write("in: %\n", db.path());
});
w.write("out: %\n", out);
}
w.flush_to_console();
task_group group;
for (auto const& [ns, members] : c.namespaces())
{
group.add([&, &ns = ns, &members = members]
{
if (!f.includes(members))
{
return;
}
writer w;
w.current = ns;
w.write("\nnamespace %\n{%%%%%}\n",
ns,
f.bind_each<write_enum>(members.enums),
f.bind_each<write_struct>(members.structs),
f.bind_each<write_delegate>(members.delegates),
f.bind_each<write_interface>(members.interfaces),
f.bind_each<write_class>(members.classes));
auto filename{ out };
filename += ns;
filename += ".idl";
w.flush_to_file(filename);
});
}
group.get();
if (verbose)
{
w.write("time: %ms\n", duration_cast<duration<int64_t, std::milli>>(high_resolution_clock::now() - start).count());
}
}
catch (std::exception const& e)
{
w.write("%\n", e.what());
}
w.flush_to_console();
}
| 27.001017
| 127
| 0.483724
|
stephenatwork
|
ba835836a663cb8777696f7115262fc31639ccc7
| 148
|
cpp
|
C++
|
OpenROV2x/CModule.cpp
|
pictographer/pi-i2c
|
d3b4c9faf5cd17b37f9e0863c4559c2ea06bdd0e
|
[
"MIT"
] | 1
|
2018-04-08T13:41:33.000Z
|
2018-04-08T13:41:33.000Z
|
OpenROV2x/CModule.cpp
|
pictographer/pi-i2c
|
d3b4c9faf5cd17b37f9e0863c4559c2ea06bdd0e
|
[
"MIT"
] | null | null | null |
OpenROV2x/CModule.cpp
|
pictographer/pi-i2c
|
d3b4c9faf5cd17b37f9e0863c4559c2ea06bdd0e
|
[
"MIT"
] | null | null | null |
// Includes
#include <Arduino.h>
#include "CModule.h"
#include "NModuleManager.h"
CModule::CModule()
{
NModuleManager::RegisterModule( this );
}
| 13.454545
| 40
| 0.716216
|
pictographer
|
ba8443dfc9584a31f2f601c14d2e29779a8ef2a3
| 1,392
|
cpp
|
C++
|
module/spikes_t/src/SpikeS.cpp
|
fderue/SPIKES
|
ae224f4c01991cbccb80b19bdd4d0d18201604b9
|
[
"MIT"
] | 5
|
2017-02-21T05:12:26.000Z
|
2019-05-04T04:25:50.000Z
|
module/spikes_t/src/SpikeS.cpp
|
fderue/SPIKES
|
ae224f4c01991cbccb80b19bdd4d0d18201604b9
|
[
"MIT"
] | null | null | null |
module/spikes_t/src/SpikeS.cpp
|
fderue/SPIKES
|
ae224f4c01991cbccb80b19bdd4d0d18201604b9
|
[
"MIT"
] | null | null | null |
#include "spikes_t/SpikeS.h"
void SpikeS::createBranchesKp2(const list<KeyPoint2*>& l_kp2)
{
v_branch.resize(0);
float radius2 = pow(m_searchR, 2);
for (auto& it : l_kp2)
{
float d2 = pow((it->kp.pt.x - xy.x), 2) + pow((it->kp.pt.y - xy.y), 2);
if (d2<radius2)
{
Point relpos = Point((int)it->kp.pt.x, (int)it->kp.pt.y) - xy;
BranchKp2 branch(it, relpos);
v_branch.push_back(branch);
}
}
}
void SpikeS::initVote(Point position, float w0, float phi0)
{
w = w0;
phi = phi0;
voteVector = position - xy;
}
void::SpikeS::drawMe(Mat& im)
{
for (int i = 0; i < v_branch.size(); i++){
line(im, xy, v_branch[i].p_kp2->kp.pt, Scalar(0, 255, 0), 1,CV_AA);
circle(im, v_branch[i].p_kp2->kp.pt, 1,Scalar(0,0,255),1,CV_AA);
}
}
void SpikeS::updateHist(float alpha)
{
float* hist_ptr = histo.ptr<float>();
int a, b;
int col_row = histo.size[0] * histo.size[1];
for (int k = 0; k < histo.size[2]; k++)
{
a = k*col_row;
for (int i = 0; i < histo.size[0]; i++)
{
b = i*histo.size[1];
for (int j = 0; j < histo.size[1]; j++)
{
int idx = a + b + j;
hist_ptr[idx] = (1 - alpha)*hist_ptr[idx] + alpha*p_matched->histo.ptr<float>()[idx];
}
}
}
}
void SpikeS::updateFeat(float alpha)
{
#if FEAT_TYPE==Superpixel::MEAN_COLOR
CV_Assert(p_matched != nullptr);
color = (1 - alpha)*color + alpha*p_matched->color;
#else
updateHist(alpha);
#endif
}
| 22.095238
| 89
| 0.608477
|
fderue
|
ba8477492caf6c272da893bb7c3dd8fcb0a26941
| 4,428
|
hpp
|
C++
|
engine/src/vulkan/module/overlay/UIManager.hpp
|
Velikss/Bus-Simulator
|
13bf0b66b9b44e3f4cb1375fc363720ea8f23e19
|
[
"MIT"
] | null | null | null |
engine/src/vulkan/module/overlay/UIManager.hpp
|
Velikss/Bus-Simulator
|
13bf0b66b9b44e3f4cb1375fc363720ea8f23e19
|
[
"MIT"
] | null | null | null |
engine/src/vulkan/module/overlay/UIManager.hpp
|
Velikss/Bus-Simulator
|
13bf0b66b9b44e3f4cb1375fc363720ea8f23e19
|
[
"MIT"
] | null | null | null |
#pragma once
#include <pch.hpp>
#include <vulkan/vulkan.h>
#include <vulkan/LogicalDevice.hpp>
#include <vulkan/module/overlay/element/StaticElement.hpp>
#include <vulkan/util/CommandBufferHolder.hpp>
#include <vulkan/util/CommandRecorderProvider.hpp>
struct tElementObject
{
cUIElement* ppElement = nullptr;
std::vector<VkBuffer> patBuffers;
std::vector<VkDeviceMemory> patBufferMemory;
std::vector<void*> papMappedMemory;
tElementObject(cUIElement* ppElement) : ppElement(ppElement)
{}
};
class cUIManager : public cInvalidatable
{
private:
cLogicalDevice* ppLogicalDevice = nullptr;
iCommandBufferHolder* ppCommandBufferHolder = nullptr;
iCommandRecorderProvider* ppCommandRecorder = nullptr;
public:
std::vector<tElementObject> patElements;
cUIManager(cLogicalDevice* pLogicalDevice,
iCommandBufferHolder* pCommandBufferHolder,
iCommandRecorderProvider* pCommandRecorder);
~cUIManager();
void Update();
void CmdBindVertexBuffer(VkCommandBuffer& oCommandBuffer, tElementObject* pElement, uint uiIndex);
public:
void AllocateElementsMemory();
void AllocateElementMemory(tElementObject* pElement);
void FreeElementMemory(tElementObject* pElement);
};
cUIManager::cUIManager(cLogicalDevice* pLogicalDevice,
iCommandBufferHolder* pCommandBufferHolder,
iCommandRecorderProvider* pCommandRecorder)
{
assert(pLogicalDevice != nullptr);
assert(pCommandBufferHolder != nullptr);
assert(pCommandRecorder != nullptr);
ppLogicalDevice = pLogicalDevice;
ppCommandBufferHolder = pCommandBufferHolder;
ppCommandRecorder = pCommandRecorder;
}
cUIManager::~cUIManager()
{
for (auto& tElement : patElements)
{
FreeElementMemory(&tElement);
}
}
void cUIManager::AllocateElementsMemory()
{
for (auto& tElement : patElements)
{
tElement.ppElement->OnLoadVertices();
AllocateElementMemory(&tElement);
}
}
void cUIManager::AllocateElementMemory(tElementObject* pElement)
{
uint uiCount = pElement->ppElement->GetChildCount();
pElement->patBuffers.resize(uiCount);
pElement->patBufferMemory.resize(uiCount);
pElement->papMappedMemory.resize(uiCount);
for (uint uiIndex = 0; uiIndex < uiCount; uiIndex++)
{
cBufferHelper::CreateBuffer(ppLogicalDevice, pElement->ppElement->GetMemorySize(uiIndex),
VK_BUFFER_USAGE_VERTEX_BUFFER_BIT,
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
pElement->patBuffers[uiIndex], pElement->patBufferMemory[uiIndex]);
ppLogicalDevice->MapMemory(pElement->patBufferMemory[uiIndex], 0,
pElement->ppElement->GetMemorySize(uiIndex),
0, &pElement->papMappedMemory[uiIndex]);
}
}
void cUIManager::FreeElementMemory(tElementObject* pElement)
{
for (uint uiIndex = 0; uiIndex < pElement->patBuffers.size(); uiIndex++)
{
ppLogicalDevice->UnmapMemory(pElement->patBufferMemory[uiIndex]);
ppLogicalDevice->FreeMemory(pElement->patBufferMemory[uiIndex], nullptr);
ppLogicalDevice->DestroyBuffer(pElement->patBuffers[uiIndex], nullptr);
}
}
void cUIManager::Update()
{
if (Invalidated())
{
ENGINE_LOG("UI manager invalidated, updating...");
ppLogicalDevice->WaitUntilIdle();
uint uiCount = 0;
for (auto& tElement : patElements)
{
if (tElement.ppElement->Invalidated())
{
for (uint uiIndex = 0; uiIndex < tElement.patBuffers.size(); uiIndex++)
{
tElement.ppElement->InitializeMemory(tElement.papMappedMemory[uiIndex], uiIndex);
}
tElement.ppElement->Validate();
uiCount++;
}
}
ppCommandBufferHolder->GetCommandBuffers()[2]->RecordBuffers(ppCommandRecorder->GetCommandRecorder());
Validate();
ENGINE_LOG("Updated " << uiCount << " UI elements");
}
}
void cUIManager::CmdBindVertexBuffer(VkCommandBuffer& oCommandBuffer, tElementObject* pElement, uint uiIndex)
{
VkDeviceSize ulOffset = 0;
vkCmdBindVertexBuffers(oCommandBuffer, 0, 1, &pElement->patBuffers[uiIndex], &ulOffset);
}
| 31.183099
| 111
| 0.672764
|
Velikss
|
ba87c7fab27d1d100c3302ff8c071249493f29d3
| 8,765
|
cpp
|
C++
|
SPOJ/ORDERSET.cpp
|
Mindjolt2406/Competitive-Programming
|
d000d98bf7005ee4fb809bcea2f110e4c4793b80
|
[
"MIT"
] | 2
|
2018-12-11T14:37:24.000Z
|
2022-01-23T18:11:54.000Z
|
SPOJ/ORDERSET.cpp
|
Mindjolt2406/Competitive-Programming
|
d000d98bf7005ee4fb809bcea2f110e4c4793b80
|
[
"MIT"
] | null | null | null |
SPOJ/ORDERSET.cpp
|
Mindjolt2406/Competitive-Programming
|
d000d98bf7005ee4fb809bcea2f110e4c4793b80
|
[
"MIT"
] | null | null | null |
#include<iostream>
#include<algorithm>
#include<deque>
using namespace std;
typedef struct node
{
struct node* left;
struct node* right;
int height;
int data;
int number;
}node;
node* generate(int key,int height1)
{
node* n = new node;
n->left = NULL;
n->right = NULL;
// if(p!=NULL)n->parent = p;
// else n->parent = NULL;
n->height = height1;
n->data = key;
n->number = 1;
return n;
}
int height(node* root)
{
if(root==NULL) {return -1;}
else {return root->height;}
}
int number(node* root)
{
if(root==NULL) return 0;
else return root->number;
}
void level(node* root)
{
if(root != NULL)
{
deque< node* > q;
q.push_back(root);
// q.push_back(NULL);
while(!q.empty())
{
node* n = q.front();
if(n!=NULL)
{
if(n->left)q.push_back(n->left);
if(n->right)q.push_back(n->right);
cout<<n->data<<" "<<n->number<<endl;
q.pop_front();
}
else
{
cout<<endl;
q.pop_front();
if(q.front()!=NULL) q.push_back(NULL);
}
}
}
}
void inorder(node* root)
{
if(root!=NULL)
{
inorder(root->left);
cout<<root->data<<" ";
inorder(root->right);
}
}
void preorder(node* root)
{
if(root!=NULL)
{
cout<<root->data<<" ";
preorder(root->left);
preorder(root->right);
}
}
int computeHeight(node* root)
{
if(root!=NULL)
{
root->height = max(computeHeight(root->left),computeHeight(root->right))+1;
return root->height;;
}
else return -1;
}
node* zigzig(node* z,node* y,node* x,node* t1,node* t2,node* t3,node* t4)
{
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
z->left = t1;z->right = t2;
y->left = z; y->right = x;
x->left = t3; x->right = t4;
z->height-=2;
x->number = number(x->left)+number(x->right)+1;
z->number = number(z->left)+number(z->right)+1;
y->number = number(y->left)+number(y->right)+1;
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
return y;
}
node* zigzag(node* z,node* y,node* x,node* t1,node* t2,node* t3,node* t4)
{
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
x->left = z; x-> right = y;
z->left = t1; z->right = t2;
y->left = t3; y->right = t4;
x->height+=1;
y->height-=1;
z->height-=2;
y->number = number(y->left)+number(y->right)+1;
z->number = number(z->left)+number(z->right)+1;
x->number = number(x->left)+number(x->right)+1;
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
return x;
}
node* zagzag(node* z,node* y,node* x,node* t1,node* t2,node* t3,node* t4)
{
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
x->left = t1;x->right = t2;
y->left = x; y->right = z;
z->left = t3; z->right = t4;
z->height-=2;
x->number = number(x->left)+number(x->right)+1;
z->number = number(z->left)+number(z->right)+1;
y->number = number(y->left)+number(y->right)+1;
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
return y;
}
node* zagzig(node* z,node* y,node* x,node* t1,node* t2,node* t3,node* t4)
{
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
x->left = y; x-> right = z;
y->left = t1; y->right = t2;
z->left = t3; z->right = t4;
y->height-=1;
z->height-=2;
x->height+=1;
y->number = number(y->left)+number(y->right)+1;
z->number = number(z->left)+number(z->right)+1;
x->number = number(x->left)+number(x->right)+1;
// cout<<"data: "<<z->data<<" height "<<z->height<<" data: "<<y->data<<" height "<<y->height<<" data: "<<x->data<<" height "<<x->height<<endl;
return x;
}
node* decide(node* z)
{
node* y = new node;
node* x = new node;
if(height(z->right) > height(z->left))
{
y = z->right;
if(height(y->right) > height(y->left)) {x = y->right; z = zigzig(z,y,x,z->left,y->left,x->left,x->right);} //The parameters are z,y,x,t1,t2,t3,t4
else {x = y->left; z = zigzag(z,y,x,z->left,x->left,x->right,y->right);}
}
else
{
y = z->left;
if(height(y->right) > height(y->left)) {x = y->right; z = zagzig(z,y,x,y->left,x->left,x->right,z->right);}
else {x = y->left; z = zagzag(z,y,x,x->left,x->right,y->right,z->right);}
}
return z;
}
node* insert(node* root,int key)
{
if(root!=NULL)
{
if(key==root->data) return root; // No duplicates
else if(key > root->data) root->right = insert(root->right,key);
else root->left = insert(root->left,key);
root->height = max(height(root->right),height(root->left))+1;
// cout<<"data: "<<root->data<<" left: "<<height(root->left)<<" right: "<<height(root->right)<<endl;
if(abs(height(root->left) - height(root->right)) > 1)
{
// cout<<"data: "<<root->data<<" left: "<<height(root->left)<<" right: "<<height(root->right)<<endl;
root = decide(root);
}
root->number = number(root->left)+number(root->right) +1;
return root;
}
else
{
return generate(key,0);
}
}
node* inorderSuccesor(node* root)
{
while(root->left!=NULL)
{
root->height = max(height(root->left) -1,height(root->right)) +1;
root->number -=1;
root = root->left;
}
return root;
}
node* delete1(node* root,int key)
{
if(root == NULL) return NULL;
if(key< root->data) root->left = delete1(root->left,key);
else if(key>root->data) root->right = delete1(root->right,key);
else
{
int children = 2;
if(root->left == NULL) children-=1;
if(root->right== NULL) children-=1;
if(children == 0) {root = NULL;return NULL;}
else if(children == 1)
{
node* child;
if(root->left!=NULL) child = root->left;
else child = root->right;
child->height = max(height(child->left),height(child->right)) +1;
child->number = number(child->left) + number(child->right) +1;
return child;
}
else //Children ==2
{
node* child = inorderSuccesor(root->right);
root->data = child->data;
root->right = delete1(root->right,child->data);
root->height = max(height(root->left),height(root->right)) +1;
root->number = number(root->left) + number(root->right) +1;
if(abs(height(root->left) - height(root->right)) > 1) root = decide(root);
return root;
}
}
if(abs(height(root->left) - height(root->right)) > 1)
{
// cout<<"data: "<<root->data<<" left: "<<height(root->left)<<" right: "<<height(root->right)<<endl;
root = decide(root);
}
root->height = max(height(root->left),height(root->right)) +1;
root->number = number(root->left)+number(root->right) +1;
return root;
}
int findrank(node* root,int key)
{
int count = 0;
while(root&& root->data!=key)
{
if(key > root->data) {count+= number(root->left) +1; root = root->right;}
else root = root->left;
}
if(root)count+=number(root->left);
return count;
}
int kthsmallest(node* root,int k)
{
int count = 0;
while(root && number(root->left)+count!=k-1)
{
if(number(root->left)+count+1>k) root = root->left;
else if(number(root->left)+count+1<k) {count+= number(root->left)+1;root = root->right;}
}
if(root==NULL) return -1;
return root->data;
}
int main()
{
int q;
cin>>q;
node* root = NULL;
for(int h=0;h<q;h++)
{
char a;
cin>>a;
if(a=='I')//Insert value
{
int key;
cin>>key;
root = insert(root,key);
// cout<<"Level Order"<<endl;
// level(root);
// cout<<"Inorder"<<endl;
// inorder(root);
// cout<<endl;
// cout<<"Preorder"<<endl;
// preorder(root);
// cout<<endl;
}
else if(a=='D') //Delete value
{
int key;
cin>>key;
root = delete1(root,key);
// level(root);
// cout<<endl;
// cout<<"Inorder"<<endl;
// inorder(root);
// cout<<endl;
// cout<<"Preorder"<<endl;
// preorder(root);
// cout<<endl;
}
else if(a=='K')
{
int k;
cin>>k;
int n = kthsmallest(root,k);
// cout<<"Level Order"<<endl;
// level(root);
if(root==NULL || k>root->number) cout<<"invalid"<<endl;
else cout<<n<<endl;
}
else if(a=='C')
{
int x;
cin>>x;
cout<<findrank(root,x)<<endl;
}
}
}
/*
8
4 7 10 11 6 2 3 1
8
1 0 1 -1 1 -2 2 2
*/
| 25.931953
| 149
| 0.548888
|
Mindjolt2406
|
ba8a3b5da3ad402bcff47d797519d8c5430ecd01
| 958
|
hh
|
C++
|
PacGeom/PacPieceTraj.hh
|
brownd1978/FastSim
|
05f590d72d8e7f71856fd833114a38b84fc7fd48
|
[
"Apache-2.0"
] | null | null | null |
PacGeom/PacPieceTraj.hh
|
brownd1978/FastSim
|
05f590d72d8e7f71856fd833114a38b84fc7fd48
|
[
"Apache-2.0"
] | null | null | null |
PacGeom/PacPieceTraj.hh
|
brownd1978/FastSim
|
05f590d72d8e7f71856fd833114a38b84fc7fd48
|
[
"Apache-2.0"
] | null | null | null |
//--------------------------------------------------------------------------
// Name:
// PacPieceTraj
// Description:
// Piecewise helix, but removing all the 'diff' stuff.
// Environment:
// Software developed for PACRAT / SuperB
// Copyright Information:
// Copyright (C) 2008 Lawrence Berkeley Laboratory
// Author List:
// Dave Brown 23 APR 2008
//------------------------------------------------------------------------
#ifndef PacPieceTraj_HH
#define PacPieceTraj_HH
#include "BbrGeom/TrkPieceTraj.hh"
#include "BbrGeom/TrkGeomTraj.hh"
class PacPieceTraj : public TrkPieceTraj {
public:
PacPieceTraj();
PacPieceTraj(const PacPieceTraj&);
PacPieceTraj* clone() const;
virtual ~PacPieceTraj();
// append a piece. If this isn't the first piece, it's
// initial point must fit on the trajectory at flightlength flt
// note this object -TAKES OWNERSHIP- of the trajs passed to it
void append(const double& flt,TrkGeomTraj*);
};
#endif
| 30.903226
| 76
| 0.621086
|
brownd1978
|
ba94c9d3d3881c0b58dfcbf7332175884abfdd9e
| 1,399
|
cpp
|
C++
|
LinearRegression.cpp
|
aidenfrog/c-Machine-Learning-Library-WIP-
|
a58542ca8fed167fa2e5e8ef8ce022dcd9bed29c
|
[
"MIT"
] | null | null | null |
LinearRegression.cpp
|
aidenfrog/c-Machine-Learning-Library-WIP-
|
a58542ca8fed167fa2e5e8ef8ce022dcd9bed29c
|
[
"MIT"
] | null | null | null |
LinearRegression.cpp
|
aidenfrog/c-Machine-Learning-Library-WIP-
|
a58542ca8fed167fa2e5e8ef8ce022dcd9bed29c
|
[
"MIT"
] | null | null | null |
#include "LinearRegression.h"
#include <cstdlib>
namespace Metagross {
LinearRegression::LinearRegression() {
m = 0;
n = 2;
initTheta();
}
LinearRegression::LinearRegression(int features) {
m = 0;
n = features;
initTheta();
}
LinearRegression::LinearRegression(double a) {
m = 0;
n = 2;
initTheta();
alpha = a;
}
LinearRegression::LinearRegression(int f, double a) {
m = 0;
n = f;
alpha = a;
initTheta();
}
LinearRegression::~LinearRegression() {
}
void LinearRegression::train(Matrix X, Matrix y) {
m = X.getRows();
theta = theta - (alpha/m)*(h(X) - y) * X;
}
void LinearRegression::train(Matrix X, Matrix y, double lambda) {
m = X.getRows();
theta = theta*(1-alpha*lambda/m) - (alpha/m)*(h(X) - y) * X;
}
void LinearRegression::trainNormal(Matrix X, Matrix y) {
theta = (~X*X).inverse() * ~X * y;
}
void LinearRegression::trainNormal(Matrix X, Matrix y, double lambda) {
theta = (~X*X + lambda*(identity(n+1).set(0,0,0))).inverse() * ~X * y;
}
double LinearRegression::test(Matrix X, Matrix y) {
Matrix prd = predict(X);
}
Matrix LinearRegression::predict(Matrix X) {
//do later
}
void LinearRegression::initTheta() {
double* data = new double[n+1];
for(int x = 0; x < n+1; x++) {
data[x] = std::rand();
}
theta = Matrix(1, n+1, data);
}
Matrix LinearRegression::h(Matrix X) {
return (theta*X);
}
}
| 19.430556
| 72
| 0.619728
|
aidenfrog
|
ba9531f0cc4746ab15f8d1b54a73bca3a00cd0ac
| 1,242
|
cpp
|
C++
|
Dynamic Programming/EqualSumPartition_DP_TopDown.cpp
|
parth1614/DSA_Questions
|
7083952eb310a21f7e30267efa437dfbb8c0f88f
|
[
"MIT"
] | null | null | null |
Dynamic Programming/EqualSumPartition_DP_TopDown.cpp
|
parth1614/DSA_Questions
|
7083952eb310a21f7e30267efa437dfbb8c0f88f
|
[
"MIT"
] | null | null | null |
Dynamic Programming/EqualSumPartition_DP_TopDown.cpp
|
parth1614/DSA_Questions
|
7083952eb310a21f7e30267efa437dfbb8c0f88f
|
[
"MIT"
] | null | null | null |
#include<bits/stdc++.h>
using namespace std;
bool EqualSumPart(vector<int>& arr, int n){
int sum = 0;
for(int i=0;i<n;++i){
sum = sum + arr[i];
}
if(sum%2!=0){
return false;
}
else if(sum%2==0){
vector<vector<bool>> t;
for(int i=0;i<n+1;++i){
vector<bool> temp;
for(int j=0;j<(sum/2)+1;++j){
if(j==0 || (i==0&&j==0)){
temp.push_back(true);
}
else if(i==0){
temp.push_back(false);
}
}
t.push_back(temp);
temp.clear();
}
for(int i=1;i<n+1;++i){
for(int j=1;j<(sum/2)+1;++j){
if(arr[i-1]<=j){
t[i][j] = (t[i-1][j-arr[i-1]] || t[i-1][j]);
}
else if(arr[i-1]>j){
t[i][j] = t[i-1][j];
}
}
}
return t[n][sum/2];
}
}
int main(){
int n;
cin>>n; //size of std::vector ;
vector<int> arr;
for(int i=0;i<n;++i){
int x;
cin>>x;
arr.push_back(x);
}
if(EqualSumPart(arr,n)==true){
cout<<"Equal sum partiotions exist";
}
else{
cout<<"Equal sum partiotions doesn't exist";
}
}
| 20.032258
| 60
| 0.400966
|
parth1614
|
ba95ee3cfbf5217429f64a8cb077cf9351152afb
| 9,101
|
hpp
|
C++
|
source/backend/cpu/BinaryUtils.hpp
|
JujuDel/MNN
|
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
|
[
"Apache-2.0"
] | 1
|
2021-09-17T03:22:16.000Z
|
2021-09-17T03:22:16.000Z
|
source/backend/cpu/BinaryUtils.hpp
|
JujuDel/MNN
|
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
|
[
"Apache-2.0"
] | null | null | null |
source/backend/cpu/BinaryUtils.hpp
|
JujuDel/MNN
|
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
|
[
"Apache-2.0"
] | null | null | null |
#include <math.h>
#include <algorithm>
#include "compute/CommonOptFunction.h"
#include "MNN_generated.h"
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryMax {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return std::max(x, y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryMin {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return std::min(x, y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryMul {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x * y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryAdd {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x + y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinarySub {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x - y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryRealDiv {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x / y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryMod {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x - x / y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryGreater {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x > y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryLess {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x < y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryGreaterEqual {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x >= y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryLessEqual {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x <= y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryEqual {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x == y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryFloorDiv {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return floor(static_cast<float>(x) / y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryFloorMod {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return x - floor(x / y) * y;
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinarySquaredDifference {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (x - y) * (x - y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryPow {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return pow(x, y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryAtan2 {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return atan(x / y);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryLogicalOr {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x || y) ? 1 : 0);
}
};
template <typename _Arg1, typename _Arg2, typename _ErrorCode>
struct BinaryNotEqual {
_ErrorCode operator()(const _Arg1& x, const _Arg2& y) const {
return (_ErrorCode)((x != y) ? 1 : 0);
}
};
template<typename Func, typename V, int pack>
void executeVec(void* outputRaw, const void* inputRaw0, const void* inputRaw1, int elementSize, int needBroadcastIndex) {
Func compute;
const int sizeDivUnit = elementSize / pack;
const int remainCount = elementSize - sizeDivUnit * pack;
auto src0 = (const float*)(inputRaw0);
auto src1 = (const float*)(inputRaw1);
auto dst = (float*)outputRaw;
if (-1 == needBroadcastIndex) {
if (sizeDivUnit > 0) {
for (int i = 0; i < sizeDivUnit; ++i) {
V a = V::load(src0);
V b = V::load(src1);
V::save(dst, compute(a, b));
src0 += pack;
src1 += pack;
dst += pack;
}
}
if (remainCount > 0) {
float tempSrc0[pack];
float tempSrc1[pack];
float tempDst[pack];
::memcpy(tempSrc0, src0, remainCount * sizeof(float));
::memcpy(tempSrc1, src1, remainCount * sizeof(float));
V a = V::load(tempSrc0);
V b = V::load(tempSrc1);
V::save(tempDst, compute(a, b));
::memcpy(dst, tempDst, remainCount * sizeof(float));
}
} else if (0 == needBroadcastIndex) {
const float srcValue0 = src0[0];
V a = V(srcValue0);
if (sizeDivUnit > 0) {
for (int i = 0; i < sizeDivUnit; ++i) {
const auto src1Ptr = src1;
auto dstPtr = dst;
V b = V::load(src1Ptr);
V::save(dstPtr, compute(a, b));
src1 += pack;
dst += pack;
}
}
if (remainCount > 0) {
float tempSrc1[pack];
float tempDst[pack];
::memcpy(tempSrc1, src1, remainCount * sizeof(float));
V b = V::load(tempSrc1);
V::save(tempDst, compute(a, b));
::memcpy(dst, tempDst, remainCount * sizeof(float));
}
} else {
const float srcValue1 = src1[0];
V b = V(srcValue1);
if (sizeDivUnit > 0) {
for (int i = 0; i < sizeDivUnit; ++i) {
const auto src0Ptr = src0;
auto dstPtr = dst;
V a = V::load(src0Ptr);
V::save(dstPtr, compute(a, b));
src0 += pack;
dst += pack;
}
}
if (remainCount > 0) {
float tempSrc0[pack];
float tempDst[pack];
::memcpy(tempSrc0, src0, remainCount * sizeof(float));
V a = V::load(tempSrc0);
V::save(tempDst, compute(a, b));
::memcpy(dst, tempDst, remainCount * sizeof(float));
}
}
}
template<typename Vec>
struct VecBinaryAdd {
Vec operator()(Vec& x, Vec& y) const {
return x + y;
}
};
template<typename Vec>
struct VecBinarySub {
Vec operator()(Vec& x, Vec& y) const {
return x - y;
}
};
template<typename Vec>
struct VecBinaryMul {
Vec operator()(Vec& x, Vec& y) const {
return x * y;
}
};
template<typename Vec>
struct VecBinaryMin {
Vec operator()(Vec& x, Vec& y) const {
return Vec::min(x, y);
}
};
template<typename Vec>
struct VecBinaryMax {
Vec operator()(Vec& x, Vec& y) const {
return Vec::max(x, y);
}
};
template<typename Vec>
struct VecBinarySqd {
Vec operator()(Vec& x, Vec& y) const {
return (x-y)*(x-y);
}
};
namespace MNN {
template<typename Tin, typename Tout, typename Func>
void execute(void* outputRaw, const void* inputRaw0, const void* inputRaw1, int elementSize, int broadcastIndex) {
Func f;
const int input0DataCount = elementSize;
const int input1DataCount = elementSize;
const Tin* input0Data = (const Tin*)inputRaw0;
const Tin* input1Data = (const Tin*)inputRaw1;
Tout* outputData = (Tout*)outputRaw;
if (broadcastIndex == 0) { // data count == 1, not only mean scalar input, maybe of shape (1, 1, 1, ...,1)
for (int i = 0; i < input1DataCount; i++) {
outputData[i] = (Tout)(f(input0Data[0], input1Data[i]));
}
} else if (broadcastIndex == 1) {
for (int i = 0; i < input0DataCount; i++) {
outputData[i] = (Tout)(f(input0Data[i], input1Data[0]));
}
} else { // both input contains more than one element,which means no scalar input
for (int i = 0; i < input0DataCount; i++) {
outputData[i] = (Tout)(f(input0Data[i], input1Data[i]));
}
}
}
template<typename V, int pack>
MNNBinaryExecute selectVector(int type) {
switch (type) {
case BinaryOpOperation_ADD:
return executeVec<VecBinaryAdd<V>, V, pack>;
case BinaryOpOperation_SUB:
return executeVec<VecBinarySub<V>, V, pack>;
case BinaryOpOperation_MUL:
return executeVec<VecBinaryMul<V>, V, pack>;
case BinaryOpOperation_MINIMUM:
return executeVec<VecBinaryMin<V>, V, pack>;
case BinaryOpOperation_MAXIMUM:
return executeVec<VecBinaryMax<V>, V, pack>;
case BinaryOpOperation_SquaredDifference:
return executeVec<VecBinarySqd<V>, V, pack>;
}
return nullptr;
}
};
| 30.850847
| 121
| 0.593781
|
JujuDel
|
ba971debe07ae6bf85e5bb426414ef350c87544d
| 656
|
hpp
|
C++
|
SKM Client API/LicenseKeyChecker.hpp
|
svedi-travis/skm_temp
|
1b10527a2f3ebd384575544100fe681bc19fa4b2
|
[
"BSD-2-Clause"
] | null | null | null |
SKM Client API/LicenseKeyChecker.hpp
|
svedi-travis/skm_temp
|
1b10527a2f3ebd384575544100fe681bc19fa4b2
|
[
"BSD-2-Clause"
] | null | null | null |
SKM Client API/LicenseKeyChecker.hpp
|
svedi-travis/skm_temp
|
1b10527a2f3ebd384575544100fe681bc19fa4b2
|
[
"BSD-2-Clause"
] | null | null | null |
#pragma once
#include "LicenseKey.hpp"
namespace serialkeymanager_com {
class LicenseKey;
class LicenseKeyChecker {
bool status_;
LicenseKey const* key_;
public:
LicenseKeyChecker(LicenseKey const* license_key);
explicit operator bool() const;
LicenseKeyChecker& has_feature(int feature);
LicenseKeyChecker& has_not_feature(int feature);
LicenseKeyChecker& has_expired(std::uint64_t now);
LicenseKeyChecker& has_not_expired(std::uint64_t now);
LicenseKeyChecker& is_blocked();
LicenseKeyChecker& is_not_blocked();
LicenseKeyChecker& is_on_right_machine(std::string const& machine_code);
};
} // namespace serialkeymanager_com
| 23.428571
| 74
| 0.78811
|
svedi-travis
|
ba9808e877a90543c12e055f06c6514c1258c467
| 3,490
|
cpp
|
C++
|
source/math/distribution/distribution1D.cpp
|
xh5a5n6k6/cadise
|
797b116b96d7d3989b58454422501f6ace04c4b8
|
[
"MIT"
] | 33
|
2019-04-15T16:42:27.000Z
|
2021-01-23T09:54:48.000Z
|
source/math/distribution/distribution1D.cpp
|
xh5a5n6k6/cadise
|
797b116b96d7d3989b58454422501f6ace04c4b8
|
[
"MIT"
] | null | null | null |
source/math/distribution/distribution1D.cpp
|
xh5a5n6k6/cadise
|
797b116b96d7d3989b58454422501f6ace04c4b8
|
[
"MIT"
] | null | null | null |
#include "math/distribution/distribution1D.h"
#include "fundamental/assertion.h"
#include "math/math.h"
namespace cadise {
Distribution1D::Distribution1D() = default;
Distribution1D::Distribution1D(const real* const value, const std::size_t sizeNumber) :
_cdf(sizeNumber + 1) {
CADISE_ASSERT(value);
_delta = 1.0_r / static_cast<real>(sizeNumber);
_cdf[0] = 0.0_r;
for (std::size_t i = 1; i <= sizeNumber; ++i) {
_cdf[i] = _cdf[i - 1] + value[i - 1] * _delta;
}
const real valueSum = _cdf.back();
// normalize cdf
if (valueSum > 0.0_r) {
const real inverseValueSum = 1.0_r / valueSum;
for (std::size_t i = 1; i <= sizeNumber; ++i) {
_cdf[i] *= inverseValueSum;
}
}
else {
// use linear cdf instead
for (std::size_t i = 1; i <= sizeNumber; ++i) {
_cdf[i] = static_cast<real>(i) * _delta;
}
}
// ensure cdf's last value is 1
_cdf[sizeNumber] = 1.0_r;
}
real Distribution1D::sampleContinuous(const real seed) const {
real localPdf;
std::size_t localIndex;
return this->sampleContinuous(seed, &localPdf, &localIndex);
}
real Distribution1D::sampleContinuous(const real seed,
real* const out_pdf) const {
CADISE_ASSERT(out_pdf);
std::size_t localIndex;
return this->sampleContinuous(seed, out_pdf, &localIndex);
}
real Distribution1D::sampleContinuous(const real seed,
real* const out_pdf,
std::size_t* const out_index) const {
CADISE_ASSERT(out_pdf);
CADISE_ASSERT(out_index);
const std::size_t sampleIndex = this->continuousToDiscrete(seed);
CADISE_ASSERT_RANGE_INCLUSIVE(sampleIndex, 0, _cdf.size() - 2);
*out_index = sampleIndex;
*out_pdf = this->pdfContinuous(sampleIndex);
real deltaValue = seed - _cdf[sampleIndex];
if (_cdf[sampleIndex + 1] > _cdf[sampleIndex]) {
deltaValue /= _cdf[sampleIndex + 1] - _cdf[sampleIndex];
}
const real sample = (static_cast<real>(sampleIndex) + deltaValue) * _delta;
return math::clamp(sample, 0.0_r, 1.0_r);
}
std::size_t Distribution1D::sampleDiscrete(const real seed) const {
real localPdf;
return this->sampleDiscrete(seed, &localPdf);
}
std::size_t Distribution1D::sampleDiscrete(const real seed,
real* const out_pdf) const {
CADISE_ASSERT(out_pdf);
const std::size_t sampleIndex = this->continuousToDiscrete(seed);
*out_pdf = this->pdfDiscrete(sampleIndex);
return sampleIndex;
}
real Distribution1D::pdfContinuous(const real sample) const {
const std::size_t sampleIndex = continuousToDiscrete(sample);
return this->pdfContinuous(sampleIndex);
}
real Distribution1D::pdfContinuous(const std::size_t sampleIndex) const {
return (_cdf[sampleIndex + 1] - _cdf[sampleIndex]) / _delta;
}
real Distribution1D::pdfDiscrete(const std::size_t sampleIndex) const {
CADISE_ASSERT_RANGE_INCLUSIVE(sampleIndex, 0, _cdf.size() - 2);
return _cdf[sampleIndex + 1] - _cdf[sampleIndex];
}
std::size_t Distribution1D::continuousToDiscrete(const real seed) const {
CADISE_ASSERT_RANGE_INCLUSIVE(seed, 0.0_r, 1.0_r);
for (std::size_t i = _cdf.size() - 2; i >= 0; --i) {
if (_cdf[i] <= seed) {
return i;
}
}
return 0;
}
} // namespace cadise
| 27.480315
| 87
| 0.629799
|
xh5a5n6k6
|
ba9977bb6ada7ffce6a4c11dc4e5678ada7cf470
| 3,916
|
cpp
|
C++
|
src/other/ext/openscenegraph/src/OpenThreads/win32/Win32ThreadBarrier.cpp
|
lf-/brlcad
|
f91ea585c1a930a2e97c3f5a8274db8805ebbb46
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | 1
|
2019-10-23T16:17:49.000Z
|
2019-10-23T16:17:49.000Z
|
src/other/openscenegraph/src/OpenThreads/win32/Win32ThreadBarrier.cpp
|
pombredanne/sf.net-brlcad
|
fb56f37c201b51241e8f3aa7b979436856f43b8c
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null |
src/other/openscenegraph/src/OpenThreads/win32/Win32ThreadBarrier.cpp
|
pombredanne/sf.net-brlcad
|
fb56f37c201b51241e8f3aa7b979436856f43b8c
|
[
"BSD-4-Clause",
"BSD-3-Clause"
] | 1
|
2018-12-21T21:09:47.000Z
|
2018-12-21T21:09:47.000Z
|
/* -*-c++-*- OpenThreads library, Copyright (C) 2002 - 2007 The Open Thread Group
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* included with this distribution, and on the openscenegraph.org website.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* OpenSceneGraph Public License for more details.
*/
//
// Win32Barrier.c++ - C++ Barrier class built on top of POSIX threads.
// ~~~~~~~~~~~~~~~~~~
//
#include <OpenThreads/Barrier>
#include <OpenThreads/Thread>
#include <OpenThreads/ScopedLock>
#include "Win32BarrierPrivateData.h"
using namespace OpenThreads;
// so compiler can place it somewhere
Win32BarrierPrivateData::~Win32BarrierPrivateData()
{
}
//----------------------------------------------------------------------------
//
// Description: Constructor
//
// Use: public.
//
Barrier::Barrier(int numThreads) {
Win32BarrierPrivateData *pd = new Win32BarrierPrivateData(numThreads, 0, 0);
_valid = true;
_prvData = static_cast<void *>(pd);
}
//----------------------------------------------------------------------------
//
// Description: Destructor
//
// Use: public.
//
Barrier::~Barrier() {
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
delete pd;
}
//----------------------------------------------------------------------------
//
// Description: Reset the barrier to its original state
//
// Use: public.
//
void Barrier::reset() {
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
pd->cnt = 0;
pd->phase = 0;
}
//----------------------------------------------------------------------------
//
// Description: Block until numThreads threads have entered the barrier.
//
// Use: public.
//
void Barrier::block(unsigned int numThreads) {
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
if(numThreads != 0) pd->maxcnt = numThreads;
int my_phase;
ScopedLock<Mutex> lock(pd->lock);
if( _valid )
{
my_phase = pd->phase;
++pd->cnt;
if (pd->cnt == pd->maxcnt) { // I am the last one
pd->cnt = 0; // reset for next use
pd->phase = 1 - my_phase; // toggle phase
pd->cond.broadcast();
}else{
while (pd->phase == my_phase ) {
pd->cond.wait(&pd->lock);
}
}
}
}
void Barrier::invalidate()
{
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
pd->lock.lock();
_valid = false;
pd->lock.unlock();
release();
}
//----------------------------------------------------------------------------
//
// Description: Release the barrier, now.
//
// Use: public.
//
void Barrier::release() {
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
int my_phase;
ScopedLock<Mutex> lock(pd->lock);
my_phase = pd->phase;
pd->cnt = 0; // reset for next use
pd->phase = 1 - my_phase; // toggle phase
pd->cond.broadcast();
}
//----------------------------------------------------------------------------
//
// Description: Return the number of threads currently blocked in the barrier
//
// Use: public
//
int Barrier::numThreadsCurrentlyBlocked() {
Win32BarrierPrivateData *pd =
static_cast<Win32BarrierPrivateData*>(_prvData);
int numBlocked = -1;
ScopedLock<Mutex> lock(pd->lock);
numBlocked = pd->cnt;
return numBlocked;
}
| 26.639456
| 82
| 0.555924
|
lf-
|
ba99b27431500dea12701c734a823c6e47fe6472
| 519
|
cpp
|
C++
|
recipes/libsigcpp/2.x.x/test_package/test_package.cpp
|
dyndrite/conan-center-index
|
106b5c2f532d5129e7ca1997e29e4e105bb3018c
|
[
"MIT"
] | 1
|
2021-11-11T03:07:13.000Z
|
2021-11-11T03:07:13.000Z
|
recipes/libsigcpp/2.x.x/test_package/test_package.cpp
|
dyndrite/conan-center-index
|
106b5c2f532d5129e7ca1997e29e4e105bb3018c
|
[
"MIT"
] | null | null | null |
recipes/libsigcpp/2.x.x/test_package/test_package.cpp
|
dyndrite/conan-center-index
|
106b5c2f532d5129e7ca1997e29e4e105bb3018c
|
[
"MIT"
] | null | null | null |
/* Copyright 2003 - 2016, The libsigc++ Development Team
*
* Assigned to the public domain. Use as you wish without
* restriction.
*/
#include <iostream>
#include <string>
#include <sigc++/sigc++.h>
// make sure that sigc++config.h can be included
#include <sigc++config.h>
void on_print(const std::string &str) { std::cout << str; }
int main() {
sigc::signal<void(const std::string &)> signal_print;
signal_print.connect(sigc::ptr_fun(&on_print));
signal_print.emit("hello world\n");
return 0;
}
| 20.76
| 59
| 0.680154
|
dyndrite
|
ba9a652e5ede8f02f9268cd19443d68a886c13c0
| 167
|
cpp
|
C++
|
src/atcoder/abc008/a/sol_0.cpp
|
kagemeka/competitive-programming
|
c70fe481bcd518f507b885fc9234691d8ce63171
|
[
"MIT"
] | 1
|
2021-07-11T03:20:10.000Z
|
2021-07-11T03:20:10.000Z
|
src/atcoder/abc008/a/sol_0.cpp
|
kagemeka/competitive-programming
|
c70fe481bcd518f507b885fc9234691d8ce63171
|
[
"MIT"
] | 39
|
2021-07-10T05:21:09.000Z
|
2021-12-15T06:10:12.000Z
|
src/atcoder/abc008/a/sol_0.cpp
|
kagemeka/competitive-programming
|
c70fe481bcd518f507b885fc9234691d8ce63171
|
[
"MIT"
] | null | null | null |
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int s, t;
cin >> s >> t;
cout << t - s + 1 << '\n';
}
| 13.916667
| 30
| 0.556886
|
kagemeka
|
ba9aadd959936566085482cd2733e0a624b3a33a
| 5,077
|
cpp
|
C++
|
branch/old_angsys/angsys_beta1/source/angsys/angsys.shared/source/files/input_text_file.cpp
|
ChuyX3/angsys
|
89b2eaee866bcfd11e66efda49b38acc7468c780
|
[
"Apache-2.0"
] | null | null | null |
branch/old_angsys/angsys_beta1/source/angsys/angsys.shared/source/files/input_text_file.cpp
|
ChuyX3/angsys
|
89b2eaee866bcfd11e66efda49b38acc7468c780
|
[
"Apache-2.0"
] | null | null | null |
branch/old_angsys/angsys_beta1/source/angsys/angsys.shared/source/files/input_text_file.cpp
|
ChuyX3/angsys
|
89b2eaee866bcfd11e66efda49b38acc7468c780
|
[
"Apache-2.0"
] | null | null | null |
/*********************************************************************************************************************/
/* File Name: input_text_file.cpp */
/* Author: Ing. Jesus Rocha <chuyangel.rm@gmail.com>, July 2016. */
/* Copyright (C) Angsys, - All Rights Reserved */
/* Confidential Information of Angsys. Not for disclosure or distribution without the author's prior written */
/* consent. This file contains code, techniques and know-how which is confidential and proprietary to Jesus Rocha */
/* */
/*********************************************************************************************************************/
#include "pch.h"
#include "ang/core/files.h"
using namespace ang;
using namespace ang::streams;
using namespace ang::core::files;
input_text_file::input_text_file()
: file()
{
}
input_text_file::input_text_file(path_view path)
: input_text_file()
{
open(path);
}
input_text_file::~input_text_file()
{
close();
}
ANG_IMPLEMENT_BASIC_INTERFACE(ang::core::files::input_text_file, file);
bool input_text_file::open(path_view path)
{
if (is_valid())
return false;
if (!create(path, open_flags::access_in + open_flags::open_exist + open_flags::type_text))
return false;
return true;
}
text::encoding_t input_text_file::format()const
{
return hfile.is_empty() ? text::encoding::unknown : hfile->encoding().get();
}
file_cursor_t input_text_file::cursor()const
{
return hfile.is_empty() ? 0 : hfile->cursor();
}
void input_text_file::cursor(file_cursor_t offset, file_reference_t ref)
{
if (!hfile.is_empty())
hfile->cursor(ref, offset);
}
bool input_text_file::read(core::delegates::function<bool(streams::itext_input_stream_t)> func, file_cursor_t offset, wsize size)
{
ibuffer_t buff = map(min<wsize>((wsize)size, wsize(hfile->file_size() - offset)), offset);
if (buff.get() == null)
return false;
return func(new streams::text_buffer_input_stream(buff, hfile->encoding()));
}
//ang::core::async::iasync_t<bool> input_text_file::read_async(core::delegates::function<bool(streams::itext_input_stream_t)> func, file_cursor_t offset, wsize size)
//{
// add_ref();
// return core::async::async_task<bool>::run_async([=](async::iasync<bool>*, var_args_t)->bool
// {
// input_text_file_t _this = this;
// release();
//
// ibuffer_t buff = map(min<wsize>((wsize)size, wsize(hfile->file_size() - offset)), offset);
// if (buff.get() == null)
// return false;
// return func(new streams::text_buffer_input_stream(buff, hfile->encoding()));
// });
//}
wsize input_text_file::read(wstring& out, wsize count)
{
if (hfile.is_empty())
return 0U;
switch (hfile->encoding())
{
case text::encoding::ascii: {
string temp = new strings::string_buffer(count);
temp->length(hfile->read(count, temp->str()));
out = temp;
} return out->length();
case text::encoding::unicode: {
if (out.is_empty())
out = new strings::wstring_buffer(count);
else
out->realloc(count, false);
out->length(hfile->read(count * sizeof(wchar), out->str()) / sizeof(wchar));
} return out->length();
case text::encoding::utf_8: {
mstring temp = new strings::mstring_buffer(count);
temp->length(hfile->read(count, temp->str()));
out = temp;
} return out->length();
default:
return 0U;
}
}
wsize input_text_file::read(string& out, wsize count)
{
if (hfile.is_empty())
return 0U;
switch (hfile->encoding())
{
case text::encoding::unicode: {
wstring temp = new strings::wstring_buffer(count);
temp->length(hfile->read(count * sizeof(wchar), temp->str()) / sizeof(wchar));
out = temp;
} return out->length();
case text::encoding::ascii: {
if (out.is_empty())
out = new strings::string_buffer(count);
else
out->realloc(count, false);
out->length(hfile->read(count , out->str()));
} return out->length();
case text::encoding::utf_8: {
mstring temp = new strings::mstring_buffer(count);
temp->length(hfile->read(count, temp->str()));
out = temp;
} return out->length();
default:
return 0U;
}
}
wsize input_text_file::read(mstring& out, wsize count)
{
if (hfile.is_empty())
return 0U;
switch (hfile->encoding())
{
case text::encoding::unicode: {
wstring temp = new strings::wstring_buffer(count);
temp->length(hfile->read(count * sizeof(char_t), temp->str()) / sizeof(char_t));
out = temp;
} return out->length();
case text::encoding::utf_8: {
if (out.is_empty())
out = new strings::mstring_buffer(count);
else
out->realloc(count, false);
out->length(hfile->read(count, out->str()));
} return out->length();
case text::encoding::ascii: {
mstring temp = new strings::mstring_buffer(count);
temp->length(hfile->read(count, temp->str()));
out = temp;
} return out->length();
default:
return 0U;
}
}
| 30.401198
| 165
| 0.609415
|
ChuyX3
|
ba9ba202a7ff2cdd3d8ea2127e6d9ed2e2256e84
| 13,234
|
cc
|
C++
|
src/arch/x86/bios/intelmp.cc
|
fei-shan/gem5-experiment
|
70781db30d42b1fe50e495bd04f7755a4b0e0e59
|
[
"BSD-3-Clause"
] | 1
|
2021-05-04T13:23:30.000Z
|
2021-05-04T13:23:30.000Z
|
src/arch/x86/bios/intelmp.cc
|
fei-shan/gem5-experiment
|
70781db30d42b1fe50e495bd04f7755a4b0e0e59
|
[
"BSD-3-Clause"
] | 1
|
2021-04-17T17:13:56.000Z
|
2021-04-17T17:13:56.000Z
|
src/arch/x86/bios/intelmp.cc
|
fei-shan/gem5-experiment
|
70781db30d42b1fe50e495bd04f7755a4b0e0e59
|
[
"BSD-3-Clause"
] | 1
|
2021-08-23T05:37:55.000Z
|
2021-08-23T05:37:55.000Z
|
/*
* Copyright (c) 2008 The Hewlett-Packard Development Company
* All rights reserved.
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* 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 holders 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 "arch/x86/bios/intelmp.hh"
#include "arch/x86/isa_traits.hh"
#include "base/logging.hh"
#include "base/types.hh"
#include "mem/port_proxy.hh"
#include "sim/byteswap.hh"
// Config entry types
#include "params/X86IntelMPBaseConfigEntry.hh"
#include "params/X86IntelMPExtConfigEntry.hh"
// General table structures
#include "params/X86IntelMPConfigTable.hh"
#include "params/X86IntelMPFloatingPointer.hh"
// Base entry types
#include "params/X86IntelMPBus.hh"
#include "params/X86IntelMPIOAPIC.hh"
#include "params/X86IntelMPIOIntAssignment.hh"
#include "params/X86IntelMPLocalIntAssignment.hh"
#include "params/X86IntelMPProcessor.hh"
// Extended entry types
#include "params/X86IntelMPAddrSpaceMapping.hh"
#include "params/X86IntelMPBusHierarchy.hh"
#include "params/X86IntelMPCompatAddrSpaceMod.hh"
const char X86ISA::IntelMP::FloatingPointer::signature[] = "_MP_";
template<class T>
uint8_t
writeOutField(PortProxy& proxy, Addr addr, T val)
{
uint64_t guestVal = htole(val);
proxy.writeBlob(addr, &guestVal, sizeof(T));
uint8_t checkSum = 0;
while (guestVal) {
checkSum += guestVal;
guestVal >>= 8;
}
return checkSum;
}
uint8_t
writeOutString(PortProxy& proxy, Addr addr, std::string str, int length)
{
char cleanedString[length + 1];
cleanedString[length] = 0;
if (str.length() > length) {
memcpy(cleanedString, str.c_str(), length);
warn("Intel MP configuration table string \"%s\" "
"will be truncated to \"%s\".\n", str, (char *)&cleanedString);
} else {
memcpy(cleanedString, str.c_str(), str.length());
memset(cleanedString + str.length(), 0, length - str.length());
}
proxy.writeBlob(addr, &cleanedString, length);
uint8_t checkSum = 0;
for (int i = 0; i < length; i++)
checkSum += cleanedString[i];
return checkSum;
}
Addr
X86ISA::IntelMP::FloatingPointer::writeOut(PortProxy& proxy, Addr addr)
{
// Make sure that either a config table is present or a default
// configuration was found but not both.
if (!tableAddr && !defaultConfig)
fatal("Either an MP configuration table or a default configuration "
"must be used.");
if (tableAddr && defaultConfig)
fatal("Both an MP configuration table and a default configuration "
"were set.");
uint8_t checkSum = 0;
proxy.writeBlob(addr, signature, 4);
for (int i = 0; i < 4; i++)
checkSum += signature[i];
checkSum += writeOutField(proxy, addr + 4, tableAddr);
// The length of the structure in paragraphs, aka 16 byte chunks.
uint8_t length = 1;
proxy.writeBlob(addr + 8, &length, 1);
checkSum += length;
proxy.writeBlob(addr + 9, &specRev, 1);
checkSum += specRev;
proxy.writeBlob(addr + 11, &defaultConfig, 1);
checkSum += defaultConfig;
uint32_t features2_5 = imcrPresent ? (1 << 7) : 0;
checkSum += writeOutField(proxy, addr + 12, features2_5);
checkSum = -checkSum;
proxy.writeBlob(addr + 10, &checkSum, 1);
return 16;
}
X86ISA::IntelMP::FloatingPointer::FloatingPointer(const Params &p) :
SimObject(p), tableAddr(0), specRev(p.spec_rev),
defaultConfig(p.default_config), imcrPresent(p.imcr_present)
{}
Addr
X86ISA::IntelMP::BaseConfigEntry::writeOut(PortProxy& proxy,
Addr addr, uint8_t &checkSum)
{
proxy.writeBlob(addr, &type, 1);
checkSum += type;
return 1;
}
X86ISA::IntelMP::BaseConfigEntry::BaseConfigEntry(
const Params &p, uint8_t _type) :
SimObject(p), type(_type)
{}
Addr
X86ISA::IntelMP::ExtConfigEntry::writeOut(PortProxy& proxy,
Addr addr, uint8_t &checkSum)
{
proxy.writeBlob(addr, &type, 1);
checkSum += type;
proxy.writeBlob(addr + 1, &length, 1);
checkSum += length;
return 1;
}
X86ISA::IntelMP::ExtConfigEntry::ExtConfigEntry(const Params &p,
uint8_t _type, uint8_t _length) :
SimObject(p), type(_type), length(_length)
{}
const char X86ISA::IntelMP::ConfigTable::signature[] = "PCMP";
Addr
X86ISA::IntelMP::ConfigTable::writeOut(PortProxy& proxy, Addr addr)
{
uint8_t checkSum = 0;
proxy.writeBlob(addr, signature, 4);
for (int i = 0; i < 4; i++)
checkSum += signature[i];
// Base table length goes here but will be calculated later.
proxy.writeBlob(addr + 6, &specRev, 1);
checkSum += specRev;
// The checksum goes here but is still being calculated.
checkSum += writeOutString(proxy, addr + 8, oemID, 8);
checkSum += writeOutString(proxy, addr + 16, productID, 12);
checkSum += writeOutField(proxy, addr + 28, oemTableAddr);
checkSum += writeOutField(proxy, addr + 32, oemTableSize);
checkSum += writeOutField(proxy, addr + 34, (uint16_t)baseEntries.size());
checkSum += writeOutField(proxy, addr + 36, localApic);
uint8_t reserved = 0;
proxy.writeBlob(addr + 43, &reserved, 1);
checkSum += reserved;
std::vector<BaseConfigEntry *>::iterator baseEnt;
uint16_t offset = 44;
for (baseEnt = baseEntries.begin();
baseEnt != baseEntries.end(); baseEnt++) {
offset += (*baseEnt)->writeOut(proxy, addr + offset, checkSum);
}
// We've found the end of the base table this point.
checkSum += writeOutField(proxy, addr + 4, offset);
std::vector<ExtConfigEntry *>::iterator extEnt;
uint16_t extOffset = 0;
uint8_t extCheckSum = 0;
for (extEnt = extEntries.begin();
extEnt != extEntries.end(); extEnt++) {
extOffset += (*extEnt)->writeOut(proxy,
addr + offset + extOffset, extCheckSum);
}
checkSum += writeOutField(proxy, addr + 40, extOffset);
extCheckSum = -extCheckSum;
checkSum += writeOutField(proxy, addr + 42, extCheckSum);
// And now, we finally have the whole check sum completed.
checkSum = -checkSum;
writeOutField(proxy, addr + 7, checkSum);
return offset + extOffset;
};
X86ISA::IntelMP::ConfigTable::ConfigTable(const Params &p) : SimObject(p),
specRev(p.spec_rev), oemID(p.oem_id), productID(p.product_id),
oemTableAddr(p.oem_table_addr), oemTableSize(p.oem_table_size),
localApic(p.local_apic),
baseEntries(p.base_entries), extEntries(p.ext_entries)
{}
Addr
X86ISA::IntelMP::Processor::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
BaseConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 1, localApicID);
checkSum += writeOutField(proxy, addr + 2, localApicVersion);
checkSum += writeOutField(proxy, addr + 3, cpuFlags);
checkSum += writeOutField(proxy, addr + 4, cpuSignature);
checkSum += writeOutField(proxy, addr + 8, featureFlags);
uint32_t reserved = 0;
proxy.writeBlob(addr + 12, &reserved, 4);
proxy.writeBlob(addr + 16, &reserved, 4);
return 20;
}
X86ISA::IntelMP::Processor::Processor(const Params &p) : BaseConfigEntry(p, 0),
localApicID(p.local_apic_id), localApicVersion(p.local_apic_version),
cpuFlags(0), cpuSignature(0), featureFlags(p.feature_flags)
{
if (p.enable)
cpuFlags |= (1 << 0);
if (p.bootstrap)
cpuFlags |= (1 << 1);
replaceBits(cpuSignature, 3, 0, p.stepping);
replaceBits(cpuSignature, 7, 4, p.model);
replaceBits(cpuSignature, 11, 8, p.family);
}
Addr
X86ISA::IntelMP::Bus::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
BaseConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 1, busID);
checkSum += writeOutString(proxy, addr + 2, busType, 6);
return 8;
}
X86ISA::IntelMP::Bus::Bus(const Params &p) : BaseConfigEntry(p, 1),
busID(p.bus_id), busType(p.bus_type)
{}
Addr
X86ISA::IntelMP::IOAPIC::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
BaseConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 1, id);
checkSum += writeOutField(proxy, addr + 2, version);
checkSum += writeOutField(proxy, addr + 3, flags);
checkSum += writeOutField(proxy, addr + 4, address);
return 8;
}
X86ISA::IntelMP::IOAPIC::IOAPIC(const Params &p) : BaseConfigEntry(p, 2),
id(p.id), version(p.version), flags(0), address(p.address)
{
if (p.enable)
flags |= 1;
}
Addr
X86ISA::IntelMP::IntAssignment::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
BaseConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 1, interruptType);
checkSum += writeOutField(proxy, addr + 2, flags);
checkSum += writeOutField(proxy, addr + 4, sourceBusID);
checkSum += writeOutField(proxy, addr + 5, sourceBusIRQ);
checkSum += writeOutField(proxy, addr + 6, destApicID);
checkSum += writeOutField(proxy, addr + 7, destApicIntIn);
return 8;
}
X86ISA::IntelMP::IOIntAssignment::IOIntAssignment(const Params &p) :
IntAssignment(p, p.interrupt_type, p.polarity, p.trigger, 3,
p.source_bus_id, p.source_bus_irq,
p.dest_io_apic_id, p.dest_io_apic_intin)
{}
X86ISA::IntelMP::LocalIntAssignment::LocalIntAssignment(const Params &p) :
IntAssignment(p, p.interrupt_type, p.polarity, p.trigger, 4,
p.source_bus_id, p.source_bus_irq,
p.dest_local_apic_id, p.dest_local_apic_intin)
{}
Addr
X86ISA::IntelMP::AddrSpaceMapping::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
ExtConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 2, busID);
checkSum += writeOutField(proxy, addr + 3, addrType);
checkSum += writeOutField(proxy, addr + 4, addr);
checkSum += writeOutField(proxy, addr + 12, addrLength);
return length;
}
X86ISA::IntelMP::AddrSpaceMapping::AddrSpaceMapping(const Params &p) :
ExtConfigEntry(p, 128, 20),
busID(p.bus_id), addrType(p.address_type),
addr(p.address), addrLength(p.length)
{}
Addr
X86ISA::IntelMP::BusHierarchy::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
ExtConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 2, busID);
checkSum += writeOutField(proxy, addr + 3, info);
checkSum += writeOutField(proxy, addr + 4, parentBus);
uint32_t reserved = 0;
proxy.writeBlob(addr + 5, &reserved, 3);
return length;
}
X86ISA::IntelMP::BusHierarchy::BusHierarchy(const Params &p) :
ExtConfigEntry(p, 129, 8),
busID(p.bus_id), info(0), parentBus(p.parent_bus)
{
if (p.subtractive_decode)
info |= 1;
}
Addr
X86ISA::IntelMP::CompatAddrSpaceMod::writeOut(
PortProxy& proxy, Addr addr, uint8_t &checkSum)
{
ExtConfigEntry::writeOut(proxy, addr, checkSum);
checkSum += writeOutField(proxy, addr + 2, busID);
checkSum += writeOutField(proxy, addr + 3, mod);
checkSum += writeOutField(proxy, addr + 4, rangeList);
return length;
}
X86ISA::IntelMP::CompatAddrSpaceMod::CompatAddrSpaceMod(const Params &p) :
ExtConfigEntry(p, 130, 8),
busID(p.bus_id), mod(0), rangeList(p.range_list)
{
if (p.add)
mod |= 1;
}
| 33.335013
| 79
| 0.689134
|
fei-shan
|
baa13dd731b3fd03386451d4624ed05b655ac103
| 5,495
|
hpp
|
C++
|
Connect6/cppbind/headers/decl/connect6.hpp
|
revsic/AlphaZero-Connect6
|
802884c14b5eeac711b42cea96c2c7a39a7690bf
|
[
"MIT"
] | 19
|
2018-08-27T14:31:57.000Z
|
2021-04-15T06:24:40.000Z
|
Connect6/cppbind/headers/decl/connect6.hpp
|
revsic/AlphaZero-Connect6
|
802884c14b5eeac711b42cea96c2c7a39a7690bf
|
[
"MIT"
] | 14
|
2018-11-16T17:53:30.000Z
|
2019-03-12T10:39:36.000Z
|
Connect6/cppbind/headers/decl/connect6.hpp
|
revsic/AlphaZero-Connect6
|
802884c14b5eeac711b42cea96c2c7a39a7690bf
|
[
"MIT"
] | 2
|
2018-12-27T06:37:05.000Z
|
2019-09-10T09:22:47.000Z
|
#ifndef CONNECT6_DEC_H
#define CONNECT6_DEC_H
#include <cstring>
#include <memory>
#include <string>
#include <tuple>
#include <vector>
namespace Connect6_RustFFI {
constexpr size_t BOARD_SIZE = 15;
constexpr size_t BOARD_CAPACITY = BOARD_SIZE * BOARD_SIZE;
using Callback = void(*)(int player, float* values, float* policies, int len);
using PolicyCallback = void(*)(float* boards, int* position);
template <typename T>
using AllocatorType = T*(*)(int size);
template <typename T>
T* allocator(int size) {
return new T[size];
}
extern "C" {
struct Path {
int turn;
int board[BOARD_SIZE][BOARD_SIZE];
int row;
int col;
};
struct PlayResult {
int winner;
Path* paths;
int len;
};
struct Vec {
PlayResult* vec;
int len;
};
Vec cpp_play(PolicyCallback callback,
AllocatorType<Path> alloc_path,
AllocatorType<PlayResult> alloc_result,
bool debug,
int num_game_thread);
Vec cpp_self_play(Callback callback,
AllocatorType<Path> alloc_path,
AllocatorType<PlayResult> alloc_result,
int num_simulation,
float epsilon,
double dirichlet_alpha,
float c_puct,
bool debug,
int num_game_thread);
PlayResult cpp_play_with(Callback callback,
AllocatorType<Path> alloc_path,
int num_simulation,
float epsilon,
double dirichlet_alpha,
float c_puct);
}
namespace Test_FFI {
extern "C" {
Path test_new_raw_path();
Path test_with_raw_path();
Path test_echo_raw_path(int turn, int* board, int row, int col);
PlayResult test_with_raw_play_result(AllocatorType<Path> allocator);
PlayResult test_echo_raw_play_result(int winner, Path* path, int len, AllocatorType<Path> allocator);
struct VecInt {
int* vec;
int len;
};
VecInt test_with_raw_vec(AllocatorType<int> allocator);
VecInt test_echo_raw_vec(int* ptr, int len, AllocatorType<int> allocator);
struct VecFloat {
float* vec;
int len;
};
VecFloat test_echo_cppeval(int turn, int* boards, int len, Callback callback, AllocatorType<float> allocator);
VecInt test_cpp_policy(float* board, PolicyCallback callback, AllocatorType<int> allocator);
}
}
}
namespace Connect6 {
using Connect6_RustFFI::BOARD_SIZE;
using Connect6_RustFFI::BOARD_CAPACITY;
using Connect6_RustFFI::Callback;
using Connect6_RustFFI::PolicyCallback;
enum class Player : int {
Black = -1,
None = 0,
White = 1,
};
std::string to_string(Player player);
class Path {
public:
Path();
Path(Player turn,
const std::tuple<size_t, size_t>& position,
int board_[BOARD_SIZE][BOARD_SIZE]);
Path(const Connect6_RustFFI::Path& path);
Path(const Path&) = delete;
Path(Path&& other);
Path& operator=(const Path&) = delete;
Path& operator=(Path&& other);
Player GetTurn() const;
const std::tuple<size_t, size_t>& GetPos() const;
int* GetBoard();
const int* GetBoard() const;
int* operator[](size_t idx);
const int* operator[](size_t idx) const;
private:
Player turn;
std::tuple<size_t, size_t> position;
std::unique_ptr<int[]> board;
};
class GameResult {
public:
GameResult();
GameResult(Player winner, size_t size, std::unique_ptr<Path[]>&& paths);
GameResult(const Connect6_RustFFI::PlayResult& run_result);
Player GetWinner() const;
size_t GetSize() const;
Path& operator[](size_t idx);
const Path& operator[](size_t idx) const;
Path* begin();
const Path* begin() const;
const Path* cbegin() const;
Path* end();
const Path* end() const;
const Path* cend() const;
static std::vector<GameResult> from_vec(Connect6_RustFFI::Vec& result);
private:
Player winner;
size_t size;
std::unique_ptr<Path[]> paths;
};
struct Param {
int num_simulation = 800;
float epsilon = 0.25;
double dirichlet_alpha = 0.03;
float c_puct = 1;
bool debug = false;
int num_game_thread = 11;
Param&& NumSimulation(int num_simulation) &&;
Param&& Epsilon(float epsilon) &&;
Param&& DirichletAlpha(double dirichlet_alpha) &&;
Param&& CPuct(float c_puct) &&;
Param&& Debug(bool debug) &&;
Param&& NumGameThread(int num_game_thread) &&;
};
std::vector<GameResult> play(PolicyCallback callback, bool debug, int num_game_thread);
std::vector<GameResult> self_play(Callback callback, const Param& param);
GameResult play_with(Callback callback, const Param& param);
}
#endif
| 28.035714
| 122
| 0.559418
|
revsic
|
baa40439e2811fc71fe1432b51ee2750286cf1c0
| 1,948
|
cpp
|
C++
|
terrain.cpp
|
Wiolarz/cpp_dungeon
|
c26b34936cef2ec0f828ec66abcc79029c443e31
|
[
"Apache-2.0"
] | null | null | null |
terrain.cpp
|
Wiolarz/cpp_dungeon
|
c26b34936cef2ec0f828ec66abcc79029c443e31
|
[
"Apache-2.0"
] | null | null | null |
terrain.cpp
|
Wiolarz/cpp_dungeon
|
c26b34936cef2ec0f828ec66abcc79029c443e31
|
[
"Apache-2.0"
] | null | null | null |
/*
*/
#include "terrain.h"
#include "jobs.h"
#include "balance.h"
#include "economy.h" // from economy import roman_numbers
/*
def name_generator():
prefix = ["", "Green", "Dark", "Toxic", "Inferno", "Orc", "Goblin", "Dragon"]
core = ["Forest", "Cave", "Dungeon", "Town", "Village", "Mountains", "Graveyard"]
# suffix = ["", ""]
new_unique = False
new_name = ""
checking_wrong_balance = 0
while not new_unique:
checking_wrong_balance += 1
if checking_wrong_balance > balance.world.amount_location * 5:
print("Error: cannot create random new location name")
exit(343)
new_name = prefix[random.randint(0, len(prefix)-1)] + " " + core[random.randint(0, len(core)-1)]
if new_name in balance.world.location_names:
new_unique = False
else:
new_unique = True
balance.world.location_names.append(new_name)
return new_name
class Location:
def __init__(self, location_level, amount, id_x):
self.id = id_x
self.name = name_generator()
self.level = location_level
self.quest_level = location_level + 2
if self.quest_level > balance.max_power:
self.quest_level = balance.max_power
self.chest_gold = location_level * balance.medium
self.density = 5 # number of events in location
self.chest_chance = 3 # %(10) chest chance
self.quest_enemy = 5 # %(10) chance of quest related enemy
self.location_names = []
self.amount_location = amount
def short_print(self):
return self.name + " " + roman_numbers(self.level)
*/
void Earth::new_quest()
{
//main_quest = jobs.Quest()
}
void Earth::generate_location()
{
for (int place = 0, id = 0; place < amount_location; place++, id++)
{
//locations.append(Location(place + 1, amount_location, id)) // level, overall location number
}
}
| 26.324324
| 104
| 0.618583
|
Wiolarz
|
baa4b218b1eaf9afb1123e2538549163362a6d5d
| 2,229
|
cc
|
C++
|
chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.cc
|
kjthegod/chromium
|
cf940f7f418436b77e15b1ea23e6fa100ca1c91a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1
|
2019-11-28T10:46:52.000Z
|
2019-11-28T10:46:52.000Z
|
chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.cc
|
kjthegod/chromium
|
cf940f7f418436b77e15b1ea23e6fa100ca1c91a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null |
chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.cc
|
kjthegod/chromium
|
cf940f7f418436b77e15b1ea23e6fa100ca1c91a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2
|
2015-03-27T11:15:39.000Z
|
2016-08-17T14:19:56.000Z
|
// Copyright (c) 2013 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/ui/webui/signin/profile_signin_confirmation_ui.h"
#include "base/values.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "grit/browser_resources.h"
ProfileSigninConfirmationUI::ProfileSigninConfirmationUI(content::WebUI* web_ui)
: ConstrainedWebDialogUI(web_ui) {
content::WebUIDataSource* html_source = content::WebUIDataSource::Create(
chrome::kChromeUIProfileSigninConfirmationHost);
html_source->AddLocalizedString(
"createProfileButtonText",
IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE);
html_source->AddLocalizedString(
"continueButtonText",
IDS_ENTERPRISE_SIGNIN_CONTINUE);
html_source->AddLocalizedString("okButtonText", IDS_OK);
html_source->AddLocalizedString(
"cancelButtonText",
IDS_ENTERPRISE_SIGNIN_CANCEL);
html_source->AddLocalizedString(
"learnMoreText",
IDS_ENTERPRISE_SIGNIN_PROFILE_LINK_LEARN_MORE);
html_source->AddLocalizedString(
"dialogTitle",
IDS_ENTERPRISE_SIGNIN_TITLE);
html_source->AddLocalizedString(
"dialogMessage",
IDS_ENTERPRISE_SIGNIN_EXPLANATION);
html_source->AddLocalizedString(
"dialogPrompt",
IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE_MESSAGE);
html_source->SetJsonPath("strings.js");
html_source->AddResourcePath("profile_signin_confirmation.js",
IDR_PROFILE_SIGNIN_CONFIRMATION_JS);
html_source->AddResourcePath("profile_signin_confirmation.css",
IDR_PROFILE_SIGNIN_CONFIRMATION_CSS);
html_source->SetDefaultResource(IDR_PROFILE_SIGNIN_CONFIRMATION_HTML);
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource::Add(profile, html_source);
}
ProfileSigninConfirmationUI::~ProfileSigninConfirmationUI() {
}
| 37.779661
| 80
| 0.770749
|
kjthegod
|
baa6137d5acc4efed5439500ba49d1ef13fe9643
| 985
|
cpp
|
C++
|
Chapter11/dtime/timedemo.cpp
|
yapbenzet/absolute-c-plusplus
|
67adef6c177e7ef3c71406cd26cef2a944fd0d19
|
[
"MIT"
] | 1
|
2019-08-13T17:51:24.000Z
|
2019-08-13T17:51:24.000Z
|
Chapter11/dtime/timedemo.cpp
|
yapbenzet/absolute-c-plusplus
|
67adef6c177e7ef3c71406cd26cef2a944fd0d19
|
[
"MIT"
] | null | null | null |
Chapter11/dtime/timedemo.cpp
|
yapbenzet/absolute-c-plusplus
|
67adef6c177e7ef3c71406cd26cef2a944fd0d19
|
[
"MIT"
] | 1
|
2020-06-05T13:37:56.000Z
|
2020-06-05T13:37:56.000Z
|
#include <iostream>
#include "dtime.h"
void readHour(int& theHour);
int main() {
using DTimeSavitch::DigitalTime;
using std::cout;
using std::cin;
using std::endl;
int theHour;
readHour(theHour);
DigitalTime clock(theHour, 0), oldClock;
oldClock = clock;
clock.advance(15);
if(clock == oldClock) {
cout << "Something is wrong." << endl;
}
cout << "You entered " << oldClock << endl;
cout << "15 minutes later the time will be " << clock << endl;
clock.advance(2, 15);
cout << "2 hours and 15 minutes after that " << endl
<< "the time will be " << clock << endl;
return 0;
}
void readHour(int &theHour) {
using std::cout;
using std::cin;
using std::endl;
cout << "Let's play a time game." << endl
<< "Let's pretend the hour has just changed." << endl
<< "You may write midnight as a either 0 or 24," << endl
<< "but, I will always write it as 0." << endl
<< "Enter the hour as a number (0 to 24): ";
cin >> theHour;
}
| 20.957447
| 64
| 0.616244
|
yapbenzet
|
baa8e29c32064a8fa8d5ac92c606eebb7593ff0a
| 6,168
|
cc
|
C++
|
shell/platform/embedder/tests/embedder_test_backingstore_producer.cc
|
ModProg/engine
|
93cb5dbbc70092b5c675ebf53fde7dea39086382
|
[
"BSD-3-Clause"
] | 13
|
2020-08-09T10:30:50.000Z
|
2021-09-06T18:26:05.000Z
|
shell/platform/embedder/tests/embedder_test_backingstore_producer.cc
|
christopherfujino/engine
|
14c3686153b1af6d8766aebd20a3c1b0d795ac77
|
[
"BSD-3-Clause"
] | 1
|
2020-10-31T01:10:11.000Z
|
2020-10-31T01:10:11.000Z
|
shell/platform/embedder/tests/embedder_test_backingstore_producer.cc
|
christopherfujino/engine
|
14c3686153b1af6d8766aebd20a3c1b0d795ac77
|
[
"BSD-3-Clause"
] | 9
|
2021-03-11T04:52:17.000Z
|
2021-12-17T09:19:06.000Z
|
// Copyright 2013 The Flutter 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 "flutter/shell/platform/embedder/tests/embedder_test_backingstore_producer.h"
#include "flutter/fml/logging.h"
#include "third_party/skia/include/core/SkSurface.h"
namespace flutter {
namespace testing {
EmbedderTestBackingStoreProducer::EmbedderTestBackingStoreProducer(
sk_sp<GrDirectContext> context,
RenderTargetType type)
: context_(context), type_(type) {}
EmbedderTestBackingStoreProducer::~EmbedderTestBackingStoreProducer() = default;
bool EmbedderTestBackingStoreProducer::Create(
const FlutterBackingStoreConfig* config,
FlutterBackingStore* renderer_out) {
switch (type_) {
case RenderTargetType::kSoftwareBuffer:
return CreateSoftware(config, renderer_out);
#ifdef SHELL_ENABLE_GL
case RenderTargetType::kOpenGLTexture:
return CreateTexture(config, renderer_out);
case RenderTargetType::kOpenGLFramebuffer:
return CreateFramebuffer(config, renderer_out);
#endif
default:
return false;
}
}
bool EmbedderTestBackingStoreProducer::CreateFramebuffer(
const FlutterBackingStoreConfig* config,
FlutterBackingStore* backing_store_out) {
#ifdef SHELL_ENABLE_GL
const auto image_info =
SkImageInfo::MakeN32Premul(config->size.width, config->size.height);
auto surface = SkSurface::MakeRenderTarget(
context_.get(), // context
SkBudgeted::kNo, // budgeted
image_info, // image info
1, // sample count
kBottomLeft_GrSurfaceOrigin, // surface origin
nullptr, // surface properties
false // mipmaps
);
if (!surface) {
FML_LOG(ERROR) << "Could not create render target for compositor layer.";
return false;
}
GrBackendRenderTarget render_target = surface->getBackendRenderTarget(
SkSurface::BackendHandleAccess::kDiscardWrite_BackendHandleAccess);
if (!render_target.isValid()) {
FML_LOG(ERROR) << "Backend render target was invalid.";
return false;
}
GrGLFramebufferInfo framebuffer_info = {};
if (!render_target.getGLFramebufferInfo(&framebuffer_info)) {
FML_LOG(ERROR) << "Could not access backend framebuffer info.";
return false;
}
backing_store_out->type = kFlutterBackingStoreTypeOpenGL;
backing_store_out->user_data = surface.get();
backing_store_out->open_gl.type = kFlutterOpenGLTargetTypeFramebuffer;
backing_store_out->open_gl.framebuffer.target = framebuffer_info.fFormat;
backing_store_out->open_gl.framebuffer.name = framebuffer_info.fFBOID;
// The balancing unref is in the destruction callback.
surface->ref();
backing_store_out->open_gl.framebuffer.user_data = surface.get();
backing_store_out->open_gl.framebuffer.destruction_callback =
[](void* user_data) { reinterpret_cast<SkSurface*>(user_data)->unref(); };
return true;
#else
return false;
#endif
}
bool EmbedderTestBackingStoreProducer::CreateTexture(
const FlutterBackingStoreConfig* config,
FlutterBackingStore* backing_store_out) {
#ifdef SHELL_ENABLE_GL
const auto image_info =
SkImageInfo::MakeN32Premul(config->size.width, config->size.height);
auto surface = SkSurface::MakeRenderTarget(
context_.get(), // context
SkBudgeted::kNo, // budgeted
image_info, // image info
1, // sample count
kBottomLeft_GrSurfaceOrigin, // surface origin
nullptr, // surface properties
false // mipmaps
);
if (!surface) {
FML_LOG(ERROR) << "Could not create render target for compositor layer.";
return false;
}
GrBackendTexture render_texture = surface->getBackendTexture(
SkSurface::BackendHandleAccess::kDiscardWrite_BackendHandleAccess);
if (!render_texture.isValid()) {
FML_LOG(ERROR) << "Backend render texture was invalid.";
return false;
}
GrGLTextureInfo texture_info = {};
if (!render_texture.getGLTextureInfo(&texture_info)) {
FML_LOG(ERROR) << "Could not access backend texture info.";
return false;
}
backing_store_out->type = kFlutterBackingStoreTypeOpenGL;
backing_store_out->user_data = surface.get();
backing_store_out->open_gl.type = kFlutterOpenGLTargetTypeTexture;
backing_store_out->open_gl.texture.target = texture_info.fTarget;
backing_store_out->open_gl.texture.name = texture_info.fID;
backing_store_out->open_gl.texture.format = texture_info.fFormat;
// The balancing unref is in the destruction callback.
surface->ref();
backing_store_out->open_gl.texture.user_data = surface.get();
backing_store_out->open_gl.texture.destruction_callback =
[](void* user_data) { reinterpret_cast<SkSurface*>(user_data)->unref(); };
return true;
#else
return false;
#endif
}
bool EmbedderTestBackingStoreProducer::CreateSoftware(
const FlutterBackingStoreConfig* config,
FlutterBackingStore* backing_store_out) {
auto surface = SkSurface::MakeRaster(
SkImageInfo::MakeN32Premul(config->size.width, config->size.height));
if (!surface) {
FML_LOG(ERROR)
<< "Could not create the render target for compositor layer.";
return false;
}
SkPixmap pixmap;
if (!surface->peekPixels(&pixmap)) {
FML_LOG(ERROR) << "Could not peek pixels of pixmap.";
return false;
}
backing_store_out->type = kFlutterBackingStoreTypeSoftware;
backing_store_out->user_data = surface.get();
backing_store_out->software.allocation = pixmap.addr();
backing_store_out->software.row_bytes = pixmap.rowBytes();
backing_store_out->software.height = pixmap.height();
// The balancing unref is in the destruction callback.
surface->ref();
backing_store_out->software.user_data = surface.get();
backing_store_out->software.destruction_callback = [](void* user_data) {
reinterpret_cast<SkSurface*>(user_data)->unref();
};
return true;
}
} // namespace testing
} // namespace flutter
| 34.458101
| 86
| 0.713359
|
ModProg
|
baab0f2df56bc5f253ca4250cbe20f4ded927fff
| 1,110
|
cpp
|
C++
|
src/sockets/tcp6.cpp
|
YuriyLisovskiy/xalwart.server
|
6bc008167f738c0cf5a28293b38886b0d1d79454
|
[
"Apache-2.0"
] | null | null | null |
src/sockets/tcp6.cpp
|
YuriyLisovskiy/xalwart.server
|
6bc008167f738c0cf5a28293b38886b0d1d79454
|
[
"Apache-2.0"
] | null | null | null |
src/sockets/tcp6.cpp
|
YuriyLisovskiy/xalwart.server
|
6bc008167f738c0cf5a28293b38886b0d1d79454
|
[
"Apache-2.0"
] | null | null | null |
/**
* socket/tcp6.cpp
*
* Copyright (c) 2021 Yuriy Lisovskiy
*/
#include "./tcp6.h"
// C++ libraries.
#include <netinet/tcp.h>
#if defined(__linux__) || defined(__APPLE__)
#include <arpa/inet.h>
#endif
// Server libraries.
#include "../exceptions.h"
__SERVER_BEGIN__
void TCP6Socket::set_options()
{
int options = 1;
setsockopt(this->socket, IPPROTO_TCP, TCP_NODELAY, &options, sizeof(options));
BaseSocket::set_options();
}
void TCP6Socket::bind()
{
sockaddr_in6 internet_socket_address{};
if (::inet_pton(this->family, this->address.c_str(), &internet_socket_address.sin6_addr) <= 0)
{
auto error_code = errno;
throw SocketError(error_code, "'inet_pton' call failed: " + std::to_string(error_code), _ERROR_DETAILS_);
}
internet_socket_address.sin6_family = this->family;
internet_socket_address.sin6_port = htons(this->port);
if (::bind(this->socket, (const sockaddr*)&internet_socket_address, sizeof(internet_socket_address)))
{
auto error_code = errno;
throw SocketError(error_code, "'bind' call failed: " + std::to_string(error_code), _ERROR_DETAILS_);
}
}
__SERVER_END__
| 23.617021
| 107
| 0.727928
|
YuriyLisovskiy
|
baab9d8071b8bb2794f9a672dd55b9c1cddcf584
| 28,226
|
cpp
|
C++
|
src/mame/drivers/wyvernf0.cpp
|
Robbbert/messui
|
49b756e2140d8831bc81335298ee8c5471045e79
|
[
"BSD-3-Clause"
] | 26
|
2015-03-31T06:25:51.000Z
|
2021-12-14T09:29:04.000Z
|
src/mame/drivers/wyvernf0.cpp
|
Robbbert/messui
|
49b756e2140d8831bc81335298ee8c5471045e79
|
[
"BSD-3-Clause"
] | null | null | null |
src/mame/drivers/wyvernf0.cpp
|
Robbbert/messui
|
49b756e2140d8831bc81335298ee8c5471045e79
|
[
"BSD-3-Clause"
] | 10
|
2015-03-27T05:45:51.000Z
|
2022-02-04T06:57:36.000Z
|
// license:BSD-3-Clause
// copyright-holders:Luca Elia
/***************************************************************************
Wyvern F-0 (1985, Taito)
driver by Luca Elia
Typical Taito mid-80s hardware but with dual video output.
Sound board: Z80, 2 x YM2149, OKI M5232
CPU board: Z80, ROM and RAM, 68705P5 MCU (protected)
OBJ board: 48MHz OSC, ROMs and RAM
Video board: ROMs and RAM, 4 x Fujitsu MB112S146 (also used on arkanoid, lkage)
The rest is just common logic, there are no custom chips.
The cabinet uses a half-silvered mirror to mix the images from two screens for a pseudo-3D effect:
http://www.higenekodo.jp/untiku/wy.htm
Backgrounds and enemies on the ground are displayed in the lower screen, while
player ship and enemies in the air are displayed in the upper screen.
And the cabinet also has two speakers. The sound of enemies on the ground is heard
from the bottom speaker and the sound of enemies in the air is heard from the top speaker.
Actual game video: http://www.nicozon.net/watch/sm10823430
TODO:
- TA7630;
***************************************************************************/
#include "emu.h"
#include "cpu/z80/z80.h"
#include "cpu/m6805/m6805.h"
#include "machine/taito68705interface.h"
#include "machine/gen_latch.h"
#include "sound/ay8910.h"
#include "sound/msm5232.h"
#include "sound/dac.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"
#include "tilemap.h"
class wyvernf0_state : public driver_device
{
public:
wyvernf0_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_bgram(*this,"bgram"),
m_fgram(*this,"fgram"),
m_scrollram(*this,"scrollram"),
m_spriteram(*this,"spriteram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_bmcu(*this, "bmcu"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch")
{ }
void wyvernf0(machine_config &config);
protected:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
private:
// memory pointers
required_shared_ptr<uint8_t> m_bgram;
required_shared_ptr<uint8_t> m_fgram;
required_shared_ptr<uint8_t> m_scrollram;
required_shared_ptr<uint8_t> m_spriteram;
// video-related
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;
std::unique_ptr<uint8_t[]> m_objram;
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
void bgram_w(offs_t offset, uint8_t data);
void fgram_w(offs_t offset, uint8_t data);
uint32_t screen_update_wyvernf0(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect, bool is_foreground );
// misc
int m_sound_nmi_enable;
int m_pending_nmi;
uint8_t m_rombank;
uint8_t m_rambank;
void rambank_w(uint8_t data);
void rombank_w(uint8_t data);
void sound_command_w(uint8_t data);
void nmi_disable_w(uint8_t data);
void nmi_enable_w(uint8_t data);
TIMER_CALLBACK_MEMBER(nmi_callback);
uint8_t mcu_status_r();
// devices
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<taito68705_mcu_device> m_bmcu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
void sound_map(address_map &map);
void wyvernf0_map(address_map &map);
};
/***************************************************************************
Video
Note: if MAME_DEBUG is defined, pressing Z with:
Q Shows the background tilemap
W Shows the foreground tilemap
A Shows the background sprites
S Shows the foreground sprites
Keys can be used together!
***************************************************************************/
void wyvernf0_state::bgram_w(offs_t offset, uint8_t data)
{
m_bgram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset / 2);
}
void wyvernf0_state::fgram_w(offs_t offset, uint8_t data)
{
m_fgram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset / 2);
}
TILE_GET_INFO_MEMBER(wyvernf0_state::get_bg_tile_info)
{
int offs = tile_index * 2;
int code = m_bgram[offs] + (m_bgram[offs+1] << 8);
int color = 0 + ((code & 0x3000) >> 12);
tileinfo.set(1, code, color, TILE_FLIPXY(code >> 14));
}
TILE_GET_INFO_MEMBER(wyvernf0_state::get_fg_tile_info)
{
int offs = tile_index * 2;
int code = m_fgram[offs] + (m_fgram[offs+1] << 8);
int color = 8 + ((code & 0x3000) >> 12);
tileinfo.set(1, code, color, TILE_FLIPXY(code >> 14));
}
void wyvernf0_state::video_start()
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(wyvernf0_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(wyvernf0_state::get_fg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_bg_tilemap->set_transparent_pen(0);
m_fg_tilemap->set_transparent_pen(0);
m_bg_tilemap->set_scrolldx(0x12, 0xf4);
m_bg_tilemap->set_scrolldy( 0, 0);
m_fg_tilemap->set_scrolldx(0x10, 0xf6);
m_fg_tilemap->set_scrolldy( 0, 0);
}
void wyvernf0_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect, bool is_foreground )
{
int offs;
/*
1st boss:
YY XX
71 1D 02 60 <- head
81 73 02 80 <- left neck
81 71 02 A0 <- left body
61 74 02 80 <- right neck
61 72 02 A0 <- right body
71 6C 02 C0 <- tail
41 E5 02 60 <- right arm
41 E4 02 80 <- right shoulder
41 6B 02 A0 <- right wing
A1 65 02 60 <- left arm
A1 EB 02 A0 <- left wing
A1 64 02 80 <- left shoulder
player+target:
YY XX
71 11 04 a8 <- target
71 01 0f 50 <- player
yyyyyyyy fccccccc x???pppp xxxxxxxx
*/
uint8_t *sprram = &m_spriteram[ is_foreground ? m_spriteram.bytes()/2 : 0 ];
// sy = 0 -> on the left
for (offs = 0; offs < m_spriteram.bytes() / 2; offs += 4)
{
int sx, sy, code, color;
sx = sprram[offs + 3] - ((sprram[offs + 2] & 0x80) << 1);
sy = 256 - 8 - sprram[offs + 0] - 23; // center player sprite: 256 - 8 - 0x71 + dy = 256/2-32/2 -> dy = -23
// int flipx = sprram[offs + 2] & 0x40; // nope
int flipx = 0;
int flipy = sprram[offs + 1] & 0x80;
if (flip_screen_x())
{
flipx = !flipx;
sx = 256 - 8 - sx - 3*8;
}
if (flip_screen_y())
{
flipy = !flipy;
sy = 256 - 8 - sy - 3*8;
}
code = sprram[offs + 1] & 0x7f;
color = (sprram[offs + 2] & 0x0f);
if (is_foreground)
{
code += 0x80;
color += 0x10;
}
for (int y = 0; y < 4; y++)
{
for (int x = 0; x < 4; x++)
{
int objoffs = code * 0x20 + (x + y * 4) * 2;
m_gfxdecode->gfx(0)->transpen(bitmap,cliprect,
(m_objram[objoffs + 1] << 8) + m_objram[objoffs],
color,
flipx, flipy,
sx + (flipx ? 3-x : x) * 8, sy + (flipy ? 3-y : y) * 8, 0);
}
}
}
}
uint32_t wyvernf0_state::screen_update_wyvernf0(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int layers_ctrl = -1;
#ifdef MAME_DEBUG
if (machine().input().code_pressed(KEYCODE_Z))
{
int msk = 0;
if (machine().input().code_pressed(KEYCODE_Q)) msk |= 1;
if (machine().input().code_pressed(KEYCODE_W)) msk |= 2;
if (machine().input().code_pressed(KEYCODE_A)) msk |= 4;
if (machine().input().code_pressed(KEYCODE_S)) msk |= 8;
if (msk != 0) layers_ctrl &= msk;
popmessage("fg:%02x %02x bg:%02x %02x ROM:%02x RAM:%02x",
m_scrollram[0],m_scrollram[1],m_scrollram[2],m_scrollram[3],
m_rombank, m_rambank
);
}
#endif
m_fg_tilemap->set_scrollx(0, m_scrollram[0]);
m_fg_tilemap->set_scrolly(0, m_scrollram[1]);
m_bg_tilemap->set_scrollx(0, m_scrollram[2]);
m_bg_tilemap->set_scrolly(0, m_scrollram[3]);
bitmap.fill(0, cliprect);
// background monitor
if (layers_ctrl & 1) m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
if (layers_ctrl & 4) draw_sprites(bitmap, cliprect, false);
// foreground monitor
if (layers_ctrl & 8) draw_sprites(bitmap, cliprect, true);
if (layers_ctrl & 2) m_fg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;
}
/***************************************************************************
MCU
***************************************************************************/
uint8_t wyvernf0_state::mcu_status_r()
{
// bit 0 = when 1, MCU is ready to receive data from main CPU
// bit 1 = when 1, MCU has sent data to the main CPU
return
((CLEAR_LINE == m_bmcu->host_semaphore_r()) ? 0x01 : 0x00) |
((CLEAR_LINE != m_bmcu->mcu_semaphore_r()) ? 0x02 : 0x00);
}
/***************************************************************************
Memory Maps
***************************************************************************/
// D100
void wyvernf0_state::rambank_w(uint8_t data)
{
// bit 0 Flip X/Y
// bit 1 Flip X/Y
// bit 5 ??? set, except at boot
// bit 6 Coin lockout
// bit 7 RAM bank
flip_screen_x_set(data & 0x01);
flip_screen_y_set(data & 0x02);
machine().bookkeeping().coin_lockout_w(0, !(data & 0x40));
machine().bookkeeping().coin_lockout_w(1, !(data & 0x40));
m_rambank = data;
membank("rambank")->set_entry((data & 0x80) ? 1 : 0);
if (data & ~0xe3)
logerror("%s: unknown rambank bits %02x\n", machine().describe_context(), data);
}
// D200
void wyvernf0_state::rombank_w(uint8_t data)
{
// bit 0-2 ROM bank
m_rombank = data;
membank("rombank")->set_entry(data & 0x07);
if (data & ~0x07)
logerror("%s: unknown rombank bits %02x\n", machine().describe_context(), data);
}
TIMER_CALLBACK_MEMBER(wyvernf0_state::nmi_callback)
{
if (m_sound_nmi_enable)
m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
else
m_pending_nmi = 1;
}
void wyvernf0_state::sound_command_w(uint8_t data)
{
m_soundlatch->write(data);
machine().scheduler().synchronize(timer_expired_delegate(FUNC(wyvernf0_state::nmi_callback),this), data);
}
void wyvernf0_state::nmi_disable_w(uint8_t data)
{
m_sound_nmi_enable = 0;
}
void wyvernf0_state::nmi_enable_w(uint8_t data)
{
m_sound_nmi_enable = 1;
if (m_pending_nmi)
{
m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_pending_nmi = 0;
}
}
void wyvernf0_state::wyvernf0_map(address_map &map)
{
map(0x0000, 0x7fff).rom();
map(0x8000, 0x8fff).ram();
map(0x9000, 0x9fff).bankrw("rambank");
map(0xa000, 0xbfff).bankr("rombank");
map(0xc000, 0xc7ff).ram().w(FUNC(wyvernf0_state::fgram_w)).share("fgram");
map(0xc800, 0xcfff).ram().w(FUNC(wyvernf0_state::bgram_w)).share("bgram");
map(0xd000, 0xd000).nopw(); // d000 write (02)
map(0xd100, 0xd100).w(FUNC(wyvernf0_state::rambank_w));
map(0xd200, 0xd200).w(FUNC(wyvernf0_state::rombank_w));
map(0xd300, 0xd303).ram().share("scrollram");
map(0xd400, 0xd400).rw(m_bmcu, FUNC(taito68705_mcu_device::data_r), FUNC(taito68705_mcu_device::data_w));
map(0xd401, 0xd401).r(FUNC(wyvernf0_state::mcu_status_r));
map(0xd500, 0xd5ff).ram().share("spriteram");
map(0xd600, 0xd600).portr("DSW1");
map(0xd601, 0xd601).portr("DSW2");
map(0xd602, 0xd602).portr("DSW3");
map(0xd603, 0xd603).portr("SYSTEM");
map(0xd604, 0xd604).portr("JOY1");
map(0xd605, 0xd605).portr("FIRE1");
map(0xd606, 0xd606).portr("JOY2");
map(0xd607, 0xd607).portr("FIRE2");
map(0xd610, 0xd610).r(m_soundlatch, FUNC(generic_latch_8_device::read)).w(FUNC(wyvernf0_state::sound_command_w));
// d613 write (FF -> 00 at boot)
map(0xd800, 0xdbff).ram().w(m_palette, FUNC(palette_device::write8)).share("palette");
map(0xdc00, 0xdc00).nopw(); // irq ack?
}
void wyvernf0_state::sound_map(address_map &map)
{
map(0x0000, 0x3fff).rom();
map(0xc000, 0xc7ff).ram();
map(0xc800, 0xc801).w("ay1", FUNC(ym2149_device::address_data_w));
map(0xc802, 0xc803).w("ay2", FUNC(ym2149_device::address_data_w));
map(0xc900, 0xc90d).w("msm", FUNC(msm5232_device::write));
// ca00 write
// cb00 write
// cc00 write
map(0xd000, 0xd000).rw(m_soundlatch, FUNC(generic_latch_8_device::read), FUNC(generic_latch_8_device::write));
map(0xd200, 0xd200).w(FUNC(wyvernf0_state::nmi_enable_w));
map(0xd400, 0xd400).w(FUNC(wyvernf0_state::nmi_disable_w));
map(0xd600, 0xd600).w("dac", FUNC(dac_byte_interface::data_w));
map(0xe000, 0xefff).rom(); // space for diagnostics ROM
}
/***************************************************************************
Input Ports
***************************************************************************/
static INPUT_PORTS_START( wyvernf0 )
PORT_START("DSW1") // d600 -> 800c
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Bonus_Life ) )
PORT_DIPSETTING( 0x00, "?? 0" )
PORT_DIPSETTING( 0x01, "?? 1" )
PORT_DIPSETTING( 0x02, "?? 2" )
PORT_DIPSETTING( 0x03, "?? 3" )
PORT_DIPNAME( 0x04, 0x04, DEF_STR( Free_Play ) )
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x18, 0x08, DEF_STR( Lives ) )
PORT_DIPSETTING( 0x00, "2" )
PORT_DIPSETTING( 0x08, "3" )
PORT_DIPSETTING( 0x10, "4" )
PORT_DIPSETTING( 0x18, "5" )
PORT_DIPUNKNOWN( 0x20, 0x20 )
PORT_DIPNAME( 0x40, 0x40, DEF_STR( Flip_Screen ) )
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x00, DEF_STR( Cabinet ) )
PORT_DIPSETTING( 0x00, DEF_STR( Upright ) )
PORT_DIPSETTING( 0x80, DEF_STR( Cocktail ) )
PORT_START("DSW2") // d601 -> 800d
PORT_DIPNAME( 0x0f, 0x00, DEF_STR( Coin_A ) )
PORT_DIPSETTING( 0x0f, DEF_STR( 9C_1C ) )
PORT_DIPSETTING( 0x0e, DEF_STR( 8C_1C ) )
PORT_DIPSETTING( 0x0d, DEF_STR( 7C_1C ) )
PORT_DIPSETTING( 0x0c, DEF_STR( 6C_1C ) )
PORT_DIPSETTING( 0x0b, DEF_STR( 5C_1C ) )
PORT_DIPSETTING( 0x0a, DEF_STR( 4C_1C ) )
PORT_DIPSETTING( 0x09, DEF_STR( 3C_1C ) )
PORT_DIPSETTING( 0x08, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
PORT_DIPSETTING( 0x01, DEF_STR( 1C_2C ) )
PORT_DIPSETTING( 0x02, DEF_STR( 1C_3C ) )
PORT_DIPSETTING( 0x03, DEF_STR( 1C_4C ) )
PORT_DIPSETTING( 0x04, DEF_STR( 1C_5C ) )
PORT_DIPSETTING( 0x05, DEF_STR( 1C_6C ) )
PORT_DIPSETTING( 0x06, DEF_STR( 1C_7C ) )
PORT_DIPSETTING( 0x07, DEF_STR( 1C_8C ) )
PORT_DIPNAME( 0xf0, 0x00, DEF_STR( Coin_B ) )
PORT_DIPSETTING( 0xf0, DEF_STR( 9C_1C ) )
PORT_DIPSETTING( 0xe0, DEF_STR( 8C_1C ) )
PORT_DIPSETTING( 0xd0, DEF_STR( 7C_1C ) )
PORT_DIPSETTING( 0xc0, DEF_STR( 6C_1C ) )
PORT_DIPSETTING( 0xb0, DEF_STR( 5C_1C ) )
PORT_DIPSETTING( 0xa0, DEF_STR( 4C_1C ) )
PORT_DIPSETTING( 0x90, DEF_STR( 3C_1C ) )
PORT_DIPSETTING( 0x80, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
PORT_DIPSETTING( 0x10, DEF_STR( 1C_2C ) )
PORT_DIPSETTING( 0x20, DEF_STR( 1C_3C ) )
PORT_DIPSETTING( 0x30, DEF_STR( 1C_4C ) )
PORT_DIPSETTING( 0x40, DEF_STR( 1C_5C ) )
PORT_DIPSETTING( 0x50, DEF_STR( 1C_6C ) )
PORT_DIPSETTING( 0x60, DEF_STR( 1C_7C ) )
PORT_DIPSETTING( 0x70, DEF_STR( 1C_8C ) )
PORT_START("DSW3") // d602 -> 800e
PORT_DIPNAME( 0x03, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, "0" )
PORT_DIPSETTING( 0x01, "1" )
PORT_DIPSETTING( 0x02, "2" )
PORT_DIPSETTING( 0x03, "3" )
PORT_DIPUNKNOWN( 0x04, 0x04 ) // *
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Demo_Sounds ) ) /* Music at every other title screen */
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, "Coinage Display" )
PORT_DIPSETTING( 0x00, DEF_STR( No ) )
PORT_DIPSETTING( 0x10, DEF_STR( Yes ) )
PORT_DIPNAME( 0x20, 0x00, "Copyright" )
PORT_DIPSETTING( 0x00, "Taito Corporation" )
PORT_DIPSETTING( 0x20, "Taito Corp. 1985" )
PORT_DIPNAME( 0x40, 0x40, "Invulnerability (Cheat)")
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x80, "Coin Slots" )
PORT_DIPSETTING( 0x00, "1" )
PORT_DIPSETTING( 0x80, "2" )
PORT_START("SYSTEM") // d603 -> 800f / 8023
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_START1 )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_START2 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_SERVICE1 )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_TILT )
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_COIN1 ) // must be 0 at boot
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_COIN2 ) // ""
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("JOY1") // d604 -> 8010 / 8024
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(1)
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(1)
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(1)
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(1)
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("FIRE1") // d605 -> 8011 / 8025
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_PLAYER(1)
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_PLAYER(1)
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_PLAYER(1)
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("JOY2") // d606 -> 8012 / 8026
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2)
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2)
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(2)
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(2)
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("FIRE2") // d607 -> 8013 / 8027
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_PLAYER(2)
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_PLAYER(2)
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_PLAYER(2)
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
INPUT_PORTS_END
/***************************************************************************
Graphics Layouts
***************************************************************************/
// Sprites use 2 x 2 tiles and a tile code lookup
static const gfx_layout layout_8x8x4 =
{
8,8,
RGN_FRAC(1,4),
4,
{ RGN_FRAC(0,4), RGN_FRAC(1,4), RGN_FRAC(2,4), RGN_FRAC(3,4) },
{ STEP8(7,-1) },
{ STEP8(0,8) },
8*8
};
static GFXDECODE_START( gfx_wyvernf0 )
GFXDECODE_ENTRY( "sprites", 0, layout_8x8x4, 0, 32 ) // [0] sprites
GFXDECODE_ENTRY( "tiles", 0, layout_8x8x4, 0, 32 ) // [1] tilemaps
GFXDECODE_END
/***************************************************************************
Machine Drivers
***************************************************************************/
void wyvernf0_state::machine_start()
{
uint8_t *ROM = memregion("rombank")->base();
membank("rombank")->configure_entries(0, 8, ROM, 0x2000);
// sprite codes lookup in banked RAM
m_objram = std::make_unique<uint8_t[]>(0x1000 * 2);
save_pointer(NAME(m_objram), 0x1000 * 2);
membank("rambank")->configure_entries(0, 2, m_objram.get(), 0x1000);
save_item(NAME(m_sound_nmi_enable));
save_item(NAME(m_pending_nmi));
save_item(NAME(m_rombank));
save_item(NAME(m_rambank));
}
void wyvernf0_state::machine_reset()
{
m_sound_nmi_enable = 0;
m_pending_nmi = 0;
m_rombank = 0;
m_rambank = 0;
}
void wyvernf0_state::wyvernf0(machine_config &config)
{
// basic machine hardware
Z80(config, m_maincpu, 48_MHz_XTAL/8); // 6MHz D780C-2 - Clock verified
m_maincpu->set_addrmap(AS_PROGRAM, &wyvernf0_state::wyvernf0_map);
m_maincpu->set_vblank_int("screen", FUNC(wyvernf0_state::irq0_line_hold));
// OSC on sound board is a custom/strange 6-pin part that outputs 8MHz, 4MHz, 2MHz (no external divider)
Z80(config, m_audiocpu, 4_MHz_XTAL); // 4MHz - Clock verified
m_audiocpu->set_addrmap(AS_PROGRAM, &wyvernf0_state::sound_map);
m_audiocpu->set_periodic_int(FUNC(wyvernf0_state::irq0_line_hold), attotime::from_hz(60*2)); // IRQ generated by ??? (drives music tempo), NMI by main cpu
TAITO68705_MCU(config, m_bmcu, 48_MHz_XTAL/16); // 3MHz - Clock verified
/* 100 CPU slices per frame - a high value to ensure proper synchronization of the CPUs */
config.set_maximum_quantum(attotime::from_hz(6000));
// video hardware
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_refresh_hz(60);
screen.set_vblank_time(ATTOSECONDS_IN_USEC(0));
screen.set_size(32*8, 32*8);
screen.set_visarea(0*8, 32*8-1, 2*8, 30*8-1);
screen.set_screen_update(FUNC(wyvernf0_state::screen_update_wyvernf0));
screen.set_palette("palette");
GFXDECODE(config, m_gfxdecode, m_palette, gfx_wyvernf0);
PALETTE(config, m_palette).set_format(palette_device::xRGB_444, 512);
m_palette->set_endianness(ENDIANNESS_BIG);
// sound hardware
SPEAKER(config, "mono").front_center();
GENERIC_LATCH_8(config, m_soundlatch);
// coin, fire, lift-off
YM2149(config, "ay1", 2_MHz_XTAL).add_route(ALL_OUTPUTS, "mono", 0.25); // YM2149 2MHz clock verified, pin 26 ??
// lift-off, explosion (saucers), boss alarm
YM2149(config, "ay2", 2_MHz_XTAL).add_route(ALL_OUTPUTS, "mono", 0.25); // YM2149 2MHz clock verified, pin 26 ??
// music
msm5232_device &msm(MSM5232(config, "msm", 2_MHz_XTAL)); // 2MHz - Clock verified
msm.set_capacitors(0.39e-6, 0.39e-6, 0.39e-6, 0.39e-6, 0.39e-6, 0.39e-6, 0.39e-6, 0.39e-6); /* default 0.39 uF capacitors (not verified) */
msm.add_route(0, "mono", 0.5); // pin 28 2'-1
msm.add_route(1, "mono", 0.5); // pin 29 4'-1
msm.add_route(2, "mono", 0.5); // pin 30 8'-1
msm.add_route(3, "mono", 0.5); // pin 31 16'-1
msm.add_route(4, "mono", 0.5); // pin 36 2'-2
msm.add_route(5, "mono", 0.5); // pin 35 4'-2
msm.add_route(6, "mono", 0.5); // pin 34 8'-2
msm.add_route(7, "mono", 0.5); // pin 33 16'-2
// pin 1 SOLO 8' not mapped
// pin 2 SOLO 16' not mapped
// pin 22 Noise Output not mapped
DAC_8BIT_R2R(config, "dac", 0).add_route(ALL_OUTPUTS, "mono", 0.25); // unknown DAC
}
/***************************************************************************
ROMs
***************************************************************************/
ROM_START( wyvernf0 )
ROM_REGION( 0x8000, "maincpu", 0 )
ROM_LOAD( "a39_01-1.ic37", 0x0000, 0x4000, CRC(a94887ec) SHA1(0b4406290810494e88442dcec7a750c7d3cf316a) )
ROM_LOAD( "a39_02-1.ic36", 0x4000, 0x4000, CRC(171cfdbe) SHA1(41d922df00c869b8f1f6a026dbe102afffc42cc6) )
ROM_REGION( 0x10000, "rombank", 0 )
ROM_LOAD( "a39_03.ic35", 0x0000, 0x4000, CRC(50314281) SHA1(0f4805f06b92c170469b7bc2c0342db919107a91) )
ROM_LOAD( "a39_04.ic34", 0x4000, 0x4000, CRC(7a225bf9) SHA1(4f0c287051e27f5bc936736225003a685cdf8ad3) )
ROM_LOAD( "a39_05.ic33", 0x8000, 0x4000, CRC(41f21a67) SHA1(bee4a692259c727baf5fc4f47e09efb953b1c94e) )
ROM_LOAD( "a39_06.ic32", 0xc000, 0x4000, CRC(deb2d850) SHA1(1d1f265e320fb2a48507c3133fd8a080f7bc4846) )
ROM_REGION( 0x10000, "audiocpu", 0 )
ROM_LOAD( "a39_16.ic26", 0x0000, 0x4000, CRC(5a681fb4) SHA1(e31e751a54fa9853acb462ce22dd2ff5286808f0) )
ROM_FILL( 0xe000, 0x2000, 0xff ) // diagnostics ROM
ROM_REGION( 0x0800, "bmcu:mcu", 0 ) // 68705P5 MCU
ROM_LOAD( "a39_mc68705p5s.ic23", 0x0000, 0x0800, CRC(14bff574) SHA1(c91446540e7628b3e62135e2f560a118f7e0dad4) ) /* from other set, appears to be correct */
ROM_REGION( 0x10000, "sprites", 0 ) // sprites
ROM_LOAD( "a39_11.ic99", 0x0000, 0x4000, CRC(af70e1dc) SHA1(98dba673750cdfdf25c119c24da10428eff6591b) )
ROM_LOAD( "a39_10.ic78", 0x4000, 0x4000, CRC(a84380fb) SHA1(ed77892c1a789040fdfecd5903a23b8cbc1df1da) )
ROM_LOAD( "a39_09.ic96", 0x8000, 0x4000, CRC(c0cee243) SHA1(97f66dde552c7a011ecc7ca8da0e62bc83ef8102) )
ROM_LOAD( "a39_08.ic75", 0xc000, 0x4000, CRC(0ad69501) SHA1(29037c60bed9435568e997689d193f161f6a4f5b) )
ROM_REGION( 0x8000, "tiles", 0 ) // tilemaps
ROM_LOAD( "a39_15.ic99", 0x0000, 0x2000, CRC(90a66147) SHA1(8515c43980b7fa55933ca74fb23172e8c832a830) ) // was listed as a39_14,ic99 but changed to a39_15.ic99
ROM_LOAD( "a39_14.ic73", 0x2000, 0x2000, CRC(a31f3507) SHA1(f72e089dbd700639d64e418812d4b6f4dc1dff75) )
ROM_LOAD( "a39_13.ic100", 0x4000, 0x2000, CRC(be708238) SHA1(f12d433af7bf6010dea9454a1b3bb2990a42a372) )
ROM_LOAD( "a39_12.ic74", 0x6000, 0x2000, CRC(1cc389de) SHA1(4213484d3a82688f312811e7a5c4d128e40584c3) )
ROM_END
ROM_START( wyvernf0a ) /* Possibly the first version or even an earlier development version as A39 06 above isn't labeled as A39 06-1 */
ROM_REGION( 0x8000, "maincpu", 0 )
ROM_LOAD( "soft1_c2a0.ic37", 0x0000, 0x4000, CRC(15f0beb8) SHA1(4105f7064bf94460a020aecca8795553870e3fdc) ) /* Hand written label SOFT1 C2A0 */
ROM_LOAD( "soft2_7b60.ic36", 0x4000, 0x4000, CRC(569a40c4) SHA1(5391b6cdc854277e63e4658f79889da4a941ee42) ) /* Hand written label SOFT2 7B60 */
ROM_REGION( 0x10000, "rombank", 0 ) /* Only EXT 4 label was hand written, the others were printed */
ROM_LOAD( "ext1.ic35", 0x0000, 0x4000, CRC(50314281) SHA1(0f4805f06b92c170469b7bc2c0342db919107a91) ) /* == a39_03.ic35 */
ROM_LOAD( "ext2.ic34", 0x4000, 0x4000, CRC(7a225bf9) SHA1(4f0c287051e27f5bc936736225003a685cdf8ad3) ) /* == a39_04.ic34 */
ROM_LOAD( "ext3.ic33", 0x8000, 0x4000, CRC(41f21a67) SHA1(bee4a692259c727baf5fc4f47e09efb953b1c94e) ) /* == a39_05.ic33 */
ROM_LOAD( "ext4_8ca8.ic32", 0xc000, 0x4000, CRC(793e36de) SHA1(2a316d832ce524250c36602ca910bb4c8befa15d) ) /* Hand written label EXT 4 8CA8 */
ROM_REGION( 0x10000, "audiocpu", 0 ) // ROM had hand written label
ROM_LOAD( "sound_4182.ic26", 0x0000, 0x4000, CRC(5a681fb4) SHA1(e31e751a54fa9853acb462ce22dd2ff5286808f0) ) /* == a39_16.ic26 */
ROM_FILL( 0xe000, 0x2000, 0xff ) // diagnostics ROM
ROM_REGION( 0x0800, "bmcu:mcu", 0 ) // 68705P5 MCU
ROM_LOAD( "a39_mc68705p5s.ic23", 0x0000, 0x0800, CRC(14bff574) SHA1(c91446540e7628b3e62135e2f560a118f7e0dad4) ) /* hand written label P5 5/1 - part was unprotected */
ROM_REGION( 0x10000, "sprites", 0 ) // sprites - These 4 ROMs had hand written labels
ROM_LOAD( "obj4_d779.ic99", 0x0000, 0x4000, CRC(af70e1dc) SHA1(98dba673750cdfdf25c119c24da10428eff6591b) ) /* == a39_11.ic99 */
ROM_LOAD( "obj3_5852.ic78", 0x4000, 0x4000, CRC(a84380fb) SHA1(ed77892c1a789040fdfecd5903a23b8cbc1df1da) ) /* == a39_10.ic78 */
ROM_LOAD( "obj2_50fd.ic96", 0x8000, 0x4000, CRC(c0cee243) SHA1(97f66dde552c7a011ecc7ca8da0e62bc83ef8102) ) /* == a39_09.ic96 */
ROM_LOAD( "obj1_bd50.ic75", 0xc000, 0x4000, CRC(0ad69501) SHA1(29037c60bed9435568e997689d193f161f6a4f5b) ) /* == a39_08.ic75 */
ROM_REGION( 0x8000, "tiles", 0 ) // tilemaps
ROM_LOAD( "sch_4.ic99", 0x0000, 0x2000, CRC(90a66147) SHA1(8515c43980b7fa55933ca74fb23172e8c832a830) ) /* == a39_15.ic99 */
ROM_LOAD( "sch_3.ic73", 0x2000, 0x2000, CRC(a31f3507) SHA1(f72e089dbd700639d64e418812d4b6f4dc1dff75) ) /* == a39_14.ic73 */
ROM_LOAD( "sch_2.ic100", 0x4000, 0x2000, CRC(be708238) SHA1(f12d433af7bf6010dea9454a1b3bb2990a42a372) ) /* == a39_13.ic100 */
ROM_LOAD( "sch_1.ic74", 0x6000, 0x2000, CRC(1cc389de) SHA1(4213484d3a82688f312811e7a5c4d128e40584c3) ) /* == a39_12.ic74 */
ROM_END
GAME( 1985, wyvernf0, 0, wyvernf0, wyvernf0, wyvernf0_state, empty_init, ROT270, "Taito Corporation", "Wyvern F-0 (Rev 1)", MACHINE_SUPPORTS_SAVE | MACHINE_IMPERFECT_COLORS | MACHINE_IMPERFECT_SOUND)
GAME( 1985, wyvernf0a, wyvernf0, wyvernf0, wyvernf0, wyvernf0_state, empty_init, ROT270, "Taito Corporation", "Wyvern F-0", MACHINE_SUPPORTS_SAVE | MACHINE_IMPERFECT_COLORS | MACHINE_IMPERFECT_SOUND) // First version or earlier dev version?
| 37.188406
| 248
| 0.673989
|
Robbbert
|
baad72da6556a6125156879bde8eab090eb45b0e
| 1,670
|
cpp
|
C++
|
CCF-CSP/201403-3.cpp
|
windcry1/My-ACM-ICPC
|
b85b1c83b72c6b51731dae946a0df57c31d3e7a1
|
[
"MIT"
] | null | null | null |
CCF-CSP/201403-3.cpp
|
windcry1/My-ACM-ICPC
|
b85b1c83b72c6b51731dae946a0df57c31d3e7a1
|
[
"MIT"
] | null | null | null |
CCF-CSP/201403-3.cpp
|
windcry1/My-ACM-ICPC
|
b85b1c83b72c6b51731dae946a0df57c31d3e7a1
|
[
"MIT"
] | null | null | null |
//Author:LanceYu
#include<iostream>
#include<string>
#include<cstring>
#include<cstdio>
#include<cctype>
#include<vector>
#include<cstdlib>
#include<queue>
#include<set>
#include<ctime>
#include<algorithm>
#include<complex>
#include<cmath>
#include<array>
#include<stack>
#include<bitset>
#define ll long long
using namespace std;
const double clf=1e-8;
const int MMAX=2147483647;
const int mod=1e9+7;
int main()
{
//ios::sync_with_stdio(false);
//freopen("C:\\Users\\LENOVO\\Desktop\\in.txt","r",stdin);
//freopen("C:\\Users\\LENOVO\\Desktop\\out.txt","w",stdout);
string setting,s,t1,t2,str[256];
int book[301]={0},n,i,time=0,flag=0;
cin>>setting;
int lensetting=setting.length();
for(i=0;i<lensetting;i++)
{
if(islower(setting[i])&&setting[i+1]==':')
book[setting[i++]]=-1;
else if(islower(setting[i]))
book[setting[i]]=1;
}
cin>>n;
getchar();
while(n--)
{
getline(cin,s);
flag=0;i=0;
istringstream ss(s);
ss>>t1;
cout<<"Case "<<++time<<":";
while(ss>>t1)
{
flag=0;
if(t1.length()!=2||t1[0]!='-')
break;
else
{
if(book[t1[1]]==-1)
{
for(int j=0;j<i;j++)
{
if(str[j]==t1)
{
ss>>t1;
flag=1;
str[j+1]=t1;
break;
}
}
if(!flag)
{
if(!(ss>>t2))
break;
else
{
str[i++]=t1;
str[i++]=t2;
}
}
}
else if(book[t1[1]]==1)
{
for(int j=0;j<i;j++)
if(str[j]==t1)
{
flag=1;
break;
}
if(!flag)
str[i++]=t1;
}
else if(book[t1[1]]==0)
break;
}
}
for(int j=0;j<i;j++)
cout<<' '<<str[j];
putchar('\n');
}
return 0;
}
| 16.7
| 61
| 0.528144
|
windcry1
|
bab121be66617749e38e8f1a4ffe430f0d073984
| 13,761
|
cc
|
C++
|
src/moe/moe.cc
|
emer/pdpp
|
ccce243ae356dc5908cdd667419a7afd74cf22ad
|
[
"BSD-3-Clause"
] | null | null | null |
src/moe/moe.cc
|
emer/pdpp
|
ccce243ae356dc5908cdd667419a7afd74cf22ad
|
[
"BSD-3-Clause"
] | null | null | null |
src/moe/moe.cc
|
emer/pdpp
|
ccce243ae356dc5908cdd667419a7afd74cf22ad
|
[
"BSD-3-Clause"
] | null | null | null |
/* -*- C++ -*- */
/*=============================================================================
// //
// This file is part of the PDP++ software package. //
// //
// Copyright (C) 1995 Randall C. O'Reilly, Chadley K. Dawson, //
// James L. McClelland, and Carnegie Mellon University //
// //
// Permission to use, copy, and modify this software and its documentation //
// for any purpose other than distribution-for-profit is hereby granted //
// without fee, provided that the above copyright notice and this permission //
// notice appear in all copies of the software and related documentation. //
// //
// Permission to distribute the software or modified or extended versions //
// thereof on a not-for-profit basis is explicitly granted, under the above //
// conditions. HOWEVER, THE RIGHT TO DISTRIBUTE THE SOFTWARE OR MODIFIED OR //
// EXTENDED VERSIONS THEREOF FOR PROFIT IS *NOT* GRANTED EXCEPT BY PRIOR //
// ARRANGEMENT AND WRITTEN CONSENT OF THE COPYRIGHT HOLDERS. //
// //
// Note that the taString class, which is derived from the GNU String class, //
// is Copyright (C) 1988 Free Software Foundation, written by Doug Lea, and //
// is covered by the GNU General Public License, see ta_string.h. //
// The iv_graphic library and some iv_misc classes were derived from the //
// InterViews morpher example and other InterViews code, which is //
// Copyright (C) 1987, 1988, 1989, 1990, 1991 Stanford University //
// Copyright (C) 1991 Silicon Graphics, Inc. //
// //
// THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, //
// EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY //
// WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. //
// //
// IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, //
// INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES //
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT //
// ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, //
// ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS //
// SOFTWARE. //
==============================================================================*/
// moe.cc
#ifdef __GNUG__
#pragma implementation
#endif
#include <moe/moe.h>
/////////////////////////////////
// Output Units/Layers //
/////////////////////////////////
void MoeOutputUnitSpec::Initialize() {
var_init = 1.0f;
var_init_wt = 1.0f;
}
void MoeOutputUnitSpec::InitWtState(Unit* u) {
BpUnitSpec::InitWtState(u);
MoeOutputUnit* mu = (MoeOutputUnit*)u;
mu->g_act = mu->g_exp = mu->g_exp_raw = 0.0f;
mu->var = var_init;
mu->var_num = var_init_wt * var_init;
mu->var_den = var_init_wt; // start off with initial weighting
}
void MoeOutputUnitSpec::Compute_Net(Unit* u) {
MoeOutputUnit* mu = (MoeOutputUnit*)u;
BpUnit* expt_u = mu->GetExpertUnit();
if(expt_u == NULL) return;
MoeGateUnit* gate_u = mu->GetGatingUnit();
if(gate_u == NULL) return;
mu->net = expt_u->act; // simple copy of activation from expert unit
mu->g_act = gate_u->act; // just activity from the gating unit
}
void MoeOutputUnitSpec::Compute_Act(Unit* u) {
MoeOutputUnit* mu = (MoeOutputUnit*)u;
mu->act = mu->net * mu->g_act; // net is expert activity, g_act is gating activity
}
float MoeOutputUnitSpec::Compute_GExpRaw(MoeOutputUnit* mu, MoeOutputLayer*) {
mu->dEdA = mu->targ - mu->net; // comparison is against expert output, not act
mu->err = mu->dEdA * mu->dEdA;
float exp_term = (-0.5f * mu->err) / mu->var;
exp_term = MAX(exp_term, -50.0f); // prevent exponent from blowing up..
exp_term = MIN(exp_term, 50.0f);
mu->g_exp_raw = mu->g_act * (1.0f / sqrtf(2.0f * PI * mu->var)) *
expf(exp_term);
return mu->g_exp_raw;
}
void MoeOutputUnitSpec::Compute_GExp(MoeOutputUnit* mu, MoeOutputLayer* lay) {
// simple normalization of raw values
mu->g_exp = mu->g_exp_raw / lay->g_exp_raw_sum;
}
// this must be computed *after* Compute_GExpRaw
void MoeOutputUnitSpec::Compute_VarDeltas(MoeOutputUnit* mu) {
mu->var_num += mu->g_exp * mu->err;
mu->var_den += mu->g_exp;
}
void MoeOutputUnitSpec::Compute_dEdA(BpUnit* u) {
MoeOutputUnit* mu = (MoeOutputUnit*)u;
// don't do the standard thing. note that dEdA itself already computed in Estep
Compute_VarDeltas(mu); // compute this here for lack of a better idea
// however, this means that it will get called repeatedly, even though it is static..
}
void MoeOutputUnitSpec::Compute_dEdNet(BpUnit* u) {
MoeOutputUnit* mu = (MoeOutputUnit*)u;
mu->dEdNet = mu->dEdA * (mu->g_exp / mu->var);// this will get send back to experts
// note that the weight back to experts must be 1.0
}
void MoeOutputUnitSpec::UpdateWeights(Unit* u) {
MoeOutputUnit* mu = (MoeOutputUnit*)u;
mu->var = mu->var_num / mu->var_den; // update the sigma at this point based on increments
// don't bother updating any other weights cuz they're all 0 anyway!
}
void MoeOutputUnit::Initialize() {
spec.SetBaseType(&TA_MoeOutputUnitSpec);
g_act = g_exp = g_exp_raw = 0.0f;
var = var_num = var_den = 0.0f;
}
void MoeOutputUnit::Copy_(const MoeOutputUnit& cp) {
g_act = cp.g_act;
g_exp = cp.g_exp;
g_exp_raw = cp.g_exp_raw;
var = cp.var;
var_num = cp.var_num;
var_den = cp.var_den;
}
BpUnit* MoeOutputUnit::GetExpertUnit() {
Con_Group* fm_expt = (Con_Group*)recv.Gp(0); // first group is experts
if(fm_expt == NULL) {
taMisc::Error("*** MoeOutputUnit: expecting recv.gp[0] to be one-to-one prjn",
"from EXPERT layer, did not find con group");
return NULL;
}
BpUnit* expt_u = (BpUnit*)fm_expt->Un(0);
if(expt_u == NULL) {
taMisc::Error("*** MoeOutputUnit: expecting recv.gp[0] to be one-to-one prjn",
"from EXPERT layer, did not find unit [0]");
return NULL;
}
return expt_u;
}
MoeGateUnit* MoeOutputUnit::GetGatingUnit() {
Con_Group* fm_gate = (Con_Group*)recv.Gp(1); // second group is gate
if(fm_gate == NULL) {
taMisc::Error("*** MoeOutputUnit: expecting recv.gp[1] to be one-to-one prjn",
"from GATING layer, did not find con group");
return NULL;
}
MoeGateUnit* gate_u = (MoeGateUnit*)fm_gate->Un(0);
if(gate_u == NULL) {
taMisc::Error("*** MoeOutputUnit: expecting recv.gp[1] to be one-to-one prjn",
"from GATING layer, did not find unit [0]");
return NULL;
}
return gate_u;
}
void MoeOutputUnit::ReScaleVariance(float new_scale) {
var_den = new_scale;
var_num = new_scale * var;
}
void MoeOutputLayer::Initialize() {
units.SetBaseType(&TA_MoeOutputUnit);
unit_spec.SetBaseType(&TA_MoeOutputUnitSpec);
g_exp_raw_sum = 0.0f;
}
void MoeOutputLayer::Compute_GExp() {
g_exp_raw_sum = 0.0f;
MoeOutputUnit* u;
taLeafItr u_itr;
// first pass get the raw values
FOR_ITR_EL(MoeOutputUnit, u, units., u_itr)
g_exp_raw_sum += u->Compute_GExpRaw(this);
// second pass do the normalization
FOR_ITR_EL(MoeOutputUnit, u, units., u_itr)
u->Compute_GExp(this);
}
void MoeOutputLayer::Compute_Act() {
Layer::Compute_Act();
Compute_GExp(); // after computing activations, compute expected gates (once)
// then, multiple Compute_dEdA_dEdNet iterations.
}
void MoeOutputLayer::ReScaleVariance(float new_scale) {
MoeOutputUnit* u;
taLeafItr u_itr;
FOR_ITR_EL(MoeOutputUnit, u, units., u_itr)
u->ReScaleVariance(new_scale);
}
/////////////////////////////////
// Gate Units/Layers //
/////////////////////////////////
void MoeGateUnitSpec::Initialize() {
act_delta_cost = 0.0f;
}
void MoeGateUnitSpec::Compute_Net(Unit* u) {
BpUnitSpec::Compute_Net(u);
u->net = MIN(u->net, 100.0f); // prevent blowup
u->act = expf(u->net);
}
void MoeGateUnitSpec::Compute_Act(MoeGateUnit* u, MoeGateLayer* lay) {
u->prv_act = u->act;
u->act /= lay->act_sum;
}
void MoeGateUnitSpec::Compute_dEdA(BpUnit* u) {
// we need to get the h value off of the output units!
MoeGateUnit* mu = (MoeGateUnit*)u;
MoeOutputUnit* out_u = mu->GetOutputUnit();
if(out_u == NULL) return;
mu->targ = out_u->g_exp; // keep this around for display
mu->dEdA = out_u->g_exp - mu->act; // diff between expected and actual
mu->dEdA += act_delta_cost * (mu->prv_act - mu->act);
}
void MoeGateUnitSpec::Compute_dEdNet(BpUnit* u) {
u->dEdNet = u->dEdA;
}
void MoeGateUnit::Initialize() {
spec.SetBaseType(&TA_MoeGateUnitSpec);
prv_act = 0.0f;
}
MoeOutputUnit* MoeGateUnit::GetOutputUnit() {
Con_Group* to_out = (Con_Group*)send.Gp(0); // first group is outputs
if(to_out == NULL) {
taMisc::Error("*** MoeGateUnit: expecting send.gp[0] to be one-to-one prjn",
"to output layer, did not find con group");
return NULL;
}
MoeOutputUnit* out_u = (MoeOutputUnit*)to_out->Un(0);
if(out_u == NULL) {
taMisc::Error("*** MoeGateUnit: expecting send.gp[0] to be one-to-one prjn",
"to output layer, did not find unit [0]");
return NULL;
}
return out_u;
}
void MoeGateLayer::Initialize() {
units.SetBaseType(&TA_MoeGateUnit);
unit_spec.SetBaseType(&TA_MoeGateUnitSpec);
act_sum = 0.0f;
}
void MoeGateLayer::Compute_Net() {
act_sum = 0.0f;
Unit* u;
taLeafItr i;
FOR_ITR_EL(Unit, u, units., i) {
u->Compute_Net();
act_sum += u->act;
}
}
void MoeGateLayer::Compute_Act() {
MoeGateUnit* u;
taLeafItr i;
FOR_ITR_EL(MoeGateUnit, u, units., i)
u->Compute_Act(this); // pass layer for normalization
}
/////////////////////////////////
// Processes //
/////////////////////////////////
void MoeTrial::Initialize() {
sub_proc_type = &TA_MoeMStep;
m_step.SetMax(1);
}
void MoeTrial::InitLinks() {
BpTrial::InitLinks();
taBase::Own(m_step, this);
}
bool MoeTrial::CheckUnit(Unit* ck) {
bool rval = BpTrial::CheckUnit(ck);
if(!rval) return rval;
if(ck->InheritsFrom(&TA_MoeOutputUnit)) {
MoeOutputUnit* mu = (MoeOutputUnit*)ck;
BpUnit* bu = mu->GetExpertUnit();
if(bu == NULL) return false;
MoeGateUnit* mg = mu->GetGatingUnit();
if(mg == NULL) return false;
if(!mg->InheritsFrom(TA_MoeGateUnit)) {
taMisc::Error("MoeOuputUnit did not find MoeGateUnit in recv.gp[1]",
"which is required by algorithm.");
return false;
}
}
if(ck->InheritsFrom(&TA_MoeGateUnit)) {
MoeGateUnit* mu = (MoeGateUnit*)ck;
MoeOutputUnit* mo = mu->GetOutputUnit();
if(mo == NULL) return false;
if(!mo->InheritsFrom(TA_MoeOutputUnit)) {
taMisc::Error("MoeGateUnit did not find MoeOutputUnit in send.gp[0]",
"which is required by algorithm.");
return false;
}
}
return rval;
}
void MoeTrial::Loop() {
// on first pass through, present event, do acts, etc
if(m_step.val == 0) {
if(network == NULL) return;
network->InitExterns();
if(cur_event != NULL)
cur_event->ApplyPatterns(network);
Compute_Act();
}
// testing does nothing..
if((epoch_proc == NULL) || (epoch_proc->wt_update == EpochProcess::TEST)) {
Compute_Error(); // for display purposes only..
}
else {
// this case relies on standard epoch-based calling of UpdateWeights
if(m_step.max == 1) {
Compute_dEdA_dEdNet();
Compute_dWt();
}
// otherwise, we need to do it by iterating over m-steps
else {
if(sub_proc != NULL) sub_proc->Run();
}
}
}
void MoeMStep::Initialize() {
sub_proc_type = NULL;
}
void MoeMStep::Compute_dEdA_dEdNet() {
// send the error back
Layer* layer;
int i;
for(i=network->layers.leaves-1; i>= 0; i--) {
layer = ((Layer*) network->layers.Leaf(i));
if(layer->lesion || (layer->ext_flag & Unit::EXT)) // don't compute err on inputs
continue;
BpUnit* u;
taLeafItr u_itr;
FOR_ITR_EL(BpUnit, u, layer->units., u_itr)
u->Compute_dEdA_dEdNet();
}
}
void MoeMStep::Compute_dWt() {
if(network == NULL) return;
network->Compute_dWt();
}
void MoeMStep::UpdateWeights() {
if(network == NULL) return;
network->UpdateWeights();
}
void MoeMStep::Loop() {
// it is assumed that this is only called if m_step > 1 and not testing
Compute_dEdA_dEdNet();
Compute_dWt();
UpdateWeights(); // weights need updated, else nothing happens over iters
}
/////////////////////////////////
// Projection Spec //
/////////////////////////////////
void ManyToOnePrjnSpec::Initialize() {
send_n = -1;
}
void ManyToOnePrjnSpec::Connect_impl(Projection* prjn) {
if(prjn->from == NULL) return;
int i;
int max_recv = n_conns;
if(n_conns < 0)
max_recv = prjn->layer->units.leaves - recv_start;
max_recv = MIN(prjn->layer->units.leaves - recv_start, max_recv);
int max_send = send_n;
max_send = MIN(prjn->from->units.leaves - send_start, max_send);
for(i=0; i<max_recv; i++) {
Unit* ru = (Unit*)prjn->layer->units.Leaf(recv_start + i);
int j;
for(j=0; j<max_send; j++) {
Unit* su = (Unit*)prjn->from->units.Leaf(send_start + j);
if(self_con || (ru != su))
ru->ConnectFrom(su, prjn);
}
}
}
| 32.764286
| 92
| 0.613691
|
emer
|
bab264266851030e48a843133ebbdcc58a9d13d7
| 9,899
|
cpp
|
C++
|
Simbody/examples/ExampleBricardMechanism.cpp
|
elen4/simbody
|
3ddbc16323afa45b7698c38e07266a7de15e2ad2
|
[
"Apache-2.0"
] | 2
|
2020-01-15T05:03:30.000Z
|
2021-01-16T06:18:47.000Z
|
Simbody/examples/ExampleBricardMechanism.cpp
|
sohapouya/simbody
|
3729532453b22ffa3693962210941184f5617f5b
|
[
"Apache-2.0"
] | null | null | null |
Simbody/examples/ExampleBricardMechanism.cpp
|
sohapouya/simbody
|
3729532453b22ffa3693962210941184f5617f5b
|
[
"Apache-2.0"
] | 1
|
2021-09-24T15:20:36.000Z
|
2021-09-24T15:20:36.000Z
|
/* -------------------------------------------------------------------------- *
* Simbody(tm) Example: Bricard Mechanism *
* -------------------------------------------------------------------------- *
* This is part of the SimTK biosimulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org/home/simbody. *
* *
* Portions copyright (c) 2010-12 Stanford University and the Authors. *
* Authors: Michael Sherman *
* Contributors: Moonki Jung *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may *
* not use this file except in compliance with the License. You may obtain a *
* copy of the License at http://www.apache.org/licenses/LICENSE-2.0. *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* -------------------------------------------------------------------------- */
#include "Simbody.h"
#include <fstream>
#include <iostream>
using std::cout; using std::endl;
using namespace SimTK;
/* Note: this example is due to Moonki Jung from Seoul National University's
Human-Centered CAD Laboratory. See SimTK Core open-discussion forum startin
g 2/4/2010 with message 3292. Moonki kindly gave us permission to include this
very difficult mechanism as a test case for Simbody and as a user example. The
Bricard mechanism is particularly difficult because it has six mobilities and
six constraints but has one net degree of freedom. Thus one of the constraints
is redundant; but it is not any particular one. The mechanism must be perfectly
aligned in order to move, but in practice we can only satisfy the position
constraints approximately. This can hide the redundancy, causing the mechanism
to appear to have zero dofs and thus lock up. */
class EnergyReport : public PeriodicEventReporter {
public:
EnergyReport(const MultibodySystem& system, Real interval)
: PeriodicEventReporter(interval), system(system) {}
void handleEvent(const State& s) const {
cout << "\n*** t=" << s.getTime()
<< " ke=" << system.calcKineticEnergy(s)
<< " E=" << system.calcEnergy(s)
<< endl;
cout << " u=" << s.getU() << "\n";
cout << " uerr=" << s.getUErr() << "\n\n";
}
private:
const MultibodySystem& system;
};
int main()
{
try {
const String currentWorkingDir = Pathname::getCurrentWorkingDirectory();
std::cout << "Current working directory: " << currentWorkingDir << std::endl;
MultibodySystem system;
SimbodyMatterSubsystem matter(system);
GeneralForceSubsystem forces(system);
Force::Gravity gravity(forces, matter, UnitVec3(0, -1, 0), 9.8);
const Real Mass = 20;
const Vec3 EvenCOM(1.00000000, -0.16416667, -0.16416667);
const Vec3 OddCOM(1.00000000, 0.16416667, -0.16416667);
const Inertia EvenCentralInertia
( 3.33400000, 28.33366667, 28.33366667, // xx, yy, zz
-4.96666667, -1.60000000, -0.03333333); // xy, xz, yz
const Inertia OddCentralInertia
( 3.33400000, 28.33366667, 28.33366667, // xx, yy, zz
4.96666667, -1.60000000, 0.03333333); // xy, xz, yz
// Inertias must be given about the body origin.
const Inertia EvenBodyInertia =
EvenCentralInertia.shiftFromMassCenter(-EvenCOM, Mass);
const Inertia OddBodyInertia =
OddCentralInertia.shiftFromMassCenter(-OddCOM, Mass);
Body::Rigid EVEN_PART_1(MassProperties(Mass, EvenCOM, EvenBodyInertia));
Body::Rigid EVEN_PART_2(MassProperties(Mass, EvenCOM, EvenBodyInertia));
Body::Rigid EVEN_PART_3(MassProperties(Mass, EvenCOM, EvenBodyInertia));
Body::Rigid ODD_PART_1(MassProperties(Mass, OddCOM, OddBodyInertia));
Body::Rigid ODD_PART_2(MassProperties(Mass, OddCOM, OddBodyInertia));
// Split the last body and weld back together to close loop.
Body::Rigid ODD_PART_3_HALF1(MassProperties(Mass/2, OddCOM,
OddBodyInertia/2));
Body::Rigid ODD_PART_3_HALF2(MassProperties(Mass/2, OddCOM,
OddBodyInertia/2));
std::ifstream file1, file2;
PolygonalMesh Mesh1; file1.open("Bricard_EVEN_PART.obj");
if (!file1.good()) {
std::cout << "Couldn't open file 'Bricard_EVEN_PART.obj' in current working directory "
<< currentWorkingDir << std::endl;
exit(1);
}
Mesh1.loadObjFile(file1); file1.close();
PolygonalMesh Mesh2; file2.open("Bricard_ODD_PART.obj");
if (!file2.good()) {
std::cout << "Couldn't open file 'Bricard_ODD_PART.obj' in current working directory "
<< currentWorkingDir << std::endl;
exit(1);
}
Mesh2.loadObjFile(file2); file2.close();
EVEN_PART_1.addDecoration(Transform(), DecorativeMesh(Mesh1).setColor(Vec3(0.00000000, 1.00000000, 0.00000000)));
EVEN_PART_2.addDecoration(Transform(), DecorativeMesh(Mesh1).setColor(Vec3(1.00000000, 0.00000000, 1.00000000)));
EVEN_PART_3.addDecoration(Transform(), DecorativeMesh(Mesh1).setColor(Vec3(1.00000000, 1.00000000, 0.00000000)));
ODD_PART_1.addDecoration(Transform(), DecorativeMesh(Mesh2).setColor(Vec3(1.00000000, 0.00000000, 0.00000000)));
ODD_PART_2.addDecoration(Transform(), DecorativeMesh(Mesh2).setColor(Vec3(0.00000000, 0.00000000, 1.00000000)));
ODD_PART_3_HALF1.addDecoration(Transform(), DecorativeMesh(Mesh2).setColor(Vec3(0.00000000, 1.00000000, 1.00000000)));
MobilizedBody::Weld EVEN_PART_1_body(matter.updGround(), Transform(Rotation(Mat33(1,0,0,0,-1,0,0,0,-1)), Vec3(0, 0, 0))
,EVEN_PART_1, Transform());
MobilizedBody::Pin ODD_PART_1_body(EVEN_PART_1_body, Transform(Rotation(Mat33(0,-1,0,1,0,0,0,0,1)), Vec3(0, 0, 0))
,ODD_PART_1, Transform(Rotation(Mat33(0,-1,0,1,0,0,0,0,1)), Vec3(0,0,0)));
MobilizedBody::Pin EVEN_PART_2_body(ODD_PART_1_body, Transform(Rotation(Mat33(0,-1,0,0,0,1,-1,0,0)), Vec3(2, 0, 0))
,EVEN_PART_2, Transform(Rotation(Mat33(0,-1,0,-1,0,0,0,0,-1)), Vec3(0,0,0)));
MobilizedBody::Pin ODD_PART_2_body(EVEN_PART_1_body, Transform(Rotation(Mat33(0,-1,0,0,0,1,-1,0,0)), Vec3(2, 0, 0))
,ODD_PART_2, Transform(Rotation(Mat33(0,-1,0,1,0,0,0,0,1)), Vec3(0,0,0)));
MobilizedBody::Pin EVEN_PART_3_body(ODD_PART_2_body, Transform(Rotation(Mat33(0,-1,0,0,0,1,-1,0,0)), Vec3(2, 0, 0))
,EVEN_PART_3, Transform(Rotation(Mat33(0,-1,0,0,0,-1,1,0,0)), Vec3(2,0,0)));
MobilizedBody::Pin ODD_PART_3_HALF1_body(EVEN_PART_3_body, Transform(Rotation(Mat33(0,-1,0,-1,0,0,0,0,-1)), Vec3(0, 0, 0))
,ODD_PART_3_HALF1, Transform(Rotation(Mat33(0,-1,0,0,0,1,-1,0,0)), Vec3(2,0,0)));
MobilizedBody::Pin ODD_PART_3_HALF2_body(EVEN_PART_2_body, Transform(Rotation(Mat33(0,-1,0,0,0,1,-1,0,0)), Vec3(2, 0, 0))
,ODD_PART_3_HALF2, Transform(Rotation(Mat33(0,-1,0,1,0,0,0,0,1)), Vec3(0,0,0)));
Constraint::Weld ODD_PART_3_UNION(ODD_PART_3_HALF1_body, Transform(), ODD_PART_3_HALF2_body, Transform());
//Constraint::ConstantSpeed motion(EVEN_PART_3_body, -.1);
//Force::MobilityLinearSpring frc(forces, EVEN_PART_3_body,
// MobilizerUIndex(0), 100, 0);
Visualizer viz(system);
viz.setCameraTransform(Vec3(0.5,0.5,0.5));
viz.pointCameraAt(Vec3(0), Vec3(0,1,0));
viz.setBackgroundType(Visualizer::SolidColor);
system.addEventReporter(new Visualizer::Reporter(viz, 1./30));
system.addEventReporter(new EnergyReport(system, .01));
system.realizeTopology();
State state = system.getDefaultState();
// Set initial states (Q's and U's)
// Position
ODD_PART_1_body.setOneQ(state, 0, 180.0*Pi/180.0);
EVEN_PART_3_body.setOneQ(state, 0, 180.0*Pi/180.0);
ODD_PART_3_HALF2_body.setOneQ(state, 0, 0.0*Pi/180.0);
EVEN_PART_2_body.setOneQ(state, 0, -120.0*Pi/180.0);
ODD_PART_2_body.setOneQ(state, 0, -120.0*Pi/180.0);
ODD_PART_3_HALF1_body.setOneQ(state, 0, 120.0*Pi/180.0);
// Velocity
ODD_PART_1_body.setOneU(state,0, -11.2);
//RungeKuttaMersonIntegrator integ(system);
RungeKutta3Integrator integ(system);
//RungeKuttaFeldbergIntegrator integ(system);
//VerletIntegrator integ(system);
//CPodesIntegrator integ(system);
// Accuracy needs to be fairly tight to avoid lockup that would occur
// if the constraints were allowed to drift.
integ.setAccuracy(1e-5);
//integ.setConstraintTolerance(1e-8);
integ.initialize(state);
const double startCPU = cpuTime(), startReal = realTime();
TimeStepper ts(system, integ);
ts.initialize(state);
ts.stepTo(20.0);
cout << "DONE. CPU=" << cpuTime()-startCPU
<< "s, REAL=" << realTime()-startReal << "s\n";
printf("Used Integrator %s at accuracy %g:\n",
integ.getMethodName(), integ.getAccuracyInUse());
printf("# STEPS/ATTEMPTS = %d/%d\n", integ.getNumStepsTaken(), integ.getNumStepsAttempted());
printf("# ERR TEST FAILS = %d\n", integ.getNumErrorTestFailures());
printf("# REALIZE/PROJECT = %d/%d\n", integ.getNumRealizations(), integ.getNumProjections());
} catch (const std::exception& e) {
std::cout << "std::exception: " << e.what() << std::endl;
} catch (...) {
std::cout << "UNKNOWN EXCEPTION\n";
}
return 0;
}
| 45.617512
| 123
| 0.649156
|
elen4
|
bab2ec233075ba676dff8d0e42de010ef64bf5eb
| 5,202
|
cpp
|
C++
|
src/lib/corelib/refstring.cpp
|
millimoji/ribbon
|
59e6659848f5edc435d58078f0cdcd805daf9f3f
|
[
"MIT"
] | null | null | null |
src/lib/corelib/refstring.cpp
|
millimoji/ribbon
|
59e6659848f5edc435d58078f0cdcd805daf9f3f
|
[
"MIT"
] | null | null | null |
src/lib/corelib/refstring.cpp
|
millimoji/ribbon
|
59e6659848f5edc435d58078f0cdcd805daf9f3f
|
[
"MIT"
] | null | null | null |
#include "pch.h"
namespace Ribbon {
namespace RefStringInternal {
static const size_t STRINGBLOCKSIZE = 0x4000;
struct StringBuffer
{
uint64_t buf[STRINGBLOCKSIZE / sizeof(uint64_t)];
};
template <size_t ELEMENTSIZE>
union StringMemoryBuffer
{
uint64_t buf[ELEMENTSIZE / sizeof(uint64_t)];
StringMemoryBuffer* prev;
static const int blockSize = ELEMENTSIZE;
static const int countInBlock = static_cast<int>(STRINGBLOCKSIZE / ELEMENTSIZE);
static const int maxLength = static_cast<int>((ELEMENTSIZE - sizeof(StringMemoryImage)) / sizeof(char16_t));
};
struct StringMemoryManager
{
static StringMemoryManager* singleton; // Life time is manged by reference counter.
static void Ensure()
{
if (!singleton) {
singleton = new StringMemoryManager();
}
}
static void Clean()
{
if (singleton) {
delete singleton;
}
singleton = nullptr;
}
std::deque<std::unique_ptr<StringBuffer>> m_alloc; // just for free
StringMemoryBuffer<16>* m_last16ptr = nullptr;
StringMemoryBuffer<32>* m_last32ptr = nullptr;
StringMemoryBuffer<64>* m_last64ptr = nullptr;
StringMemoryBuffer<128>* m_last128ptr = nullptr;
StringMemoryBuffer<256>* m_last256ptr = nullptr;
std::mutex m_lock;
std::atomic_int m_activeInstanceCount;
StringMemoryManager() :
m_activeInstanceCount(0)
{}
~StringMemoryManager() {}
template <class T>
StringMemoryImage* AllocateForEachSize(T*& lastPtr)
{
std::lock_guard<std::mutex> lock(m_lock);
if (lastPtr == nullptr) {
m_alloc.emplace_back(new StringBuffer);
T* fillTop = reinterpret_cast<T*>(m_alloc.back()->buf);
fillTop[0].prev = nullptr;
for (int i = 1; i < T::countInBlock; ++i) {
fillTop[i].prev = &fillTop[i - 1];
}
lastPtr = &fillTop[T::countInBlock - 1];
}
StringMemoryImage* ptr = reinterpret_cast<StringMemoryImage*>(lastPtr);
lastPtr = lastPtr->prev;
++m_activeInstanceCount;
return ptr;
}
template <class T>
void ReleaseForEachSize(StringMemoryImage* ptr, T*& lastPtr)
{
{
std::lock_guard<std::mutex> lock(m_lock);
T* rawPtr = reinterpret_cast<T*>(ptr);
rawPtr->prev = lastPtr;
lastPtr = rawPtr;
}
if (--m_activeInstanceCount == 0) {
StringMemoryManager::Clean();
}
}
StringMemoryImage* Allocate(size_t length)
{
StringMemoryImage* ptr;
if (length <= StringMemoryBuffer<16>::maxLength) {
ptr = AllocateForEachSize<StringMemoryBuffer<16>>(m_last16ptr);
}
else if (length <= StringMemoryBuffer<32>::maxLength) {
ptr = AllocateForEachSize<StringMemoryBuffer<32>>(m_last32ptr);
}
else if (length <= StringMemoryBuffer<64>::maxLength) {
ptr = AllocateForEachSize<StringMemoryBuffer<64>>(m_last64ptr);
}
else if (length <= StringMemoryBuffer<128>::maxLength) {
ptr = AllocateForEachSize<StringMemoryBuffer<128>>(m_last128ptr);
}
else if (length <= StringMemoryBuffer<256>::maxLength) {
ptr = AllocateForEachSize<StringMemoryBuffer<256>>(m_last256ptr);
}
else {
size_t allocSize = sizeof(StringMemoryImage) + length * sizeof(char16_t);
ptr = reinterpret_cast<StringMemoryImage*>(malloc(allocSize));
++m_activeInstanceCount;
}
ptr->m_refCount = 1;
ptr->m_length = static_cast<uint16_t>(length);
ptr->m_str[0] = 0;
return ptr;
}
void Release(StringMemoryImage* ptr)
{
if (ptr->m_length <= StringMemoryBuffer<16>::maxLength) {
ReleaseForEachSize<StringMemoryBuffer<16>>(ptr, m_last16ptr);
}
else if (ptr->m_length <= StringMemoryBuffer<32>::maxLength) {
ReleaseForEachSize<StringMemoryBuffer<32>>(ptr, m_last32ptr);
}
else if (ptr->m_length <= StringMemoryBuffer<64>::maxLength) {
ReleaseForEachSize<StringMemoryBuffer<64>>(ptr, m_last64ptr);
}
else if (ptr->m_length <= StringMemoryBuffer<128>::maxLength) {
ReleaseForEachSize<StringMemoryBuffer<128>>(ptr, m_last128ptr);
}
else if (ptr->m_length <= StringMemoryBuffer<256>::maxLength) {
ReleaseForEachSize<StringMemoryBuffer<256>>(ptr, m_last256ptr);
}
else {
free(ptr);
if (--m_activeInstanceCount == 0) {
StringMemoryManager::Clean();
}
}
}
StringMemoryManager(const StringMemoryManager&) = delete;
StringMemoryManager& operator = (const StringMemoryManager&) = delete;
StringMemoryManager(StringMemoryManager&&) = delete;
};
StringMemoryManager* StringMemoryManager::singleton;
uint32_t StringMemoryImage::DecrementReference()
{
uint32_t refCount = --m_refCount;
if (refCount == 0) {
RefStringInternal::StringMemoryManager::singleton->Release(this);
}
return refCount;
}
} // namespace RefStringInternal
char16_t RefString::Length0Text[] = u"";
RefString::RefString(const char16_t* src, size_t length) :
m_ptr(nullptr)
{
length = std::min(length, static_cast<size_t>(0x7ffe));
if (length > 0) {
RefStringInternal::StringMemoryManager::Ensure();
m_ptr = RefStringInternal::StringMemoryManager::singleton->Allocate(static_cast<uint16_t>(length));
memcpy(m_ptr->m_str, src, length * sizeof(char16_t));
m_ptr->m_str[length] = 0;
}
}
/*static*/ uint32_t RefString::GetActiveInstanceCount()
{
if (RefStringInternal::StringMemoryManager::singleton == nullptr) {
return 0;
}
return (uint32_t)RefStringInternal::StringMemoryManager::singleton->m_activeInstanceCount;
}
} // Ribbon
| 27.967742
| 109
| 0.72549
|
millimoji
|
bab4c66de5f9b3cf4d36529995cb4f40361dcb6c
| 26,404
|
cpp
|
C++
|
amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderVulkan.cpp
|
EwoutH/AMF
|
ec6e3804c82fba7a597c86b261bc29e5c33da578
|
[
"MIT"
] | null | null | null |
amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderVulkan.cpp
|
EwoutH/AMF
|
ec6e3804c82fba7a597c86b261bc29e5c33da578
|
[
"MIT"
] | null | null | null |
amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderVulkan.cpp
|
EwoutH/AMF
|
ec6e3804c82fba7a597c86b261bc29e5c33da578
|
[
"MIT"
] | null | null | null |
//
// Notice Regarding Standards. AMD does not provide a license or sublicense to
// any Intellectual Property Rights relating to any standards, including but not
// limited to any audio and/or video codec technologies such as MPEG-2, MPEG-4;
// AVC/H.264; HEVC/H.265; AAC decode/FFMPEG; AAC encode/FFMPEG; VC-1; and MP3
// (collectively, the "Media Technologies"). For clarity, you will pay any
// royalties due for such third party technologies, which may include the Media
// Technologies that are owed as a result of AMD providing the Software to you.
//
// MIT license
//
//
// Copyright (c) 2018 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#include "VideoRenderVulkan.h"
#include "../common/CmdLogger.h"
#include "public/common/ByteArray.h"
#include "public/common/TraceAdapter.h"
#include "public/common/AMFSTL.h"
#include "public/common/AMFMath.h"
#include <iostream>
#include <fstream>
#if defined(_WIN32)
#else
#include <unistd.h>
#endif
//#define VK_NO_PROTOTYPES
#if defined(_WIN32)
#define VK_USE_PLATFORM_WIN32_KHR
#endif
#include "vulkan/vulkan.h"
using namespace amf;
//Cube data
struct Vertex{
float pos[3];
float color[4];
};
struct ModelView {
float model[16];
float view[16];
float proj[16];
};
VideoRenderVulkan::VideoRenderVulkan(amf_int width, amf_int height, bool bInterlaced, amf_int frames, amf::AMFContext* pContext)
:VideoRender(width, height, bInterlaced, frames, pContext),
SwapChainVulkan(pContext),
m_fAnimation(0),
m_hPipelineLayout(NULL),
m_hPipeline(NULL),
m_hDescriptorSet(NULL),
m_hDescriptorPool(NULL)
{
memset(&m_VertexBuffer, 0, sizeof(m_VertexBuffer));
memset(&m_IndexBuffer, 0, sizeof(m_IndexBuffer));
memset(&m_MVPBuffer, 0, sizeof(m_MVPBuffer));
}
VideoRenderVulkan::~VideoRenderVulkan()
{
Terminate();
}
AMF_RESULT VideoRenderVulkan::Init(amf_handle hWnd, amf_handle hDisplay, bool bFullScreen)
{
AMF_RESULT res = AMF_OK;
m_fAnimation = 0;
VkFormat format = VK_FORMAT_UNDEFINED;
switch(GetFormat())
{
case amf::AMF_SURFACE_BGRA: format = VK_FORMAT_B8G8R8A8_UNORM; break;
case amf::AMF_SURFACE_RGBA: format = VK_FORMAT_R8G8B8A8_UNORM; break;
}
CHECK_RETURN(m_width != 0 && m_height != 0 && format != VK_FORMAT_UNDEFINED, AMF_FAIL, L"Bad width/height: width=" << m_width << L" height=" << m_height << L" format" << amf::AMFSurfaceGetFormatName(GetFormat()));
res = SwapChainVulkan::Init(hWnd, hDisplay, bFullScreen, m_width, m_height, format);
CHECK_AMF_ERROR_RETURN(res, L"SwapChainVulkan::Init() failed");
res = CreatePipelineInput();
CHECK_AMF_ERROR_RETURN(res, L"CreatePipelineInput() failed");
res = CreateDescriptorSetLayout();
CHECK_AMF_ERROR_RETURN(res, L"CreateDescriptorSetLayout() failed");
res = CreatePipeline();
CHECK_AMF_ERROR_RETURN(res, L"CreatePipeline() failed");
res = CreateCommands();
CHECK_AMF_ERROR_RETURN(res, L"CreateCommands() failed");
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::Terminate()
{
if(m_hVulkanDev == NULL)
{
return AMF_OK;
}
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
//VkSampler m_hTextureSampler;
if(m_hDescriptorSet != NULL)
{
GetVulkan()->vkFreeDescriptorSets(pVulkanDev->hDevice, m_hDescriptorPool, 1, &m_hDescriptorSet);
m_hDescriptorPool = NULL;
}
if (m_hDescriptorPool != NULL)
{
GetVulkan()->vkDestroyDescriptorPool(pVulkanDev->hDevice, m_hDescriptorPool, nullptr);
m_hDescriptorPool = NULL;
}
DestroyBuffer(m_VertexBuffer);
DestroyBuffer(m_IndexBuffer);
DestroyBuffer(m_MVPBuffer);
if (m_hPipeline != NULL)
{
GetVulkan()->vkDestroyPipeline(pVulkanDev->hDevice, m_hPipeline, nullptr);
m_hPipeline = NULL;
}
if (m_hPipelineLayout != NULL)
{
GetVulkan()->vkDestroyPipelineLayout(pVulkanDev->hDevice, m_hPipelineLayout, nullptr);
m_hPipelineLayout = NULL;
}
if (m_hUniformLayout != NULL)
{
GetVulkan()->vkDestroyDescriptorSetLayout(pVulkanDev->hDevice, m_hUniformLayout, nullptr);
m_hUniformLayout = NULL;
}
if(m_CommandBuffers.size() > 0)
{
GetVulkan()->vkFreeCommandBuffers(pVulkanDev->hDevice, m_hCommandPool, (uint32_t)m_CommandBuffers.size(), m_CommandBuffers.data());
}
m_CommandBuffers.clear();
return SwapChainVulkan::Terminate();
}
AMF_RESULT VideoRenderVulkan::CreatePipelineInput()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::CreateDescriptorSetLayout()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
VkDescriptorSetLayoutBinding MVPLayoutBinding = {};
MVPLayoutBinding.binding = 0;
MVPLayoutBinding.descriptorCount = 1;
MVPLayoutBinding.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER;
MVPLayoutBinding.stageFlags = VK_SHADER_STAGE_VERTEX_BIT;
/*
VkDescriptorSetLayoutBinding samplerLayoutBinding = {};
samplerLayoutBinding.binding = 1;
samplerLayoutBinding.descriptorCount = 1;
samplerLayoutBinding.descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
samplerLayoutBinding.stageFlags = VK_SHADER_STAGE_FRAGMENT_BIT;
samplerLayoutBinding.pImmutableSamplers = nullptr;
std::vector<VkDescriptorSetLayoutBinding> bindings = { MVPLayoutBinding, samplerLayoutBinding };
*/
std::vector<VkDescriptorSetLayoutBinding> bindings = { MVPLayoutBinding};
VkDescriptorSetLayoutCreateInfo layoutCreateInfo = {};
layoutCreateInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
layoutCreateInfo.bindingCount = (uint32_t)bindings.size();
layoutCreateInfo.pBindings = bindings.data();
res = GetVulkan()->vkCreateDescriptorSetLayout(pVulkanDev->hDevice, &layoutCreateInfo, nullptr, &m_hUniformLayout);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreateDescriptorSetLayout() failed with error=" << res);
return AMF_OK;
}
static AMF_RESULT LoadShaderFile(const wchar_t* pFileName, AMFByteArray &data)
{
#if defined(_WIN32)
wchar_t path[5 * 1024];
::GetModuleFileNameW(NULL, path, amf_countof(path));
std::wstring filepath(path);
std::wstring::size_type slash = filepath.find_last_of(L"\\/");
filepath = filepath.substr(0, slash + 1);
std::wstring fileName = filepath + pFileName;
//Load data from file
std::ifstream fs(fileName, std::ios::ate | std::ios::binary);
#elif defined(__linux)
char path[5 * 1024] = {0};
ssize_t len = readlink("/proc/self/exe", path, amf_countof(path));
std::string filepath(path);
std::string::size_type slash = filepath.find_last_of("\\/");
filepath = filepath.substr(0, slash + 1);
std::string fileName = filepath + amf_from_unicode_to_utf8(pFileName).c_str();
//Load data from file
std::ifstream fs(fileName, std::ios::ate | std::ios::binary);
#endif
if (!fs.is_open())
{
return AMF_FAIL;
}
size_t fileSize = (size_t)fs.tellg();
data.SetSize(fileSize);
fs.seekg(0);
fs.read((char*)data.GetData(), fileSize);
fs.close();
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::CreatePipeline()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
AMF_RESULT resAMF = AMF_OK;
const wchar_t* pCubeShaderFileNameVert = L"cube.vert.spv";
const wchar_t* pCubeShaderFileNameFraq = L"cube.frag.spv";
AMFByteArray vertShader;
AMFByteArray fraqShader;
resAMF = LoadShaderFile(pCubeShaderFileNameVert, vertShader);
CHECK_AMF_ERROR_RETURN(resAMF, L"LoadShaderFile(" << pCubeShaderFileNameVert << L") failed");
resAMF = LoadShaderFile(pCubeShaderFileNameFraq, fraqShader);
CHECK_AMF_ERROR_RETURN(resAMF, L"LoadShaderFile(" << pCubeShaderFileNameFraq <<L") failed");
VkShaderModule vertModule;
VkShaderModule fragModule;
VkShaderModuleCreateInfo vertModuleCreateInfo = {};
vertModuleCreateInfo.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
vertModuleCreateInfo.codeSize = vertShader.GetSize();
vertModuleCreateInfo.pCode = (uint32_t*)vertShader.GetData();
VkShaderModuleCreateInfo fragModuleCreateInfo = {};
fragModuleCreateInfo.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
fragModuleCreateInfo.codeSize = fraqShader.GetSize();
fragModuleCreateInfo.pCode = (uint32_t*)fraqShader.GetData();
res = GetVulkan()->vkCreateShaderModule(pVulkanDev->hDevice, &vertModuleCreateInfo, nullptr, &vertModule);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreateShaderModule(" << pCubeShaderFileNameVert << L") failed with error=" << res);
res = GetVulkan()->vkCreateShaderModule(pVulkanDev->hDevice, &fragModuleCreateInfo, nullptr, &fragModule);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreateShaderModule(" << pCubeShaderFileNameFraq << L") failed with error=" << res);
VkPipelineShaderStageCreateInfo vertStageInfo = {};
vertStageInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
vertStageInfo.stage = VK_SHADER_STAGE_VERTEX_BIT;
vertStageInfo.module = vertModule;
vertStageInfo.pName = "main";
VkPipelineShaderStageCreateInfo fragStageInfo = {};
fragStageInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
fragStageInfo.stage = VK_SHADER_STAGE_FRAGMENT_BIT;
fragStageInfo.module = fragModule;
fragStageInfo.pName = "main";
VkPipelineShaderStageCreateInfo shaderStages[] = { vertStageInfo, fragStageInfo };
//Fixed Stages
VkVertexInputBindingDescription vertexBindingDesc = {};
vertexBindingDesc.binding = 0;
vertexBindingDesc.stride = sizeof(Vertex);
vertexBindingDesc.inputRate = VK_VERTEX_INPUT_RATE_VERTEX;
VkVertexInputAttributeDescription vertexAttribDesc[2] = {0, 0};
//Position
vertexAttribDesc[0].binding = 0;
vertexAttribDesc[0].location = 0;
vertexAttribDesc[0].format = VK_FORMAT_R32G32B32_SFLOAT;
vertexAttribDesc[0].offset = offsetof(Vertex, pos);
//Color
vertexAttribDesc[1].binding = 0;
vertexAttribDesc[1].location = 1;
vertexAttribDesc[1].format = VK_FORMAT_R32G32B32A32_SFLOAT;
vertexAttribDesc[1].offset = offsetof(Vertex, color);
VkPipelineVertexInputStateCreateInfo vertInputInfo = {};
vertInputInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO;
vertInputInfo.vertexBindingDescriptionCount = 1;
vertInputInfo.pVertexBindingDescriptions = &vertexBindingDesc;
vertInputInfo.vertexAttributeDescriptionCount = (uint32_t)amf_countof(vertexAttribDesc);
vertInputInfo.pVertexAttributeDescriptions = vertexAttribDesc;
VkPipelineInputAssemblyStateCreateInfo inputAssemply = {};
inputAssemply.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO;
inputAssemply.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
inputAssemply.primitiveRestartEnable = VK_FALSE;
VkViewport viewport = {};
viewport.x = 0.0f;
viewport.y = 0.0f;
viewport.width = (float)m_SwapChainExtent.width;
viewport.height = (float)m_SwapChainExtent.height;
viewport.minDepth = 0.0f;
viewport.maxDepth = 1.0f;
VkRect2D scissor = {};
scissor.offset = { 0, 0 };
scissor.extent.width = m_SwapChainExtent.width;
scissor.extent.height = m_SwapChainExtent.height;
VkPipelineViewportStateCreateInfo viewportState = {};
viewportState.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO;
viewportState.viewportCount = 1;
viewportState.pViewports = &viewport;
viewportState.scissorCount = 1;
viewportState.pScissors = &scissor;
VkPipelineRasterizationStateCreateInfo rasterizerInfo = {};
rasterizerInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO;
// rasterizerInfo.depthClampEnable = VK_TRUE;
rasterizerInfo.depthClampEnable = VK_FALSE;
rasterizerInfo.rasterizerDiscardEnable = VK_FALSE;
rasterizerInfo.polygonMode = VK_POLYGON_MODE_FILL;
rasterizerInfo.cullMode = VK_CULL_MODE_BACK_BIT;
rasterizerInfo.frontFace = VK_FRONT_FACE_CLOCKWISE;//VK_FRONT_FACE_COUNTER_CLOCKWISE;
rasterizerInfo.depthBiasEnable = VK_FALSE;
rasterizerInfo.lineWidth = 1.0f;
VkPipelineMultisampleStateCreateInfo multisampling = {};
multisampling.sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO;
multisampling.sampleShadingEnable = VK_FALSE;
multisampling.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT;
VkPipelineColorBlendAttachmentState colorBlendAtt = {}; // Sets up color / alpha blending.
colorBlendAtt.colorWriteMask = VK_COLOR_COMPONENT_R_BIT | VK_COLOR_COMPONENT_B_BIT | VK_COLOR_COMPONENT_G_BIT | VK_COLOR_COMPONENT_A_BIT;
colorBlendAtt.blendEnable = VK_FALSE;
VkPipelineColorBlendStateCreateInfo blendInfo = {};
blendInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO;
blendInfo.logicOpEnable = VK_FALSE;
blendInfo.logicOp = VK_LOGIC_OP_COPY;
blendInfo.attachmentCount = 1;
blendInfo.pAttachments = &colorBlendAtt;
VkDescriptorSetLayout setLayouts[] = {m_hUniformLayout};
VkPipelineLayoutCreateInfo pipelineLayoutInfo = {};
pipelineLayoutInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO;
pipelineLayoutInfo.setLayoutCount = 1;
pipelineLayoutInfo.pSetLayouts = setLayouts;
VkPipelineDepthStencilStateCreateInfo depthStencilState = {};
depthStencilState.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO;
depthStencilState.depthTestEnable = VK_TRUE;
depthStencilState.depthWriteEnable = VK_TRUE;
depthStencilState.depthCompareOp = VK_COMPARE_OP_LESS_OR_EQUAL;
depthStencilState.depthBoundsTestEnable = VK_FALSE;
depthStencilState.back.failOp = VK_STENCIL_OP_KEEP;
depthStencilState.back.passOp = VK_STENCIL_OP_KEEP;
depthStencilState.back.compareOp = VK_COMPARE_OP_ALWAYS;
depthStencilState.stencilTestEnable = VK_FALSE;
depthStencilState.front = depthStencilState.back;
res = GetVulkan()->vkCreatePipelineLayout(pVulkanDev->hDevice, &pipelineLayoutInfo, nullptr, &m_hPipelineLayout);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreatePipelineLayout() failed with error=" << res);
VkGraphicsPipelineCreateInfo pipelineInfo = {};
pipelineInfo.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
pipelineInfo.stageCount = 2;
pipelineInfo.pStages = shaderStages;
pipelineInfo.pVertexInputState = &vertInputInfo;
pipelineInfo.pInputAssemblyState = &inputAssemply;
pipelineInfo.pViewportState = &viewportState;
pipelineInfo.pRasterizationState = &rasterizerInfo;
pipelineInfo.pDepthStencilState = &depthStencilState;
pipelineInfo.pColorBlendState = &blendInfo;
pipelineInfo.pMultisampleState = &multisampling;
pipelineInfo.layout = m_hPipelineLayout;
pipelineInfo.renderPass = m_hRenderPass;
pipelineInfo.subpass = 0;
pipelineInfo.basePipelineHandle = VK_NULL_HANDLE;
res = GetVulkan()->vkCreateGraphicsPipelines(pVulkanDev->hDevice, VK_NULL_HANDLE, 1, &pipelineInfo, nullptr, &m_hPipeline);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreateGraphicsPipelines() failed with error=" << res);
//cleanup
GetVulkan()->vkDestroyShaderModule(pVulkanDev->hDevice, vertModule, nullptr);
GetVulkan()->vkDestroyShaderModule(pVulkanDev->hDevice, fragModule, nullptr);
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::CreateCommands()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
AMF_RESULT resAMF = AMF_OK;
resAMF = CreateVertexBuffers();
CHECK_AMF_ERROR_RETURN(resAMF, L"CreateVertexBuffers() failed");
resAMF = CreateDescriptorSetPool();
CHECK_AMF_ERROR_RETURN(resAMF, L"CreateDescriptorSetPool() failed");
m_CommandBuffers.resize(m_BackBuffers.size());
VkCommandBufferAllocateInfo bufferAllocInfo = {};
bufferAllocInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO;
bufferAllocInfo.commandPool = m_hCommandPool;
bufferAllocInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY;
bufferAllocInfo.commandBufferCount = (uint32_t)m_CommandBuffers.size();
res = GetVulkan()->vkAllocateCommandBuffers(pVulkanDev->hDevice, &bufferAllocInfo, m_CommandBuffers.data());
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkAllocateCommandBuffers() failed with error=" << res);
for (uint32_t i = 0; i < m_CommandBuffers.size(); i++)
{
BackBuffer &backBuffer = m_BackBuffers[i];
VkCommandBuffer commandBuffer = m_CommandBuffers[i];
VkCommandBufferBeginInfo beginInfo = {};
beginInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO;
beginInfo.flags = VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT;
GetVulkan()->vkBeginCommandBuffer(commandBuffer, &beginInfo);
VkClearValue clearColor = { 0.0f, 0.5f, 0.0f, 1.0f };
VkRenderPassBeginInfo renderPassInfo = {};
renderPassInfo.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO;
renderPassInfo.renderPass = m_hRenderPass;
renderPassInfo.framebuffer = backBuffer.m_hFrameBuffer;
renderPassInfo.renderArea.offset = { 0, 0 };
renderPassInfo.renderArea.extent.width = m_SwapChainExtent.width;
renderPassInfo.renderArea.extent.height = m_SwapChainExtent.height;
renderPassInfo.clearValueCount = 1;
renderPassInfo.pClearValues = &clearColor;
GetVulkan()->vkCmdBeginRenderPass(commandBuffer, &renderPassInfo, VK_SUBPASS_CONTENTS_INLINE);
GetVulkan()->vkCmdBindPipeline(commandBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, m_hPipeline);
VkBuffer vertexBuffers[] = { m_VertexBuffer.hBuffer };
VkDeviceSize offsets[] = {0};
GetVulkan()->vkCmdBindVertexBuffers(commandBuffer, 0, 1, vertexBuffers, offsets);
GetVulkan()->vkCmdBindIndexBuffer(commandBuffer, m_IndexBuffer.hBuffer, 0, VK_INDEX_TYPE_UINT32);
GetVulkan()->vkCmdBindDescriptorSets(commandBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, m_hPipelineLayout, 0, 1, &m_hDescriptorSet, 0, nullptr);
GetVulkan()->vkCmdDrawIndexed(commandBuffer, uint32_t(m_IndexBuffer.iSize / sizeof(uint32_t)), 1, 0, 0, 0);
GetVulkan()->vkCmdEndRenderPass(commandBuffer);
res = GetVulkan()->vkEndCommandBuffer(commandBuffer);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkEndCommandBuffer() failed with error=" << res);
}
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::CreateVertexBuffers()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
// Create vertex buffer
Vertex vertexes[] =
{
{ { -1.0f, 1.0f, -1.0f }, { 0.0f, 0.0f, 1.0f, 1.0f } },
{ { 1.0f, 1.0f, -1.0f }, { 0.0f, 1.0f, 0.0f, 1.0f } },
{ { 1.0f, 1.0f, 1.0f }, { 0.0f, 1.0f, 1.0f, 1.0f } },
{ { -1.0f, 1.0f, 1.0f }, { 1.0f, 0.0f, 0.0f, 1.0f } },
{ { -1.0f, -1.0f, -1.0f }, { 1.0f, 0.0f, 1.0f, 1.0f } },
{ { 1.0f, -1.0f, -1.0f }, { 1.0f, 1.0f, 0.0f, 1.0f } },
{ { 1.0f, -1.0f, 1.0f }, { 1.0f, 1.0f, 1.0f, 1.0f } },
{ { -1.0f, -1.0f, 1.0f }, { 0.0f, 0.0f, 0.0f, 1.0f } },
};
// Create index buffer
uint32_t indexes[] =
{ 3,1,0, 2,1,3,
0,5,4, 1,5,0,
3,4,7, 0,4,3,
1,6,5, 2,6,1,
2,7,6, 3,7,2,
6,4,5, 7,4,6,
};
MakeBuffer((void*)vertexes, sizeof(vertexes), VK_BUFFER_USAGE_VERTEX_BUFFER_BIT, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, m_VertexBuffer);
MakeBuffer((void*)indexes, sizeof(indexes), VK_BUFFER_USAGE_INDEX_BUFFER_BIT, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, m_IndexBuffer);
MakeBuffer(NULL, sizeof(ModelView), VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, m_MVPBuffer);
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::CreateDescriptorSetPool()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
VkDescriptorPoolSize poolSize = {};
poolSize.type = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER;
poolSize.descriptorCount = 1;
VkDescriptorPoolSize samplerSize = {};
samplerSize.type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
samplerSize.descriptorCount = 1;
std::vector<VkDescriptorPoolSize> sizes = { poolSize, samplerSize };
VkDescriptorPoolCreateInfo poolCreateInfo = {};
poolCreateInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
poolCreateInfo.poolSizeCount = (uint32_t)sizes.size();
poolCreateInfo.pPoolSizes = sizes.data();
poolCreateInfo.maxSets = 1;
poolCreateInfo.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
res = GetVulkan()->vkCreateDescriptorPool(pVulkanDev->hDevice, &poolCreateInfo, nullptr, &m_hDescriptorPool);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkCreateDescriptorPool() failed with error=" << res);
VkDescriptorSetLayout layouts[] = { m_hUniformLayout };
VkDescriptorSetAllocateInfo allocInfo = {};
allocInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO;
allocInfo.descriptorPool = m_hDescriptorPool;
allocInfo.descriptorSetCount = 1;
allocInfo.pSetLayouts = layouts;
res = GetVulkan()->vkAllocateDescriptorSets(pVulkanDev->hDevice, &allocInfo, &m_hDescriptorSet);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkAllocateDescriptorSets() failed with error=" << res);
VkDescriptorBufferInfo bufferInfo = {};
bufferInfo.buffer = m_MVPBuffer.hBuffer;
bufferInfo.offset = 0;
bufferInfo.range = sizeof(ModelView);
VkWriteDescriptorSet descriptorWrite = {};
descriptorWrite.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET;
descriptorWrite.dstSet = m_hDescriptorSet;
descriptorWrite.dstBinding = 0;
descriptorWrite.dstArrayElement = 0;
descriptorWrite.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER;
descriptorWrite.descriptorCount = 1;
descriptorWrite.pBufferInfo = &bufferInfo;
std::vector<VkWriteDescriptorSet> descriptors = { descriptorWrite };
GetVulkan()->vkUpdateDescriptorSets(pVulkanDev->hDevice, (uint32_t)descriptors.size(), descriptors.data(), 0, nullptr);
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::UpdateMVP()
{
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
amf::Vector Eye ( 0.0f, 1.0f, -5.0f, 0.0f );
amf::Vector At ( 0.0f, 1.0f, 0.0f, 0.0f );
amf::Vector Up ( 0.0f, 1.0f, 0.0f, 0.0f );
amf::Matrix view; view.LookAtLH( Eye, At, Up );
amf::Matrix proj; proj.PerspectiveFovLH( amf::AMF_PI / 2.0f, m_width / (float)m_height, 0.01f, 1000.0f );
amf::Matrix world; world.RotationRollPitchYaw(m_fAnimation, -m_fAnimation, 0);
// Update variables
ModelView mvp = {};
memcpy(mvp.model, world.k, sizeof(mvp.model));
memcpy(mvp.proj, proj.k, sizeof(mvp.proj));
memcpy(mvp.view, view.k, sizeof(mvp.view));
void* bufferData = NULL;
res = GetVulkan()->vkMapMemory(pVulkanDev->hDevice, m_MVPBuffer.hMemory, 0, sizeof(ModelView), 0, &bufferData);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkMapMemory() failed with error=" << res);
memcpy(bufferData, &mvp, sizeof(ModelView));
GetVulkan()->vkUnmapMemory(pVulkanDev->hDevice, m_MVPBuffer.hMemory);
m_fAnimation += amf::AMF_PI *2.0f /240.f;
return AMF_OK;
}
AMF_RESULT VideoRenderVulkan::Render(amf::AMFData** ppData)
{
UpdateMVP();
amf::AMFVulkanDevice* pVulkanDev = (amf::AMFVulkanDevice*)m_hVulkanDev;
VkResult res = VK_INCOMPLETE;
AMF_RESULT resAMF = AMF_OK;
amf_uint32 imageIndex = 0;
resAMF = AcquireBackBuffer(&imageIndex);
CHECK_AMF_ERROR_RETURN(resAMF, L"AcquireBackBuffer() failed");
BackBuffer &backBuffer = m_BackBuffers[imageIndex];
VkPipelineStageFlags waitFlags = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
/*
AMFTraceInfo(AMF_FACILITY, L"+++++++++++++++vkQueueSubmit(GFX ) Start +++++++++++++");
if(backBuffer.m_Surface.Sync.bSubmitted)
{
AMFTraceInfo(AMF_FACILITY, L" Wait: 0x%llu", backBuffer.m_Surface.Sync.hSemaphore);
}
AMFTraceInfo(AMF_FACILITY, L" Signal: 0x%llu", backBuffer.m_Surface.Sync.hSemaphore);
AMFTraceInfo(AMF_FACILITY, L"+++++++++++++++vkQueueSubmit(GFX ) End +++++++++++++");
*/
VkSubmitInfo submitInfo = {};
submitInfo.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO;
if(backBuffer.m_Surface.Sync.hSemaphore != VK_NULL_HANDLE)
{
if(backBuffer.m_Surface.Sync.bSubmitted)
{
submitInfo.waitSemaphoreCount = 1;
submitInfo.pWaitSemaphores = &backBuffer.m_Surface.Sync.hSemaphore;
submitInfo.pWaitDstStageMask = &waitFlags;
}
submitInfo.signalSemaphoreCount = 1;
submitInfo.pSignalSemaphores = &backBuffer.m_Surface.Sync.hSemaphore;
backBuffer.m_Surface.Sync.bSubmitted = true;
}
submitInfo.commandBufferCount = 1;
submitInfo.pCommandBuffers = &m_CommandBuffers[imageIndex];
res = GetVulkan()->vkQueueSubmit(m_hQueuePresent, 1, &submitInfo, NULL);
CHECK_RETURN(res == VK_SUCCESS, AMF_FAIL, L"vkQueueSubmit() failed with error=" << res);
amf::AMFSurfacePtr pSwapChainSurface;
resAMF = SwapChainVulkan::m_pContext->CreateSurfaceFromVulkanNative(&backBuffer.m_Surface, &pSwapChainSurface, NULL);
CHECK_AMF_ERROR_RETURN(resAMF, L"CreateSurfaceFromVulkanNative() failed");
resAMF = pSwapChainSurface->Duplicate(pSwapChainSurface->GetMemoryType(), ppData);
CHECK_AMF_ERROR_RETURN(resAMF, L"Duplicate() failed");
resAMF = Present(imageIndex);
CHECK_AMF_ERROR_RETURN(resAMF, L"Present() failed");
return AMF_OK;
}
| 39.059172
| 217
| 0.750644
|
EwoutH
|
bab510e77201a753e7796048d2f5074e928f339c
| 6,758
|
cc
|
C++
|
device/usb/usb_device_impl.cc
|
Wzzzx/chromium-crosswalk
|
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2
|
2019-01-28T08:09:58.000Z
|
2021-11-15T15:32:10.000Z
|
device/usb/usb_device_impl.cc
|
Wzzzx/chromium-crosswalk
|
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null |
device/usb/usb_device_impl.cc
|
Wzzzx/chromium-crosswalk
|
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 6
|
2020-09-23T08:56:12.000Z
|
2021-11-18T03:40:49.000Z
|
// Copyright 2014 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 "device/usb/usb_device_impl.h"
#include <fcntl.h>
#include <stddef.h>
#include <algorithm>
#include "base/bind.h"
#include "base/location.h"
#include "base/posix/eintr_wrapper.h"
#include "base/sequenced_task_runner.h"
#include "base/single_thread_task_runner.h"
#include "base/stl_util.h"
#include "base/threading/thread_task_runner_handle.h"
#include "build/build_config.h"
#include "components/device_event_log/device_event_log.h"
#include "device/usb/usb_context.h"
#include "device/usb/usb_descriptors.h"
#include "device/usb/usb_device_handle_impl.h"
#include "device/usb/usb_error.h"
#include "third_party/libusb/src/libusb/libusb.h"
namespace device {
namespace {
void ConvertConfigDescriptor(const libusb_config_descriptor* platform_config,
UsbConfigDescriptor* configuration) {
for (size_t i = 0; i < platform_config->bNumInterfaces; ++i) {
const struct libusb_interface* platform_interface =
&platform_config->interface[i];
for (int j = 0; j < platform_interface->num_altsetting; ++j) {
const struct libusb_interface_descriptor* platform_alt_setting =
&platform_interface->altsetting[j];
UsbInterfaceDescriptor interface(
platform_alt_setting->bInterfaceNumber,
platform_alt_setting->bAlternateSetting,
platform_alt_setting->bInterfaceClass,
platform_alt_setting->bInterfaceSubClass,
platform_alt_setting->bInterfaceProtocol);
interface.endpoints.reserve(platform_alt_setting->bNumEndpoints);
for (size_t k = 0; k < platform_alt_setting->bNumEndpoints; ++k) {
const struct libusb_endpoint_descriptor* platform_endpoint =
&platform_alt_setting->endpoint[k];
UsbEndpointDescriptor endpoint(platform_endpoint->bEndpointAddress,
platform_endpoint->bmAttributes,
platform_endpoint->wMaxPacketSize,
platform_endpoint->bInterval);
endpoint.extra_data.assign(
platform_endpoint->extra,
platform_endpoint->extra + platform_endpoint->extra_length);
interface.endpoints.push_back(endpoint);
}
interface.extra_data.assign(
platform_alt_setting->extra,
platform_alt_setting->extra + platform_alt_setting->extra_length);
configuration->interfaces.push_back(interface);
}
}
configuration->extra_data.assign(
platform_config->extra,
platform_config->extra + platform_config->extra_length);
configuration->AssignFirstInterfaceNumbers();
}
} // namespace
UsbDeviceImpl::UsbDeviceImpl(
scoped_refptr<UsbContext> context,
PlatformUsbDevice platform_device,
const libusb_device_descriptor& descriptor,
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner)
: UsbDevice(descriptor.bcdUSB,
descriptor.bDeviceClass,
descriptor.bDeviceSubClass,
descriptor.bDeviceProtocol,
descriptor.idVendor,
descriptor.idProduct,
descriptor.bcdDevice,
base::string16(),
base::string16(),
base::string16()),
platform_device_(platform_device),
context_(context),
task_runner_(base::ThreadTaskRunnerHandle::Get()),
blocking_task_runner_(blocking_task_runner) {
CHECK(platform_device) << "platform_device cannot be NULL";
libusb_ref_device(platform_device);
ReadAllConfigurations();
RefreshActiveConfiguration();
}
UsbDeviceImpl::~UsbDeviceImpl() {
// The destructor must be safe to call from any thread.
libusb_unref_device(platform_device_);
}
void UsbDeviceImpl::Open(const OpenCallback& callback) {
DCHECK(thread_checker_.CalledOnValidThread());
blocking_task_runner_->PostTask(
FROM_HERE,
base::Bind(&UsbDeviceImpl::OpenOnBlockingThread, this, callback));
}
void UsbDeviceImpl::ReadAllConfigurations() {
libusb_device_descriptor device_descriptor;
int rv = libusb_get_device_descriptor(platform_device_, &device_descriptor);
if (rv == LIBUSB_SUCCESS) {
uint8_t num_configurations = device_descriptor.bNumConfigurations;
configurations_.reserve(num_configurations);
for (uint8_t i = 0; i < num_configurations; ++i) {
libusb_config_descriptor* platform_config;
rv = libusb_get_config_descriptor(platform_device_, i, &platform_config);
if (rv != LIBUSB_SUCCESS) {
USB_LOG(EVENT) << "Failed to get config descriptor: "
<< ConvertPlatformUsbErrorToString(rv);
continue;
}
UsbConfigDescriptor config_descriptor(
platform_config->bConfigurationValue,
(platform_config->bmAttributes & 0x40) != 0,
(platform_config->bmAttributes & 0x20) != 0,
platform_config->MaxPower * 2);
ConvertConfigDescriptor(platform_config, &config_descriptor);
configurations_.push_back(config_descriptor);
libusb_free_config_descriptor(platform_config);
}
} else {
USB_LOG(EVENT) << "Failed to get device descriptor: "
<< ConvertPlatformUsbErrorToString(rv);
}
}
void UsbDeviceImpl::RefreshActiveConfiguration() {
libusb_config_descriptor* platform_config;
int rv =
libusb_get_active_config_descriptor(platform_device_, &platform_config);
if (rv != LIBUSB_SUCCESS) {
USB_LOG(EVENT) << "Failed to get config descriptor: "
<< ConvertPlatformUsbErrorToString(rv);
return;
}
ActiveConfigurationChanged(platform_config->bConfigurationValue);
libusb_free_config_descriptor(platform_config);
}
void UsbDeviceImpl::OpenOnBlockingThread(const OpenCallback& callback) {
PlatformUsbDeviceHandle handle;
const int rv = libusb_open(platform_device_, &handle);
if (LIBUSB_SUCCESS == rv) {
task_runner_->PostTask(
FROM_HERE, base::Bind(&UsbDeviceImpl::Opened, this, handle, callback));
} else {
USB_LOG(EVENT) << "Failed to open device: "
<< ConvertPlatformUsbErrorToString(rv);
task_runner_->PostTask(FROM_HERE, base::Bind(callback, nullptr));
}
}
void UsbDeviceImpl::Opened(PlatformUsbDeviceHandle platform_handle,
const OpenCallback& callback) {
DCHECK(thread_checker_.CalledOnValidThread());
scoped_refptr<UsbDeviceHandle> device_handle = new UsbDeviceHandleImpl(
context_, this, platform_handle, blocking_task_runner_);
handles().push_back(device_handle.get());
callback.Run(device_handle);
}
} // namespace device
| 36.928962
| 79
| 0.70509
|
Wzzzx
|
3bf87b4a380c744cc508f4b4ad92fbad263f6720
| 5,393
|
hpp
|
C++
|
sph_yamauchi/run/hdr_bhns.hpp
|
yamauchi1132/Research_Codes
|
c9e104f8592277cb4aa5c479b014c78c702a0939
|
[
"FSFAP"
] | null | null | null |
sph_yamauchi/run/hdr_bhns.hpp
|
yamauchi1132/Research_Codes
|
c9e104f8592277cb4aa5c479b014c78c702a0939
|
[
"FSFAP"
] | null | null | null |
sph_yamauchi/run/hdr_bhns.hpp
|
yamauchi1132/Research_Codes
|
c9e104f8592277cb4aa5c479b014c78c702a0939
|
[
"FSFAP"
] | null | null | null |
class BlackHoleNeutronStar : public SPH {
public:
PS::S64 istar;
PS::F64 eps;
PS::F64 size;
BlackHoleNeutronStar() {
this->id = 0;
this->mass = 0.;
this->pos = 0.;
this->vel = 0.;
this->vel2 = 0.;
this->acc = 0.;
this->uene = 0.;
this->uene2 = 0.;
this->udot = 0.;
this->alph = 0.;
this->alph2 = 0.;
this->adot = 0.;
this->alphu = 0.;
this->alphu2 = 0.;
this->adotu = 0.;
this->diffu = 0.;
this->vol = 0.;
this->ksr = 0.;
this->rs = 0.;
this->dens = 0.;
this->pres = 0.;
this->vsnd = 0.;
this->divv = 0.;
this->rotv = 0.;
this->bswt = 0.;
this->np = 0;
this->grdh = 0.;
this->vsmx = 0.;
this->pot = 0.;
this->acch = 0.;
this->accg1 = 0.;
this->accg2 = 0.;
this->eta = 0.;
this->abar = 0.;
this->zbar = 0.;
this->umin = 0.;
this->istar = 0.;
this->eps = 0.;
this->size = 0.;
}
void copyFromForce(const Gravity & gravity);
void readAscii(FILE * fp) {
using namespace CodeUnit;
fscanf(fp, "%lld%lld%lf%lf%lf%lf%lf%lf%lf%lf",
&this->id, &this->istar, &this->mass,
&this->pos[0], &this->pos[1], &this->pos[2],
&this->vel[0], &this->vel[1], &this->vel[2],
&this->eps);
this->mass *= UnitOfMassInv;
this->pos *= UnitOfLengthInv;
this->vel *= UnitOfVelocityInv;
this->eps *= UnitOfLengthInv;
}
void writeAscii(FILE *fp) const {
using namespace CodeUnit;
PS::F64 tmass = this->mass * UnitOfMass;
PS::F64vec tpos = this->pos * UnitOfLength;
PS::F64vec tvel = this->vel * UnitOfVelocity;
PS::F64vec tacc = this->acc * UnitOfAcceleration;
PS::F64 teps = this->eps * UnitOfLength;
PS::F64 tpot = this->pot * UnitOfEnergy;
fprintf(fp, "%6d %2d %+e", this->id, this->istar, tmass); // 3
fprintf(fp, " %+e %+e %+e", tpos[0], tpos[1], tpos[2]); // 6
fprintf(fp, " %+e %+e %+e", tvel[0], tvel[1], tvel[2]); // 9
fprintf(fp, " %+e %+e %+e", tacc[0], tacc[1], tacc[2]); // 12
fprintf(fp, " %+e %+e", teps, tpot); // 14
if(RP::FlagDamping == 2) {
PS::F64vec tomg = RP::RotationalVelocity * UnitOfTimeInv;
PS::F64vec tvec = tomg ^ tpos;
fprintf(fp, " %+e", tpot - 0.5 * (tvec * tvec)); // 15
}
fprintf(fp, "\n");
}
void readHexa(FILE *fp) {
PS::F64 (*cvt)(PS::U64) = convertU64ToF64;
PS::U64 umass;
PS::U64 upos[3], uvel[3], uacc[3];
PS::U64 ueps;
PS::U64 upot;
// fscanf(fp, "%d %d %llx", &this->id, &this->istar, &umass);
fscanf(fp, "%lld %lld %llx", &this->id, &this->istar, &umass);
fscanf(fp, "%llx %llx %llx", &upos[0], &upos[1], &upos[2]);
fscanf(fp, "%llx %llx %llx", &uvel[0], &uvel[1], &uvel[2]);
fscanf(fp, "%llx %llx %llx", &uacc[0], &uacc[1], &uacc[2]);
fscanf(fp, "%llx %llx", &ueps, &upot);
this->mass = cvt(umass);
this->pos[0] = cvt(upos[0]);
this->pos[1] = cvt(upos[1]);
this->pos[2] = cvt(upos[2]);
this->vel[0] = cvt(uvel[0]);
this->vel[1] = cvt(uvel[1]);
this->vel[2] = cvt(uvel[2]);
this->acc[0] = cvt(uacc[0]);
this->acc[1] = cvt(uacc[1]);
this->acc[2] = cvt(uacc[2]);
this->eps = cvt(ueps);
this->pot = cvt(upot);
}
void writeHexa(FILE *fp) const {
PS::U64 (*cvt)(PS::F64) = convertF64ToU64;
fprintf(fp, "%lld %lld %llx", this->id, this->istar, cvt(this->mass));
fprintf(fp, " %llx %llx %llx", cvt(this->pos[0]), cvt(this->pos[1]), cvt(this->pos[2]));
fprintf(fp, " %llx %llx %llx", cvt(this->vel[0]), cvt(this->vel[1]), cvt(this->vel[2]));
fprintf(fp, " %llx %llx %llx", cvt(this->acc[0]), cvt(this->acc[1]), cvt(this->acc[2]));
fprintf(fp, " %llx %llx", cvt(this->eps), cvt(this->pot));
fprintf(fp, "\n");
}
inline void addAdditionalForceDamping2() {
this->acc -= RP::RotationalVelocity ^ (RP::RotationalVelocity ^ this->pos)
+ 2. * (RP::RotationalVelocity ^ this->vel);
}
PS::F64 calcEnergy() {
return this->mass * (0.5 * this->vel * this->vel + 0.5 * this->pot);
}
PS::F64 calcEnergyDamping2() {
PS::F64vec tvec = RP::RotationalVelocity ^ this->pos;
return this->mass * (0.5 * this->vel * this->vel
+ 0.5 * (this->pot - tvec * tvec));
}
PS::F64vec calcMomentum() {
return this->mass * this->vel;
}
void predict(PS::F64 dt) {
this->pos = this->pos + this->vel * dt + 0.5 * this->acc * dt * dt;
this->vel2 = this->vel + 0.5 * this->acc * dt;
this->vel = this->vel + this->acc * dt;
}
void correct(PS::F64 dt) {
this->vel = this->vel2 + 0.5 * this->acc * dt;
}
void correctDamping2(PS::F64 dt) {
correct(dt);
}
};
| 34.570513
| 96
| 0.457259
|
yamauchi1132
|
3bfdd28a0534865c90cdb5391cdb44593c42ef88
| 1,875
|
cc
|
C++
|
src/sandbox/spawn_strategy/run.cc
|
TheEvilSkeleton/zypak
|
51c8771bc6bb1f68e41663e01c487b414481c57e
|
[
"BSD-3-Clause"
] | null | null | null |
src/sandbox/spawn_strategy/run.cc
|
TheEvilSkeleton/zypak
|
51c8771bc6bb1f68e41663e01c487b414481c57e
|
[
"BSD-3-Clause"
] | null | null | null |
src/sandbox/spawn_strategy/run.cc
|
TheEvilSkeleton/zypak
|
51c8771bc6bb1f68e41663e01c487b414481c57e
|
[
"BSD-3-Clause"
] | null | null | null |
// Copyright 2020 Endless Mobile, Inc.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "run.h"
#include <dirent.h>
#include <sys/prctl.h>
#include <sys/signal.h>
#include <memory>
#include <string>
#include "base/debug.h"
#include "base/fd_map.h"
#include "sandbox/launcher.h"
#include "sandbox/spawn_strategy/spawn_launcher_delegate.h"
namespace zypak::sandbox::spawn_strategy {
namespace {
struct DirDeleter {
void operator()(DIR* dir) {
if (dir != nullptr) {
closedir(dir);
}
}
};
} // namespace
std::optional<FdMap> FindAllFds() {
std::unique_ptr<DIR, DirDeleter> fd_dir(opendir("/proc/self/fd"));
if (!fd_dir) {
Errno() << "Failed to open /proc/self/fd";
return {};
}
std::vector<int> fds;
struct dirent* dp;
while ((dp = readdir(fd_dir.get())) != nullptr) {
int fd = -1;
try {
fd = std::stoi(dp->d_name);
} catch (std::exception& ex) {
Debug() << "Ignoring /proc/self/fd/" << dp->d_name << ": " << ex.what();
}
// Do nothing if the FD was invalid or is our dirfd.
if (fd != -1 && fd != dirfd(fd_dir.get())) {
fds.push_back(fd);
}
}
FdMap fd_map;
for (int fd : fds) {
unique_fd copy(dup(fd));
if (copy.invalid()) {
Errno() << "Failed to dup " << fd;
return {};
}
fd_map.push_back(FdAssignment(std::move(copy), fd));
}
return std::move(fd_map);
}
bool RunSpawnStrategy(std::vector<std::string> args) {
if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0) == -1) {
Errno() << "Warning: prctl(PDEATHSIG) failed";
}
std::optional<FdMap> fd_map = FindAllFds();
if (!fd_map) {
return false;
}
SpawnLauncherDelegate delegate;
Launcher launcher(&delegate);
return launcher.Run(std::move(args), *fd_map);
}
} // namespace zypak::sandbox::spawn_strategy
| 21.306818
| 78
| 0.617067
|
TheEvilSkeleton
|
3bff25cc7c0c9a2ffdd135c72c7abc45515c0660
| 2,365
|
cpp
|
C++
|
gwen/UnitTest/Properties.cpp
|
vonture/GWEN
|
6fdc75cdcc7f1c2a1ecf6c7479a99fad4d1d13e9
|
[
"MIT"
] | 273
|
2015-01-01T23:19:18.000Z
|
2022-03-25T00:38:46.000Z
|
gwen/UnitTest/Properties.cpp
|
McSimp/GWEN
|
ea137166c0483a6e7bd2237cf590919b2177da5d
|
[
"MIT"
] | 4
|
2015-03-15T16:16:58.000Z
|
2022-03-08T03:35:54.000Z
|
gwen/UnitTest/Properties.cpp
|
McSimp/GWEN
|
ea137166c0483a6e7bd2237cf590919b2177da5d
|
[
"MIT"
] | 92
|
2015-01-11T19:51:53.000Z
|
2022-03-17T20:12:12.000Z
|
#include "Gwen/UnitTest/UnitTest.h"
#include "Gwen/Controls/Properties.h"
#include "Gwen/Controls/PropertyTree.h"
#include "Gwen/Controls/Property/ColorSelector.h"
#include "Gwen/Controls/Property/Checkbox.h"
#include "Gwen/Controls/Property/ComboBox.h"
using namespace Gwen;
class Properties : public GUnit
{
public:
GWEN_CONTROL_INLINE( Properties, GUnit )
{
{
Gwen::Controls::Properties* props = new Gwen::Controls::Properties( this );
props->SetBounds( 10, 10, 150, 300 );
{
{
Gwen::Controls::PropertyRow* pRow = props->Add( L"First Name" );
pRow->onChange.Add( this, &Properties::OnFirstNameChanged );
}
props->Add( L"Middle Name" );
props->Add( L"Last Name" );
}
}
{
Gwen::Controls::PropertyTree* ptree = new Gwen::Controls::PropertyTree( this );
ptree->SetBounds( 200, 10, 200, 200 );
{
Gwen::Controls::Properties* props = ptree->Add( L"Item One" );
props->Add( L"Middle Name" );
props->Add( L"Last Name" );
props->Add( L"Four" );
}
{
Gwen::Controls::Properties* props = ptree->Add( L"Item Two" );
props->Add( L"More Items" );
props->Add( L"Checkbox", new Gwen::Controls::Property::Checkbox( props ), L"1" );
props->Add( L"To Fill" );
props->Add( L"ColorSelector", new Gwen::Controls::Property::ColorSelector( props ), L"255 0 0" );
props->Add( L"Out Here" );
// Combo Box Test
{
Gwen::Controls::Property::ComboBox* pCombo = new Gwen::Controls::Property::ComboBox( props );
pCombo->GetComboBox()->AddItem( L"Option One", "one" );
pCombo->GetComboBox()->AddItem( L"Number Two", "two" );
pCombo->GetComboBox()->AddItem( L"Door Three", "three" );
pCombo->GetComboBox()->AddItem( L"Four Legs", "four" );
pCombo->GetComboBox()->AddItem( L"Five Birds", "five" );
Gwen::Controls::PropertyRow* pRow = props->Add( L"ComboBox", pCombo, L"1" );
pRow->onChange.Add( this, &Properties::OnFirstNameChanged );
}
}
ptree->ExpandAll();
}
}
void OnFirstNameChanged( Controls::Base* pControl )
{
Gwen::Controls::PropertyRow* pRow = ( Gwen::Controls::PropertyRow* ) pControl;
UnitPrint( Utility::Format( L"First Name Changed: %ls", pRow->GetProperty()->GetPropertyValue().GetUnicode().c_str() ) );
}
};
DEFINE_UNIT_TEST( Properties, L"Properties" );
| 33.309859
| 124
| 0.632135
|
vonture
|
ce015bfed323d6b04b117624c4c2150f86298386
| 356
|
cpp
|
C++
|
samples/hello_ar_c/app/src/main/gef_abertay/maths/plane.cpp
|
JD1305/arcore-android-sdk
|
ac3661d9dc65a608235d775cf6a916df2329b399
|
[
"Apache-2.0"
] | null | null | null |
samples/hello_ar_c/app/src/main/gef_abertay/maths/plane.cpp
|
JD1305/arcore-android-sdk
|
ac3661d9dc65a608235d775cf6a916df2329b399
|
[
"Apache-2.0"
] | null | null | null |
samples/hello_ar_c/app/src/main/gef_abertay/maths/plane.cpp
|
JD1305/arcore-android-sdk
|
ac3661d9dc65a608235d775cf6a916df2329b399
|
[
"Apache-2.0"
] | null | null | null |
#include <maths/plane.h>
#include <math.h>
namespace gef
{
Plane::Plane()
{
}
Plane::Plane(float a, float b, float c, float d) :
Vector4(a, b, c, d)
{
}
void Plane::Normalise()
{
float distance = sqrtf(a()*a() + b()*b() + c()*c());
set_a(a() / distance);
set_b(b() / distance);
set_c(c() / distance);
set_d(d() / distance);
}
}
| 13.692308
| 54
| 0.547753
|
JD1305
|
ce02d45db7df382b3cc69b04b7aac3cfdf1c89ff
| 4,646
|
cpp
|
C++
|
src/proxy/AsyncOperationProxy.cpp
|
Bhaskers-Blu-Org2/pmod
|
92e3c0ecff25763dcfabab0c1fb86d58e60cbb1a
|
[
"MIT"
] | 19
|
2019-06-16T02:29:24.000Z
|
2022-03-01T23:20:25.000Z
|
src/proxy/AsyncOperationProxy.cpp
|
microsoft/pmod
|
92e3c0ecff25763dcfabab0c1fb86d58e60cbb1a
|
[
"MIT"
] | null | null | null |
src/proxy/AsyncOperationProxy.cpp
|
microsoft/pmod
|
92e3c0ecff25763dcfabab0c1fb86d58e60cbb1a
|
[
"MIT"
] | 5
|
2019-11-03T11:40:25.000Z
|
2020-08-05T14:56:13.000Z
|
/***
* Copyright (C) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
*
* File:AsyncOperationProxy.cpp
****/
#include "pch.h"
#include "AsyncOperationProxy.h"
#include <foundation/library/event_args_base.h>
using namespace pmod;
typedef foundation::library::_EventArgsBase<foundation::ICompletedEventArgs> CCompletedEventArgs;
CAsyncOperationProxy::CAsyncOperationProxy()
{
}
HRESULT CAsyncOperationProxy::on_invoke_internal(IUnknown* pSender,foundation::ICompletedEventArgs* pArgs)
{
UNREFERENCED_PARAMETER(pSender);
UNREFERENCED_PARAMETER(pArgs);
return FireCompletedEvent(pArgs);
}
STDMETHODIMP CAsyncOperationProxy::GetResult(UINT32 timeout, IInspectable **ppResult)
{
IFR(VerifyModelSource());
foundation::InspectablePtr result;
IFR(m_spObjectSource->GetResult(timeout,result.GetAddressOf()));
if(result != nullptr)
{
IFR(ToProxyValue(result));
}
return result.CopyTo(ppResult);
}
STDMETHODIMP CAsyncOperationProxy::GetError(HRESULT* hResult)
{
IFR(VerifyModelSource());
return m_spObjectSource->GetError(hResult);
}
STDMETHODIMP CAsyncOperationProxy::GetStatus(foundation::ResultStatus *status)
{
IFR(VerifyModelSource());
return m_spObjectSource->GetStatus(status);
}
HRESULT CAsyncOperationProxy::PerformFireCompletedEventArgs(
_In_ foundation::library::IFireEventHandlerContainer *pEventHandlerContainer,
foundation::ICompletedEventArgs *pEventArgs)
{
return FireEventInternal(pEventHandlerContainer,pEventArgs);
}
HRESULT CAsyncOperationProxy::FireCompletedEvent(foundation::ICompletedEventArgs *pEventArgs)
{
IFR(FireEventSupportInternal(
&CAsyncOperationProxy::PerformFireCompletedEventArgs,
pEventArgs));
return S_OK;
}
HRESULT CAsyncOperationProxy::QueryInterfaceImpl(REFIID iid, IUnknown **ppInterface)
{
HRESULT hr = S_OK;
if (iid == foundation::IAsyncOperationBase::GetIID())
{
*ppInterface = static_cast<foundation::IAsyncOperationBase *>(this);
}
else
{
hr = _AsyncOperationModelProxyBaseType::QueryInterfaceImpl(iid, ppInterface);
}
return hr;
}
HRESULT CAsyncOperationProxy::DisconnectFromSource(foundation::IInspectable **ppSourceInfo)
{
foundation::ResultStatus status;
m_spObjectSource->GetStatus(&status);
if (status == foundation::ResultStatus::Started)
{
return foundation::pv_util::CreateUInt32Value((UINT32)status, ppSourceInfo);
}
return S_OK;
}
HRESULT CAsyncOperationProxy::ConnectToSource(
foundation::IInspectable *pSourceInfo,
_SyncSourceInfo_Vector_Type& syncSourceInfo)
{
foundation::ResultStatus status;
m_spObjectSource->GetStatus(&status);
if (status != foundation::ResultStatus::Started)
{
foundation::ComPtr<foundation::ICompletedEventArgs> spCompletedEventArgs;
IFR_ASSERT(foundation::ctl::ComInspectableObject<CCompletedEventArgs>::CreateInstance(spCompletedEventArgs.GetAddressOf()));
syncSourceInfo.push_back(std::make_pair(
static_cast<IBaseObjectProxyInternal *>(this),
spCompletedEventArgs.Get()));
}
return S_OK;
}
STDMETHODIMP CAsyncOperationProxy::ResyncSource(
IInspectable *pSource,
_SyncSourceInfo_Vector_Type& syncSourceInfo)
{
IFR_ASSERT(_AsyncOperationModelProxyBaseType::ResyncSource(pSource, syncSourceInfo));
foundation_assert(pSource == nullptr);
// we will set the completion
foundation::ComPtr<foundation::ICompletedEventArgs> spCompletedEventArgs;
IFR_ASSERT(foundation::ctl::ComInspectableObject<CCompletedEventArgs>::CreateInstance(spCompletedEventArgs.GetAddressOf()));
syncSourceInfo.push_back(std::make_pair(
static_cast<IBaseObjectProxyInternal *>(this),
spCompletedEventArgs.Get()));
return S_OK;
}
STDMETHODIMP CAsyncOperationProxy::FireResyncEvent(foundation::IUnknown *pEventArg)
{
foundation::ComPtr<foundation::ICompletedEventArgs> spCompletedEventArgs;
IFR_ASSERT(foundation::QueryInterface(pEventArg, spCompletedEventArgs.GetAddressOf()));
LogSourceEvent(
foundation::LoggingLevel::Info,
(UINT32)proxy::BaseProxy_Category::ResyncEvent,
spCompletedEventArgs.Get());
return this->FireCompletedEvent(spCompletedEventArgs);
}
foundation::ILogCategory *CAsyncOperationProxy::GetLogCategory()
{
return this->m_pProxyObjectFactory->GetAsyncOperationdProxyCategory();
}
| 32.48951
| 133
| 0.736332
|
Bhaskers-Blu-Org2
|
ce0531a1904b1ca49276fc757ac8ef1b73ccb9df
| 13,328
|
cpp
|
C++
|
arl-hourglass/arl-hourglass/MargolusNeighborhoodSimulatorOpenCL.cpp
|
bernhardrieder/Hourglass-Simulation
|
737c756fc283859bb89d9c670b67a0be7aa979d6
|
[
"Unlicense"
] | null | null | null |
arl-hourglass/arl-hourglass/MargolusNeighborhoodSimulatorOpenCL.cpp
|
bernhardrieder/Hourglass-Simulation
|
737c756fc283859bb89d9c670b67a0be7aa979d6
|
[
"Unlicense"
] | null | null | null |
arl-hourglass/arl-hourglass/MargolusNeighborhoodSimulatorOpenCL.cpp
|
bernhardrieder/Hourglass-Simulation
|
737c756fc283859bb89d9c670b67a0be7aa979d6
|
[
"Unlicense"
] | null | null | null |
#include "MargolusNeighborhoodSimulatorOpenCL.h"
#include <iostream>
#include <fstream>
inline int randomNumber(int low, int high)
{
return low + rand() / (RAND_MAX / (high - low));
}
MargolusNeighborhoodSimulatorOpenCL::MargolusNeighborhoodSimulatorOpenCL(bool useGpu, int platformId, int deviceId)
{
srand(static_cast<unsigned int>(time(nullptr)));
getDevice(useGpu, platformId, deviceId);
createContext(m_device);
createProgram(m_context, m_sourceCodeFile);
createCommandQueue(m_context, m_device);
}
MargolusNeighborhoodSimulatorOpenCL::~MargolusNeighborhoodSimulatorOpenCL()
{
}
void MargolusNeighborhoodSimulatorOpenCL::Initialize(const sf::Vector2u& imgSize, const char ruleLUT[16], const bool changesAvailableLUT[16], const sf::Color& particleColor, const sf::Color& obstacleColor, const sf::Color& idleColor)
{
m_dataSize = imgSize;
m_sizeOfImage = imgSize.x * imgSize.y * sizeof(sf::Color);
createKernel(imgSize, ruleLUT, changesAvailableLUT, particleColor, obstacleColor, idleColor);
}
void MargolusNeighborhoodSimulatorOpenCL::ApplyMargolusRules(sf::Uint8* pixelptr, const sf::Vector2u& imgSize, const unsigned& pixelOffset, const bool& refreshImageBuffer)
{
if (imgSize != m_dataSize)
{
std::cerr << "YOU SHOULD NOT CHANGE THE IMAGE SIZE - BREAKS THE CODE!\n OPENCL WILL NOT PERFORM!";
return;
}
if (refreshImageBuffer)
handle_clerror(m_queue.enqueueWriteBuffer(
m_bufferData, // which buffer to write to
CL_TRUE, // block until command is complete
0, // offset
m_sizeOfImage, // size of write
pixelptr)); // pointer to input
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferPixelOffset, CL_TRUE, 0, sizeof(unsigned), &pixelOffset));
for(int i = 0; i < 2; ++i)
m_randomNumbers[i] = randomNumber(0, 10000);
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferRandomNumbers, CL_TRUE, 0, sizeof(int)* 2, m_randomNumbers));
cl::Event event;
handle_clerror(m_queue.enqueueNDRangeKernel(m_kernelSimpleGeneration, cl::NullRange, m_globalRange, m_localRange, NULL, &event));
event.wait();
handle_clerror(m_queue.enqueueReadBuffer(m_bufferData, CL_TRUE, 0, m_sizeOfImage, pixelptr, NULL, &event));
event.wait();
}
void MargolusNeighborhoodSimulatorOpenCL::createKernel(const sf::Vector2u& imgSize, const char ruleLUT[16], const bool changesAvailableLUT[16], const sf::Color& particleColor, const sf::Color& obstacleColor, const sf::Color& idleColor)
{
m_globalRange = cl::NDRange(imgSize.x/2);
m_localRange = cl::NDRange(imgSize.x / m_deviceMaxWorkGroupSize + 1);
m_bufferData = cl::Buffer(m_context, CL_MEM_READ_WRITE, m_sizeOfImage * sizeof(unsigned char));
m_bufferDimensionX = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(int));
m_bufferDimensionY = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(int));
m_bufferPixelOffset = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(unsigned int));
m_bufferParticleColor = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(unsigned char) * 4);
m_bufferObstacleColor = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(unsigned char) * 4);
m_bufferIdleColor = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(unsigned char) * 4);
m_bufferRulesLUT = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(char) * 16);
m_bufferChangesAvailableLUT = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(bool) * 16);
m_bufferRandomNumbers = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(int) * 2);
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferDimensionX, CL_TRUE, 0, sizeof(int), &m_dataSize.x));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferDimensionY, CL_TRUE, 0, sizeof(int), &m_dataSize.y));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferParticleColor, CL_TRUE, 0, sizeof(sf::Color), &particleColor));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferObstacleColor, CL_TRUE, 0, sizeof(sf::Color), &obstacleColor));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferIdleColor, CL_TRUE, 0, sizeof(sf::Color), &idleColor));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferRulesLUT, CL_TRUE, 0, sizeof(char) * 16, ruleLUT));
handle_clerror(m_queue.enqueueWriteBuffer(m_bufferChangesAvailableLUT, CL_TRUE, 0, sizeof(bool) * 16, changesAvailableLUT));
m_kernelSimpleGeneration = createKernel("simple_iteration");
handle_clerror(m_kernelSimpleGeneration.setArg(0, m_bufferData));
handle_clerror(m_kernelSimpleGeneration.setArg(1, m_bufferPixelOffset));
handle_clerror(m_kernelSimpleGeneration.setArg(2, m_bufferDimensionX));
handle_clerror(m_kernelSimpleGeneration.setArg(3, m_bufferDimensionY));
handle_clerror(m_kernelSimpleGeneration.setArg(4, m_bufferParticleColor));
handle_clerror(m_kernelSimpleGeneration.setArg(5, m_bufferObstacleColor));
handle_clerror(m_kernelSimpleGeneration.setArg(6, m_bufferIdleColor));
handle_clerror(m_kernelSimpleGeneration.setArg(7, m_bufferRulesLUT));
handle_clerror(m_kernelSimpleGeneration.setArg(8, m_bufferChangesAvailableLUT));
handle_clerror(m_kernelSimpleGeneration.setArg(9, m_bufferRandomNumbers));
}
std::vector<cl::Platform> MargolusNeighborhoodSimulatorOpenCL::getPlatforms() const
{
std::vector<cl::Platform> platforms;
handle_clerror(cl::Platform::get(&platforms));
return platforms;
}
void MargolusNeighborhoodSimulatorOpenCL::getDevice(bool useGpu, int platformId, int deviceId)
{
if (platformId == -1 || deviceId == -1)
m_device = getDevice(getPlatforms(), useGpu ? CL_DEVICE_TYPE_GPU : CL_DEVICE_TYPE_CPU);
else if (platformId != -1 && deviceId != -1)
m_device = getDevice(getPlatforms(), platformId, deviceId);
else
handle_clerror(CL_INVALID_DEVICE);
//debugDeviceOutput(m_device);
m_deviceMaxWorkGroupSize = m_device.getInfo <CL_DEVICE_MAX_WORK_GROUP_SIZE>();
}
void MargolusNeighborhoodSimulatorOpenCL::createContext(const cl::Device& device)
{
//cl_context_properties properties[] = { CL_CONTEXT_PLATFORM, (cl_context_properties)(m_usedPlatform)(), 0 };
//m_context = cl::Context(CL_DEVICE_TYPE_GPU, properties);
m_context = cl::Context(device);
}
void MargolusNeighborhoodSimulatorOpenCL::createProgram(const cl::Context& context, const std::string& sourceCodeFile)
{
std::ifstream sourceFile(sourceCodeFile);
if (!sourceFile)
{
std::cerr << "MargolusNeighborhoodSimulatorOpenCL Error: kernel source file " << sourceCodeFile << " not found!" << std::endl;
handle_clerror(CL_INVALID_KERNEL);
}
std::string sourceCode(std::istreambuf_iterator<char>(sourceFile), (std::istreambuf_iterator<char>()));
cl::Program::Sources source(1, std::make_pair(sourceCode.c_str(), sourceCode.length() + 1));
m_program = cl::Program(context, source);
handle_clerror(m_program.build(context.getInfo<CL_CONTEXT_DEVICES>()));
}
void MargolusNeighborhoodSimulatorOpenCL::createCommandQueue(const cl::Context& context, const cl::Device& device)
{
int err;
m_queue = cl::CommandQueue(context, device, 0, &err);
handle_clerror(err);
}
cl::Device MargolusNeighborhoodSimulatorOpenCL::getDevice(const std::vector<cl::Platform>& platforms, int platformId, int deviceId)
{
if (platformId >= platforms.size())
handle_clerror(CL_INVALID_PLATFORM);
auto platform = platforms[platformId];
std::vector<cl::Device> devices;
handle_clerror(platform.getDevices(CL_DEVICE_TYPE_ALL, &devices));
if (deviceId >= devices.size())
handle_clerror(CL_INVALID_DEVICE);
m_usedPlatform = platform;
return devices[deviceId];
}
cl::Device MargolusNeighborhoodSimulatorOpenCL::getDevice(const std::vector<cl::Platform>& platforms, int cl_device_type)
{
for (auto platform : platforms)
{
int err;
std::vector<cl::Device> devices;
err = platform.getDevices(cl_device_type, &devices);
if (devices.size() == 0) continue;
handle_clerror(err);
m_usedPlatform = platform;
return devices[0];
}
handle_clerror(CL_INVALID_DEVICE);
return{};
}
void MargolusNeighborhoodSimulatorOpenCL::debugDeviceOutput(const cl::Device& device)
{
int err;
auto vendor = device.getInfo<CL_DEVICE_VENDOR>(&err);
handle_clerror(err);
auto version = device.getInfo<CL_DEVICE_VERSION>(&err);
handle_clerror(err);
auto deviceName = device.getInfo<CL_DEVICE_NAME>(&err);
handle_clerror(err);
std::cout << "---- DEVICE ----" << std::endl;
std::cout << "Vendor: " << vendor << std::endl;
std::cout << "Version: " << version << std::endl;
std::cout << "Name: " << deviceName << std::endl;
}
cl::Kernel MargolusNeighborhoodSimulatorOpenCL::createKernel(const std::string& functionName) const
{
int err;
cl::Kernel kernel = cl::Kernel(m_program, functionName.c_str(), &err);
handle_clerror(err);
return kernel;
}
std::string MargolusNeighborhoodSimulatorOpenCL::cl_errorstring(cl_int err)
{
switch (err) {
case CL_SUCCESS: return std::string("Success");
case CL_DEVICE_NOT_FOUND: return std::string("Device not found");
case CL_DEVICE_NOT_AVAILABLE: return std::string("Device not available");
case CL_COMPILER_NOT_AVAILABLE: return std::string("Compiler not available");
case CL_MEM_OBJECT_ALLOCATION_FAILURE: return std::string("Memory object allocation failure");
case CL_OUT_OF_RESOURCES: return std::string("Out of resources");
case CL_OUT_OF_HOST_MEMORY: return std::string("Out of host memory");
case CL_PROFILING_INFO_NOT_AVAILABLE: return std::string("Profiling information not available");
case CL_MEM_COPY_OVERLAP: return std::string("Memory copy overlap");
case CL_IMAGE_FORMAT_MISMATCH: return std::string("Image format mismatch");
case CL_IMAGE_FORMAT_NOT_SUPPORTED: return std::string("Image format not supported");
case CL_BUILD_PROGRAM_FAILURE: return std::string("Program build failure");
case CL_MAP_FAILURE: return std::string("Map failure");
case CL_MISALIGNED_SUB_BUFFER_OFFSET: return std::string("Misaligned sub buffer offset");
case CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST: return std::string("Exec status error for events in wait list");
case CL_INVALID_VALUE: return std::string("Invalid value");
case CL_INVALID_DEVICE_TYPE: return std::string("Invalid device type");
case CL_INVALID_PLATFORM: return std::string("Invalid platform");
case CL_INVALID_DEVICE: return std::string("Invalid device");
case CL_INVALID_CONTEXT: return std::string("Invalid context");
case CL_INVALID_QUEUE_PROPERTIES: return std::string("Invalid queue properties");
case CL_INVALID_COMMAND_QUEUE: return std::string("Invalid command queue");
case CL_INVALID_HOST_PTR: return std::string("Invalid host pointer");
case CL_INVALID_MEM_OBJECT: return std::string("Invalid memory object");
case CL_INVALID_IMAGE_FORMAT_DESCRIPTOR: return std::string("Invalid image format descriptor");
case CL_INVALID_IMAGE_SIZE: return std::string("Invalid image size");
case CL_INVALID_SAMPLER: return std::string("Invalid sampler");
case CL_INVALID_BINARY: return std::string("Invalid binary");
case CL_INVALID_BUILD_OPTIONS: return std::string("Invalid build options");
case CL_INVALID_PROGRAM: return std::string("Invalid program");
case CL_INVALID_PROGRAM_EXECUTABLE: return std::string("Invalid program executable");
case CL_INVALID_KERNEL_NAME: return std::string("Invalid kernel name");
case CL_INVALID_KERNEL_DEFINITION: return std::string("Invalid kernel definition");
case CL_INVALID_KERNEL: return std::string("Invalid kernel");
case CL_INVALID_ARG_INDEX: return std::string("Invalid argument index");
case CL_INVALID_ARG_VALUE: return std::string("Invalid argument value");
case CL_INVALID_ARG_SIZE: return std::string("Invalid argument size");
case CL_INVALID_KERNEL_ARGS: return std::string("Invalid kernel arguments");
case CL_INVALID_WORK_DIMENSION: return std::string("Invalid work dimension");
case CL_INVALID_WORK_GROUP_SIZE: return std::string("Invalid work group size");
case CL_INVALID_WORK_ITEM_SIZE: return std::string("Invalid work item size");
case CL_INVALID_GLOBAL_OFFSET: return std::string("Invalid global offset");
case CL_INVALID_EVENT_WAIT_LIST: return std::string("Invalid event wait list");
case CL_INVALID_EVENT: return std::string("Invalid event");
case CL_INVALID_OPERATION: return std::string("Invalid operation");
case CL_INVALID_GL_OBJECT: return std::string("Invalid OpenGL object");
case CL_INVALID_BUFFER_SIZE: return std::string("Invalid buffer size");
case CL_INVALID_MIP_LEVEL: return std::string("Invalid mip-map level");
case CL_INVALID_GLOBAL_WORK_SIZE: return std::string("Invalid gloal work size");
case CL_INVALID_PROPERTY: return std::string("Invalid property");
default: return std::string("Unknown error code");
}
}
void MargolusNeighborhoodSimulatorOpenCL::handle_clerror(cl_int err)
{
if (err != CL_SUCCESS) {
std::cerr << "MargolusNeighborhoodSimulatorOpenCL Error: " << cl_errorstring(err) << std::string(".") << std::endl;
getchar();
exit(EXIT_FAILURE);
}
}
| 49.180812
| 235
| 0.742047
|
bernhardrieder
|
ce0642bd0413b578bf56cc463b50c3903b1b68f7
| 9,456
|
cpp
|
C++
|
ngraph/test/backend/split.in.cpp
|
artyomtugaryov/openvino
|
f2c2636bb52ff6a6c6d2b4dba89fad666a66c96f
|
[
"Apache-2.0"
] | null | null | null |
ngraph/test/backend/split.in.cpp
|
artyomtugaryov/openvino
|
f2c2636bb52ff6a6c6d2b4dba89fad666a66c96f
|
[
"Apache-2.0"
] | null | null | null |
ngraph/test/backend/split.in.cpp
|
artyomtugaryov/openvino
|
f2c2636bb52ff6a6c6d2b4dba89fad666a66c96f
|
[
"Apache-2.0"
] | null | null | null |
//*****************************************************************************
// Copyright 2017-2020 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
#include "gtest/gtest.h"
#include "ngraph/ngraph.hpp"
#include "util/engine/test_engines.hpp"
#include "util/test_case.hpp"
#include "util/test_control.hpp"
using namespace std;
using namespace ngraph;
static string s_manifest = "${MANIFEST}";
using TestEngine = test::ENGINE_CLASS_NAME(${BACKEND_NAME});
NGRAPH_TEST(${BACKEND_NAME}, split_1d)
{
const auto data = make_shared<op::Parameter>(element::Type_t::i32, Shape{6});
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {0});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 3);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
test_case.add_input<int32_t>({1, 2, 3, 4, 5, 6});
test_case.add_expected_output<int32_t>(Shape{2}, {1, 2});
test_case.add_expected_output<int32_t>(Shape{2}, {3, 4});
test_case.add_expected_output<int32_t>(Shape{2}, {5, 6});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_2d_axis_0)
{
Shape shape{6, 2};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {0});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 2);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{3, 2}, {0, 1, 2, 3, 4, 5});
test_case.add_expected_output<float>(Shape{3, 2}, {6, 7, 8, 9, 10, 11});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_2d_axis_1)
{
Shape shape{6, 2};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {1});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 2);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{6, 1}, {0, 2, 4, 6, 8, 10});
test_case.add_expected_output<float>(Shape{6, 1}, {1, 3, 5, 7, 9, 11});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_3d_axis_0)
{
Shape shape{2, 2, 3};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {0});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 2);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{1, 2, 3}, {0, 1, 2, 3, 4, 5});
test_case.add_expected_output<float>(Shape{1, 2, 3}, {6, 7, 8, 9, 10, 11});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_3d_axis_1)
{
Shape shape{2, 8, 2};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {1});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 4);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{2, 2, 2}, {0, 1, 2, 3, 16, 17, 18, 19});
test_case.add_expected_output<float>(Shape{2, 2, 2}, {4, 5, 6, 7, 20, 21, 22, 23});
test_case.add_expected_output<float>(Shape{2, 2, 2}, {8, 9, 10, 11, 24, 25, 26, 27});
test_case.add_expected_output<float>(Shape{2, 2, 2}, {12, 13, 14, 15, 28, 29, 30, 31});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_3d_axis_2)
{
Shape shape{2, 1, 6};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {2});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 2);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{2, 1, 3}, {0, 1, 2, 6, 7, 8});
test_case.add_expected_output<float>(Shape{2, 1, 3}, {3, 4, 5, 9, 10, 11});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_4d_axis_0)
{
Shape shape{3, 2, 3, 1};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {0});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 3);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{1, 2, 3, 1}, {0, 1, 2, 3, 4, 5});
test_case.add_expected_output<float>(Shape{1, 2, 3, 1}, {6, 7, 8, 9, 10, 11});
test_case.add_expected_output<float>(Shape{1, 2, 3, 1}, {12, 13, 14, 15, 16, 17});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_4d_axis_1)
{
Shape shape{2, 8, 2, 2};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {1});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 4);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{2, 2, 2, 2},
{0, 1, 2, 3, 4, 5, 6, 7, 32, 33, 34, 35, 36, 37, 38, 39});
test_case.add_expected_output<float>(
Shape{2, 2, 2, 2}, {8, 9, 10, 11, 12, 13, 14, 15, 40, 41, 42, 43, 44, 45, 46, 47});
test_case.add_expected_output<float>(
Shape{2, 2, 2, 2}, {16, 17, 18, 19, 20, 21, 22, 23, 48, 49, 50, 51, 52, 53, 54, 55});
test_case.add_expected_output<float>(
Shape{2, 2, 2, 2}, {24, 25, 26, 27, 28, 29, 30, 31, 56, 57, 58, 59, 60, 61, 62, 63});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_4d_axis_2)
{
Shape shape{2, 1, 6, 2};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {2});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 3);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {0, 1, 2, 3, 12, 13, 14, 15});
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {4, 5, 6, 7, 16, 17, 18, 19});
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {8, 9, 10, 11, 20, 21, 22, 23});
test_case.run();
}
NGRAPH_TEST(${BACKEND_NAME}, split_4d_axis_3)
{
Shape shape{2, 1, 2, 6};
const auto data = make_shared<op::Parameter>(element::Type_t::f32, shape);
const auto axis = op::Constant::create(element::Type_t::i64, Shape{}, {3});
const auto tested_op = make_shared<op::v1::Split>(data, axis, 3);
const auto function = make_shared<Function>(tested_op, ParameterVector{data});
auto test_case = test::TestCase<TestEngine>(function);
std::vector<float> in(shape_size(shape));
std::iota(in.begin(), in.end(), 0);
test_case.add_input<float>(in);
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {0, 1, 6, 7, 12, 13, 18, 19});
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {2, 3, 8, 9, 14, 15, 20, 21});
test_case.add_expected_output<float>(Shape{2, 1, 2, 2}, {4, 5, 10, 11, 16, 17, 22, 23});
test_case.run();
}
| 39.898734
| 99
| 0.646785
|
artyomtugaryov
|
ce0698b2a75fcf88040ce21cb13cafcedc0393a0
| 668
|
hpp
|
C++
|
ReactNativeFrontend/ios/Pods/boost/boost/math/tools/tuple.hpp
|
Harshitha91/Tmdb-react-native-node
|
e06e3f25a7ee6946ef07a1f524fdf62e48424293
|
[
"Apache-2.0"
] | 310
|
2017-02-02T09:14:48.000Z
|
2022-03-21T06:50:11.000Z
|
ReactNativeFrontend/ios/Pods/boost/boost/math/tools/tuple.hpp
|
Harshitha91/Tmdb-react-native-node
|
e06e3f25a7ee6946ef07a1f524fdf62e48424293
|
[
"Apache-2.0"
] | 61
|
2017-01-22T20:35:25.000Z
|
2019-12-13T14:48:46.000Z
|
ReactNativeFrontend/ios/Pods/boost/boost/math/tools/tuple.hpp
|
Harshitha91/Tmdb-react-native-node
|
e06e3f25a7ee6946ef07a1f524fdf62e48424293
|
[
"Apache-2.0"
] | 54
|
2017-03-02T06:55:57.000Z
|
2022-02-21T01:12:20.000Z
|
// (C) Copyright John Maddock 2010.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_MATH_TUPLE_HPP_INCLUDED
#define BOOST_MATH_TUPLE_HPP_INCLUDED
#include <boost/config.hpp>
#include <boost/math/tools/cxx03_warn.hpp>
#include <tuple>
namespace boost{ namespace math{
using ::std::tuple;
// [6.1.3.2] Tuple creation functions
using ::std::ignore;
using ::std::make_tuple;
using ::std::tie;
using ::std::get;
// [6.1.3.3] Tuple helper classes
using ::std::tuple_size;
using ::std::tuple_element;
}}
#endif
| 23.857143
| 68
| 0.736527
|
Harshitha91
|
ce12fcf0d052224457f167be80fba405b4bbb754
| 1,101
|
cpp
|
C++
|
src/core/cpp/model/RevoluteJoint.cpp
|
NeroGames/Nero-Game-Engine
|
8543b8bb142738aa28bc20e929b342d3e6df066e
|
[
"MIT"
] | 26
|
2020-09-02T18:14:36.000Z
|
2022-02-08T18:28:36.000Z
|
src/core/cpp/model/RevoluteJoint.cpp
|
sk-landry/Nero-Game-Engine
|
8543b8bb142738aa28bc20e929b342d3e6df066e
|
[
"MIT"
] | 14
|
2020-08-30T01:37:04.000Z
|
2021-07-19T20:47:29.000Z
|
src/core/cpp/model/RevoluteJoint.cpp
|
sk-landry/Nero-Game-Engine
|
8543b8bb142738aa28bc20e929b342d3e6df066e
|
[
"MIT"
] | 6
|
2020-09-02T18:14:57.000Z
|
2021-12-31T00:32:09.000Z
|
////////////////////////////////////////////////////////////
// Nero Game Engine
// Copyright (c) 2016-2020 Sanou A. K. Landry
////////////////////////////////////////////////////////////
///////////////////////////HEADERS//////////////////////////
//NERO
#include <Nero/core/cpp/model/RevoluteJoint.h>
////////////////////////////////////////////////////////////
namespace nero
{
RevoluteJoint::RevoluteJoint():
PhysicJoint()
,m_Joint(nullptr)
{
m_Type = PhysicJoint::Revolute_Joint;
}
RevoluteJoint::~RevoluteJoint()
{
//dtor
}
void RevoluteJoint::setJoint(b2RevoluteJoint* joint)
{
m_Joint = joint;
}
b2RevoluteJoint* RevoluteJoint::getJoint() const
{
return m_Joint;
}
RevoluteJoint::Ptr RevoluteJoint::Cast(PhysicJoint::Ptr joint)
{
if(joint->getType() != PhysicJoint::Revolute_Joint)
return nullptr;
return std::static_pointer_cast<RevoluteJoint>(joint);
}
b2Joint* RevoluteJoint::getGenericJoint()
{
return (b2Joint*)m_Joint;
}
}
| 23.934783
| 66
| 0.485014
|
NeroGames
|
ce1581f1c59cb506b4fce2356868d2ea144f4c9b
| 7,768
|
cpp
|
C++
|
tools/hvm-bench/interp-dispatch-bench.cpp
|
exced/hermes
|
c53fbe3f27677d5cda2a0c5b4e79e429eb5cd9e6
|
[
"MIT"
] | 1
|
2020-08-28T03:07:10.000Z
|
2020-08-28T03:07:10.000Z
|
tools/hvm-bench/interp-dispatch-bench.cpp
|
exced/hermes
|
c53fbe3f27677d5cda2a0c5b4e79e429eb5cd9e6
|
[
"MIT"
] | null | null | null |
tools/hvm-bench/interp-dispatch-bench.cpp
|
exced/hermes
|
c53fbe3f27677d5cda2a0c5b4e79e429eb5cd9e6
|
[
"MIT"
] | null | null | null |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
//===----------------------------------------------------------------------===//
/// \file
/// This benchmark is intended to measure the pure instruction dispatch
/// performance of the interpreter.
///
/// The benchmark consists of hand-optimized bytecode instructions for
/// calculating factorial multiple times in a loop. It uses only simple
/// comparison and arithmetic instructions - there are no object conversions,
/// property access, or anything at all that would cause a slow path call
/// outside of the interpreter.
///
/// It eliminates the effects of the compiler (since it is hand optimized),
/// expensive instruction implementation (no calls, property access, etc),
/// d-cache size (it only uses a few registers), exceptions, heap allocation and
/// garbage collector, practically anything that doesn't have directly to do
/// with instruction dispatch.
///
/// So, it is not representative *at all* of the application performance of the
/// VM, but is very useful to derive insights about the one aspect it covers.
///
/// If it is slower than other interpreters on the same JavaScript code, under
/// these ideal circumstances and given the "competition" didn't hand optimize
/// their bytecodes, then we clearly have important low level performance work
/// to do in the interpreter.
///
/// If, on the other hand, it is faster, then we can focus on higher level
/// optimizations.
//===----------------------------------------------------------------------===//
#include "hermes/BCGen/HBC/BytecodeGenerator.h"
#include "hermes/VM/CodeBlock.h"
#include "hermes/VM/Domain.h"
#include "hermes/VM/Operations.h"
#include "hermes/VM/Runtime.h"
#include "hermes/VM/SmallXString.h"
#include "hermes/VM/StringView.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/raw_ostream.h"
#include <map>
using namespace hermes::vm;
using namespace hermes::hbc;
namespace {
Handle<StringPrimitive>
benchmark(Runtime *runtime, double loopc, double factc) {
auto domain = toHandle(runtime, Domain::create(runtime));
auto *runtimeModule = RuntimeModule::createUninitialized(runtime, domain);
std::map<int, int> labels{};
std::map<int, int> jmps{};
#define LABEL(L, emit) \
do { \
auto ofs = emit; \
if (pass == 0) \
labels[L] = ofs; \
} while (0)
#define JCOND(name, L, op2, op3) \
do { \
int line = __LINE__; \
if (pass == 0) \
jmps[line] = name(0, op2, op3); \
else \
name(labels[L] - jmps[line], op2, op3); \
} while (0);
#define L(x) x
/*
LoadParam r0, 1 ; load loopc
LoadConstDouble r1, 0 ; res = 0
LoadConstDouble r4, 1 ; constant 1 for reuse
LoadConstDouble r5, 0 ; constant 0 for reuse
ToNumber r0, r0
SubN r0, r0, r4 ; --loopc
JLessN L1, r0, r5 ; if loopc < 0 goto L1
L2:
LoadParam r2, 2 ; n = factc
Mov r3, r2 ; fact = n
ToNumber r2, r2
SubN r2, r2, r4 ; --n
JLessEqualN L3, r2, r4 ; if n <= 1 goto L3
L4:
Mul r3, r3, r2 ; fact *= n
SubN r2, r2, r4 ; --n
JGreaterN L4, r4, r2, r4 ; if n > 1 goto L4
L3:
AddN r1, r1, r3 ; res += fact
SubN r0, r0, r4 ; --loopc
JGreaterEqualN L2, r0, r5 ; if loopc >= 0 goto L2
L1:
ToString r1, r1
Ret r1
*/
const unsigned FRAME_SIZE = 9;
auto emit = [&](BytecodeFunctionGenerator &builder, int pass) {
builder.emitLoadParam(0, 1);
builder.emitLoadConstDoubleDirect(1, 0);
builder.emitLoadConstDoubleDirect(4, 1);
builder.emitLoadConstDoubleDirect(5, 0);
builder.emitToNumber(0, 0);
builder.emitSubN(0, 0, 4);
JCOND(builder.emitJLessN, L(1), 0, 5);
LABEL(2, builder.emitLoadParam(2, 2));
builder.emitMov(3, 2);
builder.emitToNumber(2, 2);
builder.emitSubN(2, 2, 4);
JCOND(builder.emitJLessEqualN, L(3), 2, 4);
LABEL(4, builder.emitMul(3, 3, 2));
builder.emitSubN(2, 2, 4);
JCOND(builder.emitJGreaterN, L(4), 2, 4);
LABEL(3, builder.emitAddN(1, 1, 3));
builder.emitSubN(0, 0, 4);
JCOND(builder.emitJGreaterEqualN, L(2), 0, 5);
LABEL(1, builder.emitAddEmptyString(1, 1));
builder.emitRet(1);
};
// Pass 0 - resolve labels.
{
BytecodeModuleGenerator BMG;
auto BFG = BytecodeFunctionGenerator::create(BMG, FRAME_SIZE);
emit(*BFG, 0);
}
// Pass 1 - build the actual code.
BytecodeModuleGenerator BMG;
auto BFG = BytecodeFunctionGenerator::create(BMG, FRAME_SIZE);
emit(*BFG, 1);
std::unique_ptr<BytecodeModule> BM(new BytecodeModule(1));
BM->setFunction(
0,
BFG->generateBytecodeFunction(
hermes::Function::DefinitionKind::ES5Function,
hermes::ValueKind::FunctionKind,
true,
0,
0));
runtimeModule->initializeWithoutCJSModulesMayAllocate(
BCProviderFromSrc::createBCProviderFromSrc(std::move(BM)));
auto codeBlock = CodeBlock::createCodeBlock(
runtimeModule,
runtimeModule->getBytecode()->getFunctionHeader(0),
runtimeModule->getBytecode()->getBytecode(0),
0);
ScopedNativeCallFrame newFrame{
runtime, 2, nullptr, false, HermesValue::encodeUndefinedValue()};
assert(!newFrame.overflowed() && "Frame allocation should not have failed");
newFrame->getArgRef(0) = HermesValue::encodeDoubleValue(loopc);
newFrame->getArgRef(1) = HermesValue::encodeDoubleValue(factc);
auto status = runtime->interpretFunction(codeBlock);
assert(status == ExecutionStatus::RETURNED);
return runtime->makeHandle<StringPrimitive>(*status);
}
} // namespace
static llvm::cl::opt<double> LoopCount{llvm::cl::Positional,
llvm::cl::init(4e6),
llvm::cl::desc("(loop count)")};
static llvm::cl::opt<int> FactValue{llvm::cl::Positional,
llvm::cl::init(100),
llvm::cl::desc("(factorial value)")};
int main(int argc, char **argv) {
// Print a stack trace if we signal out.
llvm::sys::PrintStackTraceOnErrorSignal("Hermes driver");
llvm::PrettyStackTraceProgram X(argc, argv);
// Call llvm_shutdown() on exit to print stats and free memory.
llvm::llvm_shutdown_obj Y;
llvm::cl::ParseCommandLineOptions(argc, argv, "Hermes vm driver\n");
llvm::outs() << "Running " << (uint64_t)LoopCount << " loops of factorial("
<< FactValue << ")\n";
auto runtime =
Runtime::create(RuntimeConfig::Builder()
.withGCConfig(GCConfig::Builder()
.withInitHeapSize(1 << 16)
.withMaxHeapSize(1 << 19)
.build())
.build());
GCScope scope(runtime.get());
auto res = benchmark(runtime.get(), LoopCount, FactValue);
SmallU16String<32> tmp;
llvm::outs()
<< StringPrimitive::createStringView(runtime.get(), res).getUTF16Ref(tmp)
<< "\n";
#ifdef HERMESVM_OPCODE_STATS
Runtime::dumpOpcodeStats(llvm::outs());
#endif
return 0;
}
| 36.130233
| 80
| 0.597065
|
exced
|
ce17fb2a04fcb71df4f6129c11f75cf0b2fe25e6
| 6,322
|
cc
|
C++
|
Fleece/Core/Doc.cc
|
KraemerDEM/fleece
|
41e8d9e576f59f1373866ff3db1f319ecb10ad69
|
[
"Apache-2.0"
] | null | null | null |
Fleece/Core/Doc.cc
|
KraemerDEM/fleece
|
41e8d9e576f59f1373866ff3db1f319ecb10ad69
|
[
"Apache-2.0"
] | null | null | null |
Fleece/Core/Doc.cc
|
KraemerDEM/fleece
|
41e8d9e576f59f1373866ff3db1f319ecb10ad69
|
[
"Apache-2.0"
] | null | null | null |
//
// Doc.cc
//
// Copyright © 2018 Couchbase. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "Doc.hh"
#include "SharedKeys.hh"
#include "Pointer.hh"
#include "JSONConverter.hh"
#include "FleeceException.hh"
#include <functional>
#include <mutex>
#include <set>
#include "betterassert.hh"
#if 0
#define Log(FMT,...) fprintf(stderr, "DOC: " # FMT "\n", __VA_ARGS__)
#else
#define Log(FMT,...)
#endif
namespace fleece { namespace impl {
using namespace std;
using namespace internal;
static mutex sMutex;
Scope::memoryMap* Scope::sMemoryMap;
Scope::Scope(slice data, SharedKeys *sk, slice destination) noexcept
:_sk(sk)
,_externDestination(destination)
,_data(data)
{
if (data)
registr();
}
Scope::Scope(const alloc_slice &data, SharedKeys *sk, slice destination) noexcept
:_sk(sk)
,_externDestination(destination)
,_data(data)
,_alloced(data)
{
if (data)
registr();
}
Scope::Scope(const Scope &parentScope, slice subData)
:_sk(parentScope.sharedKeys())
,_externDestination(parentScope.externDestination())
,_data(subData)
,_alloced(parentScope._alloced)
{
if (subData)
assert(parentScope.data().contains(subData));
}
Scope::~Scope() {
unregister();
}
void Scope::registr() noexcept {
lock_guard<mutex> lock(sMutex);
if (_usuallyFalse(!sMemoryMap))
sMemoryMap = new multimap<size_t, Scope*>;
auto key = size_t(_data.end());
_iter = sMemoryMap->insert({key, this});
_registered = true;
Log("Register (%p ... %p) --> Scope %p, sk=%p [Now %zu]",
data.buf, data.end(), this, sk, sMemoryMap->size());
//#if DEBUG
if (_iter != sMemoryMap->begin() && prev(_iter)->first == key) {
Scope *existing = prev(_iter)->second;
if (existing->_data == _data && existing->_externDestination == _externDestination
&& existing->_sk == _sk) {
Log("Duplicate (%p ... %p) --> Scope %p, sk=%p",
data.buf, data.end(), this, sk);
} else {
FleeceException::_throw(InternalError,
"Incompatible duplicate Scope %p for (%p .. %p) with sk=%p: conflicts with %p with sk=%p",
this, _data.buf, _data.end(), _sk.get(),
existing, existing->_sk.get());
}
}
//#endif
}
void Scope::unregister() noexcept {
if (_registered) {
lock_guard<mutex> lock(sMutex);
Log("Unregister (%p ... %p) --> Scope %p, sk=%p [now %zu]",
_data.buf, _data.end(), this, _sk.get(), sMemoryMap->size()-1);
sMemoryMap->erase(_iter);
_registered = false;
}
}
/*static*/ const Scope* Scope::_containing(const Value *src) noexcept {
// must have sMutex to call this
if (_usuallyFalse(!sMemoryMap))
return nullptr;
auto i = sMemoryMap->upper_bound(size_t(src));
if (_usuallyFalse(i == sMemoryMap->end()))
return nullptr;
Scope *scope = i->second;
if (_usuallyFalse(src < scope->_data.buf))
return nullptr;
return scope;
}
/*static*/ SharedKeys* Scope::sharedKeys(const Value *v) noexcept {
lock_guard<mutex> lock(sMutex);
auto scope = _containing(v);
return scope ? scope->sharedKeys() : nullptr;
}
const Value* Scope::resolveExternPointerTo(const void* dst) const noexcept {
dst = offsetby(dst, (char*)_externDestination.end() - (char*)_data.buf);
if (_usuallyFalse(!_externDestination.contains(dst)))
return nullptr;
return (const Value*)dst;
}
/*static*/ const Value* Scope::resolvePointerFrom(const internal::Pointer* src,
const void *dst) noexcept
{
lock_guard<mutex> lock(sMutex);
auto scope = _containing((const Value*)src);
return scope ? scope->resolveExternPointerTo(dst) : nullptr;
}
/*static*/ pair<const Value*,slice> Scope::resolvePointerFromWithRange(const Pointer* src,
const void* dst) noexcept
{
lock_guard<mutex> lock(sMutex);
auto scope = _containing((const Value*)src);
if (!scope)
return { };
return {scope->resolveExternPointerTo(dst), scope->externDestination()};
}
#pragma mark - DOC:
Doc::Doc(const alloc_slice &data, Trust trust, SharedKeys *sk, slice destination) noexcept
:Scope(data, sk, destination)
{
init(trust);
}
Doc::Doc(const Scope &parentScope,
slice subData,
Trust trust) noexcept
:Scope(parentScope, subData)
{
init(trust);
}
void Doc::init(Trust trust) noexcept {
if (data()) {
_root = trust ? Value::fromTrustedData(data()) : Value::fromData(data());
if (!_root)
unregister();
}
_isDoc = true;
}
Retained<Doc> Doc::fromFleece(const alloc_slice &fleece, Trust trust) {
return new Doc(fleece, trust);
}
Retained<Doc> Doc::fromJSON(slice json) {
return new Doc(JSONConverter::convertJSON(json), kTrusted);
}
/*static*/ RetainedConst<Doc> Doc::containing(const Value *src) noexcept {
lock_guard<mutex> lock(sMutex);
Doc *scope = (Doc*) _containing(src);
if (!scope)
return nullptr;
assert(scope->_isDoc);
return RetainedConst<Doc>(scope);
}
} }
| 29.404651
| 130
| 0.575767
|
KraemerDEM
|
ce1965d30c8b195c8b0e749058dc71e4f7b76ac2
| 1,042
|
cxx
|
C++
|
Software/CPU/myscrypt/build/cmake-3.12.3/Source/cmDisallowedCommand.cxx
|
duonglvtnaist/Multi-ROMix-Scrypt-Accelerator
|
9cb9d96c72c3e912fb7cfd5a786e50e4844a1ee8
|
[
"MIT"
] | 2
|
2019-02-08T08:45:27.000Z
|
2020-09-07T05:55:18.000Z
|
Software/CPU/myscrypt/build/cmake-3.12.3/Source/cmDisallowedCommand.cxx
|
duonglvtnaist/Multi-ROMix-Scrypt-Accelerator
|
9cb9d96c72c3e912fb7cfd5a786e50e4844a1ee8
|
[
"MIT"
] | 3
|
2021-09-08T02:18:00.000Z
|
2022-03-12T00:39:44.000Z
|
Software/CPU/myscrypt/build/cmake-3.12.3/Source/cmDisallowedCommand.cxx
|
duonglvtnaist/Multi-ROMix-Scrypt-Accelerator
|
9cb9d96c72c3e912fb7cfd5a786e50e4844a1ee8
|
[
"MIT"
] | 1
|
2018-06-04T08:50:33.000Z
|
2018-06-04T08:50:33.000Z
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmDisallowedCommand.h"
#include "cmMakefile.h"
#include "cmake.h"
class cmExecutionStatus;
bool cmDisallowedCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status)
{
switch (this->Makefile->GetPolicyStatus(this->Policy)) {
case cmPolicies::WARN:
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING,
cmPolicies::GetPolicyWarning(this->Policy));
break;
case cmPolicies::OLD:
break;
case cmPolicies::REQUIRED_IF_USED:
case cmPolicies::REQUIRED_ALWAYS:
case cmPolicies::NEW:
this->Makefile->IssueMessage(cmake::FATAL_ERROR, this->Message);
return true;
}
this->Command->SetMakefile(this->GetMakefile());
bool const ret = this->Command->InitialPass(args, status);
this->SetError(this->Command->GetError());
return ret;
}
| 32.5625
| 79
| 0.672745
|
duonglvtnaist
|
ce1ab38d768b61712c4d3e2337a8df6c6f949ab8
| 1,894
|
cpp
|
C++
|
hard/0381randomizedCollection.cpp
|
wanghengg/LeetCode
|
4f73d7e176c8de5d2d9b87ab2812f7aa80c20a79
|
[
"Apache-2.0"
] | null | null | null |
hard/0381randomizedCollection.cpp
|
wanghengg/LeetCode
|
4f73d7e176c8de5d2d9b87ab2812f7aa80c20a79
|
[
"Apache-2.0"
] | null | null | null |
hard/0381randomizedCollection.cpp
|
wanghengg/LeetCode
|
4f73d7e176c8de5d2d9b87ab2812f7aa80c20a79
|
[
"Apache-2.0"
] | null | null | null |
#include <iostream>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
class RandomizedCollection {
private:
unordered_map<int, unordered_set<int>> index; // 保存数出现的位置index
vector<int> nums;
public:
/** Initialize your data structure here. */
RandomizedCollection() {
}
/** Inserts a value to the collection. Returns true if the collection did not already contain the specified element. */
bool insert(int val) {
// 如果val已经在nums里面,仍然将val插入nums最后,但是返回false,对于新插入元素val,
// 在index里面保存其位置,因为插在nums末尾,所以index=nums.size()
nums.push_back(val);
index[val].insert(nums.size() - 1);
return index[val].size() == 1; // 如果原来不存在val,新插入val之后val出现次数为1,返回为true,如果val已经出现过,出现次数不等于1,返回false
}
/** Removes a value from the collection. Returns true if the collection contained the specified element. */
/*
* remove操作的重点在于删除时应该将最后一个元素复制到要删除元素第一次出现的位置,然后直接删除最后一个元素,只需要O(1)的时间
* 如果直接在val第一次出现的位置删除val,由于vector在内存中连续存储,删除操作的时间复杂度为O(n),不满足题目要求
*/
bool remove(int val) {
if (!index.count(val)) return false;
// 判断val是否存在
int i = *(index[val].begin()); // 如果存在,找到val在nums中的第一个位置
nums[i] = nums.back(); // 要删除的元素时nums[i],为了保证O(1)时间复杂度,将nums[i]等于最后一个数,相当于保留最后一个元素,然后删除最后一个数
index[val].erase(i); // 相应的val的位置也应该删掉
index[nums[i]].erase(nums.size() - 1); // 删除最后一个元素出现的位置
// 如果val第一次出现的位置就是在nums的最后,则不用插入新的位置
if (i < nums.size() - 1) {
index[nums[i]].insert(i);
}
if (index[val].empty()) { // 如果val被删除之后出现次数为0
index.erase(val);
}
nums.pop_back(); // 从nums中删除最后一个元素,最后一个元素已经提前复制到位置i了,实际上删除的是nums[i]
return true;
}
/** Get a random element from the collection. */
int getRandom() {
return nums[rand() % nums.size()];
}
};
| 35.074074
| 123
| 0.639388
|
wanghengg
|
ce1af03cef9382475a34d95675c4395de42961ee
| 3,969
|
cpp
|
C++
|
4-1 Programming for Data Structures-Travel System/TravelSystem V2.6.6.06/sourece_code/qtpro/simulation.cpp
|
wenhanshi/project-in-BUPT
|
786089be5afb0cfc0389622a59eea68b4720058f
|
[
"MIT"
] | 44
|
2017-03-06T03:01:46.000Z
|
2022-03-14T14:57:17.000Z
|
4-1 Programming for Data Structures-Travel System/TravelSystem V2.6.6.06/sourece_code/qtpro/simulation.cpp
|
wenhanshi/project-in-BUPT
|
786089be5afb0cfc0389622a59eea68b4720058f
|
[
"MIT"
] | null | null | null |
4-1 Programming for Data Structures-Travel System/TravelSystem V2.6.6.06/sourece_code/qtpro/simulation.cpp
|
wenhanshi/project-in-BUPT
|
786089be5afb0cfc0389622a59eea68b4720058f
|
[
"MIT"
] | 21
|
2017-05-20T06:45:31.000Z
|
2021-11-25T11:45:15.000Z
|
#include<iostream>
#include"Graph.h"
using namespace std ;
extern int Time;// 系统时间
extern TST arr_tst[MAX_TST];
S_STATE state_trans(Graph &travel_graph,int target) // 用以计算下一个状态S_STATE ,参量 state_n作为全局变量被该函数窥视
{
S_STATE state_next;
int diff;
cout<<"e_now"<<arr_tst[target].e_now<<endl;
if(arr_tst[target].state_n.ismove == false)//如果它现在是静止的,那么下一S_STATE一定是移动的 // 6.1 debug
{
state_next.city = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].derive_city;
state_next.ismove = true;
state_next.state_dur = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dur;
state_next.dest = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dest_city;
}
else//如果他在移动 , 下一状态未必是静止的 ,需要看下一条边的信息
{
if(!arr_tst[target].moveflag)//移动时更新
{
cout<<"!!!!nomoveflag"<<endl;
state_next.city = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dest_city;
if(arr_tst[target].e_now + 1 == arr_tst[target]._stml.size_arr)
return {state_next.city,MAX_WEIGHT,false,state_next.city};
diff =(( travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now + 1]].derive_time -
(travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].derive_time
+ travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dur) )+72)%24;
arr_tst[target].e_now ++;
if(diff)//下一状态是静止的
{
state_next.ismove = false ;
state_next.state_dur = diff;
state_next.dest = state_next.city;
}
else//下一状态是移动的
{
state_next.ismove = true ;
state_next.state_dur = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dur;
state_next.dest = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dest_city;
}
}
else
{
cout<<"yes has move flag!!!"<<endl;
if(arr_tst[target]._stml.size_arr == 0)
{
arr_tst[target].moveflag = 0;
return {arr_tst[target].state_n.dest,MAX_WEIGHT,false,arr_tst[target].state_n.dest};
}
state_next.city = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].derive_city;
diff =( travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].derive_time - Time + 72 ) % 24;
if(diff)//下一状态是静止的
{
state_next.ismove = false ;
state_next.state_dur = diff;
state_next.dest = state_next.city;
}
else//下一状态是移动的
{
state_next.ismove = true ;
state_next.state_dur = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dur;
state_next.dest = travel_graph._arrEdge[arr_tst[target]._stml.arr_opEdge[arr_tst[target].e_now]].dest_city;
}
cout<<"close move flag!!!"<<endl;
arr_tst[target].moveflag = 0;
}
}
return state_next;
}
void printState(void)
{
cout<<"Time:"<<Time<<endl;
cout<<"city->"<<arr_tst[0].state_n.city<<endl;
cout<<"timepass/will dur ->"<<arr_tst[0].timepass<<"/"<<arr_tst[0].state_n.state_dur<<endl;
cout<<"ismove?->"<<arr_tst[0].state_n.ismove<<endl;
}
void _simulation(Graph &travel_graph)
{
printState();
//cout<<"MOVE FLAG : "<<moveflag<<endl;
__MUTI_TST_LOOP__
{
arr_tst[i].timepass++;
if(arr_tst[i].timepass == arr_tst[i].state_n.state_dur)
{
arr_tst[i].state_n = state_trans(travel_graph,i);
arr_tst[i].timepass = 0;
}
}
}
| 40.917526
| 131
| 0.609977
|
wenhanshi
|
ce1bd7feb0c627c86e9d47eba759dc98a4be38f1
| 749
|
hpp
|
C++
|
qubus/include/qubus/isl/pw_aff.hpp
|
qubusproject/Qubus
|
0feb8d6df00459c5af402545dbe7c82ee3ec4b7c
|
[
"BSL-1.0"
] | null | null | null |
qubus/include/qubus/isl/pw_aff.hpp
|
qubusproject/Qubus
|
0feb8d6df00459c5af402545dbe7c82ee3ec4b7c
|
[
"BSL-1.0"
] | null | null | null |
qubus/include/qubus/isl/pw_aff.hpp
|
qubusproject/Qubus
|
0feb8d6df00459c5af402545dbe7c82ee3ec4b7c
|
[
"BSL-1.0"
] | null | null | null |
#ifndef QUBUS_ISL_PW_AFF_HPP
#define QUBUS_ISL_PW_AFF_HPP
#include <qubus/isl/set.hpp>
#include <qubus/isl/map.hpp>
#include <qubus/isl/value.hpp>
#include <isl/aff.h>
namespace qubus
{
namespace isl
{
class pw_aff
{
public:
explicit pw_aff(isl_pw_aff* handle_);
pw_aff(const pw_aff& other);
~pw_aff();
pw_aff& operator=(const pw_aff& other);
isl_pw_aff* native_handle() const;
isl_pw_aff* release() noexcept;
set domain() const;
bool is_cst() const;
static pw_aff from_val(set domain, value val);
private:
isl_pw_aff* handle_;
};
pw_aff operator+(pw_aff lhs, pw_aff rhs);
pw_aff operator-(pw_aff lhs, pw_aff rhs);
set set_from_pw_aff(pw_aff fn);
map map_from_pw_aff(pw_aff fn);
}
}
#endif
| 15.604167
| 50
| 0.703605
|
qubusproject
|
ce1d3812e64f2c8bb4bd12d1fc12c575eb357a8e
| 7,324
|
cc
|
C++
|
kythe/cxx/doc/doc.cc
|
bef0/kythe
|
2adcb540ae9dbd61879315a5ade8d3716ee3d3d8
|
[
"Apache-2.0"
] | null | null | null |
kythe/cxx/doc/doc.cc
|
bef0/kythe
|
2adcb540ae9dbd61879315a5ade8d3716ee3d3d8
|
[
"Apache-2.0"
] | null | null | null |
kythe/cxx/doc/doc.cc
|
bef0/kythe
|
2adcb540ae9dbd61879315a5ade8d3716ee3d3d8
|
[
"Apache-2.0"
] | null | null | null |
/*
* Copyright 2016 The Kythe Authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// doc is a utility that performs simple formatting tasks on documentation
// extracted from the Kythe graph.
#include <fcntl.h>
#include <sys/stat.h>
#include "absl/memory/memory.h"
#include "absl/strings/str_format.h"
#include "gflags/gflags.h"
#include "glog/logging.h"
#include "google/protobuf/io/zero_copy_stream_impl.h"
#include "google/protobuf/text_format.h"
#include "kythe/cxx/common/kythe_uri.h"
#include "kythe/cxx/common/net_client.h"
#include "kythe/cxx/common/schema/edges.h"
#include "kythe/cxx/common/schema/facts.h"
#include "kythe/cxx/doc/html_markup_handler.h"
#include "kythe/cxx/doc/html_renderer.h"
#include "kythe/cxx/doc/javadoxygen_markup_handler.h"
#include "kythe/cxx/doc/markup_handler.h"
DEFINE_string(xrefs, "http://localhost:8080", "Base URI for xrefs service");
DEFINE_string(corpus, "test", "Default corpus to use");
DEFINE_string(path, "",
"Look up this path in the xrefs service and process all "
"documented nodes inside");
DEFINE_string(save_response, "",
"Save the initial documentation response to this file as an "
"ASCII protobuf.");
DEFINE_string(css, "", "Include this stylesheet path in the resulting HTML.");
DEFINE_bool(common_signatures, false,
"Render the MarkedSource proto from standard in.");
namespace kythe {
namespace {
constexpr char kDocHeaderPrefix[] = R"(<!doctype html>
<html>
<head>
<meta charset="utf-8">
)";
constexpr char kDocHeaderSuffix[] = R"( <title>Kythe doc output</title>
</head>
<body>
)";
constexpr char kDocFooter[] = R"(
</body>
</html>
)";
int DocumentNodesFrom(const proto::DocumentationReply& doc_reply) {
::fputs(kDocHeaderPrefix, stdout);
if (!FLAGS_css.empty()) {
absl::FPrintF(stdout,
"<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\">",
FLAGS_css);
}
::fputs(kDocHeaderSuffix, stdout);
DocumentHtmlRendererOptions options(doc_reply);
options.make_link_uri = [](const proto::Anchor& anchor) {
return anchor.parent();
};
options.kind_name = [&options](const std::string& ticket) {
if (const auto* node = options.node_info(ticket)) {
for (const auto& fact : node->facts()) {
if (fact.first == kythe::common::schema::kFactNodeKind) {
return std::string(fact.second);
}
}
}
return std::string();
};
for (const auto& document : doc_reply.document()) {
if (document.has_text()) {
auto html =
RenderDocument(options, {ParseJavadoxygen, ParseHtml}, document);
::fputs(html.c_str(), stdout);
}
}
::fputs(kDocFooter, stdout);
return 0;
}
int DocumentNodesFromStdin() {
proto::DocumentationReply doc_reply;
google::protobuf::io::FileInputStream file_input_stream(STDIN_FILENO);
CHECK(google::protobuf::TextFormat::Parse(&file_input_stream, &doc_reply));
return DocumentNodesFrom(doc_reply);
}
int RenderMarkedSourceFromStdin() {
proto::common::MarkedSource marked_source;
google::protobuf::io::FileInputStream file_input_stream(STDIN_FILENO);
CHECK(
google::protobuf::TextFormat::Parse(&file_input_stream, &marked_source));
absl::PrintF(" RenderSimpleIdentifier: \"%s\"\n",
RenderSimpleIdentifier(marked_source));
auto params = RenderSimpleParams(marked_source);
for (const auto& param : params) {
absl::PrintF(" RenderSimpleParams: \"%s\"\n", param);
}
absl::PrintF("RenderSimpleQualifiedName-ID: \"%s\"\n",
RenderSimpleQualifiedName(marked_source, false));
absl::PrintF("RenderSimpleQualifiedName+ID: \"%s\"\n",
RenderSimpleQualifiedName(marked_source, true));
return 0;
}
int DocumentNodesFrom(XrefsJsonClient* client, const proto::VName& file_name) {
proto::DecorationsRequest request;
proto::DecorationsReply reply;
request.mutable_location()->set_ticket(URI(file_name).ToString());
request.set_references(true);
std::string error;
CHECK(client->Decorations(request, &reply, &error)) << error;
proto::DocumentationRequest doc_request;
proto::DocumentationReply doc_reply;
for (const auto& reference : reply.reference()) {
if (reference.kind() == kythe::common::schema::kDefinesBinding) {
doc_request.add_ticket(reference.target_ticket());
}
}
absl::FPrintF(stderr, "Looking for %d tickets\n", doc_request.ticket_size());
CHECK(client->Documentation(doc_request, &doc_reply, &error)) << error;
if (!FLAGS_save_response.empty()) {
int saved =
open(FLAGS_save_response.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0640);
if (saved < 0) {
absl::FPrintF(stderr, "Couldn't open %s\n", FLAGS_save_response);
return 1;
}
{
google::protobuf::io::FileOutputStream outfile(saved);
if (!google::protobuf::TextFormat::Print(doc_reply, &outfile)) {
absl::FPrintF(stderr, "Coudln't print to %s\n",
FLAGS_save_response.c_str());
close(saved);
return 1;
}
}
if (close(saved) < 0) {
absl::FPrintF(stderr, "Couldn't close %s\n", FLAGS_save_response);
return 1;
}
}
return DocumentNodesFrom(doc_reply);
}
} // anonymous namespace
} // namespace kythe
int main(int argc, char** argv) {
GOOGLE_PROTOBUF_VERIFY_VERSION;
google::InitGoogleLogging(argv[0]);
gflags::SetUsageMessage(R"(perform simple documentation formatting
doc -corpus foo -file bar.cc
Formats documentation for all nodes attached via defines/binding anchors to
a file with path bar.cc in corpus foo.
doc
Formats documentation from a text-format proto::DocumentationReply provided
on standard input.
doc -common_signatures
Renders the text-format proto::common::MarkedSource message provided on standard
input into several common forms.
)");
gflags::ParseCommandLineFlags(&argc, &argv, true);
if (FLAGS_common_signatures) {
return kythe::RenderMarkedSourceFromStdin();
} else if (FLAGS_path.empty()) {
return kythe::DocumentNodesFromStdin();
} else {
kythe::JsonClient::InitNetwork();
kythe::XrefsJsonClient client(absl::make_unique<kythe::JsonClient>(),
FLAGS_xrefs);
auto ticket = kythe::URI::FromString(FLAGS_path);
if (!ticket.first) {
ticket = kythe::URI::FromString(
"kythe://" +
kythe::UriEscape(kythe::UriEscapeMode::kEscapePaths, FLAGS_corpus) +
"?path=" +
kythe::UriEscape(kythe::UriEscapeMode::kEscapePaths, FLAGS_path));
}
if (!ticket.first) {
absl::FPrintF(stderr, "Couldn't parse URI %s\n", FLAGS_path);
return 1;
}
return kythe::DocumentNodesFrom(&client, ticket.second.v_name());
}
return 0;
}
| 35.553398
| 82
| 0.684872
|
bef0
|
ce1d8b7711c1b2bc638f9f6fee4ea68f4f1a8eec
| 331
|
cpp
|
C++
|
src/cpp/rand.cpp
|
cedrikaagaard/thistlethwaite
|
f6bf5cb42cd36f066cd5d51de77ff589004ed7af
|
[
"Unlicense"
] | 2
|
2018-08-02T09:34:38.000Z
|
2022-02-21T05:17:14.000Z
|
src/cpp/rand.cpp
|
cedrikaagaard/thistlethwaite
|
f6bf5cb42cd36f066cd5d51de77ff589004ed7af
|
[
"Unlicense"
] | null | null | null |
src/cpp/rand.cpp
|
cedrikaagaard/thistlethwaite
|
f6bf5cb42cd36f066cd5d51de77ff589004ed7af
|
[
"Unlicense"
] | null | null | null |
#include <vector>
#include <sstream>
#include "rand.hpp"
#include "enums.hpp"
rotation get_random_rotation() {
return (rotation) (rand() % 12);
}
std::string thistlethwaite::get_random_rotations(const int &n) {
std::stringstream ss;
for (int i = 0; i < n; i++) {
ss << rottoa(get_random_rotation());
}
return ss.str();
}
| 18.388889
| 64
| 0.667674
|
cedrikaagaard
|
ce1e047632d6b27fc8579f9352ee6df00b2e5a4d
| 3,635
|
cpp
|
C++
|
DearPyGui/src/core/AppItems/nodes/mvNode.cpp
|
NamWoo/DearPyGui
|
da4a3c7a0dbb3d5dfd8b0a7991521890ddd3e513
|
[
"MIT"
] | null | null | null |
DearPyGui/src/core/AppItems/nodes/mvNode.cpp
|
NamWoo/DearPyGui
|
da4a3c7a0dbb3d5dfd8b0a7991521890ddd3e513
|
[
"MIT"
] | null | null | null |
DearPyGui/src/core/AppItems/nodes/mvNode.cpp
|
NamWoo/DearPyGui
|
da4a3c7a0dbb3d5dfd8b0a7991521890ddd3e513
|
[
"MIT"
] | null | null | null |
#include "mvNode.h"
#include <imnodes.h>
#include "mvApp.h"
#include "mvLog.h"
#include "mvItemRegistry.h"
#include "mvImNodesThemeScope.h"
#include "mvFontScope.h"
#include "mvPythonExceptions.h"
namespace Marvel {
static std::string FindRenderedTextEnd(const char* text, const char* text_end = nullptr)
{
int size = 0;
const char* text_display_end = text;
if (!text_end)
text_end = (const char*)-1;
while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#'))
{
text_display_end++;
size++;
}
char* cvalue = new char[size + 1];
for (int i = 0; i < size; i++)
cvalue[i] = text[i];
cvalue[size] = '\0';
auto result = std::string(cvalue);
delete[] cvalue;
return result;
}
void mvNode::InsertParser(std::map<std::string, mvPythonParser>* parsers)
{
mvPythonParser parser(mvPyDataType::String, "Undocumented function", { "Node Editor", "Widgets" });
mvAppItem::AddCommonArgs(parser);
parser.removeArg("source");
parser.removeArg("width");
parser.removeArg("height");
parser.removeArg("indent");
parser.removeArg("callback");
parser.removeArg("callback_data");
parser.removeArg("enabled");
parser.addArg<mvPyDataType::Bool>("draggable", mvArgType::KEYWORD_ARG, "True");
parser.finalize();
parsers->insert({ s_command, parser });
}
mvNode::mvNode(const std::string& name)
: mvAppItem(name)
{
m_label = FindRenderedTextEnd(m_name.c_str());
m_specificedlabel = m_label;
int64_t address = (int64_t)this;
int64_t reduced_address = address % 2147483648;
m_id = (int)reduced_address;
}
bool mvNode::isParentCompatible(mvAppItemType type)
{
if (type == mvAppItemType::mvStagingContainer) return true;
if (type == mvAppItemType::mvNodeEditor)
return true;
mvThrowPythonError(1000, "Node parent must be node editor.");
MV_ITEM_REGISTRY_ERROR("Node parent must be node editor.");
assert(false);
return false;
}
bool mvNode::canChildBeAdded(mvAppItemType type)
{
if(type == mvAppItemType::mvNodeAttribute)
return true;
mvThrowPythonError(1000, "Node children must be node attributes only.");
MV_ITEM_REGISTRY_ERROR("Node children must be node attributes only.");
assert(false);
return false;
}
void mvNode::draw(ImDrawList* drawlist, float x, float y)
{
ScopedID id;
mvImNodesThemeScope scope(this);
mvFontScope fscope(this);
if (m_dirtyPos)
{
imnodes::SetNodeGridSpacePos((int)m_id, m_state.getItemPos());
m_dirtyPos = false;
}
imnodes::SetNodeDraggable((int)m_id, m_draggable);
imnodes::BeginNode(m_id);
imnodes::BeginNodeTitleBar();
ImGui::TextUnformatted(m_specificedlabel.c_str());
imnodes::EndNodeTitleBar();
//we do this so that the children dont get the theme
scope.cleanup();
for (auto item : m_children[1])
{
// skip item if it's not shown
if (!item->m_show)
continue;
// set item width
if (item->m_width != 0)
ImGui::SetNextItemWidth((float)item->m_width);
item->draw(drawlist, x, y);
auto& state = item->getState();
state.setActive(imnodes::IsAttributeActive());
}
imnodes::EndNode();
ImVec2 pos = imnodes::GetNodeGridSpacePos((int)m_id);
m_state.setPos({ pos.x , pos.y });
}
void mvNode::handleSpecificKeywordArgs(PyObject* dict)
{
if (dict == nullptr)
return;
if (PyObject* item = PyDict_GetItemString(dict, "draggable")) m_draggable = ToBool(item);
}
void mvNode::getSpecificConfiguration(PyObject* dict)
{
if (dict == nullptr)
return;
PyDict_SetItemString(dict, "draggable", ToPyBool(m_draggable));
}
}
| 23.603896
| 128
| 0.689133
|
NamWoo
|
ce21b25ac6f9c25b0a9339c01e04acc45979a46c
| 7,245
|
cc
|
C++
|
extensions/browser/quota_service.cc
|
cvsuser-chromium/chromium
|
acb8e8e4a7157005f527905b48dd48ddaa3b863a
|
[
"BSD-3-Clause"
] | 4
|
2017-04-05T01:51:34.000Z
|
2018-02-15T03:11:54.000Z
|
extensions/browser/quota_service.cc
|
cvsuser-chromium/chromium
|
acb8e8e4a7157005f527905b48dd48ddaa3b863a
|
[
"BSD-3-Clause"
] | 1
|
2021-12-13T19:44:12.000Z
|
2021-12-13T19:44:12.000Z
|
extensions/browser/quota_service.cc
|
cvsuser-chromium/chromium
|
acb8e8e4a7157005f527905b48dd48ddaa3b863a
|
[
"BSD-3-Clause"
] | 4
|
2017-04-05T01:52:03.000Z
|
2022-02-13T17:58:45.000Z
|
// Copyright 2013 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 "extensions/browser/quota_service.h"
#include "base/message_loop/message_loop.h"
#include "base/stl_util.h"
#include "chrome/browser/extensions/extension_function.h"
#include "extensions/common/error_utils.h"
namespace {
// If the browser stays open long enough, we reset state once a day.
// Whatever this value is, it should be an order of magnitude longer than
// the longest interval in any of the QuotaLimitHeuristics in use.
const int kPurgeIntervalInDays = 1;
const char kOverQuotaError[] = "This request exceeds the * quota.";
} // namespace
namespace extensions {
QuotaService::QuotaService() {
if (base::MessageLoop::current() != NULL) { // Null in unit tests.
purge_timer_.Start(FROM_HERE,
base::TimeDelta::FromDays(kPurgeIntervalInDays),
this,
&QuotaService::Purge);
}
}
QuotaService::~QuotaService() {
DCHECK(CalledOnValidThread());
purge_timer_.Stop();
Purge();
}
std::string QuotaService::Assess(const std::string& extension_id,
ExtensionFunction* function,
const base::ListValue* args,
const base::TimeTicks& event_time) {
DCHECK(CalledOnValidThread());
if (function->ShouldSkipQuotaLimiting())
return std::string();
// Lookup function list for extension.
FunctionHeuristicsMap& functions = function_heuristics_[extension_id];
// Lookup heuristics for function, create if necessary.
QuotaLimitHeuristics& heuristics = functions[function->name()];
if (heuristics.empty())
function->GetQuotaLimitHeuristics(&heuristics);
if (heuristics.empty())
return std::string(); // No heuristic implies no limit.
ViolationErrorMap::iterator violation_error =
violation_errors_.find(extension_id);
if (violation_error != violation_errors_.end())
return violation_error->second; // Repeat offender.
QuotaLimitHeuristic* failed_heuristic = NULL;
for (QuotaLimitHeuristics::iterator heuristic = heuristics.begin();
heuristic != heuristics.end();
++heuristic) {
// Apply heuristic to each item (bucket).
if (!(*heuristic)->ApplyToArgs(args, event_time)) {
failed_heuristic = *heuristic;
break;
}
}
if (!failed_heuristic)
return std::string();
std::string error = failed_heuristic->GetError();
DCHECK_GT(error.length(), 0u);
PurgeFunctionHeuristicsMap(&functions);
function_heuristics_.erase(extension_id);
violation_errors_[extension_id] = error;
return error;
}
void QuotaService::PurgeFunctionHeuristicsMap(FunctionHeuristicsMap* map) {
FunctionHeuristicsMap::iterator heuristics = map->begin();
while (heuristics != map->end()) {
STLDeleteElements(&heuristics->second);
map->erase(heuristics++);
}
}
void QuotaService::Purge() {
DCHECK(CalledOnValidThread());
std::map<std::string, FunctionHeuristicsMap>::iterator it =
function_heuristics_.begin();
for (; it != function_heuristics_.end(); function_heuristics_.erase(it++))
PurgeFunctionHeuristicsMap(&it->second);
}
void QuotaLimitHeuristic::Bucket::Reset(const Config& config,
const base::TimeTicks& start) {
num_tokens_ = config.refill_token_count;
expiration_ = start + config.refill_interval;
}
void QuotaLimitHeuristic::SingletonBucketMapper::GetBucketsForArgs(
const base::ListValue* args,
BucketList* buckets) {
buckets->push_back(&bucket_);
}
QuotaLimitHeuristic::QuotaLimitHeuristic(const Config& config,
BucketMapper* map,
const std::string& name)
: config_(config), bucket_mapper_(map), name_(name) {}
QuotaLimitHeuristic::~QuotaLimitHeuristic() {}
bool QuotaLimitHeuristic::ApplyToArgs(const base::ListValue* args,
const base::TimeTicks& event_time) {
BucketList buckets;
bucket_mapper_->GetBucketsForArgs(args, &buckets);
for (BucketList::iterator i = buckets.begin(); i != buckets.end(); ++i) {
if ((*i)->expiration().is_null()) // A brand new bucket.
(*i)->Reset(config_, event_time);
if (!Apply(*i, event_time))
return false; // It only takes one to spoil it for everyone.
}
return true;
}
std::string QuotaLimitHeuristic::GetError() const {
return extensions::ErrorUtils::FormatErrorMessage(kOverQuotaError, name_);
}
QuotaService::SustainedLimit::SustainedLimit(const base::TimeDelta& sustain,
const Config& config,
BucketMapper* map,
const std::string& name)
: QuotaLimitHeuristic(config, map, name),
repeat_exhaustion_allowance_(sustain.InSeconds() /
config.refill_interval.InSeconds()),
num_available_repeat_exhaustions_(repeat_exhaustion_allowance_) {}
bool QuotaService::TimedLimit::Apply(Bucket* bucket,
const base::TimeTicks& event_time) {
if (event_time > bucket->expiration())
bucket->Reset(config(), event_time);
return bucket->DeductToken();
}
bool QuotaService::SustainedLimit::Apply(Bucket* bucket,
const base::TimeTicks& event_time) {
if (event_time > bucket->expiration()) {
// We reset state for this item and start over again if this request breaks
// the bad cycle that was previously being tracked. This occurs if the
// state in the bucket expired recently (it has been long enough since the
// event that we don't care about the last event), but the bucket still has
// tokens (so pressure was not sustained over that time), OR we are more
// than 1 full refill interval away from the last event (so even if we used
// up all the tokens in the last bucket, nothing happened in the entire
// next refill interval, so it doesn't matter).
if (bucket->has_tokens() ||
event_time > bucket->expiration() + config().refill_interval) {
bucket->Reset(config(), event_time);
num_available_repeat_exhaustions_ = repeat_exhaustion_allowance_;
} else if (--num_available_repeat_exhaustions_ > 0) {
// The last interval was saturated with requests, and this is the first
// event in the next interval. If this happens
// repeat_exhaustion_allowance_ times, it's a violation. Reset the bucket
// state to start timing from the end of the last interval (and we'll
// deduct the token below) so we can detect this each time it happens.
bucket->Reset(config(), bucket->expiration());
} else {
// No allowances left; this request is a violation.
return false;
}
}
// We can go negative since we check has_tokens when we get to *next* bucket,
// and for the small interval all that matters is whether we used up all the
// tokens (which is true if num_tokens_ <= 0).
bucket->DeductToken();
return true;
}
} // namespace extensions
| 37.53886
| 79
| 0.666943
|
cvsuser-chromium
|
ce21bc65544c6e6dae1c1706a6b9b94bde734c55
| 5,810
|
cpp
|
C++
|
indexer/feature_covering.cpp
|
AddisMap/omim
|
3e7e4ed7b24f12a7d6cabf4d83b968523f150f1b
|
[
"Apache-2.0"
] | null | null | null |
indexer/feature_covering.cpp
|
AddisMap/omim
|
3e7e4ed7b24f12a7d6cabf4d83b968523f150f1b
|
[
"Apache-2.0"
] | null | null | null |
indexer/feature_covering.cpp
|
AddisMap/omim
|
3e7e4ed7b24f12a7d6cabf4d83b968523f150f1b
|
[
"Apache-2.0"
] | null | null | null |
#include "indexer/feature_covering.hpp"
#include "indexer/feature.hpp"
#include "indexer/locality_object.hpp"
#include "geometry/covering_utils.hpp"
using namespace std;
namespace
{
// This class should only be used with covering::CoverObject()!
template <int DEPTH_LEVELS>
class FeatureIntersector
{
public:
struct Trg
{
m2::PointD m_a, m_b, m_c;
Trg(m2::PointD const & a, m2::PointD const & b, m2::PointD const & c)
: m_a(a), m_b(b), m_c(c) {}
};
vector<m2::PointD> m_polyline;
vector<Trg> m_trg;
m2::RectD m_rect;
// Note:
// 1. Here we don't need to differentiate between CELL_OBJECT_INTERSECT and OBJECT_INSIDE_CELL.
// 2. We can return CELL_OBJECT_INTERSECT instead of CELL_INSIDE_OBJECT - it's just
// a performance penalty.
covering::CellObjectIntersection operator()(m2::CellId<DEPTH_LEVELS> const & cell) const
{
using namespace covering;
m2::RectD cellRect;
{
// Check for limit rect intersection.
pair<uint32_t, uint32_t> const xy = cell.XY();
uint32_t const r = cell.Radius();
ASSERT_GREATER_OR_EQUAL(xy.first, r, ());
ASSERT_GREATER_OR_EQUAL(xy.second, r, ());
cellRect = m2::RectD(xy.first - r, xy.second - r, xy.first + r, xy.second + r);
if (!cellRect.IsIntersect(m_rect))
return CELL_OBJECT_NO_INTERSECTION;
}
for (size_t i = 0; i < m_trg.size(); ++i)
{
m2::RectD r;
r.Add(m_trg[i].m_a);
r.Add(m_trg[i].m_b);
r.Add(m_trg[i].m_c);
if (!cellRect.IsIntersect(r))
continue;
CellObjectIntersection const res =
IntersectCellWithTriangle(cell, m_trg[i].m_a, m_trg[i].m_b, m_trg[i].m_c);
switch (res)
{
case CELL_OBJECT_NO_INTERSECTION:
break;
case CELL_INSIDE_OBJECT:
return CELL_INSIDE_OBJECT;
case CELL_OBJECT_INTERSECT:
case OBJECT_INSIDE_CELL:
return CELL_OBJECT_INTERSECT;
}
}
for (size_t i = 1; i < m_polyline.size(); ++i)
{
CellObjectIntersection const res =
IntersectCellWithLine(cell, m_polyline[i], m_polyline[i-1]);
switch (res)
{
case CELL_OBJECT_NO_INTERSECTION:
break;
case CELL_INSIDE_OBJECT:
ASSERT(false, (cell, i, m_polyline));
return CELL_OBJECT_INTERSECT;
case CELL_OBJECT_INTERSECT:
case OBJECT_INSIDE_CELL:
return CELL_OBJECT_INTERSECT;
}
}
return CELL_OBJECT_NO_INTERSECTION;
}
using Converter = CellIdConverter<MercatorBounds, m2::CellId<DEPTH_LEVELS>>;
m2::PointD ConvertPoint(m2::PointD const & p)
{
m2::PointD const pt(Converter::XToCellIdX(p.x), Converter::YToCellIdY(p.y));
m_rect.Add(pt);
return pt;
}
void operator() (m2::PointD const & pt)
{
m_polyline.push_back(ConvertPoint(pt));
}
void operator() (m2::PointD const & a, m2::PointD const & b, m2::PointD const & c)
{
m_trg.emplace_back(ConvertPoint(a), ConvertPoint(b), ConvertPoint(c));
}
};
template <int DEPTH_LEVELS>
void GetIntersection(FeatureType const & f, FeatureIntersector<DEPTH_LEVELS> & fIsect)
{
// We need to cover feature for the best geometry, because it's indexed once for the
// first top level scale. Do reset current cached geometry first.
f.ResetGeometry();
int const scale = FeatureType::BEST_GEOMETRY;
f.ForEachPoint(fIsect, scale);
f.ForEachTriangle(fIsect, scale);
CHECK(!(fIsect.m_trg.empty() && fIsect.m_polyline.empty()) &&
f.GetLimitRect(scale).IsValid(), (f.DebugString(scale)));
}
template <int DEPTH_LEVELS>
vector<int64_t> CoverIntersection(FeatureIntersector<DEPTH_LEVELS> const & fIsect, int cellDepth,
uint64_t cellPenaltyArea)
{
if (fIsect.m_trg.empty() && fIsect.m_polyline.size() == 1)
{
m2::PointD const pt = fIsect.m_polyline[0];
return vector<int64_t>(
1, m2::CellId<DEPTH_LEVELS>::FromXY(static_cast<uint32_t>(pt.x),
static_cast<uint32_t>(pt.y), DEPTH_LEVELS - 1)
.ToInt64(cellDepth));
}
vector<m2::CellId<DEPTH_LEVELS>> cells;
covering::CoverObject(fIsect, cellPenaltyArea, cells, cellDepth,
m2::CellId<DEPTH_LEVELS>::Root());
vector<int64_t> res(cells.size());
for (size_t i = 0; i < cells.size(); ++i)
res[i] = cells[i].ToInt64(cellDepth);
return res;
}
template <int DEPTH_LEVELS>
vector<int64_t> CoverLocality(indexer::LocalityObject const & o, int cellDepth)
{
FeatureIntersector<DEPTH_LEVELS> fIsect;
o.ForEachPoint(fIsect);
o.ForEachTriangle(fIsect);
return CoverIntersection(fIsect, cellDepth, 0 /* cellPenaltyArea */);
}
} // namespace
namespace covering
{
vector<int64_t> CoverFeature(FeatureType const & f, int cellDepth, uint64_t cellPenaltyArea)
{
FeatureIntersector<RectId::DEPTH_LEVELS> fIsect;
GetIntersection(f, fIsect);
return CoverIntersection(fIsect, cellDepth, cellPenaltyArea);
}
vector<int64_t> CoverGeoObject(indexer::LocalityObject const & o, int cellDepth)
{
return CoverLocality<kGeoObjectsDepthLevels>(o, cellDepth);
}
vector<int64_t> CoverRegion(indexer::LocalityObject const & o, int cellDepth)
{
return CoverLocality<kRegionsDepthLevels>(o, cellDepth);
}
void SortAndMergeIntervals(Intervals v, Intervals & res)
{
#ifdef DEBUG
ASSERT ( res.empty(), () );
for (size_t i = 0; i < v.size(); ++i)
ASSERT_LESS(v[i].first, v[i].second, (i));
#endif
sort(v.begin(), v.end());
res.reserve(v.size());
for (size_t i = 0; i < v.size(); ++i)
{
if (i == 0 || res.back().second < v[i].first)
res.push_back(v[i]);
else
res.back().second = max(res.back().second, v[i].second);
}
}
Intervals SortAndMergeIntervals(Intervals const & v)
{
Intervals res;
SortAndMergeIntervals(v, res);
return res;
}
}
| 27.932692
| 97
| 0.663339
|
AddisMap
|
ce21f257e0df8914cc123c7d107948398b2f22bc
| 100
|
cpp
|
C++
|
src/_sample/_sample.cpp
|
sacrificerXY/base-cpp-cmake-doctest
|
2f2020affabce2cdeb552aea0ad7fff7cce6a5ad
|
[
"Unlicense"
] | 1
|
2020-06-19T17:29:50.000Z
|
2020-06-19T17:29:50.000Z
|
src/_sample/_sample.cpp
|
sacrificerXY/base-cpp-cmake-doctest-sfml-imgui
|
7cb0b647f111eb94f6b5ded6c9a14faea764423d
|
[
"Unlicense"
] | null | null | null |
src/_sample/_sample.cpp
|
sacrificerXY/base-cpp-cmake-doctest-sfml-imgui
|
7cb0b647f111eb94f6b5ded6c9a14faea764423d
|
[
"Unlicense"
] | null | null | null |
#include <_sample/_sample.h>
foo::foo(int bar): bar{bar} {}
void foo::add(int x) { bar += x; }
| 20
| 35
| 0.58
|
sacrificerXY
|
ce2213564a2bf3274366a5fe32bee2f5291d6c70
| 8,541
|
cpp
|
C++
|
src/lapack_like/factor/LU.cpp
|
jeffhammond/Elemental
|
a9e6236ce9d92dd56c7d3cd5ffd52f796a35cd0c
|
[
"Apache-2.0"
] | null | null | null |
src/lapack_like/factor/LU.cpp
|
jeffhammond/Elemental
|
a9e6236ce9d92dd56c7d3cd5ffd52f796a35cd0c
|
[
"Apache-2.0"
] | null | null | null |
src/lapack_like/factor/LU.cpp
|
jeffhammond/Elemental
|
a9e6236ce9d92dd56c7d3cd5ffd52f796a35cd0c
|
[
"Apache-2.0"
] | null | null | null |
/*
Copyright (c) 2009-2016, Jack Poulson
All rights reserved.
This file is part of Elemental and is under the BSD 2-Clause License,
which can be found in the LICENSE file in the root directory, or at
http://opensource.org/licenses/BSD-2-Clause
*/
#include <El.hpp>
#include "./LU/Local.hpp"
#include "./LU/Panel.hpp"
#include "./LU/Full.hpp"
#include "./LU/Mod.hpp"
#include "./LU/SolveAfter.hpp"
namespace El {
// Performs LU factorization without pivoting
template<typename F>
void LU( Matrix<F>& A )
{
DEBUG_CSE
const Int m = A.Height();
const Int n = A.Width();
const Int minDim = Min(m,n);
const Int bsize = Blocksize();
for( Int k=0; k<minDim; k+=bsize )
{
const Int nb = Min(bsize,minDim-k);
const IR ind1( k, k+nb ), ind2( k+nb, END );
auto A11 = A( ind1, ind1 );
auto A12 = A( ind1, ind2 );
auto A21 = A( ind2, ind1 );
auto A22 = A( ind2, ind2 );
lu::Unb( A11 );
Trsm( RIGHT, UPPER, NORMAL, NON_UNIT, F(1), A11, A21 );
Trsm( LEFT, LOWER, NORMAL, UNIT, F(1), A11, A12 );
Gemm( NORMAL, NORMAL, F(-1), A21, A12, F(1), A22 );
}
}
template<typename F>
void LU( ElementalMatrix<F>& APre )
{
DEBUG_CSE
DistMatrixReadWriteProxy<F,F,MC,MR> AProx( APre );
auto& A = AProx.Get();
const Grid& g = A.Grid();
DistMatrix<F,STAR,STAR> A11_STAR_STAR(g);
DistMatrix<F,MC, STAR> A21_MC_STAR(g);
DistMatrix<F,STAR,VR > A12_STAR_VR(g);
DistMatrix<F,STAR,MR > A12_STAR_MR(g);
const Int m = A.Height();
const Int n = A.Width();
const Int minDim = Min(m,n);
const Int bsize = Blocksize();
for( Int k=0; k<minDim; k+=bsize )
{
const Int nb = Min(bsize,minDim-k);
const IR ind1( k, k+nb ), ind2( k+nb, END );
auto A11 = A( ind1, ind1 );
auto A12 = A( ind1, ind2 );
auto A21 = A( ind2, ind1 );
auto A22 = A( ind2, ind2 );
A11_STAR_STAR = A11;
LU( A11_STAR_STAR );
A11 = A11_STAR_STAR;
A21_MC_STAR.AlignWith( A22 );
A21_MC_STAR = A21;
LocalTrsm
( RIGHT, UPPER, NORMAL, NON_UNIT, F(1), A11_STAR_STAR, A21_MC_STAR );
A21 = A21_MC_STAR;
// Perhaps we should give up perfectly distributing this operation since
// it's total contribution is only O(n^2)
A12_STAR_VR.AlignWith( A22 );
A12_STAR_VR = A12;
LocalTrsm
( LEFT, LOWER, NORMAL, UNIT, F(1), A11_STAR_STAR, A12_STAR_VR );
A12_STAR_MR.AlignWith( A22 );
A12_STAR_MR = A12_STAR_VR;
LocalGemm( NORMAL, NORMAL, F(-1), A21_MC_STAR, A12_STAR_MR, F(1), A22 );
A12 = A12_STAR_MR;
}
}
template<typename F>
void LU( DistMatrix<F,STAR,STAR>& A )
{ LU( A.Matrix() ); }
// Performs LU factorization with partial pivoting
template<typename F>
void LU( Matrix<F>& A, Permutation& P )
{
DEBUG_CSE
const Int m = A.Height();
const Int n = A.Width();
const Int minDim = Min(m,n);
const Int bsize = Blocksize();
P.MakeIdentity( m );
P.ReserveSwaps( minDim );
Permutation PB;
// Temporaries for accumulating partial permutations for each block
for( Int k=0; k<minDim; k+=bsize )
{
const Int nb = Min(bsize,minDim-k);
const IR ind0( 0, k ), ind1( k, k+nb ), ind2( k+nb, END ),
indB( k, END );
auto A11 = A( ind1, ind1 );
auto A12 = A( ind1, ind2 );
auto A21 = A( ind2, ind1 );
auto A22 = A( ind2, ind2 );
auto AB0 = A( indB, ind0 );
auto AB1 = A( indB, ind1 );
auto AB2 = A( indB, ind2 );
lu::Panel( AB1, P, PB, k );
PB.PermuteRows( AB0 );
PB.PermuteRows( AB2 );
Trsm( LEFT, LOWER, NORMAL, UNIT, F(1), A11, A12 );
Gemm( NORMAL, NORMAL, F(-1), A21, A12, F(1), A22 );
}
}
template<typename F>
void LU
( Matrix<F>& A,
Permutation& P,
Permutation& Q )
{
DEBUG_CSE
lu::Full( A, P, Q );
}
template<typename F>
void LU( ElementalMatrix<F>& APre, DistPermutation& P )
{
DEBUG_CSE
DistMatrixReadWriteProxy<F,F,MC,MR> AProx( APre );
auto& A = AProx.Get();
const Grid& g = A.Grid();
DistMatrix<F, STAR,STAR> A11_STAR_STAR(g);
DistMatrix<F, MC, STAR> A21_MC_STAR(g);
DistMatrix<F, STAR,VR > A12_STAR_VR(g);
DistMatrix<F, STAR,MR > A12_STAR_MR(g);
const Int m = A.Height();
const Int n = A.Width();
const Int minDim = Min(m,n);
P.SetGrid( g );
P.MakeIdentity( m );
P.ReserveSwaps( minDim );
DistPermutation PB(g);
vector<F> panelBuf, pivotBuf;
const Int bsize = Blocksize();
for( Int k=0; k<minDim; k+=bsize )
{
const Int nb = Min(bsize,minDim-k);
const IR ind1( k, k+nb ), ind2( k+nb, END ), indB( k, END );
auto A11 = A( ind1, ind1 );
auto A12 = A( ind1, ind2 );
auto A21 = A( ind2, ind1 );
auto A22 = A( ind2, ind2 );
auto AB = A( indB, ALL );
const Int A21Height = A21.Height();
const Int A21LocHeight = A21.LocalHeight();
const Int panelLDim = nb+A21LocHeight;
FastResize( panelBuf, panelLDim*nb );
A11_STAR_STAR.Attach
( nb, nb, g, 0, 0, &panelBuf[0], panelLDim, 0 );
A21_MC_STAR.Attach
( A21Height, nb, g, A21.ColAlign(), 0, &panelBuf[nb], panelLDim, 0 );
A11_STAR_STAR = A11;
A21_MC_STAR = A21;
lu::Panel( A11_STAR_STAR, A21_MC_STAR, P, PB, k, pivotBuf );
PB.PermuteRows( AB );
// Perhaps we should give up perfectly distributing this operation since
// it's total contribution is only O(n^2)
A12_STAR_VR.AlignWith( A22 );
A12_STAR_VR = A12;
LocalTrsm
( LEFT, LOWER, NORMAL, UNIT, F(1), A11_STAR_STAR, A12_STAR_VR );
A12_STAR_MR.AlignWith( A22 );
A12_STAR_MR = A12_STAR_VR;
LocalGemm( NORMAL, NORMAL, F(-1), A21_MC_STAR, A12_STAR_MR, F(1), A22 );
A11 = A11_STAR_STAR;
A12 = A12_STAR_MR;
A21 = A21_MC_STAR;
}
}
template<typename F>
void LU
( ElementalMatrix<F>& A,
DistPermutation& P,
DistPermutation& Q )
{
DEBUG_CSE
lu::Full( A, P, Q );
}
#define PROTO(F) \
template void LU( Matrix<F>& A ); \
template void LU( ElementalMatrix<F>& A ); \
template void LU( DistMatrix<F,STAR,STAR>& A ); \
template void LU \
( Matrix<F>& A, \
Permutation& P ); \
template void LU \
( ElementalMatrix<F>& A, \
DistPermutation& P ); \
template void LU \
( Matrix<F>& A, \
Permutation& P, \
Permutation& Q ); \
template void LU \
( ElementalMatrix<F>& A, \
DistPermutation& P, \
DistPermutation& Q ); \
template void LUMod \
( Matrix<F>& A, \
Permutation& P, \
const Matrix<F>& u, \
const Matrix<F>& v, \
bool conjugate, \
Base<F> tau ); \
template void LUMod \
( ElementalMatrix<F>& A, \
DistPermutation& P, \
const ElementalMatrix<F>& u, \
const ElementalMatrix<F>& v, \
bool conjugate, \
Base<F> tau ); \
template void lu::Panel \
( Matrix<F>& APan, \
Permutation& P, \
Permutation& PB, \
Int offset ); \
template void lu::Panel \
( DistMatrix<F, STAR,STAR>& A11, \
DistMatrix<F, MC, STAR>& A21, \
DistPermutation& P, \
DistPermutation& PB, \
Int offset, \
vector<F>& pivotBuf ); \
template void lu::SolveAfter \
( Orientation orientation, \
const Matrix<F>& A, \
Matrix<F>& B ); \
template void lu::SolveAfter \
( Orientation orientation, \
const ElementalMatrix<F>& A, \
ElementalMatrix<F>& B ); \
template void lu::SolveAfter \
( Orientation orientation, \
const Matrix<F>& A, \
const Permutation& P, \
Matrix<F>& B ); \
template void lu::SolveAfter \
( Orientation orientation, \
const ElementalMatrix<F>& A, \
const DistPermutation& P, \
ElementalMatrix<F>& B ); \
template void lu::SolveAfter \
( Orientation orientation, \
const Matrix<F>& A, \
const Permutation& P, \
const Permutation& Q, \
Matrix<F>& B ); \
template void lu::SolveAfter \
( Orientation orientation, \
const ElementalMatrix<F>& A, \
const DistPermutation& P, \
const DistPermutation& Q, \
ElementalMatrix<F>& B );
#define EL_NO_INT_PROTO
#define EL_ENABLE_DOUBLEDOUBLE
#define EL_ENABLE_QUADDOUBLE
#define EL_ENABLE_QUAD
#define EL_ENABLE_BIGFLOAT
#include <El/macros/Instantiate.h>
} // namespace El
| 27.028481
| 80
| 0.581197
|
jeffhammond
|
ce2362fd20e4c8d5e4280906d3909c0995a22f73
| 8,264
|
cpp
|
C++
|
test/helpers/test_helpers.cpp
|
xhochy/duckdb
|
20ba65f96794ab53f7a66e22d9bc58d59d8bc623
|
[
"MIT"
] | null | null | null |
test/helpers/test_helpers.cpp
|
xhochy/duckdb
|
20ba65f96794ab53f7a66e22d9bc58d59d8bc623
|
[
"MIT"
] | null | null | null |
test/helpers/test_helpers.cpp
|
xhochy/duckdb
|
20ba65f96794ab53f7a66e22d9bc58d59d8bc623
|
[
"MIT"
] | 1
|
2019-09-06T09:58:14.000Z
|
2019-09-06T09:58:14.000Z
|
// #define CATCH_CONFIG_RUNNER
#include "catch.hpp"
#include "execution/operator/persistent/buffered_csv_reader.hpp"
#include "common/file_system.hpp"
#include "common/value_operations/value_operations.hpp"
#include "compare_result.hpp"
#include "main/query_result.hpp"
#include "test_helpers.hpp"
#include "parser/parsed_data/copy_info.hpp"
#include <cmath>
using namespace std;
#define TESTING_DIRECTORY_NAME "duckdb_unittest_tempdir"
namespace duckdb {
bool NO_FAIL(QueryResult &result) {
if (!result.success) {
fprintf(stderr, "Query failed with message: %s\n", result.error.c_str());
}
return result.success;
}
bool NO_FAIL(unique_ptr<QueryResult> result) {
return NO_FAIL(*result);
}
void TestDeleteDirectory(string path) {
FileSystem fs;
if (fs.DirectoryExists(path)) {
fs.RemoveDirectory(path);
}
}
void TestDeleteFile(string path) {
FileSystem fs;
if (fs.FileExists(path)) {
fs.RemoveFile(path);
}
}
void DeleteDatabase(string path) {
TestDeleteFile(path);
TestDeleteFile(path + ".wal");
}
void TestCreateDirectory(string path) {
FileSystem fs;
fs.CreateDirectory(path);
}
string TestCreatePath(string suffix) {
FileSystem fs;
return fs.JoinPath(TESTING_DIRECTORY_NAME, suffix);
}
bool CHECK_COLUMN(QueryResult &result_, size_t column_number, vector<duckdb::Value> values) {
unique_ptr<MaterializedQueryResult> materialized;
if (result_.type == QueryResultType::STREAM_RESULT) {
materialized = ((StreamQueryResult &)result_).Materialize();
}
auto &result = materialized ? *materialized : (MaterializedQueryResult &)result_;
if (!result.success) {
fprintf(stderr, "Query failed with message: %s\n", result.error.c_str());
return false;
}
if (!(result.names.size() == result.types.size())) {
// column names do not match
result.Print();
return false;
}
if (values.size() == 0) {
if (result.collection.count != 0) {
result.Print();
return false;
} else {
return true;
}
}
if (result.collection.count == 0) {
result.Print();
return false;
}
if (column_number >= result.types.size()) {
result.Print();
return false;
}
size_t chunk_index = 0;
for (size_t i = 0; i < values.size();) {
if (chunk_index >= result.collection.chunks.size()) {
// ran out of chunks
result.Print();
return false;
}
// check this vector
auto &vector = result.collection.chunks[chunk_index]->data[column_number];
if (i + vector.count > values.size()) {
// too many values in this vector
result.Print();
return false;
}
for (size_t j = 0; j < vector.count; j++) {
// NULL <> NULL, hence special handling
if (vector.GetValue(j).is_null && values[i + j].is_null) {
continue;
}
if (!Value::ValuesAreEqual(vector.GetValue(j), values[i + j])) {
// FAIL("Incorrect result! Got " + vector.GetValue(j).ToString()
// +
// " but expected " + values[i + j].ToString());
result.Print();
return false;
}
}
chunk_index++;
i += vector.count;
}
return true;
}
bool CHECK_COLUMN(unique_ptr<duckdb::QueryResult> &result, size_t column_number, vector<duckdb::Value> values) {
return CHECK_COLUMN(*result, column_number, values);
}
bool CHECK_COLUMN(unique_ptr<duckdb::MaterializedQueryResult> &result, size_t column_number,
vector<duckdb::Value> values) {
return CHECK_COLUMN((QueryResult &)*result, column_number, values);
}
string compare_csv(duckdb::QueryResult &result, string csv, bool header) {
assert(result.type == QueryResultType::MATERIALIZED_RESULT);
auto &materialized = (MaterializedQueryResult &)result;
if (!materialized.success) {
fprintf(stderr, "Query failed with message: %s\n", materialized.error.c_str());
return materialized.error;
}
string error;
if (!compare_result(csv, materialized.collection, materialized.sql_types, header, error)) {
return error;
}
return "";
}
string show_diff(DataChunk &left, DataChunk &right) {
if (left.column_count != right.column_count) {
return StringUtil::Format("Different column counts: %d vs %d", (int)left.column_count, (int)right.column_count);
}
if (left.size() != right.size()) {
return StringUtil::Format("Different sizes: %zu vs %zu", left.size(), right.size());
}
string difference;
for (size_t i = 0; i < left.column_count; i++) {
bool has_differences = false;
auto &left_vector = left.data[i];
auto &right_vector = right.data[i];
string left_column = StringUtil::Format("Result\n------\n%s [", TypeIdToString(left_vector.type).c_str());
string right_column = StringUtil::Format("Expect\n------\n%s [", TypeIdToString(right_vector.type).c_str());
if (left_vector.type == right_vector.type) {
for (size_t j = 0; j < left_vector.count; j++) {
auto left_value = left_vector.GetValue(j);
auto right_value = right_vector.GetValue(j);
if (!Value::ValuesAreEqual(left_value, right_value)) {
left_column += left_value.ToString() + ",";
right_column += right_value.ToString() + ",";
has_differences = true;
} else {
left_column += "_,";
right_column += "_,";
}
}
} else {
left_column += "...";
right_column += "...";
}
left_column += "]\n";
right_column += "]\n";
if (has_differences) {
difference += StringUtil::Format("Difference in column %d:\n", i);
difference += left_column + "\n" + right_column + "\n";
}
}
return difference;
}
bool compare_chunk(DataChunk &left, DataChunk &right) {
if (left.column_count != right.column_count) {
return false;
}
if (left.size() != right.size()) {
return false;
}
for (size_t i = 0; i < left.column_count; i++) {
auto &left_vector = left.data[i];
auto &right_vector = right.data[i];
if (left_vector.type == right_vector.type) {
for (size_t j = 0; j < left_vector.count; j++) {
auto left_value = left_vector.GetValue(j);
auto right_value = right_vector.GetValue(j);
if (!Value::ValuesAreEqual(left_value, right_value)) {
return false;
}
}
}
}
return true;
}
//! Compares the result of a pipe-delimited CSV with the given DataChunk
//! Returns true if they are equal, and stores an error_message otherwise
bool compare_result(string csv, ChunkCollection &collection, vector<SQLType> sql_types, bool has_header,
string &error_message) {
assert(collection.types.size() == sql_types.size());
// set up the intermediate result chunk
vector<TypeId> internal_types;
for (auto &type : sql_types) {
internal_types.push_back(GetInternalType(type));
}
DataChunk parsed_result;
parsed_result.Initialize(internal_types);
// set up the CSV reader
CopyInfo info;
info.delimiter = '|';
info.header = true;
info.quote = '"';
// convert the CSV string into a stringstream
istringstream csv_stream(csv);
BufferedCSVReader reader(info, sql_types, csv_stream);
index_t collection_index = 0;
index_t tuple_count = 0;
while (true) {
// parse a chunk from the CSV file
try {
parsed_result.Reset();
reader.ParseCSV(parsed_result);
} catch (Exception &ex) {
error_message = "Could not parse CSV: " + string(ex.what());
return false;
}
if (parsed_result.size() == 0) {
// out of tuples in CSV file
if (collection_index < collection.chunks.size()) {
error_message = StringUtil::Format("Too many tuples in result! Found %llu tuples, but expected %llu",
collection.count, tuple_count);
return false;
}
return true;
}
if (collection_index >= collection.chunks.size()) {
// ran out of chunks in the collection, but there are still tuples in the result
// keep parsing the csv file to get the total expected count
while (parsed_result.size() > 0) {
tuple_count += parsed_result.size();
parsed_result.Reset();
reader.ParseCSV(parsed_result);
}
error_message = StringUtil::Format("Too few tuples in result! Found %llu tuples, but expected %llu",
collection.count, tuple_count);
return false;
}
// same counts, compare tuples in chunks
if (!compare_chunk(*collection.chunks[collection_index], parsed_result)) {
error_message = show_diff(*collection.chunks[collection_index], parsed_result);
}
collection_index++;
tuple_count += parsed_result.size();
}
}
} // namespace duckdb
| 29.726619
| 114
| 0.683204
|
xhochy
|
ce24207e63ef7af8be2c6ed86b898a9a988824bf
| 3,693
|
cc
|
C++
|
tools/gn/source_file.cc
|
asdfghjjklllllaaa/gn
|
23d22bcaa71666e872a31fd3ec363727f305417e
|
[
"BSD-3-Clause"
] | null | null | null |
tools/gn/source_file.cc
|
asdfghjjklllllaaa/gn
|
23d22bcaa71666e872a31fd3ec363727f305417e
|
[
"BSD-3-Clause"
] | null | null | null |
tools/gn/source_file.cc
|
asdfghjjklllllaaa/gn
|
23d22bcaa71666e872a31fd3ec363727f305417e
|
[
"BSD-3-Clause"
] | null | null | null |
// Copyright (c) 2013 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 "tools/gn/source_file.h"
#include "base/logging.h"
#include "tools/gn/filesystem_utils.h"
#include "tools/gn/source_dir.h"
#include "util/build_config.h"
namespace {
void AssertValueSourceFileString(const std::string& s) {
#if defined(OS_WIN)
DCHECK(s[0] == '/' ||
(s.size() > 2 && s[0] != '/' && s[1] == ':' && IsSlash(s[2])));
#else
DCHECK(s[0] == '/');
#endif
DCHECK(!EndsWithSlash(s)) << s;
}
SourceFile::Type GetSourceFileType(const std::string& file) {
base::StringPiece extension = FindExtension(&file);
if (extension == "cc" || extension == "cpp" || extension == "cxx")
return SourceFile::SOURCE_CPP;
if (extension == "h" || extension == "hpp" || extension == "hxx" ||
extension == "hh" || extension == "inc" || extension == "ipp" ||
extension == "inl")
return SourceFile::SOURCE_H;
if (extension == "c")
return SourceFile::SOURCE_C;
if (extension == "m")
return SourceFile::SOURCE_M;
if (extension == "mm")
return SourceFile::SOURCE_MM;
if (extension == "rc")
return SourceFile::SOURCE_RC;
if (extension == "S" || extension == "s" || extension == "asm")
return SourceFile::SOURCE_S;
if (extension == "o" || extension == "obj")
return SourceFile::SOURCE_O;
if (extension == "def")
return SourceFile::SOURCE_DEF;
if (extension == "rs")
return SourceFile::SOURCE_RS;
if (extension == "go")
return SourceFile::SOURCE_GO;
return SourceFile::SOURCE_UNKNOWN;
}
} // namespace
SourceFile::SourceFile(const std::string& value) : value_(value) {
DCHECK(!value_.empty());
AssertValueSourceFileString(value_);
NormalizePath(&value_);
type_ = GetSourceFileType(value_);
}
SourceFile::SourceFile(std::string&& value) : value_(std::move(value)) {
DCHECK(!value_.empty());
AssertValueSourceFileString(value_);
NormalizePath(&value_);
type_ = GetSourceFileType(value_);
}
std::string SourceFile::GetName() const {
if (is_null())
return std::string();
DCHECK(value_.find('/') != std::string::npos);
size_t last_slash = value_.rfind('/');
return std::string(&value_[last_slash + 1], value_.size() - last_slash - 1);
}
SourceDir SourceFile::GetDir() const {
if (is_null())
return SourceDir();
DCHECK(value_.find('/') != std::string::npos);
size_t last_slash = value_.rfind('/');
return SourceDir(value_.substr(0, last_slash + 1));
}
base::FilePath SourceFile::Resolve(const base::FilePath& source_root) const {
return ResolvePath(value_, true, source_root);
}
void SourceFile::SetValue(const std::string& value) {
value_ = value;
type_ = GetSourceFileType(value_);
}
SourceFileTypeSet::SourceFileTypeSet() : empty_(true) {
memset(flags_, 0,
sizeof(bool) * static_cast<int>(SourceFile::SOURCE_NUMTYPES));
}
bool SourceFileTypeSet::CSourceUsed() const {
return empty_ || Get(SourceFile::SOURCE_CPP) || Get(SourceFile::SOURCE_H) ||
Get(SourceFile::SOURCE_C) || Get(SourceFile::SOURCE_M) ||
Get(SourceFile::SOURCE_MM) || Get(SourceFile::SOURCE_RC) ||
Get(SourceFile::SOURCE_S) || Get(SourceFile::SOURCE_O) ||
Get(SourceFile::SOURCE_DEF);
}
bool SourceFileTypeSet::RustSourceUsed() const {
return Get(SourceFile::SOURCE_RS);
}
bool SourceFileTypeSet::GoSourceUsed() const {
return Get(SourceFile::SOURCE_GO);
}
bool SourceFileTypeSet::MixedSourceUsed() const {
return (1 << static_cast<int>(CSourceUsed())
<< static_cast<int>(RustSourceUsed())
<< static_cast<int>(GoSourceUsed())) > 2;
}
| 30.02439
| 78
| 0.665042
|
asdfghjjklllllaaa
|
ce25b0ff5f72ee8bdf2f7d5b9dd4fdd7c6059fa5
| 1,137
|
cpp
|
C++
|
gcommon/source/gguinodecomponentanimation.cpp
|
DavidCoenFish/ancient-code-0
|
243fb47b9302a77f9b9392b6e3f90bba2ef3c228
|
[
"Unlicense"
] | null | null | null |
gcommon/source/gguinodecomponentanimation.cpp
|
DavidCoenFish/ancient-code-0
|
243fb47b9302a77f9b9392b6e3f90bba2ef3c228
|
[
"Unlicense"
] | null | null | null |
gcommon/source/gguinodecomponentanimation.cpp
|
DavidCoenFish/ancient-code-0
|
243fb47b9302a77f9b9392b6e3f90bba2ef3c228
|
[
"Unlicense"
] | null | null | null |
//
// GGuiNodeComponentAnimation.h
//
// Created by David Coen on 2011 04 12
// Copyright 2010 Pleasure seeking morons. All rights reserved.
//
#include "GGuiNodeComponentAnimation.h"
#include "GGuiType.h"
//static public methods
/*static*/ GGuiNodeComponentAnimation::TPointerGuiNodeComponentBase GGuiNodeComponentAnimation::Factory(
const void* const in_data,
GGuiManager& inout_manager,
GGuiNode& inout_parent,
TArrayGuiNodeComponentPostLoadData& inout_arrayPostLoad
)
{
return TPointerGuiNodeComponentBase();
}
/*static*/ const unsigned int GGuiNodeComponentAnimation::GetComponentFlag()
{
return GGuiType::TComponentFlag::TAnimation;
}
//constructor
GGuiNodeComponentAnimation::GGuiNodeComponentAnimation()
: GGuiNodeComponentBase(GetComponentFlag())
{
return;
}
/*virtual*/ GGuiNodeComponentAnimation::~GGuiNodeComponentAnimation()
{
return;
}
//implement GGuiNodeComponentBase
/*virtual*/ void GGuiNodeComponentAnimation::OnPostLoad(
const int in_passCount,
GGuiManager& inout_manager,
GGuiNode& inout_parent,
void* const in_data,
TArrayGuiNodeComponentPostLoadData& inout_arrayComponentBase
)
{
return;
}
| 23.204082
| 104
| 0.80387
|
DavidCoenFish
|
ce25d01edcf0739c118e954e9399eb22d0ed8a97
| 5,215
|
cc
|
C++
|
components/sync/engine/net/server_connection_manager.cc
|
zealoussnow/chromium
|
fd8a8914ca0183f0add65ae55f04e287543c7d4a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668
|
2015-01-01T01:57:10.000Z
|
2022-03-31T23:33:32.000Z
|
components/sync/engine/net/server_connection_manager.cc
|
zealoussnow/chromium
|
fd8a8914ca0183f0add65ae55f04e287543c7d4a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86
|
2015-10-21T13:02:42.000Z
|
2022-03-14T07:50:50.000Z
|
components/sync/engine/net/server_connection_manager.cc
|
zealoussnow/chromium
|
fd8a8914ca0183f0add65ae55f04e287543c7d4a
|
[
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941
|
2015-01-02T11:32:21.000Z
|
2022-03-31T16:35:46.000Z
|
// 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 "components/sync/engine/net/server_connection_manager.h"
#include <errno.h>
#include <ostream>
#include "base/metrics/histogram.h"
#include "build/build_config.h"
#include "components/sync/engine/cancelation_signal.h"
#include "components/sync/engine/net/url_translator.h"
#include "components/sync/engine/syncer.h"
#include "net/http/http_status_code.h"
#include "url/gurl.h"
namespace syncer {
namespace {
#define ENUM_CASE(x) \
case HttpResponse::x: \
return #x; \
break
const char* GetServerConnectionCodeString(
HttpResponse::ServerConnectionCode code) {
switch (code) {
ENUM_CASE(NONE);
ENUM_CASE(CONNECTION_UNAVAILABLE);
ENUM_CASE(IO_ERROR);
ENUM_CASE(SYNC_SERVER_ERROR);
ENUM_CASE(SYNC_AUTH_ERROR);
ENUM_CASE(SERVER_CONNECTION_OK);
}
NOTREACHED();
return "";
}
#undef ENUM_CASE
} // namespace
HttpResponse::HttpResponse()
: server_status(NONE),
net_error_code(-1),
http_status_code(-1),
content_length(-1),
payload_length(-1) {}
// static
HttpResponse HttpResponse::Uninitialized() {
return HttpResponse();
}
// static
HttpResponse HttpResponse::ForNetError(int net_error_code) {
HttpResponse response;
response.server_status = CONNECTION_UNAVAILABLE;
response.net_error_code = net_error_code;
return response;
}
// static
HttpResponse HttpResponse::ForIoError() {
HttpResponse response;
response.server_status = IO_ERROR;
return response;
}
// static
HttpResponse HttpResponse::ForUnspecifiedError() {
HttpResponse response;
response.server_status = CONNECTION_UNAVAILABLE;
return response;
}
// static
HttpResponse HttpResponse::ForHttpStatusCode(int http_status_code) {
HttpResponse response;
if (http_status_code == net::HTTP_OK) {
response.server_status = SERVER_CONNECTION_OK;
} else if (http_status_code == net::HTTP_UNAUTHORIZED) {
response.server_status = SYNC_AUTH_ERROR;
} else {
response.server_status = SYNC_SERVER_ERROR;
}
response.http_status_code = http_status_code;
return response;
}
// static
HttpResponse HttpResponse::ForSuccess() {
HttpResponse response;
response.server_status = SERVER_CONNECTION_OK;
return response;
}
ServerConnectionManager::ServerConnectionManager()
: server_response_(HttpResponse::Uninitialized()) {}
ServerConnectionManager::~ServerConnectionManager() = default;
bool ServerConnectionManager::SetAccessToken(const std::string& access_token) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!access_token.empty()) {
access_token_.assign(access_token);
return true;
}
access_token_.clear();
// The access token could be non-empty in cases like server outage/bug. E.g.
// token returned by first request is considered invalid by sync server and
// because of token server's caching policy, etc, same token is returned on
// second request. Need to notify sync frontend again to request new token,
// otherwise backend will stay in SYNC_AUTH_ERROR state while frontend thinks
// everything is fine and takes no actions.
SetServerResponse(HttpResponse::ForHttpStatusCode(net::HTTP_UNAUTHORIZED));
return false;
}
void ServerConnectionManager::ClearAccessToken() {
access_token_.clear();
}
void ServerConnectionManager::SetServerResponse(
const HttpResponse& server_response) {
// Notify only if the server status changed, except for SYNC_AUTH_ERROR: In
// that case, always notify in order to poke observers to do something about
// it.
bool notify =
(server_response.server_status == HttpResponse::SYNC_AUTH_ERROR ||
server_response_.server_status != server_response.server_status);
server_response_ = server_response;
if (notify) {
NotifyStatusChanged();
}
}
void ServerConnectionManager::NotifyStatusChanged() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (auto& observer : listeners_) {
observer.OnServerConnectionEvent(
ServerConnectionEvent(server_response_.server_status));
}
}
HttpResponse ServerConnectionManager::PostBufferWithCachedAuth(
const std::string& buffer_in,
std::string* buffer_out) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
HttpResponse http_response = PostBuffer(buffer_in, access_token_, buffer_out);
SetServerResponse(http_response);
return http_response;
}
void ServerConnectionManager::AddListener(
ServerConnectionEventListener* listener) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
listeners_.AddObserver(listener);
}
void ServerConnectionManager::RemoveListener(
ServerConnectionEventListener* listener) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
listeners_.RemoveObserver(listener);
}
std::ostream& operator<<(std::ostream& s, const struct HttpResponse& hr) {
s << " Response Code (bogus on error): " << hr.http_status_code;
s << " Content-Length (bogus on error): " << hr.content_length;
s << " Server Status: " << GetServerConnectionCodeString(hr.server_status);
return s;
}
} // namespace syncer
| 28.972222
| 80
| 0.757047
|
zealoussnow
|
ce2780b5b5a30459f87d7568b78a1dd5b25f299c
| 2,602
|
hpp
|
C++
|
libmeasure/common/CMgmt.hpp
|
akiml/ampehre
|
383a863442574ea2e6a6ac853a9b99e153daeccf
|
[
"BSD-2-Clause"
] | 3
|
2016-01-20T13:41:52.000Z
|
2018-04-10T17:50:49.000Z
|
libmeasure/common/CMgmt.hpp
|
akiml/ampehre
|
383a863442574ea2e6a6ac853a9b99e153daeccf
|
[
"BSD-2-Clause"
] | null | null | null |
libmeasure/common/CMgmt.hpp
|
akiml/ampehre
|
383a863442574ea2e6a6ac853a9b99e153daeccf
|
[
"BSD-2-Clause"
] | null | null | null |
/*
* CMgmt.hpp
*
* Copyright (C) 2015, Achim Lösch <achim.loesch@upb.de>, Christoph Knorr <cknorr@mail.uni-paderborn.de>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. See the LICENSE file for details.
*
* encoding: UTF-8
* tab size: 4
*
* author: Achim Lösch (achim.loesch@upb.de)
* created: 3/31/14
* version: 0.1.0 - initial implementation
* 0.1.4 - add signals for measuring system start and stop
* 0.1.13 - make GPU frequency settable
* 0.1.15 - make CPU frequency settable
* 0.2.2 - add semaphore to synchronize the start of the measurements
* 0.4.0 - MIC integration into libmeasure
* 0.5.1 - modularized libmeasure
* 0.5.3 - add abstract measure and abstract measure thread
* 0.5.4 - add dynamic loading of resource specific libraries
* 0.5.5 - add ResourceLibraryHandler to hide specific libraries in CMgmt
* 0.6.0 - add ioctl for the ipmi timeout, new parameters to skip certain measurements
* and to select between the full or light library.
* 0.7.0 - modularized measurement struct
*/
#ifndef __CMGMT_HPP__
#define __CMGMT_HPP__
#include <map>
#include <signal.h>
#include <dlfcn.h>
#include <math.h>
#include <boost/foreach.hpp>
#include "CLogger.hpp"
#include "CSemaphore.hpp"
#include "CMeasureAbstractResource.hpp"
#include "CMeasureAbstractThread.hpp"
#include "CResourceLibraryHandler.hpp"
#include "../../include/ms_measurement.h"
#include "CMutex.hpp"
typedef std::map<int , NLibMeasure::CResourceLibraryHandler*> map_type;
class CMgmt {
private:
NLibMeasure::CLogger mLogger;
map_type mResources;
NLibMeasure::CSemaphore mStartSem;
struct sigaction *mpActionStart;
struct sigaction *mpActionStop;
lib_variant mLibVariant;
public:
CMgmt(cpu_governor cpuGovernor, uint64_t cpuFrequencyMin, uint64_t cpuFrequencyMax, gpu_frequency gpuFrequency, ipmi_timeout_setting timeout_setting, skip_ms_rate skip_ms_rate, lib_variant variant);
~CMgmt();
void initMaxelerForceIdle(void);
void regSighandlerStart(void(*signal_handler)(int));
void regSighandlerStop(void(*signal_handler)(int));
void lockResourceMutexStart(int res);
void unlockResourceMutexStart(int res);
void postStartSem(int count);
void initMeasureThread(int res, MS_LIST* pMsList);
void finiMeasureThread(int res);
void startMeasureThread(int res);
void stopMeasureThread(int res);
void joinMeasureThread(int res);
};
#endif /* __CMGMT_HPP__ */
| 32.123457
| 201
| 0.714066
|
akiml
|
ce2924d19ad001b98a323af036880186f60808c3
| 8,492
|
hxx
|
C++
|
Source/SIMPLib/ITK/itkInPlaceImageToDream3DDataFilter.hxx
|
mhitzem/SIMPL
|
cd8a58f8d955d232ea039121cc5286cc9545c7a6
|
[
"NRL"
] | 3
|
2018-01-18T18:27:02.000Z
|
2021-06-13T06:10:52.000Z
|
Source/SIMPLib/ITK/itkInPlaceImageToDream3DDataFilter.hxx
|
mhitzem/SIMPL
|
cd8a58f8d955d232ea039121cc5286cc9545c7a6
|
[
"NRL"
] | 211
|
2016-07-27T12:18:16.000Z
|
2021-11-02T13:42:11.000Z
|
Source/SIMPLib/ITK/itkInPlaceImageToDream3DDataFilter.hxx
|
mhitzem/SIMPL
|
cd8a58f8d955d232ea039121cc5286cc9545c7a6
|
[
"NRL"
] | 23
|
2016-02-15T21:23:47.000Z
|
2021-08-11T15:35:24.000Z
|
#pragma once
#include "itkInPlaceImageToDream3DDataFilter.h"
#include "itkGetComponentsDimensions.h"
#include "SIMPLib/Geometry/ImageGeom.h"
#include <QString>
namespace itk
{
template <typename PixelType, unsigned int VDimension>
InPlaceImageToDream3DDataFilter<PixelType, VDimension>::InPlaceImageToDream3DDataFilter()
{
m_DataArrayName = (SIMPL::Defaults::CellAttributeMatrixName).toStdString();
m_AttributeMatrixArrayName = (SIMPL::CellData::ImageData).toStdString();
// Create the output. We use static_cast<> here because we know the default
// output must be of type DecoratorType
typename DecoratorType::Pointer output = static_cast<DecoratorType*>(this->MakeOutput(0).GetPointer());
this->ProcessObject::SetNumberOfRequiredOutputs(1);
this->ProcessObject::SetNthOutput(0, output.GetPointer());
this->SetNumberOfRequiredInputs(1);
this->SetDataContainer(DataContainer::NullPointer());
m_InPlace = true;
}
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::SetDataContainer(DataContainer::Pointer dc)
{
DecoratorType* outputPtr = this->GetOutput();
outputPtr->Set(dc);
}
template <typename PixelType, unsigned int VDimension>
ProcessObject::DataObjectPointer InPlaceImageToDream3DDataFilter<PixelType, VDimension>::MakeOutput(ProcessObject::DataObjectPointerArraySizeType input)
{
return DecoratorType::New().GetPointer();
}
template <typename PixelType, unsigned int VDimension>
InPlaceImageToDream3DDataFilter<PixelType, VDimension>::~InPlaceImageToDream3DDataFilter()
{
}
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::SetInput(const ImageType* input)
{
// Process object is not const-correct so the const_cast is required here
this->ProcessObject::SetNthInput(0, const_cast<ImageType*>(input));
}
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::GenerateOutputInformation()
{
DecoratorType* outputPtr = this->GetOutput();
DataContainer::Pointer dataContainer = outputPtr->Get();
// float tol = 0.000001;
QVector<float> torigin(3, 0);
QVector<float> tspacing(3, 1);
std::vector<size_t> tDims(3, 1);
// Get Input image properties
ImagePointer inputPtr = dynamic_cast<ImageType*>(this->GetInput(0));
typename ImageType::PointType origin = inputPtr->GetOrigin();
typename ImageType::SpacingType spacing = inputPtr->GetSpacing();
typename ImageType::SizeType size = inputPtr->GetLargestPossibleRegion().GetSize();
//// Create image geometry (data container)
ImageGeom::Pointer imageGeom;
IGeometry::Pointer geom = dataContainer->getGeometry();
if(geom)
{
imageGeom = std::dynamic_pointer_cast<ImageGeom>(geom);
if(!imageGeom)
{
itkExceptionMacro("Data container contains a geometry that is not ImageGeometry");
}
}
else
{
imageGeom = ImageGeom::CreateGeometry(SIMPL::Geometry::ImageGeometry);
if(!imageGeom)
{
itkExceptionMacro("Could not create image geometry");
}
}
for(size_t i = 0; i < VDimension; i++)
{
torigin[i] = origin[i];
tspacing[i] = spacing[i];
tDims[i] = size[i];
}
imageGeom->setOrigin(FloatVec3Type(torigin[0], torigin[1], torigin[2]));
imageGeom->setSpacing(FloatVec3Type(tspacing[0], tspacing[1], tspacing[2]));
imageGeom->setDimensions(SizeVec3Type(tDims[0], tDims[1], tDims[2]));
dataContainer->setGeometry(imageGeom);
}
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::GenerateData()
{
DecoratorType* outputPtr = this->GetOutput();
DataContainer::Pointer dataContainer = outputPtr->Get();
ImagePointer inputPtr = dynamic_cast<ImageType*>(this->GetInput(0));
// Create data array
std::vector<size_t> cDims = ITKDream3DHelper::GetComponentsDimensions<PixelType>();
IGeometry::Pointer geom = dataContainer->getGeometry();
ImageGeom::Pointer imageGeom = std::dynamic_pointer_cast<ImageGeom>(geom);
std::vector<size_t> tDims = imageGeom->getDimensions().toContainer<std::vector<size_t>>();
AttributeMatrix::Pointer attrMat;
if(dataContainer->doesAttributeMatrixExist(m_AttributeMatrixArrayName.c_str()))
{
attrMat = dataContainer->getAttributeMatrix(m_AttributeMatrixArrayName.c_str());
// Check that attribute matrix type is 'cell'
if(attrMat->getType() != AttributeMatrix::Type::Cell)
{
itkExceptionMacro("Attribute matrix is not of type AttributeMatrix::Type::Cell.");
}
// Check that if size does not match, there are no other data array than the one we expect.
// That makes it possible to modify the attribute matrix without having to worry.
std::vector<size_t> matDims = attrMat->getTupleDimensions();
if(matDims != tDims)
{
if(!((attrMat->doesAttributeArrayExist(m_DataArrayName.c_str()) && attrMat->getNumAttributeArrays() == 1) ||
!(attrMat->doesAttributeArrayExist(m_DataArrayName.c_str()) && attrMat->getNumAttributeArrays() == 0)))
{
itkExceptionMacro("Tuples dimension of existing matrix array do not match image size and other attribute arrays are contained in this attribute matrix.");
}
dataContainer->removeAttributeMatrix(m_AttributeMatrixArrayName.c_str());
attrMat = dataContainer->createAndAddAttributeMatrix(tDims, m_AttributeMatrixArrayName.c_str(), AttributeMatrix::Type::Cell);
}
}
else
{
attrMat = dataContainer->createAndAddAttributeMatrix(tDims, m_AttributeMatrixArrayName.c_str(), AttributeMatrix::Type::Cell);
}
// Checks if doesAttributeArray exists and remove it if it is the case
if(attrMat->doesAttributeArrayExist(m_DataArrayName.c_str()))
{
IDataArray::Pointer attrArray = attrMat->getAttributeArray(m_DataArrayName.c_str());
if(attrArray->getNumberOfTuples() != imageGeom->getNumberOfElements())
{
attrMat->removeAttributeArray(m_DataArrayName.c_str());
}
}
typename DataArrayPixelType::Pointer data;
inputPtr->SetBufferedRegion(inputPtr->GetLargestPossibleRegion());
if(m_InPlace)
{
inputPtr->GetPixelContainer()->SetContainerManageMemory(false);
data = DataArrayPixelType::WrapPointer(reinterpret_cast<ValueType*>(inputPtr->GetBufferPointer()), imageGeom->getNumberOfElements(), cDims, this->GetDataArrayName().c_str(), true);
}
else
{
data = DataArrayPixelType::CreateArray(imageGeom->getNumberOfElements(), cDims, m_DataArrayName.c_str(), true);
if(nullptr != data.get())
{
::memcpy(data->getPointer(0), reinterpret_cast<ValueType*>(inputPtr->GetBufferPointer()), imageGeom->getNumberOfElements() * sizeof(ValueType));
}
}
attrMat->addOrReplaceAttributeArray(data);
outputPtr->Set(dataContainer);
}
// Check that names has been initialized correctly
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::CheckValidArrayPathComponentName(std::string var) const
{
if(var.find('/') != std::string::npos)
{
itkExceptionMacro("Name contains a '/'");
}
if(var.empty())
{
itkExceptionMacro("Name is empty");
}
}
// Check that the inputs have been initialized correctly
template <typename PixelType, unsigned int VDimension>
void InPlaceImageToDream3DDataFilter<PixelType, VDimension>::VerifyPreconditions() ITKv5_CONST
{
// Test only works if image if of dimension 2 or 3
if(VDimension != 2 && VDimension != 3)
{
itkExceptionMacro("Dimension must be 2 or 3.");
}
CheckValidArrayPathComponentName(m_AttributeMatrixArrayName);
CheckValidArrayPathComponentName(m_DataArrayName);
// Verify data container
const DecoratorType* outputPtr = this->GetOutput();
if(!outputPtr->Get())
{
itkExceptionMacro("Data container not set");
}
//
Superclass::VerifyPreconditions();
}
/**
*
*/
template <typename PixelType, unsigned int VDimension>
typename InPlaceImageToDream3DDataFilter<PixelType, VDimension>::DecoratorType* InPlaceImageToDream3DDataFilter<PixelType, VDimension>::GetOutput()
{
return itkDynamicCastInDebugMode<DecoratorType*>(this->GetPrimaryOutput());
}
template <typename PixelType, unsigned int VDimension>
const typename InPlaceImageToDream3DDataFilter<PixelType, VDimension>::DecoratorType* InPlaceImageToDream3DDataFilter<PixelType, VDimension>::GetOutput() const
{
return itkDynamicCastInDebugMode<const DecoratorType*>(this->GetPrimaryOutput());
}
} // namespace itk
| 39.682243
| 184
| 0.753768
|
mhitzem
|
ce293b72ed3af3114e15282a4a53eb16a99a11db
| 226
|
cpp
|
C++
|
Geekforgeeks/C)Recursion/3_printing_n_to_1.cpp
|
i-see-pixels/Coffee-and-code
|
d0dde5417291f112bd7e0183b9753cfac38e135c
|
[
"MIT"
] | 12
|
2021-08-19T17:02:21.000Z
|
2021-11-08T13:06:19.000Z
|
Geekforgeeks/C)Recursion/3_printing_n_to_1.cpp
|
i-see-pixels/Coffee-and-code
|
d0dde5417291f112bd7e0183b9753cfac38e135c
|
[
"MIT"
] | 11
|
2021-09-30T05:26:41.000Z
|
2021-10-29T20:28:44.000Z
|
Geekforgeeks/C)Recursion/3_printing_n_to_1.cpp
|
i-see-pixels/Coffee-and-code
|
d0dde5417291f112bd7e0183b9753cfac38e135c
|
[
"MIT"
] | 29
|
2021-08-17T14:14:41.000Z
|
2021-10-31T15:14:04.000Z
|
#include<bits/stdc++.h>
using namespace std;
void func(int n)
{
if(n==0)
{
cout<<endl;
return ;
}
cout<<n<<" ";
func(n-1);
}
int main(){
func(5);
func(2);
return 0;
}
| 13.294118
| 24
| 0.433628
|
i-see-pixels
|
ce2a94e8f660d3fa8a5f4e4207dbc93374709a30
| 6,558
|
cpp
|
C++
|
src/plugins/anim/nodes/loaders/amc.cpp
|
martin-pr/possumwood
|
0ee3e0fe13ef27cf14795a79fb497e4d700bef63
|
[
"MIT"
] | 232
|
2017-10-09T11:45:28.000Z
|
2022-03-28T11:14:46.000Z
|
src/plugins/anim/nodes/loaders/amc.cpp
|
martin-pr/possumwood
|
0ee3e0fe13ef27cf14795a79fb497e4d700bef63
|
[
"MIT"
] | 26
|
2019-01-20T21:38:25.000Z
|
2021-10-16T03:57:17.000Z
|
src/plugins/anim/nodes/loaders/amc.cpp
|
martin-pr/possumwood
|
0ee3e0fe13ef27cf14795a79fb497e4d700bef63
|
[
"MIT"
] | 33
|
2017-10-26T19:20:38.000Z
|
2022-03-16T11:21:43.000Z
|
#include <OpenEXR/ImathMatrixAlgo.h>
#include <actions/io.h>
#include <possumwood_sdk/datatypes/filename.h>
#include <possumwood_sdk/node_implementation.h>
#include <boost/filesystem.hpp>
#include <boost/lexical_cast.hpp>
#include <fstream>
#include <unordered_map>
#include "datatypes/animation.h"
#include "tokenizer.h"
namespace {
class AmcTokenizer : public anim::Tokenizer {
private:
State start, filename_start, filename_separator, filename, comment, hash;
public:
AmcTokenizer(std::istream& in)
: anim::Tokenizer(in), start(this), filename_start(this), filename_separator(this), filename(this),
comment(this), hash(this) {
// start parsing in "start" state
start.setActive();
start = [this](char c) {
// don't read any space-like characters
if(std::isspace(c)) {
emit();
reject();
}
// hashbangs and comments start with #
else if(c == '#') {
emit();
reject();
hash.setActive();
}
// anything else is an acceptable character
else
accept(c);
};
hash = [this](char c) {
// decide if this is a hashbang (accepted as a keyword) or a comment
if(c == '!') {
accept("#!");
filename_start.setActive();
}
else
comment.setActive();
};
comment = [this](char c) {
// endline character ends comments
if(c == '\n')
start.setActive();
// reject everything
reject();
};
filename_start = [this](char c) {
// don't read any space-like characters
if(std::isspace(c))
filename_separator.setActive();
// anything else is an acceptable character
else
accept(c);
};
filename_separator = [this](char c) {
if(std::isspace(c)) {
emit();
reject();
}
else
filename.setActive();
};
filename = [this](char c) {
// endline character ends filename
if(c == '\n') {
emit();
reject();
start.setActive();
}
// else anything can be part of a filename, including spaces
else
accept(c);
};
}
};
////
Imath::V3f makeTranslation(float value, const std::string& key) {
if(key == "tx")
return Imath::V3f(value, 0, 0);
else if(key == "ty")
return Imath::V3f(0, value, 0);
else if(key == "tz")
return Imath::V3f(0, 0, value);
else
throw std::runtime_error("unknown transformation component " + key);
}
Imath::Quatf makeRotation(float value, const std::string& key) {
Imath::Quatf q;
if(key == "rx")
q.setAxisAngle(Imath::V3f(1, 0, 0), value / 180.0f * M_PI);
else if(key == "ry")
q.setAxisAngle(Imath::V3f(0, 1, 0), value / 180.0f * M_PI);
else if(key == "rz")
q.setAxisAngle(Imath::V3f(0, 0, 1), value / 180.0f * M_PI);
else
throw std::runtime_error("unknown transformation component " + key);
return q;
}
void readFrame(anim::Tokenizer& tokenizer, anim::Skeleton& skel,
const std::unordered_map<std::string, unsigned>& jointIds) {
const anim::Skeleton orig = skel;
// reset all base transforms to identity first
for(auto& j : skel)
j.tr() = anim::Transform();
auto it = jointIds.find(tokenizer.next().value);
while(it != jointIds.end()) {
// read values for the joint
Imath::V3f tr(0, 0, 0);
Imath::Quatf rot(1, 0, 0, 0);
for(const std::string& dof : skel[it->second].attributes()["dof"].as<std::vector<std::string>>())
if(dof[0] == 't')
tr = makeTranslation(boost::lexical_cast<float>(tokenizer.next().value), dof) + tr;
else
rot = makeRotation(boost::lexical_cast<float>(tokenizer.next().value), dof) * rot;
// assign the value
skel[it->second].tr() = orig[it->second].tr() * anim::Transform(rot, tr);
// and process next bone
it = jointIds.find(tokenizer.next().value);
}
}
// adapted from http://research.cs.wisc.edu/graphics/Courses/cs-838-1999/Jeff/ASF-AMC.html
std::unique_ptr<anim::Animation> doLoad(const boost::filesystem::path& filename, const anim::Skeleton& skel) {
// open the file and instantiate the tokenizer
std::ifstream in(filename.string());
AmcTokenizer tokenizer(in);
// assuming the CMU database at 120 FPS
std::unique_ptr<anim::Animation> result(new anim::Animation(120));
unsigned frameNo = 1;
// std::cout << "READING START " << filename << std::endl;
// while(!tokenizer.eof())
// std::cout << " - " << tokenizer.next().value << std::endl;
// std::cout << "READING END" << std::endl;
// read the hashbang
std::string asfFilename;
tokenizer >> "#!OML:ASF" >> asfFilename;
// build an index on top of the skeleton, to make bone lookup faster
std::unordered_map<std::string, unsigned> jointIds;
for(unsigned a = 0; a < skel.size(); ++a)
jointIds[skel[a].name()] = a;
assert(skel.size() == jointIds.size());
tokenizer >> ":FULLY-SPECIFIED";
tokenizer >> ":DEGREES";
tokenizer.next();
while(!tokenizer.eof()) {
// read the frame number, which has to match the counter
const unsigned currentFrame = boost::lexical_cast<unsigned>(tokenizer.current().value);
if(currentFrame != frameNo)
throw std::runtime_error("expecting frame #" + boost::lexical_cast<std::string>(frameNo) + " but found #" +
tokenizer.current().value);
// add a frame and read it
anim::Skeleton frame = skel;
readFrame(tokenizer, frame, jointIds);
result->addFrame(frame);
++frameNo;
}
return result;
}
//////////
dependency_graph::InAttr<possumwood::Filename> a_filename;
dependency_graph::InAttr<anim::Skeleton> a_skel;
dependency_graph::OutAttr<anim::Animation> a_anim;
dependency_graph::State compute(dependency_graph::Values& data) {
dependency_graph::State out;
const possumwood::Filename filename = data.get(a_filename);
const anim::Skeleton skel = data.get(a_skel);
if(!filename.filename().empty() && boost::filesystem::exists(filename.filename()) && !skel.empty()) {
std::unique_ptr<anim::Animation> ptr(doLoad(filename.filename(), skel).release());
data.set(a_anim, *ptr);
}
else {
data.set(a_anim, anim::Animation());
out.addError("Cannot load filename " + filename.filename().string());
}
return out;
}
void init(possumwood::Metadata& meta) {
meta.addAttribute(a_filename, "filename",
possumwood::Filename({
"AMC files (*.amc)",
}));
meta.addAttribute(a_skel, "skeleton", anim::Skeleton(), possumwood::AttrFlags::kVertical);
meta.addAttribute(a_anim, "animation", anim::Animation(), possumwood::AttrFlags::kVertical);
meta.addInfluence(a_filename, a_anim);
meta.addInfluence(a_skel, a_anim);
meta.setCompute(compute);
}
possumwood::NodeImplementation s_impl("anim/loaders/amc", init);
} // namespace
| 26.877049
| 110
| 0.655078
|
martin-pr
|
ce2c80dce1ad26804c366ba833a063f7ba431034
| 400,339
|
cpp
|
C++
|
edk/edkImages/poweredEDKColor.cpp
|
Edimartin/edk-source
|
de9a152e91344e201669b0421e5f44dea40cebf9
|
[
"MIT"
] | null | null | null |
edk/edkImages/poweredEDKColor.cpp
|
Edimartin/edk-source
|
de9a152e91344e201669b0421e5f44dea40cebf9
|
[
"MIT"
] | null | null | null |
edk/edkImages/poweredEDKColor.cpp
|
Edimartin/edk-source
|
de9a152e91344e201669b0421e5f44dea40cebf9
|
[
"MIT"
] | null | null | null |
#include "poweredEDKColor.h"
/*
Library C++ poweredEDKColor - Image with powered by edk technology for be used in background with color.
Copyright 2013 Eduardo Moura Sales Martins (edimartin@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
edk::uint32 edk::poweredEDKColor::size = 107544u;
edk::char8 edk::poweredEDKColor::name[20] = "poweredEDKColor.png";
edk::uchar8 edk::poweredEDKColor::vec[107544u] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,3,158,0,0,4,56,8,6,0,0,0,97,109,3,154,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0 \
,9,112,72,89,115,0,0,13,215,0,0,13,215,1,66,40,155,120,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,111,114,103 \
,155,238,60,26,0,0,32,0,73,68,65,84,120,156,236,221,121,120,20,85,218,247,241,111,135,128,236,8,130,34,184,0,130,32,40,142,40,110,32,168,168,40,139,136,138,168,143,130,142,140,235 \
,136,142,43,234,59,56,58,110,35,243,248,40,138,226,130,131,12,238,11,42,136,160,136,134,77,81,92,64,65,20,101,19,217,145,132,132,144,253,126,255,56,233,88,169,116,39,213,73,119,58,224 \
,239,115,93,125,65,85,87,157,115,87,39,233,238,187,206,6,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34 \
,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,146,28,161,100,7 \
,32,34,9,149,10,28,12,180,4,246,3,246,5,154,20,63,215,24,168,5,100,0,69,64,54,176,13,216,0,108,2,214,0,59,171,57,94,17,17,17,17,217,3,41,241,148,221,193,41,192,53 \
,213,88,223,174,226,71,58,46,25,203,2,126,2,150,1,171,128,194,106,140,37,22,181,128,110,64,47,224,56,224,48,224,80,160,78,37,203,51,92,242,249,61,240,21,48,23,152,143,123,61,226 \
,109,60,208,44,14,229,140,4,54,86,225,252,20,224,5,96,175,42,198,241,38,240,106,21,203,184,10,232,83,197,50,0,198,0,95,68,216,255,127,64,235,56,148,95,93,174,2,182,7,56,238 \
,124,224,130,4,199,2,80,0,100,2,121,184,27,52,57,192,47,184,191,153,213,192,218,226,231,170,195,49,192,109,213,84,87,60,204,3,198,6,60,246,5,160,94,156,235,223,133,251,121,133,255 \
,159,137,123,95,219,94,252,111,6,238,103,185,1,216,18,231,186,119,7,213,245,251,20,254,27,42,194,189,230,5,184,215,124,109,241,99,29,238,102,104,44,78,7,254,18,199,24,1,238,3,150 \
,196,185,204,176,84,220,123,241,126,113,44,115,13,112,59,238,117,21,17,145,24,253,25,151,4,213,132,71,14,240,13,48,25,184,2,56,40,129,215,29,68,61,224,92,224,21,220,7,119,162,175 \
,63,31,248,4,184,150,248,126,80,78,142,83,124,35,170,24,199,113,113,138,35,173,138,113,0,252,24,135,56,10,128,230,81,202,255,62,78,215,90,93,143,86,1,95,183,209,53,32,86,195,221 \
,160,90,133,75,156,46,7,218,6,140,191,50,206,174,1,215,27,203,99,114,12,215,182,35,201,177,230,0,43,129,25,192,67,192,69,64,103,246,236,27,247,53,233,247,41,19,247,153,115,63,208 \
,159,138,111,80,214,2,166,197,57,134,159,3,212,91,89,143,196,57,214,76,224,200,4,197,42,82,101,169,201,14,64,100,55,179,23,238,77,253,72,224,127,138,247,125,138,251,34,53,137,196,180 \
,6,70,210,22,184,1,247,133,182,113,180,131,154,52,105,66,167,78,157,56,248,224,131,105,217,178,37,251,238,187,47,205,154,53,163,86,173,90,212,171,87,143,218,181,107,179,99,199,14,0,50 \
,50,50,216,180,105,19,155,55,111,230,215,95,127,101,249,242,229,172,95,191,222,95,100,42,208,187,248,49,22,152,138,187,91,59,167,138,215,51,141,223,95,207,170,24,0,60,87,197,243,227,225 \
,68,160,41,193,90,232,34,233,8,116,136,67,28,159,1,91,227,80,142,196,46,5,104,83,252,24,86,188,111,37,240,95,224,121,92,139,142,212,124,123,225,222,111,219,2,125,61,251,55,1,31 \
,226,18,210,233,84,254,111,93,202,215,144,223,63,115,192,37,87,11,128,23,113,127,75,254,207,220,66,224,98,220,231,114,231,56,197,208,14,120,25,232,71,124,123,60,93,2,252,45,142,229,21 \
,225,222,107,22,199,177,76,145,184,82,226,41,187,157,231,159,127,158,174,93,187,38,172,252,157,59,119,146,157,157,77,102,102,38,153,153,153,108,219,182,141,229,203,151,179,108,217,50,150,47,95 \
,78,122,122,186,255,148,19,138,31,247,1,79,0,15,147,184,4,244,96,224,1,96,40,238,206,110,41,71,29,117,20,189,123,247,230,228,147,79,230,232,163,143,230,128,3,14,168,82,101,233,233 \
,233,44,89,178,132,180,180,52,230,204,153,195,220,185,115,201,205,205,13,63,93,11,56,167,248,241,57,174,107,86,101,91,250,102,224,90,231,82,1,122,245,234,197,35,143,60,18,232,196,155,110 \
,186,137,57,115,74,242,222,211,128,186,252,222,141,46,86,253,195,255,105,213,170,21,239,190,251,110,224,19,103,205,154,197,168,81,163,194,155,169,192,153,184,47,43,149,49,208,187,49,97,194,4 \
,142,60,178,226,155,216,11,23,46,228,186,235,174,243,238,122,47,72,101,127,250,211,159,120,238,185,170,228,235,241,55,126,252,248,184,196,52,109,218,52,90,182,108,25,135,136,74,203,205,205,37 \
,59,59,155,93,187,118,145,147,147,195,142,29,59,88,189,122,53,107,214,172,97,213,170,85,172,92,185,50,210,141,155,118,192,221,192,157,192,127,112,173,179,155,226,29,219,35,143,60,66,175,94 \
,189,226,93,108,149,244,232,209,195,251,222,81,41,167,159,126,58,15,62,248,96,149,202,40,42,42,34,35,35,163,100,59,35,35,131,172,172,44,50,51,51,201,202,202,34,61,61,157,45,91,182 \
,176,97,195,6,126,249,229,23,54,108,216,192,182,109,17,123,123,238,135,75,28,46,193,189,223,188,137,187,233,149,134,75,142,246,24,137,250,125,10,255,237,228,228,228,176,107,215,46,118,237,218 \
,197,218,181,107,89,183,110,29,235,214,173,99,205,154,53,172,88,177,194,255,123,19,2,122,20,63,238,195,181,24,254,27,240,30,180,3,215,106,187,16,216,39,188,243,193,7,31,228,244,211,79 \
,15,28,223,168,81,163,152,53,107,86,120,243,12,224,65,226,215,5,249,104,224,153,240,70,195,134,13,121,253,245,215,105,209,162,69,160,147,179,179,179,185,240,194,11,253,239,49,163,129,41,113 \
,138,79,68,228,15,171,84,87,219,249,243,231,91,50,173,93,187,214,38,78,156,104,67,135,14,181,122,245,234,69,234,234,178,14,24,28,231,215,160,46,238,67,54,219,95,95,231,206,157,237,95 \
,255,250,151,173,90,181,42,225,215,158,158,158,110,47,188,240,130,157,113,198,25,22,10,133,34,93,251,27,64,101,179,221,143,195,229,52,105,210,196,242,242,242,2,197,244,248,227,143,251,99,56 \
,171,146,245,31,128,187,99,108,128,141,24,49,34,166,215,102,203,150,45,86,171,86,45,111,28,177,116,39,244,251,164,50,175,197,237,183,223,238,127,45,142,40,167,142,146,174,182,61,123,246,140 \
,233,90,171,195,232,209,163,253,215,82,169,174,182,107,214,172,73,218,53,172,94,189,218,38,78,156,104,151,93,118,153,181,108,217,50,210,223,203,54,96,72,108,191,26,17,149,234,26,249,206,59 \
,239,36,237,154,163,241,189,87,86,170,171,237,208,161,67,147,18,123,70,70,134,205,155,55,207,158,124,242,73,187,242,202,43,173,99,199,142,229,117,117,252,26,215,50,182,59,171,49,191,79,57 \
,57,57,54,111,222,60,123,248,225,135,109,224,192,129,86,183,110,221,72,175,249,114,34,119,47,61,5,55,206,218,0,107,218,180,169,253,240,195,15,129,235,222,186,117,171,181,109,219,214,91,79 \
,17,112,97,28,94,223,22,184,113,152,6,88,40,20,178,55,222,120,35,112,92,69,69,69,118,193,5,23,248,95,131,151,216,179,187,127,139,136,84,155,26,149,120,122,237,216,177,195,198,141,27 \
,103,237,218,181,139,244,97,248,36,149,159,216,199,171,51,174,235,76,169,242,79,62,249,100,123,255,253,247,173,168,168,40,41,215,190,108,217,50,27,49,98,132,165,166,166,70,250,50,125,94,37 \
,174,243,102,111,57,179,102,205,10,20,199,170,85,171,252,245,143,171,228,235,124,165,183,156,183,223,126,59,230,215,228,196,19,79,244,191,14,101,90,165,3,104,138,27,75,107,128,93,112,193,5 \
,129,235,239,210,165,139,183,254,213,21,212,163,196,179,26,229,231,231,219,148,41,83,172,123,247,238,254,235,42,2,238,136,225,247,35,146,26,147,40,68,179,59,39,158,145,172,90,181,202,158,122 \
,234,41,255,223,188,247,49,135,221,119,172,93,141,253,125,202,200,200,176,39,158,120,194,14,62,248,96,255,235,189,147,200,55,29,175,241,30,215,177,99,71,219,190,125,123,224,250,190,249,230,27 \
,107,208,160,129,191,158,63,85,225,181,173,141,231,198,34,96,119,222,121,103,76,175,193,189,247,222,235,191,246,207,137,255,4,92,34,34,127,88,53,54,241,12,203,203,203,179,49,99,198,248,63 \
,160,12,55,246,167,126,21,174,125,8,190,86,206,14,29,58,212,168,47,2,75,151,46,181,190,125,251,70,250,226,245,40,110,156,91,80,135,122,207,191,241,198,27,3,199,112,248,225,135,123,235 \
,93,83,201,215,250,221,112,25,117,235,214,181,172,172,172,136,117,237,216,177,35,106,28,15,60,240,128,255,53,232,89,137,56,46,242,150,49,105,210,164,64,175,193,202,149,43,99,77,192,149,120 \
,38,65,81,81,145,61,247,220,115,145,222,43,174,142,229,151,196,167,198,38,10,97,123,90,226,233,245,221,119,223,217,53,215,92,99,117,234,212,241,255,76,115,113,55,21,42,115,3,42,153,106 \
,252,239,83,118,118,182,221,122,235,173,254,158,55,59,129,99,35,92,207,56,239,245,244,237,219,215,10,10,10,2,215,245,202,43,175,248,235,89,133,167,11,111,140,198,122,99,233,215,175,159,21 \
,22,22,6,142,229,205,55,223,244,199,242,43,193,223,27,69,68,36,128,26,159,120,134,125,255,253,247,254,36,200,128,183,136,45,1,11,27,137,155,200,160,164,172,107,174,185,198,178,179,179,147 \
,125,153,17,61,251,236,179,145,190,76,191,70,108,75,147,252,16,62,183,125,251,246,129,235,30,53,106,148,191,222,88,91,26,234,225,190,180,24,96,103,158,121,102,212,186,238,186,235,46,203,201 \
,201,137,248,220,226,197,139,253,113,60,20,99,28,224,38,205,48,192,106,213,170,101,91,182,108,9,244,26,68,232,114,92,81,119,63,37,158,73,244,197,23,95,216,222,123,239,237,189,190,28,160 \
,75,76,191,41,191,171,241,137,194,158,156,120,134,173,90,181,202,134,15,31,30,105,24,194,92,220,26,202,187,139,26,255,251,20,54,113,226,68,75,73,73,241,190,214,43,128,6,190,235,73,5 \
,102,121,175,233,134,27,110,136,169,158,219,110,187,205,255,51,157,69,236,243,164,12,247,150,209,161,67,135,152,90,95,191,254,250,107,255,103,108,54,208,61,230,159,174,72,18,105,114,33,217,163 \
,133,39,0,9,162,65,131,6,212,169,83,181,158,177,157,58,117,98,206,156,57,156,121,230,153,124,254,249,231,225,221,131,113,19,18,196,146,132,220,128,107,49,4,160,110,221,186,76,154,52,137 \
,33,67,42,55,28,108,243,230,205,124,244,209,71,164,165,165,177,126,253,122,182,110,221,202,182,109,219,200,207,207,167,89,179,102,52,111,222,156,230,205,155,115,220,113,199,113,218,105,167,113,216 \
,97,135,197,92,199,136,17,35,232,217,179,39,253,251,247,103,229,202,149,225,221,67,112,137,231,185,4,155,13,112,26,112,19,192,79,63,253,196,242,229,203,233,212,169,83,133,39,13,24,48,128 \
,135,30,42,245,242,14,32,182,153,253,78,193,211,50,221,191,127,255,168,7,190,242,202,43,156,116,210,73,244,237,219,183,204,115,93,187,118,229,160,131,14,98,237,218,146,9,75,251,3,163,202 \
,28,24,93,120,82,34,0,78,56,225,4,154,55,143,182,26,74,105,239,189,87,106,30,161,108,96,118,12,245,10,191,79,118,82,158,250,245,235,179,215,94,85,93,230,21,142,57,230,24,94,126 \
,249,101,250,245,235,135,153,129,251,59,121,20,183,14,161,236,134,218,180,105,195,196,137,19,25,54,108,24,151,95,126,185,247,125,160,39,110,162,155,1,192,210,164,5,88,13,62,255,252,115,38 \
,76,152,16,232,216,134,13,27,210,160,65,3,58,118,236,200,209,71,31,29,232,189,222,111,248,240,225,252,248,227,143,60,240,192,3,225,93,237,113,221,107,255,237,57,172,0,183,182,239,194,226 \
,231,121,236,177,199,56,226,136,35,184,226,138,43,2,213,243,192,3,15,240,205,55,223,240,193,7,31,132,119,245,1,254,133,27,34,18,68,119,220,122,213,0,52,106,212,136,183,223,126,155,189 \
,247,222,59,208,201,155,54,109,98,208,160,65,236,220,185,51,188,203,112,75,186,69,90,163,89,164,198,82,226,41,123,180,241,227,199,115,227,141,55,6,62,190,118,237,218,28,124,240,193,116,237 \
,218,149,222,189,123,115,254,249,231,211,170,85,108,189,88,154,54,109,202,187,239,190,203,49,199,28,195,186,117,235,194,187,71,3,175,227,214,3,171,200,249,184,153,250,0,216,123,239,189,153,58 \
,117,42,61,123,198,214,107,51,59,59,155,23,94,120,129,103,158,121,134,197,139,23,135,191,220,150,177,106,213,170,146,255,191,248,226,139,128,155,209,245,226,139,47,230,250,235,175,231,160,131,130 \
,47,85,218,169,83,39,230,207,159,79,191,126,253,248,250,235,175,195,187,207,6,30,199,173,253,89,145,146,196,19,96,234,212,169,129,190,140,28,127,252,241,52,111,222,156,173,91,75,86,14,25 \
,128,91,247,45,168,82,153,230,128,1,145,87,85,249,254,251,239,249,249,231,159,153,54,109,90,196,196,51,124,238,147,79,62,25,222,60,28,183,156,198,234,128,113,156,136,103,189,184,104,113,248 \
,237,220,185,147,143,63,254,216,187,107,22,149,159,217,183,66,87,93,117,21,219,183,39,118,245,136,165,75,171,255,251,249,221,119,223,205,152,49,99,2,29,219,186,117,107,14,57,228,16,186,119 \
,239,206,153,103,158,201,169,167,158,74,74,74,108,29,27,206,60,243,76,134,14,29,202,43,175,188,18,222,117,26,110,252,216,55,49,21,84,5,243,230,205,99,236,216,177,9,175,39,47,47,47 \
,225,117,248,93,112,193,5,229,62,223,160,65,3,26,54,108,72,195,134,13,105,214,172,25,237,218,181,227,200,35,143,164,93,187,118,49,255,44,189,78,61,245,84,150,44,89,194,101,151,93,198 \
,219,111,191,29,222,221,6,55,238,243,100,224,219,74,23,94,195,173,88,177,130,103,158,121,166,226,3,35,232,212,169,19,183,220,114,11,151,93,118,25,181,106,5,239,157,60,122,244,104,94,120 \
,225,5,126,253,245,215,240,174,145,192,255,226,146,179,176,223,112,159,69,159,2,77,0,174,189,246,90,14,61,244,80,78,58,233,164,10,235,168,85,171,22,47,191,252,50,199,30,123,44,63,255 \
,92,242,49,126,19,240,21,174,151,74,121,246,195,245,124,170,11,16,10,133,152,52,105,18,157,59,7,91,237,37,55,55,151,115,207,61,215,123,35,3,220,12,187,149,157,53,93,68,68,202,81 \
,233,174,182,143,62,250,168,191,123,76,76,143,148,148,20,27,62,124,184,253,242,203,47,49,117,203,49,51,155,58,117,170,191,188,32,107,67,28,138,91,138,197,192,141,53,156,51,103,78,204,117 \
,191,249,230,155,118,224,129,7,86,233,218,195,245,151,215,181,52,154,205,155,55,91,135,14,29,252,229,93,22,224,250,107,227,214,195,51,192,122,245,234,21,184,206,97,195,134,121,235,42,36,182 \
,174,109,37,51,12,30,126,248,225,81,235,120,248,225,135,13,176,54,109,218,68,61,230,189,247,222,243,95,247,95,99,136,99,140,247,220,239,190,251,46,208,181,79,153,50,197,95,231,149,1,234 \
,170,116,87,219,86,173,90,85,249,119,171,18,143,132,119,181,189,245,214,91,43,29,95,151,46,93,236,253,247,223,143,233,117,52,51,251,252,243,207,253,101,221,23,240,58,189,42,221,53,114,242 \
,228,201,201,248,89,86,75,87,219,202,198,215,160,65,3,59,238,184,227,108,212,168,81,54,127,254,252,74,79,224,86,88,88,104,183,220,114,139,191,252,13,196,103,141,222,68,74,234,239,211,169 \
,167,158,26,83,23,84,179,136,93,243,35,141,245,4,55,1,81,65,248,184,22,45,90,196,52,35,252,146,37,75,172,97,195,134,222,122,178,129,110,229,188,150,181,113,55,28,74,206,25,61,122 \
,116,76,215,54,124,248,112,255,181,77,161,114,195,119,68,68,36,128,120,38,158,75,129,69,81,30,63,2,27,137,240,65,216,172,89,51,155,55,111,94,76,31,22,102,102,61,122,244,240,150,179 \
,11,55,99,105,52,169,184,187,177,37,231,188,252,242,203,49,213,151,159,159,111,87,95,125,117,164,15,243,237,192,43,192,8,220,18,27,251,227,102,220,13,1,205,129,142,184,46,193,79,224,90 \
,101,75,157,127,244,209,71,219,218,181,107,99,138,229,167,159,126,242,143,97,203,192,173,67,90,145,87,194,231,164,166,166,218,182,109,219,2,213,247,218,107,175,249,175,249,242,0,117,1,116,245 \
,158,119,251,237,183,71,173,163,119,239,222,37,199,45,89,178,36,226,49,217,217,217,86,191,126,125,111,28,239,7,140,3,60,201,96,219,182,109,3,191,214,35,70,140,240,214,87,4,180,142,165 \
,46,37,158,78,132,196,243,107,202,190,79,252,0,252,130,111,252,53,184,49,185,79,61,245,84,76,175,101,81,81,145,181,110,221,218,91,206,188,128,215,233,165,196,51,130,120,197,219,177,99,71 \
,123,252,241,199,99,190,1,23,118,215,93,119,249,203,92,74,213,38,157,75,180,120,254,62,221,140,107,201,143,244,56,23,184,10,120,22,55,11,120,201,121,253,250,245,139,41,225,159,63,127,190 \
,191,222,82,11,26,251,220,228,61,246,136,35,142,176,204,204,204,192,117,189,254,250,235,254,113,188,171,113,75,164,68,82,106,98,163,129,3,7,198,52,153,208,152,49,99,252,215,181,24,104,24 \
,203,15,83,68,68,98,19,207,196,179,188,117,13,195,154,227,198,131,124,236,61,183,126,253,250,182,124,249,242,192,117,155,153,253,247,191,255,245,215,127,113,57,245,94,231,61,118,248,240,225,49 \
,213,149,159,159,111,131,7,15,246,215,151,137,27,99,24,203,7,85,10,48,8,151,136,151,148,117,240,193,7,219,207,63,255,28,83,76,17,190,132,188,29,181,214,223,93,226,61,231,197,23,95 \
,12,84,87,122,122,186,127,86,201,55,3,94,239,29,222,250,230,206,157,27,177,252,223,126,251,173,212,210,49,15,60,240,64,212,88,6,14,28,232,141,99,23,101,39,187,136,164,189,55,142,235 \
,175,191,62,208,117,23,21,21,249,19,193,175,2,94,119,188,18,207,121,184,197,208,19,253,168,29,240,186,226,153,120,150,119,163,104,47,220,184,173,127,225,153,121,186,118,237,218,182,120,241,226 \
,152,94,207,1,3,6,120,235,172,76,31,230,120,38,10,87,145,248,159,101,219,24,174,45,94,137,231,148,8,113,156,2,12,196,205,36,253,55,92,175,148,207,241,244,58,241,62,14,60,240,192 \
,152,214,91,244,186,234,170,171,252,229,5,27,8,153,28,241,252,125,58,37,96,157,123,3,31,121,207,13,186,164,150,153,123,255,247,213,251,127,21,212,247,188,247,248,65,131,6,197,148,16,222 \
,113,199,29,254,250,62,166,236,240,181,43,188,199,116,234,212,201,210,211,211,3,215,241,222,123,239,249,215,134,222,132,235,178,45,34,34,9,84,221,137,167,215,245,184,22,36,131,216,186,126,154 \
,153,109,219,182,205,63,227,222,179,81,234,169,15,172,15,31,183,239,190,251,198,244,1,101,102,118,205,53,215,248,175,117,25,174,235,110,101,213,199,181,76,148,148,121,216,97,135,197,28,151,239 \
,75,181,1,199,87,80,239,62,120,186,66,93,116,209,69,129,235,234,211,167,143,183,158,29,4,155,81,119,126,248,156,102,205,154,69,157,102,255,165,151,94,42,117,29,39,156,112,66,212,56,158 \
,126,250,105,255,53,15,10,16,199,141,222,115,102,206,156,25,232,154,23,45,90,228,175,235,222,0,117,65,252,18,207,247,202,173,165,250,85,87,226,233,117,10,158,22,208,139,47,190,56,166,215 \
,51,194,223,110,172,179,156,37,35,81,168,46,241,74,60,163,189,247,70,82,11,56,9,120,12,55,54,176,84,89,195,134,13,179,93,187,118,197,20,75,78,78,142,117,235,214,205,31,211,201,113 \
,122,141,226,45,89,191,79,109,188,231,198,58,243,172,111,77,233,255,84,80,215,94,184,155,102,37,231,220,113,199,29,129,235,42,44,44,180,179,206,58,203,127,173,143,121,202,63,30,55,206,222 \
,0,107,210,164,137,125,255,253,247,129,203,95,186,116,169,53,110,220,216,91,118,46,149,91,158,75,164,70,81,31,113,145,242,61,142,167,91,216,156,57,115,248,241,199,31,3,159,220,172,89,51 \
,218,180,105,227,221,21,109,185,132,43,113,221,95,1,184,227,142,59,104,210,164,73,224,122,166,76,153,194,83,79,61,229,221,245,3,208,27,215,106,89,89,217,192,165,184,59,195,128,155,92,39 \
,150,201,154,0,30,124,240,65,255,68,29,163,43,56,101,27,176,32,188,49,99,198,12,10,10,10,2,213,229,155,140,167,17,238,53,40,79,115,224,184,240,198,89,103,157,21,117,82,11,223,172 \
,177,44,92,184,144,205,155,55,71,60,182,95,191,126,132,66,161,82,161,85,16,71,169,99,26,53,106,68,239,222,21,133,238,76,155,54,173,76,168,129,78,148,120,250,24,183,40,60,0,211,167 \
,79,143,58,153,87,36,245,235,151,233,117,89,147,187,97,254,17,20,226,150,64,185,1,56,16,184,19,183,220,18,0,147,38,77,226,244,211,79,39,43,43,43,112,129,123,237,181,23,147,39,79 \
,166,118,237,82,13,247,143,160,239,97,94,171,241,180,248,123,38,231,171,80,97,97,33,69,69,69,222,93,21,125,104,228,226,186,250,150,172,251,252,208,67,15,241,210,75,47,5,170,47,37,37 \
,133,151,94,122,137,14,29,74,13,215,29,9,12,195,125,150,191,73,241,141,207,148,148,20,254,251,223,255,6,158,181,119,219,182,109,156,125,246,217,236,216,177,195,187,251,26,42,215,13,95,164 \
,70,209,27,158,72,197,74,221,57,77,75,75,139,233,228,182,109,75,245,42,139,54,78,109,68,248,63,45,90,180,224,234,171,131,175,37,159,147,147,195,200,145,35,189,187,178,113,119,172,183,4 \
,143,50,42,195,45,108,191,48,188,99,226,196,137,204,159,63,63,112,1,135,31,126,56,231,158,123,174,119,87,95,220,151,185,242,148,100,83,219,183,111,15,92,223,192,129,3,253,187,42,74,248 \
,206,194,179,184,123,180,101,84,10,11,11,121,255,253,210,67,53,139,138,138,152,62,125,122,196,227,15,56,224,0,254,244,167,63,121,119,245,195,141,167,141,166,9,208,43,188,113,198,25,103,4 \
,94,178,195,151,16,111,66,211,235,39,75,73,23,231,244,244,116,50,50,50,2,159,152,158,158,238,221,44,196,181,242,73,205,176,19,55,131,104,87,60,63,227,121,243,230,113,222,121,231,81,88 \
,24,100,149,40,231,176,195,14,227,154,107,174,241,238,58,10,215,213,87,156,58,120,134,37,52,108,24,124,132,200,250,245,235,253,137,103,144,207,191,205,184,222,40,59,1,204,140,43,174,184,194 \
,187,20,90,185,246,222,123,111,166,76,153,66,163,70,141,188,187,159,198,141,235,47,249,172,191,251,238,187,35,125,54,69,148,159,159,207,5,23,92,224,157,57,23,92,183,225,231,163,156,34,178 \
,91,81,226,41,82,177,159,188,27,235,215,175,143,233,228,198,141,27,123,55,27,69,56,228,56,60,45,161,151,92,114,9,117,235,214,13,92,254,179,207,62,235,191,51,124,47,85,107,233,244,203 \
,199,37,198,37,223,176,238,185,231,158,152,10,240,173,149,150,130,91,72,187,60,165,154,241,166,78,157,26,168,158,67,14,57,196,191,6,105,69,137,103,73,166,153,154,154,202,153,103,158,25,241 \
,160,5,11,22,240,219,111,191,149,13,178,108,107,227,239,5,151,78,98,91,81,254,204,135,125,241,140,97,12,186,140,202,198,141,27,249,242,203,47,189,187,222,199,117,13,151,234,183,203,187,17 \
,116,253,96,40,211,178,179,13,253,12,107,162,149,184,155,67,115,195,59,62,248,224,3,255,250,193,21,186,227,142,59,252,173,158,193,239,50,238,249,46,193,211,205,252,232,163,143,14,124,226,156 \
,57,115,252,187,190,140,116,92,4,139,113,173,148,6,238,70,238,224,193,131,189,75,179,148,171,75,151,46,188,240,194,11,222,30,46,117,129,35,195,27,231,156,115,14,127,255,251,223,3,134,2 \
,55,220,112,3,179,103,151,90,130,121,6,112,107,224,2,68,106,56,37,158,34,21,171,231,221,136,208,45,174,92,249,249,249,165,54,35,28,210,207,187,49,108,216,176,152,202,31,63,126,188,119 \
,115,43,174,123,112,188,125,7,188,17,222,152,53,107,22,43,86,172,8,124,242,233,167,159,206,126,251,237,231,221,213,47,218,177,197,150,225,190,232,1,229,39,120,126,190,164,173,45,110,45,205 \
,72,106,227,18,62,0,78,60,241,68,154,54,141,60,164,207,223,205,54,236,131,15,62,32,55,55,55,72,28,80,126,18,92,242,92,74,74,10,253,250,85,244,242,56,211,167,79,247,223,229,15 \
,254,66,197,79,125,160,93,2,31,205,171,239,82,170,164,100,38,225,80,40,68,243,230,193,194,206,207,207,103,193,130,5,222,93,65,191,48,39,202,254,36,246,231,25,116,146,168,154,104,39,174 \
,133,172,100,65,197,251,238,187,207,191,190,98,185,90,182,108,201,224,193,131,189,187,206,32,248,140,205,123,170,14,192,63,129,146,241,34,77,155,54,229,194,11,47,12,92,128,111,237,208,92,60 \
,93,223,3,120,11,207,16,144,245,235,215,115,206,57,231,176,107,215,174,114,78,249,221,224,193,131,185,235,174,187,202,236,239,220,185,51,147,38,77,242,15,187,136,234,201,39,159,244,15,153,89 \
,142,155,248,42,120,179,186,72,13,167,196,83,164,98,39,120,55,218,181,107,23,211,201,219,182,109,243,110,70,234,127,87,50,249,66,139,22,45,56,242,200,35,35,28,18,217,138,21,43,88,182 \
,108,153,119,215,100,92,87,219,68,40,201,112,205,140,119,222,121,39,240,137,181,106,213,226,212,83,79,245,238,58,134,200,173,191,94,37,73,212,15,63,252,16,56,209,141,33,225,235,137,155,73 \
,49,218,121,191,7,18,37,241,205,204,204,140,218,245,186,123,247,238,236,187,111,169,165,68,35,247,227,117,93,125,207,10,111,28,123,236,177,254,243,130,198,149,7,124,24,232,196,248,58,25,183 \
,4,79,162,30,65,39,75,74,166,122,64,73,115,249,81,71,29,69,157,58,193,230,7,154,57,115,38,153,153,153,222,93,179,226,27,90,204,94,36,177,63,207,138,186,217,215,116,219,241,172,205 \
,155,147,147,195,195,15,63,28,83,1,190,132,42,5,56,61,46,145,213,76,227,137,188,124,217,87,184,223,135,29,184,30,58,255,143,226,214,206,218,181,107,51,97,194,4,90,180,136,182,66,73 \
,105,47,190,248,162,191,197,243,37,92,207,129,88,220,143,91,202,11,128,69,139,22,113,249,229,151,7,30,171,125,207,61,247,148,250,12,137,210,13,55,170,217,179,103,251,231,79,216,142,27,50 \
,147,30,249,12,145,221,147,18,79,145,242,213,7,110,47,217,168,95,159,190,125,251,150,115,120,89,203,151,47,247,110,254,228,123,58,21,207,66,215,189,123,247,14,124,119,20,220,56,35,159,15 \
,98,10,46,54,243,241,76,176,17,203,56,79,128,147,79,62,217,187,89,27,183,20,69,121,74,101,85,65,91,61,79,60,241,68,154,53,107,230,221,21,45,163,44,149,8,70,27,223,185,106,213 \
,42,150,46,93,234,221,85,234,53,142,22,87,132,150,203,163,129,150,17,14,61,30,79,171,94,208,110,182,185,185,185,204,154,85,42,71,153,131,198,6,38,67,35,220,210,24,37,173,86,23,95 \
,92,222,170,73,191,51,51,238,187,239,62,239,174,92,224,213,120,6,39,9,49,21,183,198,43,0,47,189,244,18,57,57,57,129,79,62,245,212,83,73,77,45,181,242,198,158,156,120,30,74,228 \
,37,117,142,194,181,128,151,202,204,14,61,244,80,102,204,152,225,111,21,142,106,230,204,153,252,229,47,127,241,238,202,0,254,81,137,56,13,55,131,254,162,240,142,87,95,125,149,251,239,191,63 \
,208,201,41,41,41,76,158,60,153,142,29,59,146,146,146,194,139,47,190,200,161,135,6,155,84,254,167,159,126,98,200,144,33,222,222,81,5,184,37,221,130,119,43,18,217,77,248,215,28,18,145 \
,223,181,7,38,2,37,131,6,111,184,225,134,152,38,60,248,246,219,111,217,190,189,212,178,124,223,248,14,105,131,103,201,143,35,142,136,109,181,23,95,242,87,132,103,54,216,4,200,199,77,50 \
,116,106,184,110,51,11,156,40,71,184,182,142,192,236,8,135,134,165,225,18,169,198,224,18,188,191,253,237,111,21,214,19,30,171,233,153,157,48,156,216,109,245,29,90,146,225,181,107,215,142,206 \
,157,59,71,44,47,66,55,219,71,129,131,128,78,224,198,159,142,29,59,54,226,185,253,251,247,103,226,196,137,225,205,20,92,23,99,255,36,17,165,50,205,160,147,80,164,165,165,249,91,202,170 \
,109,54,219,174,93,187,178,255,254,251,87,124,96,37,152,25,95,125,21,116,41,210,132,251,19,165,147,249,218,184,53,113,27,226,190,52,119,195,253,76,75,250,104,31,113,196,17,92,127,253,245 \
,129,10,127,240,193,7,89,184,112,161,119,215,4,32,216,224,178,56,105,214,172,89,76,99,233,98,181,113,227,198,192,227,229,118,51,147,112,201,19,219,183,111,103,193,130,5,254,94,29,81,53 \
,105,210,132,46,93,186,176,120,241,226,240,174,174,137,9,177,230,107,208,160,1,29,58,116,224,168,163,142,98,208,160,65,244,239,223,223,159,148,71,148,149,149,197,67,15,61,196,67,15,61,228 \
,157,224,169,8,183,14,109,240,190,207,165,237,2,206,193,173,229,218,10,96,244,232,209,116,238,220,217,63,65,94,68,77,154,52,97,202,148,41,204,156,57,51,240,112,137,140,140,12,206,62,251 \
,108,255,28,2,127,35,249,61,31,68,68,254,176,226,185,142,231,80,162,47,106,126,28,238,75,228,45,192,116,92,215,197,146,115,123,244,232,97,57,57,57,129,235,54,51,27,61,122,180,191,126 \
,255,58,92,103,122,159,127,233,165,151,98,42,255,152,99,142,241,150,189,148,196,123,192,27,239,186,117,235,2,199,186,101,203,22,255,107,241,191,1,234,123,61,124,124,237,218,181,3,175,33,250 \
,242,203,47,251,235,186,212,87,110,123,239,243,35,71,142,140,90,86,223,190,125,189,229,100,225,38,143,120,216,123,254,183,223,126,27,241,220,140,140,12,171,83,167,142,247,252,183,34,92,227,183 \
,225,231,15,58,232,160,192,175,231,200,145,35,253,215,216,62,192,235,233,85,233,117,60,19,41,47,47,207,127,93,79,198,120,93,241,92,199,51,166,71,183,110,221,108,195,134,13,129,234,26,63 \
,126,188,127,113,248,181,64,176,190,133,101,85,122,221,197,68,187,255,254,251,253,175,83,108,99,21,146,179,142,103,16,135,123,203,191,231,158,123,98,138,109,232,208,161,222,216,118,225,153,93,187 \
,6,168,244,239,83,110,110,174,253,246,219,111,129,30,69,69,69,49,189,102,133,133,133,54,111,222,60,187,249,230,155,109,223,125,247,245,255,124,243,169,120,210,186,160,142,197,253,76,12,176,6 \
,13,26,216,55,223,124,19,83,172,65,20,20,20,68,90,11,116,124,57,113,137,236,246,212,226,41,127,52,175,84,124,72,89,67,134,12,97,226,196,137,129,151,184,0,55,171,229,211,79,63,237 \
,221,181,26,248,212,119,88,169,102,163,3,15,140,109,248,147,111,252,232,134,152,78,174,156,82,117,108,219,182,141,214,173,91,71,59,182,148,230,205,155,83,175,94,61,239,132,13,65,154,204,166 \
,1,231,131,155,132,101,230,204,153,92,112,193,5,21,158,212,183,111,95,82,83,83,189,235,127,14,4,254,235,57,164,84,43,99,180,110,182,89,89,89,124,242,201,39,222,93,31,225,22,5,159 \
,134,103,166,193,169,83,167,114,248,225,101,231,48,106,220,184,49,189,122,245,242,118,137,61,13,215,194,29,158,145,168,212,228,71,65,187,217,66,153,46,190,63,80,182,27,183,84,147,112,43,231 \
,101,151,93,230,159,177,180,140,140,140,12,238,184,227,14,255,36,34,185,192,16,226,179,4,146,84,143,229,184,155,147,117,128,152,214,119,134,50,115,5,212,197,221,116,216,24,167,216,146,166,78 \
,157,58,129,199,55,7,145,159,159,207,199,31,127,204,91,111,189,197,59,239,188,195,198,141,17,95,162,149,192,255,0,159,197,169,218,207,129,43,112,115,38,132,118,238,220,201,160,65,131,248,252 \
,243,207,3,143,191,15,226,246,219,111,247,47,211,245,9,16,172,187,132,200,110,74,137,167,72,20,169,169,169,156,118,218,105,220,118,219,109,156,114,202,41,21,159,224,115,239,189,247,178,105,211 \
,38,239,174,199,40,59,59,93,3,239,70,208,137,8,194,124,221,120,183,71,59,46,142,74,245,7,138,180,196,72,121,26,53,106,228,77,60,131,244,89,158,142,235,62,149,2,46,193,11,146,120 \
,54,109,218,148,158,61,123,122,147,198,51,112,221,36,195,131,104,74,50,205,70,141,26,209,187,119,239,136,229,204,154,53,203,63,107,109,56,219,91,128,123,45,154,129,75,2,239,184,227,142,136 \
,101,244,239,223,223,155,120,54,2,122,243,251,56,209,82,153,102,208,196,243,251,239,191,103,229,202,149,222,93,201,152,205,118,143,211,181,107,87,134,12,25,18,245,249,80,40,196,222,123,239,77 \
,221,186,117,105,213,170,21,237,219,183,167,123,247,238,28,116,208,65,21,150,157,145,145,193,243,207,63,207,152,49,99,216,176,161,212,253,155,116,96,48,158,181,114,101,183,80,0,172,199,13,151 \
,136,150,16,69,213,164,73,19,255,174,70,236,1,137,103,60,109,218,180,137,127,254,243,159,76,153,50,165,162,101,204,118,2,7,196,185,250,151,112,55,5,239,0,88,179,102,13,231,158,123,46 \
,31,125,244,81,76,55,160,163,153,56,113,34,255,251,191,165,58,253,172,196,221,124,138,52,243,189,200,30,67,137,167,236,209,58,116,232,80,238,23,73,175,240,151,202,131,15,62,152,46,93,186 \
,208,179,103,79,246,217,103,159,74,213,251,254,251,239,243,239,127,255,219,187,235,7,60,83,197,123,148,74,60,27,52,104,16,225,144,200,10,11,11,253,139,212,87,71,189,156,158,63,0,0,32 \
,0,73,68,65,84,226,89,170,142,88,19,207,134,13,27,178,121,243,230,146,205,0,167,108,193,125,33,63,1,220,235,90,88,88,72,173,90,21,247,74,27,48,96,128,55,241,108,130,91,131,239 \
,35,220,152,209,94,225,39,78,59,237,180,168,95,36,124,173,138,134,75,132,193,125,233,124,31,119,151,157,133,11,23,178,101,203,150,136,179,48,14,24,48,192,63,54,181,63,17,18,207,6,13 \
,26,4,190,193,17,97,66,163,106,27,223,185,39,187,228,146,75,184,228,146,75,226,86,94,86,86,22,51,102,204,224,221,119,223,229,237,183,223,246,143,201,5,183,116,202,48,220,242,65,178,251 \
,201,10,255,103,231,206,157,229,29,87,70,132,155,140,177,221,117,252,3,216,111,191,253,120,226,137,39,120,226,137,39,88,177,98,5,105,105,105,164,165,165,241,201,39,159,248,215,190,61,2,55 \
,44,99,10,112,13,176,41,82,121,149,240,255,128,206,184,37,116,152,63,127,62,87,95,125,53,255,249,207,127,170,84,104,184,28,143,29,184,238,205,254,121,8,68,246,56,74,60,101,143,214,175 \
,95,191,192,131,252,227,229,195,15,63,100,200,144,33,222,9,15,242,128,203,249,189,123,165,87,169,22,80,207,57,21,74,73,73,161,86,173,90,222,238,164,213,241,247,92,170,142,138,186,21,250 \
,249,174,47,232,197,78,163,56,241,220,182,109,27,159,126,250,41,61,123,250,135,202,150,53,96,192,0,110,185,229,150,82,187,112,137,231,233,120,22,41,143,214,202,104,102,76,159,62,221,187,235 \
,107,74,79,252,50,149,226,196,179,176,176,144,233,211,167,51,124,120,217,33,70,237,219,183,167,99,199,142,252,240,195,15,222,56,110,224,247,214,79,192,37,192,117,235,214,173,240,186,160,204,132 \
,71,233,64,153,233,141,37,249,94,123,237,53,174,184,226,138,72,79,109,195,45,19,51,14,173,209,183,59,43,121,3,12,50,33,142,151,111,125,103,80,75,87,185,58,116,232,64,135,14,29,24 \
,49,98,4,224,186,54,143,27,55,142,9,19,38,120,147,254,193,184,9,159,78,39,62,67,15,138,128,75,112,61,92,142,0,215,82,121,196,17,71,112,211,77,55,85,170,192,181,107,215,114,222 \
,121,231,121,123,210,20,225,62,71,170,99,142,6,145,164,83,226,41,18,39,69,69,69,60,242,200,35,220,121,231,157,222,47,21,6,92,77,217,177,157,97,165,110,147,103,101,101,69,57,172,172 \
,80,40,68,211,166,77,217,178,165,100,88,88,179,242,142,143,147,82,117,248,150,45,169,144,239,250,130,94,236,84,220,26,107,128,107,237,11,146,120,118,236,216,145,14,29,58,120,215,255,28,128 \
,155,45,176,36,211,12,133,66,81,111,76,124,249,229,151,254,46,145,254,102,198,153,184,47,139,181,193,117,3,142,148,120,130,75,110,61,137,103,59,220,76,201,135,225,153,209,56,104,55,219,237 \
,219,183,251,103,51,254,128,106,254,210,186,102,205,154,152,110,146,196,194,115,35,101,183,23,165,235,252,54,220,164,98,139,34,61,89,221,178,178,178,188,189,16,226,206,55,28,96,79,83,242,6 \
,24,161,235,108,185,34,180,126,151,217,177,59,154,61,123,54,15,62,248,96,160,99,83,83,83,105,212,168,17,141,27,55,230,144,67,14,161,83,167,78,156,124,242,201,52,109,218,180,194,115,15 \
,61,244,80,30,123,236,49,110,185,229,22,254,242,151,191,48,115,230,204,240,83,109,112,75,75,157,136,155,87,161,170,178,112,173,145,159,83,60,249,215,109,183,221,198,97,135,29,198,89,103,157 \
,85,238,137,126,225,177,162,190,33,56,119,160,161,18,34,34,53,74,165,103,181,173,46,105,105,105,214,189,123,119,255,236,116,5,197,177,151,231,82,239,57,179,103,207,142,169,222,67,15,61,212 \
,91,95,90,130,94,127,175,155,188,241,46,91,182,44,112,172,133,133,133,86,187,118,109,111,188,147,98,168,119,117,248,188,46,93,186,4,174,243,166,155,110,242,255,76,58,227,198,81,25,96,221 \
,187,119,143,122,238,221,119,223,237,63,247,216,8,113,125,20,126,190,81,163,70,150,155,155,27,177,172,217,179,103,251,203,186,21,183,172,138,1,22,10,133,108,253,250,245,129,174,41,192,140,189 \
,65,85,122,86,219,86,173,90,85,105,246,215,24,31,213,54,171,109,188,125,250,233,167,182,223,126,251,69,186,166,28,224,198,168,87,16,187,74,207,66,58,121,242,228,234,252,89,26,123,206,172 \
,182,77,188,229,95,119,221,117,49,197,118,253,245,215,251,227,139,45,115,77,172,164,253,62,165,166,166,90,223,190,125,109,222,188,121,129,235,44,42,42,138,244,122,46,32,190,141,43,39,225,122 \
,45,25,96,77,154,52,137,233,243,175,168,168,200,206,61,247,92,127,140,177,124,6,138,236,17,82,146,29,128,200,238,106,199,142,29,76,156,56,145,19,79,60,145,222,189,123,243,197,23,95,120 \
,159,222,128,235,238,227,95,179,209,111,141,119,195,55,97,76,133,90,182,108,233,221,108,27,211,201,149,83,242,165,49,20,10,177,223,126,251,5,62,241,151,95,126,241,119,47,91,19,237,216,8 \
,74,238,8,47,93,186,52,240,235,20,161,21,241,94,160,36,232,104,179,217,66,153,238,172,27,137,220,66,85,18,87,102,102,38,105,105,145,115,255,158,61,123,178,247,222,123,123,119,13,196,45 \
,221,3,192,49,199,28,19,120,93,76,223,248,206,66,220,88,83,169,129,142,63,254,120,54,110,220,200,220,185,115,25,60,120,176,247,169,189,128,255,3,158,161,102,45,163,33,193,157,224,221,232 \
,218,53,182,165,56,61,61,32,0,54,3,25,81,14,253,67,41,40,40,96,230,204,153,244,236,217,147,171,175,190,58,82,151,228,50,66,161,16,99,199,142,245,143,207,62,129,248,222,220,153,11 \
,252,53,188,145,145,145,225,93,163,185,66,107,215,174,229,173,183,74,173,166,181,16,184,50,94,193,137,236,46,212,213,86,36,128,130,130,2,86,174,92,201,178,101,203,248,238,187,239,248,248,227 \
,143,153,63,127,190,127,198,83,112,137,192,115,192,93,184,46,117,21,89,81,106,99,197,138,104,199,69,116,220,113,199,49,103,206,156,240,230,129,192,193,196,150,208,197,170,71,248,63,29,58,116 \
,136,169,171,109,132,107,139,229,98,167,1,215,149,108,76,155,198,200,145,35,43,60,41,156,240,165,167,167,135,119,157,231,125,62,90,247,214,13,27,54,240,229,151,95,122,119,189,143,27,139,227 \
,55,21,120,164,100,99,234,84,78,63,253,244,50,7,213,174,93,155,51,206,56,131,215,94,123,45,188,235,164,32,113,248,21,22,22,50,99,198,12,239,174,133,36,127,66,138,12,18,187,148,75 \
,101,23,131,143,217,109,183,221,198,152,49,99,34,62,215,160,65,3,26,53,106,68,199,142,29,57,234,168,163,56,235,172,179,232,211,167,79,160,137,174,122,246,236,73,207,158,61,153,57,115,38 \
,195,135,15,247,118,181,251,11,110,41,141,225,184,22,144,154,224,71,18,219,237,51,210,88,247,221,209,32,239,198,169,167,158,26,211,201,75,151,150,26,210,183,60,14,241,212,84,229,45,115,82 \
,23,168,135,91,90,171,35,110,185,169,211,41,190,25,243,244,211,79,147,149,149,197,228,201,147,3,85,244,228,147,79,250,39,30,186,9,120,2,215,195,32,30,222,196,221,44,138,135,247,136,95 \
,92,34,187,13,37,158,178,71,155,63,127,62,83,167,78,13,124,124,110,110,46,217,217,217,108,223,190,157,236,236,108,178,179,179,217,180,105,19,63,253,244,19,121,121,121,229,157,154,135,155,126 \
,125,12,177,205,80,185,17,55,83,108,83,192,223,106,90,161,30,61,122,248,191,40,247,32,113,137,103,99,138,39,88,8,215,29,139,69,139,202,52,24,198,242,58,125,130,27,107,211,16,130,39 \
,158,181,107,215,166,111,223,190,188,250,234,171,101,158,219,127,255,253,233,214,173,91,196,243,222,123,239,61,204,74,229,1,209,198,224,252,132,251,210,216,41,28,215,216,177,99,35,30,56,96,192 \
,0,111,226,89,230,185,32,62,253,244,83,255,218,173,53,97,54,219,249,120,150,167,217,83,237,220,185,147,157,59,119,178,113,227,70,210,210,210,120,244,209,71,57,228,144,67,248,199,63,254,17 \
,120,38,220,190,125,251,242,217,103,159,209,183,111,95,239,186,143,151,2,191,224,110,86,213,4,87,3,31,39,59,136,26,174,41,112,81,120,227,232,163,143,166,125,251,246,129,79,254,225,135,31 \
,248,245,87,239,60,101,123,244,82,58,27,112,75,133,84,100,26,240,191,184,247,210,215,40,254,172,121,241,197,23,25,50,100,8,131,6,13,42,239,92,192,141,169,190,233,166,155,188,19,255,236 \
,15,156,67,37,215,239,22,145,248,83,226,41,123,180,69,139,22,241,175,127,253,43,81,197,231,225,198,145,188,142,251,160,172,76,203,147,225,38,66,24,4,176,96,193,2,114,114,114,2,207,110 \
,218,163,71,15,106,213,170,229,157,232,101,48,46,1,78,132,65,120,186,5,158,116,210,73,229,28,90,214,236,217,179,189,155,59,128,111,98,56,61,7,152,133,251,18,65,90,90,26,153,153,153 \
,129,214,61,29,48,96,64,196,196,179,127,255,254,132,66,161,136,231,248,186,217,230,2,31,150,83,197,52,138,19,207,85,171,86,241,221,119,223,113,248,225,135,151,57,232,172,179,206,242,255,172 \
,0,104,221,186,53,71,29,117,84,5,87,17,49,174,112,221,146,56,171,249,189,165,187,49,46,225,40,249,27,248,249,231,159,185,244,210,75,121,231,157,119,152,52,105,18,245,234,213,171,176,192 \
,54,109,218,48,107,214,44,122,244,232,193,47,191,252,18,222,61,10,151,236,205,138,126,166,212,32,255,192,51,38,243,186,235,174,139,126,100,4,190,94,11,240,251,242,74,226,110,228,245,199,45 \
,65,86,15,224,153,103,158,9,148,120,2,92,122,233,165,220,114,203,45,20,21,149,116,80,233,131,18,79,145,26,67,99,60,69,130,217,142,155,153,118,2,110,98,152,51,129,125,128,83,112,147 \
,159,84,165,187,99,73,70,150,147,147,227,79,208,202,213,188,121,115,127,215,206,179,113,221,109,227,45,4,148,52,49,214,175,95,159,115,207,61,55,240,201,59,118,236,96,222,188,82,43,126,204 \
,193,77,190,20,139,146,36,43,47,47,143,15,62,8,246,93,45,156,240,249,69,27,223,153,155,155,203,135,31,150,202,51,231,80,126,215,195,82,77,234,17,214,216,4,220,207,234,184,227,142,139 \
,24,71,180,4,216,207,87,246,90,96,73,160,19,165,178,186,1,135,20,63,90,0,245,129,238,184,89,150,75,250,111,191,241,198,27,244,235,215,143,93,187,118,5,42,244,192,3,15,228,237,183 \
,223,166,78,157,146,85,125,82,128,23,128,230,241,11,93,18,100,32,112,125,120,227,136,35,142,96,216,176,97,49,21,224,91,7,82,203,33,149,245,11,158,155,48,115,231,206,13,124,98,243,230 \
,205,253,55,254,78,136,118,172,136,84,63,37,158,242,71,115,11,112,65,57,143,115,113,99,76,142,3,14,199,77,166,179,55,110,218,252,19,129,17,192,191,113,75,105,4,95,251,164,124,83,240 \
,140,31,140,117,113,106,95,151,211,58,120,150,30,137,163,11,128,99,194,27,151,93,118,89,76,203,7,188,250,234,171,254,47,229,111,86,34,134,247,240,188,78,209,18,60,191,125,246,217,135,19 \
,79,60,177,212,190,189,246,218,43,226,88,76,128,143,63,254,216,191,24,124,69,21,45,0,126,11,111,148,215,181,59,82,178,27,180,155,237,234,213,171,249,238,187,239,188,187,106,66,55,219,63 \
,154,60,220,36,83,255,15,247,254,80,210,69,242,147,79,62,225,138,43,174,240,119,209,142,170,91,183,110,220,119,223,125,222,93,173,136,255,204,171,18,95,103,1,175,226,110,196,81,167,78,29 \
,94,120,225,133,64,227,124,195,230,205,155,199,226,197,139,189,187,38,161,177,126,145,148,116,207,205,204,204,244,191,39,151,171,93,187,82,19,39,183,140,118,156,136,84,63,37,158,242,71,243,1 \
,174,107,108,180,199,20,220,157,214,207,113,11,58,175,34,241,179,13,254,130,167,43,231,187,239,190,235,31,255,83,174,179,206,58,139,222,189,123,123,119,253,15,48,36,110,209,185,73,139,74,6 \
,46,54,108,216,144,59,239,188,51,240,201,102,198,211,79,63,237,221,149,137,123,173,99,85,106,102,217,233,211,167,123,187,83,149,203,159,220,157,114,202,41,52,104,208,32,226,177,149,232,206,90 \
,128,103,102,217,133,11,23,122,215,86,45,55,142,122,245,234,209,167,79,159,10,138,143,26,151,18,207,228,250,21,119,147,170,100,22,170,151,95,126,153,167,158,122,42,112,1,55,223,124,179,127 \
,82,154,115,128,216,154,207,164,58,212,198,45,211,243,46,197,221,63,83,82,82,120,238,185,231,2,119,147,7,247,94,120,251,237,183,123,119,21,1,227,227,24,231,158,164,113,248,63,169,169,169 \
,129,135,159,128,187,217,232,209,20,125,215,21,169,49,244,199,40,82,51,148,172,85,152,151,151,199,63,255,249,207,152,78,126,230,153,103,252,227,203,38,226,186,1,87,213,190,184,174,164,251,134 \
,119,60,244,208,67,180,110,221,58,112,1,111,189,245,150,127,134,216,73,64,240,219,215,165,149,36,129,155,55,111,230,243,207,63,15,116,146,63,225,43,111,25,21,95,75,234,247,4,159,24,3 \
,112,51,207,78,159,62,61,226,65,93,187,118,229,160,131,14,42,217,238,211,167,15,245,235,215,15,80,124,153,196,51,27,79,23,109,73,154,76,92,178,88,114,167,225,246,219,111,103,213,170,85 \
,129,78,78,73,73,97,210,164,73,254,222,3,255,198,245,176,144,228,11,207,56,188,12,184,135,226,121,49,234,212,169,195,132,9,19,184,244,210,216,150,208,157,52,105,18,11,22,44,240,238,154 \
,136,123,143,145,210,66,64,175,240,198,33,135,28,18,83,171,178,111,182,249,124,34,207,72,46,34,73,160,196,83,164,102,152,138,107,101,5,224,249,231,159,231,219,111,191,13,124,242,161,135,30 \
,202,127,254,243,31,239,88,193,250,192,116,224,42,138,187,133,85,66,119,92,55,210,35,195,59,46,190,248,98,174,189,246,218,192,5,236,218,181,203,223,58,154,13,60,80,201,120,192,215,250,24 \
,116,198,226,206,157,59,151,234,126,21,45,241,92,186,116,41,171,87,175,142,90,95,57,102,224,190,224,184,147,202,233,6,236,173,59,104,55,219,157,59,119,242,241,199,165,38,26,253,8,8,54 \
,160,80,18,109,29,158,165,126,178,178,178,98,250,27,105,221,186,181,191,203,109,11,32,97,51,162,73,185,82,129,195,128,11,129,255,224,90,181,39,2,37,83,214,182,109,219,150,89,179,102,113 \
,217,101,151,197,84,240,143,63,254,200,95,255,250,87,239,174,29,212,156,153,140,107,154,219,113,227,170,1,56,255,252,243,99,58,121,253,250,245,222,205,32,203,154,137,72,53,209,172,182,34,53 \
,131,225,62,108,103,3,161,252,252,124,134,13,27,198,194,133,11,189,19,144,148,107,232,208,161,164,167,167,115,237,181,215,134,187,160,214,197,117,227,26,134,27,247,249,1,193,38,244,57,28,248 \
,27,238,78,127,201,109,230,193,131,7,243,252,243,207,7,158,8,7,96,212,168,81,222,101,35,0,254,15,88,31,229,240,32,190,193,125,209,63,0,92,130,119,255,253,193,134,180,14,24,48,128 \
,177,99,199,210,165,75,23,218,182,109,27,241,152,8,9,99,208,196,51,60,65,200,41,0,31,124,240,1,121,121,121,17,127,118,3,6,12,224,169,167,158,34,20,10,149,219,242,234,53,107,214 \
,44,114,114,74,13,3,171,73,221,108,59,1,15,85,67,61,121,184,238,142,53,209,235,192,219,20,207,186,60,99,198,12,94,127,253,117,134,12,9,214,227,253,154,107,174,97,210,164,73,222,229 \
,148,174,192,37,60,243,227,31,106,133,254,2,244,173,134,122,102,81,189,179,248,30,75,233,223,211,84,160,17,174,43,102,35,92,175,142,206,184,247,205,50,26,54,108,200,141,55,222,200,168,81 \
,163,162,118,211,143,102,235,214,173,156,115,206,57,100,101,149,154,22,224,42,220,240,1,113,82,112,115,43,220,0,12,13,239,108,213,170,149,119,121,148,10,21,21,21,177,100,73,169,57,215,150 \
,70,59,86,68,170,159,18,79,145,154,227,19,92,162,120,13,192,55,223,124,195,200,145,35,25,63,62,248,16,160,171,174,186,138,214,173,91,51,124,248,112,126,251,173,100,190,155,19,113,137,202 \
,142,226,58,62,199,125,225,217,134,107,165,219,7,55,155,102,23,220,2,222,7,121,203,12,133,66,140,26,53,138,123,239,189,151,212,212,224,111,25,111,188,241,6,143,63,254,184,119,215,119,64 \
,108,125,136,203,50,220,181,92,5,176,100,201,18,214,174,93,91,170,251,106,52,3,7,14,100,236,216,177,229,182,50,250,18,207,237,184,22,223,160,166,82,156,120,238,216,177,131,180,180,180,136 \
,19,24,157,114,202,41,212,175,95,159,142,29,59,114,192,1,7,4,42,216,215,205,54,252,26,212,20,237,112,55,77,18,109,39,53,55,241,4,247,133,249,52,138,215,154,189,241,198,27,233,219 \
,183,47,141,27,55,46,255,44,160,86,173,90,140,31,63,158,99,143,61,54,188,220,78,8,247,94,208,13,79,75,122,53,185,168,226,67,226,34,188,68,82,117,233,90,252,136,73,231,206,157,185 \
,252,242,203,185,252,242,203,253,99,7,3,217,190,125,59,125,251,246,229,251,239,75,245,168,125,154,63,206,18,31,119,83,252,153,22,69,61,96,63,224,80,60,75,212,0,52,107,214,140,215,95 \
,127,157,102,205,130,247,60,255,244,211,79,217,186,181,212,36,243,193,167,196,21,17,17,1,254,140,251,178,109,128,205,159,63,223,130,122,244,209,71,205,123,46,197,139,82,215,96,13,112,99,126 \
,74,98,190,255,254,251,3,95,111,216,134,13,27,236,207,127,254,179,165,166,166,250,175,63,166,199,241,199,31,111,159,126,250,105,204,245,207,153,51,199,234,214,173,235,45,107,23,240,167,56,189 \
,70,3,188,49,142,27,55,46,80,76,185,185,185,214,184,113,99,155,51,103,78,196,231,183,110,221,106,181,106,213,242,198,28,235,122,168,29,188,113,141,28,57,50,106,44,3,7,14,180,191,255 \
,253,239,129,226,46,42,42,178,86,173,90,121,227,250,58,78,175,99,201,239,89,207,158,61,3,197,18,230,139,167,186,30,65,103,145,30,237,61,111,205,154,53,129,175,235,214,91,111,245,215,217 \
,52,198,215,244,22,239,249,229,253,14,68,114,195,13,55,248,235,15,154,208,159,237,61,239,157,119,222,9,92,231,228,201,147,147,241,179,52,220,90,152,65,236,8,159,51,116,232,208,152,94,207 \
,88,99,106,212,168,145,157,112,194,9,118,213,85,87,217,184,113,227,236,199,31,127,140,169,62,191,159,127,254,217,58,117,234,228,175,231,109,106,254,77,255,164,255,62,157,121,230,153,149,122,253 \
,135,14,29,234,47,171,75,28,95,151,102,222,178,111,187,237,182,192,113,173,94,189,218,31,215,223,227,24,151,200,110,163,166,191,249,137,252,209,236,196,37,86,11,40,158,208,231,174,187,238,34 \
,47,47,143,127,252,227,31,129,11,105,217,178,37,19,38,76,96,244,232,209,60,255,252,243,124,240,193,7,124,241,197,23,225,214,148,114,181,111,223,158,62,125,250,112,241,197,23,211,171,87,175 \
,10,143,247,155,57,115,38,231,159,127,190,183,107,104,17,112,41,174,155,108,60,124,132,27,43,90,31,92,43,101,144,49,117,117,234,212,225,194,11,47,44,179,180,74,216,140,25,51,252,175,79 \
,172,173,138,43,112,139,159,119,2,55,254,244,177,199,30,139,120,96,255,254,253,3,207,134,249,245,215,95,251,199,44,5,237,254,155,48,79,63,253,116,224,53,43,171,226,177,199,30,99,254,252 \
,100,244,54,173,180,71,113,93,219,143,0,24,55,110,28,195,135,15,167,91,183,110,129,78,190,247,222,123,121,227,141,55,188,179,90,143,198,45,223,177,58,254,161,58,39,157,116,18,175,189,246 \
,90,162,138,47,177,109,219,54,174,185,166,188,134,175,248,43,239,186,82,82,82,104,210,164,9,141,27,55,166,81,163,70,52,106,212,136,214,173,91,199,52,148,160,60,239,190,251,46,35,70,140 \
,240,207,112,253,62,174,27,105,172,107,24,239,241,246,218,107,47,58,117,234,196,25,103,156,193,144,33,67,232,222,189,123,204,101,204,158,61,219,255,51,159,129,186,218,138,212,40,74,60,69,106 \
,158,159,113,201,231,135,20,119,61,186,231,158,123,88,179,102,13,227,198,141,11,60,11,42,192,193,7,31,204,61,247,220,195,61,247,220,67,70,70,6,243,231,207,103,221,186,117,108,217,178,133 \
,173,91,183,146,159,159,79,243,230,205,105,222,188,57,251,238,187,47,199,30,123,44,109,218,180,169,116,224,227,199,143,103,228,200,145,228,231,151,244,14,52,224,70,224,141,74,23,90,214,46,92 \
,242,57,16,126,95,119,51,200,184,171,251,238,187,47,234,236,136,190,110,182,133,120,150,72,137,193,52,138,19,207,85,171,86,177,116,233,82,186,116,41,123,195,253,188,243,206,11,220,125,44,194 \
,184,211,164,119,179,13,58,41,82,85,77,153,50,101,119,75,60,11,128,171,113,221,251,82,10,11,11,185,250,234,171,249,236,179,207,72,73,169,120,46,191,198,141,27,243,232,163,143,122,199,134 \
,214,7,30,167,248,119,61,17,14,58,232,160,64,93,213,171,106,221,186,117,213,158,120,6,29,99,27,79,219,183,111,231,111,127,251,27,47,188,240,130,255,169,103,112,147,80,237,209,73,103,159 \
,62,125,248,240,195,15,43,62,16,104,208,160,1,245,235,215,167,89,179,102,180,106,213,42,166,153,107,253,86,172,88,193,69,23,93,228,93,71,55,15,24,85,233,2,69,36,33,148,120,138,212 \
,76,95,0,39,227,102,166,221,31,96,226,196,137,124,246,217,103,76,158,60,153,163,143,62,58,230,2,155,52,105,66,191,126,253,226,26,100,216,230,205,155,185,242,202,43,121,231,157,119,188,187 \
,11,112,19,149,76,76,64,149,211,40,254,50,158,147,147,195,172,89,179,24,52,104,80,133,39,181,104,209,34,226,254,130,130,2,102,206,156,233,221,181,0,248,45,226,193,229,155,138,235,110,233 \
,54,166,78,141,152,120,54,111,222,60,112,129,190,241,157,155,241,204,126,44,53,210,2,224,121,96,4,192,23,95,124,193,248,241,227,3,207,116,123,254,249,231,211,175,95,63,239,146,60,3,128 \
,115,129,183,18,16,171,196,201,206,157,59,25,59,118,44,99,198,140,97,251,246,237,222,167,178,129,219,128,113,201,137,172,122,181,108,217,146,150,45,91,86,107,157,243,230,205,227,188,243,206,99 \
,243,230,205,222,221,119,1,139,171,53,16,17,169,144,150,83,17,169,185,190,1,122,0,95,133,119,44,95,190,156,227,142,59,142,191,252,229,47,108,218,180,41,121,145,21,203,203,203,227,145,71 \
,30,161,99,199,142,254,164,115,43,110,156,208,196,4,85,253,30,174,53,21,8,190,172,74,52,243,231,207,247,127,89,172,108,171,98,169,132,181,188,101,85,130,216,180,105,19,139,22,45,242,238 \
,122,31,173,73,183,59,184,29,207,218,158,119,221,117,23,27,55,6,159,192,244,137,39,158,240,247,108,120,12,55,243,170,212,48,43,86,172,96,212,168,81,180,107,215,142,59,239,188,211,255,62 \
,178,0,56,138,63,72,210,89,221,54,111,222,204,13,55,220,192,201,39,159,236,79,58,31,195,173,135,43,34,53,140,18,79,145,154,109,21,112,2,238,67,180,8,160,176,176,144,231,158,123,142 \
,67,14,57,132,235,174,187,142,21,43,86,84,123,80,233,233,233,140,25,51,134,246,237,219,115,243,205,55,147,158,158,238,125,122,22,110,237,207,202,116,85,13,234,87,60,147,236,76,159,62,221 \
,219,197,42,102,85,88,70,197,175,0,55,174,8,128,207,62,251,204,63,195,98,76,166,79,159,30,94,26,167,170,113,73,245,250,13,184,53,188,145,158,158,206,205,55,223,28,248,228,182,109,219 \
,242,247,191,151,154,123,228,0,224,222,184,69,39,149,102,102,124,253,245,215,60,240,192,3,244,236,217,147,142,29,59,242,175,127,253,203,159,248,172,197,45,137,211,11,248,49,98,65,82,41,249 \
,249,249,164,165,165,49,98,196,8,218,181,107,199,216,177,99,189,99,243,11,113,55,125,110,76,94,132,34,82,30,117,181,21,169,249,242,112,95,98,223,192,77,94,114,60,184,174,93,79,62,249 \
,36,227,199,143,167,71,143,30,92,112,193,5,12,30,60,152,214,173,91,39,36,136,172,172,44,102,206,156,201,171,175,190,202,123,239,189,71,118,118,182,255,144,245,192,29,192,127,241,180,70,38 \
,208,52,220,114,19,108,216,176,129,69,139,22,85,106,66,10,40,211,157,117,21,85,155,144,98,42,112,49,184,155,4,211,167,79,103,216,176,97,149,42,200,151,16,231,225,214,98,149,221,195,36 \
,220,140,220,189,0,94,122,233,37,46,191,252,114,78,59,237,180,64,39,223,124,243,205,76,158,60,153,165,75,75,126,21,175,47,46,51,94,179,26,75,57,182,110,221,202,198,141,27,249,229,151 \
,95,88,187,118,45,75,150,44,97,233,210,165,44,89,178,196,223,170,233,181,10,215,218,54,30,200,173,182,96,247,80,5,5,5,172,91,183,142,149,43,87,242,213,87,95,241,209,71,31,49,119 \
,238,92,118,238,220,25,233,240,111,113,221,219,53,20,65,164,6,83,226,41,187,157,167,158,122,138,119,223,125,55,208,177,190,110,138,187,187,133,184,53,57,47,196,221,213,61,18,220,130,217,115 \
,231,206,101,238,220,185,92,127,253,245,116,232,208,129,94,189,122,113,204,49,199,208,185,115,103,186,116,233,18,243,250,115,217,217,217,44,95,190,156,101,203,150,177,120,241,98,230,206,157,203,151 \
,95,126,73,65,65,196,121,49,54,1,79,224,146,226,160,75,94,196,195,52,60,235,58,222,121,231,157,149,26,251,154,155,155,235,95,99,175,170,147,247,204,192,173,189,88,27,224,209,71,31,101 \
,217,178,101,149,42,200,55,73,199,92,220,210,18,113,183,122,245,106,70,141,170,121,243,112,124,243,77,213,39,66,126,232,161,135,2,173,165,9,144,150,150,86,229,250,60,12,183,126,225,215,64 \
,29,112,235,236,198,50,225,205,129,7,30,232,77,60,107,225,18,154,19,168,160,187,245,164,73,147,88,176,32,150,37,104,19,47,51,51,179,202,101,44,94,188,184,74,191,167,217,217,217,228,230 \
,254,158,15,230,229,229,145,149,149,69,122,122,58,153,153,153,100,102,102,146,149,149,197,230,205,155,189,179,114,87,100,23,238,189,232,89,220,164,103,123,92,87,248,68,255,62,165,167,167,147,159 \
,159,79,102,102,38,57,57,57,100,102,102,150,36,252,158,137,234,162,249,10,215,35,232,85,170,249,181,79,75,75,11,252,251,184,99,71,66,222,186,69,118,59,241,153,55,92,36,177,254,12,76 \
,136,83,89,93,113,119,70,247,4,125,128,107,129,126,64,221,242,14,172,95,191,126,201,164,15,245,235,215,167,113,227,198,165,102,16,204,200,200,32,55,55,151,205,155,55,179,113,227,198,242,238 \
,232,135,25,240,25,240,28,240,34,201,185,187,31,194,117,185,221,63,206,229,158,9,204,172,240,168,242,205,6,78,137,67,44,94,55,1,255,23,199,242,190,167,120,6,222,221,196,78,160,97,128 \
,227,70,3,247,196,169,206,102,64,133,127,12,21,120,0,215,19,32,94,254,74,217,49,131,103,3,239,68,56,182,38,187,135,96,107,121,238,160,102,141,111,45,192,45,155,52,27,119,147,233,19 \
,92,242,185,39,169,201,191,79,5,184,201,247,102,227,38,220,250,170,252,195,227,170,25,176,45,78,101,141,6,254,25,167,178,68,118,27,106,241,20,217,125,125,84,252,104,140,251,162,48,0,232 \
,13,148,153,82,48,59,59,155,149,43,87,178,114,229,202,170,212,183,19,55,89,198,135,192,107,192,154,170,20,22,7,134,107,157,28,17,199,50,179,112,95,36,171,106,26,241,79,60,53,190,115 \
,247,116,31,174,151,66,219,56,149,119,63,238,11,247,134,56,149,39,101,109,195,189,190,235,128,141,192,47,184,177,154,223,1,203,112,221,222,37,241,54,225,186,47,175,44,254,247,51,32,13,168 \
,122,243,185,136,36,133,90,60,101,119,208,22,56,38,78,101,125,0,100,196,169,172,154,170,19,208,29,232,92,252,232,128,107,21,220,59,224,249,217,252,254,129,191,12,55,222,113,49,176,8,215 \
,133,180,38,57,132,226,113,158,113,242,27,46,153,175,170,22,184,229,112,226,165,0,152,18,199,242,192,181,236,214,164,150,164,138,4,125,13,58,3,101,215,176,169,156,119,136,79,146,17,207,152 \
,192,253,61,122,39,173,105,133,155,1,123,119,18,126,111,169,200,96,226,123,147,220,223,130,189,29,151,200,100,21,63,212,39,178,250,127,159,50,113,127,223,219,113,159,49,89,184,207,160,136,131 \
,57,147,168,14,80,241,186,93,193,44,197,253,13,136,252,161,40,241,20,249,227,216,11,216,183,248,223,38,197,251,66,184,150,195,108,92,119,217,205,84,239,56,77,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,145 \
,61,90,40,217,1,136,136,136,136,84,149,153,213,3,78,1,154,1,185,192,146,80,40,244,67,114,163,18,17,145,48,37,158,34,34,34,178,91,50,179,174,192,3,64,47,160,81,148,195,242,128 \
,93,64,22,96,64,126,241,255,191,3,222,6,222,8,133,66,69,137,143,86,68,68,68,68,68,68,118,27,102,118,156,153,173,176,248,200,49,179,187,147,125,77,34,34,34,34,34,34,82,3,152 \
,217,222,102,246,97,156,18,78,191,143,204,76,61,193,68,68,18,68,111,176,34,34,34,82,163,21,39,132,247,3,183,2,169,17,14,201,2,230,3,179,128,229,64,93,224,40,160,19,208,6,216 \
,23,168,15,212,1,82,128,218,197,15,191,103,66,161,208,85,113,14,95,68,68,68,68,68,68,106,50,51,107,107,102,191,68,105,165,220,96,102,151,86,178,220,125,205,236,45,95,121,69,102,214 \
,46,222,215,32,34,34,34,34,34,34,53,148,153,245,49,179,188,8,9,103,142,153,141,138,83,29,207,251,202,158,22,143,114,69,68,68,68,68,68,164,134,43,78,58,11,35,180,72,78,49,179 \
,6,113,172,103,47,51,203,245,212,145,107,102,41,241,42,95,68,68,68,68,68,68,106,32,51,235,28,161,165,51,199,204,206,72,80,125,175,249,234,58,33,17,245,136,136,136,136,136,136,72,13 \
,80,60,246,50,211,151,8,110,53,179,3,19,88,231,57,190,250,30,77,84,93,34,34,34,34,34,34,146,100,102,246,131,47,9,204,50,179,125,19,92,103,253,226,110,188,97,159,37,178,62,17 \
,17,17,17,17,17,73,18,51,123,200,151,116,230,153,217,225,213,84,247,86,79,189,155,171,163,78,17,17,17,17,17,17,169,70,102,118,164,149,157,76,232,188,106,172,127,145,167,222,2,115,107 \
,135,138,136,136,136,136,136,200,158,192,204,66,102,246,171,47,233,124,179,154,99,152,232,171,63,97,99,74,69,68,254,136,52,93,184,136,136,136,36,219,45,64,43,207,246,54,224,162,106,142,225 \
,83,223,246,137,213,92,191,136,136,136,136,136,136,36,66,241,196,62,57,190,214,198,106,95,206,196,204,58,249,98,24,87,221,49,136,136,136,136,136,136,72,2,152,217,171,190,132,239,163,36,197 \
,145,106,165,103,182,157,151,140,56,68,68,68,68,68,68,36,142,204,172,165,111,66,161,124,51,219,39,14,229,94,98,102,111,153,217,135,102,246,15,51,171,19,240,188,237,158,88,126,173,106,28 \
,34,34,34,34,34,34,146,100,102,246,158,175,181,243,223,85,44,239,84,95,242,24,182,203,204,78,9,112,254,82,207,57,57,85,137,69,68,68,68,68,68,68,146,204,204,90,251,186,182,102,7 \
,109,153,140,82,222,149,190,242,252,10,204,236,208,10,202,152,234,59,167,97,101,227,17,17,17,17,17,17,145,36,51,179,25,190,36,239,193,42,148,53,48,74,210,233,223,183,172,130,114,30,244 \
,29,223,173,178,49,137,136,136,136,136,136,72,18,153,89,83,43,61,182,51,219,204,106,87,178,172,22,102,150,235,75,24,127,49,179,110,102,86,215,204,126,243,61,23,117,125,78,51,27,236,59 \
,246,218,202,95,165,136,136,136,136,136,136,36,141,153,61,227,75,240,42,61,182,211,204,62,243,149,245,147,55,137,53,179,63,251,158,255,103,57,101,29,236,59,246,217,202,198,37,34,34,34,34 \
,34,34,73,98,110,217,146,108,79,114,151,111,102,13,42,89,214,137,190,68,113,151,153,53,245,29,211,192,119,204,199,21,196,230,245,94,101,226,18,17,145,178,82,146,29,128,136,136,136,252,161 \
,252,21,168,231,217,126,63,20,10,237,172,100,89,79,251,182,111,13,133,66,219,189,59,138,203,222,229,217,213,42,90,97,161,80,168,0,40,244,236,106,82,201,184,68,68,68,68,68,68,36,89 \
,204,108,141,167,69,177,200,204,218,84,178,156,214,190,214,201,45,229,28,187,205,115,220,47,21,148,235,29,47,250,101,101,98,19,17,145,178,212,226,41,34,34,34,213,194,204,14,3,14,242,236 \
,90,30,10,133,86,87,178,184,187,125,219,15,7,13,163,130,231,189,223,141,10,130,135,35,34,34,34,34,34,34,73,103,102,83,124,173,148,195,171,80,214,6,79,57,5,102,86,175,156,99,179 \
,60,199,254,88,206,113,33,43,189,4,75,90,101,227,19,17,17,17,17,17,145,106,102,102,181,204,44,199,147,212,237,50,179,90,149,44,171,161,47,65,252,161,156,99,107,251,142,157,95,206,177 \
,251,249,18,227,151,42,19,159,136,136,148,165,174,182,34,34,34,82,29,206,3,246,242,108,79,11,133,66,133,209,14,174,192,177,64,200,179,253,121,57,199,14,246,29,187,168,156,99,187,248,182 \
,163,38,180,34,34,34,34,34,34,82,195,152,217,167,190,214,196,195,171,80,214,93,190,178,46,46,231,216,159,131,214,107,102,143,249,142,61,185,178,49,138,136,136,136,136,136,72,53,50,179,58 \
,230,214,235,12,219,90,197,242,30,247,37,136,199,68,57,238,127,124,199,109,170,160,220,47,61,199,22,153,89,221,170,196,41,34,34,191,83,87,91,17,17,17,73,180,139,129,84,207,246,219,85 \
,44,175,133,111,251,55,255,1,102,118,0,240,188,111,247,255,139,86,160,153,133,128,206,158,93,219,66,161,80,78,165,35,20,17,17,17,17,17,145,234,99,102,115,125,45,143,135,84,177,188,15 \
,125,229,237,19,225,152,7,125,199,172,168,160,204,163,125,199,191,83,149,24,69,68,68,68,68,68,164,154,152,91,162,100,151,39,161,43,211,245,248,187,11,0,0,32,0,73,68,65,84,58,89 \
,137,50,103,251,146,68,127,11,104,248,184,153,197,207,239,50,179,253,43,40,243,105,95,153,131,170,26,167,136,136,136,136,136,136,84,3,51,59,209,151,208,189,25,135,50,167,250,202,236,24,229 \
,184,148,226,228,179,87,128,50,215,123,202,43,48,179,58,85,141,83,68,68,68,68,68,68,170,129,153,189,228,75,18,251,196,161,204,103,125,101,158,90,197,242,246,247,149,247,77,85,99,20,17 \
,145,210,52,185,144,136,136,136,36,210,105,158,255,231,1,31,199,161,204,101,190,237,246,85,44,239,102,223,246,132,42,150,39,34,34,34,34,34,34,213,193,204,90,250,90,18,23,198,169,220,110 \
,190,114,255,91,197,242,54,120,202,42,52,179,6,241,136,83,68,68,68,68,68,68,18,204,204,70,249,18,196,107,227,84,110,173,226,4,49,172,220,25,107,43,40,235,79,190,24,191,142,71,140 \
,34,34,34,34,34,34,82,13,204,44,205,151,212,237,29,199,178,87,250,90,41,235,85,178,156,105,190,24,207,143,87,140,34,34,34,34,34,34,146,96,102,246,155,39,161,219,30,231,178,31,241 \
,37,140,87,84,162,140,6,102,150,239,41,99,167,153,133,226,25,167,136,136,136,136,136,136,36,136,153,53,246,37,134,115,226,92,126,59,95,249,11,42,81,198,19,190,50,158,141,103,140,34,34 \
,34,34,34,34,146,64,102,54,212,151,212,221,145,128,58,188,45,170,185,102,22,120,182,126,51,171,109,102,217,158,243,11,204,172,73,188,99,20,17,17,17,17,17,145,4,49,179,87,124,137,231 \
,33,9,168,227,77,95,29,103,197,112,238,120,223,185,111,199,59,62,17,17,17,17,17,17,73,32,51,251,193,147,212,229,36,168,142,83,125,201,227,140,128,231,29,108,165,103,197,45,52,179,86 \
,137,136,81,68,68,68,68,68,68,18,196,204,118,120,18,187,213,9,170,35,228,235,46,155,99,102,169,1,206,89,230,75,88,53,182,83,68,68,68,68,68,100,119,82,60,126,178,200,147,216,205 \
,78,96,93,239,250,146,200,191,85,112,252,11,190,227,51,205,172,78,162,226,19,17,17,17,17,17,145,4,48,179,195,124,201,221,163,9,172,171,189,175,174,157,22,101,77,79,51,187,215,202,186 \
,40,81,177,137,136,136,136,136,136,72,130,152,217,8,95,114,55,52,193,245,45,242,213,247,163,153,213,247,60,95,207,204,102,70,72,58,223,76,100,92,34,34,34,34,34,34,146,32,102,246,140 \
,47,193,59,40,193,245,181,54,183,28,138,87,129,153,173,52,179,159,34,60,103,102,246,173,197,176,252,138,136,136,136,136,136,136,212,32,102,246,129,39,193,43,170,142,4,207,204,174,143,144,92 \
,70,243,165,153,213,78,116,76,34,34,34,34,34,34,146,32,102,246,149,39,201,203,173,198,122,175,52,179,252,114,18,206,2,51,123,168,186,226,17,17,17,17,17,17,145,4,49,179,213,158,100 \
,111,123,53,215,221,200,204,158,40,238,98,155,110,102,219,204,45,159,242,191,230,25,247,41,34,34,34,34,34,34,187,49,51,251,205,147,120,174,73,118,60,34,34,146,124,26,84,47,34,34,34 \
,241,230,109,89,252,45,105,81,136,136,72,141,161,196,83,68,68,68,226,173,142,231,255,219,146,22,133,136,136,212,24,74,60,69,68,68,36,110,204,172,46,16,242,236,74,79,86,44,34,34,82 \
,115,40,241,20,17,17,145,120,242,79,224,147,157,148,40,68,68,164,70,81,226,41,34,34,34,241,228,79,60,51,147,18,133,136,136,212,40,74,60,69,68,68,36,158,148,120,138,136,72,25,74 \
,60,69,68,68,36,158,26,250,182,51,146,18,133,136,136,212,40,169,201,14,64,68,68,68,246,40,77,125,219,74,60,37,176,226,201,169,250,0,199,1,109,128,3,128,22,64,173,226,67,10,113 \
,51,37,111,6,190,7,102,1,11,66,161,80,97,181,7,43,34,49,81,226,41,34,34,34,241,164,196,83,2,49,179,189,128,33,192,96,160,27,176,31,80,47,198,98,70,187,162,236,55,96,17 \
,240,2,240,74,40,20,178,120,198,42,34,34,34,34,34,53,136,153,141,176,210,250,37,59,38,169,25,204,44,100,102,131,205,108,134,153,109,51,179,34,75,140,60,51,155,111,102,189,147,125,205 \
,34,34,34,34,34,146,0,102,118,139,47,9,56,33,217,49,73,242,152,89,29,51,187,213,204,22,155,89,126,37,146,200,66,51,219,101,102,59,139,31,187,138,247,5,181,209,204,174,74,246,235 \
,32,34,34,34,34,34,113,100,102,247,250,190,248,119,78,118,76,82,253,204,108,144,153,125,102,102,5,1,19,196,2,51,91,111,102,159,152,217,195,102,118,134,153,53,41,167,252,58,197,199,60 \
,104,102,11,204,108,71,5,229,111,49,179,243,170,243,53,16,17,17,17,17,145,4,49,179,71,125,95,248,219,36,59,38,169,30,102,214,200,204,158,55,215,50,25,36,209,92,81,124,252,41,113 \
,170,191,157,153,77,48,179,173,229,212,187,200,204,90,196,163,62,17,17,17,17,17,73,18,51,123,214,247,69,127,191,100,199,36,137,101,102,7,154,217,123,86,113,235,230,78,51,251,216,204,46 \
,50,179,132,46,233,103,102,167,155,235,222,27,73,174,153,93,146,200,250,69,68,68,68,68,36,129,204,236,21,223,151,252,70,201,142,73,18,195,204,246,51,179,57,86,254,36,65,185,102,54,211 \
,204,78,76,82,140,199,152,217,242,40,177,77,72,70,76,34,34,34,34,34,82,69,102,246,174,239,203,125,173,138,207,146,221,137,153,213,50,179,113,22,189,133,179,200,204,190,53,179,203,205,44 \
,148,236,120,1,204,236,207,230,38,38,242,155,83,83,98,20,17,17,17,17,145,128,204,236,35,111,2,146,236,120,36,190,204,236,2,51,203,136,146,112,22,152,235,114,123,80,178,227,140,196,204 \
,154,153,217,210,8,113,47,80,242,41,34,34,34,34,178,27,49,179,79,61,95,232,243,147,29,143,196,135,153,213,54,179,105,81,18,206,60,51,123,218,204,26,36,59,206,138,152,91,75,244,141 \
,8,215,240,98,178,99,19,17,17,17,17,145,128,204,236,107,207,151,249,156,100,199,35,85,103,102,251,155,91,234,196,175,168,56,25,109,156,236,24,99,101,102,255,137,112,61,195,146,29,151,136 \
,136,136,136,136,4,96,102,223,123,190,200,103,37,59,30,169,26,51,59,219,204,114,34,36,105,203,109,55,95,163,213,220,164,71,94,217,102,86,47,217,113,137,136,136,136,136,72,5,204,108,165 \
,231,139,252,246,100,199,35,149,103,102,15,89,217,25,107,11,205,236,238,100,199,22,15,102,150,106,102,155,124,215,247,104,178,227,18,17,17,17,17,145,10,152,217,58,207,151,248,205,201,142,71 \
,98,103,110,60,103,90,132,86,206,108,75,210,178,40,137,98,102,39,248,174,113,71,178,99,18,17,17,17,17,145,10,152,217,102,207,151,248,117,201,142,71,98,99,102,7,152,217,134,8,73,231 \
,42,51,107,158,236,248,18,193,204,190,243,93,107,135,100,199,36,178,39,74,73,118,0,34,34,34,178,71,169,237,249,127,94,210,162,144,152,153,217,89,192,207,64,75,223,83,211,128,67,66,161 \
,208,214,234,143,170,90,76,240,109,159,146,148,40,68,246,112,74,60,69,68,68,36,158,188,137,167,102,181,221,77,152,217,189,192,123,64,29,239,110,96,84,40,20,26,24,10,133,246,228,53,89 \
,231,249,182,247,79,74,20,34,123,184,212,100,7,32,34,34,34,123,20,239,119,11,37,158,53,156,153,213,194,37,156,125,125,79,229,0,253,66,161,208,199,213,31,85,181,219,147,147,106,145,26 \
,67,137,167,136,136,136,196,83,45,207,255,179,147,22,133,84,200,204,90,2,139,128,214,190,167,214,1,199,132,66,161,77,213,31,85,82,248,151,80,81,23,113,145,4,80,87,91,17,17,17,137 \
,11,51,11,81,58,241,204,76,86,44,82,62,51,59,21,88,69,217,164,115,38,208,102,119,72,58,205,172,142,153,253,195,204,190,53,179,93,246,251,210,47,133,102,182,205,204,222,49,179,3,2 \
,20,165,196,83,68,68,68,68,100,119,97,102,245,125,179,131,190,154,236,152,164,44,51,187,201,202,174,207,89,100,102,127,79,118,108,65,152,217,94,102,246,162,153,229,71,152,125,215,175,200,204 \
,30,171,160,188,1,190,115,254,90,93,215,34,34,34,34,34,34,49,50,179,125,125,95,224,159,73,118,76,82,154,153,61,31,33,57,203,49,179,211,147,29,91,16,102,54,216,204,118,6,72,56 \
,253,94,41,167,204,243,125,199,142,168,206,107,18,249,163,208,24,79,17,17,17,137,151,70,190,237,244,164,68,33,101,152,89,42,48,7,56,193,247,212,122,160,123,40,20,90,95,253,81,197,198 \
,204,30,5,110,136,244,20,240,43,240,35,144,129,155,149,246,72,74,119,161,29,106,102,83,66,161,80,164,86,248,186,190,109,77,138,37,34,34,34,34,82,83,153,217,81,190,150,163,81,201,142 \
,73,192,204,246,49,179,181,17,90,1,63,51,179,218,21,151,144,124,102,246,88,132,248,11,204,181,224,54,141,112,124,138,149,109,221,93,27,165,236,17,190,227,206,79,252,21,137,136,136,136,136 \
,72,165,152,89,95,223,23,248,43,147,29,211,31,157,153,117,49,179,204,8,73,219,164,100,199,22,148,153,157,25,33,254,239,205,108,191,0,231,126,227,59,175,113,132,99,110,240,29,227,95,90 \
,70,68,226,64,179,218,138,136,136,72,188,52,247,109,111,77,74,20,255,159,189,123,143,207,177,254,255,0,254,250,236,108,155,227,204,98,206,148,34,166,228,144,28,18,137,18,74,17,69,82,148 \
,234,75,78,253,40,125,117,36,125,171,175,148,74,72,142,81,33,18,25,138,156,106,44,57,204,97,67,78,179,205,108,204,14,118,126,255,254,216,238,125,175,93,102,135,123,215,125,95,247,125,239 \
,245,124,60,238,135,251,250,220,215,245,249,188,239,219,204,245,190,63,39,2,0,136,72,15,0,251,1,248,107,139,1,252,159,82,106,152,57,81,89,101,190,238,120,21,128,230,165,92,121,119,145 \
,238,248,174,34,206,241,211,29,167,148,54,48,34,42,61,206,241,36,34,34,34,163,232,19,207,139,166,68,65,16,145,225,0,22,160,112,39,67,54,128,71,148,82,235,77,9,202,10,34,18,130 \
,194,91,190,156,81,74,149,101,40,108,170,238,88,21,113,78,53,221,113,82,25,234,39,162,82,98,143,39,17,17,17,25,165,134,238,56,209,148,40,42,56,17,249,55,128,133,40,124,159,151,2 \
,160,149,51,37,157,249,38,232,142,203,186,229,75,39,221,241,249,34,206,169,173,59,102,79,61,17,17,17,17,145,163,18,145,217,186,185,114,245,204,142,169,162,17,145,5,69,204,135,140,21,145 \
,90,102,199,102,13,17,57,161,121,31,185,34,226,91,198,235,227,53,215,103,138,200,117,61,158,34,18,170,251,188,56,34,144,136,136,136,136,200,81,137,200,98,221,13,252,117,171,141,146,109,136 \
,136,18,145,205,69,36,157,199,68,164,82,201,53,56,38,201,219,99,212,226,116,25,175,125,84,247,89,132,221,224,188,40,205,57,215,12,9,156,136,136,136,136,136,108,67,68,126,208,221,232,123 \
,155,29,83,69,32,34,238,146,183,53,138,222,118,17,113,55,59,62,107,137,136,191,238,253,252,92,134,107,61,68,36,81,119,253,189,55,56,55,77,115,206,9,195,222,0,17,21,194,57,158,68 \
,68,68,100,20,47,221,113,150,41,81,84,32,34,226,3,224,40,128,246,186,151,150,43,165,186,42,165,114,76,8,203,40,205,117,199,17,165,185,72,68,106,0,248,19,128,182,199,61,74,41,181 \
,173,136,115,111,1,160,237,17,62,92,198,24,137,136,136,136,136,200,158,68,100,163,166,231,40,215,236,120,92,157,136,84,21,145,232,34,122,58,103,154,29,155,17,68,100,156,238,125,13,40,230 \
,220,218,34,242,138,136,132,137,72,142,238,186,92,17,185,245,6,215,205,211,157,219,199,118,239,136,136,136,136,136,136,202,77,68,182,106,110,224,157,185,167,205,225,229,39,90,9,69,36,88,147 \
,204,142,205,40,34,178,72,247,254,26,228,151,223,150,255,222,147,36,111,14,168,62,209,212,155,126,131,250,189,165,240,48,219,116,17,225,104,64,34,34,34,34,34,71,38,34,191,107,110,226,179 \
,205,142,199,85,137,72,35,17,73,46,34,233,124,198,236,216,140,36,133,231,173,230,88,146,66,17,121,168,132,68,83,123,205,187,197,212,63,87,119,254,143,246,123,119,68,68,68,68,68,100,21 \
,17,217,163,185,137,207,52,59,30,87,36,34,77,69,36,85,151,48,101,139,72,63,179,99,51,154,20,30,70,156,164,41,127,186,132,132,51,89,68,126,20,145,128,98,234,126,88,242,146,117,237 \
,103,168,223,135,150,136,12,196,125,138,136,136,136,200,40,218,251,10,49,45,10,23,37,34,183,1,8,71,225,197,112,178,0,244,80,74,253,110,78,84,54,165,77,4,99,53,207,47,3,56,15 \
,32,29,64,82,254,241,5,0,123,1,172,87,74,157,46,174,82,17,185,11,192,42,0,218,61,61,191,84,74,37,26,16,51,17,17,17,17,17,217,146,20,30,26,201,30,79,3,137,72,11,17 \
,185,166,235,217,203,16,145,59,205,142,205,22,68,196,83,215,35,185,217,160,122,187,139,72,150,238,115,140,16,17,85,242,213,68,68,68,68,68,100,58,17,217,172,185,153,231,170,182,6,17,145 \
,16,201,91,248,70,43,93,68,90,154,29,155,173,136,72,21,221,251,93,110,64,157,207,200,245,11,17,93,17,145,202,70,196,76,68,68,68,68,68,118,32,34,63,232,110,234,43,149,124,21,21 \
,71,68,218,228,247,108,106,93,19,17,253,30,151,46,69,68,42,233,222,179,213,11,255,136,136,18,145,111,228,122,151,69,36,216,200,184,137,136,136,136,136,200,198,68,100,129,238,198,190,150,217 \
,49,57,51,17,105,89,68,210,153,38,34,183,152,29,155,61,136,72,166,230,125,71,88,89,71,99,17,57,89,68,210,25,43,34,213,141,142,153,136,136,136,136,136,108,76,68,62,212,221,220,55 \
,53,59,38,103,37,34,205,228,250,57,157,41,34,210,196,236,216,236,69,68,206,106,222,123,150,136,248,148,225,90,37,34,239,75,209,123,124,134,149,165,46,34,34,34,34,34,114,32,34,50,69 \
,119,131,127,151,217,49,57,163,252,94,186,52,221,103,153,42,34,13,204,142,205,158,68,228,75,221,103,240,69,41,175,123,86,242,134,209,234,229,138,200,44,91,199,77,68,68,68,68,68,54,36 \
,34,163,116,55,250,125,205,142,201,217,136,72,189,252,158,77,173,52,17,185,217,236,216,236,77,68,130,116,61,150,185,34,242,194,13,206,173,46,34,159,138,72,98,17,9,167,228,39,162,247,217 \
,251,61,16,17,17,17,17,145,193,68,228,94,221,205,254,100,179,99,114,38,34,82,71,68,174,234,62,195,116,113,241,133,132,138,35,34,75,139,72,34,47,138,200,86,17,217,32,34,187,138,73 \
,54,45,201,234,10,17,225,222,245,68,68,68,68,68,174,64,68,130,117,55,253,11,205,142,201,89,136,72,85,17,73,208,125,126,25,34,210,218,236,216,204,36,34,238,34,114,170,152,196,178,56 \
,127,136,72,99,179,223,3,17,17,17,17,17,25,40,63,73,200,213,220,248,111,51,59,38,103,32,34,222,34,114,94,151,52,101,10,231,200,2,40,248,124,194,74,153,108,102,137,200,150,138,158 \
,176,19,17,17,17,17,185,52,41,188,40,78,148,217,241,56,186,252,100,253,168,46,121,202,22,145,78,102,199,230,104,68,228,17,17,57,40,121,195,143,45,114,37,111,254,230,14,17,25,47,34 \
,94,102,199,73,68,68,68,68,68,54,38,34,49,154,164,32,209,236,120,28,153,228,109,249,177,75,151,116,230,138,200,0,179,99,35,34,34,34,34,34,114,88,249,61,82,5,195,69,205,142,199 \
,145,137,200,79,69,12,21,29,105,118,92,68,68,68,68,68,68,14,77,68,214,235,18,169,234,102,199,228,136,68,100,94,17,73,39,87,1,38,34,34,34,34,34,42,137,136,188,173,75,166,30 \
,48,59,38,71,35,34,175,22,145,116,126,110,118,92,68,68,68,68,68,68,78,65,68,186,234,18,170,153,102,199,228,72,68,228,113,41,188,242,175,136,200,114,179,227,34,34,34,34,34,34,114 \
,26,34,226,175,75,170,182,154,29,147,163,16,145,59,36,111,187,15,173,221,102,199,69,68,68,68,68,68,228,116,164,240,150,42,231,204,142,199,17,136,72,29,221,231,34,34,114,74,68,60,204 \
,142,141,136,200,30,148,217,1,16,17,145,125,136,136,55,128,155,1,52,6,208,16,64,125,0,193,0,106,1,8,0,80,13,128,39,0,159,252,75,60,1,184,107,158,3,128,91,254,163,160,90 \
,0,57,249,207,179,53,199,89,249,101,25,0,50,1,92,1,144,0,32,30,192,5,0,103,242,31,255,0,136,84,74,93,51,230,93,146,35,16,145,19,0,154,228,31,102,41,165,42,244,222,138 \
,34,226,139,188,159,247,154,154,226,203,0,26,42,165,174,154,19,21,17,145,125,241,91,54,34,34,23,144,159,84,118,4,208,6,192,109,0,154,2,168,131,188,27,93,95,228,37,142,182,248,178 \
,81,225,127,137,168,103,49,231,53,40,174,18,17,17,228,37,171,41,0,46,34,239,38,253,24,128,253,0,246,40,165,34,203,31,42,217,209,81,252,47,241,244,20,145,155,148,82,177,102,6,100 \
,22,17,113,3,240,23,10,39,157,233,0,238,96,210,73,68,21,9,19,79,34,34,39,34,34,181,1,244,1,208,9,192,173,200,235,181,172,14,192,219,204,184,12,160,0,120,1,168,145,255,184 \
,21,64,193,106,168,249,137,105,58,242,122,137,98,144,151,216,252,6,96,157,82,234,146,221,163,165,146,236,64,222,207,169,69,31,0,243,77,138,197,108,223,1,104,166,57,206,5,240,128,82,234 \
,140,73,241,16,17,153,130,67,109,137,136,28,148,136,180,5,240,24,128,14,200,27,34,91,19,197,247,42,150,89,102,102,38,46,93,186,84,240,72,74,74,66,118,118,54,178,179,179,145,156,156 \
,12,0,72,78,78,190,174,44,43,43,11,158,158,121,161,84,171,86,13,74,41,120,123,123,195,215,215,23,0,80,181,106,85,184,185,185,193,203,203,11,213,170,85,67,205,154,53,11,30,238,238 \
,238,69,7,83,142,183,1,32,22,121,61,164,59,1,172,87,74,237,55,186,17,42,61,17,185,25,128,182,151,122,173,82,170,191,89,241,152,69,68,94,7,240,174,174,120,136,82,234,91,51,226 \
,33,34,50,19,19,79,34,34,7,32,34,117,0,12,5,208,3,192,237,200,155,119,233,86,236,69,55,144,155,155,139,216,216,88,252,243,207,63,56,123,246,44,46,92,184,128,184,184,184,66,9 \
,230,165,75,151,16,23,23,135,171,87,237,63,210,47,32,32,160,80,34,26,16,16,128,90,181,106,33,40,40,8,141,26,53,66,163,70,141,208,184,113,99,248,251,251,151,167,153,92,228,245,142 \
,70,1,248,5,192,66,165,212,89,35,226,167,210,17,145,12,228,245,98,3,192,121,165,84,61,51,227,177,55,17,185,31,192,38,20,190,215,250,175,82,106,188,73,33,17,17,153,138,137,39,17 \
,145,9,68,164,5,128,167,145,151,104,54,67,222,60,204,82,203,201,201,193,153,51,103,16,21,21,133,227,199,143,227,248,241,227,136,140,140,196,169,83,167,112,254,252,121,100,102,102,218,34,108 \
,187,170,85,171,86,65,18,170,253,179,73,147,38,104,208,160,216,41,163,55,114,13,192,113,0,155,145,151,136,30,53,52,96,42,68,68,34,145,215,83,15,228,125,17,224,173,148,202,54,49,36 \
,187,17,145,134,200,251,89,211,46,170,244,171,82,170,187,57,17,17,17,153,143,137,39,17,145,29,136,72,32,128,23,0,244,7,208,2,101,152,147,121,241,226,69,28,60,120,16,135,14,29,194 \
,161,67,135,112,240,224,65,28,57,114,4,215,174,85,220,133,96,171,86,173,138,144,144,16,180,110,221,26,33,33,33,8,9,9,193,237,183,223,14,111,239,50,77,117,205,0,112,10,192,175,0 \
,22,112,120,174,177,68,100,9,128,167,52,69,237,149,82,97,102,197,99,47,249,43,216,158,67,222,92,101,139,179,0,154,84,148,196,155,136,168,40,76,60,137,136,108,68,68,250,0,24,13,224 \
,110,228,45,0,84,162,228,228,100,132,135,135,35,44,44,12,97,97,97,216,187,119,47,206,158,229,8,209,210,240,240,240,192,173,183,222,90,144,140,222,121,231,157,104,215,174,93,89,134,236,166 \
,2,8,3,48,15,192,74,165,84,174,205,130,173,0,68,228,81,0,171,52,69,255,81,74,189,106,86,60,246,34,34,97,0,218,106,138,210,144,183,109,74,188,73,33,17,17,17,17,145,43,17 \
,145,74,34,50,86,68,246,137,72,166,148,66,116,116,180,172,88,177,66,94,126,249,101,105,213,170,149,184,185,185,9,242,246,194,228,195,128,135,135,135,135,180,111,223,94,38,78,156,40,235,214 \
,173,147,196,196,196,210,252,181,136,136,100,139,200,97,17,153,38,34,213,202,248,163,64,0,68,164,178,136,228,106,62,211,131,102,199,100,107,34,242,95,221,207,81,142,136,116,48,59,46,34,34 \
,34,34,114,114,34,226,35,34,175,138,200,49,221,77,118,145,226,227,227,229,219,111,191,149,17,35,70,72,227,198,141,77,79,204,42,218,195,205,205,77,90,181,106,37,47,191,252,178,172,92,185 \
,82,98,98,98,74,155,136,94,16,145,133,34,210,180,116,63,25,4,0,34,18,167,249,12,51,37,111,79,75,151,36,34,15,22,241,59,224,5,179,227,34,34,34,34,34,39,37,34,238,146,215 \
,179,121,56,191,71,227,134,178,178,178,228,183,223,126,147,201,147,39,75,155,54,109,216,163,233,128,143,230,205,155,203,171,175,190,42,59,118,236,144,236,236,236,210,36,161,209,34,50,83,68,202 \
,181,236,110,69,32,34,171,117,159,93,71,179,99,178,5,17,9,22,145,116,221,123,93,105,118,92,68,68,68,68,228,132,68,164,155,136,108,20,145,140,226,178,146,148,148,20,249,233,167,159,100 \
,212,168,81,18,20,20,100,122,98,197,71,233,31,53,106,212,144,199,31,127,92,22,47,94,44,87,174,92,41,41,1,205,21,145,147,34,242,127,34,98,248,230,164,174,64,68,250,233,62,179,121 \
,102,199,100,52,201,251,34,234,172,238,125,254,195,159,9,34,34,34,34,42,181,252,158,140,165,34,114,181,184,12,36,62,62,94,230,206,157,43,61,122,244,16,79,79,79,211,19,40,62,202,255 \
,240,242,242,146,251,239,191,95,102,207,158,45,255,252,243,79,73,73,104,166,136,252,42,34,221,174,251,33,170,192,68,196,75,10,143,10,56,101,118,76,70,19,145,245,186,159,133,52,201,91,197 \
,154,136,136,136,136,168,120,34,50,72,68,142,72,49,243,54,19,19,19,101,193,130,5,242,192,3,15,136,135,135,135,233,137,18,31,182,125,116,236,216,81,62,255,252,115,73,72,72,40,41,9 \
,77,20,145,247,68,68,187,135,99,133,37,121,189,127,22,57,34,226,99,118,76,70,17,145,103,117,127,247,185,34,194,189,58,137,136,136,136,232,198,68,164,170,136,204,21,145,228,27,101,20,153 \
,153,153,178,118,237,90,121,228,145,71,196,203,203,203,244,100,136,15,251,63,188,189,189,229,145,71,30,145,53,107,214,72,70,70,177,163,174,51,69,100,141,136,212,67,5,38,34,243,116,159,203 \
,112,179,99,50,130,136,52,22,145,44,221,123,155,110,118,92,68,68,68,68,228,160,68,228,86,17,217,42,197,44,20,244,215,95,127,201,216,177,99,37,48,48,208,244,196,135,15,199,121,212,168 \
,81,67,94,124,241,69,217,189,123,119,113,9,104,174,136,28,16,145,7,80,1,137,72,136,238,243,216,105,118,76,229,37,34,110,34,114,94,247,190,118,155,29,23,17,17,17,17,57,32,17,121 \
,72,242,134,211,22,41,53,53,85,22,44,88,32,109,219,182,53,61,193,225,195,241,31,55,223,124,179,124,252,241,199,37,45,74,116,81,68,166,136,11,111,43,82,20,41,60,138,32,93,68,148 \
,217,49,149,135,136,172,212,253,189,38,139,136,159,217,113,17,17,17,17,145,3,17,145,167,36,111,95,198,34,29,57,114,68,198,140,25,35,213,170,85,51,61,153,225,195,249,30,254,254,254,242 \
,210,75,47,201,177,99,199,138,75,64,211,68,228,63,34,226,129,10,64,68,54,232,222,191,211,206,131,20,145,199,116,239,37,87,68,186,154,29,23,17,17,17,17,57,8,17,25,38,34,231,110 \
,148,9,236,220,185,83,30,126,248,97,81,74,153,158,188,240,225,252,15,165,148,244,232,209,67,126,250,233,39,201,205,189,225,26,85,25,34,178,80,68,42,193,133,137,72,31,221,251,94,101,118 \
,76,214,16,145,90,114,253,126,157,31,155,29,23,17,17,17,17,57,0,17,25,37,34,69,46,69,154,158,158,46,11,23,46,148,150,45,91,154,158,168,240,225,186,143,102,205,154,201,156,57,115 \
,36,57,249,134,235,86,101,136,200,7,226,162,67,112,37,111,175,203,76,205,251,77,50,59,38,107,136,200,113,221,223,219,97,179,99,34,34,114,22,78,61,199,130,136,168,56,34,242,40,128,57 \
,0,110,210,191,150,154,154,138,47,191,252,18,31,125,244,17,98,98,98,236,31,156,9,124,124,124,224,231,231,7,95,95,223,66,15,63,63,63,248,249,249,65,169,188,255,18,148,82,240,245,245 \
,189,238,250,140,140,12,100,103,103,35,37,37,5,57,57,57,184,118,237,26,50,50,50,144,153,153,137,171,87,175,22,60,114,114,114,236,253,214,156,70,141,26,53,48,118,236,88,140,25,51,6 \
,213,170,85,43,234,148,84,0,111,41,165,254,99,231,208,108,78,68,194,0,180,213,20,181,87,74,133,153,21,79,89,137,200,12,0,147,53,69,25,0,234,41,165,226,77,10,137,136,200,169,48 \
,241,36,34,151,35,121,243,173,22,2,104,164,127,45,57,57,25,115,230,204,193,199,31,127,140,248,120,215,185,95,244,242,242,66,157,58,117,80,179,102,77,4,4,4,32,32,32,224,186,231,222 \
,222,222,118,137,197,146,128,38,37,37,33,41,41,9,151,47,95,70,108,108,44,226,226,226,16,23,23,135,216,216,88,100,102,102,218,37,22,71,85,181,106,85,188,252,242,203,24,55,110,28,2 \
,2,2,138,58,37,1,192,179,74,169,181,118,14,205,102,68,228,73,0,75,53,69,63,42,165,30,49,43,158,178,16,145,219,1,28,0,160,237,145,238,239,74,127,63,68,68,182,198,196,147,136 \
,92,134,136,52,0,176,10,64,27,253,107,201,201,201,152,53,107,22,102,205,154,133,196,196,68,251,7,103,16,63,63,63,4,7,7,163,94,189,122,168,91,183,110,193,159,181,106,213,42,232,177 \
,116,6,87,174,92,65,108,108,44,98,98,98,112,238,220,57,156,62,125,26,103,206,156,113,234,191,27,107,84,174,92,25,227,199,143,199,132,9,19,80,185,114,229,162,78,57,12,96,128,82,42 \
,210,206,161,25,78,242,22,82,74,3,224,153,95,148,10,160,114,254,156,106,135,149,63,252,249,60,128,218,154,226,213,74,169,1,38,133,68,68,228,148,156,231,46,133,136,232,6,68,196,27,192 \
,124,0,67,80,184,71,2,25,25,25,248,226,139,47,48,125,250,116,167,235,225,244,246,246,70,147,38,77,112,203,45,183,224,150,91,110,193,205,55,223,140,154,53,107,154,29,150,77,37,39,39 \
,23,36,161,167,79,159,70,84,84,20,206,157,59,7,17,135,206,77,202,45,48,48,16,175,189,246,26,70,143,30,93,84,207,180,32,239,11,149,167,148,82,25,246,143,206,56,34,242,59,128,206 \
,154,162,30,74,169,173,102,197,83,26,34,178,16,192,112,77,81,34,128,218,74,169,138,221,109,79,68,84,70,76,60,137,200,169,137,200,43,0,166,3,40,180,42,104,78,78,14,150,44,89,130 \
,105,211,166,225,236,217,179,230,4,87,70,55,221,116,19,154,55,111,94,144,104,214,175,95,31,238,238,238,102,135,101,186,180,180,52,68,70,70,226,248,241,227,5,143,180,180,52,179,195,178,137 \
,6,13,26,96,230,204,153,24,56,112,96,81,61,216,105,0,94,80,74,45,49,33,52,67,136,72,63,0,63,106,138,54,43,165,122,154,21,79,73,68,228,94,0,191,226,127,247,75,2,160,147 \
,82,106,183,105,65,17,17,57,41,38,158,68,228,148,68,164,5,128,159,80,196,60,206,45,91,182,96,220,184,113,56,124,216,177,23,156,244,247,247,71,203,150,45,17,18,18,130,214,173,91,35 \
,40,40,200,236,144,156,130,136,224,220,185,115,56,124,248,48,14,28,56,128,195,135,15,187,92,34,122,207,61,247,96,214,172,89,184,235,174,187,138,122,249,0,128,135,148,82,209,118,14,171,220 \
,242,135,173,166,2,240,201,47,202,66,222,112,91,135,235,201,205,31,73,113,17,64,21,77,241,231,74,169,151,76,10,137,136,200,169,49,241,36,34,167,146,63,79,236,107,0,79,65,247,59,236 \
,196,137,19,152,56,113,34,214,174,117,204,245,62,220,220,220,112,235,173,183,22,36,154,77,155,54,133,155,155,75,238,158,97,87,57,57,57,136,138,138,194,129,3,7,112,224,192,1,68,70,70 \
,186,196,202,186,110,110,110,24,54,108,24,62,248,224,3,4,6,6,234,95,206,1,240,111,165,212,116,19,66,43,23,17,89,7,224,97,77,209,4,165,148,195,237,133,41,34,107,0,244,215,20 \
,157,5,208,208,209,231,164,18,17,57,42,38,158,68,228,52,68,164,63,128,69,40,220,3,129,228,228,100,188,251,238,187,152,53,107,150,195,173,150,234,238,238,142,219,111,191,29,29,59,118,68 \
,135,14,29,80,165,74,149,146,47,162,114,185,118,237,26,246,239,223,143,63,255,252,19,225,225,225,72,77,77,53,59,164,114,169,81,163,6,62,248,224,3,140,24,49,162,168,225,183,199,144,55 \
,79,210,105,122,63,69,164,21,242,122,109,45,206,42,165,26,152,21,79,81,242,87,198,222,166,41,202,5,112,139,82,234,164,57,17,17,17,57,63,38,158,68,228,240,68,164,18,128,181,0,238 \
,215,191,182,106,213,42,140,29,59,22,209,209,142,115,223,237,230,230,134,102,205,154,225,158,123,238,193,61,247,220,115,163,253,26,201,14,114,115,115,17,25,25,137,93,187,118,97,207,158,61,72 \
,72,72,48,59,36,171,117,234,212,9,115,231,206,69,243,230,205,245,47,101,3,152,164,148,154,101,66,88,86,17,145,56,0,181,52,69,205,149,82,71,205,138,71,43,127,84,69,28,128,26,154 \
,226,247,149,82,83,76,10,137,136,200,37,48,241,36,34,135,38,34,15,0,248,30,64,161,189,38,162,163,163,49,118,236,88,172,90,181,202,156,192,116,148,82,104,222,188,57,186,117,235,134,246 \
,237,219,195,223,223,223,236,144,72,71,68,112,226,196,9,236,220,185,19,59,118,236,192,229,203,151,205,14,169,204,60,61,61,49,126,252,120,188,243,206,59,240,244,244,212,191,124,16,192,61,74 \
,169,20,19,66,43,19,17,121,31,192,255,105,138,28,102,123,146,34,86,177,61,7,160,1,135,216,18,17,149,15,19,79,34,114,72,249,11,123,172,2,240,144,182,60,59,59,27,31,127,252,49 \
,222,122,235,45,135,88,80,166,90,181,106,232,212,169,19,238,191,255,126,212,175,95,223,236,112,168,148,68,4,199,143,31,199,111,191,253,134,157,59,119,58,196,207,82,89,180,107,215,14,11,23 \
,46,44,170,247,51,25,192,195,74,169,237,38,132,85,106,34,82,21,121,219,146,88,38,57,103,0,240,87,74,101,155,23,21,32,34,119,2,216,135,194,171,216,134,40,165,14,153,23,21,17,145 \
,107,96,226,73,68,14,71,68,218,3,216,4,160,170,182,252,232,209,163,24,62,124,56,194,194,194,204,9,44,159,187,187,59,218,180,105,131,30,61,122,224,206,59,239,228,150,39,78,46,51,51 \
,19,127,254,249,39,182,111,223,142,253,251,247,35,55,55,215,236,144,74,197,199,199,7,211,167,79,199,43,175,188,162,159,251,41,0,102,40,165,94,55,41,180,82,17,145,63,0,180,215,20,141 \
,82,74,205,51,49,30,55,0,231,1,212,214,20,127,161,148,122,209,164,144,136,136,92,10,19,79,34,114,40,34,50,3,121,67,240,148,166,12,243,230,205,195,184,113,227,76,237,153,10,8,8 \
,64,239,222,189,209,189,123,119,206,219,116,81,9,9,9,216,188,121,51,182,108,217,226,52,243,65,123,244,232,129,197,139,23,163,118,237,218,250,151,194,0,116,113,196,173,74,0,64,68,186,0 \
,208,246,204,70,41,165,110,49,49,158,143,0,140,215,20,93,4,80,71,41,229,252,75,36,19,17,57,0,38,158,68,228,16,68,164,6,128,223,1,180,208,150,159,56,113,2,195,135,15,199,174 \
,93,187,204,9,12,64,195,134,13,209,187,119,111,116,235,214,173,168,121,117,228,130,68,4,7,15,30,68,104,104,40,254,252,243,79,135,223,158,37,40,40,8,139,23,47,70,207,158,61,245,47 \
,93,2,112,183,82,234,132,9,97,149,72,68,46,2,208,238,21,211,80,41,117,198,132,56,130,1,156,1,96,25,190,32,200,155,47,187,199,222,177,16,17,185,42,38,158,68,100,58,17,233,13 \
,96,53,254,183,169,60,0,96,241,226,197,120,249,229,151,145,156,156,108,247,152,148,82,104,221,186,53,250,245,235,135,144,144,16,187,183,79,142,227,226,197,139,216,180,105,19,66,67,67,145,146 \
,226,184,235,246,184,185,185,97,218,180,105,152,58,117,170,126,127,216,44,0,125,148,82,161,38,133,118,67,34,50,13,192,155,154,162,181,74,169,254,55,56,221,150,113,236,3,208,70,83,244,157 \
,82,106,144,189,227,32,34,114,101,76,60,137,200,84,34,242,14,128,215,161,249,125,148,156,156,140,23,95,124,17,75,151,46,181,123,60,158,158,158,232,210,165,11,250,246,237,203,197,130,168,144 \
,244,244,116,252,250,235,175,248,233,167,159,16,27,27,107,118,56,55,244,224,131,15,98,233,210,165,168,94,189,186,182,88,0,76,84,74,125,108,82,88,69,202,223,42,233,42,0,143,252,162,28 \
,0,213,236,185,50,175,136,60,138,188,133,204,44,210,0,4,40,165,210,237,21,3,17,81,69,192,196,147,136,76,33,34,94,0,126,3,208,81,91,30,22,22,134,33,67,134,224,228,73,251,238 \
,211,238,238,238,142,46,93,186,96,208,160,65,8,10,10,178,107,219,228,92,68,4,225,225,225,88,191,126,61,14,28,56,96,118,56,69,106,210,164,9,214,173,91,87,212,170,183,243,149,82,35 \
,205,136,233,70,68,100,37,128,129,154,162,79,149,82,99,202,81,95,51,0,29,148,82,139,74,113,174,7,242,134,35,107,23,50,123,94,41,245,149,181,237,19,17,81,209,152,120,18,145,221,137 \
,200,45,0,118,3,8,208,150,127,250,233,167,152,48,97,2,178,178,178,236,22,139,187,187,59,186,118,237,138,129,3,7,50,225,164,50,139,140,140,196,170,85,171,176,119,239,94,136,56,214,54 \
,143,85,171,86,197,119,223,125,87,212,188,207,245,0,250,58,202,190,148,34,18,4,32,6,255,187,39,73,3,80,181,172,91,171,136,72,101,0,203,0,244,201,47,122,82,41,245,109,9,215,204 \
,7,240,172,166,232,136,82,170,197,141,206,39,34,34,235,49,241,36,34,187,18,145,7,1,252,8,160,96,149,158,180,180,52,60,255,252,243,118,29,90,171,148,194,221,119,223,141,33,67,134,32 \
,56,56,216,110,237,146,107,58,115,230,12,214,174,93,139,109,219,182,57,84,2,234,225,225,129,79,63,253,20,47,188,240,130,254,165,63,0,116,114,148,21,91,69,100,7,128,78,154,162,9,165 \
,29,22,156,191,13,202,12,0,227,160,249,189,130,188,97,187,157,148,82,127,220,224,186,38,0,34,241,191,189,68,47,208,240,219,0,0,32,0,73,68,65,84,5,192,173,74,169,200,50,134,79 \
,68,68,165,192,196,147,136,236,70,68,94,5,240,62,52,191,123,78,158,60,137,1,3,6,216,109,200,162,82,10,237,219,183,199,224,193,131,57,135,147,12,119,250,244,105,124,255,253,247,216,179 \
,103,143,67,37,160,147,39,79,198,244,233,211,245,251,125,30,3,208,74,41,101,191,33,6,55,32,34,33,0,254,214,20,93,82,74,5,222,232,124,205,117,109,0,108,0,80,235,6,167,164,3 \
,104,170,148,138,46,226,218,8,0,218,177,200,243,148,82,163,74,31,53,17,17,149,5,19,79,34,178,11,17,89,6,96,136,182,108,211,166,77,24,60,120,48,46,95,190,108,151,24,154,54,109 \
,138,231,158,123,14,205,154,53,179,75,123,84,113,157,61,123,22,43,87,174,116,168,4,116,228,200,145,248,226,139,47,224,238,238,174,45,62,14,160,165,131,36,159,199,0,104,255,113,246,83,74 \
,173,187,193,185,10,192,28,0,47,64,119,47,147,150,150,6,95,95,95,109,209,121,228,109,211,146,163,185,190,63,128,53,154,115,146,0,4,58,194,231,64,68,228,170,152,120,18,145,77,137,136 \
,39,128,61,40,188,85,1,62,251,236,51,140,27,55,14,217,217,101,154,198,101,149,202,149,43,99,208,160,65,232,221,187,183,126,155,9,34,155,58,113,226,4,22,47,94,140,67,135,14,153,29 \
,10,0,96,192,128,1,88,182,108,25,188,189,189,181,197,14,209,243,41,34,15,3,208,38,154,255,40,165,26,23,113,94,0,128,63,1,52,209,150,199,196,196,224,181,215,94,195,198,141,27,177 \
,103,207,30,52,106,212,72,251,242,26,165,212,163,249,215,187,1,136,7,80,67,243,250,19,74,169,149,6,189,21,34,34,42,2,19,79,34,178,25,17,241,3,112,24,64,67,75,89,118,118,54 \
,94,121,229,21,204,153,51,199,230,237,187,187,187,163,119,239,222,24,60,120,176,190,7,132,200,174,14,28,56,128,197,139,23,227,212,169,83,102,135,130,135,30,122,8,171,86,173,210,39,159,135 \
,1,180,54,123,206,167,136,196,2,208,174,242,213,91,41,245,139,230,245,110,0,126,6,80,73,123,221,210,165,75,49,102,204,152,130,209,19,33,33,33,216,179,103,15,42,85,42,116,218,96,165 \
,212,10,17,121,27,192,27,154,242,99,74,169,219,12,126,43,68,68,164,195,196,147,136,108,66,68,106,33,239,102,182,96,158,86,82,82,18,6,13,26,132,77,155,54,217,188,253,54,109,218,96 \
,196,136,17,168,83,167,142,205,219,34,42,13,17,193,246,237,219,177,124,249,114,196,199,199,155,26,203,13,146,207,157,74,169,206,102,197,4,0,34,50,20,192,98,77,81,65,175,167,136,188,0 \
,224,115,104,238,93,226,227,227,241,252,243,207,99,205,154,53,208,123,246,217,103,49,127,254,124,109,209,53,0,141,1,156,1,224,101,105,18,121,9,247,65,35,223,7,17,17,93,143,137,39,17 \
,25,78,68,110,6,16,14,160,178,165,236,194,133,11,232,213,171,151,205,135,28,6,5,5,97,212,168,81,184,243,206,59,109,218,14,145,181,50,51,51,241,227,143,63,98,245,234,213,200,200,200 \
,48,45,142,62,125,250,96,213,170,85,240,242,242,210,22,255,160,148,122,220,172,152,0,64,68,46,0,168,173,41,234,11,160,45,10,247,82,34,44,44,12,143,61,246,24,206,157,59,119,195,186 \
,86,172,88,129,65,131,6,105,139,226,161,249,50,12,192,6,165,212,67,229,14,154,136,136,74,196,196,147,136,12,37,34,173,145,183,85,67,65,87,74,84,84,20,30,120,224,1,252,243,207,63 \
,54,107,87,41,133,251,239,191,31,207,60,243,12,124,124,124,108,214,14,145,81,18,18,18,176,108,217,50,83,183,96,25,52,104,16,150,47,95,174,159,251,252,137,82,234,21,83,2,2,32,34 \
,131,1,44,215,20,37,67,243,37,22,0,204,155,55,15,255,250,215,191,74,76,220,3,3,3,17,17,17,129,192,192,34,23,200,205,6,80,75,41,101,159,213,205,136,136,42,56,38,158,68,100 \
,152,252,173,13,118,227,127,195,216,112,248,240,97,60,240,192,3,184,112,225,130,205,218,173,87,175,30,94,122,233,37,174,86,123,3,89,89,89,184,124,249,50,146,147,147,145,146,146,130,107,215 \
,174,33,45,45,237,186,71,106,106,42,114,114,114,144,158,158,94,232,250,180,180,52,228,230,230,22,28,103,103,103,67,41,5,119,119,119,248,251,251,195,205,205,13,149,42,85,130,151,151,23,188 \
,188,188,224,227,227,3,15,15,15,248,249,249,161,106,213,170,168,86,173,26,170,87,175,142,234,213,171,163,106,213,170,92,224,73,231,240,225,195,152,63,127,62,206,156,57,99,74,251,163,71,143 \
,198,231,159,127,174,47,30,165,148,154,103,70,60,0,32,34,209,0,138,28,39,63,115,230,76,76,158,60,185,212,117,61,241,196,19,248,246,219,111,139,122,233,35,165,212,68,235,34,36,34,162 \
,178,98,226,73,68,134,16,145,118,0,118,66,179,129,251,182,109,219,208,175,95,63,92,189,122,213,38,109,186,187,187,99,192,128,1,120,236,177,199,224,233,233,89,242,5,46,40,53,53,21,49 \
,49,49,72,76,76,196,165,75,151,112,229,202,21,36,36,36,224,242,229,203,72,72,72,192,149,43,87,108,246,249,91,195,205,205,173,32,25,173,81,163,6,106,214,172,137,122,245,234,161,110,221 \
,186,168,91,183,46,2,2,2,204,14,209,20,57,57,57,248,229,151,95,176,108,217,50,92,187,118,205,238,237,191,243,206,59,152,58,117,170,182,40,23,64,7,165,212,94,187,7,3,64,68,6 \
,0,248,65,91,150,147,147,131,209,163,71,99,222,188,178,231,195,107,214,172,65,255,254,253,181,69,89,0,124,149,82,182,95,86,155,136,136,0,48,241,36,34,3,136,72,71,0,219,160,73,58 \
,67,67,67,209,191,127,127,155,221,68,55,109,218,20,47,189,244,18,26,54,108,104,147,250,29,73,86,86,22,98,99,99,17,29,29,141,11,23,46,32,38,38,6,209,209,209,136,142,142,118,168 \
,164,210,8,190,190,190,8,14,14,70,253,250,245,17,28,28,140,70,141,26,225,150,91,110,169,48,171,18,39,36,36,224,171,175,190,66,88,88,152,93,219,85,74,97,217,178,101,24,60,120,176 \
,182,56,13,121,251,95,218,125,37,36,17,121,10,192,18,203,113,110,110,46,158,125,246,89,124,243,205,55,86,213,87,187,118,109,68,68,68,160,122,245,234,5,85,2,168,175,148,138,46,111,172 \
,68,68,84,58,76,60,137,168,92,68,228,110,0,191,3,240,176,148,109,220,184,17,143,62,250,232,117,67,54,141,224,225,225,129,33,67,134,160,95,191,126,46,57,100,51,37,37,5,81,81,81 \
,56,121,242,36,162,162,162,112,230,204,25,196,199,199,23,26,234,90,209,184,185,185,161,126,253,250,184,237,182,219,10,30,53,107,214,52,59,44,155,218,179,103,15,230,207,159,143,196,196,68,187 \
,181,89,169,82,37,108,223,190,29,109,219,182,213,22,71,1,104,166,148,178,219,36,84,17,185,11,121,243,196,221,243,143,241,210,75,47,225,139,47,190,40,87,189,99,199,142,197,172,89,179,180 \
,69,219,149,82,247,150,171,82,34,34,42,53,38,158,68,100,53,17,105,1,224,47,104,230,116,174,95,191,30,143,61,246,152,77,86,235,172,83,167,14,198,143,31,143,38,77,154,148,124,178,19 \
,72,79,79,199,201,147,39,113,226,196,137,130,71,108,108,172,217,97,57,133,154,53,107,162,121,243,230,184,235,174,187,112,231,157,119,194,207,207,207,236,144,12,151,150,150,134,197,139,23,35,52 \
,52,212,110,139,15,213,169,83,7,123,247,238,213,111,67,52,95,41,53,210,30,237,139,72,85,0,209,0,10,254,66,223,122,235,45,188,249,230,155,229,174,219,203,203,11,199,142,29,67,163,70 \
,141,180,197,33,220,74,133,136,200,62,152,120,18,145,85,68,164,17,128,8,104,54,114,95,187,118,45,6,14,28,136,204,204,76,195,219,187,239,190,251,48,114,228,72,167,94,177,246,234,213,171 \
,136,136,136,192,161,67,135,16,17,17,129,243,231,207,87,232,158,76,163,184,187,187,163,69,139,22,104,215,174,29,218,182,109,139,90,181,106,153,29,146,161,34,34,34,240,233,167,159,34,46,46 \
,206,46,237,117,236,216,17,219,182,109,211,207,155,238,167,148,90,103,235,182,69,100,63,128,214,150,227,111,191,253,22,79,62,249,164,97,137,247,147,79,62,137,165,75,151,106,139,14,41,165,90 \
,25,82,57,17,17,21,139,137,39,17,149,153,136,4,33,111,8,94,193,22,7,155,54,109,66,223,190,125,13,79,58,125,125,125,49,122,244,104,116,234,212,201,208,122,237,33,59,59,27,17,17 \
,17,248,235,175,191,112,240,224,65,156,57,115,198,180,109,51,42,146,134,13,27,162,67,135,14,232,214,173,155,203,36,161,215,174,93,195,194,133,11,177,101,203,22,187,252,12,77,154,52,9,31 \
,124,240,129,182,40,29,192,77,74,169,36,91,181,41,34,211,1,76,177,28,239,219,183,15,157,59,119,54,116,200,190,155,155,27,194,195,195,209,186,117,107,109,113,119,165,212,175,134,53,66,68 \
,68,69,98,226,73,68,101,34,34,85,0,156,2,80,176,252,232,174,93,187,208,179,103,79,164,165,165,25,218,86,179,102,205,48,126,252,120,167,74,30,174,92,185,130,125,251,246,33,60,60,28 \
,7,14,28,48,101,133,82,202,163,148,66,171,86,173,208,189,123,119,116,232,208,193,37,86,62,14,15,15,199,156,57,115,112,249,178,109,183,158,84,74,97,221,186,117,232,211,167,143,182,120,183 \
,82,234,30,91,180,39,34,183,1,56,12,192,13,0,146,146,146,208,166,77,27,156,60,121,210,240,182,122,245,234,133,141,27,55,106,139,216,235,73,68,100,7,76,60,137,168,212,68,196,3,192 \
,113,0,141,45,101,251,247,239,71,183,110,221,144,148,100,92,71,136,82,10,15,61,244,16,134,15,31,14,119,119,119,195,234,181,149,228,228,100,132,135,135,99,247,238,221,248,235,175,191,144,147 \
,147,99,118,72,164,227,235,235,139,78,157,58,225,129,7,30,64,227,198,141,75,190,192,129,165,166,166,22,204,253,180,165,128,128,0,28,62,124,24,55,221,116,147,182,248,89,165,212,215,70,182 \
,35,34,10,192,105,0,245,45,101,131,6,13,194,119,223,125,103,100,51,133,236,222,189,27,119,223,125,183,182,232,22,165,84,148,205,26,36,34,34,38,158,68,84,122,34,242,59,128,206,150,227 \
,227,199,143,163,75,151,46,184,120,241,162,97,109,84,174,92,25,19,38,76,64,72,72,136,97,117,218,66,122,122,58,246,236,217,131,223,126,251,13,17,17,17,156,171,233,68,90,180,104,129,71 \
,31,125,20,119,220,113,7,148,114,222,255,6,183,109,219,134,185,115,231,218,100,245,104,139,190,125,251,98,237,218,181,218,162,12,0,65,70,14,185,21,145,183,1,188,97,57,94,177,98,133,126 \
,91,23,195,61,246,216,99,248,254,251,239,181,69,191,40,165,122,219,180,81,34,162,10,206,121,255,199,37,34,187,18,145,175,1,60,99,57,142,137,137,193,221,119,223,141,51,103,206,24,214,70 \
,195,134,13,49,121,242,100,4,5,5,25,86,167,209,78,158,60,137,208,208,80,236,216,177,131,195,104,157,92,195,134,13,209,175,95,63,116,238,220,217,41,122,214,139,114,225,194,5,124,244,209 \
,71,56,117,234,148,205,218,88,180,104,17,134,13,27,166,45,10,85,74,61,96,68,221,34,226,15,32,1,249,43,99,95,186,116,9,45,90,180,48,244,203,172,162,184,187,187,227,248,241,227,218 \
,21,178,115,1,4,40,165,174,216,180,97,34,162,10,140,137,39,17,149,72,68,38,3,152,97,57,78,73,73,193,189,247,222,139,240,240,112,195,218,232,220,185,51,94,122,233,37,120,123,123,27 \
,86,167,81,210,211,211,177,109,219,54,252,252,243,207,56,127,254,188,217,225,144,193,130,130,130,208,191,127,127,116,239,222,221,41,231,129,102,101,101,97,209,162,69,216,176,97,131,77,22,30,170 \
,86,173,26,142,30,61,170,31,114,219,73,41,181,171,188,117,139,200,42,0,143,90,142,135,13,27,134,37,75,150,148,183,218,82,41,98,95,207,185,74,169,23,236,210,56,17,81,5,196,196,147 \
,136,138,37,34,15,2,88,143,252,223,23,57,57,57,232,215,175,31,126,254,249,103,67,234,119,115,115,195,176,97,195,208,175,95,63,67,234,51,82,92,92,28,54,108,216,128,173,91,183,34,53 \
,53,213,236,112,200,198,2,3,3,241,212,83,79,161,115,231,206,78,57,4,55,44,44,12,159,125,246,25,146,147,147,13,175,123,232,208,161,88,188,120,177,182,40,6,64,176,82,202,234,76,87 \
,68,154,32,111,117,108,5,228,173,98,219,190,125,123,187,13,91,175,92,185,50,206,158,61,139,106,213,170,89,138,210,0,84,86,74,113,220,60,17,145,13,56,223,255,172,68,100,55,34,82,31 \
,121,55,134,94,150,178,23,95,124,17,95,124,241,133,33,245,59,234,124,206,216,216,88,172,89,179,6,91,183,110,229,66,65,21,80,253,250,245,49,108,216,48,180,105,211,198,236,80,202,44,33 \
,33,1,31,124,240,1,34,35,35,13,173,87,41,133,237,219,183,163,115,231,206,218,226,241,74,169,255,90,91,167,136,252,5,224,14,203,113,151,46,93,176,99,199,142,114,68,89,118,31,126,248 \
,33,38,76,152,160,45,122,84,41,181,198,174,65,16,17,85,16,76,60,137,168,72,34,226,5,224,12,128,130,241,117,31,127,252,177,254,38,205,106,142,56,159,243,236,217,179,248,241,199,31,177 \
,125,251,118,46,22,68,8,9,9,193,176,97,195,156,110,21,220,172,172,44,204,155,55,15,155,55,111,54,180,222,86,173,90,225,175,191,254,210,206,135,77,1,80,93,41,149,93,214,186,68,164 \
,39,128,77,150,227,213,171,87,99,192,128,1,198,4,90,6,205,155,55,71,68,68,132,182,40,76,41,213,222,238,129,16,17,85,0,76,60,137,168,72,250,21,108,183,110,221,138,94,189,122,33 \
,59,187,204,247,152,215,105,223,190,61,198,141,27,231,48,243,57,227,227,227,177,116,233,82,236,216,177,195,38,115,228,200,121,185,185,185,161,119,239,222,24,50,100,8,124,125,125,205,14,167,76 \
,54,109,218,132,249,243,231,27,242,111,214,98,193,130,5,24,49,98,132,182,232,125,165,212,148,178,214,35,34,39,145,191,45,83,102,102,38,110,191,253,118,68,69,153,179,155,201,222,189,123,113 \
,215,93,119,89,14,115,1,84,85,74,165,152,18,12,17,145,11,99,226,73,68,215,17,145,247,1,252,159,229,248,159,127,254,65,219,182,109,145,144,144,80,238,186,239,191,255,126,60,255,252,243 \
,14,177,138,104,122,122,58,214,174,93,139,213,171,87,35,51,51,211,236,112,200,129,85,175,94,29,195,134,13,195,189,247,222,107,118,40,101,114,242,228,73,204,156,57,19,241,241,241,134,212,87 \
,175,94,61,68,70,70,194,199,199,199,82,148,1,160,154,82,170,212,123,186,136,200,221,0,118,91,142,103,207,158,141,177,99,199,26,18,159,53,94,126,249,101,124,250,233,167,218,162,215,148,82 \
,51,110,116,62,17,17,89,135,137,39,17,21,34,34,93,1,252,134,252,223,15,105,105,105,232,216,177,35,14,28,56,80,174,122,149,82,24,54,108,24,250,247,239,111,64,148,229,35,34,248,237 \
,183,223,176,104,209,34,92,189,122,213,236,112,200,137,180,105,211,6,35,71,142,116,168,33,226,37,9,13,13,53,108,94,54,0,124,244,209,71,24,63,126,188,182,104,134,82,234,181,210,94,47 \
,34,251,0,180,1,242,134,5,55,105,210,4,231,206,157,51,44,190,178,170,89,179,38,162,163,163,225,229,85,48,149,253,140,82,170,161,105,1,17,17,185,40,38,158,68,84,32,127,79,189,24 \
,0,254,150,178,193,131,7,99,197,138,21,229,170,215,211,211,19,99,198,140,65,167,78,157,202,25,97,249,197,196,196,224,203,47,191,196,193,131,7,205,14,133,156,148,183,183,55,6,15,30,140 \
,190,125,251,58,197,234,183,83,166,76,193,177,99,199,12,171,47,48,48,16,103,206,156,65,165,74,149,44,69,41,200,27,158,90,226,196,104,253,74,182,139,23,47,198,211,79,63,109,88,108,214 \
,90,179,102,141,254,75,177,186,74,169,104,179,226,33,34,114,69,110,102,7,64,68,14,101,43,52,73,231,156,57,115,202,157,116,250,251,251,99,218,180,105,166,39,157,57,57,57,88,189,122,53 \
,94,121,229,21,38,157,84,46,25,25,25,248,230,155,111,48,117,234,84,196,197,197,153,29,78,177,206,157,59,103,104,210,9,228,205,137,94,184,112,161,182,200,31,192,139,165,188,252,11,228,39 \
,157,34,130,255,252,231,63,134,198,102,173,165,75,151,234,139,254,101,70,28,68,68,174,204,241,191,170,37,34,187,16,145,215,1,188,107,57,62,112,224,0,58,116,232,128,244,244,82,79,221,186 \
,78,64,64,0,166,78,157,138,134,13,27,26,16,161,245,226,226,226,48,123,246,108,28,57,114,196,212,56,200,245,120,123,123,99,232,208,161,120,240,193,7,29,178,247,243,235,175,191,198,79,63 \
,253,100,120,189,77,154,52,193,241,227,199,181,115,181,99,148,82,117,138,187,70,68,170,3,184,132,252,47,189,215,175,95,143,135,31,126,216,240,216,172,225,231,231,135,248,248,120,109,47,238,41 \
,165,84,19,51,99,34,34,114,53,236,241,36,34,136,72,8,128,183,45,199,169,169,169,120,226,137,39,202,149,116,54,110,220,24,255,249,207,127,76,79,58,67,67,67,241,202,43,175,48,233,36 \
,155,200,200,200,192,252,249,243,241,222,123,239,225,242,229,203,102,135,83,72,86,86,22,126,251,237,55,155,212,125,242,228,73,172,94,189,90,91,84,91,68,74,218,248,244,45,104,238,59,62,248 \
,224,3,91,132,102,149,212,212,84,108,217,178,69,91,212,72,68,42,155,21,15,17,145,43,98,226,73,84,193,137,136,39,128,45,208,252,62,120,249,229,151,203,53,60,175,89,179,102,120,231,157 \
,119,80,189,122,117,3,34,180,206,149,43,87,240,222,123,239,225,139,47,190,40,87,2,77,84,26,225,225,225,24,59,118,44,246,238,221,107,118,40,5,246,236,217,131,148,20,219,237,10,50,119 \
,238,92,125,209,244,18,46,25,102,121,114,240,224,65,236,216,177,195,240,152,202,99,237,218,181,218,67,5,96,196,13,78,37,34,34,43,48,241,36,162,117,0,106,90,14,150,45,91,134,111,190 \
,249,198,234,202,90,180,104,129,105,211,166,153,186,231,97,88,88,24,198,142,29,139,125,251,246,153,22,3,85,60,201,201,201,152,49,99,6,22,46,92,104,232,222,153,214,10,13,13,181,105,253 \
,191,254,250,43,78,156,56,161,45,186,79,68,124,138,58,87,68,250,0,168,106,57,254,242,203,47,109,26,155,53,214,175,95,143,220,220,66,235,35,153,191,234,17,17,145,11,97,226,73,84,129 \
,137,72,127,0,189,44,199,81,81,81,24,61,122,180,213,245,181,104,209,2,83,167,78,213,206,147,178,171,156,156,28,44,89,178,4,239,191,255,62,183,73,33,83,136,8,214,173,91,135,201,147 \
,39,35,38,38,198,180,56,162,163,163,109,62,188,92,68,176,96,193,2,109,145,7,128,103,110,112,250,155,150,39,41,41,41,88,182,108,153,13,35,179,78,92,92,28,246,236,217,163,45,106,41 \
,34,30,102,197,67,68,228,106,152,120,18,85,80,249,61,19,75,44,199,89,89,89,24,60,120,48,146,147,147,173,170,239,206,59,239,196,191,255,253,111,237,198,242,118,21,31,31,143,215,95,127 \
,29,171,87,175,134,136,152,18,3,145,197,201,147,39,49,97,194,4,211,134,147,110,222,188,217,46,255,14,150,44,89,162,239,37,28,169,63,71,68,2,0,220,105,57,94,177,98,133,195,126,49 \
,164,91,136,201,3,64,87,147,66,33,34,114,57,76,60,137,42,174,239,161,217,58,229,253,247,223,71,120,120,184,85,21,181,107,215,14,83,166,76,209,110,192,110,87,97,97,97,24,63,126,60 \
,142,31,63,110,74,251,68,69,185,118,237,26,62,254,248,99,204,155,55,15,57,57,57,118,107,215,150,139,10,233,69,71,71,235,123,9,91,137,136,183,238,180,55,161,89,69,255,171,175,190,178 \
,67,100,214,217,188,121,179,190,104,184,9,97,16,17,185,36,38,158,68,21,144,136,60,0,160,143,229,56,34,34,2,239,189,247,158,85,117,181,108,217,18,19,39,78,132,135,135,253,71,164,229 \
,228,228,96,229,202,149,120,255,253,247,109,186,136,10,81,121,108,216,176,1,83,167,78,181,219,170,183,127,254,249,167,93,123,20,87,173,90,165,61,116,7,240,164,238,148,193,150,39,251,247,239 \
,119,168,5,152,244,254,254,251,111,36,36,36,104,139,238,53,41,20,34,34,151,195,196,147,168,130,17,17,47,0,223,89,142,115,114,114,48,98,196,8,100,100,100,148,185,174,166,77,155,98,202 \
,148,41,240,244,244,52,50,196,82,73,74,74,194,27,111,188,129,21,43,86,112,104,45,57,188,99,199,142,97,226,196,137,229,90,45,186,180,108,189,168,144,222,170,85,171,244,255,6,11,86,175 \
,21,145,182,0,2,44,199,139,22,45,178,99,100,101,151,155,155,139,109,219,182,105,139,130,69,196,156,73,235,68,68,46,134,137,39,81,197,179,28,64,21,203,193,71,31,125,132,176,176,176,50 \
,87,82,187,118,109,188,254,250,235,166,44,36,116,230,204,25,188,250,234,171,56,122,244,168,221,219,38,178,86,98,98,34,166,78,157,170,223,255,210,80,113,113,113,56,124,248,176,85,215,186,187 \
,187,91,117,221,217,179,103,245,255,22,239,212,60,127,211,242,36,59,59,27,43,86,172,176,170,13,123,250,245,215,95,181,135,10,154,209,33,68,68,100,61,38,158,68,21,136,136,220,3,96,128 \
,229,56,50,50,18,111,190,249,102,153,235,9,8,8,192,91,111,189,133,106,213,170,25,24,93,233,132,135,135,227,181,215,94,195,197,139,23,237,222,54,81,121,89,86,94,158,53,107,150,85,163 \
,12,74,18,26,26,106,245,8,128,25,51,102,88,157,124,110,217,178,69,123,88,89,68,26,136,136,59,128,238,150,194,13,27,54,32,46,46,206,170,250,237,73,247,94,128,235,135,14,19,17,145 \
,21,152,120,18,85,44,5,221,13,185,185,185,120,246,217,103,113,237,218,181,50,85,224,239,239,143,55,223,124,19,129,129,129,134,7,87,28,17,193,15,63,252,128,247,222,123,15,105,105,105,118 \
,109,155,200,104,219,183,111,199,235,175,191,142,248,248,120,195,234,204,201,201,209,247,214,149,90,243,230,205,241,200,35,143,224,241,199,31,183,234,250,173,91,183,234,139,254,15,192,19,0,10,22 \
,26,90,188,120,177,85,117,219,91,100,100,36,206,159,63,175,45,106,111,86,44,68,68,174,132,137,39,81,5,33,34,19,0,212,181,28,207,157,59,23,59,119,238,44,83,29,238,238,238,152,56 \
,113,34,234,214,173,91,242,201,6,202,202,202,194,172,89,179,176,108,217,50,206,231,36,151,113,242,228,73,76,156,56,17,7,15,30,52,164,190,63,255,252,19,87,174,92,177,234,218,97,195,242 \
,166,101,142,25,51,198,170,225,243,219,183,111,71,122,122,186,182,232,121,0,83,44,7,137,137,137,88,191,126,189,85,177,153,65,247,187,177,86,254,220,120,34,34,42,7,38,158,68,21,128,136 \
,248,2,120,215,114,156,144,144,128,55,222,120,163,204,245,140,24,49,2,33,33,33,70,134,86,162,244,244,116,76,159,62,29,191,255,254,187,93,219,37,178,135,171,87,175,226,173,183,222,50,100 \
,255,217,34,182,2,41,149,170,85,171,226,193,7,31,4,0,4,6,6,98,248,240,225,101,174,35,41,41,9,211,167,79,215,22,185,1,104,97,57,8,13,13,181,201,208,98,91,209,109,17,227 \
,6,160,163,73,161,16,17,185,12,38,158,68,21,195,55,0,124,44,7,255,254,247,191,245,91,6,148,168,103,207,158,5,55,167,246,146,146,146,130,105,211,166,225,239,191,255,182,107,187,68,246 \
,148,155,155,139,37,75,150,224,163,143,62,210,247,26,150,90,92,92,28,14,28,56,96,213,181,143,63,254,120,161,94,206,231,159,127,30,1,1,1,197,92,81,180,153,51,103,226,200,145,35,69 \
,190,22,25,25,105,85,108,102,209,37,158,0,96,221,24,100,34,34,42,192,196,147,200,197,137,200,173,0,30,179,28,31,56,112,0,115,231,206,45,83,29,183,221,118,27,70,142,28,105,116,104 \
,197,186,114,229,10,222,120,227,13,167,187,97,37,178,214,174,93,187,48,121,242,100,171,22,224,217,178,101,139,85,61,166,74,41,12,26,52,168,80,153,159,159,31,70,141,26,85,230,186,50,51 \
,51,241,252,243,207,35,55,55,247,186,215,162,162,162,202,92,159,153,254,254,251,111,253,252,247,206,102,197,66,68,228,42,152,120,18,185,190,85,200,219,18,0,34,130,49,99,198,32,39,39,167 \
,212,23,7,6,6,98,242,228,201,240,240,240,176,85,124,215,137,141,141,197,228,201,147,113,250,244,105,187,181,73,228,8,206,156,57,131,137,19,39,150,169,247,178,60,139,10,117,237,218,21,13 \
,27,54,188,174,124,232,208,161,168,87,175,94,153,235,219,185,115,103,145,95,108,237,219,183,207,154,240,76,147,149,149,165,143,185,169,89,177,16,17,185,10,38,158,68,46,76,68,30,7,208,220 \
,114,188,114,229,202,50,205,149,116,119,119,199,132,9,19,80,165,74,149,146,79,54,200,217,179,103,241,218,107,175,57,197,182,11,68,182,144,146,146,130,183,223,126,27,63,254,248,99,169,206,223 \
,183,111,31,18,19,19,173,106,235,201,39,139,222,41,196,211,211,19,99,198,140,177,170,206,241,227,199,99,239,222,189,5,199,123,247,238,197,177,99,199,172,170,203,76,186,225,182,149,68,164,182 \
,89,177,16,17,185,2,38,158,68,174,109,182,229,73,106,106,42,94,125,245,213,50,93,60,120,240,96,52,107,214,204,240,160,110,36,38,38,6,111,190,249,38,46,95,190,108,183,54,137,28,81 \
,110,110,46,22,45,90,132,143,62,250,168,196,69,121,66,67,67,173,106,163,126,253,250,232,210,165,203,13,95,239,219,183,47,154,55,111,126,195,215,111,36,61,61,29,221,187,119,199,211,79,63 \
,141,238,221,187,95,55,148,215,89,28,61,122,84,95,84,203,140,56,136,136,92,5,19,79,34,23,37,34,207,0,184,201,114,60,107,214,44,156,59,119,174,212,215,183,104,209,2,143,60,242,136 \
,45,66,43,82,66,66,2,147,78,34,157,157,59,119,22,59,239,243,210,165,75,86,47,190,53,100,200,16,184,185,221,248,54,192,205,205,13,227,199,143,183,170,238,228,228,100,44,94,188,24,191 \
,254,250,43,254,249,231,31,171,234,48,91,17,11,61,85,54,35,14,34,34,87,193,196,147,200,117,205,180,60,73,74,74,194,199,31,127,92,234,11,171,84,169,130,241,227,199,23,123,83,106,164 \
,164,164,36,76,155,54,13,23,47,94,180,75,123,68,206,228,244,233,211,152,52,105,82,145,243,62,55,111,222,92,228,98,62,37,241,241,241,193,128,1,3,74,60,175,107,215,174,232,216,177,98 \
,238,36,82,68,79,179,191,25,113,16,17,185,10,38,158,68,46,72,68,94,4,16,104,57,254,240,195,15,75,61,7,76,41,133,49,99,198,160,70,141,26,182,10,175,16,203,150,41,209,209,209 \
,118,105,143,200,25,37,39,39,227,157,119,222,193,250,245,235,11,202,114,115,115,177,117,235,86,171,234,235,211,167,15,170,85,171,86,170,115,39,76,152,0,165,148,85,237,56,51,47,47,47,125 \
,81,249,54,90,37,34,170,224,152,120,18,185,24,17,81,0,222,179,28,39,36,36,96,246,236,217,197,92,81,88,143,30,61,208,166,77,27,91,132,118,157,244,244,116,188,247,222,123,56,115,230 \
,140,93,218,35,114,102,57,57,57,88,176,96,1,254,251,223,255,34,35,35,3,225,225,225,101,222,143,215,98,200,144,33,165,62,183,85,171,86,232,213,171,151,85,237,56,179,198,141,27,235,139 \
,34,204,136,131,136,200,85,216,111,127,4,34,178,151,9,0,10,186,50,102,206,156,137,171,87,175,150,234,194,26,53,106,224,233,167,159,182,85,92,133,228,228,228,224,253,247,223,119,202,213,46 \
,137,204,244,251,239,191,227,194,133,11,240,246,246,182,234,250,214,173,91,163,101,203,150,101,186,102,252,248,241,216,188,121,51,178,179,179,173,106,211,25,53,106,212,72,123,40,0,46,152,20,10 \
,17,145,75,96,226,73,228,66,68,196,13,192,27,150,227,216,216,88,204,153,51,167,212,215,143,28,57,18,126,126,126,182,8,237,58,95,127,253,117,153,246,42,172,40,252,252,252,16,16,16,128 \
,154,53,107,162,106,213,170,168,92,185,50,252,252,252,80,185,114,101,248,251,251,195,207,207,15,238,238,238,240,241,241,129,135,135,7,188,189,189,225,233,233,121,93,61,34,130,212,212,212,130,63 \
,129,188,149,141,211,210,210,112,245,234,85,92,189,122,21,201,201,201,69,62,68,56,162,208,209,157,56,113,194,234,107,159,122,234,169,50,95,211,176,97,67,12,28,56,16,203,151,47,183,186,93 \
,103,115,239,189,247,106,15,175,42,165,202,62,153,150,136,136,10,48,241,36,114,45,207,2,40,216,116,115,198,140,25,72,75,75,43,213,133,157,58,117,66,135,14,29,108,21,87,33,91,183,110 \
,197,134,13,27,236,210,150,35,170,81,163,6,130,131,131,81,167,78,29,4,7,7,35,56,56,24,65,65,65,168,89,179,166,213,189,88,70,17,17,36,39,39,35,33,33,1,23,47,94,68,92 \
,92,220,117,127,150,180,189,7,57,174,26,53,106,88,61,108,118,204,152,49,88,187,118,109,193,23,25,174,44,36,36,4,55,223,124,179,182,104,151,89,177,16,17,185,10,38,158,68,174,101,154 \
,229,73,124,124,60,230,205,155,87,170,139,42,87,174,140,103,159,125,214,102,65,105,29,61,122,20,95,126,249,165,93,218,114,4,129,129,129,104,210,164,73,161,71,149,42,85,74,190,208,36,74 \
,41,84,169,82,5,85,170,84,209,15,53,44,112,229,202,21,92,188,120,17,23,47,94,68,116,116,52,206,158,61,139,211,167,79,35,54,54,214,170,21,86,201,126,6,13,26,100,245,151,27,1 \
,1,1,24,62,124,120,153,70,81,56,171,17,35,70,232,139,254,107,70,28,68,68,174,164,226,45,83,71,228,162,68,228,62,0,5,75,92,190,253,246,219,152,54,109,90,49,87,252,207,232,209 \
,163,209,179,103,79,91,133,86,224,226,197,139,152,52,105,82,169,231,156,58,163,106,213,170,161,121,243,230,8,9,9,65,72,72,8,130,130,130,204,14,201,110,178,179,179,17,19,19,131,115,231 \
,206,225,220,185,115,56,121,242,36,206,158,61,123,195,61,40,201,190,220,221,221,177,117,235,86,4,7,7,91,93,71,90,90,26,186,119,239,142,75,151,46,25,24,153,99,105,210,164,9,142,28 \
,57,162,93,213,54,13,128,191,82,138,99,208,137,136,202,129,61,158,68,174,163,96,163,206,244,244,116,124,254,249,231,165,186,168,94,189,122,232,222,189,187,205,130,178,72,79,79,199,140,25,51 \
,92,46,233,84,74,161,89,179,102,104,215,174,29,218,181,107,87,174,155,122,103,231,225,225,129,122,245,234,161,94,189,122,133,202,175,94,189,138,168,168,40,68,70,70,226,248,241,227,136,138,138 \
,42,245,16,112,50,206,125,247,221,87,238,159,79,95,95,95,140,30,61,26,239,188,243,142,65,81,57,22,165,20,62,249,228,19,253,86,42,51,152,116,18,17,149,31,19,79,34,23,32,34,13 \
,1,180,178,28,47,89,178,164,212,189,76,207,62,251,44,220,221,221,109,20,217,255,124,246,217,103,56,125,250,180,205,219,177,7,165,20,90,182,108,137,78,157,58,161,93,187,118,168,90,181,170 \
,217,33,57,180,42,85,170,160,77,155,54,5,219,244,136,8,206,157,59,135,227,199,143,227,248,241,227,136,140,140,196,249,243,231,185,168,145,141,89,179,168,80,81,134,12,25,130,69,139,22,225 \
,236,217,179,134,212,231,72,222,126,251,109,60,244,208,67,218,162,68,0,211,77,10,135,136,200,165,112,168,45,145,11,16,145,141,0,122,229,63,199,237,183,223,142,35,71,142,148,120,93,219,182 \
,109,241,218,107,175,217,58,60,108,221,186,21,159,125,246,153,205,219,177,181,160,160,32,220,119,223,125,232,214,173,27,2,3,3,205,14,199,165,164,165,165,225,232,209,163,56,112,224,0,246,239 \
,223,143,243,231,207,155,29,146,75,105,216,176,33,66,67,67,161,148,49,255,237,255,244,211,79,24,63,126,188,33,117,57,138,17,35,70,96,254,252,249,218,207,72,0,244,87,74,173,51,49,44 \
,34,34,151,193,30,79,34,39,39,34,254,0,238,183,28,111,220,184,177,84,73,167,187,187,59,134,14,29,106,203,208,0,228,109,233,178,96,193,2,155,183,99,43,74,41,220,121,231,157,232,219 \
,183,47,90,182,108,105,216,141,59,21,230,235,235,91,168,87,244,210,165,75,248,251,239,191,177,127,255,126,28,60,120,16,41,41,41,38,71,232,220,134,14,29,106,232,207,110,159,62,125,240,245 \
,215,95,227,240,225,195,134,213,105,166,215,94,123,13,239,190,251,174,254,51,250,128,73,39,17,145,113,120,7,69,228,228,68,228,109,104,246,238,236,209,163,7,182,110,221,90,204,21,121,122,247 \
,238,141,81,163,70,217,50,52,228,228,228,96,242,228,201,229,218,115,208,44,158,158,158,232,210,165,11,250,246,237,139,250,245,235,155,29,78,133,150,155,155,139,19,39,78,96,239,222,189,216,181 \
,107,23,98,98,98,204,14,201,169,248,250,250,98,231,206,157,168,92,185,178,161,245,238,220,185,19,207,60,243,140,161,117,218,91,229,202,149,49,123,246,108,12,31,62,92,255,210,102,165,148,237 \
,87,92,35,34,170,64,152,120,18,57,57,17,137,1,112,19,0,68,70,70,226,214,91,111,45,113,174,156,167,167,39,190,248,226,11,4,4,4,216,52,182,165,75,151,98,213,170,85,54,109,195 \
,104,238,238,238,232,209,163,7,6,14,28,136,26,53,106,152,29,14,21,225,196,137,19,216,177,99,7,118,237,218,133,132,132,4,179,195,113,120,131,7,15,198,219,111,191,109,147,186,159,126,250 \
,105,236,222,189,219,38,117,219,90,199,142,29,177,104,209,34,52,109,218,84,255,210,175,0,238,87,74,113,111,32,34,34,3,113,168,45,145,19,19,145,16,228,39,157,0,176,112,225,194,82,45 \
,208,210,189,123,119,155,39,157,71,142,28,193,154,53,107,108,218,134,209,66,66,66,48,98,196,8,246,112,58,184,166,77,155,162,105,211,166,24,62,124,56,142,31,63,142,93,187,118,97,231,206 \
,157,184,114,229,138,217,161,57,164,33,67,134,216,172,238,41,83,166,160,95,191,126,78,181,127,107,112,112,48,222,121,231,29,60,253,244,211,112,115,115,211,191,60,71,41,245,178,25,113,17,17 \
,185,58,246,120,18,57,49,17,249,9,64,31,32,111,15,197,6,13,26,224,194,133,11,197,94,227,238,238,142,207,63,255,28,181,106,213,178,89,92,169,169,169,24,55,110,28,226,227,227,109,214 \
,134,145,26,53,106,132,23,94,120,1,183,220,114,139,217,161,144,149,114,114,114,16,22,22,134,95,126,249,5,135,14,29,226,10,185,249,218,182,109,139,229,203,151,219,180,141,113,227,198,97,253 \
,250,245,54,109,195,8,85,170,84,193,171,175,190,138,113,227,198,193,215,215,87,255,114,6,128,145,74,169,37,38,132,70,68,84,33,176,199,147,200,73,137,136,7,128,130,57,72,191,252,242,75 \
,137,73,39,144,183,151,159,45,147,78,0,88,176,96,129,83,36,157,94,94,94,120,244,188,97,196,38,0,0,32,0,73,68,65,84,209,71,49,96,192,0,120,120,240,215,161,51,115,119,119,199 \
,221,119,223,141,187,239,190,27,49,49,49,216,178,101,11,66,67,67,43,252,162,68,70,109,161,82,156,9,19,38,32,52,52,20,153,153,153,54,111,203,26,190,190,190,24,57,114,36,166,76,153 \
,130,160,160,160,162,78,137,0,208,69,41,149,104,231,208,136,136,42,148,235,198,152,16,145,211,24,14,160,96,151,243,175,191,254,186,196,11,220,220,220,240,200,35,143,216,48,36,224,208,161,67 \
,216,182,109,155,77,219,48,66,171,86,173,240,201,39,159,96,208,160,65,76,58,93,76,237,218,181,49,116,232,80,204,155,55,15,163,71,143,70,163,70,141,204,14,201,20,129,129,129,232,217,211 \
,246,235,227,212,173,91,23,79,60,241,132,205,219,41,43,31,31,31,140,29,59,22,167,78,157,194,172,89,179,138,74,58,47,3,120,74,41,117,59,147,78,34,34,219,227,80,91,34,39,37,34 \
,71,1,220,10,0,23,47,94,68,221,186,117,145,149,149,85,236,53,29,59,118,196,164,73,147,108,22,83,70,70,6,94,121,229,21,196,198,198,218,172,141,242,114,119,119,199,224,193,131,241,232 \
,163,143,114,107,148,10,36,34,34,2,171,86,173,194,254,253,251,205,14,197,110,254,245,175,127,97,204,152,49,118,105,43,49,49,17,221,187,119,119,136,30,102,47,47,47,140,24,49,2,175,191 \
,254,58,234,214,173,91,212,41,25,0,222,7,240,150,82,138,99,178,137,136,236,132,95,243,19,57,33,17,169,12,160,153,229,120,233,210,165,37,38,157,64,222,22,42,182,180,114,229,74,135,78 \
,58,171,86,173,138,113,227,198,33,36,36,196,236,80,200,206,90,180,104,129,22,45,90,224,244,233,211,88,183,110,29,182,109,219,230,210,243,64,61,60,60,48,104,208,32,187,181,87,163,70,13 \
,132,132,132,96,215,174,93,118,107,179,40,3,6,12,192,251,239,191,95,212,74,181,0,144,5,96,1,128,87,148,82,25,246,141,140,136,136,56,212,150,200,57,61,15,205,136,133,21,43,86,148 \
,120,65,221,186,117,209,162,69,11,155,5,20,19,19,227,208,11,140,220,126,251,237,248,228,147,79,152,116,86,112,13,27,54,196,152,49,99,240,223,255,254,23,157,58,117,114,217,94,239,158,61 \
,123,222,104,62,163,77,68,71,71,227,143,63,254,176,91,123,122,109,218,180,193,182,109,219,240,195,15,63,20,149,116,230,0,248,14,64,13,165,212,104,38,157,68,68,230,96,226,73,228,156,134 \
,91,158,156,63,127,30,251,246,237,43,241,130,7,31,124,208,166,55,217,243,230,205,43,85,175,171,25,186,116,233,130,105,211,166,161,106,213,170,102,135,66,14,162,65,131,6,152,48,97,2,62 \
,253,244,83,116,235,214,173,168,109,53,156,154,61,22,21,210,90,186,116,41,114,114,114,236,218,38,144,247,133,218,220,185,115,17,22,22,134,174,93,187,234,95,206,5,176,30,64,160,82,106,144 \
,82,202,252,113,192,68,68,21,152,107,253,79,75,84,1,136,72,37,0,183,89,142,87,175,94,93,226,144,65,31,31,159,162,110,202,12,243,199,31,127,56,236,220,185,62,125,250,224,149,87,94 \
,225,2,66,84,164,224,224,96,140,25,51,6,179,103,207,70,199,142,29,205,14,199,16,77,155,54,197,93,119,221,101,183,246,210,211,211,241,195,15,63,216,173,61,0,240,246,246,198,180,105,211 \
,16,25,25,137,81,163,70,233,191,56,16,0,91,0,4,41,165,30,86,74,93,182,107,112,68,68,84,36,222,137,17,57,159,97,208,124,105,84,154,27,190,174,93,187,22,181,111,157,33,178,178 \
,178,240,205,55,223,216,164,238,242,80,74,97,196,136,17,232,211,167,143,217,161,144,19,8,14,14,198,164,73,147,112,240,224,65,44,90,180,8,167,78,157,50,59,36,171,13,27,54,204,174,67 \
,136,215,173,91,135,43,87,174,216,173,189,206,157,59,227,203,47,191,68,243,230,205,139,122,249,44,128,1,74,169,146,135,129,16,17,145,93,177,199,147,200,249,140,178,60,137,139,139,195,238,221 \
,187,75,188,224,222,123,239,181,89,48,27,55,110,68,92,92,156,205,234,183,214,176,97,195,152,116,82,153,181,106,213,10,31,126,248,33,38,77,154,100,215,57,146,70,241,243,243,195,195,15,63 \
,108,215,54,151,44,89,98,151,118,170,87,175,142,185,115,231,98,251,246,237,69,37,157,87,0,12,86,74,53,96,210,73,68,228,152,152,120,18,57,17,17,241,4,208,202,114,188,118,237,218,18 \
,231,85,213,172,89,19,205,154,53,43,246,28,107,165,167,167,99,245,234,213,54,169,187,60,6,14,28,136,254,253,251,155,29,6,57,41,165,20,58,118,236,136,217,179,103,227,169,167,158,178,217 \
,104,1,91,24,48,96,0,252,253,253,237,214,222,222,189,123,113,236,216,49,155,183,51,112,224,64,28,63,126,28,163,70,141,210,247,230,102,3,120,23,121,11,7,149,188,202,26,17,17,153,134 \
,137,39,145,115,233,1,205,16,249,53,107,214,148,120,65,231,206,157,109,54,236,110,205,154,53,72,74,74,178,73,221,214,122,240,193,7,49,120,240,96,179,195,32,23,224,229,229,133,1,3,6 \
,224,179,207,62,67,183,110,221,204,14,167,84,158,120,226,9,187,182,183,120,241,98,155,214,239,227,227,131,207,63,255,28,43,87,174,68,96,96,160,254,229,112,0,245,148,82,111,112,63,78,34 \
,34,199,199,196,147,200,185,60,109,121,146,158,158,142,237,219,183,151,120,65,167,78,157,108,18,72,106,106,42,126,250,233,39,155,212,109,173,14,29,58,224,185,231,158,51,59,12,114,49,213,171 \
,87,199,152,49,99,48,117,234,84,212,170,85,203,236,112,110,168,99,199,142,184,249,230,155,237,214,222,197,139,23,177,101,203,22,155,213,127,243,205,55,99,207,158,61,24,61,122,180,254,165,107 \
,0,158,81,74,221,165,148,114,220,141,131,137,136,168,16,38,158,68,206,165,179,229,201,238,221,187,113,237,218,181,98,79,14,14,14,70,227,198,141,109,18,200,166,77,155,74,108,223,158,130,131 \
,131,241,175,127,253,203,101,247,101,36,243,181,105,211,6,159,126,250,41,158,120,226,9,135,92,37,217,140,45,84,178,179,179,109,82,247,128,1,3,176,111,223,62,180,110,221,90,255,210,70,0 \
,213,149,82,223,216,164,97,34,34,178,25,38,158,68,78,66,68,252,0,212,182,28,111,221,186,181,196,107,238,190,251,110,155,196,146,157,157,141,159,127,254,217,38,117,91,163,82,165,74,152,60 \
,121,178,83,205,197,35,231,228,229,229,133,65,131,6,225,147,79,62,65,203,150,45,205,14,167,64,237,218,181,113,223,125,247,217,173,189,204,204,76,124,255,253,247,54,169,251,197,23,95,196,119 \
,223,125,135,42,85,170,104,139,179,1,60,175,148,122,80,41,149,97,147,134,137,136,200,166,152,120,18,57,143,254,0,10,186,243,74,147,120,222,113,199,29,54,9,100,251,246,237,72,76,76,180 \
,73,221,101,165,148,194,184,113,227,80,183,110,93,179,67,161,10,164,78,157,58,120,235,173,183,240,194,11,47,192,199,199,199,236,112,48,120,240,96,184,187,187,219,173,189,245,235,215,227,210,165 \
,75,134,215,251,239,127,255,27,115,230,204,209,239,203,25,11,224,54,165,212,87,134,55,72,68,68,118,195,196,147,200,121,12,177,60,73,74,74,66,120,120,120,177,39,87,170,84,201,102,171,217 \
,254,242,203,47,54,169,215,26,61,123,246,68,219,182,109,205,14,131,42,32,165,20,30,120,224,1,124,242,201,39,104,209,162,133,105,113,120,122,122,226,241,199,31,183,107,155,203,150,45,51,188 \
,206,137,19,39,226,173,183,222,210,23,239,4,80,87,41,117,194,240,6,137,136,200,174,152,120,18,57,143,14,150,39,219,182,109,43,113,110,85,203,150,45,109,210,3,114,230,204,25,156,56,225 \
,24,247,128,1,1,1,24,58,116,168,217,97,80,5,87,171,86,45,188,243,206,59,120,238,185,231,224,233,233,105,247,246,123,247,238,141,154,53,107,218,173,189,191,254,250,11,7,15,30,52,180 \
,206,225,195,135,227,131,15,62,208,23,175,82,74,117,86,74,21,191,103,20,149,72,68,252,68,228,119,17,57,45,34,43,69,164,154,217,49,17,81,197,195,196,147,200,9,136,136,63,128,26,150 \
,227,95,127,253,181,196,107,138,88,148,195,16,155,55,111,182,73,189,214,120,233,165,151,224,231,231,103,118,24,68,80,74,225,161,135,30,194,135,31,126,104,179,5,189,110,196,222,139,10,45,89 \
,178,196,208,250,58,117,234,132,121,243,230,233,23,6,91,170,148,122,204,208,134,42,40,17,233,5,32,14,121,139,211,53,0,48,16,192,89,17,185,201,212,192,136,168,194,97,226,73,228,28,238 \
,213,30,236,217,179,167,196,11,108,145,120,102,101,101,149,106,11,23,123,184,239,190,251,108,54,135,149,200,90,245,235,215,199,204,153,51,241,216,99,143,233,231,41,218,196,109,183,221,102,215,127 \
,7,241,241,241,216,180,105,147,97,245,213,168,81,3,75,151,46,213,175,18,252,155,82,138,67,25,202,73,68,148,136,124,13,96,3,0,253,55,116,149,1,252,45,34,94,246,143,140,136,42,42 \
,38,158,68,206,161,143,229,73,102,102,102,137,195,220,2,2,2,80,187,118,237,98,207,177,198,223,127,255,141,148,148,20,195,235,45,43,31,31,31,14,177,37,135,229,225,225,129,39,159,124,18 \
,211,167,79,71,96,96,160,77,219,178,247,191,131,229,203,151,35,43,43,203,176,250,150,44,89,130,6,13,26,104,139,142,1,232,110,88,3,21,148,136,220,6,224,2,128,103,160,89,148,46,55 \
,55,87,123,90,16,0,199,25,194,66,68,46,143,137,39,145,115,40,216,23,229,224,193,131,200,200,40,126,55,1,91,109,34,255,199,31,127,216,164,222,178,234,223,191,63,170,85,227,20,37,114 \
,108,205,154,53,195,172,89,179,208,177,99,71,155,212,95,165,74,21,244,233,211,167,228,19,13,146,157,157,141,239,190,251,206,176,250,6,13,26,132,7,31,124,80,91,148,14,160,139,82,74,12 \
,107,164,2,18,145,41,0,14,1,184,73,83,134,175,190,250,10,237,218,181,67,82,82,146,246,244,46,34,242,180,189,99,36,162,138,137,137,39,145,115,40,152,52,86,210,106,182,128,109,18,207 \
,156,156,28,236,219,183,207,240,122,203,170,74,149,42,120,248,225,135,205,14,131,168,84,124,125,125,49,113,226,68,60,247,220,115,250,225,164,229,246,248,227,143,163,82,165,74,134,214,89,156,13 \
,27,54,224,226,197,139,134,212,229,239,239,143,15,63,252,80,95,252,136,82,42,222,144,6,42,32,17,9,16,145,131,0,166,3,40,88,89,46,38,38,6,189,122,245,194,243,207,63,143,240,240 \
,112,60,243,204,51,250,75,191,200,223,39,154,136,200,166,152,120,18,57,56,17,169,14,192,223,114,188,119,239,222,18,175,105,218,180,169,225,113,68,68,68,224,234,213,171,134,215,91,86,79,60 \
,241,4,124,125,125,205,14,131,168,212,44,11,15,205,152,49,3,65,65,65,134,213,57,104,208,32,67,234,42,173,197,139,23,27,86,215,164,73,147,244,123,239,110,83,74,57,206,62,77,78,70 \
,68,158,0,16,13,160,165,182,124,205,154,53,104,213,170,21,66,67,67,11,149,233,182,195,169,4,224,123,123,196,73,68,21,27,19,79,34,199,87,104,190,83,73,189,142,74,41,155,36,158,251 \
,247,239,55,188,206,178,10,8,8,64,207,158,61,205,14,131,200,42,77,155,54,197,135,31,126,104,200,190,179,93,186,116,65,163,70,141,12,136,170,116,34,34,34,112,224,192,1,67,234,242,244 \
,244,196,168,81,163,180,69,217,0,184,130,173,21,68,196,83,68,126,6,240,45,0,111,75,121,74,74,10,158,123,238,57,60,250,232,163,184,116,233,210,117,215,141,27,55,78,95,222,75,68,90 \
,94,119,34,17,145,129,152,120,18,57,190,30,150,39,215,174,93,67,68,68,68,177,39,215,169,83,199,38,61,130,70,239,219,103,141,94,189,122,217,100,111,82,34,123,241,247,247,199,148,41,83 \
,240,216,99,229,203,179,236,189,133,202,55,223,124,99,88,93,125,251,246,197,77,55,21,218,201,99,149,82,42,193,176,6,42,8,17,105,15,224,34,128,66,19,101,255,252,243,79,220,113,199,29 \
,88,176,96,193,13,175,141,143,143,199,164,73,147,180,69,10,192,178,27,156,78,68,100,8,38,158,68,142,175,133,229,73,84,84,20,178,179,179,139,61,185,94,189,122,134,7,112,245,234,85,252 \
,243,207,63,134,215,91,22,94,94,94,236,237,36,151,160,148,210,175,46,90,38,193,193,193,232,220,185,179,129,17,21,47,49,49,17,27,55,110,52,172,62,93,111,39,0,188,102,88,229,21,132 \
,136,204,4,176,7,64,193,42,107,57,57,57,152,57,115,38,58,119,238,140,19,39,78,148,88,199,226,197,139,245,35,89,90,138,72,111,195,131,37,34,202,199,196,147,200,241,53,180,60,137,138 \
,138,42,241,228,58,117,234,24,30,192,161,67,135,32,98,238,66,147,93,187,118,69,149,42,85,76,141,129,200,8,217,217,217,216,186,117,171,213,215,63,245,212,83,118,237,249,95,177,98,69,137 \
,43,105,151,86,163,70,141,208,163,71,15,109,81,148,82,234,148,33,149,87,0,34,82,87,68,78,2,120,21,154,109,82,78,157,58,133,46,93,186,96,242,228,201,165,222,238,38,55,55,23,175 \
,191,254,186,190,120,174,97,193,18,17,233,48,241,36,114,124,53,45,79,34,35,35,75,60,217,22,251,119,30,59,118,204,240,58,203,74,183,237,2,145,211,250,227,143,63,244,91,90,148,154,143 \
,143,79,185,135,233,150,69,78,78,14,190,253,246,91,195,234,27,57,114,36,220,220,10,221,122,204,52,172,114,23,39,34,47,1,248,7,154,85,206,129,188,97,208,173,91,183,198,238,221,187,203 \
,92,231,198,141,27,241,219,111,191,105,139,234,137,200,115,229,10,148,136,232,6,152,120,18,57,176,252,37,238,125,44,199,165,233,241,180,69,226,89,154,132,215,150,154,54,109,138,134,13,27,154 \
,26,3,145,81,126,249,197,250,197,91,31,122,232,33,187,238,97,187,105,211,38,196,198,198,26,82,151,167,167,167,126,43,143,116,0,223,24,82,185,11,19,17,63,17,217,9,224,51,0,5,123 \
,242,36,38,38,226,241,199,31,199,51,207,60,131,228,228,100,171,235,127,245,213,87,245,35,90,62,18,17,99,247,254,33,34,2,19,79,34,71,119,155,246,160,52,9,160,209,67,109,179,179,179 \
,77,159,223,217,169,83,39,83,219,39,50,74,116,116,52,142,28,57,98,245,245,79,62,249,164,129,209,148,108,201,146,37,134,213,85,196,162,66,107,149,82,57,134,53,224,130,68,164,23,128,56 \
,0,247,104,203,183,110,221,138,86,173,90,225,135,31,126,40,119,27,251,246,237,195,242,229,203,181,69,85,0,124,85,238,138,137,136,116,152,120,18,57,182,66,55,27,37,245,120,122,123,123,27 \
,222,27,114,250,244,233,82,207,25,178,5,165,20,58,118,236,104,90,251,68,70,250,229,151,95,172,158,47,29,18,18,130,150,45,237,183,227,197,209,163,71,75,220,190,169,44,138,88,84,232,255 \
,217,187,243,176,170,170,245,15,224,223,197,160,32,136,105,14,225,128,56,164,166,6,206,115,154,115,102,142,57,37,136,213,77,173,91,93,109,80,178,65,173,188,37,221,202,188,149,229,120,5,156 \
,138,50,53,77,64,65,133,66,112,194,161,156,11,39,28,195,145,73,166,245,251,3,225,119,60,30,224,156,125,246,217,251,28,248,126,158,167,231,57,123,237,189,214,122,43,111,247,188,103,173,253 \
,174,183,84,27,188,156,145,82,58,73,41,195,1,108,1,224,81,212,126,231,206,29,188,241,198,27,24,48,96,0,82,83,83,85,155,239,237,183,223,70,86,86,150,97,211,179,82,202,222,170,77 \
,64,68,4,38,158,68,246,206,191,232,195,205,155,55,113,229,202,149,82,31,174,86,173,26,132,16,165,62,99,169,51,103,206,168,58,158,165,154,55,111,142,90,181,106,233,26,3,145,26,114,114 \
,114,176,99,199,14,197,253,181,62,66,37,44,44,76,181,177,26,55,110,108,170,168,208,105,213,38,40,71,164,148,143,0,72,5,112,207,191,240,223,127,255,29,157,58,117,194,231,159,127,110,85 \
,85,100,83,206,158,61,139,183,222,186,231,119,0,1,96,179,148,242,65,85,39,34,162,10,141,137,39,145,125,171,95,244,193,156,95,183,109,81,245,245,236,217,179,170,143,105,9,110,179,165,242 \
,34,62,62,30,233,233,233,138,250,86,175,94,29,131,6,105,119,210,197,205,155,55,177,121,243,102,213,198,123,225,133,23,140,139,10,205,83,109,240,114,68,74,249,30,128,223,1,60,100,208,134 \
,5,11,22,160,99,199,142,54,61,79,249,203,47,191,68,84,84,148,97,147,59,0,235,247,242,18,17,221,197,196,147,200,190,213,46,250,96,78,129,143,106,213,170,169,30,128,222,137,103,251,246 \
,237,117,157,159,72,45,209,209,209,138,251,142,25,51,6,149,43,87,86,49,154,210,125,247,221,119,198,91,47,21,43,161,168,80,168,42,131,151,19,82,202,26,82,202,131,0,62,128,193,119,179 \
,139,23,47,226,137,39,158,192,180,105,211,144,157,157,109,235,24,16,20,20,100,252,35,103,47,174,122,18,145,90,152,120,18,217,183,226,255,195,191,124,249,114,153,15,219,98,197,243,252,249,243 \
,170,143,105,174,154,53,107,26,23,35,33,114,72,167,79,159,86,92,29,218,201,201,9,227,198,141,83,57,162,146,169,125,132,10,139,10,149,78,74,57,14,192,5,0,126,134,237,63,253,244,19 \
,252,252,252,172,250,193,194,82,87,174,92,193,204,153,51,13,155,4,0,237,206,239,33,162,114,141,137,39,145,125,43,206,36,205,89,241,84,59,241,204,203,203,67,90,90,154,170,99,90,66,203 \
,66,42,68,182,100,205,17,42,125,250,244,65,253,250,245,203,126,80,37,49,49,49,170,254,224,196,162,66,166,73,41,93,165,148,155,0,172,1,80,188,156,157,158,158,142,73,147,38,97,228,200 \
,145,248,251,239,191,53,143,203,196,143,156,149,52,15,130,136,202,37,158,211,68,100,223,170,20,125,48,39,241,244,240,240,40,243,25,75,92,189,122,85,113,5,78,53,180,110,221,90,183,185,137 \
,212,146,157,157,141,248,248,120,197,253,181,46,42,164,230,17,42,44,42,100,154,148,178,51,10,43,214,86,55,108,79,74,74,66,96,96,32,78,157,58,165,75,92,29,59,118,196,242,229,203,141 \
,155,149,255,225,37,34,50,192,21,79,34,59,37,165,172,12,131,31,135,204,217,106,235,236,236,172,106,12,230,204,105,75,76,60,169,60,216,177,99,7,50,51,51,21,245,109,216,176,33,186,118 \
,237,170,114,68,37,59,121,242,36,146,146,146,84,27,143,69,133,238,39,165,92,0,96,23,12,146,206,252,252,124,124,248,225,135,232,209,163,135,46,73,103,181,106,213,48,127,254,124,252,246,219 \
,111,168,87,175,158,225,173,163,66,136,3,154,7,68,68,229,18,87,60,137,236,87,77,195,11,61,18,79,61,182,121,21,169,85,171,22,106,215,174,93,246,131,68,118,206,168,82,168,69,38,76 \
,152,96,156,184,217,84,88,88,152,106,187,28,88,84,232,94,82,202,250,0,118,2,104,108,216,254,215,95,127,97,194,132,9,72,72,72,208,37,174,46,93,186,96,205,154,53,240,245,245,53,190 \
,117,11,192,99,218,71,68,68,229,21,87,60,137,236,215,61,251,102,205,57,134,193,197,69,221,223,146,110,222,188,169,234,120,150,104,212,168,145,110,115,19,169,229,248,241,227,56,125,250,180,162 \
,190,238,238,238,24,62,124,184,186,1,149,226,214,173,91,216,176,97,131,106,227,177,168,208,255,147,82,254,19,64,10,140,146,206,208,208,80,180,105,211,70,151,164,211,201,201,9,51,103,206,68 \
,124,124,188,169,164,243,24,128,70,66,8,253,94,242,39,162,114,135,43,158,68,246,235,158,196,211,156,173,122,106,175,140,220,186,117,75,213,241,44,225,227,227,163,219,220,68,106,177,102,181,115 \
,216,176,97,54,57,34,169,36,17,17,17,170,29,161,2,176,168,16,0,72,41,61,0,68,1,232,110,216,126,237,218,53,188,248,226,139,136,136,136,208,37,46,111,111,111,132,135,135,163,111,223 \
,190,198,183,238,0,8,22,66,44,208,33,44,34,42,231,152,120,18,217,175,123,138,78,152,147,120,170,189,213,246,246,237,219,170,142,103,137,134,13,27,234,54,55,145,26,50,50,50,172,90,201 \
,210,242,8,149,130,130,2,172,90,181,74,181,241,26,53,106,100,92,84,232,68,69,43,42,36,165,124,28,192,70,0,85,13,219,99,99,99,49,113,226,68,221,142,170,234,215,175,31,194,195,195 \
,77,29,85,117,10,64,15,33,132,190,47,247,19,81,185,197,173,182,68,246,235,158,165,14,115,86,34,212,174,64,203,21,79,34,229,98,98,98,112,231,206,29,69,125,59,116,232,128,86,173,90 \
,169,28,81,201,118,236,216,129,115,231,206,169,54,222,228,201,147,141,119,96,132,168,54,184,157,147,82,10,41,229,114,0,177,48,72,58,115,115,115,241,254,251,239,163,127,255,254,186,36,157,46 \
,46,46,152,51,103,14,162,162,162,140,147,78,9,96,145,16,226,97,38,157,68,100,75,92,241,36,178,95,15,24,94,152,147,120,170,185,77,14,208,239,29,79,23,23,23,212,173,91,87,151,185 \
,137,212,178,109,219,54,197,125,181,62,66,37,44,44,76,181,177,92,92,92,48,113,226,68,195,166,10,83,84,72,74,217,20,133,9,103,3,195,246,35,71,142,32,48,48,16,201,201,201,186,196 \
,229,235,235,139,53,107,214,160,75,151,46,198,183,50,0,12,17,66,108,215,33,44,34,170,96,184,226,73,100,191,188,12,47,204,217,106,171,116,117,165,36,122,173,120,122,123,123,171,94,40,137 \
,72,75,135,15,31,86,188,130,88,171,86,45,12,24,48,64,229,136,74,118,250,244,105,85,139,219,12,31,62,28,222,222,222,134,77,63,85,132,162,66,82,202,153,40,44,202,211,192,160,13,139 \
,23,47,70,199,142,29,117,75,58,71,143,30,141,228,228,100,83,73,231,33,0,15,49,233,36,34,173,240,155,29,145,253,242,52,188,48,39,169,204,206,206,86,53,0,189,18,207,154,53,107,150 \
,253,16,145,29,179,166,168,208,216,177,99,225,234,234,170,98,52,165,11,13,13,85,117,155,254,164,73,147,140,155,222,86,109,112,59,36,165,172,1,96,59,0,63,195,246,139,23,47,226,185,231 \
,158,179,234,207,130,53,170,86,173,138,175,191,254,26,19,38,76,48,190,149,15,96,134,16,226,115,29,194,34,162,10,140,137,39,145,253,42,48,188,16,66,148,217,65,205,173,182,5,5,5,170 \
,39,178,230,170,81,163,134,46,243,18,169,225,214,173,91,216,189,123,183,162,190,206,206,206,24,59,118,172,202,17,149,44,35,35,3,235,215,175,87,109,188,138,86,84,72,74,57,2,192,106,0 \
,110,134,237,235,215,175,199,164,73,147,116,59,11,185,93,187,118,88,187,118,45,30,126,248,97,227,91,105,0,250,10,33,14,234,16,22,17,85,112,220,106,75,100,191,114,13,47,204,217,122,170 \
,102,226,153,151,151,167,218,88,150,170,94,189,122,217,15,17,217,169,232,232,104,228,230,230,150,253,160,9,253,251,247,55,85,109,212,102,126,252,241,71,179,206,8,54,87,69,41,42,36,165,116 \
,145,82,254,4,96,29,12,146,206,172,172,44,76,155,54,13,35,70,140,208,37,233,20,66,96,234,212,169,72,72,72,48,149,116,110,2,80,135,73,39,17,233,133,43,158,68,246,235,158,189,181 \
,230,36,158,106,110,141,85,250,197,89,13,92,241,36,71,37,165,116,152,162,66,82,74,172,92,185,82,181,241,42,74,81,33,41,165,63,128,109,0,238,121,39,96,207,158,61,8,12,12,196,137 \
,19,39,116,137,171,102,205,154,88,177,98,5,6,15,30,108,124,43,7,192,115,66,136,213,58,132,69,68,84,140,43,158,68,246,43,199,240,194,156,196,83,205,95,216,245,92,241,100,226,73,142 \
,106,255,254,253,184,124,89,217,137,20,77,154,52,65,167,78,157,84,142,168,100,241,241,241,72,73,73,81,109,188,138,80,84,72,74,25,2,32,25,6,73,103,126,126,62,66,66,66,208,163,71 \
,15,221,146,206,222,189,123,227,224,193,131,166,146,206,191,0,248,50,233,36,34,123,192,21,79,34,251,165,107,226,169,231,138,231,3,15,60,80,246,67,68,118,40,58,58,90,113,223,9,19,38 \
,152,245,46,183,90,194,195,195,85,29,111,242,228,201,198,77,239,170,58,129,142,164,148,245,81,120,76,202,61,251,87,207,156,57,131,160,160,32,196,197,197,233,18,151,139,139,11,222,125,247,93 \
,188,251,238,187,112,118,118,54,188,37,1,44,5,48,69,8,161,238,1,207,68,68,10,49,241,36,178,95,22,39,158,217,217,217,200,200,200,128,135,135,135,213,147,235,153,120,106,249,229,155,72 \
,45,105,105,105,216,187,119,175,162,190,30,30,30,24,54,108,152,202,17,149,236,236,217,179,170,38,75,141,26,53,66,223,190,125,13,155,78,8,33,254,82,109,2,29,73,41,95,0,176,16,192 \
,61,165,134,35,34,34,48,121,242,100,220,184,113,67,151,184,124,124,124,176,106,213,42,244,232,209,195,248,86,38,128,225,66,136,173,58,132,69,68,84,34,110,181,37,178,95,247,84,10,170,84 \
,169,146,89,157,212,90,245,212,115,171,173,158,73,47,145,82,209,209,209,40,40,40,40,251,65,19,70,142,28,9,79,79,207,178,31,84,73,120,120,184,226,88,77,41,143,69,133,164,148,85,164 \
,148,241,0,150,192,32,233,188,118,237,26,198,140,25,131,49,99,198,232,150,116,142,30,61,26,7,15,30,52,149,116,238,69,97,1,33,38,157,68,100,119,152,120,18,217,175,139,134,23,230,110 \
,63,45,15,137,167,158,115,19,41,145,159,159,143,152,152,24,197,253,199,141,27,167,98,52,165,203,204,204,196,143,63,254,168,218,120,229,177,168,144,148,178,39,128,75,0,238,201,236,98,99,99 \
,225,239,239,143,136,136,8,93,226,114,115,115,195,130,5,11,240,253,247,223,27,255,127,66,1,128,15,132,16,29,133,16,234,149,41,38,34,82,17,183,218,18,217,175,123,42,148,152,91,112,231 \
,226,197,139,101,63,100,6,53,87,67,44,197,196,147,28,205,158,61,123,144,150,150,166,168,111,215,174,93,209,172,89,51,149,35,42,217,250,245,235,113,251,246,109,213,198,43,79,69,133,164,148 \
,2,133,239,70,62,7,160,120,207,127,110,110,46,62,250,232,35,124,240,193,7,186,253,183,177,101,203,150,88,179,102,13,252,252,252,140,111,93,7,208,79,8,177,95,135,176,136,136,204,198,196 \
,147,200,126,93,51,188,48,55,241,188,112,225,130,42,147,27,109,155,211,84,118,118,182,110,115,19,41,17,21,21,165,184,175,150,71,168,0,192,234,213,234,22,56,45,47,69,133,164,148,77,81 \
,88,64,168,129,97,251,209,163,71,17,16,16,128,228,228,100,125,2,3,16,20,20,132,111,190,249,6,85,170,84,49,190,21,7,160,191,16,34,199,68,55,34,34,187,194,173,182,68,246,235,38 \
,10,43,19,2,208,62,241,212,179,192,143,94,239,77,17,41,113,249,242,101,28,60,120,80,81,223,218,181,107,163,79,159,62,42,71,84,178,132,132,4,28,63,126,92,181,241,26,55,110,92,46 \
,138,10,73,41,131,1,28,131,65,210,41,165,196,226,197,139,209,161,67,7,221,146,206,106,213,170,97,237,218,181,8,13,13,53,78,58,243,0,252,83,8,209,139,73,39,17,57,10,174,120,18 \
,217,41,33,132,148,82,230,225,110,81,11,115,19,207,212,212,84,85,230,215,115,197,243,250,245,235,186,205,77,100,169,168,168,40,72,169,236,196,138,128,128,0,179,42,86,171,37,44,44,76,213 \
,241,38,77,154,228,208,69,133,164,148,53,0,108,1,112,207,1,170,87,174,92,193,243,207,63,143,205,155,55,235,19,24,128,206,157,59,99,205,154,53,104,212,168,145,241,173,139,0,122,56,98 \
,130,79,68,21,27,87,60,137,236,91,241,158,211,234,213,171,155,213,33,45,45,77,149,173,170,70,103,194,105,138,43,158,228,40,242,242,242,16,27,27,171,168,175,171,171,43,70,143,30,173,114 \
,68,37,75,77,77,197,142,29,59,84,27,207,213,213,213,161,139,10,73,41,135,3,72,133,81,210,25,25,25,9,127,127,127,221,146,78,39,39,39,76,157,58,21,241,241,241,166,146,206,31,0 \
,212,103,210,73,68,142,136,137,39,145,125,43,62,82,165,102,205,154,102,117,144,82,226,210,165,75,86,79,172,231,86,219,107,215,174,149,253,16,145,29,216,181,107,23,110,222,188,169,168,239,19 \
,79,60,129,90,181,106,169,28,81,201,86,174,92,137,252,124,245,106,254,12,27,54,204,33,139,10,73,41,93,165,148,63,3,248,9,128,91,81,123,122,122,58,38,77,154,132,65,131,6,169,242 \
,223,80,37,234,215,175,143,216,216,88,124,241,197,23,112,117,189,231,216,208,108,0,67,132,16,163,133,16,250,85,126,35,34,178,2,19,79,34,251,86,124,54,138,143,143,143,217,157,212,216,110 \
,171,231,86,91,181,222,83,37,178,53,71,41,42,148,157,157,141,31,126,248,65,213,49,29,177,168,144,148,210,31,133,171,156,79,25,182,239,217,179,7,237,219,183,199,210,165,75,245,9,12,192 \
,208,161,67,113,224,192,1,244,234,213,203,248,214,73,0,62,66,136,77,58,132,69,68,164,26,38,158,68,246,237,108,209,135,134,13,27,154,221,201,209,19,207,43,87,174,224,206,157,59,186,205 \
,79,100,142,243,231,207,227,200,145,35,138,250,182,104,209,2,237,218,181,83,57,162,146,109,216,176,65,213,45,236,38,138,10,29,183,247,237,159,82,202,16,0,201,0,138,151,153,243,243,243,17 \
,18,18,130,30,61,122,224,196,137,19,186,196,85,185,114,101,44,88,176,0,235,215,175,199,131,15,62,104,120,75,2,88,32,132,104,38,132,184,170,75,112,68,68,42,98,113,33,34,251,118,18 \
,192,19,64,225,138,167,147,147,147,89,103,200,169,177,98,168,231,59,158,82,74,164,166,166,162,113,227,198,186,197,64,84,150,200,200,72,197,69,133,38,76,152,160,114,52,165,91,185,114,165,170 \
,227,153,40,42,244,137,170,19,168,72,74,89,15,192,118,0,15,27,182,159,57,115,6,65,65,65,136,139,139,211,39,48,0,205,155,55,199,218,181,107,209,166,77,27,227,91,55,1,12,16,66 \
,236,214,33,44,34,34,155,224,138,39,145,125,59,84,244,161,114,229,202,168,83,167,142,89,157,212,88,241,172,84,169,146,213,99,88,227,252,249,243,186,206,79,84,154,156,156,28,236,220,185,83 \
,81,95,47,47,47,12,25,50,68,229,136,74,182,123,247,110,28,59,118,76,181,241,28,169,168,144,148,242,5,0,41,48,74,58,35,34,34,208,182,109,91,93,147,206,160,160,32,236,221,187,215 \
,84,210,25,7,224,33,38,157,68,84,222,48,241,36,178,111,251,13,47,204,221,110,171,198,138,167,81,97,11,205,165,164,164,232,58,63,81,105,226,227,227,145,158,158,174,168,239,211,79,63,13 \
,119,119,119,149,35,42,153,218,71,168,12,31,62,220,238,139,10,73,41,221,165,148,145,0,150,224,238,145,84,0,112,243,230,77,4,6,6,98,204,152,49,186,29,219,228,229,229,133,149,43,87 \
,34,52,52,20,158,158,158,134,183,242,1,76,189,123,54,167,245,165,201,137,136,236,12,19,79,34,251,118,202,240,194,215,215,215,172,78,153,153,153,72,75,75,179,106,98,189,87,60,213,92,161 \
,33,82,155,210,162,66,66,8,60,243,204,51,42,71,83,178,203,151,47,35,38,38,70,213,49,237,189,168,144,148,178,39,128,75,0,6,26,182,199,198,198,162,117,235,214,88,181,106,149,62,129 \
,1,232,208,161,3,246,237,219,135,128,128,0,227,91,151,0,180,20,66,252,87,135,176,136,136,52,193,196,147,200,142,9,33,110,1,200,43,186,110,210,164,137,217,125,207,158,61,91,246,67,165 \
,112,114,114,210,245,61,207,63,255,252,19,185,185,185,186,205,79,84,146,211,167,79,227,228,201,147,138,250,62,246,216,99,166,206,102,180,153,149,43,87,34,47,47,175,236,7,205,212,164,73,19 \
,244,233,211,199,176,233,132,189,20,21,146,82,58,73,41,195,0,236,4,224,85,212,126,231,206,29,76,159,62,29,253,251,247,215,109,11,191,16,2,51,102,204,64,66,66,2,154,54,109,106,124 \
,251,59,0,245,132,16,250,84,55,34,34,210,8,19,79,34,251,87,188,116,217,186,117,107,179,59,89,155,120,2,250,110,183,205,205,205,197,159,127,254,169,219,252,68,37,217,178,101,139,226,190 \
,90,30,161,146,147,147,131,136,136,8,85,199,52,81,84,104,158,170,19,40,36,165,108,10,224,52,128,123,170,54,29,61,122,20,93,187,118,197,167,159,126,106,86,97,54,91,168,93,187,54,54 \
,111,222,140,144,144,16,227,255,166,230,0,120,70,8,49,142,103,115,18,81,69,192,196,147,200,254,21,111,183,125,244,209,71,205,238,164,70,226,169,247,118,91,165,71,85,16,217,74,102,102,166 \
,226,130,52,245,234,213,67,207,158,61,85,142,168,100,155,54,109,178,122,203,189,33,87,87,87,4,5,5,25,54,101,3,80,247,5,82,5,164,148,193,0,142,1,104,96,208,134,197,139,23,163 \
,67,135,14,72,78,78,214,45,182,190,125,251,226,192,129,3,24,52,104,144,241,173,63,1,52,20,66,172,213,33,44,34,34,93,48,241,36,178,127,123,139,62,52,111,222,28,149,43,87,54,171 \
,147,163,175,120,2,208,245,11,35,145,41,59,119,238,68,118,182,178,186,47,1,1,1,154,110,95,87,251,8,21,123,43,42,36,165,172,46,165,76,66,225,170,107,241,63,216,43,87,174,96,232 \
,208,161,152,50,101,10,50,51,51,117,137,205,197,197,5,115,230,204,65,116,116,180,241,63,51,9,96,145,16,162,169,16,226,146,46,193,17,17,233,132,137,39,145,253,219,86,244,193,197,197,5 \
,205,155,55,55,171,211,185,115,231,20,159,49,88,164,74,149,42,86,245,183,214,209,163,71,145,145,145,161,107,12,68,134,182,109,219,86,246,67,38,84,170,84,9,35,71,142,84,57,154,146,237 \
,223,191,31,135,15,31,86,117,76,19,69,133,102,170,58,129,5,164,148,195,1,92,0,208,201,176,61,50,50,18,254,254,254,216,180,105,147,62,129,161,176,250,248,206,157,59,49,123,246,108,227 \
,109,201,25,0,250,9,33,94,212,41,52,34,34,93,49,241,36,178,127,9,134,23,230,110,183,189,115,231,14,46,93,178,238,7,117,15,15,15,171,250,91,43,63,63,31,7,15,30,212,53,6 \
,162,34,199,142,29,195,95,127,41,171,163,243,212,83,79,225,193,7,31,84,57,162,146,133,135,135,171,58,94,227,198,141,141,139,10,29,23,66,156,81,117,18,51,72,41,93,164,148,223,1,248 \
,9,128,91,81,123,86,86,22,166,77,155,134,65,131,6,89,253,223,61,107,140,26,53,10,7,14,28,64,183,110,221,140,111,29,66,225,217,156,177,58,132,69,68,100,23,152,120,18,217,57,33 \
,196,53,0,119,138,174,181,124,207,83,239,196,19,40,92,185,33,178,7,209,209,209,138,251,154,56,62,195,102,174,94,189,170,248,184,151,146,76,158,60,217,120,245,46,68,213,9,204,32,165,244 \
,71,225,42,231,24,195,246,61,123,246,160,77,155,54,88,176,96,129,214,33,21,115,119,119,199,130,5,11,16,17,17,129,7,30,120,192,240,86,1,128,89,66,8,127,33,132,178,131,95,137,136 \
,202,9,38,158,68,142,225,66,209,135,246,237,219,155,221,233,38,158,73,96,0,0,32,0,73,68,65,84,204,25,235,22,36,188,188,188,202,126,200,198,146,146,146,84,61,14,130,72,137,140,140 \
,12,36,36,36,148,253,160,9,173,90,181,130,159,159,159,202,17,149,108,245,234,213,170,30,69,84,169,82,37,60,251,236,179,134,77,89,208,184,168,144,148,114,62,128,100,0,181,138,218,242,243 \
,243,49,119,238,92,116,239,222,29,39,78,232,119,18,73,155,54,109,144,156,156,140,127,253,235,95,198,183,174,2,120,84,8,241,161,14,97,17,17,217,29,38,158,68,142,97,95,209,135,206,157 \
,59,155,93,160,228,220,185,115,86,77,90,171,86,173,178,31,178,177,244,244,116,28,56,112,64,239,48,168,130,139,137,137,193,157,59,119,202,126,208,132,137,19,39,170,28,77,201,114,115,115,241 \
,221,119,223,169,58,230,176,97,195,80,167,78,29,195,38,205,138,10,73,41,235,73,41,79,0,152,6,64,20,181,159,57,115,6,125,250,244,193,123,239,189,167,219,121,191,66,8,76,158,60,25 \
,9,9,9,166,222,189,143,67,225,217,156,44,205,77,68,116,23,19,79,34,199,240,99,209,135,170,85,171,154,189,221,54,37,37,197,170,73,141,190,108,234,38,62,62,94,239,16,168,130,83,90 \
,84,168,122,245,234,120,242,201,39,85,142,166,100,191,252,242,11,174,94,189,170,234,152,38,138,10,189,173,234,4,37,144,82,190,0,32,5,192,195,134,237,17,17,17,104,219,182,173,226,99,109 \
,212,80,179,102,77,108,216,176,1,139,22,45,130,187,187,187,225,173,60,0,83,132,16,189,132,16,250,100,196,68,68,118,138,137,39,145,99,248,197,240,194,68,225,10,147,46,92,184,96,213,113 \
,2,181,107,215,86,220,87,77,187,119,239,86,124,132,5,145,181,14,31,62,172,120,247,192,232,209,163,205,62,2,73,13,97,97,234,238,128,213,163,168,144,148,210,93,74,25,9,96,9,128,226 \
,51,157,110,222,188,137,192,192,64,140,25,51,6,215,175,95,183,101,8,165,122,252,241,199,113,224,192,1,12,25,50,196,248,214,121,0,77,133,16,139,117,8,139,136,200,238,49,241,36,114,0 \
,66,136,91,0,110,20,93,155,155,120,74,41,113,234,212,41,197,243,54,108,216,80,113,95,53,101,103,103,99,215,174,93,122,135,65,21,148,210,66,61,78,78,78,120,230,153,103,84,142,166,100 \
,191,255,254,59,14,29,58,164,234,152,38,138,10,205,83,117,2,35,82,202,158,0,46,1,24,104,216,30,27,27,139,214,173,91,99,213,170,85,182,156,190,84,206,206,206,152,51,103,14,182,109 \
,219,134,122,245,234,25,222,146,40,76,146,125,244,168,244,75,68,228,40,152,120,18,57,142,223,139,62,116,239,222,221,236,78,214,36,158,85,171,86,213,244,8,136,210,88,83,81,148,72,169,27 \
,55,110,32,41,41,73,81,223,199,31,127,28,245,235,215,87,57,162,146,173,88,177,66,213,241,92,93,93,17,20,20,100,216,148,13,64,221,115,90,238,146,82,10,41,229,50,0,59,0,20,87 \
,53,203,205,205,197,251,239,191,143,254,253,251,227,252,249,243,182,152,218,44,13,26,52,192,246,237,219,49,123,246,108,227,119,236,51,1,12,18,66,76,22,66,88,119,112,50,17,81,57,199,196 \
,147,200,113,20,47,187,248,250,250,162,110,221,186,102,117,58,121,242,164,85,147,250,250,250,90,213,95,45,199,142,29,179,250,157,85,34,75,109,219,182,77,113,85,229,192,192,64,149,163,41,217 \
,181,107,215,16,25,25,169,234,152,195,135,15,135,183,183,183,97,147,77,138,10,73,41,91,0,72,5,240,60,12,10,8,253,241,199,31,232,212,169,19,230,204,153,131,130,130,2,181,167,53,219 \
,200,145,35,113,240,224,65,60,246,216,99,198,183,146,1,120,11,33,212,61,187,134,136,168,156,98,226,73,228,56,34,12,47,250,246,237,107,86,39,107,19,207,166,77,155,90,213,95,77,91,183 \
,110,213,59,4,170,64,164,148,138,139,10,249,248,248,88,180,51,193,90,107,214,172,81,92,117,183,36,38,138,10,205,84,117,2,0,82,202,119,0,252,1,192,219,160,13,95,126,249,37,58,118 \
,236,168,107,69,107,119,119,119,124,243,205,55,248,241,199,31,81,189,122,117,195,91,5,0,222,23,66,180,187,251,26,4,17,17,153,129,137,39,145,131,16,66,28,7,144,81,116,61,112,224,192 \
,82,158,254,127,105,105,105,184,118,237,154,226,121,91,182,108,169,184,175,218,118,238,220,105,85,177,36,34,75,236,223,191,31,151,47,95,86,212,55,48,48,208,248,221,72,155,201,207,207,199,218 \
,181,107,85,29,211,214,69,133,164,148,213,165,148,73,0,230,194,224,187,200,149,43,87,48,116,232,80,252,235,95,255,66,86,86,150,90,211,89,236,145,71,30,193,174,93,187,240,226,139,47,26 \
,223,186,1,160,147,16,98,142,246,81,17,17,57,54,38,158,68,142,165,248,60,207,129,3,7,154,253,197,214,154,247,60,155,55,111,14,23,23,23,197,253,213,148,153,153,201,119,61,73,51,74 \
,255,172,185,187,187,99,228,200,145,42,71,83,178,200,200,72,92,186,116,73,213,49,109,89,84,72,74,57,28,192,5,0,157,12,219,35,35,35,225,239,239,143,77,155,54,169,53,149,34,65,65 \
,65,216,179,103,15,252,253,253,141,111,197,1,168,35,132,216,103,162,27,17,17,149,129,137,39,145,99,89,89,244,161,102,205,154,104,223,190,189,89,157,172,217,110,91,185,114,101,187,218,110,187 \
,105,211,38,197,239,220,17,153,43,45,45,13,123,247,238,85,212,119,232,208,161,168,86,173,154,202,17,149,44,60,92,221,122,63,182,42,42,36,165,116,145,82,126,7,224,39,0,110,69,237,89 \
,89,89,152,54,109,26,6,13,26,164,122,2,109,9,47,47,47,172,94,189,26,161,161,161,240,240,240,48,188,149,15,224,149,187,103,115,230,232,20,30,17,145,195,99,226,73,228,88,86,163,176 \
,116,63,0,96,208,160,65,102,117,178,246,61,79,115,19,92,45,164,165,165,33,62,62,94,239,48,168,156,139,142,142,86,92,208,70,203,35,84,142,30,61,138,125,251,212,93,128,27,49,98,132 \
,113,81,161,117,214,22,21,146,82,250,163,112,149,115,140,97,251,158,61,123,208,166,77,27,44,88,176,192,154,225,173,214,169,83,39,36,39,39,155,250,119,119,9,64,115,33,196,215,58,132,69 \
,68,84,174,48,241,36,114,32,66,136,12,20,30,82,14,192,252,247,60,79,158,60,137,252,124,229,223,27,237,41,241,4,128,245,235,215,67,74,158,92,64,182,145,159,159,175,184,168,80,251,246 \
,237,209,170,85,43,149,35,42,89,104,104,168,234,99,78,154,52,201,184,233,109,107,198,147,82,206,67,97,5,216,90,69,109,5,5,5,248,239,127,255,139,30,61,122,224,196,137,19,214,12,111 \
,21,33,4,166,78,157,138,95,127,253,21,141,27,55,54,190,253,35,128,122,66,136,63,117,8,141,136,168,220,97,226,73,228,120,138,75,247,119,238,220,217,172,115,54,51,51,51,173,90,245,244 \
,245,245,69,205,154,53,21,247,87,219,217,179,103,177,107,215,46,189,195,160,114,106,207,158,61,138,11,114,105,121,132,202,245,235,215,177,121,243,102,85,199,108,210,164,137,113,197,108,197,69,133 \
,164,148,245,164,148,167,0,4,195,224,152,148,148,148,20,244,236,217,19,83,167,78,69,78,142,126,59,87,235,214,173,139,109,219,182,225,139,47,190,128,171,171,171,225,173,108,0,195,132,16,163 \
,132,16,250,157,227,66,68,84,206,48,241,36,114,60,223,22,125,112,118,118,198,136,17,35,204,234,116,232,208,33,197,19,10,33,208,165,75,23,197,253,109,97,237,218,181,92,245,36,155,136,138 \
,82,118,44,99,141,26,53,48,96,192,0,149,163,41,217,247,223,127,143,236,236,108,85,199,156,52,105,18,132,16,134,77,138,138,10,73,41,167,0,56,13,160,137,97,123,88,88,24,218,180,105 \
,131,223,126,251,77,113,140,106,24,60,120,48,14,28,56,96,92,185,23,40,60,218,165,158,16,98,163,14,97,17,17,149,107,76,60,137,28,204,221,138,138,197,103,199,141,30,61,218,172,126,214 \
,36,158,0,76,29,158,174,171,115,231,206,233,254,229,149,202,159,203,151,47,227,224,193,131,138,250,142,27,55,14,149,42,85,82,57,34,211,242,243,243,177,102,205,26,85,199,172,84,169,18,158 \
,125,246,89,195,38,139,139,10,73,41,221,165,148,145,40,252,129,172,184,28,246,205,155,55,17,24,24,136,137,19,39,226,214,45,253,142,190,116,117,117,197,156,57,115,176,113,227,70,212,170,85 \
,203,240,150,4,240,173,16,162,181,16,66,249,249,83,68,68,84,34,38,158,68,142,169,248,156,135,62,125,250,160,118,237,218,101,118,56,126,252,184,85,171,35,205,154,53,51,46,56,162,187,181 \
,107,215,90,245,238,42,145,177,168,168,40,69,43,233,206,206,206,154,22,21,138,137,137,65,106,106,170,170,99,14,31,62,28,117,234,212,49,108,178,168,168,144,148,178,39,10,139,241,220,243,242 \
,249,246,237,219,241,232,163,143,98,213,170,85,234,4,170,80,163,70,141,16,23,23,135,217,179,103,27,31,21,147,14,160,143,16,226,37,157,66,35,34,170,16,152,120,18,57,166,144,162,15,46 \
,46,46,24,62,124,120,153,29,242,242,242,112,244,232,81,171,38,181,183,85,207,212,212,84,196,196,196,232,29,6,149,19,121,121,121,136,141,141,85,212,183,95,191,126,120,232,161,135,84,142,168 \
,100,97,97,97,170,143,57,121,242,100,227,38,179,138,10,73,41,133,148,114,25,128,29,0,188,138,218,115,115,115,241,254,251,239,163,95,191,126,56,119,238,156,106,113,42,17,20,20,132,67,135 \
,14,153,122,101,224,16,128,135,132,16,59,180,143,138,136,168,98,97,226,73,228,128,132,16,123,161,195,118,219,254,253,251,27,175,20,232,110,245,234,213,200,204,204,212,59,12,42,7,18,18,18 \
,112,243,230,77,69,125,181,44,42,116,242,228,73,236,222,189,91,213,49,27,55,110,140,222,189,123,27,54,29,51,167,168,144,148,178,17,128,20,0,207,195,160,128,208,209,163,71,209,185,115,103 \
,204,153,51,71,241,177,52,106,168,90,181,42,194,194,194,16,26,26,10,79,79,79,195,91,249,0,166,9,33,252,239,86,11,39,34,34,27,179,175,111,144,68,100,137,200,162,15,189,123,247,54 \
,107,187,173,181,137,103,205,154,53,209,182,109,91,171,198,80,219,205,155,55,177,97,195,6,189,195,160,114,32,58,58,186,236,135,76,104,210,164,9,58,119,238,172,114,52,37,11,11,11,83,189 \
,176,214,148,41,83,140,127,84,42,179,168,144,148,50,24,192,73,0,13,13,218,176,120,241,98,116,236,216,17,201,201,201,170,198,104,169,246,237,219,99,223,190,125,152,48,97,130,241,173,203,0 \
,90,10,33,244,61,60,148,136,168,130,97,226,73,228,184,138,183,219,58,59,59,99,236,216,177,101,118,72,73,73,177,186,176,135,150,85,59,205,181,113,227,70,164,165,165,233,29,6,57,176,115 \
,231,206,225,143,63,254,80,212,55,48,48,208,184,18,172,205,220,186,117,75,245,31,90,76,20,21,202,2,176,178,164,231,165,148,53,164,148,7,80,152,156,58,23,181,95,186,116,9,79,62,249 \
,36,166,76,153,130,140,12,253,22,17,133,16,120,253,245,215,145,144,144,128,135,31,126,216,248,118,209,217,156,250,29,30,74,68,84,65,49,241,36,114,80,66,136,253,0,138,171,47,254,227,31 \
,255,40,179,143,148,18,7,14,28,176,106,222,14,29,58,104,250,46,155,57,178,179,179,177,98,197,10,189,195,32,7,166,244,8,149,42,85,170,152,245,142,181,90,190,255,254,123,100,101,101,169 \
,58,230,176,97,195,140,119,76,252,84,82,81,33,41,229,104,0,23,0,248,27,182,111,216,176,1,126,126,126,136,140,140,52,213,77,51,181,107,215,198,230,205,155,241,217,103,159,25,87,24,206 \
,1,240,204,221,179,57,89,145,140,136,72,7,76,60,137,28,91,241,170,132,191,191,63,58,118,236,88,102,135,164,164,36,171,38,116,114,114,194,208,161,67,173,26,195,22,126,253,245,87,236,219 \
,183,79,239,48,200,1,229,228,228,96,231,206,157,138,250,142,24,49,194,248,221,65,155,41,40,40,192,234,213,171,85,31,119,202,148,41,198,77,247,21,21,146,82,186,72,41,191,3,240,61,128 \
,202,69,237,89,89,89,152,54,109,26,70,140,24,129,171,87,175,170,30,155,37,122,247,238,141,228,228,100,12,26,52,200,248,214,159,0,26,10,33,214,234,16,22,17,17,221,197,196,147,200,177 \
,205,6,80,92,185,195,156,85,207,253,251,247,35,39,39,199,170,73,251,244,233,131,170,85,171,90,53,134,45,44,91,182,12,185,185,185,122,135,65,14,38,46,46,14,233,233,233,138,250,106,121 \
,132,202,246,237,219,85,175,14,107,78,81,33,41,165,63,10,87,57,199,24,182,239,221,187,23,109,218,180,193,130,5,11,84,127,231,212,18,46,46,46,152,51,103,14,182,109,219,134,186,117,235 \
,26,222,146,0,22,11,33,154,10,33,46,233,20,30,17,17,221,197,196,147,200,129,9,33,110,0,40,62,237,62,32,32,160,204,213,151,236,236,108,28,60,120,176,212,103,202,82,185,114,101,60 \
,245,212,83,86,141,97,11,23,47,94,196,186,117,235,244,14,131,28,140,210,109,182,93,186,116,65,243,230,205,85,142,166,100,182,56,66,165,172,162,66,82,202,121,0,146,1,212,42,106,43,40 \
,40,192,127,255,251,95,116,239,222,29,39,78,232,251,170,164,143,143,15,118,236,216,97,234,108,206,76,0,3,132,16,247,45,231,18,17,145,62,152,120,18,57,190,185,69,31,60,61,61,205,58 \
,90,37,49,49,209,234,73,135,12,25,2,47,47,175,178,31,212,216,143,63,254,136,212,212,84,189,195,32,7,145,146,146,130,83,167,78,41,234,171,229,17,42,41,41,41,216,181,107,151,170,99 \
,150,86,84,72,74,89,71,74,121,4,64,48,12,142,73,57,115,230,12,122,247,238,141,169,83,167,90,189,115,194,90,35,71,142,196,129,3,7,208,189,123,119,227,91,69,103,115,110,211,33,44 \
,34,34,42,1,19,79,34,199,247,19,128,226,18,146,147,38,77,42,179,67,98,98,162,213,95,26,221,221,221,49,98,196,8,171,198,176,133,220,220,92,44,89,178,68,239,48,200,65,108,217,178 \
,69,81,191,218,181,107,163,111,223,190,42,71,83,178,208,208,80,213,183,179,14,31,62,220,100,81,33,41,229,20,0,231,1,60,98,120,51,60,60,28,126,126,126,136,139,139,83,53,14,75,85 \
,169,82,5,75,150,44,193,143,63,254,136,234,213,171,27,222,42,0,240,206,221,179,57,111,235,20,30,17,17,149,128,137,39,145,131,19,66,72,0,63,20,93,119,237,218,21,157,58,117,42,181 \
,79,102,102,38,246,236,217,99,245,220,131,7,15,198,131,15,62,104,245,56,106,59,120,240,32,126,251,237,55,189,195,32,59,151,149,149,133,95,127,253,85,81,223,241,227,199,195,197,197,69,229 \
,136,76,203,200,200,176,201,89,181,147,39,79,54,110,250,64,74,185,19,192,183,0,138,255,230,174,95,191,142,113,227,198,33,40,40,200,234,227,152,172,229,231,231,135,189,123,247,226,133,23,94 \
,48,190,149,6,160,141,16,226,35,29,194,34,34,34,51,48,241,36,42,31,222,66,97,33,13,0,192,107,175,189,86,102,7,165,85,60,13,185,186,186,98,212,168,81,86,143,99,11,203,151,47 \
,71,102,102,166,222,97,144,29,219,177,99,135,162,163,73,92,92,92,204,218,210,174,150,31,126,248,65,113,241,163,146,52,109,218,20,125,250,244,49,108,186,1,96,47,128,158,134,141,219,183,111 \
,135,191,191,63,190,251,238,59,85,231,87,226,159,255,252,39,146,146,146,240,200,35,143,24,223,250,5,133,91,107,15,235,16,22,17,17,153,137,137,39,81,57,112,183,98,99,241,11,96,163,70 \
,141,130,143,143,79,169,125,246,239,223,175,202,234,69,255,254,253,81,167,78,29,171,199,81,219,181,107,215,176,108,217,50,189,195,32,59,182,117,235,86,69,253,158,120,226,9,227,45,170,54,35 \
,165,196,170,85,171,84,31,119,210,164,73,16,66,24,54,61,0,160,184,50,89,110,110,46,222,127,255,125,244,235,215,79,245,74,186,150,170,86,173,26,214,174,93,139,175,191,254,26,110,110,110 \
,134,183,242,0,188,40,132,24,44,132,200,211,41,60,34,34,50,19,19,79,162,242,227,159,69,31,92,92,92,240,234,171,175,150,250,112,126,126,62,98,99,99,173,158,212,217,217,25,227,198,141 \
,179,122,28,91,136,141,141,85,189,32,11,149,15,199,142,29,67,74,74,138,162,190,1,1,1,42,71,83,178,184,184,56,197,113,150,196,68,81,161,123,28,61,122,20,93,186,116,193,156,57,115 \
,80,80,80,80,226,115,90,232,210,165,11,146,147,147,49,118,236,88,227,91,23,1,52,19,66,44,210,33,44,34,34,82,128,137,39,81,57,33,132,56,136,194,131,210,1,20,190,191,85,173,90 \
,181,82,251,68,69,69,169,82,176,164,87,175,94,154,30,43,97,137,111,191,253,22,55,111,222,212,59,12,178,51,74,143,80,105,209,162,5,58,116,232,160,114,52,37,11,15,15,87,125,76,19 \
,69,133,0,20,174,174,46,94,188,24,29,59,118,196,254,253,251,85,159,215,18,206,206,206,8,14,14,70,92,92,28,26,53,106,100,124,251,7,0,245,133,16,234,102,228,68,68,100,83,76,60 \
,137,202,151,119,139,62,120,121,121,225,185,231,158,43,245,225,75,151,46,89,125,166,39,0,8,33,240,210,75,47,193,217,217,217,234,177,212,118,235,214,45,124,243,205,55,122,135,65,118,36,61 \
,61,93,241,74,184,150,71,168,156,57,115,6,241,241,241,170,143,107,162,168,16,46,93,186,132,193,131,7,99,202,148,41,200,200,200,48,209,75,59,245,235,215,71,108,108,44,230,205,155,7,87 \
,87,87,195,91,89,0,158,20,66,140,22,66,232,187,20,75,68,68,22,99,226,73,84,142,8,33,214,2,184,94,116,253,250,235,175,163,114,229,202,165,246,137,140,140,84,101,238,134,13,27,98 \
,208,160,65,170,140,165,182,164,164,36,221,143,128,32,251,17,19,19,131,59,119,238,88,220,207,203,203,11,67,135,14,181,65,68,166,133,135,135,171,190,213,213,68,81,33,108,216,176,1,126,126 \
,126,138,143,150,81,211,176,97,195,112,224,192,1,244,236,217,211,248,214,65,0,222,66,8,253,131,36,34,34,69,152,120,18,149,63,159,21,125,104,208,160,1,254,241,143,127,148,250,240,238,221 \
,187,113,241,226,69,85,38,30,63,126,188,93,30,175,2,0,139,23,47,198,223,127,255,173,119,24,164,51,41,37,162,163,163,21,245,29,57,114,36,220,221,221,85,142,200,180,204,204,76,172,91 \
,183,78,245,113,13,139,10,101,100,100,96,202,148,41,24,62,124,56,174,94,189,170,250,92,150,112,115,115,195,151,95,126,137,159,126,250,201,248,191,33,18,192,191,133,16,109,132,16,220,51,79 \
,68,228,192,152,120,18,149,63,243,0,20,159,189,240,206,59,239,148,250,101,89,74,137,245,235,215,171,50,177,187,187,123,169,69,75,244,148,145,145,129,175,190,250,74,149,119,90,201,113,29,62 \
,124,24,23,46,92,176,184,159,16,2,227,199,143,183,65,68,166,253,244,211,79,184,125,251,182,170,99,26,22,21,218,187,119,47,218,183,111,143,197,139,23,171,58,135,18,45,90,180,192,174,93 \
,187,240,202,43,175,24,87,218,189,1,160,179,16,226,221,18,186,18,17,145,3,97,226,73,84,206,8,33,242,81,152,124,2,0,234,214,173,139,231,159,127,190,212,62,219,183,111,199,181,107,215 \
,84,153,191,71,143,30,104,215,174,157,42,99,169,237,224,193,131,138,87,187,168,124,80,90,84,168,123,247,238,166,138,220,216,204,234,213,171,85,31,115,196,136,17,168,89,179,38,254,251,223,255 \
,162,123,247,238,56,126,252,184,234,115,88,42,40,40,8,123,247,238,69,155,54,109,140,111,197,161,240,108,206,61,58,132,69,68,68,54,192,196,147,168,124,154,7,160,120,185,164,172,85,207,220 \
,220,92,108,218,180,73,181,201,95,120,225,5,84,170,84,73,181,241,212,180,108,217,50,156,62,125,90,239,48,72,7,55,110,220,64,82,82,146,162,190,90,22,21,74,72,72,192,137,19,39,84 \
,31,119,224,192,129,232,221,187,55,166,78,157,138,156,156,28,213,199,183,132,151,151,23,86,173,90,133,208,208,80,120,120,120,24,222,202,7,240,47,33,68,47,33,132,229,47,226,18,17,145,221 \
,98,226,73,84,14,221,93,245,252,184,232,218,219,219,27,47,188,240,66,169,125,182,108,217,130,27,55,110,168,50,191,183,183,55,130,130,130,84,25,75,109,185,185,185,152,63,127,190,162,226,50 \
,228,216,182,109,219,134,252,252,124,139,251,213,173,91,23,143,63,254,184,250,1,149,32,44,44,76,245,49,133,16,152,58,117,170,93,20,217,234,220,185,51,14,28,56,96,106,235,242,5,0,205 \
,133,16,95,234,16,22,17,17,217,24,19,79,162,242,235,19,24,172,122,206,156,57,211,120,101,225,30,217,217,217,136,136,136,80,109,242,39,159,124,210,110,183,220,158,61,123,22,203,151,47,215 \
,59,12,210,144,148,18,91,183,110,85,212,119,252,248,241,154,29,21,148,154,154,138,29,59,118,168,62,174,148,82,245,119,70,45,229,228,228,132,224,224,96,196,199,199,155,218,182,188,22,64,3 \
,33,196,159,38,186,18,17,81,57,192,196,147,168,156,186,187,234,57,183,232,218,219,219,27,51,102,204,40,181,79,84,84,20,46,93,186,164,214,252,120,249,229,151,81,181,106,85,85,198,83,91 \
,116,116,180,93,172,254,144,54,246,239,223,143,43,87,174,88,220,175,82,165,74,24,53,106,148,13,34,50,45,60,60,92,209,170,172,189,123,232,161,135,16,25,25,105,234,108,206,59,0,158,22 \
,66,60,195,179,57,137,136,202,55,38,158,68,229,219,167,0,210,138,46,166,79,159,14,31,31,159,18,31,206,207,207,199,154,53,107,84,155,188,70,141,26,120,241,197,23,85,27,79,109,139,22 \
,45,194,229,203,151,245,14,131,52,160,180,168,208,224,193,131,53,59,34,40,43,43,11,63,252,240,131,38,115,105,169,95,191,126,216,191,127,63,250,247,239,111,124,235,79,0,13,133,16,234,159 \
,27,67,68,68,118,135,137,39,81,57,118,119,5,97,74,209,181,187,187,59,62,252,240,195,82,251,196,199,199,227,143,63,254,80,45,134,110,221,186,105,250,126,156,37,50,51,51,241,233,167,159 \
,34,47,47,79,239,80,200,134,254,254,251,111,236,219,183,79,81,95,45,139,10,109,216,176,1,55,111,150,159,163,42,93,92,92,48,103,206,28,68,69,69,193,219,219,219,240,150,4,176,72,8 \
,209,84,8,193,95,126,136,136,42,8,38,158,68,229,156,16,226,71,0,199,138,174,39,76,152,128,142,29,59,150,248,188,148,18,139,23,47,86,117,187,223,164,73,147,80,171,86,45,213,198,83 \
,211,169,83,167,84,93,229,37,251,179,117,235,86,20,20,88,190,139,179,101,203,150,240,243,243,179,65,68,166,173,90,181,74,179,185,108,205,215,215,23,113,113,113,152,61,123,54,156,156,238,249 \
,170,145,1,160,159,16,194,126,183,66,16,17,145,77,48,241,36,170,24,198,160,112,149,1,66,8,124,241,197,23,198,7,181,223,227,236,217,179,136,140,140,84,109,242,42,85,170,224,181,215,94 \
,211,172,64,139,165,126,250,233,39,36,38,38,234,29,6,217,64,126,126,62,98,98,98,20,245,157,56,113,162,202,209,148,44,41,41,9,199,142,29,43,251,65,7,48,106,212,40,36,39,39,163 \
,107,215,174,198,183,14,161,240,108,206,88,29,194,34,34,34,157,49,241,36,170,0,132,16,135,1,20,127,251,238,214,173,27,70,142,28,89,106,159,213,171,87,227,239,191,255,86,45,134,71,30 \
,121,196,110,143,88,145,82,226,171,175,190,82,173,176,18,217,143,221,187,119,35,45,45,173,236,7,141,84,171,86,13,131,6,13,178,65,68,166,217,226,8,21,173,121,122,122,98,197,138,21,136 \
,136,136,192,3,15,60,96,120,43,31,192,116,33,132,191,16,34,93,167,240,136,136,72,103,76,60,137,42,142,113,0,138,95,102,252,242,203,47,81,173,90,181,18,31,206,204,204,196,151,95,126 \
,9,41,165,106,1,12,29,58,212,110,223,247,204,200,200,64,72,72,8,207,247,44,103,148,22,21,26,61,122,52,220,221,221,85,142,198,180,11,23,46,40,94,149,181,23,173,90,181,66,98,98 \
,162,169,85,226,107,0,218,11,33,62,213,33,44,34,34,178,35,76,60,137,42,8,33,68,26,128,175,139,174,189,189,189,241,193,7,31,148,218,231,208,161,67,136,142,142,86,53,142,41,83,166 \
,148,90,89,87,79,167,79,159,198,194,133,11,245,14,131,84,114,233,210,37,28,58,116,200,226,126,78,78,78,24,63,126,188,13,34,50,109,245,234,213,14,123,132,138,16,2,83,167,78,197,190 \
,125,251,208,170,85,43,227,219,235,1,212,22,66,28,212,33,52,34,34,178,51,76,60,137,42,150,215,1,20,31,102,248,202,43,175,160,115,231,206,165,118,88,177,98,133,170,71,142,184,185,185 \
,97,198,140,25,168,82,165,138,106,99,170,41,46,46,78,241,42,25,217,151,168,168,40,69,43,246,189,122,245,66,131,6,13,108,16,209,253,114,114,114,28,246,8,149,154,53,107,98,227,198,141 \
,248,226,139,47,80,185,114,101,195,91,185,0,2,133,16,35,238,158,39,76,68,68,196,196,147,168,34,185,123,188,202,168,162,107,39,39,39,44,90,180,8,46,46,46,37,246,201,206,206,198,188 \
,121,243,144,147,147,163,90,28,245,234,213,195,212,169,83,75,45,112,164,167,101,203,150,225,196,137,19,122,135,65,86,200,205,205,69,108,172,178,26,54,90,30,161,242,243,207,63,43,122,7,85 \
,111,143,63,254,56,14,28,56,128,167,158,122,202,248,214,95,40,60,155,179,252,148,232,37,34,34,85,48,241,36,170,96,132,16,241,0,138,151,244,252,253,253,241,242,203,47,151,218,231,244,233 \
,211,88,190,124,185,170,113,116,234,212,9,195,134,13,83,117,76,181,228,230,230,226,227,143,63,86,181,184,18,105,107,215,174,93,184,117,235,150,197,253,124,124,124,208,163,71,15,27,68,100,154 \
,163,29,161,82,116,54,231,182,109,219,80,175,94,61,195,91,18,192,18,0,77,133,16,23,245,137,142,136,136,236,25,19,79,162,138,105,52,128,236,162,139,15,63,252,176,204,247,46,163,162,162 \
,176,125,251,118,85,131,8,10,10,66,251,246,237,85,29,83,45,55,110,220,192,71,31,125,132,236,236,236,178,31,38,187,163,116,187,116,64,64,128,241,185,147,54,179,111,223,62,28,62,124,88 \
,147,185,212,208,176,97,67,236,220,185,19,179,103,207,54,62,26,41,19,192,0,33,196,100,33,132,122,213,200,136,136,168,92,97,226,73,84,1,9,33,110,3,120,165,232,186,106,213,170,248,223 \
,255,254,87,230,23,238,197,139,23,227,175,191,254,82,51,14,76,155,54,13,222,222,222,170,141,169,166,148,148,20,44,88,176,64,213,202,190,100,123,231,207,159,199,209,163,71,45,238,231,230,230 \
,134,167,159,126,218,6,17,153,22,30,30,174,217,92,214,26,49,98,4,246,239,223,143,110,221,186,25,223,58,4,192,91,8,177,77,135,176,136,136,200,129,48,241,36,170,160,132,16,203,0,252 \
,81,116,221,167,79,31,188,242,202,43,165,244,40,124,223,115,238,220,185,170,110,65,245,244,244,196,59,239,188,99,183,197,134,18,19,19,177,118,237,90,189,195,32,11,68,70,70,42,250,177,96 \
,200,144,33,165,30,49,164,166,171,87,175,58,68,17,43,119,119,119,124,251,237,183,88,183,110,29,106,212,168,97,120,171,0,192,236,187,103,115,90,190,167,153,136,136,42,28,38,158,68,21,91 \
,63,20,86,160,4,0,132,132,132,152,58,18,225,30,215,175,95,199,199,31,127,172,234,22,212,122,245,234,225,205,55,223,212,108,139,163,165,34,34,34,240,235,175,191,234,29,6,153,225,206,157 \
,59,216,177,99,135,162,190,90,30,161,178,106,213,42,228,229,229,149,253,160,142,30,121,228,17,36,38,38,98,202,148,41,198,183,174,3,232,36,132,40,253,60,38,34,34,34,3,246,249,45,143 \
,136,52,33,132,184,4,224,165,162,107,55,55,55,132,133,133,193,213,213,181,212,126,127,253,245,23,230,207,159,143,130,130,2,213,98,105,219,182,45,158,121,230,25,213,198,83,147,148,18,11,22 \
,44,80,116,38,36,105,43,62,62,30,25,25,25,22,247,107,215,174,29,90,183,110,109,131,136,238,151,155,155,139,239,191,255,94,147,185,148,10,10,10,194,222,189,123,225,231,231,103,124,43,14 \
,192,67,66,136,125,58,132,69,68,68,14,140,137,39,81,5,119,119,203,109,98,209,117,187,118,237,240,246,219,111,151,217,111,247,238,221,248,234,171,175,84,125,255,241,233,167,159,214,180,162,168 \
,37,242,242,242,16,18,18,130,211,167,79,235,29,10,149,66,233,246,85,45,143,80,249,229,151,95,112,245,234,85,205,230,179,68,181,106,213,176,102,205,26,132,134,134,26,111,127,207,3,240,178 \
,16,162,151,16,66,189,179,149,136,136,168,194,96,226,73,68,0,48,16,64,86,209,197,59,239,188,131,78,157,58,149,217,105,251,246,237,88,185,114,165,106,65,8,33,240,234,171,175,162,105,211 \
,166,170,141,169,166,204,204,76,204,157,59,215,110,147,134,138,46,37,37,5,167,78,157,178,184,95,141,26,53,48,112,224,64,27,68,100,90,88,88,152,102,115,89,162,123,247,238,56,120,240,32 \
,198,141,27,103,124,235,28,128,38,66,136,133,58,132,69,68,68,229,4,19,79,34,194,221,226,32,197,47,184,185,186,186,34,34,34,2,15,62,248,96,153,125,215,173,91,135,245,235,215,171,22 \
,75,165,74,149,48,99,198,12,205,138,188,88,42,45,45,13,115,231,206,69,122,122,186,222,161,144,145,45,91,182,40,234,55,110,220,56,84,170,84,73,229,104,76,251,253,247,223,237,110,203,182 \
,16,2,83,167,78,197,246,237,219,209,176,97,67,227,219,63,2,240,21,66,156,213,33,52,34,34,42,71,152,120,18,17,0,64,8,177,30,192,166,162,107,31,31,31,44,91,182,12,66,136,50 \
,251,134,133,133,97,219,54,245,78,83,168,85,171,22,166,79,159,110,124,86,160,221,56,123,246,44,230,205,155,135,220,220,220,178,31,38,77,100,101,101,41,42,0,229,236,236,140,49,99,198,216 \
,32,34,211,254,247,191,255,105,54,151,57,234,213,171,135,152,152,24,124,241,197,23,198,239,118,103,3,24,38,132,24,37,132,80,239,101,110,34,34,170,176,152,120,18,145,161,17,0,46,23,93 \
,12,27,54,12,211,166,77,43,179,147,148,18,11,23,46,68,100,100,164,106,129,180,106,213,10,47,188,240,130,106,227,169,237,143,63,254,192,103,159,125,134,252,252,124,189,67,33,0,59,118,236 \
,64,86,86,86,217,15,26,233,219,183,47,234,213,171,103,131,136,238,151,150,150,166,234,255,70,172,53,96,192,0,236,221,187,23,189,123,247,54,190,117,10,128,143,16,98,163,14,97,17,17,81 \
,57,197,196,147,136,138,9,33,242,0,116,71,97,33,17,0,133,71,172,116,239,222,189,204,190,82,74,44,94,188,88,241,118,71,83,158,120,226,9,77,223,189,179,84,82,82,18,62,255,252,115 \
,85,171,251,146,50,91,183,110,85,212,47,32,32,64,229,72,74,182,102,205,26,228,228,232,95,151,167,114,229,202,152,55,111,30,182,108,217,130,135,30,122,200,240,150,4,240,173,16,226,97,33 \
,4,95,100,38,34,34,85,49,241,36,162,123,8,33,254,4,240,98,209,181,171,171,43,214,172,89,131,154,53,107,150,217,87,74,137,37,75,150,168,154,124,78,154,52,73,179,99,46,148,72,72 \
,72,192,215,95,127,173,106,117,95,178,204,177,99,199,144,146,146,98,113,191,38,77,154,160,107,215,174,54,136,232,126,121,121,121,88,187,118,173,38,115,149,166,121,243,230,216,181,107,23,130,131 \
,131,141,207,205,77,7,208,71,8,241,82,9,93,137,136,136,172,194,196,147,136,238,115,247,136,149,226,109,118,13,26,52,64,120,120,184,89,239,92,170,157,124,58,59,59,99,198,140,25,168,83 \
,167,142,42,227,217,66,108,108,44,150,45,91,166,119,24,21,150,210,35,84,2,2,2,204,122,135,89,13,145,145,145,184,124,249,114,217,15,218,208,179,207,62,139,189,123,247,162,109,219,182,198 \
,183,118,2,168,37,132,216,161,125,84,68,68,84,81,48,241,36,162,146,60,13,224,98,209,197,19,79,60,129,79,62,249,196,172,142,106,39,159,85,171,86,197,91,111,189,5,55,55,55,85,198 \
,179,133,205,155,55,219,93,225,152,138,224,246,237,219,248,237,183,223,44,238,87,165,74,21,12,31,62,220,6,17,153,22,30,30,174,217,92,198,60,61,61,177,114,229,74,252,239,127,255,131,167 \
,167,167,225,173,124,0,83,133,16,143,11,33,178,117,10,143,136,136,42,8,38,158,68,100,146,193,251,158,197,165,91,95,127,253,117,60,251,236,179,102,245,87,59,249,244,245,245,197,212,169,83 \
,53,91,161,82,98,227,198,141,88,189,122,181,222,97,84,40,219,183,111,87,84,93,120,248,240,225,168,90,181,170,13,34,186,223,145,35,71,176,127,255,126,77,230,50,38,132,64,88,88,152,169 \
,119,89,47,1,104,41,132,248,175,14,97,17,17,81,5,196,196,147,136,74,36,132,72,1,48,18,133,69,71,0,0,223,126,251,45,186,117,235,102,86,255,162,228,243,151,95,126,81,37,158,46 \
,93,186,224,233,167,159,86,101,44,91,137,136,136,192,138,21,43,248,206,167,6,164,148,138,183,217,142,31,63,190,236,135,84,18,26,26,170,217,92,198,102,206,156,137,17,35,70,24,55,71,0 \
,168,47,132,56,161,67,72,68,68,84,65,49,241,36,162,82,9,33,54,1,120,191,232,186,114,229,202,88,183,110,29,26,52,104,96,86,127,41,37,150,46,93,138,205,155,55,171,18,207,248,241 \
,227,209,177,99,71,85,198,178,149,13,27,54,96,209,162,69,76,62,109,236,240,225,195,184,112,225,130,197,253,58,117,234,132,230,205,155,219,32,162,251,93,191,126,93,181,63,251,150,234,221,187 \
,55,62,252,240,67,195,38,9,32,80,8,49,70,8,193,115,128,136,136,72,83,76,60,137,168,76,66,136,247,1,252,92,116,93,167,78,29,108,216,176,1,30,30,30,102,245,47,74,62,213,120 \
,207,77,8,129,215,95,127,29,190,190,190,86,143,101,75,81,81,81,248,230,155,111,152,124,218,144,210,213,206,192,192,64,149,35,41,217,119,223,125,135,59,119,238,104,54,95,17,119,119,119,44 \
,90,180,200,184,114,237,124,33,196,42,205,131,33,34,34,2,19,79,34,50,223,112,0,127,22,93,180,109,219,22,223,127,255,61,92,92,92,204,30,96,221,186,117,248,242,203,47,145,159,111,221 \
,98,139,155,155,27,222,123,239,61,60,248,224,131,86,141,99,107,91,183,110,197,151,95,126,201,115,62,109,224,198,141,27,72,74,74,178,184,95,173,90,181,208,191,127,127,27,68,116,191,252,252 \
,124,221,142,80,121,247,221,119,241,240,195,15,27,54,253,46,132,120,67,151,96,136,136,136,192,196,147,136,204,36,132,40,0,208,30,192,237,162,182,39,159,124,18,43,86,172,176,168,224,79,108 \
,108,44,254,243,159,255,40,42,8,99,168,70,141,26,120,251,237,183,237,186,210,45,80,88,252,38,36,36,68,151,85,175,242,108,219,182,109,138,126,192,120,230,153,103,44,250,177,196,26,219,182 \
,109,67,106,106,170,38,115,25,106,9,77,2,254,0,0,32,0,73,68,65,84,221,186,53,166,79,159,110,216,148,15,96,176,230,129,16,17,17,25,96,226,73,68,102,19,66,220,4,208,5,6 \
,149,110,3,2,2,48,119,238,92,139,198,73,74,74,194,135,31,126,136,204,204,76,171,226,105,220,184,177,221,87,186,5,128,221,187,119,99,214,172,89,184,117,235,150,222,161,148,11,82,74,108 \
,221,186,213,226,126,46,46,46,24,51,102,140,13,34,50,45,44,44,76,179,185,138,8,33,240,237,183,223,194,213,213,213,176,249,19,33,196,89,205,131,33,34,34,50,192,196,147,136,44,34,132 \
,56,2,160,47,128,226,253,163,111,191,253,54,166,78,157,106,209,56,135,15,31,198,236,217,179,173,78,198,186,116,233,162,233,59,123,74,157,56,113,2,239,188,243,14,174,94,189,170,119,40,14 \
,111,255,254,253,184,114,229,138,197,253,6,14,28,136,58,117,234,216,32,162,251,157,60,121,18,123,246,236,209,100,46,67,1,1,1,232,222,189,187,97,211,5,0,239,104,30,8,17,17,145,17 \
,38,158,68,100,49,33,68,60,128,64,24,28,179,242,249,231,159,99,244,232,209,22,141,115,234,212,41,188,253,246,219,86,39,99,35,71,142,196,128,1,3,172,26,67,11,231,207,159,71,112,112 \
,48,82,82,82,244,14,197,161,57,66,81,161,208,208,80,205,11,75,85,169,82,5,255,254,247,191,141,155,71,9,33,88,225,138,136,136,116,199,196,147,136,20,17,66,172,1,240,118,209,181,147 \
,147,19,194,194,194,44,46,220,146,154,154,138,224,224,96,156,62,125,218,170,120,38,79,158,12,63,63,63,171,198,208,194,245,235,215,241,222,123,239,225,240,225,195,122,135,226,144,174,94,189,138 \
,125,251,246,89,220,239,225,135,31,70,251,246,237,109,16,209,253,110,221,186,133,141,27,55,106,50,151,161,183,222,122,11,62,62,62,134,77,219,133,16,187,52,15,132,136,136,200,4,38,158,68 \
,164,152,16,98,30,128,5,69,215,110,110,110,216,176,97,3,250,244,233,99,209,56,215,175,95,199,172,89,179,112,236,216,49,197,177,56,59,59,99,250,244,233,168,91,183,174,226,49,180,146,145 \
,145,129,247,223,127,95,183,243,29,29,217,214,173,91,21,85,9,14,10,10,210,236,93,224,239,191,255,30,89,89,89,154,204,85,164,65,131,6,120,227,141,123,138,214,230,3,24,167,105,16,68 \
,68,68,165,96,226,73,68,86,17,66,76,3,80,188,188,227,238,238,142,141,27,55,226,177,199,30,179,104,156,219,183,111,99,214,172,89,136,139,139,83,28,139,167,167,39,102,205,154,133,234,213 \
,171,43,30,67,43,249,249,249,88,186,116,41,190,249,230,27,171,143,151,169,40,242,243,243,17,19,19,99,113,63,15,15,15,12,25,50,196,6,17,221,175,160,160,0,171,87,175,214,100,46,67 \
,33,33,33,168,82,165,138,97,211,215,66,8,203,95,132,37,34,34,178,17,38,158,68,100,53,33,196,48,0,197,101,70,61,60,60,176,121,243,102,116,237,218,213,162,113,114,115,115,241,197,23 \
,95,224,187,239,190,83,28,75,157,58,117,48,103,206,28,120,122,122,42,30,67,75,209,209,209,172,120,107,166,164,164,36,92,187,118,205,226,126,163,70,141,130,135,135,135,13,34,186,223,246,237 \
,219,113,238,220,57,77,230,42,210,174,93,59,140,27,119,207,226,230,45,0,60,179,147,136,136,236,10,19,79,34,82,203,64,0,219,139,46,170,86,173,138,200,200,72,116,234,212,201,162,65,164 \
,148,88,187,118,45,190,250,234,43,197,43,129,62,62,62,120,239,189,247,236,254,140,207,34,71,142,28,65,112,112,176,230,9,139,163,137,142,142,182,184,143,16,2,1,1,1,54,136,198,52,61 \
,142,80,9,9,9,49,222,70,252,134,16,34,79,243,64,136,136,136,74,193,196,147,136,84,113,183,114,102,95,0,9,69,109,94,94,94,136,140,140,68,135,14,29,44,30,47,38,38,198,170,179 \
,62,155,53,107,134,55,222,120,3,206,206,206,138,250,107,237,210,165,75,8,14,14,198,175,191,254,170,119,40,118,233,210,165,75,56,116,232,144,197,253,186,117,235,134,70,141,26,217,32,162,251 \
,253,249,231,159,216,181,75,219,90,62,253,250,245,67,191,126,253,12,155,46,8,33,150,106,26,4,17,17,145,25,152,120,18,145,106,238,38,159,61,0,20,127,251,174,94,189,58,182,111,223,110 \
,252,229,216,44,7,15,30,196,204,153,51,21,31,183,210,161,67,7,188,250,234,171,154,21,149,177,86,86,86,22,62,251,236,51,124,243,205,55,200,205,205,213,59,28,187,18,21,21,165,232,120 \
,18,45,143,80,9,11,11,211,244,8,21,33,4,230,205,155,103,220,60,69,179,0,136,136,136,44,192,196,147,136,84,117,55,249,124,12,64,114,81,155,167,167,39,54,110,220,136,193,131,7,91 \
,60,222,217,179,103,49,99,198,12,156,58,117,74,81,60,189,122,245,210,52,249,80,67,116,116,52,222,122,235,45,92,190,124,89,239,80,236,66,110,110,46,98,99,99,45,238,87,183,110,93,244 \
,238,221,219,6,17,221,47,35,35,67,243,35,84,198,142,29,107,124,68,204,81,33,196,38,77,131,32,34,34,50,19,19,79,34,82,157,16,34,31,64,71,24,108,187,117,119,119,199,250,245,235 \
,17,20,20,100,241,120,55,110,220,192,123,239,189,135,221,187,119,43,138,103,228,200,145,24,62,124,184,162,190,122,249,235,175,191,240,250,235,175,35,33,33,161,236,135,203,185,132,132,4,69,197 \
,151,158,121,230,25,205,182,90,71,68,68,32,61,61,93,147,185,128,194,227,131,102,207,158,109,220,108,249,255,184,136,136,136,52,194,196,147,136,108,226,110,242,217,3,64,113,69,24,23,23,23 \
,44,95,190,28,147,38,77,178,120,188,236,236,108,132,132,132,224,231,159,127,86,20,79,80,80,16,30,127,252,113,69,125,245,146,153,153,137,79,63,253,20,203,151,47,175,208,91,111,149,20,21 \
,114,117,117,197,168,81,163,108,16,205,253,164,148,154,31,161,18,24,24,136,22,45,90,24,54,237,18,66,236,213,52,8,34,34,34,11,48,241,36,34,155,17,66,72,33,196,64,0,17,69,109 \
,206,206,206,88,180,104,17,102,204,152,97,241,120,5,5,5,88,190,124,57,230,207,159,143,156,156,28,75,99,193,171,175,190,138,30,61,122,88,60,175,158,164,148,248,249,231,159,241,198,27,111 \
,224,207,63,255,212,59,28,205,157,63,127,30,71,143,30,181,184,223,147,79,62,137,154,53,107,218,32,162,251,237,220,185,19,41,41,41,154,204,5,20,38,213,179,102,205,50,108,146,0,38,106 \
,22,0,17,17,145,2,76,60,137,200,230,132,16,99,0,44,52,184,70,72,72,8,150,44,89,2,87,87,87,139,199,139,139,139,195,172,89,179,112,253,250,117,139,250,57,57,57,225,181,215,94 \
,115,184,228,19,0,206,157,59,135,224,224,96,124,247,221,119,40,40,40,208,59,28,205,108,217,178,197,238,139,10,133,135,135,107,54,23,0,60,247,220,115,104,220,184,177,97,211,78,33,196,73 \
,77,131,32,34,34,178,144,99,148,122,36,162,114,65,74,249,33,128,119,13,219,162,163,163,49,122,244,104,69,239,240,213,168,81,3,111,189,245,22,30,126,248,97,139,250,229,231,231,227,147,79 \
,62,81,252,206,168,222,154,53,107,134,169,83,167,162,110,221,186,122,135,98,83,119,238,220,193,11,47,188,96,241,187,147,45,91,182,196,134,13,27,108,20,213,189,206,156,57,131,1,3,6,104 \
,246,99,64,165,74,149,112,252,248,113,248,250,250,22,53,73,0,77,132,16,218,45,185,18,17,17,41,192,21,79,34,210,140,16,226,61,0,211,80,248,101,25,0,48,96,192,0,236,220,185,19 \
,245,234,213,179,120,188,107,215,174,225,221,119,223,69,92,92,156,69,253,156,157,157,241,230,155,111,26,87,4,117,24,39,78,156,192,27,111,188,129,205,155,55,107,122,124,135,214,226,227,227,21 \
,21,236,81,82,192,74,169,176,176,48,77,87,160,39,77,154,100,152,116,2,192,86,38,157,68,68,228,8,184,226,73,68,154,147,82,14,2,176,1,64,241,62,219,243,231,207,99,240,224,193,56 \
,116,232,144,162,49,159,122,234,41,60,247,220,115,112,114,50,255,247,180,188,188,60,124,246,217,103,72,76,76,84,52,167,61,104,220,184,49,94,122,233,37,52,109,218,84,239,80,84,55,125,250 \
,116,139,143,209,169,86,173,26,226,227,227,225,238,238,110,163,168,254,95,102,102,38,122,244,232,129,219,183,111,219,124,46,160,240,221,206,83,167,78,193,199,199,167,168,169,0,128,143,16,34,85 \
,147,0,136,136,136,172,192,21,79,34,210,156,16,98,11,0,127,0,197,203,89,245,235,215,199,175,191,254,138,33,67,134,40,26,115,211,166,77,152,59,119,46,50,50,50,204,238,227,226,226,130 \
,233,211,167,107,118,214,163,45,252,245,215,95,120,235,173,183,176,108,217,50,100,103,103,235,29,142,106,82,82,82,20,157,221,58,122,244,104,77,146,78,0,88,183,110,157,102,73,39,0,76,152 \
,48,193,48,233,4,128,104,38,157,68,68,228,40,152,120,18,145,46,132,16,71,1,212,7,112,166,168,173,106,213,170,216,176,97,3,230,205,155,167,232,252,197,228,228,100,4,7,7,227,194,133 \
,11,102,247,113,114,114,194,43,175,188,130,190,125,251,90,60,159,189,200,207,207,199,166,77,155,48,109,218,52,36,39,39,235,29,142,42,182,108,217,98,113,31,33,4,198,142,29,107,131,104,238 \
,39,165,196,202,149,43,53,153,11,40,220,30,30,28,28,124,79,8,0,166,104,22,0,17,17,145,149,152,120,18,145,110,132,16,55,1,52,5,240,155,65,27,130,131,131,177,117,235,86,212,174 \
,93,219,226,49,83,83,83,49,125,250,116,139,182,207,58,57,57,225,229,151,95,198,160,65,131,44,158,207,158,92,190,124,25,31,124,240,1,62,253,244,83,92,185,114,69,239,112,20,203,204,204 \
,68,124,124,188,197,253,122,245,234,101,252,254,163,205,36,36,36,104,122,188,205,152,49,99,208,172,89,51,195,166,120,33,196,89,205,2,32,34,34,178,18,19,79,34,210,149,16,34,79,8,209 \
,3,192,50,195,246,222,189,123,35,49,49,17,109,219,182,181,120,204,204,204,76,124,242,201,39,88,182,108,25,242,243,243,205,141,3,147,39,79,198,132,9,19,32,132,99,191,254,254,219,111,191 \
,225,229,151,95,198,178,101,203,144,153,153,169,119,56,22,219,177,99,135,162,109,195,1,1,1,54,136,198,180,176,176,48,205,230,18,66,96,230,204,153,134,77,18,192,100,205,2,32,34,34,82 \
,129,99,127,187,34,162,114,69,74,25,4,96,57,128,226,125,182,89,89,89,120,233,165,151,16,26,26,170,104,204,150,45,91,226,205,55,223,68,245,234,213,205,238,179,125,251,118,124,253,245,215 \
,102,39,173,246,204,203,203,11,99,198,140,193,160,65,131,44,42,188,164,167,105,211,166,225,204,153,51,101,63,104,192,199,199,7,91,183,110,213,228,239,49,53,53,21,125,251,246,213,236,207,199 \
,147,79,62,137,205,155,55,27,54,237,17,66,116,210,100,114,34,34,34,149,56,198,183,16,34,170,16,132,16,97,0,6,163,176,90,39,0,192,221,221,29,43,86,172,192,194,133,11,81,169,82 \
,37,139,199,60,114,228,8,166,77,155,102,81,181,220,222,189,123,227,189,247,222,211,172,72,141,45,221,186,117,11,75,151,46,197,244,233,211,241,251,239,191,235,29,78,153,142,29,59,102,113,210 \
,9,0,227,199,143,215,44,177,14,15,15,215,244,71,137,215,94,123,205,184,137,239,118,18,17,145,195,225,138,39,17,233,78,74,57,20,192,43,0,186,2,240,44,233,185,196,196,68,140,30,61 \
,26,231,207,159,183,120,14,103,103,103,4,6,6,98,216,176,97,102,111,165,61,113,226,4,62,250,232,35,220,188,121,211,226,249,236,213,35,143,60,130,128,128,0,180,106,213,74,239,80,76,250 \
,226,139,47,176,115,231,78,139,250,184,185,185,33,62,62,30,15,60,240,128,141,162,250,127,89,89,89,120,236,177,199,52,251,51,225,231,231,135,3,7,14,24,254,153,61,37,132,120,88,147,201 \
,137,136,136,84,196,21,79,34,210,156,148,210,69,74,249,146,148,114,183,148,50,7,133,103,122,246,71,41,73,231,169,83,167,112,240,224,65,52,111,222,92,209,156,249,249,249,8,13,13,197,199 \
,31,127,108,246,145,43,205,154,53,195,103,159,125,134,198,141,27,43,154,211,30,29,61,122,20,239,190,251,46,230,204,153,163,232,184,18,91,186,125,251,54,18,18,18,44,238,247,212,83,79,105 \
,146,116,2,192,134,13,27,52,253,33,98,218,180,105,198,63,148,188,163,217,228,68,68,68,42,226,138,39,17,105,66,74,41,0,140,3,240,26,128,118,48,120,143,211,148,139,23,47,34,54,54 \
,22,49,49,49,136,137,137,193,217,179,234,21,240,244,246,246,198,155,111,190,105,118,66,153,149,149,133,249,243,231,99,207,158,61,170,197,96,47,252,253,253,17,20,20,100,23,201,245,250,245,235 \
,21,189,203,187,110,221,58,60,250,232,163,54,136,232,126,67,134,12,193,177,99,199,52,153,171,78,157,58,56,115,230,12,42,87,174,92,212,116,93,8,81,67,147,201,137,136,136,84,198,196,147 \
,136,108,74,74,217,13,192,251,0,30,3,80,185,164,231,114,114,114,176,99,199,14,108,218,180,9,49,49,49,56,114,228,136,77,227,114,118,118,198,232,209,163,49,102,204,24,179,182,222,74,41 \
,241,253,247,223,99,237,218,181,54,141,75,15,66,8,116,238,220,25,195,134,13,67,139,22,45,116,137,65,74,137,87,94,121,197,162,51,88,1,160,77,155,54,136,136,136,176,81,84,247,74,76 \
,76,196,132,9,19,52,153,11,0,102,204,152,129,144,144,16,195,166,217,66,136,15,52,11,128,136,136,72,69,46,122,7,64,68,229,143,148,210,29,192,123,0,94,0,80,171,164,231,110,221,186 \
,133,45,91,182,96,253,250,245,216,178,101,139,166,91,24,243,243,243,177,118,237,90,28,63,126,28,255,250,215,191,202,220,170,41,132,192,216,177,99,241,208,67,15,225,155,111,190,193,157,59,119 \
,52,138,212,246,164,148,72,76,76,68,98,98,34,154,52,105,130,167,158,122,10,61,123,246,212,180,10,238,161,67,135,44,78,58,1,32,48,48,208,6,209,152,22,30,30,174,217,92,0,240,236 \
,179,207,26,94,230,1,8,49,253,36,17,17,145,253,227,138,39,17,169,70,74,217,25,192,127,0,116,67,9,91,105,179,178,178,176,113,227,70,172,94,189,26,145,145,145,200,201,201,209,52,70 \
,83,188,188,188,240,234,171,175,162,67,135,14,102,61,159,154,154,138,144,144,16,156,59,119,206,198,145,233,167,78,157,58,24,50,100,8,250,245,235,103,184,213,211,102,254,243,159,255,88,252,126 \
,103,245,234,213,17,31,31,175,73,124,23,46,92,64,159,62,125,52,171,102,219,169,83,39,36,37,37,25,54,109,23,66,244,209,100,114,34,34,34,27,96,113,33,34,178,154,148,114,130,148,50 \
,5,64,34,10,183,212,222,147,116,230,231,231,35,42,42,10,19,39,78,68,157,58,117,48,110,220,56,108,220,184,209,46,146,78,160,112,229,245,163,143,62,50,123,37,179,94,189,122,8,9,9 \
,65,183,110,221,52,136,78,31,151,47,95,198,210,165,75,49,101,202,20,172,92,185,18,151,47,95,182,217,92,55,110,220,48,78,178,204,50,110,220,56,77,146,78,0,88,181,106,149,166,71,168 \
,76,156,56,209,184,137,91,108,137,136,200,161,113,197,147,136,20,145,82,186,0,152,131,194,99,80,170,153,122,230,252,249,243,88,182,108,25,150,46,93,170,232,8,20,61,248,250,250,226,181,215 \
,94,131,143,143,79,153,207,74,41,177,113,227,70,205,207,117,212,131,16,2,126,126,126,24,48,96,0,58,119,238,12,103,231,82,107,67,89,36,34,34,2,171,87,175,182,168,143,179,179,51,98 \
,98,98,80,175,94,61,213,226,40,73,78,78,14,122,246,236,137,180,180,52,155,207,85,36,37,37,5,190,190,190,69,151,55,133,16,218,148,237,37,34,34,178,17,38,158,68,100,145,187,9,231 \
,167,0,94,132,137,98,65,5,5,5,248,229,151,95,176,120,241,98,252,242,203,47,14,153,144,57,59,59,99,216,176,97,24,55,110,28,92,93,93,203,124,254,212,169,83,152,63,127,190,162,119 \
,20,29,81,245,234,213,209,187,119,111,12,28,56,16,181,107,215,182,106,44,41,37,94,124,241,69,92,185,114,197,162,126,253,251,247,199,194,133,11,173,154,219,92,63,252,240,3,102,206,156,169 \
,201,92,0,208,176,97,67,156,62,125,218,176,105,179,16,226,41,205,2,32,34,34,178,1,38,158,68,100,22,41,165,19,10,87,56,167,3,112,51,190,159,158,158,142,213,171,87,99,254,252,249 \
,154,29,55,97,107,222,222,222,120,233,165,151,204,58,170,35,39,39,7,225,225,225,216,180,105,147,6,145,217,7,39,39,39,248,249,249,161,103,207,158,232,220,185,51,170,84,169,98,241,24,251 \
,246,237,195,220,185,115,45,238,23,26,26,170,217,86,231,17,35,70,224,247,223,127,215,100,46,0,8,10,10,50,62,86,230,89,33,132,229,231,204,16,17,17,217,17,38,158,68,84,170,187,231 \
,111,126,8,224,13,152,72,56,83,83,83,241,213,87,95,97,209,162,69,184,126,253,186,230,241,217,154,16,2,253,251,247,199,196,137,19,205,74,172,146,146,146,176,112,225,66,220,186,117,75,131 \
,232,236,135,171,171,43,218,180,105,131,110,221,186,161,107,215,174,102,191,123,249,239,127,255,27,123,247,238,181,104,46,95,95,95,68,71,71,155,117,12,142,181,246,238,221,139,103,158,121,198,230 \
,243,24,90,182,108,25,158,127,254,121,195,166,7,132,16,218,149,124,38,34,34,178,1,30,167,66,68,37,146,82,142,7,240,53,128,251,222,47,59,115,230,12,62,250,232,35,172,88,177,194,110 \
,138,4,153,195,205,205,13,85,171,86,133,151,151,23,188,188,188,80,181,106,213,123,254,114,113,113,129,16,2,30,30,30,0,10,183,221,186,185,185,33,45,45,205,172,196,179,115,231,206,104,214 \
,172,25,190,253,246,91,236,222,189,219,214,127,59,118,35,55,55,23,123,246,236,193,158,61,123,176,108,217,50,116,237,218,21,221,187,119,71,235,214,173,75,124,31,244,234,213,171,216,191,127,191 \
,197,115,77,152,48,65,147,164,19,208,254,8,21,0,232,209,163,135,225,101,26,147,78,34,34,42,15,184,226,73,68,247,145,82,118,0,176,22,64,19,227,123,103,207,158,197,199,31,127,140,229 \
,203,151,219,93,194,249,192,3,15,192,219,219,27,181,106,213,66,205,154,53,241,224,131,15,22,127,174,86,173,26,170,86,173,106,214,59,155,106,249,237,183,223,176,100,201,18,77,207,39,181,55 \
,110,110,110,120,244,209,71,209,173,91,55,116,232,208,1,158,158,158,197,247,86,175,94,141,136,136,8,139,198,115,119,119,71,124,124,60,170,85,51,89,207,74,85,87,174,92,65,175,94,189,144 \
,151,151,103,243,185,138,84,169,82,5,183,111,223,54,60,67,117,135,16,162,183,102,1,16,17,17,217,8,87,60,137,168,152,148,210,3,192,15,0,158,48,190,119,249,242,101,124,240,193,7,88 \
,186,116,169,174,9,167,179,179,51,234,213,171,7,31,31,31,52,104,208,0,222,222,222,168,91,183,46,188,189,189,21,189,99,104,75,221,187,119,135,159,159,31,150,47,95,142,29,59,118,232,29 \
,142,46,178,179,179,139,87,66,157,157,157,209,178,101,75,116,234,212,9,237,218,181,195,182,109,219,44,30,111,248,240,225,154,36,157,64,225,17,42,90,38,157,0,208,170,85,43,195,164,19,0 \
,42,206,178,57,17,17,149,107,92,241,36,34,0,128,148,242,121,0,95,1,112,55,108,207,201,201,193,183,223,126,139,89,179,102,105,190,114,231,230,230,134,166,77,155,162,113,227,198,104,216,176 \
,33,124,125,125,209,160,65,3,77,87,45,213,146,156,156,140,69,139,22,217,244,60,204,138,224,231,159,127,70,139,22,45,108,62,79,110,110,46,122,246,236,137,191,255,254,219,230,115,25,250,199 \
,63,254,129,165,75,151,26,54,245,23,66,88,158,161,19,17,17,217,25,174,120,18,85,112,82,202,134,0,54,2,240,51,106,199,15,63,252,128,224,224,96,164,164,164,104,18,75,141,26,53,208 \
,162,69,11,180,108,217,18,77,154,52,65,211,166,77,225,226,82,62,254,51,213,182,109,91,124,245,213,87,136,138,138,194,170,85,171,144,149,149,165,119,72,14,167,99,199,142,154,36,157,0,176 \
,121,243,102,205,147,78,0,166,42,40,115,197,147,136,136,202,133,242,241,141,142,136,20,145,82,190,3,224,125,0,247,84,127,57,124,248,48,166,76,153,130,93,187,118,217,116,254,90,181,106,193 \
,223,223,31,254,254,254,120,244,209,71,53,219,66,169,23,23,23,23,12,30,60,24,157,58,117,194,138,21,43,144,144,144,160,119,72,14,37,48,48,80,179,185,244,40,42,4,0,173,91,183,54 \
,188,204,20,66,84,172,242,200,68,68,84,110,113,171,45,81,5,36,165,172,5,32,22,192,189,223,114,51,51,241,193,7,31,224,243,207,63,71,110,110,174,234,243,86,174,92,25,109,219,182,45 \
,78,54,189,189,189,85,159,195,145,28,62,124,24,11,23,46,196,165,75,151,244,14,197,238,213,170,85,11,113,113,113,154,172,128,31,60,120,16,163,70,141,178,249,60,166,92,188,120,17,15,61 \
,244,80,209,229,73,33,68,51,93,2,33,34,34,82,25,87,60,137,42,24,41,229,63,0,44,4,80,201,176,61,50,50,18,255,252,231,63,85,223,86,235,225,225,1,127,127,127,116,236,216,17 \
,93,186,116,129,155,219,125,71,129,86,88,143,62,250,40,130,131,131,241,230,155,111,34,63,63,95,239,112,236,218,184,113,227,52,219,118,29,22,22,166,201,60,198,60,60,60,80,167,78,29,195 \
,166,63,117,9,132,136,136,200,6,152,120,18,85,16,82,74,103,0,63,3,24,100,216,158,158,158,142,215,95,127,29,75,150,44,81,109,174,42,85,170,160,123,247,238,232,214,173,27,30,125,244 \
,209,18,207,113,36,192,215,215,23,253,251,247,71,100,100,164,222,161,216,45,103,103,103,140,29,59,86,147,185,210,210,210,116,251,119,225,235,235,107,124,62,233,113,93,2,33,34,34,178,1,38 \
,158,68,21,128,148,178,62,128,68,0,245,12,219,19,19,19,17,20,20,132,147,39,79,90,61,135,16,2,173,90,181,66,223,190,125,209,173,91,55,84,170,84,169,236,78,4,0,232,212,169,19 \
,19,207,82,12,24,48,192,120,37,208,102,214,172,89,163,219,113,65,141,27,55,54,110,218,175,71,28,68,68,68,182,192,196,147,168,156,147,82,142,5,16,14,160,248,12,146,156,156,28,204,154 \
,53,11,159,126,250,169,213,91,60,31,124,240,65,244,238,221,27,125,251,246,53,124,55,77,55,82,74,100,100,100,32,51,51,179,248,175,172,172,44,100,100,100,32,59,59,251,158,103,179,179,179 \
,239,57,167,209,221,221,189,120,117,214,211,211,19,64,225,106,155,155,155,27,60,60,60,224,238,238,14,55,55,55,84,169,82,5,238,238,247,156,58,99,21,61,170,167,58,18,173,138,10,229,229 \
,229,97,237,218,181,154,204,101,74,163,70,141,140,155,246,233,17,7,17,17,145,45,48,241,36,42,199,164,148,11,1,188,100,216,118,238,220,57,140,25,51,6,137,137,137,86,141,237,227,227,131 \
,225,195,135,163,103,207,158,154,110,165,77,79,79,199,185,115,231,112,229,202,21,164,165,165,33,45,45,13,127,255,253,55,254,254,251,111,92,187,118,13,55,110,220,208,44,22,79,79,79,184,187 \
,187,227,129,7,30,128,151,151,23,170,85,171,6,47,47,175,123,174,13,255,50,62,127,84,74,137,93,187,118,97,197,138,21,154,197,236,104,154,54,109,138,142,29,59,106,50,87,100,100,164,174 \
,231,172,154,88,241,252,75,143,56,136,136,136,108,129,137,39,81,57,116,247,125,206,173,0,122,27,182,111,221,186,21,1,1,1,184,122,245,170,226,177,31,121,228,17,140,28,57,18,237,219,183 \
,55,126,31,77,85,185,185,185,56,123,246,108,241,95,167,79,159,198,217,179,103,113,237,218,53,155,205,105,169,244,244,116,164,167,167,155,253,207,211,56,73,61,125,250,52,174,92,185,98,227,40 \
,29,91,80,80,144,77,255,156,25,210,171,168,80,145,134,13,27,26,94,222,17,66,240,176,87,34,34,42,55,152,120,18,149,51,82,74,79,0,123,1,52,55,104,195,39,159,124,130,119,222,121 \
,71,241,214,218,54,109,218,96,236,216,177,104,209,162,133,74,145,222,43,39,39,7,199,143,31,199,31,127,252,129,63,254,248,3,39,78,156,208,237,93,59,91,201,202,202,66,86,86,22,46,94 \
,188,168,119,40,14,193,195,195,3,67,134,12,209,100,174,35,71,142,32,57,57,89,147,185,74,82,187,118,109,195,203,116,189,226,32,34,34,178,5,38,158,68,229,136,148,178,41,10,147,206,106 \
,69,109,153,153,153,8,12,12,196,79,63,253,164,104,204,6,13,26,224,217,103,159,69,187,118,255,199,222,125,135,71,85,229,255,3,127,159,244,4,18,82,9,16,32,212,208,123,91,16,144,38 \
,136,244,222,17,27,93,191,238,174,174,171,174,101,215,117,215,182,186,186,69,116,109,64,16,27,8,210,139,52,1,81,144,22,18,67,128,36,36,132,0,129,52,66,218,100,114,127,127,192,204,111 \
,50,245,222,153,123,39,51,225,253,122,30,30,239,61,115,26,98,36,159,156,115,62,167,167,74,179,252,255,50,50,50,112,228,200,17,36,37,37,225,220,185,115,53,206,91,18,77,153,50,197,120 \
,214,86,107,43,87,174,116,203,56,246,68,68,68,152,190,50,240,36,34,162,58,133,129,39,81,29,33,73,82,71,220,14,58,141,89,111,174,92,185,130,241,227,199,227,232,209,163,138,251,171,95 \
,191,62,102,206,156,137,251,239,191,95,213,51,156,217,217,217,56,124,248,48,126,248,225,7,228,228,228,168,214,47,213,61,51,103,206,116,203,56,5,5,5,216,178,101,139,91,198,178,39,58,58 \
,218,244,213,125,135,149,137,136,136,220,128,129,39,81,29,32,73,82,31,0,7,1,24,239,48,73,78,78,198,216,177,99,145,153,153,169,168,47,95,95,95,140,29,59,22,211,167,79,71,72,72 \
,136,42,243,187,122,245,42,118,239,222,141,67,135,14,113,155,41,201,50,96,192,0,180,109,219,214,45,99,125,241,197,23,168,168,168,112,203,88,182,8,33,204,87,60,61,231,48,51,17,17,145 \
,10,24,120,18,121,57,73,146,134,2,216,9,147,175,231,125,251,246,97,226,196,137,40,42,42,82,212,87,243,230,205,241,248,227,143,163,77,155,54,170,204,45,53,53,21,155,54,109,194,79,63 \
,253,228,242,181,45,116,119,153,51,103,142,91,198,209,235,245,88,187,118,173,91,198,178,39,52,52,20,126,126,53,254,74,190,81,91,115,33,34,34,210,2,3,79,34,47,38,73,210,40,0,91 \
,0,24,247,194,110,223,190,29,147,39,79,70,89,153,252,132,152,66,8,76,154,52,9,179,102,205,50,255,230,87,177,242,242,114,236,221,187,23,91,183,110,197,165,75,151,92,234,139,238,78,141 \
,27,55,198,240,225,195,221,50,214,174,93,187,60,98,21,190,170,170,10,213,213,213,240,241,241,49,20,69,214,230,124,136,136,136,212,198,192,147,200,75,73,146,212,11,192,102,152,4,157,155,55 \
,111,198,180,105,211,80,94,94,46,187,159,240,240,112,60,241,196,19,232,209,163,135,75,243,41,41,41,193,166,77,155,176,121,243,102,148,150,150,186,212,23,221,221,102,205,154,229,182,187,97,107 \
,251,10,21,131,210,210,82,100,102,102,154,222,229,169,206,182,3,34,34,34,15,193,192,147,200,11,73,146,148,0,224,16,76,190,134,191,252,242,75,204,155,55,15,58,157,78,118,63,109,219,182 \
,197,31,255,248,71,68,70,58,191,184,82,94,94,142,141,27,55,226,187,239,190,99,192,73,46,243,247,247,199,180,105,211,220,50,86,90,90,26,142,29,59,230,150,177,228,72,73,73,49,13,60 \
,99,107,115,46,68,68,68,106,99,224,73,228,101,36,73,138,3,112,28,64,160,161,108,195,134,13,152,59,119,174,162,235,72,134,12,25,130,165,75,151,194,223,223,223,217,121,96,207,158,61,88 \
,179,102,13,10,10,10,156,234,131,200,220,232,209,163,205,179,187,106,102,229,202,149,144,36,201,45,99,201,145,146,146,130,177,99,199,26,94,3,37,73,138,20,66,48,201,16,17,17,213,9,12 \
,60,137,188,136,36,73,225,0,146,1,212,51,148,237,216,177,3,51,102,204,80,20,116,78,157,58,213,165,228,45,105,105,105,248,224,131,15,144,158,158,238,116,31,68,214,204,157,59,215,45,227 \
,20,21,21,97,211,166,77,110,25,75,174,148,148,20,243,162,222,184,157,56,140,136,136,200,235,49,240,36,242,18,146,36,249,0,56,10,160,129,161,236,200,145,35,152,58,117,42,42,43,43,101 \
,245,33,132,192,130,5,11,48,126,252,120,167,230,80,90,90,138,196,196,68,108,223,190,221,163,86,138,168,110,232,208,161,131,203,103,141,229,250,250,235,175,21,37,224,114,135,95,127,253,213,188 \
,104,8,24,120,18,17,81,29,193,192,147,200,123,124,7,147,132,35,167,79,159,198,232,209,163,81,82,82,34,187,131,71,30,121,4,99,198,140,113,106,240,19,39,78,224,223,255,254,55,242,243 \
,185,243,143,180,49,111,222,60,183,140,83,93,93,141,53,107,214,184,101,44,37,82,82,82,32,73,18,132,16,134,162,222,181,57,31,34,34,34,53,49,240,36,242,2,146,36,189,0,192,24,49 \
,94,189,122,21,99,199,142,69,97,97,161,236,62,230,206,157,235,84,208,89,89,89,137,47,191,252,18,223,126,251,45,87,57,73,51,97,97,97,166,231,27,53,181,103,207,30,143,188,234,167,164 \
,164,4,217,217,217,104,222,188,185,161,136,153,109,137,136,168,206,96,224,73,228,225,36,73,26,7,224,207,134,247,138,138,10,76,154,52,9,217,217,217,178,251,24,51,102,12,166,76,153,162,120 \
,236,172,172,44,188,241,198,27,200,201,201,81,220,150,72,137,105,211,166,33,56,56,216,45,99,173,94,189,218,45,227,56,35,57,57,217,52,240,108,92,155,115,33,34,34,82,147,143,227,42,68 \
,84,91,36,73,138,4,240,21,0,227,222,187,101,203,150,225,199,31,127,148,221,71,183,110,221,240,208,67,15,41,30,123,255,254,253,120,230,153,103,24,116,146,230,132,16,152,49,99,134,91,198 \
,186,112,225,130,162,175,31,119,51,75,48,20,36,73,82,3,91,117,137,136,136,188,9,87,60,137,60,219,15,0,130,12,47,111,189,245,22,62,254,248,99,217,141,27,53,106,132,167,159,126,26 \
,190,190,190,178,219,232,245,122,252,239,127,255,195,142,29,59,20,77,148,200,89,131,7,15,70,203,150,45,221,50,214,170,85,171,60,122,203,184,149,204,182,61,1,236,173,133,169,16,17,17,169 \
,138,129,39,145,135,146,36,233,45,0,29,13,239,7,15,30,196,179,207,62,43,187,189,191,191,63,158,122,234,41,212,171,87,207,113,229,59,74,74,74,240,198,27,111,32,41,41,73,209,92,137 \
,92,225,174,43,84,74,74,74,240,221,119,223,185,101,44,103,89,201,108,59,20,12,60,137,136,168,14,224,86,91,34,15,36,73,210,0,0,191,51,188,23,20,20,96,206,156,57,138,238,234,92 \
,176,96,1,90,183,110,45,187,126,110,110,46,158,121,230,25,6,157,228,86,113,113,113,24,52,104,144,91,198,250,250,235,175,21,101,129,150,171,87,175,94,8,8,8,80,165,47,27,119,121,18 \
,17,17,121,61,6,158,68,30,70,146,36,63,0,155,97,114,174,243,209,71,31,69,86,86,150,236,62,6,12,24,128,7,30,120,64,118,253,11,23,46,224,217,103,159,197,229,203,151,149,76,149 \
,200,101,115,231,206,85,180,21,220,89,146,36,97,237,218,181,154,244,253,236,179,207,162,75,151,46,170,244,85,84,84,100,158,113,183,157,42,29,19,17,17,213,50,6,158,68,158,231,67,0,17 \
,134,151,247,223,127,31,235,215,175,151,221,184,81,163,70,88,182,108,153,236,250,73,73,73,120,241,197,23,81,84,84,164,104,146,68,174,10,10,10,194,212,169,83,221,50,214,254,253,251,145,145 \
,145,161,122,191,45,91,182,196,196,137,19,209,175,95,63,213,250,52,219,110,219,72,181,142,137,136,136,106,17,207,120,18,121,16,73,146,186,0,88,96,120,191,112,225,2,158,122,234,41,217,237 \
,13,231,58,67,66,66,100,213,255,249,231,159,241,214,91,111,65,167,211,41,157,170,215,11,8,8,64,68,68,4,234,213,171,103,252,85,191,126,253,26,255,52,172,196,5,4,4,216,221,74,89 \
,90,90,138,234,234,106,72,146,132,91,183,110,1,0,170,170,170,80,81,81,129,138,138,10,232,116,58,148,149,149,65,175,215,227,214,173,91,168,174,174,70,105,105,41,116,58,157,177,78,85,85 \
,21,110,221,186,229,209,137,111,212,54,102,204,24,132,135,135,187,101,172,85,171,86,105,210,239,239,126,247,59,248,250,250,162,79,159,62,170,245,153,146,146,130,251,238,187,207,240,26,34,73,82 \
,125,33,132,250,123,132,137,136,136,220,136,129,39,145,135,144,36,73,192,108,139,237,146,37,75,80,90,90,42,187,143,153,51,103,202,62,215,121,252,248,241,58,31,116,6,4,4,160,105,211,166 \
,104,218,180,41,154,55,111,142,38,77,154,32,38,38,6,209,209,209,110,11,120,148,50,4,175,122,189,30,37,37,37,40,46,46,198,205,155,55,113,243,230,77,20,21,21,161,176,176,16,87,174 \
,92,193,229,203,151,113,245,234,85,69,231,126,61,205,156,57,115,220,50,78,102,102,38,14,29,58,164,122,191,145,145,145,88,176,96,1,0,160,111,223,190,170,245,107,229,156,103,55,0,234,255 \
,6,136,136,136,220,136,129,39,145,231,120,9,128,241,230,248,149,43,87,98,215,174,93,178,27,183,107,215,14,19,39,78,148,85,247,216,177,99,120,253,245,215,189,58,104,49,39,132,64,179,102 \
,205,208,174,93,59,36,36,36,160,109,219,182,104,214,172,25,124,124,188,235,68,129,16,2,245,235,215,7,0,52,104,208,0,113,113,113,54,235,234,245,122,92,187,118,13,185,185,185,200,201,201 \
,193,197,139,23,145,145,145,129,172,172,44,143,255,179,237,214,173,155,106,231,34,29,89,189,122,53,170,171,171,85,239,119,241,226,197,198,63,171,246,237,219,35,44,44,12,197,197,197,46,247,107 \
,37,240,28,14,6,158,68,68,228,229,132,227,42,68,164,53,73,146,66,1,92,7,16,0,0,121,121,121,232,208,161,3,110,220,184,33,171,125,96,96,32,222,126,251,109,52,105,210,196,97,221 \
,51,103,206,224,47,127,249,75,157,88,233,12,11,11,67,143,30,61,208,189,123,119,116,239,222,221,99,87,49,221,77,175,215,35,59,59,27,25,25,25,72,79,79,71,122,122,58,46,92,184,128 \
,138,138,138,218,158,154,209,155,111,190,41,251,7,37,174,184,117,235,22,6,13,26,132,155,55,111,170,218,111,96,96,32,50,50,50,208,184,113,99,99,217,240,225,195,177,103,207,30,151,251,142 \
,140,140,52,255,218,223,44,132,24,231,114,199,68,68,68,181,136,43,158,68,158,225,19,220,9,58,1,224,247,191,255,189,236,160,19,0,230,207,159,47,43,232,204,204,204,196,107,175,189,230,213 \
,65,103,253,250,245,209,167,79,31,12,24,48,0,61,122,244,112,75,70,84,111,227,235,235,139,22,45,90,160,69,139,22,24,58,116,40,0,160,186,186,26,57,57,57,184,112,225,2,126,253,245 \
,87,164,129,7,29,17,0,0,32,0,73,68,65,84,166,166,34,59,59,187,86,206,148,70,68,68,96,244,232,209,110,25,107,253,250,245,170,7,157,0,48,123,246,236,26,65,39,112,123,187,173 \
,26,129,103,126,126,62,174,92,185,130,70,141,140,121,133,218,187,220,41,17,17,81,45,99,224,73,84,203,36,73,106,1,96,138,225,253,216,177,99,72,76,76,148,221,190,75,151,46,178,190,137 \
,207,205,205,197,203,47,191,108,76,126,227,77,132,16,232,209,163,7,70,141,26,133,222,189,123,123,221,246,89,79,224,227,227,131,102,205,154,161,89,179,102,24,50,100,8,0,224,230,205,155,248 \
,245,215,95,145,156,156,140,51,103,206,32,51,51,83,147,45,169,230,166,79,159,142,192,192,64,205,199,145,36,73,209,215,146,18,191,253,237,111,45,202,212,62,231,105,18,120,54,182,87,151,136 \
,136,200,27,48,240,36,170,125,95,192,100,219,251,83,79,61,37,123,21,42,48,48,16,203,151,47,135,16,246,119,205,151,148,148,224,149,87,94,241,186,43,83,66,66,66,48,106,212,40,140,26 \
,53,10,177,177,177,181,61,157,58,39,52,52,20,125,251,246,53,6,76,165,165,165,72,73,73,65,114,114,50,146,147,147,145,158,158,14,189,94,175,234,152,62,62,62,152,57,115,166,170,125,218 \
,114,232,208,33,164,167,167,171,222,239,224,193,131,173,158,79,85,59,240,28,54,108,152,225,181,158,36,73,33,66,8,249,153,198,136,136,136,60,12,3,79,162,90,36,73,82,127,0,198,11,0 \
,55,110,220,136,253,251,247,203,110,63,109,218,52,52,108,216,208,110,29,189,94,143,55,223,124,19,185,185,185,78,207,211,221,194,194,194,48,110,220,56,60,240,192,3,178,175,134,33,215,133,132 \
,132,160,119,239,222,232,221,187,55,0,160,172,172,172,198,138,232,249,243,231,93,94,17,29,58,116,40,154,54,109,170,198,116,29,210,234,10,21,91,247,228,198,197,197,161,73,147,38,184,124,249 \
,178,203,99,88,73,48,212,5,192,79,46,119,76,68,68,84,75,24,120,18,213,174,247,13,15,58,157,14,127,252,227,31,101,55,140,139,139,195,132,9,19,28,214,251,224,131,15,112,250,244,105 \
,231,102,231,102,145,145,145,152,48,97,2,70,142,28,137,160,160,160,218,158,206,93,47,56,56,24,61,123,246,68,207,158,61,1,220,94,57,79,74,74,194,169,83,167,112,236,216,49,69,231,144 \
,13,230,206,157,171,246,52,173,202,201,201,193,129,3,7,84,239,183,73,147,38,152,52,105,146,105,81,17,128,6,134,151,190,125,251,98,195,134,13,46,143,99,37,240,28,10,6,158,68,68,228 \
,197,120,80,138,168,150,72,146,212,17,183,239,231,3,112,123,117,38,53,53,85,118,251,133,11,23,194,207,207,254,207,142,118,237,218,165,232,74,150,218,18,21,21,133,197,139,23,99,197,138,21 \
,24,63,126,60,131,78,15,85,191,126,125,244,239,223,31,139,23,47,70,171,86,173,20,183,143,143,143,199,128,1,3,52,152,153,165,85,171,86,169,190,77,24,0,30,123,236,49,248,251,251,155 \
,22,253,29,128,241,238,26,181,182,219,90,9,60,251,89,171,71,68,68,228,45,184,226,73,84,123,62,48,60,84,87,87,227,31,255,248,135,236,134,131,7,15,70,215,174,93,237,214,201,202,202 \
,194,199,31,127,236,252,236,220,32,40,40,8,15,60,240,0,166,78,157,138,224,224,224,218,158,14,201,148,151,151,135,95,126,249,69,113,187,121,243,230,185,37,49,84,89,89,25,214,173,91,167 \
,122,191,254,254,254,120,236,177,199,76,139,42,1,252,19,192,34,0,45,1,245,2,207,188,188,60,228,229,229,33,38,38,198,80,196,204,182,68,68,228,213,24,120,18,213,2,73,146,154,0,184 \
,199,240,190,126,253,122,252,250,235,175,178,218,6,5,5,97,193,130,5,118,235,148,151,151,227,205,55,223,244,168,123,27,77,9,33,48,100,200,16,204,155,55,15,17,17,17,181,61,29,82,104 \
,203,150,45,138,207,122,6,7,7,187,229,222,78,224,246,89,105,45,18,105,77,158,60,25,113,113,113,166,69,223,9,33,42,36,73,58,14,147,192,211,199,199,71,149,236,192,41,41,41,184,247 \
,222,123,13,175,113,246,234,18,17,17,121,58,110,181,37,170,29,31,192,36,147,237,235,175,191,46,187,225,184,113,227,28,6,107,159,124,242,9,46,93,186,228,244,228,180,212,173,91,55,188,253 \
,246,219,120,226,137,39,24,116,122,161,202,202,74,124,255,253,247,138,219,77,152,48,1,13,26,52,112,92,81,5,107,214,172,209,164,223,165,75,151,154,23,61,125,231,159,219,12,5,161,161,161 \
,104,215,174,157,42,227,153,109,183,13,149,36,137,123,208,137,136,200,107,113,197,147,200,205,36,73,10,0,48,202,240,190,107,215,46,28,59,118,76,86,219,250,245,235,99,252,248,241,118,235,164 \
,164,164,96,247,238,221,46,205,81,11,49,49,49,88,180,104,17,122,245,234,85,219,83,33,23,236,223,191,31,37,37,37,138,219,185,235,10,149,35,71,142,40,58,43,45,87,167,78,157,48,104 \
,208,32,211,162,20,33,68,230,157,231,77,166,31,244,237,219,87,246,14,6,123,172,244,209,9,128,242,61,206,68,68,68,30,128,43,158,68,238,183,28,128,49,59,201,123,239,189,39,187,225,148 \
,41,83,80,191,126,125,155,159,87,85,85,97,197,138,21,178,239,1,117,7,33,4,70,142,28,137,119,223,125,151,65,103,29,176,125,251,118,197,109,122,247,238,141,78,157,58,105,48,27,75,171 \
,87,175,214,164,95,43,247,229,190,108,120,16,66,92,3,80,102,120,87,235,156,103,114,114,178,121,209,80,85,58,38,34,34,170,5,92,241,36,114,191,39,13,15,151,46,93,194,182,109,219,236 \
,213,53,138,140,140,196,3,15,60,96,183,206,186,117,235,144,157,157,237,218,236,84,212,188,121,115,44,91,182,12,9,9,9,181,61,21,82,65,114,114,50,210,211,211,21,183,155,51,103,142,6 \
,179,177,116,249,242,101,167,182,1,59,18,26,26,106,254,123,40,6,240,141,89,181,11,0,58,3,234,5,158,86,86,60,153,217,150,136,136,188,22,3,79,34,55,146,36,169,29,128,102,134,247 \
,79,62,249,68,246,149,15,211,166,77,67,64,64,128,205,207,243,243,243,177,126,253,122,151,231,168,6,95,95,95,76,152,48,1,179,102,205,114,120,229,11,121,15,185,63,36,49,21,19,19,131 \
,81,163,70,57,174,168,130,196,196,68,77,174,80,121,232,161,135,16,26,26,106,90,244,145,16,194,124,91,193,143,184,19,120,118,235,214,13,193,193,193,40,43,43,131,43,114,115,115,145,159,159 \
,143,200,200,72,67,81,71,151,58,36,34,34,170,69,220,106,75,228,94,198,44,66,213,213,213,248,228,147,79,100,53,106,208,160,1,134,15,31,110,183,206,151,95,126,137,202,202,74,215,102,167 \
,130,230,205,155,227,157,119,222,193,188,121,243,24,116,214,33,249,249,249,56,114,228,136,226,118,51,102,204,48,191,247,82,19,229,229,229,248,250,235,175,85,239,87,8,129,37,75,150,152,22,85 \
,3,248,179,149,170,27,12,15,254,254,254,232,214,173,155,149,42,202,153,173,122,54,85,165,83,34,34,162,90,192,192,147,200,77,36,73,18,0,70,26,222,119,238,220,137,139,23,47,202,106,59 \
,122,244,104,187,223,188,231,230,230,106,178,197,80,169,161,67,135,226,141,55,222,64,179,102,205,28,87,38,175,178,99,199,14,197,171,137,190,190,190,152,49,99,134,70,51,170,105,211,166,77,40 \
,44,44,84,189,223,17,35,70,160,125,251,26,87,104,30,16,66,20,91,169,186,15,128,113,21,84,173,237,182,86,50,219,218,222,246,64,68,68,228,193,184,28,65,228,62,131,0,4,27,94,86 \
,173,90,37,171,145,191,191,63,238,191,255,126,187,117,62,255,252,115,77,182,24,202,21,28,28,140,37,75,150,152,103,253,164,58,162,170,170,10,59,119,238,84,220,238,190,251,238,67,163,70,141 \
,52,152,145,165,207,63,255,92,147,126,173,92,161,242,7,107,245,132,16,165,146,36,21,2,136,0,128,62,125,250,168,50,190,89,224,41,0,180,7,112,90,149,206,137,136,136,220,136,129,39,145 \
,251,252,206,240,80,81,81,129,45,91,182,200,106,52,100,200,16,187,247,31,94,187,118,13,63,254,248,163,235,179,115,82,235,214,173,241,251,223,255,30,141,27,55,174,181,57,144,182,14,31,62 \
,236,212,106,226,220,185,115,53,152,141,165,99,199,142,225,204,153,51,170,247,219,188,121,115,140,27,55,206,180,232,146,16,226,168,157,38,169,0,250,3,154,173,120,2,192,189,96,224,73,68,68 \
,94,136,91,109,137,220,103,152,225,97,215,174,93,40,46,182,182,91,175,38,33,4,198,142,29,107,183,206,150,45,91,106,109,181,115,204,152,49,120,237,181,215,24,116,214,113,91,183,110,85,220 \
,166,117,235,214,170,5,95,142,200,221,61,160,212,226,197,139,225,235,235,107,90,244,134,131,38,7,12,15,109,219,182,69,84,84,148,203,115,176,18,120,222,227,114,167,68,68,68,181,128,129,39 \
,145,27,72,146,212,3,128,49,45,230,183,223,126,43,171,93,187,118,237,208,188,121,115,155,159,151,149,149,97,247,238,221,46,207,79,41,63,63,63,44,95,190,28,143,62,250,40,19,8,213,113 \
,233,233,233,56,123,246,172,226,118,243,230,205,51,191,247,82,19,215,174,93,195,174,93,187,84,239,55,32,32,0,15,63,252,176,105,81,5,128,21,14,154,25,211,74,11,33,84,185,183,246,210 \
,165,75,40,42,42,50,45,98,102,91,34,34,242,74,12,60,137,220,227,255,12,15,85,85,85,248,238,187,239,100,53,26,60,120,176,221,207,119,239,222,141,210,210,82,215,102,166,80,104,104,40 \
,94,122,233,37,135,89,118,169,110,216,188,121,179,226,54,245,234,213,195,132,9,19,52,152,141,165,53,107,214,160,170,170,74,245,126,167,77,155,134,216,216,88,211,162,245,66,8,157,131,102,199 \
,113,59,235,45,0,205,238,243,100,230,46,34,34,242,74,12,60,137,220,99,168,225,225,208,161,67,184,126,253,186,195,6,190,190,190,184,231,30,251,187,234,246,236,217,227,250,204,20,136,141,141 \
,197,235,175,191,142,206,157,59,187,117,92,170,29,197,197,197,56,120,240,160,226,118,147,39,79,70,253,250,245,53,152,81,77,149,149,149,248,234,171,175,52,233,123,217,178,101,166,175,18,128,167 \
,29,181,17,66,84,1,184,106,120,215,232,156,103,3,73,146,184,205,128,136,136,188,14,3,79,34,141,221,185,254,192,120,255,158,220,96,177,87,175,94,8,11,11,179,249,121,122,122,58,50,51 \
,51,93,157,158,108,241,241,241,248,219,223,254,198,243,156,119,145,93,187,118,65,167,115,180,200,103,105,230,204,153,26,204,198,210,150,45,91,100,253,16,71,169,30,61,122,160,127,255,254,166,69 \
,167,133,16,57,50,155,159,50,60,244,235,215,79,149,249,152,173,120,10,0,9,170,116,76,68,68,228,70,12,60,137,180,55,2,38,95,107,251,246,237,147,213,200,209,54,219,189,123,247,186,50 \
,39,69,58,119,238,140,191,253,237,111,136,140,140,116,219,152,84,187,170,171,171,177,99,199,14,197,237,250,247,239,143,132,4,247,196,69,137,137,137,154,244,251,248,227,143,155,23,253,73,65,115 \
,227,129,211,134,13,27,34,62,62,222,229,249,216,200,108,75,68,68,228,85,24,120,18,105,207,120,167,68,121,121,57,126,254,249,103,135,13,252,253,253,237,38,38,209,235,245,248,225,135,31,212 \
,153,157,3,29,59,118,196,243,207,63,143,144,144,16,183,140,71,158,225,231,159,127,70,94,94,158,226,118,238,186,66,229,228,201,147,56,125,90,253,91,69,34,34,34,48,99,198,12,211,162,2 \
,33,132,146,131,174,27,76,95,212,216,110,107,37,240,28,224,114,167,68,68,68,110,198,192,147,72,123,131,12,15,135,14,29,66,121,121,185,195,6,237,219,183,71,80,80,144,205,207,83,83,83 \
,205,51,93,106,162,83,167,78,120,225,133,23,236,206,133,234,38,103,174,80,105,216,176,33,134,13,27,230,184,162,10,180,186,66,229,145,71,30,49,255,33,139,163,76,182,53,8,33,210,1,84 \
,26,222,251,244,233,227,242,156,46,94,188,136,155,55,111,154,22,117,114,185,83,34,34,34,55,99,224,73,164,161,59,73,64,154,24,222,229,110,179,237,222,189,187,221,207,143,30,181,119,135,189 \
,58,218,183,111,207,160,243,46,149,157,157,141,51,103,206,40,110,55,103,206,28,183,92,175,147,151,151,135,237,219,183,171,222,175,143,143,15,22,47,94,108,90,164,7,240,170,19,93,101,25,30 \
,212,88,241,148,36,9,169,169,169,166,69,174,239,223,37,34,34,114,51,6,158,68,218,234,8,147,175,179,35,71,142,200,106,84,219,129,103,179,102,205,240,252,243,207,35,48,48,80,211,113,200 \
,51,109,221,186,21,146,36,41,106,227,239,239,143,105,211,166,105,52,163,154,190,248,226,11,167,146,30,57,114,255,253,247,163,117,235,214,166,69,123,132,16,183,156,232,234,23,195,67,239,222,189 \
,85,9,198,205,182,219,134,75,146,228,235,114,167,68,68,68,110,196,192,147,72,91,247,155,190,200,57,147,22,22,22,134,150,45,91,218,252,60,55,55,23,151,47,95,118,125,102,54,68,69,69 \
,225,133,23,94,112,203,117,24,228,121,74,75,75,101,175,204,155,186,255,254,251,17,19,19,163,254,132,204,84,85,85,225,203,47,191,212,164,111,179,43,84,0,25,87,168,216,96,188,168,183,94 \
,189,122,232,208,161,131,211,115,50,48,203,108,235,3,160,181,141,170,68,68,68,30,137,129,39,145,182,140,231,59,115,115,115,113,237,218,53,135,13,58,119,238,12,33,132,205,207,181,72,168,98 \
,224,239,239,143,103,158,121,198,45,1,4,121,166,61,123,246,200,58,135,108,206,93,73,133,182,111,223,142,171,87,175,58,174,168,80,171,86,173,112,255,253,53,126,78,148,33,132,56,101,171,190 \
,3,53,246,1,171,113,173,138,149,4,67,246,211,94,19,17,17,121,24,6,158,68,218,234,104,120,56,117,74,222,247,176,173,90,181,178,251,121,114,114,178,107,51,178,99,209,162,69,104,219,182 \
,173,102,253,147,103,147,36,201,169,179,147,237,219,183,71,207,158,61,53,152,145,37,173,146,10,45,89,178,4,62,62,53,254,74,124,221,217,190,132,16,249,0,74,12,239,106,36,24,178,18,120 \
,222,227,114,167,68,68,68,110,196,192,147,72,91,113,134,7,185,129,167,189,109,182,128,197,150,59,213,140,30,61,26,195,135,15,215,164,111,242,14,39,79,158,68,78,78,142,226,118,243,230,205 \
,211,96,54,150,146,147,147,113,226,196,9,213,251,13,14,14,198,67,15,61,100,90,84,6,224,35,23,187,61,111,120,80,35,193,80,70,70,6,74,75,75,77,139,186,184,220,41,17,17,145,27 \
,49,240,36,210,136,36,73,225,0,140,217,121,146,146,146,100,181,179,183,226,121,245,234,85,92,191,126,221,229,185,153,107,214,172,25,22,44,88,160,122,191,228,93,182,108,217,162,184,77,88,88 \
,24,198,141,27,167,193,108,44,173,92,185,82,147,126,103,206,156,137,168,168,40,211,162,47,133,16,122,23,187,61,108,120,232,220,185,179,203,247,224,86,87,87,155,103,182,109,225,82,135,68,68 \
,68,110,198,192,147,72,59,53,146,127,156,63,127,222,86,61,163,240,240,112,132,135,135,219,252,252,236,217,179,174,207,202,140,175,175,47,158,120,226,9,4,4,4,168,222,55,121,143,107,215,174 \
,57,181,154,56,101,202,20,4,7,7,107,48,163,154,242,243,243,157,186,91,84,142,165,75,151,154,190,74,0,158,85,161,219,111,13,15,126,126,126,170,108,69,54,219,237,16,33,73,18,255,14 \
,39,34,34,175,193,191,180,136,180,211,195,244,37,43,43,203,86,61,163,22,45,90,216,253,60,35,35,195,165,9,89,51,99,198,12,180,105,211,70,245,126,201,187,108,221,186,21,213,213,213,138 \
,218,8,33,48,107,214,44,141,102,84,211,23,95,124,129,138,138,10,213,251,253,205,111,126,131,222,189,123,155,22,253,34,132,184,162,66,215,7,113,59,136,5,160,206,118,91,43,153,109,121,159 \
,39,17,17,121,13,6,158,68,218,233,108,120,168,168,168,144,149,137,51,54,54,214,238,231,106,7,158,141,26,53,194,196,137,19,85,237,147,188,79,69,69,5,190,255,254,123,197,237,6,14,28 \
,232,240,76,178,26,244,122,61,214,174,93,171,73,223,86,174,80,121,78,141,126,133,16,229,0,242,13,239,106,36,24,178,146,88,108,144,181,122,68,68,68,158,136,129,39,145,118,140,233,97,179 \
,179,179,101,173,38,69,71,71,219,253,252,226,197,139,174,207,202,196,163,143,62,10,127,127,127,85,251,36,239,179,127,255,126,148,148,148,56,174,104,198,93,87,168,236,220,185,19,87,174,168,177 \
,8,89,83,116,116,52,166,78,157,106,90,116,67,8,177,75,197,33,140,169,104,53,186,82,133,129,39,17,17,121,13,6,158,68,218,105,110,120,144,27,48,154,37,56,169,161,176,176,16,133,133 \
,133,174,207,234,142,30,61,122,160,87,175,94,170,245,71,222,107,219,182,109,138,219,196,197,197,225,222,123,239,213,96,54,150,180,186,66,229,177,199,30,67,80,80,144,105,209,191,84,30,98,175 \
,225,161,101,203,150,104,216,176,161,75,157,93,184,112,193,252,142,213,174,46,117,72,68,68,228,70,12,60,137,180,99,92,190,204,206,206,150,213,32,38,38,198,230,103,185,185,185,174,207,200,196 \
,180,105,211,84,237,143,188,83,114,114,50,50,51,51,21,183,155,51,103,14,124,125,125,213,159,144,153,180,180,52,28,59,118,76,245,126,125,125,125,177,104,209,34,211,162,42,0,111,168,60,204 \
,122,211,23,179,179,164,138,233,245,122,164,165,165,153,22,105,191,207,153,136,136,72,37,126,181,61,1,162,58,204,120,127,130,220,43,80,236,109,181,85,115,171,97,151,46,93,208,161,67,7,213 \
,250,35,215,233,245,122,148,149,149,161,186,186,26,101,101,101,0,128,202,202,74,84,86,86,194,223,223,31,129,129,129,53,234,251,249,249,213,40,171,95,191,190,83,227,58,179,218,25,16,16,128 \
,201,147,39,59,53,158,82,159,125,246,153,38,253,142,27,55,14,241,241,53,114,243,108,23,66,148,169,60,76,18,0,61,0,95,224,118,130,33,87,51,243,166,164,164,160,107,87,227,66,103,164 \
,36,73,66,8,33,217,107,67,68,68,228,9,24,120,18,105,199,24,21,20,23,23,203,106,16,22,22,102,243,51,53,3,207,73,147,38,169,214,23,89,39,73,18,242,243,243,113,245,234,85,228 \
,231,231,163,176,176,16,5,5,5,40,40,40,64,81,81,17,138,139,139,81,90,90,138,210,210,82,148,149,149,169,146,177,53,36,36,196,248,43,56,56,216,248,220,160,65,3,132,135,135,35,50 \
,50,18,225,225,225,136,138,138,66,120,120,56,170,170,170,112,228,200,17,197,227,140,29,59,214,238,182,112,181,20,21,21,97,243,230,205,154,244,109,37,169,208,211,106,143,33,132,168,150,36,41 \
,23,64,83,64,147,204,182,190,119,250,150,183,165,130,136,136,168,22,49,240,36,210,142,241,235,171,168,168,72,86,3,179,243,102,53,168,21,120,70,69,69,161,91,183,110,170,244,69,183,87,42 \
,47,94,188,136,140,140,12,100,103,103,227,202,149,43,200,205,205,197,149,43,87,80,89,89,233,214,185,24,2,89,173,205,153,51,71,243,49,0,224,171,175,190,50,174,254,170,169,109,219,182,24 \
,62,124,184,105,209,121,33,68,170,234,3,221,118,2,119,2,207,126,253,250,65,8,1,73,114,126,129,210,74,130,161,129,0,180,73,249,75,68,68,164,34,6,158,68,26,144,36,201,15,119,182 \
,215,1,242,86,60,253,253,253,225,227,99,251,216,117,94,94,158,42,115,27,50,100,136,221,113,200,190,156,156,28,156,57,115,6,231,206,157,67,70,70,6,178,178,178,80,85,85,85,219,211,114 \
,155,78,157,58,153,110,245,212,140,94,175,199,231,159,127,174,73,223,203,151,47,135,16,194,180,232,175,154,12,116,219,78,0,227,0,32,50,50,18,173,90,181,194,133,11,23,156,238,204,70,102 \
,91,6,158,68,68,228,241,24,120,18,105,163,198,158,89,57,43,158,230,103,248,204,169,149,209,214,93,153,72,235,138,188,188,60,156,62,125,26,73,73,73,72,74,74,66,126,126,190,227,70,117 \
,216,252,249,243,221,50,206,158,61,123,112,233,210,37,213,251,13,9,9,193,188,121,243,76,139,110,1,88,173,250,64,255,223,119,48,201,150,219,183,111,95,151,2,207,115,231,206,161,178,178,18 \
,1,1,1,134,162,238,174,77,143,136,136,200,61,24,120,18,105,163,70,224,41,103,197,211,81,224,41,119,187,174,61,49,49,49,104,214,172,153,203,253,212,117,215,175,95,199,79,63,253,132,67 \
,135,14,33,53,53,213,165,173,145,117,73,68,68,4,198,140,25,227,150,177,86,175,214,38,22,156,59,119,46,34,34,34,76,139,18,133,16,142,47,217,117,146,16,34,75,146,164,10,220,57,243 \
,221,183,111,95,172,93,235,252,2,165,78,167,195,185,115,231,208,169,83,39,67,17,51,219,18,17,145,87,96,224,73,164,141,0,211,23,57,137,99,76,86,48,44,232,116,58,85,206,238,241,108 \
,167,109,101,101,101,216,187,119,47,14,28,56,128,180,180,52,6,155,86,76,155,54,205,225,15,72,212,112,254,252,121,167,146,30,201,97,150,84,72,2,240,188,38,3,213,148,1,160,61,160,78 \
,130,161,148,148,20,211,192,211,118,42,108,34,34,34,15,194,192,147,200,11,168,177,218,9,48,240,180,38,47,47,15,91,182,108,193,174,93,187,220,146,152,199,91,249,248,248,96,214,172,89,110 \
,25,107,213,170,85,154,4,254,131,7,15,54,63,159,122,68,8,113,67,245,129,44,29,197,157,192,179,103,207,158,240,247,247,135,78,167,115,186,51,179,115,158,126,146,36,53,17,66,92,118,109 \
,138,68,68,68,218,98,224,73,228,33,236,37,168,81,43,32,106,219,182,173,42,253,212,5,233,233,233,88,183,110,29,142,28,57,130,234,106,205,118,90,214,25,67,134,12,65,211,166,77,53,31 \
,167,184,184,24,27,55,110,212,164,111,43,87,168,60,171,201,64,150,54,2,152,7,220,206,92,221,165,75,23,28,63,126,220,233,206,204,174,84,1,128,1,0,190,113,186,67,34,34,34,55,96 \
,224,73,228,33,236,173,128,148,151,151,187,220,127,112,112,48,26,54,108,232,114,63,222,46,47,47,15,223,124,243,13,118,239,222,205,128,83,129,185,115,231,186,101,156,117,235,214,105,178,242,220 \
,184,113,99,243,251,107,175,8,33,246,171,62,144,117,187,77,95,250,246,237,235,82,224,105,37,179,237,96,48,240,36,34,34,15,199,59,21,136,60,132,189,21,79,57,103,68,29,137,143,143,55 \
,191,66,226,174,82,90,90,138,79,62,249,4,75,150,44,193,206,157,59,25,116,42,208,188,121,115,220,115,207,61,154,143,35,73,146,75,137,119,236,89,184,112,33,252,253,253,77,139,222,213,100 \
,32,43,132,16,69,0,110,26,222,251,244,233,227,82,127,103,207,158,53,255,255,5,51,219,18,17,145,199,227,138,39,145,135,176,23,120,150,149,149,185,220,127,92,92,156,203,125,120,35,73,146 \
,240,195,15,63,224,179,207,62,67,65,65,65,109,79,199,43,205,157,59,215,45,119,191,238,223,191,31,25,25,25,170,247,235,231,231,135,199,30,123,204,180,72,7,224,29,213,7,178,47,13,64 \
,47,192,245,4,67,149,149,149,184,112,225,2,218,181,107,103,40,106,237,218,212,136,136,136,180,199,192,147,72,27,122,211,23,95,95,95,135,13,236,109,181,173,172,172,116,121,66,81,81,81,46 \
,247,225,109,114,115,115,241,223,255,254,23,103,206,156,169,237,169,120,173,224,224,96,76,158,60,217,45,99,173,90,181,74,147,126,39,78,156,104,254,131,151,205,66,8,215,183,17,40,115,0,119 \
,2,207,14,29,58,32,52,52,20,55,111,222,116,208,196,182,148,148,20,211,192,51,198,245,233,17,17,17,105,139,129,39,145,54,106,124,71,25,22,22,102,171,158,145,94,175,71,89,89,25,130 \
,131,131,45,62,83,35,195,231,221,20,120,74,146,132,93,187,118,225,211,79,63,85,229,124,172,154,98,98,98,16,23,23,135,134,13,27,34,34,34,2,145,145,145,8,15,15,71,68,68,4,194 \
,194,194,16,28,28,12,127,127,127,227,63,67,66,66,140,109,171,170,170,112,235,214,45,227,251,205,155,55,113,235,214,45,227,175,146,146,18,20,21,21,225,250,245,235,184,113,227,6,174,94,189 \
,106,124,118,246,191,161,113,227,198,161,65,131,6,46,255,190,29,201,200,200,192,193,131,7,53,233,123,249,242,229,230,69,79,107,50,144,125,223,2,248,45,112,251,7,81,189,122,245,194,190,125 \
,251,156,238,44,37,37,197,244,204,170,191,36,73,13,133,16,215,92,158,37,17,17,145,70,24,120,18,105,163,198,253,39,114,191,113,47,46,46,182,26,120,170,33,34,34,66,147,126,61,77,110 \
,110,46,254,245,175,127,89,203,252,233,54,245,235,215,71,219,182,109,145,144,144,128,132,132,4,196,199,199,163,105,211,166,104,218,180,169,91,238,193,52,167,215,235,113,253,250,117,100,103,103,35 \
,43,43,203,226,151,189,45,200,115,230,204,113,203,28,19,19,19,53,185,66,165,99,199,142,24,60,120,176,105,209,175,66,136,11,170,15,228,216,79,184,125,111,168,0,110,111,183,117,53,240,52 \
,51,0,192,6,167,59,36,34,34,210,24,3,79,34,13,8,33,42,164,219,223,69,11,64,126,224,89,84,84,132,216,216,88,139,114,53,190,33,175,87,175,158,203,125,120,186,125,251,246,225,131 \
,15,62,112,235,42,103,64,64,0,58,119,238,140,30,61,122,160,103,207,158,232,212,169,147,199,157,167,245,245,245,69,108,108,44,98,99,99,209,187,119,111,139,207,11,10,10,144,154,154,138,180 \
,180,52,164,165,165,33,53,53,21,231,206,157,67,135,14,29,208,177,99,71,205,231,119,235,214,45,172,95,191,94,147,190,31,127,252,113,243,164,90,47,107,50,144,3,66,136,74,73,146,242,0 \
,52,4,92,63,231,105,35,179,45,3,79,34,34,242,88,12,60,137,180,163,3,16,0,200,15,60,11,11,11,53,155,76,80,80,144,102,125,215,182,210,210,82,124,240,193,7,56,112,224,128,230 \
,99,249,250,250,162,123,247,238,24,52,104,16,250,247,239,143,206,157,59,35,32,32,64,243,113,181,20,17,17,129,254,253,251,163,127,255,254,198,178,234,234,106,85,146,90,201,177,126,253,122,148 \
,148,148,168,222,111,104,104,40,102,207,158,109,90,84,12,224,107,213,7,146,239,12,128,97,128,235,129,103,106,106,42,244,122,189,233,249,241,30,174,77,141,136,136,72,91,12,60,137,180,83,9 \
,133,129,103,113,113,177,213,114,57,201,137,28,169,141,45,158,238,112,254,252,121,188,245,214,91,184,122,245,170,102,99,52,104,208,0,35,70,140,192,208,161,67,209,191,127,127,89,103,118,189,157 \
,143,143,143,91,86,201,37,73,66,98,98,162,38,125,47,88,176,192,252,207,234,83,33,132,250,251,121,229,219,131,59,129,103,179,102,205,208,164,73,19,92,190,124,217,169,142,202,203,203,145,145 \
,145,129,54,109,218,24,138,218,216,171,79,68,68,84,219,24,120,18,105,167,28,64,125,64,217,86,91,107,212,88,81,51,187,195,176,78,216,185,115,39,62,250,232,35,187,25,129,157,21,28,28 \
,140,33,67,134,96,210,164,73,24,56,112,96,157,252,247,231,9,14,30,60,136,244,244,116,77,250,94,180,104,145,233,107,53,106,105,155,173,137,111,1,252,213,240,210,167,79,31,108,220,184,209 \
,233,206,82,82,82,76,3,207,134,174,77,141,136,136,72,91,12,60,137,180,83,2,32,26,0,162,163,163,101,53,184,113,227,134,213,114,53,86,43,181,72,220,82,91,116,58,29,254,247,191,255 \
,97,215,174,93,170,247,221,185,115,103,204,152,49,3,19,38,76,208,44,209,19,253,127,90,93,161,50,108,216,48,116,234,212,201,180,232,144,16,66,187,189,236,242,252,10,160,10,119,254,238,237 \
,219,183,175,203,129,231,248,241,227,13,175,1,146,36,69,11,33,174,187,60,75,34,34,34,13,48,240,36,210,206,85,0,45,128,219,219,234,228,184,118,205,250,109,8,106,172,120,234,245,122,199 \
,149,188,192,245,235,215,241,247,191,255,93,213,85,178,208,208,80,76,159,62,29,51,102,204,64,203,150,45,85,235,151,236,203,202,202,210,236,92,174,149,43,84,158,209,100,32,5,132,16,146,36 \
,73,57,0,226,129,219,43,158,174,176,146,185,185,47,128,173,46,117,74,68,68,164,17,6,158,68,218,201,2,208,15,144,31,120,94,185,114,197,106,185,26,43,158,213,213,213,46,247,81,219,50 \
,50,50,240,234,171,175,218,92,25,86,42,58,58,26,179,103,207,198,252,249,243,221,114,87,37,213,148,152,152,168,201,127,151,205,154,53,195,184,113,227,76,139,46,9,33,126,84,125,32,231,252 \
,130,59,129,103,223,190,125,225,227,227,227,244,191,3,43,153,109,239,5,3,79,34,34,242,80,12,60,137,180,147,102,120,136,141,141,69,64,64,0,42,43,43,237,54,184,118,237,26,36,73,50 \
,191,254,1,33,33,33,46,79,198,209,216,158,238,240,225,195,120,247,221,119,85,249,125,196,197,197,97,249,242,229,152,48,97,2,207,110,214,146,178,178,50,172,91,183,78,147,190,23,45,90,4 \
,63,191,26,127,189,189,165,201,64,206,217,6,96,50,112,251,236,119,219,182,109,113,246,236,89,167,58,74,73,73,65,117,117,53,124,124,124,12,69,189,212,153,34,17,17,145,250,124,28,87,33 \
,34,39,157,49,60,248,248,248,200,186,219,81,167,211,89,93,205,83,35,139,234,173,91,183,92,238,163,182,124,243,205,55,120,235,173,183,92,14,58,35,34,34,240,244,211,79,99,199,142,29,152 \
,58,117,42,131,206,90,180,97,195,6,155,89,156,93,17,16,16,128,71,31,125,212,180,168,2,192,127,85,31,200,121,155,77,95,250,245,235,231,116,71,165,165,165,200,202,202,50,45,106,235,116 \
,103,68,68,68,26,99,224,73,164,157,211,166,47,114,183,219,90,187,22,36,56,56,216,229,32,201,27,3,79,73,146,240,233,167,159,98,205,154,53,46,37,71,10,12,12,196,227,143,63,142,125 \
,251,246,97,225,194,133,117,246,106,25,111,161,229,21,42,211,166,77,67,108,108,172,105,209,122,33,132,250,105,143,157,36,132,184,2,192,120,65,170,171,231,60,147,147,147,77,95,99,109,213,35 \
,34,34,170,109,220,106,75,164,157,26,75,17,74,206,121,154,101,227,4,112,59,1,78,126,126,190,211,147,41,45,45,117,186,109,109,208,233,116,248,231,63,255,137,195,135,15,187,212,207,128,1 \
,3,240,210,75,47,161,85,171,86,42,205,76,29,146,36,161,184,184,24,197,197,197,208,233,116,198,63,31,157,78,7,127,127,127,248,249,249,25,239,209,52,172,120,215,171,87,207,124,11,169,87 \
,58,114,228,8,210,210,210,28,87,116,194,178,101,203,76,95,37,0,207,106,50,144,107,50,0,116,4,110,159,243,116,69,74,74,10,198,140,25,99,120,13,148,36,41,66,8,81,224,218,244,136 \
,136,136,212,231,253,223,193,16,121,40,33,68,137,36,73,58,0,254,0,100,7,62,102,91,231,140,194,194,194,92,10,60,109,221,17,234,137,202,203,203,241,198,27,111,224,196,137,19,78,247,209 \
,176,97,67,188,252,242,203,184,239,190,251,84,156,153,60,146,36,33,55,55,23,153,153,153,200,200,200,64,118,118,54,174,93,187,134,220,220,92,92,191,126,29,249,249,249,78,111,51,141,136,136 \
,64,84,84,20,162,162,162,208,176,97,67,68,70,70,34,58,58,26,13,27,54,68,147,38,77,16,31,31,143,70,141,26,89,156,19,246,36,90,173,118,118,239,222,29,253,251,247,55,45,58,35 \
,132,184,168,201,96,174,57,130,59,129,103,183,110,221,16,24,24,136,138,138,10,167,58,178,146,96,168,23,128,221,46,205,142,136,136,72,3,12,60,137,180,149,143,59,219,223,172,173,98,90,115 \
,241,162,245,239,147,35,35,35,145,153,153,233,244,68,212,202,4,171,181,91,183,110,225,207,127,254,51,206,157,59,231,116,31,163,71,143,198,95,254,242,23,132,135,135,171,56,51,219,174,92,185 \
,130,211,167,79,227,228,201,147,56,117,234,20,206,156,57,163,217,10,115,65,65,1,10,10,10,112,254,252,121,155,117,2,3,3,17,31,31,95,227,87,139,22,45,208,161,67,135,90,207,222,123 \
,249,242,101,124,255,253,247,154,244,109,229,10,149,63,105,50,144,235,54,0,120,24,184,253,103,213,173,91,55,252,252,243,207,78,117,100,229,74,149,161,96,224,73,68,68,30,136,129,39,145,182 \
,46,64,165,192,51,58,58,218,165,137,20,20,120,254,238,59,87,131,206,136,136,8,252,245,175,127,197,200,145,35,85,158,89,77,89,89,89,248,254,251,239,113,244,232,81,156,58,117,202,230,253 \
,171,181,165,162,162,2,105,105,105,86,183,179,198,197,197,161,99,199,142,232,208,161,3,58,116,232,128,142,29,59,162,73,147,38,110,155,219,154,53,107,52,185,83,54,60,60,28,51,103,206,52 \
,45,42,4,176,73,245,129,212,177,215,244,165,111,223,190,78,7,158,201,201,201,230,153,176,153,217,150,136,136,60,18,3,79,34,109,157,0,48,0,0,18,18,18,224,239,239,15,157,206,126,158 \
,147,194,194,66,20,21,21,89,172,76,185,26,120,122,250,138,103,73,73,9,94,126,249,101,92,184,112,193,169,246,93,186,116,193,191,254,245,47,89,217,131,149,170,174,174,70,82,82,18,118,239 \
,222,141,239,191,255,222,165,213,216,218,150,147,147,131,156,156,28,236,218,181,203,88,54,98,196,8,188,255,254,251,154,143,93,94,94,142,175,190,250,74,147,190,31,126,248,97,227,153,216,59,62 \
,16,66,56,159,145,74,67,119,182,225,23,2,8,7,92,75,48,84,82,82,130,75,151,46,153,158,33,79,112,125,134,68,68,68,234,99,224,73,164,173,253,0,150,1,183,175,121,104,211,166,141 \
,181,173,113,22,178,178,178,208,165,75,151,26,101,174,6,158,185,185,185,46,181,215,82,73,73,9,94,122,233,37,164,167,167,59,213,126,230,204,153,120,241,197,23,85,191,30,37,53,53,21,95 \
,124,241,5,118,238,220,137,188,188,60,85,251,246,36,147,38,77,114,203,56,155,54,109,66,97,97,161,234,253,10,33,176,104,209,34,211,34,61,128,87,84,31,72,93,103,1,244,3,92,187,82 \
,5,184,125,206,211,36,240,108,228,218,180,136,136,136,180,193,235,84,136,180,117,200,244,165,99,199,142,178,26,89,219,110,27,19,19,227,210,68,138,139,139,81,82,82,226,82,31,90,168,168,168 \
,192,223,254,246,55,167,130,78,127,127,127,188,241,198,27,120,229,149,87,84,11,58,43,43,43,177,109,219,54,60,248,224,131,24,55,110,28,214,172,89,83,167,131,206,184,184,56,12,31,62,220 \
,45,99,173,94,189,90,147,126,239,191,255,126,36,36,212,88,232,219,43,132,240,244,251,131,246,27,30,18,18,18,16,17,17,225,116,71,102,9,134,130,37,73,170,221,131,188,68,68,68,86,112 \
,197,147,72,67,66,136,203,166,153,109,59,117,234,132,117,235,214,57,108,103,45,137,144,26,231,240,46,95,190,108,254,13,122,173,170,170,170,194,235,175,191,46,107,21,216,92,131,6,13,240,159 \
,255,252,199,229,213,34,131,156,156,28,172,92,185,18,235,215,175,215,44,3,112,88,88,24,26,53,106,132,200,200,72,4,7,7,35,56,56,24,33,33,33,8,14,14,70,189,82,73,236,156,0 \
,0,32,0,73,68,65,84,122,245,16,18,18,2,33,68,141,196,68,183,110,221,130,36,73,40,41,41,169,241,235,230,205,155,40,46,46,70,65,65,129,75,119,156,206,155,55,15,190,190,190,106 \
,252,246,236,58,122,244,168,83,127,206,114,152,93,161,2,0,79,105,50,144,186,214,3,248,3,112,123,197,182,119,239,222,53,182,63,43,97,37,179,109,15,0,251,92,153,28,17,17,145,218,24 \
,120,18,105,239,58,128,198,192,237,171,19,228,176,150,177,212,16,172,148,149,149,89,105,33,143,39,5,158,213,213,213,248,231,63,255,233,212,149,41,113,113,113,248,244,211,79,209,178,101,75,151 \
,231,145,159,159,143,143,63,254,24,43,87,174,116,250,74,11,83,66,8,52,109,218,20,9,9,9,104,214,172,25,98,99,99,209,168,81,35,196,198,198,34,56,56,216,229,254,205,233,245,122,228 \
,231,231,227,250,245,235,200,203,203,195,141,27,55,144,155,155,139,236,236,108,228,228,228,224,230,205,155,54,219,6,7,7,99,234,212,169,170,207,201,26,173,174,80,105,217,178,37,70,143,30,109 \
,90,148,37,132,56,165,201,96,234,58,14,160,26,119,118,30,245,233,211,71,205,192,115,40,24,120,18,17,145,135,97,224,73,164,189,100,220,9,60,127,243,155,223,200,106,144,149,149,133,178,178 \
,50,139,64,165,113,227,198,78,159,131,4,110,175,234,121,138,15,63,252,16,135,14,29,114,92,209,76,211,166,77,177,122,245,106,52,109,218,212,165,241,139,138,138,240,225,135,31,98,245,234,213 \
,46,5,243,33,33,33,232,220,185,51,218,182,109,139,132,132,4,180,105,211,6,33,33,33,46,205,77,9,95,95,95,196,196,196,32,38,38,6,29,58,116,176,248,188,184,184,24,59,118,236,192 \
,231,159,127,110,241,217,148,41,83,220,114,189,202,181,107,215,176,115,231,78,77,250,94,178,100,9,124,124,106,156,26,121,77,147,129,84,38,132,208,73,146,116,13,119,206,100,246,237,219,215,233 \
,190,172,4,158,189,157,159,25,17,17,145,54,24,120,18,105,111,7,128,17,192,237,237,178,205,154,53,67,118,118,182,221,6,146,36,33,61,61,221,226,10,150,184,184,56,151,2,207,203,151,47 \
,59,221,86,77,223,125,247,29,118,236,216,161,184,93,171,86,173,176,106,213,42,196,198,198,58,61,118,85,85,21,62,254,248,99,172,88,177,194,233,51,175,49,49,49,232,209,163,7,250,244,233 \
,131,110,221,186,169,158,212,72,77,97,97,97,86,183,184,10,33,48,127,254,124,183,204,33,49,49,17,85,85,85,170,247,27,24,24,136,5,11,22,152,22,149,1,248,80,245,129,180,115,26,119 \
,2,79,87,182,140,23,22,22,226,242,229,203,166,219,241,61,99,91,3,17,17,145,9,6,158,68,218,91,15,224,77,195,75,255,254,253,29,6,158,0,112,238,220,57,139,192,51,62,62,30,63 \
,252,240,131,211,19,241,132,192,243,248,241,227,88,185,114,165,226,118,45,91,182,196,231,159,127,142,168,168,40,167,199,78,77,77,197,115,207,61,135,164,164,36,197,109,35,35,35,49,124,248,112 \
,12,24,48,0,45,90,180,112,122,14,238,118,233,210,37,156,60,121,210,162,124,240,224,193,170,108,85,118,164,178,178,82,179,43,84,102,205,154,101,158,116,235,75,33,132,250,151,132,106,103,55 \
,128,145,0,208,168,81,35,89,63,148,178,37,37,37,197,52,240,116,223,197,172,68,68,68,50,49,240,36,210,152,16,34,93,146,164,10,0,129,192,237,149,13,57,223,136,91,187,43,178,117,235 \
,214,46,205,37,39,39,7,122,189,222,45,201,100,172,201,204,204,196,91,111,189,133,234,234,106,69,237,98,99,99,241,233,167,159,58,29,116,86,84,84,224,131,15,62,192,138,21,43,28,222,163 \
,106,74,8,129,174,93,187,98,228,200,145,232,215,175,95,173,253,123,115,197,230,205,155,173,38,31,122,240,193,7,221,54,190,86,119,200,46,93,186,212,244,85,2,240,156,38,3,105,103,3,128 \
,55,12,47,125,251,246,117,41,240,28,49,98,132,225,53,68,146,164,122,94,144,217,151,136,136,238,34,12,60,137,220,35,19,64,59,64,254,57,79,107,129,103,155,54,109,32,132,112,58,139,169 \
,78,167,67,118,118,118,173,172,216,149,148,148,224,239,127,255,187,226,243,148,17,17,17,88,185,114,37,226,226,226,156,26,247,244,233,211,120,234,169,167,144,145,145,33,187,77,80,80,16,70,143 \
,30,141,7,30,120,192,229,251,83,107,83,73,73,9,246,239,223,111,81,222,170,85,43,12,28,56,208,45,115,208,42,169,80,191,126,253,208,167,79,31,211,162,227,66,8,207,189,172,214,10,33 \
,196,57,73,146,42,1,4,0,183,3,79,57,89,175,173,177,178,157,186,27,128,195,46,77,144,136,136,72,69,188,199,147,200,61,142,24,30,122,245,234,133,192,192,64,135,13,242,242,242,80,80 \
,80,80,163,172,126,253,250,104,216,176,161,75,19,185,112,225,130,75,237,157,33,73,18,254,253,239,127,227,218,181,107,138,218,249,249,249,225,223,255,254,183,211,43,189,27,55,110,196,156,57,115 \
,100,7,157,129,129,129,24,59,118,44,222,127,255,125,204,159,63,223,171,131,78,0,216,185,115,39,202,203,203,45,202,23,44,88,0,33,132,230,227,159,56,113,194,169,109,205,114,88,185,66,197 \
,219,86,59,13,140,75,156,42,39,24,26,234,116,103,68,68,68,26,96,224,73,228,30,235,13,15,129,129,129,232,222,189,187,172,70,169,169,169,22,101,174,110,183,117,37,57,145,179,54,108,216 \
,128,159,126,250,73,113,187,151,94,122,201,169,111,198,245,122,61,222,124,243,77,60,245,212,83,86,3,47,115,190,190,190,24,63,126,60,86,172,88,129,71,30,121,4,225,225,225,138,199,244,52 \
,122,189,30,219,183,111,183,40,15,11,11,195,196,137,19,221,50,135,85,171,86,105,210,111,116,116,52,166,77,155,102,90,116,67,8,161,77,218,92,237,253,98,120,232,213,171,151,211,219,185,147 \
,147,147,205,139,156,143,98,137,136,136,52,192,192,147,200,61,246,224,246,25,52,0,192,208,161,242,22,35,172,172,98,88,189,50,67,9,119,175,120,166,165,165,97,205,154,53,138,219,205,157,59 \
,23,51,103,206,84,220,46,47,47,15,115,231,206,197,135,31,202,75,110,218,161,67,7,188,253,246,219,120,232,161,135,234,68,192,105,112,228,200,17,228,229,229,89,148,79,159,62,93,147,251,68 \
,205,229,229,229,57,149,185,88,142,71,30,121,4,65,65,65,166,69,255,213,100,32,247,216,98,120,8,13,13,117,250,235,251,198,141,27,184,122,245,170,105,81,123,23,231,69,68,68,164,42,6 \
,158,68,110,32,132,40,1,112,197,240,126,223,125,247,201,106,103,45,240,236,210,165,139,75,115,201,204,204,132,94,239,158,196,159,229,229,229,120,251,237,183,21,143,215,169,83,39,60,251,236,179 \
,138,199,187,124,249,50,102,205,154,133,99,199,142,57,172,91,175,94,61,60,250,232,163,120,245,213,87,209,188,121,115,197,99,121,186,205,155,55,91,148,249,250,250,98,206,156,57,110,25,127,237 \
,218,181,138,18,57,201,229,227,227,131,69,139,22,153,22,85,193,75,238,238,180,97,139,233,139,138,219,109,153,217,150,136,136,60,10,3,79,34,247,217,103,120,24,56,112,32,234,213,171,231,176 \
,65,102,102,38,110,221,170,153,152,178,121,243,230,46,173,204,85,84,84,32,39,39,199,233,246,74,124,246,217,103,230,171,48,14,5,7,7,227,157,119,222,65,64,64,128,162,118,57,57,57,152 \
,59,119,46,46,94,188,232,176,110,175,94,189,240,159,255,252,7,99,198,140,113,203,89,71,119,59,127,254,188,213,109,218,35,70,140,64,211,166,77,53,31,191,170,170,74,179,43,84,198,142,29 \
,107,126,13,204,78,33,68,169,38,131,185,129,16,226,6,0,227,23,185,89,194,36,69,204,2,207,250,146,36,105,191,180,77,68,68,36,19,3,79,34,247,249,196,240,16,16,16,128,65,131,6 \
,57,108,80,93,93,141,179,103,207,214,40,19,66,160,115,231,206,46,77,196,29,219,109,147,146,146,176,115,167,242,99,119,47,191,252,178,226,251,37,51,50,50,48,99,198,12,135,87,81,248,248 \
,248,96,230,204,153,120,254,249,231,209,160,65,3,197,115,243,22,155,54,109,178,90,190,96,193,2,183,140,191,125,251,118,197,63,112,144,203,74,82,161,103,52,25,200,189,140,95,144,174,172,120 \
,90,201,108,235,218,246,8,34,34,34,21,49,240,36,114,159,189,184,189,45,16,128,107,219,109,187,118,237,234,210,68,204,131,89,181,85,84,84,224,253,247,223,87,124,237,203,224,193,131,49,121 \
,242,100,69,109,210,211,211,49,123,246,108,135,129,78,88,88,24,94,124,241,69,204,152,49,163,78,174,114,26,20,20,20,224,240,97,203,91,52,58,118,236,136,222,189,123,187,101,14,43,87,174 \
,212,164,223,54,109,218,152,222,85,9,0,231,133,16,103,52,25,204,189,126,52,60,116,233,210,197,233,51,184,86,254,95,49,196,249,41,17,17,17,169,139,129,39,145,155,8,33,244,0,206,27 \
,222,229,6,158,86,178,85,162,123,247,238,46,5,79,214,182,97,170,233,171,175,190,66,110,174,178,43,21,131,131,131,241,242,203,47,43,106,83,88,88,136,133,11,23,226,250,245,235,118,235,181 \
,104,209,2,239,188,243,14,186,117,235,166,168,127,111,180,125,251,118,84,85,85,89,148,63,248,224,131,110,25,63,57,57,25,39,79,158,212,164,239,229,203,151,195,199,167,198,95,91,175,106,50 \
,144,251,125,107,120,240,247,247,71,143,30,61,156,234,196,74,224,217,207,133,57,17,17,17,169,138,129,39,145,123,25,19,137,116,238,220,25,141,27,55,118,216,224,252,249,243,168,168,168,168,81 \
,22,19,19,163,120,59,170,169,172,172,44,148,148,148,56,221,222,158,235,215,175,99,203,150,45,142,43,154,121,242,201,39,209,172,89,51,217,245,117,58,29,150,47,95,238,240,76,103,66,66,2 \
,254,242,151,191,32,50,50,82,241,156,188,141,78,167,179,186,189,57,42,42,10,99,198,140,113,203,28,180,186,66,37,36,36,4,243,231,207,55,45,186,5,64,155,193,220,239,0,76,178,94,59 \
,187,221,246,234,213,171,230,63,132,113,45,5,54,17,17,145,138,24,120,18,185,151,241,142,15,33,4,70,142,28,233,176,65,85,85,149,213,237,182,253,250,57,191,152,33,73,18,210,210,210,156 \
,110,111,207,202,149,43,45,2,101,71,226,227,227,49,111,222,60,217,245,37,73,194,115,207,61,231,240,110,208,62,125,250,224,149,87,94,65,104,104,168,162,249,120,171,3,7,14,160,176,176,208 \
,162,124,246,236,217,8,12,12,212,124,252,252,252,124,167,126,232,32,199,156,57,115,16,17,17,97,90,244,185,16,162,90,147,193,220,76,8,81,6,160,192,240,174,98,102,91,237,51,73,17,17 \
,17,201,196,192,147,200,141,132,16,105,0,140,75,141,147,38,77,146,213,238,212,169,83,22,101,174,124,115,10,88,77,68,226,178,180,180,52,28,58,116,72,113,187,231,159,127,30,254,254,254,178 \
,235,127,244,209,71,216,176,97,131,221,58,3,6,12,192,51,207,60,163,56,59,174,55,179,118,133,138,191,191,63,102,205,154,229,150,241,191,248,226,11,197,63,116,144,107,233,210,165,166,175,18 \
,0,229,247,237,120,54,99,196,168,98,130,161,250,146,36,105,255,19,7,34,34,34,25,24,120,18,185,223,1,195,195,200,145,35,101,93,171,98,45,240,108,209,162,5,98,99,99,157,158,132,22 \
,231,60,63,255,252,115,197,9,133,126,243,155,223,96,232,208,161,178,235,255,250,235,175,120,231,157,119,236,214,233,220,185,51,158,124,242,73,248,250,250,42,154,139,55,75,74,74,66,102,102,166 \
,69,249,152,49,99,16,19,19,163,249,248,122,189,30,107,215,174,213,164,239,129,3,7,162,123,247,238,166,69,63,223,185,134,164,46,217,103,120,104,213,170,21,162,163,163,157,234,196,108,197,83 \
,0,232,232,210,172,136,136,136,84,194,192,147,200,253,254,105,120,8,14,14,198,232,209,163,29,54,184,120,241,34,10,10,10,44,202,93,185,243,47,45,45,205,106,18,26,103,101,102,102,226,244 \
,233,211,138,219,61,241,196,19,178,235,86,86,86,226,233,167,159,134,78,167,179,89,39,62,62,30,127,252,227,31,21,173,160,214,5,214,86,59,1,40,218,194,236,138,29,59,118,224,202,149,43 \
,154,244,109,229,10,149,231,52,25,168,118,25,19,12,9,33,156,254,218,182,178,45,95,254,79,117,136,136,136,52,196,192,147,200,253,118,3,40,55,188,200,217,110,43,73,146,213,76,161,3,7 \
,14,116,122,18,149,149,149,200,200,200,112,186,189,185,111,191,253,86,241,106,103,207,158,61,21,125,131,253,143,127,252,195,238,85,48,81,81,81,120,233,165,151,100,173,34,215,37,87,175,94,197 \
,177,99,199,44,202,123,245,234,229,242,213,59,114,173,94,189,90,147,126,27,53,106,100,126,197,206,85,33,196,30,77,6,171,93,39,1,232,13,47,206,110,183,101,102,91,34,34,242,84,12,60 \
,137,220,76,8,33,1,48,102,197,25,55,110,28,130,130,130,28,182,179,182,221,182,93,187,118,178,50,227,218,162,214,57,207,27,55,110,56,117,182,243,241,199,31,151,93,247,151,95,126,193,103 \
,159,125,102,243,115,95,95,95,252,254,247,191,55,79,64,115,87,216,178,101,11,170,171,45,243,236,152,101,129,213,76,106,106,170,213,192,87,13,11,23,46,52,63,167,251,174,38,3,213,178,59 \
,137,146,140,75,198,206,174,120,94,190,124,217,124,119,68,39,215,102,70,68,68,164,14,6,158,68,181,227,63,134,135,208,208,80,89,103,28,79,157,58,101,117,69,241,158,123,238,113,122,18,106 \
,157,243,220,189,123,55,244,122,189,227,138,38,90,183,110,45,123,238,146,36,225,245,215,95,183,26,92,25,204,158,61,27,29,58,220,125,183,71,148,149,149,225,251,239,191,183,40,143,141,141,149 \
,149,53,89,13,43,87,174,212,164,95,63,63,63,60,246,216,99,166,69,58,0,246,15,248,122,55,227,182,6,21,19,12,49,179,45,17,17,121,4,6,158,68,181,227,91,220,254,38,26,128,188 \
,237,182,133,133,133,184,112,225,130,69,249,160,65,131,156,158,132,90,43,158,206,172,118,206,155,55,15,66,8,89,117,183,108,217,130,19,39,78,216,252,188,71,143,30,178,51,4,215,53,123,246 \
,236,65,105,105,169,69,249,252,249,243,225,231,231,167,249,248,69,69,69,154,93,161,50,113,226,68,52,109,90,35,110,218,34,132,40,183,85,191,14,216,97,120,112,229,174,94,179,237,182,97,146 \
,36,221,93,7,158,137,136,200,35,49,240,36,170,5,66,136,42,152,172,110,76,156,56,81,86,50,28,107,247,86,54,111,222,28,45,90,180,112,106,30,133,133,133,46,39,132,201,202,202,66,118 \
,118,182,162,54,33,33,33,152,56,113,162,172,186,58,157,206,110,22,219,224,224,96,44,91,182,76,118,16,91,151,72,146,132,173,91,183,90,148,7,5,5,97,250,244,233,110,153,195,87,95,125 \
,133,178,178,50,77,250,54,187,66,5,0,158,210,100,32,207,241,157,233,139,74,231,60,5,128,246,206,79,137,136,136,72,29,12,60,137,106,207,7,134,135,152,152,24,220,127,255,253,14,27,28 \
,57,114,196,106,249,224,193,131,157,158,132,171,171,158,206,172,118,142,26,53,74,118,2,160,196,196,68,100,101,101,217,252,124,198,140,25,136,138,138,82,60,135,186,224,232,209,163,184,124,249,178 \
,69,249,196,137,19,17,30,30,174,249,248,122,189,30,159,127,254,185,38,125,119,236,216,17,67,134,12,49,45,58,43,132,176,92,242,175,67,132,16,23,1,24,47,66,85,49,193,208,16,167,39 \
,69,68,68,164,18,6,158,68,181,103,21,76,182,219,206,157,59,215,97,131,75,151,46,33,39,39,199,162,124,232,208,161,78,223,89,233,106,224,105,45,233,145,35,99,199,142,149,85,79,175,215 \
,227,147,79,62,177,249,121,243,230,205,101,247,85,23,217,186,66,69,206,127,75,106,248,254,251,239,113,233,210,37,77,250,182,178,138,253,103,77,6,242,60,23,13,15,206,6,158,86,190,166,251 \
,187,48,31,34,34,34,85,48,240,36,170,37,66,8,29,128,31,12,239,227,199,143,151,181,74,101,109,187,109,120,120,56,122,245,234,229,212,60,156,185,123,211,64,175,215,43,190,146,37,34,34 \
,2,3,6,12,144,85,119,219,182,109,118,183,2,63,250,232,163,78,7,220,222,46,43,43,11,103,206,156,177,40,191,231,158,123,208,174,93,59,183,204,33,49,49,81,147,126,67,67,67,205,131 \
,231,18,0,95,104,50,152,231,57,106,120,232,217,179,167,83,231,116,179,179,179,81,84,84,100,90,196,204,182,68,68,84,235,24,120,18,213,174,87,12,15,114,207,229,217,218,110,59,124,248,112 \
,167,38,112,245,234,85,92,189,122,213,169,182,89,89,89,168,172,172,84,212,102,232,208,161,178,191,153,182,119,55,100,167,78,157,208,165,75,23,69,99,215,37,155,54,109,178,154,229,120,193,130 \
,5,110,25,255,252,249,243,54,255,91,116,213,252,249,243,17,22,22,102,90,244,201,157,107,136,238,6,198,115,158,33,33,33,232,220,185,179,226,14,36,73,50,207,88,221,76,133,121,17,17,17 \
,185,132,129,39,81,45,18,66,236,3,96,92,154,152,55,111,158,195,54,231,207,159,199,141,27,55,44,202,123,245,234,133,200,200,72,167,230,113,242,228,73,199,149,172,176,150,101,215,17,185,231 \
,81,83,82,82,112,252,248,113,155,159,79,157,58,85,241,216,117,69,113,113,49,14,28,56,96,81,30,31,31,239,210,121,95,37,86,174,92,105,53,240,85,195,226,197,139,77,95,171,1,188,164 \
,201,64,158,105,167,233,139,74,231,60,195,37,73,210,62,197,49,17,17,145,29,12,60,137,106,223,183,134,135,129,3,7,34,33,33,193,110,101,73,146,172,38,244,241,245,245,53,79,198,34,219 \
,47,191,252,226,84,59,165,43,165,190,190,190,178,239,238,252,250,235,175,109,126,214,170,85,43,116,235,214,77,209,216,117,201,206,157,59,173,174,52,207,159,63,31,62,62,218,255,111,189,184,184 \
,24,27,55,110,212,164,239,97,195,134,153,175,242,29,18,66,20,106,50,152,7,186,243,123,189,105,120,239,211,167,143,83,253,152,157,243,20,0,218,184,52,49,34,34,34,23,49,240,36,170,125 \
,47,155,190,204,158,61,219,97,131,125,251,246,89,45,31,49,98,132,83,215,138,156,60,121,210,234,93,144,142,152,157,35,115,168,67,135,14,178,206,177,74,146,132,221,187,119,219,252,124,194,132 \
,9,119,229,245,41,192,237,115,181,219,183,111,183,40,175,87,175,30,38,79,158,236,150,57,172,91,183,78,179,43,84,150,45,91,102,94,244,140,38,3,121,182,115,134,135,126,253,250,57,213,129 \
,149,204,182,247,186,48,31,34,34,34,151,49,240,36,170,101,119,174,80,48,222,23,50,111,222,60,135,171,86,25,25,25,184,120,241,162,69,121,227,198,141,209,179,103,79,197,115,208,233,116,86 \
,147,22,57,114,243,230,77,199,149,76,200,157,91,82,82,146,205,164,66,33,33,33,78,127,51,94,23,28,58,116,200,234,86,235,105,211,166,161,126,253,250,154,143,47,73,18,214,174,93,171,73 \
,223,113,113,113,24,63,126,188,105,209,101,33,196,143,154,12,230,217,14,26,30,58,118,236,232,212,159,107,114,114,178,121,145,188,173,6,68,68,68,26,97,224,73,228,25,62,52,60,180,106,213 \
,10,247,221,119,159,195,6,251,247,239,183,90,62,122,244,104,167,38,112,248,240,97,197,109,42,42,42,28,87,50,209,189,123,119,89,245,236,173,118,246,239,223,31,129,129,129,138,198,173,75,182 \
,108,217,98,81,230,227,227,35,235,124,176,26,246,237,219,167,56,147,177,92,139,22,45,50,79,60,245,182,38,3,121,62,227,246,123,95,95,95,167,126,152,148,149,149,133,91,183,110,153,22,41 \
,207,82,68,68,68,164,34,6,158,68,158,225,109,0,85,134,151,69,139,22,57,108,176,127,255,126,84,87,87,91,148,247,236,217,19,77,154,52,81,60,129,147,39,79,162,184,184,88,81,27,165 \
,87,153,200,205,208,185,103,207,30,155,159,221,123,239,221,187,99,240,236,217,179,72,75,75,179,40,31,58,116,40,154,55,111,238,150,57,216,203,52,236,138,128,128,0,60,246,216,99,166,69,21 \
,0,222,211,100,48,207,247,35,0,99,230,38,103,86,248,171,171,171,205,51,219,198,187,62,45,34,34,34,231,49,240,36,242,0,66,136,50,0,123,13,239,227,198,141,67,211,166,77,237,182,201 \
,207,207,71,82,82,146,181,190,48,106,212,40,197,115,168,170,170,178,121,118,212,22,37,137,108,252,253,253,101,5,71,37,37,37,56,119,238,156,213,207,66,66,66,208,169,211,221,123,37,225,230 \
,205,155,173,150,187,235,10,149,204,204,76,171,137,173,212,48,101,202,20,52,106,212,200,180,104,195,157,187,110,239,58,66,136,10,0,215,13,239,206,38,24,178,146,217,246,238,188,244,150,136,136 \
,60,2,3,79,34,207,241,180,225,193,207,207,15,143,62,250,168,195,6,182,86,6,135,15,31,142,160,160,32,197,19,176,183,197,213,26,37,151,219,183,104,209,66,214,10,233,153,51,103,172,174 \
,228,2,183,207,187,185,35,107,171,39,186,113,227,6,126,252,209,242,184,99,66,66,130,219,206,188,174,90,181,202,230,159,141,171,152,84,200,130,241,144,166,74,87,170,248,0,104,233,218,148,136 \
,136,136,156,119,119,126,7,71,228,129,132,16,167,0,92,50,188,47,92,184,16,254,254,254,118,219,252,248,227,143,86,51,203,214,171,87,207,169,45,169,217,217,217,86,183,114,218,18,26,26,42 \
,187,110,139,22,45,100,213,59,115,230,140,205,207,186,116,233,34,123,188,186,102,235,214,173,208,235,245,22,229,11,22,44,112,75,134,223,146,146,18,124,251,237,183,142,43,58,161,91,183,110,230 \
,215,236,36,221,73,186,117,55,51,238,128,136,143,143,71,227,198,141,21,119,192,204,182,68,68,228,73,24,120,18,121,22,99,50,149,198,141,27,99,236,216,177,118,43,235,116,58,236,218,181,203 \
,234,103,206,94,57,98,237,170,14,91,148,4,158,177,177,177,178,234,217,11,60,239,214,109,182,149,149,149,86,255,156,27,52,104,224,240,191,17,181,172,95,191,30,37,37,37,154,244,189,124,249 \
,114,243,162,23,52,25,200,187,172,51,125,233,221,187,183,226,14,172,4,158,204,108,75,68,68,181,134,129,39,145,103,249,55,128,74,195,203,210,165,75,29,54,216,185,115,167,213,237,143,141,27 \
,55,118,106,139,222,193,131,7,101,223,207,169,36,240,140,137,137,145,85,47,61,61,221,106,185,16,194,109,9,116,60,205,222,189,123,173,94,93,51,107,214,44,4,7,7,107,62,190,36,73,72 \
,76,76,212,164,239,240,240,112,204,154,53,203,180,168,72,8,177,81,147,193,188,203,175,0,140,75,220,206,124,45,103,100,100,152,223,183,122,247,110,25,32,34,162,90,199,192,147,200,131,220,73 \
,166,98,204,32,51,124,248,112,135,219,75,243,242,242,112,236,216,49,171,159,77,156,56,81,241,28,116,58,29,118,238,220,41,171,110,100,100,164,236,126,229,214,189,118,237,154,213,242,232,232,104 \
,135,91,143,235,170,109,219,182,89,148,249,250,250,98,206,156,57,110,25,255,224,193,131,154,93,161,178,96,193,2,212,171,87,207,180,232,35,77,6,242,50,66,136,106,0,57,134,119,103,2,79 \
,189,94,143,179,103,207,154,22,181,112,121,98,68,68,68,78,98,224,73,228,121,126,135,59,87,41,8,33,240,219,223,254,214,97,3,107,129,9,0,180,111,223,30,237,218,181,83,60,129,237,219 \
,183,91,61,79,104,174,97,195,134,178,251,52,11,46,172,210,235,245,40,40,40,176,250,153,51,87,196,212,5,39,79,158,196,197,139,150,199,29,71,143,30,109,158,5,86,51,171,86,173,210,164 \
,95,33,4,150,44,89,98,90,84,13,224,47,154,12,230,157,142,27,30,250,246,237,235,212,214,121,179,237,182,17,146,36,105,127,32,152,136,136,200,10,6,158,68,30,230,78,82,149,19,134,247 \
,217,179,103,59,76,44,114,234,212,41,100,103,103,91,253,204,153,85,207,252,252,124,28,60,120,208,97,61,185,231,54,1,200,202,178,123,227,198,13,155,89,83,149,4,185,117,137,173,43,84,30 \
,124,240,65,183,140,159,149,149,133,3,7,14,104,210,247,200,145,35,145,144,144,96,90,180,87,8,161,236,50,217,186,205,120,224,58,60,60,28,109,219,182,85,220,193,175,191,254,106,250,234,11 \
,222,231,73,68,68,181,132,129,39,145,103,50,102,91,9,12,12,180,118,213,68,13,146,36,217,204,56,218,183,111,95,167,50,98,174,95,191,30,146,36,217,173,211,160,65,3,217,215,182,4,6 \
,6,58,172,147,159,159,111,243,51,57,43,166,117,77,110,110,46,142,31,63,110,81,222,181,107,87,116,239,222,221,45,115,72,76,76,116,231,21,42,127,212,100,32,239,245,157,233,139,51,219,109 \
,173,36,24,26,232,194,124,136,136,136,156,198,192,147,200,3,9,33,126,4,96,92,194,92,178,100,137,195,192,235,192,129,3,200,203,203,179,40,247,241,241,193,148,41,83,20,207,33,43,43,11 \
,71,143,30,117,88,79,110,194,31,71,65,44,0,187,219,123,229,4,174,117,205,166,77,155,172,254,123,123,232,161,135,220,50,126,89,89,25,214,175,95,175,73,223,241,241,241,120,224,129,7,76 \
,139,178,132,16,214,15,43,223,165,132,16,185,0,202,13,239,125,250,244,81,220,135,149,192,115,176,107,179,34,34,34,114,14,3,79,34,207,245,178,225,33,50,50,18,243,231,207,183,91,89,175 \
,215,99,227,70,235,201,64,135,12,25,162,104,91,172,193,55,223,124,227,176,78,203,150,242,238,164,175,172,172,116,88,199,215,215,215,230,103,119,91,224,89,90,90,138,253,251,247,91,148,55,108 \
,216,16,163,70,141,114,203,28,190,253,246,91,217,25,142,149,90,186,116,169,249,159,247,235,154,12,228,253,140,89,157,156,89,241,60,127,254,60,42,42,42,76,139,186,170,48,39,34,34,34,197 \
,24,120,18,121,174,79,1,24,207,187,253,238,119,191,179,27,152,1,192,238,221,187,81,92,108,121,68,206,215,215,23,147,38,77,82,60,129,115,231,206,225,244,233,211,118,235,180,104,209,66,86 \
,95,102,223,252,90,101,47,121,138,51,137,85,188,217,238,221,187,81,90,90,106,81,62,103,206,28,183,100,247,213,242,10,149,160,160,32,243,85,219,114,0,31,106,50,152,247,59,98,120,232,222 \
,189,59,2,2,2,20,53,174,170,170,66,90,90,154,105,145,188,159,20,17,17,17,169,140,129,39,145,135,18,66,72,0,254,99,120,111,211,166,141,249,125,135,22,42,42,42,176,105,211,38,171 \
,159,13,27,54,12,81,81,81,138,231,177,110,221,58,187,159,203,13,60,173,5,196,230,124,124,108,255,47,233,214,173,91,178,198,169,11,170,171,171,177,117,235,86,139,242,192,192,64,204,156,57 \
,211,45,115,248,241,199,31,113,238,220,57,77,250,158,62,125,186,249,189,174,223,8,33,170,52,25,204,251,25,207,121,6,5,5,161,107,87,229,11,150,102,219,109,163,152,217,150,136,136,106,3 \
,3,79,34,207,246,50,76,206,120,189,248,226,139,14,87,61,55,111,222,140,194,194,66,139,114,127,127,127,167,50,220,158,62,125,26,169,169,169,54,63,111,209,162,133,172,213,200,235,215,175,59 \
,172,211,160,65,3,155,159,149,148,148,56,108,95,87,252,252,243,207,184,122,245,170,69,249,184,113,227,20,221,157,234,138,213,171,87,107,214,247,242,229,203,77,95,37,0,207,104,54,152,247,251 \
,222,244,197,153,237,182,86,50,219,198,185,54,37,34,34,34,229,24,120,18,121,48,33,68,37,128,21,134,247,182,109,219,98,218,180,105,118,219,148,151,151,219,60,155,57,114,228,72,132,135,135 \
,43,158,135,173,140,185,192,237,85,24,57,247,73,202,9,60,163,163,163,109,110,37,188,155,2,207,218,190,66,37,39,39,7,123,247,238,213,164,239,158,61,123,154,39,201,57,41,132,184,172,201 \
,96,117,128,16,226,38,0,227,65,91,149,50,219,222,227,218,172,136,136,136,148,99,224,73,228,249,158,5,96,60,32,249,194,11,47,216,221,146,10,0,59,118,236,176,186,98,22,16,16,224,84 \
,134,219,163,71,143,34,51,51,211,230,231,114,18,12,229,228,228,56,172,227,227,227,99,51,136,181,246,251,169,139,210,211,211,145,156,156,108,81,222,175,95,63,180,111,223,222,45,115,72,76,76 \
,180,155,97,216,21,79,60,241,132,121,209,159,52,25,168,110,57,107,120,80,41,240,100,102,91,34,34,114,59,6,158,68,30,78,8,81,14,224,19,195,123,199,142,29,49,121,242,100,187,109,170 \
,170,170,240,229,151,95,90,253,108,212,168,81,136,142,142,86,52,7,73,146,176,102,205,26,155,159,183,110,221,218,97,31,23,46,92,144,53,86,147,38,77,172,150,95,188,120,81,179,251,36,61 \
,73,109,175,118,218,91,49,119,85,84,84,20,102,204,152,97,90,148,47,132,176,60,204,74,230,126,48,60,180,111,223,94,241,174,133,180,180,52,232,116,58,211,162,110,42,205,139,136,136,72,54 \
,6,158,68,222,225,41,0,198,239,28,229,172,122,238,223,191,31,89,89,89,22,229,254,254,254,152,62,125,186,226,9,28,59,118,204,230,89,207,14,29,58,56,108,159,155,155,139,178,178,50,135 \
,245,108,37,43,170,172,172,68,110,110,174,195,246,222,172,168,168,8,7,15,30,180,40,111,218,180,41,134,13,27,230,150,57,124,247,221,119,86,207,8,171,225,145,71,30,65,80,80,144,105,209 \
,251,154,12,84,247,24,47,83,21,66,160,87,175,94,138,26,235,116,58,243,68,81,142,127,82,68,68,68,164,50,6,158,68,94,64,8,81,10,96,165,225,189,107,215,174,14,179,155,86,87,87 \
,227,163,143,62,178,250,217,176,97,195,100,157,203,52,103,43,225,76,155,54,109,28,94,243,80,93,93,141,179,103,207,218,173,3,220,62,3,104,139,220,85,83,111,181,99,199,14,243,149,41,0 \
,192,188,121,243,28,38,149,82,139,86,73,133,124,124,124,176,120,241,98,211,34,61,128,191,105,50,88,221,115,20,128,113,185,95,133,4,67,202,182,60,16,17,17,169,128,129,39,145,247,120,18 \
,38,171,158,127,253,235,95,29,6,123,73,73,73,56,124,248,176,69,185,175,175,175,249,150,71,89,82,82,82,112,242,228,73,139,114,127,127,127,180,109,219,214,97,251,227,199,143,59,172,211,187 \
,119,111,151,218,123,171,170,170,42,108,219,182,205,162,60,36,36,196,97,66,41,181,28,61,122,212,110,6,99,87,60,240,192,3,230,103,129,119,221,249,129,10,57,32,132,208,1,200,51,188,171 \
,112,206,211,79,146,164,198,174,207,140,136,136,72,62,6,158,68,94,66,8,113,11,192,187,134,247,150,45,91,98,201,146,37,14,219,125,246,217,103,168,168,168,176,40,31,60,120,48,154,55,111 \
,174,120,30,137,137,137,144,36,201,162,188,83,167,78,14,219,158,56,113,194,97,157,102,205,154,217,92,141,253,229,151,95,52,75,122,83,219,126,248,225,7,171,91,92,167,76,153,130,208,208,80 \
,183,204,97,213,170,85,154,245,109,118,133,10,0,252,65,179,193,234,166,211,134,135,126,253,250,41,110,108,37,193,80,127,23,231,67,68,68,164,8,3,79,34,239,242,44,128,155,134,151,63,253 \
,233,79,118,239,190,4,128,188,188,60,172,91,183,206,162,220,199,199,7,243,230,205,83,60,129,11,23,46,224,167,159,126,178,40,239,216,177,163,195,182,63,255,252,179,172,4,65,182,86,116,74 \
,74,74,172,125,3,93,39,108,221,106,153,99,71,8,225,212,159,145,51,174,92,185,130,93,187,118,105,210,119,235,214,173,113,223,125,247,153,22,165,11,33,146,52,25,172,238,218,109,120,104,220 \
,184,49,226,226,148,93,197,201,204,182,68,68,84,219,24,120,18,121,17,33,68,21,128,23,12,239,209,209,209,120,250,233,167,29,182,219,176,97,3,46,95,182,188,42,177,119,239,222,232,220,185 \
,179,226,121,88,187,110,163,93,187,118,14,207,33,230,231,231,227,212,169,83,14,251,31,51,102,140,205,207,246,237,219,39,107,142,222,36,37,37,5,231,207,159,183,40,191,247,222,123,101,93,85 \
,163,134,53,107,214,104,182,154,188,108,217,50,243,100,88,175,106,50,80,221,182,193,244,69,233,170,231,217,179,103,81,85,85,101,90,212,67,133,57,17,17,17,201,198,192,147,200,251,188,7,147 \
,243,94,79,62,249,164,205,43,72,12,116,58,29,222,123,239,61,171,91,100,31,126,248,97,8,33,20,77,32,39,39,199,34,0,12,10,10,146,117,173,138,156,192,113,240,224,193,136,136,136,176 \
,250,217,15,63,252,128,130,130,2,57,211,244,26,155,54,109,178,90,238,174,43,84,42,43,43,241,245,215,95,107,210,119,72,72,8,22,44,88,96,90,84,10,224,51,77,6,171,219,206,193,228 \
,140,119,159,62,125,20,53,174,168,168,64,122,122,186,105,17,51,219,18,17,145,91,49,240,36,242,50,66,8,9,128,49,61,104,189,122,245,240,218,107,175,57,108,119,246,236,89,171,219,57,91 \
,182,108,137,65,131,6,41,158,71,98,98,162,197,245,40,221,186,57,190,30,112,235,214,173,86,3,96,83,126,126,126,54,87,61,117,58,29,182,111,223,46,127,162,30,46,47,47,15,71,143,30 \
,181,40,111,217,178,37,238,185,231,30,183,204,97,243,230,205,184,113,227,134,38,125,207,158,61,219,252,135,8,107,132,16,117,255,66,86,149,221,249,186,191,100,120,87,33,193,80,67,215,103,69 \
,68,68,36,31,3,79,34,47,36,132,88,15,192,184,55,115,238,220,185,24,56,112,160,195,118,171,87,175,198,149,43,87,44,202,231,204,153,3,127,127,127,69,115,40,44,44,196,134,13,53,118 \
,255,161,71,15,199,187,247,50,51,51,173,102,198,53,55,121,242,100,155,159,109,223,190,29,183,110,221,114,60,73,47,176,117,235,86,171,91,92,23,44,88,160,120,37,218,89,137,137,137,154,245 \
,189,116,233,82,211,87,9,192,115,154,13,86,247,29,51,60,244,238,221,219,225,93,190,230,204,2,79,127,73,146,98,84,154,23,17,17,145,67,12,60,137,188,215,36,220,254,70,30,66,8,188 \
,255,254,251,240,243,243,179,219,160,162,162,2,43,86,172,176,88,113,108,216,176,161,221,115,149,182,108,216,176,1,121,121,198,93,191,104,215,174,29,234,215,175,239,176,221,250,245,235,29,214,233 \
,210,165,139,205,21,191,226,226,98,172,93,187,86,254,68,61,84,69,69,5,118,239,222,109,81,30,22,22,134,73,147,38,185,101,14,39,78,156,64,82,146,54,121,126,238,185,231,30,243,31,70 \
,28,21,66,92,215,100,176,187,195,22,195,67,88,88,24,218,183,111,175,168,177,217,93,158,0,240,27,21,230,68,68,68,36,11,3,79,34,47,37,132,56,3,224,91,195,123,231,206,157,177,104 \
,209,34,135,237,78,157,58,101,117,203,237,244,233,211,109,158,171,180,165,178,178,178,70,0,232,227,227,131,174,93,187,58,108,183,113,227,70,171,87,135,152,251,191,255,251,63,155,159,109,219,182 \
,13,25,25,25,242,38,234,161,246,236,217,131,146,146,18,139,242,25,51,102,32,56,56,216,45,115,208,242,10,149,101,203,150,153,23,61,171,217,96,119,135,26,95,184,74,183,219,90,201,108,123 \
,175,139,243,33,34,34,146,141,129,39,145,119,155,11,192,120,208,242,149,87,94,65,76,140,227,221,115,43,87,174,68,102,102,102,141,178,224,224,96,74,192,57,52,0,0,32,0,73,68,65,84 \
,204,153,51,71,241,4,246,237,219,87,35,35,171,156,237,182,101,101,101,248,226,139,47,28,214,235,209,163,135,205,243,167,213,213,213,88,177,98,133,215,222,235,41,73,18,182,108,217,98,81,238 \
,235,235,139,217,179,103,187,101,14,121,121,121,216,177,99,135,38,125,199,196,196,152,111,151,190,38,132,216,163,201,96,119,9,33,68,30,110,39,103,2,160,60,193,80,106,106,170,249,117,70,204 \
,108,75,68,68,110,195,192,147,200,139,9,33,202,96,178,138,20,17,17,129,215,95,127,221,97,59,157,78,135,183,223,126,27,21,21,21,53,202,135,13,27,134,132,132,4,69,115,144,36,9,159 \
,125,246,153,241,189,71,143,30,178,206,38,174,90,181,202,98,124,107,126,251,219,223,218,188,166,37,45,45,13,43,87,174,148,61,87,79,114,252,248,113,228,228,228,88,148,143,24,49,2,77,155 \
,54,117,203,28,214,174,93,11,157,78,231,184,162,19,22,46,92,136,192,192,64,211,162,127,105,50,208,221,231,130,225,65,233,149,42,165,165,165,230,187,4,218,170,52,39,34,34,34,135,24,120 \
,18,121,57,33,196,187,0,50,13,239,15,61,244,16,70,141,26,229,176,93,118,118,118,141,128,241,78,95,88,184,112,161,226,164,54,201,201,201,56,114,228,8,0,32,42,42,10,241,241,241,14 \
,219,228,229,229,97,245,234,213,14,235,117,233,210,5,15,63,252,176,205,207,55,109,218,132,189,123,247,202,159,172,135,216,188,121,179,213,114,179,171,71,52,163,211,233,100,173,58,59,195,207,207 \
,15,139,23,47,54,45,210,1,120,75,147,193,238,62,63,26,30,186,118,237,170,120,75,54,51,219,18,17,81,109,97,224,73,84,55,76,198,157,68,67,0,240,193,7,31,32,52,52,212,97,163 \
,237,219,183,91,4,109,173,91,183,198,144,33,67,20,79,224,147,79,62,49,174,96,202,61,123,246,254,251,239,163,168,168,200,97,189,39,159,124,18,109,219,218,94,156,249,240,195,15,145,150,150 \
,38,111,162,30,224,210,165,75,56,117,234,148,69,121,199,142,29,209,187,119,111,183,204,97,219,182,109,53,18,67,169,105,220,184,113,230,171,182,219,132,16,229,154,12,118,247,49,166,146,246,247 \
,247,71,247,238,221,21,53,54,11,60,3,37,73,138,84,105,94,68,68,68,118,49,240,36,170,3,132,16,39,0,252,207,240,30,31,31,47,235,110,79,224,118,208,150,149,149,85,163,108,254,252 \
,249,168,87,175,158,162,57,228,229,229,97,227,198,141,0,228,111,1,44,46,46,198,127,254,243,31,135,245,2,2,2,240,247,191,255,221,230,150,219,242,242,114,188,244,210,75,56,115,230,140,252 \
,9,215,162,205,155,55,91,189,203,212,93,171,157,0,100,173,54,59,107,249,242,229,230,69,79,105,54,216,221,103,63,76,126,200,164,52,193,144,149,204,182,202,14,138,18,17,17,57,137,129,39 \
,81,221,177,4,192,53,227,203,146,37,24,49,98,132,195,70,229,229,229,120,237,181,215,80,90,106,204,89,130,240,240,112,204,157,59,87,241,4,214,173,91,135,107,215,174,161,85,171,86,104,216 \
,80,222,46,190,85,171,86,201,186,206,163,91,183,110,248,195,31,254,96,243,243,242,242,114,188,250,234,171,154,93,13,162,150,146,146,18,236,223,191,223,162,60,58,58,218,169,43,109,156,145,156 \
,156,44,235,46,85,103,116,232,208,1,67,135,14,53,45,58,43,132,56,167,201,96,119,33,33,68,41,0,99,74,104,165,9,134,172,100,182,29,106,173,30,17,17,145,218,24,120,18,213,17,66 \
,136,106,0,19,97,114,183,231,138,21,43,100,173,92,230,230,230,226,221,119,223,173,177,10,55,106,212,40,197,137,134,42,43,43,141,201,126,228,126,67,172,215,235,241,220,115,207,161,170,170,202 \
,97,221,135,31,126,24,243,231,207,183,249,185,33,248,244,228,51,159,187,118,237,66,121,185,229,174,211,89,179,102,33,32,32,192,45,115,48,63,219,171,166,165,75,151,154,159,17,254,139,102,131 \
,221,189,140,203,150,206,172,120,154,173,182,247,82,105,78,68,68,68,118,49,240,36,170,67,132,16,63,2,88,99,120,111,221,186,53,222,121,231,29,89,109,127,254,249,231,26,201,102,132,16,88 \
,186,116,169,205,237,173,182,28,62,124,24,167,79,159,86,244,13,113,106,106,42,222,125,247,93,89,117,159,123,238,57,187,43,185,21,21,21,120,239,189,247,240,222,123,239,201,202,154,235,78,122 \
,189,30,219,182,109,179,40,247,247,247,199,172,89,179,220,50,135,252,252,124,171,115,80,67,253,250,245,205,127,48,80,2,64,155,12,70,119,183,125,134,135,54,109,218,252,63,246,238,61,206,166 \
,122,255,227,248,107,205,12,195,184,13,99,80,46,17,162,20,50,46,41,183,56,73,233,162,43,213,161,139,56,167,116,83,185,157,114,202,233,166,78,169,116,57,149,74,28,165,196,175,162,155,16 \
,145,91,12,74,46,33,140,52,227,110,140,25,198,220,190,191,63,214,236,57,203,54,216,195,236,253,157,203,251,249,120,172,199,204,250,174,189,102,191,247,172,101,236,207,254,174,245,253,18,19,19 \
,19,240,142,169,169,169,254,151,214,55,42,188,88,34,34,34,199,167,194,83,164,228,185,11,216,239,91,25,48,96,0,55,223,124,115,64,59,126,250,233,167,204,155,55,47,111,253,172,179,206,226 \
,234,171,175,46,112,128,183,222,122,139,115,206,57,135,42,85,170,4,188,207,59,239,188,195,130,5,11,78,250,184,240,240,112,94,122,233,165,147,22,182,115,231,206,101,248,240,225,71,205,49,106 \
,219,210,165,75,243,29,208,167,103,207,158,1,205,191,90,24,62,254,248,227,160,21,228,125,251,246,165,114,229,202,222,166,137,185,61,241,82,184,62,243,125,227,56,78,129,7,164,90,179,102,141 \
,119,181,86,33,101,18,17,17,57,33,21,158,34,37,140,227,56,153,192,95,128,188,55,252,239,188,243,14,13,26,52,56,233,190,198,24,222,124,243,77,214,175,95,159,215,214,167,79,159,128,239 \
,215,244,73,74,74,98,198,140,25,92,116,209,69,1,239,147,147,147,195,163,143,62,154,239,220,150,254,162,162,162,24,63,126,252,73,239,137,220,186,117,43,67,135,14,101,236,216,177,36,39,39 \
,159,240,177,161,48,99,198,140,124,219,251,246,237,27,146,231,207,206,206,102,242,228,201,65,251,249,247,220,115,143,119,53,7,24,25,180,39,43,221,86,2,217,190,149,211,28,96,168,156,49,38 \
,240,79,136,68,68,68,78,145,10,79,145,18,200,113,156,21,64,222,176,182,85,170,84,225,227,143,63,166,76,153,50,39,221,55,51,51,147,231,158,123,142,157,59,119,2,16,25,25,201,160,65 \
,131,10,60,183,231,212,169,83,79,56,5,74,126,246,237,219,199,221,119,223,77,74,74,202,73,31,91,182,108,89,94,126,249,101,250,247,239,127,194,199,25,99,152,59,119,46,131,6,13,98,218 \
,180,105,164,166,166,22,40,83,97,217,180,105,211,81,5,189,79,235,214,173,105,222,188,121,72,50,204,156,57,147,29,59,118,4,229,103,119,233,210,133,11,46,184,192,219,180,200,113,156,125,65 \
,121,178,82,206,113,156,108,96,167,111,189,160,133,103,62,3,12,181,58,253,84,34,34,34,39,166,194,83,164,132,114,28,231,49,32,111,136,215,182,109,219,242,196,19,79,4,180,111,74,74,10 \
,79,62,249,100,94,47,97,243,230,205,233,222,189,123,129,158,63,35,35,131,5,11,22,80,173,90,193,166,9,220,180,105,19,247,223,127,63,153,153,153,39,125,172,227,56,12,31,62,156,127,252 \
,227,31,39,29,152,231,208,161,67,76,154,52,137,187,238,186,139,177,99,199,30,51,133,76,176,29,175,183,243,68,131,37,21,182,96,78,161,114,239,189,247,250,55,13,11,218,147,9,64,222,68 \
,176,133,80,120,118,45,132,60,34,34,34,39,84,176,46,12,17,41,86,140,49,85,129,63,129,242,185,235,220,124,243,205,76,157,58,53,160,253,27,53,106,196,83,79,61,69,185,114,229,72,79 \
,79,231,161,135,30,202,235,9,13,84,181,106,213,216,183,175,224,29,95,93,186,116,225,141,55,222,8,120,164,215,141,27,55,242,232,163,143,230,247,166,58,95,142,227,112,222,121,231,209,182,109 \
,91,218,182,109,75,173,90,193,187,213,109,255,254,253,12,28,56,240,152,145,123,107,214,172,201,188,121,243,136,136,136,8,218,115,251,172,91,183,142,107,174,185,38,40,63,251,140,51,206,32,33 \
,33,193,219,163,158,232,56,78,237,160,60,153,0,96,140,25,12,140,241,173,55,104,208,128,173,91,183,6,180,111,229,202,149,73,78,78,246,94,197,240,141,227,56,87,22,122,72,17,17,17,15 \
,245,120,138,148,96,142,227,236,7,110,241,172,243,222,123,239,113,238,185,231,6,180,255,166,77,155,120,238,185,231,200,202,202,162,92,185,114,167,116,201,237,169,20,157,0,243,230,205,227,222,123 \
,239,13,120,32,156,198,141,27,51,109,218,52,238,191,255,254,128,70,226,53,198,176,102,205,26,198,143,31,207,61,247,220,195,3,15,60,192,196,137,19,89,178,100,73,129,139,235,147,249,230,155 \
,111,242,157,46,230,246,219,111,15,73,209,9,228,77,115,19,12,127,251,219,223,252,47,227,14,108,40,101,57,29,159,121,87,10,210,235,153,146,146,226,127,47,117,147,66,202,36,34,34,114,92 \
,234,241,20,41,5,140,49,175,3,131,124,235,27,55,110,164,109,219,182,1,15,184,211,185,115,103,30,124,240,65,28,199,225,63,255,249,15,223,125,247,93,176,162,30,227,226,139,47,230,181,215 \
,94,243,31,45,245,132,54,110,220,200,107,175,189,198,183,223,126,235,63,103,97,192,42,84,168,192,217,103,159,77,189,122,245,136,142,142,166,106,213,170,84,169,82,133,232,232,104,42,85,170,148 \
,239,62,89,89,89,28,56,112,128,148,148,20,246,239,223,159,247,253,130,5,11,142,185,183,180,124,249,242,204,159,63,159,232,232,232,83,202,87,16,201,201,201,116,236,216,49,223,249,67,79,87 \
,153,50,101,216,186,117,43,103,158,121,166,175,41,3,168,228,56,78,70,161,63,153,28,197,24,115,4,40,11,240,226,139,47,50,100,200,144,128,247,157,57,115,166,247,242,249,195,142,227,68,21 \
,126,66,17,17,145,255,9,205,71,237,34,98,149,227,56,247,25,99,90,3,237,192,237,29,156,50,101,10,87,92,113,5,217,217,217,39,217,27,126,248,225,7,34,34,34,24,52,104,16,119,222 \
,121,39,107,214,172,9,104,244,217,194,176,104,209,34,110,184,225,6,198,141,27,71,253,250,245,3,218,167,113,227,198,140,29,59,150,85,171,86,49,102,204,24,22,47,94,92,224,231,77,75,75 \
,99,245,234,213,172,94,189,250,228,15,62,5,215,94,123,109,72,138,78,128,79,62,249,36,40,69,39,192,13,55,220,224,45,58,1,190,80,209,25,50,9,64,99,56,181,251,60,61,133,103,121 \
,99,76,37,199,113,14,22,110,60,17,17,145,255,209,165,182,34,165,71,23,96,143,111,229,178,203,46,99,244,232,209,199,127,180,159,57,115,230,240,222,123,239,81,174,92,57,6,15,30,28,178 \
,75,68,193,157,22,165,119,239,222,1,205,243,233,213,178,101,75,38,78,156,200,132,9,19,184,236,178,203,2,186,4,55,20,28,199,9,217,160,66,193,158,66,37,159,65,133,2,239,118,147,211 \
,181,204,247,77,92,92,92,129,206,239,124,238,133,110,89,72,153,68,68,68,242,165,194,83,164,148,112,28,39,29,104,131,123,41,36,0,143,62,250,40,131,7,15,14,248,103,124,245,213,87,140 \
,31,63,158,134,13,27,114,203,45,183,156,124,135,66,180,111,223,62,250,247,239,207,211,79,63,29,208,136,183,94,23,95,124,49,111,190,249,38,243,230,205,99,200,144,33,52,109,218,52,72,41 \
,3,207,83,208,169,102,78,213,156,57,115,130,214,59,221,172,89,51,58,118,236,232,109,90,227,56,78,66,80,158,76,242,147,55,84,114,133,10,21,104,214,172,89,192,59,250,205,229,9,112,105 \
,33,101,18,17,17,201,151,10,79,145,82,196,113,156,173,64,111,32,239,198,199,23,95,124,145,222,189,123,7,252,51,166,79,159,206,148,41,83,184,238,186,235,66,54,255,164,143,49,134,9,19 \
,38,112,243,205,55,7,60,122,173,87,173,90,181,24,56,112,32,51,102,204,96,214,172,89,140,28,57,146,46,93,186,80,177,98,197,32,164,61,190,219,111,191,61,100,207,53,113,226,196,160,253 \
,236,251,239,191,223,191,41,176,249,122,164,176,28,117,179,117,65,46,183,93,179,102,141,127,83,155,66,200,35,34,34,114,92,26,92,72,164,20,50,198,220,15,140,245,173,103,100,100,112,213,85 \
,87,49,107,214,172,128,127,198,237,183,223,78,199,142,29,121,248,225,135,73,73,73,9,70,204,19,10,15,15,231,142,59,238,224,193,7,31,164,124,249,242,167,245,179,178,179,179,217,184,113,35 \
,171,86,173,34,33,33,129,132,132,4,182,110,221,202,182,109,219,2,30,85,215,159,227,56,212,170,85,139,122,245,234,81,175,94,61,206,58,235,172,188,239,207,61,247,92,194,194,130,247,185,223 \
,166,77,155,152,49,99,6,95,126,249,101,208,230,43,173,82,165,10,127,254,249,39,21,42,84,240,53,29,0,170,58,142,115,106,163,57,201,41,49,198,28,4,42,2,140,27,55,142,129,3,7 \
,6,188,111,82,82,146,119,26,161,141,142,227,156,83,248,9,69,68,68,92,42,60,69,74,41,99,204,88,32,175,203,42,37,37,133,206,157,59,179,106,213,170,128,127,198,29,119,220,65,131,6 \
,13,24,53,106,20,57,57,57,193,136,121,82,213,170,85,163,127,255,254,220,113,199,29,1,207,249,25,40,99,12,59,118,236,32,41,41,137,148,148,20,82,82,82,56,116,232,16,64,94,177,237 \
,27,109,183,98,197,138,84,170,84,137,232,232,104,162,163,163,169,85,171,22,145,145,145,133,154,231,68,146,146,146,152,53,107,22,223,124,243,13,203,151,47,15,250,243,61,248,224,131,188,242,202 \
,43,222,166,49,142,227,60,18,244,39,150,163,24,99,86,0,23,2,252,252,243,207,180,108,25,248,173,154,179,103,207,166,91,183,110,190,213,52,199,113,66,219,245,47,34,34,165,138,10,79,145 \
,82,204,24,243,25,208,203,183,190,127,255,126,186,119,239,30,112,225,226,56,14,127,255,251,223,73,73,73,225,195,15,63,12,86,204,128,212,175,95,159,65,131,6,113,213,85,87,133,116,224,35 \
,155,214,175,95,207,247,223,127,207,236,217,179,249,245,215,95,79,121,234,152,130,114,28,135,117,235,214,209,164,73,222,244,143,57,184,189,157,161,239,250,46,229,188,83,37,101,103,103,83,165,74 \
,21,210,210,210,2,218,119,236,216,177,254,151,75,87,112,28,231,80,225,167,20,17,17,81,225,41,82,170,25,99,28,96,33,208,222,215,150,156,156,204,101,151,93,86,160,226,179,127,255,254,252 \
,250,235,175,44,89,178,36,72,73,3,87,179,102,77,250,246,237,75,159,62,125,168,82,165,138,237,56,133,42,35,35,131,229,203,151,51,103,206,156,160,14,26,116,50,221,187,119,103,230,204,153 \
,222,166,185,142,227,116,181,18,166,148,51,198,116,5,230,248,214,59,117,234,20,240,232,207,247,220,115,15,111,190,249,166,183,233,34,199,113,150,22,110,66,17,17,17,151,10,79,145,82,206,24 \
,19,1,172,2,242,134,196,220,187,119,47,151,93,118,25,43,87,174,12,232,103,56,142,195,173,183,222,202,188,121,243,172,21,67,254,202,150,45,75,135,14,29,232,213,171,23,151,93,118,89,177 \
,236,5,205,201,201,97,237,218,181,172,88,177,130,229,203,151,51,127,254,252,128,123,179,130,233,243,207,63,231,218,107,175,245,54,181,118,28,39,222,86,158,210,204,24,83,14,56,68,238,255,231 \
,143,62,250,40,47,189,244,82,64,251,118,234,212,137,31,126,248,193,219,244,15,199,113,158,43,244,144,34,34,34,168,240,20,17,242,138,207,149,192,249,190,182,125,251,246,209,189,123,119,226,227 \
,3,171,39,28,199,161,71,143,30,69,166,56,242,170,94,189,58,221,186,117,163,115,231,206,92,114,201,37,68,69,69,217,142,148,175,180,180,52,86,175,94,205,202,149,43,249,249,231,159,89,190 \
,124,57,7,14,28,176,29,235,40,245,234,213,99,243,230,205,222,57,35,255,112,28,167,158,205,76,165,157,49,102,15,16,3,48,101,202,148,128,71,169,174,94,189,58,187,119,239,246,54,125,225 \
,56,78,175,227,61,94,68,68,228,116,168,240,20,17,0,140,49,225,184,19,210,95,232,107,75,77,77,165,79,159,62,124,245,213,87,1,253,12,199,113,104,215,174,29,241,241,241,5,158,107,51 \
,84,202,150,45,75,235,214,173,105,213,170,21,45,91,182,164,101,203,150,86,46,201,221,187,119,47,27,54,108,96,227,198,141,252,246,219,111,252,242,203,47,108,220,184,145,236,236,236,144,103,41 \
,136,231,158,123,142,225,195,135,123,155,238,115,28,231,13,91,121,4,140,49,243,128,206,0,91,182,108,225,236,179,207,14,120,223,93,187,118,17,27,27,235,91,93,239,56,206,185,133,30,80,68 \
,68,4,21,158,34,226,145,91,124,254,4,180,242,181,101,103,103,51,104,208,32,222,126,251,237,128,126,134,227,56,212,175,95,159,45,91,182,4,41,101,225,114,28,135,122,245,234,209,168,81,35 \
,206,62,251,108,206,62,251,108,234,215,175,79,108,108,44,53,106,212,56,229,169,90,210,210,210,216,183,111,31,137,137,137,252,249,231,159,121,203,246,237,219,217,176,97,3,251,247,239,47,228,87 \
,18,124,145,145,145,108,219,182,141,26,53,106,248,154,142,0,149,28,199,41,154,159,50,148,18,198,152,39,128,39,125,235,181,106,213,98,231,206,157,1,237,59,111,222,60,58,119,238,236,91,61 \
,232,56,78,229,66,15,40,34,34,2,20,191,155,158,68,36,104,28,199,201,54,198,180,5,22,144,59,224,80,120,120,56,255,249,207,127,168,89,179,38,255,250,215,191,78,250,51,140,49,108,221 \
,186,149,168,168,168,188,169,71,138,50,99,76,222,220,157,115,230,204,57,102,123,84,84,20,213,171,87,167,114,229,202,68,68,68,16,21,21,69,249,242,229,41,91,182,236,81,151,193,166,167,167 \
,147,146,146,66,114,114,50,201,201,201,100,101,101,133,242,101,132,196,205,55,223,236,45,58,1,166,170,232,44,18,62,195,83,120,182,110,221,58,224,171,20,214,174,93,235,45,60,43,25,99,202 \
,57,142,147,94,232,9,69,68,68,68,68,242,99,140,249,216,248,249,224,131,15,76,185,114,229,12,160,165,20,46,139,23,47,246,158,14,57,198,152,218,136,117,198,152,48,99,76,150,239,192,140 \
,26,53,42,224,99,122,223,125,247,249,255,51,111,109,235,117,136,136,136,136,72,41,101,140,121,198,255,93,105,124,124,188,105,208,160,129,245,34,72,75,225,44,157,59,119,54,211,167,79,55,247 \
,221,119,223,9,31,23,23,23,231,127,42,172,66,138,12,99,204,54,223,129,249,230,155,111,2,62,254,93,187,118,245,63,174,143,218,122,13,34,34,34,34,82,138,25,99,250,27,99,178,189,239 \
,76,247,238,221,107,174,184,226,10,235,69,147,150,83,91,34,34,34,76,159,62,125,204,178,101,203,242,142,105,118,118,182,185,245,214,91,143,187,207,251,239,191,239,95,160,244,68,138,12,99,204 \
,23,190,3,179,103,207,30,227,56,78,64,231,66,173,90,181,252,143,235,84,107,47,66,68,68,68,68,74,55,99,204,37,198,152,52,239,187,211,236,236,108,243,228,147,79,154,136,136,8,235,133 \
,148,150,192,150,74,149,42,153,193,131,7,155,173,91,183,250,23,27,121,199,116,212,168,81,199,92,78,93,173,90,53,115,232,208,161,163,62,123,200,247,68,17,107,140,49,247,120,15,80,163,70 \
,141,2,62,47,246,238,221,235,221,117,141,173,215,32,34,34,34,34,130,49,38,218,24,179,222,191,88,89,178,100,137,105,218,180,169,245,162,74,203,241,151,122,245,234,153,23,94,120,193,36,39 \
,39,231,91,112,250,75,76,76,52,175,191,254,186,185,247,222,123,205,208,161,67,205,172,89,179,252,31,242,236,9,78,21,177,192,24,83,199,123,128,78,212,123,237,191,44,88,176,192,187,107,209 \
,154,56,86,68,68,68,68,74,31,99,140,99,140,25,239,95,133,28,58,116,200,60,244,208,67,38,44,44,204,122,145,165,197,93,194,194,194,76,143,30,61,204,23,95,124,97,178,178,178,252,15 \
,153,79,142,49,102,161,49,102,74,64,21,169,43,203,24,19,117,178,115,69,66,207,24,115,216,119,144,94,121,229,149,128,207,149,183,223,126,219,255,156,40,107,235,53,136,136,136,136,136,228,49 \
,198,220,106,140,57,226,95,145,204,155,55,207,52,110,220,216,122,209,85,154,151,152,152,24,243,232,163,143,154,77,155,54,157,168,120,204,48,198,124,98,140,201,155,27,37,247,152,30,12,160,240 \
,156,121,194,147,67,172,49,198,172,243,29,164,69,139,22,5,116,190,68,68,68,152,79,62,249,196,255,24,55,179,246,34,68,68,68,68,68,188,140,49,213,140,49,203,253,223,177,30,57,114,196 \
,140,30,61,218,84,172,88,209,122,17,86,90,22,199,113,76,135,14,29,204,132,9,19,204,225,195,135,253,15,137,87,178,49,230,57,115,156,30,45,99,76,184,49,102,132,49,102,147,113,63,88 \
,200,201,93,14,25,99,126,49,198,60,104,140,41,147,255,25,33,182,25,99,62,240,29,232,195,135,15,155,50,101,202,28,247,156,169,91,183,174,25,54,108,88,126,247,251,166,24,99,52,199,183 \
,136,136,136,136,20,45,198,152,251,140,219,131,118,148,63,255,252,211,220,118,219,109,1,143,174,169,165,224,203,89,103,157,101,70,142,28,105,54,110,220,120,162,98,51,199,24,179,198,24,115,99 \
,65,142,171,20,63,198,152,235,189,7,62,46,46,238,168,243,165,89,179,102,102,200,144,33,102,241,226,197,38,39,39,231,120,231,203,223,44,191,12,17,17,17,17,145,252,25,99,106,25,99,86 \
,229,247,46,118,209,162,69,166,91,183,110,214,139,180,146,178,84,168,80,193,244,235,215,207,204,153,51,199,100,103,103,231,247,43,247,73,55,238,229,180,181,11,122,60,165,120,50,198,84,241,158 \
,0,195,134,13,51,189,122,245,50,111,189,245,150,73,72,72,56,209,185,98,140,123,239,238,61,182,95,131,136,136,136,136,200,73,25,99,110,48,198,236,207,239,93,237,130,5,11,84,128,158,226 \
,82,190,124,121,115,221,117,215,153,143,62,250,200,28,60,120,210,219,48,183,26,99,238,55,198,132,157,210,65,148,98,205,24,115,224,100,39,136,159,67,198,152,9,198,152,106,182,179,139,136,136 \
,136,136,4,204,24,19,102,140,121,37,183,7,37,223,2,244,202,43,175,212,8,184,5,40,54,83,82,82,78,86,60,28,52,198,124,104,140,105,112,26,135,78,74,0,99,204,79,1,20,155,105 \
,198,152,153,198,152,30,182,243,138,136,136,136,136,156,22,99,76,13,99,204,119,198,189,199,240,24,155,54,109,50,143,60,242,136,169,90,181,170,245,34,175,168,44,177,177,177,166,95,191,126,230 \
,227,143,63,14,164,216,204,50,198,44,54,198,92,121,186,199,74,74,14,99,204,75,249,156,43,57,198,152,4,99,204,56,99,76,11,219,25,69,68,68,68,68,10,157,49,230,204,220,222,149,124 \
,11,208,180,180,52,243,238,187,239,154,14,29,58,148,186,94,80,199,113,76,92,92,156,25,57,114,164,89,178,100,201,201,238,217,244,21,16,235,141,49,195,141,230,90,148,124,24,99,90,24,119 \
,180,233,143,141,49,255,48,198,116,51,198,68,218,206,37,34,34,34,34,18,18,198,152,51,114,11,208,227,86,87,127,252,241,135,25,51,102,140,185,232,162,139,74,236,104,184,231,158,123,174,249 \
,251,223,255,110,62,250,232,35,147,148,148,116,178,66,211,87,108,254,150,91,68,68,21,234,65,17,17,17,17,17,17,41,137,140,49,21,140,49,175,154,147,12,130,178,101,203,22,243,230,155,111 \
,154,235,174,187,206,68,71,71,91,47,24,79,101,41,83,166,140,185,240,194,11,205,160,65,131,204,148,41,83,204,142,29,59,2,41,52,141,113,47,163,93,103,140,121,220,24,83,33,40,7,66 \
,68,68,68,36,132,28,219,1,68,164,244,50,198,220,4,140,2,154,114,130,191,71,217,217,217,44,95,190,156,217,179,103,179,120,241,98,86,174,92,73,98,98,98,200,114,6,162,76,153,50,52 \
,107,214,140,184,184,56,90,183,110,77,92,92,28,205,155,55,39,50,50,224,171,28,15,2,139,129,247,128,169,142,227,228,4,45,172,136,136,136,72,136,169,240,20,17,235,140,49,149,129,161,192 \
,109,192,89,4,240,183,105,199,142,29,172,88,177,130,21,43,86,176,118,237,90,54,111,222,204,230,205,155,217,189,123,119,208,114,70,68,68,80,179,102,77,26,54,108,72,147,38,77,56,231,156 \
,115,104,218,180,41,77,154,52,161,65,131,6,68,68,68,20,228,199,101,2,155,129,239,128,87,29,199,249,61,40,161,69,68,68,68,138,0,21,158,34,82,164,24,99,98,128,225,64,47,160,1 \
,16,94,144,253,15,30,60,200,230,205,155,217,182,109,27,251,247,239,103,223,190,125,236,223,191,63,239,251,140,140,140,188,199,230,228,228,112,224,192,1,34,35,35,137,138,138,162,106,213,170,68 \
,69,69,17,21,21,69,229,202,149,137,137,137,161,86,173,90,212,174,93,155,51,206,56,131,26,53,106,16,22,118,202,211,99,102,0,191,3,115,128,241,142,227,172,56,213,31,36,34,34,34,82 \
,220,168,240,20,145,34,203,24,227,0,87,2,119,0,29,128,154,20,143,191,91,217,192,78,96,13,48,15,247,210,217,13,86,19,137,136,136,136,88,84,28,222,192,137,136,0,96,140,9,3,58 \
,1,87,3,237,129,115,128,170,192,41,119,67,158,166,108,224,0,144,4,108,0,150,3,159,57,142,179,206,82,30,17,17,17,145,34,73,133,167,136,20,123,198,152,218,184,61,162,173,128,115,113 \
,47,209,141,1,162,128,72,160,12,129,95,178,235,27,149,54,27,247,242,216,52,96,31,110,15,230,118,96,11,176,22,248,222,113,156,157,133,247,42,68,68,68,68,74,46,21,158,34,82,106,24 \
,99,42,1,213,143,179,249,136,227,56,69,107,168,92,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17 \
,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,41,124,142,237,0,34,82,100,61,7,12,180,29,162,20,250,2,184,43,132,207,247,35,112,110,8,159,47,16,89,64,134 \
,103,221,0,105,185,95,125,14,251,61,38,27,72,201,125,92,50,112,0,216,149,187,236,6,118,2,59,128,237,65,75,45,0,127,0,81,182,67,248,233,5,44,176,29,162,0,28,96,18,208,195 \
,118,144,2,248,16,120,192,118,8,17,41,218,34,108,7,16,145,34,171,49,80,205,118,136,82,168,105,136,159,175,9,165,239,56,27,32,7,183,192,61,140,91,164,238,199,45,82,183,3,27,128 \
,149,192,210,220,109,18,184,58,182,3,228,35,214,118,128,2,136,193,61,239,26,218,14,82,0,19,129,7,109,135,16,145,162,79,133,167,136,136,148,54,14,16,158,187,68,2,209,192,89,199,121 \
,108,14,112,8,183,183,212,87,144,206,3,126,0,50,131,29,84,74,149,46,192,215,64,121,203,57,2,149,5,244,199,45,60,69,68,78,74,133,167,136,4,228,219,111,191,165,122,245,234,182,99 \
,148,56,27,55,110,228,150,91,110,177,29,3,128,198,141,27,51,121,242,100,219,49,142,145,154,154,74,102,230,255,106,188,140,140,12,210,210,210,142,122,204,254,253,251,243,190,166,166,166,114,240 \
,224,193,188,37,57,57,57,239,251,212,212,84,82,82,82,72,78,78,198,24,67,0,194,128,138,64,163,220,229,74,224,49,220,94,211,3,184,197,232,66,224,191,184,69,169,228,186,246,218,107,25 \
,57,114,100,200,159,247,245,215,95,231,131,15,62,8,249,243,158,166,39,114,151,188,91,160,58,117,234,196,232,209,163,41,91,182,172,181,80,198,24,198,140,25,147,223,223,133,125,192,197,192,111 \
,161,79,37,34,197,149,10,79,17,9,72,243,230,205,57,227,140,51,108,199,40,113,202,148,41,99,59,66,158,168,168,40,226,226,226,108,199,8,153,228,228,100,118,236,216,193,174,93,187,216,177 \
,99,7,59,119,238,36,49,49,145,132,132,4,18,18,18,216,186,117,43,73,73,73,199,43,80,29,220,158,210,182,185,203,96,220,123,78,55,1,51,129,49,148,242,251,73,171,87,175,110,229,124 \
,42,102,127,167,202,0,179,128,206,222,198,193,131,7,243,194,11,47,16,17,97,239,109,218,193,131,7,185,235,174,187,152,58,117,170,255,166,197,64,87,32,61,244,169,68,164,56,83,225,41,34 \
,34,165,82,116,116,52,209,209,209,52,109,122,252,219,106,143,28,57,194,166,77,155,88,191,126,61,235,215,175,103,237,218,181,252,242,203,47,172,91,183,142,236,236,108,255,135,151,5,206,203,93 \
,6,3,123,129,239,113,7,234,82,111,168,248,59,27,88,130,231,30,212,138,21,43,242,238,187,239,210,187,119,111,123,169,128,245,235,215,115,253,245,215,179,110,221,58,111,179,1,158,7,70,216 \
,73,37,34,197,157,10,79,17,17,145,227,136,140,140,164,89,179,102,52,107,214,236,168,246,212,212,84,86,174,92,201,178,101,203,152,63,127,62,243,231,207,207,187,220,215,35,6,184,41,119,217 \
,7,76,3,254,137,123,191,168,148,110,125,112,47,207,206,123,31,214,164,73,19,166,77,155,118,204,185,22,106,211,166,77,227,206,59,239,228,224,193,131,222,230,35,192,181,184,189,249,34,34,167 \
,36,204,118,0,17,17,145,226,166,98,197,138,116,236,216,145,135,31,126,152,207,63,255,156,61,123,246,176,98,197,10,94,120,225,5,58,116,232,64,120,120,184,255,46,213,128,1,64,34,240,11 \
,112,117,168,51,75,145,241,46,48,25,79,209,121,221,117,215,241,211,79,63,89,45,58,179,178,178,24,58,116,40,55,221,116,147,127,209,153,0,212,71,69,167,136,156,38,21,158,34,34,34,167 \
,41,44,44,140,11,47,188,144,33,67,134,176,96,193,2,146,146,146,120,239,189,247,232,214,173,27,97,97,71,253,87,235,0,23,0,211,113,47,197,125,4,205,169,93,90,84,1,214,224,142,4 \
,11,64,120,120,56,163,71,143,102,218,180,105,84,174,92,217,90,176,221,187,119,115,249,229,151,243,239,127,255,219,255,158,230,207,113,47,9,86,47,189,136,156,54,21,158,34,34,34,133,44,54 \
,54,150,187,238,186,139,217,179,103,179,109,219,54,158,127,254,121,26,53,106,228,255,176,106,192,139,184,163,227,62,134,10,208,146,172,45,238,96,83,231,249,26,98,99,99,153,57,115,38,195,134 \
,13,195,113,236,29,250,165,75,151,210,170,85,43,190,255,254,123,111,115,14,238,220,156,215,229,126,47,34,114,218,84,120,138,136,136,4,81,237,218,181,25,58,116,40,191,253,246,27,95,127,253 \
,53,87,92,113,133,127,161,81,9,120,26,247,62,208,91,173,132,148,96,122,4,119,36,216,138,190,134,182,109,219,18,31,31,79,183,110,221,236,165,2,222,122,235,45,58,119,238,204,246,237,71 \
,13,192,156,2,180,1,198,218,73,37,34,37,149,10,79,17,17,145,16,8,11,11,227,138,43,174,224,235,175,191,102,213,170,85,220,116,211,77,254,151,225,70,3,31,226,78,201,98,119,132,25 \
,41,12,225,192,215,184,189,218,121,7,250,111,127,251,27,243,231,207,167,110,221,186,214,130,29,62,124,152,59,239,188,147,123,238,185,135,35,71,142,120,55,253,2,212,6,86,216,73,38,34,37 \
,153,10,79,17,17,145,16,107,222,188,57,83,166,76,97,245,234,213,92,125,245,49,227,12,53,4,86,3,239,160,255,167,139,171,58,192,54,224,10,95,67,249,242,229,25,63,126,60,111,189,245 \
,22,145,145,145,214,130,109,217,178,133,75,46,185,132,15,62,248,192,127,211,91,64,11,32,53,228,161,68,164,84,208,127,104,34,34,34,150,156,119,222,121,76,159,62,157,217,179,103,211,162,69 \
,11,239,38,7,119,20,220,157,64,156,149,112,114,170,174,1,126,7,206,244,53,52,104,208,128,133,11,23,114,199,29,119,88,11,5,240,237,183,223,210,186,117,107,86,174,60,106,90,217,76,220 \
,41,127,238,177,147,74,68,74,11,21,158,34,34,34,150,117,235,214,141,229,203,151,243,202,43,175,80,177,98,69,239,166,234,192,50,220,123,64,165,232,123,22,119,36,216,178,190,134,43,174,184 \
,130,229,203,151,115,225,133,23,90,11,101,140,225,249,231,159,167,103,207,158,236,219,183,207,187,105,23,208,20,152,106,39,153,136,148,38,42,60,69,68,68,138,128,136,136,8,30,124,240,65,86 \
,173,90,69,231,206,157,189,155,28,220,81,111,151,1,229,172,132,147,147,41,15,44,7,70,144,59,58,113,88,88,24,255,252,231,63,249,242,203,47,169,86,173,154,181,96,201,201,201,92,115,205 \
,53,12,31,62,156,156,156,163,6,168,157,131,123,63,231,102,59,201,68,164,180,81,225,41,34,34,82,132,52,108,216,144,57,115,230,240,212,83,79,17,17,17,225,221,212,26,72,192,115,9,167 \
,20,9,205,129,36,60,151,68,87,173,90,149,233,211,167,51,106,212,40,255,1,164,66,234,151,95,126,161,117,235,214,124,249,229,151,222,102,3,60,14,252,5,200,178,18,76,68,74,37,21,158 \
,34,34,34,69,76,120,120,56,143,63,254,56,243,230,205,227,140,51,206,240,110,170,129,59,234,109,59,59,201,196,207,223,113,71,128,173,226,107,104,217,178,37,203,150,45,163,103,207,158,246,82 \
,1,147,38,77,162,125,251,246,252,254,251,239,222,230,67,64,39,224,25,59,169,68,164,52,83,225,41,34,34,82,68,93,114,201,37,44,91,182,140,86,173,90,121,155,203,3,139,128,59,172,132 \
,18,112,47,167,253,8,248,15,238,180,41,0,220,118,219,109,44,92,184,144,134,13,27,90,11,150,149,149,197,240,225,195,136,18,57,6,0,0,32,0,73,68,65,84,233,219,183,47,135,14,29 \
,242,110,74,0,234,3,63,90,9,38,34,165,158,10,79,17,17,145,34,172,118,237,218,204,155,55,207,191,7,45,12,24,15,12,181,147,170,84,171,129,123,95,228,45,190,134,178,101,203,242,198 \
,27,111,48,105,210,36,162,162,162,172,5,75,76,76,164,115,231,206,60,255,252,243,254,155,62,4,26,0,187,67,159,74,68,196,21,113,242,135,136,136,216,145,153,153,201,200,145,35,109,199,8 \
,170,221,187,245,62,240,215,95,127,101,210,164,73,167,188,127,153,50,101,242,70,130,141,138,138,162,90,181,106,196,196,196,80,163,70,13,170,87,175,78,108,108,44,229,203,151,47,172,184,86,84 \
,170,84,137,47,190,248,130,135,31,126,152,177,99,199,122,55,249,42,140,23,44,196,42,141,254,2,204,192,51,200,83,157,58,117,248,244,211,79,185,232,162,139,236,165,2,230,207,159,79,239,222 \
,189,217,177,99,135,183,57,27,119,90,158,241,118,82,137,136,252,143,10,79,17,41,178,50,51,51,243,251,228,94,74,152,223,126,251,45,232,199,185,78,157,58,52,110,220,152,70,141,26,209,168 \
,81,35,90,180,104,65,187,118,237,136,142,142,14,234,243,22,166,240,240,112,94,125,245,85,98,99,99,253,63,144,121,30,72,1,222,178,147,172,212,120,26,248,7,185,163,214,2,92,122,233,165 \
,124,252,241,199,212,168,81,195,94,42,224,229,151,95,102,232,208,161,100,101,29,53,86,208,62,160,3,176,206,78,42,17,145,163,169,240,20,17,145,18,111,251,246,237,108,223,190,157,185,115,231 \
,230,181,57,142,67,147,38,77,104,215,174,29,157,58,117,162,103,207,158,212,172,89,211,98,202,192,60,254,248,227,0,254,197,231,155,192,54,224,107,11,145,74,186,178,192,247,192,37,190,6,199 \
,113,120,244,209,71,121,246,217,103,253,71,30,14,169,212,212,84,238,190,251,110,62,249,228,19,255,77,75,129,46,64,122,200,67,137,136,28,135,10,79,17,41,78,82,129,113,182,67,4,217,2 \
,219,1,138,128,95,129,89,5,120,124,5,192,119,99,93,21,160,26,16,147,251,189,111,219,49,255,223,25,99,88,191,126,61,235,215,175,103,194,132,9,132,133,133,209,186,117,107,174,190,250,106 \
,110,186,233,38,154,52,105,114,122,175,34,136,30,127,252,113,246,239,223,207,152,49,99,124,77,14,240,5,112,30,176,209,90,176,146,231,28,220,129,156,98,124,13,149,42,85,98,252,248,241,220 \
,112,195,13,246,82,1,27,54,108,224,250,235,175,103,205,154,53,222,102,3,188,136,238,253,21,17,17,145,98,100,42,238,155,24,3,152,196,196,68,19,106,105,105,105,198,155,1,248,195,226,239 \
,163,164,218,77,238,239,183,69,139,22,33,63,198,198,24,51,117,234,84,255,227,252,126,16,94,103,37,160,39,240,47,220,94,193,237,184,115,24,250,63,183,1,140,227,56,166,115,231,206,230,195 \
,15,63,52,135,15,31,182,242,123,57,153,236,236,108,211,187,119,111,255,236,187,129,200,32,252,254,2,149,151,165,127,255,254,86,126,47,35,70,140,240,255,157,92,127,138,175,165,47,144,233,253 \
,89,231,158,123,174,89,183,110,157,149,215,229,245,217,103,159,153,202,149,43,251,191,206,116,224,138,211,59,124,34,34,193,163,81,109,69,68,164,52,56,8,124,5,252,19,184,18,168,131,219,11 \
,218,14,119,74,140,4,220,55,239,128,219,27,250,195,15,63,112,219,109,183,81,183,110,93,70,143,30,77,90,90,154,133,216,199,23,22,22,198,248,241,227,253,167,90,169,14,204,180,20,169,164 \
,112,128,15,128,137,120,122,202,111,186,233,38,150,46,93,74,211,166,77,109,229,34,59,59,155,17,35,70,112,253,245,215,147,146,146,226,221,244,7,238,168,181,223,216,73,38,34,114,114,42,60 \
,69,68,164,52,251,9,184,23,119,126,195,10,192,35,192,239,222,7,236,217,179,135,17,35,70,208,176,97,67,94,125,245,85,142,28,57,18,250,148,199,81,190,124,121,166,77,155,70,76,76,140 \
,183,185,51,238,72,166,82,112,209,184,131,241,220,238,107,136,136,136,224,197,23,95,228,147,79,62,161,82,165,74,214,130,237,217,179,135,30,61,122,48,122,244,104,140,49,222,77,51,112,139,206 \
,36,59,201,68,68,2,163,194,83,68,68,196,117,24,24,3,52,194,125,35,63,21,247,82,75,0,118,238,220,201,67,15,61,68,92,92,28,63,253,244,147,165,136,199,170,95,191,62,111,191,253 \
,182,127,243,27,120,238,75,148,128,92,130,123,9,118,222,205,189,53,107,214,100,214,172,89,60,242,200,35,56,142,115,252,61,131,108,217,178,101,196,197,197,49,123,246,108,111,115,14,240,16,112 \
,13,238,180,41,34,34,69,154,10,79,17,17,145,99,109,5,110,194,237,1,251,47,158,55,246,107,214,172,225,226,139,47,102,216,176,97,69,166,247,243,134,27,110,224,246,219,111,247,54,149,1 \
,62,179,20,167,56,26,142,59,176,87,5,95,67,251,246,237,137,143,143,167,75,151,46,214,66,1,140,27,55,142,142,29,59,178,109,219,54,111,243,65,160,45,240,170,157,84,34,34,5,167,194 \
,83,68,68,228,248,14,1,253,112,123,15,231,249,26,179,179,179,121,225,133,23,232,218,181,43,187,118,237,178,149,237,40,99,198,140,33,54,54,214,219,212,17,232,110,41,78,113,17,1,124,7 \
,60,135,103,126,206,65,131,6,49,111,222,60,106,215,174,109,45,88,122,122,58,253,251,247,103,224,192,129,254,31,112,252,10,212,6,226,237,36,19,17,57,53,42,60,69,68,68,78,238,0,112 \
,41,112,51,110,49,10,192,162,69,139,104,215,174,29,171,87,175,182,22,204,167,90,181,106,60,255,252,243,254,205,239,217,200,82,76,156,133,59,40,207,101,190,134,168,168,40,254,251,223,255,242 \
,250,235,175,83,182,108,89,107,193,18,18,18,232,208,161,3,239,191,127,204,0,207,239,0,23,224,246,120,138,136,20,43,42,60,69,68,68,2,247,41,80,11,207,92,153,91,183,110,165,99,199 \
,142,172,88,177,194,94,170,92,183,223,126,59,45,91,182,244,54,213,193,237,177,149,163,221,128,123,12,107,249,26,26,54,108,200,162,69,139,248,235,95,255,106,47,21,240,221,119,223,17,23,23 \
,71,124,252,81,29,154,153,64,31,224,111,118,82,137,136,156,62,21,158,34,34,34,5,115,16,104,138,59,31,40,0,7,14,28,160,71,143,30,252,246,219,111,246,82,225,78,177,242,204,51,207 \
,248,55,31,211,13,90,202,189,129,59,112,84,25,95,195,85,87,93,197,242,229,203,105,209,162,133,181,80,198,24,158,121,230,25,174,188,242,74,246,238,221,235,221,180,11,247,124,251,196,78,50 \
,17,145,194,161,194,83,68,68,164,224,114,128,158,192,100,95,195,238,221,187,233,222,189,59,73,73,118,103,181,184,242,202,43,105,211,166,141,183,169,22,208,195,82,156,162,164,34,176,10,119,250 \
,28,192,45,212,255,245,175,127,49,125,250,116,162,163,163,173,5,59,112,224,0,189,122,245,226,241,199,31,39,59,251,168,1,106,231,225,246,90,111,182,18,76,68,164,16,169,240,20,17,17,57 \
,117,183,226,14,78,3,192,182,109,219,232,215,175,31,57,57,57,22,35,193,195,15,63,236,223,84,218,123,61,91,1,127,2,121,93,154,49,49,49,124,245,213,87,140,28,57,210,234,84,41,171 \
,87,175,166,77,155,54,76,159,62,221,219,108,128,39,113,239,43,206,204,111,63,17,145,226,70,133,167,136,136,200,233,233,1,108,240,173,204,158,61,155,151,94,122,201,98,28,184,241,198,27,253 \
,71,100,189,128,210,59,175,231,77,192,50,160,178,175,161,85,171,86,44,95,190,156,30,61,236,118,4,79,158,60,153,246,237,219,179,113,227,70,111,243,97,220,130,115,148,157,84,34,34,193,161 \
,194,83,68,68,228,244,24,160,51,144,225,107,120,252,241,199,89,191,126,189,181,64,17,17,17,244,237,219,215,219,228,0,143,89,138,99,91,31,60,239,119,238,188,243,78,22,46,92,72,253,250 \
,245,173,5,202,204,204,228,161,135,30,226,214,91,111,37,45,45,205,187,233,119,160,46,240,131,157,100,34,34,193,163,194,83,68,68,228,244,237,0,6,250,86,50,50,50,24,49,98,132,197,56 \
,238,8,183,126,122,219,200,81,84,68,70,70,242,246,219,111,243,254,251,239,83,174,92,57,107,57,146,146,146,232,218,181,43,175,190,250,170,255,166,143,129,198,192,222,99,247,18,17,41,254,84 \
,120,138,136,136,20,142,9,192,38,223,202,231,159,127,206,162,69,139,172,133,105,218,180,41,231,157,119,158,183,233,76,32,214,82,28,171,234,213,171,199,130,5,11,24,56,112,224,201,31,28,68 \
,63,254,248,35,113,113,113,252,248,227,143,222,230,108,96,0,112,11,110,239,185,136,72,137,20,97,59,128,136,72,1,68,3,99,108,135,8,130,209,184,83,38,72,241,215,23,88,236,91,25,53 \
,106,20,51,103,206,180,22,230,218,107,175,101,237,218,181,222,166,129,192,49,243,173,148,100,127,249,203,95,152,60,121,50,213,171,87,183,154,227,213,87,95,101,200,144,33,100,102,30,53,86,208 \
,126,160,35,176,198,78,42,17,145,208,81,225,41,34,197,73,69,96,176,237,16,65,48,29,21,158,37,197,18,96,53,238,96,62,204,158,61,155,173,91,183,90,187,159,176,71,143,30,60,247,220 \
,115,222,166,107,40,37,133,167,227,56,12,31,62,156,167,158,122,138,240,240,112,107,57,210,210,210,24,48,96,0,147,39,79,246,223,180,28,232,132,59,152,144,136,72,137,167,75,109,69,68,68 \
,10,215,179,190,111,114,114,114,24,63,126,188,181,32,109,219,182,245,191,159,177,153,173,44,161,84,185,114,101,254,239,255,254,143,103,159,125,214,106,209,185,113,227,70,218,183,111,239,95,116,26 \
,220,43,55,218,160,162,83,68,74,17,245,120,138,72,145,85,166,76,25,134,13,27,102,59,70,161,155,61,123,54,241,241,241,182,99,72,240,76,1,222,3,162,0,38,78,156,200,168,81,118,102 \
,198,40,87,174,28,109,218,180,97,193,130,5,190,166,10,184,211,170,148,216,1,108,206,61,247,92,150,45,91,198,57,231,156,99,53,199,244,233,211,233,215,175,31,7,14,28,240,54,103,0,55 \
,0,95,218,73,37,34,98,143,10,79,17,41,178,202,148,41,195,232,209,163,109,199,40,116,15,62,248,160,10,207,146,45,7,152,11,244,4,216,186,117,43,27,55,110,164,113,227,198,86,194,156 \
,127,254,249,222,194,19,224,66,96,182,149,48,33,224,55,141,76,200,101,103,103,243,196,19,79,240,236,179,207,98,204,81,99,5,109,7,218,1,137,118,146,137,136,216,165,75,109,69,68,68,10 \
,223,71,222,149,239,191,255,222,86,14,154,52,105,226,223,212,201,70,142,210,96,239,222,189,244,236,217,147,103,158,121,198,191,232,252,22,168,143,138,78,17,41,197,84,120,138,136,136,20,190,47 \
,240,76,141,97,179,240,108,218,180,169,127,83,43,27,57,74,186,248,248,120,226,226,226,252,71,49,206,1,30,5,174,192,157,54,69,68,164,212,82,225,41,34,34,82,248,210,128,61,190,149,159 \
,127,254,217,90,144,124,10,79,59,215,252,150,96,239,191,255,62,29,58,116,32,33,33,193,219,156,10,180,7,94,178,147,74,68,164,104,81,225,41,34,34,18,28,219,125,223,108,217,178,133,236 \
,108,59,29,94,117,235,214,165,124,249,242,222,166,90,86,130,148,64,71,142,28,97,224,192,129,244,239,223,159,244,244,116,239,166,181,64,109,224,39,59,201,68,68,138,30,21,158,34,34,34,193 \
,177,209,247,77,70,70,134,127,111,88,200,132,133,133,17,19,19,227,109,138,180,18,164,132,217,190,125,59,93,186,116,97,220,184,113,254,155,38,225,78,91,147,18,250,84,34,34,69,151,10,79 \
,17,17,145,224,88,229,93,217,178,101,139,173,28,84,174,92,217,187,90,198,86,142,146,98,246,236,217,92,120,225,133,44,89,178,196,219,156,5,220,6,216,29,86,87,68,164,136,210,116,42,34 \
,34,34,193,241,167,119,197,111,62,199,144,170,84,169,146,119,53,44,119,201,177,147,166,120,251,228,147,79,184,237,182,219,252,47,157,206,192,237,229,220,100,39,149,136,72,209,167,30,79,17,17 \
,145,224,216,227,93,73,75,75,179,149,131,138,21,43,30,211,100,35,71,73,112,237,181,215,114,199,29,119,248,55,151,5,62,5,162,66,30,72,68,164,152,80,225,41,34,34,18,28,123,189,43 \
,169,169,169,182,114,248,247,120,130,10,207,83,86,174,92,57,222,125,247,93,38,76,152,224,63,104,83,75,32,41,247,171,136,136,248,81,225,41,34,34,18,28,71,117,113,102,100,100,216,202,65 \
,100,228,49,227,9,105,128,161,211,212,175,95,63,230,206,157,75,157,58,117,188,205,149,129,229,192,0,59,169,68,68,138,46,21,158,34,34,34,193,81,221,187,82,161,66,5,91,57,242,235,109 \
,181,215,253,90,130,180,107,215,142,149,43,87,210,173,91,55,111,115,56,240,14,240,57,122,159,37,34,146,71,127,16,69,68,68,130,163,154,119,197,102,225,121,240,224,65,255,38,21,158,133,164 \
,122,245,234,124,251,237,183,12,27,54,204,127,211,181,192,22,32,54,244,169,68,68,138,30,21,158,34,34,34,193,113,84,143,103,62,3,252,132,140,95,143,167,1,14,91,138,82,34,69,68,68 \
,48,122,244,104,62,250,232,35,255,15,24,234,1,91,129,75,172,4,19,17,41,66,84,120,138,136,136,4,71,99,239,74,245,234,213,143,247,184,160,243,43,60,179,143,247,56,57,61,183,220,114 \
,11,139,22,45,162,97,195,134,222,230,40,96,62,48,212,78,42,17,145,162,65,133,167,136,136,72,112,156,239,93,105,220,184,241,241,30,23,116,126,151,218,102,217,202,81,26,52,111,222,156,101 \
,203,150,113,229,149,87,122,155,195,128,231,129,175,113,239,1,21,17,41,117,34,108,7,16,17,57,158,156,156,28,86,174,92,105,59,70,161,219,181,107,151,237,8,18,26,121,221,94,85,171,86 \
,181,214,227,121,228,200,17,255,115,206,222,132,162,165,68,213,170,85,153,49,99,6,163,70,141,226,169,167,158,194,24,227,219,116,5,238,165,183,109,113,167,94,17,17,41,53,84,120,138,72,145 \
,149,158,158,78,235,214,173,109,199,16,57,85,181,125,223,216,236,237,220,180,105,19,217,217,71,93,93,251,135,173,44,161,96,140,193,113,28,219,49,8,11,11,99,212,168,81,180,110,221,154,126 \
,253,250,145,156,156,236,219,84,7,119,208,161,235,128,111,172,5,20,17,9,49,93,106,43,34,34,82,248,26,224,222,219,7,64,251,246,237,173,5,89,191,126,189,127,211,58,27,57,66,229,229 \
,151,95,102,206,156,57,182,99,228,185,250,234,171,249,233,167,159,56,255,252,163,174,188,142,4,190,2,158,179,147,74,68,36,244,212,227,41,34,197,73,14,144,124,210,71,21,63,251,109,7,144 \
,66,119,135,119,165,107,215,174,150,98,192,111,191,253,230,223,180,204,70,142,80,217,179,103,15,151,95,126,57,207,62,251,44,67,134,12,41,18,189,159,141,27,55,102,241,226,197,220,125,247,221 \
,124,242,201,39,190,102,7,24,14,116,0,186,1,25,182,242,137,136,132,130,10,79,17,41,78,18,129,186,182,67,136,4,160,151,239,155,240,240,112,58,119,238,108,45,72,62,133,231,2,27,57 \
,66,41,59,59,155,97,195,134,177,108,217,50,222,127,255,125,42,85,170,100,59,18,21,43,86,100,242,228,201,180,105,211,134,225,195,135,147,149,149,55,198,83,7,224,79,160,61,176,201,90,64 \
,17,145,32,211,165,182,34,34,34,133,171,42,112,129,111,165,83,167,78,84,169,82,197,90,152,85,171,86,249,55,173,181,145,195,134,169,83,167,114,209,69,23,229,87,124,91,225,56,14,143,60 \
,242,8,223,125,247,29,177,177,177,222,77,213,113,143,75,111,59,201,68,68,130,79,133,167,136,136,72,225,122,28,247,50,74,0,238,186,235,46,107,65,246,239,223,207,175,191,254,234,109,218,11 \
,28,178,20,199,138,181,107,215,210,182,109,91,62,255,252,115,219,81,242,92,122,233,165,196,199,199,211,166,77,27,111,115,25,224,99,224,63,118,82,137,136,4,151,10,79,17,17,145,194,19,6 \
,228,85,154,209,209,209,220,112,195,13,214,194,44,88,176,128,156,156,28,111,83,188,173,44,54,165,164,164,112,253,245,215,243,216,99,143,249,143,240,107,77,221,186,117,89,176,96,1,119,223,125 \
,183,255,166,191,3,171,240,12,78,37,34,82,18,168,240,20,17,17,41,60,35,128,104,223,202,157,119,222,73,249,242,229,173,133,249,234,171,175,252,155,38,219,200,81,20,24,99,120,246,217,103 \
,233,217,179,39,251,246,237,179,29,7,128,200,200,72,198,141,27,199,59,239,188,67,100,100,164,119,83,11,220,121,62,91,216,73,38,34,82,248,84,120,138,136,136,20,142,178,192,99,190,149,74 \
,149,42,49,108,216,48,107,97,114,114,114,152,49,99,198,81,77,192,20,75,113,108,250,55,112,196,183,50,115,230,76,90,182,108,201,178,101,69,103,112,223,1,3,6,176,104,209,34,234,215,175 \
,239,109,174,140,219,67,253,55,43,161,68,68,10,153,10,79,17,17,145,194,49,25,200,235,222,28,58,116,40,53,107,214,180,22,102,225,194,133,36,37,37,121,155,54,80,202,238,239,204,181,4 \
,119,94,213,237,190,134,63,254,248,131,206,157,59,51,113,226,68,123,169,252,180,106,213,138,165,75,151,210,165,75,23,111,115,56,240,22,238,185,101,127,94,24,17,145,211,160,194,83,68,68,228 \
,244,221,4,92,239,91,57,251,236,179,25,60,120,176,197,56,48,97,194,4,255,166,119,108,228,40,34,146,128,250,64,222,181,199,135,15,31,230,246,219,111,231,190,251,238,35,35,163,104,76,161 \
,89,163,70,13,102,205,154,197,195,15,63,236,191,169,15,238,7,7,213,66,159,74,68,164,112,168,240,20,17,17,57,61,117,128,255,250,86,34,34,34,152,52,105,18,21,42,84,176,22,232,224 \
,193,131,124,250,233,167,222,166,44,52,90,106,54,112,21,48,4,247,178,99,0,222,120,227,13,186,118,237,74,98,98,162,181,96,94,17,17,17,188,244,210,75,76,158,60,217,255,28,106,4,252 \
,1,92,98,39,153,136,200,233,81,225,41,34,34,114,234,98,128,95,129,188,145,97,158,120,226,9,218,183,111,111,47,17,48,126,252,120,82,82,82,188,77,243,129,116,75,113,138,154,23,129,14 \
,64,154,175,97,225,194,133,180,110,221,154,31,127,252,209,94,42,63,125,250,244,97,241,226,197,52,106,212,200,219,28,5,44,0,236,221,60,44,34,114,138,84,120,138,136,136,156,154,202,192,90 \
,160,138,175,225,134,27,110,96,196,136,17,246,18,1,217,217,217,140,29,59,214,191,249,33,27,89,138,176,197,184,61,213,27,124,13,73,73,73,116,237,218,149,215,94,123,205,94,42,63,23,92 \
,112,1,203,150,45,163,103,207,158,222,102,7,24,13,124,131,123,15,168,136,72,177,160,194,83,68,68,164,224,154,0,219,128,26,190,134,238,221,187,243,209,71,31,17,30,110,183,22,152,48,97 \
,2,191,255,254,187,183,105,3,176,218,82,156,162,44,25,104,10,124,232,107,200,204,204,228,129,7,30,160,111,223,190,28,58,84,52,198,97,138,142,142,102,250,244,233,60,241,196,19,132,133,29 \
,245,182,173,7,144,0,156,105,39,153,136,72,193,168,240,20,17,17,41,152,107,112,11,185,188,158,206,142,29,59,242,127,255,247,127,148,45,91,214,94,42,32,61,61,157,81,163,70,249,55,15 \
,176,145,165,152,48,192,95,129,187,113,239,1,5,96,210,164,73,92,114,201,37,108,222,188,217,90,48,175,176,176,48,158,124,242,73,190,248,226,11,162,163,163,189,155,106,3,155,129,43,236,36 \
,19,17,9,156,10,79,17,17,145,192,68,2,211,129,47,128,50,190,198,191,254,245,175,204,154,53,203,234,96,66,62,47,188,240,2,219,182,109,243,54,253,130,123,127,167,156,216,123,64,11,220 \
,94,80,0,86,173,90,69,155,54,109,248,246,219,111,237,165,242,115,213,85,87,177,108,217,50,46,184,224,2,111,115,36,238,104,189,163,237,164,18,17,9,140,10,79,17,17,145,147,235,3,236 \
,6,174,246,53,132,133,133,241,212,83,79,49,113,226,68,34,35,35,143,191,103,136,108,222,188,153,209,163,143,170,61,12,112,139,165,56,197,209,26,220,203,86,227,125,13,251,246,237,163,103,207 \
,158,60,253,244,211,24,99,236,37,243,104,212,168,17,139,23,47,166,79,159,62,222,102,7,119,192,161,133,128,221,110,119,17,145,227,80,225,41,34,34,114,124,127,1,126,7,38,3,149,124,141 \
,13,26,52,96,246,236,217,60,254,248,227,56,142,99,45,156,79,78,78,14,119,223,125,55,135,15,31,246,54,127,136,59,248,145,4,238,48,208,26,120,9,183,112,39,39,39,135,145,35,71,114 \
,245,213,87,147,156,156,124,194,157,67,165,66,133,10,76,158,60,153,183,223,126,155,50,101,202,120,55,93,12,236,192,189,119,85,68,164,72,81,225,41,34,34,114,180,112,96,56,176,29,152,5 \
,156,237,219,16,22,22,198,3,15,60,192,175,191,254,202,165,151,94,106,43,223,49,94,126,249,101,230,206,157,235,109,74,193,189,111,81,78,205,163,192,77,64,166,175,225,171,175,190,162,93,187 \
,118,172,89,179,198,94,42,63,3,7,14,228,187,239,190,163,70,141,26,222,230,170,184,247,32,247,201,127,47,17,17,59,84,120,138,136,136,184,151,42,222,8,204,198,237,245,122,14,119,224,22 \
,119,163,227,208,171,87,47,126,254,249,103,94,125,245,85,162,162,162,44,197,60,214,210,165,75,121,236,177,199,188,77,6,119,0,164,35,118,18,149,24,211,128,198,192,78,95,195,134,13,27,184 \
,232,162,139,152,50,101,138,189,84,126,186,116,233,66,124,124,60,109,219,182,245,54,71,224,246,210,191,109,39,149,136,200,177,84,120,138,136,72,105,213,10,120,1,248,25,200,0,62,5,186,225 \
,25,56,40,60,60,156,171,174,186,138,165,75,151,242,217,103,159,113,254,249,231,219,73,122,28,59,119,238,228,198,27,111,228,200,145,163,106,204,119,129,31,44,69,42,105,18,112,231,251,204,235 \
,78,78,77,77,165,79,159,62,12,25,50,132,172,172,44,123,201,60,234,212,169,195,252,249,243,25,48,224,152,1,140,7,226,158,223,21,67,159,74,68,228,104,42,60,69,68,164,164,107,8,220 \
,9,188,9,204,195,189,132,54,11,119,16,153,33,64,115,220,30,162,60,103,158,121,38,35,71,142,100,243,230,205,204,152,49,131,54,109,218,132,54,113,0,14,29,58,68,175,94,189,216,190,125 \
,187,183,121,45,240,55,75,145,74,170,44,160,43,240,36,185,247,125,26,99,120,241,197,23,233,222,189,59,187,119,239,182,153,45,79,100,100,36,239,188,243,14,227,198,141,243,31,236,170,57,240 \
,39,208,210,78,50,17,17,87,196,201,31,34,34,82,100,84,7,190,182,29,34,68,38,3,255,181,29,194,146,203,8,236,56,135,3,149,115,191,47,143,59,154,103,153,220,182,40,160,92,238,99 \
,2,26,253,231,236,179,207,230,234,171,175,230,154,107,174,161,83,167,78,68,68,20,221,255,34,179,179,179,233,211,167,15,75,150,44,241,54,167,224,14,46,83,52,134,95,45,121,70,1,11,112 \
,167,46,41,7,48,119,238,92,226,226,226,152,58,117,170,255,165,174,214,220,125,247,221,52,111,222,156,27,111,188,145,63,254,248,195,215,92,25,88,14,220,7,188,101,45,156,136,148,106,69,247 \
,127,85,17,145,99,149,163,244,76,148,126,132,210,91,120,214,201,93,130,234,156,115,206,161,93,187,118,180,107,215,142,46,93,186,208,172,89,179,96,63,101,161,200,206,206,166,111,223,190,204,152 \
,49,195,219,156,1,180,1,14,216,73,85,106,124,15,156,5,44,5,234,3,252,241,199,31,116,234,212,137,215,95,127,157,187,239,46,26,227,57,181,109,219,150,248,248,120,122,247,238,237,29,116 \
,42,28,248,15,112,41,238,192,67,250,128,66,68,66,74,133,167,136,136,148,88,213,170,85,163,86,173,90,52,106,212,136,198,141,27,231,45,45,90,180,32,38,38,198,118,188,2,203,204,204,164 \
,95,191,126,124,252,241,199,222,230,108,220,105,95,54,216,73,85,234,236,194,189,124,123,42,112,29,192,145,35,71,24,48,96,0,63,253,244,19,175,189,246,90,145,152,215,53,54,54,150,239,190 \
,251,142,225,195,135,243,210,75,47,121,55,221,12,196,1,109,129,125,86,194,137,72,169,164,194,83,68,138,172,178,101,203,242,246,219,165,99,80,198,117,235,214,241,202,43,175,216,142,97,69,171 \
,86,173,78,249,56,87,169,82,133,176,176,48,202,150,45,75,133,10,21,136,136,136,160,122,245,234,121,75,81,190,92,182,160,146,147,147,185,233,166,155,152,61,123,182,183,57,27,184,18,247,18 \
,80,9,157,28,224,122,224,1,224,101,114,199,204,24,55,110,28,63,255,252,51,83,167,78,165,110,221,186,54,243,1,16,17,17,193,139,47,190,72,155,54,109,232,223,191,63,105,105,105,190,77 \
,13,129,63,128,203,129,31,173,5,20,17,17,17,193,253,52,223,248,150,196,196,68,35,193,51,107,214,44,227,253,125,3,159,133,232,56,239,246,61,103,139,22,45,108,255,26,228,56,54,111,222 \
,108,206,59,239,60,255,115,36,11,183,112,40,74,242,242,245,239,223,223,202,239,106,196,136,17,254,191,167,235,131,252,154,227,112,239,175,205,123,206,216,216,88,243,253,247,223,91,121,253,199,179 \
,122,245,106,211,184,113,99,255,223,77,14,238,156,181,34,34,65,167,81,109,69,68,68,138,176,37,75,150,208,190,125,123,214,174,93,235,109,62,12,92,4,204,180,147,74,60,226,129,154,185,95 \
,1,216,189,123,55,151,93,118,25,207,63,255,60,198,20,141,91,41,207,63,255,124,226,227,227,185,238,186,235,188,205,14,238,156,181,11,241,76,35,36,34,18,12,42,60,69,68,68,138,168,113 \
,227,198,113,233,165,151,178,115,231,78,111,115,34,238,192,54,203,173,132,146,252,28,6,90,3,239,249,26,178,179,179,25,62,124,56,125,250,244,33,53,53,213,94,50,143,74,149,42,49,109,218 \
,52,70,141,26,69,88,216,81,111,1,47,6,182,2,103,90,9,38,34,165,130,10,79,17,17,145,34,102,223,190,125,220,120,227,141,12,28,56,144,244,244,116,239,166,159,112,139,206,93,86,130 \
,201,201,220,13,244,197,189,12,26,128,41,83,166,112,209,69,23,177,97,67,209,24,251,201,113,28,254,249,207,127,50,125,250,116,170,86,173,234,221,116,38,176,5,247,158,97,17,145,66,167,194 \
,83,68,68,164,8,153,49,99,6,45,90,180,96,218,180,105,254,155,222,3,218,1,153,161,79,37,5,48,9,56,31,216,235,107,88,179,102,13,109,219,182,101,250,244,233,246,82,249,233,217,179 \
,39,203,150,45,163,121,243,230,222,230,178,192,151,192,243,118,82,137,72,73,166,194,83,68,68,164,8,216,177,99,7,189,123,247,230,154,107,174,97,251,246,237,222,77,135,112,123,161,138,198,36 \
,145,18,136,223,112,231,162,93,226,107,56,112,224,0,189,122,245,98,228,200,145,228,228,228,216,75,230,209,176,97,67,22,45,90,196,45,183,220,226,109,118,128,161,192,34,220,66,84,68,164,80 \
,168,240,20,17,17,177,40,61,61,157,209,163,71,211,164,73,19,166,76,153,226,191,121,49,112,6,240,77,232,147,201,105,74,7,218,3,255,198,29,65,22,99,12,79,63,253,52,87,93,117,21 \
,251,246,21,141,41,52,43,84,168,192,71,31,125,196,152,49,99,252,167,31,106,143,123,63,113,99,59,201,68,164,164,81,225,41,34,34,98,65,86,86,22,19,39,78,164,105,211,166,140,24,49 \
,130,148,148,20,239,230,52,160,55,238,160,47,41,249,254,0,41,46,134,2,87,3,25,190,134,111,190,249,134,54,109,218,176,106,213,42,123,169,252,12,30,60,152,217,179,103,83,179,102,77,111 \
,115,12,176,22,184,213,78,42,17,41,73,84,120,138,136,136,132,80,102,102,38,239,191,255,62,77,155,54,229,246,219,111,39,33,33,193,187,57,7,248,4,168,14,28,211,253,41,197,214,87,64 \
,3,220,30,68,0,54,111,222,204,37,151,92,194,164,73,147,236,165,242,211,185,115,103,150,47,95,78,187,118,237,188,205,17,192,135,192,59,118,82,137,72,73,161,194,83,68,68,36,4,118,236 \
,216,193,191,254,245,47,234,215,175,79,255,254,253,249,253,247,223,253,31,178,20,119,196,218,62,184,151,105,74,201,146,8,212,195,51,247,234,161,67,135,232,219,183,47,15,60,240,0,153,153,69 \
,99,204,168,58,117,234,240,195,15,63,48,112,224,64,255,77,3,128,213,64,197,208,167,18,145,146,64,133,167,136,136,72,144,100,101,101,241,213,87,95,209,187,119,111,206,58,235,44,158,120,226 \
,9,18,19,19,253,31,182,18,136,3,46,2,254,8,121,72,9,165,108,160,7,48,130,220,251,62,1,94,123,237,53,186,118,237,74,82,82,146,181,96,94,145,145,145,188,253,246,219,188,251,238 \
,187,148,43,87,206,187,233,124,224,79,160,149,157,100,34,82,156,169,240,20,17,17,41,68,89,89,89,204,157,59,151,7,31,124,144,58,117,234,112,213,85,87,49,101,202,20,50,50,50,188,15 \
,51,184,3,7,93,128,251,38,126,133,141,172,98,205,104,160,19,238,136,197,0,252,248,227,143,180,110,221,154,133,11,23,218,75,229,167,127,255,254,204,159,63,159,186,117,235,122,155,43,3,203 \
,128,123,237,164,18,145,226,74,133,167,136,136,200,105,74,74,74,226,195,15,63,164,95,191,126,212,172,89,147,174,93,187,50,118,236,88,118,238,220,233,255,208,67,184,243,113,198,224,14,28,244 \
,107,168,179,74,145,241,35,80,23,216,228,107,72,76,76,164,107,215,174,188,241,198,27,246,82,249,105,211,166,13,241,241,241,116,237,218,213,219,28,6,188,129,123,31,178,99,37,152,136,20,59 \
,17,39,127,136,136,136,136,248,100,102,102,178,102,205,26,226,227,227,89,190,124,57,243,231,207,103,237,218,181,39,218,37,27,136,199,237,229,250,44,36,33,165,184,216,7,156,3,124,132,123,111 \
,47,25,25,25,220,119,223,125,252,244,211,79,188,245,214,91,148,47,95,222,106,64,128,216,216,88,102,206,156,201,136,17,35,120,233,165,151,48,38,239,42,225,155,112,123,236,219,1,123,173,5 \
,20,145,98,65,133,167,136,136,72,62,246,237,219,71,66,66,2,27,55,110,100,253,250,245,172,95,191,158,223,126,251,141,53,107,214,112,228,200,145,147,237,158,9,252,2,124,128,59,26,104,198 \
,9,31,45,165,153,1,110,1,190,7,254,3,132,3,76,156,56,145,213,171,87,51,109,218,52,26,52,104,96,51,31,0,17,17,17,252,251,223,255,166,77,155,54,244,239,223,159,212,212,84,223 \
,166,134,184,247,38,247,0,230,91,11,40,34,69,158,10,79,17,17,41,53,246,239,223,207,193,131,7,73,77,77,101,207,158,61,36,37,37,177,107,215,46,118,237,218,69,82,82,18,137,137,137 \
,108,219,182,141,132,132,4,239,27,235,64,24,96,7,238,125,155,31,0,51,130,16,95,74,182,113,192,18,96,1,80,5,96,229,202,149,180,105,211,134,15,63,252,144,203,47,191,220,106,56,159 \
,155,111,190,153,102,205,154,113,253,245,215,179,97,195,6,95,115,121,96,30,240,56,240,172,173,108,34,82,180,169,240,20,145,128,204,152,49,131,170,85,171,218,142,81,98,173,94,189,218,118,4 \
,146,147,147,249,244,211,79,109,199,0,32,61,61,157,195,135,15,231,173,103,103,103,147,146,146,114,212,99,14,28,56,64,78,78,78,222,122,114,114,50,169,169,169,121,133,229,129,3,7,72,73 \
,73,201,91,47,96,33,121,50,105,192,86,220,75,104,191,5,166,226,246,114,74,174,45,91,182,88,57,159,214,173,91,23,242,231,44,68,171,129,51,129,133,64,75,128,189,123,247,210,179,103,79 \
,134,15,31,78,139,22,45,172,134,243,26,50,100,8,255,248,199,63,216,189,123,183,175,201,1,158,1,58,3,61,129,44,91,217,68,68,68,164,120,153,138,219,139,163,197,206,18,170,123,1,119 \
,135,240,53,21,183,229,8,176,7,88,7,76,7,158,4,46,5,202,156,202,47,186,148,176,125,204,242,91,174,15,234,43,14,158,55,176,255,187,59,213,229,79,160,78,225,255,74,68,164,56,83 \
,143,167,136,136,148,6,6,119,144,159,44,220,158,201,12,32,21,216,143,91,124,111,199,189,79,109,35,238,212,38,235,114,247,17,177,101,16,48,23,119,224,161,226,246,97,199,153,192,239,192,13 \
,192,151,150,179,136,72,17,161,194,83,68,142,103,22,80,219,118,136,82,236,187,16,61,207,23,64,179,16,61,87,65,29,228,232,203,245,210,113,47,113,245,201,225,232,145,52,83,115,215,247,0 \
,137,192,46,220,251,46,53,218,102,232,204,6,42,218,14,225,103,163,237,0,167,97,42,238,229,220,227,129,72,203,89,78,197,253,192,82,220,15,119,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68 \
,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,188,28,219,1,68,4,128,72,160,62,208,48,119,169,3,84,7,98,60,95,203,2,209,184,255,110,195,128,42,192,17,224,16,144,10,100 \
,2,251,115,191,166,2,59,128,4,96,91,238,146,0,108,5,14,135,228,21,137,72,176,148,7,26,229,46,13,129,51,57,250,239,69,117,220,191,23,21,114,31,95,33,119,253,48,144,158,219,118 \
,0,247,111,197,158,220,101,111,238,215,63,128,77,185,203,86,32,35,216,47,70,138,173,48,160,46,238,57,216,8,168,7,212,0,98,249,223,185,24,201,255,254,223,138,0,42,1,217,64,74,238 \
,207,72,199,61,47,83,128,221,185,203,94,96,23,255,59,15,127,199,253,191,77,242,87,1,104,0,156,157,251,181,54,238,239,191,90,238,215,24,160,28,80,17,40,147,187,79,101,32,28,72,6 \
,12,238,223,131,28,207,215,20,220,227,178,19,247,111,194,14,224,79,32,41,247,235,78,220,227,40,82,236,173,194,253,71,160,165,96,203,111,39,249,189,174,40,2,25,67,185,12,62,201,239,195 \
,166,24,224,114,224,49,224,51,96,11,238,31,240,80,253,110,18,129,47,129,127,2,87,224,190,57,8,150,250,33,120,61,253,131,152,223,95,229,32,190,14,223,50,180,16,114,254,53,4,57,13 \
,238,27,148,107,11,33,111,32,90,5,249,181,92,28,162,215,81,80,209,192,101,192,63,128,207,159,142,45,96,0,0,32,0,73,68,65,84,113,63,68,10,213,223,138,44,96,35,240,17,238,223 \
,212,14,64,84,112,95,238,41,123,154,224,159,235,165,89,4,208,2,24,0,140,195,125,175,150,78,232,206,197,61,192,108,224,89,224,58,220,226,170,180,113,112,139,252,155,129,209,192,119,184,5 \
,97,168,142,129,255,223,134,45,192,116,220,99,210,27,104,134,123,158,20,84,115,220,227,27,138,220,59,129,38,167,144,177,176,57,192,219,132,238,120,189,71,17,233,108,60,149,19,68,68,10,166 \
,28,208,17,183,216,236,14,92,112,194,7,151,43,71,131,6,13,168,94,189,58,213,171,87,39,38,38,134,26,53,106,80,185,114,101,0,170,84,169,66,88,88,88,222,227,51,51,51,73,77,77 \
,229,208,161,67,28,57,114,132,148,148,20,14,29,58,196,182,109,219,72,72,72,96,251,246,237,100,100,28,213,105,113,6,208,51,119,241,217,2,44,5,102,1,51,112,63,117,22,57,25,7,152 \
,0,180,193,45,80,228,244,133,1,173,129,43,113,63,24,106,157,219,150,175,74,149,42,81,191,126,125,98,99,99,169,81,163,70,222,223,140,242,229,203,83,166,76,25,42,86,172,120,204,62,7 \
,14,28,32,39,39,135,212,212,84,246,238,221,203,174,93,187,216,179,103,15,187,119,239,102,243,230,205,164,167,251,58,69,9,231,127,61,171,183,228,182,101,0,63,2,223,0,95,3,107,11,231 \
,101,75,17,116,38,238,57,120,5,240,23,220,171,108,242,21,17,17,65,189,122,245,56,227,140,51,242,206,193,216,216,88,170,86,173,10,28,251,255,22,64,122,122,58,135,15,31,38,51,51,147 \
,61,123,246,176,119,239,222,188,243,112,219,182,109,236,222,125,212,127,67,49,64,183,220,197,103,35,238,57,248,13,240,3,255,235,205,47,73,234,226,126,240,244,23,220,215,94,227,68,15,142,138 \
,138,162,65,131,6,196,196,196,16,19,19,67,181,106,213,242,190,2,84,168,80,129,178,101,203,30,181,79,90,90,26,25,25,25,121,239,33,14,31,62,76,122,122,58,7,14,28,224,207,63,255 \
,36,49,49,145,196,196,68,239,223,5,112,255,54,212,207,93,174,246,180,103,224,254,77,88,13,44,2,22,228,174,155,19,196,254,5,247,253,209,108,220,15,218,130,169,6,238,251,156,142,184,87 \
,129,217,242,111,96,96,136,158,107,18,238,7,70,39,58,6,33,83,164,11,207,214,173,91,51,96,192,0,219,49,138,172,15,62,248,128,197,139,23,23,120,191,184,184,56,6,14,12,213,249,30 \
,26,153,153,153,220,119,223,125,182,99,120,149,1,122,0,253,112,223,64,30,211,75,16,21,21,69,203,150,45,137,139,139,163,69,139,22,52,106,212,136,134,13,27,82,187,118,109,28,167,240,62 \
,152,202,201,201,33,41,41,137,173,91,183,146,144,144,192,138,21,43,88,182,108,25,43,86,172,32,53,53,213,247,176,6,185,75,31,220,222,215,197,184,159,100,126,78,33,22,20,253,251,247,167 \
,109,219,255,111,239,190,227,163,168,214,199,143,127,82,33,137,244,208,2,72,8,189,40,16,130,160,224,87,233,72,81,170,20,5,1,149,166,23,244,90,16,5,69,17,69,252,9,216,0,69,5 \
,20,17,233,74,17,169,94,46,40,16,80,32,128,87,8,213,96,18,170,36,16,66,72,114,126,127,156,236,58,89,18,72,178,103,179,27,242,188,95,175,125,201,142,155,51,103,102,103,103,230,153 \
,115,206,115,238,114,170,140,132,132,4,94,120,225,5,67,53,114,78,223,190,125,105,213,170,149,83,101,164,167,167,51,98,196,8,67,53,202,218,219,111,191,109,191,241,48,33,45,45,141,87,94 \
,121,133,11,23,46,128,190,25,93,6,52,7,46,27,91,201,77,140,26,53,138,250,245,235,231,249,239,15,29,58,196,123,239,189,103,176,70,78,107,0,12,1,250,3,229,29,255,103,64,64,0 \
,141,27,55,166,105,211,166,52,106,212,136,90,181,106,81,163,70,13,202,149,187,225,125,104,174,41,165,136,137,137,225,200,145,35,28,62,124,152,221,187,119,179,115,231,78,162,162,162,72,77,77 \
,5,221,101,183,117,198,235,93,116,55,200,121,25,175,147,70,43,147,71,69,138,20,225,131,15,62,112,186,156,53,107,214,240,221,119,223,25,168,81,129,82,2,125,29,24,4,52,35,139,86,146 \
,154,53,107,210,180,105,83,34,34,34,168,91,183,46,213,171,87,39,52,52,20,63,63,63,199,143,58,229,226,197,139,28,57,114,132,232,232,104,162,162,162,216,185,115,39,145,145,145,182,243,14 \
,64,77,96,116,198,43,9,125,30,154,3,252,68,193,110,161,174,134,62,15,244,69,159,23,174,83,174,92,57,194,195,195,9,15,15,167,126,253,250,132,133,133,81,173,90,53,202,151,191,238,212 \
,97,204,249,243,231,137,141,141,229,212,169,83,196,196,196,112,240,224,65,246,237,219,71,84,84,20,113,113,113,182,143,249,3,141,50,94,3,50,150,157,67,127,39,182,135,4,177,89,20,191,27 \
,125,207,180,14,221,179,8,47,47,47,198,142,29,75,213,170,85,157,174,123,82,82,18,227,199,143,183,221,243,84,65,7,185,247,162,91,140,243,219,120,224,57,219,155,222,189,123,211,182,109,91 \
,35,5,207,156,57,147,61,123,246,88,23,45,66,255,150,11,242,239,193,229,236,93,109,251,244,233,163,68,246,6,13,26,100,109,70,207,113,87,219,222,189,123,187,187,234,198,37,37,37,57,118 \
,43,112,87,87,219,154,192,7,232,241,41,153,234,20,16,16,160,58,118,236,168,166,77,155,166,246,238,221,171,174,93,187,230,214,125,150,154,154,170,162,162,162,212,23,95,124,161,134,13,27,166 \
,110,191,253,246,236,186,104,28,4,198,230,113,127,132,90,203,250,250,235,175,157,174,119,92,92,156,99,253,220,214,213,246,195,15,63,116,122,123,174,93,187,230,184,61,198,187,218,158,56,113,194 \
,233,122,58,90,189,122,181,242,246,246,182,214,123,129,129,122,223,72,166,174,182,63,252,240,131,83,245,223,188,121,179,227,126,119,71,87,91,127,116,176,25,233,80,23,229,227,227,163,90,180,104 \
,161,38,77,154,164,34,35,35,85,74,74,138,161,111,46,111,146,146,146,212,127,254,243,31,53,118,236,88,213,176,97,195,172,206,19,105,232,155,198,174,184,167,75,151,189,171,109,80,80,144,145 \
,109,126,243,205,55,173,219,119,171,223,184,133,163,91,70,146,112,248,110,111,191,253,118,53,108,216,48,181,98,197,10,117,238,220,57,35,251,214,25,127,252,241,135,154,49,99,134,234,210,165,139 \
,10,12,12,204,234,88,60,134,30,202,226,234,214,51,147,138,2,79,0,219,208,199,90,166,109,10,13,13,85,79,60,241,132,90,184,112,161,58,121,242,164,187,191,130,235,156,62,125,90,109,216 \
,176,65,77,155,54,77,13,30,60,88,213,174,93,59,187,251,137,116,96,23,58,24,202,74,75,116,142,10,5,168,176,176,48,245,231,159,127,26,169,227,198,141,27,85,209,162,69,173,117,217,135 \
,30,7,155,159,70,91,214,175,122,246,236,169,82,83,83,141,108,223,59,239,188,227,184,175,151,243,207,152,94,113,3,18,120,230,144,4,158,255,240,128,192,179,41,176,24,135,177,154,65,65,65 \
,234,209,71,31,85,107,214,172,81,87,174,92,113,247,110,186,169,223,126,251,77,77,156,56,81,53,109,218,84,121,121,121,89,247,103,116,30,247,75,168,117,127,72,224,121,189,130,26,120,42,165 \
,212,132,9,19,28,235,62,218,64,221,179,115,43,5,158,69,129,167,208,93,189,236,117,240,242,242,82,45,91,182,84,95,124,241,133,71,220,224,223,72,76,76,140,122,239,189,247,84,131,6,13 \
,178,186,185,252,13,232,197,13,186,8,187,128,4,158,121,115,55,176,26,135,96,167,98,197,138,106,204,152,49,106,223,190,125,70,246,165,171,92,185,114,69,125,255,253,247,170,71,143,30,202,223 \
,223,223,241,56,188,8,76,194,181,121,12,156,21,140,206,183,112,221,88,205,134,13,27,170,119,222,121,71,29,62,124,216,221,187,57,79,226,226,226,212,146,37,75,212,240,225,195,85,104,104,168 \
,227,119,179,244,6,251,164,21,150,7,32,181,106,213,82,127,253,245,151,145,58,125,255,253,247,202,207,207,207,90,143,29,232,132,87,249,97,48,150,223,89,135,14,29,212,213,171,87,141,108,215 \
,180,105,211,28,247,239,42,244,131,77,145,3,18,120,230,144,4,158,255,112,99,224,89,27,221,125,36,211,250,155,53,107,166,230,205,155,167,18,19,19,221,189,107,242,108,240,224,193,18,120,94 \
,79,2,79,139,180,180,52,213,169,83,39,107,221,83,208,79,172,93,225,86,9,60,123,161,179,68,218,215,93,172,88,49,245,252,243,207,171,67,135,14,25,250,102,242,87,100,100,164,26,60,120 \
,176,227,13,157,45,0,189,59,159,246,171,4,158,185,19,10,124,135,195,181,171,93,187,118,106,213,170,85,198,90,97,242,211,153,51,103,212,212,169,83,85,149,42,85,28,143,195,68,224,5,60 \
,171,245,39,8,152,136,30,158,96,175,107,169,82,165,212,139,47,190,168,246,239,223,239,238,221,105,92,227,198,141,115,26,120,130,206,135,97,79,94,85,175,94,61,21,31,31,111,164,30,11,22 \
,44,112,236,173,179,25,157,41,220,149,122,163,19,50,41,64,181,108,217,82,93,190,124,217,200,246,204,152,49,195,177,161,96,29,250,225,166,71,202,207,167,145,66,220,74,138,3,255,15,61,128 \
,254,1,208,227,17,30,120,224,1,54,111,222,204,246,237,219,25,56,112,96,150,137,61,10,10,199,68,16,66,56,242,246,246,102,254,252,249,132,133,133,217,22,249,161,199,148,84,116,95,173,60 \
,86,117,244,248,166,197,232,233,146,40,89,178,36,175,190,250,42,199,143,31,231,221,119,223,165,102,205,154,110,173,96,94,69,68,68,240,197,23,95,112,232,208,33,70,140,24,65,145,34,69,108 \
,255,171,17,58,17,209,167,228,127,151,54,145,53,127,244,208,137,3,192,131,160,175,93,93,187,118,101,251,246,237,172,91,183,142,206,157,59,227,227,227,227,214,74,230,69,112,112,48,207,62,251 \
,44,209,209,209,124,250,233,167,214,243,210,109,192,20,244,3,248,123,221,86,65,205,27,120,12,56,4,140,35,35,255,67,181,106,213,120,255,253,247,57,121,242,36,239,188,243,142,83,227,215,61 \
,85,46,143,169,117,232,135,116,41,0,7,15,30,164,93,187,118,156,59,119,206,233,122,244,235,215,143,153,51,103,90,115,105,220,143,62,47,187,234,193,196,3,232,110,236,62,160,243,172,172,90 \
,181,138,192,64,231,19,132,127,254,249,231,60,245,212,83,40,165,108,139,126,2,186,225,193,137,182,228,206,82,136,220,107,141,30,247,248,28,25,39,170,136,136,8,182,109,219,198,154,53,107,184 \
,255,254,251,221,89,55,33,242,85,169,82,165,88,186,116,41,1,1,246,7,198,21,209,193,167,39,181,46,184,219,0,96,47,58,121,6,94,94,94,12,25,50,132,195,135,15,243,250,235,175,27 \
,77,252,228,78,161,161,161,204,152,49,131,168,168,40,218,183,111,111,91,236,141,206,168,24,133,251,111,250,11,187,106,232,49,132,111,145,17,240,212,173,91,151,77,155,54,241,253,247,223,211,172 \
,89,51,183,86,206,20,127,127,127,158,124,242,73,126,255,253,119,222,124,243,77,235,185,169,1,58,251,237,91,100,4,1,249,236,118,96,35,48,23,157,49,152,50,101,202,240,225,135,31,114,232 \
,208,33,70,141,26,85,160,31,86,187,192,42,116,54,237,84,128,125,251,246,209,161,67,7,254,254,251,111,167,11,30,58,116,40,83,166,76,177,46,234,12,124,133,249,227,226,255,208,173,187,254 \
,0,245,234,213,99,237,218,181,148,40,145,109,130,232,28,155,63,127,62,67,135,14,181,6,157,219,208,99,236,147,156,46,220,133,36,240,20,34,231,252,208,115,103,173,39,99,14,177,224,224,96 \
,102,207,158,205,142,29,59,184,251,238,252,234,81,38,132,103,105,212,168,17,179,102,205,178,46,106,137,206,120,90,216,21,69,183,246,125,137,238,90,71,157,58,117,216,178,101,11,159,127,254,57 \
,193,193,158,60,244,44,239,106,214,172,201,143,63,254,200,194,133,11,41,91,182,172,109,113,8,176,9,221,229,209,35,230,147,43,100,30,68,103,14,141,0,29,156,77,154,52,137,61,123,246,220 \
,178,15,75,253,253,253,121,229,149,87,56,112,224,0,237,218,181,179,45,246,66,183,248,110,0,42,228,99,117,250,161,31,62,221,15,186,245,111,244,232,209,28,62,124,152,167,159,126,26,95,95 \
,143,158,100,194,157,150,161,135,142,164,1,236,222,189,155,142,29,59,146,144,144,224,116,193,207,63,255,60,227,198,141,179,46,234,3,204,194,220,249,41,2,61,61,93,0,64,88,88,24,235,214 \
,173,51,114,222,95,180,104,17,131,6,13,34,61,221,62,2,96,39,122,6,133,75,217,255,149,103,144,35,93,136,156,41,141,62,129,216,199,129,181,107,215,142,185,115,231,18,18,18,226,242,149 \
,199,196,196,240,199,31,127,112,242,228,73,226,226,226,56,125,250,52,73,73,73,246,121,208,188,189,189,237,79,208,74,150,44,73,185,114,229,40,83,166,12,33,33,33,132,133,133,81,181,106,85 \
,227,169,238,133,176,26,56,112,32,59,118,236,96,198,140,25,182,69,163,209,137,27,190,113,95,173,220,170,4,122,252,183,253,156,209,191,127,127,62,249,228,19,151,181,106,164,165,165,113,248,240 \
,97,246,239,223,79,76,76,12,49,49,49,36,38,38,218,231,231,11,12,12,164,72,145,34,4,7,7,83,161,66,5,66,67,67,105,208,160,1,161,161,161,70,167,112,178,233,211,167,15,45,90 \
,180,160,79,159,62,252,252,243,207,160,239,57,166,160,39,154,127,156,140,155,73,225,114,207,0,83,201,184,161,174,90,181,42,139,22,45,114,122,106,171,27,57,125,250,52,251,246,237,227,232,209 \
,163,252,245,215,95,196,199,199,115,237,218,53,18,18,18,240,245,245,165,88,177,98,4,4,4,16,18,18,66,72,72,8,117,235,214,165,126,253,250,20,45,106,126,104,90,181,106,213,88,187,118 \
,45,147,38,77,226,245,215,95,39,45,45,13,116,0,24,137,158,27,243,144,241,149,254,195,7,152,14,216,231,123,11,13,13,229,203,47,191,228,222,123,243,167,3,64,66,66,2,71,142,28,225 \
,232,209,163,196,198,198,218,231,75,77,73,73,177,223,67,128,158,19,216,215,215,151,34,69,138,216,231,255,44,83,166,12,149,42,85,226,246,219,111,167,114,229,202,238,186,143,248,22,221,98,56 \
,23,240,222,177,99,7,157,59,119,102,237,218,181,4,5,5,57,85,240,196,137,19,73,72,72,176,78,191,244,4,122,76,240,191,157,42,88,159,227,214,146,49,53,76,72,72,8,235,215,175,167 \
,82,165,74,78,22,11,203,151,47,231,209,71,31,181,29,199,160,187,144,119,0,156,143,198,243,129,71,7,158,231,207,159,103,247,238,221,249,178,174,219,110,187,141,218,181,107,59,93,206,209,163 \
,71,173,115,76,185,212,217,179,103,243,101,61,217,249,227,143,63,172,243,64,186,213,213,171,87,93,89,252,237,232,19,72,93,208,79,42,39,79,158,204,115,207,61,231,146,155,181,244,244,116,118 \
,238,220,201,186,117,235,216,182,109,27,219,183,111,119,250,233,158,143,143,15,97,97,97,52,110,220,152,240,240,112,238,186,235,46,154,55,111,110,237,130,36,132,211,166,77,155,198,175,191,254,202 \
,246,237,219,109,139,102,163,187,88,238,119,95,173,220,162,12,250,156,17,1,250,247,55,125,250,116,151,204,53,124,226,196,9,22,47,94,204,186,117,235,216,186,117,171,253,38,50,55,74,150,44 \
,73,171,86,173,104,223,190,61,61,123,246,180,182,82,58,173,114,229,202,252,244,211,79,60,243,204,51,214,135,18,143,161,91,131,7,0,215,140,173,76,100,101,44,186,107,41,0,109,218,180,97 \
,209,162,69,198,187,119,39,39,39,179,114,229,74,126,248,225,7,214,173,91,199,169,83,167,114,93,134,143,143,15,225,225,225,180,107,215,142,110,221,186,209,180,105,83,99,245,243,246,246,102,252 \
,248,241,220,115,207,61,244,236,217,147,139,23,47,130,30,107,253,31,160,29,174,57,71,5,0,95,3,221,109,11,250,245,235,199,172,89,179,40,94,188,184,11,86,167,31,62,237,220,185,147,77 \
,155,54,17,25,25,201,174,93,187,242,244,93,100,197,219,219,155,42,85,170,80,183,110,93,238,184,227,14,234,215,175,79,147,38,77,168,87,175,94,126,228,132,248,10,40,130,238,65,226,181,117 \
,235,86,186,118,237,202,234,213,171,157,190,143,153,62,125,58,9,9,9,204,157,59,215,182,232,89,116,70,228,215,243,88,100,117,116,207,184,50,160,123,198,173,95,191,222,58,230,56,207,86,175 \
,94,77,223,190,125,185,118,205,126,218,140,66,39,98,114,190,255,113,33,102,207,106,155,159,175,150,45,91,26,201,46,213,179,103,207,124,175,59,110,202,106,219,162,69,11,119,109,107,78,94,166 \
,178,218,86,199,146,129,50,32,32,64,173,88,177,194,200,254,115,244,251,239,191,171,81,163,70,169,144,144,144,27,109,215,53,224,20,250,119,178,62,227,181,202,242,239,45,232,164,17,241,88,50 \
,168,101,245,42,82,164,136,186,239,190,251,212,91,111,189,165,14,28,56,112,93,125,30,127,252,113,235,231,37,171,173,38,89,109,111,226,207,63,255,84,229,202,149,179,110,207,33,116,235,159,179 \
,10,74,86,219,98,232,108,174,10,80,190,190,190,70,142,123,71,171,87,175,86,173,91,183,118,204,206,104,125,93,64,223,76,111,66,159,27,86,103,252,247,39,224,127,88,230,202,179,190,252,253 \
,253,85,143,30,61,212,246,237,219,141,215,121,236,216,177,142,235,91,132,185,110,109,146,213,246,122,99,176,236,239,46,93,186,24,159,214,235,196,137,19,234,233,167,159,86,37,75,150,204,238,56 \
,76,70,207,171,185,149,204,199,225,122,244,239,228,186,105,68,108,175,122,245,234,169,25,51,102,168,228,228,100,163,117,222,181,107,151,42,83,166,140,117,93,103,128,90,134,247,125,0,250,122,108 \
,95,207,43,175,188,162,210,211,211,141,110,139,82,58,187,248,134,13,27,212,128,1,3,28,183,43,171,87,34,112,28,221,27,197,246,61,172,70,39,243,177,189,223,9,28,65,7,51,55,189,223 \
,42,86,172,152,106,213,170,149,26,55,110,156,218,180,105,83,182,223,87,68,68,132,245,239,110,150,213,54,59,35,177,76,73,210,190,125,123,35,199,71,106,106,170,234,213,171,151,137,251,200,202 \
,192,81,91,25,37,74,148,80,187,118,237,114,186,126,74,41,181,110,221,58,199,121,72,15,2,229,242,184,31,133,133,4,158,121,123,73,224,233,252,9,195,81,25,244,126,181,159,64,254,251,223 \
,255,26,217,119,86,187,118,237,82,29,59,118,116,76,135,173,208,65,230,22,244,211,234,110,232,11,99,110,122,41,248,160,3,191,86,192,80,96,38,250,98,99,79,81,110,125,213,170,85,75,141 \
,31,63,222,62,103,152,4,158,89,146,192,51,7,54,111,222,172,124,125,125,173,219,180,2,231,3,140,130,16,120,122,163,39,237,86,128,242,241,241,81,75,150,44,49,180,87,181,95,127,253,85 \
,53,111,222,60,171,115,222,126,224,29,116,151,171,156,142,93,11,5,30,2,62,68,7,7,153,202,236,220,185,179,58,122,244,168,209,250,191,250,234,171,142,245,126,205,192,126,7,9,60,29,61 \
,136,101,94,233,110,221,186,169,148,148,20,35,251,69,41,165,18,19,19,213,179,207,62,155,213,220,153,23,208,25,60,7,2,245,200,217,53,171,56,208,2,29,40,111,194,97,62,236,202,149,43 \
,171,111,190,249,198,88,221,149,82,106,223,190,125,170,116,233,210,214,122,31,204,168,135,9,62,88,206,3,94,94,94,106,230,204,153,70,235,175,148,82,201,201,201,106,198,140,25,42,44,44,44 \
,171,243,193,53,116,178,153,105,192,35,232,185,198,243,210,204,237,143,126,0,223,10,24,130,238,42,255,3,14,115,16,91,95,129,129,129,170,125,251,246,234,131,15,62,200,116,237,49,20,120,130 \
,190,191,179,151,213,165,75,23,35,243,97,94,189,122,85,117,236,216,209,241,55,159,155,251,139,178,232,227,200,190,31,182,108,217,226,116,189,148,210,215,171,192,192,64,107,221,14,33,217,227,141 \
,169,12,132,229,211,107,51,25,95,162,139,2,207,168,124,220,150,42,55,217,175,174,14,60,55,229,227,182,230,228,229,108,11,75,17,44,79,43,253,253,253,213,134,13,27,140,236,55,155,179,103 \
,207,170,71,30,121,36,171,128,243,103,244,68,195,101,156,220,134,236,4,160,47,34,175,163,147,77,100,90,191,109,18,123,135,57,183,36,240,212,10,101,224,153,151,57,253,222,125,247,93,199,237 \
,122,217,201,109,42,8,129,231,4,107,153,83,166,76,113,170,142,86,105,105,105,234,213,87,95,117,12,232,83,209,137,139,194,13,212,221,11,61,238,109,149,117,27,2,3,3,213,172,89,179,140 \
,109,71,122,122,186,234,215,175,159,227,205,93,55,3,245,151,192,243,31,245,208,93,5,21,160,26,53,106,164,46,93,186,100,100,159,40,165,212,207,63,255,172,170,86,173,234,248,251,217,135,14 \
,112,76,12,210,172,12,188,129,67,139,91,215,174,93,213,249,243,231,141,109,199,186,117,235,28,127,79,223,99,166,5,254,35,107,189,223,121,231,29,99,117,182,89,176,96,129,170,84,169,146,227 \
,119,112,21,61,45,72,79,204,244,50,185,153,178,64,23,244,119,181,9,184,226,80,31,5,168,38,77,154,168,73,147,38,169,90,181,106,153,10,60,1,94,178,174,163,123,247,238,234,218,181,107 \
,78,239,215,203,151,47,171,255,251,191,255,115,60,199,246,201,65,125,74,96,185,207,246,247,247,119,250,26,101,179,117,235,86,117,219,109,183,89,235,116,148,155,223,243,11,15,181,26,215,6,158 \
,187,220,186,117,153,185,58,240,92,229,214,173,51,111,10,150,64,108,238,220,185,70,246,153,205,143,63,254,168,42,84,168,224,120,130,94,143,126,42,153,223,170,162,147,79,92,23,132,90,94,18 \
,120,106,133,50,240,156,55,111,94,150,221,177,111,36,61,61,221,177,235,82,42,122,44,85,94,121,122,224,217,4,75,247,246,254,253,251,59,85,63,171,203,151,47,171,7,31,124,208,177,190,91 \
,209,1,134,43,180,196,242,228,30,80,195,134,13,203,211,3,136,172,36,37,37,169,240,240,112,235,182,156,193,249,7,109,18,120,106,222,192,118,50,234,93,182,108,89,117,252,248,113,35,251,67 \
,41,165,190,252,242,75,85,164,72,17,235,126,57,143,62,7,187,98,144,95,105,224,51,44,93,43,107,214,172,169,14,29,58,100,108,123,222,123,239,61,211,215,147,94,214,242,158,126,250,105,99 \
,117,85,74,95,255,28,90,229,20,186,149,249,117,116,32,232,78,1,232,115,252,20,116,139,92,118,247,19,38,2,79,208,189,37,236,101,246,233,211,199,200,57,234,226,197,139,142,173,179,41,232 \
,233,86,178,19,132,62,31,43,48,219,211,101,199,142,29,170,120,241,226,214,186,156,64,223,87,137,2,74,2,79,39,220,194,129,231,93,88,110,32,159,124,242,73,35,251,203,230,253,247,223,87 \
,62,62,62,214,125,23,143,37,249,128,155,221,1,188,143,206,142,38,129,231,245,10,101,224,249,209,71,31,169,218,181,107,171,139,23,47,230,234,239,18,18,18,84,221,186,117,29,3,140,170,121 \
,220,38,79,14,60,189,209,227,162,20,160,42,86,172,168,254,254,251,111,167,234,103,147,148,148,164,218,182,109,235,24,0,189,141,235,167,67,43,138,110,77,181,175,251,177,199,30,83,105,105,105 \
,70,182,43,42,42,74,249,249,249,89,183,235,51,39,235,43,129,167,54,28,203,119,54,127,254,124,35,251,66,41,165,230,204,153,227,56,166,248,55,242,254,123,206,141,30,232,177,137,10,116,215 \
,219,232,232,104,35,219,148,158,158,238,216,194,117,22,200,235,124,23,101,209,215,115,5,168,136,136,8,35,173,112,54,191,252,242,139,99,43,103,58,58,217,78,41,231,118,175,203,212,67,247,116 \
,57,128,107,2,79,208,67,145,236,229,14,24,48,192,200,57,234,204,153,51,170,126,253,250,214,250,38,145,49,21,142,131,34,192,143,182,207,121,121,121,169,57,115,230,56,255,101,43,165,118,239 \
,222,237,56,118,250,20,80,195,208,126,19,110,34,129,167,19,110,209,192,211,7,221,69,90,1,170,74,149,42,185,190,217,190,145,73,147,38,57,158,124,183,226,153,131,195,75,160,231,219,59,137 \
,4,158,86,133,54,240,4,84,143,30,61,114,157,28,227,247,223,127,87,197,138,21,179,110,95,36,121,235,142,231,201,129,231,19,214,178,22,44,88,224,84,221,172,250,247,239,239,120,163,249,47 \
,39,234,153,23,239,89,183,109,252,248,241,198,182,237,197,23,95,116,220,54,103,230,247,144,192,83,7,32,231,201,168,115,235,214,173,141,236,7,165,148,218,176,97,131,227,3,211,109,232,68,90 \
,249,165,25,150,238,195,181,106,213,50,118,109,62,112,224,128,227,88,213,79,242,88,199,175,109,101,20,41,82,68,69,69,69,25,169,159,82,250,124,21,20,20,228,248,16,175,189,211,123,53,255 \
,52,69,143,37,63,139,217,192,19,28,206,81,79,60,241,132,145,36,78,167,78,157,82,213,171,87,183,238,243,4,50,159,163,124,209,243,140,218,63,243,193,7,31,24,248,182,245,24,100,135,68 \
,81,113,64,29,131,251,76,184,137,4,158,78,184,69,3,207,254,88,78,34,203,151,47,55,178,175,148,82,106,246,236,217,142,55,186,203,209,79,203,60,153,31,122,226,235,111,243,248,247,161,72 \
,224,121,67,5,41,240,4,212,228,201,147,115,253,247,75,150,44,113,28,203,60,59,15,219,228,169,129,167,55,150,110,101,247,220,115,143,83,245,178,250,228,147,79,28,235,152,215,244,254,206,240 \
,66,79,101,160,0,229,237,237,173,214,173,91,103,100,251,46,93,186,164,130,131,131,173,219,183,196,137,122,74,224,105,201,98,235,229,229,101,44,240,137,143,143,119,204,84,253,63,242,103,12,161 \
,163,54,88,122,35,245,233,211,199,200,246,41,165,212,168,81,163,172,219,151,76,206,19,116,217,212,199,146,20,201,228,3,154,221,187,119,59,6,157,71,40,184,221,45,253,209,61,188,70,25,44 \
,211,11,29,212,218,247,209,200,145,35,141,4,159,71,143,30,117,108,101,62,11,52,64,159,247,51,245,8,153,56,113,162,129,111,91,169,131,7,15,58,254,222,206,100,172,83,220,2,36,240,116 \
,194,45,24,120,122,163,51,67,42,64,53,110,220,216,88,234,243,189,123,247,58,166,193,222,132,231,7,157,38,132,34,129,231,13,21,180,192,211,199,199,39,79,137,182,94,120,225,5,199,237,124 \
,34,151,219,228,169,129,231,67,214,114,150,45,91,230,84,189,108,226,226,226,28,187,89,109,196,245,221,107,179,19,136,14,54,20,160,106,212,168,97,108,90,14,135,44,183,169,232,228,112,121,81 \
,216,3,79,127,32,134,140,250,62,240,192,3,70,246,129,82,74,13,28,56,208,49,40,115,231,77,240,120,12,158,7,108,142,29,59,230,152,104,232,205,92,214,107,129,237,111,139,23,47,110,44 \
,9,210,185,115,231,84,181,106,213,172,245,138,65,207,45,46,50,243,66,119,59,182,239,171,103,159,125,214,200,119,112,240,224,65,85,182,108,89,235,119,240,23,150,135,113,128,122,225,133,23,140 \
,172,235,208,161,67,170,98,197,138,214,117,157,7,26,185,97,127,186,140,187,46,98,66,120,162,7,208,79,45,1,120,249,229,151,241,242,114,62,193,93,122,122,58,131,6,13,34,57,57,217,182 \
,40,14,221,138,120,213,233,194,133,200,103,105,105,105,244,235,215,143,63,255,252,51,87,127,247,214,91,111,209,170,85,43,235,162,15,129,8,147,117,115,147,145,182,127,212,168,81,131,135,30,122 \
,200,72,161,147,38,77,226,239,191,237,115,130,167,0,35,112,95,240,147,4,60,109,123,19,29,29,205,39,159,228,181,55,98,102,35,71,142,164,72,17,251,51,56,31,96,152,145,130,11,159,135 \
,128,74,182,55,207,61,247,156,145,66,163,162,162,248,234,171,175,172,139,222,67,63,160,117,151,119,176,76,31,247,226,139,47,162,148,114,186,208,208,208,80,186,119,207,148,106,97,40,250,120,204 \
,137,42,192,195,182,55,255,250,215,191,40,85,202,204,176,203,49,99,198,112,236,216,49,219,219,107,25,235,57,105,164,240,91,139,66,143,111,158,103,91,48,109,218,52,198,142,29,235,116,193,117 \
,235,214,101,237,218,181,148,40,97,111,228,175,136,126,184,11,192,176,97,195,120,231,157,119,156,94,207,177,99,199,104,211,166,13,177,177,177,182,69,23,209,211,99,237,113,186,112,15,34,129,167 \
,16,255,176,95,56,202,151,47,239,120,17,202,179,249,243,231,243,219,111,191,89,23,141,70,39,32,16,162,64,58,115,230,12,189,122,245,226,234,213,156,63,59,241,245,245,101,225,194,133,84,174 \
,92,217,182,168,40,186,107,101,94,19,121,120,130,226,88,18,78,244,235,215,15,111,111,231,47,171,23,46,92,96,206,156,57,214,69,95,161,187,243,186,211,6,224,39,219,155,233,211,167,147,154 \
,154,234,116,161,229,203,151,167,93,187,76,201,142,31,116,186,208,194,201,190,223,66,66,66,104,221,186,181,145,66,167,78,157,106,13,236,18,129,119,141,20,156,119,41,232,233,59,0,29,24,175 \
,93,187,214,72,193,143,62,250,168,245,109,89,114,222,11,162,39,25,65,170,151,151,23,79,62,249,164,145,250,236,217,179,135,47,190,248,194,186,104,58,122,186,53,145,53,219,188,155,223,216,22 \
,76,158,60,153,9,19,38,56,93,112,120,120,56,171,86,173,34,48,48,48,211,242,254,253,251,51,99,198,12,167,27,41,78,158,60,73,235,214,173,173,15,116,19,209,141,33,145,78,21,236,129 \
,36,240,20,166,180,71,119,9,112,247,171,83,30,235,239,7,116,181,189,121,232,161,135,240,241,201,233,195,206,27,155,50,101,138,245,109,36,122,158,45,97,206,7,228,223,241,117,34,159,182,201 \
,227,237,220,185,147,209,163,71,231,234,111,202,149,43,199,226,197,139,241,247,247,183,45,170,138,238,162,102,230,199,150,255,58,160,187,56,2,208,165,75,23,35,133,46,93,186,148,75,151,46,89 \
,23,125,96,164,96,231,77,183,253,227,248,241,227,108,217,178,197,72,161,93,187,118,181,190,173,3,212,52,82,112,225,225,131,190,73,5,160,83,167,78,70,122,235,36,37,37,177,120,113,166,203 \
,213,60,244,220,154,238,182,8,221,221,17,128,47,191,252,210,72,161,109,219,182,37,32,32,192,186,168,107,118,159,117,208,211,246,143,136,136,8,170,86,173,106,164,62,83,167,78,37,61,221,222 \
,201,225,2,185,239,254,91,24,165,1,3,177,36,47,122,253,245,215,121,251,237,183,157,46,184,101,203,150,44,95,190,220,126,253,122,240,193,7,153,59,119,174,211,15,27,255,250,235,47,218,180 \
,105,195,241,227,199,109,139,146,208,243,163,254,226,84,193,30,74,2,79,97,138,31,58,163,158,187,95,246,155,192,92,106,129,37,37,185,169,214,206,173,91,183,114,224,192,1,235,162,15,208,93 \
,66,132,57,129,228,223,241,85,50,159,182,169,64,248,228,147,79,28,91,230,110,170,121,243,230,76,159,62,221,186,168,29,150,22,140,2,198,222,84,87,174,92,57,34,34,204,244,28,94,178,36 \
,83,142,157,131,192,62,35,5,59,111,45,58,179,35,0,203,150,45,51,82,104,167,78,215,61,47,116,102,190,215,194,40,28,203,60,168,157,59,223,104,202,193,156,91,187,118,45,151,47,95,182 \
,46,202,107,146,57,211,82,209,217,68,1,88,189,122,117,174,122,95,100,39,48,48,144,251,239,191,223,186,40,39,199,97,105,44,45,163,61,122,244,112,186,30,0,231,207,159,103,209,162,69,214 \
,69,115,176,252,246,196,13,165,162,19,69,174,180,45,120,249,229,151,153,58,117,170,211,5,183,111,223,158,111,190,249,134,246,237,219,243,237,183,223,226,231,231,231,84,121,241,241,241,180,105,211 \
,134,232,104,251,196,1,201,232,110,243,102,158,234,121,32,95,119,87,64,20,92,47,190,248,34,113,113,113,110,173,67,108,108,172,145,110,20,232,11,55,160,187,202,220,125,247,221,38,202,100,229 \
,202,149,214,183,73,56,151,181,81,0,197,139,23,55,54,190,204,89,45,90,180,112,119,21,220,101,55,208,4,244,24,189,134,13,27,18,30,30,126,147,63,249,199,136,17,35,216,177,99,7,243 \
,230,217,135,227,140,69,207,131,249,157,233,138,186,216,29,182,127,52,110,220,216,72,55,219,180,180,52,182,109,219,102,93,244,131,211,133,154,115,21,216,140,190,49,50,214,226,89,185,114,101,42 \
,84,168,96,189,158,220,113,163,207,139,235,100,218,95,77,154,52,49,82,168,195,247,123,17,207,234,230,185,150,140,113,199,137,137,137,252,246,219,111,52,111,222,220,233,66,155,52,105,194,15,63 \
,216,127,114,117,209,247,201,55,234,83,222,16,75,35,142,169,123,135,117,235,214,57,6,211,95,101,247,89,145,165,20,160,55,250,154,210,1,224,249,231,159,199,223,223,159,167,159,126,250,134,127 \
,120,51,61,122,244,160,123,247,238,78,247,42,56,123,246,44,109,219,182,229,127,255,251,159,109,209,85,244,156,181,27,156,42,216,195,73,224,41,242,236,193,7,221,63,20,231,224,193,131,166,2 \
,207,134,182,127,84,173,90,213,58,136,220,41,27,55,110,180,190,221,138,126,154,37,156,16,16,16,192,208,161,67,221,93,141,194,238,17,116,102,230,144,228,228,100,122,246,236,201,238,221,187,41 \
,93,186,116,142,11,152,57,115,38,123,247,238,101,207,158,61,160,51,18,206,67,207,245,118,216,21,21,118,1,47,244,4,233,0,52,104,96,38,209,231,193,131,7,29,187,217,110,55,82,176,57 \
,191,144,17,120,30,56,112,128,75,151,46,113,219,109,183,57,93,104,253,250,245,173,129,103,253,27,125,86,92,199,126,240,149,40,81,194,58,142,218,41,59,119,238,204,244,22,207,202,236,187,29 \
,221,123,200,11,96,199,142,29,70,2,79,135,223,113,17,160,6,58,163,115,118,236,247,14,94,94,94,220,121,231,157,78,215,1,174,187,119,136,3,246,26,41,88,107,129,103,253,198,142,3,235 \
,92,80,238,85,244,212,45,171,128,214,74,41,70,141,26,69,145,34,69,156,30,135,235,108,208,121,225,194,5,218,181,107,199,254,253,246,60,93,182,196,81,158,244,160,209,37,36,240,20,66,179 \
,159,132,77,93,56,210,211,211,29,187,217,222,114,131,196,69,161,21,135,126,154,188,25,240,63,126,252,56,143,60,242,8,171,87,175,206,113,171,95,64,64,0,75,151,46,165,105,211,166,156,63 \
,127,30,244,188,128,203,128,230,192,229,27,254,177,103,8,65,39,23,2,160,94,189,122,55,248,104,206,29,57,114,196,113,209,239,70,10,54,199,94,159,244,244,116,142,29,59,198,29,119,56,223 \
,64,89,175,94,61,235,205,182,76,148,158,59,181,109,255,168,91,183,174,145,241,157,128,181,251,31,120,222,113,120,14,56,13,148,135,235,234,154,103,89,252,142,235,112,227,192,211,126,239,80,185 \
,114,101,99,217,108,163,162,162,172,111,109,211,225,153,210,23,75,150,106,15,176,28,215,4,158,0,87,208,137,183,126,0,238,85,74,49,124,248,112,252,253,253,121,236,177,199,92,180,202,27,187 \
,120,241,34,29,58,116,176,61,116,133,127,186,6,127,239,150,10,229,51,9,60,133,208,236,227,99,42,84,200,237,188,209,89,59,121,242,164,117,10,21,176,164,128,23,226,22,240,51,240,28,122 \
,90,20,214,174,93,203,132,9,19,120,227,141,156,15,215,12,11,11,34,236,55,138,0,0,32,0,73,68,65,84,227,171,175,190,162,107,215,174,182,36,26,13,128,217,232,139,176,167,203,116,135 \
,25,28,108,38,57,239,137,19,215,229,175,242,180,132,86,153,234,115,226,196,9,35,129,103,217,178,101,173,111,205,220,189,23,30,246,253,101,234,56,188,114,229,10,103,207,158,181,46,242,180,227 \
,16,116,157,202,131,190,222,154,144,197,254,187,217,177,104,252,222,1,224,208,161,76,73,172,111,20,248,58,197,219,219,219,88,15,175,220,72,76,76,52,146,21,59,135,46,3,157,209,193,109,243 \
,244,244,116,30,127,252,113,252,253,253,233,215,175,95,126,213,1,208,219,253,192,3,15,16,25,105,111,135,72,3,30,163,16,13,195,146,192,83,8,205,126,230,53,117,18,62,119,238,156,227,162 \
,211,70,10,22,194,115,124,132,30,235,57,8,224,205,55,223,164,113,227,198,185,74,206,213,169,83,39,94,125,245,85,107,151,249,126,192,14,224,125,163,53,53,175,152,245,77,241,226,197,179,251 \
,92,174,88,230,238,4,221,253,234,82,54,31,117,151,11,214,55,23,47,94,52,82,104,177,98,153,118,167,47,16,128,110,173,16,55,103,63,248,76,30,135,14,243,99,94,200,238,179,110,100,175 \
,147,195,239,38,207,178,216,127,197,178,250,156,133,61,225,156,169,123,135,244,244,116,199,237,57,99,164,224,44,84,168,80,129,83,167,78,185,170,248,108,221,117,215,93,214,224,43,63,36,2,29 \
,129,245,64,211,180,180,52,6,12,24,128,151,151,23,125,251,246,205,151,10,36,37,37,241,224,131,15,242,203,47,246,100,181,10,61,15,244,130,124,169,128,135,144,172,182,66,104,246,139,139,195 \
,13,80,158,57,100,3,4,207,187,129,20,194,132,167,200,200,186,170,148,98,200,144,33,89,117,23,189,161,241,227,199,59,102,54,125,23,104,105,172,134,174,145,233,68,97,98,156,35,232,150,38 \
,235,91,35,133,154,149,233,196,150,197,121,46,79,178,184,225,207,255,102,152,130,203,126,240,185,232,56,4,157,28,207,211,216,175,169,166,142,195,192,192,64,199,169,212,110,22,201,219,207,3,166 \
,130,254,75,151,46,57,6,253,114,239,96,198,69,116,240,185,23,116,34,183,199,30,123,204,49,9,164,75,92,185,114,133,7,31,124,144,159,126,250,201,182,72,1,35,128,79,93,190,114,15,35 \
,129,167,16,154,61,105,66,90,90,154,145,2,179,24,235,86,80,231,42,20,226,70,146,208,201,102,206,129,110,121,232,222,189,123,174,110,4,189,189,189,153,63,127,62,213,171,87,183,45,242,67 \
,119,61,170,100,184,174,38,101,58,81,88,230,219,115,138,195,77,175,39,94,163,51,85,208,212,124,199,89,116,187,203,183,126,120,183,0,251,193,103,234,56,204,226,250,229,137,199,162,189,215,158 \
,169,227,80,41,229,184,15,111,118,67,144,31,247,14,158,184,239,11,170,243,232,105,114,246,3,164,164,164,208,171,87,47,86,175,94,237,178,21,166,164,164,240,240,195,15,59,38,140,122,17,240 \
,140,244,252,249,76,14,102,33,52,123,127,49,23,117,29,3,203,83,105,33,110,49,199,209,221,109,211,65,39,198,24,62,124,120,174,10,40,85,170,20,75,150,44,177,78,224,94,30,88,136,14 \
,66,61,81,166,57,245,18,18,204,76,177,23,24,24,104,125,27,144,221,231,220,40,83,5,29,234,155,103,137,137,137,215,45,50,82,112,225,96,63,248,92,116,28,130,195,247,238,33,236,117,10 \
,10,10,50,82,96,22,173,141,55,219,161,198,239,29,130,130,130,28,131,79,185,119,48,235,12,58,248,252,3,116,96,216,187,119,111,54,109,218,100,124,69,215,174,93,163,119,239,222,172,90,181 \
,202,186,248,5,224,255,25,95,89,1,33,99,60,69,158,253,245,215,95,142,201,115,242,93,76,76,140,169,162,18,128,178,96,238,194,157,69,162,129,42,70,10,46,228,210,210,210,178,74,192,226 \
,22,193,193,193,198,186,87,221,2,86,1,147,128,241,0,243,231,207,167,89,179,102,185,154,51,173,81,163,70,204,154,53,203,154,109,176,37,186,219,237,51,134,235,106,66,166,192,40,139,192,41 \
,79,28,146,155,248,0,193,192,217,172,63,237,22,229,173,111,76,37,179,113,56,239,94,205,120,137,156,177,31,124,166,142,195,82,165,74,225,227,227,99,109,197,43,127,163,207,187,137,189,78,46 \
,58,14,225,230,15,64,140,7,253,94,94,94,148,45,91,150,248,248,120,219,34,79,238,249,81,80,197,1,109,128,255,0,213,109,93,97,127,248,225,7,238,189,247,94,35,43,72,77,77,165,127 \
,255,254,124,255,125,166,100,181,227,40,196,65,39,72,224,41,156,240,240,195,15,59,78,116,94,144,197,2,213,33,203,172,146,121,82,190,124,121,74,150,44,105,77,18,32,83,4,24,112,246,236 \
,89,107,151,76,183,250,240,195,15,157,158,140,250,22,51,1,61,23,103,71,128,231,158,123,142,240,240,112,238,185,231,158,28,23,48,112,224,64,118,236,216,193,140,25,51,108,139,70,163,147,13 \
,121,90,86,232,76,201,194,76,37,232,168,90,181,170,227,162,80,60,43,240,12,205,244,38,52,52,235,79,229,146,195,254,139,207,238,115,34,75,246,253,101,234,56,244,243,243,35,36,36,132,63 \
,255,252,211,182,40,212,72,193,102,217,127,44,89,252,110,242,36,139,253,119,179,99,49,214,246,15,147,15,68,107,215,174,109,13,60,229,222,193,53,78,241,79,240,89,245,242,229,203,116,238,220 \
,153,77,155,54,17,17,17,225,116,225,131,7,15,102,201,146,76,201,106,39,162,31,206,22,106,210,213,86,8,205,62,57,243,222,189,230,230,105,118,56,121,153,121,140,38,132,231,74,7,30,65 \
,119,189,181,119,97,138,139,139,203,85,33,211,166,77,227,238,187,239,182,46,154,141,158,106,197,147,156,199,114,211,105,153,8,220,41,117,235,214,117,92,212,48,171,207,185,145,189,62,1,1,1 \
,198,2,79,135,57,143,15,100,247,57,145,165,131,182,127,252,241,199,31,198,166,169,112,152,211,210,211,142,195,106,88,18,80,153,154,71,55,139,223,241,205,142,69,251,13,195,185,115,231,140,245 \
,194,106,220,184,177,245,109,83,60,119,200,65,65,119,2,104,109,123,147,152,152,200,186,117,102,166,20,93,186,116,169,245,237,2,224,85,35,5,23,112,210,226,41,76,217,138,103,116,135,203,93 \
,58,205,127,216,47,30,103,207,158,229,212,169,83,84,170,228,124,239,150,182,109,219,178,97,195,6,219,219,198,64,5,116,23,15,97,206,68,224,187,124,90,87,16,250,233,168,200,222,121,160,39 \
,176,13,40,250,215,95,127,209,167,79,31,54,110,220,136,175,111,206,46,57,254,254,254,44,94,188,152,38,77,154,216,158,250,7,161,167,110,241,52,7,128,138,112,93,224,148,103,85,171,86,165 \
,98,197,138,196,198,218,99,218,123,128,207,141,20,110,70,11,219,63,34,34,34,240,243,115,254,126,88,41,197,193,131,7,173,139,36,240,204,29,251,254,186,122,245,42,135,15,31,206,234,1,70 \
,174,53,111,222,156,31,127,252,209,246,182,17,122,76,165,167,100,183,109,97,125,227,240,160,42,207,28,126,199,127,3,55,139,36,51,61,169,222,187,119,47,149,43,87,118,186,30,237,218,181,227 \
,253,247,237,51,74,21,67,111,239,79,78,23,236,32,62,62,62,215,61,136,238,190,251,110,230,207,159,111,186,42,238,116,52,31,214,145,215,123,211,91,142,4,158,194,148,139,192,110,119,87,194 \
,9,59,172,111,54,110,220,200,192,129,3,157,46,180,87,175,94,188,252,242,203,182,44,121,222,192,16,224,45,167,11,22,86,39,200,191,99,79,6,116,230,204,175,232,249,201,190,0,216,178,101 \
,11,99,198,140,225,189,247,222,203,113,1,149,42,85,98,225,194,133,180,107,215,206,214,130,99,102,158,35,179,126,3,218,2,252,250,235,175,92,185,114,197,154,28,41,207,218,181,107,199,151,95 \
,126,105,123,219,5,61,214,211,76,202,76,231,4,163,3,97,64,63,88,51,33,42,42,202,113,124,220,175,70,10,46,60,50,237,175,109,219,182,25,9,60,219,182,109,203,235,175,191,110,123,235 \
,15,60,0,44,205,254,47,242,213,131,182,127,84,169,82,133,218,181,107,27,41,244,231,159,127,182,190,253,45,7,127,18,133,14,198,3,65,223,59,116,238,220,217,233,122,180,110,221,154,82,165 \
,74,113,225,130,125,170,210,193,184,32,240,76,75,75,227,232,209,220,197,93,166,122,57,136,194,73,186,218,10,161,237,195,242,212,107,217,178,101,70,10,173,94,189,58,237,219,183,183,46,122,10 \
,221,122,35,196,173,110,14,150,116,241,83,167,78,229,219,111,191,205,85,1,247,223,127,63,111,191,253,182,233,122,153,180,198,246,143,164,164,36,99,89,17,123,247,238,109,125,91,14,232,96,164 \
,96,231,245,197,242,192,186,87,175,94,70,10,117,152,71,47,13,48,211,215,173,240,56,12,68,219,222,56,100,208,204,179,123,238,185,199,177,231,207,0,35,5,59,175,52,96,143,238,122,246,236 \
,137,151,151,151,211,133,198,197,197,17,25,25,105,93,180,38,187,207,90,36,3,246,102,225,229,203,151,59,102,197,205,147,128,128,0,107,146,53,128,135,49,151,160,112,3,240,78,46,95,199,13 \
,173,91,20,114,18,120,10,241,15,123,180,185,110,221,58,99,25,234,94,123,237,53,235,69,49,4,61,127,147,16,133,193,104,96,167,237,205,19,79,60,145,235,46,169,207,61,247,156,177,0,199 \
,5,182,2,246,38,9,83,19,145,119,236,216,209,49,89,202,243,70,10,118,142,47,240,172,237,205,189,247,222,107,108,92,157,67,214,199,159,201,152,19,86,228,138,253,224,219,176,97,3,87,174 \
,92,113,186,64,111,111,111,134,14,29,106,93,212,21,168,229,116,193,206,27,73,70,11,99,22,117,204,179,85,171,86,57,206,225,153,211,31,180,189,21,248,248,241,227,236,218,181,203,72,125,254 \
,253,239,127,91,123,80,20,5,38,27,41,88,15,77,121,41,151,175,232,44,75,18,34,151,36,240,20,226,31,95,3,10,224,202,149,43,204,154,53,203,72,161,205,155,55,167,127,255,254,214,69 \
,99,1,51,3,82,132,240,108,87,129,94,232,121,211,184,116,233,18,61,123,246,204,213,67,29,47,47,47,190,248,226,11,35,93,7,93,32,21,176,71,77,11,23,46,52,242,192,202,215,215,151 \
,231,158,123,206,186,168,21,186,203,173,59,61,5,132,217,222,140,29,59,214,72,161,123,246,236,97,231,206,157,214,69,158,210,149,179,160,177,239,183,203,151,47,243,245,215,95,27,41,116,228,200 \
,145,220,118,155,125,26,73,111,244,244,70,238,84,17,61,15,34,0,15,61,244,144,177,115,195,167,159,126,106,125,187,159,156,103,210,94,137,101,62,207,105,211,166,25,169,79,149,42,85,120,254 \
,249,76,207,156,250,163,91,62,133,40,176,36,240,20,226,31,123,128,31,108,111,166,78,157,106,228,169,49,192,71,31,125,100,29,23,225,7,44,65,103,229,43,40,74,185,187,2,162,192,250,19 \
,221,69,51,13,116,214,205,65,131,6,229,170,59,90,177,98,197,88,182,108,25,197,138,121,226,48,79,166,219,254,113,241,226,69,62,255,220,76,30,160,225,195,135,83,191,126,125,235,162,143,208 \
,93,12,221,161,38,240,134,237,205,3,15,60,192,3,15,60,96,164,96,135,155,244,139,232,46,218,34,247,182,1,246,126,162,211,166,77,51,210,229,51,56,56,152,215,94,123,205,186,232,65,160 \
,159,211,5,231,141,23,48,147,140,177,246,69,139,22,101,202,148,41,70,10,254,239,127,255,235,216,205,246,253,236,62,155,133,4,224,99,219,155,69,139,22,17,29,109,166,129,112,220,184,113,52 \
,107,214,204,186,232,51,116,150,91,33,10,36,9,60,133,200,204,62,199,82,124,124,60,31,124,240,129,145,66,75,150,44,201,146,37,75,40,94,220,158,155,38,4,61,206,194,19,186,45,221,72 \
,35,224,75,244,77,141,16,121,181,9,120,197,246,102,249,242,229,185,190,97,172,83,167,14,115,230,204,49,50,150,203,176,61,192,70,219,155,233,211,167,27,121,96,229,231,231,199,103,159,125,134 \
,191,191,191,109,81,85,224,27,116,146,151,252,84,18,221,154,86,28,160,84,169,82,124,252,241,199,55,254,139,28,58,118,236,24,11,23,46,180,46,250,12,125,19,47,242,102,170,237,31,7,15 \
,30,228,187,239,204,36,251,30,61,122,52,205,155,55,183,46,154,141,206,210,158,223,198,1,15,217,222,76,156,56,145,26,53,106,24,41,216,97,44,249,105,32,183,105,91,167,3,151,65,39,236 \
,25,63,126,188,145,122,249,251,251,243,237,183,223,90,199,218,22,3,214,2,205,179,255,43,33,60,151,4,158,66,100,246,51,150,177,158,19,38,76,224,143,63,204,204,91,223,164,73,19,190,255 \
,254,123,107,183,165,48,224,23,116,166,64,79,226,141,238,214,183,17,157,213,111,0,249,127,179,43,110,61,83,176,252,182,94,121,229,21,54,110,220,120,131,143,95,175,103,207,158,142,93,207,60 \
,197,27,100,116,211,63,121,242,36,147,38,153,153,35,188,121,243,230,142,45,130,237,129,111,209,227,189,242,67,73,116,47,144,59,0,124,124,124,152,63,127,62,213,170,153,233,172,241,244,211,79 \
,147,146,146,98,123,155,136,37,112,18,121,178,4,221,69,20,128,103,159,125,150,164,36,231,103,63,241,243,243,99,241,226,197,84,168,80,193,182,40,8,157,0,170,145,211,133,231,220,115,88,90 \
,221,123,245,234,229,216,29,61,207,86,172,88,193,15,63,252,96,93,244,14,58,105,80,110,156,201,248,59,64,119,187,55,21,248,87,173,90,149,13,27,54,80,190,124,121,219,162,210,232,12,183 \
,79,24,89,129,16,249,72,2,79,33,174,247,20,122,46,66,146,147,147,25,50,100,136,177,9,185,239,187,239,62,182,108,217,98,157,231,171,52,176,26,253,4,185,172,145,149,228,157,45,241,209 \
,65,244,152,149,214,55,254,184,16,185,162,208,83,2,252,1,186,85,160,95,191,126,252,249,231,159,185,42,228,173,183,222,162,85,171,86,46,168,158,83,182,160,123,6,0,240,238,187,239,242,251 \
,239,191,27,41,120,228,200,145,76,156,56,209,186,168,27,122,46,217,219,141,172,32,123,119,162,19,67,53,7,157,196,101,206,156,57,116,234,212,201,72,225,75,150,44,97,205,154,76,73,67,95 \
,5,254,50,82,120,225,149,138,78,188,163,64,39,186,113,56,118,242,172,114,229,202,172,95,191,158,178,101,237,151,169,96,116,114,173,190,70,86,144,189,64,224,83,224,255,217,22,116,232,208,129 \
,249,243,231,27,233,253,144,152,152,200,168,81,163,172,139,246,2,121,237,234,52,25,221,3,2,128,17,35,70,112,246,236,89,39,106,247,143,58,117,234,176,125,251,118,26,54,108,104,91,84,4 \
,125,223,240,35,96,102,46,25,33,242,129,4,158,66,92,47,14,176,95,137,126,254,249,103,70,142,28,105,172,240,198,141,27,179,107,215,46,30,122,200,222,99,200,11,253,228,50,26,152,0,84 \
,200,230,79,93,161,34,48,12,125,241,58,137,126,98,43,23,49,225,42,9,64,15,224,18,192,153,51,103,232,213,171,23,87,175,94,205,113,1,190,190,190,44,92,184,144,144,144,16,23,85,49 \
,207,94,32,35,27,107,74,74,10,15,63,252,48,151,46,93,50,82,240,184,113,227,248,232,163,143,240,243,243,179,45,186,11,221,178,245,44,230,91,63,75,160,135,28,236,66,143,237,164,88,177 \
,98,44,89,178,132,1,3,204,204,166,17,29,29,205,176,97,195,172,139,126,5,62,52,82,184,248,47,150,113,178,239,190,251,46,107,215,174,53,82,112,131,6,13,216,178,101,139,117,206,204,32 \
,116,247,239,101,64,117,35,43,201,172,11,122,170,179,39,109,11,6,12,24,192,138,21,43,40,82,164,136,211,133,43,165,24,50,100,136,245,225,87,58,48,28,29,192,231,197,53,244,92,221,41 \
,0,177,177,177,116,239,222,157,228,228,220,54,158,102,45,52,52,148,109,219,182,49,114,228,72,188,189,237,183,239,237,209,231,130,57,184,167,251,179,16,185,226,123,243,143,8,145,35,213,129,49 \
,238,174,132,3,91,203,93,94,124,13,132,3,255,6,152,61,123,54,97,97,97,188,244,210,75,70,42,86,190,124,121,86,172,88,193,55,223,124,195,203,47,191,204,241,227,199,65,143,161,122,13 \
,157,245,118,37,186,219,212,15,88,178,229,25,80,10,157,81,247,126,116,166,204,112,28,30,64,213,170,85,139,199,30,123,140,29,59,118,56,78,115,32,132,9,7,129,199,129,133,128,215,206,157 \
,59,25,53,106,20,159,124,242,201,77,254,236,31,229,202,149,163,92,185,114,174,170,95,94,157,1,30,5,86,1,62,251,247,239,103,224,192,129,44,93,186,212,72,203,204,83,79,61,69,195,134 \
,13,25,50,100,8,135,15,31,6,61,214,107,42,186,11,226,39,232,22,215,19,78,172,162,62,48,8,253,16,172,164,109,225,93,119,221,197,156,57,115,140,77,157,146,152,152,72,183,110,221,56 \
,127,254,188,109,209,5,44,201,167,60,156,167,93,227,146,201,58,9,206,51,232,135,19,13,108,61,11,118,236,216,65,173,90,206,167,20,176,181,188,141,26,53,138,175,190,250,202,182,184,59,122 \
,170,149,69,192,231,232,110,160,233,89,151,112,83,37,128,222,232,0,176,137,109,97,241,226,197,153,50,101,138,227,3,11,167,76,154,52,137,37,75,150,88,23,141,3,182,59,89,236,111,232,64 \
,121,46,224,181,117,235,86,6,15,30,204,130,5,11,140,156,7,130,130,130,248,248,227,143,233,215,175,31,207,63,255,60,59,118,236,0,125,47,63,40,227,181,27,61,38,123,53,16,69,70,235 \
,183,16,194,51,172,70,255,40,85,203,150,45,149,9,61,123,246,84,182,50,209,79,140,61,197,175,100,212,171,119,239,222,70,182,181,69,139,22,214,109,245,196,87,110,147,3,56,242,70,159,192 \
,21,160,188,188,188,212,228,201,147,141,236,59,171,228,228,100,245,225,135,31,170,154,53,107,102,181,13,105,232,174,63,159,160,91,55,58,3,13,209,45,149,65,14,245,245,69,7,150,85,209,23 \
,236,78,192,8,116,250,251,21,232,9,160,179,220,87,161,161,161,106,244,232,209,106,219,182,109,246,122,61,254,248,227,214,207,228,53,69,95,168,117,61,95,127,253,181,211,251,43,46,46,206,177 \
,254,143,231,177,110,121,81,220,186,238,15,63,252,208,233,237,185,118,237,154,227,246,152,152,231,245,81,107,153,39,78,156,112,170,142,31,125,244,145,99,29,75,24,168,227,123,214,50,191,248,226 \
,11,167,247,101,110,108,222,188,217,113,155,238,49,176,77,160,91,62,237,229,142,24,49,66,165,167,167,27,171,247,149,43,87,212,27,111,188,161,74,149,42,149,213,111,57,10,221,77,240,241,140 \
,237,185,157,235,207,19,197,129,26,192,125,232,110,153,159,1,71,28,203,170,84,169,146,250,248,227,143,85,106,106,170,177,186,95,186,116,73,181,110,221,218,186,158,84,160,131,161,253,254,166,173 \
,220,160,160,32,35,245,125,243,205,55,221,125,13,187,217,203,30,189,103,161,58,186,5,94,1,42,44,44,76,29,59,118,204,200,126,177,89,191,126,189,138,136,136,200,170,94,103,209,65,232,11 \
,232,239,183,30,80,6,221,187,199,166,40,122,120,71,4,208,7,120,27,221,90,155,98,45,203,215,215,87,13,26,52,72,197,196,196,24,173,251,167,159,126,170,188,189,189,173,117,94,232,80,63 \
,103,189,102,221,142,1,3,6,168,148,148,20,163,219,160,148,82,43,87,174,84,109,218,180,81,94,94,94,217,29,31,107,209,227,235,159,4,218,0,13,208,247,15,183,57,212,183,56,122,184,79 \
,24,122,76,119,51,244,212,45,99,129,175,128,191,109,229,182,110,221,218,233,122,55,109,218,212,90,207,101,184,159,189,62,147,38,77,50,240,205,40,21,16,16,96,221,198,55,110,184,246,66,68 \
,90,60,69,158,133,132,132,16,22,22,118,243,15,230,163,152,152,24,107,178,10,103,165,163,111,224,151,1,29,149,82,188,244,210,75,196,197,197,49,117,234,84,99,217,53,139,20,41,194,211,79 \
,63,205,200,145,35,217,176,97,3,139,22,45,226,187,239,190,179,141,13,241,70,143,181,186,211,200,202,50,220,118,219,109,180,108,217,146,251,239,191,159,14,29,58,208,168,81,126,230,136,16,2 \
,208,173,71,77,208,1,16,35,71,142,164,97,195,134,132,135,135,187,183,86,206,123,23,125,211,63,12,96,230,204,153,92,185,114,133,207,62,251,12,31,31,31,167,11,47,90,180,40,227,199,143 \
,103,212,168,81,124,254,249,231,204,153,51,135,253,251,237,249,100,26,100,188,242,172,69,139,22,12,30,60,152,71,31,125,212,72,119,70,155,139,23,47,210,185,115,103,182,109,179,39,200,86,192 \
,191,208,221,252,61,82,169,82,165,60,238,26,119,254,252,121,254,254,251,239,156,124,244,8,186,91,251,106,32,232,232,209,163,220,119,223,125,108,216,176,129,154,53,107,26,169,75,219,182,109,105 \
,219,182,45,107,215,174,101,246,236,217,172,90,181,202,118,253,45,131,110,181,236,157,215,178,43,84,168,192,128,1,3,24,62,124,184,241,239,224,131,15,62,224,153,103,158,177,78,55,179,21,221 \
,69,86,101,255,87,185,246,6,250,65,240,104,128,175,190,250,138,115,231,206,177,104,209,34,130,130,28,159,5,229,93,151,46,93,232,210,165,11,209,209,209,44,88,176,128,149,43,87,178,123,247 \
,110,219,182,149,66,7,254,166,30,238,0,24,173,191,16,133,141,180,120,222,98,234,215,175,111,221,255,206,182,120,218,248,161,159,248,217,203,238,212,169,147,138,143,143,119,217,118,164,166,166,170 \
,200,200,72,53,125,250,116,213,183,111,95,213,176,97,67,85,180,104,209,92,63,17,247,247,247,87,53,107,214,84,29,59,118,84,163,71,143,86,115,230,204,81,191,253,246,91,142,158,188,74,139 \
,103,150,164,197,19,99,45,158,0,229,129,24,91,185,161,161,161,234,236,217,179,78,239,211,156,112,97,139,39,232,150,147,247,173,229,119,237,218,85,157,63,127,222,37,219,114,240,224,65,53,125 \
,250,116,213,189,123,119,21,22,22,150,93,235,199,117,47,95,95,95,85,175,94,61,213,191,127,127,53,123,246,108,117,252,248,113,151,212,47,58,58,90,53,108,216,208,186,238,52,204,255,110,141 \
,183,120,122,162,23,94,120,33,167,45,158,54,45,209,195,53,20,160,202,151,47,175,54,111,222,236,146,186,157,63,127,94,45,94,188,88,13,31,62,92,69,68,68,56,182,248,220,240,85,190,124 \
,121,213,174,93,59,53,97,194,4,181,117,235,86,163,45,237,54,215,174,93,115,220,127,10,61,173,153,43,35,169,177,232,135,216,10,80,119,222,121,167,58,112,224,128,241,109,179,138,141,141,85 \
,203,151,47,87,99,198,140,81,29,58,116,80,97,97,97,202,199,199,39,47,45,234,170,76,153,50,234,174,187,238,82,79,60,241,132,154,59,119,174,250,227,143,63,140,212,81,90,60,11,47,105 \
,241,20,226,230,174,1,3,209,55,200,99,0,175,53,107,214,208,176,97,67,230,205,155,71,251,246,237,141,175,208,199,199,135,136,136,8,34,34,34,24,61,122,52,0,233,233,233,196,199,199,115 \
,230,204,25,78,159,62,205,133,11,23,0,221,146,16,20,20,132,175,175,47,190,190,190,148,41,83,198,254,42,91,182,172,145,86,22,33,92,36,30,221,42,242,19,224,127,252,248,113,30,121,228 \
,17,214,172,89,99,77,158,81,16,41,116,75,71,34,240,50,224,181,114,229,74,154,52,105,194,226,197,139,105,210,164,201,141,255,58,151,234,214,173,75,221,186,117,237,231,138,164,164,36,78,158 \
,60,73,92,92,28,103,206,156,65,41,69,66,66,2,37,74,148,192,199,199,135,114,229,202,81,177,98,69,42,87,174,108,180,85,51,43,43,86,172,96,208,160,65,92,188,104,31,170,126,21,221 \
,186,180,192,165,43,22,54,91,129,182,232,177,199,229,226,227,227,105,219,182,45,19,39,78,228,165,151,94,50,58,47,110,169,82,165,232,213,171,23,189,122,245,2,116,230,234,216,216,88,98,98 \
,98,136,143,143,39,37,37,133,203,151,47,227,239,239,143,159,159,31,197,139,23,167,82,165,74,132,132,132,80,186,116,105,99,245,200,74,108,108,44,125,251,246,101,203,150,45,214,197,223,161,199 \
,23,155,201,254,147,181,183,129,88,96,38,80,116,223,190,125,52,109,218,148,169,83,167,26,29,175,106,85,161,66,5,186,117,235,70,183,110,221,236,203,82,82,82,50,221,63,36,38,38,2,122 \
,204,117,64,64,0,69,139,22,165,88,177,98,4,5,5,81,180,104,81,74,148,40,65,169,82,165,40,85,170,148,75,234,40,10,47,9,60,133,200,25,133,126,114,249,31,116,210,128,242,113,113 \
,113,116,236,216,145,71,30,121,132,201,147,39,91,39,120,118,9,111,111,111,42,86,172,72,197,138,21,93,186,30,33,242,217,47,232,36,94,31,1,252,248,227,143,188,246,218,107,198,166,129,112 \
,179,113,232,100,31,115,128,18,199,142,29,163,69,139,22,188,240,194,11,188,252,242,203,4,4,4,184,100,165,129,129,129,212,169,83,135,58,117,234,184,164,252,156,56,115,230,12,47,190,248,34 \
,243,230,205,179,118,105,60,134,126,208,176,219,109,21,43,156,34,209,25,79,23,2,247,166,165,165,241,242,203,47,243,227,143,63,242,241,199,31,83,191,126,125,151,172,212,199,199,135,202,149,43 \
,91,167,15,203,119,74,41,230,206,157,203,152,49,99,56,115,230,140,109,113,26,122,250,158,183,49,219,189,54,59,115,209,199,252,55,64,253,164,164,36,134,15,31,206,183,223,126,203,244,233,211 \
,185,243,78,163,35,105,178,228,239,239,79,149,42,85,168,82,165,138,203,215,37,196,141,20,232,71,202,66,184,193,90,116,114,159,213,160,47,106,243,231,207,167,78,157,58,76,154,52,201,216,244 \
,9,66,20,50,31,163,187,179,3,58,219,228,202,149,121,77,72,237,113,150,163,19,168,236,6,184,122,245,42,111,190,249,38,245,235,215,191,37,179,70,167,166,166,50,107,214,44,234,212,169,195 \
,220,185,115,173,65,231,10,244,152,94,9,58,221,227,47,244,220,204,83,200,200,32,252,159,255,252,135,198,141,27,243,226,139,47,146,144,144,224,214,202,185,194,158,61,123,184,247,222,123,25,50 \
,100,136,53,232,252,11,104,7,188,69,254,4,157,54,81,64,83,244,185,46,29,96,243,230,205,132,135,135,51,114,228,72,226,226,226,242,177,42,66,184,143,4,158,66,228,94,60,122,126,177,46 \
,192,33,128,75,151,46,49,110,220,56,110,191,253,118,198,141,27,199,233,211,167,221,90,65,33,10,160,225,232,12,206,40,165,24,56,112,32,209,209,121,29,90,236,113,162,209,89,34,71,147,49 \
,61,210,177,99,199,120,232,161,135,104,218,180,41,223,125,247,157,53,64,43,144,82,82,82,152,61,123,54,181,107,215,102,196,136,17,214,233,82,254,68,39,185,233,142,158,58,69,184,79,42,122 \
,184,72,51,96,39,192,181,107,215,120,247,221,119,9,13,13,229,181,215,94,179,126,111,5,214,174,93,187,232,214,173,27,225,225,225,214,100,86,169,192,116,160,46,176,217,77,85,187,2,60,141 \
,14,64,255,11,186,59,242,204,153,51,9,13,13,101,232,208,161,28,58,116,200,77,85,203,31,74,41,118,239,222,109,75,158,40,10,33,9,60,133,200,187,213,232,180,227,207,161,131,81,46,92 \
,184,192,164,73,147,168,90,181,42,3,6,12,224,199,31,127,36,45,173,32,76,79,151,217,153,51,103,172,147,106,11,145,31,146,128,158,100,4,39,127,255,253,55,61,123,246,36,41,41,201,189 \
,181,50,39,13,61,213,73,93,96,30,25,147,212,219,110,146,239,188,243,78,222,127,255,253,2,119,67,118,252,248,113,94,127,253,117,106,212,168,193,208,161,67,57,122,244,168,237,127,93,6,38 \
,163,183,119,185,219,42,40,178,178,27,61,159,243,112,244,248,67,46,92,184,192,27,111,188,65,104,104,40,79,61,245,20,145,145,145,110,173,96,110,37,39,39,243,205,55,223,208,174,93,187,172 \
,30,230,108,66,247,58,120,22,240,132,166,221,95,209,217,188,251,2,255,3,221,19,98,246,236,217,212,173,91,151,206,157,59,179,112,225,66,174,92,185,226,214,74,154,114,225,194,5,150,47,95 \
,206,136,17,35,184,253,246,219,137,136,136,224,216,177,99,238,174,150,112,19,9,60,133,112,78,10,122,18,247,80,244,69,60,26,244,69,112,254,252,249,116,236,216,145,42,85,170,240,236,179,207 \
,178,126,253,122,146,147,93,153,195,192,57,7,14,28,96,242,228,201,180,104,209,130,10,21,42,176,110,221,58,119,87,73,20,62,71,128,1,100,116,69,219,183,111,31,67,135,14,117,111,141,204 \
,139,69,79,244,94,7,248,28,125,14,97,255,254,253,60,243,204,51,84,170,84,137,158,61,123,242,205,55,223,112,238,220,57,55,86,51,123,49,49,49,124,250,233,167,180,105,211,134,234,213,171 \
,51,97,194,4,235,131,170,4,244,216,185,106,232,113,241,151,221,85,79,113,67,233,232,249,161,195,208,173,112,39,65,39,155,153,49,99,6,119,221,117,23,119,220,113,7,147,39,79,38,42,42 \
,202,157,245,204,214,149,43,87,88,187,118,45,195,134,13,163,98,197,138,244,239,223,159,13,27,54,88,63,178,22,157,213,183,13,25,189,41,60,136,2,190,5,234,163,123,4,108,7,157,68,112 \
,205,154,53,244,235,215,143,10,21,42,48,120,240,96,150,46,93,154,211,41,116,60,66,108,108,44,43,86,172,96,204,152,49,52,109,218,148,178,101,203,210,163,71,15,102,205,154,69,76,76,140 \
,237,99,105,192,22,224,121,244,195,123,81,72,72,114,33,33,204,72,70,95,196,63,3,58,161,111,158,187,2,69,99,99,99,153,62,125,58,211,167,79,39,32,32,128,251,238,187,143,86,173,90 \
,17,17,17,65,120,120,56,37,75,150,204,247,202,94,186,116,137,221,187,119,19,25,25,73,100,100,36,219,183,111,231,228,201,147,89,125,244,40,58,243,223,210,252,173,161,40,196,86,163,167,198 \
,120,21,224,235,175,191,166,89,179,102,252,235,95,255,114,111,173,204,59,2,60,129,78,179,255,56,240,24,80,53,37,37,133,101,203,150,177,108,217,50,124,124,124,104,214,172,25,29,58,116,160 \
,121,243,230,52,109,218,212,45,89,38,99,99,99,137,140,140,228,231,159,127,102,237,218,181,236,221,155,229,61,252,62,116,18,165,121,72,151,218,130,36,25,61,238,112,54,208,11,24,140,30,11 \
,234,189,127,255,126,198,142,29,203,216,177,99,169,82,165,10,157,58,117,226,222,123,239,165,105,211,166,212,172,89,211,104,70,220,156,184,114,229,10,123,246,236,97,231,206,157,108,216,176,129,77 \
,155,54,101,213,35,226,2,58,137,210,103,232,150,69,79,151,142,238,17,176,28,61,165,211,99,232,4,92,165,18,18,18,152,59,119,46,115,231,206,197,215,215,151,102,205,154,209,182,109,91,34 \
,34,34,104,210,164,137,219,19,13,166,167,167,115,236,216,49,162,162,162,56,112,224,128,253,187,201,230,94,2,244,119,179,25,157,97,121,37,80,176,186,119,8,35,242,247,172,225,121,86,163,131 \
,4,74,150,44,73,68,68,132,211,5,238,219,183,207,58,190,111,55,186,123,135,39,248,21,157,213,142,242,229,203,115,199,29,119,184,185,58,174,241,203,47,191,112,249,178,253,1,251,215,232,249 \
,12,221,165,36,186,235,96,79,116,183,154,64,199,15,120,121,121,81,189,122,117,26,54,108,72,245,234,213,237,175,106,213,170,81,190,124,121,167,38,106,78,78,78,230,196,137,19,156,60,121,146 \
,147,39,79,114,226,196,9,142,29,59,198,158,61,123,248,253,247,223,179,235,2,108,155,127,118,5,240,61,176,63,171,15,229,66,40,58,147,37,0,13,26,52,160,66,133,10,78,21,152,146,146 \
,226,152,18,255,9,116,203,81,126,40,78,198,24,61,128,218,181,107,59,157,37,80,41,197,198,141,27,173,139,198,160,19,128,56,227,81,44,201,122,90,182,108,73,209,162,69,243,92,88,76,76 \
,12,255,251,223,255,172,139,74,98,217,15,46,224,141,190,57,121,0,192,207,207,143,251,238,187,207,232,10,46,92,184,192,238,221,153,242,220,180,0,126,54,186,146,220,241,6,238,71,127,119,157 \
,129,114,89,125,168,102,205,154,52,110,220,152,26,53,106,216,95,97,97,97,4,7,7,59,53,53,74,82,82,18,241,241,241,28,61,122,148,232,232,104,162,163,163,57,124,248,48,187,119,239,182 \
,182,82,56,58,134,190,129,156,135,251,111,242,223,4,94,1,157,77,181,85,171,86,110,174,142,107,28,62,124,152,19,39,78,216,222,94,0,92,49,15,201,237,232,41,196,186,163,239,27,174,187 \
,87,180,221,51,213,169,83,199,126,28,86,175,94,157,144,144,16,138,23,47,158,231,21,167,165,165,113,246,236,89,78,158,60,73,116,116,52,71,142,28,33,58,58,154,125,251,246,17,21,21,69 \
,106,106,106,86,127,118,25,216,136,206,26,187,2,215,78,143,146,31,138,160,207,1,125,208,83,225,100,249,29,87,170,84,137,70,141,26,81,179,102,77,251,189,67,104,104,40,33,33,33,148,40 \
,225,252,84,203,201,201,201,156,62,125,154,83,167,78,113,250,244,105,254,252,243,79,142,30,61,202,177,99,199,56,122,244,40,71,142,28,177,222,111,101,229,111,116,214,242,159,208,221,157,127,35 \
,35,177,149,7,178,247,203,174,81,163,6,161,161,161,78,23,184,105,211,38,210,211,211,109,111,39,146,241,48,181,176,147,192,51,35,240,116,17,143,12,60,11,17,119,7,158,86,69,129,123,129 \
,14,232,32,244,78,192,255,166,127,84,180,168,125,78,206,210,165,75,227,235,235,139,183,183,119,166,139,202,165,75,151,184,118,237,26,23,46,92,224,218,181,107,92,186,116,137,164,164,164,156,102 \
,201,75,65,119,65,138,68,39,155,88,143,206,250,103,74,40,150,192,211,69,220,22,120,186,136,241,192,211,5,92,29,120,130,190,217,218,133,238,178,153,31,220,29,120,90,121,163,51,192,118,66 \
,103,224,108,76,22,15,174,28,21,43,86,140,224,224,96,130,131,131,237,231,136,192,192,192,76,1,105,82,82,18,87,175,94,69,41,197,249,243,231,57,123,246,44,231,206,157,203,233,88,218,139 \
,192,14,96,29,176,6,248,61,151,219,229,74,246,192,179,16,113,85,224,105,85,17,253,0,168,35,250,55,18,114,179,63,240,247,247,167,76,153,50,4,7,7,83,186,116,105,252,252,252,240,241 \
,241,201,20,144,166,166,166,218,231,146,188,124,249,50,231,206,157,227,236,217,179,57,77,110,148,10,28,68,183,158,173,65,79,115,118,53,151,219,85,80,248,160,147,17,117,64,183,68,55,6,138 \
,221,236,143,252,252,252,50,221,59,216,206,1,37,75,150,188,174,165,218,54,39,120,98,98,34,9,9,9,246,255,230,50,211,113,2,250,65,245,94,244,57,98,7,240,7,249,155,57,216,25,174 \
,174,167,4,158,25,10,123,224,57,22,215,6,99,71,129,151,92,88,126,110,188,67,254,221,192,121,138,173,232,100,30,158,200,15,157,152,168,9,250,24,172,1,84,71,63,105,118,69,23,248,84 \
,224,20,122,28,79,52,250,65,68,36,176,7,215,94,176,203,162,187,113,185,210,44,244,211,212,252,16,128,110,221,113,165,249,232,214,102,103,220,11,184,178,111,234,32,116,50,32,87,107,140,62 \
,79,231,135,241,232,27,37,79,228,11,52,64,223,128,54,1,106,162,207,25,85,112,205,117,60,21,56,142,238,14,252,63,244,3,128,72,116,22,111,79,189,145,236,139,30,43,87,152,92,70,119 \
,141,205,79,149,208,199,97,83,160,30,250,4,3,106,233,0,0,2,249,73,68,65,84,56,172,129,126,184,234,10,103,208,215,172,195,232,235,85,36,250,250,117,203,100,29,203,37,111,160,54,255 \
,220,59,212,70,143,211,13,67,183,148,186,82,50,250,188,112,20,253,64,249,40,250,156,185,31,56,145,253,159,21,8,139,92,92,254,82,244,152,222,66,175,176,7,158,66,120,26,63,116,240,89 \
,9,8,206,120,149,5,202,0,65,232,139,142,173,185,179,40,250,6,49,5,221,18,113,21,125,49,78,204,88,22,139,190,72,156,64,183,98,122,106,23,23,33,68,222,20,69,223,112,134,160,207 \
,19,193,232,115,69,48,250,92,18,192,63,1,65,113,254,201,232,121,25,125,142,72,70,143,179,58,7,156,206,248,119,12,250,156,113,45,95,182,64,220,10,188,208,215,172,80,254,57,6,203,101 \
,252,251,54,116,171,157,173,185,51,16,125,236,165,102,188,18,209,15,51,206,242,207,177,120,22,136,67,7,54,174,238,89,113,171,240,2,42,163,239,31,108,231,0,219,253,131,109,223,151,204,248 \
,156,31,58,72,181,78,60,158,136,62,31,36,162,91,210,19,208,251,254,20,250,220,16,139,238,58,43,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8 \
,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33 \
,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132 \
,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16 \
,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66 \
,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8 \
,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33 \
,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132 \
,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16 \
,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66,8,33,132,16,66 \
,8,33,132,16,66,8,33,132,16,66,8,225,232,255,3,62,116,114,239,207,243,212,29,0,0,0,0,73,69,78,68,174,66,96,130
};
| 186.986922
| 203
| 0.693762
|
Edimartin
|
ce2d3d530909413d33ebafe49be1f9bd6af8820a
| 32,117
|
cc
|
C++
|
runtime/vm/compiler/backend/range_analysis_test.cc
|
TheRakeshPurohit/sdk
|
2885ecc42664e4972343addeb73beb892f4737ea
|
[
"BSD-3-Clause"
] | 1
|
2022-02-27T08:22:00.000Z
|
2022-02-27T08:22:00.000Z
|
runtime/vm/compiler/backend/range_analysis_test.cc
|
Fareed-Ahmad7/sdk
|
5183ba3ca4fe3787cae3c0a6cc7f8748ff01bcf5
|
[
"BSD-3-Clause"
] | 4
|
2021-11-09T10:35:35.000Z
|
2022-01-13T10:04:12.000Z
|
runtime/vm/compiler/backend/range_analysis_test.cc
|
Fareed-Ahmad7/sdk
|
5183ba3ca4fe3787cae3c0a6cc7f8748ff01bcf5
|
[
"BSD-3-Clause"
] | null | null | null |
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "vm/compiler/backend/range_analysis.h"
#include "vm/compiler/backend/il_test_helper.h"
#include "vm/unit_test.h"
namespace dart {
TEST_CASE(RangeTests) {
Range* zero =
new Range(RangeBoundary::FromConstant(0), RangeBoundary::FromConstant(0));
Range* positive = new Range(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(100));
Range* negative = new Range(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(-100));
Range* range_x = new Range(RangeBoundary::FromConstant(-15),
RangeBoundary::FromConstant(100));
EXPECT(positive->IsPositive());
EXPECT(zero->Overlaps(0, 0));
EXPECT(positive->Overlaps(0, 0));
EXPECT(!negative->Overlaps(0, 0));
EXPECT(range_x->Overlaps(0, 0));
EXPECT(range_x->IsWithin(-15, 100));
EXPECT(!range_x->IsWithin(-15, 99));
EXPECT(!range_x->IsWithin(-14, 100));
#define TEST_RANGE_OP_(Op, l_min, l_max, r_min, r_max, Clamp, res_min, \
res_max) \
{ \
RangeBoundary min, max; \
Range* left_range = new Range(RangeBoundary::FromConstant(l_min), \
RangeBoundary::FromConstant(l_max)); \
Range* shift_range = new Range(RangeBoundary::FromConstant(r_min), \
RangeBoundary::FromConstant(r_max)); \
Op(left_range, shift_range, &min, &max); \
min = Clamp(min); \
max = Clamp(max); \
EXPECT(min.Equals(res_min)); \
if (FLAG_support_il_printer && !min.Equals(res_min)) { \
OS::PrintErr("%s\n", min.ToCString()); \
} \
EXPECT(max.Equals(res_max)); \
if (FLAG_support_il_printer && !max.Equals(res_max)) { \
OS::PrintErr("%s\n", max.ToCString()); \
} \
}
#define NO_CLAMP(b) (b)
#define TEST_RANGE_OP(Op, l_min, l_max, r_min, r_max, result_min, result_max) \
TEST_RANGE_OP_(Op, l_min, l_max, r_min, r_max, NO_CLAMP, result_min, \
result_max)
#define CLAMP_TO_SMI(b) (b.Clamp(RangeBoundary::kRangeBoundarySmi))
#define TEST_RANGE_OP_SMI(Op, l_min, l_max, r_min, r_max, res_min, res_max) \
TEST_RANGE_OP_(Op, l_min, l_max, r_min, r_max, CLAMP_TO_SMI, res_min, res_max)
TEST_RANGE_OP(Range::Shl, -15, 100, 0, 2, RangeBoundary(-60),
RangeBoundary(400));
TEST_RANGE_OP(Range::Shl, -15, 100, -2, 2, RangeBoundary(-60),
RangeBoundary(400));
TEST_RANGE_OP(Range::Shl, -15, -10, 1, 2, RangeBoundary(-60),
RangeBoundary(-20));
TEST_RANGE_OP(Range::Shl, 5, 10, -2, 2, RangeBoundary(5), RangeBoundary(40));
TEST_RANGE_OP(Range::Shl, -15, 100, 0, 64, RangeBoundary::NegativeInfinity(),
RangeBoundary::PositiveInfinity());
TEST_RANGE_OP(Range::Shl, -1, 1, 63, 63, RangeBoundary(kMinInt64),
RangeBoundary::PositiveInfinity());
if (compiler::target::kSmiBits == 62) {
TEST_RANGE_OP_SMI(Range::Shl, -1, 1, 62, 62,
RangeBoundary(compiler::target::kSmiMin),
RangeBoundary(compiler::target::kSmiMax));
TEST_RANGE_OP_SMI(Range::Shl, -1, 1, 30, 30, RangeBoundary(-(1 << 30)),
RangeBoundary(1 << 30));
} else {
ASSERT(compiler::target::kSmiBits == 30);
TEST_RANGE_OP_SMI(Range::Shl, -1, 1, 30, 30,
RangeBoundary(compiler::target::kSmiMin),
RangeBoundary(compiler::target::kSmiMax));
TEST_RANGE_OP_SMI(Range::Shl, -1, 1, 62, 62,
RangeBoundary(compiler::target::kSmiMin),
RangeBoundary(compiler::target::kSmiMax));
}
TEST_RANGE_OP(Range::Shl, 0, 100, 0, 64, RangeBoundary(0),
RangeBoundary::PositiveInfinity());
TEST_RANGE_OP(Range::Shl, -100, 0, 0, 64, RangeBoundary::NegativeInfinity(),
RangeBoundary(0));
TEST_RANGE_OP(Range::Shr, -8, 8, 1, 2, RangeBoundary(-4), RangeBoundary(4));
TEST_RANGE_OP(Range::Shr, 1, 8, 1, 2, RangeBoundary(0), RangeBoundary(4));
TEST_RANGE_OP(Range::Shr, -16, -8, 1, 2, RangeBoundary(-8),
RangeBoundary(-2));
TEST_RANGE_OP(Range::Shr, 2, 4, -1, 1, RangeBoundary(1), RangeBoundary(4));
TEST_RANGE_OP(Range::Shr, kMaxInt64, kMaxInt64, 0, 1,
RangeBoundary(kMaxInt64 >> 1), RangeBoundary(kMaxInt64));
TEST_RANGE_OP(Range::Shr, kMinInt64, kMinInt64, 0, 1,
RangeBoundary(kMinInt64), RangeBoundary(kMinInt64 >> 1));
#undef TEST_RANGE_OP
}
TEST_CASE(RangeTestsInfinity) {
// +/- inf overflowed.
EXPECT(RangeBoundary::NegativeInfinity().OverflowedSmi());
EXPECT(RangeBoundary::PositiveInfinity().OverflowedSmi());
EXPECT(RangeBoundary::NegativeInfinity().OverflowedMint());
EXPECT(RangeBoundary::PositiveInfinity().OverflowedMint());
const Range fullInt64Range = Range::Full(RangeBoundary::kRangeBoundaryInt64);
Range* all = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::PositiveInfinity());
EXPECT(all->Equals(&fullInt64Range));
EXPECT(all->Overlaps(0, 0));
EXPECT(all->Overlaps(-1, 1));
EXPECT(!all->IsWithin(0, 100));
Range* positive = new Range(RangeBoundary::FromConstant(0),
RangeBoundary::PositiveInfinity());
EXPECT(positive->Equals(&fullInt64Range));
EXPECT(positive->Overlaps(0, 1));
EXPECT(positive->Overlaps(1, 100));
EXPECT(positive->Overlaps(-1, 0));
Range* negative = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::FromConstant(-1));
EXPECT(positive->Equals(&fullInt64Range));
EXPECT(negative->Overlaps(-1, 0));
EXPECT(negative->Overlaps(-2, -1));
Range* negpos = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::FromConstant(0));
EXPECT(negpos->Equals(&fullInt64Range));
EXPECT(!negpos->IsPositive());
Range* a = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::FromConstant(1));
Range* b = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::FromConstant(31));
Range* c = new Range(RangeBoundary::NegativeInfinity(),
RangeBoundary::FromConstant(32));
EXPECT(a->Equals(&fullInt64Range));
EXPECT(b->Equals(&fullInt64Range));
EXPECT(c->Equals(&fullInt64Range));
EXPECT(!c->OnlyLessThanOrEqualTo(31));
Range* unsatisfiable = new Range(RangeBoundary::PositiveInfinity(),
RangeBoundary::NegativeInfinity());
EXPECT(unsatisfiable->Equals(&fullInt64Range));
Range* unsatisfiable_right = new Range(RangeBoundary::PositiveInfinity(),
RangeBoundary::FromConstant(0));
EXPECT(unsatisfiable_right->Equals(&fullInt64Range));
Range* unsatisfiable_left = new Range(RangeBoundary::FromConstant(0),
RangeBoundary::NegativeInfinity());
EXPECT(unsatisfiable_left->Equals(&fullInt64Range));
}
TEST_CASE(RangeUtils) {
// Use kMin/kMax instead of +/-inf as any range with a +/-inf bound is
// converted to the full int64 range due to wrap-around.
const RangeBoundary negativeInfinity =
RangeBoundary::FromConstant(RangeBoundary::kMin);
const RangeBoundary positiveInfinity =
RangeBoundary::FromConstant(RangeBoundary::kMax);
// [-inf, +inf].
const Range& range_0 = *(new Range(negativeInfinity, positiveInfinity));
// [-inf, -1].
const Range& range_a =
*(new Range(negativeInfinity, RangeBoundary::FromConstant(-1)));
// [-inf, 0].
const Range& range_b =
*(new Range(negativeInfinity, RangeBoundary::FromConstant(0)));
// [-inf, 1].
const Range& range_c =
*(new Range(negativeInfinity, RangeBoundary::FromConstant(1)));
// [-1, +inf]
const Range& range_d =
*(new Range(RangeBoundary::FromConstant(-1), positiveInfinity));
// [0, +inf]
const Range& range_e =
*(new Range(RangeBoundary::FromConstant(0), positiveInfinity));
// [1, +inf].
const Range& range_f =
*(new Range(RangeBoundary::FromConstant(1), positiveInfinity));
// [1, 2].
const Range& range_g = *(new Range(RangeBoundary::FromConstant(1),
RangeBoundary::FromConstant(2)));
// [-1, -2].
const Range& range_h = *(new Range(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(-2)));
// [-1, 1].
const Range& range_i = *(new Range(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(1)));
// OnlyPositiveOrZero.
EXPECT(!Range::OnlyPositiveOrZero(range_a, range_b));
EXPECT(!Range::OnlyPositiveOrZero(range_b, range_c));
EXPECT(!Range::OnlyPositiveOrZero(range_c, range_d));
EXPECT(!Range::OnlyPositiveOrZero(range_d, range_e));
EXPECT(Range::OnlyPositiveOrZero(range_e, range_f));
EXPECT(!Range::OnlyPositiveOrZero(range_d, range_d));
EXPECT(Range::OnlyPositiveOrZero(range_e, range_e));
EXPECT(Range::OnlyPositiveOrZero(range_f, range_g));
EXPECT(!Range::OnlyPositiveOrZero(range_g, range_h));
EXPECT(!Range::OnlyPositiveOrZero(range_i, range_i));
// OnlyNegativeOrZero.
EXPECT(Range::OnlyNegativeOrZero(range_a, range_b));
EXPECT(!Range::OnlyNegativeOrZero(range_b, range_c));
EXPECT(Range::OnlyNegativeOrZero(range_b, range_b));
EXPECT(!Range::OnlyNegativeOrZero(range_c, range_c));
EXPECT(!Range::OnlyNegativeOrZero(range_c, range_d));
EXPECT(!Range::OnlyNegativeOrZero(range_d, range_e));
EXPECT(!Range::OnlyNegativeOrZero(range_e, range_f));
EXPECT(!Range::OnlyNegativeOrZero(range_f, range_g));
EXPECT(!Range::OnlyNegativeOrZero(range_g, range_h));
EXPECT(Range::OnlyNegativeOrZero(range_h, range_h));
EXPECT(!Range::OnlyNegativeOrZero(range_i, range_i));
// [-inf, +inf].
EXPECT(!Range::OnlyNegativeOrZero(range_0, range_0));
EXPECT(!Range::OnlyPositiveOrZero(range_0, range_0));
EXPECT(Range::ConstantAbsMax(&range_0) == RangeBoundary::kMax);
EXPECT(Range::ConstantAbsMax(&range_h) == 2);
EXPECT(Range::ConstantAbsMax(&range_i) == 1);
// RangeBOundary.Equals.
EXPECT(RangeBoundary::FromConstant(1).Equals(RangeBoundary::FromConstant(1)));
EXPECT(
!RangeBoundary::FromConstant(2).Equals(RangeBoundary::FromConstant(1)));
EXPECT(RangeBoundary::PositiveInfinity().Equals(
RangeBoundary::PositiveInfinity()));
EXPECT(!RangeBoundary::PositiveInfinity().Equals(
RangeBoundary::NegativeInfinity()));
EXPECT(RangeBoundary::NegativeInfinity().Equals(
RangeBoundary::NegativeInfinity()));
EXPECT(!RangeBoundary::NegativeInfinity().Equals(
RangeBoundary::PositiveInfinity()));
EXPECT(!RangeBoundary::FromConstant(1).Equals(
RangeBoundary::NegativeInfinity()));
EXPECT(!RangeBoundary::FromConstant(1).Equals(
RangeBoundary::NegativeInfinity()));
EXPECT(!RangeBoundary::FromConstant(2).Equals(
RangeBoundary::PositiveInfinity()));
}
TEST_CASE(RangeBinaryOp) {
Range* range_a = new Range(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(RangeBoundary::kMax));
range_a->Clamp(RangeBoundary::kRangeBoundaryInt32);
EXPECT(range_a->min().ConstantValue() == -1);
EXPECT(range_a->max().ConstantValue() == kMaxInt32);
range_a->set_max(RangeBoundary::FromConstant(RangeBoundary::kMax));
Range* range_b = new Range(RangeBoundary::FromConstant(RangeBoundary::kMin),
RangeBoundary::FromConstant(1));
range_b->Clamp(RangeBoundary::kRangeBoundaryInt32);
EXPECT(range_b->min().ConstantValue() == kMinInt32);
EXPECT(range_b->max().ConstantValue() == 1);
range_b->set_min(RangeBoundary::FromConstant(RangeBoundary::kMin));
{
Range result;
Range::BinaryOp(Token::kADD, range_a, range_b, NULL, &result);
ASSERT(!Range::IsUnknown(&result));
EXPECT(!result.min().IsNegativeInfinity());
EXPECT(!result.max().IsPositiveInfinity());
EXPECT(result.min().Equals(
RangeBoundary::MinConstant(RangeBoundary::kRangeBoundaryInt64)));
EXPECT(result.max().Equals(
RangeBoundary::MaxConstant(RangeBoundary::kRangeBoundaryInt64)));
}
// Test that [5, 10] + [0, 5] = [5, 15].
Range* range_c = new Range(RangeBoundary::FromConstant(5),
RangeBoundary::FromConstant(10));
Range* range_d =
new Range(RangeBoundary::FromConstant(0), RangeBoundary::FromConstant(5));
{
Range result;
Range::BinaryOp(Token::kADD, range_c, range_d, NULL, &result);
ASSERT(!Range::IsUnknown(&result));
EXPECT(result.min().ConstantValue() == 5);
EXPECT(result.max().ConstantValue() == 15);
}
// Test that [0xff, 0xfff] & [0xf, 0xf] = [0x0, 0xf].
Range* range_e = new Range(RangeBoundary::FromConstant(0xff),
RangeBoundary::FromConstant(0xfff));
Range* range_f = new Range(RangeBoundary::FromConstant(0xf),
RangeBoundary::FromConstant(0xf));
{
Range result;
Range::BinaryOp(Token::kBIT_AND, range_e, range_f, NULL, &result);
ASSERT(!Range::IsUnknown(&result));
EXPECT(result.min().ConstantValue() == 0x0);
EXPECT(result.max().ConstantValue() == 0xf);
}
}
TEST_CASE(RangeAdd) {
#define TEST_RANGE_ADD(l_min, l_max, r_min, r_max, result_min, result_max) \
{ \
RangeBoundary min, max; \
Range* left_range = new Range(RangeBoundary::FromConstant(l_min), \
RangeBoundary::FromConstant(l_max)); \
Range* right_range = new Range(RangeBoundary::FromConstant(r_min), \
RangeBoundary::FromConstant(r_max)); \
EXPECT(left_range->min().ConstantValue() == l_min); \
EXPECT(left_range->max().ConstantValue() == l_max); \
EXPECT(right_range->min().ConstantValue() == r_min); \
EXPECT(right_range->max().ConstantValue() == r_max); \
Range::Add(left_range, right_range, &min, &max, NULL); \
EXPECT(min.Equals(result_min)); \
if (FLAG_support_il_printer && !min.Equals(result_min)) { \
OS::PrintErr("%s != %s\n", min.ToCString(), result_min.ToCString()); \
} \
EXPECT(max.Equals(result_max)); \
if (FLAG_support_il_printer && !max.Equals(result_max)) { \
OS::PrintErr("%s != %s\n", max.ToCString(), result_max.ToCString()); \
} \
}
// [kMaxInt32, kMaxInt32 + 15] + [10, 20] = [kMaxInt32 + 10, kMaxInt32 + 35].
TEST_RANGE_ADD(static_cast<int64_t>(kMaxInt32),
static_cast<int64_t>(kMaxInt32) + 15, static_cast<int64_t>(10),
static_cast<int64_t>(20),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 10),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 35));
// [kMaxInt32 - 15, kMaxInt32 + 15] + [15, -15] = [kMaxInt32, kMaxInt32].
TEST_RANGE_ADD(static_cast<int64_t>(kMaxInt32) - 15,
static_cast<int64_t>(kMaxInt32) + 15, static_cast<int64_t>(15),
static_cast<int64_t>(-15),
RangeBoundary(static_cast<int64_t>(kMaxInt32)),
RangeBoundary(static_cast<int64_t>(kMaxInt32)));
// [kMaxInt32, kMaxInt32 + 15] + [10, kMaxInt64] = [kMaxInt32 + 10, +inf].
TEST_RANGE_ADD(static_cast<int64_t>(kMaxInt32),
static_cast<int64_t>(kMaxInt32) + 15, static_cast<int64_t>(10),
static_cast<int64_t>(kMaxInt64),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 10),
RangeBoundary::PositiveInfinity());
// [kMinInt64, kMaxInt32 + 15] + [10, 20] = [kMinInt64 + 10, kMaxInt32 + 35].
TEST_RANGE_ADD(static_cast<int64_t>(kMinInt64),
static_cast<int64_t>(kMaxInt32) + 15, static_cast<int64_t>(10),
static_cast<int64_t>(20),
RangeBoundary(static_cast<int64_t>(kMinInt64) + 10),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 35));
// [0, 0] + [kMinInt64, kMaxInt64] = [kMinInt64, kMaxInt64].
TEST_RANGE_ADD(static_cast<int64_t>(0), static_cast<int64_t>(0),
static_cast<int64_t>(kMinInt64),
static_cast<int64_t>(kMaxInt64), RangeBoundary(kMinInt64),
RangeBoundary(kMaxInt64));
// Overflows.
// [-1, 1] + [kMinInt64, kMaxInt64] = [-inf, +inf].
TEST_RANGE_ADD(
static_cast<int64_t>(-1), static_cast<int64_t>(1),
static_cast<int64_t>(kMinInt64), static_cast<int64_t>(kMaxInt64),
RangeBoundary::NegativeInfinity(), RangeBoundary::PositiveInfinity());
// [kMaxInt64, kMaxInt64] + [kMaxInt64, kMaxInt64] = [-inf, +inf].
TEST_RANGE_ADD(
static_cast<int64_t>(kMaxInt64), static_cast<int64_t>(kMaxInt64),
static_cast<int64_t>(kMaxInt64), static_cast<int64_t>(kMaxInt64),
RangeBoundary::NegativeInfinity(), RangeBoundary::PositiveInfinity());
// [kMaxInt64, kMaxInt64] + [1, 1] = [-inf, +inf].
TEST_RANGE_ADD(static_cast<int64_t>(kMaxInt64),
static_cast<int64_t>(kMaxInt64), static_cast<int64_t>(1),
static_cast<int64_t>(1), RangeBoundary::NegativeInfinity(),
RangeBoundary::PositiveInfinity());
#undef TEST_RANGE_ADD
}
TEST_CASE(RangeSub) {
#define TEST_RANGE_SUB(l_min, l_max, r_min, r_max, result_min, result_max) \
{ \
RangeBoundary min, max; \
Range* left_range = new Range(RangeBoundary::FromConstant(l_min), \
RangeBoundary::FromConstant(l_max)); \
Range* right_range = new Range(RangeBoundary::FromConstant(r_min), \
RangeBoundary::FromConstant(r_max)); \
EXPECT(left_range->min().ConstantValue() == l_min); \
EXPECT(left_range->max().ConstantValue() == l_max); \
EXPECT(right_range->min().ConstantValue() == r_min); \
EXPECT(right_range->max().ConstantValue() == r_max); \
Range::Sub(left_range, right_range, &min, &max, NULL); \
EXPECT(min.Equals(result_min)); \
if (FLAG_support_il_printer && !min.Equals(result_min)) { \
OS::PrintErr("%s != %s\n", min.ToCString(), result_min.ToCString()); \
} \
EXPECT(max.Equals(result_max)); \
if (FLAG_support_il_printer && !max.Equals(result_max)) { \
OS::PrintErr("%s != %s\n", max.ToCString(), result_max.ToCString()); \
} \
}
// [kMaxInt32, kMaxInt32 + 15] - [10, 20] = [kMaxInt32 - 20, kMaxInt32 + 5].
TEST_RANGE_SUB(static_cast<int64_t>(kMaxInt32),
static_cast<int64_t>(kMaxInt32) + 15, static_cast<int64_t>(10),
static_cast<int64_t>(20),
RangeBoundary(static_cast<int64_t>(kMaxInt32) - 20),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 5));
// [kMintInt64, kMintInt64] - [1, 1] = [-inf, +inf].
TEST_RANGE_SUB(static_cast<int64_t>(kMinInt64),
static_cast<int64_t>(kMinInt64), static_cast<int64_t>(1),
static_cast<int64_t>(1), RangeBoundary::NegativeInfinity(),
RangeBoundary::PositiveInfinity());
// [1, 1] - [kMintInt64, kMintInt64] = [-inf, +inf].
TEST_RANGE_SUB(
static_cast<int64_t>(1), static_cast<int64_t>(1),
static_cast<int64_t>(kMinInt64), static_cast<int64_t>(kMinInt64),
RangeBoundary::NegativeInfinity(), RangeBoundary::PositiveInfinity());
// [kMaxInt32 + 10, kMaxInt32 + 20] - [-20, -20] =
// [kMaxInt32 + 30, kMaxInt32 + 40].
TEST_RANGE_SUB(static_cast<int64_t>(kMaxInt32) + 10,
static_cast<int64_t>(kMaxInt32) + 20,
static_cast<int64_t>(-20), static_cast<int64_t>(-20),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 30),
RangeBoundary(static_cast<int64_t>(kMaxInt32) + 40));
#undef TEST_RANGE_SUB
}
TEST_CASE(RangeAnd) {
#define TEST_RANGE_AND(l_min, l_max, r_min, r_max, result_min, result_max) \
{ \
RangeBoundary min, max; \
Range* left_range = new Range(RangeBoundary::FromConstant(l_min), \
RangeBoundary::FromConstant(l_max)); \
Range* right_range = new Range(RangeBoundary::FromConstant(r_min), \
RangeBoundary::FromConstant(r_max)); \
EXPECT(left_range->min().ConstantValue() == l_min); \
EXPECT(left_range->max().ConstantValue() == l_max); \
EXPECT(right_range->min().ConstantValue() == r_min); \
EXPECT(right_range->max().ConstantValue() == r_max); \
Range::And(left_range, right_range, &min, &max); \
EXPECT(min.Equals(result_min)); \
if (FLAG_support_il_printer && !min.Equals(result_min)) { \
OS::PrintErr("%s != %s\n", min.ToCString(), result_min.ToCString()); \
} \
EXPECT(max.Equals(result_max)); \
if (FLAG_support_il_printer && !max.Equals(result_max)) { \
OS::PrintErr("%s != %s\n", max.ToCString(), result_max.ToCString()); \
} \
}
// [0xff, 0xfff] & [0xf, 0xf] = [0x0, 0xf].
TEST_RANGE_AND(static_cast<int64_t>(0xff), static_cast<int64_t>(0xfff),
static_cast<int64_t>(0xf), static_cast<int64_t>(0xf),
RangeBoundary(0), RangeBoundary(0xf));
// [0xffffffff, 0xffffffff] & [0xfffffffff, 0xfffffffff] = [0x0, 0xfffffffff].
TEST_RANGE_AND(
static_cast<int64_t>(0xffffffff), static_cast<int64_t>(0xffffffff),
static_cast<int64_t>(0xfffffffff), static_cast<int64_t>(0xfffffffff),
RangeBoundary(0), RangeBoundary(static_cast<int64_t>(0xfffffffff)));
// [0xffffffff, 0xffffffff] & [-20, 20] = [0x0, 0xffffffff].
TEST_RANGE_AND(static_cast<int64_t>(0xffffffff),
static_cast<int64_t>(0xffffffff), static_cast<int64_t>(-20),
static_cast<int64_t>(20), RangeBoundary(0),
RangeBoundary(static_cast<int64_t>(0xffffffff)));
// [-20, 20] & [0xffffffff, 0xffffffff] = [0x0, 0xffffffff].
TEST_RANGE_AND(static_cast<int64_t>(-20), static_cast<int64_t>(20),
static_cast<int64_t>(0xffffffff),
static_cast<int64_t>(0xffffffff), RangeBoundary(0),
RangeBoundary(static_cast<int64_t>(0xffffffff)));
// Test that [-20, 20] & [-20, 20] = [-32, 31].
TEST_RANGE_AND(static_cast<int64_t>(-20), static_cast<int64_t>(20),
static_cast<int64_t>(-20), static_cast<int64_t>(20),
RangeBoundary(-32), RangeBoundary(31));
#undef TEST_RANGE_AND
}
TEST_CASE(RangeIntersectionMinMax) {
// Test IntersectionMin and IntersectionMax methods which for constants are
// simply defined as Max/Min respectively.
// Constants.
// MIN(0, 1) == 0
EXPECT(RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(1))
.ConstantValue() == 0);
// MIN(0, -1) == -1
EXPECT(RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(-1))
.ConstantValue() == -1);
// MIN(1, 0) == 0
EXPECT(RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(1),
RangeBoundary::FromConstant(0))
.ConstantValue() == 0);
// MIN(-1, 0) == -1
EXPECT(RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(0))
.ConstantValue() == -1);
// MAX(0, 1) == 1
EXPECT(RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(1))
.ConstantValue() == 1);
// MAX(0, -1) == 0
EXPECT(RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(-1))
.ConstantValue() == 0);
// MAX(1, 0) == 1
EXPECT(RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(1),
RangeBoundary::FromConstant(0))
.ConstantValue() == 1);
// MAX(-1, 0) == 0
EXPECT(RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(0))
.ConstantValue() == 0);
RangeBoundary n_infinity = RangeBoundary::NegativeInfinity();
RangeBoundary p_infinity = RangeBoundary::PositiveInfinity();
// Constants vs. infinity.
EXPECT(RangeBoundary::IntersectionMin(n_infinity,
RangeBoundary::FromConstant(-1))
.ConstantValue() == -1);
EXPECT(RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(-1),
n_infinity)
.ConstantValue() == -1);
EXPECT(
RangeBoundary::IntersectionMin(RangeBoundary::FromConstant(1), n_infinity)
.ConstantValue() == 1);
EXPECT(
RangeBoundary::IntersectionMin(n_infinity, RangeBoundary::FromConstant(1))
.ConstantValue() == 1);
EXPECT(RangeBoundary::IntersectionMax(p_infinity,
RangeBoundary::FromConstant(-1))
.ConstantValue() == -1);
EXPECT(RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(-1),
p_infinity)
.ConstantValue() == -1);
EXPECT(
RangeBoundary::IntersectionMax(RangeBoundary::FromConstant(1), p_infinity)
.ConstantValue() == 1);
EXPECT(
RangeBoundary::IntersectionMax(p_infinity, RangeBoundary::FromConstant(1))
.ConstantValue() == 1);
}
TEST_CASE(RangeJoinMinMax) {
// Test IntersectionMin and IntersectionMax methods which for constants are
// simply defined as Min/Max respectively.
const RangeBoundary::RangeSize size = RangeBoundary::kRangeBoundarySmi;
// Constants.
EXPECT(RangeBoundary::JoinMax(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(1), size)
.ConstantValue() == 1);
EXPECT(RangeBoundary::JoinMax(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(-1), size)
.ConstantValue() == 0);
EXPECT(RangeBoundary::JoinMax(RangeBoundary::FromConstant(1),
RangeBoundary::FromConstant(0), size)
.ConstantValue() == 1);
EXPECT(RangeBoundary::JoinMax(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(0), size)
.ConstantValue() == 0);
EXPECT(RangeBoundary::JoinMin(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(1), size)
.ConstantValue() == 0);
EXPECT(RangeBoundary::JoinMin(RangeBoundary::FromConstant(0),
RangeBoundary::FromConstant(-1), size)
.ConstantValue() == -1);
EXPECT(RangeBoundary::JoinMin(RangeBoundary::FromConstant(1),
RangeBoundary::FromConstant(0), size)
.ConstantValue() == 0);
EXPECT(RangeBoundary::JoinMin(RangeBoundary::FromConstant(-1),
RangeBoundary::FromConstant(0), size)
.ConstantValue() == -1);
RangeBoundary n_infinity = RangeBoundary::NegativeInfinity();
RangeBoundary p_infinity = RangeBoundary::PositiveInfinity();
// Constants vs. infinity.
EXPECT(
RangeBoundary::JoinMin(n_infinity, RangeBoundary::FromConstant(-1), size)
.IsMinimumOrBelow(size));
EXPECT(
RangeBoundary::JoinMin(RangeBoundary::FromConstant(-1), n_infinity, size)
.IsMinimumOrBelow(size));
EXPECT(
RangeBoundary::JoinMin(RangeBoundary::FromConstant(1), n_infinity, size)
.IsMinimumOrBelow(size));
EXPECT(
RangeBoundary::JoinMin(n_infinity, RangeBoundary::FromConstant(1), size)
.IsMinimumOrBelow(size));
EXPECT(
RangeBoundary::JoinMax(p_infinity, RangeBoundary::FromConstant(-1), size)
.IsMaximumOrAbove(size));
EXPECT(
RangeBoundary::JoinMax(RangeBoundary::FromConstant(-1), p_infinity, size)
.IsMaximumOrAbove(size));
EXPECT(
RangeBoundary::JoinMax(RangeBoundary::FromConstant(1), p_infinity, size)
.IsMaximumOrAbove(size));
EXPECT(
RangeBoundary::JoinMax(p_infinity, RangeBoundary::FromConstant(1), size)
.IsMaximumOrAbove(size));
}
#if defined(DART_PRECOMPILER) && defined(TARGET_ARCH_IS_64_BIT)
// Regression test for https://github.com/dart-lang/sdk/issues/48153.
ISOLATE_UNIT_TEST_CASE(RangeAnalysis_ShiftUint32Op) {
const char* kScript = R"(
@pragma('vm:never-inline')
int foo(int hash) {
return 0x1fffffff & (hash + ((0x0007ffff & hash) << 10));
}
void main() {
foo(42);
}
)";
const auto& root_library = Library::Handle(LoadTestScript(kScript));
Invoke(root_library, "main");
const auto& function = Function::Handle(GetFunction(root_library, "foo"));
TestPipeline pipeline(function, CompilerPass::kAOT);
FlowGraph* flow_graph = pipeline.RunPasses({});
auto entry = flow_graph->graph_entry()->normal_entry();
EXPECT(entry != nullptr);
ILMatcher cursor(flow_graph, entry, /*trace=*/true,
ParallelMovesHandling::kSkip);
ShiftUint32OpInstr* shift = nullptr;
RELEASE_ASSERT(cursor.TryMatch({
kMoveGlob,
kMatchAndMoveBinaryUint32Op,
kMoveGlob,
{kMatchAndMoveShiftUint32Op, &shift},
kMoveGlob,
kMatchAndMoveBinaryUint32Op,
kMoveGlob,
kMatchAndMoveBinaryUint32Op,
kMoveGlob,
kMatchReturn,
}));
EXPECT(shift->shift_range() != nullptr);
EXPECT(shift->shift_range()->min().ConstantValue() == 10);
EXPECT(shift->shift_range()->max().ConstantValue() == 10);
}
#endif // defined(DART_PRECOMPILER) && defined(TARGET_ARCH_IS_64_BIT)
} // namespace dart
| 46.278098
| 80
| 0.591151
|
TheRakeshPurohit
|
ce2ef79ae1ab3277933af64010cd2428830b3741
| 739
|
cpp
|
C++
|
leetcode/cpp/Problem16.cpp
|
angelusualle/algorithms
|
86286a49db2a755bc57330cb455bcbd8241ea6be
|
[
"Apache-2.0"
] | null | null | null |
leetcode/cpp/Problem16.cpp
|
angelusualle/algorithms
|
86286a49db2a755bc57330cb455bcbd8241ea6be
|
[
"Apache-2.0"
] | null | null | null |
leetcode/cpp/Problem16.cpp
|
angelusualle/algorithms
|
86286a49db2a755bc57330cb455bcbd8241ea6be
|
[
"Apache-2.0"
] | null | null | null |
#include "Problem16.h"
#include <algorithm>
using std::sort;
// O(N^2) where n is num of nums
int find_closest_sum(vector<int>& nums, int target){
sort(nums.begin(), nums.end());
int answer = 0;
bool answered = false;
for (int i = 0; i < nums.size() - 2; ++i){
int j = i + 1;
int k = nums.size() - 1;
while (j < k){
int sum = nums[i] + nums[j] + nums[k];
if (not answered || (abs(target-sum) < abs(target-answer))){
answered = true;
answer = sum;
}
if (target >= sum){
j += 1;
}
else if (target < sum){
k -= 1;
}
}
}
return answer;
}
| 25.482759
| 72
| 0.435724
|
angelusualle
|
ce30d6abd9aa31cfd6ea9aa713a3fa5e8546651c
| 4,665
|
cpp
|
C++
|
navaEngine/navaEngine/src/apps/TestGame.cpp
|
vkramer/navaEngine
|
9fa4cea9a9002ac62b548ec8c73b7984aed73ecb
|
[
"MIT"
] | 7
|
2018-08-04T00:25:10.000Z
|
2021-02-23T04:16:34.000Z
|
navaEngine/navaEngine/src/apps/TestGame.cpp
|
vkramer/navaEngine
|
9fa4cea9a9002ac62b548ec8c73b7984aed73ecb
|
[
"MIT"
] | null | null | null |
navaEngine/navaEngine/src/apps/TestGame.cpp
|
vkramer/navaEngine
|
9fa4cea9a9002ac62b548ec8c73b7984aed73ecb
|
[
"MIT"
] | 2
|
2018-03-13T08:24:33.000Z
|
2019-07-30T21:02:55.000Z
|
#include "TestGame.h"
#include "../engine/components/model/Vertex.h"
#include "../engine/shader/BasicShader.h"
#include "../engine/components/renderer/Renderer.h"
#include "../engine/components/camera/Camera.h"
#include <glfw/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
void TestGame::init()
{
// Manual Created Vertex Array( currently only passing in vertex position )
std::vector<Vertex> vertices = {
// Back
Vertex(glm::vec3(-0.5f, -0.5f, 0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(0.0f, 0.0f, 1.0f)),
Vertex(glm::vec3( 0.5f, -0.5f, 0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(0.0f, 0.0f, 1.0f)),
Vertex(glm::vec3( 0.5f, 0.5f, 0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(0.0f, 0.0f, 1.0f)),
Vertex(glm::vec3(-0.5f, 0.5f, 0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(0.0f, 0.0f, 1.0f)),
// Front
Vertex(glm::vec3(-0.5f, -0.5f, -0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(0.0f, 0.0f, -1.0f)),
Vertex(glm::vec3(-0.5f, 0.5f, -0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(0.0f, 0.0f, -1.0f)),
Vertex(glm::vec3( 0.5f, 0.5f, -0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(0.0f, 0.0f, -1.0f)),
Vertex(glm::vec3( 0.5f, -0.5f, -0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(0.0f, 0.0f, -1.0f)),
// Top
Vertex(glm::vec3(-0.5f, 0.5f, -0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(0.0f, 1.0f, 0.0f)),
Vertex(glm::vec3(-0.5f, 0.5f, 0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(0.0f, 1.0f, 0.0f)),
Vertex(glm::vec3( 0.5f, 0.5f, 0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(0.0f, 1.0f, 0.0f)),
Vertex(glm::vec3( 0.5f, 0.5f, -0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(0.0f, 1.0f, 0.0f)),
// Bottom
Vertex(glm::vec3(-0.5f, -0.5f, -0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
Vertex(glm::vec3( 0.5f, -0.5f, -0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
Vertex(glm::vec3( 0.5f, -0.5f, 0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
Vertex(glm::vec3(-0.5f, -0.5f, 0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
// Right
Vertex(glm::vec3(0.5f, -0.5f, -0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(0.5f, 0.5f, -0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(0.5f, 0.5f, 0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(0.5f, -0.5f, 0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(1.0f, 0.0f, 0.0f)),
// Left
Vertex(glm::vec3(-0.5f, -0.5f, -0.5f), glm::vec2(0.0f, 0.0f), glm::vec3(-1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(-0.5f, -0.5f, 0.5f), glm::vec2(1.0f, 0.0f), glm::vec3(-1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(-0.5f, 0.5f, 0.5f), glm::vec2(1.0f, 1.0f), glm::vec3(-1.0f, 0.0f, 0.0f)),
Vertex(glm::vec3(-0.5f, 0.5f, -0.5f), glm::vec2(0.0f, 1.0f), glm::vec3(-1.0f, 0.0f, 0.0f))
};
// Manually created Index Array
std::vector<unsigned int> indices = {
0, 1, 2, 0, 2, 3, // front
4, 5, 6, 4, 6, 7, // back
8, 9, 10, 8, 10, 11, // top
12, 13, 14, 12, 14, 15, // bottom
16, 17, 18, 16, 18, 19, // right
20, 21, 22, 20, 22, 23, // left
};
Camera* mainCamera = new Camera(glm::radians(45.0f), (float)Window::getWidth() / (float)Window::getHeight(), 0.1f, 1000.0f);
Model* testModel1 = new Model(new Mesh(vertices, indices), new Material(new Texture("res/textures/wood2.jpg")));
Model* testModel2 = new Model(new Mesh(vertices, indices), new Material(new Texture("res/textures/stone2.jpg")));
Model* testModel3 = new Model(new Mesh(vertices, indices), new Material(new Texture("res/textures/uv_grid.jpg")));
Shader* shader = BasicShader::getInstance();
Node* cameraNode = new Node();
cameraNode->addComponent(mainCamera);
cameraNode->getTransform().setPos(glm::vec3(0.0f, 0.0f, -3.0f));
cubeNodeTest = new Node();
cubeNodeTest->addComponent(new Renderer(testModel1, shader));
cubeNodeTest->getTransform().setPos(glm::vec3(-1.0f, 0.0f, 0.0f));
cubeNodeTest2 = new Node();
cubeNodeTest2->addComponent(new Renderer(testModel2, shader));
cubeNodeTest2->getTransform().setPos(glm::vec3(1.0f, 0.0f, 0.0f));
cubeNodeTest2->getTransform().setScale(glm::vec3(0.5f, 0.5f, 0.5f));
cubeNodeTest3 = new Node();
cubeNodeTest3->addComponent(new Renderer(testModel3, shader));
cubeNodeTest3->getTransform().setPos(glm::vec3(0, 0, 3));
addToScene(cameraNode);
addToScene(cubeNodeTest);
addToScene(cubeNodeTest2);
addToScene(cubeNodeTest3);
}
void TestGame::update(float delta)
{
cubeNodeTest->getTransform().rotate(glm::vec3(0, 1, 0), delta);
cubeNodeTest2->getTransform().rotate(glm::vec3(1, 0, 0), delta);
cubeNodeTest3->getTransform().rotate(glm::vec3(1, 0, 1), delta);
}
| 46.65
| 125
| 0.612862
|
vkramer
|
ce32028d05bcf3e2e6dfece8859d92176a6ab5f6
| 1,870
|
cpp
|
C++
|
src/dynarmic/common/x64_disassemble.cpp
|
Morph1984/dynarmic
|
4dcebc18228114761ad9dc6a3543bcd4f3317396
|
[
"0BSD"
] | 573
|
2016-08-31T20:21:20.000Z
|
2021-08-29T14:01:11.000Z
|
src/dynarmic/common/x64_disassemble.cpp
|
xerpi/dynarmic
|
bcfe377aaa5138af740e90af5be7a7dff7b62a52
|
[
"0BSD"
] | 366
|
2016-09-02T06:37:43.000Z
|
2021-08-11T18:38:24.000Z
|
src/dynarmic/common/x64_disassemble.cpp
|
xerpi/dynarmic
|
bcfe377aaa5138af740e90af5be7a7dff7b62a52
|
[
"0BSD"
] | 135
|
2016-09-01T02:02:58.000Z
|
2021-08-13T01:25:22.000Z
|
/* This file is part of the dynarmic project.
* Copyright (c) 2021 MerryMage
* SPDX-License-Identifier: 0BSD
*/
#include "dynarmic/common/x64_disassemble.h"
#include <Zydis/Zydis.h>
#include <fmt/printf.h>
#include "dynarmic/common/common_types.h"
namespace Dynarmic::Common {
void DumpDisassembledX64(const void* ptr, size_t size) {
ZydisDecoder decoder;
ZydisDecoderInit(&decoder, ZYDIS_MACHINE_MODE_LONG_64, ZYDIS_ADDRESS_WIDTH_64);
ZydisFormatter formatter;
ZydisFormatterInit(&formatter, ZYDIS_FORMATTER_STYLE_INTEL);
size_t offset = 0;
ZydisDecodedInstruction instruction;
while (ZYAN_SUCCESS(ZydisDecoderDecodeBuffer(&decoder, static_cast<const char*>(ptr) + offset, size - offset, &instruction))) {
fmt::print("{:016x} ", (u64)ptr + offset);
char buffer[256];
ZydisFormatterFormatInstruction(&formatter, &instruction, buffer, sizeof(buffer), reinterpret_cast<u64>(ptr) + offset);
puts(buffer);
offset += instruction.length;
}
}
std::vector<std::string> DisassembleX64(const void* ptr, size_t size) {
std::vector<std::string> result;
ZydisDecoder decoder;
ZydisDecoderInit(&decoder, ZYDIS_MACHINE_MODE_LONG_64, ZYDIS_ADDRESS_WIDTH_64);
ZydisFormatter formatter;
ZydisFormatterInit(&formatter, ZYDIS_FORMATTER_STYLE_INTEL);
size_t offset = 0;
ZydisDecodedInstruction instruction;
while (ZYAN_SUCCESS(ZydisDecoderDecodeBuffer(&decoder, static_cast<const char*>(ptr) + offset, size - offset, &instruction))) {
char buffer[256];
ZydisFormatterFormatInstruction(&formatter, &instruction, buffer, sizeof(buffer), reinterpret_cast<u64>(ptr) + offset);
result.push_back(fmt::format("{:016x} {}", (u64)ptr + offset, buffer));
offset += instruction.length;
}
return result;
}
} // namespace Dynarmic::Common
| 32.807018
| 131
| 0.716043
|
Morph1984
|
ce326cad6022eaba256b11f445d8eeefe6000c3a
| 3,601
|
cxx
|
C++
|
Testing/testReceiveVideo.cxx
|
Sunderlandkyl/OpenIGTLinkIO
|
4b792865f07e0dbc812c328176d74c94a5e5983c
|
[
"Apache-2.0"
] | null | null | null |
Testing/testReceiveVideo.cxx
|
Sunderlandkyl/OpenIGTLinkIO
|
4b792865f07e0dbc812c328176d74c94a5e5983c
|
[
"Apache-2.0"
] | null | null | null |
Testing/testReceiveVideo.cxx
|
Sunderlandkyl/OpenIGTLinkIO
|
4b792865f07e0dbc812c328176d74c94a5e5983c
|
[
"Apache-2.0"
] | null | null | null |
#include <string>
#include "igtlioLogic.h"
#include "igtlioConnector.h"
#include "vtkTimerLog.h"
#include "vtkImageData.h"
#include "igtlioVideoConverter.h"
#include "vtkMatrix4x4.h"
#include <vtksys/SystemTools.hxx>
#include "igtlioVideoConverter.h"
#include <vtkImageDifference.h>
#include "IGTLIOFixture.h"
#include "igtlioVideoDevice.h"
#include "igtlioSession.h"
#include "igtlMessageDebugFunction.h"
bool compare(vtkSmartPointer<vtkImageData> a, vtkSmartPointer<vtkImageData> b)
{
#if defined(OpenIGTLink_ENABLE_VIDEOSTREAMING)
GenericEncoder * encoder = new VP9Encoder();
GenericDecoder * decoder = new VP9Decoder();
igtlUint8* yuv_a = new igtlUint8[a->GetDimensions()[0]*a->GetDimensions()[1]*3/2];
igtlUint8* rgb_a = new igtlUint8[a->GetDimensions()[0]*a->GetDimensions()[1]*3];
encoder->ConvertRGBToYUV((igtlUint8*)a->GetScalarPointer(), yuv_a, a->GetDimensions()[0], a->GetDimensions()[1]);
decoder->ConvertYUVToRGB(yuv_a, rgb_a, b->GetDimensions()[0], b->GetDimensions()[1]);
int iReturn = memcmp(rgb_a, a->GetScalarPointer(),a->GetDimensions()[0]*a->GetDimensions()[1]*3);// The conversion is not valid. Image is not the same after conversion.
//TestDebugCharArrayCmp(b->GetScalarPointer(),rgb_a,a->GetDimensions()[0]*a->GetDimensions()[1]*3);
int sumError = 0;
for (int i = 0 ; i< a->GetDimensions()[0]*a->GetDimensions()[1];i++)
{
sumError += abs(*((igtlUint8*)rgb_a+i)-*((igtlUint8*)b->GetScalarPointer()+i));
}
delete encoder;
delete decoder;
if (sumError<a->GetDimensions()[0]*a->GetDimensions()[1]) // To do, check the lossless encoding problem. most likely from the RGB and YUV conversion
return true;
#endif
return false;
}
bool compare(igtlio::VideoDevicePointer a, igtlio::VideoDevicePointer b)
{
if (a->GetDeviceName() != b->GetDeviceName())
return false;
if (a->GetDeviceType() != b->GetDeviceType())
return false;
if (!compare(a->GetContent().image, b->GetContent().image))
return false;
return true;
}
int main(int argc, char **argv)
{
ClientServerFixture fixture;
if (!fixture.ConnectClientToServer())
return 1;
if (fixture.Client.Logic->GetNumberOfDevices() != 0)
{
std::cout << "ERROR: Client has devices before they have been added or fundamental error!" << std::endl;
return 1;
}
std::cout << "*** Connection done" << std::endl;
//---------------------------------------------------------------------------
igtlio::VideoDevicePointer videoDevice;
videoDevice = fixture.Server.Session->SendFrame("TestDevice_Image",
fixture.CreateTestImage());
std::cout << "*** Sent message from Server to Client" << std::endl;
//---------------------------------------------------------------------------
if (!fixture.LoopUntilEventDetected(&fixture.Client, igtlio::Logic::NewDeviceEvent))
{
return 1;
}
if (fixture.Client.Logic->GetNumberOfDevices() == 0)
{
std::cout << "FAILURE: No devices received." << std::endl;
return 1;
}
igtlio::VideoDevicePointer receivedDevice;
receivedDevice = igtlio::VideoDevice::SafeDownCast(fixture.Client.Logic->GetDevice(0));
if (!receivedDevice)
{
std::cout << "FAILURE: Non-video device received." << std::endl;
return 1;
}
std::cout << "*** Client received video device." << std::endl;
//---------------------------------------------------------------------------
if (!compare(videoDevice, receivedDevice))
{
std::cout << "FAILURE: frame differs from the one sent from server." << std::endl;
return 1;
}
}
| 34.625
| 170
| 0.636768
|
Sunderlandkyl
|
ce339a34006767ba97621f417f892638c3bf02bb
| 1,116
|
cpp
|
C++
|
3DLfC4D/source/PluginManager.cpp
|
FMalmberg/3Delight-for-Cinema-4D
|
78e7e81044fed4226c3613f46edb1e80c58247d6
|
[
"MIT"
] | 3
|
2018-10-06T17:05:53.000Z
|
2020-06-29T21:31:11.000Z
|
3DLfC4D/source/PluginManager.cpp
|
FMalmberg/3Delight-for-Cinema-4D
|
78e7e81044fed4226c3613f46edb1e80c58247d6
|
[
"MIT"
] | 28
|
2018-11-14T19:08:18.000Z
|
2019-06-30T10:25:13.000Z
|
3DLfC4D/source/PluginManager.cpp
|
FMalmberg/3Delight-for-Cinema-4D
|
78e7e81044fed4226c3613f46edb1e80c58247d6
|
[
"MIT"
] | 6
|
2018-08-29T11:02:39.000Z
|
2019-05-13T13:35:17.000Z
|
#include "PluginManager.h"
#include "c4d.h"
using namespace std;
class HookDeleter{
public:
void operator()(DL_Hook* hook){
if(hook){
hook->Free();
}
}
};
PluginManager::~PluginManager(){
}
long PluginManager::GetAPIVersion(){
return DL_API_VERSION;
}
void PluginManager::RegisterHook(HookAllocator allocator){
HookAllocators.push_back(allocator);
}
bool PluginManager::IsLight(BaseList2D* item) {
if (!item) return false;
return LightTypes.find(item->GetType()) != LightTypes.end();
}
void PluginManager::RegisterTranslator(long id, TranslatorAllocator allocator, bool IsLight){
Allocators[id]=allocator;
if (IsLight) {
LightTypes.insert(id);
}
}
DL_Translator* PluginManager::GetTranslator(long id){
DL_Translator* result=0;
TranslatorMap::iterator it=Allocators.find(id);
if(it!=Allocators.end()){
result=it->second();
}
return result;
}
std::vector<DL_HookPtr> PluginManager::GetHooks(){
long nhooks=HookAllocators.size();
vector<DL_HookPtr> hooks(nhooks);
HookDeleter d;
for(long i=0; i<nhooks; i++){
hooks[i]=DL_HookPtr(HookAllocators[i](),d);
}
return hooks;
}
| 19.241379
| 93
| 0.724014
|
FMalmberg
|
ce36729597b2f6e736aef061459c759da757b499
| 12,013
|
hpp
|
C++
|
include/tdc/stat/phase.hpp
|
herlez/tdc
|
3b85ae183c21410e65f1e739736287df46c38d1d
|
[
"MIT"
] | null | null | null |
include/tdc/stat/phase.hpp
|
herlez/tdc
|
3b85ae183c21410e65f1e739736287df46c38d1d
|
[
"MIT"
] | null | null | null |
include/tdc/stat/phase.hpp
|
herlez/tdc
|
3b85ae183c21410e65f1e739736287df46c38d1d
|
[
"MIT"
] | null | null | null |
#pragma once
#include <concepts>
#include <functional>
#include <memory>
#include <string>
#include <utility>
#include "phase_extension.hpp"
#include "json.hpp"
namespace tdc {
namespace stat {
/// \brief Represents a runtime statistics phase.
///
/// Phases are used to track statistics like runtime and memory allocations over the course of the application.
/// The measured data is held as JSON objects and can be exported as such, e.g., for
/// use in the tdc charter for visualization, or in other formats for any third party applications.
class Phase {
public:
/// \brief The stat key used for a phase's title.
static const std::string STAT_TITLE;
/// \brief The stat key used for a phase's running time.
static const std::string STAT_TIME;
/// \brief The stat key used for a phase's memory offset.
static const std::string STAT_MEM_OFF;
/// \brief The stat key used for a phase's memory peak.
static const std::string STAT_MEM_PEAK;
/// \brief The stat key used for a phase's final memory counter.
static const std::string STAT_MEM_FINAL;
/// \brief The stat key used for a phase's number of allocations.
static const std::string STAT_NUM_ALLOC;
/// \brief The stat key used for a phase's number of frees.
static const std::string STAT_NUM_FREE;
/// \brief Contains information about the phase time measurement.
struct TimeInfo {
/// \brief The timestamp of the start of the phase.
double start;
/// \brief The timestamp at which this information was polled.
double current;
/// \brief The number of milliseconds the phase was paused.
double paused;
/// \brief Computes the time elapsed between polling and the start of the phase, excluding any pause times.
inline double elapsed() { return (current - start) - paused; }
};
/// \brief Contains information about the phase memory measurements.
struct MemoryInfo {
/// \brief The number of bytes allocated at the start of the phase.
ssize_t offset;
/// \brief The number of bytes currently allocated.
///
/// If the phase is finished, this is the number of bytes allocated at the end of the phase.
ssize_t current;
/// \brief The peak number of bytes allocated during the phase.
ssize_t peak;
/// \brief The number of allocations during the phase.
size_t num_allocs;
/// \brief The number of frees during the phase.
size_t num_frees;
};
private:
//
// Memory tracking and suppression statics
//
static bool s_init;
static void force_malloc_override_link();
static uint16_t s_suppress_memory_tracking_state;
static uint16_t s_suppress_tracking_user_state;
inline static bool is_tracking_memory() {
return s_suppress_memory_tracking_state == 0 && s_suppress_tracking_user_state == 0;
}
struct suppress_memory_tracking {
inline suppress_memory_tracking(suppress_memory_tracking const&) = delete;
inline suppress_memory_tracking(suppress_memory_tracking&&) = default;
inline suppress_memory_tracking() {
++s_suppress_memory_tracking_state;
}
inline ~suppress_memory_tracking() {
--s_suppress_memory_tracking_state;
}
};
struct suppress_tracking_user {
inline suppress_tracking_user(suppress_tracking_user const&) = delete;
inline suppress_tracking_user(suppress_tracking_user&&) = default;
inline suppress_tracking_user() {
if(s_suppress_tracking_user_state++ == 0) {
if(s_current) s_current->on_pause_tracking();
}
}
inline ~suppress_tracking_user() {
if(s_suppress_tracking_user_state == 1) {
if(s_current) s_current->on_resume_tracking();
}
--s_suppress_tracking_user_state;
}
};
//
// Extension statics
//
using ext_ptr_t = std::unique_ptr<PhaseExtension>;
static std::vector<std::function<ext_ptr_t()>> s_extension_registry;
public:
/// \brief Registers a \ref PhaseExtension.
/// \tparam E the extension class type, which must inherit from \ref PhaseExtension.
///
/// After registration, all phases will include data from the extension.
template<std::derived_from<PhaseExtension> E>
static void register_extension() {
if(s_current != nullptr) {
throw std::runtime_error(
"Extensions must be registered outside of any "
"stat measurements!");
} else {
s_extension_registry.emplace_back([](){
return std::make_unique<E>();
});
}
}
private:
//
// Current phase
//
static Phase* s_current;
//
// Members
//
std::unique_ptr<std::vector<ext_ptr_t>> m_extensions;
Phase* m_parent = nullptr;
double m_pause_time;
struct {
double start, end, paused;
} m_time;
double time_run() const;
struct {
ssize_t off, current, peak;
} m_mem;
size_t m_num_allocs;
size_t m_num_frees;
std::string m_title;
std::unique_ptr<json> m_sub;
std::unique_ptr<json> m_stats;
bool m_disabled = false;
// Initialize a phase
void init(std::string&& title);
// Finish the current Phase
void finish();
// Pause / resume
void on_pause_tracking();
void on_resume_tracking();
// Memory tracking internals
void track_alloc_internal(size_t bytes);
void track_free_internal(size_t bytes);
public:
/// \brief Executes a lambda as a single statistics phase.
///
/// The new phase is started as a sub phase of the current phase and will
/// immediately become the current phase.
///
/// In case the given lambda accepts a \ref Phase reference parameter,
/// the phase object will be passed to it for use during execution.
///
/// \param title the phase title
/// \param func the lambda to execute
/// \return the return value of the lambda
template<typename F>
inline static auto wrap(std::string&& title, F func) ->
typename std::result_of<F(Phase&)>::type {
Phase phase(std::move(title));
return func(phase);
}
/// \brief Executes a lambda as a single statistics phase.
///
/// The new phase is started as a sub phase of the current phase and will
/// immediately become the current phase.
///
/// In case the given lambda accepts a \ref Phase reference parameter,
/// the phase object will be passed to it for use during execution.
///
/// \param title the phase title
/// \param func the lambda to execute
/// \return the return value of the lambda
template<typename F>
inline static auto wrap(std::string&& title, F func) ->
typename std::result_of<F()>::type {
Phase phase(std::move(title));
return func();
}
/// \brief Tracks a memory allocation of the given size for the current
/// phase.
///
/// Use this only if memory is allocated with methods that do not result
/// in calls of \c malloc but should still be tracked (e.g., when using
/// direct kernel allocations like memory mappings).
///
/// \param bytes the amount of allocated bytes to track for the current
/// phase
inline static void track_mem_alloc(size_t bytes) {
if(s_current) s_current->track_alloc_internal(bytes);
}
/// \brief Tracks a memory deallocation of the given size for the current
/// phase.
///
/// Use this only if memory is allocated with methods that do not result
/// in calls of \c malloc but should still be tracked (e.g., when using
/// direct kernel allocations like memory mappings).
///
/// \param bytes the amount of freed bytes to track for the current phase
inline static void track_mem_free(size_t bytes) {
if(s_current) s_current->track_free_internal(bytes);
}
/// \brief Creates a guard that suppresses tracking as long as it exists.
///
/// This should be used during more complex logging activity in order
/// for it to not count against memory measures.
inline static auto suppress() {
return suppress_tracking_user();
}
/// \brief Suppress tracking while exeucting the lambda.
///
/// This should be used during more complex logging activity in order
/// for it to not count against memory measures.
///
/// \param func the lambda to execute
/// \return the return value of the lambda
template<typename F>
inline static auto suppress(F func) ->
typename std::result_of<F()>::type {
suppress_tracking_user guard;
return func();
}
/// \brief Logs a user statistic for the current phase.
///
/// User statistics will be stored in a special data block for a phase
/// and is included in the JSON output.
///
/// \param key the statistic key or name
/// \param value the value to log (will be converted to a string)
template<typename T>
inline static void log_current(std::string&& key, const T& value) {
if(s_current) s_current->log(std::move(key), value);
}
/// \brief Creates an inert statistics phase without any effect.
Phase();
/// \brief Creates a new statistics phase.
///
/// The new phase is started as a sub phase of the current phase and will
/// immediately become the current phase.
///
/// \param title the phase title
Phase(std::string&& title);
/// \brief Destroys and ends the phase.
///
/// The phase's parent phase, if any, will become the current phase.
~Phase();
Phase(Phase&& other);
Phase(const Phase&) = delete;
Phase& operator=(Phase&& other);
Phase& operator=(const Phase& other) = delete;
/// \brief Starts a new phase as a sibling, reusing the same object.
///
/// This function behaves exactly as if the current phase was ended and
/// a new phases was started immediately after.
///
/// \param new_title the new phase title
void split(std::string&& new_title);
/// \brief Logs a user statistic for this phase.
///
/// User statistics will be stored in a special data block for a phase
/// and is included in the JSON output.
///
/// \param key the statistic key or name
/// \param value the value to log (will be converted to a string)
template<typename T>
void log(std::string&& key, const T& value) {
if (!m_disabled) {
suppress_memory_tracking guard;
(*m_stats)[std::move(key)] = value;
}
}
inline const std::string& title() const {
return m_title;
}
/// \brief Gets the current \ref TimeInfo for the phase.
TimeInfo time_info() const;
/// \brief Gets the current \ref MemoryInfo for the phase.
MemoryInfo memory_info() const;
/// \brief Constructs the JSON representation of the measured data.
///
/// It also contains a subtree of sub-phase data.
json to_json() const;
/// \brief Constructs a key=value style string of the measured data.
///
/// Note that this does not contain any sub-phase data.
std::string to_keyval() const;
/// \brief Constructs a key=value style strings for phase's subphases.
///
/// The exact format will be <tt>[value_stat]_[title]=[value]</tt>.
///
/// \param value_stat the statistic used as values in the pairs
/// \param key_stat the statistic used as keys in the pairs, typically \ref STAT_TITLE, must support casting to \c std::string
std::string subphases_keyval(const std::string& value_stat = STAT_TIME, const std::string& key_stat = STAT_TITLE) const;
};
}} // namespace tdc::stat
| 33.369444
| 130
| 0.643053
|
herlez
|
ce37c82e60ad20ced92940418933f0e1c17f7b61
| 1,347
|
cpp
|
C++
|
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/deallocate.pass.cpp
|
medismailben/llvm-project
|
e334a839032fe500c3bba22bf976ab7af13ce1c1
|
[
"Apache-2.0"
] | 778
|
2015-01-01T03:30:02.000Z
|
2022-03-20T15:58:39.000Z
|
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/deallocate.pass.cpp
|
medismailben/llvm-project
|
e334a839032fe500c3bba22bf976ab7af13ce1c1
|
[
"Apache-2.0"
] | 47
|
2019-12-11T02:34:13.000Z
|
2020-06-08T19:26:59.000Z
|
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/deallocate.pass.cpp
|
medismailben/llvm-project
|
e334a839032fe500c3bba22bf976ab7af13ce1c1
|
[
"Apache-2.0"
] | 412
|
2015-01-01T06:25:38.000Z
|
2022-03-26T16:58:34.000Z
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <memory>
// template <class OuterAlloc, class... InnerAllocs>
// class scoped_allocator_adaptor
// void deallocate(pointer p, size_type n);
#include <scoped_allocator>
#include <cassert>
#include "test_macros.h"
#include "allocators.h"
int main(int, char**)
{
{
typedef std::scoped_allocator_adaptor<A1<int>> A;
A a;
a.deallocate((int*)10, 20);
assert((A1<int>::deallocate_called == std::pair<int*, std::size_t>((int*)10, 20)));
}
{
typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A;
A a;
a.deallocate((int*)10, 20);
assert((A1<int>::deallocate_called == std::pair<int*, std::size_t>((int*)10, 20)));
}
{
typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
A a;
a.deallocate((int*)10, 20);
assert((A1<int>::deallocate_called == std::pair<int*, std::size_t>((int*)10, 20)));
}
return 0;
}
| 27.489796
| 91
| 0.541203
|
medismailben
|
ce3d912d998a4e2274285118b38f40f2164e0647
| 3,955
|
cpp
|
C++
|
src/helpers/encoding/der.cpp
|
PhantomChain/cpp-crypto
|
d11e267ad0cbac56475c134209bd43b0a70dad59
|
[
"MIT"
] | null | null | null |
src/helpers/encoding/der.cpp
|
PhantomChain/cpp-crypto
|
d11e267ad0cbac56475c134209bd43b0a70dad59
|
[
"MIT"
] | null | null | null |
src/helpers/encoding/der.cpp
|
PhantomChain/cpp-crypto
|
d11e267ad0cbac56475c134209bd43b0a70dad59
|
[
"MIT"
] | null | null | null |
/**
* This file is part of Phantom Cpp Crypto.
*
* (c) PhantomChain <info@phantom.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
**/
#include "helpers/encoding/der.h"
#include <cassert>
#include <string>
#include <vector>
#include <cstring>
/**
* DER Encode/Decode Helpers
**/
std::vector<uint8_t>& toDER(std::vector<uint8_t>& buffer) {
// if the sign bit is set, pad with a 0x00 byte
if (buffer.size() > 1 && (buffer[0] & 0x80) != 0) {
buffer.insert(buffer.begin(), 0x00);
}
return buffer;
}
/**/
void decodeDER(std::vector<uint8_t>& signature, std::vector<uint8_t>& r, std::vector<uint8_t>& s)
{
// Adapted from https://github.com/bitcoinjs/bip66/blob/master/index.js
assert(signature.size() > 8); // DER sequence length is too short
assert(signature.size() < 72); // DER sequence length is too long
assert(signature[0] == 0x30); // Expected DER sequence
assert(signature[1] == signature.size() - 2); // DER sequence length is invalid
assert(signature[2] == 0x02); // Expected DER integer
/* Get the length of the signatures R-value (signature 4th-byte/signature[3]) */
int lenR = signature[3];
assert(lenR != 0); // R length is zero
assert(5u + lenR <= signature.size()); // R length is too long
assert(signature[4 + lenR] == 0x02); // Expected DER integer (2)
/* Get the length of the signatures R-value (signature 6th-byte/signature[5]) */
int lenS = signature[5 + lenR];
assert(lenS != 0); // S length is zero
assert((6u + lenR + lenS) == signature.size()); // S length is invalid
assert(signature[4] != 0x80); // R value is negative
assert((lenR > 1));// && (signature[4] == 0x00) && !(signature[5] == 0x80)); // R value excessively padded
assert(signature[lenR + 6] != 0x80); // S value is negative
assert(lenS > 1);// && (signature[lenR + 6] != 0x00) && !(signature[lenR + 7] == 0x80)); // S value excessively padded
/* non-BIP66 - extract R, S values */
r = std::vector<uint8_t>(&signature[4], &signature[4] + lenR);
s = std::vector<uint8_t>(&signature[6 + lenR], &signature[6 + lenR] + lenS);
}
/**/
void encodeDER(const std::vector<uint8_t>& r, const std::vector<uint8_t>& s, std::vector<uint8_t>& signature) {
/* Adapted from https://github.com/bitcoinjs/bip66/blob/master/index.js */
auto lenR = r.size();
auto lenS = s.size();
assert(lenR != 0); // must be non zero
assert(lenS != 0);
assert(lenR <= 33); // must be less than 34 bytes
assert(lenS <= 33);
assert((r[0] & 0x80) == 0); // must not be negative
assert((s[0] & 0x80) == 0);
assert(lenR == 1 || r[0] != 0x00 || (r[1] & 0x80) != 0); //must have zero pad for negative number
assert(lenS == 1 || s[0] != 0x00 || (s[1] & 0x80) != 0);
auto it = r.begin();
while (lenR > 1 && *it == 0 && *(it + 1) < 0x80) { --lenR; ++it; }
it = s.begin();
while (lenS > 1 && *it == 0 && *(it + 1) < 0x80) { --lenS; ++it; }
signature.clear();
signature.reserve(6 + lenR + lenS);
/* 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] */
signature.push_back(0x30); // [0]
signature.push_back(static_cast<uint8_t>(6 + lenR + lenS - 2)); // [1]
signature.push_back(0x02); // [2]
signature.push_back(static_cast<uint8_t>(lenR)); // [3]
signature.insert(signature.end(), r.begin(), r.end()); //[4]
signature.push_back(0x02); // [4 + lenR]
signature.push_back(static_cast<uint8_t>(lenS)); // [5 + lenR]
signature.insert(signature.end(), s.begin(), s.end()); //[6 + lenR]
}
/**/
void encodeDER(uint8_t packed_signature[DEFAULT_PRIVATEKEY_SIZE * 2], std::vector<uint8_t>& signature) {
std::vector<uint8_t> r(DEFAULT_PRIVATEKEY_SIZE);
std::vector<uint8_t> s(DEFAULT_PRIVATEKEY_SIZE);
memcpy(&r[0], packed_signature, DEFAULT_PRIVATEKEY_SIZE);
memcpy(&s[0], packed_signature + DEFAULT_PRIVATEKEY_SIZE, DEFAULT_PRIVATEKEY_SIZE);
encodeDER(toDER(r), toDER(s), signature);
}
| 36.962617
| 120
| 0.638432
|
PhantomChain
|
ce4092915ee68c65b049607b78a05700dfece697
| 20,896
|
cc
|
C++
|
net/instaweb/rewriter/image_url_encoder_test.cc
|
PeterDaveHello/incubator-pagespeed-mod
|
885f4653e204e1152cb3928f0755d93ec5fdceae
|
[
"Apache-2.0"
] | null | null | null |
net/instaweb/rewriter/image_url_encoder_test.cc
|
PeterDaveHello/incubator-pagespeed-mod
|
885f4653e204e1152cb3928f0755d93ec5fdceae
|
[
"Apache-2.0"
] | null | null | null |
net/instaweb/rewriter/image_url_encoder_test.cc
|
PeterDaveHello/incubator-pagespeed-mod
|
885f4653e204e1152cb3928f0755d93ec5fdceae
|
[
"Apache-2.0"
] | 1
|
2020-03-14T15:50:55.000Z
|
2020-03-14T15:50:55.000Z
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
// Unit test for image_url_encoder.
#include <set>
#include "net/instaweb/rewriter/cached_result.pb.h"
#include "net/instaweb/rewriter/public/image_url_encoder.h"
#include "pagespeed/kernel/base/google_message_handler.h"
#include "pagespeed/kernel/base/string.h"
#include "pagespeed/kernel/base/string_util.h"
#include "pagespeed/kernel/http/google_url.h"
#include "testing/base/public/gunit.h"
namespace net_instaweb {
namespace {
const char kDimsUrl[] = "17x33x,hencoded.url,_with,_various.stuff";
const char kNoDimsUrl[] = "x,hencoded.url,_with,_various.stuff";
const char kActualUrl[] = "http://encoded.url/with/various.stuff";
} // namespace
class ImageUrlEncoderTest : public ::testing::Test {
protected:
GoogleString EncodeUrlAndDimensions(const StringPiece& origin_url,
const ImageDim& dim) {
StringVector v;
v.push_back(origin_url.as_string());
GoogleString out;
ResourceContext data;
*data.mutable_desired_image_dims() = dim;
encoder_.Encode(v, &data, &out);
return out;
}
bool DecodeUrlAndDimensions(const StringPiece& encoded,
ImageDim* dim,
GoogleString* url) {
ResourceContext context;
StringVector urls;
bool result = encoder_.Decode(encoded, &urls, &context, &handler_);
if (result) {
EXPECT_EQ(1, urls.size());
url->assign(urls.back());
*dim = context.desired_image_dims();
}
return result;
}
void ExpectBadDim(const StringPiece& url) {
GoogleString origin_url;
ImageDim dim;
EXPECT_FALSE(DecodeUrlAndDimensions(url, &dim, &origin_url));
EXPECT_FALSE(ImageUrlEncoder::HasValidDimension(dim));
}
bool IsPagespeedWebp(StringPiece url) {
GoogleUrl gurl(url);
return ImageUrlEncoder::IsWebpRewrittenUrl(gurl);
}
ImageUrlEncoder encoder_;
GoogleMessageHandler handler_;
};
TEST_F(ImageUrlEncoderTest, TestEncodingAndDecoding) {
GoogleString kOriginalUrl = "a.jpg";
StringVector url_vector;
url_vector.push_back(kOriginalUrl);
GoogleString encoded_url;
ResourceContext context;
context.set_libwebp_level(ResourceContext::LIBWEBP_LOSSY_ONLY);
context.set_mobile_user_agent(true);
ImageDim dim;
dim.set_width(1024);
dim.set_height(768);
*context.mutable_desired_image_dims() = dim;
encoder_.Encode(url_vector, &context, &encoded_url);
EXPECT_EQ("1024x768xa.jpg", encoded_url);
encoder_.Decode(encoded_url, &url_vector, &context, &handler_);
// Check the resource context returned.
EXPECT_EQ(context.libwebp_level(), ResourceContext::LIBWEBP_LOSSY_ONLY);
EXPECT_TRUE(context.mobile_user_agent());
// Check the decoded url after encoding is the same as original.
GoogleString decoded_url = url_vector.back();
EXPECT_EQ(kOriginalUrl, decoded_url);
}
TEST_F(ImageUrlEncoderTest, TestEncodingAndDecodingWithoutWebpAndMobileUA) {
GoogleString kOriginalUrl = "a.jpg";
StringVector url_vector;
url_vector.push_back(kOriginalUrl);
GoogleString encoded_url;
ResourceContext context;
context.set_libwebp_level(ResourceContext::LIBWEBP_NONE);
context.set_mobile_user_agent(false);
ImageDim dim;
dim.set_width(1024);
dim.set_height(768);
*context.mutable_desired_image_dims() = dim;
encoder_.Encode(url_vector, &context, &encoded_url);
EXPECT_EQ("1024x768xa.jpg", encoded_url);
encoder_.Decode(encoded_url, &url_vector, &context, &handler_);
// Check the resource context returned.
EXPECT_EQ(context.libwebp_level(), ResourceContext::LIBWEBP_NONE);
EXPECT_FALSE(context.mobile_user_agent());
// Check the decoded url after encoding is the same as original.
GoogleString decoded_url = url_vector.back();
EXPECT_EQ(kOriginalUrl, decoded_url);
}
TEST_F(ImageUrlEncoderTest, TestLegacyMobileWebpDecoding) {
StringPiece kEncodedUrl = "1024x768mwa.jpg";
StringVector url_vector;
ResourceContext context;
context.set_libwebp_level(ResourceContext::LIBWEBP_LOSSY_ONLY);
encoder_.Decode(kEncodedUrl, &url_vector, &context, &handler_);
EXPECT_EQ(context.libwebp_level(), ResourceContext::LIBWEBP_LOSSY_ONLY);
EXPECT_TRUE(context.mobile_user_agent());
GoogleString decoded_url = url_vector.back();
EXPECT_EQ("a.jpg", decoded_url);
}
TEST_F(ImageUrlEncoderTest, TestLegacyMobileDecoding) {
StringPiece kEncodedUrl = "1024x768mxa.jpg";
StringVector url_vector;
ResourceContext context;
// Set webp lossy similar to the ImageRewriteFilter flow.
context.set_libwebp_level(ResourceContext::LIBWEBP_LOSSY_ONLY);
encoder_.Decode(kEncodedUrl, &url_vector, &context, &handler_);
// While decoding in ImageUrlEncoder, we don't unset libwep_level if
// already set and no encoding char("w"/"v") is found, we get a false
// ResourceContext, but its alright since the UA is a webp-capable one.
EXPECT_EQ(context.libwebp_level(), ResourceContext::LIBWEBP_LOSSY_ONLY);
EXPECT_TRUE(context.mobile_user_agent());
GoogleString decoded_url = url_vector.back();
EXPECT_EQ("a.jpg", decoded_url);
}
TEST_F(ImageUrlEncoderTest, NoDimsWebpOrMobile) {
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kNoDimsUrl, &dim, &origin_url));
EXPECT_FALSE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kNoDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, NoDimsWebpLa) {
const char kLegacyWebpLaNoMobileUrl[] = "v,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpLaNoMobileUrl,
&dim, &origin_url));
EXPECT_FALSE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kNoDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, NoDimsWebpLaMobile) {
const char kLegacyWebpLaMobileUrl[] = "mv,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(
kLegacyWebpLaMobileUrl, &dim, &origin_url));
EXPECT_FALSE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kNoDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDims) {
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kDimsUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDimsWebp) {
const char kLegacyWebpUrl[] = "17x33w,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDimsWebpLa) {
const char kLegacyWebpLaNoMobileUrl[] =
"17x33v,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(
kLegacyWebpLaNoMobileUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDimsMobile) {
const char kLegacyMobileUrl[] = "17x33mx,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyMobileUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDimsWebpMobile) {
const char kLegacyWebpMobileUrl[] =
"17x33mw,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpMobileUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasDimsWebpLaMobile) {
const char kLegacyWebpLaMobileUrl[] =
"17x33mv,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(
kLegacyWebpLaMobileUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimensions(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kDimsUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasWidth) {
const char kWidthUrl[] = "17xNx,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kWidthUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(-1, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kWidthUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasWidthWebp) {
const char kLegacyWebpWidthUrl[] = "17xNw,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpWidthUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(-1, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
const char kWidthUrl[] = "17xNx,hencoded.url,_with,_various.stuff";
EXPECT_EQ(kWidthUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasWidthWebpLa) {
const char kLegacyWebpLaNoMobileUrl[] =
"17xNv,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpLaNoMobileUrl,
&dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(17, dim.width());
EXPECT_EQ(-1, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
const char kWidthUrl[] = "17xNx,hencoded.url,_with,_various.stuff";
EXPECT_EQ(kWidthUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasHeight) {
const char kHeightUrl[] = "Nx33x,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kHeightUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(-1, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
EXPECT_EQ(kHeightUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasHeightWebp) {
const char kLegacyWebpHeightUrl[] = "Nx33w,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpHeightUrl, &dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(-1, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
const char kHeightUrl[] = "Nx33x,hencoded.url,_with,_various.stuff";
EXPECT_EQ(kHeightUrl, EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, HasHeightWebpLa) {
const char kLegacyWebpLaNoMobileUrl[] =
"Nx33v,hencoded.url,_with,_various.stuff";
GoogleString origin_url;
ImageDim dim;
EXPECT_TRUE(DecodeUrlAndDimensions(kLegacyWebpLaNoMobileUrl,
&dim, &origin_url));
EXPECT_TRUE(ImageUrlEncoder::HasValidDimension(dim));
EXPECT_EQ(-1, dim.width());
EXPECT_EQ(33, dim.height());
EXPECT_EQ(kActualUrl, origin_url);
const char kHeightUrl[] = "Nx33x,hencoded.url,_with,_various.stuff";
EXPECT_EQ(kHeightUrl,
EncodeUrlAndDimensions(origin_url, dim));
}
TEST_F(ImageUrlEncoderTest, CacheKey) {
ResourceContext context;
EXPECT_EQ(".",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
context.Clear();
context.set_may_use_small_screen_quality(true);
EXPECT_EQ(".ss",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
context.Clear();
context.set_may_use_save_data_quality(true);
context.set_libwebp_level(ResourceContext::LIBWEBP_LOSSY_ONLY);
EXPECT_EQ("wd",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
context.Clear();
context.set_mobile_user_agent(true);
context.set_libwebp_level(ResourceContext::LIBWEBP_LOSSY_LOSSLESS_ALPHA);
EXPECT_EQ("vm",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
context.Clear();
context.set_may_use_save_data_quality(true);
context.set_mobile_user_agent(true);
context.set_libwebp_level(ResourceContext::LIBWEBP_ANIMATED);
EXPECT_EQ("amd",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
context.Clear();
// When both may_use_small_screen_quality and may_use_save_data_quality are
// set, may_use_save_data_quality takes precedence.
context.set_may_use_small_screen_quality(true);
context.set_may_use_save_data_quality(true);
EXPECT_EQ(".d",
ImageUrlEncoder::CacheKeyFromResourceContext(context));
}
TEST_F(ImageUrlEncoderTest, DifferentWebpLevels) {
// Make sure different levels of WebP support get different cache keys.
std::set<GoogleString> seen;
for (int webp_level = ResourceContext::LibWebpLevel_MIN;
webp_level <= ResourceContext::LibWebpLevel_MAX;
++webp_level) {
if (ResourceContext::LibWebpLevel_IsValid(webp_level)) {
ResourceContext ctx;
ctx.set_libwebp_level(
static_cast<ResourceContext::LibWebpLevel>(webp_level));
GoogleString cache_key =
ImageUrlEncoder::CacheKeyFromResourceContext(ctx);
EXPECT_EQ(seen.find(cache_key), seen.end());
seen.insert(cache_key);
}
}
}
TEST_F(ImageUrlEncoderTest, BadFirst) {
const char kBadFirst[] = "badx33x,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadFirstWebp) {
const char kBadFirst[] = "badx33w,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadFirstWebpLa) {
const char kBadFirst[] = "badx33v,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadFirstMobile) {
const char kBadFirst[] = "badx33mx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadFirstWebpMobile) {
const char kBadFirst[] = "badx33mw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadFirstWebpLaMobile) {
const char kBadFirst[] = "badx33mv,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadFirst);
}
TEST_F(ImageUrlEncoderTest, BadSecond) {
const char kBadSecond[] = "17xbadx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadSecondWebp) {
const char kBadSecond[] = "17xbadw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadSecondWebpLa) {
const char kBadSecond[] = "17xbadv,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadSecondMobile) {
const char kBadSecond[] = "17xbadmx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadSecondWebpMobile) {
const char kBadSecond[] = "17xbadmw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadSecondWebpLaMobile) {
const char kBadSecond[] = "17xbadmv,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadSecond);
}
TEST_F(ImageUrlEncoderTest, BadLeadingN) {
const char kBadLeadingN[] = "Nxw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadLeadingN);
}
TEST_F(ImageUrlEncoderTest, BadMiddleN) {
const char kBadMiddleN[] = "17xN,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadMiddleN);
}
TEST_F(ImageUrlEncoderTest, NoXs) {
const char kNoXs[] = ",hencoded.url,_with,_various.stuff";
ExpectBadDim(kNoXs);
}
TEST_F(ImageUrlEncoderTest, NoXsMobile) {
const char kNoXs[] = "m,hencoded.url,_with,_various.stuff";
ExpectBadDim(kNoXs);
}
TEST_F(ImageUrlEncoderTest, BlankSecond) {
const char kBlankSecond[] = "17xx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBlankSecond);
}
TEST_F(ImageUrlEncoderTest, BadSizeCheck) {
// Catch case where url size check was inverted.
const char kBadSize[] = "17xx";
ExpectBadDim(kBadSize);
}
TEST_F(ImageUrlEncoderTest, BlankSecondWebp) {
const char kBlankSecond[] = "17xw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBlankSecond);
}
TEST_F(ImageUrlEncoderTest, BlankSecondMobile) {
const char kBlankSecond[] = "17xmx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBlankSecond);
}
TEST_F(ImageUrlEncoderTest, BlankSecondWebpMobile) {
const char kBlankSecond[] = "17xmw,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBlankSecond);
}
TEST_F(ImageUrlEncoderTest, BlankSecondWebpLaMobile) {
const char kBlankSecond[] = "17xmv,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBlankSecond);
}
TEST_F(ImageUrlEncoderTest, BadTrailChar) {
const char kBadDimsUrl[] = "17x33u,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadDimsUrl);
}
TEST_F(ImageUrlEncoderTest, BadInitChar) {
const char kBadNoDimsUrl[] = "u,hencoded.url,_with,_various.stuff";
ExpectBadDim(kBadNoDimsUrl);
}
TEST_F(ImageUrlEncoderTest, BadWidthChar) {
const char kWidthUrl[] = "17t,hencoded.url,_with,_various.stuff";
ExpectBadDim(kWidthUrl);
}
TEST_F(ImageUrlEncoderTest, BadHeightChar) {
const char kHeightUrl[] = "Nx33t,hencoded.url,_with,_various.stuff";
ExpectBadDim(kHeightUrl);
}
TEST_F(ImageUrlEncoderTest, ShortBothDims) {
const char kShortUrl[] = "17x33";
ExpectBadDim(kShortUrl);
}
TEST_F(ImageUrlEncoderTest, ShortWidth) {
const char kShortWidth[] = "Nx33";
ExpectBadDim(kShortWidth);
}
TEST_F(ImageUrlEncoderTest, ShortHeight) {
const char kShortHeight[] = "17xN";
ExpectBadDim(kShortHeight);
}
TEST_F(ImageUrlEncoderTest, BothDimsMissing) {
const char kNeitherUrl[] = "NxNx,hencoded.url,_with,_various.stuff";
ExpectBadDim(kNeitherUrl);
}
TEST_F(ImageUrlEncoderTest, VeryShortUrl) {
const char kVeryShortUrl[] = "7x3";
ExpectBadDim(kVeryShortUrl);
}
TEST_F(ImageUrlEncoderTest, TruncatedAfterFirstDim) {
const char kTruncatedUrl[] = "175x";
ExpectBadDim(kTruncatedUrl);
}
TEST_F(ImageUrlEncoderTest, TruncatedBeforeSep) {
const char kTruncatedUrl[] = "12500";
ExpectBadDim(kTruncatedUrl);
}
TEST_F(ImageUrlEncoderTest, WebpDetection) {
// Valid WebP URL.
EXPECT_TRUE(IsPagespeedWebp("http://example.com/xa.jpg.pagespeed.ic.0.webp"));
EXPECT_TRUE(IsPagespeedWebp("http://example.com/xa.png.pagespeed.ic.0.webp"));
EXPECT_TRUE(IsPagespeedWebp("http://example.com/xa.gif.pagespeed.ic.0.webp"));
EXPECT_TRUE(IsPagespeedWebp(
"http://example.com/xa.webp.pagespeed.ic.0.webp"));
EXPECT_TRUE(IsPagespeedWebp(
"http://example.com/17x33a.jpg.pagespeed.ic.0.webp"));
// Invalid WebP URL.
EXPECT_FALSE(IsPagespeedWebp("http://example.com/xa.jpg.XXXXXXXX.ic.0.webp"));
EXPECT_FALSE(IsPagespeedWebp("http://example.com/xa.gif.pagespeed.ic.0.png"));
EXPECT_FALSE(IsPagespeedWebp(
"http://example.com/xa.png.pagespeed.ic.0.jpeg"));
EXPECT_FALSE(IsPagespeedWebp(
"http://example.com/xa.jpg.pagespeed.ic.0.jpeg"));
EXPECT_FALSE(IsPagespeedWebp("http://example.com/foo.webp"));
EXPECT_FALSE(IsPagespeedWebp("http://example.com/foo.jpg"));
EXPECT_FALSE(IsPagespeedWebp("http://example.com/x.jpg.pagespeed.cd.0.jpeg"));
EXPECT_FALSE(IsPagespeedWebp("http://example.com/x.jpg.pagespeed.ce.0.webp"));
}
} // namespace net_instaweb
| 34.143791
| 80
| 0.755456
|
PeterDaveHello
|
ce44d3676cdb620fb67665568474e477e8849dec
| 13,833
|
cpp
|
C++
|
Onboard-SDK-ROS/dji_sdk_demo/src/demo_flight_control.cpp
|
NMMI/aerial-alter-ego
|
ba6517ecc1986e4808f6c17df3348dc5637d9cf7
|
[
"BSD-3-Clause"
] | 1
|
2018-11-06T12:06:28.000Z
|
2018-11-06T12:06:28.000Z
|
src/Onboard-SDK-ROS-3.6/dji_sdk_demo/src/demo_flight_control_original.cpp
|
isuran/droneautomation
|
c53017f8c8d4c03e3095ec7b6269d5a2659489e5
|
[
"MIT"
] | null | null | null |
src/Onboard-SDK-ROS-3.6/dji_sdk_demo/src/demo_flight_control_original.cpp
|
isuran/droneautomation
|
c53017f8c8d4c03e3095ec7b6269d5a2659489e5
|
[
"MIT"
] | 2
|
2021-05-18T07:04:23.000Z
|
2021-05-23T13:22:13.000Z
|
/** @file demo_flight_control.cpp
* @version 3.3
* @date May, 2017
*
* @brief
* demo sample of how to use flight control APIs
*
* @copyright 2017 DJI. All rights reserved.
*
*/
#include "dji_sdk_demo/demo_flight_control.h"
#include "dji_sdk/dji_sdk.h"
const float deg2rad = C_PI/180.0;
const float rad2deg = 180.0/C_PI;
ros::ServiceClient set_local_pos_reference;
ros::ServiceClient sdk_ctrl_authority_service;
ros::ServiceClient drone_task_service;
ros::ServiceClient query_version_service;
ros::Publisher ctrlPosYawPub;
ros::Publisher ctrlBrakePub;
// global variables for subscribed topics
uint8_t flight_status = 255;
uint8_t display_mode = 255;
sensor_msgs::NavSatFix current_gps;
geometry_msgs::Quaternion current_atti;
geometry_msgs::Point current_local_pos;
Mission square_mission;
int main(int argc, char** argv)
{
ros::init(argc, argv, "demo_flight_control_node");
ros::NodeHandle nh;
// Subscribe to messages from dji_sdk_node
ros::Subscriber attitudeSub = nh.subscribe("dji_sdk/attitude", 10, &attitude_callback);
ros::Subscriber gpsSub = nh.subscribe("dji_sdk/gps_position", 10, &gps_callback);
ros::Subscriber flightStatusSub = nh.subscribe("dji_sdk/flight_status", 10, &flight_status_callback);
ros::Subscriber displayModeSub = nh.subscribe("dji_sdk/display_mode", 10, &display_mode_callback);
ros::Subscriber localPosition = nh.subscribe("dji_sdk/local_position", 10, &local_position_callback);
// Publish the control signal
ctrlPosYawPub = nh.advertise<sensor_msgs::Joy>("dji_sdk/flight_control_setpoint_ENUposition_yaw", 10);
// We could use dji_sdk/flight_control_setpoint_ENUvelocity_yawrate here, but
// we use dji_sdk/flight_control_setpoint_generic to demonstrate how to set the flag
// properly in function Mission::step()
ctrlBrakePub = nh.advertise<sensor_msgs::Joy>("dji_sdk/flight_control_setpoint_generic", 10);
// Basic services
sdk_ctrl_authority_service = nh.serviceClient<dji_sdk::SDKControlAuthority> ("dji_sdk/sdk_control_authority");
drone_task_service = nh.serviceClient<dji_sdk::DroneTaskControl>("dji_sdk/drone_task_control");
query_version_service = nh.serviceClient<dji_sdk::QueryDroneVersion>("dji_sdk/query_drone_version");
set_local_pos_reference = nh.serviceClient<dji_sdk::SetLocalPosRef> ("dji_sdk/set_local_pos_ref");
bool obtain_control_result = obtain_control();
bool takeoff_result;
if (!set_local_position()) // We need this for height
{
ROS_ERROR("GPS health insufficient - No local frame reference for height. Exiting.");
return 1;
}
if(is_M100())
{
ROS_INFO("M100 taking off!");
takeoff_result = M100monitoredTakeoff();
}
else
{
ROS_INFO("A3/N3 taking off!");
takeoff_result = monitoredTakeoff();
}
if(takeoff_result)
{
square_mission.reset();
square_mission.start_gps_location = current_gps;
square_mission.start_local_position = current_local_pos;
square_mission.setTarget(0, 20, 3, 60);
square_mission.state = 1;
ROS_INFO("##### Start route %d ....", square_mission.state);
}
ros::spin();
return 0;
}
// Helper Functions
/*! Very simple calculation of local NED offset between two pairs of GPS
/coordinates. Accurate when distances are small.
!*/
void
localOffsetFromGpsOffset(geometry_msgs::Vector3& deltaNed,
sensor_msgs::NavSatFix& target,
sensor_msgs::NavSatFix& origin)
{
double deltaLon = target.longitude - origin.longitude;
double deltaLat = target.latitude - origin.latitude;
deltaNed.y = deltaLat * deg2rad * C_EARTH;
deltaNed.x = deltaLon * deg2rad * C_EARTH * cos(deg2rad*target.latitude);
deltaNed.z = target.altitude - origin.altitude;
}
geometry_msgs::Vector3 toEulerAngle(geometry_msgs::Quaternion quat)
{
geometry_msgs::Vector3 ans;
tf::Matrix3x3 R_FLU2ENU(tf::Quaternion(quat.x, quat.y, quat.z, quat.w));
R_FLU2ENU.getRPY(ans.x, ans.y, ans.z);
return ans;
}
void Mission::step()
{
static int info_counter = 0;
geometry_msgs::Vector3 localOffset;
float speedFactor = 2;
float yawThresholdInDeg = 2;
float xCmd, yCmd, zCmd;
localOffsetFromGpsOffset(localOffset, current_gps, start_gps_location);
double xOffsetRemaining = target_offset_x - localOffset.x;
double yOffsetRemaining = target_offset_y - localOffset.y;
double zOffsetRemaining = target_offset_z - localOffset.z;
double yawDesiredRad = deg2rad * target_yaw;
double yawThresholdInRad = deg2rad * yawThresholdInDeg;
double yawInRad = toEulerAngle(current_atti).z;
info_counter++;
if(info_counter > 25)
{
info_counter = 0;
ROS_INFO("-----x=%f, y=%f, z=%f, yaw=%f ...", localOffset.x,localOffset.y, localOffset.z,yawInRad);
ROS_INFO("+++++dx=%f, dy=%f, dz=%f, dyaw=%f ...", xOffsetRemaining,yOffsetRemaining, zOffsetRemaining,yawInRad - yawDesiredRad);
}
if (abs(xOffsetRemaining) >= speedFactor)
xCmd = (xOffsetRemaining>0) ? speedFactor : -1 * speedFactor;
else
xCmd = xOffsetRemaining;
if (abs(yOffsetRemaining) >= speedFactor)
yCmd = (yOffsetRemaining>0) ? speedFactor : -1 * speedFactor;
else
yCmd = yOffsetRemaining;
zCmd = start_local_position.z + target_offset_z;
/*!
* @brief: if we already started breaking, keep break for 50 sample (1sec)
* and call it done, else we send normal command
*/
if (break_counter > 50)
{
ROS_INFO("##### Route %d finished....", state);
finished = true;
return;
}
else if(break_counter > 0)
{
sensor_msgs::Joy controlVelYawRate;
uint8_t flag = (DJISDK::VERTICAL_VELOCITY |
DJISDK::HORIZONTAL_VELOCITY |
DJISDK::YAW_RATE |
DJISDK::HORIZONTAL_GROUND |
DJISDK::STABLE_ENABLE);
controlVelYawRate.axes.push_back(0);
controlVelYawRate.axes.push_back(0);
controlVelYawRate.axes.push_back(0);
controlVelYawRate.axes.push_back(0);
controlVelYawRate.axes.push_back(flag);
ctrlBrakePub.publish(controlVelYawRate);
break_counter++;
return;
}
else //break_counter = 0, not in break stage
{
sensor_msgs::Joy controlPosYaw;
controlPosYaw.axes.push_back(xCmd);
controlPosYaw.axes.push_back(yCmd);
controlPosYaw.axes.push_back(zCmd);
controlPosYaw.axes.push_back(yawDesiredRad);
ctrlPosYawPub.publish(controlPosYaw);
}
if (std::abs(xOffsetRemaining) < 0.5 &&
std::abs(yOffsetRemaining) < 0.5 &&
std::abs(zOffsetRemaining) < 0.5 &&
std::abs(yawInRad - yawDesiredRad) < yawThresholdInRad)
{
//! 1. We are within bounds; start incrementing our in-bound counter
inbound_counter ++;
}
else
{
if (inbound_counter != 0)
{
//! 2. Start incrementing an out-of-bounds counter
outbound_counter ++;
}
}
//! 3. Reset withinBoundsCounter if necessary
if (outbound_counter > 10)
{
ROS_INFO("##### Route %d: out of bounds, reset....", state);
inbound_counter = 0;
outbound_counter = 0;
}
if (inbound_counter > 50)
{
ROS_INFO("##### Route %d start break....", state);
break_counter = 1;
}
}
bool takeoff_land(int task)
{
dji_sdk::DroneTaskControl droneTaskControl;
droneTaskControl.request.task = task;
drone_task_service.call(droneTaskControl);
if(!droneTaskControl.response.result)
{
ROS_ERROR("takeoff_land fail");
return false;
}
return true;
}
bool obtain_control()
{
dji_sdk::SDKControlAuthority authority;
authority.request.control_enable=1;
sdk_ctrl_authority_service.call(authority);
if(!authority.response.result)
{
ROS_ERROR("obtain control failed!");
return false;
}
return true;
}
bool is_M100()
{
dji_sdk::QueryDroneVersion query;
query_version_service.call(query);
if(query.response.version == DJISDK::DroneFirmwareVersion::M100_31)
{
return true;
}
return false;
}
void attitude_callback(const geometry_msgs::QuaternionStamped::ConstPtr& msg)
{
current_atti = msg->quaternion;
}
void local_position_callback(const geometry_msgs::PointStamped::ConstPtr& msg)
{
current_local_pos = msg->point;
}
void gps_callback(const sensor_msgs::NavSatFix::ConstPtr& msg)
{
static ros::Time start_time = ros::Time::now();
ros::Duration elapsed_time = ros::Time::now() - start_time;
current_gps = *msg;
// Down sampled to 50Hz loop
if(elapsed_time > ros::Duration(0.02))
{
start_time = ros::Time::now();
switch(square_mission.state)
{
case 0:
break;
case 1:
if(!square_mission.finished)
{
square_mission.step();
}
else
{
square_mission.reset();
square_mission.start_gps_location = current_gps;
square_mission.start_local_position = current_local_pos;
square_mission.setTarget(20, 0, 0, 0);
square_mission.state = 2;
ROS_INFO("##### Start route %d ....", square_mission.state);
}
break;
case 2:
if(!square_mission.finished)
{
square_mission.step();
}
else
{
square_mission.reset();
square_mission.start_gps_location = current_gps;
square_mission.start_local_position = current_local_pos;
square_mission.setTarget(0, -20, 0, 0);
square_mission.state = 3;
ROS_INFO("##### Start route %d ....", square_mission.state);
}
break;
case 3:
if(!square_mission.finished)
{
square_mission.step();
}
else
{
square_mission.reset();
square_mission.start_gps_location = current_gps;
square_mission.start_local_position = current_local_pos;
square_mission.setTarget(-20, 0, 0, 0);
square_mission.state = 4;
ROS_INFO("##### Start route %d ....", square_mission.state);
}
break;
case 4:
if(!square_mission.finished)
{
square_mission.step();
}
else
{
ROS_INFO("##### Mission %d Finished ....", square_mission.state);
square_mission.state = 0;
}
break;
}
}
}
void flight_status_callback(const std_msgs::UInt8::ConstPtr& msg)
{
flight_status = msg->data;
}
void display_mode_callback(const std_msgs::UInt8::ConstPtr& msg)
{
display_mode = msg->data;
}
/*!
* This function demos how to use the flight_status
* and the more detailed display_mode (only for A3/N3)
* to monitor the take off process with some error
* handling. Note M100 flight status is different
* from A3/N3 flight status.
*/
bool
monitoredTakeoff()
{
ros::Time start_time = ros::Time::now();
if(!takeoff_land(dji_sdk::DroneTaskControl::Request::TASK_TAKEOFF)) {
return false;
}
ros::Duration(0.01).sleep();
ros::spinOnce();
// Step 1.1: Spin the motor
while (flight_status != DJISDK::FlightStatus::STATUS_ON_GROUND &&
display_mode != DJISDK::DisplayMode::MODE_ENGINE_START &&
ros::Time::now() - start_time < ros::Duration(5)) {
ros::Duration(0.01).sleep();
ros::spinOnce();
}
if(ros::Time::now() - start_time > ros::Duration(5)) {
ROS_ERROR("Takeoff failed. Motors are not spinnning.");
return false;
}
else {
start_time = ros::Time::now();
ROS_INFO("Motor Spinning ...");
ros::spinOnce();
}
// Step 1.2: Get in to the air
while (flight_status != DJISDK::FlightStatus::STATUS_IN_AIR &&
(display_mode != DJISDK::DisplayMode::MODE_ASSISTED_TAKEOFF || display_mode != DJISDK::DisplayMode::MODE_AUTO_TAKEOFF) &&
ros::Time::now() - start_time < ros::Duration(20)) {
ros::Duration(0.01).sleep();
ros::spinOnce();
}
if(ros::Time::now() - start_time > ros::Duration(20)) {
ROS_ERROR("Takeoff failed. Aircraft is still on the ground, but the motors are spinning.");
return false;
}
else {
start_time = ros::Time::now();
ROS_INFO("Ascending...");
ros::spinOnce();
}
// Final check: Finished takeoff
while ( (display_mode == DJISDK::DisplayMode::MODE_ASSISTED_TAKEOFF || display_mode == DJISDK::DisplayMode::MODE_AUTO_TAKEOFF) &&
ros::Time::now() - start_time < ros::Duration(20)) {
ros::Duration(0.01).sleep();
ros::spinOnce();
}
if ( display_mode != DJISDK::DisplayMode::MODE_P_GPS || display_mode != DJISDK::DisplayMode::MODE_ATTITUDE)
{
ROS_INFO("Successful takeoff!");
start_time = ros::Time::now();
}
else
{
ROS_ERROR("Takeoff finished, but the aircraft is in an unexpected mode. Please connect DJI GO.");
return false;
}
return true;
}
/*!
* This function demos how to use M100 flight_status
* to monitor the take off process with some error
* handling. Note M100 flight status is different
* from A3/N3 flight status.
*/
bool
M100monitoredTakeoff()
{
ros::Time start_time = ros::Time::now();
float home_altitude = current_gps.altitude;
if(!takeoff_land(dji_sdk::DroneTaskControl::Request::TASK_TAKEOFF))
{
return false;
}
ros::Duration(0.01).sleep();
ros::spinOnce();
// Step 1: If M100 is not in the air after 10 seconds, fail.
while (ros::Time::now() - start_time < ros::Duration(10))
{
ros::Duration(0.01).sleep();
ros::spinOnce();
}
if(flight_status != DJISDK::M100FlightStatus::M100_STATUS_IN_AIR ||
current_gps.altitude - home_altitude < 1.0)
{
ROS_ERROR("Takeoff failed.");
return false;
}
else
{
start_time = ros::Time::now();
ROS_INFO("Successful takeoff!");
ros::spinOnce();
}
return true;
}
bool set_local_position()
{
dji_sdk::SetLocalPosRef localPosReferenceSetter;
set_local_pos_reference.call(localPosReferenceSetter);
return localPosReferenceSetter.response.result;
}
| 27.337945
| 132
| 0.672739
|
NMMI
|
ce45cbd966372909b417ea75fa8e583c8df9f6e8
| 1,238
|
cpp
|
C++
|
leetcode/problems/easy/463-island-perimeter.cpp
|
wingkwong/competitive-programming
|
e8bf7aa32e87b3a020b63acac20e740728764649
|
[
"MIT"
] | 18
|
2020-08-27T05:27:50.000Z
|
2022-03-08T02:56:48.000Z
|
leetcode/problems/easy/463-island-perimeter.cpp
|
wingkwong/competitive-programming
|
e8bf7aa32e87b3a020b63acac20e740728764649
|
[
"MIT"
] | null | null | null |
leetcode/problems/easy/463-island-perimeter.cpp
|
wingkwong/competitive-programming
|
e8bf7aa32e87b3a020b63acac20e740728764649
|
[
"MIT"
] | 1
|
2020-10-13T05:23:58.000Z
|
2020-10-13T05:23:58.000Z
|
/*
Island Perimeter
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water.
Grid cells are connected horizontally/vertically (not diagonally). The grid is completely surrounded by water, and there is exactly one island (i.e., one or more connected land cells).
The island doesn't have "lakes" (water inside that isn't connected to the water around the island). One cell is a square with side length 1. The grid is rectangular, width and height don't exceed 100. Determine the perimeter of the island.
Example:
Input:
[[0,1,0,0],
[1,1,1,0],
[0,1,0,0],
[1,1,0,0]]
Output: 16
*/
class Solution {
public:
int islandPerimeter(vector<vector<int>>& grid) {
// a) count how many islands, multiply by 4
// b) count how many neighours, multiply by 2
// ans = a) - b)
int c = 0, cc = 0;
for(int i = 0; i < grid.size(); i++){
for(int j = 0; j < grid[0].size(); j++){
if(grid[i][j] == 1){
c++;
cc += (i != 0 && grid[i - 1][j] == 1);
cc += (j != 0 && grid[i][j - 1] == 1);
}
}
}
return 4 * c - 2 * cc;
}
};
| 30.95
| 239
| 0.555735
|
wingkwong
|
ce48b5b5c2ab35e3770e41793b7575e79e46b58a
| 2,988
|
cpp
|
C++
|
src/armnn/layers/SpaceToBatchNdLayer.cpp
|
muthukumaravel7/armnn
|
879ec231203df5b0a94462c0b247dc7d8d8a7a44
|
[
"MIT"
] | null | null | null |
src/armnn/layers/SpaceToBatchNdLayer.cpp
|
muthukumaravel7/armnn
|
879ec231203df5b0a94462c0b247dc7d8d8a7a44
|
[
"MIT"
] | null | null | null |
src/armnn/layers/SpaceToBatchNdLayer.cpp
|
muthukumaravel7/armnn
|
879ec231203df5b0a94462c0b247dc7d8d8a7a44
|
[
"MIT"
] | null | null | null |
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "SpaceToBatchNdLayer.hpp"
#include "LayerCloneBase.hpp"
#include <armnn/TypesUtils.hpp>
#include <armnnUtils/DataLayoutIndexed.hpp>
#include <backendsCommon/WorkloadData.hpp>
#include <backendsCommon/WorkloadFactory.hpp>
#include <numeric>
using namespace armnnUtils;
namespace armnn
{
SpaceToBatchNdLayer::SpaceToBatchNdLayer(const SpaceToBatchNdDescriptor param, const char* name)
: LayerWithParameters(1, 1, LayerType::SpaceToBatchNd, param, name)
{}
std::unique_ptr<IWorkload> SpaceToBatchNdLayer::CreateWorkload(const IWorkloadFactory& factory) const
{
SpaceToBatchNdQueueDescriptor descriptor;
descriptor.m_Parameters.m_BlockShape = m_Param.m_BlockShape;
descriptor.m_Parameters.m_PadList = m_Param.m_PadList;
return factory.CreateSpaceToBatchNd(descriptor, PrepInfoAndDesc(descriptor));
}
SpaceToBatchNdLayer* SpaceToBatchNdLayer::Clone(Graph& graph) const
{
IgnoreUnused(graph);
return CloneBase<SpaceToBatchNdLayer>(graph, m_Param, GetName());
}
std::vector<TensorShape> SpaceToBatchNdLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
{
ARMNN_ASSERT(inputShapes.size() == 1);
TensorShape inputShape = inputShapes[0];
TensorShape outputShape(inputShape);
outputShape[0] = inputShape[0] * std::accumulate(m_Param.m_BlockShape.begin(),
m_Param.m_BlockShape.end(),
1U,
std::multiplies<>());
DataLayoutIndexed dimensionIndices = m_Param.m_DataLayout;
unsigned int heightIndex = dimensionIndices.GetHeightIndex();
unsigned int widthIndex = dimensionIndices.GetWidthIndex();
std::pair<unsigned int, unsigned int> heightPad = m_Param.m_PadList[0];
std::pair<unsigned int, unsigned int> widthPad = m_Param.m_PadList[1];
outputShape[heightIndex] =
(inputShape[heightIndex] + heightPad.first + heightPad.second) / m_Param.m_BlockShape[0];
outputShape[widthIndex] =
(inputShape[widthIndex] + widthPad.first + widthPad.second) / m_Param.m_BlockShape[1];
return std::vector<TensorShape>({ outputShape });
}
void SpaceToBatchNdLayer::ValidateTensorShapesFromInputs()
{
VerifyLayerConnections(1, CHECK_LOCATION());
std::vector<TensorShape> inferredShapes = InferOutputShapes({
GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });
ARMNN_ASSERT(inferredShapes.size() == 1);
ConditionalThrowIfNotEqual<LayerValidationException>(
"SpaceToBatchNdLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
GetOutputSlot(0).GetTensorInfo().GetShape(),
inferredShapes[0]);
}
void SpaceToBatchNdLayer::Accept(ILayerVisitor& visitor) const
{
visitor.VisitSpaceToBatchNdLayer(this, GetParameters(), GetName());
}
} // namespace
| 33.2
| 114
| 0.716533
|
muthukumaravel7
|
ce4a9668daf057808b4a31b4221ead86e3b42ee0
| 15,439
|
hpp
|
C++
|
Include/LIEF/PE/Binary.hpp
|
RaniaJarraya/fraudulent_behavior_detection
|
d1506603fd3468a6c106c73d4880623c5a9b4869
|
[
"BSD-3-Clause"
] | 54
|
2020-01-29T18:44:56.000Z
|
2022-03-14T11:24:59.000Z
|
Include/LIEF/PE/Binary.hpp
|
RaniaJarraya/fraudulent_behavior_detection
|
d1506603fd3468a6c106c73d4880623c5a9b4869
|
[
"BSD-3-Clause"
] | 13
|
2021-03-19T09:25:18.000Z
|
2022-02-10T12:15:24.000Z
|
Include/LIEF/PE/Binary.hpp
|
RaniaJarraya/fraudulent_behavior_detection
|
d1506603fd3468a6c106c73d4880623c5a9b4869
|
[
"BSD-3-Clause"
] | 8
|
2019-05-19T11:24:28.000Z
|
2022-02-16T20:19:30.000Z
|
/* Copyright 2017 R. Thomas
* Copyright 2017 Quarkslab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LIEF_PE_BINARY_H_
#define LIEF_PE_BINARY_H_
#include <map>
#include "LIEF/PE/Structures.hpp"
#include "LIEF/PE/Header.hpp"
#include "LIEF/PE/OptionalHeader.hpp"
#include "LIEF/PE/DosHeader.hpp"
#include "LIEF/PE/RichHeader.hpp"
#include "LIEF/PE/Section.hpp"
#include "LIEF/PE/Import.hpp"
#include "LIEF/PE/DataDirectory.hpp"
#include "LIEF/PE/TLS.hpp"
#include "LIEF/PE/Symbol.hpp"
#include "LIEF/PE/utils.hpp"
#include "LIEF/PE/Relocation.hpp"
#include "LIEF/PE/ResourceDirectory.hpp"
#include "LIEF/PE/Export.hpp"
#include "LIEF/PE/Debug.hpp"
#include "LIEF/PE/ResourcesManager.hpp"
#include "LIEF/PE/signature/Signature.hpp"
#include "LIEF/PE/LoadConfigurations.hpp"
#include "LIEF/Abstract/Binary.hpp"
#include "LIEF/visibility.h"
namespace LIEF {
namespace PE {
class Parser;
class Builder;
//! @brief Class which represent a PE binary object
class LIEF_API Binary : public LIEF::Binary {
friend class Parser;
friend class Builder;
public:
Binary(const std::string& name, PE_TYPE type);
virtual ~Binary(void);
//! @brief Return `PE32` or `PE32+`
PE_TYPE type(void) const;
//! @brief Convert Relative Virtual Address to offset
//!
//! We try to get the get section wich hold the given
//! `RVA` and convert it to offset. If the section
//! does not exist, we assume that `RVA` = `offset`
uint64_t rva_to_offset(uint64_t RVA);
//! @brief Convert Virtual address to offset
uint64_t va_to_offset(uint64_t VA);
//! @brief Find the section associated with the `offset`
Section& section_from_offset(uint64_t offset);
const Section& section_from_offset(uint64_t offset) const;
//! @brief Find the section associated with the `virtual address`
Section& section_from_rva(uint64_t virtual_address);
const Section& section_from_rva(uint64_t virtual_address) const;
//! @brief Return binary's sections
it_sections sections(void);
it_const_sections sections(void) const;
// =======
// Headers
// =======
//! @brief Return a reference to the PE::DosHeader object
DosHeader& dos_header(void);
const DosHeader& dos_header(void) const;
//! @brief Return a reference to the PE::Header object
Header& header(void);
const Header& header(void) const;
//! @brief Return a reference to the OptionalHeader object
OptionalHeader& optional_header(void);
const OptionalHeader& optional_header(void) const;
//! @brief Compute the binary's virtual size.
//! It should match with OptionalHeader::sizeof_image
uint64_t virtual_size(void) const;
//! @brief Compute the size of all headers
uint32_t sizeof_headers(void) const;
//! @brief Return a reference to the TLS object
TLS& tls(void);
const TLS& tls(void) const;
//! @brief Set a TLS object in the current Binary
void tls(const TLS& tls);
//! @brief Check if the current binary has a TLS object
bool has_tls(void) const;
//! @brief Check if the current binary has imports
//!
//! @see Import
bool has_imports(void) const;
//! @brief Check if the current binary is signed
bool has_signature(void) const;
//! @brief Check if the current binary has exports.
//!
//! @see Export
bool has_exports(void) const;
//! @brief Check if the current binary has resources
bool has_resources(void) const;
//! @brief Check if the current binary has exceptions
bool has_exceptions(void) const;
//! @brief Check if the current binary has relocations
//!
//! @see Relocation
bool has_relocations(void) const;
//! @brief Check if the current binary has debugs
bool has_debug(void) const;
//! @brief Check if the current binary has a load configuration
bool has_configuration(void) const;
//! @brief Return the Signature object if the bianry is signed
const Signature& signature(void) const;
//! @brief Try to predict the RVA of the function `function` in the import library `library`
//!
//! @warning
//! The value could be chang if imports change
//!
//! @note
//! It should be used with:
//! LIEF::PE::Builder::build_imports set to ``true``
//!
//! @param[in] library Library name in which the function is located
//! @param[in] function Function name
//! @return The address of the function (``IAT``) in the new import table
uint32_t predict_function_rva(const std::string& library, const std::string& function);
//! @brief Return the Export object
Export& get_export(void);
const Export& get_export(void) const;
//! @brief Return binary Symbols
std::vector<Symbol>& symbols(void);
const std::vector<Symbol>& symbols(void) const;
//! @brief Return resources as a tree
ResourceNode& resources(void);
const ResourceNode& resources(void) const;
//! @brief Set a new resource tree
void set_resources(const ResourceDirectory& resource);
//! @brief Set a new resource tree
void set_resources(const ResourceData& resource);
//! @brief Return the ResourcesManager (class to manage resources more easily than the tree one)
ResourcesManager resources_manager(void);
const ResourcesManager resources_manager(void) const;
// ==========================
// Methods to manage sections
// ==========================
//! @brief Return binary's section from its name
//!
//! @param[in] name Name of the Section
Section& get_section(const std::string& name);
const Section& get_section(const std::string& name) const;
//! @brief Return the section associated with import table
const Section& import_section(void) const;
Section& import_section(void);
//! @brief Delete the section with the given name
//!
//! @param[in] name Name of section to delete
void delete_section(const std::string& name);
//! @brief Add a section to the binary and return the section added.
Section& add_section(
const Section& section,
PE_SECTION_TYPES type = PE_SECTION_TYPES::UNKNOWN);
// =============================
// Methods to manage relocations
// =============================
it_relocations relocations(void);
it_const_relocations relocations(void) const;
//! @brief Add a @link PE::Relocation relocation @endlink
Relocation& add_relocation(const Relocation& relocation);
//! @brief Remove all relocations
void remove_all_relocations(void);
// ===============================
// Methods to manage DataDirectory
// ===============================
//! @brief Return data directories in the binary
it_data_directories data_directories(void);
it_const_data_directories data_directories(void) const;
//! @brief Return the DataDirectory with the given type (or index)
DataDirectory& data_directory(DATA_DIRECTORY index);
const DataDirectory& data_directory(DATA_DIRECTORY index) const;
//! @brief Return the Debug object
Debug& debug(void);
const Debug& debug(void) const;
//! @brief Retrun the LoadConfiguration object
const LoadConfiguration& load_configuration(void) const;
LoadConfiguration& load_configuration(void);
// =======
// Overlay
// =======
//! @brief Return the overlay content
const std::vector<uint8_t>& overlay(void) const;
std::vector<uint8_t>& overlay(void);
// ========
// DOS Stub
// ========
//! @brief Return the DOS stub content
const std::vector<uint8_t>& dos_stub(void) const;
std::vector<uint8_t>& dos_stub(void);
//! @brief Update the DOS stub content
void dos_stub(const std::vector<uint8_t>& content);
// Rich Header
// -----------
//! @brief Return a reference to the RichHeader object
RichHeader& rich_header(void);
const RichHeader& rich_header(void) const;
//! @brief Set a RichHeader object in the current Binary
void rich_header(const RichHeader& rich_header);
//! @brief Check if the current binary has a RichHeader object
bool has_rich_header(void) const;
// =========================
// Methods to manage Imports
// =========================
//! @brief return binary's @link PE::Import imports @endlink
it_imports imports(void);
it_const_imports imports(void) const;
//! @brief Returns the PE::Import from the given name
//!
//! @param[in] import_name Name of the import
Import& get_import(const std::string& import_name);
const Import& get_import(const std::string& import_name) const;
//! @brief ``True`` if the binary import the given library name
//!
//! @param[in] import_name Name of the import
bool has_import(const std::string& import_name) const;
//! @brief Add the function @p function of the library @p library
//!
//! @param[in] library library name of the function
//! @param[in] function function's name from the library to import
ImportEntry& add_import_function(const std::string& library, const std::string& function);
//! @brief add an imported library (i.e. `DLL`) to the binary
Import& add_library(const std::string& name);
//! @brief Remove the library with the given `name`
void remove_library(const std::string& name);
//! @brief Remove all libraries in the binary
void remove_all_libraries(void);
//! @brief Hook an imported function
//!
//! When using this function, LIEF::PE::Builder::build_imports and LIEF::PE::Builder::patch_imports
//! should be set to ``true``
//!
//! @param[in] function Function name to hook
//! @param[in] address Address of the hook
void hook_function(const std::string& function, uint64_t address);
//! @brief Hook an imported function
//!
//! When using this function, LIEF::PE::Builder::build_imports(true) and LIEF::PE::Builder::patch_imports
//! should be set to ``true``
//!
//! @param[in] library Library name in which the function is located
//! @param[in] function Function name to hook
//! @param[in] address Address of the hook
void hook_function(const std::string& library, const std::string& function, uint64_t address);
//! @brief Reconstruct the binary object and write it in `filename`
//!
//! Rebuild a PE binary from the current Binary object.
//! When rebuilding, import table and relocations are not rebuilt.
void write(const std::string& filename);
virtual void accept(Visitor& visitor) const override;
// LIEF Interface
// ==============
//! @brief Patch the content at virtual address @p address with @p patch_value
//!
//! @param[in] address Address to patch
//! @param[in] patch_value Patch to apply
//! @param[in] addr_type Type of the Virtual address: VA or RVA. Default: Auto
virtual void patch_address(uint64_t address, const std::vector<uint8_t>& patch_value, LIEF::Binary::VA_TYPES addr_type = LIEF::Binary::VA_TYPES::AUTO) override;
//! @brief Patch the address with the given value
//!
//! @param[in] address Address to patch
//! @param[in] patch_value Patch to apply
//! @param[in] size Size of the value in **bytes** (1, 2, ... 8)
//! @param[in] addr_type Type of the Virtual address: VA or RVA. Default: Auto
virtual void patch_address(uint64_t address, uint64_t patch_value, size_t size = sizeof(uint64_t), LIEF::Binary::VA_TYPES addr_type = LIEF::Binary::VA_TYPES::AUTO) override;
//! @brief Return the content located at virtual address
//
//! @param[in] virtual_address Virtual address of the data to retrieve
//! @param[in] size Size in bytes of the data to retrieve
//! @param[in] addr_type Type of the Virtual address: VA or RVA. Default: Auto
virtual std::vector<uint8_t> get_content_from_virtual_address(uint64_t virtual_address, uint64_t size,
LIEF::Binary::VA_TYPES addr_type = LIEF::Binary::VA_TYPES::AUTO) const override;
//! @brief Return the binary's entrypoint
virtual uint64_t entrypoint(void) const override;
//! @brief Check if the binary is position independent
virtual bool is_pie(void) const override;
//! @brief Check if the binary uses ``NX`` protection
virtual bool has_nx(void) const override;
bool operator==(const Binary& rhs) const;
bool operator!=(const Binary& rhs) const;
virtual std::ostream& print(std::ostream& os) const override;
private:
Binary(void);
//! @brief Make space between the last section header and the beginning of the
//! content of first section
void make_space_for_new_section(void);
//! @brief Return binary's symbols as LIEF::Symbol
virtual LIEF::symbols_t get_abstract_symbols(void) override;
virtual LIEF::Header get_abstract_header(void) const override;
//! @brief Return binary's section as LIEF::Section
virtual LIEF::sections_t get_abstract_sections(void) override;
virtual LIEF::relocations_t get_abstract_relocations(void) override;
virtual std::vector<std::string> get_abstract_exported_functions(void) const override;
virtual std::vector<std::string> get_abstract_imported_functions(void) const override;
virtual std::vector<std::string> get_abstract_imported_libraries(void) const override;
void update_lookup_address_table_offset(void);
void update_iat(void);
PE_TYPE type_;
DosHeader dos_header_;
RichHeader rich_header_;
Header header_;
OptionalHeader optional_header_;
int32_t available_sections_space_;
bool has_rich_header_;
bool has_tls_;
bool has_imports_;
bool has_signature_;
bool has_exports_;
bool has_resources_;
bool has_exceptions_;
bool has_relocations_;
bool has_debug_;
bool has_configuration_;
Signature signature_;
TLS tls_;
sections_t sections_;
data_directories_t data_directories_;
symbols_t symbols_;
strings_table_t strings_table_;
relocations_t relocations_;
ResourceNode* resources_;
imports_t imports_;
Export export_;
Debug debug_;
std::vector<uint8_t> overlay_;
std::vector<uint8_t> dos_stub_;
LoadConfiguration* load_configuration_;
std::map<std::string, std::map<std::string, uint64_t>> hooks_;
};
}
}
#endif
| 34.772523
| 177
| 0.658592
|
RaniaJarraya
|
ce4f165f184274539a683f4fc5e0d83b81805c8c
| 592
|
cpp
|
C++
|
src/lib/clxx/cl/events.cpp
|
ptomulik/clxx
|
9edfb0c39e6ab2f2d86afde0ac42c5e3f21e7ac8
|
[
"MIT"
] | 1
|
2015-08-12T13:11:35.000Z
|
2015-08-12T13:11:35.000Z
|
src/lib/clxx/cl/events.cpp
|
ptomulik/clxx
|
9edfb0c39e6ab2f2d86afde0ac42c5e3f21e7ac8
|
[
"MIT"
] | 67
|
2015-01-03T10:11:13.000Z
|
2015-10-21T11:03:06.000Z
|
src/lib/clxx/cl/events.cpp
|
ptomulik/clxx
|
9edfb0c39e6ab2f2d86afde0ac42c5e3f21e7ac8
|
[
"MIT"
] | null | null | null |
// @COPYRIGHT@
// Licensed under MIT license (LICENSE.txt)
/** // doc: clxx/cl/events.cpp {{{
* \file clxx/cl/events.cpp
* \todo Write documentation
*/ // }}}
#include <clxx/cl/events.hpp>
#include <clxx/cl/functions.hpp>
#include <clxx/util/obj2cl.hpp>
namespace clxx {
void
wait_for_events(clxx::events const& event_list)
{
if(!event_list.empty())
{
wait_for_events(static_cast<cl_uint>(event_list.size()),
obj2cl(event_list));
}
}
} // end namespace clxx
// vim: set expandtab tabstop=2 shiftwidth=2:
// vim: set foldmethod=marker foldcolumn=4:
| 22.769231
| 62
| 0.662162
|
ptomulik
|
ce4f828b580dc1891c6de463eabeecdc7f27bc45
| 31,317
|
cpp
|
C++
|
avocadod/MMFiles/MMFilesHashIndex.cpp
|
jjzhang166/avocadodb
|
948d94592c10731857c8617b133bda840b8e833e
|
[
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | null | null | null |
avocadod/MMFiles/MMFilesHashIndex.cpp
|
jjzhang166/avocadodb
|
948d94592c10731857c8617b133bda840b8e833e
|
[
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | null | null | null |
avocadod/MMFiles/MMFilesHashIndex.cpp
|
jjzhang166/avocadodb
|
948d94592c10731857c8617b133bda840b8e833e
|
[
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | null | null | null |
////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// 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.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Dr. Frank Celler
////////////////////////////////////////////////////////////////////////////////
#include "MMFilesHashIndex.h"
#include "Aql/Ast.h"
#include "Aql/AstNode.h"
#include "Aql/SortCondition.h"
#include "Basics/Exceptions.h"
#include "Basics/FixedSizeAllocator.h"
#include "Basics/LocalTaskQueue.h"
#include "Basics/VelocyPackHelper.h"
#include "Indexes/IndexLookupContext.h"
#include "Indexes/IndexResult.h"
#include "Indexes/SimpleAttributeEqualityMatcher.h"
#include "MMFiles/MMFilesCollection.h"
#include "MMFiles/MMFilesToken.h"
#include "StorageEngine/TransactionState.h"
#include "Transaction/Context.h"
#include "Transaction/Helpers.h"
#include "VocBase/LogicalCollection.h"
#include <velocypack/Iterator.h>
#include <velocypack/velocypack-aliases.h>
using namespace avocadodb;
MMFilesHashIndexLookupBuilder::MMFilesHashIndexLookupBuilder(
transaction::Methods* trx, avocadodb::aql::AstNode const* node,
avocadodb::aql::Variable const* reference,
std::vector<std::vector<avocadodb::basics::AttributeName>> const& fields)
: _builder(trx), _usesIn(false), _isEmpty(false), _inStorage(trx) {
TRI_ASSERT(node->type == aql::NODE_TYPE_OPERATOR_NARY_AND);
_coveredFields = fields.size();
TRI_ASSERT(node->numMembers() == _coveredFields);
std::pair<avocadodb::aql::Variable const*,
std::vector<avocadodb::basics::AttributeName>>
paramPair;
std::vector<size_t> storageOrder;
for (size_t i = 0; i < _coveredFields; ++i) {
auto comp = node->getMemberUnchecked(i);
auto attrNode = comp->getMember(0);
auto valNode = comp->getMember(1);
if (!attrNode->isAttributeAccessForVariable(paramPair) ||
paramPair.first != reference) {
attrNode = comp->getMember(1);
valNode = comp->getMember(0);
if (!attrNode->isAttributeAccessForVariable(paramPair) ||
paramPair.first != reference) {
_isEmpty = true;
return;
}
}
for (size_t j = 0; j < fields.size(); ++j) {
if (avocadodb::basics::AttributeName::isIdentical(
fields[j], paramPair.second, true)) {
if (TRI_AttributeNamesHaveExpansion(fields[j])) {
TRI_IF_FAILURE("HashIndex::permutationArrayIN") {
THROW_AVOCADO_EXCEPTION(TRI_ERROR_DEBUG);
}
_mappingFieldCondition.emplace(j, valNode);
} else {
TRI_IF_FAILURE("HashIndex::permutationEQ") {
THROW_AVOCADO_EXCEPTION(TRI_ERROR_DEBUG);
}
avocadodb::aql::AstNodeType type = comp->type;
if (type == aql::NODE_TYPE_OPERATOR_BINARY_IN) {
if (!_usesIn) {
_inStorage->openArray();
}
valNode->toVelocyPackValue(*(_inStorage.get()));
_inPosition.emplace(
j,
std::make_pair(0, std::vector<avocadodb::velocypack::Slice>()));
_usesIn = true;
storageOrder.emplace_back(j);
} else {
_mappingFieldCondition.emplace(j, valNode);
}
}
break;
}
}
}
if (_usesIn) {
_inStorage->close();
avocadodb::basics::VelocyPackHelper::VPackLess<true> sorter;
std::unordered_set<VPackSlice,
avocadodb::basics::VelocyPackHelper::VPackHash,
avocadodb::basics::VelocyPackHelper::VPackEqual>
tmp(16, avocadodb::basics::VelocyPackHelper::VPackHash(),
avocadodb::basics::VelocyPackHelper::VPackEqual());
VPackSlice storageSlice = _inStorage->slice();
auto f = storageOrder.begin();
for (auto const& values : VPackArrayIterator(storageSlice)) {
tmp.clear();
TRI_IF_FAILURE("Index::permutationIN") {
THROW_AVOCADO_EXCEPTION(TRI_ERROR_DEBUG);
}
if (values.isArray()) {
for (auto const& value : VPackArrayIterator(values)) {
tmp.emplace(value);
}
}
if (tmp.empty()) {
// IN [] short-circuit, cannot be fullfilled;
_isEmpty = true;
return;
}
// Now the elements are unique
auto& vector = _inPosition.find(*f)->second.second;
vector.insert(vector.end(), tmp.begin(), tmp.end());
std::sort(vector.begin(), vector.end(), sorter);
f++;
}
}
buildNextSearchValue();
}
VPackSlice MMFilesHashIndexLookupBuilder::lookup() { return _builder->slice(); }
bool MMFilesHashIndexLookupBuilder::hasAndGetNext() {
_builder->clear();
if (!_usesIn || _isEmpty) {
return false;
}
if (!incrementInPosition()) {
return false;
}
buildNextSearchValue();
return true;
}
void MMFilesHashIndexLookupBuilder::reset() {
if (_isEmpty) {
return;
}
if (_usesIn) {
for (auto& it : _inPosition) {
it.second.first = 0;
}
}
buildNextSearchValue();
}
bool MMFilesHashIndexLookupBuilder::incrementInPosition() {
size_t i = _coveredFields - 1;
while (true) {
auto it = _inPosition.find(i);
if (it != _inPosition.end()) {
it->second.first++;
if (it->second.first == it->second.second.size()) {
// Reached end of this array. start form begining.
// Increment another array.
it->second.first = 0;
} else {
return true;
}
}
if (i == 0) {
return false;
}
--i;
}
}
void MMFilesHashIndexLookupBuilder::buildNextSearchValue() {
if (_isEmpty) {
return;
}
_builder->openArray();
if (!_usesIn) {
// Fast path, do no search and checks
for (size_t i = 0; i < _coveredFields; ++i) {
_mappingFieldCondition[i]->toVelocyPackValue(*(_builder.get()));
}
} else {
for (size_t i = 0; i < _coveredFields; ++i) {
auto in = _inPosition.find(i);
if (in != _inPosition.end()) {
_builder->add(in->second.second[in->second.first]);
} else {
_mappingFieldCondition[i]->toVelocyPackValue(*(_builder.get()));
}
}
}
_builder->close(); // End of search Array
}
/// @brief determines if two elements are equal
static bool IsEqualElementElementUnique(void*,
MMFilesHashIndexElement const* left,
MMFilesHashIndexElement const* right) {
// this is quite simple
return left->revisionId() == right->revisionId();
}
/// @brief determines if two elements are equal
static bool IsEqualElementElementMulti(void* userData,
MMFilesHashIndexElement const* left,
MMFilesHashIndexElement const* right) {
TRI_ASSERT(left != nullptr);
TRI_ASSERT(right != nullptr);
if (left->revisionId() != right->revisionId()) {
return false;
}
if (left->hash() != right->hash()) {
return false;
}
IndexLookupContext* context = static_cast<IndexLookupContext*>(userData);
TRI_ASSERT(context != nullptr);
for (size_t i = 0; i < context->numFields(); ++i) {
VPackSlice leftData = left->slice(context, i);
VPackSlice rightData = right->slice(context, i);
int res =
avocadodb::basics::VelocyPackHelper::compare(leftData, rightData, false);
if (res != 0) {
return false;
}
}
return true;
}
/// @brief given a key generates a hash integer
static uint64_t HashKey(void*, VPackSlice const* key) {
return MMFilesHashIndexElement::hash(*key);
}
/// @brief determines if a key corresponds to an element
static bool IsEqualKeyElementMulti(void* userData, VPackSlice const* left,
MMFilesHashIndexElement const* right) {
TRI_ASSERT(left->isArray());
TRI_ASSERT(right->revisionId() != 0);
IndexLookupContext* context = static_cast<IndexLookupContext*>(userData);
TRI_ASSERT(context != nullptr);
// TODO: is it a performance improvement to compare the hash values first?
VPackArrayIterator it(*left);
while (it.valid()) {
int res = avocadodb::basics::VelocyPackHelper::compare(it.value(), right->slice(context, it.index()), false);
if (res != 0) {
return false;
}
it.next();
}
return true;
}
/// @brief determines if a key corresponds to an element
static bool IsEqualKeyElementUnique(void* userData, VPackSlice const* left,
uint64_t,
MMFilesHashIndexElement const* right) {
return IsEqualKeyElementMulti(userData, left, right);
}
MMFilesHashIndexIterator::MMFilesHashIndexIterator(
LogicalCollection* collection, transaction::Methods* trx,
ManagedDocumentResult* mmdr, MMFilesHashIndex const* index,
avocadodb::aql::AstNode const* node,
avocadodb::aql::Variable const* reference)
: IndexIterator(collection, trx, mmdr, index),
_index(index),
_lookups(trx, node, reference, index->fields()),
_buffer(),
_posInBuffer(0) {
_index->lookup(_trx, _lookups.lookup(), _buffer);
}
bool MMFilesHashIndexIterator::next(TokenCallback const& cb, size_t limit) {
while (limit > 0) {
if (_posInBuffer >= _buffer.size()) {
if (!_lookups.hasAndGetNext()) {
// we're at the end of the lookup values
return false;
}
// We have to refill the buffer
_buffer.clear();
_posInBuffer = 0;
_index->lookup(_trx, _lookups.lookup(), _buffer);
}
if (!_buffer.empty()) {
// found something
cb(MMFilesToken{_buffer[_posInBuffer++]->revisionId()});
--limit;
}
}
return true;
}
void MMFilesHashIndexIterator::reset() {
_buffer.clear();
_posInBuffer = 0;
_lookups.reset();
_index->lookup(_trx, _lookups.lookup(), _buffer);
}
MMFilesHashIndexIteratorVPack::MMFilesHashIndexIteratorVPack(
LogicalCollection* collection, transaction::Methods* trx,
ManagedDocumentResult* mmdr, MMFilesHashIndex const* index,
std::unique_ptr<avocadodb::velocypack::Builder>& searchValues)
: IndexIterator(collection, trx, mmdr, index),
_index(index),
_searchValues(searchValues.get()),
_iterator(_searchValues->slice()),
_buffer(),
_posInBuffer(0) {
searchValues.release(); // now we have ownership for searchValues
}
MMFilesHashIndexIteratorVPack::~MMFilesHashIndexIteratorVPack() {
if (_searchValues != nullptr) {
// return the VPackBuilder to the transaction context
_trx->transactionContextPtr()->returnBuilder(_searchValues.release());
}
}
bool MMFilesHashIndexIteratorVPack::next(TokenCallback const& cb,
size_t limit) {
while (limit > 0) {
if (_posInBuffer >= _buffer.size()) {
if (!_iterator.valid()) {
// we're at the end of the lookup values
return false;
}
// We have to refill the buffer
_buffer.clear();
_posInBuffer = 0;
int res = TRI_ERROR_NO_ERROR;
_index->lookup(_trx, _iterator.value(), _buffer);
_iterator.next();
if (res != TRI_ERROR_NO_ERROR) {
THROW_AVOCADO_EXCEPTION(res);
}
}
if (!_buffer.empty()) {
// found something
cb(MMFilesToken{_buffer[_posInBuffer++]->revisionId()});
--limit;
}
}
return true;
}
void MMFilesHashIndexIteratorVPack::reset() {
_buffer.clear();
_posInBuffer = 0;
_iterator.reset();
}
/// @brief create the unique array
MMFilesHashIndex::UniqueArray::UniqueArray(
size_t numPaths, TRI_HashArray_t* hashArray, HashElementFunc* hashElement,
IsEqualElementElementByKey* isEqualElElByKey)
: _hashArray(hashArray),
_hashElement(hashElement),
_isEqualElElByKey(isEqualElElByKey),
_numPaths(numPaths) {
TRI_ASSERT(_hashArray != nullptr);
TRI_ASSERT(_hashElement != nullptr);
TRI_ASSERT(_isEqualElElByKey != nullptr);
}
/// @brief destroy the unique array
MMFilesHashIndex::UniqueArray::~UniqueArray() {
delete _hashArray;
delete _hashElement;
delete _isEqualElElByKey;
}
/// @brief create the multi array
MMFilesHashIndex::MultiArray::MultiArray(
size_t numPaths, TRI_HashArrayMulti_t* hashArray,
HashElementFunc* hashElement, IsEqualElementElementByKey* isEqualElElByKey)
: _hashArray(hashArray),
_hashElement(hashElement),
_isEqualElElByKey(isEqualElElByKey),
_numPaths(numPaths) {
TRI_ASSERT(_hashArray != nullptr);
TRI_ASSERT(_hashElement != nullptr);
TRI_ASSERT(_isEqualElElByKey != nullptr);
}
/// @brief destroy the multi array
MMFilesHashIndex::MultiArray::~MultiArray() {
delete _hashArray;
delete _hashElement;
delete _isEqualElElByKey;
}
MMFilesHashIndex::MMFilesHashIndex(TRI_idx_iid_t iid,
LogicalCollection* collection,
VPackSlice const& info)
: MMFilesPathBasedIndex(iid, collection, info,
sizeof(TRI_voc_rid_t) + sizeof(uint32_t), false),
_uniqueArray(nullptr) {
size_t indexBuckets = 1;
if (collection != nullptr) {
auto physical = static_cast<MMFilesCollection*>(collection->getPhysical());
TRI_ASSERT(physical != nullptr);
indexBuckets = static_cast<size_t>(physical->indexBuckets());
}
auto func = std::make_unique<HashElementFunc>();
auto compare = std::make_unique<IsEqualElementElementByKey>(_paths.size(),
_useExpansion);
if (_unique) {
auto array = std::make_unique<TRI_HashArray_t>(
HashKey, *(func.get()), IsEqualKeyElementUnique,
IsEqualElementElementUnique, *(compare.get()), indexBuckets,
[this]() -> std::string { return this->context(); });
_uniqueArray = new MMFilesHashIndex::UniqueArray(numPaths(), array.get(),
func.get(), compare.get());
array.release();
} else {
_multiArray = nullptr;
auto array = std::make_unique<TRI_HashArrayMulti_t>(
HashKey, *(func.get()), IsEqualKeyElementMulti,
IsEqualElementElementMulti, *(compare.get()), indexBuckets, 64,
[this]() -> std::string { return this->context(); });
_multiArray = new MMFilesHashIndex::MultiArray(numPaths(), array.get(),
func.get(), compare.get());
array.release();
}
compare.release();
func.release();
}
/// @brief destroys the index
MMFilesHashIndex::~MMFilesHashIndex() {
if (_unique) {
delete _uniqueArray;
} else {
delete _multiArray;
}
}
/// @brief returns a selectivity estimate for the index
double MMFilesHashIndex::selectivityEstimateLocal(StringRef const*) const {
if (_multiArray == nullptr) {
return 0.1;
}
return _multiArray->_hashArray->selectivity();
}
/// @brief returns the index memory usage
size_t MMFilesHashIndex::memory() const {
size_t elementSize = MMFilesHashIndexElement::baseMemoryUsage(_paths.size());
if (_unique) {
return static_cast<size_t>(elementSize * _uniqueArray->_hashArray->size() +
_uniqueArray->_hashArray->memoryUsage());
}
return static_cast<size_t>(elementSize * _multiArray->_hashArray->size() +
_multiArray->_hashArray->memoryUsage());
}
/// @brief return a velocypack representation of the index figures
void MMFilesHashIndex::toVelocyPackFigures(VPackBuilder& builder) const {
MMFilesPathBasedIndex::toVelocyPackFigures(builder);
if (_unique) {
_uniqueArray->_hashArray->appendToVelocyPack(builder);
} else {
_multiArray->_hashArray->appendToVelocyPack(builder);
}
}
/// @brief Test if this index matches the definition
bool MMFilesHashIndex::matchesDefinition(VPackSlice const& info) const {
TRI_ASSERT(info.isObject());
#ifdef AVOCADODB_ENABLE_MAINTAINER_MODE
VPackSlice typeSlice = info.get("type");
TRI_ASSERT(typeSlice.isString());
StringRef typeStr(typeSlice);
TRI_ASSERT(typeStr == oldtypeName());
#endif
auto value = info.get("id");
if (!value.isNone()) {
// We already have an id.
if (!value.isString()) {
// Invalid ID
return false;
}
// Short circuit. If id is correct the index is identical.
StringRef idRef(value);
return idRef == std::to_string(_iid);
}
value = info.get("fields");
if (!value.isArray()) {
return false;
}
size_t const n = static_cast<size_t>(value.length());
if (n != _fields.size()) {
return false;
}
if (_unique != avocadodb::basics::VelocyPackHelper::getBooleanValue(
info, "unique", false)) {
return false;
}
if (_sparse != avocadodb::basics::VelocyPackHelper::getBooleanValue(
info, "sparse", false)) {
return false;
}
// This check does not take ordering of attributes into account.
std::vector<avocadodb::basics::AttributeName> translate;
for (auto const& f : VPackArrayIterator(value)) {
bool found = false;
if (!f.isString()) {
// Invalid field definition!
return false;
}
translate.clear();
avocadodb::StringRef in(f);
TRI_ParseAttributeString(in, translate, true);
for (size_t i = 0; i < n; ++i) {
if (avocadodb::basics::AttributeName::isIdentical(_fields[i], translate,
false)) {
found = true;
break;
}
}
if (!found) {
return false;
}
}
return true;
}
Result MMFilesHashIndex::insert(transaction::Methods* trx,
TRI_voc_rid_t revisionId, VPackSlice const& doc,
bool isRollback) {
if (_unique) {
return IndexResult(insertUnique(trx, revisionId, doc, isRollback), this);
}
return IndexResult(insertMulti(trx, revisionId, doc, isRollback), this);
}
/// @brief removes an entry from the hash array part of the hash index
Result MMFilesHashIndex::remove(transaction::Methods* trx,
TRI_voc_rid_t revisionId, VPackSlice const& doc,
bool isRollback) {
std::vector<MMFilesHashIndexElement*> elements;
int res = fillElement<MMFilesHashIndexElement>(elements, revisionId, doc);
if (res != TRI_ERROR_NO_ERROR) {
for (auto& hashElement : elements) {
_allocator->deallocate(hashElement);
}
return IndexResult(res, this);
}
for (auto& hashElement : elements) {
int result;
if (_unique) {
result = removeUniqueElement(trx, hashElement, isRollback);
} else {
result = removeMultiElement(trx, hashElement, isRollback);
}
// we may be looping through this multiple times, and if an error
// occurs, we want to keep it
if (result != TRI_ERROR_NO_ERROR) {
res = result;
}
_allocator->deallocate(hashElement);
}
return IndexResult(res, this);
}
void MMFilesHashIndex::batchInsert(
transaction::Methods* trx,
std::vector<std::pair<TRI_voc_rid_t, VPackSlice>> const& documents,
std::shared_ptr<avocadodb::basics::LocalTaskQueue> queue) {
TRI_ASSERT(queue != nullptr);
if (_unique) {
batchInsertUnique(trx, documents, queue);
} else {
batchInsertMulti(trx, documents, queue);
}
}
void MMFilesHashIndex::unload() {
if (_unique) {
_uniqueArray->_hashArray->truncate(
[](MMFilesHashIndexElement*) -> bool { return true; });
} else {
_multiArray->_hashArray->truncate(
[](MMFilesHashIndexElement*) -> bool { return true; });
}
_allocator->deallocateAll();
}
/// @brief provides a size hint for the hash index
int MMFilesHashIndex::sizeHint(transaction::Methods* trx, size_t size) {
if (_sparse) {
// for sparse indexes, we assume that we will have less index entries
// than if the index would be fully populated
size /= 5;
}
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
if (_unique) {
return _uniqueArray->_hashArray->resize(&context, size);
}
return _multiArray->_hashArray->resize(&context, size);
}
/// @brief locates entries in the hash index given VelocyPack slices
int MMFilesHashIndex::lookup(
transaction::Methods* trx, VPackSlice key,
std::vector<MMFilesHashIndexElement*>& documents) const {
if (key.isNone()) {
return TRI_ERROR_NO_ERROR;
}
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
if (_unique) {
MMFilesHashIndexElement* found =
_uniqueArray->_hashArray->findByKey(&context, &key);
if (found != nullptr) {
// unique hash index: maximum number is 1
documents.emplace_back(found);
}
return TRI_ERROR_NO_ERROR;
}
documents.clear();
try {
_multiArray->_hashArray->lookupByKey(&context, &key, documents);
} catch (std::bad_alloc const&) {
return TRI_ERROR_OUT_OF_MEMORY;
} catch (...) {
return TRI_ERROR_INTERNAL;
}
return TRI_ERROR_NO_ERROR;
}
int MMFilesHashIndex::insertUnique(transaction::Methods* trx,
TRI_voc_rid_t revisionId,
VPackSlice const& doc, bool isRollback) {
std::vector<MMFilesHashIndexElement*> elements;
int res = fillElement<MMFilesHashIndexElement>(elements, revisionId, doc);
if (res != TRI_ERROR_NO_ERROR) {
for (auto& it : elements) {
// free all elements to prevent leak
_allocator->deallocate(it);
}
return res;
}
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
auto work = [this, &context](MMFilesHashIndexElement* element, bool) -> int {
TRI_IF_FAILURE("InsertHashIndex") { return TRI_ERROR_DEBUG; }
return _uniqueArray->_hashArray->insert(&context, element);
};
size_t const n = elements.size();
for (size_t i = 0; i < n; ++i) {
auto hashElement = elements[i];
res = work(hashElement, isRollback);
if (res != TRI_ERROR_NO_ERROR) {
for (size_t j = i; j < n; ++j) {
// Free all elements that are not yet in the index
_allocator->deallocate(elements[j]);
}
// Already indexed elements will be removed by the rollback
break;
}
}
return res;
}
void MMFilesHashIndex::batchInsertUnique(
transaction::Methods* trx,
std::vector<std::pair<TRI_voc_rid_t, VPackSlice>> const& documents,
std::shared_ptr<avocadodb::basics::LocalTaskQueue> queue) {
TRI_ASSERT(queue != nullptr);
std::shared_ptr<std::vector<MMFilesHashIndexElement*>> elements;
elements.reset(new std::vector<MMFilesHashIndexElement*>());
elements->reserve(documents.size());
// TODO: create parallel tasks for this
for (auto& doc : documents) {
int res = fillElement<MMFilesHashIndexElement>(*(elements.get()), doc.first,
doc.second);
if (res != TRI_ERROR_NO_ERROR) {
for (auto& it : *(elements.get())) {
// free all elements to prevent leak
_allocator->deallocate(it);
}
queue->setStatus(res);
return;
}
}
if (elements->empty()) {
// no elements left to insert
return;
}
// functions that will be called for each thread
auto creator = [&trx, this]() -> void* {
ManagedDocumentResult* result = new ManagedDocumentResult;
return new IndexLookupContext(trx, _collection, result, numPaths());
};
auto destroyer = [](void* userData) {
IndexLookupContext* context = static_cast<IndexLookupContext*>(userData);
delete context->result();
delete context;
};
// queue the actual insertion tasks
_uniqueArray->_hashArray->batchInsert(creator, destroyer, elements, queue);
// queue cleanup callback
auto allocator = _allocator.get();
auto callback = [elements, queue, allocator]() -> void {
if (queue->status() != TRI_ERROR_NO_ERROR) {
for (auto& it : *(elements.get())) {
// free all elements to prevent leak
allocator->deallocate(it);
}
}
};
std::shared_ptr<avocadodb::basics::LocalCallbackTask> cbTask;
cbTask.reset(new avocadodb::basics::LocalCallbackTask(queue, callback));
queue->enqueueCallback(cbTask);
}
int MMFilesHashIndex::insertMulti(transaction::Methods* trx,
TRI_voc_rid_t revisionId,
VPackSlice const& doc, bool isRollback) {
std::vector<MMFilesHashIndexElement*> elements;
int res = fillElement<MMFilesHashIndexElement>(elements, revisionId, doc);
if (res != TRI_ERROR_NO_ERROR) {
for (auto& hashElement : elements) {
_allocator->deallocate(hashElement);
}
return res;
}
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
auto work = [this, &context](MMFilesHashIndexElement*& element, bool) {
TRI_IF_FAILURE("InsertHashIndex") {
THROW_AVOCADO_EXCEPTION(TRI_ERROR_DEBUG);
}
MMFilesHashIndexElement* found =
_multiArray->_hashArray->insert(&context, element, false, true);
if (found != nullptr) {
// already got the exact same index entry. now free our local element...
_allocator->deallocate(element);
}
};
size_t const n = elements.size();
for (size_t i = 0; i < n; ++i) {
auto hashElement = elements[i];
try {
work(hashElement, isRollback);
} catch (avocadodb::basics::Exception const& ex) {
res = ex.code();
} catch (std::bad_alloc const&) {
res = TRI_ERROR_OUT_OF_MEMORY;
} catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
for (size_t j = i; j < n; ++j) {
// Free all elements that are not yet in the index
_allocator->deallocate(elements[j]);
}
for (size_t j = 0; j < i; ++j) {
// Remove all already indexed elements and free them
if (elements[j] != nullptr) {
removeMultiElement(trx, elements[j], isRollback);
}
}
return res;
}
}
return TRI_ERROR_NO_ERROR;
}
void MMFilesHashIndex::batchInsertMulti(
transaction::Methods* trx,
std::vector<std::pair<TRI_voc_rid_t, VPackSlice>> const& documents,
std::shared_ptr<avocadodb::basics::LocalTaskQueue> queue) {
TRI_ASSERT(queue != nullptr);
std::shared_ptr<std::vector<MMFilesHashIndexElement*>> elements;
elements.reset(new std::vector<MMFilesHashIndexElement*>());
elements->reserve(documents.size());
// TODO: create parallel tasks for this
for (auto& doc : documents) {
int res = fillElement<MMFilesHashIndexElement>(*(elements.get()), doc.first,
doc.second);
if (res != TRI_ERROR_NO_ERROR) {
// Filling the elements failed for some reason. Assume loading as failed
for (auto& el : *(elements.get())) {
// Free all elements that are not yet in the index
_allocator->deallocate(el);
}
return;
}
}
if (elements->empty()) {
// no elements left to insert
return;
}
// functions that will be called for each thread
auto creator = [&trx, this]() -> void* {
ManagedDocumentResult* result = new ManagedDocumentResult;
return new IndexLookupContext(trx, _collection, result, numPaths());
};
auto destroyer = [](void* userData) {
IndexLookupContext* context = static_cast<IndexLookupContext*>(userData);
delete context->result();
delete context;
};
// queue actual insertion tasks
_multiArray->_hashArray->batchInsert(creator, destroyer, elements, queue);
// queue cleanup callback
auto allocator = _allocator.get();
auto callback = [elements, queue, allocator]() -> void {
if (queue->status() != TRI_ERROR_NO_ERROR) {
// free all elements to prevent leak
for (auto& it : *(elements.get())) {
allocator->deallocate(it);
}
}
};
std::shared_ptr<avocadodb::basics::LocalCallbackTask> cbTask;
cbTask.reset(new avocadodb::basics::LocalCallbackTask(queue, callback));
queue->enqueueCallback(cbTask);
}
int MMFilesHashIndex::removeUniqueElement(transaction::Methods* trx,
MMFilesHashIndexElement* element,
bool isRollback) {
TRI_IF_FAILURE("RemoveHashIndex") { return TRI_ERROR_DEBUG; }
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
MMFilesHashIndexElement* old =
_uniqueArray->_hashArray->remove(&context, element);
if (old == nullptr) {
// not found
if (isRollback) { // ignore in this case, because it can happen
return TRI_ERROR_NO_ERROR;
}
return TRI_ERROR_INTERNAL;
}
_allocator->deallocate(old);
return TRI_ERROR_NO_ERROR;
}
int MMFilesHashIndex::removeMultiElement(transaction::Methods* trx,
MMFilesHashIndexElement* element,
bool isRollback) {
TRI_IF_FAILURE("RemoveHashIndex") { return TRI_ERROR_DEBUG; }
ManagedDocumentResult result;
IndexLookupContext context(trx, _collection, &result, numPaths());
MMFilesHashIndexElement* old =
_multiArray->_hashArray->remove(&context, element);
if (old == nullptr) {
// not found
if (isRollback) { // ignore in this case, because it can happen
return TRI_ERROR_NO_ERROR;
}
return TRI_ERROR_INTERNAL;
}
_allocator->deallocate(old);
return TRI_ERROR_NO_ERROR;
}
/// @brief checks whether the index supports the condition
bool MMFilesHashIndex::supportsFilterCondition(
avocadodb::aql::AstNode const* node,
avocadodb::aql::Variable const* reference, size_t itemsInIndex,
size_t& estimatedItems, double& estimatedCost) const {
SimpleAttributeEqualityMatcher matcher(_fields);
return matcher.matchAll(this, node, reference, itemsInIndex, estimatedItems,
estimatedCost);
}
/// @brief creates an IndexIterator for the given Condition
IndexIterator* MMFilesHashIndex::iteratorForCondition(
transaction::Methods* trx, ManagedDocumentResult* mmdr,
avocadodb::aql::AstNode const* node,
avocadodb::aql::Variable const* reference, bool) {
TRI_IF_FAILURE("HashIndex::noIterator") {
THROW_AVOCADO_EXCEPTION(TRI_ERROR_DEBUG);
}
return new MMFilesHashIndexIterator(_collection, trx, mmdr, this, node,
reference);
}
/// @brief specializes the condition for use with the index
avocadodb::aql::AstNode* MMFilesHashIndex::specializeCondition(
avocadodb::aql::AstNode* node,
avocadodb::aql::Variable const* reference) const {
SimpleAttributeEqualityMatcher matcher(_fields);
return matcher.specializeAll(this, node, reference);
}
| 31.601413
| 113
| 0.647029
|
jjzhang166
|
ce50851c4766453e22e46d0e33548f1d30636ff6
| 10,913
|
cpp
|
C++
|
thrift/compiler/test/fixtures/basic/gen-cpp/MyServicePrioChild.cpp
|
lucyge/FBThrift
|
2cb49e1c1ee1712416db9cc1f4b833382b04d8cd
|
[
"Apache-2.0"
] | 1
|
2018-02-28T06:45:51.000Z
|
2018-02-28T06:45:51.000Z
|
thrift/compiler/test/fixtures/basic/gen-cpp/MyServicePrioChild.cpp
|
lucyge/FBThrift
|
2cb49e1c1ee1712416db9cc1f4b833382b04d8cd
|
[
"Apache-2.0"
] | null | null | null |
thrift/compiler/test/fixtures/basic/gen-cpp/MyServicePrioChild.cpp
|
lucyge/FBThrift
|
2cb49e1c1ee1712416db9cc1f4b833382b04d8cd
|
[
"Apache-2.0"
] | 1
|
2018-02-28T06:45:18.000Z
|
2018-02-28T06:45:18.000Z
|
/**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#include "thrift/compiler/test/fixtures/basic/gen-cpp/MyServicePrioChild.h"
#include <folly/ScopeGuard.h>
#include "thrift/compiler/test/fixtures/basic/gen-cpp/module_reflection.h"
const uint64_t MyServicePrioChild_pang_args::_reflection_id;
void MyServicePrioChild_pang_args::_reflection_register(::apache::thrift::reflection::Schema& schema) {
::module_reflection_::reflectionInitializer_6708350789317430956(schema);
}
void MyServicePrioChild_pang_args::translateFieldName(
FOLLY_MAYBE_UNUSED folly::StringPiece _fname,
FOLLY_MAYBE_UNUSED int16_t& fid,
FOLLY_MAYBE_UNUSED apache::thrift::protocol::TType& _ftype) {
if (false) {}
};
uint32_t MyServicePrioChild_pang_args::read(apache::thrift::protocol::TProtocol* iprot) {
uint32_t xfer = 0;
std::string _fname;
apache::thrift::protocol::TType _ftype;
int16_t fid;
::apache::thrift::reflection::Schema * schema = iprot->getSchema();
if (schema != nullptr) {
::module_reflection_::reflectionInitializer_6708350789317430956(*schema);
iprot->setNextStructType(MyServicePrioChild_pang_args::_reflection_id);
}
xfer += iprot->readStructBegin(_fname);
using apache::thrift::protocol::TProtocolException;
while (true)
{
xfer += iprot->readFieldBegin(_fname, _ftype, fid);
if (_ftype == apache::thrift::protocol::T_STOP) {
break;
}
switch (fid)
{
default:
xfer += iprot->skip(_ftype);
break;
}
xfer += iprot->readFieldEnd();
}
xfer += iprot->readStructEnd();
return xfer;
}
uint32_t MyServicePrioChild_pang_args::write(apache::thrift::protocol::TProtocol* oprot) const {
uint32_t xfer = 0;
xfer += oprot->writeStructBegin("MyServicePrioChild_pang_args");
xfer += oprot->writeFieldStop();
xfer += oprot->writeStructEnd();
return xfer;
}
const uint64_t MyServicePrioChild_pang_pargs::_reflection_id;
void MyServicePrioChild_pang_pargs::_reflection_register(::apache::thrift::reflection::Schema& schema) {
::module_reflection_::reflectionInitializer_13933468378955615660(schema);
}
void MyServicePrioChild_pang_pargs::translateFieldName(
FOLLY_MAYBE_UNUSED folly::StringPiece _fname,
FOLLY_MAYBE_UNUSED int16_t& fid,
FOLLY_MAYBE_UNUSED apache::thrift::protocol::TType& _ftype) {
if (false) {}
};
uint32_t MyServicePrioChild_pang_pargs::write(apache::thrift::protocol::TProtocol* oprot) const {
uint32_t xfer = 0;
xfer += oprot->writeStructBegin("MyServicePrioChild_pang_pargs");
xfer += oprot->writeFieldStop();
xfer += oprot->writeStructEnd();
return xfer;
}
const uint64_t MyServicePrioChild_pang_presult::_reflection_id;
void MyServicePrioChild_pang_presult::_reflection_register(::apache::thrift::reflection::Schema& schema) {
::module_reflection_::reflectionInitializer_6662883238703015788(schema);
}
void MyServicePrioChild_pang_presult::translateFieldName(
FOLLY_MAYBE_UNUSED folly::StringPiece _fname,
FOLLY_MAYBE_UNUSED int16_t& fid,
FOLLY_MAYBE_UNUSED apache::thrift::protocol::TType& _ftype) {
if (false) {}
};
uint32_t MyServicePrioChild_pang_presult::read(apache::thrift::protocol::TProtocol* iprot) {
uint32_t xfer = 0;
std::string _fname;
apache::thrift::protocol::TType _ftype;
int16_t fid;
::apache::thrift::reflection::Schema * schema = iprot->getSchema();
if (schema != nullptr) {
::module_reflection_::reflectionInitializer_6662883238703015788(*schema);
iprot->setNextStructType(MyServicePrioChild_pang_presult::_reflection_id);
}
xfer += iprot->readStructBegin(_fname);
using apache::thrift::protocol::TProtocolException;
while (true)
{
xfer += iprot->readFieldBegin(_fname, _ftype, fid);
if (_ftype == apache::thrift::protocol::T_STOP) {
break;
}
switch (fid)
{
default:
xfer += iprot->skip(_ftype);
break;
}
xfer += iprot->readFieldEnd();
}
xfer += iprot->readStructEnd();
return xfer;
}
uint32_t MyServicePrioChild_pang_presult::write(apache::thrift::protocol::TProtocol* oprot) const {
uint32_t xfer = 0;
xfer += oprot->writeStructBegin("MyServicePrioChild_pang_presult");
xfer += oprot->writeFieldStop();
xfer += oprot->writeStructEnd();
return xfer;
}
const char* MyServicePrioChildClient::getServiceName() {
{
return "MyServicePrioChild";
}
}
void MyServicePrioChildClient::pang()
{
SCOPE_EXIT { this->clearClientContextStack(); };
this->generateClientContextStack(this->getServiceName(), "MyServicePrioChild.pang", this->getConnectionContext());
try {
send_pang();
recv_pang();
} catch (apache::thrift::transport::TTransportException&) {
::apache::thrift::ContextStack* c = this->getClientContextStack();
if (c) c->handlerError();
iprot_->getTransport()->close();
oprot_->getTransport()->close();
throw;
} catch (apache::thrift::TApplicationException& ex) {
if (ex.getType() == apache::thrift::TApplicationException::BAD_SEQUENCE_ID) {
::apache::thrift::ContextStack* c = this->getClientContextStack();
if (c) c->handlerError();
iprot_->getTransport()->close();
oprot_->getTransport()->close();
}
throw;
}
}
void MyServicePrioChildClient::send_pang()
{
apache::thrift::ContextStack* ctx = this->getClientContextStack();
if (ctx) ctx->preWrite();
oprot_->writeMessageBegin("pang", apache::thrift::protocol::T_CALL, getNextSendSequenceId());
MyServicePrioChild_pang_pargs args;
args.write(oprot_);
oprot_->writeMessageEnd();
uint32_t _bytes16 = oprot_->getTransport()->writeEnd();
oprot_->getTransport()->flush();
if (ctx) ctx->postWrite(_bytes16);
return;
}
folly::exception_wrapper MyServicePrioChildClient::recv_wrapped_pang()
{
apache::thrift::ContextStack* ctx = this->getClientContextStack();
int32_t rseqid = 0;
int32_t eseqid = getNextRecvSequenceId();
std::string _fname;
apache::thrift::protocol::TMessageType mtype;
if (ctx) ctx->preRead();
folly::exception_wrapper interior_ew;
auto caught_ew = folly::try_and_catch<apache::thrift::TException, apache::thrift::protocol::TProtocolException>([&]() {
iprot_->readMessageBegin(_fname, mtype, rseqid);
if (this->checkSeqid_ && rseqid != eseqid) {
iprot_->skip(apache::thrift::protocol::T_STRUCT);
iprot_->readMessageEnd();
iprot_->getTransport()->readEnd();
interior_ew = folly::make_exception_wrapper<apache::thrift::TApplicationException>(apache::thrift::TApplicationException::BAD_SEQUENCE_ID);
return; // from try_and_catch
}
if (mtype == apache::thrift::protocol::T_EXCEPTION) {
apache::thrift::TApplicationException x;
x.read(iprot_);
iprot_->readMessageEnd();
iprot_->getTransport()->readEnd();
interior_ew = folly::make_exception_wrapper<apache::thrift::TApplicationException>(x);
return; // from try_and_catch
}
if (mtype != apache::thrift::protocol::T_REPLY) {
iprot_->skip(apache::thrift::protocol::T_STRUCT);
iprot_->readMessageEnd();
iprot_->getTransport()->readEnd();
interior_ew = folly::make_exception_wrapper<apache::thrift::TApplicationException>(apache::thrift::TApplicationException::INVALID_MESSAGE_TYPE);
return; // from try_and_catch
}
if (_fname.compare("pang") != 0) {
iprot_->skip(apache::thrift::protocol::T_STRUCT);
iprot_->readMessageEnd();
iprot_->getTransport()->readEnd();
interior_ew = folly::make_exception_wrapper<apache::thrift::TApplicationException>(apache::thrift::TApplicationException::WRONG_METHOD_NAME);
return; // from try_and_catch
}
MyServicePrioChild_pang_presult result;
result.read(iprot_);
iprot_->readMessageEnd();
uint32_t bytes = iprot_->getTransport()->readEnd();
if (ctx) ctx->postRead(nullptr, bytes);
return; // from try_and_catch
});
if (interior_ew || caught_ew) {
return interior_ew ? interior_ew : caught_ew;
}
return folly::exception_wrapper();
}
void MyServicePrioChildClient::recv_pang()
{
auto ew = recv_wrapped_pang();
if (ew) {
ew.throw_exception();
}
}
bool MyServicePrioChildProcessor::dispatchCall(::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, const std::string& _fname, int32_t seqid, apache::thrift::server::TConnectionContext* connectionContext) {
ProcessMap::iterator pfn;
pfn = processMap_.find(_fname);
if (pfn == processMap_.end()) {
return MyServicePrioParentProcessor::dispatchCall(iprot, oprot, _fname, seqid, connectionContext);
}
const ProcessFunction& pf = pfn->second;
(this->*pf)(seqid, iprot, oprot, connectionContext);
return true;
}
void MyServicePrioChildProcessor::process_pang(int32_t seqid, apache::thrift::protocol::TProtocol* iprot, apache::thrift::protocol::TProtocol* oprot, apache::thrift::server::TConnectionContext* connectionContext)
{
std::unique_ptr<apache::thrift::ContextStack> ctx(this->getContextStack(this->getServiceName(), "MyServicePrioChild.pang", connectionContext));
if (ctx) ctx->preRead();
MyServicePrioChild_pang_args args;
try {
args.read(iprot);
} catch (const apache::thrift::protocol::TProtocolException& e) {
apache::thrift::TApplicationException x(apache::thrift::TApplicationException::PROTOCOL_ERROR, e.what());
oprot->writeMessageBegin("pang", apache::thrift::protocol::T_EXCEPTION, seqid);
x.write(oprot);
oprot->writeMessageEnd();
oprot->getTransport()->writeEnd();
oprot->getTransport()->flush();
return;
}
iprot->readMessageEnd();
uint32_t bytes = iprot->getTransport()->readEnd();
if (ctx) ctx->postRead(nullptr, bytes);
MyServicePrioChild_pang_presult result;
try {
iface_->pang();
} catch (const std::exception& e) {
if (ctx) ctx->handlerError();
apache::thrift::TApplicationException x(e.what());
oprot->writeMessageBegin("pang", apache::thrift::protocol::T_EXCEPTION, seqid);
x.write(oprot);
oprot->writeMessageEnd();
oprot->getTransport()->writeEnd();
oprot->getTransport()->flush();
return;
}
if (ctx) ctx->preWrite();
oprot->writeMessageBegin("pang", apache::thrift::protocol::T_REPLY, seqid);
result.write(oprot);
oprot->writeMessageEnd();
bytes = oprot->getTransport()->writeEnd();
oprot->getTransport()->flush();
if (ctx) ctx->postWrite(bytes);
}
::std::shared_ptr< ::apache::thrift::TProcessor > MyServicePrioChildProcessorFactory::getProcessor(::apache::thrift::server::TConnectionContext* ctx) {
::apache::thrift::ReleaseHandler< MyServicePrioChildIfFactory > cleanup(handlerFactory_);
::std::shared_ptr< MyServicePrioChildIf > handler(handlerFactory_->getHandler(ctx), cleanup);
::std::shared_ptr< ::apache::thrift::TProcessor > processor(new MyServicePrioChildProcessor(handler));
return processor;
}
| 33.271341
| 245
| 0.717951
|
lucyge
|
ce512d1d8c230afd75330de8b02071309b37e10f
| 1,558
|
cpp
|
C++
|
codeforces/ITMO academy pilot course/segment tree 1/step1/segment tree minimum.cpp
|
punnapavankumar9/coding-platforms
|
264803330f5b3857160ec809c0d79cba1aa479a3
|
[
"MIT"
] | null | null | null |
codeforces/ITMO academy pilot course/segment tree 1/step1/segment tree minimum.cpp
|
punnapavankumar9/coding-platforms
|
264803330f5b3857160ec809c0d79cba1aa479a3
|
[
"MIT"
] | null | null | null |
codeforces/ITMO academy pilot course/segment tree 1/step1/segment tree minimum.cpp
|
punnapavankumar9/coding-platforms
|
264803330f5b3857160ec809c0d79cba1aa479a3
|
[
"MIT"
] | null | null | null |
#include <iostream>
#include <climits>
using namespace std;
const int N =1e6+2;
typedef long long ll;
ll tree[4*N];
ll arr[N];
void build(int node, int st, int en){
if(st == en){
tree[node] = arr[st];
return;
}
int mid = (st + en) / 2;
build(node * 2, st , mid);
build(node* 2 +1, mid+1, en);
tree[node] = min(tree[node*2], tree[node*2+1]);
return;
}
void update(int node, int st, int en, int idx, ll val){
if(st == en){
tree[node] = val;
arr[st] = val;
return;
}
int mid = (st + en) /2;
if(idx <= mid){
update(node* 2, st, mid, idx, val);
}else{
update(node * 2 + 1, mid + 1, en, idx, val);
}
tree[node] = min(tree[node * 2], tree[node * 2 +1]);
return ;
}
ll query(int node, int st, int en, int l, int r){
if(st > r || en < l){
return INT_MAX;
}
if(l <= st && en <= r){
return tree[node];
}
int mid = (st + en) / 2;
ll q1 = query(node * 2, st, mid, l , r);
ll q2 = query(node * 2 + 1, mid + 1, en, l ,r);
return min(q1,q2);
}
signed main(){
int n,m;
cin >> n >> m;
for(int i =0; i <n; i++){
cin >> arr[i];
}
build(1,0,n-1);
while(m--){
int type;
cin >> type;
if(type == 1){
ll idx, val;
cin >> idx >> val;
update(1, 0, n-1, idx, val);
}else{
int l, r;
cin >> l >> r;
cout << (ll)query(1,0,n-1,l,r-1) << "\n";
}
}
return 0;
}
| 20.773333
| 56
| 0.439024
|
punnapavankumar9
|
ce5463566ffacfcf8bd2aa365b6d9744835aa4a0
| 3,573
|
cc
|
C++
|
stapl_release/docs/tutorial_guide/ex_302.cc
|
parasol-ppl/PPL_utils
|
92728bb89692fda1705a0dee436592d97922a6cb
|
[
"BSD-3-Clause"
] | null | null | null |
stapl_release/docs/tutorial_guide/ex_302.cc
|
parasol-ppl/PPL_utils
|
92728bb89692fda1705a0dee436592d97922a6cb
|
[
"BSD-3-Clause"
] | null | null | null |
stapl_release/docs/tutorial_guide/ex_302.cc
|
parasol-ppl/PPL_utils
|
92728bb89692fda1705a0dee436592d97922a6cb
|
[
"BSD-3-Clause"
] | null | null | null |
#include <iostream>
#include <fstream>
#include "ch3.hpp"
typedef stapl::map<int, stapl::map<int,int> > map_map_int_tp; // ## 1
typedef stapl::map_view<map_map_int_tp> map_map_int_vw_tp;
size_t ex_302(size_t,
stapl::stream<ifstream> &, stapl::stream<ofstream> &);
stapl::exit_code stapl_main(int argc, char **argv) {
stapl::stream<ifstream> zin;
zin.open("factors_10000.txt");
stapl::stream<ofstream> zout;
zout.open("ex_302.out");
size_t model = 1;
stapl::do_once( msg( zout, "Example 302" ) );
int result = ex_302(model, zin, zout);
stapl::do_once( msg_val<int>( zout, "Result ", result ) );
return EXIT_SUCCESS;
}
struct ex_302_fill_wf {
private:
size_t outer;
size_t inner;
public:
ex_302_fill_wf(size_t o, size_t i)
: outer(o), inner(i)
{ }
typedef void result_type;
template <typename Data>
result_type operator()(Data &a) {
if (outer <= data_cnt ) {
for (size_t i = 0; i < outer; i++ ) {
for (size_t j = 0; j < inner; j++ ) {
int outer_key = prime_nums[i];
int inner_key = rand_nums[j];
int value = rand_nums[i] % (j+1);
a[outer_key][inner_key] = value; // ## 2
}
}
} else {
for (size_t i = 0; i < outer; i += data_cnt ) {
for (size_t j = 0; j < inner; j++ ) {
for (size_t k = 0; k < data_cnt; k++ ) {
int outer_key = prime_nums[k]*prime_nums[data_cnt-k];
int inner_key = rand_nums[j];
int value = fibo20[i%20];
a[outer_key][inner_key] = value;
}
}
}
}
}
void define_type(stapl::typer& t) {
t.member(outer);
t.member(inner);
}
};
struct ex_302_process_wf {
typedef int result_type;
template <typename Element>
result_type operator()(Element elem) {
return elem.second.size(); // ## 3
}
};
struct ex_302_insert_wf {
private:
size_t limit;
public:
ex_302_insert_wf(size_t sz)
: limit(sz)
{ }
typedef void result_type;
template <typename Ref1, typename Ref2, typename Ref3, typename Data>
result_type operator()( Ref1 left, Ref2 right, Ref3 value, Data &b ) {
for (size_t i = 0; i < limit; i++ ) {
b[left[i]][right[i]] = value[i]; // ## 4
}
}
void define_type(stapl::typer& t) {
t.member(limit);
}
};
size_t ex_302( size_t model,
stapl::stream<ifstream> &zin, stapl::stream<ofstream> &zout) {
size_t outer_a = 100 * model;
size_t inner_a = 100 * model;
ndx_dom_tp map_dom_a(0, prime_nums[data_cnt-1]); // ## 5
map_map_int_tp a(map_dom_a); // ## 6
map_map_int_vw_tp a_vw(a); // ## 7
stapl::do_once(ex_302_fill_wf(outer_a, inner_a), a_vw ); // ## 8
stapl::map_func(ex_302_process_wf(), a_vw );
stapl::do_once( msg( zout, "a:" ) );
stapl::serial_io(show_outer_map_wf(zout), a_vw );
stapl::do_once( msg( zout, "") );
size_t size_b = data_cnt;
ary_sz_tp lkey(size_b), rkey(size_b), val(size_b); // ## 9
ary_sz_vw_tp lkey_vw(lkey), rkey_vw(rkey), val_vw(val);
stapl::do_once( msg( zout, "lkey, rkey, val" ) );
stapl::serial_io(get_triple_wf(zin), lkey_vw, rkey_vw, val_vw ); // ## 10
stapl::do_once( msg( zout, "") );
ndx_dom_tp map_dom_b(0, 16777216); // ## 11
map_map_int_tp b(map_dom_b);
map_map_int_vw_tp b_vw(b);
stapl::do_once(ex_302_insert_wf(size_b), lkey_vw, rkey_vw, val_vw, b_vw );
stapl::do_once( msg( zout, "b:" ) );
stapl::serial_io(show_outer_map_wf(zout), b_vw );
stapl::do_once( msg( zout, "") );
int res = stapl::map_reduce(multi_map_cksum_wf(), xor_un_wf(), a_vw);
return res;
}
| 27.484615
| 77
| 0.615449
|
parasol-ppl
|
ce549a255cbd00f75375f63d5d136e01f8c4a04f
| 3,171
|
cpp
|
C++
|
subcPrograms/Pmachine/sto.cpp
|
Raffson/Sub-C-compiler
|
1780cc32d4ac16184dc8a2c9f2aad30794a13090
|
[
"MIT"
] | 1
|
2021-04-29T06:40:54.000Z
|
2021-04-29T06:40:54.000Z
|
resources/Pmachine/sto.cpp
|
arminnh/ba3-c-to-p-compiler
|
2c649e1d3643471bac681c2656c1c7d6249be4d7
|
[
"MIT"
] | null | null | null |
resources/Pmachine/sto.cpp
|
arminnh/ba3-c-to-p-compiler
|
2c649e1d3643471bac681c2656c1c7d6249be4d7
|
[
"MIT"
] | 1
|
2017-01-30T19:19:31.000Z
|
2017-01-30T19:19:31.000Z
|
// sto.cpp
#include "sto.h"
/**
* Constructor
* @param type specifies on which type is to be stored (StackElementType)
*/
Sto::Sto(StackElementType type) : fType(type) {}
/**
* Destructor
*/
Sto::~Sto() {}
/**
* Checks the contents of the stack and then performs the store operation.
* @return none
* @param stack the machine on which the instruction is performed (StackMachine*)
* @exception ExecutionError
*/
void Sto::execute(StackMachine *stack)
{
StackAddress p;
if(stack->fSP < 1)
throw ExecutionError("instruction sto: at least 2 stackelements are required for this operation");
if(typeid(p) != typeid(*(stack->fStore[stack->fSP - 1])))
throw ExecutionError("instruction sto: type pointed to by SP - 1 is not of type address.");
switch(fType)
{
case integer:
{
StackInteger p1;
if(typeid(p1) != typeid(*(stack->fStore[stack->fSP])))
{
throw ExecutionError("instruction sto: type pointed to by SP is not of type integer.");
}
break;
}
case real:
{
StackReal p1;
if(typeid(p1) != typeid(*(stack->fStore[stack->fSP])))
{
throw ExecutionError("instruction sto: type pointed to by SP is not of type real.");
}
break;
}
case boolean:
{
StackBoolean p1;
if(typeid(p1) != typeid(*(stack->fStore[stack->fSP])))
{
throw ExecutionError("instruction sto: type pointed to by SP is not of type boolean.");
}
break;
}
case character:
{
StackCharacter p1;
if(typeid(p1) != typeid(*(stack->fStore[stack->fSP])))
{
throw ExecutionError("instruction sto: type pointed to by SP is not of type character.");
}
break;
}
case address:
{
StackAddress p1;
if(typeid(p1) != typeid(*(stack->fStore[stack->fSP])))
{
throw ExecutionError("instruction sto: type pointed to by SP is not of type address.");
}
break;
}
}
if(stack->fStore[stack->fSP - 1]->heapAddress())
{
if(stack->fStore[stack->fSP - 1]->getValue() < stack->fNP)
{
throw ExecutionError("instruction sto: invalid heap address.");
}
else
{
delete stack->fHeap[-stack->fStore[stack->fSP - 1]->getValue() - 1];
stack->fHeap[-stack->fStore[stack->fSP - 1]->getValue() - 1] = stack->fStore[stack->fSP];
}
}
else
{
if(stack->fStore[stack->fSP - 1]->getValue() > stack->fSP - 2)
{
// -2 because the SP will be decreased by 2 as a result of this operation
throw ExecutionError("instruction sto: invalid stack address.");
}
else
{
delete stack->fStore[stack->fStore[stack->fSP - 1]->getValue()];
stack->fStore[stack->fStore[stack->fSP - 1]->getValue()] = stack->fStore[stack->fSP];
}
}
stack->fStore.pop_back();
delete stack->fStore[stack->fSP - 1];
stack->fStore[stack->fSP - 1] = 0;
stack->fStore.pop_back();
stack->fSP -= 2;
// adding cost of this instruction
stack->fTime.count("sto");
}
/**
* Prints the instuction into an outputstream
* @return reference to ostream filled with the printed instruction
* @param os reference to ostream (ostream&)
* @exception none
*/
ostream& Sto::print(ostream &os) const
{
os << "sto " << printStackElementType(fType);
return os;
}
| 22.020833
| 100
| 0.641753
|
Raffson
|