repo_name stringlengths 6 101 | path stringlengths 4 300 | text stringlengths 7 1.31M |
|---|---|---|
karlbohlmark/knockoff | bindings/enable.js | <reponame>karlbohlmark/knockoff
var Binding = require('./binding')
module.exports = enable;
enable.prototype = Object.create(Binding.prototype)
function enable (node, model, expr) {
var self = this
this.onchange(model, expr, function () {
var val = self.evaluate(model, expr);
if (val) {
node.removeAttribute('disabled')
} else {
node.setAttribute('disabled', 'disabled')
}
})
}
|
darknight1050/BeatSaber-Quest-Codegen | include/Zenject/MemoryPoolExpandBinder_1.hpp | // Autogenerated from CppHeaderCreator
// Created by Sc2ad
// =========================================================================
#pragma once
// Begin includes
#include "extern/beatsaber-hook/shared/utils/typedefs.h"
// Including type: Zenject.FactoryArgumentsToChoiceBinder`1
#include "Zenject/FactoryArgumentsToChoiceBinder_1.hpp"
#include "extern/beatsaber-hook/shared/utils/il2cpp-utils-methods.hpp"
#include "extern/beatsaber-hook/shared/utils/il2cpp-utils-properties.hpp"
#include "extern/beatsaber-hook/shared/utils/il2cpp-utils-fields.hpp"
#include "extern/beatsaber-hook/shared/utils/utils.h"
// Completed includes
// Begin forward declares
// Forward declaring namespace: Zenject
namespace Zenject {
// Forward declaring type: MemoryPoolBindInfo
class MemoryPoolBindInfo;
// Forward declaring type: DiContainer
class DiContainer;
// Forward declaring type: BindInfo
class BindInfo;
// Forward declaring type: FactoryBindInfo
class FactoryBindInfo;
}
// Completed forward declares
// Type namespace: Zenject
namespace Zenject {
// WARNING Size may be invalid!
// Autogenerated type: Zenject.MemoryPoolExpandBinder`1
// [NoReflectionBakingAttribute] Offset: DDCA40
template<typename TContract>
class MemoryPoolExpandBinder_1 : public Zenject::FactoryArgumentsToChoiceBinder_1<TContract> {
public:
// [CompilerGeneratedAttribute] Offset: 0xDDEA88
// private Zenject.MemoryPoolBindInfo <MemoryPoolBindInfo>k__BackingField
// Size: 0x8
// Offset: 0x0
Zenject::MemoryPoolBindInfo* MemoryPoolBindInfo;
// Field size check
static_assert(sizeof(Zenject::MemoryPoolBindInfo*) == 0x8);
// Creating value type constructor for type: MemoryPoolExpandBinder_1
MemoryPoolExpandBinder_1(Zenject::MemoryPoolBindInfo* MemoryPoolBindInfo_ = {}) noexcept : MemoryPoolBindInfo{MemoryPoolBindInfo_} {}
// public System.Void .ctor(Zenject.DiContainer bindContainer, Zenject.BindInfo bindInfo, Zenject.FactoryBindInfo factoryBindInfo, Zenject.MemoryPoolBindInfo poolBindInfo)
// Offset: 0xFFFFFFFF
template<::il2cpp_utils::CreationType creationType = ::il2cpp_utils::CreationType::Temporary>
static MemoryPoolExpandBinder_1<TContract>* New_ctor(Zenject::DiContainer* bindContainer, Zenject::BindInfo* bindInfo, Zenject::FactoryBindInfo* factoryBindInfo, Zenject::MemoryPoolBindInfo* poolBindInfo) {
static auto ___internal__logger = ::Logger::get().WithContext("Zenject::MemoryPoolExpandBinder_1::.ctor");
return THROW_UNLESS((::il2cpp_utils::New<MemoryPoolExpandBinder_1<TContract>*, creationType>(bindContainer, bindInfo, factoryBindInfo, poolBindInfo)));
}
// protected Zenject.MemoryPoolBindInfo get_MemoryPoolBindInfo()
// Offset: 0xFFFFFFFF
Zenject::MemoryPoolBindInfo* get_MemoryPoolBindInfo() {
static auto ___internal__logger = ::Logger::get().WithContext("Zenject::MemoryPoolExpandBinder_1::get_MemoryPoolBindInfo");
static auto* ___internal__method = THROW_UNLESS((::il2cpp_utils::FindMethod(this, "get_MemoryPoolBindInfo", std::vector<Il2CppClass*>{}, ::std::vector<const Il2CppType*>{})));
return ::il2cpp_utils::RunMethodThrow<Zenject::MemoryPoolBindInfo*, false>(this, ___internal__method);
}
// private System.Void set_MemoryPoolBindInfo(Zenject.MemoryPoolBindInfo value)
// Offset: 0xFFFFFFFF
void set_MemoryPoolBindInfo(Zenject::MemoryPoolBindInfo* value) {
static auto ___internal__logger = ::Logger::get().WithContext("Zenject::MemoryPoolExpandBinder_1::set_MemoryPoolBindInfo");
static auto* ___internal__method = THROW_UNLESS((::il2cpp_utils::FindMethod(this, "set_MemoryPoolBindInfo", std::vector<Il2CppClass*>{}, ::std::vector<const Il2CppType*>{::il2cpp_utils::ExtractType(value)})));
::il2cpp_utils::RunMethodThrow<void, false>(this, ___internal__method, value);
}
// public Zenject.FactoryArgumentsToChoiceBinder`1<TContract> ExpandByOneAtATime()
// Offset: 0xFFFFFFFF
Zenject::FactoryArgumentsToChoiceBinder_1<TContract>* ExpandByOneAtATime() {
static auto ___internal__logger = ::Logger::get().WithContext("Zenject::MemoryPoolExpandBinder_1::ExpandByOneAtATime");
static auto* ___internal__method = THROW_UNLESS((::il2cpp_utils::FindMethod(this, "ExpandByOneAtATime", std::vector<Il2CppClass*>{}, ::std::vector<const Il2CppType*>{})));
return ::il2cpp_utils::RunMethodThrow<Zenject::FactoryArgumentsToChoiceBinder_1<TContract>*, false>(this, ___internal__method);
}
// public Zenject.FactoryArgumentsToChoiceBinder`1<TContract> ExpandByDoubling()
// Offset: 0xFFFFFFFF
Zenject::FactoryArgumentsToChoiceBinder_1<TContract>* ExpandByDoubling() {
static auto ___internal__logger = ::Logger::get().WithContext("Zenject::MemoryPoolExpandBinder_1::ExpandByDoubling");
static auto* ___internal__method = THROW_UNLESS((::il2cpp_utils::FindMethod(this, "ExpandByDoubling", std::vector<Il2CppClass*>{}, ::std::vector<const Il2CppType*>{})));
return ::il2cpp_utils::RunMethodThrow<Zenject::FactoryArgumentsToChoiceBinder_1<TContract>*, false>(this, ___internal__method);
}
}; // Zenject.MemoryPoolExpandBinder`1
// Could not write size check! Type: Zenject.MemoryPoolExpandBinder`1 is generic, or has no fields that are valid for size checks!
}
DEFINE_IL2CPP_ARG_TYPE_GENERIC_CLASS(Zenject::MemoryPoolExpandBinder_1, "Zenject", "MemoryPoolExpandBinder`1");
|
TribalDog/NiTEControls | Wrappers/NiteControls.c/Broadcaster.cpp | <filename>Wrappers/NiteControls.c/Broadcaster.cpp
/*****************************************************************************
* *
* NiTE Controls 1.x Alpha *
* Copyright (C) 2013 PrimeSense Ltd. *
* *
* This file is part of NiTE Controls Lab. *
* *
* 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 "ObjectAllocation.h"
#include "XnHash.h"
#include "MessageGenerator.h"
#include "MessageListener.h"
#include "XnVBroadcaster.h"
XN_DECLARE_DEFAULT_HASH(XnVObjectID, XnVBroadcaster*, BroadcastersHash);
BroadcastersHash g_Broadcasters;
XnVObjectID xnvBroadcaster_Create(const XnChar* strName)
{
XnVBroadcaster* pBroadcaster = XN_NEW(XnVBroadcaster, strName);
XnVObjectID id = pBroadcaster;//AllocateID();
g_Broadcasters.Set(id, pBroadcaster);
xnvMessageGenerator_AddToHash(id, pBroadcaster);
xnvMessageListener_AddToHash(id, pBroadcaster);
return id;
}
XnStatus xnvBroadcaster_Destroy(XnVObjectID id)
{
xnvMessageGenerator_RemoveFromHash(id);
xnvMessageListener_RemoveFromHash(id);
XnVBroadcaster* pBroadcaster = NULL;
XnStatus rc = g_Broadcasters.Get(id, pBroadcaster);
if (rc != XN_STATUS_OK)
{
return XN_STATUS_NITE_UNEXPECTED_TYPE;
}
g_Broadcasters.Remove(id);
XN_DELETE(pBroadcaster);
return XN_STATUS_OK;
} |
VerkhovtsovPavel/BSUIR_Labs | Labs/MISOI/MISOI-2/src/by/bsuir/verpav/misoi/clustering/steps/ClusteringObjects.scala | <reponame>VerkhovtsovPavel/BSUIR_Labs<gh_stars>1-10
package by.bsuir.verpav.misoi.clustering.steps
import java.awt.Color
import java.awt.image.BufferedImage
import javax.swing.{JFrame, JOptionPane}
import scala.annotation.tailrec
import scala.collection.immutable.IndexedSeq
import scala.collection.mutable
import scala.collection.mutable.ArrayBuffer
import scala.util.Random
object ClusteringObjects extends ClusteringStep{
override def perform(baseImage: BufferedImage): BufferedImage = {
val connectedDomains = stepContext.get("connectedDomains").get.asInstanceOf[mutable.Map[Color,ArrayBuffer[(Int, Int)]]]
val objectsProperties = stepContext.get("objectsProperties").get.asInstanceOf[Array[List[Any]]]
normalizeProperties(objectsProperties)
val classCount = if (params.getOrElse("classCount", 2) < objectsProperties.length) params.getOrElse("classCount", 2) else objectsProperties.length-1
val classBound = mutable.Map[List[Any], Int]()
val classCores = new Array[List[Any]](classCount)
val shuffledProperties = Random.shuffle(objectsProperties.toList)
for(i <- 0 until classCount){
classCores(i) = shuffledProperties(i)
}
clusterazeObjects(objectsProperties, classCount, classBound, classCores)
val cm = baseImage.getColorModel
val isAlphaPremultiplied = cm.isAlphaPremultiplied
val raster = baseImage.copyData(null)
for (objectProperties <- objectsProperties) {
val objectClass = classBound(objectProperties) + 1
val regionColor = (255.0 / objectClass).toInt
val points: ArrayBuffer[(Int, Int)] = connectedDomains(objectProperties.head.asInstanceOf[Color])
for ((x, y) <- points) {
raster.setPixel(x, y, Array[Int](regionColor, 255 - regionColor, Math.abs(regionColor - 126)))
}
}
new BufferedImage(cm, raster, isAlphaPremultiplied, null)
}
@tailrec
private def clusterazeObjects(objectsProperties: Array[List[Any]], classCount: Int, classBound: mutable.Map[List[Any], Int], classCores: Array[List[Any]]) : Unit = {
classBound.clear()
var newCoreFound = false
for(objectProperties <- objectsProperties){
val classNumber = classifyObject(objectProperties, classCores)
classBound.put(objectProperties, classNumber)
}
for(i <- 0 until classCount){
val newCoreCandidates = classBound.filter(_._2 == i).keys
val newCore = findNewCore(newCoreCandidates)
if(newCore!=classCores(i)) {
newCoreFound = true
classCores(i)=newCore
}
}
if(newCoreFound){
clusterazeObjects(objectsProperties, classCount, classBound, classCores)
}
}
private def findNewCore(newCoreCandidates : Iterable[List[Any]]) : List[Any] ={
val index = newCoreCandidates.toArray.map(candidate => medianDistance(candidate, newCoreCandidates)).zipWithIndex.minBy(_._1)._2
newCoreCandidates.toList(index)
}
private def medianDistance(candidate : List[Any], newCoreCandidates : Iterable[List[Any]]) = {
newCoreCandidates.map(otherCandidate => distance(candidate.tail, otherCandidate.tail)).toArray.sorted.apply(newCoreCandidates.size/2)
}
private def classifyObject(objectProperties : List[Any] , classCores : Array[List[Any]]) : Int ={
classCores.map((core) => distance(objectProperties.tail, core.tail)).zipWithIndex.minBy(_._1)._2
}
private def distance(objectProperties : List[Any], core : List[Any]): Double ={
val objectProp = objectProperties.asInstanceOf[List[Double]]
val coreProp = core.asInstanceOf[List[Double]]
coreProp.indices.map(i => Math.abs(objectProp(i) - coreProp(i))).sum
}
private def normalizeProperties(objectsProperties : Array[List[Any]]){
for(item <- 1 until objectsProperties(0).size) {
val maxVal = objectsProperties.map(_(item).asInstanceOf[Double]).max / 100
for (i <- 0 until objectsProperties.length) {
objectsProperties(i) = objectsProperties(i).zipWithIndex.map((e) => if(e._2==item) e._1.asInstanceOf[Double] / maxVal else e._1)
}
}
}
override def requestParameters(frame: JFrame): Unit = {
val classCount = JOptionPane.showInputDialog(frame, "Enter class count: ")
params.put("classCount", classCount.toInt)
}
}
|
ScalablyTyped/SlinkyTyped | r/react-svg/src/main/scala/typingsSlinky/reactSvg/reactSVGMod.scala | package typingsSlinky.reactSvg
import typingsSlinky.react.mod.Component
import typingsSlinky.reactSvg.anon.AfterInjection
import typingsSlinky.reactSvg.anon.BeforeInjection
import typingsSlinky.reactSvg.anon.HasError
import typingsSlinky.reactSvg.typesMod.Props
import typingsSlinky.reactSvg.typesMod.State
import typingsSlinky.reactSvg.typesMod.WrapperType
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.`|`
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
object reactSVGMod {
@JSImport("react-svg/dist/ReactSVG", "ReactSVG")
@js.native
class ReactSVG protected ()
extends Component[Props, State, js.Any] {
def this(props: Props) = this()
/**
* @deprecated
* @see https://reactjs.org/docs/legacy-context.html
*/
def this(props: Props, context: js.Any) = this()
var _isMounted: Boolean = js.native
@JSName("componentDidMount")
def componentDidMount_MReactSVG(): Unit = js.native
@JSName("componentDidUpdate")
def componentDidUpdate_MReactSVG(prevProps: Props): Unit = js.native
@JSName("componentWillUnmount")
def componentWillUnmount_MReactSVG(): Unit = js.native
var container: js.UndefOr[WrapperType | Null] = js.native
var initialState: HasError = js.native
def refCallback(): Unit = js.native
def refCallback(container: WrapperType): Unit = js.native
def removeSVG(): Unit = js.native
def renderSVG(): Unit = js.native
@JSName("state")
var state_ReactSVG: HasError = js.native
var svgWrapper: js.UndefOr[WrapperType | Null] = js.native
}
/* static members */
object ReactSVG {
@JSImport("react-svg/dist/ReactSVG", "ReactSVG")
@js.native
val ^ : js.Any = js.native
@JSImport("react-svg/dist/ReactSVG", "ReactSVG.defaultProps")
@js.native
def defaultProps: AfterInjection = js.native
@scala.inline
def defaultProps_=(x: AfterInjection): Unit = ^.asInstanceOf[js.Dynamic].updateDynamic("defaultProps")(x.asInstanceOf[js.Any])
@JSImport("react-svg/dist/ReactSVG", "ReactSVG.propTypes")
@js.native
def propTypes: BeforeInjection = js.native
@scala.inline
def propTypes_=(x: BeforeInjection): Unit = ^.asInstanceOf[js.Dynamic].updateDynamic("propTypes")(x.asInstanceOf[js.Any])
}
}
|
KHWeb19/Homework | jieunLee/spring/bank/src/main/java/com/example/bank/controller/homework/bank9/Hw3Controller.java | package com.example.bank.controller.homework.bank9;
import com.example.bank.utility.bank9.Area;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Slf4j
@Controller
@RequestMapping("/bank9")
public class Hw3Controller {
@GetMapping("/homework3")
public String homework3 () {
log.info("homework3 check");
return "/homework/bank9/homework3";
}
Area area = new Area(9);
@ResponseBody
@GetMapping("view-equTriangleArea")
public Area viewEquTriangleArea () {
log.info("viewEquTriangleArea check");
//Area area = new Area(9);
area.equTriangleArea();
return area;
}
@ResponseBody
@GetMapping("view-squareArea")
public Area viewSquareArea () {
log.info("viewSquareArea check");
//Area area = new Area(9);
area.squareArea();
return area;
}
@ResponseBody
@GetMapping("view-regHexagonArea")
public Area viewRegHexagonArea () {
log.info("viewRegHexagonArea check");
//Area area = new Area(9);
area.regHexagonArea();
return area;
}
}
|
15218057878/summer-server-1 | summer-db/src/main/java/cn/cerc/db/cache/Buffer.java | package cn.cerc.db.cache;
public class Buffer extends CacheQuery {
public Buffer() {
super();
}
public Buffer(Class<?> clazz) {
super();
this.setKey(clazz.getName());
}
public Buffer(Object... keys) {
super();
StringBuffer str = new StringBuffer();
for (int i = 0; i < keys.length; i++) {
if (i > 0) {
str.append(".");
}
str.append(keys[i]);
}
setKey(str.toString());
}
}
|
78182648/blibli-go | app/admin/main/growup/dao/income/av_income_test.go | package income
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestIncomeGetArchiveStatis(t *testing.T) {
convey.Convey("GetArchiveStatis", t, func(ctx convey.C) {
var (
c = context.Background()
table = "av_income_daily_statis"
query = "id > 0"
from = int(0)
limit = int(10)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO av_income_daily_statis(avs,money_section,money_tips,income,category_id,cdate) VALUES(10, 1, '0-3',1, '2018-01-01')")
avs, err := d.GetArchiveStatis(c, table, query, from, limit)
ctx.Convey("Then err should be nil.avs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(avs, convey.ShouldNotBeNil)
})
})
})
}
func TestIncomeGetArchiveIncome(t *testing.T) {
convey.Convey("GetArchiveIncome av", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(0)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO av_income(av_id,mid,date) VALUES(1001, 1000, '2018-05-01')")
archs, err := d.GetArchiveIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.archs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(archs, convey.ShouldNotBeNil)
})
})
})
convey.Convey("GetArchiveIncome column", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(2)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO column_income(aid,mid,date) VALUES(1002, 1000, '2018-05-01')")
archs, err := d.GetArchiveIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.archs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(archs, convey.ShouldNotBeNil)
})
})
})
convey.Convey("GetArchiveIncome bgm", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(3)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO bgm_income(sid,mid,date) VALUES(1003, 1000, '2018-05-01')")
archs, err := d.GetArchiveIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.archs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(archs, convey.ShouldNotBeNil)
})
})
})
convey.Convey("GetArchiveIncome error type", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(4)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
_, err := d.GetArchiveIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.archs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
})
}
func TestIncomeGetAvIncome(t *testing.T) {
convey.Convey("GetAvIncome", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(0)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO av_income(av_id,mid,date) VALUES(1001, 1000, '2018-05-01')")
avs, err := d.GetAvIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.avs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(avs, convey.ShouldNotBeNil)
})
})
})
}
func TestIncomeGetColumnIncome(t *testing.T) {
convey.Convey("GetColumnIncome", t, func(ctx convey.C) {
var (
c = context.Background()
id = int64(0)
query = "id > 0"
from = "2018-01-01"
to = "2019-01-01"
limit = int(100)
typ = int(2)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
Exec(c, "INSERT INTO column_income(aid,mid,date) VALUES(1002, 1000, '2018-05-01')")
columns, err := d.GetColumnIncome(c, id, query, from, to, limit, typ)
ctx.Convey("Then err should be nil.columns should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(columns, convey.ShouldNotBeNil)
})
})
})
}
|
Kunstenpunt/havelovewilltravel | hlwtadmin/migrations/0025_auto_20200414_1705.py | <gh_stars>1-10
# Generated by Django 3.0 on 2020-04-14 15:05
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('hlwtadmin', '0024_concertannouncement_seen_count'),
]
operations = [
migrations.AddField(
model_name='gigfinderurl',
name='last_confirmed_by_musicbrainz',
field=models.DateTimeField(default=datetime.datetime(1970, 1, 1, 0, 0)),
),
migrations.AddField(
model_name='gigfinderurl',
name='last_synchronized',
field=models.DateTimeField(default=datetime.datetime(1970, 1, 1, 0, 0)),
),
]
|
genisysram/odil | src/odil/pdu/SOPClassCommonExtendedNegotiation.cpp | <gh_stars>10-100
/*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for details.
************************************************************************/
#include "odil/pdu/SOPClassCommonExtendedNegotiation.h"
#include <algorithm>
#include <istream>
#include <string>
#include <vector>
#include "odil/Exception.h"
#include "odil/pdu/Object.h"
namespace odil
{
namespace pdu
{
SOPClassCommonExtendedNegotiation
::SOPClassCommonExtendedNegotiation(
std::string const & sop_class_uid, std::string const & service_class_uid,
std::vector<std::string> const & related_general_sop_class_uids)
{
this->_item.add("Item-type", this->type);
this->_item.add("Sub-item-version", uint8_t(0));
this->_item.add("Item-length", uint16_t(0));
this->_item.add("SOP-class-uid-length", uint16_t(0));
this->_item.add("SOP-class-uid", std::string());
this->_item.add("Service-class-uid-length", uint16_t(0));
this->_item.add("Service-class-uid", std::string());
this->_item.add(
"Related-general-sop-class-identification-length", uint16_t(0));
this->_item.add(
"Related-general-sop-class-identification", std::vector<Item>());
this->set_sop_class_uid(sop_class_uid);
this->set_service_class_uid(service_class_uid);
this->set_related_general_sop_class_uids(related_general_sop_class_uids);
}
SOPClassCommonExtendedNegotiation
::SOPClassCommonExtendedNegotiation(std::istream & stream)
{
this->_item.read(stream, "Item-type", Item::Field::Type::unsigned_int_8);
if(this->_item.as_unsigned_int_8("Item-type") != this->type)
{
throw Exception("Invalid item type");
}
this->_item.read(
stream, "Sub-item-version", Item::Field::Type::unsigned_int_8);
this->_item.read(stream, "Item-length", Item::Field::Type::unsigned_int_16);
this->_item.read(
stream, "SOP-class-uid-length", Item::Field::Type::unsigned_int_16);
this->_item.read(
stream, "SOP-class-uid", Item::Field::Type::string,
this->_item.as_unsigned_int_16("SOP-class-uid-length"));
this->_item.read(
stream, "Service-class-uid-length", Item::Field::Type::unsigned_int_16);
this->_item.read(
stream, "Service-class-uid", Item::Field::Type::string,
this->_item.as_unsigned_int_16("Service-class-uid-length"));
this->_item.read(
stream, "Related-general-sop-class-identification-length",
Item::Field::Type::unsigned_int_16);
auto const related_classes_length = this->_item.as_unsigned_int_16(
"Related-general-sop-class-identification-length");
auto const begin = stream.tellg();
std::vector<Item> sub_items;
while(stream.tellg()-begin < related_classes_length)
{
Item item;
item.read(
stream, "Related-general-sop-class-uid-length",
Item::Field::Type::unsigned_int_16);
item.read(
stream, "Related-general-sop-class-uid", Item::Field::Type::string,
item.as_unsigned_int_16("Related-general-sop-class-uid-length"));
sub_items.push_back(item);
}
this->_item.add("Related-general-sop-class-identification", sub_items);
}
bool
SOPClassCommonExtendedNegotiation
::operator==(SOPClassCommonExtendedNegotiation const & other) const
{
return (
this->get_sop_class_uid() == other.get_sop_class_uid()
&& this->get_service_class_uid() == other.get_service_class_uid()
&& this->get_related_general_sop_class_uids() ==
other.get_related_general_sop_class_uids()
);
}
std::string const &
SOPClassCommonExtendedNegotiation
::get_sop_class_uid() const
{
return this->_item.as_string("SOP-class-uid");
}
void
SOPClassCommonExtendedNegotiation
::set_sop_class_uid(std::string const & value)
{
this->_item.as_unsigned_int_16("SOP-class-uid-length") = value.size();
this->_item.as_string("SOP-class-uid") = value;
this->_item.as_unsigned_int_16("Item-length") = this->_compute_length();
}
std::string const &
SOPClassCommonExtendedNegotiation
::get_service_class_uid() const
{
return this->_item.as_string("Service-class-uid");
}
void
SOPClassCommonExtendedNegotiation
::set_service_class_uid(std::string const & value)
{
this->_item.as_unsigned_int_16("Service-class-uid-length") = value.size();
this->_item.as_string("Service-class-uid") = value;
this->_item.as_unsigned_int_16("Item-length") = this->_compute_length();
}
std::vector<std::string>
SOPClassCommonExtendedNegotiation
::get_related_general_sop_class_uids() const
{
auto const & sub_items = this->_item.as_items(
"Related-general-sop-class-identification");
std::vector<std::string> result(sub_items.size());
std::transform(
sub_items.begin(), sub_items.end(),
result.begin(),
[](Item const & item)
{
return item.as_string("Related-general-sop-class-uid");
});
return result;
}
void
SOPClassCommonExtendedNegotiation
::set_related_general_sop_class_uids(std::vector<std::string> const & value)
{
auto & sub_items = this->_item.as_items(
"Related-general-sop-class-identification");
sub_items.resize(value.size());
uint16_t size=0;
std::transform(
value.begin(), value.end(),
sub_items.begin(),
[&size](std::string const & sop_class_uid)
{
Item item;
item.add(
"Related-general-sop-class-uid-length",
uint16_t(sop_class_uid.size()));
item.add("Related-general-sop-class-uid", sop_class_uid);
size += (2+sop_class_uid.size());
return item;
});
this->_item.as_unsigned_int_16(
"Related-general-sop-class-identification-length") = size;
this->_item.as_items(
"Related-general-sop-class-identification") = sub_items;
this->_item.as_unsigned_int_16("Item-length") = this->_compute_length();
}
}
}
|
renatotn7/griphondb | distributed-v2/src/main/java/com/orientechnologies/orient/distributed/impl/coordinator/ODistributedCoordinator.java | package com.orientechnologies.orient.distributed.impl.coordinator;
import com.orientechnologies.orient.distributed.impl.coordinator.transaction.OSessionOperationId;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
import java.util.Timer;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
public class ODistributedCoordinator implements AutoCloseable {
private final ExecutorService requestExecutor;
private final OOperationLog operationLog;
private final ConcurrentMap<OLogId, ORequestContext> contexts = new ConcurrentHashMap<>();
private final Map<String, ODistributedMember> members = new ConcurrentHashMap<>();
private final Timer timer;
private final ODistributedLockManager lockManager;
private final OClusterPositionAllocator allocator;
public ODistributedCoordinator(ExecutorService requestExecutor, OOperationLog operationLog, ODistributedLockManager lockManager,
OClusterPositionAllocator allocator) {
this.requestExecutor = requestExecutor;
this.operationLog = operationLog;
this.timer = new Timer(true);
this.lockManager = lockManager;
this.allocator = allocator;
}
public void submit(ODistributedMember member, OSessionOperationId operationId, OSubmitRequest request) {
requestExecutor.execute(() -> {
request.begin(member, operationId, this);
});
}
public void reply(ODistributedMember member, OSessionOperationId operationId, OSubmitResponse response) {
member.reply(operationId, response);
}
public void receive(ODistributedMember member, OLogId relativeRequest, ONodeResponse response) {
requestExecutor.execute(() -> {
contexts.get(relativeRequest).receive(member, response);
});
}
public OLogId log(ONodeRequest request) {
return operationLog.log(request);
}
public ORequestContext sendOperation(OSubmitRequest submitRequest, ONodeRequest nodeRequest, OResponseHandler handler) {
OLogId id = log(nodeRequest);
Collection<ODistributedMember> values = new ArrayList<>(members.values());
ORequestContext context = new ORequestContext(this, submitRequest, nodeRequest, values, handler, id);
contexts.put(id, context);
for (ODistributedMember member : values) {
member.sendRequest(id, nodeRequest);
}
//Get the timeout from the configuration
timer.schedule(context.getTimerTask(), 1000, 1000);
return context;
}
public void join(ODistributedMember member) {
members.put(member.getName(), member);
}
@Override
public void close() {
timer.cancel();
requestExecutor.shutdown();
try {
requestExecutor.awaitTermination(1, TimeUnit.HOURS);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
public void executeOperation(Runnable runnable) {
requestExecutor.execute(runnable);
}
public void finish(OLogId requestId) {
contexts.remove(requestId);
}
protected ConcurrentMap<OLogId, ORequestContext> getContexts() {
return contexts;
}
public ODistributedLockManager getLockManager() {
return lockManager;
}
public OClusterPositionAllocator getAllocator() {
return allocator;
}
public ODistributedMember getMember(String senderNode) {
return members.get(senderNode);
}
public void leave(ODistributedMember member) {
members.remove(member.getName());
}
}
|
rosesystems-smahn/rosesearch_clone | core/src/main/java/org/fastcatsearch/ir/query2/SearchQuery.java | package org.fastcatsearch.ir.query2;
/**
* term들을 and/or로 묶어서 clause를 만들어준다.
* */
public class SearchQuery {
private SearchClause searchClause;
private SearchQueryTerm term;
class OrClause {
public OrClause(SearchClause c1, SearchClause c2){
}
}
class AndClause {
public AndClause(SearchClause c1, SearchClause c2){
}
}
class NotClause {
}
class LorClause {
}
class RorClause {
}
}
|
expiritus2/dream-project-react | src/components/header/HeaderContainer.js | import React from "react";
import { useRedux } from "hooks";
import Header from "./Header";
const HeaderContainer = () => {
const [app] = useRedux("app");
return <Header isLoggedIn={app.isLoggedIn} />;
};
export default HeaderContainer;
|
Rubtsowa/modin | modin/core/execution/python/implementations/pandas_on_python/dataframe/dataframe.py | <filename>modin/core/execution/python/implementations/pandas_on_python/dataframe/dataframe.py
# Licensed to Modin Development Team under one or more contributor license agreements.
# See the NOTICE file distributed with this work for additional information regarding
# copyright ownership. The Modin Development Team 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.
"""
Module contains class ``PandasOnPythonDataframe``.
``PandasOnPythonDataframe`` is dataframe class with pandas storage format and Python engine.
"""
from modin.core.dataframe.pandas.dataframe.dataframe import PandasDataframe
from ..partitioning.partition_manager import PandasOnPythonDataframePartitionManager
class PandasOnPythonDataframe(PandasDataframe):
"""
Class for dataframes with pandas storage format and Python engine.
``PandasOnPythonDataframe`` doesn't implement any specific interfaces,
all functionality is inherited from the ``PandasDataframe`` class.
Parameters
----------
partitions : np.ndarray
A 2D NumPy array of partitions.
index : sequence
The index for the dataframe. Converted to a ``pandas.Index``.
columns : sequence
The columns object for the dataframe. Converted to a ``pandas.Index``.
row_lengths : list, optional
The length of each partition in the rows. The "height" of
each of the block partitions. Is computed if not provided.
column_widths : list, optional
The width of each partition in the columns. The "width" of
each of the block partitions. Is computed if not provided.
dtypes : pandas.Series, optional
The data types for the dataframe columns.
"""
_partition_mgr_cls = PandasOnPythonDataframePartitionManager
|
DazEB2/SimplePyScripts | fb2__parsing/extract_pictures_from_fb2/time_test.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = 'ipetrash'
from fb2_pictures__using_lxml import do as do_lxml
from fb2_pictures__using_bs4 import do as do_bs4
from fb2_pictures__using_xml_expat import do as do_xml_expat
from fb2_pictures__using_xml_etree import do as do_xml_etree
from fb2_pictures__using_xml_sax import do as do_xml_sax
from fb2_pictures__using_re import do as do_using_re
file_name = '../input/Непутевый ученик в школе магии 1. Зачисление в школу (Часть 1).fb2'
count = 10
from timeit import timeit
runs = [
('LXML', 'do_lxml'),
('XML EXPAT', 'do_xml_expat'),
('XML.ETREE', 'do_xml_etree'),
('XML SAX', 'do_xml_sax'),
('REGEXP', 'do_using_re'),
('BS4', 'do_bs4'),
]
runs_format = '{:%s} | {:.3f} secs' % (max(len(x[0]) for x in runs),)
for name, stmt in runs:
timing = timeit(stmt + '(file_name, debug=False)', globals=globals(), number=count)
print(runs_format.format(name, timing))
|
danjpgriffin/totallylazy | test/com/googlecode/totallylazy/LenseTest.java | package com.googlecode.totallylazy;
import com.googlecode.totallylazy.functions.Curried2;
import com.googlecode.totallylazy.functions.Function1;
import org.junit.Test;
import static com.googlecode.totallylazy.Lense.lense;
import static com.googlecode.totallylazy.numbers.Numbers.increment;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
public class LenseTest {
final Person originalBarry = new Person("Barry", 40, new Address("123 Elm St", new Postcode("E1", "1AB")));
@Test
public void getValueViewedThroughLens() throws Exception {
Lense<Person, Number> personAge = lense(Person.functions.age, Person.functions.setAge);
assertThat(personAge.get(originalBarry).intValue(), is(40));
}
@Test
public void setValueViewedThroughLens() throws Exception {
Lense<Person, Number> personAge = lense(Person.functions.age, Person.functions.setAge);
Person olderBarry = personAge.set(45, originalBarry);
assertThat(olderBarry.age.intValue(), is(45));
}
@Test
public void modifyValueViewThroughLens() throws Exception {
Lense<Person, Number> personAge = lense(Person.functions.age, Person.functions.setAge);
Person oneYearOlderBarry = personAge.modify(originalBarry, increment());
assertThat(oneYearOlderBarry.age.intValue(), is(41));
}
@Test
public void lensCanBeComposed() throws Exception {
Lense<Person, Postcode> personPostcode = Person.lenses.address.then(Address.lenses.postcode);
Person movedBarry = personPostcode.set(new Postcode("SE1", "1AA"), originalBarry);
assertThat(movedBarry.address.postcode.asString(), is("SE1 1AA"));
}
private static class Person {
private final String name;
private final Number age;
private final Address address;
Person(String name, Number age, Address address) {
this.name = name;
this.age = age;
this.address = address;
}
public String toString() {
return name + ": age=" + age + ", address=" + address;
}
public static class lenses {
public static final Lense<Person,Address> address = lense(functions.address, functions.setAddress);
}
public static class functions {
public static final Function1<Person, Number> age = person -> person.age;
public static final Curried2<Number, Person, Person> setAge = (newAge, person) -> new Person(person.name, newAge, person.address);
public static final Function1<Person, Address> address = person -> person.address;
public static final Curried2<Address, Person, Person> setAddress = (newAddress, person) -> new Person(person.name, person.age, newAddress);
}
}
static class Address {
private final String street;
private final Postcode postcode;
Address(String street, Postcode postcode) {
this.street = street;
this.postcode = postcode;
}
public String toString() {
return street + " " + postcode;
}
public static class lenses {
public static final Lense<Address,Postcode> postcode = lense(functions.postcode, functions.setPostcode);
}
public static class functions {
public static final Function1<Address, Postcode> postcode = address -> address.postcode;
public static final Curried2<Postcode, Address, Address> setPostcode = (newPostcode, address) -> new Address(address.street, newPostcode);
}
}
class Postcode {
private final String outward;
private final String inward;
Postcode(String outward, String inward) {
this.outward = outward;
this.inward = inward;
}
public String asString() {
return outward + " " + inward;
}
public String toString() {
return asString();
}
}
} |
developedbyme/wprr | elements/signin/signinflow/Configuration.js | import Wprr from "wprr/Wprr";
import ProjectRelatedItem from "wprr/utils/project/ProjectRelatedItem";
export default class Configuration extends ProjectRelatedItem {
constructor() {
super();
this._prefix = null;
this._doneCommands = null;
this._navigationItem = null;
}
setProject(aProject) {
super.setProject(aProject);
return this;
}
setup() {
if(!this._navigationItem) {
this._navigationItem = this.project.items.createInternalItem();
}
let sectionLinks = this._navigationItem.getNamedLinks("sections");
{
let currentSectionItem = this.project.items.createInternalItem();
sectionLinks.addSingleLink("element", "wprr/signInFlow/alreadySignedIn");
sectionLinks.addItem("alreadySignedIn", currentSectionItem);
let currentDirections = sectionLinks.getNamedLinks("directions");
//METODO
}
this._navigationItem.addSingleLink("startSection", this._navigationItem.getType("sections").getLinkByName("alreadySignedIn"));
//METODO
return this;
}
setPrefix(aPrefix) {
this._prefix = aPrefix;
return this;
}
setDoneCommands(aDoneCommands) {
this._doneCommands = aDoneCommands;
return this;
}
getRoutes() {
let prefix = "";
if(this._prefix && this._prefix.length > 0) {
prefix = this._prefix + "/";
}
let routes = [
{"test": "^" + prefix + "alreadySignedIn$", "type": "alreadySignedIn", "data": {"currentStep": 3, "numberOfSteps": 3}},
{"test": "^" + prefix + "email$", "type": "email", "data": {"currentStep": 1, "numberOfSteps": 3}},
{"test": "^" + prefix + "signIn$", "type": "signIn", "data": {"currentStep": 3, "numberOfSteps": 3}},
{"test": "^" + prefix + "confirmPasswordVerification$", "type": "confirmPasswordVerification", "data": {"currentStep": 2, "numberOfSteps": 3}},
{"test": "^" + prefix + "setPassword$", "type": "setPassword", "data": {"currentStep": 3, "numberOfSteps": 3}},
{"test": "^" + prefix + "confirmEmail$", "type": "confirmEmail", "data": {"currentStep": 2, "numberOfSteps": 3}},
{"test": "^" + prefix + "phoneNumber$", "type": "phoneNumber", "data": {"currentStep": 1, "numberOfSteps": 3}},
{"test": "^" + prefix + "confirmPhoneNumber$", "type": "confirmPhoneNumber", "data": {"currentStep": 2, "numberOfSteps": 3}},
{"test": "^" + prefix + "createAccount$", "type": "createAccount", "data": {"currentStep": 3, "numberOfSteps": 3}},
{"test": "^" + prefix + "done$", "type": "done", "data": {"commands": this._doneCommands}}
];
return routes;
}
getDirections() {
let directions = {
"alreadySignedIn": {
"next": "../done",
"changeEmail": "../email"
},
"email": {
"existing": "../signIn",
"new": "../confirmEmail",
},
"signIn": {
"next": "../done",
"changeEmail": "../email",
"resetPassword": "../confirmPasswordVerification"
},
"confirmPasswordVerification": {
"next": "../setPassword",
"changeEmail": "../email",
},
"setPassword": {
"next": "../done",
"changeEmail": "../email",
},
"confirmEmail": {
"next": "../createAccount",
"changeEmail": "../email"
},
"phoneNumber": {
"next": "../confirmPhoneNumber",
"changeEmail": "../email"
},
"confirmPhoneNumber": {
"next": "../createAccount",
"changeEmail": "../email",
"changePhoneNumber": "../phoneNumber"
},
"createAccount": {
"next": "../done",
"changeEmail": "../email"
}
};
if(this._prefix && this._prefix.length > 0) {
for(let objectName in directions) {
let currentObject = directions[objectName];
delete directions[objectName];
directions[this._prefix + "/" + objectName] = currentObject;
}
}
return directions;
}
getStartScreen() {
let startScreen = "email";
if(this.project.getUserData()) {
startScreen = "alreadySignedIn";
}
let prefix = "";
if(this._prefix && this._prefix.length > 0) {
prefix = this._prefix + "/";
}
return prefix + startScreen;
}
static create(aPrefix = null) {
let newConfiguration = new Configuration();
newConfiguration.setPrefix(aPrefix);
return newConfiguration;
}
} |
marshallbrain/pulsar-experiment-1 | src/main/java/com/pulsar/ui/engine/vectors/LinkVector.java | package ui.engine.vectors;
import java.awt.Shape;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.namespace.QName;
import ui.engine.Point;
import ui.engine.VectorGraphics;
@XmlRootElement(name = "link_vector")
public class LinkVector implements Vector {
@XmlAttribute(name = "x")
private int x;
@XmlAttribute(name = "y")
private int y;
@XmlAttribute(name = "link")
private String location;
@XmlAttribute(name = "id")
private String id;
@XmlAttribute(name = "give")
private String par;
private VectorGroup vector;
private Map<QName, Object> parameters;
public void setLink(Map<String, VectorGroup> vectorList) {
location = location.replaceAll("\\s+","");
vector = vectorList.get(location);
// for(String s: par.split(";")) {
//
// String v = s;
//
// if(s.contains("@")) {
//
// v = s.substring(1);
// Object o = parameters.get(new QName(v.split("\\.")[0]));
//
// if(v.contains(".")) {
// for(String i: v.substring(v.indexOf(".")+1).split("\\.")) {
// try {
// Method m = o.getClass().getMethod(i);
// o = m.invoke(o);
// } catch (NoSuchMethodException | SecurityException e1) {
// e1.printStackTrace();
// } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e1) {
// e1.printStackTrace();
// }
// }
// }
//
// e.add(o);
//
// } else {
// e.add(v);
// }
//
// }
}
public Point getOffset() {
return new Point(x, y);
}
@Override
public String getType() {
return "link vector";
}
@Override
public String getId() {
return id;
}
@Override
public String getAction(String id, String action) {
switch(action) {
default:
return null;
}
}
@Override
public void draw(VectorGraphics vg) {
par = par.replaceAll("\\s+","");
List<Object> e = new ArrayList<Object>();
for(String s: par.split(";")) {
String v = s;
if(s.contains("@")) {
v = s.substring(1);
Object o = parameters.get(new QName(v.split("\\.")[0]));
if(v.contains(".")) {
for(String i: v.substring(v.indexOf(".")+1).split("\\.")) {
try {
Method m = o.getClass().getMethod(i);
o = m.invoke(o);
} catch (NoSuchMethodException | SecurityException e1) {
e1.printStackTrace();
} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e1) {
e1.printStackTrace();
}
}
}
e.add(o);
} else {
e.add(v);
}
}
VectorGroup v = vector.clone();
v.assingParameters(e.toArray());
v.setPosition(new Point(x, y));
v.draw(vg);
}
@Override
public void setStyle() {
}
@Override
public Shape getShape() {
return null;
}
@Override
public Map<String, String> getStyle() {
return null;
}
@Override
public void move(Point offset) {
}
@Override
public void transform(Point offset) {
}
@Override
public void normalize() {
}
@Override
public void normalize(long screenSize, int screenWidth, int minSize) {
}
@Override
public void assingParamerters(Map<QName, Object> p) {
parameters = p;
}
@Override
public Vector clone() {
try {
LinkVector clone = (LinkVector) super.clone();
clone.parameters = new HashMap<QName, Object>(parameters);
return clone;
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
return null;
}
@Override
public void inherit(Vector v) {
// TODO Auto-generated method stub
}
}
|
qinfengsa/golang-leetcode | data-structure/leetcode/random/weight_select.go | <reponame>qinfengsa/golang-leetcode
package random
import "math/rand"
// WeightSelect 528. 按权重随机选择
// 给你一个 下标从 0 开始 的正整数数组 w ,其中 w[i] 代表第 i 个下标的权重。
// 请你实现一个函数 pickIndex ,它可以 随机地 从范围 [0, w.length - 1] 内(含 0 和 w.length - 1)选出并返回一个下标。选取下标 i 的 概率 为 w[i] / sum(w) 。
// 例如,对于 w = [1, 3],挑选下标 0 的概率为 1 / (1 + 3) = 0.25 (即,25%),而选取下标 1 的概率为 3 / (1 + 3) = 0.75(即,75%)。
//
// 示例 1:
// 输入:
// ["Solution","pickIndex"]
// [[[1]],[]]
// 输出:
// [null,0]
// 解释:
// Solution solution = new Solution([1]);
// solution.pickIndex(); // 返回 0,因为数组中只有一个元素,所以唯一的选择是返回下标 0。
//
// 示例 2:
// 输入:
// ["Solution","pickIndex","pickIndex","pickIndex","pickIndex","pickIndex"]
// [[[1,3]],[],[],[],[],[]]
// 输出:
// [null,1,1,1,1,0]
// 解释:
// Solution solution = new Solution([1, 3]);
// solution.pickIndex(); // 返回 1,返回下标 1,返回该下标概率为 3/4 。
// solution.pickIndex(); // 返回 1
// solution.pickIndex(); // 返回 1
// solution.pickIndex(); // 返回 1
// solution.pickIndex(); // 返回 0,返回下标 0,返回该下标概率为 1/4 。
//
// 由于这是一个随机问题,允许多个答案,因此下列输出都可以被认为是正确的:
// [null,1,1,1,1,0]
// [null,1,1,1,1,1]
// [null,1,1,1,0,0]
// [null,1,1,1,0,1]
// [null,1,0,1,0,0]
// ......
// 诸若此类。
//
// 提示:
// 1 <= w.length <= 104
// 1 <= w[i] <= 105
// pickIndex 将被调用不超过 104 次
type WeightSelect struct {
nums []int
sum int
}
func ConstructorWeight(w []int) WeightSelect {
sum, n := 0, len(w)
nums := make([]int, n)
for i := 0; i < n; i++ {
sum += w[i]
nums[i] = sum
}
return WeightSelect{sum: sum, nums: nums}
}
func (this *WeightSelect) PickIndex() int {
target := rand.Intn(this.sum)
return getIndex(this.nums, target)
}
|
factly/mande | server/test/dataset/format/testvars.go | package datasetformat
import (
"errors"
"regexp"
"time"
"github.com/DATA-DOG/go-sqlmock"
)
var headers = map[string]string{
"X-User": "1",
"X-Organisation": "1",
}
var DatasetFormat map[string]interface{} = map[string]interface{}{
"format_id": 1,
"url": "test.url.com",
}
var datasetformatlist []map[string]interface{} = []map[string]interface{}{
{
"format_id": 1,
"url": "test1.url.com",
"dataset_id": 1,
},
{
"format_id": 1,
"url": "test2.url.com",
"dataset_id": 1,
},
}
var undecodableDatasetFormat map[string]interface{} = map[string]interface{}{
"format_id": "1",
"url": 15,
}
var invalidDatasetFormat map[string]interface{} = map[string]interface{}{
"formatid": 1,
"ur": "test.url.com",
}
var DatasetFormatCols []string = []string{"id", "created_at", "updated_at", "deleted_at", "created_by_id", "updated_by_id", "format_id", "dataset_id", "url"}
var selectQuery string = regexp.QuoteMeta(`SELECT * FROM "dp_dataset_format"`)
var countQuery string = regexp.QuoteMeta(`SELECT count(1) FROM "dp_dataset_format"`)
var errDatasetFormatFK error = errors.New(`pq: insert or update on table "dp_dataset_format" violates foreign key constraint "dp_dataset_format_format_id_dp_format_id_foreign"`)
const basePath string = "/datasets/{dataset_id}/format"
const path string = "/datasets/{dataset_id}/format/{format_id}"
func DatasetFormatSelectMock(mock sqlmock.Sqlmock) {
mock.ExpectQuery(selectQuery).
WithArgs(1).
WillReturnRows(sqlmock.NewRows(DatasetFormatCols).
AddRow(1, time.Now(), time.Now(), nil, 1, 1, DatasetFormat["format_id"], 1, DatasetFormat["url"]))
}
|
bs2609/fs2 | src/common/httpserver/Headers.java | <reponame>bs2609/fs2
package common.httpserver;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.HashMap;
import java.util.Map.Entry;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import common.Util;
/**
* Represents HTTP headers.
*
* toString provides a serialisation of these headers in the form you would expect to see during an HTTP communication.
*
* @author gp
*/
@SuppressWarnings("serial")
public class Headers extends HashMap<String, Deque<String>> {
//========== Helpers specified by com.sun.net.httpserver.Headers
/**
* Returns the first header that matches the key specified.
* @param key
* @return
*/
public String getFirst(String key) {
Deque<String> potentials = this.get(key);
if (potentials==null) {
return null;
}else {
return this.get(key).getFirst();
}
}
/**
* Add the specified header, even if the key already exists.
* @param key
* @param value
*/
public void add(String key, String value) {
Deque<String> l = this.get(key);
if (l==null) {
l = new ArrayDeque<String>();
l.add(value);
this.put(key, l);
} else {
l.add(value);
}
}
/**
* Sets the specified header to exactly this value, clearing all other headers with this key.
* @param key
* @param value
*/
public void set(String key, String value) {
Deque<String> l = new ArrayDeque<String>();
l.add(value);
this.put(key, l);
}
/**
* An HTTP formatted serialisation of these headers
*/
@Override
public String toString() {
StringBuilder out = new StringBuilder();
for (Entry<String, Deque<String>> header : this.entrySet()) {
for (String value : header.getValue()) {
out.append(header.getKey());
out.append(": ");
out.append(value);
out.append("\r\n");
}
}
return out.toString();
}
/**
* Create a new empty collection of headers
*/
public Headers() {}
public class InvalidHttpHeaderFormatException extends Exception {
public InvalidHttpHeaderFormatException(String description) {
super(description);
}
}
public final static Pattern HEADER_PATTERN = Pattern.compile("(.*):( (.*))?");
/**
* Builds a new collection of headers from an HTTP formatted stream.
* @throws IOException
*/
public Headers(InputStream in) throws InvalidHttpHeaderFormatException, IOException {
String lastKey = null;
while (true) {
byte[] read = Util.readLine(in);
String rStr = new String(read).trim();
if (rStr.equals("")) return; //end of headers.
if (read[0] == ' ' || read[1] == '\t') {
if (lastKey == null) throw new InvalidHttpHeaderFormatException("An LWS was specified without a preceding header.");
//append the LWS to the last header value created with this key.
String lastValue = this.get(lastKey).removeLast();
lastValue += rStr;
this.get(lastKey).addLast(lastValue);
} else {
//attempt to match the header (which may be incomplete) with the regex:
Matcher headm = HEADER_PATTERN.matcher(rStr);
if (!headm.matches()) throw new InvalidHttpHeaderFormatException("Header line does not conform to header-line format: "+rStr);
this.add(lastKey = headm.group(1), headm.group(3));
}
}
}
}
|
RedTachyon/PettingZoo | pettingzoo/butterfly/knights_archers_zombies_v8.py | from .knights_archers_zombies.knights_archers_zombies import (env, manual_control, parallel_env,
raw_env)
|
zdq1179169386/JavaStudy | basc_code/day03/src/cn/zdq/day03/demo02/MyInterfaceImpA.java | package cn.zdq.day03.demo02;
//实现接口
//如果一个类没有实现接口中的所有抽象方法,那么这个类必须是抽象类,否则报错
public class MyInterfaceImpA implements MyInterface {
@Override
public void method() {
System.out.println("实现接口的抽象方法");
}
@Override
public void methodDefault() {
System.out.println("子类重写了接口的默认方法");
}
}
|
Lqingyu/syzkaller | fileutil/fileutil.go | <filename>fileutil/fileutil.go
// Copyright 2015 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package fileutil
import (
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strconv"
"sync"
"syscall"
"unsafe"
)
var copyMu sync.Mutex
// CopyFile copies oldFile to newFile, potentially serializing with other
// file copies (for large files).
func CopyFile(oldFile, newFile string, serial bool) error {
if serial {
copyMu.Lock()
defer copyMu.Unlock()
}
oldf, err := os.Open(oldFile)
if err != nil {
return err
}
defer oldf.Close()
newf, err := os.Create(newFile)
if err != nil {
return err
}
defer newf.Close()
_, err = io.Copy(newf, oldf)
if err != nil {
return err
}
return nil
}
// WriteTempFile writes data to a temp file and returns its name.
func WriteTempFile(data []byte) (string, error) {
f, err := ioutil.TempFile("", "syzkaller")
if err != nil {
return "", fmt.Errorf("failed to create a temp file: %v", err)
}
if _, err := f.Write(data); err != nil {
f.Close()
os.Remove(f.Name())
return "", fmt.Errorf("failed to write a temp file: %v", err)
}
f.Close()
return f.Name(), nil
}
// ProcessTempDir creates a new temp dir in where and returns its path and an unique index.
// It also cleans up old, unused temp dirs after dead processes.
func ProcessTempDir(where string) (string, error) {
lk := filepath.Join(where, "instance-lock")
lkf, err := syscall.Open(lk, syscall.O_RDWR|syscall.O_CREAT, 0600)
if err != nil {
return "", err
}
defer syscall.Close(lkf)
if err := syscall.Flock(lkf, syscall.LOCK_EX); err != nil {
return "", err
}
defer syscall.Flock(lkf, syscall.LOCK_UN)
for i := 0; i < 1e3; i++ {
path := filepath.Join(where, fmt.Sprintf("instance-%v", i))
pidfile := filepath.Join(path, ".pid")
err := os.Mkdir(path, 0700)
if os.IsExist(err) {
// Try to clean up.
data, err := ioutil.ReadFile(pidfile)
if err == nil && len(data) > 0 {
pid, err := strconv.Atoi(string(data))
if err == nil && pid > 1 {
if err := syscall.Kill(pid, 0); err == syscall.ESRCH {
if os.Remove(pidfile) == nil {
if os.RemoveAll(path) == nil {
i--
continue
}
}
}
}
}
// If err != nil, assume that the pid file is not created yet.
continue
}
if err != nil {
return "", err
}
if err := ioutil.WriteFile(pidfile, []byte(strconv.Itoa(syscall.Getpid())), 0600); err != nil {
return "", err
}
return path, nil
}
return "", fmt.Errorf("too many live instances")
}
// UmountAll recurusively unmounts all mounts in dir.
func UmountAll(dir string) {
files, _ := ioutil.ReadDir(dir)
for _, f := range files {
name := filepath.Join(dir, f.Name())
if f.IsDir() {
UmountAll(name)
}
fn := []byte(name + "\x00")
syscall.Syscall(syscall.SYS_UMOUNT2, uintptr(unsafe.Pointer(&fn[0])), syscall.MNT_FORCE, 0)
}
}
|
robertoost/raytracing-renderer | src/materials/checkerboard_material.h | <reponame>robertoost/raytracing-renderer
#pragma once
namespace RaytracingRenderer {
class CheckerboardMaterial : public Material {
public:
float3 odd_color;
float3 even_color;
inline void color(
const Ray& r_in, const hit_record& rec, float3& attenuation
) const override {
if (int(floor(rec.p.x) + floor(rec.p.z)) % 2 == 0) {
attenuation = odd_color;
}
else {
attenuation = even_color;
}
}
inline CheckerboardMaterial(float3 odd_color, float3 even_color) : Material(SOLID) {
this->odd_color = odd_color;
this->even_color = even_color;
}
inline CheckerboardMaterial() : CheckerboardMaterial(float3(0, 0, 0), float3(1, 1, 1)) {}
};
}
|
msansm1/medek-server | src/main/java/bzh/medek/server/rest/EditorService.java | package bzh.medek.server.rest;
import java.util.ArrayList;
import java.util.List;
import javax.ejb.Stateless;
import javax.inject.Inject;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Application;
import javax.ws.rs.core.MediaType;
import org.apache.log4j.Logger;
import bzh.medek.server.json.book.JsonEditor;
import bzh.medek.server.persistence.dao.EditorDAO;
import bzh.medek.server.persistence.entities.Editor;
import bzh.medek.server.utils.Constants;
@Stateless
@ApplicationPath("/services")
@Path(value = "/editors")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public class EditorService extends Application {
private static final Logger LOGGER = Logger.getLogger(EditorService.class);
@Inject
EditorDAO editorDao;
public EditorService () {
}
/**
* GET /editors : retrieve all editors
*
* @return
*/
@GET
public List<JsonEditor> getAll() {
List<Editor> editors = editorDao.getEditors();
LOGGER.info("find "+editors.size()+" editors in the database");
ArrayList<JsonEditor> ll = new ArrayList<JsonEditor>();
for (Editor l:editors) {
ll.add(new JsonEditor(l.getId(), l.getName()));
}
return ll;
}
/**
* GET /editors/{id} : retrieve one editor
*
* @param id
* @return
*/
@GET
@Path(value = "/{id}")
public JsonEditor getOne(@PathParam(value = "id") Integer id) {
Editor l = editorDao.getEditor(id);
LOGGER.info("find "+l.getName()+" editor in the database");
return new JsonEditor(l.getId(), l.getName());
}
/**
* POST /editors : create / update one editor
*
* @param JsonEditor editor
* @return
*/
@POST
public JsonEditor createUpdateOne(JsonEditor editor) {
JsonEditor jeditor = editor;
if (editor.getId() == null) {
Editor l = new Editor();
l.setName(editor.getName());
editorDao.saveEditor(l);
jeditor.setId(l.getId());
} else {
if (editor.getName().equalsIgnoreCase(Constants.DELETED)) {
editorDao.removeEditor(editorDao.getEditor(editor.getId()));
} else {
Editor l = editorDao.getEditor(editor.getId());
l.setName(editor.getName());
editorDao.updateEditor(l);
}
}
return jeditor;
}
}
|
EC-Snyk/ship | pkg/lifecycle/render/googlegke/render_test.go | package googlegke
import (
"context"
"encoding/base64"
"fmt"
"io/ioutil"
"testing"
"github.com/go-kit/kit/log"
"github.com/golang/mock/gomock"
"github.com/pmezard/go-difflib/difflib"
"github.com/replicatedhq/libyaml"
"github.com/replicatedhq/ship/pkg/api"
"github.com/replicatedhq/ship/pkg/lifecycle/render/root"
"github.com/replicatedhq/ship/pkg/templates"
"github.com/replicatedhq/ship/pkg/test-mocks/inline"
"github.com/replicatedhq/ship/pkg/test-mocks/state"
"github.com/replicatedhq/ship/pkg/testing/logger"
"github.com/replicatedhq/ship/pkg/testing/matchers"
"github.com/spf13/afero"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"
)
func TestRenderer(t *testing.T) {
tests := []struct {
name string
asset api.GKEAsset
kubeconfig string
}{
{
name: "empty",
asset: api.GKEAsset{},
kubeconfig: "kubeconfig_",
},
{
name: "named",
asset: api.GKEAsset{
ClusterName: "aClusterName",
},
kubeconfig: "kubeconfig_aClusterName",
},
{
name: "named, custom path",
asset: api.GKEAsset{
ClusterName: "aClusterName",
AssetShared: api.AssetShared{
Dest: "gke.tf",
},
},
kubeconfig: "kubeconfig_aClusterName",
},
{
name: "named, in a directory",
asset: api.GKEAsset{
ClusterName: "aClusterName",
AssetShared: api.AssetShared{
Dest: "k8s/gke.tf",
},
},
kubeconfig: "k8s/kubeconfig_aClusterName",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
req := require.New(t)
mc := gomock.NewController(t)
mockInline := inline.NewMockRenderer(mc)
testLogger := &logger.TestLogger{T: t}
v := viper.New()
bb := templates.NewBuilderBuilder(testLogger, v, &state.MockManager{})
renderer := &LocalRenderer{
Logger: testLogger,
BuilderBuilder: bb,
Inline: mockInline,
}
assetMatcher := &matchers.Is{
Describe: "inline asset",
Test: func(v interface{}) bool {
_, ok := v.(api.InlineAsset)
return ok
},
}
rootFs := root.Fs{
Afero: afero.Afero{Fs: afero.NewMemMapFs()},
RootPath: "",
}
metadata := api.ReleaseMetadata{}
groups := []libyaml.ConfigGroup{}
templateContext := map[string]interface{}{}
mockInline.EXPECT().Execute(
rootFs,
assetMatcher,
metadata,
templateContext,
groups,
).Return(func(ctx context.Context) error { return nil })
err := renderer.Execute(
rootFs,
test.asset,
metadata,
templateContext,
groups,
)(context.Background())
req.NoError(err)
// test that the template function returns the correct kubeconfig path
builder := getBuilder()
gkeTemplateFunc := `{{repl GoogleGKE "%s" }}`
kubeconfig, err := builder.String(fmt.Sprintf(gkeTemplateFunc, test.asset.ClusterName))
req.NoError(err)
req.Equal(test.kubeconfig, kubeconfig, "Did not get expected kubeconfig path")
otherKubeconfig, err := builder.String(fmt.Sprintf(gkeTemplateFunc, "doesnotexist"))
req.NoError(err)
req.Empty(otherKubeconfig, "Expected path to nonexistent kubeconfig to be empty")
})
}
}
func getBuilder() templates.Builder {
builderBuilder := templates.NewBuilderBuilder(log.NewNopLogger(), viper.New(), &state.MockManager{})
builder := builderBuilder.NewBuilder(
&templates.ShipContext{},
)
return builder
}
func TestRenderTerraformContents(t *testing.T) {
tests := []struct {
name string
asset api.GKEAsset
expected string
}{
{
name: "simple",
asset: api.GKEAsset{
ClusterName: "simple-cluster",
},
expected: mustAsset("testassets/simple.tf"),
},
{
name: "complex",
asset: api.GKEAsset{
GCPProvider: api.GCPProvider{
Credentials: base64.StdEncoding.EncodeToString(
[]byte("{\n \"type\": \"service_account\",\n \"project_id\": \"my-project\",\n ...\n}"),
),
Project: "my-project",
Region: "us-east",
},
ClusterName: "complex-cluster",
Zone: "us-east1-b",
InitialNodeCount: "5",
MachineType: "n1-standard-4",
AdditionalZones: "us-east1-c,us-east1-d",
MinMasterVersion: "1.10.6-gke.1",
},
expected: mustAsset("testassets/complex.tf"),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
req := require.New(t)
actual, err := renderTerraformContents(test.asset)
req.NoError(err)
if actual != test.expected {
diff := difflib.UnifiedDiff{
A: difflib.SplitLines(test.expected),
B: difflib.SplitLines(actual),
FromFile: "expected contents",
ToFile: "actual contents",
Context: 3,
}
diffText, err := difflib.GetUnifiedDiffString(diff)
req.NoError(err)
t.Errorf("Test %s did not match, diff:\n%s", test.name, diffText)
}
})
}
}
func mustAsset(name string) string {
b, err := ioutil.ReadFile(name)
if err != nil {
panic(err)
}
return string(b)
}
func TestBuildAsset(t *testing.T) {
type args struct {
asset api.GKEAsset
builder *templates.Builder
}
tests := []struct {
name string
args args
want api.GKEAsset
wantErr bool
}{
{
name: "basic",
args: args{
asset: api.GKEAsset{
ClusterName: `{{repl "cluster_name_built"}}`,
Zone: `{{repl "zone_built"}}`,
InitialNodeCount: `{{repl "initial_node_count_built"}}`,
MachineType: `{{repl "machine_type_built"}}`,
AdditionalZones: `{{repl "additional_zones_built"}}`,
MinMasterVersion: `{{repl "min_master_version_built"}}`, // not built
},
builder: &templates.Builder{},
},
want: api.GKEAsset{
ClusterName: "cluster_name_built",
Zone: "zone_built",
InitialNodeCount: "initial_node_count_built",
MachineType: "machine_type_built",
AdditionalZones: "additional_zones_built",
MinMasterVersion: `{{repl "min_master_version_built"}}`, // not built
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req := require.New(t)
got, err := buildAsset(tt.args.asset, tt.args.builder)
if !tt.wantErr {
req.NoErrorf(err, "buildAsset() error = %v", err)
} else {
req.Error(err)
}
req.Equal(tt.want, got)
})
}
}
|
Yanci0/openGauss-server | src/include/access/subtrans.h | /*
* subtrans.h
*
* openGauss subtransaction-log manager
*
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/access/subtrans.h
*/
#ifndef SUBTRANS_H
#define SUBTRANS_H
#include "access/clog.h"
extern void SubTransSetParent(TransactionId xid, TransactionId parent);
extern TransactionId SubTransGetParent(TransactionId xid, CLogXidStatus* status, bool force_wait_parent);
extern TransactionId SubTransGetTopmostTransaction(TransactionId xid);
#endif /* SUBTRANS_H */
|
hao-wang/Montage | js-test-suite/testsuite/581dac646b8077fbf63aa4fde353c8a4.js | <reponame>hao-wang/Montage
load("201224b0d1c296b45befd2285e95dd42.js");
// Test handling of false return from a handler.set() hook.
load("19d7bc83becec11ee32c3a85fbc4d93d.js");
var obj = {x: 1};
var p = new Proxy(obj, {
set(target, key, value, receiver) { return false; }
});
// Failing to set a property is a no-op in non-strict code.
assertEq(p.x = 2, 2);
assertEq(obj.x, 1);
// It's a TypeError in strict mode code.
assertThrowsInstanceOf(() => { "use strict"; p.x = 2; }, TypeError);
assertEq(obj.x, 1);
// Even if the value doesn't change.
assertThrowsInstanceOf(() => { "use strict"; p.x = 1; }, TypeError);
assertEq(obj.x, 1);
// Even if the target property doesn't already exist.
assertThrowsInstanceOf(() => { "use strict"; p.z = 1; }, TypeError);
assertEq("z" in obj, false);
// [].sort() mutates its operand only by doing strict [[Set]] calls.
var arr = ["not", "already", "in", "order"];
var p2 = new Proxy(arr, {
set(target, key, value, receiver) { return false; }
});
assertThrowsInstanceOf(() => p2.sort(), TypeError);
assertDeepEq(arr, ["not", "already", "in", "order"]);
|
wangbinxiang/SaasMainFrontEnd | client-src/js/vendors/area/area-2.js | module.exports = {"52":{"id":"52","parentId":"2","name":"\u5317\u4eac"}}; |
d-artagnan-db/SafeServer | src/main/java/pt/uminho/haslab/saferegions/SharedResourcesIdentifiers.java | package pt.uminho.haslab.saferegions;
public class SharedResourcesIdentifiers {
public static String RELAY = "IORelay";
public static String BROKER = "SharemindMessageBroker";
public static String SCHEMA = "DatabaseSchema";
public static String CONFIG = "Config";
}
|
OpenBankingUK/conformance-suite | web/src/store/modules/config/loadDiscoveryTemplates.js | // https://stackoverflow.com/a/42191018/241993
if (process.env.NODE_ENV === 'test') {
/* eslint-disable */
// Implement require.context for tests
if (typeof require.context === 'undefined') {
const fs = require('fs');
const path = require('path');
require.context = (base = '.', scanSubDirectories = false, regularExpression = /\.js$/) => {
const files = {};
function readDirectory(directory) {
fs.readdirSync(directory).forEach((file) => {
const fullPath = path.resolve(directory, file);
if (fs.statSync(fullPath).isDirectory()) {
if (scanSubDirectories) readDirectory(fullPath);
return;
}
if (!regularExpression.test(fullPath)) return;
files[fullPath] = true;
});
}
readDirectory(path.resolve(__dirname, base));
function Module(file) {
return require(file);
}
Module.keys = () => Object.keys(files);
return Module;
};
}
/* eslint-enable */
}
// Use webpack require.context to import templates and images.
// See: https://webpack.js.org/guides/dependency-management/#require-context
// https://vuejs.org/v2/guide/components-registration.html#Automatic-Global-Registration-of-Base-Components
const requireTemplates = require.context('../../../../../pkg/discovery/templates/', false, /.+\.json$/);
const discoveryTemplates = requireTemplates.keys().map(file => requireTemplates(file));
const requireImages = require.context('./images/', false, /.+\.png$/);
const discoveryImages = {};
requireImages.keys().forEach(file => discoveryImages[file] = requireImages(file)); // eslint-disable-line
export default () => ({ discoveryTemplates, discoveryImages });
|
OpenIxia/ixnetwork_restpy | ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/RTSPReply_template.py | from ixnetwork_restpy.base import Base
from ixnetwork_restpy.files import Files
class RTSPReply(Base):
__slots__ = ()
_SDM_NAME = 'RTSP_Reply'
_SDM_ATT_MAP = {
'RESPONSEField0': 'RTSP_Reply.header.RESPONSE.field0-1',
'RESPONSESP': 'RTSP_Reply.header.RESPONSE.SP-2',
'RESPONSERTSP STATUS CODE': 'RTSP_Reply.header.RESPONSE.RTSP STATUS CODE-3',
'RESPONSESP1': 'RTSP_Reply.header.RESPONSE.SP1-4',
'RESPONSEREASON-PHRASE': 'RTSP_Reply.header.RESPONSE.REASON-PHRASE-5',
'RESPONSECRLF': 'RTSP_Reply.header.RESPONSE.CRLF-6',
'HeaderDATE': 'RTSP_Reply.header.DATE-7',
'HeaderCSeq': 'RTSP_Reply.header.CSeq-8',
'HeaderServer': 'RTSP_Reply.header.Server-9',
'HeaderSupported': 'RTSP_Reply.header.Supported-10',
'HeaderCRLFX': 'RTSP_Reply.header.CRLFX-11',
}
def __init__(self, parent, list_op=False):
super(RTSPReply, self).__init__(parent, list_op)
@property
def RESPONSEField0(self):
"""
Display Name: RTSP VERSION
Default Value: 0x525453502F312E30
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSEField0']))
@property
def RESPONSESP(self):
"""
Display Name: SP
Default Value: 0x20
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSESP']))
@property
def RESPONSERTSPSTATUSCODE(self):
"""
Display Name: RTSP STATUS CODE
Default Value: 0x353030
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSERTSP STATUS CODE']))
@property
def RESPONSESP1(self):
"""
Display Name: SP1
Default Value: 0x20
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSESP1']))
@property
def RESPONSEREASONPHRASE(self):
"""
Display Name: REASON-PHRASE
Default Value: 0x496E7465726E616C20536572766572204572726F72
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSEREASON-PHRASE']))
@property
def RESPONSECRLF(self):
"""
Display Name: CRLF
Default Value: 0x0D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['RESPONSECRLF']))
@property
def HeaderDATE(self):
"""
Display Name: DATE
Default Value: 0x446174653A2053756E2C203033204A756C20323030352031303A35323A353320474D540D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['HeaderDATE']))
@property
def HeaderCSeq(self):
"""
Display Name: CSeq
Default Value: 0x435365713A20310D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['HeaderCSeq']))
@property
def HeaderServer(self):
"""
Display Name: Server
Default Value: 0x5365727665723A20574D5365727665722F392E302E302E333338300D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['HeaderServer']))
@property
def HeaderSupported(self):
"""
Display Name: Supported
Default Value: 0x537570706F727465643A20636F6D2E6D6963726F736F66742E776D2E73727670706169722C20636F6D2E6D6963726F736F66742E776D2E737377697463682C20636F6D2E6D6963726F736F66742E776D2E656F736D73672C20636F6D2E6D6963726F736F66742E776D2E6661737463616368652C20636F6D2E6D6963726F736F66742E776D2E7061636B657470616972737372630D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['HeaderSupported']))
@property
def HeaderCRLFX(self):
"""
Display Name: CRLFX
Default Value: 0x0D0A
Value Format: hex
"""
from ixnetwork_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['HeaderCRLFX']))
def add(self):
return self._create(self._map_locals(self._SDM_ATT_MAP, locals()))
|
kisolab/astah_plugins_released | Template-based-UML-Checker_hatase2020/plug-in/src/main/java/umlcheker/Activator.java | <reponame>kisolab/astah_plugins_released
package umlcheker;
import javax.swing.JOptionPane;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import com.change_vision.jude.api.inf.AstahAPI;
import com.change_vision.jude.api.inf.project.*;
import com.change_vision.jude.api.inf.model.*;
import com.change_vision.jude.api.inf.editor.*;
import com.change_vision.jude.api.inf.presentation.*;
import com.change_vision.jude.api.inf.view.*;
import com.change_vision.jude.api.inf.project.ProjectAccessor;
import com.change_vision.jude.api.inf.exception.*;
import com.change_vision.jude.api.inf.view.IEntitySelectionListener;
import com.change_vision.jude.api.inf.project.ProjectEventListener;
import java.awt.geom.Point2D;
public class Activator implements BundleActivator {
MySelectionListener selectionListener = new MySelectionListener();
public static IPresentation[] actpre;
public static IDiagram actdgm;
public static int selectnum;
ChangedSliceColor csc = new ChangedSliceColor();
public static int addcount = 0;
public static int modifycount = 0;
public static int removecount = 0;
public void start(BundleContext context) {
try {
getDiagramViewManager().addEntitySelectionListener(selectionListener);
} catch (Exception e) {
e.printStackTrace();
}
}
public void stop(BundleContext context) {
try {
getDiagramViewManager().removeEntitySelectionListener(selectionListener);
} catch (Exception e) {
e.printStackTrace();
}
}
private IDiagramViewManager getDiagramViewManager()
throws ClassNotFoundException, InvalidUsingException {
AstahAPI api = AstahAPI.getAstahAPI();
ProjectAccessor projectAccessor = api.getProjectAccessor();
IDiagramViewManager vm = projectAccessor.getViewManager().getDiagramViewManager();
return vm;
}
/**
* My SelectionListener.
*/
boolean catchflag = false;
IPresentation keepele = null;
int selectcount = 0;
public class MySelectionListener implements IEntitySelectionListener{
@Override
public void entitySelectionChanged(IEntitySelectionEvent arg0) {
try{
IDiagramViewManager iDVM = getDiagramViewManager();
IDiagram dgm = iDVM.getCurrentDiagram();
selectnum = iDVM.getSelectedPresentations().length;
if(selectnum == 0 && ExtensionView.sliceviewerflag == 1){
csc.changeSliceColor();
}
if(selectnum == 0 && catchflag == true){
//System.out.println(keepele.getID());
catchflag = false;
}
if(selectnum > 0){
IPresentation[] selectpres = iDVM.getSelectedPresentations();
//System.out.println(selectpres.length);
//System.out.println(selectpres[0].getProperty("fill.color"));
for(IPresentation selectpre : selectpres){
//System.out.println(selectpre + " select");
keepele = selectpre;
//System.out.println(selectpre.getID());
}
catchflag = true;
Activator.actpre = selectpres;
Activator.actdgm = dgm;
if(selectpres[0].getType().equals("ControlFlow/ObjectFlow")){
if(ExtensionView.sliceviewerflag == 1 && selectnum == 1 && ChangedSliceColor.cmflag == false){
IFlow se1 = (IFlow)(selectpres[0].getModel());
csc.changeSliceColor();
csc.changematchColor(se1);
}
}
}
} catch(Exception e){
System.out.println(e);
}
}
}
} |
kaocher82/the-buyback | src/main/java/com/thebuyback/eve/repository/TypeStockHistoryRepository.java | <filename>src/main/java/com/thebuyback/eve/repository/TypeStockHistoryRepository.java
package com.thebuyback.eve.repository;
import java.time.LocalDate;
import java.util.List;
import java.util.Optional;
import com.thebuyback.eve.domain.stock.Hub;
import com.thebuyback.eve.domain.stock.TypeStockHistory;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface TypeStockHistoryRepository extends MongoRepository<TypeStockHistory, String> {
List<TypeStockHistory> findByHubAndTypeId(Hub hub, long typeId);
Optional<TypeStockHistory> findByDateAndTypeIdAndHub(LocalDate date, Long typeId, Hub hub);
}
|
C2Talon/kolmafia | test/net/sourceforge/kolmafia/textui/parsetree/NumericValueTest.java | package net.sourceforge.kolmafia.textui.parsetree;
import static net.sourceforge.kolmafia.textui.ScriptData.invalid;
import static net.sourceforge.kolmafia.textui.ScriptData.valid;
import static org.junit.jupiter.api.Assertions.assertInstanceOf;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Stream;
import net.sourceforge.kolmafia.textui.ParserTest;
import net.sourceforge.kolmafia.textui.ScriptData;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
public class NumericValueTest {
public static Stream<ScriptData> data() {
return Stream.of(
valid(
"Numeric literal split after negative",
"-/*negative \nnumber*/1.23;",
Arrays.asList("-", "/*negative", "number*/", "1", ".", "23", ";"),
Arrays.asList("1-1", "1-2", "2-1", "2-9", "2-10", "2-11", "2-13"),
scope -> {
List<Command> commands = scope.getCommandList();
Value.Constant number = assertInstanceOf(Value.Constant.class, commands.get(0));
ParserTest.assertLocationEquals(1, 1, 2, 13, number.getLocation());
}),
valid(
"Float literal split after decimal",
"1./*decimal\n*/23;",
Arrays.asList("1", ".", "/*decimal", "*/", "23", ";"),
Arrays.asList("1-1", "1-2", "1-3", "2-1", "2-3", "2-5"),
scope -> {
List<Command> commands = scope.getCommandList();
Value.Constant number = assertInstanceOf(Value.Constant.class, commands.get(0));
ParserTest.assertLocationEquals(1, 1, 2, 5, number.getLocation());
}),
valid(
"Float literal with no integral component",
"-.123;",
Arrays.asList("-", ".", "123", ";"),
Arrays.asList("1-1", "1-2", "1-3", "1-6")),
valid(
"Float literal with no decimal component",
"123.print();",
Arrays.asList("123", ".", "print", "(", ")", ";"),
Arrays.asList("1-1", "1-4", "1-5", "1-10", "1-11", "1-12")),
invalid(
"Float literal with no integral part, non-numeric fractional part",
"-.123abc;",
"Expected numeric value, found 123abc",
"char 3 to char 9"));
}
@ParameterizedTest
@MethodSource("data")
public void testScriptValidity(ScriptData script) {
ParserTest.testScriptValidity(script);
}
}
|
anmolnar/cloudbreak | core/src/test/java/com/sequenceiq/cloudbreak/service/altus/AltusMachineUserServiceTest.java | package com.sequenceiq.cloudbreak.service.altus;
import static org.junit.Assert.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyBoolean;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.Optional;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import com.sequenceiq.cloudbreak.api.endpoint.v4.common.StackType;
import com.sequenceiq.cloudbreak.auth.altus.model.AltusCredential;
import com.sequenceiq.cloudbreak.auth.altus.service.AltusIAMService;
import com.sequenceiq.cloudbreak.domain.stack.Stack;
import com.sequenceiq.cloudbreak.domain.stack.cluster.Cluster;
import com.sequenceiq.cloudbreak.workspace.model.User;
import com.sequenceiq.common.api.telemetry.model.Features;
import com.sequenceiq.common.api.telemetry.model.Telemetry;
public class AltusMachineUserServiceTest {
private static final String TEST_CRN = "crn:cdp:iam:us-west-1:accountId:user:name";
private AltusMachineUserService underTest;
@Mock
private AltusIAMService altusIAMService;
private Stack stack;
private Telemetry telemetry;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
stack = new Stack();
User creator = new User();
creator.setUserCrn(TEST_CRN);
stack.setCreator(creator);
stack.setType(StackType.WORKLOAD);
stack.setResourceCrn(TEST_CRN);
Cluster cluster = new Cluster();
cluster.setId(1L);
stack.setCluster(cluster);
telemetry = new Telemetry();
Features features = new Features();
features.addClusterLogsCollection(true);
telemetry.setFeatures(features);
underTest = new AltusMachineUserService(altusIAMService);
}
@Test
public void testCreateMachineUserAndGenerateKeys() {
// GIVEN
Optional<AltusCredential> altusCredential = Optional.of(new AltusCredential("accessKey", "secretKey".toCharArray()));
when(altusIAMService.generateMachineUserWithAccessKey(any(), any(), anyBoolean())).thenReturn(altusCredential);
// WHEN
underTest.generateDatabusMachineUserForFluent(stack, telemetry);
// THEN
assertEquals("secretKey", new String(altusCredential.get().getPrivateKey()));
verify(altusIAMService, times(1)).generateMachineUserWithAccessKey(any(), any(), anyBoolean());
}
@Test
public void testCleanupMachineUser() {
// GIVEN
doNothing().when(altusIAMService).clearMachineUser(any(), any(), anyBoolean());
// WHEN
underTest.clearFluentMachineUser(stack, telemetry);
// THEN
verify(altusIAMService, times(1)).clearMachineUser(any(), any(), anyBoolean());
}
} |
aplybeah/caseflow | app/jobs/sync_intake_job.rb | <filename>app/jobs/sync_intake_job.rb
# frozen_string_literal: true
# This job will fetch the number of contentions for every
# EP known to Intake
class SyncIntakeJob < CaseflowJob
queue_as :low_priority
application_attr :intake
def perform
# Set user to system_user to avoid sensitivity errors
RequestStore.store[:current_user] = User.system_user
Intake.close_expired_intakes!
appeals_to_reclose = RampClosedAppeal.appeals_to_reclose
reclosed_appeals = []
appeals_to_reclose.each do |appeal|
appeal.reclose!
reclosed_appeals << appeal
rescue StandardError => error
# Rescue and capture errors so they don't cause the job to stop
capture_exception(error: error, extra: { ramp_closed_appeal_id: appeal.id })
end
slack_service.send_notification(
"Intake: Successfully reclosed #{reclosed_appeals.count} out of #{appeals_to_reclose.count} RAMP VACOLS appeals"
)
end
end
|
weiwenqiang/GitHub | expert/GeekNews/app/src/main/java/com/codeest/geeknews/base/BaseFragment.java | <gh_stars>1-10
package com.codeest.geeknews.base;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.View;
import android.view.ViewGroup;
import com.codeest.geeknews.app.App;
import com.codeest.geeknews.di.component.DaggerFragmentComponent;
import com.codeest.geeknews.di.component.FragmentComponent;
import com.codeest.geeknews.di.module.FragmentModule;
import com.codeest.geeknews.util.SnackbarUtil;
import javax.inject.Inject;
/**
* Created by codeest on 2016/8/2.
* MVP Fragment基类
*/
public abstract class BaseFragment<T extends BasePresenter> extends SimpleFragment implements BaseView {
@Inject
protected T mPresenter;
protected FragmentComponent getFragmentComponent(){
return DaggerFragmentComponent.builder()
.appComponent(App.getAppComponent())
.fragmentModule(getFragmentModule())
.build();
}
protected FragmentModule getFragmentModule(){
return new FragmentModule(this);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
initInject();
mPresenter.attachView(this);
super.onViewCreated(view, savedInstanceState);
}
@Override
public void onDestroyView() {
if (mPresenter != null) mPresenter.detachView();
super.onDestroyView();
}
@Override
public void showErrorMsg(String msg) {
SnackbarUtil.show(((ViewGroup) getActivity().findViewById(android.R.id.content)).getChildAt(0), msg);
}
@Override
public void useNightMode(boolean isNight) {
}
@Override
public void stateError() {
}
@Override
public void stateEmpty() {
}
@Override
public void stateLoading() {
}
@Override
public void stateMain() {
}
protected abstract void initInject();
} |
ryos-io/Rhino | rhino-core/src/main/java/io/ryos/rhino/sdk/reporting/LogEvent.java | /*
Copyright 2018 Ryos.io.
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.
*/
package io.ryos.rhino.sdk.reporting;
import java.io.Serializable;
public class LogEvent implements Serializable {
private final String username;
private final String userId;
private final String parentMeasurementPoint;
private final long start;
private final long end;
private final long elapsed;
private final VerificationInfo verificationInfo;
public LogEvent(final String username,
final String userId,
final String scenario,
final long start,
final long end,
final long elapsed,
final VerificationInfo verificationInfo) {
this.username = username;
this.userId = userId;
this.parentMeasurementPoint = scenario;
this.start = start;
this.end = end;
this.elapsed = elapsed;
this.verificationInfo = verificationInfo;
}
public String getUsername() {
return username;
}
public String getUserId() {
return userId;
}
public String getParentMeasurementPoint() {
return parentMeasurementPoint;
}
public long getStart() {
return start;
}
public long getEnd() {
return end;
}
public long getElapsed() {
return elapsed;
}
public VerificationInfo getVerificationInfo() {
return verificationInfo;
}
}
|
silberRus/karetskiy | chapter_004/src/test/java/ru/job4j/stock/StockTest.java | <filename>chapter_004/src/test/java/ru/job4j/stock/StockTest.java
package ru.job4j.stock;
import org.junit.Test;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
public class StockTest {
@Test
public void addOrder() {
Stock stock = new Stock();
stock.addOrder(new Order("GazProm", Order.action.ask, 110, 60));
stock.addOrder(new Order("GazProm", Order.action.ask, 100, 40));
stock.addOrder(new Order("GazProm", Order.action.ask, 180, 150));
stock.addOrder(new Order("GazProm", Order.action.bid, 80, 50));
stock.addOrder(new Order("GazProm", Order.action.bid, 150, 20));
assertThat(stock.toString(), is("Биржа на"));
}
@Test
public void deleteOrder() {
}
} |
Strassengezwitscher/Crowdgezwitscher | crowdgezwitscher/blog/serializers.py | from rest_framework import serializers
from blog.models import BlogEntry
class BlogSerializer(serializers.ModelSerializer):
created_on = serializers.DateTimeField(format='%d.%m.%Y')
created_by = serializers.ReadOnlyField(source='created_by.get_full_name')
class Meta:
model = BlogEntry
fields = (
'content',
'created_by',
'created_on',
'title',
)
|
ragrwal1/dinner-coding-time | build-scripts/worker-thread-pool.js |
var preparseCode = require("./pre-parse.js");
var generatePartials = require("./generate-partials.js");
var updateCodehsTitles = require("./update-codehs-titles.js");
var addMetaDescriptionOpenGraph = require("./add-meta-description-open-graph.js");
var fakeDom = require("./fake-dom.js");
var fs = require("fs");
var worker_threads = require('worker_threads');
var POOL_SIZE = 20;
/**
* @type {workpoolunit[]}
*/
var pool = [];
var DEBUG;
var queue = [];
var nonceId = 0;
var nonces = {};
var jobHistory = [];
/**
* @typedef workpoolunit
* @property {boolean} open
* @property {Worker} worker
*/
if (worker_threads.isMainThread) {
module.exports = {
setDebug: function(d) {
DEBUG = d;
},
initPool: function(size) {
size = +size || POOL_SIZE;
for (var i = 0; i < size; i++) {
(function () {
/**
* @type {workpoolunit}
*/
var workpoolunit = {
worker: new worker_threads.Worker(__filename),
open: false
};
workpoolunit.worker.on("message", function (value) {
if (value.t == "result") {
jobHistory.push(value);
if(DEBUG) console.log("finished job " + value.nonce)
nonces[value.nonce](value.fileContent);
if (queue.length) workpoolunit.worker.postMessage(queue.pop());
else workpoolunit.open = true;
} else if (value.t == "ready") {
if (queue.length) workpoolunit.worker.postMessage(queue.pop());
else workpoolunit.open = true;
}
});
pool.push(workpoolunit);
})();
}
},
giveJob: function (fileContent, location, cb) {
var openWorker = pool.find(x => x.open);
var nonce = nonceId++;
nonces[nonce] = cb;
var job = {
nonce: nonce,
fileContent: fileContent,
location: location,
t: "job"
};
if (openWorker) openWorker.worker.postMessage(job);
else queue.push(job);
},
close: function() {
fs.writeFileSync(__dirname + "/../cache/worker-metrics.json", JSON.stringify(jobHistory, null, 2));
for(var i = 0; i < pool.length; i++) {
pool[i].worker.unref();
}
}
};
} else {
worker_threads.parentPort.on("message", function (value) {
var fileContent = value.fileContent;
var location = value.location;
if(DEBUG) console.log("child_labor");
var html = fakeDom.parseHTML(fileContent);
var document = fakeDom.makeDocument(html);
var page = makePage(document, location);
var timings = {};
timings.start = Date.now();
if (DEBUG) console.log("Pre-parsing code...");
preparseCode(page);
timings.preparseCode = Date.now();
timings.preparseCodeDuration = timings.preparseCode - timings.start;
if (DEBUG) console.log("Generating paritals...");
generatePartials(page);
timings.generatePartials = Date.now();
timings.generatePartialsDuration = timings.generatePartials - timings.preparseCode;
if (DEBUG) console.log("Updating titles...");
updateCodehsTitles(page);
timings.updateCodehsTitles = Date.now();
timings.updateCodehsTitlesDuration = timings.updateCodehsTitles - timings.generatePartials;
if (DEBUG) console.log("Adding descriptions & OpenGraph...");
addMetaDescriptionOpenGraph(page);
timings.addMetaDescriptionOpenGraph = Date.now();
timings.addMetaDescriptionOpenGraphDuration = timings.addMetaDescriptionOpenGraph - timings.updateCodehsTitles;
timings.end = Date.now();
timings.totalDuration = timings.end - timings.start;
worker_threads.parentPort.postMessage({
nonce: value.nonce,
fileContent: document.innerHTML,
location: location,
timings: timings,
t: "result"
});
});
worker_threads.parentPort.postMessage({ t: "ready" });
if(DEBUG) console.log("child_ready");
}
/**
* Make a page from a document and location
* @param {import("./fake-dom").FakeDomNode} document A #root node representing the document of the page.
* @param {string} location The location of the page, equal to the window.location.pathname property in a browser.
* @returns {Page} The page
*/
function makePage(document, location) {
return {
location: location,
document: document
};
} |
Patriccollu/smooth | classes/threads/mutex.cpp | /* The smooth Class Library
* Copyright (C) 1998-2016 <NAME> <<EMAIL>>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of "The Artistic License, Version 2.0".
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */
#include <smooth/misc/string.h>
#include <smooth/threads/mutex.h>
#include <smooth/threads/thread.h>
#include <smooth/threads/backends/mutexbackend.h>
S::Threads::Mutex::Mutex(Void *iMutex)
{
backend = MutexBackend::CreateBackendInstance(iMutex);
}
S::Threads::Mutex::Mutex(const Mutex &oMutex)
{
*this = oMutex;
}
S::Threads::Mutex::~Mutex()
{
delete backend;
}
S::Threads::Mutex &S::Threads::Mutex::operator =(const Mutex &oMutex)
{
if (&oMutex == this) return *this;
backend = MutexBackend::CreateBackendInstance(NIL);
return *this;
}
S::Int S::Threads::Mutex::GetMutexType() const
{
return backend->GetMutexType();
}
S::Void *S::Threads::Mutex::GetSystemMutex() const
{
return backend->GetSystemMutex();
}
S::Bool S::Threads::Mutex::Lock()
{
return backend->Lock();
}
S::Bool S::Threads::Mutex::TryLock()
{
return backend->TryLock();
}
S::Bool S::Threads::Mutex::Release()
{
return backend->Release();
}
|
CloobGD/OpenUnrealUtilities | Source/OUURuntime/Public/FlowControl/ExclusiveLock.h | <reponame>CloobGD/OpenUnrealUtilities
// Copyright (c) 2021 <NAME>
#pragma once
#include "CoreMinimal.h"
#include "ExclusiveLock.generated.h"
DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FOnExclusiveLockStateChanged, UExclusiveLock*, Lock, bool, bIsLocked);
/**
* Object lock that only allows one object to access a resource exclusively
*/
UCLASS()
class OUURUNTIME_API UExclusiveLock : public UObject
{
GENERATED_BODY()
public:
/** Called whenever the lock state changes (from unlocked to locked or vice versa) */
UPROPERTY(BlueprintAssignable)
FOnExclusiveLockStateChanged OnLockStateChanged;
/**
* Attempt to lock the exclusive lock. Will fail if the lock was already locked by a different object.
* Calling this function again with the active object key will result in a success without any side-effects.
* @returns whether the lock was successfully locked by this key object.
*/
UFUNCTION(BlueprintCallable)
bool TryLock(UObject* Key);
/**
* Attempt to lock the exclusive lock. Will fail if the lock was already locked by a different object.
* Calling this function again with the active object key will result in a success without any side-effects.
* The lock will be automatically released after the specified time (in game time).
* @returns whether the lock was successfully locked by this key object.
*/
UFUNCTION(BlueprintCallable)
bool TryLockForDuration(UObject* Key, float Duration);
/**
* Release the lock with the object which was used to lock it.
* Calling unlock with an object that was not used to lock it will trigger an ensure condition.
*/
UFUNCTION(BlueprintCallable)
bool TryUnlock(UObject* Key);
/** Is the lock locked by a valid key object? */
UFUNCTION(BlueprintPure)
bool IsLocked() const;
private:
/** Active key/owner of the lock. May turn stale while set. */
UPROPERTY(Transient)
TWeakObjectPtr<UObject> ActiveKey;
};
|
efsavage/ajah | ajah-image/src/main/java/com/ajah/image/ImageUtils.java | <gh_stars>1-10
package com.ajah.image;
/*
* Copyright 2012 <NAME>, <EMAIL>
*
* 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.
*/
import java.awt.Color;
import java.awt.color.CMMException;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.Iterator;
import java.util.logging.Logger;
import javax.imageio.ImageIO;
import javax.imageio.ImageReader;
import javax.imageio.stream.ImageInputStream;
import com.ajah.util.AjahUtils;
/**
* Utilities for processing images.
*
* @author <a href="http://efsavage.com"><NAME></a>, <a
* href="mailto:<EMAIL>"><EMAIL></a>.
*/
public class ImageUtils {
private static final Logger log = Logger.getLogger(ImageUtils.class.getName());
/**
* Blends two colors with a given alpha value.
*
* @param first
* The first color (subject to alpha).
* @param second
* The second color (subject to alpha remainder).
* @param alpha
* The alpha value of the blend.
* @return The blended color.
*/
public static Color blend(final Color first, final Color second, final float alpha) {
final int red = (int) ((first.getRed() * alpha) + second.getRed() * (1 - alpha));
final int green = (int) ((first.getGreen() * alpha) + second.getGreen() * (1 - alpha));
final int blue = (int) ((first.getBlue() * alpha) + second.getBlue() * (1 - alpha));
return new Color(red, green, blue);
}
/**
* Extracts some simple information about an image.
*
* @param data
* The image data.
* @return The image info bean.
* @throws IOException
* If the image could not be accessed.
* @throws CMMException
* If the image could not be analyzed.
*/
public static ImageInfo getInfo(final byte[] data) throws IOException, CMMException {
AjahUtils.requireParam(data, "data");
final BufferedImage image = ImageIO.read(new ByteArrayInputStream(data));
if (image == null) {
throw new IllegalArgumentException("An image could not be constructed from the data");
}
final ImageInfo info = new ImageInfo();
info.setHeight(image.getHeight());
info.setWidth(image.getWidth());
try (final ImageInputStream iis = ImageIO.createImageInputStream(new ByteArrayInputStream(data))) {
final Iterator<ImageReader> readers = ImageIO.getImageReaders(iis);
if (readers.hasNext()) {
info.setFormat(ImageFormat.from(readers.next().getFormatName()));
} else {
log.warning("No readers found for image");
}
}
return info;
}
}
|
jason1zhang/jetbrains_academy_java | Hyperskill_Stream_Filter.java | <gh_stars>0
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.util.stream.*;
/**
*
* This problem is from Jetbrains Academy topic - Stream filtering
*
* @author <NAME>
* @version 1.0
* @since 2022-05-06
*
* Problem statement:
* Omitting long strings
* Implement the omitLongStrings method that takes a list of strings and returns a stream
* that consists of the elements from a given list that are less than 4 characters long.
*
* Example: ["a", "bbb", "cccc", "dddddd"] → ["a", "bbb"]
*/
public class Hyperskill_Stream_Filter {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String str = reader.readLine();
List<String> list = new ArrayList<>(Arrays.asList(str.split(" ")));
omitLongStrings(list).forEach(System.out::println);
}
private static Stream<String> omitLongStrings(List<String> strings) {
// write your code here
return strings.stream().filter(str -> str.length() < 4);
}
} |
dreamer888/zhihuinongmao | zhnm/zhnm-miniapp/api/mallapp/src/main/java/com/config/PagePlugin.java | <reponame>dreamer888/zhihuinongmao
package com.config;
import java.sql.Connection;
import org.apache.ibatis.executor.statement.StatementHandler;
import org.apache.ibatis.plugin.Intercepts;
import org.apache.ibatis.plugin.Signature;
@Intercepts({
@Signature(
type= StatementHandler.class,
method = "prepare",
args = {Connection.class,Integer.class}
)
})
public class PagePlugin extends org.change.plugin.PagePlugin{
}
|
mxalbert1996/homebrew-fonts | Formula/font-hubballi.rb | <reponame>mxalbert1996/homebrew-fonts
class FontHubballi < Formula
head "https://github.com/google/fonts/raw/main/ofl/hubballi/Hubballi-Regular.ttf", verified: "github.com/google/fonts/"
desc "Hubballi"
desc "Monolinear typeface with an informal, friendly appearance"
homepage "https://fonts.google.com/specimen/Hubballi"
def install
(share/"fonts").install "Hubballi-Regular.ttf"
end
test do
end
end
|
tanishiking/dotty | tests/pos/byname-implicits-12.scala | <reponame>tanishiking/dotty
trait Foo[T]
object Foo {
implicit def unit: Foo[Unit] = ???
implicit def int: Foo[Int] = ???
implicit def pair[T, U](implicit ft: Foo[T], fu: Foo[U]): Foo[(T, U)] = ???
}
class Bar
object Bar {
implicit def bar(implicit f: => Foo[(Int, (Int, Unit))]): Foo[Bar] = ???
}
object Test {
implicitly[Foo[(Bar, Unit)]]
}
|
icgrp/pld2022 | input_src/bnn512/operators/bc1_gen_1.cpp | <reponame>icgrp/pld2022<gh_stars>1-10
#include "../host/typedefs.h"
const unsigned int bc1_1_0[] = {0xffec8126,
0x7e01645d,
0x07ed27d3,
0x67ef6490,
0xa643df5c,
0x01e79c89,
0xfff8080b,
0x7026e407,
0xfffdf6ff,
0x00441bad,
0xfb03ffd2,
0x01c6c047,
0x38040007,
0x737f300f,
0xc35c0806,
0x2064817e,
0x201c03bb,
0x6fc02d00,
0x1cff7ebf,
0x325f649a,
0xc666a03f,
0x7d201fcc,
0x4cd1bfb1,
0x6f63dfde,
0xc666a03f,
0x7d201fcc,
0x4cd1bfb1,
0x6f63dfde,
0xfadf6fef,
0x2fe424fb,
0xd7d9eebb,
0x6867fc79,
0xf9d84aff,
0x0ddb0bef,
0x829e27b7,
0x6fe69bf7,
0xf911f6fe,
0x207069b7,
0xbb7e763b,
0x5f61e5df,
0xf3b90110,
0x120f40c3,
0xd45989c4,
0x1cb823ee,
0x305fb0a1,
0x34167bf3,
0x1c667e9e,
0x669bf59e,
0xcc136ab3,
0x2f776096,
0xc36491db,
0x670e1da4,
0x8e2d68fe,
0x77e633ad,
0x17813e97,
0x748419b8,
0x84907e29,
0x659a8d6f,
0xea6bffda,
0x360c4be6,
0xf3b7fbda,
0x13924156,
0x1cde9e08,
0x3fc6a4f8,
0x20526c64,
0x7fde4749,
0x2b5ff526,
0x000e8110,
0x96fd7fb6,
0x56c37b1d,
0xc7c5f0fc,
0x76fb7248,
0x97f9b625,
0x4038320d,
0xffe2c120,
0x2a5f4f9d,
0x5e49bded,
0x06680ff0,
0x27f39e24,
0x0805fbca,
0x2640b43e,
0x19f65ff0,
0xf14b13f5,
0x3357e24f,
0xc9b9208b,
0x6f1ef997,
0x4c834113,
0x351f7b12,
0xfb64f9ff,
0x16c0019f,
0xe2744f88,
0x3881f17f,
0xd2f7324d,
0x07e72986,
0x832841ff,
0x26c783ff,
0xeb7c2a83,
0x7fcb68de,
0xa6f8f252,
0x57e4932f,
0xeb7c2a83,
0x7fcb68de,
0xa6f8f252,
0x57e4932f,
0x07fdbf4f,
0x101be000,
0x1f8064f7,
0x74926c86,
0xf7fff66e,
0x7830cfd9,
0x380249bf,
0x0eae1c0b,
0x06fc4381,
0x09b8148c,
0x3f500f3f,
0x7ed01b65,
0xd87e5907,
0x5dfcc034,
0x00a401c2,
0x4f57d3f6,
0xff6180f9,
0x30006401,
0xbc5d13ff,
0x79576070,
0xc7f0052c,
0x707ff00f,
0xcffd7e04,
0x7fffe4bf,
0x0037fe0b,
0x2c37e172,
0x44df7ff0,
0x11dbfc0a,
0x07e87e6f,
0x31fac48c,
0xcf3ed846,
0x6e791098,
0xefde4941,
0x001f9ff1,
0x4b015fce,
0x7000007e,
0x144fb3ed,
0x702b6771,
0x06c17e20,
0x3ea6e013,
0xf0bbfe3f,
0x1dfffeff,
0x4094141a,
0x1ef88ffa,
0x239568cc,
0x7efe6007,
0xf9133e0f,
0x4949e361,
0xb81f4ddf,
0x7fde8002,
0xfefff9c8,
0x769b5b0f,
0x27e0cffb,
0x0218c040,
0x0df9f946,
0x007f4993,
0xcbe792c0,
0x7ff7800a,
0x81024bd4,
0x4ff04201,
0xc6effe0f,
0x503f1d8e,
0xb834c5fa,
0x05c5f4f9,
0xf933ff43,
0x7e70704d,
0xe81ffe40,
0x700df97a,
0x000201b8,
0x003b2ff4,
0xd1ff05ff,
0x202b6157,
0x93d3b3f8,
0x0487e4c2,
0xf6f825a4,
0x2f11e592,
0x93d3b3f8,
0x0487e4c2,
0xf6f825a4,
0x2f11e592,
0xf1250dfb,
0x25b251f2,
0x47adb09d,
0x4625528f,
0x7b636c62,
0x761db004,
0xc3fabf37,
0x4693bf69,
0xa13fdbd3,
0x49e51da6,
0x4db7cd12,
0x3733f00b,
0x0327f0c8,
0x323a9b7d,
0xc494bf98,
0x390572e0,
0xcefc7353,
0x10986ef0,
0xed112548,
0x59b4beed,
0x672992e4,
0x1062e203,
0x67da1af1,
0x73e94f19,
0x66b3efff,
0x323b5ddd,
0x8f6fb28d,
0x3277d21c,
0x2e1b5eff,
0x21236239,
0x9edc8f33,
0x2c7a4ce2,
0x9692650e,
0x680599e2,
0xcb7b3cca,
0x06a7eecd,
0xb89c726f,
0x34077251,
0x4aa32067,
0x7d88e160,
0x4864fd00,
0x66769b6d,
0x64cf4a49,
0x4576a690,
0xd4891324,
0x1aebc58e,
0x6fa79dc4,
0x631d2fe8,
0xf101a419,
0x7e35f4dd,
0x23ec960c,
0x749dc58e,
0x8034341b,
0x2db8ccb5,
0x9ca5a09c,
0x097ffffd,
0x919afc8d,
0x2a4d8a9c,
0x7f63f3e6,
0x138743f9,
0x34144008,
0x64b331c5,
0x4640175e,
0x50225186,
0x506588c9,
0x4d808603,
0xdd9f182f,
0x65f20c8b,
0x06ea3431,
0x62b60c41,
0xdfe54752,
0x0006c3f5,
0x06ea3431,
0x62b60c41,
0xdfe54752,
0x0006c3f5,
0x5edbf336,
0x00027ff4,
0x23e67e18,
0x2166e460,
0xf442b544,
0x0c4013f1,
0x86d3d104,
0x50dfdff5,
0x05ebf671,
0x71ece11a,
0xfbfca748,
0x0dff7f8b,
0x580502d2,
0x7837c018,
0x143c16f4,
0x2d1bff8f,
0xfbfc00cb,
0x643fe401,
0xff4f1000,
0x49c0106f,
0x4fecfe5c,
0x6cf6537e,
0x047479fb,
0x65976020,
0x201001e4,
0x7ff84270,
0x7f1933ff,
0x5118fff0,
0x8003f837,
0x303e8f0f,
0x07fe51fb,
0x0efe7fa2,
0xfaaca001,
0x7481dfe5,
0xfafb6fe9,
0x41e91b76,
0x64f67e00,
0x009001a8,
0xf7fe6c5b,
0x3ffff04f,
0x00183e40,
0x01f64804,
0x3fff7ff9,
0x7fc20260,
0xbffefe00,
0x1fc3d003,
0xd1180100,
0x5fd928be,
0x07e00c7f,
0x3ec01b0d,
0x241ddf00,
0x075c03b0,
0xf8140760,
0x4ebfe4c3,
0xf127bfd5,
0x4f4df87f,
0x1a5b418f,
0x589fec00,
0x27a9f62d,
0x7f400260,
0xfb038580,
0x3fe01b8d,
0xfed86123,
0x4af71ff9,
0x86fc21fb,
0x7a3761de,
0xccddc7df,
0x49887d0f,
0x77ffea00,
0x464e1252,
0xe35dfff9,
0x790c83e0,
0x77ffea00,
0x464e1252,
0xe35dfff9,
0x790c83e0,
0x86ef6220,
0x384013bc,
0xbb189e4e,
0x6bf37c06,
0xbf76753f,
0x05f7c2d8,
0x30a77fc9,
0x391b3b7c,
0x013ff1fd,
0x5fc40f7f,
0x3d4422bc,
0x3fe71d49,
0x3f9c807f,
0x09b80a6f,
0x7827de8d,
0x21e33dd2,
0x49f0082c,
0x4dbf794c,
0x37428330,
0x0c18dee1,
0x46ec32ec,
0x164d8c36,
0xf8180c45,
0x1d8c4e99,
0x4892c454,
0x6860fe94,
0x07cb7645,
0x3009e4fa,
0xd667fcf0,
0x5a069372,
0xa718001b,
0x6c03ff8b,
0x2515c8d0,
0x71bbd7b1,
0xbfd0faa6,
0x16fec134,
0x16d89316,
0x01712304,
0x04caa168,
0x6c0f6973,
0x413bb236,
0x6d90a607,
0xbf1b3e27,
0x76b4ccbd,
0x789a7dac,
0x4c7a1802,
0xddf3f700,
0x61042cbe,
0xdeb0c0db,
0x3f891d59,
0x7fcc387b,
0x334383f2,
0x22cca670,
0x4ca937fc,
0xe27c983b,
0x01bfe215,
0x997d933f,
0x529000ab,
0x1f160d2d,
0x1cb90c20,
0x69f9c0ff,
0x6c3bc62e,
0xda111223,
0x6fb26cca,
0xc39e4d2d,
0x669ce0e6,
0xd215fe19,
0x75d08a0b,
0x633c0279,
0x0b99e91f,
0x6c82c40d,
0x217fbee4,
0xbf3f0da4,
0x72e80652,
0x26d1b62d,
0x0b401fb5,
0xbf3f0da4,
0x72e80652,
0x26d1b62d,
0x0b401fb5,
0x087eda09,
0x7df8e37c,
0x81fc2ffe,
0x3606e214,
0x442bd645,
0x22f69356,
0x6242d640,
0x0bf4a88d,
0xbdb4694a,
0x3ff944bb,
0xce64404e,
0x053ebc90,
0xcb47d030,
0x40afce4e,
0x09cf7d97,
0x00b6e2bd,
0xfed31224,
0x42628384,
0xcb280029,
0x6a7aa492,
0x4db728c0,
0x097edc92,
0x2cfbfed7,
0x0e0005a9,
0xc06ffc69,
0x20c81720,
0xdc4da1a0,
0x13378581,
0xf3a481fe,
0x5028b2f1,
0x1ba337a4,
0x16bdc3f4,
0x3f8fb386,
0x19692b01,
0x382ecc81,
0x681fadb6,
0x046a6830,
0x6cc00200,
0x0c5c97fc,
0x4bc8701d,
0xe82731b6,
0x1ff71e1e,
0x113be85b,
0x324cc03e,
0x27f0d5ee,
0x0103b805,
0xbedadaae,
0x21741f6d,
0x212dd725,
0x41c620cc,
0xcfdc6465,
0x08223af0,
0x67ad97a4,
0x680920a0,
0xf826fb9a,
0x4a0d778a,
0x8252cfb7,
0x43c25ffe,
0x07fb417d,
0x5b70d98e,
0x7e143640,
0x5ed983b2,
0xbffe9701,
0x34f83b7f,
0xf4b6f1ef,
0x02c0440b,
0x5e8c802a,
0x2634194a,
0x664fe206,
0x3ec03bf0,
0xa8007ec2,
0x4ffe1a6d,
0x664fe206,
0x3ec03bf0,
0xa8007ec2,
0x4ffe1a6d,
0x240137bf,
0x1e532f22,
0xe8ebb0f7,
0x6813e887,
0xca272411,
0x3e07e5bf,
0x2ef3ff80,
0x362d8041,
0xff6fcdc3,
0x363ffb27,
0x06ec8a5b,
0x743d5699,
0x41ab7f00,
0x10e01f0c,
0x4c81b7a7,
0x7fffddbe,
0xffee90ff,
0x6db7027f,
0x079f8600,
0x763fe010,
0xd786806a,
0x6da01fcf,
0x07817f21,
0x69eef410,
0xad40d01f,
0x04ba7fd5,
0x6008effa,
0x7c29437a,
0xaefc4bf8,
0x404c900f,
0x9e6063db,
0x3ff7e0fe,
0x96cf2a99,
0x67575ff6,
0xdf6bb3ab,
0x4c082416,
0xfade1037,
0x7fc025bf,
0x00020643,
0x001ee0dc,
0xfcdc02d8,
0x2dd6a27d,
0xe52ede03,
0x132fe80f,
0x500083e7,
0x0f70062e,
0x00c841fe,
0x701ff88c,
0x0e036ac3,
0x61d5a324,
0xc7e011f9,
0x1fffc0b6,
0xfc037805,
0x7edfe009,
0x59778844,
0x4fdb711d,
0xfbe57c3e,
0x0060a25f,
0xf0949ca4,
0x75800225,
0x275201ff,
0x62e98403,
0x3c5fca40,
0x0dff2d9b,
0xa32f91ff,
0x00080db8,
0x3f4333b7,
0x3e3b6d30,
0xa34bfe1f,
0x69e92f7f,
0x04a800bf,
0x7e3b7f52,
0xa34bfe1f,
0x69e92f7f,
0x04a800bf,
0x7e3b7f52,
0x083dd0c1,
0x0d365ed9,
0x272608c0,
0x29181019,
0xffbc8df2,
0x6a8cbfd3,
0xfe9fb301,
0x37f4b00f,
0x8004b9ff,
0x3daef340,
0xfffa7822,
0x508a1c81,
0x250e836e,
0x028def2a,
0x58e3f44b,
0x5b7cf6ca,
0x2518dc01,
0x0180900c,
0x87ee1fe3,
0x0f7fe000,
0x02540197,
0x7d3e604f,
0x9adb1325,
0x71792c0d,
0x7c81b635,
0x6934e3e6,
0xb8048081,
0x7a00fadf,
0x60c9d9b7,
0x16665e34,
0x83cc0b3f,
0x7fbebf2f,
0x0fdb4ba5,
0x49289dd9,
0x7ed59efc,
0x000bc491,
0x96cbe209,
0x623ec04f,
0xc0839236,
0x77c01dbf,
0xf80ae11e,
0x0eb03a8f,
0x267771d6,
0x4323feb4,
0x210a7a08,
0x35d93fa1,
0x4e1013b7,
0x34378ff2,
0x781827eb,
0x3fc13f07,
0x4c0120b0,
0x098fe5e0,
0x693a0d60,
0x1026a7f0,
0x089ffeff,
0x1186c034,
0x23a50f00,
0x00201808,
0xfebcddcb,
0x0234022d,
0x382ffe51,
0x7f5f7ff7,
0x01ea4a07,
0x3fc99a43,
0x42b30202,
0x7d009867,
0x9f063021,
0x7ff7d04d,
0x4ff7fe11,
0x77cb41fc,
0x2f588179,
0x051d5bf4,
0x4ff7fe11,
0x77cb41fc,
0x2f588179,
0x051d5bf4,
0x3edc08c7,
0x2914f800,
0xdfe19e07,
0x02ee7efe,
0xd01b5c80,
0x009bc3c1,
0x7edfd3ed,
0x26c90003,
0xb309ce9b,
0x6e7fb13f,
0x85bfa0c2,
0x2d3784d8,
0xdb0b69c4,
0x523d7d3c,
0xb7fd82fa,
0x5fc4ac88,
0xefefd6fb,
0x1e1db25f,
0x86502c0b,
0x708b7f74,
0x86b4b63f,
0x282e531d,
0x932cb743,
0x46f88ed8,
0x87fb4d8f,
0x6ff89db9,
0x419133f4,
0x40f89f0d,
0x68010685,
0x4d76fb23,
0x48275b73,
0x7f84fe3f,
0xff65af7b,
0x2836f3f1,
0xe4df9e26,
0x5dee6807,
0xbb127b49,
0x6c088404,
0x36d3e23b,
0x54881bfb,
0xf8f98edb,
0x51848c46,
0xb83c37e7,
0x0249796f,
0x435608de,
0x72711bfa,
0xdfe37acb,
0x3fcc5bbf,
0x6ff1b104,
0x2fa739f1,
0x48037c9f,
0x6ff7dfe9,
0x64be6956,
0x76f80fde,
0xe1ff0800,
0x65a6cc9f,
0x8307ff58,
0x17d49e02,
0x68032020,
0x71800407,
0x9b23ccfb,
0x6994899d,
0x1a0bb7cd,
0x226070d0,
0x17cc0402,
0x0112f9b6,
0x4fef4526,
0x7c2019e0,
0x0f0591bb,
0x5d900020,
0x969fff20,
0x6d8feed7,
0x490231f2,
0x7de3288e,
0xfe438780,
0x4fe4e591,
0x490231f2,
0x7de3288e,
0xfe438780,
0x4fe4e591,
0x4eff6051,
0x05f8a10f,
0xdd0ffea9,
0x16fb9f9f,
0xcc3ffd76,
0x12c90109,
0x74d245b7,
0x14672510,
0x805bee7f,
0x3325d254,
0xfafe9bc0,
0x0de8c4b6,
0xfc26d63c,
0x4642e08a,
0xf7d62917,
0x7f76031c,
0x37e173fe,
0x77210d04,
0x00d94f04,
0x6480a279,
0x075a3b20,
0x70d7fc28,
0xd02c71f9,
0x40459c52,
0xb66f35d9,
0x43f7fd81,
0x512016b7,
0x15e11c4e,
0x2f007e1f,
0x10383c03,
0xa855b1d1,
0x49da6fe1,
0xc8d7ff25,
0x1837ca86,
0x81dfbe3f,
0x0336fbcc,
0x9e00144d,
0x32433960,
0xa280f336,
0x1506c161,
0x0cefec23,
0x0067fff0,
0x816400d6,
0x6840eeb6,
0x1f807fdb,
0x16ffdc90,
0x0101231a,
0x7afdb3fe,
0x90bcf1d9,
0x3fffbf9f,
0x3b6d9003,
0x003ee404,
0x16dff77f,
0x6d61fc98,
0x26403fa8,
0x09ff7bdd,
0xf89537c9,
0x612fff88,
0x07efe1fc,
0x11202448,
0x8403cc09,
0x7e74e4fc,
0x4e6f2e41,
0x3026e474,
0xf2e5be13,
0x7ce0ac0d,
0x22de1ff4,
0x3ffbe246,
0x5674867b,
0x404f4e92,
0xf6337040,
0x12e5109f,
0x5674867b,
0x404f4e92,
0xf6337040,
0x12e5109f,
0x7ca6f842,
0x52e0bf4f,
0x37d3d02e,
0x6640003f,
0x67b4b6a7,
0x7a004fca,
0xb06bacfb,
0x57291ecf,
0x0363c23b,
0x0b087310,
0xdefcb73b,
0x29212ae6,
0x043b9fc1,
0x0ac371e2,
0x181a4e07,
0x0256db55,
0xa75e47a0,
0x44f721a3,
0x408fef85,
0x7232807b,
0xf490c457,
0x3de97f21,
0x03fba909,
0x0e9bf4b0,
0xfa90be09,
0x40581f41,
0x86ad3233,
0x385fc2fb,
0x60460220,
0x60ac8df5,
0x596ff5fc,
0x4a6513f2,
0x31bc07fd,
0x01226c30,
0x0e57ec2d,
0x08049652,
0xc6cba7ae,
0x7f7d0a19,
0x56da45d8,
0x0a27b5ba,
0xf939b42f,
0x01ee9bc1,
0xbf40e1fe,
0x7d31f815,
0x10001a22,
0x3fad85fd,
0xb7947bfd,
0x4bca5b5b,
0x7e090e13,
0x326d9826,
0xd9e89203,
0x32bb96c2,
0x2f92c14e,
0x69717e4d,
0x93df33a4,
0x73441dbf,
0xf93edf78,
0x40610ef7,
0x07affda4,
0x780325ba,
0x043c2524,
0x5cfddb70,
0xc82f0bd9,
0x0035c4b4,
0x173c95e0,
0x79bd7b1e,
0xfe7d33d8,
0x65a52ec6,
0x680413fd,
0x099905b6,
0xba589029,
0x3fcde1ad,
0x680413fd,
0x099905b6,
0xba589029,
0x3fcde1ad,
0xd261f239,
0x1e07e5b1,
0x1b01edf1,
0x725a8119,
0x66f3be9f,
0x2007c97c,
0x9bdc0d7e,
0x374a23ed,
0x8f906e8d,
0x6b639f5e,
0x0663cf37,
0x35c7fffb,
0xf76020b4,
0x77271f57,
0x98726e6f,
0x30399b1a,
0xce03b8ca,
0x3704f7fe,
0xd85590dc,
0x03fb3f1b,
0xa2270c70,
0x783017bd,
0xe6cb2144,
0x7fafc342,
0xb72c3698,
0x2210ff44,
0x9969a9ff,
0x7e307c09,
0x5aff67dc,
0x0ae89fea,
0x27044fb0,
0x6d9ae99e,
0x43b7419f,
0x15b7e19e,
0x6ec20842,
0x4357dd92,
0x7e54f8dc,
0x3b7e1f49,
0x78ffef3f,
0x378ce6d0,
0xea414ffd,
0x36132df5,
0xf15a3724,
0x027f21b1,
0xf4ddb009,
0x093ff5b6,
0xcbe4493c,
0x60f74876,
0xfef87e80,
0x271e4f19,
0xdffe88a4,
0x74d2cf65,
0xca62b899,
0x26b3a56f,
0xd003eeac,
0x6fe01fd7,
0x87ceca7e,
0x020bfcd0,
0xe3236ffc,
0x117f8a3c,
0x2c49ec04,
0x250a5fff,
0x46ff1abf,
0x270b6088,
0x196dfd9e,
0x12369c40,
0xe8040090,
0x2ecf257f,
0xea9bc057,
0x45e7bf91,
0x0bef9246,
0x7760fe05,
0xe02f1600,
0x69a4724f,
0x0bfcffff,
0x0b1ca408,
0xe02f1600,
0x69a4724f,
0x0bfcffff,
0x0b1ca408,
0xf70dbe9f,
0x366edb45,
0xe7fc605e,
0x00f62d2f,
0x81b66083,
0x427f1204,
0x3cbe67fc,
0x6424dc4f,
0xdfc093b4,
0x3adbed04,
0xbc9e80f6,
0x1e98007b,
0xf905fbfb,
0x0dfd1f67,
0x7f809169,
0x163fdb05,
0x5a00097c,
0x67f99c0e,
0xf5cf7cbb,
0x6e6cdff7,
0xf80c76e3,
0x755be264,
0x1ccb7e0a,
0x3f06e440,
0x4c63d175,
0x7381fd86,
0x85f8f63f,
0x2d012d9e,
0xc8fc0cd8,
0x12c48dbe,
0x1c9405a5,
0x48252b69,
0xfe8089bd,
0x307a124e,
0xf6dfc37f,
0x21afe5ff,
0xf823c1c8,
0x7ef73a0f,
0xb5adfc7b,
0x07f6ecb5,
0xe92482f8,
0x5fdc1f8f,
0x0123f05c,
0x0da81fe8,
0xfefaf8db,
0x58b6c4f7,
0x0efe31c0,
0x7e1fffc8,
0x7a1ab6db,
0x1f66e00e,
0xded825f9,
0x0188819c,
0x04fd92b7,
0x1bf3fb01,
0x069a717d,
0x0019db00,
0xa2ffd6fa,
0x26024086,
0xdb2091d6,
0x49b6e577,
0xbcff68c8,
0x05998039,
0xfcff6c27,
0x5835a04f,
0x0018885a,
0x7e87fd90,
0x280092df,
0x174cdd90,
0xc23db03d,
0x14f6c076,
0x77e2c677,
0x719fc600,
0xc23db03d,
0x14f6c076,
0x77e2c677,
0x719fc600,
0xcff79423,
0x3c00dcaf,
0xb923ac76,
0x7641200e,
0x01d84026,
0x71c451b4,
0x46686efd,
0x67fee3d6,
0xb7fd2598,
0x3db60fd4,
0xc0c01309,
0x671ef607,
0x066e5532,
0x57e03728,
0xd2fe3a58,
0x200136ee,
0x6f4d6c30,
0x1ad817e1,
0xf40f2b37,
0x4c840bb9,
0xce8b009f,
0x40280fec,
0xe0689ec5,
0x10440f7f,
0x3fc8a09a,
0x5035fe62,
0x5d2f3030,
0x7a7b92ec,
0x3dac19e4,
0x02562901,
0x2f6acfce,
0x30207a7c,
0x8125ecb5,
0x77382751,
0xe7f304c0,
0x6d204c07,
0xfb2fbc88,
0x46bb27f6,
0x87e1f39a,
0x6d8b6fbc,
0x5100c874,
0x22036e06,
0xdf2ba1f7,
0x405b735a,
0x00080300,
0x37efa1a2,
0x601b3582,
0x04190fe9,
0x4b7242d0,
0x6c7b627e,
0xddfa0152,
0x613fdc4b,
0x1125c744,
0x01e63bbb,
0xabe6b3a1,
0x00500541,
0xc4c8ed27,
0x7251d7be,
0x3901ae62,
0x0c213e09,
0x342c090c,
0x12e2ec00,
0x1a980dc0,
0x18c9c060,
0x95921f4b,
0x00b34c07,
0xaff36c1d,
0x68a61baf,
0x56f704fb,
0x1fffe004,
0x4f24b25f,
0x0220d082,
0x56f704fb,
0x1fffe004,
0x4f24b25f,
0x0220d082,
0xec0395fb,
0x443f2497,
0xe80e8f82,
0x7ffb1eef,
0xff7dfe40,
0x61952816,
0xa7ffc2a4,
0x35f5fff0,
0x580874db,
0x5a4fb6cc,
0x595268b9,
0x33f01c70,
0x03ea183f,
0x0664b06b,
0x270433c6,
0x7110434c,
0x5794021c,
0x4f7ede4c,
0x31279e2f,
0x41682208,
0xda0af330,
0x34b09202,
0xc29c0000,
0x779bb062,
0xf6fca73f,
0x7419103c,
0xfc8713fb,
0x19c3c40f,
0x3eff6481,
0x734ef860,
0x2e284997,
0x400101f0,
0x21685b01,
0x74c15009,
0xa06d27b2,
0x13c29c0d,
0x3f3f6f0f,
0x7e41502a,
0xcfbdfa02,
0x00f6eb79,
0x67468144,
0x7dfac20e,
0xf93e0348,
0x52c89a2f,
0xfd037566,
0x7febf22f,
0x6ca37fff,
0x74a09f62,
0x3edf210c,
0x59774018,
0x380005d8,
0x7fec908a,
0x342e5e6e,
0x367ed02f,
0xec1dfe02,
0x63d11fd5,
0x3fd7f7a4,
0x1036fe63,
0xe7dfdc80,
0x6efe757d,
0x2f31efaf,
0x7b5fe3db,
0x7fbe73a0,
0x3efb7ff0,
0x4040b241,
0x7e770daf,
0x0c183db5,
0x6f287c6d,
0x4e47dfbf,
0x780f604f,
0x3253e10f,
0x2847f04d,
0x4e47dfbf,
0x780f604f,
0x3253e10f,
0x2847f04d,
0x837a90b0,
0x101b5e7d,
0x24b13c97,
0x7009a229,
0x9fc4704b,
0x4b5b282b,
0xd97f6da6,
0x03f3263a,
0xb77fc64d,
0x4bf4e409,
0xc0147e3f,
0x6647d343,
0x2a9c32eb,
0x25a69c4d,
0x1d143903,
0x30f01020,
0x40984da6,
0x5c539ac2,
0x69c49684,
0x0d1ed002,
0x99e087fc,
0x139ec6e9,
0x372830b9,
0x782f0880,
0x3f61784c,
0x06bf54cd,
0x59247837,
0x3600e041,
0x831dcf98,
0x37f664d9,
0x3ff880bc,
0x0f53726e,
0x1f2bdfd8,
0x02e03ff4,
0x98fdb8d2,
0x0b83efdd,
0xe9ec5dc3,
0x7c7ed6d8,
0xdbdfee98,
0x0d997f70,
0x39df8bf6,
0x5e3c01da,
0xeffc49bf,
0x74c922a3,
0xbdc506a6,
0x1dd6d0f6,
0x896715fe,
0x2d126cb2,
0xe5b8b9e0,
0x6c4ec174,
0xb4b20093,
0x6a22fe9e,
0x0ce1f3c8,
0x024d7d8c,
0xce75725a,
0x165b284e,
0x4f0a8e2b,
0x62374f93,
0x6315f267,
0x7ff813e0,
0x15bdfda0,
0x13341ddd,
0x23307fa0,
0x7cd4c804,
0xbccff6b6,
0x3b99f667,
0xd7e48847,
0x184dde6f,
0x62f97734,
0x1ff9a646,
0x6add8223,
0x15588f50,
0x283dae35,
0x21236fb4,
0xb1f50f33,
0x6df6cce6,
0x283dae35,
0x21236fb4,
0xb1f50f33,
0x6df6cce6,
0x24bc822c,
0x05313367,
0x3eff34c9,
0x602611df,
0x4edb7970,
0x77994380,
0x991d9398,
0x1dc43a60,
0x63fc07e6,
0x02476007,
0x9ffbfdd0,
0x77258dbc,
0xc5ecefbe,
0x7f70093a,
0x412800fb,
0x40732008,
0x3921a2b8,
0x70288eb7,
0xd3f1ea87,
0x063657f3,
0x2a1291d3,
0x00a4821e,
0x4a6ffab5,
0x32e98c0a,
0xdc77b1ff,
0x404bf70f,
0x294b69fd,
0x113c0c81,
0xda2457de,
0x445cfc8a,
0xff518e82,
0x6f709344,
0xc107a061,
0x70b6ac7a,
0xfb607c58,
0x0a240d8a,
0xc80328c0,
0x283b190a,
0xa024127f,
0x6f01201d,
0x7883aeff,
0x37b8a3f7,
0x4863b027,
0x0cc70272,
0xbffc19db,
0x7a63101f,
0xafa0f668,
0x2d4c98c7,
0xbcafa0dd,
0x75d90e45,
0x3bd829dd,
0x70209f00,
0x5efe013d,
0x0eb49f78,
0xe0fa46d8,
0x0a53980f,
0xbb60fe7d,
0x602003e4,
0x213fea13,
0x52486c02,
0xb3e0fd99,
0x3de060c1,
0xb4d63fff,
0x0180eb44,
0x05ed0d42,
0x0f77ede8,
0x1337a4fe,
0x0d5b5b74,
0x31e92c6c,
0x723be07d,
0xb8f6e2c0,
0x001a0ffd,
0x31e92c6c,
0x723be07d,
0xb8f6e2c0,
0x001a0ffd,
0x65fb93db,
0x7bb51240,
0x3a013fc9,
0x3bf4040d,
0x20bffbb7,
0x0f63d374,
0x0ba65fd3,
0x3e813ff8,
0x151ff800,
0x7fc022f9,
0x48234f00,
0x34591f6e,
0xba223f1a,
0x10080ee2,
0x356ffee5,
0x4ff96ff8,
0x3da6fa37,
0x181c9dd0,
0xbffc4cc9,
0x7f1b2073,
0xb5b401f9,
0x44bc8082,
0x3426ffc0,
0x6fd1000f,
0xc480c08d,
0x7fbfb002,
0x20fc81f8,
0x39da3a40,
0xc65c01eb,
0x1b6e05bf,
0x006281fc,
0x002792d0,
0x9e528c07,
0x6e811fe1,
0xa810b6ab,
0x30709ed0,
0x3a63ffbf,
0x503ffb70,
0x07efd744,
0x7fdff000,
0xc09880c8,
0x4fc1fdff,
0x04001b27,
0x64c8bc4a,
0x24bfa00b,
0x49106d01,
0x4923dbff,
0x4ac003b9,
0x269001e9,
0x79a011b1,
0x073999ff,
0x7804a102,
0x2ffc4037,
0x52bff060,
0x3023fe05,
0x36beffb0,
0x08b32b3b,
0x6f00dfee,
0xd4824ccc,
0x7880044f,
0x01be9380,
0x122e5390,
0x7be8917f,
0x17e01006,
0x432317ff,
0x0834444e,
0x052747ff,
0x2fe483f0,
0x17fff224,
0x107ff002,
0x03fc1848,
0x60a1fc02,
0x17fff224,
0x107ff002,
0x03fc1848,
0x60a1fc02,
0xdbbc2412,
0x09c16c65,
0x05920643,
0x37fa93fe,
0xb8fcbe20,
0x49fe9b91,
0xfffc6cdf,
0x1fc7be85,
0xb0962426,
0x734773d6,
0xff7a453f,
0x7f06ff82,
0xf1988421,
0x7fa09dcf,
0xa648c6de,
0x6b1e6007,
0x00bff7b2,
0x71006bfa,
0x7af98e04,
0x2fc8cb1d,
0x29305240,
0x3481c0e4,
0xf881cddd,
0x7b2879c1,
0x87e01a67,
0x3f9b6c10,
0xf9341bfe,
0x7e065e27,
0x3bb281f6,
0x62d15fbb,
0x2c0396d8,
0x16446c89,
0xdafff12f,
0x0c976da3,
0xf2c1c5de,
0x038019fd,
0xae1c18fd,
0x06dd8a4b,
0xc7f7be3d,
0x6e30421d,
0x4e11bf44,
0x701bf140,
0xc0580d63,
0x19d102de,
0xb603b1fa,
0x0df78d73,
0xfc6c4a9e,
0x7edfe5f4,
0xd68a0e1f,
0x218f6d87,
0x377f432d,
0x03c05cea,
0x6b2180d9,
0x67011eb2,
0x0092b204,
0x57e7e042,
0xd89c4c3e,
0x017bde72,
0xebff63d2,
0x4119aadf,
0x10e10447,
0x19c06bf0,
0xb6e381da,
0x7f5bc1e1,
0x0933703e,
0x5fc5944c,
0x1d116e06,
0x3ffca043,
0x1003a02c,
0x6c611845,
0xf2600801,
0x0f477f83,
0x5b7f0d28,
0x292ef66a,
0xab05b05f,
0x7b90019d,
0x5b7f0d28,
0x292ef66a,
0xab05b05f,
0x7b90019d,
0xd2300746,
0x2fce9a62,
0xcc920ebb,
0x166c13d7,
0x6d5a6e08,
0x7bfb3a72,
0x0e8296f6,
0x796625ad,
0x1c129129,
0x28da00d2,
0x249273f6,
0x04260df7,
0x97d0f6f9,
0x506cb106,
0x6ee7b203,
0x634b9f84,
0x45f82376,
0x52da1278,
0xc90c316d,
0x4bb08d82,
0x5827f955,
0x4933c46b,
0x7f742801,
0x6ddfdff2,
0xd8afec79,
0x243df746,
0x9b4de600,
0x11f49d00,
0x013d9a8a,
0x37e405f6,
0x28c2f72b,
0x1136fa89,
0xb88ffadc,
0x001b8d9c,
0x4c9f4898,
0x7eb746f6,
0xc1670376,
0x04f96255,
0x25249610,
0x5bb07bc5,
0xf4dff158,
0x410f92cf,
0xeb5f2a90,
0x101fdb6e,
0xb0920df0,
0x09029f92,
0x241f4b69,
0x6ddac7c1,
0x75017e4f,
0x68b81fef,
0x0efc4593,
0x05f8d2e9,
0xb4da59a7,
0x43e4e04b,
0xe49d93bd,
0x02ec9206,
0xe0f9bf7f,
0x66cbdb75,
0x11041704,
0x367afa9e,
0x1189bda1,
0x430e02bc,
0xd0ff6897,
0x061b820e,
0x0211e8de,
0x4d93f59d,
0xaa90031a,
0x3288dfc0,
0x12fb0826,
0x4c1efc0d,
0x06cc08f7,
0x67f009ff,
0x12fb0826,
0x4c1efc0d,
0x06cc08f7,
0x67f009ff,
0x2c85e0c9,
0x08aa9b4b,
0x91274e7d,
0x7980d333,
0xc6c3ec7c,
0x3c1d7746,
0xa1c99816,
0x5fcfed85,
0x35710858,
0x596abb6d,
0x4071aff4,
0x324135f6,
0xc1039879,
0x1faf61d6,
0x74fc1ffa,
0x267e871f,
0x0406432f,
0x249ff9f7,
0xf10030ea,
0x1b4b3dbe,
0xb95e5330,
0x65807e5d,
0xd9ea0731,
0x343620cf,
0xf3f467c4,
0x78880db3,
0x5fcb4c07,
0x02896c11,
0x3379112e,
0x3ad9e07c,
0xbfc18ad8,
0x10c49ff5,
0x28498337,
0x3d04fb40,
0x6644f4d0,
0x37e5012d,
0xa0fc3614,
0x3f12a02f,
0x36d940c0,
0x481c0f31,
0x77a1fe05,
0x41f40dfc,
0x65365ec1,
0x1260e5c0,
0x4fdafc1f,
0x5d76ffd0,
0x6b8f97c0,
0x33f09e96,
0x0e824d3f,
0x6a0c0b22,
0x70d5b0b0,
0x6bd4b20c,
0x7bd96937,
0x24e9d043,
0xa09ba50b,
0x0eef6f0f,
0x018800d8,
0x32f15949,
0xb0f782a4,
0x394b5f1d,
0xd3f0131f,
0x20071a32,
0xd761b39b,
0x796fbdf2,
0xfd39b886,
0x0f67ddbb,
0xec9ad921,
0x35affd70,
0xd01005c3,
0x26341ffa,
0xbbe9bbf4,
0x7203606b,
0xd01005c3,
0x26341ffa,
0xbbe9bbf4,
0x7203606b,
0x265e7bff,
0x79948060,
0x8b1641c0,
0x4c326f98,
0xdfb0242d,
0x4b3f28a8,
0xd809824b,
0x1256f9b0,
0x0feec8fb,
0x4bff0458,
0xfa1c19ba,
0x364917f9,
0xdeb73005,
0x6891b40c,
0x473b6f59,
0x44be42e4,
0x3cf449d8,
0x71e924b1,
0x5b173113,
0x5ff46440,
0x20027ed7,
0x4be1f5a1,
0xedb5b2c7,
0x2d3f3f8c,
0xda820419,
0x7037b9f1,
0x8020379b,
0x04c91008,
0xf10303c3,
0x0943c8c6,
0xfd0325bf,
0x51bbbb72,
0xffd03bfb,
0x6fe91024,
0xff57b71f,
0x04000dad,
0xa4037690,
0x3f04d3fa,
0x481bf306,
0x401f5240,
0xf852bf87,
0x427b7df4,
0x4bfa4805,
0x26f7d0b6,
0x877e48bf,
0x6deffac8,
0x68006204,
0x4d777bf9,
0xeedc4d46,
0x37ff2b67,
0xf809f7ff,
0x4360f70d,
0x17190036,
0x69e7fb40,
0xf82a304a,
0x27d9725f,
0x637e2318,
0x77108c4e,
0x1cb7ffda,
0x4eb888c6,
0x443c02ba,
0x0f537624,
0xedb1b600,
0x3f2fcd92,
0x00100b97,
0x23fffa4c,
0x18c82840,
0x48d7ec8c,
0x80efa000,
0x41fe000d,
0xdb523e94,
0x71e3b333,
0x80efa000,
0x41fe000d,
0xdb523e94,
0x71e3b333,
0xcad99252,
0x3dc122de,
0x078900c5,
0x7b63e039,
0xec33c136,
0x7201278c,
0x180e2034,
0x625df377,
0x191fe36d,
0x480e4222,
0xa3950f25,
0x2f75b03d,
0xb73791fb,
0x3eb4445d,
0xe8b54c85,
0x78b91a42,
0x0905f5f6,
0x68cebd76,
0x692292b0,
0x2f165213,
0x050a06d8,
0x2d039b28,
0xf7931781,
0x7de596d3,
0x900fa6a4,
0x0039024c,
0xdce5fa6e,
0x7800206c,
0x82ebf069,
0x379a113d,
0x20c90124,
0x3e4383f3,
0x2efc9e9f,
0x68cea495,
0xdb6b5d38,
0x3626bbd9,
0x91f75e5a,
0x601218ba,
0x26b13353,
0x7fbcbc90,
0x6e075fcb,
0x3c3f6fbf,
0x8e070022,
0x00e5a4b3,
0x9fe41100,
0x3a34805c,
0x04877e63,
0x1a7cf810,
0x484a49db,
0x76fbfa9a,
0xb3a578f3,
0x12464006,
0x58080fb7,
0x2b43e889,
0x0f486985,
0x493b1270,
0xd611132e,
0x7b28e8b8,
0x03a313fc,
0x682a1bf0,
0xbcb3c320,
0x01c9afda,
0x7898bb90,
0x6b70a0f7,
0x29c46a58,
0x4f44bebe,
0x39b04e0b,
0x19a6aed8,
0x249213cf,
0x65e320f9,
0x4ee5072f,
0x656ed49c,
0x878df4ef,
0x4736c594,
0x0aff03a8,
0x727f0e2e,
0x878df4ef,
0x4736c594,
0x0aff03a8,
0x727f0e2e,
0xf8174e74,
0x39b7dfe7,
0xb07a6305,
0x440062fd,
0xd72032da,
0x7e3bc0a9,
0x1e7e7a17,
0x58819892,
0xdf08bd39,
0x1f923c0f,
0x04edbdb6,
0x7e39a076,
0x79f07859,
0x7e1864f6,
0x07ef3036,
0x009f75a9,
0xd310490d,
0x36071d8f,
0x0a7d417b,
0x7b8b4d88,
0x5fe9bfcd,
0x5b89107f,
0xe9278112,
0x09d61b3c,
0xeef80fff,
0x493fb7bf,
0x89f34138,
0x3e3fe367,
0xfa5c7dd0,
0x1ff2eff6,
0x776db7d7,
0x7fff4543,
0x675b1fb4,
0x69011c07,
0xe705c934,
0x0f8025ef,
0xfb2ff05f,
0x409d06ef,
0x84b493db,
0x3144e90f,
0x272730fd,
0x7e06e7fd,
0x6b0dfc07,
0x6d4bd219,
0x099291eb,
0x4e3e38d0,
0x50fa6200,
0x7f2f0832,
0x2d20cf34,
0x20007f74,
0xd883a051,
0x7f00e709,
0x7c979901,
0x31901bcf,
0xa27e51b8,
0x4180919f,
0x314ff9b7,
0x0d89f642,
0xc88b311e,
0x09c0dffe,
0xd9fc2b76,
0x29b7a7d3,
0x4be973f7,
0x7c88fed6,
0x14e43fd8,
0x01fd8bc4,
0xf80de15f,
0x3102b006,
0xc03de1ba,
0x624acb80,
0xfe604d86,
0x0ff365fe,
0xc03de1ba,
0x624acb80,
0xfe604d86,
0x0ff365fe,
0x3e573af8,
0x3261791f,
0xedd1fe39,
0x4a47ff61,
0xc37bcc24,
0x627053ec,
0xc426e002,
0x53167d8c,
0x09e19c1d,
0x5982f114,
0x71ad281c,
0x2cbe2c0c,
0x58ddb93b,
0x37ebd3f3,
0x019177c6,
0x779dd4eb,
0x8eb3f9c4,
0x426686c2,
0x910bff85,
0x4e693958,
0xe72f3ecc,
0x46e5ca60,
0x662f12cf,
0x64f60f94,
0x356c6cfb,
0x1bb7fb45,
0xebdb9e53,
0x4b3e81f4,
0x110bedcd,
0x5fd130bc,
0xf06c7c9f,
0x48d26cf3,
0x4b0f59d6,
0x12ff1e8a,
0xb1d2f66c,
0x5e53558c,
0x67553534,
0x4c339a09,
0xe702b729,
0x5447d9d5,
0x2f6260b8,
0x3ea6529e,
0x6c0b511a,
0x64f49bc9,
0xccce11f6,
0x74c36df5,
0x6b60adc6,
0x44ee646c,
0xd8d279b5,
0x70d17060,
0x89683158,
0x02666ade,
0x85226362,
0x0213e2dc,
0x0b71edb5,
0x62c93ff3,
0x593f0fc2,
0x6dd4c035,
0xcc801bbc,
0x3d0ba22e,
0xf1f848df,
0x117ced43,
0x5e09d8d8,
0x1377c581,
0x8428629f,
0x182633c8,
0x3483f497,
0x59a092af,
0xca699fbe,
0x169bc8f4,
0xa958e9e3,
0x7fffc42d,
0xca699fbe,
0x169bc8f4,
0xa958e9e3,
0x7fffc42d,
0xdee3fdf4,
0x003e9fe7,
0xcbf06d89,
0x73de642d,
0xe693fc10,
0x3efb4a63,
0x137d9000,
0x3eded2fc,
0xc8fb9614,
0x226fcf07,
0xd92cfc06,
0x36277fc1,
0xb3be80d6,
0x16ffc5d6,
0xf1ba2000,
0x7fe20236,
0x74b07f2b,
0x2d2c122f,
0xf7907df7,
0x1fc94ff3,
0x86f83648,
0x7ce93da6,
0x87f9b740,
0x7e800da9,
0xb2010ffe,
0x3034e00d,
0x27623ff0,
0x1fc3f00c,
0x02fbbfc6,
0x66c1ee28,
0xfff9fd04,
0x76c7efc7,
0xf6d10004,
0x4a360de2,
0xeff5ae3e,
0x12368a74,
0xa7902778,
0x5edb086d,
0x27e66bbc,
0x4842e070,
0xb17ed4f7,
0x3fea4b70,
0xc7e83424,
0x42340009,
0x58506e00,
0x3e1f600e,
0xeff87204,
0x0fca659f,
0x0bcacc1b,
0x1f3fd529,
0xcff431bf,
0x145bdfaf,
0x03107e5b,
0x16340054,
0xf125eef6,
0x77c58b7b,
0x7e7d91af,
0x3d1f8f00,
0x84031ffa,
0x17b84da1,
0xecd69800,
0x4583e5ef,
0x1663fe2a,
0x480b1fc8,
0xc3ffbd3e,
0x0bdba1e7,
0xc002527f,
0x2ddb9e8f,
0xf97d271b,
0x02c10fbf,
0x337b740f,
0x71243d90,
0xc337fe9a,
0x3f9f9b79,
0xfb083425,
0x7c36de61,
0xc337fe9a,
0x3f9f9b79,
0xfb083425,
0x7c36de61,
0xfd8ba074,
0x1674d3f4,
0x07c04d84,
0x0f9885d0,
0x47fdff8f,
0x3ff00187,
0x7f2be5cc,
0x1a80d24e,
0x8be1af25,
0x6a176e50,
0x2386efd8,
0x424907a8,
0x00a86130,
0x20253278,
0xfdf6416f,
0x7fe47cc6,
0x3b2f696f,
0x0008e5b1,
0x462030d0,
0x2304d08c,
0x63c3fb0b,
0x7671e42b,
0xd0200219,
0x326f03d5,
0x8503ee3c,
0x07f91788,
0xcb6266df,
0x3f3fe361,
0x5d217f3f,
0x7fd0ccc1,
0x300c005b,
0x616900d3,
0xf7bf8ace,
0x4d4bfe02,
0x03f45f76,
0x400543ca,
0xc46608d8,
0x70468272,
0x95a75929,
0x7c68fbff,
0x0932d869,
0x653fc185,
0xba0e4fe4,
0x4d3fd1ba,
0x234137a0,
0x09cd9471,
0x00806a30,
0x41fb57b0,
0x32d0b05b,
0x553f07ef,
0xfc6d92ca,
0x68bfa4b1,
0x48fff847,
0x1dccedcc,
0x44644048,
0x10301d59,
0x195eff29,
0x2cc7a47f,
0xd8b93790,
0x0bffe1b4,
0x9e8acc00,
0x17dede28,
0xfb0167ab,
0x080bb50f,
0xcaef60a2,
0x6eec4cfc,
0xdee64ff8,
0x7f9a1409,
0xeff0f16e,
0x1f8fe33f,
0xb11be04c,
0x7ed6e7e4,
0xeff0f16e,
0x1f8fe33f,
0xb11be04c,
0x7ed6e7e4,
0xf1682e26,
0x6fdb458b,
0xf985b13b,
0x5dec0f77,
0xc1344c32,
0x67f004f2,
0xeefd0c10,
0x1c90380e,
0x4a37f7db,
0x42a38fa0,
0xb9c6f941,
0x0d348001,
0xc60d5fb5,
0x103ff1bf,
0x1a0fea7f,
0x298ae3d4,
0xbdd9afb8,
0x3e8fc783,
0x77c26613,
0x36036270,
0xa3f5febb,
0x017b0def,
0xc76ce8e0,
0x7e1b4526,
0x8713f0f7,
0x1f89e27e,
0xbfa23fb8,
0x7ef053cc,
0xe03a17f4,
0x45821ed6,
0xf078a4df,
0x2dab3811,
0xfcf0e898,
0x09dc8c9f,
0x69ef8229,
0x0d7cbbef,
0x5bfabdfe,
0x0be497fa,
0xff9c347f,
0x170f1fff,
0xb5d89bd8,
0x11130647,
0x1fd89527,
0x7ff81372,
0x9cada6f8,
0x6ca39e83,
0xb7e3d13e,
0x01df8260,
0x11782698,
0x0c3fefc3,
0xe67fee5f,
0x002bdf6f,
0x82b7d1ed,
0x32fe1fff,
0xfffe5f7e,
0x79049760,
0xbadc7e66,
0x68f5030d,
0xd7fd0dc0,
0x777a0de7,
0x53536db8,
0x12f60d41,
0xc17e37a0,
0x12181e33,
0xc9ac3e17,
0x71fbe48f,
0x09604c34,
0x0fae41b0,
0x4594e204,
0x3d0efffa,
0xec977e01,
0x413b225f,
0x4594e204,
0x3d0efffa,
0xec977e01,
0x413b225f,
0xd3f86d82,
0x49641a13,
0x26fe96e7,
0x31581924,
0xe3e8007b,
0x0adeed2f,
0xcabd8a1f,
0x3efe8547,
0xfb678fd8,
0x287685bd,
0xb8fc0e21,
0x091d3c65,
0xd7610148,
0x5d0b3843,
0xc34ff77e,
0x0cb80793,
0x25ebd3c6,
0x0133e35f,
0x0ef48877,
0x773fd678,
0xce1099bf,
0x10e27e6b,
0xf7fd81df,
0x1808ed05,
0x241c19bf,
0x7c3deff0,
0xc3613ca5,
0x07c0607b,
0xcc9bb3ab,
0x3f8f2043,
0xca1e03db,
0x121b5362,
0x8b2fedd9,
0x0fb24070,
0xe39e18fb,
0x30aade2d,
0x92013c26,
0x7026dcdd,
0x257ba49f,
0x6d3cd562,
0xa690e41f,
0x7e8057fd,
0x67c3666f,
0x7a2ed5e2,
0x396c7ff1,
0x3fcb6102,
0xd126d02c,
0x68770fbb,
0x017fbd04,
0x7e56d630,
0xe8ff11fc,
0x78c04d2f,
0x5778e0f1,
0x085b006e,
0x31257161,
0x7b007a45,
0xabe5b708,
0x15871817,
0xcb82fe96,
0x65e7e654,
0xd8dc4a5f,
0x1effc83e,
0xebdf900b,
0x3ddfe417,
0x1bfc0ff2,
0x4159db76,
0xc6fc1a7f,
0x607f3c7e,
0x05247f81,
0x7e3a91ce,
0x0199617c,
0x62dcf87e,
0x05247f81,
0x7e3a91ce,
0x0199617c,
0x62dcf87e,
0x809999df,
0x68badac4,
0x4e8eb4e3,
0x1001d7e0,
0xdf4bc689,
0x4fef210f,
0x59358edf,
0x07e5a3bf,
0x0c808582,
0x47f7e201,
0xd45efed0,
0x0ebb14a6,
0x22dae74b,
0x20033dd8,
0x149531fb,
0x37dc1896,
0xe931c81a,
0x77b54b46,
0x67d8d012,
0x648d9020,
0xf4159e24,
0x4bf144c2,
0x6805bba3,
0x124b59a8,
0xe717e04d,
0x29416022,
0xe0f805df,
0x367f91c7,
0xd3b3f018,
0x0defff4f,
0x7d064049,
0x0ae7c018,
0x6c9f4bac,
0x5bdbdfee,
0x001df93e,
0x0819e4e5,
0x3fecd1e4,
0x0937d940,
0xfc5aff40,
0x16ff4761,
0x87874191,
0x5a0c1456,
0x250012fc,
0x2063decc,
0xfeba7e88,
0x0646c7c1,
0x0663a1f7,
0x1a0b17eb,
0x012df026,
0x78c127e6,
0x8902566f,
0x6b7cbfcf,
0xfe07b40c,
0x1de3e40f,
0xfc061a9a,
0x76c13c18,
0x237e7c1e,
0x00b60241,
0x21bb166e,
0x52e7f8b0,
0xe95ebc72,
0x29fac44d,
0xe37cebc0,
0x14b68fed,
0x97f46500,
0x68e4119e,
0x27fa493c,
0x03002f0e,
0xfa057ede,
0x76675ee3,
0x0b5837bb,
0x17fc3568,
0xfe782d05,
0x023f7f77,
0x3625bdfb,
0x49a0fbf1,
0xfe782d05,
0x023f7f77,
0x3625bdfb,
0x49a0fbf1,
0xf83081f9,
0x4f27fb72,
0xfee87fd8,
0x665e9e1b,
0x48360b24,
0x7edb732e,
0x000e639f,
0x77b803f0,
0xe17e0fff,
0x1127fbb2,
0x4096ff30,
0x77fed30e,
0x4f23b7a6,
0x7ee21e86,
0x5d5e03ff,
0x1e25cc68,
0x074aeb39,
0x76e60c97,
0xb00bb19f,
0x667b1f79,
0xf27d26ff,
0x67c8af46,
0x27f20e7c,
0x64021bf9,
0xfea6013f,
0x50377dbf,
0x877f2d32,
0x74726341,
0x850207c4,
0x4fc4024b,
0x07529e40,
0x467f3099,
0xf8c0673c,
0x300273fc,
0xc22ffbdd,
0x52413ccb,
0xd92a65a6,
0x72266048,
0xe827ec17,
0x0e9c9201,
0x0a9c608f,
0x45de81c0,
0x4081001c,
0x6ff4838f,
0x05ffaf1d,
0x78d36326,
0x6b01b1e0,
0x1dbfe9bb,
0x3f7faedf,
0x4fc0bc8f,
0xf5a25c04,
0x6e9fa94c,
0xc0047647,
0x00dba79e,
0xd26285b7,
0x36391d10,
0x947fcbc9,
0x682782ad,
0x076ffc34,
0x78223d70,
0xcb749fe8,
0x3127e4be,
0xf820536d,
0x6f41000f,
0x0413b289,
0x4638e260,
0x270a907f,
0x004f1c10,
0xd922467b,
0x41bfe1fb,
0xf82005b0,
0x12df7c41,
0xd922467b,
0x41bfe1fb,
0xf82005b0,
0x12df7c41,
0xd26d9580,
0x332e9bc2,
0x04057ec5,
0x1036c800,
0x707e97b4,
0x543acdb2,
0x086937e6,
0x52996bc0,
0xc7fc2ed8,
0x2c3fe76a,
0x2894b500,
0x40112ed8,
0x7660bf19,
0x07693fce,
0xb14c804c,
0x76df727d,
0x21320002,
0x00067850,
0x4b9ff800,
0x7221044e,
0x7f911f19,
0x7fdbd7fc,
0x06900d8d,
0x5fe084d0,
0x66d20ccf,
0x63008c03,
0x70c76bf7,
0x403f1d70,
0x63fe4b85,
0x09efb2ba,
0xf2941a06,
0x0191d0e2,
0x23e72875,
0x1fe01ff1,
0x3d01b700,
0x102685ba,
0x22d8cbcc,
0x31388da8,
0x176e6fe7,
0x37cbf836,
0xe7a242c9,
0x7f25cdf6,
0x3ffc8f2f,
0x7dc02000,
0x7ff3d404,
0x2d3ff11e,
0x5922217e,
0x05b8824a,
0xf932000c,
0x0847e0db,
0xddbbd0bf,
0x7d8b9088,
0xc62dbd7f,
0x0016dad2,
0xdc1380a6,
0x0356a997,
0x7893bf99,
0x7800917c,
0x87baedc0,
0x41231e7f,
0xfcb40044,
0x76c19b7e,
0x98240130,
0x7da3167e,
0x67ff82d5,
0x41bfe01d,
0x48392e3b,
0x1b7f13ac,
0x4f9fa9b7,
0x6f5b3dba,
0xa4198140,
0x6f3f7f06,
0x4f9fa9b7,
0x6f5b3dba,
0xa4198140,
0x6f3f7f06,
0x03a410db,
0x3efffdba,
0x9ed8dd13,
0x00523900,
0xcaef4991,
0x123eda79,
0xfefd801b,
0x52381a00,
0x012feeb9,
0x733fbc80,
0xcefd950f,
0x598007fe,
0x0010481b,
0x72181d38,
0x34e6081f,
0x1d77116f,
0x0ae40213,
0x7ff4d680,
0xde9e77f0,
0x4031050f,
0xdb039200,
0x66f585bf,
0xc8031ff6,
0x0c9ae285,
0xcdbfef38,
0x307bc079,
0x5653b7ff,
0x003f7012,
0x5bf50107,
0x7f820400,
0xd80341c1,
0x2f5b3a0f,
0xf4f209f6,
0x4dee858d,
0x4193906f,
0x7bede002,
0x7bb64e48,
0x52d360d9,
0xb6dfb217,
0x20bbffe3,
0x7fe181b6,
0x7efe9fb2,
0xefea8000,
0x00a5edee,
0x06938126,
0x303b61f4,
0x321425b5,
0x7f3919b6,
0xce659209,
0x1ef7eca6,
0x0223d782,
0x7fc00840,
0xfcdf21b4,
0x20a7f25e,
0x87f8fff0,
0x4d707fb4,
0x04fd0248,
0x483ef990,
0x817e7e02,
0x7fc17ff6,
0x0fff5500,
0x693ffa7d,
0x5e901009,
0x1207500d,
0x4ce809ac,
0x003ff3fc,
0x4520004b,
0x6f841e5f,
0x22647fff,
0x6ae4ec0e,
0xdf270fbf,
0x16d7a180,
0x857f270b,
0x4be00d0f,
0xbcc2d390,
0x7f05204f,
0x857f270b,
0x4be00d0f,
0xbcc2d390,
0x7f05204f,
0x9b2db602,
0x4866f1b9,
0x3a0b416f,
0x4a335a12,
0x18f749b9,
0x315a0de9,
0xd8e62525,
0x60b4fb5c,
0xa949fc03,
0x71011ffd,
0x9e5824b6,
0x3f34e1a6,
0x6ae1f08d,
0x68f0e5ef,
0x07835d5a,
0x3a1b74f0,
0x36cefb08,
0x501a8063,
0x26df7aa1,
0x1184a7bb,
0x2e2401fc,
0x11e4f7e9,
0x75bcb2bf,
0x5ae0ad0d,
0x4e14cea2,
0x63c13bce,
0xc051e1bc,
0x519b061d,
0xdc92cdda,
0x032d354e,
0xe09edf4a,
0x4b65e05e,
0xfc1a4bdf,
0x29f03c98,
0xc459c8f8,
0x7e5f81fe,
0x54900204,
0x569b3e6e,
0x28780dd7,
0x33a72801,
0x46164068,
0x50c81a42,
0x2c1e04ce,
0x6fc01b80,
0x97fd2fc5,
0x05fae6d6,
0xd37b3301,
0x32080e4e,
0xc6dea381,
0x0fdeb0f1,
0x09036943,
0x15fc925e,
0xbc1c9c92,
0x4116ffe1,
0x5a4bb627,
0x7d888b66,
0x06e27fe6,
0x0200878e,
0xc0376503,
0x432edeb7,
0x4098bfde,
0x73087802,
0x5fbc2c3c,
0x32eb510c,
0xa8996d78,
0x00a77f43,
0x7883599a,
0x200b68ca,
0x4b6bfc96,
0x3ec51003,
0x905827f2,
0x6fd96485,
0x4b6bfc96,
0x3ec51003,
0x905827f2,
0x6fd96485,
0x2792c9b3,
0x00cb2ffb,
0xe0fec0cc,
0x2236effe,
0x4931b649,
0x325b1bd2,
0x0cc00f80,
0x08367802,
0x7bfdbe04,
0x1dc930b0,
0xf931805d,
0x52b6dcc4,
0xe8009848,
0x37c93c9f,
0x0358edf7,
0x6e2489e2,
0xb49febfe,
0x7606cbdd,
0xa29400ff,
0x7a3c8f87,
0x6103ecda,
0x2024d6eb,
0x2920002f,
0x02935487,
0xfdfbff1b,
0x3fc05f4f,
0x0b500bf6,
0x31837b42,
0xfb7c9fe4,
0x4b5b5f6d,
0xcfe81442,
0x10766842,
0xb6fb6cda,
0x6c853f42,
0xfec24b93,
0x6fa65b80,
0xfc6cd806,
0x3f7fcd36,
0x41213206,
0x09c085ef,
0x7c8900d0,
0x44bb1d61,
0xce8c0464,
0x01c6720e,
0x181181ff,
0x71ce86d2,
0x47f4c934,
0x015b3f02,
0x01e1ed76,
0x67b79ff0,
0x313091fe,
0x2dd31b21,
0x3b4bf7bf,
0x24a80e19,
0x01204048,
0x3f9840dd,
0x70cb499f,
0x01a0a442,
0xb7a0a126,
0x1c23f494,
0xba8f6d07,
0x164927a8,
0x6ca3c244,
0x09efea45,
0x499011bb,
0x0dc8045b,
0x369340b2,
0x0bbac379,
0x0ef636fc,
0x4124dfd8,
0x068804ec,
0x7dbfce86,
0x0ef636fc,
0x4124dfd8,
0x068804ec,
0x7dbfce86,
0xffc0127a,
0x1fdb4e06,
0xfbb26924,
0x704bfd76,
0x04801e49,
0x00b65cd1,
0x0f6040b4,
0x4d9a04bb,
0xf7ff7e24,
0x0fe3cd9d,
0x2165b774,
0x41d08a60,
0xce909452,
0x4dfe1b75,
0x27d20c6f,
0x681f68b1,
0xc9249bb5,
0x3ee6d79f,
0x2b6cd1b1,
0x17df112c,
0xae5b6e3e,
0x37f4bb06,
0x513641fc,
0x1fc4dfff,
0x281248be,
0x375b2c9b,
0x6bffbedf,
0x6977e499,
0x9afc61b4,
0x3da8a3cf,
0x4efe0e40,
0x1b052b26,
0x39264864,
0x146029b6,
0xd84b4db6,
0x13db7a4f,
0x53fc7367,
0x01899f4f,
0xf793effb,
0x7b37dbbb,
0x25b5b020,
0x6fc21ffd,
0xff9785db,
0x324927a4,
0x4df058bc,
0x36f7bbfe,
0x912fe8cb,
0x48cb0d2f,
0xcbef496c,
0x1b4657c2,
0xa5d77ab3,
0x10192bff,
0xcda642de,
0x095b0550,
0x2714277a,
0x42a50ff9,
0xfe7b6ec7,
0x57e7f6b0,
0xff6a1a9c,
0x4fb794d7,
0xa4d30cb2,
0x1ec2ab97,
0x87ce0f01,
0x3dbfed26,
0xf7fec5e4,
0x5edf6fbd,
0xf343f37d,
0x06dacffb,
0xdd1cc1fb,
0x0137edd2,
0x6dff6293,
0x23efe68d,
0xdd1cc1fb,
0x0137edd2,
0x6dff6293,
0x23efe68d,
0x31047f02,
0x1cbe809a,
0x17065a80,
0x6df5efe2,
0xf82b0b3f,
0x0858a3a9,
0x07806e58,
0x7a040b5c,
0x0901f02d,
0x7408a26e,
0xb65dc0e9,
0x2801b26d,
0x26bf8bcd,
0x2190ed04,
0xfb7eef06,
0x35144086,
0xb70321e6,
0x6fc9be73,
0x5bf41601,
0x59309762,
0x7f4b0d03,
0x304d2253,
0x2b00c7cc,
0x3fe5c7a1,
0xc0e6c840,
0x1090450f,
0x28002e28,
0x39176bb0,
0x0204f646,
0x54321bb0,
0x0711bdc0,
0x7560dc16,
0xc87cf661,
0x66e5c605,
0x6b0d9909,
0x01fc92f0,
0x46e48eda,
0x7ab8e9be,
0x03437ff6,
0x79203f30,
0x437b01f6,
0x617f1b6b,
0x833f0eff,
0x64812fb0,
0x7303b642,
0x690ffc7e,
0xc414f737,
0x7bd7cff7,
0xb9ff58ac,
0x00face60,
0x4b25b197,
0x11800d73,
0xfedac87c,
0x37f7c665,
0x4d81a1c4,
0x76f00252,
0x7cfb7c28,
0x14b3f6c1,
0x8ccfcbc1,
0x4da03260,
0x6b607f9d,
0x759ffa05,
0xdd01e140,
0x5d3fbba6,
0x2feb6e80,
0x144932d1,
0x31fff267,
0x7f746bf1,
0x47932ace,
0x6fe9af91,
0x21df8390,
0x1202f7dc,
0x6edb01e6,
0x221f6172,
0xfb9313ff,
0x2b53f387,
0x6edb01e6,
0x221f6172,
0xfb9313ff,
0x2b53f387,
0xe76c0277,
0x1d082807,
0xf85d37be,
0x1ef683fc,
0x3b6bc800,
0x76071e0e,
0xa369f930,
0x361bea3f,
0xc61c0d3b,
0x6d101d9d,
0xe0946840,
0x1e88337a,
0x00057e8c,
0x3a4be369,
0x032fef77,
0x251f9bf1,
0xf898feda,
0x7da279d3,
0x4390b35c,
0x3d868ba6,
0xc36074db,
0x7ff49b6f,
0xb6d11000,
0x06cf9960,
0x19606982,
0x2c260c06,
0x0259ff95,
0x24d00f08,
0x7da0ec44,
0x4d60f00d,
0xfe033082,
0x321832dd,
0x82057b8c,
0x03169eb0,
0xfbff6cfe,
0x7f54cb97,
0x9532f070,
0x4f4dab40,
0x5efffc1b,
0x592b2fae,
0xa23e1020,
0x7ff00009,
0x03f66d9e,
0x3efe6d82,
0xf03dfb69,
0x1ffe80df,
0xc911b6fe,
0x5ba9fa9e,
0x9963137b,
0x7fc01190,
0x83b7fbfc,
0x16bbd28c,
0xfa70ffbd,
0x4916c4d5,
0xc88316a6,
0x367f6c4b,
0xff6c0508,
0x09a21d20,
0xe48bb596,
0x1d648fef,
0xb7816500,
0x132b6986,
0xf581aff7,
0x06292def,
0x2bfd6497,
0x013eefa7,
0x97046a66,
0x3b81effd,
0xf892fe49,
0x6ef2044e,
0xd37ded75,
0x12df73fd,
0xf892fe49,
0x6ef2044e,
0xd37ded75,
0x12df73fd,
0xfba76993,
0x344b6b66,
0x146cff04,
0x48268b6c,
0x58fbb1b7,
0x40339f70,
0xb7f70007,
0x36011ff9,
0xb9fb7fdb,
0x6c8f69b6,
0xdfe7b050,
0x2bd7f3f6,
0xac4802b3,
0x040ffd01,
0xc4e5aa84,
0x0e262ffa,
0xc7cb02d9,
0x76bf6991,
0xf4c9f1b7,
0x6743603f,
0x3ffff640,
0x062ad785,
0xf8c3b259,
0x66d7e197,
0x8f3860f3,
0x6dd6fffe,
0x864ef5fd,
0x0009b70a,
0x0d49f9f1,
0x3ffff37f,
0xd6ee65fd,
0x1c826db2,
0x1883e07f,
0x1fbaffb9,
0x4c43edf7,
0x1816bff0,
0x0009be9f,
0x144bedb8,
0x0efe3c05,
0x7eda6e22,
0xafe47fe8,
0x620ff22f,
0x48d812fa,
0x4d372cb7,
0x96c3ec00,
0x7fda4406,
0x97476004,
0x36c10d1c,
0xffdf60db,
0x5aa63b05,
0x0812df3e,
0x6fc31d38,
0x5809f52b,
0x4d483b02,
0x9943fd80,
0x4d41ff90,
0xebfa03e4,
0x7db7717e,
0xe003a09f,
0x7366e00f,
0xf9f690f6,
0x0e5b401f,
0xff837605,
0x16fe4bf9,
0xd7fdd1fe,
0x7d27bf27,
0xf85679ff,
0x2c42cb0f,
0xf7dc3ec8,
0x59fba7bf,
0xeefbfe1b,
0x5016ef41,
0xf7dc3ec8,
0x59fba7bf,
0xeefbfe1b,
0x5016ef41,
0xd95210e9,
0x7b7dad8f,
0x4cfe3dcd,
0x1fbec9fe,
0x21bca91f,
0x76f91b71,
0x11ff7449,
0x6687e046,
0x260fd2d3,
0x50d327f2,
0x7bed31fa,
0x0c809bc6,
0x8e590991,
0x3f2e15ff,
0xcab52549,
0x0027900b,
0xe7e15f97,
0x67e4ee8f,
0x48613ebb,
0x7e31111e,
0x9aeeafc8,
0x1fd16244,
0x8000ad24,
0x39189f9a,
0xb801be9c,
0x1126c44b,
0xfa6f3604,
0x41efd456,
0x9f6c1082,
0x6400429d,
0x9cfcb5f1,
0x16732489,
0x066800b0,
0x01f78d93,
0xfc2bff80,
0x7d508fdd,
0xfb7a49ff,
0x5a07681d,
0x4b75776d,
0x6fdd94a0,
0x33ff6884,
0x6fe73246,
0x0487d1d7,
0x6d9e45fe,
0xc1e631f3,
0x0fd53e9f,
0xf8ff8188,
0x67fb76db,
0xc79a4b5b,
0x241ee307,
0x80d44712,
0x3fba5f1e,
0x37ff00c8,
0x7e36fbdf,
0x217cb061,
0x66fbe062,
0xc36c92a8,
0x7fc301fe,
0xcdd9b508,
0x7fc881df,
0x981db480,
0x00e13ff6,
0x36d0f5f5,
0x77613cf7,
0xd8214804,
0x3fe0b336,
0xfd12fa0d,
0x1042e985,
0xe5d3efd9,
0x6f79b20d,
0x1e69a593,
0x7b07f86e,
0xebb7c33f,
0x099a2d87,
0xf31030db,
0x00195bdc,
0xebb7c33f,
0x099a2d87,
0xf31030db,
0x00195bdc,
0xcc61fad1,
0x731805f6,
0xa1ff3bb8,
0x71a40599,
0xb7066f80,
0x098761f3,
0x9ee133d9,
0x57c4911d,
0xf84011b0,
0x2f669ab2,
0x7f2fb6c7,
0x1abf73ff,
0xd82efe6b,
0x2d17bb90,
0x0d2d332f,
0x0ff6dc88,
0xea53d208,
0x3de21530,
0xa263e234,
0x1039001d,
0xf22a4a36,
0x1bbe9bdb,
0x9663e030,
0x03006dbd,
0x2c272097,
0x27e2f810,
0x94be7616,
0x17c6c037,
0xdf700706,
0x5fff83d1,
0xbce07384,
0x614331b9,
0x4af973c0,
0x17ff591a,
0x0927b7a9,
0x342f7c0c,
0x32639327,
0x3fafd866,
0x76327bc4,
0x50785ff0,
0x7fb7f9d9,
0x6fe1fd8d,
0x0c13c8cd,
0x259a3ffe,
0x2df9e33f,
0x03d69264,
0xf4a03fb7,
0x7fe163be,
0x987ff216,
0x6a5dfe98,
0xd7d42c3c,
0x2f67dcd2,
0x05a3f3bf,
0x72391db9,
0x45ad257b,
0x40022cd7,
0x136337e8,
0x5d87e901,
0x3464803c,
0x41708160,
0xbee1a9a4,
0x6f8d27dd,
0x39f29efb,
0x4177b822,
0xb50f37e2,
0x46d30f09,
0x74784e07,
0x17c895e9,
0xec0494eb,
0x10175f06,
0x5d20bf27,
0x340ff68d,
0xec0494eb,
0x10175f06,
0x5d20bf27,
0x340ff68d,
0xc5fa440c,
0x123e4fcb,
0x168e5ec3,
0x33dc7dad,
0xe0027f37,
0x29cd8d1d,
0x34dc5a81,
0x4eace403,
0x29fb2593,
0x6f0dbfef,
0x5c3241dc,
0x0957e969,
0x06824c34,
0x5206e328,
0x23d9ace5,
0x491c716f,
0xffd8d845,
0x420b7bb5,
0x21a70340,
0x29092bf2,
0xdffcdbeb,
0x59eec4bd,
0x3782813e,
0x6d3f84f5,
0x0149d79b,
0x42d4f6da,
0xce21ea0b,
0x75986025,
0xe191488e,
0x4dc366c6,
0x95d81c3b,
0x62cfffcd,
0xb98be84a,
0x3f7d8502,
0xe7ebfee0,
0x01c3500a,
0xaa3f0c41,
0x09dbe7d6,
0xdffbffc9,
0x4d091f3d,
0xb792d00d,
0x766c3dcf,
0x8b0f87b6,
0x743e0e57,
0x2e913090,
0x34bddf8a,
0xf7ffa10f,
0x60cb922c,
0x3d0be053,
0x29776783,
0x10db4c60,
0x340d57e3,
0xb9fa21fe,
0x3028cd81,
0x0a0b7e00,
0x3fc807ee,
0x0908164f,
0x491b9fd6,
0xf9a60a5b,
0x07db7b99,
0x3cfbc162,
0x1e4007b9,
0xe7d54692,
0x06920804,
0xdcd1f800,
0x36d7ed4d,
0xf069ff57,
0x0dec8b61,
0x85d3ec00,
0x40cdf525,
0x09592443,
0x767329b2,
0x85d3ec00,
0x40cdf525,
0x09592443,
0x767329b2,
0x06d9b080,
0x3ab41af6,
0x832231df,
0x711913bb,
0xfbfc40aa,
0x5ff90c9f,
0xf81e7737,
0x7bf8524d,
0xfe0097e8,
0x7e7b4984,
0x12005bc2,
0x560f80b0,
0xcffc9f20,
0x70213006,
0x6f1a60aa,
0x3b60400c,
0x96dc017d,
0x037f614e,
0x02a38181,
0x7037e01b,
0x035081cd,
0x42194489,
0x82b803c8,
0x2089e0d4,
0x413c1bb6,
0x6861124e,
0x421c0480,
0x33b91c94,
0xf897f787,
0x7f7bfd83,
0xb827b5fe,
0x201be4f0,
0x81227e84,
0x30376be9,
0x26c90d81,
0x0001cded,
0xa44f7c25,
0x7e342278,
0xddfff0bf,
0x35fb821e,
0x0d00b3ff,
0x1ef6199a,
0x98186f6c,
0x63e45bf0,
0x78226dfd,
0x5bd03306,
0x0004f204,
0x2812dff8,
0x000bde29,
0x3ec4546c,
0x7d160fa6,
0x08f03c0b,
0xfff3e101,
0x5fffe00f,
0x600069c0,
0x67d6e270,
0xeede2681,
0x440ec880,
0xfefff822,
0x7d7bfc8d,
0xfc080c7e,
0x01ffe588,
0x281351ac,
0x011bde18,
0x474d01ff,
0x3ff5a176,
0xc02d23f8,
0x72046004,
0x008056dd,
0x70a99ff5,
0x34800160,
0x7d18ba2c,
0x008056dd,
0x70a99ff5,
0x34800160,
0x7d18ba2c,
0xf8ff306e,
0x0b76d13f,
0x06cad125,
0x1fc7accf,
0xc79a36a5,
0x03eca18f,
0xa493263f,
0x7cf5e2fa,
0xd6a65df1,
0x74fb5b7f,
0x75bc8a01,
0x16dbff00,
0x07f5f000,
0x3fb9a9e0,
0xf8dda717,
0x7c97963f,
0xb967ffed,
0x09eb5fff,
0xee625e69,
0x709f3fe9,
0xc840feb0,
0x3ffc0fbc,
0xfc948802,
0x30401be2,
0xee03d3b6,
0x6d9b048f,
0xb7e21ede,
0x2104b2df,
0xc8bc8fb5,
0x5dc8dfdd,
0x7a9d426c,
0x3c321f91,
0xdc5c07a8,
0x4cf03fbb,
0xced033fe,
0x76e7c402,
0x39812027,
0x02ef7039,
0xf893f6ea,
0x3301a27a,
0x28001ff9,
0x4579e9ed,
0xbb036e1a,
0x6ad120a9,
0x04100140,
0x78a13b90,
0x26039a31,
0x6030bf0a,
0x79838059,
0x71db636d,
0xdc2d8036,
0x71cd0f0f,
0xce019c5f,
0x7dc8a0cc,
0x81925aa0,
0x5f91a422,
0xf347f127,
0x6fd36cff,
0x30ddb3ff,
0x30212044,
0x6db8664f,
0x6ff9c2ba,
0xf8100d9b,
0x0477f35d,
0x03355c5f,
0x52fffde8,
0x4707c800,
0x08e7ebe0,
0x2b033411,
0x4dd37053,
0x3ffff722,
0x0d27e000,
0xd3fda3fc,
0x741ba009,
0xb125ffc1,
0x0ffdc5b4,
0xd3fda3fc,
0x741ba009,
0xb125ffc1,
0x0ffdc5b4,
0x009db433,
0x162d63bc,
0x25b6ebb4,
0x7efd1fe2,
0x9b5dffe9,
0x010b68a9,
0xd6833ff6,
0x12f18c8e,
0xff418cdf,
0x1e0dfb46,
0xefcc967c,
0x4cabcc80,
0xf8a6761b,
0x66476006,
0x7d258f7b,
0x3ec3ef90,
0xffc3fec2,
0x1eb9d24f,
0x03f57d36,
0x30071208,
0x157d4e31,
0x10a9c25c,
0xd1e0d21d,
0x382be256,
0x0779f95a,
0x6cbf2204,
0xc091dbd8,
0x1f6c1f15,
0x7e20be30,
0x30e8be4f,
0x90c9b6f4,
0x4fe71ff0,
0x0103fd78,
0x7bbcd6fa,
0xfbfc75b0,
0x4fd4128f,
0x0366016d,
0x017abf3c,
0xec003ad0,
0x3e9f75f7,
0x946f7e01,
0x5fbf018d,
0xf92a1137,
0x76c70f94,
0xcd78b104,
0x73c287cf,
0xd3f2ecfe,
0x3ae00034,
0x00ffb69b,
0x6f7fcb49,
0xcb74b628,
0x0f7fa811,
0x6fb0d633,
0x792f03f2,
0x79f03d00,
0x6c139fce,
0xc7ec0393,
0x1d5ffe83,
0x02ee81b4,
0x7e981f81,
0xb9887fff,
0x57c3a08b,
0xb3d609f7,
0x16f9dec1,
0xded27808,
0x792ff5fb,
0x6ec3ef23,
0x51a006a6,
0xe82ffeba,
0x3bcde81a,
0x4f3bbf4e,
0x15442962,
0xe82ffeba,
0x3bcde81a,
0x4f3bbf4e,
0x15442962,
0xdd1e17f8,
0x4de120b2,
0x00406848,
0x481fff43,
0x879105f9,
0x74e2d9e4,
0x830ce046,
0x57b23214,
0xa61a7e16,
0x145ec06a,
0xffa60c48,
0x7dac1df7,
0xf751fed1,
0x34f91df5,
0xa1a3bef9,
0x407c966f,
0x6c86d9b6,
0x10e3e021,
0xc8fe5df0,
0x6e6695e9,
0x076e846b,
0x05d36246,
0x602fef9f,
0x09dce946,
0x27f5af90,
0x228f56c2,
0xa6d16ef7,
0x1da09dd0,
0x32127c65,
0x7f9b8379,
0x21f40506,
0x01c73ca2,
0x232735c9,
0x382f1a04,
0x80c302e4,
0x60fd1ccd,
0x816d0268,
0x3206ec03,
0x448deced,
0x09f47722,
0xed19cf59,
0x799750a6,
0x205d5e08,
0x01cc1297,
0xdb877b84,
0x3e4b53fa,
0x312202ff,
0x62d6c241,
0xf1f6e065,
0x29cf73f6,
0x337bf384,
0x3f547092,
0x023042c0,
0x4e397e9d,
0x0411ef07,
0x059ed379,
0xf1049237,
0x4c3b250a,
0xc83c3509,
0x678ae00f,
0xdeb288e2,
0x762c9a6c,
0xdf88c127,
0x493606b3,
0xd4c83f89,
0x3080cd96,
0x87da6e3b,
0x4dc4cffc,
0x07dc6ffb,
0x68966c8b,
0x278a13b7,
0x3cd77799,
0x07dc6ffb,
0x68966c8b,
0x278a13b7,
0x3cd77799,
0xff224e5b,
0x7f1f51bf,
0x26df7fa4,
0x003fbb0c,
0x0726457d,
0x2f7e4010,
0x7cdc0fb0,
0x5264818d,
0xdce592a0,
0x7de51fbf,
0x9c81c42f,
0x4edee7b5,
0xb122a3bd,
0x0e613be5,
0x19644c04,
0x70526b14,
0xdc8e48f7,
0x058725e7,
0x5ae890db,
0x37a7997f,
0x10f32abf,
0x6dc5de9d,
0xb6e40794,
0x6a86799d,
0x39019501,
0x72c6784d,
0x836713db,
0x4d96f400,
0x52029240,
0x1b2f3f22,
0xfc925000,
0x1827289d,
0x148e4038,
0x503bc3b0,
0x91266f61,
0x16de796b,
0xd7fd902b,
0x48668987,
0xdb4f68c9,
0x65ec5b72,
0x280f7840,
0x7ff1078f,
0xbfe6199f,
0x09bf7965,
0xfc7c4010,
0x6fbf4d74,
0xeedd30cb,
0x007f0366,
0xb41f7bfe,
0x765fe99d,
0xbe0437ad,
0x3f97fa74,
0x33652e3b,
0x76c37be7,
0x4a66d609,
0x6aefe00a,
0xcdb41cfb,
0x7ddb64f0,
0xd7125180,
0x06fc99bf,
0xa747583f,
0x7897acb1,
0x9d2361a0,
0x305bb3f5,
0x6003a988,
0x09935bf1,
0x5f74417b,
0x66233bf0,
0x5cfe4db9,
0x6fc67f80,
0x001bb3bc,
0x7a27df70,
0x01048c28,
0x38b0027e,
0x27678221,
0x001ff800,
0x01048c28,
0x38b0027e,
0x27678221,
0x001ff800,
0xc4dca6f1,
0x1073c364,
0x477c8401,
0x6c07e50e,
0x09e3219b,
0x6d04b941,
0xcfedf208,
0x0dc2a474,
0x4c9f03f0,
0x72076993,
0xceebc1d7,
0x011b11af,
0xc6d25160,
0x7c85e677,
0xd112606f,
0x41fae48f,
0x188ff203,
0x14fc80fc,
0x4763e008,
0x13db036e,
0x48d04e40,
0x0b58ff0f,
0x3e43e578,
0x7ec91079,
0xc7427e7f,
0x7b23c07f,
0xf9048402,
0x35f08183,
0xdb6fc6f0,
0x6276c487,
0x02e3f7e1,
0x63d329ac,
0xe897fe40,
0x161f7f00,
0xc03e6f2e,
0x043bfe07,
0xb9c16c07,
0x48402603,
0x3cffc8fc,
0x64fbaf0c,
0x3be1f1db,
0x7ec6e4ee,
0x59e1ffdb,
0x02c98012,
0x27fd0a18,
0x0108e471,
0x999c6e17,
0x5619ff19,
0x22c00020,
0x527b7682,
0x041c0a3f,
0x0047fb7e,
0x10fd2024,
0x701801f0,
0xae1f414f,
0x7540fff9,
0x1b7211d0,
0x02d0c00c,
0xfedfe83b,
0x31c3ef83,
0xf267b604,
0x08320d8d,
0xb9b3ffe1,
0x6458bbaf,
0xbfdc2e13,
0x411e006d,
0xb317e9f8,
0x0ffb5ccd,
0xc0ce4806,
0x6c3e6c8d,
0xf78c6e85,
0x76d7736f,
0xc0ce4806,
0x6c3e6c8d,
0xf78c6e85,
0x76d7736f,
0xedfa4f92,
0x7a36f7db,
0x4743e37d,
0x43ef20cf,
0x387ab53a,
0x03f7efc2,
0xff4f7fe7,
0x79ae8369,
0xf8fc1686,
0x680585ef,
0x7eab61fa,
0x1036d2f6,
0x20df6e37,
0x1d4084d8,
0xecbbd753,
0x6edf23f6,
0xcfc41982,
0x691ba774,
0x5fddcb28,
0x0be233d0,
0xf1fc16cf,
0x0de6e004,
0x2805f72a,
0x3dab60d8,
0x0dbdb1c0,
0x4002d098,
0xaf6cea48,
0x6770c3e7,
0xfce3fe58,
0x6dc09020,
0xa1ff9e4f,
0x6f8ec371,
0xfadff764,
0x5fdb33f1,
0xf82b125f,
0x2cecbf81,
0xe7199ffe,
0x4853ffdb,
0xce92de12,
0x1eefe1cc,
0xf804262f,
0x04c083cf,
0x0e0d9192,
0x7dff20b1,
0x04944121,
0x630d800c,
0xa6da4dfb,
0x29c584e5,
0x702fffc0,
0x1ed3532f,
0x9866361b,
0x10bfe9bd,
0x9a7c7e60,
0x11bf074d,
0x27dff796,
0x0021e9b0,
0xec0db1fb,
0x590f1e01,
0x0d00b3fb,
0x6db0128c,
0xf1de93bf,
0x7dc2fd85,
0x60ac01b8,
0x3e64921b,
0x878cee82,
0x700296bb,
0xd268bad3,
0x27bb17f4,
0x0689ffe9,
0x6fb49780,
0x47d52d6f,
0x4df7ed3e,
0x0689ffe9,
0x6fb49780,
0x47d52d6f,
0x4df7ed3e,
0xbffc51ba,
0x59c1a124,
0x3624b248,
0x7b3f7f81,
0x8a039809,
0x4117f1bf,
0xecffeffb,
0x7ea6736e,
0xd8be4dfb,
0x5dc7e590,
0x880c74fd,
0x3fff6def,
0xdb187707,
0x36dfedc7,
0x266f48c9,
0x227fec4a,
0xba3000f5,
0x00016b1c,
0x207f7aa1,
0x7ea16a94,
0x1f477860,
0x05a6cfdc,
0xb00131bf,
0x443f6dcf,
0x27d3fe5f,
0x267f949f,
0xbdf1fe07,
0x48411209,
0xdfc7eddc,
0x05764dba,
0xd8189721,
0x325b79b6,
0x7b4b8f00,
0x7b5b3bd1,
0xeffd3a4f,
0x61407599,
0x3c8bffd4,
0x22497249,
0x9691bca6,
0x008063b1,
0xafa83324,
0x00433bfd,
0x376c9c21,
0x40492603,
0xffef4dfd,
0x1a7602ff,
0xded6586c,
0x6d0020b0,
0x4bf665d3,
0x26fd3f86,
0x8e824fb6,
0x5702284c,
0xf805f209,
0x485fbd9f,
0xb700de5b,
0x681b7bf5,
0x5b6c7dac,
0x40009f90,
0x31b4833f,
0x058f7ed3,
0x2822acef,
0x01444db2,
0xa243f724,
0x4f813ff9,
0xbfef6ef8,
0x1f891b6c,
0xf5902209,
0x1fcbef5f,
0xffffc806,
0x3f9290bf,
0x816f6619,
0x2db49ff6,
0xffffc806,
0x3f9290bf,
0x816f6619,
0x2db49ff6,
0xdbf7e0b2,
0x791fe5fd,
0xdbdec132,
0x5bd3f787,
0x7b60fce0,
0x7dbefc0d,
0x3f6468fc,
0x3677df6e,
0x7b71a049,
0x3686e082,
0xbf5e18fc,
0x5cdf049c,
0xc7e80ba1,
0x418ffbe2,
0xb60b023f,
0x37c5e0b7,
0x50030406,
0x49ddada6,
0xffe37d09,
0x00043fce,
0xbbca6280,
0x081f060a,
0x2666b2fe,
0x011f2208,
0x409cb0ff,
0x07d27f06,
0x9b787320,
0x12ff7891,
0x7f03b1f9,
0x1d64d807,
0x35fff601,
0x3ccfe450,
0xb49fff8e,
0x6e34ddc0,
0xcad181f2,
0x0437e5ff,
0xb8b7ddd2,
0x6ebe8f86,
0x504dac01,
0x0c2b2327,
0xf7ff340a,
0x4651c342,
0x3a059177,
0x6c9c2d6c,
0x380b7d1f,
0x4d1fde01,
0x3feb35e6,
0x17ec9d30,
0x8490b02f,
0x6d00fbff,
0xb961f217,
0x05c45f41,
0xfba0ff30,
0x37bfe20f,
0xfcd17007,
0x3e503317,
0x4811ffac,
0x26141bf2,
0x4da148e8,
0x363ac802,
0x27ade9b6,
0x00de0013,
0x5b3fcca4,
0x3c469730,
0xec99f7e6,
0x7e00fe4f,
0x89fceaff,
0x62772b01,
0x39dcf799,
0x68b2bfad,
0xdb6013f7,
0x075f1444,
0x3e9fee0b,
0x59332453,
0x34cc33f8,
0x70bf62e7,
0x3e9fee0b,
0x59332453,
0x34cc33f8,
0x70bf62e7,
0x76be9b6c,
0x58241338,
0xdbec00f1,
0x5eb7c3e6,
0xb35a039f,
0x4587f768,
0x2a10c82f,
0x5d0670e6,
0xef0e6134,
0x348079b9,
0xffe3e23b,
0x7836e7be,
0x45d80950,
0x0ba26019,
0x1b5123fe,
0x605fb1e1,
0xf840691b,
0x748c65c6,
0x85604f93,
0x703c39c4,
0xface76df,
0x70b921bc,
0x0767c0e5,
0x010a831f,
0x3c43ec29,
0x78c7f24e,
0x00fae16f,
0x16becfe8,
0xc97d35c1,
0x62c6b762,
0x9f9c6c53,
0x2d2c9357,
0x849ae045,
0x790f45a0,
0xef2407d9,
0x08d83fe3,
0xd89d6d5c,
0x724452c8,
0xbd6ffd84,
0x70e12a04,
0xfb8a4937,
0x7699125f,
0x649bfd2d,
0x16fa6852,
0xa903c3f9,
0x4e360cdf,
0x71dfe6d8,
0x49ea1272,
0xc6aeeb5c,
0x526a5d42,
0x21723d03,
0x46c120f4,
0xc924674b,
0x103f1ef9,
0xe4de7664,
0x6a7bb673,
0x08673924,
0x3c0063e8,
0xa1d9fb34,
0x11405b6f,
0x8f7c327f,
0x090490a8,
0x8ce4fbac,
0x4170792f,
0x8bae6618,
0x00accd89,
0xf125963e,
0x290893b8,
0x0928b5cd,
0x40202c00,
0x02eff112,
0x17112018,
0x0928b5cd,
0x40202c00,
0x02eff112,
0x17112018,
0xa0864a25,
0x003d64f6,
0xfe999bff,
0x03fffa4f,
0x010c0224,
0x02041af0,
0x30098000,
0x32007078,
0x137ffe1a,
0x726b7df9,
0x04046084,
0x30242286,
0xdc280234,
0x02c1702e,
0x88217303,
0x02e0efe9,
0xbece4935,
0x5ff7ebfd,
0x29674c64,
0x3d84500f,
0xde16f72f,
0x4da037bc,
0x45be46cb,
0x4b86c19f,
0xa17f9a01,
0x137c8e07,
0xb7fde386,
0x1003cff9,
0x40697704,
0x7eac032c,
0x5883f7ff,
0x5ef2e7d2,
0x0026021f,
0x4bff26f9,
0x1bfaf1cc,
0x40609a0c,
0xfac5ee05,
0x4011f08d,
0x6a5b8900,
0x3f7ef102,
0xd4110d26,
0x6ffc86f6,
0x36d8e38f,
0x77c01510,
0x0603deca,
0x12fffdc0,
0xcf022801,
0x73c9e3c6,
0x3cf21633,
0x0fc01dcb,
0x480445c1,
0x60886800,
0x8c037b20,
0x6982788d,
0xf8fccadf,
0x7226d82f,
0x78fd0319,
0x793fbfb9,
0x8cb19ff4,
0x7ec7237e,
0xe40bee02,
0x42404176,
0x27274001,
0x70213040,
0x00e8bf08,
0x7ee49a7f,
0x0702a5df,
0x40181004,
0x07f001d9,
0x0949d886,
0x9f3c7e08,
0x0df8107f,
0x07f001d9,
0x0949d886,
0x9f3c7e08,
0x0df8107f,
0x60dfcab2,
0x711c00ff,
0x78e1b1dd,
0x7cfe0023,
0x0ef0affb,
0x4ddfb800,
0x20709fff,
0x31d01a48,
0x7e400404,
0x26780cc1,
0x388190cb,
0x7a1f1fd6,
0x513e01ff,
0x0140f8f0,
0x29a3c0df,
0x64d6efe2,
0x3f4f91c8,
0x0fd81b10,
0x96e00d3f,
0x0018e37e,
0xb7c817c8,
0x10005631,
0x0cdc6e6b,
0x72c0ede1,
0x672381f8,
0x4fdd1e86,
0xa4de61e1,
0x12cfc00f,
0x41ba4e00,
0x1c09f6fe,
0x0a9a51fc,
0x40c95d00,
0x27580350,
0x7c37ed6f,
0xbc1c245b,
0x7d0fe6b1,
0x868b9139,
0x76c19307,
0x0f0221f9,
0x7009d031,
0xc81e31c7,
0x13efee7c,
0xb1003e16,
0x7fef1d8f,
0xbc003ec0,
0x0de9bf7e,
0xf3edb541,
0x008ce497,
0xa8ddd3ef,
0x11cd82c1,
0xe0bbfe5b,
0x480762f2,
0xfb002ff0,
0x59b13c2d,
0xc683f688,
0x01e8e0c0,
0x00d8ee4d,
0x073eed0d,
0x3e84ceb7,
0x177f8683,
0x120079df,
0x60261c00,
0x47a44250,
0x7d40c362,
0xff9b9f41,
0x5ef84033,
0xc4197e63,
0x303d0b04,
0xb90080d3,
0x76211b7d,
0x65342e08,
0x7c27c2f6,
0x110c48e7,
0x560e500f,
0x4020c520,
0x4800c618,
0x110c48e7,
0x560e500f,
0x4020c520,
0x4800c618,
0xf7fec1db,
0x51603f6e,
0xc7cc44d2,
0x628003b5,
0x101000a7,
0x0040060a,
0x8d8a97a0,
0x7ee5e00b,
0x197c3bb7,
0x71802b29,
0x0502ff89,
0x3fdb6c5d,
0x02020e04,
0x4e24e240,
0xef909f29,
0x3fe6deb2,
0xc01c0048,
0x73449291,
0x216b8649,
0x16626049,
0xcfec8204,
0x7fc002c8,
0xdf6c81df,
0x01601293,
0x27be44d8,
0x419c8a70,
0xd7d9084c,
0x73d4830d,
0x3b6fbe05,
0x5bf67c15,
0x225d9649,
0x001b7031,
0xde03c87f,
0x12fd776d,
0xc7ffbe01,
0x5677eb86,
0x7c03b600,
0x3bc0147a,
0xc01fc640,
0x3055e02a,
0x577db34b,
0x7e97f120,
0x1f2facdf,
0x103f5faf,
0x0505e6ec,
0x0df40228,
0xc9e68d04,
0x000ee278,
0x37fc079d,
0x0b830dfa,
0x381ad800,
0x3e008482,
0x6f3c0050,
0x08013005,
0x35ff8675,
0x6fc08005,
0xd4000380,
0x6b5b14b8,
0x66e803fd,
0x77d31403,
0x0627a02a,
0x563b9c85,
0xb5024c58,
0x3bad07c0,
0x5ffeec01,
0x09fc004d,
0xf93e8685,
0x13cd8cfb,
0xeff04bfe,
0x32401d06,
0x44eff67e,
0x2c8db4ee,
0xeff04bfe,
0x32401d06,
0x44eff67e,
0x2c8db4ee,
0x85074977,
0x167fa17c,
0x00236ec8,
0x6e7c8082,
0x443cbe2b,
0x03bc0bb8,
0xfd106e13,
0x4dd8e487,
0x493413c0,
0x5823c0ce,
0xb0801f6d,
0x36f48001,
0xa6a041a9,
0x1fc97259,
0xebfd1400,
0x103e7b5d,
0x02d3f3a6,
0x0048e0ad,
0xf9403009,
0x00c81c9e,
0xf882b496,
0x00331e69,
0x0d800067,
0x22420db2,
0x643daa00,
0x6b3d1c0e,
0x06dfbd25,
0x12930f59,
0xdc3470b7,
0x7fdf6d36,
0xf17a7f47,
0x180ddf69,
0xd89e30eb,
0x7d861ebe,
0x3a8208cc,
0x0c566421,
0x5e1c3af3,
0x723fde03,
0xf40190ef,
0x4470fdf9,
0x3172c084,
0x3fc24f27,
0xf7ffa063,
0x6e3ffe6a,
0xc081348a,
0x684096f3,
0xfdfc0194,
0x6d881505,
0x0100618b,
0x0cf6f7f3,
0x6c23744f,
0x2fc8137d,
0x89ff2ec8,
0x66f40919,
0xb0fd012a,
0x10276dc1,
0xd0032130,
0x5fefa260,
0x0567bfa5,
0x7eb7f171,
0x004b6d89,
0x102736b7,
0x6c23fd37,
0x6fc9642e,
0xdcc42d7a,
0x6fa17dbd,
0xf809909e,
0x1a3724f1,
0x3bf901fa,
0x6c124c41,
0xda976e80,
0x264b3e06,
0x3bf901fa,
0x6c124c41,
0xda976e80,
0x264b3e06,
0x24f04d6e,
0x74f36561,
0xd2e40fdf,
0x4efec00f,
0xeb03ec49,
0x5e3fcfc5,
0xa6d8b494,
0x6c70bbc6,
0xb6f3ff8d,
0x37d827ba,
0xd9e3e32d,
0x6d9bccbf,
0xeb77a3e1,
0x73c023ec,
0xdb2356fe,
0x29c01b0e,
0xb4dbf0db,
0x65809bf5,
0xaf656d23,
0x025b7bff,
0x43d12dfd,
0x014d326d,
0x13301626,
0x363b3444,
0xc3276ffd,
0x0080c36e,
0x4d00fff9,
0x7de7692f,
0x879e0265,
0x7fcfacf2,
0xe571797c,
0x66da0de7,
0x524291cd,
0x7d8be7d3,
0x7c936fb6,
0x7fdee178,
0x5f7f0df8,
0x115b03e1,
0xe5dcb9f6,
0x702de4b3,
0x1fdf6dd6,
0x37e1a1aa,
0xffc3de0c,
0x76868fe3,
0x9b59dc08,
0x7206f18f,
0xa5ddfe37,
0x75971f99,
0xffd121f8,
0x6f244daf,
0x705c43cf,
0x6d96cda2,
0x6297f702,
0x1fa93fd2,
0xddda6edf,
0x6d9093fc,
0x37e661b6,
0x0f3dc0d2,
0xd425d8b4,
0x3268d9b7,
0xdf5b3e83,
0x363b3fff,
0x83014211,
0x58adf4ad,
0xf800d3c8,
0x3fc47427,
0xa09800dc,
0x7ec58c21,
0xf014103c,
0x083dfbaf,
0x211f4dc1,
0x30225a4d,
0xf014103c,
0x083dfbaf,
0x211f4dc1,
0x30225a4d,
0x7ef640ab,
0x00846202,
0xc7b40f99,
0x1a17e24d,
0xf243f6c2,
0x0268b043,
0x83eca3f6,
0x2d8cd20b,
0x2834af04,
0x04bca21f,
0xd43c0882,
0x6c3005c7,
0x7f5fd1ff,
0x7bfe800d,
0xa16ee92a,
0x39f1f3b1,
0x0ffffc34,
0x3ea401c0,
0x33004642,
0x35c0ec4f,
0xffe6eebb,
0x690011bd,
0xf7dd3600,
0x602f900f,
0x7a1ce141,
0x06fb3b92,
0x1493a124,
0x003dfff3,
0x437fb427,
0x7fe6bffe,
0x21604e80,
0x7a603230,
0x07252581,
0x0244c964,
0xf88acd49,
0x5b3fe80c,
0xdb3dfe3d,
0x7e7b711f,
0x80061042,
0x4c640c01,
0xf96e4e5f,
0x3f4002f7,
0xf004073f,
0x703fe196,
0x43e40200,
0x0f493ede,
0xe47a28fa,
0x000093f1,
0x0b240bb8,
0x793cdff2,
0x23ebfbc0,
0x7ff7e6d9,
0x00e501f7,
0x10e804f9,
0x7b7c7280,
0x6db86271,
0x07fdff3c,
0x7f9f8138,
0x7c2647f9,
0x190024a6,
0x2a0bf3eb,
0x3b801ef1,
0xf80653b3,
0x00c02009,
0x07f009cb,
0x6c500594,
0x38200bb6,
0x25bb02d0,
0x18078012,
0x0067c0b0,
0xc002cbf6,
0x3580025f,
0x98e824f7,
0x6505e8d0,
0x43371600,
0x6d7080bd,
0x98e824f7,
0x6505e8d0,
0x43371600,
0x6d7080bd,
0x77099867,
0x1bc769e8,
0x2c2e4d3f,
0x56018d80,
0x8ce00051,
0x6fdb45b2,
0x246e72fa,
0x795c8cdc,
0xbfe9224b,
0x37fab6bb,
0x8419fe6f,
0x619b4ded,
0xcfd5e0ff,
0x0cd7c5c6,
0x3ac8f630,
0x33c7f6c5,
0xb3a32d4f,
0x0906ddb1,
0x27d31030,
0x11da889d,
0xcbf80d5b,
0x1fe12169,
0x68fd6b19,
0x310c33d2,
0x48e9133d,
0x01448f9c,
0xb393692c,
0x3e763bfd,
0xd710da7b,
0x1274ddf4,
0xa345f7ec,
0x5ecfa114,
0xfb600cc2,
0x760bf3f2,
0xf7b97c6d,
0x68909779,
0x0eefe93f,
0x52333b66,
0xc9387b42,
0x29019fbd,
0xa67367d2,
0x061fcd94,
0xfff7cfea,
0x4cc619bd,
0x03a9c813,
0x0f199ecf,
0xcbbd3bf8,
0x3c19500a,
0x23ee03b6,
0x481d4fbe,
0xde9f42c9,
0x5e1ff0d1,
0x7358dd80,
0x793e0003,
0x376913bc,
0x5da20e0d,
0xf0efb79f,
0x2e1377bb,
0x18ce275c,
0x1919cb44,
0x7a56e8dd,
0x72602c9f,
0xbff04533,
0x2327f35f,
0x14ff3bf4,
0x263585d4,
0xd487fa4c,
0x7df02b34,
0x92627cb9,
0x08043ff1,
0x00698816,
0x30651f12,
0x92627cb9,
0x08043ff1,
0x00698816,
0x30651f12,
0x01021859,
0x744df00c,
0x211701f5,
0x12e42c02,
0x0b2f0ad8,
0x5fc10003,
0xe02febf9,
0x25492483,
0x001df37e,
0x75869750,
0xf28a47fc,
0x19400e41,
0xad07eef6,
0x37d8c7f6,
0x1887b167,
0x60105d9f,
0x0f826c83,
0x3befe648,
0x513e0a49,
0x0e5d1ec0,
0xc76b800f,
0x1b6d1e9f,
0x02120dc5,
0x1d008458,
0x6277eb41,
0x3e2e03f8,
0x37fc0e65,
0x4fe47d70,
0x28a0fff6,
0x7f811b0b,
0x3d85a8d8,
0x01be149b,
0x0e109082,
0x34a45cc0,
0x01f493ef,
0x0070400e,
0xb9fa6e40,
0x0f5d5081,
0xb5202402,
0x0a75fe4d,
0xcf1be8d9,
0x7bed26bb,
0x58070106,
0x7ff483f8,
0x04846c2d,
0x202760fc,
0xf9404019,
0x13bcfc3b,
0x0340dbe0,
0x49ed079a,
0xeefe6580,
0x1043e00b,
0x06864080,
0x493bc178,
0xc88d6e77,
0x52f6241e,
0x02042554,
0x2104bc00,
0x05f0df2c,
0x7feca001,
0x87dd4f7f,
0x5a4f6edf,
0x052608fb,
0x084033e4,
0x08004601,
0x7de483f1,
0x1024326f,
0x0a27e856,
0x249c05ff,
0x59a97261,
0x4bec002f,
0x497dea9b,
0x249c05ff,
0x59a97261,
0x4bec002f,
0x497dea9b,
0x7810ebff,
0x009d887d,
0xdffe40ff,
0x7d380456,
0x3c83de01,
0x7ec4ffde,
0x0f938800,
0x6f80cfd0,
0xff8049ae,
0x08e55e01,
0xf50261df,
0x7edc5063,
0xfe82fc00,
0x763f3d04,
0xd803d7df,
0x4fc0b28b,
0x0051bfe8,
0x4fe09040,
0x25bc353f,
0x079e75bf,
0x68e9483d,
0x6d0be80a,
0x796cb1ff,
0x2fff2f7c,
0x2bff1601,
0x493dc00e,
0x369dffe4,
0x7dff220c,
0x6f007d18,
0x207e1358,
0x46dfa409,
0x0fe004f0,
0x1d1ff992,
0x6f603d33,
0xfe0872fa,
0x4241400f,
0x98e65e01,
0x09840b9c,
0x077cac00,
0x16c81fbd,
0x80ff91df,
0x7ec7dc82,
0x7cfffe1f,
0x6f001f1f,
0x25028839,
0x3276e400,
0x07c25605,
0x7f00d018,
0x0283f000,
0x6feffb6f,
0x06f19900,
0x08c01d60,
0xdf6c5e3f,
0x21bf3c96,
0x20808e04,
0x761b0278,
0xfb044008,
0x79ffbe43,
0x385b886d,
0x7fc00059,
0x058193fb,
0x07f8202d,
0x2b11b204,
0x0240f200,
0x07ec060c,
0x44089ca7,
0x47ff8804,
0x0dc1411b,
0xff2009ff,
0x740f37ff,
0xd8024982,
0x503e3d2f,
0x0503e658,
0x15c240f8,
0xc7d09e0f,
0x11760406,
0x0503e658,
0x15c240f8,
0xc7d09e0f,
0x11760406,
0x9ff28882,
0x1603f570,
0xed0232de,
0x0f0074e2,
0xd014016f,
0x5ec01d97,
0xb002a40f,
0x46187033,
0xdfe3f10f,
0x72788192,
0x5013db89,
0x27af37e0,
0xfce43a47,
0x05c99fe4,
0xf7cf817f,
0x2034b06f,
0xe10b4e05,
0x1d8dff97,
0xfa589d60,
0x7274e256,
0x2ff1076b,
0x5e3a2482,
0x4819ec7a,
0x77d27009,
0x9df828fe,
0x5e91389e,
0xde610201,
0x10a86fbe,
0xd49af98f,
0x5fb7f486,
0xef01f9f9,
0x0086d42b,
0x4ef8091f,
0x51401edf,
0xfc0f6123,
0x6dcf4c8e,
0xf80ff3c9,
0x3f69a7dc,
0x27ee1ffb,
0x648410a9,
0xce0491fe,
0x611d9a99,
0x04dbf94e,
0x49e083e1,
0xe5f7c007,
0x4071f0f0,
0xf7479348,
0x7be59d2f,
0xf17ac648,
0x763fcc41,
0xc6d503f8,
0x30805f7e,
0x00e691ff,
0x6ce1fa32,
0x0fbf53a4,
0x5b001be0,
0x5a97e501,
0x1f410278,
0x5963f346,
0x1fb7dfa0,
0x00fc1730,
0x044d24d0,
0xb8520804,
0x33a1e001,
0x4b0c09e3,
0x40d5c062,
0x1368ec08,
0x32fd1d95,
0x809e5684,
0x46d6d802,
0x1493b007,
0x105b7b78,
0x809e5684,
0x46d6d802,
0x1493b007,
0x105b7b78,
0xffee4ddb,
0x503680ff,
0x21000d26,
0x003be072,
0xfffff144,
0x010a8603,
0x1033b1ff,
0x693e5fbd,
0x3b9bfb80,
0x31f81df9,
0x001f7d25,
0x761ddf70,
0x33a003c1,
0x3fd80000,
0x47838801,
0x003a9ae9,
0x05676cdc,
0x07c063f9,
0xfd7bc1ff,
0x3fc4c407,
0x3f4381ff,
0x7f81c042,
0xb801a606,
0x29e09273,
0xd6480c40,
0x1dff0004,
0x10fe8600,
0x26fc8004,
0x96be41b0,
0x5064dff9,
0xa37ffe43,
0x3fec6fff,
0x036ff124,
0x103810ff,
0x7ef02c2d,
0x374419a2,
0xb065c82c,
0x00181021,
0x04f249bf,
0x7e77f190,
0x180116b6,
0x4c4061c7,
0xbc7c4ff7,
0x003b740f,
0x124e4efb,
0x413fe1f8,
0xdefffc40,
0x603bcdbd,
0xc039bb36,
0x3e2179af,
0xcb6d07fb,
0x37c3e335,
0xdffc088f,
0x092f2362,
0x7cf3b2e0,
0x01bfff05,
0x401804d8,
0x36391ffe,
0x081b501b,
0x401b60b0,
0x87e7816b,
0x7d42198e,
0xfc7fcdf6,
0x79ceed85,
0x7b588037,
0x01800bf0,
0xc5664e82,
0x0024827f,
0x0de7ee04,
0x13080070,
0xf89bffcf,
0x004bec3d,
0x0de7ee04,
0x13080070,
0xf89bffcf,
0x004bec3d,
0xd89c0248,
0x208273b8,
0x4ba233e0,
0x043fc18e,
0xb405813b,
0x4876e704,
0x5cd34844,
0x0ddffd93,
0x00ff4822,
0x21881b38,
0x1c04029a,
0x0cffff70,
0x88908cf2,
0x7da845de,
0x0e24153e,
0x1aa7e880,
0x3b8093fe,
0x77db0800,
0x604f0099,
0x0074e1fa,
0x6b27cd40,
0x01c93da0,
0xdcbeffa6,
0x5fef5249,
0x0520f58b,
0x3e25da94,
0xb0fd4bd2,
0x037fac99,
0x837c086d,
0x6fc0f1fb,
0xbf92d124,
0x07dff40f,
0x6b6549ac,
0x11ffe9b0,
0x2cdd449b,
0x00ac2381,
0x565af440,
0x1e403e0a,
0xded9f595,
0x083ff046,
0x10fbd2e1,
0x6da92392,
0xffff77b3,
0x5b939b5d,
0x44374856,
0x00083431,
0x1903f8bf,
0x0d448010,
0xfa13d6bb,
0x49ff0c8e,
0xc02a4880,
0x3f3d0003,
0x1602503b,
0x4da90c80,
0xc81a0340,
0x208f4fb8,
0xd6ec1fa2,
0x7ff81240,
0x39740005,
0x48200810,
0x3e93b862,
0x02efda90,
0x326cce0d,
0x6804c360,
0xb993ae7e,
0x7dbe6bfd,
0x7aeffe00,
0x703f3e9f,
0x789491a4,
0x6df6df0c,
0x3aefe8e6,
0x3d84eddb,
0x789491a4,
0x6df6df0c,
0x3aefe8e6,
0x3d84eddb,
0x17cbe00a,
0x4d243dc2,
0x9c341616,
0x2f1905fa,
0x520bb9e0,
0x011ec52e,
0x7cfec5f3,
0x31a1ea61,
0x4958c5dd,
0x780303e0,
0x3194b078,
0x6d1af195,
0x058ba80f,
0x0edecd00,
0x834fa45a,
0x4984adff,
0xc11e4e77,
0x0877d06b,
0x67d20be9,
0x0e033fee,
0x787c0801,
0x794738ed,
0x981dc1c6,
0x027f7d46,
0xb9fe0126,
0x1fe81e4d,
0x23d280f3,
0x13c9e898,
0x3c1ec5fe,
0x1985bd9a,
0xf839380b,
0x0b3ed9f0,
0x193b437e,
0x7d3ffe0e,
0xbdb7b1b3,
0x6bc5efb6,
0xb3c3fc51,
0x02d7218d,
0x8017885c,
0x49880007,
0x5ab8064c,
0x1f3c84c2,
0x891a0cc2,
0x13d91b4b,
0x10068035,
0x0bccd6fc,
0xf860807d,
0x2d83cc8c,
0xa5de73d8,
0x0a35deed,
0x03d65266,
0x012662c6,
0x65d1bc61,
0x7b3ce5bf,
0xf93f81ac,
0x65f86126,
0xfb02eef7,
0x78c93dbc,
0xf98ff047,
0x76f66c32,
0x37d28040,
0x65fec7d0,
0xc0514044,
0x126a0702,
0xc81f61f2,
0x188d00d2,
0xe1b676d7,
0x013cd900,
0x3c01c40d,
0x297f7ec0,
0x6ec28d77,
0x6fcc6466,
0xff260907,
0x70322ff7,
0x84dd99c4,
0x0fc0806f,
0xff260907,
0x70322ff7,
0x84dd99c4,
0x0fc0806f,
0x4fa3f007,
0x31fb2404,
0x802c4fff,
0x7140c46c,
0x078b7e25,
0x77d3fcd2,
0xb11991d3,
0x783b007f,
0xf8bbb000,
0x0fc88d76,
0xf81f6c87,
0x1160e1ef,
0x90038001,
0x03ff537d,
0xffd7bfd7,
0x7e1ffe91,
0x28dff72a,
0x3fcfc1b0,
0x524b9046,
0x60bfe066,
0x396c7ec0,
0x00ff440c,
0xfedc4f09,
0x3676ffce,
0x3263ee09,
0x52c00040,
0xcde1f2ce,
0x0f80121f,
0x16cc0400,
0x4af8a060,
0xbd8c10a3,
0x001617ee,
0xfa0c44f7,
0x23921cd4,
0xcfedfd3b,
0x00def208,
0x3e801701,
0x3fc0e040,
0x793f6140,
0x6ec80b83,
0xd898024f,
0x0fc40030,
0x4a5fb7c8,
0x5ffe1b08,
0x065e3910,
0x009f6d1f,
0x780a01fb,
0x0f40fef0,
0xe00208c8,
0x7e1b2766,
0x5fe3be24,
0x0fd01c60,
0x410fe406,
0x3eb7fd9e,
0x8003fefb,
0x5b3e03e1,
0x07345e13,
0x35c0104e,
0xfcd403f9,
0x723ce000,
0x07bd7206,
0x41a01bfe,
0xda4377e8,
0x7df80007,
0xd4fc90e6,
0x3148038f,
0x1127ad7f,
0x7d0327f1,
0x2e9be4e0,
0x60192b7a,
0x350e840b,
0x5b3b2c44,
0x2e9be4e0,
0x60192b7a,
0x350e840b,
0x5b3b2c44,
0xbed8c136,
0x65089009,
0x3891a2c0,
0x35404082,
0x20222d16,
0x1627cfa3,
0x41607d26,
0x06192d00,
0x3093f67e,
0x1a081e09,
0x21fb49a2,
0x7fbf0b91,
0xbb21f810,
0x1d4f17de,
0xdc75a05f,
0x7ad70dbc,
0x7d9a4dc8,
0x7a2a1f91,
0x07674c08,
0x531c0c4a,
0xd9219f20,
0x5fe41acf,
0x28200817,
0x1ea5ccf6,
0x7000187d,
0x7ce81967,
0xfbfb6fb7,
0x03d32ff6,
0x73fa773e,
0x16df803a,
0x27fbf6fb,
0x1a681a56,
0x7faa01ef,
0x36ee5ea6,
0xb811c0fc,
0x08c41e47,
0x7b03ffad,
0x3f668249,
0x31496e4a,
0x7ffb77ef,
0x4ff41ddc,
0x0dcfdc82,
0xbc0c493b,
0x400c8f69,
0xb6823e00,
0x10080a75,
0x01806435,
0x34a05fe2,
0x56fb2df5,
0x2b04cf46,
0x21dc99fb,
0x10108372,
0xc31c81ad,
0x0386c0a7,
0x6c1fe701,
0x5b4c44f4,
0x40890861,
0x1b9f6e30,
0x05980c90,
0x0fd8bce0,
0x9b7f7f89,
0x1d645ee1,
0xa1040f7b,
0x7ec81a42,
0x33e995a2,
0x0c43f135,
0x985537da,
0x5b2df369,
0x6c7ff046,
0x605f8647,
0xbf7ff0d0,
0x36ae4d07,
0x6c7ff046,
0x605f8647,
0xbf7ff0d0,
0x36ae4d07,
0xcf409385,
0x6c3e3e1f,
0xd7fc917e,
0x011b0b7f,
0x1013b7f6,
0x21bc5043,
0x508394d4,
0x057b9a61,
0x066a4957,
0x079a8ec8,
0xfd797a6e,
0x078836d2,
0x34f8bf22,
0x0fc70b8d,
0x45884871,
0x66ffd0f4,
0x67ee0129,
0x0243ffcd,
0xc743d17f,
0x310901d3,
0x227d0c04,
0x13c43f31,
0x1019779b,
0x200f1906,
0x18a101fe,
0x364fb34e,
0xf83d0441,
0x422fc109,
0xbffa4440,
0x7904f3f1,
0xd8bc7fff,
0x07b525dd,
0x83240ea0,
0x392d9a3f,
0xd913c044,
0x3da499dc,
0x060e19b0,
0x7f97c7f9,
0x008a320c,
0x6c381b66,
0x01fbfb74,
0x3ff55204,
0x1e10c857,
0x7edc9b22,
0x3c3e1022,
0x0fe72c82,
0xe8672648,
0x1786c18a,
0xf97c385f,
0x000c02c1,
0x70b7e1ca,
0x3b7f939f,
0xb688dec5,
0x38079ff1,
0x7e30410f,
0x218811f3,
0x02dd2af1,
0x620a0400,
0xa99b7f10,
0x111f9d60,
0x7e178a08,
0x60a49a22,
0x7bd37f09,
0x3b740cb3,
0xede019c6,
0x67fefbf7,
0xa1ec7e86,
0x0dc5a890,
0xfff9baf2,
0x6fbd80bf,
0x47f78a07,
0x774da4d1,
0x6f6fcd84,
0x590d834b,
0x13f82802,
0x76be2ea8,
0x6f6fcd84,
0x590d834b,
0x13f82802,
0x76be2ea8,
0x58df4300,
0x6ec7e867,
0xd7672d34,
0x0a83ff62,
0x431284c8,
0x056ecda3,
0xd9c76712,
0x3653b0fe,
0x889b66bc,
0x007f6a24,
0xd7d3ec7e,
0x17f987f0,
0xf9204860,
0x2905880e,
0x49bb60e6,
0x5cd47002,
0xbd7db6bf,
0x49620fd5,
0xbff41b89,
0x6c51f186,
0x2ff3335c,
0x28388490,
0x9fc3d9fc,
0x45a373f9,
0x949847f7,
0x35f002f3,
0xf91d8dc8,
0x2e5a1def,
0xd001700e,
0x3bd98e9e,
0x0027d640,
0x0e482532,
0x8f903003,
0x15424000,
0x1a255adb,
0x68aede4b,
0xb7d1ddf8,
0x05d7ece9,
0xa17bd948,
0x745d3984,
0x388ecc47,
0x76c72871,
0x0005a432,
0x02792f67,
0x0d3dff00,
0x4225ccbf,
0x035fee3f,
0x6152979b,
0xbcf2fff0,
0x219c9a63,
0xa6de1adf,
0x77fe180e,
0xaeba5ee7,
0x79ed2635,
0x58b00da6,
0x2464bf40,
0xbb618f30,
0x4bb7adcd,
0xc1ec2eb0,
0x26d93fed,
0xa0dff5d8,
0x34562086,
0x05644df0,
0x0dac5144,
0x9e4ec347,
0x6883dd7f,
0xc0df1d78,
0x0eb907f0,
0x89ecb810,
0x61592c6e,
0x19fdf606,
0x7f641e80,
0x89ecb810,
0x61592c6e,
0x19fdf606,
0x7f641e80,
0xe4dc1c3b,
0x7f04fa0f,
0xf71c4cc0,
0x69c00f7f,
0x176bd8af,
0x0016f406,
0xd9dd0434,
0x11db4cf4,
0x05898002,
0x2f1f3c35,
0xdbfdf240,
0x4dcffe31,
0xf813d0e4,
0x49ff7caf,
0xfc920e7b,
0x6fc81c85,
0x1f900f65,
0x1d3c0682,
0x17c74fbe,
0x687b0bb0,
0x07944a67,
0x36098373,
0x253fa727,
0x30089ffb,
0xa0afc1e0,
0x7000001f,
0x398570b7,
0x0ffd8650,
0x3b6115f4,
0x17c6e422,
0x1f008c00,
0x028086d2,
0xfda18f7e,
0x4fbfe27f,
0x200dc892,
0x7f509f97,
0xc5d05a47,
0x00080385,
0xdb23f5c9,
0x48080da7,
0xc320e845,
0x607c9097,
0x5801e835,
0x63dc10b6,
0x3b83fef4,
0x01efda6e,
0x680c8a74,
0x61f71a63,
0xb9fc2fc0,
0x1594e0f3,
0x3bf301c0,
0x781fdbe2,
0xbffb0ffb,
0x11fe3f8d,
0xd7fc8e29,
0x7c341d27,
0xf5f89a02,
0x271e4f8f,
0x8bb007fd,
0x0fc09d80,
0x1d1c4e47,
0x5ef9e250,
0x87640c07,
0x1414023c,
0x88dc0490,
0x70321e05,
0x8ac01e23,
0x647bee00,
0x1c0fce25,
0x524c826e,
0xe1987e51,
0x7e11016e,
0x0040ff5d,
0xffe6fff4,
0x0036ffda,
0xff5effbd,
0x0010004b,
0xffdeffe9,
0x003effc7,
0xffb9ffec,
0x0067ffd3,
0xffbaffd0,
0xff9dffc2,
0x00cbffef,
0xffb90063,
0x0056ffac,
0xfff4ffe7,
0xffb3000f,
0x00900027,
0xffb9008a,
0xfff4003b,
0x001cffe9,
0x0036fff0,
0xffb8ffe9,
0xffe2ffa0,
0x0010004b,
0xff9cffcd,
0xffb9ffff,
0xffb00001,
0x000d0052,
0x000dfffd,
0xffc0ffca,
0xffa5001a,
0xffbbffae,
0xffcbffc5,
0x007effc4,
0x0023004a,
0xffa5003f,
0x005c003a,
0xfff0ffa1,
0xfff4ffc5,
0x005c0035,
0xffb20017,
0xffec008a,
0x0031ffb6,
0xff83fffb,
0x0056ffce,
0xff7bffc1,
0xffac005a,
0xff1effe0,
0x0055ffa8,
0xfff90031,
0xfffd0072,
0x0008ffb1,
0xffe4003b,
0xffd8ffd6,
0x00660053,
0xff660017,
0x009c002a,
0x006900bb,
0x007cfff8,
0x00810037,
0xffcb0038,
0xff6affc4,
0xffa30070,
0x003b005f,
0x1da4e2c3,
0x1f78f4f0,
0x02b2a1bc,
0x4c3fbd67,
0xd0ac6bb3,
0x8e89384b,
0x21045c53,
0xb458aec3,
0x87a631e9,
0xf505f2db,
0xdb3e4c79,
0xbc7b9583,
0x639a35c5,
0x11bca0e9,
0xa48f5934,
0x081e23c9,
0x09ce82d3,
0xbb19cad3,
0xab492c37,
0xeba8f4fc,
0xde6cfba8,
0x73d88b8e,
0x0fbf02d7,
0x7125408e,
0x5e420819,
0x19de0fcc,
0x64676849,
0x12b2a745,
0x406828ff,
0xcc34e5d1,
0x261369cd,
0x71f3ab99,
0x5db2df3f,
0x61990c7f,
0xacde22ea,
0x51a2812b,
0x1754ac2f,
0x8b90636a,
0x927af716,
0xf40b0505,
0x2bfab351,
0x814a692c,
0x8377b7e7,
0x0c326867,
0x2be233be,
0xcf6164c2,
0xb7bc2923,
0x59d423eb,
0xf8e0e114,
0x54a2bc05,
0xa76a168d,
0xbefcd7ff,
0xcdef55d0,
0xc189ce9f,
0xd1eb6765,
0xd408bdfd,
0xf3923602,
0xd6c95352,
0x5890fddf,
0xafcdcaeb,
0xa629b167,
0xfe74495f,
0xe17a681d,
0x1287f447,
0x1524c826,
0x68590049,
0x07e11016,
0x59890ee9,
0x0fbec1b4,
0x32c01920,
0x4963b048,
0x027e017e,
0x489080cf,
0x0e002242,
0x5e669169,
0x5fc00709,
0x37dfda4d,
0x33dc2d10,
0x6e9015f7,
0x264c1e3f,
0x0c9c66d9,
0x5bf7adfe,
0x52fbb1b7,
0x12eb948f,
0x7cc5bbe0,
0x1301d7fa,
0x05210240,
0x12380470,
0x7c9a82f0,
0x20283f8b,
0x06fbfe08,
0x492ea669,
0x8698296f,
0x42148002,
0xfbfc8234,
0x7fcda49b,
0x9796da6f,
0x5bd6c104,
0x030f93cf,
0x59491576,
0x449b91bd,
0x02ef20d6,
0xb6830b6f,
0x10258409,
0xe8c34af8,
0x1fbfe08d,
0xc819cde6,
0x5a383546,
0xfd11dbad,
0x4d359991,
0x049bffb9,
0x29600092,
0xb40290e0,
0x0e51d67d,
0x77affe68,
0x4ff724ae,
0x3881810a,
0x79909e49,
0xcf2165af,
0x0d33e4f9,
0x009c81af,
0x7d0c049a,
0x4e000ece,
0x5208900f,
0x6f910634,
0x7bd7f4fc,
0xdfbc0000,
0x026427f9,
0x7903c423,
0x194f410f,
0xb9c7f400,
0x023703ed,
0xdd90d869,
0x0107e009,
0x22fe023b,
0x137f736a,
0x4fe64e04,
0x1238e635,
0x272700b7,
0x7cc032f1,
0x4fe64e04,
0x1238e635,
0x272700b7,
0x7cc032f1,
0x692112be,
0x6fd9ca4a,
0xf100df35,
0x6e2cd4d7,
0x229d3e4f,
0x0876eab6,
0x4bbf6e37,
0x73cf7a7b,
0xb1fe2808,
0x5b047b9c,
0x9813f659,
0x762876e1,
0x9ea3b3b6,
0x1b36995d,
0x63d0b003,
0x0ff70e83,
0x95b28ce0,
0x0260514d,
0xe7fcfec9,
0x6d7a29f4,
0x511c6926,
0x64db5f92,
0x8ffed883,
0x03192b27,
0x410bd633,
0x36c49926,
0x46ec20f6,
0x09bffd80,
0x80efedb4,
0x76c2ed3f,
0xf7a17a02,
0x4dc515b6,
0x8da296ed,
0x101d2eae,
0x2149d46a,
0x3f955df2,
0xc9100191,
0x3ff7883f,
0x8a369957,
0x12698804,
0x3092c217,
0x163d0934,
0xc900f092,
0x7a6a1fbf,
0xdbffe665,
0x49adb240,
0x6647942b,
0x09e492aa,
0x06fd3e6c,
0x7c4a9883,
0xde93512d,
0x0037fe0e,
0xbebb357a,
0x6d9f800d,
0xbc83f41e,
0x10c694d1,
0xfbdafdad,
0x64886b71,
0xf7ad01a8,
0x6dc5d9f1,
0x976da67a,
0x5356ac84,
0x790b24b3,
0x3926ea67,
0x68159726,
0x3c616792,
0x9fdc490c,
0x2e5a01f6,
0x8d20bd2e,
0x7fc4edf4,
0x48b2016f,
0x7f5fc28f,
0x8d20bd2e,
0x7fc4edf4,
0x48b2016f,
0x7f5fc28f,
0xf427ff53,
0x76e48046,
0xf3ffe3f7,
0x7ffb76fe,
0xf34ffede,
0x2fc8380d,
0xa0037db3,
0x00229bf1,
0x218ffe20,
0x249016be,
0x897d2e27,
0x003feff4,
0x77df74fd,
0x76cfa870,
0xefff2f20,
0x1ec0a017,
0xd8ec01ef,
0x0437fbe3,
0xf8016d2f,
0x0dc5049f,
0xfa7465be,
0x7fcfe03f,
0x37ff807f,
0x603c8ff4,
0xfcbc09e4,
0x0ff8530f,
0x2ffca1f8,
0x7fa4f741,
0x06d3fe83,
0x08ba8430,
0x5783e3d8,
0x01c009e0,
0xf03fff81,
0x6540230e,
0x9b3400e8,
0x7ffb35f8,
0xbd906f3f,
0x38c91bcd,
0x6598a0ff,
0x3ffdc920,
0xb7337f30,
0x00049fe7,
0xa05804c0,
0x7e401a0f,
0xce181cd4,
0x7017a80e,
0x27fe6ba6,
0x49006d04,
0x90437f80,
0x76c1bfc0,
0x84dbde80,
0x69b96f60,
0x2ba521cd,
0x42321109,
0x35b409b0,
0x0ecb3809,
0xf85482ff,
0x007fee8f,
0x2291807f,
0x1df9bff0,
0xff834e43,
0x77c6e1a9,
0xffdfbff2,
0x584021ef,
0x997e1160,
0x12300277,
0xffac0000,
0x1698190d,
0xd7f48bf3,
0x097b7b70,
0xa807fe1f,
0x103a8009,
0xd7f48bf3,
0x097b7b70,
0xa807fe1f,
0x103a8009,
0xd9eb7e68,
0x2c53e80e,
0x27d36844,
0x395b1370,
0xf8013fff,
0x7f420cfe,
0x234026bb,
0x20bc2df7,
0xa26569d9,
0x56f8186f,
0x43bb6c07,
0x3ac0fc92,
0x831c6aaf,
0x790a8263,
0x07336e40,
0x1fffa40f,
0x36fb6c44,
0x335a0c70,
0x38dd7f28,
0x2edc2034,
0xd35e49ff,
0x4503290f,
0xf21c9c04,
0x1d116caf,
0xb3a60800,
0x740128ed,
0xff7c05bf,
0x3f4ae48f,
0x06001e4b,
0x05b7ec80,
0x06934be4,
0x2808e5dc,
0x0812df25,
0x403fe3f0,
0x07904b06,
0x2fdbe020,
0x87f5a127,
0x002c5ef6,
0xfe0037ff,
0x7f0653b6,
0xf02221be,
0x0900acd6,
0x965c7edd,
0x407f0296,
0x0410370d,
0x1fc26c50,
0x02a05730,
0x377b43b7,
0xff05b1b1,
0x60081d62,
0x3eff4000,
0x6d8c9a40,
0xf83d79c3,
0x2000ab3f,
0x4ef049f8,
0x3d0c267c,
0xd9eff0ef,
0x00da1ece,
0xc9980124,
0x1f5f2676,
0x04d77db1,
0x70007ff8,
0x38006dfe,
0x2ff4048c,
0xf89b97bf,
0x1839c3cc,
0xe843f041,
0x7314ce09,
0x0013ff48,
0x71ce2c90,
0x60fde000,
0x3004bbd6,
0x436469fe,
0x00223302,
0x59207f37,
0x404e808e,
0x436469fe,
0x00223302,
0x59207f37,
0x404e808e,
0x6eff7600,
0x4204b23a,
0xbcda6333,
0x7fffe41d,
0x010321c9,
0x4cc6db48,
0xdfd39008,
0x4be9f23f,
0x5e012038,
0x7e9c006e,
0xf90183b3,
0x001b0f7d,
0xfe9e5f94,
0x4964bb74,
0x37fb816f,
0x4ac02489,
0x9900d3f8,
0x6100100e,
0xe9fc366f,
0x6626e00f,
0x98057113,
0x70129bf2,
0xd7ffde80,
0x0bc0804f,
0x06cb970f,
0x3fc48280,
0x70feff00,
0x0c813fe2,
0x446381c8,
0x489b5fd0,
0xf803d3c4,
0x7f20000f,
0x00c480c8,
0x67c4e490,
0x36026bbd,
0x7dff8ed8,
0x050e4009,
0x2ec00d0a,
0x785ffff8,
0x7e3f17bf,
0x092d9320,
0x003d4008,
0xf007febf,
0x513ffc3f,
0xb007b5fe,
0x7c800ff4,
0xdf77ef5f,
0x1247180e,
0xfb003267,
0x7dca45b1,
0x90bff7fb,
0x05be4437,
0x79bd7e07,
0x00248016,
0x7f017663,
0x3ff36088,
0xd816415d,
0x473bf96f,
0x9ec36602,
0x3ff78ffe,
0x2ac3c607,
0x009a1bf1,
0xf498803b,
0x6c6f4699,
0x24df41b6,
0x4b3fbbfd,
0xfb21df84,
0x13c2e04f,
0xf57c9617,
0x0257165f,
0x4cfc53fe,
0x7da810e2,
0xf57c9617,
0x0257165f,
0x4cfc53fe,
0x7da810e2,
0x61f0f33e,
0x3769f8ab,
0x3561a5e6,
0x658b4431,
0xe6addd1f,
0x5b6253c4,
0xe083eccf,
0x63921482,
0xcfdb3997,
0x5240481e,
0x167aba79,
0x2d1c1046,
0xe07c5a60,
0x31f66fed,
0x5a43dd9b,
0x0df1cc1d,
0xf2cfbfb9,
0x42f6d823,
0x4063f24e,
0x71d989dc,
0x87ac6578,
0x7fb9f909,
0xc169e05b,
0x4b9b000e,
0x78024405,
0x0138d766,
0xbf0bf3a6,
0x63fba39d,
0x5044ce24,
0x26db4198,
0xb37b0fc0,
0x74d32a89,
0xf5b1b24c,
0x0337dc21,
0xf830f9ff,
0x07cdee70,
0xf4fdac00,
0x20acdd94,
0x35123ea4,
0x1ab943f3,
0xde5bbd1e,
0x4240d270,
0x34c0c179,
0x7f137cf4,
0x216fccc9,
0x7d1187f9,
0xf7f0ff98,
0x07ca5bb9,
0xf46e0eae,
0x20c18f6a,
0xd95705b5,
0x07ae6778,
0xe33241de,
0x6635f77f,
0xb84323b6,
0x792d9de1,
0xf30e8dd0,
0x451a5660,
0x336cf406,
0x48dd2378,
0x937b1692,
0x36c5a599,
0x6777faeb,
0x4fa74048,
0x5df9b76c,
0x51675047,
0x801b30c0,
0x4030c744,
0x54e5b713,
0x7ac96fd2,
0x26cb25df,
0x08ffd189,
0x54e5b713,
0x7ac96fd2,
0x26cb25df,
0x08ffd189,
0x4b10df7f,
0x7af6d73a,
0x410373fc,
0x0109e0dd,
0xfe810ba4,
0x16dfe361,
0xff18929b,
0x4201ff58,
0x5ccd8720,
0x483c0013,
0x371985fd,
0x780f72fc,
0xfb63e860,
0x32196c87,
0x632c65eb,
0x3fcdc252,
0x2bdbb1bb,
0x44808262,
0xb414d044,
0x1fe91faf,
0x30240198,
0x4dcff061,
0x336f89d9,
0x77993120,
0x3fa49f24,
0x1984c62b,
0x492e4b36,
0x7ddff989,
0xe080d7d4,
0x40981407,
0xfbd7ae49,
0x2fb483b1,
0x789213ed,
0x7a6d0cf5,
0xdf27e9fb,
0x6d9fe043,
0xef8210fc,
0x6d80c5df,
0x01224f00,
0x123de3a8,
0x3b03dcc0,
0x76020420,
0x4ffd3bf9,
0x7d08c987,
0x409181bc,
0x2599d33e,
0x9fba1247,
0x1f822dd8,
0x33dbce00,
0x14e93c71,
0xd9654513,
0x25542cf6,
0x051cfc02,
0x0219ec80,
0x80c54b3f,
0x04e38c7f,
0x1c7c80fe,
0x4a3a901f,
0x301b7cdd,
0x49801a79,
0x37247df0,
0x37fb6c91,
0xffd7ed91,
0x00680061,
0x0721b604,
0x07709fb6,
0x3de781b7,
0x4cb2207f,
0xcd986f90,
0x22705dbf,
0x7f58d180,
0x4234c5be,
0x7ca4ad20,
0x40642c80,
0xdc909128,
0x333650f6,
0x7ca4ad20,
0x40642c80,
0xdc909128,
0x333650f6,
0x0c12c650,
0x0a3c0cfb,
0x3c04c05e,
0x68322099,
0xc30c9182,
0x120005ad,
0x34f0905d,
0x1d3d9a6e,
0x6801edb9,
0x4d820c53,
0xa4830c40,
0x7e241f9f,
0x04ef53f8,
0x77377fc0,
0x478810e6,
0x011e05b9,
0x2807c1fd,
0x5b24a028,
0xc82361e1,
0x104810c1,
0x44361cc4,
0x2fc8f07b,
0x61ea0e90,
0x5f829801,
0x402f9040,
0x28c0e0e8,
0x03d00934,
0x4c08e03f,
0x8fe721a1,
0x747d944d,
0x06c26c1b,
0x112803e1,
0xcdfd7027,
0x65df0276,
0x94f37dce,
0x5a437002,
0xb30f4017,
0x72931a91,
0xc11c9fbd,
0x3258001d,
0x9eee4222,
0x0f506efe,
0x0efe67b7,
0x72264c06,
0xe4000183,
0x6f2bf4c1,
0x076eb9b4,
0x10f60002,
0x84a09209,
0x77f7878b,
0xf87e497b,
0x7b18cf79,
0xe261417e,
0x5c661f07,
0x53774448,
0x6fbcfbe4,
0x1142b24b,
0x2c1ecfb1,
0x277fd8b7,
0x6a1ad1c1,
0x1ff383f1,
0x3264d689,
0xb3518a81,
0x4c009c0b,
0xfed77ecb,
0x73380153,
0x36e2f226,
0x003d047a,
0x183c37bf,
0x71bf7d8a,
0xce9f6376,
0x7e0fe00d,
0x183c37bf,
0x71bf7d8a,
0xce9f6376,
0x7e0fe00d,
0x3265ec86,
0x10844eb8,
0x34fb7269,
0x1a029544,
0xb411f643,
0x3f0005bd,
0x3f2c4004,
0x1e1fec5d,
0x817424bc,
0x6c3b7ff9,
0xfb7980c4,
0x68d7e14b,
0x4887c169,
0x227f26ff,
0xb0a00724,
0x24cf6afb,
0xcf894e17,
0x212f1ef4,
0x7a17c989,
0x18649e02,
0xc37bcc39,
0x2dc0a2ef,
0x83b605f7,
0x7809ccb1,
0xb6278c13,
0x7e138ff7,
0xc406fed9,
0x065905b4,
0x03e4fc03,
0x73f90cf1,
0x43e1d339,
0x3607cad4,
0x7de7104f,
0x5afee434,
0xb52c8110,
0x4faf9c01,
0xa503fff7,
0x05c9cc74,
0xe581efdf,
0x6bad3bbd,
0x84a3760f,
0x7ebc6cfd,
0xe35be13b,
0x1e681270,
0xa780a5a5,
0x6d64a00e,
0x47e05eda,
0x37c4c78f,
0xe06ff5c4,
0x08bb627b,
0x638300c1,
0x7d4487ee,
0x26cc6d94,
0x013ec0bf,
0x6415b3c0,
0x4da41fbf,
0xc21c3e35,
0x57da87f3,
0xc71c0170,
0x22673e86,
0xdaf64ece,
0x35cd2e03,
0x045a0ee9,
0x1f3d3340,
0x8763fe92,
0x003f1c0f,
0xf31ffc4b,
0x6ee45b80,
0xba9f6c61,
0x283b20ef,
0x30c38e29,
0x2f99166a,
0xba9f6c61,
0x283b20ef,
0x30c38e29,
0x2f99166a,
0x2010065a,
0x772d8141,
0x35c3fe59,
0x5ba97ff9,
0x46dd1711,
0x646481c2,
0x26eb3bac,
0x003e1360,
0x480c818f,
0x331b5350,
0xdc8a6f3a,
0x259b0c1f,
0x3421dedf,
0x103fe021,
0x3bed90df,
0x018855cf,
0xfeff6d01,
0x333a0bfc,
0x18936efc,
0x1fe59360,
0xf12f062c,
0x1d0bff8d,
0xb6dc0336,
0x2c0325b1,
0xf5e97c4c,
0x6ea7df6b,
0xfa2486f4,
0x25e03bff,
0x0925b201,
0x2d480880,
0x0903320b,
0x64812248,
0x3df02c7b,
0x4fcbfb9b,
0xb48403c8,
0x6f7edc99,
0x112f6cfb,
0x44769bbe,
0x212400c1,
0x3e8a45af,
0xf97f7c3e,
0x7436c8f7,
0x25412b36,
0x7f97cfff,
0x4267d6db,
0x790063d4,
0x7a410724,
0x1c07e67b,
0xbeff6cf4,
0x492e64ec,
0x58d89258,
0x2c66c140,
0xcf7cf9f1,
0x32267bfe,
0x585d9012,
0x2741081f,
0xc12281db,
0x069a87c7,
0x00bbbd29,
0x57c957f9,
0xe46e03fd,
0x447a194f,
0x34d0b3ff,
0x5131f309,
0x00136a27,
0x21269b1d,
0x90152d84,
0x3131801d,
0x2803b736,
0x0e801b68,
0xded1ce7d,
0x318ba932,
0x2803b736,
0x0e801b68,
0xded1ce7d,
0x318ba932,
0xced01a18,
0x4dd90164,
0xb7a6de7a,
0x3f3966db,
0xe20b9094,
0x4fcf63cf,
0x79876db4,
0x37f5e379,
0x06bbd049,
0x2c4064b8,
0x43225e5a,
0x4d9ec31c,
0xaf236159,
0x13ddb7cd,
0xcac893db,
0x425f35a3,
0x2d19a802,
0x284f9d92,
0xbfd0bb4d,
0x3fdd821e,
0x8600c2f9,
0x3b04fd06,
0xb4899227,
0x407c67ce,
0x948fd149,
0x3bbf0fc6,
0x18824824,
0x364b1cca,
0xcb2c449d,
0x62c1a486,
0x24d0e9c0,
0x12787ec0,
0x32ff76ba,
0x7d865be6,
0xb199fc17,
0x3d7984fd,
0xbbfb9858,
0x38b2e3af,
0x18172084,
0x0109a238,
0x15fe2028,
0x7b4c122e,
0xb33cc0d8,
0x6e391b66,
0xb1da6573,
0x16c4d29d,
0xfa0efdc6,
0x4d459c22,
0x685c5fb0,
0x125bc2a3,
0x0325f0b5,
0x3207ebb2,
0xdd9c6ef8,
0x0108cf64,
0x5cafe686,
0x12792c42,
0xfe643b33,
0x693c5372,
0x588e6227,
0x6a765bbf,
0x6a85ea7e,
0x75865a67,
0xf3327be1,
0x5081a4e7,
0x19d04ff4,
0x1f310a66,
0x30904ba6,
0x782581a6,
0x411204cf,
0x04da0646,
0x012683ca,
0x0fdbcace,
0x134e40d0,
0x51121fa3,
0xf62f1266,
0x7f981a0f,
0x134e40d0,
0x51121fa3,
0xf62f1266,
0x7f981a0f,
0xd7e56ea5,
0x2df48a2f,
0xa613e640,
0x09f74dc6,
0xf9124e7f,
0x1036bc47,
0xb3f00121,
0x4d80238d,
0xffefe9b5,
0x35b1c03f,
0x376f5c47,
0x76cbbb61,
0xb61c87d7,
0x0654d5bf,
0xf823fff6,
0x6d08cdb0,
0xcffc0916,
0x5fea988a,
0x88bc9cf8,
0x7586efee,
0xa00f9836,
0x2068799b,
0x97fc03d0,
0x7a5a7fd5,
0x00033ffc,
0x5249a363,
0xb9040602,
0x241f53d0,
0x3da1a5fe,
0x699bf6b4,
0x8693fe62,
0x1b849e6f,
0x35aa0e1f,
0x402dc5fd,
0x2696bf01,
0x2669294f,
0x87f04927,
0x563fa3f7,
0x3b636dd9,
0x6d9aeda9,
0xc360b09d,
0x3647e9b5,
0x7fb24199,
0x105b2489,
0xfb014690,
0x05e6d0dd,
0xafbfbe07,
0x000b194d,
0xa0de03e4,
0x7f9f7bbe,
0xa803cefe,
0x227f7255,
0xe0e716ff,
0x7fcfe005,
0xe49e4866,
0x143e8202,
0xd843a02b,
0x7be1749f,
0xd7d7fde0,
0x02dd0002,
0x32fd8aef,
0x311e8d61,
0x31743200,
0x08780bf0,
0xc8040643,
0x08462014,
0xcfc403fe,
0x7d9af22e,
0xfd024856,
0x54209135,
0x1a102e0f,
0x11bbfb0d,
0xfd024856,
0x54209135,
0x1a102e0f,
0x11bbfb0d,
0xb7d4800c,
0x215c3f2c,
0xe92ad93f,
0x1b43ddd3,
0x26c20856,
0x58223c01,
0x45060d35,
0x1dc42c62,
0xa09197b5,
0x74972f88,
0x603ecbfb,
0x165ac410,
0xcf96035f,
0x7ef4c7ce,
0xccf42c2d,
0x1bfc208f,
0x0651fc4f,
0x50c19b80,
0xfd272178,
0x758fbe44,
0x5a5c9f48,
0x24dc96d6,
0xfebe6c8b,
0x30249e53,
0xbfeee960,
0x446e19f9,
0xdff0b60f,
0x076cefb3,
0x6901b74d,
0x5e5737da,
0x28da0048,
0x706d925d,
0x69a52136,
0x78fbe7da,
0x5947dc04,
0x76c89c9d,
0xebbc69fd,
0x5f70074e,
0x922ca50b,
0x41bfc9b3,
0x7706afe8,
0x70edadcf,
0xfa4a4c22,
0x10a6865f,
0xf21953ec,
0x23dbedbf,
0x110896fb,
0x79f41b1e,
0xbd99b337,
0x71d7fc61,
0x2fe05a48,
0x1c088273,
0x0a27de25,
0x050020b6,
0x5cc73a01,
0x695d006e,
0x769566ef,
0x2dcaf29c,
0xfa09242f,
0x06649efb,
0x149a4d26,
0x69705a76,
0xd30021b8,
0x009a197e,
0x26a45c90,
0x7600c59c,
0x9c245a8f,
0x7902828a,
0x6f42f0db,
0x5fbae413,
0xc9b76fe5,
0x4f34c442,
0x6f42f0db,
0x5fbae413,
0xc9b76fe5,
0x4f34c442,
0x6e63f1e9,
0x6dbff59f,
0x9b989906,
0x213a60fd,
0xc80a6622,
0x32ffda5d,
0x80c700bd,
0x39c02d27,
0x498fb599,
0x1bd985a2,
0x5ec664d9,
0x0d9b24c6,
0x88144b27,
0x4100e170,
0x25244adb,
0x25e080fc,
0xd868084f,
0x16f80d89,
0x8126e30d,
0x7646c211,
0xe76c5de2,
0x68440b48,
0x51936163,
0x0837ef41,
0x06fc8f76,
0x7ec1637f,
0x4866c67b,
0x02607eb2,
0x1c8f7ff8,
0x36bce129,
0xd8104679,
0x688a7f93,
0x30f46fe7,
0x53392719,
0x88e9b73f,
0x53939b9d,
0x7e6403ce,
0x21a36faa,
0x4fe20000,
0x15dfff5d,
0xff1027fc,
0x63569df2,
0xe1c2f6a7,
0x43d46f66,
0x07d773db,
0x5268c3d4,
0x080cee3a,
0x2c77ffb0,
0xcbe6685f,
0x124edd6f,
0xd81ccc49,
0x76cbd01a,
0xd03dff58,
0x0c01c276,
0xdbcbecf8,
0x38305e05,
0x42ef8003,
0x01f7dfef,
0xb361fb80,
0x66cf5f39,
0x0bce27c0,
0x0839006c,
0x69940036,
0x16ff2352,
0xe050773a,
0x479eae1e,
0x77e400df,
0x7fae9f0a,
0x4c16eded,
0x0b69fc11,
0xd0267f1b,
0x3fb9200c,
0xfe91b6ff,
0x5a44fd81,
0x79924ff8,
0x68a03b77,
0xfe91b6ff,
0x5a44fd81,
0x79924ff8,
0x68a03b77,
0xf3e5f366,
0x4f30008c,
0x4e837dff,
0x7fe008d0,
0xeda05f36,
0x1efaee86,
0x6010dbbb,
0x3c3b380f,
0x3101cdbf,
0x4df200b1,
0xd8047fb7,
0x6026f80c,
0x280a7f7f,
0x36f36590,
0xc46bfec8,
0x7c383366,
0xa64801b0,
0x791a1b97,
0x38ff6fff,
0x7f4b74f1,
0x03b778bf,
0x7e378072,
0x602d8a9f,
0x0420041f,
0x1cbf9105,
0x0240ef88,
0x9f4033e8,
0x6fdff072,
0x48914607,
0x48b35048,
0x385fe438,
0x4ddffe85,
0xc77c323f,
0x490001e6,
0x0640f2dc,
0x5de81b70,
0x4dfd93bb,
0x138041b0,
0x4f021e01,
0x600eedf8,
0xebc04ff7,
0x02767f7b,
0x1c64b390,
0x72f61f9f,
0x9923e003,
0x7ef3e78f,
0xdfe800c1,
0x46402e96,
0x1fbcf737,
0x6efe332b,
0xbfffbf2c,
0x4c181f71,
0xc1276eff,
0x77c7e01f,
0xa660fc42,
0x71f97835,
0x689d70ff,
0x783007c8,
0x48c101fd,
0x32a013f0,
0x6f9081bf,
0x6f4cb67c,
0x4ffc0526,
0x3dcf2270,
0xe00376da,
0x4ffcf99e,
0xe3985d27,
0x7640fb7c,
0x5e0e2e90,
0x41cddb0c,
0xbb798132,
0x32188d80,
0x5e0e2e90,
0x41cddb0c,
0xbb798132,
0x32188d80,
0x08d16a46,
0x65b53574,
0x201c02f8,
0x21c01efc,
0x76fe6ead,
0x712b2ad6,
0xd84e7f45,
0x07cf1912,
0xb8f7c8e0,
0x401a1fd3,
0x3be4d484,
0x59212d06,
0x0b010ebc,
0x601bfc8e,
0x35b3cf43,
0x78f6973e,
0x7855481b,
0x1e0293cb,
0x1b0383a4,
0x32f836e1,
0x01f7c04d,
0x358b3666,
0xff91a7bf,
0x3eed336e,
0x3adbb44d,
0x56e9d12d,
0x6b23e44b,
0x72492846,
0xe129ee08,
0x36c3f813,
0x3fdac1c0,
0x5e9c9fce,
0x6fde01bc,
0x49badc6f,
0xa13c0fec,
0x5adbdf45,
0xa4edc3ec,
0x0281daf9,
0xea6e63ef,
0x0b1e0802,
0xf7dd86d4,
0x09d6e5a0,
0xb08483af,
0x73c6221f,
0x213b63d8,
0x2f4c9e2f,
0x24014000,
0x736fee79,
0x2a7b5d02,
0x0b80c7f2,
0x23398a04,
0x1168c124,
0x08003eff,
0x525213c1,
0x8cbc3ec1,
0x3da4d752,
0x647c181b,
0x712177ce,
0xd3466825,
0x024727e4,
0xff744213,
0x25c9c29b,
0x426c6449,
0x7c3b1e12,
0x48118e50,
0x468047db,
0xf182ef45,
0x11c63fd5,
0x6090fe00,
0x794d806e,
0x9703f190,
0x0048e60e,
0x6090fe00,
0x794d806e,
0x9703f190,
0x0048e60e,
0x9bbe4c30,
0x6c80b47b,
0xc92ff07c,
0x09778237,
0x9500cc64,
0x2137e42d,
0xb1008088,
0x22f1780b,
0xc8fffc0a,
0x44d0eca3,
0x71a900d2,
0x008217e3,
0x100417a6,
0x0377b349,
0x0babf3c9,
0x79c05048,
0x461ad06a,
0x698bbc1e,
0x3f3f6513,
0x091c32b0,
0xdb2fed53,
0x16f8a4cf,
0x8f22ca8a,
0x70053f60,
0x07a3c4c2,
0x3fe67099,
0x3bf17f32,
0x6aadfc80,
0x069648bf,
0x049ea4f2,
0xaf3ff860,
0x13eb5dbf,
0x210f4bdd,
0x4940ac4d,
0x4c215e07,
0x291ddbfd,
0xc3411112,
0x1fc92c05,
0x94926880,
0x01bcc21c,
0xfc483609,
0x1c806cbb,
0xb998074b,
0x30930bbd,
0x165bd367,
0x587e32e8,
0x1ac3a035,
0x05d81619,
0xf5b491a0,
0x79f5092d,
0x0877c041,
0x51140182,
0x006c0dfd,
0x09449480,
0xd813d63e,
0x66f9841d,
0xfcdf0281,
0x4bfd83e5,
0x40926080,
0x710d7332,
0x437678d2,
0x5d143fea,
0xff848049,
0x66c5d25c,
0xf11b4201,
0x05b669ed,
0xe4446fcc,
0x49a75f9f,
0xc33589e4,
0x3fbf8d88,
0x206c0027,
0x1009da10,
0xc33589e4,
0x3fbf8d88,
0x206c0027,
0x1009da10,
0xfbe521c8,
0x5040532c,
0xfff188df,
0x4b787f6b,
0xfa13fe0c,
0x3f678991,
0x80d895f8,
0x36efe80c,
0x0094f7f6,
0x0efe1fbe,
0x08c40027,
0x3d692998,
0xff03fd6f,
0x7c91e006,
0x684ca1bc,
0x4fd33bd3,
0x4f7ff925,
0x003d1bde,
0xff5199e0,
0x53701006,
0xfcf7cffb,
0x2d003701,
0x5dff0258,
0x7e25efbe,
0x94917bc9,
0x7cc92110,
0xdf449008,
0x0039ded7,
0xf6e3fbbf,
0x4ec21ef4,
0x84230840,
0x389e1c28,
0x20cc09f7,
0x776ea5b3,
0x3ffbe9fd,
0x7f3b3a6b,
0xfbf3fe1c,
0x4ff5ab6f,
0x010483ff,
0x100ee6c0,
0xfc186e36,
0x6fc6f58b,
0x4893b1ec,
0x37020e7c,
0xbe3c7c13,
0x00491f7c,
0xe0b8093d,
0x6dc08091,
0x9c804a3f,
0x4c1f01bd,
0x07f3d3d8,
0x6f816fd3,
0xc78fee81,
0x103a1aaf,
0x86d20044,
0x4fe41c10,
0x12ce802b,
0x3fff6f47,
0xfe8fe8ef,
0x0bbfca5f,
0x11900fe4,
0x7fc88b74,
0x3803fe5d,
0x137fe810,
0x2f7b6a1f,
0x62590ff2,
0x38cc07bf,
0x607b65c2,
0x400111ff,
0x203727f0,
0x2223a727,
0x4c400760,
0x85f405ff,
0x31bff27f,
0xc0b00407,
0x1b18ebf5,
0x85f405ff,
0x31bff27f,
0xc0b00407,
0x1b18ebf5,
0xf381a0c7,
0x7bbb9ec9,
0x02d86ff9,
0x7e76a9ff,
0x3a409ff7,
0x0ff71b9c,
0x4707cf26,
0x39bc4b7e,
0x40aa0a1f,
0x6e1b7fcc,
0x405c7769,
0x35ff1bdd,
0x100cc1f7,
0x4ad87045,
0xea03ce1a,
0x10ffbb47,
0xf7bbf681,
0x33db03d6,
0x40158049,
0x69c1e9da,
0x64af49f0,
0x79c19c0e,
0x4054c4ca,
0x3b477b03,
0x6888f7b8,
0x5e06d28e,
0xb7010438,
0x6e4457f0,
0xc4c20e07,
0x71c085f0,
0x07db3e34,
0x504b7218,
0x80e01723,
0x070fb649,
0x4140397a,
0x0eccd27f,
0x7f906f89,
0x2f00e3f2,
0xefc39092,
0x1b80e901,
0xe29c0807,
0x4c29e075,
0x7907fff9,
0x3cc0bf88,
0xa0dc8f40,
0x50d72c2c,
0xd8b4070b,
0x688d6924,
0x07641c0e,
0x2614c6ac,
0xb946ba37,
0x0ff7e779,
0x9cccd440,
0x4d721837,
0x871d69eb,
0x713a0499,
0x2cd83e44,
0x4ae39484,
0x387fc3d0,
0x7295287f,
0xf75a4088,
0x01b8067f,
0x4ce207be,
0x2e400dff,
0x894b0401,
0x30fafe91,
0xe89ae5b9,
0x303ee08d,
0xf86c147f,
0x31a84e4f,
0xcc03ee39,
0x7fa99d89,
0xf86c147f,
0x31a84e4f,
0xcc03ee39,
0x7fa99d89,
0x0b60ee3f,
0x3ec9e00b,
0x045305a4,
0x105914a0,
0xb8113501,
0x1b77d4ed,
0xbd7ca63d,
0x38f825e8,
0xf7dbe2fa,
0x1a0dfcc9,
0x0fff37ff,
0x52695210,
0x2801e80f,
0x3016e00e,
0x4ec684bd,
0x0da7bcea,
0xfc646fc8,
0x368fe040,
0x37065e8f,
0x323c9b52,
0xa575021f,
0x520fddbf,
0x01596fd3,
0x323d8c1e,
0xc8b78800,
0x708489ff,
0x09240c27,
0x0fe5dc1e,
0x26a3f23f,
0x701cbfd9,
0xf79bc1c0,
0x16a80e61,
0xbe77090c,
0x0e46e1b1,
0x08fccde4,
0x375530fd,
0xff09cc12,
0x1f2482f2,
0xad281d01,
0x018fe51d,
0x79f2a0a3,
0x0cec957a,
0xd91023ec,
0x4fb403fb,
0x0308dfb4,
0x0089e4f4,
0xb77009d1,
0x17fe5fd2,
0xe51cb291,
0x49b4850f,
0xfece6f81,
0x50009370,
0x60849535,
0x17cfe050,
0xd82db654,
0x3dc4e0ff,
0x05c20048,
0x4588404e,
0x779cacc6,
0x72c6f822,
0x07f36734,
0x6ebf3e1b,
0x41fdeda8,
0x59e90876,
0x9fa3ed66,
0x208d837f,
0x03240387,
0x25453a92,
0x830ff2ff,
0x6de24344,
0xdb242458,
0x36c0068e,
0x830ff2ff,
0x6de24344,
0xdb242458,
0x36c0068e,
0xa714e9a5,
0x003001f1,
0xfafefc3f,
0x6f18bd8e,
0x263d6803,
0x4e21637c,
0x00e21a28,
0x30c473f0,
0x05905e01,
0x01f6ef0a,
0xe707c200,
0x0e3f242b,
0x06b9be50,
0x643db360,
0xfcc3f3a0,
0x00001e55,
0x7d826fce,
0x6b7f188e,
0x07fc3c80,
0x403f30c8,
0xdedc5e57,
0x7a5f8d82,
0x4f7e1605,
0x0029002c,
0xd80b009a,
0x617fa3ff,
0x86ea6dc1,
0x7a69a07f,
0xdf5d3ffb,
0x3b64e006,
0xe4e41bde,
0x46fb430e,
0x9693d200,
0x41c13b2d,
0x027d0a07,
0x36de4dbe,
0x922d7cff,
0x12c86545,
0x48800324,
0x41e00c98,
0x807c833f,
0x09ede4b1,
0x0c008409,
0x6ed93d80,
0x0ce79f1e,
0x7f001009,
0x94f264a0,
0x60201209,
0x09250000,
0x661a1faa,
0x8030bec9,
0x7e02e37e,
0x7c881fac,
0x483e1000,
0x5dcc7e07,
0x7279ff1a,
0xff0217c8,
0x7ff4fbd1,
0x08bf9236,
0x6100fd30,
0x7c934b04,
0x2436900d,
0x02103207,
0x0324dfee,
0xb7d80ed8,
0x62f81989,
0xc8100140,
0x00ba7f96,
0xf97c9148,
0x7d0f8ded,
0x8ccacf66,
0x101d0081,
0xbe1a7aef,
0x7819df90,
0xf499c545,
0x37e275f3,
0xbe1a7aef,
0x7819df90,
0xf499c545,
0x37e275f3,
0x7bba095b,
0x798ffcd1,
0xc71658c4,
0x14c13466,
0x7c3eb867,
0x67f4a3ce,
0x0203489c,
0x5008bc07,
0x31c3856f,
0x113cfc20,
0xbe4adc0e,
0x2158df61,
0x3404a4c0,
0x30193429,
0x69c40d6a,
0x60e8e8cf,
0x3cdc02d9,
0x0d84e596,
0x7b778e40,
0x000f7356,
0x127a49b5,
0x7a46a843,
0x79786847,
0x20c9739f,
0xbb18d08b,
0x4c975e9f,
0x3b2e49f6,
0x4963b600,
0xe190f009,
0x5d8fded2,
0x4eb8c834,
0x3e180206,
0x671a02fe,
0x40d0084f,
0x4565b627,
0x07989bf2,
0x03f894d9,
0x694de5d6,
0x23866d21,
0x618ff48a,
0xc000c9c4,
0x78fea9b2,
0x5341905e,
0x30bf3c8a,
0x21316b66,
0x7ec3e889,
0xa6ce0440,
0x69ec79f7,
0x1997490b,
0x6cb5fe04,
0xb6cbfe87,
0x59743fa6,
0xe884d7fe,
0x02a18842,
0x0752adb0,
0x100e5ff3,
0x91d36e5a,
0x3f013a40,
0xe0200bc4,
0x33f6e4ff,
0x403c9c09,
0x2f8904c1,
0xfad8d939,
0x731f3b71,
0xedf1b136,
0x2738ddb9,
0x08988204,
0x0050075d,
0xca60d2cb,
0x07a8088d,
0xaea78040,
0x442ad9bb,
0xca60d2cb,
0x07a8088d,
0xaea78040,
0x442ad9bb,
0x5cf53c6d,
0x79844c30,
0x4007df68,
0x5d89726a,
0xc7f1c32a,
0x712391c8,
0x3d3a34cb,
0x02d7c612,
0x4dc0ecc4,
0x41b8cf77,
0x448bfd33,
0x34847306,
0x41e5211e,
0x19fa5e8a,
0x6736ce51,
0x5fb8bbdd,
0xee2c2c06,
0x4008350f,
0xb0378042,
0x6928fe58,
0xbf6418fb,
0x0c03784a,
0x94915636,
0x3998f271,
0xfcf0a63f,
0x66db2662,
0xe166dc88,
0x1245d216,
0xec2531d0,
0x2cb01c4b,
0x1b0701c4,
0x513cd646,
0xc7ec3114,
0x1b3eec2b,
0x06943cff,
0x04c37b46,
0xd4a85fe6,
0x46affb8a,
0x43639644,
0x453fc61e,
0xcb7c3a81,
0x69c6fbee,
0xe3ed6b3c,
0x0bb377c0,
0xc674c84a,
0x17f421f9,
0x093fb589,
0x73faffde,
0xe7876c4a,
0x2dcca367,
0x19177e71,
0x56740132,
0x581c0cbe,
0x1be84d20,
0x682f87e4,
0x5f9f8268,
0xed624033,
0x190619b5,
0xfb63c01b,
0x7ccb6a3e,
0xb7d0fd0f,
0x67b4c179,
0xfed8b95b,
0x73094dbf,
0x33ef88b9,
0x2f84ea40,
0xe732cf09,
0x01e8847e,
0x60884131,
0x060a3fbe,
0x21efdd98,
0x3ff6fff7,
0x60884131,
0x060a3fbe,
0x21efdd98,
0x3ff6fff7,
0xfaea65b9,
0x6ff94bff,
0xbfec6c7e,
0x7fbd3f0f,
0xb4e8068b,
0x06fbc3e5,
0x21109f9a,
0x61bfebb0,
0xf4c5b712,
0x7bff0bab,
0xf4ee266a,
0x6fcbfb8d,
0xfedfd280,
0x36f20007,
0xdcb002b8,
0x27d26390,
0xb6dbb32d,
0x521fdf3d,
0x07e96e03,
0x61c6ef9c,
0x26ffe390,
0x37ff72a1,
0xbefc203a,
0x3fe4ebfd,
0x800001f5,
0x3336ef8e,
0x0720ffff,
0x25e715bc,
0xfc038f30,
0x64c0a0d1,
0xdbe2f140,
0x00b60d6f,
0x7a01ee00,
0x768903f2,
0x96da65b2,
0x1fe7e0d8,
0x92f16c65,
0x3fdb5b00,
0x5a9c4fbe,
0x2c07e0b7,
0xd8fffc58,
0x26d65b70,
0xa6fdf358,
0x0fd91b4f,
0xd2210003,
0x7ffe2ff6,
0xfb6cfef0,
0x7d3a5b29,
0xd8c96dfe,
0x03c2c7f9,
0xa02ddf3e,
0x053feff7,
0xbef1b6db,
0x0ff651a5,
0x8c0341ff,
0x5da0201f,
0xfb2465d9,
0x320081fb,
0x04df7225,
0x1fff3ed9,
0xf6e900fb,
0x00c21d90,
0x83e74e48,
0x4db69bf0,
0xfb64f1f4,
0x76fb676f,
0xbbef83d8,
0x72605ccd,
0x907c11fc,
0x26dbf927,
0x0327bf92,
0x6fc25b6e,
0x907c11fc,
0x26dbf927,
0x0327bf92,
0x6fc25b6e,
0xfadc48d0,
0x4ecb638f,
0xd84e61f7,
0x7fbfff8d,
0x437880c0,
0x7bf69f8e,
0x046e029a,
0x7fe705f0,
0x0bd18049,
0x0883e1b0,
0xf15968d8,
0x4e9f84b7,
0xc3799278,
0x51deff46,
0x00526005,
0x77c020a4,
0xfa0206c7,
0x6d9f5d26,
0xab801a41,
0x2588c4b7,
0x7af22dbe,
0x350259ab,
0x201ab986,
0x01c847ef,
0x300c87ff,
0x3e605fcc,
0x7f207ec6,
0x7fdc0c00,
0xdb2fedfb,
0x0bc03e2f,
0x03bf86c6,
0x0cc7e8f0,
0x70d05830,
0x3ebe03a9,
0xf8fb9adf,
0x6cbbe4bf,
0xf60af8f0,
0x5fc9670f,
0xb00726d8,
0x118003b1,
0x5e3c2f49,
0x0bdfe060,
0x1c5f81f6,
0x29e897f2,
0x37d3694f,
0x12c07f4a,
0x276dbf36,
0x36effb02,
0xf6d8b322,
0x01dbadff,
0x01280aff,
0x4a04bac0,
0x27f020dd,
0x07309134,
0xf849feff,
0x54148fe6,
0xa7e005ff,
0x09c3db66,
0xfb7ff044,
0x02686d36,
0x34d197b6,
0x3258efcb,
0x27ff7c1b,
0x0f3d9f0e,
0x0f76ec22,
0x768078f0,
0xa2d997b7,
0x7c0c8784,
0xa89651fb,
0x7c191f06,
0x2b594bf1,
0x359ff96d,
0xd5e06f00,
0x4080dfbe,
0xb1aeffbf,
0x66785e54,
0xd5e06f00,
0x4080dfbe,
0xb1aeffbf,
0x66785e54,
0x28be3e05,
0x097d0154,
0x3c09083b,
0x4e4c0480,
0x47186478,
0x7ef61c11,
0x391805c4,
0x6de0eac7,
0x1dd241a0,
0x006d049b,
0xb8007083,
0x08838486,
0x2f4dfac7,
0x1bc5ef7c,
0x4ff6f07c,
0x714f5691,
0xfc8e051b,
0x08fd8263,
0x7e82cffd,
0x4ff22362,
0x381fee07,
0x567a027a,
0x8263fb27,
0x41bddcf2,
0x34ff7640,
0x6e040852,
0xfadcedfc,
0x7ee61c81,
0x3e0e4998,
0x4f79f187,
0xfa96032e,
0x13971ad2,
0xb9f2404b,
0x7dc93e12,
0xe4e260f9,
0x2840199f,
0x24db593f,
0x7e4e804e,
0x504107a6,
0x4e5c72ff,
0x6118941a,
0x1a60000f,
0x98801b5f,
0x123f36f2,
0x36a1b6cb,
0x52cfefd5,
0x0abd2e4f,
0x01f53e1c,
0x039e53ed,
0x40f1bfe9,
0xd704eff9,
0x7ff127fb,
0x01634e00,
0x4834d7ea,
0x58839da3,
0x56c4f262,
0x3ee3ad27,
0x09be4b8e,
0x04806da4,
0x0e7ac180,
0xe883fe48,
0x40804b40,
0xf8cc1046,
0x09bce46f,
0x6373fff5,
0x0b1918e4,
0x0765bfe9,
0x4ef222fa,
0x36920138,
0x68a91a66,
0x813bd6e4,
0x1fdb3f95,
0x36920138,
0x68a91a66,
0x813bd6e4,
0x1fdb3f95,
0xdeb48199,
0x7e4879af,
0xf6d98782,
0x7657c849,
0xb13b9a12,
0x14a1500a,
0x016f817c,
0x764f19f8,
0xe1d7e04e,
0x618be671,
0xbed94ba1,
0x7bf3010c,
0xc081d83c,
0x780df3e3,
0x1243cb6b,
0x1368fafe,
0x5f065280,
0x31ff5d90,
0x86006440,
0x08a015dd,
0xf6e7af14,
0x6c74b8df,
0x21259bb6,
0x48848df1,
0x487f09df,
0x7c289198,
0x8c9a6333,
0x0d08d20c,
0x60fc045f,
0x78233b49,
0x3ed7f968,
0x105bf6d2,
0x5ce3913d,
0x02106b82,
0xe4d8b3f5,
0x584084be,
0x3a03f3d8,
0x7278e238,
0x0be8dca2,
0x24e7f669,
0x5b7da2c3,
0x07ecf412,
0xb8a791ad,
0x6e44813f,
0x7c103714,
0x268b7850,
0xc6ce2938,
0x32cbfbda,
0xa8932789,
0x2ec7bd85,
0x78d8bcb6,
0x3482db52,
0x096d2026,
0x51a741f0,
0x960f403a,
0x72534c06,
0x37820138,
0x71353c68,
0xfff05ad6,
0x6640e010,
0xe6a2125e,
0x0bb77f8f,
0x6803d1a8,
0x02d9196d,
0xd4d00337,
0x6d08116e,
0x076f921e,
0x538f9ace,
0x7a50a1fb,
0x18dc427a,
0xcf60a404,
0x0f762dec,
0x7a50a1fb,
0x18dc427a,
0xcf60a404,
0x0f762dec,
0xce41f264,
0x0ef7f784,
0x7f612727,
0x110079d1,
0x5ccbc9d1,
0x0e6de1b9,
0xb66bb13f,
0x0f1b1bb5,
0xcf409c3c,
0x2dd741b7,
0x0e05d526,
0x7620f407,
0x8707c912,
0x21cce9f9,
0x9db87c7b,
0x3b7f0a6e,
0x037c457e,
0x39397b99,
0xde43655c,
0x7b865f82,
0x921383e7,
0x7eceb917,
0xc0da4bb0,
0x52cca814,
0x1dbc0fb0,
0x26c11b71,
0xc023160b,
0x0e3edbf1,
0xdee8632c,
0x60670c9b,
0x8f445cb1,
0x68196487,
0xa4b74e66,
0x03f3d0af,
0xc93349fe,
0x25fed8c0,
0x7ec085f8,
0x7634c01d,
0x787ff344,
0x6248e3f1,
0x9f23415d,
0x7003325d,
0xfc0e55ec,
0x0435a9f3,
0x5e845daf,
0x2ebb63de,
0x82fc06cc,
0x111a203f,
0xf4c41efd,
0x1a3b4dcd,
0x7fb5a05b,
0x3ecb208b,
0xde793a23,
0x26c373f9,
0x633df442,
0x2f197bb3,
0xa2dfb84b,
0x44c1285d,
0xfa643e7e,
0x29377a2d,
0x2b6bc682,
0x4fbdf269,
0x7ff1ff88,
0x00155e07,
0x1a0447e0,
0x215fcbf4,
0x7db4163f,
0x7f2efbd2,
0x66d97622,
0x1fdee89c,
0x8ff53adb,
0x137740b0,
0xc748de0f,
0x0fd2006e,
0xf2549200,
0x001fa046,
0xc748de0f,
0x0fd2006e,
0xf2549200,
0x001fa046,
0x232c0827,
0x50c90130,
0xa45fb741,
0x084e002f,
0x04dbeccd,
0x7ff401e0,
0x99ef05f6,
0x40800249,
0x03fff606,
0x71c98879,
0xfe4ffe18,
0x6f2124d6,
0x7bf88b20,
0x02a2da02,
0xd69b81e0,
0x7d249122,
0x1fe07aff,
0x02c993f9,
0x75839bbf,
0x648426d0,
0x380a6bf9,
0x75cd2d9b,
0x26d8bfcc,
0x77c4be2b,
0x44226d84,
0x0a0dc372,
0x04fcf83c,
0x042c9f88,
0x0d382fcd,
0x10316d1e,
0xb7749252,
0x4836cf2d,
0xdf58ddd3,
0x724df006,
0xf69ffeed,
0x6eedf0f9,
0x79bc0737,
0x02b7fd02,
0xfc92fe7d,
0x25dfb2cf,
0xbffc4196,
0x6dc3c261,
0xc419fb27,
0x3b2012c2,
0x276f4348,
0x5ca68404,
0xda4bc120,
0x131bf640,
0x0012004a,
0x79f2b5d1,
0x21a2f84b,
0x7e3c4ada,
0x9cbcc1c7,
0x0bbb93a8,
0x27cfa52f,
0x0224d378,
0x4fffcd74,
0x13ff444c,
0xc9fe9113,
0x6cac0479,
0x7802dbf8,
0x7702e1b1,
0xcf22ec37,
0x77f9410f,
0x07cbfe0c,
0x7900318d,
0x2348b184,
0x7d6fa8b2,
0xf803fff6,
0x506013c1,
0x18882730,
0x6f83e2f0,
0xf803fff6,
0x506013c1,
0x18882730,
0x6f83e2f0,
0x337b4007,
0x61877cf9,
0x37ff807f,
0x143f7a6d,
0xc04ddbd9,
0x326c1872,
0x74120210,
0x7d4866c2,
0x4ecdb608,
0x14af8d9c,
0x20a4013d,
0x7f31bf42,
0xb8d27605,
0x030029bf,
0x1883f73f,
0x6109b6a8,
0xdff3f304,
0x00097340,
0x47fff4ba,
0x5fe35908,
0x2afd702b,
0x197c4808,
0xd82657c8,
0x423f4899,
0x0723d9ff,
0x7fc67800,
0x06fa78df,
0x4b2c5fa4,
0xc49b82fd,
0x2028e3f6,
0x2967079b,
0x52336070,
0x78dfe807,
0x7f9bf060,
0xffed8059,
0x0d883047,
0x0003b203,
0x043608b0,
0x0ffcfe01,
0x00200092,
0xfa93d3eb,
0x7be4024d,
0x242ffcd8,
0x00125c71,
0x440a0d8c,
0x7e89800e,
0x10237180,
0x52c3659a,
0xe01e4cac,
0x7fc1103f,
0xf00001a0,
0x7fc02d9f,
0x23f3efff,
0x6e72490d,
0x9bcbf754,
0x73677051,
0xb84cd813,
0x7d500260,
0x5c880120,
0x735f8038,
0x02f6f3fb,
0x6b803db0,
0x049349f8,
0x2080bb9f,
0x07ee6528,
0x3369ff00,
0x03f3022b,
0x73e11f7c,
0xddf5f3ff,
0x5a221e9a,
0x07dd8526,
0x6fc6dbb2,
0xddf5f3ff,
0x5a221e9a,
0x07dd8526,
0x6fc6dbb2,
0xad8700fc,
0x3013e1b9,
0x43c9e521,
0x006dac0e,
0x98ca69f3,
0x462fb381,
0xfff00ee6,
0x09efbee9,
0x43684837,
0x669c2760,
0x44cf6dbf,
0x49e86b28,
0xd8dd200f,
0x497f61be,
0xb10d40f6,
0x6d0b2da0,
0xf101b276,
0x67275e61,
0xececdaac,
0x1476fff2,
0x78a7c983,
0x0b520ce0,
0x68eb5ca4,
0x0bf4cf1b,
0x18425813,
0x01f423ec,
0xb6fc3b9b,
0x30c36bb6,
0x765c00ec,
0x6fc56f07,
0xc805b0c6,
0x3fcff699,
0x8ffc5607,
0x203efb6a,
0x2033f9ec,
0x6dfc8f90,
0x08fded00,
0x74cfdcc2,
0xde9df7d6,
0x100c60e6,
0x9a1ff1de,
0x2dbf6e3e,
0xfccbb5fa,
0x1eefc866,
0xb3119bfc,
0x6c051990,
0x37933cdb,
0x5ebf5891,
0xb082657b,
0x08ad27bf,
0xfbec86c6,
0x74360442,
0xd1b633d9,
0x009b0ec0,
0xe47d3b6f,
0x1fbe846c,
0xfed113ee,
0x7fc30539,
0x6f64163c,
0x0a800899,
0x1f7addcc,
0x04bf8faf,
0xe4ec6cfe,
0x2e6421e7,
0xfd839afc,
0x44fb8f91,
0x2ec7f7f3,
0x72ed3f87,
0xe0a00413,
0x5026da67,
0x9ff7a897,
0x656edb6e,
0xe0a00413,
0x5026da67,
0x9ff7a897,
0x656edb6e,
0xd4921730,
0x26a9f236,
0x30e4080d,
0x731363e0,
0x4093c09b,
0x6fc035ae,
0x5bed8446,
0x6222ffb3,
0x0d5b520b,
0x7eef62ea,
0xd182fc72,
0x02bc369c,
0xb043c9f8,
0x03e01af3,
0x27dc1ffb,
0x4b2f2978,
0xf8040eae,
0x72527983,
0x8406595b,
0x0cffabfc,
0x77007e00,
0x4cd65219,
0xb2dc673f,
0x001a40e9,
0x86992149,
0x31fc8802,
0x5e40f73c,
0x5be5300a,
0xa4ba6459,
0x4a5b1e2d,
0x7fca920d,
0x0dfd30b0,
0x5e92410f,
0x47f15748,
0x86de6e5c,
0x53b340a4,
0xb7026071,
0x322670bd,
0xe80b00fd,
0x2347f61d,
0xd7cdbd5f,
0x00481f52,
0xd81cb100,
0x704247fb,
0x947bc088,
0x01017b5d,
0x0269267f,
0x32c2f80e,
0xe8b43380,
0x3b7b789f,
0x8fc18065,
0x1120f9fa,
0xd867cf72,
0x6a65246d,
0x83fb351d,
0x2d29a20b,
0xffafe19b,
0x38005ff0,
0x0c6d84ff,
0x343df987,
0x864ff805,
0x5df27c06,
0xe5bc1101,
0x638046be,
0x907790da,
0x07b67ef2,
0xe0dc17ca,
0x36b6e331,
0xd809f2da,
0x42fb5ffa,
0x0880c8fb,
0x6266b3fe,
0x19e84e49,
0x090b25b4,
0x57ec4482,
0x40d7701c,
0x19e84e49,
0x090b25b4,
0x57ec4482,
0x40d7701c,
0x42dc0ec0,
0x40bf8932,
0x6bf7917f,
0x09847bb8,
0xf893e527,
0x73409536,
0x377db617,
0x48f720cd,
0x62ec9000,
0x498ec4e1,
0xbec3ff7c,
0x2716fddd,
0x41de83f6,
0x7281ae44,
0x376c1a9a,
0x41fe6a6d,
0xf3a731c9,
0x32e7ffb0,
0xd41d6a2c,
0x5676a886,
0x9127080f,
0x0626c242,
0xa79394a8,
0x3d258248,
0xe56fa3ba,
0x7fd89d9f,
0xf3829227,
0x202a1259,
0xf6d31fdb,
0x33301c89,
0x376c0224,
0x61e65905,
0xe4fbfb2a,
0x493b4b6f,
0x800349fb,
0x000e7e0e,
0xf83ee9ed,
0x6fbb7ffe,
0x25fce61d,
0x7fc01030,
0x3c6fb7ff,
0x72378fad,
0x276fc92d,
0x7e2409f0,
0x3cd0b604,
0x3e5b22a0,
0x7c240382,
0x69c004b3,
0x3a740360,
0x60b65c9d,
0xdc099037,
0x2d44ebb1,
0x24fe91b7,
0x1c849340,
0x011407d1,
0x0feba679,
0xf08299fd,
0x7047ed8f,
0xd801f4a7,
0x14e2dd9f,
0x5ad04184,
0x2921bb72,
0x2efb7100,
0x3104c030,
0x07ecfe81,
0x3fd13008,
0xc5bee9d8,
0x6fb70cf4,
0xf98300c6,
0x34d78e86,
0xf7bff6c4,
0x7d20ffb7,
0xf98300c6,
0x34d78e86,
0xf7bff6c4,
0x7d20ffb7,
0xb8e76678,
0x1b19e1fd,
0x5a7f5ec7,
0x3c0041bd,
0x0cd91844,
0x27df899d,
0xca7e3bfc,
0x6627a1f1,
0xff0987d8,
0x00b3bc76,
0x2249f6b8,
0x0601bc98,
0x438178d4,
0x2fc40d8f,
0x04c1f2a0,
0x69c093f6,
0xc6e4801b,
0x719f5cf4,
0xffa0f3b7,
0x7d7fe874,
0xf83ca600,
0x0dd3841f,
0x6479dfbc,
0x3763eee7,
0x9483ff21,
0x7bb7c49e,
0x4e817ecb,
0x71860b8e,
0xa6e07ad8,
0x74c6fa7f,
0xfa27f3e8,
0x37bfcffe,
0x801c7f97,
0x1f309bf8,
0x73e06f24,
0x6ea084be,
0x91694df8,
0x3dbb17ff,
0xfdfd08db,
0x61d92217,
0xbfe80878,
0x7e058909,
0x20ffd7ee,
0x03c6ca1b,
0xf899801e,
0x0bc37547,
0xda7403b6,
0x7ff6dc06,
0x47c181c7,
0x21dbe1bf,
0x278b03c5,
0x32759d1d,
0x10e79eb4,
0x0ec90df0,
0xcdfb0441,
0x0e44dbd0,
0xfe6db61b,
0x6b97d14e,
0x7cec33fb,
0x72764e61,
0xf099ed20,
0x3fddf3ee,
0xf80181fe,
0x703721c5,
0xe6608fbf,
0x10c786e5,
0x3713ed6f,
0x31381ff7,
0x00a76fd8,
0x34ffab40,
0xc60e5e38,
0x318d32fe,
0x00a76fd8,
0x34ffab40,
0xc60e5e38,
0x318d32fe,
0x9de3ff06,
0x21c80000,
0x2d276ef5,
0x7fdd2d0c,
0x76bdfb9b,
0x61b89947,
0xb7258148,
0x61bf03f4,
0xee9f376e,
0x0fcffb69,
0x596fdba7,
0x067f1e02,
0xb68f0dac,
0x1aee7f6d,
0xddffb3e3,
0x2d46ba42,
0x8b2f6d40,
0x4bc93003,
0x6fd26ca2,
0x3d0065f2,
0xa8f53cd9,
0x4036210f,
0x5dffc1a7,
0x6dbf207d,
0xb6c5edff,
0x5bf813ce,
0x7b25bf80,
0x03dbfe8a,
0xf7b1aee0,
0x35f7e950,
0x16b66b20,
0x3f34cc24,
0x1c22fcd4,
0x492005fb,
0x23e26d26,
0x0034ada0,
0x036fabc1,
0x10c61c87,
0x437e68d0,
0x249bebaf,
0xb3e341eb,
0x207f438c,
0x0e0d0130,
0x727e0f6c,
0x5ef168c4,
0x779ad20f,
0xfbd13c24,
0x1241c5b7,
0x80129ab7,
0x2cffe7ff,
0xa79375bf,
0x1abafacc,
0x891c8c4f,
0x15f801be,
0x16ffdf17,
0x33068293,
0xdad8f608,
0x65ff1013,
0xbebdb8c7,
0x4befeb70,
0xced8719a,
0x4372720b,
0x2698049c,
0x333b5b62,
0xf75840dd,
0x011299f3,
0x381e8b36,
0x04c9392d,
0x7fde04df,
0x73da09f0,
0xbcd1f0ff,
0x0dac5109,
0x87013ebf,
0x3d9b627d,
0x0021b028,
0x0bff7c7d,
0x87013ebf,
0x3d9b627d,
0x0021b028,
0x0bff7c7d,
0xc4ba4c68,
0x17404011,
0xffd6b237,
0x003c8403,
0x81387ed0,
0x09cef04c,
0xbe02fe2f,
0x126147af,
0x741c4128,
0x0a3f5b81,
0xa4d8faa4,
0x105fedbf,
0x46d002e3,
0x53acf3bc,
0xa22c1344,
0x606304af,
0x4834ae3c,
0x4ad6c050,
0xd865fe2e,
0x0dafdc00,
0xecfa4817,
0x0938596f,
0x3b4805f8,
0x06399e79,
0x2964dfeb,
0x02134247,
0x497c9337,
0x7f26fff0,
0x4f60f1c8,
0x2ea9098a,
0x7b600324,
0x3c8fee9a,
0xdc0c105e,
0x0acb5562,
0x0b660c20,
0x418ffe82,
0xd367b005,
0x0475449b,
0x78d3ee86,
0x7f3ede83,
0x27fd5e49,
0x5d0ae090,
0x0e63fe1b,
0x6e920299,
0x007d4e88,
0x42242d8b,
0x389291a8,
0x007d9e10,
0xeba3fba0,
0x7dac2767,
0x04180504,
0x05b01fff,
0x8fdf983c,
0x7fbfe378,
0x87ff0026,
0x2fa8d7f9,
0xbffff018,
0x36d6f881,
0xbf12f437,
0x7ffd7c0f,
0x00299989,
0x1126c6b5,
0xbef9fe67,
0x571928bd,
0x99f34bb7,
0x23e929f3,
0x85c2c800,
0x7a3fc201,
0xde631da4,
0x3fe312ff,
0xc6326845,
0x2276b84d,
0xde631da4,
0x3fe312ff,
0xc6326845,
0x2276b84d,
0x68479a60,
0x11ff1582,
0x9c0fd500,
0x4de0fd9f,
0x7fab6dba,
0x73777433,
0x3188924e,
0x3ec1d37b,
0xdcd32ad9,
0x3cdbe096,
0xa5f08138,
0x0cfb6373,
0x09fbd3bb,
0x09376fe6,
0x9427fe74,
0x4986fd86,
0xfab8b213,
0x12364d10,
0x82db3d15,
0x702f4873,
0xcf28fc49,
0x11bfc2f6,
0x12c2d93b,
0x769bb34d,
0xbc120f99,
0x62efe761,
0x9a2fb2d8,
0x417c41ad,
0xce63a84a,
0x0dba1da1,
0xc7f1800c,
0x798db348,
0xbfe00915,
0x2af08491,
0x986be776,
0x7edf9d4a,
0xbf0300ff,
0x286cbb81,
0xfeddb7f6,
0x0f7bd78f,
0xffd853ad,
0x1fa75df9,
0x31dcfdb3,
0x3d8b7370,
0x53459cb8,
0x4241dbfe,
0x854968d7,
0x049f6eae,
0xfec1f1d1,
0x0d210201,
0x86a7cd00,
0x3ff4f6a6,
0x0015175f,
0x32bf6fbc,
0x497cb1d8,
0x7ffb6aaf,
0xbf577a77,
0x498d5ffd,
0xfc1c75eb,
0x4df97a2d,
0xfb784c19,
0x0da08321,
0xe7fe55d8,
0x3e228f96,
0x03219680,
0x22c7eddf,
0x0100fb0a,
0x03353f94,
0xf81df607,
0x58d076ce,
0x4b6bb5b4,
0x46a4f000,
0xf81df607,
0x58d076ce,
0x4b6bb5b4,
0x46a4f000,
0xcc992ff1,
0x2a60a436,
0x8f48120a,
0x332be03a,
0x5f1cffc2,
0x37e03772,
0xa0df036c,
0x35a4949f,
0x16857f04,
0x3ebb0966,
0x0b1baba4,
0x35772bd3,
0x9e6b2fb2,
0x03b4d28d,
0xfa33ce16,
0x62cce733,
0x7df38d36,
0x3e76db10,
0xf00677da,
0x4cc89981,
0xa39c59fc,
0x215a7606,
0x67076d90,
0x00d25fbb,
0xdb2c970a,
0x22827186,
0xc4b65221,
0x11f794c6,
0x92f754f5,
0x07501baf,
0xe103fdfe,
0x369a87b1,
0x6b6eb4fe,
0x5a64d232,
0x4c8cd74a,
0x27fb442c,
0x6cb2960f,
0x4df6c203,
0xac8327f7,
0x6ce731bc,
0x3faa707f,
0x7ec43b0b,
0xfd281f30,
0x13cb9662,
0xee658224,
0x765dcab7,
0x0067864d,
0x12d4d86a,
0x56f30149,
0x51b8b4a2,
0x096e5921,
0x1c1916c8,
0x4d4d3178,
0x26e0305b,
0x20bb1272,
0x07f6f036,
0xb78a5388,
0x1f68631d,
0xf6143f24,
0x50f715bc,
0xf892b79b,
0x51cc4fa0,
0x87064c4b,
0x12c6ea1c,
0xc6f213a5,
0x4a4221f1,
0x04938593,
0x361cde99,
0x68db96f9,
0x5314bff3,
0x05e1d359,
0x002f0710,
0x68db96f9,
0x5314bff3,
0x05e1d359,
0x002f0710,
0x3703e088,
0x343befe9,
0x37ac4dc8,
0x4e249761,
0x0368b600,
0x17e01da0,
0xcd7e0106,
0x707b9cfb,
0x3911977f,
0x77e7ff9f,
0x524be9fe,
0x7305d8bb,
0x3c119349,
0x7980766c,
0x07124ee5,
0x403f56f0,
0x041e7e06,
0x5e7f89a6,
0x22ec7e46,
0x4deb81b2,
0xfb6c9bff,
0x23f2f4cd,
0x39bf89ff,
0x520cfd88,
0xbe62edd9,
0x7da01c9b,
0xff640047,
0x12080c50,
0x0bfb0c8f,
0x09c68078,
0xbc03fdff,
0x16776fb5,
0x87c3fe38,
0x07eb7c8d,
0x337c049b,
0x37e007f8,
0x4b83be17,
0x33fa5ff6,
0x07fc09ff,
0x0e63e34c,
0x58b36fe8,
0x6fc011f3,
0x3b7ec1ef,
0x7f095587,
0xf80fac47,
0x0224807f,
0x312feddc,
0x7624c092,
0xe00036fd,
0x721d948f,
0xc01c97b0,
0x410403f3,
0xdbfff204,
0x1070d002,
0x5e83efdf,
0x00ff338a,
0xf00e6e40,
0x003ffd91,
0x781fe187,
0x4bdbfc34,
0x31384d41,
0x347fffec,
0x0767e138,
0x063b4c88,
0x74dbb5f3,
0x6037fff0,
0x7b3d80df,
0x21fa0f65,
0x07e0170b,
0x7d827e60,
0xf90c86da,
0x723416f1,
0x1fa4803e,
0x0316d22c,
0xde6ca426,
0x6299120f,
0x1fa4803e,
0x0316d22c,
0xde6ca426,
0x6299120f,
0xd5c2ece9,
0x27c48da1,
0xb3410aff,
0x726ecdbf,
0x2b669064,
0x3a648470,
0xfa6a777f,
0x169fbb46,
0xc49df340,
0x23644ce9,
0x005a6db8,
0x33221279,
0x436692e8,
0x60b91bbc,
0xf65a0f03,
0x25a67a06,
0x077d6140,
0x60f633f8,
0x019130c0,
0x6c335c9c,
0x07ff19bc,
0x6fa4ab59,
0x081a09d1,
0x73eec368,
0xf75aa600,
0x180d9bf5,
0xd37e13b7,
0x43536602,
0x36f8ae49,
0x591f48b9,
0x277e9301,
0x7ef6c05e,
0x979ff83c,
0x7959bff8,
0x376eb462,
0x2d96cd69,
0x27c3f666,
0x0913d3f0,
0x7c1400c0,
0x45b19d20,
0x3de3f412,
0x701abde1,
0x176b7efb,
0x685febb8,
0xcc81bec0,
0x41db75e6,
0x27687e22,
0x7268ebc9,
0xdaefe437,
0x4d2eed98,
0xf8e7b15f,
0x781fb687,
0x60b748c4,
0x4ac0be3f,
0xb365913b,
0x39b69410,
0x0779b9bc,
0x65efecfc,
0x09dec909,
0x40c0e1b2,
0xf6fe3885,
0x3273e5f0,
0xc7f06e23,
0x70b87c04,
0xb6899702,
0x02e6a635,
0xca2b725b,
0x6e27c023,
0xceea770a,
0x77fb3ffe,
0xeb20e7cb,
0x3fd90c3d,
0xceea770a,
0x77fb3ffe,
0xeb20e7cb,
0x3fd90c3d,
0x2885fb36,
0x7de0b24b,
0x7c919067,
0x00a7b019,
0xc7fbb002,
0x38b9dfd4,
0x2bec02ff,
0x4e1b3fd8,
0x79e2b4ff,
0x001a4208,
0x876e0820,
0x24490304,
0x417db607,
0x07cbfef0,
0x000a5203,
0x12409ffe,
0x16c6e5f0,
0x1d374170,
0x0063d9f8,
0x0e7e8ff9,
0x5ea62a08,
0x19493bf3,
0x70136201,
0x013f6cbe,
0xdffffcc1,
0x31e7df21,
0x87000a08,
0x37fa40bf,
0x15204ffe,
0x7fe089ae,
0xfa07fc36,
0x00d8075f,
0x2132d2ff,
0x006c0c14,
0xc09bf3fb,
0x5fc0b718,
0xbb980033,
0x7dffcda9,
0xeee6c5e0,
0x023e1070,
0xfffc0164,
0x7f580056,
0xad90312d,
0x093f600f,
0x016c04ff,
0x677ffff0,
0xbba741b6,
0x6ddbffed,
0xfc0a2530,
0x612ffdf7,
0x9e68017a,
0x37ffc600,
0x38a1e406,
0x4025e243,
0xb05c8164,
0x607b5ff9,
0x2a101310,
0x3303122e,
0xc8de4bb0,
0x5400097f,
0x0ffc02ff,
0x0035b0b6,
0x616e5a52,
0x343ddabb,
0xfbbc2e29,
0x7fe0de6a,
0x3fff7800,
0x401ff241,
0x8e91c3ff,
0x66ff67b2,
0xbf640217,
0x78fd7df1,
0x8e91c3ff,
0x66ff67b2,
0xbf640217,
0x78fd7df1,
0xc8c8fe87,
0x0fc26bee,
0x4b039101,
0x5ff8e668,
0xdfe42523,
0x48fd4805,
0xbfb2de02,
0x1eccbff1,
0xdcd9de2b,
0x019e4c07,
0xb91e7ffe,
0x76365f81,
0xa643b002,
0x3f87fedd,
0xf257f623,
0x3fefa2e1,
0x9497b5d0,
0x48c9b271,
0xfff30329,
0x2d07fdbd,
0x988a00ff,
0x5d87d23f,
0xb4c1deaf,
0x6c47053f,
0xa7e48921,
0x5c86f66e,
0xb5d24db1,
0x12c3e001,
0x91310e78,
0x19dd3bfd,
0xc571f802,
0x4d90046a,
0xfb64d2a2,
0x69682dbf,
0x79021aeb,
0x0125665d,
0x06975172,
0x20441a81,
0x07ef68f0,
0x00135a70,
0x08e57378,
0x3e688382,
0x63a48dfd,
0x780c0438,
0xb692b8a0,
0x7a5d9925,
0x3efc8ef8,
0x10c0e6f3,
0xbc9fd636,
0x2ffe07bb,
0x46ca1900,
0x0030d806,
0x0323963b,
0x113d1bd8,
0x4603935e,
0x7f8f85f0,
0xfcdd2f86,
0x6a3f4dde,
0x744c4860,
0x34aa4271,
0xe620fedf,
0x7d846303,
0xfb6c6c04,
0x00bea221,
0x939f0036,
0x0836d237,
0x4d3c6f36,
0x7f874ac9,
0xfbfc8402,
0x201d0933,
0x4e5044c1,
0x0c8ff732,
0xbff397df,
0x503ff067,
0x780289bf,
0x6e409863,
0xbff397df,
0x503ff067,
0x780289bf,
0x6e409863,
0xb810b36f,
0x7f2c03ed,
0x48897a07,
0x6bff7ff9,
0x7b83aff8,
0x039ae4ed,
0x77ebf8cf,
0x7fb6fcbc,
0x400291e7,
0x360b0cd2,
0xe4f0f15a,
0x2b84ec89,
0xc12fb694,
0x7fa8524e,
0x4b13f840,
0x103fffff,
0x280b0007,
0x0a400012,
0x47e7fe80,
0x00eec02e,
0xf8a490c1,
0x0dfd0105,
0x27ffa57f,
0x400007a1,
0xbe9fed7d,
0x71013c03,
0x4b019ffb,
0x1fc800b7,
0x97e7d7ca,
0x1e3edfa1,
0x47e36d6e,
0x0bfff252,
0x3893e134,
0x64c23ea1,
0xf9fe4c20,
0x793fdeef,
0xcf43be10,
0x7713e88d,
0x0c58008f,
0x487e9c08,
0x00f6817f,
0x3fc01e8e,
0x07fc169e,
0x4ec83ff0,
0xfdfc95c0,
0x21b94005,
0x6affffe0,
0x20097900,
0x01ffe1ff,
0x42668732,
0x7fc0b60d,
0x30401b02,
0x7b7f0044,
0x62c44961,
0x409ffc1f,
0x7fc0007a,
0x476435af,
0x7ec0bfca,
0xc90191bb,
0x1fef7803,
0x06fff801,
0x7ac87d80,
0x0fe80c56,
0x7bd83b80,
0x7cfc5df9,
0x0100dc93,
0x037eb130,
0x1220105a,
0x1d9c167f,
0x025f4746,
0xb11bf8fd,
0x2cc11fc1,
0x1d9c167f,
0x025f4746,
0xb11bf8fd,
0x2cc11fc1,
0x43c9a95a,
0x32e2a94e,
0x1fc281ac,
0x0346ffbb,
0x96dd8603,
0x0388d01b,
0x07200280,
0x630c3e02,
0x6e467132,
0x6000e48e,
0xd904f93c,
0x0176ff93,
0x389e7f17,
0x7fc371f1,
0xc1efd037,
0x60100260,
0x70efed39,
0x36637c8b,
0x1fc0cfb4,
0x00e79ac1,
0x002bc128,
0x693b140f,
0xf8af81c0,
0x4fd83f8c,
0xd7dd91cb,
0x004f82bd,
0x38939bdc,
0x08956260,
0xc0dd7fc8,
0x1d915eb2,
0x7811787a,
0x77ad7e30,
0xc79c0b61,
0x2dc81f1f,
0x06ffde64,
0x7703fffc,
0x22a1a879,
0x0fc1e3bf,
0x8c9089bb,
0x1403080f,
0xfcdc07f2,
0x07c3fd99,
0xf8d181fb,
0x05d81fdf,
0xc9fbf05b,
0x093e1f81,
0xf8fb697d,
0x03fcb7e9,
0x212490ff,
0x722d1511,
0x077c7c3f,
0x3026fc11,
0xffb71ef6,
0x1038385f,
0x375d81f3,
0x7424e098,
0x1f639380,
0x21f03f84,
0x47e121ed,
0x09dc1df9,
0x0d080a4e,
0x1a33e032,
0xe9ed0140,
0x341fe389,
0xc108a7f8,
0x10191c8e,
0x1643607a,
0x5de5f4b3,
0x1cb44027,
0x52214ff8,
0x289833ca,
0x5a7cde87,
0x1cb44027,
0x52214ff8,
0x289833ca,
0x5a7cde87,
0xca958635,
0x51ed5f79,
0xd9806ce5,
0x4b57fbfe,
0x3cc91827,
0x10481f61,
0xd690be08,
0x480960dd,
0x033d00e4,
0x71061972,
0x4697c08f,
0x63e5e3ce,
0x3892cc44,
0x1820edd9,
0x20fe037d,
0x7c3deb0c,
0x29d79e38,
0x2e1bfe2c,
0x2508bfab,
0x25ecdc36,
0x07b51aa1,
0x00f41dd8,
0x78db46f0,
0x38ade473,
0x89e25c30,
0x1d9b6c9c,
0x21258af7,
0x70ab3f90,
0xe9ad88c1,
0x04bb6400,
0x736df078,
0x1b60ac1f,
0x1c76cecf,
0x7f49366a,
0x2f3103c5,
0x406c1760,
0x5b0c4c67,
0x15e50ebd,
0x50026c58,
0x7907d000,
0x38f97e48,
0x5dd746b2,
0x94f880cb,
0x4dcd203d,
0xcc29acc7,
0x59fbf47d,
0x07bcb808,
0x3b781c1e,
0xf9a4c1ea,
0x6dc1f01e,
0x89859a4f,
0x027c0406,
0xbeee67df,
0x01625eed,
0x901002e6,
0x7cf80c8f,
0xd1fe5bc4,
0x123ccbf1,
0xb929b784,
0x0945293f,
0x37581194,
0x61ac9d19,
0xc6808608,
0x11c4c364,
0xa4b016d0,
0x4dff6151,
0x3302f020,
0x6836f4bf,
0x3b2cd834,
0x0dec1060,
0x49e00fa6,
0x48099e9f,
0x3b2cd834,
0x0dec1060,
0x49e00fa6,
0x48099e9f,
0x00c4bf83,
0x55b95b1e,
0x3a06482c,
0x2f09e001,
0xf80391da,
0x60057c2e,
0xbe977fbd,
0x73f91a01,
0x208dc5a3,
0x28023009,
0x07771fcd,
0x1dfde82f,
0xe7be4925,
0x2ebf5c3f,
0x0afdbbb9,
0x0019a342,
0x03fbcff6,
0x0604bc92,
0x9883853f,
0x77877045,
0xc419be03,
0x7000c20d,
0x78800e30,
0x0fa7f06e,
0xe86c04e7,
0x2075ea37,
0xc11e4c62,
0x280edbff,
0xf920bbf6,
0x7a244dbf,
0x009b80f8,
0x00713211,
0x38d0d47f,
0x3c3b600f,
0xe80ff7da,
0x301992f1,
0xcb4b87f3,
0x3c2622b1,
0xd0829106,
0x08133c07,
0x02d5ac00,
0x63fc8630,
0xdf27405b,
0x002df02b,
0xafc86bb7,
0x7dbfdb70,
0x046c9731,
0x484057d0,
0x269c0013,
0x099d169d,
0x00665e24,
0x63c69fb0,
0xd5fbe4c4,
0x403fa00e,
0x18ae89d0,
0x03e915f0,
0x1fa585fb,
0x0fc0d980,
0x02c643f0,
0x69011fc0,
0x4b1f7c96,
0x320c8482,
0xd9d37459,
0x7fa13079,
0x77f209fe,
0x12641a0e,
0xb200097d,
0x77f6201f,
0xf4d1b1cb,
0x20473a17,
0xe928654f,
0x2866da9e,
0x67a79a9f,
0x36ec9f32,
0xfa4cbf49,
0x20d91744,
0x67a79a9f,
0x36ec9f32,
0xfa4cbf49,
0x20d91744,
0x83ff0097,
0x60d80d11,
0x855b0003,
0x333c39f0,
0xc74d03a7,
0x6e647ff7,
0xb7df013f,
0x038b6416,
0x27ff41fe,
0x7fff4069,
0xfb4217c6,
0x7c199cf2,
0x1fe3f7a8,
0x4425fffd,
0x3edb2e29,
0x6fb01449,
0xa81dd8a4,
0x585fd02e,
0x6409bfe8,
0x6dbfe48f,
0x91e7de92,
0x7c700570,
0x06d2017e,
0x7bcf6920,
0xc5c6fe00,
0x7b6e136d,
0x097c372e,
0x099f22b9,
0x827dffed,
0x6589c090,
0xfa4f6e7f,
0x19b66370,
0x24d1807f,
0x4c680809,
0x01055dfb,
0x473de6be,
0xe4b3e04d,
0x25cbc6bd,
0x4ea3ceb6,
0x046fe162,
0x07fb0dba,
0x7de72f08,
0x048210d6,
0x123dbfe2,
0x9483fe00,
0x52043b72,
0xadb7b617,
0x13e65f6d,
0x4ffef8e9,
0x0089a3d2,
0x436fcffb,
0x127775a3,
0x6b7eda00,
0x17de7fa7,
0x02d3fa27,
0x37064708,
0xf483eade,
0x4ab41a64,
0x01f0249b,
0x18f7ed30,
0x04920e41,
0x36cacd98,
0x9f69be02,
0x58e7d050,
0x93a367b7,
0x0dfe000d,
0x186ff742,
0x01b63248,
0x348003c0,
0x752da3ba,
0xbb4ad1ff,
0x3d89a3f5,
0x348003c0,
0x752da3ba,
0xbb4ad1ff,
0x3d89a3f5,
0xc6c9f8c2,
0x1f827e25,
0x6b2898db,
0x24f7fbf6,
0x00d1f1a4,
0x01293db2,
0x07a3c80b,
0x0b004d12,
0xc393b76a,
0x5344035a,
0x63137936,
0x5ed9cdad,
0xdf9044df,
0x13cffdbe,
0x2592ffa3,
0x4dfa8c89,
0x13f19fc4,
0x4c41c1f9,
0x023f1234,
0x128825a2,
0x530291d8,
0x2dc81314,
0x76c249db,
0x56de9366,
0xa09a6976,
0x66eb7a76,
0xbdbf365e,
0x09da43b0,
0x4390373f,
0x33e0c27a,
0xa1227ec8,
0x3645ffd3,
0x87e6c827,
0x583e9016,
0xe899c115,
0x0e100f5b,
0x51d227bb,
0x17fbe086,
0xbb2495d3,
0x120db7f8,
0x0f6dff8e,
0x32eff339,
0xda78ee34,
0x0ce48f82,
0x93608d0f,
0x242a6898,
0xc2dbcc08,
0x4485158a,
0xa3db6831,
0x165f98f1,
0x84e0cce9,
0x310467c7,
0x057ccd67,
0x68aafb1f,
0x9edf2a3e,
0x521c1c88,
0xa1dfb6cc,
0x7fc09206,
0xa0a18cb7,
0x2dcc90c5,
0x600fbe47,
0x11f063f7,
0xf3a3ee41,
0x3b6c84bf,
0x14ac98b6,
0x0ddb17e9,
0x5de724cd,
0x4aa35bdc,
0x7e39b7b7,
0x14e684f6,
0x9f3c9fee,
0x494ca020,
0x7e39b7b7,
0x14e684f6,
0x9f3c9fee,
0x494ca020,
0x169dffdf,
0x0749b990,
0x082e4237,
0x4b595db1,
0xff177991,
0x0de7f74d,
0xd7dc9006,
0x4d8b369f,
0xff904fad,
0x7e24db7d,
0xbf67c407,
0x7817752c,
0x84ed0b44,
0x2ab67b3d,
0xcbf8903b,
0x6fc8ee30,
0x089be5e3,
0x68480bb2,
0x285ccd92,
0x443cffd0,
0x84deaba7,
0x11ff2fde,
0x97ec1f27,
0x6d86f278,
0xe1c0d26f,
0x007c2072,
0x443652f9,
0x719aea10,
0xc2037c1f,
0x1a669c06,
0xf44bec60,
0x6d34de0d,
0x278a4821,
0x69161609,
0x3300da04,
0x12f40db1,
0xab2c4813,
0x4b880a7f,
0x44cfcac3,
0x0cf7f7fe,
0xf890818b,
0x0088c1bf,
0x97056c00,
0x10410ffd,
0x41000161,
0x64526ff0,
0x03c1badf,
0x61120bfe,
0x4ac33e97,
0x7fb7f4c3,
0x7ffe6f1f,
0x76ddf807,
0x25829362,
0x560c5480,
0x3ef84bc0,
0x5fd2fc7e,
0x07c8dfff,
0x0411f0d1,
0x88435264,
0x4dfcdfc6,
0x4fe08416,
0x18391d8b,
0xfe939784,
0x643ae6ef,
0x24db85fd,
0x337f78fa,
0x367c14bf,
0x72792c98,
0x1b260f3c,
0x7bc00e81,
0x91600346,
0x17bb3ac1,
0x0ca4b400,
0x41d003f3,
0x6f428fa6,
0x3ffd5a85,
0x0ca4b400,
0x41d003f3,
0x6f428fa6,
0x3ffd5a85,
0xae90ec02,
0x3143d061,
0xd9230b23,
0x4e28edf8,
0xee0188ec,
0x49680bc3,
0x6b67e643,
0x71b44a00,
0xb2d3ec40,
0x084f0d71,
0x5f99012d,
0x41041053,
0xe660007b,
0x19a086f3,
0x8ea4d12d,
0x48c060f0,
0xc7bbd3bb,
0x0dafa001,
0x8bbcdad4,
0x702a20c2,
0xa2d29338,
0x16013ed0,
0xa3366ee1,
0x6ba1eb37,
0x13c23749,
0x7a00c36b,
0x492cc176,
0x6854389e,
0x29979239,
0x0843da0a,
0x29be49f9,
0x1db2e21f,
0xac50fe05,
0x7015b79d,
0xfd5bfd2b,
0x3cf380f4,
0xfddde100,
0x01c53866,
0x68f778be,
0x200f8d4e,
0x3aa778f1,
0x7211a4d0,
0x077db44b,
0x14b06196,
0x391357e6,
0x79e8966d,
0xa6c4faf7,
0x1b541dbd,
0x40436e81,
0x509bc6da,
0x61ed4c40,
0x36e89f7c,
0xda689e0f,
0x2750084c,
0x4b47a23f,
0x7f4696ea,
0x03d14041,
0x192d3311,
0x0de27a96,
0x00036f72,
0x285c3ee9,
0x25703966,
0x4814a1b6,
0x12733b86,
0xfa127f17,
0x6bb579e3,
0x8bb36fac,
0x5a50ae7d,
0xd85da1c7,
0x607e0dbf,
0xcccba463,
0x00313b30,
0xd85da1c7,
0x607e0dbf,
0xcccba463,
0x00313b30,
0xe6600db4,
0x26e4e406,
0x18079013,
0x7fcedd0d,
0xf6cab60b,
0x5fbd9d91,
0xef2d6e13,
0x702df7f7,
0x44db0183,
0x76c344ce,
0xc6129736,
0x16f629ca,
0x04dab13f,
0x07f7f22d,
0xc925e400,
0x764b6169,
0xff600d87,
0x4dab3f85,
0xfbe1fe14,
0x4ec03ff3,
0x281c9002,
0x4071a5c6,
0xfc8da087,
0x20891fd9,
0xb6fd01c1,
0x4001240c,
0xa4101024,
0x2037e32d,
0x83647eef,
0x36b01852,
0x35bc0520,
0x72569980,
0x4c013c0f,
0x466360f0,
0x90ce482e,
0x567accb3,
0xbc01da84,
0x4b4f5f09,
0xfc9af080,
0x3ed1e019,
0x8119a19b,
0x65be880d,
0xb77791fb,
0x4ed907f1,
0xdecc5d0b,
0x094b96ec,
0xfcd36cb4,
0x0bfd978d,
0x8c246047,
0x361483ff,
0xa0cf6e16,
0x283f7f9f,
0xf8650103,
0x5bbe3b6b,
0x4e549c0b,
0x3020e8b8,
0xcc12d9f9,
0x5807ad20,
0x40002580,
0x7f84121c,
0x61a83bdb,
0x3836c253,
0x1ee03fd8,
0x398104bd,
0x6720fbc6,
0x68c0dc0b,
0x9522fe1f,
0x31a7ffc3,
0xc0cd0838,
0x25c50001,
0xd77fbe18,
0x01412006,
0xc0cd0838,
0x25c50001,
0xd77fbe18,
0x01412006,
0xd6606cff,
0x17e11006,
0xc84c01ac,
0x7fb682ae,
0x0101f602,
0x2cc04d8c,
0x1f73e098,
0x45811980,
0xb7ffed01,
0x7febfd9f,
0x213fb34f,
0x4ea83ae1,
0x9008b085,
0x7f808348,
0x55a57f82,
0x37c02cbf,
0xc0b3c3fe,
0x70213fb6,
0x276f26a2,
0x407b025f,
0x6eff69b6,
0x045d280a,
0xbf0132b3,
0x76205c4c,
0x2b233ccc,
0x0e407a01,
0x3afe497f,
0x09379208,
0x07fc2824,
0x0339e01c,
0xc6fe4000,
0x00408db6,
0x5b372000,
0x0104c241,
0xd9080bf1,
0x7fff7bfe,
0x16fbb07f,
0x080b62fc,
0x54ddbcf9,
0x20761bb8,
0xbeff2e00,
0x6001b130,
0x27648049,
0x66001971,
0x40fc0004,
0x7fc6c4be,
0x08ffd024,
0x17c01db9,
0xc7601681,
0x33046d06,
0x006c07b7,
0x093497a0,
0xa4bd605b,
0x7f817c8e,
0xfc9001ff,
0x078a1fff,
0x5e3ae4d9,
0x48349ac7,
0xa9304124,
0x4fb7e6fe,
0x06ff007b,
0x3636cb90,
0xfb060060,
0x06c48bb0,
0x276dc012,
0x1fb33002,
0xcb0e8e41,
0x00501fee,
0x233c40f8,
0x70ffdfe1,
0x00afeecf,
0x7f85ed80,
0x233c40f8,
0x70ffdfe1,
0x00afeecf,
0x7f85ed80,
0xd69bccdb,
0x7fd8445f,
0x170c81ff,
0x03ff7002,
0x920f04c0,
0x5a697bbe,
0x593eb6b6,
0x09ff437d,
0x07c07744,
0x6c308b4e,
0x2e2480e7,
0x4dfd4022,
0xf7e40001,
0x32e017b3,
0xc6e1d5a6,
0x01c3f847,
0x1e4f8000,
0x1fa0e002,
0xeec289f7,
0x10011e7f,
0x171b6ef5,
0x00240660,
0xdb02873f,
0x099bdf77,
0xa142c66f,
0x0bc16df0,
0x0083ff22,
0x13c60f92,
0x0febf9a0,
0x79209a02,
0x483c084b,
0x53cf547f,
0xfffe817d,
0x3abf0b6e,
0x401e25f1,
0x3ecee452,
0xbca24180,
0x08480c49,
0xd01d8220,
0x099d028f,
0x87fbeda3,
0x5208047e,
0xb8927600,
0x563f33fb,
0x383c0040,
0x71001f80,
0x39382b03,
0x02c82d9c,
0x3ffe6e3d,
0x7ec1e851,
0xdf049cee,
0x7a71d54f,
0xa71cbde7,
0x3784e9c9,
0xdf218c00,
0x0900e03e,
0xa965a326,
0x7adb63f1,
0xcac0e7f9,
0x023cf67f,
0xef37f1bf,
0x4029e28c,
0xdb740197,
0x6dc56134,
0x0127e7ff,
0x7980454f,
0x07004064,
0x7e3feff5,
0xf80c0006,
0x2300df9d,
0x2043b1f6,
0x00ef210e,
0xdb0197c1,
0x402cbb90,
0xce0284d8,
0x36045dae,
0xdb0197c1,
0x402cbb90,
0xce0284d8,
0x36045dae,
0xb9ac2b93,
0x4df08877,
0x2771c57b,
0x208cfca2,
0x6e398197,
0x2e1a63d5,
0x4cf73307,
0x002029f0,
0xf9eda858,
0x2222be95,
0x5a9eff88,
0x1301eb31,
0x401cc4b2,
0x3b186fe5,
0xa5d8beb7,
0x12f77ea0,
0x07fe0121,
0x7e33223c,
0xe6723ac8,
0x7d55e30e,
0xeea71935,
0x7add6265,
0xf3e0dc7b,
0x47e11879,
0xe2be0d23,
0x06790643,
0x33659be4,
0x081b0169,
0xb61980da,
0x27059341,
0xe6bdd403,
0x6a619547,
0x6afb2027,
0x09280b2e,
0x0133297d,
0x1c30d85c,
0xe36c3c46,
0x14f99ef9,
0xc5a3d5fb,
0x013e848f,
0xb5a1ba7f,
0x203addfd,
0x2364e943,
0x6648e475,
0x68c4d300,
0x7a6a34b5,
0x57921e45,
0x328a0ece,
0x19f4d5b4,
0x2700db70,
0x3015d2d3,
0x6e304c8b,
0x000f1a01,
0x08e074d6,
0x77009935,
0x13dfbc67,
0x673ff182,
0x49c815b7,
0x89285832,
0x0145e61e,
0x3efd8827,
0x0ab76469,
0x58f1c70b,
0x0a142801,
0x07de4d82,
0x13fed304,
0x965cf93c,
0x335f9f0c,
0x90100fa7,
0x00215077,
0xd3a70838,
0x33c5fc6d,
0x90100fa7,
0x00215077,
0xd3a70838,
0x33c5fc6d,
0xc00db1dd,
0x1b8953bc,
0xd8c84d7b,
0x7c77a14d,
0x57db9160,
0x1ac9a2d3,
0x87a1d061,
0x3f8dc352,
0x017f7ec0,
0x00f05126,
0x3a9013d3,
0x0d0563c2,
0xf98be022,
0x70396f2c,
0xa32aeff2,
0x623839bc,
0xf669b393,
0x410c39eb,
0xdebe32c0,
0x08666f95,
0x286f56c5,
0x1dbb79b1,
0xfed13672,
0x21c7200f,
0x24924666,
0x37ee3f61,
0x79db7089,
0x09d5d819,
0x6643ee8d,
0x181ecbe9,
0xc8af2c62,
0x2dec4494,
0x46e120bb,
0x6c11ff9d,
0x574c1a36,
0x3051b09c,
0x9bda7f19,
0x55f19496,
0x44f7dd60,
0x4fca560a,
0x54826ccb,
0x61ccc79d,
0xf5f925b9,
0x06cb7217,
0x9090febd,
0x6dc3fc11,
0xd4ddafed,
0x2737c90c,
0xe2f8031f,
0x4e3fcbaf,
0xfd0fee97,
0x59a5757c,
0x15ec4d72,
0x5c2cb7a5,
0x5c431f3f,
0x1057ec8b,
0x0dcf64bf,
0x42071f82,
0xb0efe63f,
0x7f891459,
0xc7b83ff8,
0x7eb9168f,
0xb9bf65e0,
0x1dc129f7,
0x9665c078,
0x41d0ac1e,
0x7b2f3faf,
0x34081d97,
0x32720b35,
0x09bff673,
0xaffc64ba,
0x2f4196d0,
0x32720b35,
0x09bff673,
0xaffc64ba,
0x2f4196d0,
0xc8b16d24,
0x13011bb6,
0x23ef200c,
0x7fdfc3a0,
0x5bfcecd8,
0x4e170087,
0x50a16eff,
0x19061f8f,
0xfd882c7c,
0x25cb094f,
0x7c38bab6,
0x7a6d1c92,
0x04c21ea0,
0x43b3eff9,
0x7c43fe23,
0x72ff61d1,
0x557fd39b,
0x2fc1ff51,
0xf9e50bcc,
0x1e4da07f,
0x8cf009c6,
0x09f88169,
0xef03ce5b,
0x640bffe2,
0x9cd065df,
0x7fc32379,
0x85b804e1,
0x6fc0f8ef,
0x2303dfff,
0x027f19b8,
0x09fe3704,
0x77209d0d,
0xd86a33d6,
0x10ff3b9f,
0xaf176fdf,
0x00371bf4,
0x820c05f9,
0x5eb3958b,
0xdee320bb,
0x2602c0b8,
0xa62bfe6f,
0x04c9716f,
0xcf6cde00,
0x7fe00861,
0x0a0ff01f,
0x2fef4dfa,
0x7cac32d6,
0x72470265,
0xf8c4065c,
0x707bcddd,
0x362585f4,
0x013fd83f,
0x0a41c2bd,
0x7e993dc0,
0xf80ffc10,
0x7608ea44,
0xf83e8a75,
0x03dfef7f,
0x01bc304c,
0x1dadedff,
0x38027dbf,
0x7f126802,
0xad067e70,
0x66714259,
0xb1ffb408,
0x2ddad2ff,
0xf9f66e26,
0x7f321e1d,
0x9cdc8202,
0x7e367c20,
0xfe0d1a00,
0x6bb49997,
0x2700ffec,
0x693f6cc0,
0xb82e013d,
0x6811137d,
0x2700ffec,
0x693f6cc0,
0xb82e013d,
0x6811137d,
0x613c5eb7,
0x767984ff,
0xd97db106,
0x5e33fe8f,
0xfab16bd8,
0x4fc084e9,
0xa7e73a36,
0x24ff058a,
0x4025a234,
0x72693a64,
0xebe3f005,
0x12ef9f0a,
0xe25b01a5,
0x07df83cf,
0x03020000,
0x618712ac,
0x9ba4f825,
0x17e2844d,
0x0246f2fe,
0x226ff007,
0xf8681d57,
0x03c7ea5f,
0x2fc113c0,
0x126298f4,
0x26c04c36,
0x3024f812,
0xd73e3a3d,
0x4c269ecf,
0xc1ffc1f8,
0x6807937f,
0xbfe189b5,
0x21b6e9af,
0x685c3f9a,
0x50a47010,
0xb97c0184,
0x2fffbd91,
0x9a10b1c7,
0x000fbf7d,
0xd0876fbf,
0x4dfb1175,
0x13ff64e9,
0x1fde0fbc,
0xcfba7c4d,
0x74021c88,
0xf9fc81f0,
0x6b1b7101,
0xef7db1dd,
0x6a765802,
0x0597f3e5,
0x52c5fe78,
0x05ac7d88,
0x03003ff2,
0x87b7802f,
0x79ac0a18,
0xc0bef26f,
0x3ef8afe6,
0x27ef7bd0,
0x7fd0edfa,
0xe6ebe00e,
0x6ee6c14b,
0x037ab296,
0x0d3803fe,
0xf871fece,
0x4e1a428d,
0xf7b405d9,
0x48e3e3b1,
0x47f3c806,
0x01261c4e,
0x677fac57,
0x7d049922,
0x717c121b,
0x3234dd10,
0x677fac57,
0x7d049922,
0x717c121b,
0x3234dd10,
0x2edfff29,
0x301b20f0,
0x40006cc0,
0x40a407a0,
0x1161e1db,
0x69923f3f,
0x3ceb005b,
0x024e5db3,
0x19125f3e,
0x494a62f0,
0x472091c1,
0x78b6940f,
0xfa2090df,
0x25dbcdf7,
0x66fc1588,
0x4c03ea8a,
0x79136c48,
0x16506341,
0xf92c4dbf,
0x3135000f,
0x30174e26,
0x665f7b60,
0xd37c93bb,
0x1b867b67,
0xc8827ea6,
0x3644bbe7,
0x393781ff,
0x31414f87,
0x1a11f336,
0x5a96df23,
0xd99ffd26,
0x6f05e096,
0x4c0492a6,
0x42196e8f,
0x14926f02,
0x000de89f,
0x992741ff,
0x12659643,
0xe1fa01fe,
0x2dcb3127,
0x07476c02,
0x6afb7ff6,
0xfcf06c93,
0x59a67f1f,
0xe021b73c,
0x118373a9,
0x5e25015b,
0x3fe56e6d,
0x37fc8804,
0x0104f598,
0x084fcc9e,
0x4dc00248,
0x0a819800,
0x0a8025f0,
0x99201c40,
0x41305fef,
0x37718c18,
0x05a6eee6,
0x33b3764f,
0x0167e9b2,
0x850f844d,
0x1e5ade9d,
0xe72b64ff,
0x56dff36f,
0xa25b6d5b,
0x5ff6f263,
0xd91b62ad,
0x6fa8c21f,
0x3b630180,
0x3e49bed4,
0x6130fe04,
0x76801ffa,
0x3b630180,
0x3e49bed4,
0x6130fe04,
0x76801ffa,
0x0504013f,
0x112dbff0,
0x3a20ec27,
0x7d78e841,
0xc8837a07,
0x70189e8f,
0x01fdfe40,
0x7ffe0430,
0xdc201c81,
0x34b41540,
0x97ba5f26,
0x7f23201d,
0x07fea418,
0x1f6c830e,
0xd0208e17,
0x01068101,
0xbc0260b7,
0x160034f9,
0xb69c5ad9,
0x7f7ff491,
0xb9140006,
0x00682194,
0x04000e00,
0x7efffbf0,
0x1e61b3ff,
0x40340372,
0x001a184c,
0x7407fdb1,
0xb01a8007,
0x4dc11c0f,
0xec6eefbe,
0x7624065d,
0xcd44f7ba,
0x1020ec02,
0xbbd20440,
0x7ff40019,
0x8ce27ccf,
0x50290102,
0x66bdffff,
0x7387f7fb,
0x233c805c,
0x1048140b,
0x76e3b1ed,
0x7fcb6ef0,
0xf9438100,
0x5f00d7ef,
0xd9ff6600,
0x7dbffe6f,
0x3f3300df,
0x4bc287f0,
0xf0146760,
0x7829a4bd,
0xdf69bb18,
0x3de097f0,
0xb8c38003,
0x31ee9072,
0x910ff807,
0x320d3388,
0x2c61a534,
0x1ea2bdf9,
0x7e63d8f9,
0x4cf7e011,
0x796d453f,
0x4b361d82,
0xe801807f,
0x65c4e3ce,
0x3807b1c0,
0x3fdb0b71,
0x3502917f,
0x370827f4,
0xcb00ef80,
0x05ad83fd,
0x3502917f,
0x370827f4,
0xcb00ef80,
0x05ad83fd,
0xfcc249fb,
0x11366661,
0x33feddc5,
0x0bec97d3,
0x8cdcad4c,
0x0589b3be,
0x48209048,
0x5989b76b,
0xfeafb76c,
0x0dfffb0b,
0xb8008644,
0x20081267,
0x045aa858,
0x77c4dff0,
0xfa21907b,
0x5f312477,
0x3bf87c23,
0x09bc11f9,
0x27d2eee4,
0x11b80370,
0x8008812e,
0x49c40161,
0x9002906d,
0x12eec031,
0x776081cc,
0x007b1ff2,
0x050198b7,
0x23ef3fea,
0xfefd4896,
0x47e65e6f,
0xfd2c8231,
0x5f980355,
0x276400e8,
0x0bbf026a,
0x21340824,
0x03f724cf,
0x21fb2780,
0x04c1bc0a,
0xb4606136,
0x6dc9d08a,
0x3723203f,
0x00066801,
0x797afffc,
0x7a1880ca,
0x0edf907f,
0x0c3b06c3,
0xcff2602f,
0x19029240,
0x085ad979,
0x36d674aa,
0xd8daec66,
0x07f63ecf,
0xae350236,
0x11e6e4ec,
0xb9836e53,
0x2f06fe8d,
0x048b7f63,
0x431ac01a,
0xf581f96f,
0x5918076f,
0xff240ffe,
0x7903e8d5,
0xcfffdffc,
0x72009dba,
0x36cf1602,
0x0d80ee03,
0x07bc09d8,
0x100825b2,
0xdf36a100,
0x4377ce1e,
0xf6cffe40,
0x327926b7,
0xed9d3e7a,
0x72c90df6,
0xeb5d5fd0,
0x303b6005,
0xed9d3e7a,
0x72c90df6,
0xeb5d5fd0,
0x303b6005,
0x7c0369fe,
0x0f48fbf0,
0xd012812c,
0x72243800,
0x0f33b64f,
0x7fc6a09c,
0xccf7b219,
0x0d3c04d0,
0x258d100b,
0x761877f0,
0xcd83de0d,
0x5041a4d7,
0xded80058,
0x7a588381,
0x07e48800,
0x05c9605b,
0x107500d9,
0x303f23ee,
0x97e76000,
0x76451bb9,
0xb310b004,
0x31996070,
0xa1277fbe,
0x4e80607d,
0x0ff5822f,
0x0a9ff001,
0x489349ff,
0x6dd6981e,
0x78032f33,
0x3344f17d,
0x08f4079f,
0x7e10e4b1,
0x479bbf10,
0x5dc92052,
0x1e641140,
0x7be15b70,
0x741bb315,
0x25a8183a,
0x25f8c798,
0x41271f93,
0x7f4f7dff,
0x00767bf1,
0x7f4c8834,
0x02f613a9,
0xf7f2c9ff,
0x76780097,
0x244e7fe0,
0x68e5e4c3,
0x1b600fc0,
0x04501201,
0xcfec27e2,
0x6102c037,
0x7dc19149,
0x40387e19,
0x471cb242,
0x7fb3bf36,
0x627c7f84,
0x00086246,
0xf81c7a85,
0x79701f07,
0x6121822e,
0x2ee6f3a5,
0xffb968cb,
0x28bffb57,
0x07ff09bc,
0x403dbfe4,
0x3e407009,
0x366520f1,
0x347c1e88,
0x3d0f126b,
0x03ff96ce,
0x72360390,
0x347c1e88,
0x3d0f126b,
0x03ff96ce,
0x72360390,
0x37f6d031,
0x7a410c34,
0x181f43b9,
0x1a47d38f,
0x8d22ca23,
0x4fc4f011,
0x083b4831,
0x57782c93,
0x27267234,
0x77c5c876,
0x04d8ca64,
0x48f6180b,
0xa898829f,
0x38386371,
0xeae5c2cf,
0x42077b0f,
0x3ea54ed8,
0x3ef806c4,
0x001b8461,
0x68521c1e,
0x87b75bb1,
0x21f90232,
0x184211ee,
0x1a6125bf,
0x58fc058b,
0x5b59a419,
0x201f4d37,
0x0de50749,
0x8ff7bcb7,
0x77bb73ee,
0xceddd1a0,
0x02f49efa,
0x009ba13f,
0x34e7d171,
0x419e9663,
0x1bb75e89,
0x33ef024b,
0x0afffc05,
0x3f646e00,
0x6c40fb43,
0xd7fda5bf,
0x0fdc9827,
0xa84c009a,
0x333a3ba4,
0xfed51755,
0x16ed1f41,
0xbf2e8e27,
0x326b58b2,
0x18183e09,
0x0627ac08,
0x78f977a4,
0x424a0a49,
0x47b16682,
0x251be540,
0x01b80e43,
0x58f32d76,
0x966a1137,
0x57b4b43b,
0xddb00918,
0x000f4419,
0x77ad125f,
0x0f3c6e41,
0x85e6d9bd,
0x02ec1368,
0x0fc08bc9,
0x482a673a,
0x35ded7a7,
0x61d0ea61,
0x2814fc66,
0x70016b6d,
0x0e09107f,
0x292fe991,
0x2814fc66,
0x70016b6d,
0x0e09107f,
0x292fe991,
0xfead10cb,
0x41dbfc5e,
0x10329011,
0x1e67c51d,
0xc7924321,
0x61eb1a6c,
0xa09bd003,
0x299db236,
0x332e4dc8,
0x4cbf0581,
0xc6b650c8,
0x3b183d0c,
0x41b90143,
0x004fe01a,
0xedb56021,
0x69b6534d,
0xc2c997c9,
0x6ed91b84,
0x8692bcc6,
0x4218f707,
0xfb204134,
0x6c80f061,
0x9b2c5136,
0x1201cdfd,
0xd17edd2f,
0x650e965a,
0xfcca6cd9,
0x13f68fcf,
0x9fa47c9a,
0x5bf10c7f,
0x32f809f9,
0x1bc14f80,
0x497e1d20,
0x4d264478,
0x9fc8c440,
0x6c61719c,
0x91919fe8,
0x6c09b23d,
0x35bc0800,
0x02493b60,
0x7eb3c13d,
0x7a9f60e2,
0x041b62d2,
0x665c8968,
0x0407a6e3,
0x3041a86a,
0x3b1b460b,
0x6f24b090,
0x0cac3a24,
0x09c97edf,
0x4ed746c7,
0x3f6924ea,
0xe3d8c64f,
0x77fe0c29,
0x7e079837,
0x7f4d93d5,
0x6c1fe788,
0x52cb44b6,
0xbfff0ca7,
0x06e0e1b0,
0x3c9060c8,
0x127ea0fe,
0x7cb1d948,
0x25847497,
0x4e7c9b2f,
0x6876d866,
0x32d7e106,
0x6c99220b,
0xff22d1a6,
0x32d9386b,
0x6f8644a0,
0x0115a000,
0xfe515c04,
0x060bfe4e,
0x417dbfb7,
0x6929a3f7,
0xfe515c04,
0x060bfe4e,
0x417dbfb7,
0x6929a3f7,
0xb9904980,
0x5b5e803f,
0xfe030f04,
0x52c041f4,
0x4797f040,
0x10395feb,
0x0127e9fe,
0x76df4b2a,
0x87a07004,
0x4b43fe78,
0x4b6806e6,
0x6482edf2,
0x39b2796a,
0x3cb8cd80,
0xce11ff48,
0x26741f40,
0xd978c080,
0x78099deb,
0x4ecebc40,
0x243884b0,
0x07b3ff3f,
0x7f27e481,
0x06fc9a00,
0x00505080,
0x7e83ecff,
0x1046ff4e,
0x7ffe7dfc,
0x036f05f8,
0x58246e0b,
0x55080f7e,
0x11340bed,
0x6dbfbff3,
0x07dc8842,
0x700017f0,
0xd2032d58,
0x6f520417,
0xff3c01d6,
0x7fe5a81f,
0x3f6a6e9e,
0x68038091,
0x60b80e12,
0x01ab7b0f,
0x811c917e,
0x7c3e10bd,
0xbfd1b704,
0x5fdbfdb7,
0x9bf61be4,
0x0349f806,
0xb97f2840,
0x0fc00057,
0x7e81f544,
0x7f80700e,
0x041e09d3,
0x0dcbee50,
0x25429e36,
0x01b6400c,
0x3b400c24,
0x00400e7b,
0xd8000190,
0x7e3cc576,
0x77f00f79,
0x7ec92801,
0x47f38c40,
0x7fffcdf2,
0xe0936925,
0x403ffdf7,
0x03b807df,
0x304bff9a,
0xb37818db,
0x41611041,
0x3b4182f7,
0x0ee003bd,
0xb37818db,
0x41611041,
0x3b4182f7,
0x0ee003bd,
0xbdbe79fc,
0x781947e0,
0x69608a1f,
0x498cbfff,
0x334c0583,
0x580a42c2,
0xec01af00,
0x06e610f2,
0xefabd3cd,
0x65c8af41,
0xf8ef0c12,
0x41a40c3b,
0xb8d98761,
0x62174f74,
0xd821425f,
0x500c9c51,
0x3ec6d830,
0x6e258230,
0xda3e9fff,
0x550df39f,
0x03239850,
0x7dbe9f00,
0x536f695f,
0x5c87daa2,
0x8c0369a4,
0x7cd2c7bc,
0xf8444b3d,
0x16849f41,
0xb90c0467,
0x76451f6f,
0x91633620,
0x001dbdbc,
0xffd9a7e0,
0x4bf614ec,
0xcb7c064b,
0x7fcc3f04,
0xd4c109fa,
0x180c9c82,
0x908c9bf6,
0x09006441,
0x4fefcd66,
0x4b7fffaa,
0x0e94991b,
0x00a4149b,
0x004ffaad,
0x1a3a64bd,
0x000c0a90,
0x08fcda00,
0x67d93130,
0x5220fd3b,
0x1c9004d7,
0x02224000,
0x1ca79f41,
0x57f13e58,
0xf7962206,
0x09e09a06,
0x27f7da5b,
0x505ad295,
0x57d6f52d,
0x7fc533ae,
0x11cf41d8,
0x74fa580c,
0xa7fdde0f,
0x33cd70b9,
0x096bd7ff,
0x4d0405b2,
0xd89edbc6,
0x7c716412,
0xb40451fe,
0x768b6ef7,
0x269f8a1f,
0x7658b6ef,
0xb40451fe,
0x768b6ef7,
0x269f8a1f,
0x7658b6ef,
0xde7281d3,
0x4d689eff,
0xb0ed5409,
0x7bd8d805,
0x2b0d8826,
0x70788af4,
0x12140637,
0x06ef0d30,
0x300e000c,
0x4977931e,
0x0882dc3d,
0x518fbc30,
0x2cfc6df9,
0x6da64280,
0x10018afb,
0x3866ce76,
0x310a8434,
0x14df75fd,
0x04c936fc,
0x06d5a6e0,
0x20bb1220,
0x2d002489,
0xe40c4c60,
0x6da6ee3f,
0xf223be89,
0x3eac60fc,
0xcfb98e25,
0x10e10486,
0xfedbb24e,
0x023ee485,
0xe810182d,
0x265e8e5f,
0xcf9fb61f,
0x1dbfcc1f,
0xbbca0080,
0x73664250,
0x3a6bfec8,
0x13204e12,
0x670443f3,
0x1a77dbfa,
0x6c90c288,
0x125a135d,
0x021e916f,
0x76d3600d,
0xb39222ef,
0x4986622f,
0x5ee0030c,
0x012da0c1,
0x1f9c9ead,
0x01580bf3,
0x22fadc26,
0x58196378,
0x5e9bf2eb,
0x0ecd001c,
0x01070880,
0x1c7cd002,
0x0422cac6,
0x3ffb6db1,
0xb1ba07b4,
0x65ca9f46,
0x090708ea,
0x70094211,
0xe16c300b,
0x09281f86,
0x06fd91b1,
0x5009d247,
0x112ff9fc,
0x2c1f7be3,
0x776717df,
0x12420b9b,
0x0e2566e6,
0x6dec05f9,
0x776717df,
0x12420b9b,
0x0e2566e6,
0x6dec05f9,
0x946ef8c8,
0x0e26d734,
0xc1e66933,
0x5364daed,
0x1eff0e41,
0x53487849,
0x06cc8384,
0x4fe9e890,
0xcd2f4a78,
0x48d8258a,
0x3242d903,
0x2701fb3d,
0xe5d1bba7,
0x36c934d7,
0xc7d24a81,
0x6ea59a8e,
0xf122d3f8,
0x4b74f24e,
0x79f3db0c,
0x2e1bdf60,
0x2c1c72fc,
0x37f02d28,
0x4e972ce5,
0x520190cc,
0x7ca7038f,
0x5e400179,
0xbeee5bca,
0x6fc69846,
0xc06c0025,
0x03c9f24e,
0xfb67809e,
0x32c48fbd,
0x314e4b04,
0x63fdb31f,
0x3f6c2e06,
0x76a451b2,
0x94df907e,
0x417e15c9,
0xdcdc3fbe,
0x60a41372,
0xef870b35,
0x595b185f,
0x6fedf403,
0x644db3c4,
0x25164bb1,
0x704cf6c4,
0x801e1b34,
0x74bf422f,
0xb34ac0c1,
0x06f27ffd,
0xdd0b02d6,
0x50092fc6,
0x7f84165c,
0x7fc91201,
0x280609b0,
0x11f68d62,
0xc4b4411d,
0x0354829e,
0x0f4417d9,
0x0064b040,
0x44f3f064,
0x3ff37fce,
0xb74c0fc1,
0x097d1b6f,
0xb9232ccd,
0x611b6bfc,
0x9cfa9201,
0x4981adc6,
0x8116173a,
0x6ddb7cf4,
0x04064304,
0x6d9207df,
0x74df05ea,
0x30ff0bf1,
0x86dd3d02,
0x00133a94,
0x74df05ea,
0x30ff0bf1,
0x86dd3d02,
0x00133a94,
0xc325a1b3,
0x6d2ffb0d,
0xcffb563d,
0x2fbffdf6,
0xeb210196,
0x0827b3ff,
0x869259df,
0x168fdc3e,
0x805d6d7e,
0x7e14f3d5,
0x87effff8,
0x1ebd3c16,
0xc8aed6cc,
0x70088ba0,
0x40d66f27,
0x5de69bad,
0x04840b36,
0x6403d7f6,
0x440094df,
0x6c8f9f50,
0x10dc4a12,
0x7fb8586d,
0x26c887da,
0x275b1279,
0x6360fe8b,
0x6f3e2bfd,
0x017cd761,
0x226fdb70,
0x03dfe8ff,
0x6d82f248,
0x0ed3d000,
0x0817f2d1,
0xee8274db,
0x4825e36d,
0xb92377ff,
0x683f6211,
0xf4d9fcae,
0x7756cfb1,
0x0e47f4b7,
0x40a84240,
0x024c004b,
0x7d051f80,
0x67c6815d,
0x625cfcfe,
0x17d7fee0,
0x7d342cb6,
0xf93c46c0,
0x72bff23d,
0x9cbff64b,
0x323e6c94,
0x282bf3a7,
0x0bffecf3,
0xfbffa259,
0x25c0e4af,
0x03f2d82f,
0x5ebf0404,
0x86fff00b,
0x1ac16b05,
0x87efb5d2,
0x0147e6d8,
0xf49c0f20,
0x74b67c0d,
0x27c19ea8,
0x6a023ff1,
0xc9b26800,
0x0ff7e037,
0xfa5df326,
0x14171a4f,
0xc324025b,
0x24bf198e,
0x7fa0fffb,
0x6ddb3fbe,
0xc324025b,
0x24bf198e,
0x7fa0fffb,
0x6ddb3fbe,
0x23f3fe33,
0x7ed3c609,
0xb91ef4c0,
0x724027b4,
0x46de7524,
0x3fe70c1d,
0xdc63fff7,
0x121f3cdb,
0xfe0c0cd0,
0x3d84ac7d,
0xc4fbd56b,
0x41278e7f,
0x333d708d,
0x12018c22,
0xf20987bc,
0x7fff44ab,
0x3874177a,
0x7ff8178d,
0x672d3d3b,
0x32fb5b76,
0x6b78117b,
0x22f890db,
0x01e47034,
0x2ba2afd0,
0xb817f025,
0x15c6e63a,
0x487dbe48,
0x75fec64f,
0xade00ed7,
0x6096dfc0,
0x4fdd068c,
0x53c0cfee,
0xf790f99f,
0x6fcacd7d,
0xa1aeee73,
0x1da6c341,
0xdd500022,
0x79b32dcf,
0x382c07bf,
0x748024ef,
0x8bf95fd9,
0x1e20dfbd,
0x1f1720d4,
0x016611c8,
0xf8c70333,
0x41d87247,
0x8f2096fa,
0x175d2c72,
0xad9ef662,
0x7117be3f,
0x034ad84b,
0x01ce1076,
0xf6ba03fe,
0x52f82018,
0x068c3dff,
0x56a4a9b0,
0xcfc0fed5,
0x3a791b4e,
0x6edc4319,
0x04841a80,
0xef7f07b4,
0x3e07e382,
0xcdca00bf,
0x62d8037d,
0x8243897f,
0x0006e14c,
0xfccbacb0,
0x3ed02259,
0x31effdd0,
0x0968cc09,
0x541368cf,
0x109b1e0a,
0x31effdd0,
0x0968cc09,
0x541368cf,
0x109b1e0a,
0x84cfbe3f,
0x5a7127c0,
0x3fdfc901,
0x6cbe3f16,
0xd691838e,
0x45981ab0,
0x35373a68,
0x363e0003,
0x883db01d,
0x68bec37b,
0xb5621c40,
0x72d72766,
0xd146568f,
0x478907ca,
0xd8fdbdfe,
0x5641e37f,
0xac63b12b,
0x364bc379,
0x06623aaf,
0x56a9afbc,
0xc4d779e2,
0x0e80d3bd,
0x8c0d89f4,
0x5caec94f,
0x81630bbf,
0x6dbf600f,
0x9ac34dc8,
0x16c208e1,
0x5cd057dd,
0x0400e53d,
0xd4adff56,
0x6abb47ab,
0xf1ea3674,
0x007283f9,
0x6cee6ecf,
0x65d07116,
0x274c5bb7,
0x5186c9a6,
0x6713b66c,
0x7828161e,
0x2d583c4a,
0x77b93269,
0x8425e1b6,
0x711b7e15,
0xbf080412,
0x177d87dd,
0xcf7ec9dc,
0x4f93e737,
0x36fd7792,
0x66ec991c,
0xc5ef6939,
0x0234d435,
0x8900e658,
0x2777c21a,
0xcb49ccff,
0x60fec5b7,
0x42e005f5,
0x71f8ddd6,
0x8b052c7f,
0x59c99921,
0x9a82e816,
0x3cc123f1,
0xccf821f8,
0x488d0375,
0x85b4672b,
0x654661a3,
0xc120aa12,
0x6c0f5597,
0xe271b182,
0x501a727d,
0xf7ea6902,
0x1f0cfe36,
0xe44c75c7,
0x3d3decc0,
0x9deb81d9,
0x1300427c,
0xe44c75c7,
0x3d3decc0,
0x9deb81d9,
0x1300427c,
0x724e0dc0,
0x7dfb1fd6,
0xf001f8f8,
0x6e177db3,
0x801909da,
0x6fc5d238,
0x97e0e8dd,
0x7b0941d4,
0x176ac79f,
0x37f99cde,
0xc371ef9b,
0x3b037c4e,
0x66802e2f,
0x6f050174,
0xa7507ae4,
0x0b3ee2cf,
0x08ddda1b,
0x000090db,
0x227d1b04,
0x07f5c88b,
0xce801025,
0x7601bdce,
0xbc25dcdf,
0x7d3ec7e6,
0x4400686e,
0x30be5781,
0xca54184f,
0x16c45a6f,
0x4853b7c2,
0x34fcf4bb,
0x30f497c9,
0x1716c94d,
0x87d281fe,
0x30b906be,
0x265a046d,
0x4f9667f5,
0x81136406,
0x416a0803,
0x25236e1b,
0x0da16263,
0x41446db2,
0x0d47816f,
0x9e6fe1e8,
0x139346c2,
0x7c2f788b,
0x03dc0e43,
0x27c61f00,
0x09385fd9,
0x3d1608cf,
0x7fdc1df3,
0x19bdbfc0,
0x321d05be,
0xdf0bb6fe,
0x0bca1344,
0xf3425ffc,
0x42d2fe09,
0x7cfdfc2f,
0x70419073,
0x766077c8,
0x2499dc03,
0x4c17118b,
0x49a6e958,
0xe413d822,
0x3c9c998f,
0x48fdd836,
0x47af9fe2,
0x3defbcaf,
0x6b49c96e,
0x4b67a7fa,
0x3307a1a5,
0x64d7886c,
0x48186d7d,
0x4b67a7fa,
0x3307a1a5,
0x64d7886c,
0x48186d7d,
0x399fb208,
0x7d2ddc34,
0x70003bdb,
0x3b51c004,
0x5b6dc85c,
0x6af93208,
0xf32356fb,
0x6648bcb4,
0x9fb86dbf,
0x73321b69,
0x452b8c46,
0x40e03636,
0xa89a178b,
0x11a41230,
0x77a03ec4,
0x37377771,
0xa50b62e4,
0x27383d09,
0x6458f86f,
0x0c7cccc2,
0x6ebc001e,
0x322ce932,
0x993c4e68,
0x537966d7,
0x7a8f9620,
0x7e6584c6,
0xe777ce38,
0x5977c369,
0x6c8607d8,
0x791494dd,
0x3aeed83a,
0x01b094a1,
0x3b2316de,
0x71204e4d,
0x1c08280a,
0x42322046,
0xdeb21b6d,
0x237b36ee,
0xf207fe0f,
0x68c3d488,
0x2c85aec1,
0x5439163f,
0x14f0aa49,
0x0f5ae25d,
0xfc1e8940,
0x6052e9bc,
0xa6208e5e,
0x0f907479,
0x129d5da8,
0x2ce29604,
0x7e2c7193,
0x2c1963e4,
0xe102f248,
0x4f91c919,
0x777e292d,
0x1a05d0b9,
0x04b6c8c0,
0x10a05da0,
0xbd29bc96,
0x6f193814,
0xdebe5e25,
0x2928b648,
0x473190e4,
0x786961fa,
0xf5864f6e,
0x7e771cb4,
0xb4d70ebe,
0x443cbefd,
0x890b79bc,
0x53f60019,
0x569648c0,
0x5ba7fdf6,
0x890b79bc,
0x53f60019,
0x569648c0,
0x5ba7fdf6,
0x791b63ff,
0x0c1e8371,
0x65bc9080,
0x78473c8e,
0x2cde6f6d,
0x541f9673,
0xf89bc688,
0x03d05808,
0x05bfc10c,
0x7a279e02,
0xb018400c,
0x0adafbfd,
0xa99c745f,
0x361f6267,
0xbb024f34,
0x4fe0f0f9,
0x182682b7,
0x603ffbc7,
0x997d64cb,
0x4984adaf,
0x806ff06c,
0x7230230f,
0x00fa6fb9,
0x2fcfe277,
0x06c0ce19,
0x13cb201d,
0xffdc31fb,
0x7049fe84,
0xf961a027,
0x6de53b3f,
0x782410c4,
0x02c6ec86,
0x3def9e05,
0x7010cf62,
0x3a004080,
0x0fd893e0,
0x3d3dc727,
0x7efc1006,
0x31ce7fc5,
0x005b0c0c,
0xfef58284,
0x01133ccf,
0x05fe8ba4,
0x1a4802dd,
0x3aa74a6c,
0x7c3e0ff1,
0xcb6c6ec0,
0x1508e40a,
0x7ac5d8de,
0x09c14d7b,
0x331e7fb2,
0x10bd36cb,
0xa7f26bcf,
0x0017e001,
0xc89f0310,
0x4007c00b,
0xc89a7feb,
0x7898dbf4,
0x30db4027,
0x010f3e99,
0x3fa38011,
0x59e6faba,
0x57e65e80,
0x7b8ecbf0,
0x7b83842e,
0x6cd8161d,
0x3763cc80,
0x313ffff1,
0x73dde180,
0x20198667,
0xb881fe3f,
0x2d1cec0b,
0x73dde180,
0x20198667,
0xb881fe3f,
0x2d1cec0b,
0x86b1b3c6,
0x1c19ff09,
0x785d35c9,
0x4af6fdbf,
0xe3d40d7c,
0x7037fbd5,
0xd6bce9f4,
0x4db3f983,
0x04efd137,
0x3ccf6e20,
0x0e8215b1,
0x68520b20,
0x4210325b,
0x4edc11bd,
0x1e4f92b5,
0x6c3daf19,
0xdf2d94bf,
0x6d773ee3,
0x8297f77c,
0x2f1a658d,
0xb917c9cb,
0x64f72d9d,
0x58b76979,
0x4d0ef7ce,
0x325560f1,
0x1d805a01,
0xa671e147,
0x26e00b1e,
0x07ec68a0,
0x2603f07e,
0xddddf65b,
0x06c68597,
0xd2cf5a97,
0x3a40ff47,
0x963b00c3,
0x62e39fbf,
0x1cb75070,
0x1fcf3409,
0xeb6de83b,
0x3d7fa43d,
0x6319645a,
0x22a8604f,
0xeae7a1b9,
0x01f8b37c,
0xf57a61a1,
0x125b1899,
0xf8fdf29a,
0x177c2157,
0xdac036b7,
0x7da6dc01,
0xfa982812,
0x122bd481,
0x0934e330,
0x6b87e7e2,
0xf4810ef0,
0x5c8cdc05,
0x4ed080a1,
0x611c831e,
0x73277cc9,
0x190e42d3,
0x2f8981fc,
0x01f53b31,
0xdbf456d6,
0x70645300,
0xc53bf3bb,
0x7673231d,
0x424c10c5,
0x31fb7d21,
0x28cb8ba7,
0x67b73fdc,
0xf7a09227,
0x3ffb4860,
0x03efe09f,
0x016cc09b,
0x81a293d9,
0x34183f0e,
0x03efe09f,
0x016cc09b,
0x81a293d9,
0x34183f0e,
0xa80395f6,
0x02b6b78c,
0x00881604,
0x0dc74064,
0xbb81b7ae,
0x083b1deb,
0x96000dff,
0x5fc1e90b,
0x8245ffe4,
0x5ecd1bfe,
0xe19827ff,
0x139e536f,
0xc723f1dd,
0x4fa1649f,
0x70fbcf29,
0x6d8dbb0f,
0xdfc00d36,
0x24c5c014,
0x781e9048,
0x5d997ee3,
0x07dcff28,
0x3ecb601d,
0x7b779000,
0x303ad3bb,
0x6898fec8,
0x6038dbe9,
0x487d9f0f,
0x7c1bafbe,
0x4d25a7fc,
0x7df323fe,
0xd49fe904,
0x123e5d83,
0x05e81fcd,
0x3d1cdefb,
0xb7d9a204,
0x419920f9,
0xc3d84d1a,
0x077d8d8d,
0x583dbc59,
0x09ffd46a,
0x47fe09c0,
0x34800000,
0x23db0401,
0x0d2fc009,
0x0021bab8,
0x098fc010,
0x859d0ac8,
0x7837b334,
0xd15b9137,
0x1026e849,
0x6770c235,
0x69f01edd,
0xf815b00d,
0x1ecb60e2,
0x3e884d0b,
0x014250c1,
0x0b6294e0,
0x4eefc292,
0xbfd01126,
0x13f341f3,
0x196e4001,
0x343bc190,
0x049026c4,
0x6c3f5eba,
0xf9320d3a,
0x320f61de,
0xfc9c0026,
0x7400964f,
0xab43f0b6,
0x69c931ff,
0xee81fde7,
0x4c8ce8dc,
0xab43f0b6,
0x69c931ff,
0xee81fde7,
0x4c8ce8dc,
0x4bc0db9a,
0x7e7b19b0,
0x3fc6c211,
0x1ff88a22,
0x7876f3b2,
0x49044c00,
0x6be0e4bd,
0x536eea16,
0x5ecd9d12,
0x7c9b1d51,
0x328aab94,
0x1fbc780d,
0x07175f6f,
0x490a5c04,
0x42029db2,
0x2603acde,
0xfafe4605,
0x752ce407,
0x3c4a520c,
0x6dc221f9,
0x279734a4,
0x36d86eab,
0xa6919fb0,
0x7620f90c,
0x674a0cc8,
0x3220c895,
0x8efb6cfc,
0x1c851b41,
0xc4e3ec9e,
0x60903ff8,
0xb9e775fc,
0x66efec48,
0x4f640a90,
0x1d040612,
0x23791264,
0x2f764e12,
0xa3dc16dd,
0x1e7481f4,
0x80261c19,
0x0d7de048,
0x2e4ac2b0,
0x67791ed2,
0x56ecbf8f,
0x6610e61c,
0x9e1cf849,
0x34f8306c,
0xee7c0d80,
0x506fada6,
0x3968489d,
0x7e5b32ef,
0x34767ff4,
0x3d20c56f,
0x4d2d9019,
0x1d87fcb0,
0xdb214d0d,
0x0ede43e3,
0x2cc83b68,
0x4f4ce079,
0x197631e8,
0x7728c0ac,
0xe74da178,
0x6d586db7,
0x66d959ee,
0x4a209a47,
0x4b08ba63,
0x33e5ad61,
0x1135304a,
0x26ef2f89,
0xdbe07937,
0x00658233,
0xee8a116d,
0x5b7b9325,
0xdbe07937,
0x00658233,
0xee8a116d,
0x5b7b9325,
0x34988027,
0x323ff189,
0x182680cb,
0x40876a52,
0xdeea87ff,
0x534fe778,
0x001d7fef,
0x7b00831d,
0x4d417612,
0x367b005a,
0x90000091,
0x4bee7530,
0x148b81fe,
0x78404032,
0x5807e000,
0x2f241f38,
0x94afb3c0,
0x7cc493b9,
0xb09c8136,
0x0089ed9f,
0xcb9bc160,
0x0a28f6f0,
0xffee4a2a,
0x36702edb,
0x590bd7f5,
0x49a45fe2,
0xef0dfb76,
0x7649584f,
0x01055361,
0x75c013bf,
0x476400f6,
0x5ec93452,
0xfb693ee1,
0x77f3cbb7,
0x6d936922,
0x69896052,
0xfcfff618,
0x5fd4432f,
0x2f0381f6,
0x6c087c12,
0xe0260431,
0x3e5fc49f,
0xf8959ec4,
0x3cfecc40,
0x3c999dd8,
0x78403c05,
0x20fdcb82,
0x6d0c80de,
0x486dbedf,
0x01cf73f9,
0x37effac4,
0x481380f2,
0xfb8f6f4f,
0x11102d6a,
0x5b92900c,
0x5106a682,
0xd1244f44,
0x04fc924b,
0x60eac9b7,
0x302fdf79,
0x993af4d1,
0x6fc15eff,
0x17e0103b,
0x4d812540,
0xebfffe08,
0x290cb09a,
0xdf5c49ed,
0x26c89f7a,
0xc002b0c1,
0x7a3492de,
0x41109640,
0x7d910c72,
0x0f63f024,
0x34656f60,
0x72fc8801,
0x44c7b394,
0x0f63f024,
0x34656f60,
0x72fc8801,
0x44c7b394,
0x4fde0e17,
0x63189f56,
0xc13d157c,
0x4c3f5079,
0x25177649,
0x1fb32b68,
0xde842499,
0x32990894,
0x07de0d8d,
0x07ff9b7c,
0x36b7b006,
0x593f2152,
0x6bfc160e,
0x72069e03,
0xb3a800ec,
0x591cb601,
0x0faff1bb,
0x49891b7f,
0xe12191bb,
0x4cf910f9,
0xb81c99d9,
0x4d1b19d1,
0x39108fcd,
0x5ffeef7f,
0xc86539e0,
0x0c74a43c,
0x07f9f398,
0x01919798,
0x3cfe6cc5,
0x159d1529,
0x6021129b,
0x162f7a6f,
0xdb1affd9,
0x2b66e40d,
0x43dfba84,
0x7e46e453,
0x37358137,
0x50aaf98a,
0xe520fe49,
0x41c9874b,
0x3dfc27b7,
0x1ac69a56,
0xbc057127,
0x4d246eed,
0x468a5e1b,
0x324b8dc0,
0x369bbb83,
0x1fc4db57,
0x20092216,
0x32f69732,
0x03d8bd93,
0x62789249,
0xdfff9281,
0x41b0182c,
0x9efc8bbb,
0x246eefcb,
0x17678e05,
0x457fec4c,
0xcbfed236,
0x44581457,
0x7b7481fd,
0x2e0261b7,
0xeed3fe33,
0x1017a4df,
0xeb6fb710,
0x77381107,
0x403e3c07,
0x5d2d8f7f,
0x9e419f77,
0x126c8981,
0x37826e40,
0x2dd87bb0,
0x9e419f77,
0x126c8981,
0x37826e40,
0x2dd87bb0,
0xdb1877e0,
0x00568ff9,
0x13fc79fd,
0x308593b4,
0xa69c6136,
0x3642fd9e,
0x85826ebd,
0x4c324fc5,
0xf8999e46,
0x05190b97,
0x3cd8366a,
0x5042fb49,
0xf879fe4e,
0x7401c18a,
0xdf47fdf7,
0x48e11804,
0xd066afdd,
0x5e1f5c08,
0x23602fd2,
0x4dbf910f,
0xccf3ef9f,
0x7b465fb0,
0xfe23f380,
0x01d69206,
0x010276b5,
0x3961dec8,
0xf3e9b205,
0x2dbbfc03,
0x815ff66c,
0x422ed324,
0xf3b72c82,
0x4db810cb,
0xb49d8321,
0x49117f81,
0x44b093f1,
0x71dee5be,
0xcff1a9b3,
0x7dfaa326,
0xc323f593,
0x16772203,
0x9ad518b4,
0x6ddd5340,
0xccb96524,
0x7dd77fee,
0x117f7281,
0x591f75a2,
0x399bb31b,
0x03be69f3,
0x082a1e1f,
0x27d8b420,
0x427cfefd,
0x784622da,
0x1cc27ba4,
0x6d012493,
0x28205055,
0x481afe0e,
0x3a93a36a,
0x217a1816,
0x36e7edbf,
0x1da09ff0,
0x28b43e50,
0x3485d76c,
0xb0494d42,
0x72567ee9,
0x5287a0b8,
0x0fd8c839,
0xb0d24db9,
0x36cf2c10,
0xebeb94c6,
0x3e030442,
0xcc39eda0,
0x4dfb025e,
0xebeb94c6,
0x3e030442,
0xcc39eda0,
0x4dfb025e,
0xd9dbfc84,
0x36422022,
0x0dfb98f7,
0x7121a050,
0x40ebb6ff,
0x76c36360,
0xff49b0fb,
0x4fb629dd,
0xf777f4b4,
0x7c1000ff,
0x946a98b0,
0x19706235,
0x87134041,
0x3fdfda77,
0xc61c7c51,
0x26b01117,
0xf9de23c0,
0x10d69535,
0xf03d14fb,
0x444bf7ff,
0xefe95d99,
0x2f7883dd,
0x37e0fc27,
0x32341f2d,
0x3000e404,
0x1849080f,
0x0361e041,
0x5fb80822,
0x8725a1d3,
0x0fd701fe,
0xd75383b8,
0x00718fe7,
0xc00bc39c,
0x03cb49b7,
0x20dd3af2,
0x7b426f56,
0x7ad80333,
0x72c76dce,
0x7bdc12fb,
0x18002321,
0x8fe65f52,
0x0042927c,
0xf8c1863f,
0x4846fbf0,
0x23ff7ff2,
0x09ff9f60,
0xffe3fbbe,
0x7fd6836d,
0xc00b3e97,
0x379d6f8e,
0xcbdffa0b,
0x6aabdbfe,
0x7c9021ba,
0x37cb42d0,
0x47f01da7,
0x5e5ffe9e,
0xa81de11e,
0x490762cf,
0xb6c2c8fa,
0x77981240,
0xdff8f5a2,
0x76c41374,
0xdb1300d8,
0x1ec2400f,
0xdff879f2,
0x16c08c9b,
0xdfe88f7f,
0x17c00d17,
0xf8fc4ec4,
0x0a1f5f7b,
0xf099a010,
0x433d004d,
0xf8fc4ec4,
0x0a1f5f7b,
0xf099a010,
0x433d004d,
0xb42cb830,
0x47f796d1,
0x392e7c46,
0x7f15b7c0,
0xc94f01fe,
0x1dbba12f,
0x7c1aff5b,
0x3a081fe8,
0x1909a03f,
0x178573f1,
0xa067ff39,
0x4845e06f,
0xb4b18362,
0x009be5b4,
0x0ddaffa7,
0x59b81862,
0xfa476337,
0x3dcdf761,
0x832629a8,
0x6b34dff4,
0x2ec81380,
0x004f5f78,
0x079b7e5f,
0x4dff47a9,
0xb2fc0046,
0x13fe940f,
0x68a07ffe,
0x0d3ecfd0,
0x800127fe,
0x40737f70,
0x9715fc21,
0x16c0e036,
0xd8dbfe5b,
0x6f81a742,
0x8037d600,
0x0ff6a371,
0x2ee0cdd2,
0x020d4db9,
0xf717ff26,
0x6d037bfb,
0x01188058,
0x76de9ff2,
0x083385ff,
0x1daf77e9,
0x3261ee13,
0x7df7e5f4,
0xd949f7ff,
0x7fdfed6f,
0xb3fcfe07,
0x12cc0fe5,
0x9fd8b707,
0x2fe1e874,
0xde020e34,
0x3bffeff6,
0xef23b005,
0x7fc80433,
0xe60060f6,
0x3efa3c0d,
0x9cdd9202,
0x7c847906,
0xc7403b98,
0x0077c4b7,
0x9082e309,
0x3600a7ce,
0x07f08460,
0x08246250,
0x01fe692f,
0x5dc0e160,
0x27987a1d,
0x0de81709,
0x2b60062d,
0x7ff7c79f,
0xf8a01f99,
0x36792e4e,
0xd10009fe,
0x1582b6f2,
0xf8a01f99,
0x36792e4e,
0xd10009fe,
0x1582b6f2,
0x8f93664b,
0x37c81061,
0x02077d48,
0x22f57d9d,
0x241cbf9a,
0x5a047c9a,
0xfc4e92cc,
0x1789265e,
0x34838227,
0x47edae40,
0xcfb3b894,
0x4921b89e,
0xd9f0c708,
0x12c880ec,
0xbcdec90c,
0x41aa3060,
0x28dd8395,
0x5b996015,
0x34689a27,
0x6c4d421b,
0x20044920,
0x133bf208,
0xe0dc4ee9,
0x7f527400,
0x86a73614,
0x113a242d,
0x1100c800,
0x090c93b2,
0x04125847,
0x113ad8c8,
0x211b177d,
0x64f33270,
0x9f8a2017,
0x2136490c,
0x00b0ea73,
0x6c698720,
0xf614d0f4,
0x2509633b,
0x30488fa0,
0x7da0c0f1,
0x05497077,
0x03f66f98,
0xbf6783ca,
0x76345e9c,
0x4aa4ccb4,
0x136fadf9,
0x262cca7f,
0x13cec349,
0x3a360c42,
0x36090778,
0xbd0cb673,
0x439f8522,
0x3d1e03a6,
0x7230ec95,
0x876f00c5,
0x325919bc,
0x260862ce,
0x293beda2,
0x4515a8e9,
0x543127c0,
0x6e5c1405,
0x3b52877b,
0xfa03745b,
0x760484bb,
0x01a61b38,
0x7facf2e8,
0x065c9f33,
0x3f9f6020,
0x25a503a1,
0x73003400,
0x7a320704,
0x3623b016,
0x25a503a1,
0x73003400,
0x7a320704,
0x3623b016,
0xd815e0c4,
0x003d1ddf,
0xc40bba34,
0x2d1be97f,
0xb3e5287f,
0x265d3bfc,
0xa2096e0e,
0x4fd7fb99,
0x6066804d,
0x447f6fb1,
0x277c21a5,
0x2dd3e3fb,
0x3cff468f,
0x0a4f0079,
0xdffc7f03,
0x665dd001,
0xebdf79b7,
0x2c171db7,
0xfcdd52bc,
0x4b229bfd,
0x8004fe96,
0x7dd21ff2,
0xfa44681f,
0x7a2b1f21,
0xa7a763ed,
0x7863004c,
0xffe648a0,
0x2c18f371,
0xd01f0091,
0x7c276d27,
0x4a41b27c,
0x7ea12816,
0x814d4237,
0x4646a1ad,
0x7e9b77b7,
0x69ebeaff,
0xfe7be5b4,
0x6fc22f9d,
0x6a47fb02,
0x7677732b,
0x652b7e7d,
0x7a7fe340,
0xf74ff05e,
0x2047ff5f,
0x097d3896,
0x575b2009,
0xdd9007a7,
0x2600322f,
0xd19d3fb7,
0x1ed06d80,
0xc1ea5607,
0x7e7b044f,
0xbcff7b5b,
0x2181ffcd,
0x1b4ae6c0,
0x613c28eb,
0x2767b7df,
0x68077fb0,
0xea4bc6fc,
0x293ecd16,
0x7a5fec40,
0x59b09d67,
0xecd04800,
0x698b0fff,
0x417d0c18,
0x459b7bf0,
0xffd8c6c8,
0x66db140e,
0xfe880524,
0x401081e9,
0xa6ced805,
0x6e3033b7,
0xfe880524,
0x401081e9,
0xa6ced805,
0x6e3033b7,
0x03701488,
0x32400b08,
0x04ce47f8,
0x747082f2,
0x05d9b0df,
0x4974082f,
0x4c45d64f,
0x3f5f204d,
0xc0908881,
0x52c61090,
0x836903b4,
0x6c0bc846,
0xc22bf732,
0x19c7db8f,
0xe2989eb4,
0x53824f67,
0xf773feff,
0x53276fd6,
0xe7f1ffd4,
0x7c3a2dfe,
0xdf73f5f0,
0x129b2bf0,
0x45837de4,
0x7ff09a96,
0x0959b635,
0x053e01f8,
0x3e0117b0,
0x7e4117f0,
0xfc6c37ff,
0x003f1c43,
0x3b642536,
0x7ef47089,
0x8848659f,
0x3ff77807,
0xe81cf9fc,
0x7de805ef,
0xf92ffedc,
0x1763cb4d,
0xf821f5f7,
0x7f77759f,
0xfad82c2d,
0x6c777825,
0x1201b1c4,
0x7fc3e49c,
0xe66ff7ff,
0x0b9fdffe,
0xf6d87ffc,
0x16d92243,
0xc0640629,
0x63600092,
0xc4b3dfab,
0x01369f3d,
0x368b8080,
0x600bd4a0,
0xb0bc7769,
0x1a2f70a4,
0x0227f0fe,
0x76591c10,
0x487c7026,
0x77b7eb1e,
0xd82596fc,
0x4a58dba2,
0x30fc37f9,
0x01195a40,
0x0ae7acc0,
0x3c356a40,
0x3304fe2c,
0x0204f132,
0x309a7288,
0x7dfbc1f2,
0x095f900b,
0x2f4915f7,
0x1e1598ff,
0x3240e176,
0x3c030907,
0x46c01fb7,
0x1e1598ff,
0x3240e176,
0x3c030907,
0x46c01fb7,
0xded800a1,
0x6dd3e466,
0x4802bfc9,
0x3fcc7fba,
0xf1140017,
0x60bc9805,
0xc8029f0f,
0x5918e005,
0x98374caf,
0x705102a1,
0x6007ef1d,
0x047ea7f6,
0x41a1e802,
0x640b2007,
0x0747a4f5,
0x0900b9fc,
0xe75e1501,
0x4e2158fc,
0xcc9f4641,
0x73532206,
0x4ef881e9,
0x07f80040,
0x7f25cdfc,
0x480d1591,
0xbfdd13f9,
0x3e0dbc7d,
0xf76780d0,
0x6ff03f0f,
0xff417ae7,
0x5a5b3a9f,
0x0693f583,
0x0ae23852,
0x31dff1d6,
0x6c7ad411,
0x01cf0000,
0x6058db3e,
0x2ff811f8,
0x4350cf92,
0x805cf60b,
0x03c0dc00,
0x4fff93ff,
0x59e89ffa,
0xfffc9241,
0x067be386,
0x009f356b,
0x71680490,
0x801f8d2e,
0x58009fc5,
0x04fdffb6,
0x00003189,
0x37e9b669,
0x40081fb0,
0xd80e5b07,
0x7f06f16c,
0xb0dc7e41,
0x67e7601a,
0x9e135ffb,
0x3fef37f9,
0x4dfb2c77,
0x06cbfe82,
0x68e53df0,
0x7034ac3f,
0x421e0f41,
0x73f01840,
0x4bbdb6fb,
0x4174cc08,
0x031bfe38,
0x7f6089f0,
0xd3e5f000,
0x51b04d15,
0x829eeb5b,
0x6d536ac6,
0xd3e5f000,
0x51b04d15,
0x829eeb5b,
0x6d536ac6,
0x24c5a0c7,
0x7cda1b0b,
0xbc0bc9be,
0x6ec6fc92,
0xa07c72cc,
0x4cbc3803,
0xdb7cfe27,
0x039fbfaf,
0xd0277f2c,
0x10c3071f,
0xfb1c22cb,
0x3e5da549,
0x685971eb,
0x0a7ac3f1,
0x7b5c0802,
0x071f275b,
0xb0b7cdaf,
0x112000f5,
0xea14bb69,
0x00304ff0,
0xb0440005,
0x257b0e4e,
0x586f007b,
0x34c33ff9,
0xf87ff507,
0x6e231a8f,
0x032211bc,
0x01c303d0,
0xd96479f6,
0x7e519d8f,
0xc2e59310,
0x06e68c92,
0x91c07243,
0x7984125e,
0x231f8cb6,
0x160e1561,
0x8c121018,
0x00067600,
0xb2287df8,
0x7fccbe5f,
0xb0abe1a9,
0x02ff6585,
0xadf3c85b,
0x0be51d31,
0x20db6ffe,
0x71a4fa48,
0xcea0dfff,
0x7fa49240,
0x21fcf276,
0x3efeed91,
0x284270ff,
0x48381414,
0xe0c7f3d7,
0x05086f7f,
0xfefd9440,
0x7ec6dbf1,
0xe46baece,
0x48e49bf0,
0xafdba5bc,
0x7e24ffc2,
0xd94fd249,
0x34372002,
0x27012ef3,
0x3f779042,
0xb493c8df,
0x4978159d,
0xff90a487,
0x0f9b5d8f,
0xd8b589ff,
0x39f9b341,
0x90978e48,
0x163d45cf,
0xd8b589ff,
0x39f9b341,
0x90978e48,
0x163d45cf,
0x36dee492,
0x07492417,
0x249b06d4,
0x307a70b9,
0x06cc9f17,
0x34f6bf1a,
0xe7ff41b4,
0x7e44922b,
0xaaddfe48,
0x1789edad,
0xc9013cba,
0x7ef40d31,
0xb25adb25,
0x4f803983,
0xf2b42ed9,
0x45bf8426,
0xd9aa6e7b,
0x44ac69fb,
0x28a7d20e,
0x6f37130c,
0xc9526646,
0x1f38d583,
0x6f9c1768,
0x7e7f43bb,
0x3dad17c9,
0x5aac8752,
0xc805c125,
0x2410c060,
0xf027f8c6,
0x124a7d60,
0xbf107faf,
0x64e7176d,
0xa1edf883,
0x55e695a0,
0x5edc9b6d,
0x3eeca5a1,
0xada7065f,
0x3006d21d,
0xb361b196,
0x2dc77beb,
0xad1e001a,
0x02a09741,
0x7f0cf1b6,
0x7666e883,
0xccc57f36,
0x3d87e24f,
0x481b0045,
0x5f62c64a,
0x8fcd8e65,
0x156c2040,
0x56936877,
0x3144404c,
0x791608c0,
0x6e50227c,
0x04b38648,
0x073f93c4,
0x6364062d,
0x3560dd92,
0xa8b081ff,
0x389825df,
0xc265b374,
0x06e80db0,
0x2f089167,
0x758f7e11,
0xea4b6408,
0x6ff5fa91,
0xd2c46db6,
0x2498219c,
0x2fced2c8,
0x09f2dbe1,
0xcff275bf,
0x004f6826,
0x2fced2c8,
0x09f2dbe1,
0xcff275bf,
0x004f6826,
0x381380f0,
0x25d6f040,
0x3d9cb2c0,
0x2d64a400,
0x1103fe40,
0x410ba470,
0x83bc1641,
0x2241bc4d,
0xa22301c4,
0x33e7fa4f,
0x058edb4b,
0x01c3e40c,
0x3ed9b700,
0x09014404,
0xe0b83e06,
0x35f8041f,
0xbfcd6e24,
0x54bbba7e,
0x07ff2e07,
0x7c800100,
0x9d9183fb,
0x749dd656,
0xfb8480fb,
0x498804c0,
0xc7efffc8,
0x12002403,
0x396e6c66,
0x603ff361,
0x0121ee06,
0x65c027b4,
0x0803fdb5,
0x7f78fe94,
0xc0df9f8a,
0x4fff6fee,
0x37e58069,
0x75f42000,
0x5bf1dfff,
0x65d01ff6,
0x56d21fff,
0x7e493ff0,
0x6e980cb6,
0x02609fe3,
0x87aec2ff,
0x7fe43c05,
0x0677ff47,
0x4026eaea,
0x900245ff,
0x723c1060,
0x0043d040,
0x10b04dce,
0x311fa1ab,
0x49effbe1,
0x3e8013c0,
0x5fc7c489,
0x8c0011a4,
0x7ff81f22,
0x5c037e00,
0x00b4c002,
0x3d62fe04,
0x09ff7000,
0x88d0f3ff,
0x7e3b7fb6,
0x0483bf24,
0x6d35bd22,
0xcffdb000,
0x6c3cd7c5,
0x89bf91ff,
0x6ddc7fbb,
0x07b1bf4f,
0x6d00a780,
0xb89c4200,
0x3009d7d5,
0x00bffdb7,
0x36c0000d,
0xcfe5e91f,
0x3fbfaf6f,
0x00bffdb7,
0x36c0000d,
0xcfe5e91f,
0x3fbfaf6f,
0xf8fbc808,
0x40401489,
0xb1d3f630,
0x103fcd9d,
0x030b00fe,
0x60236000,
0x4fd829c4,
0x74219594,
0xfc7f81ff,
0x75acbe1d,
0x07ee0300,
0x7fff8089,
0xdf7fbc88,
0x087f4482,
0x8e52004f,
0x7e36cce6,
0x255c0103,
0x6fc51771,
0x1106ff80,
0x055a9fc0,
0xfcdc1ffd,
0x4ff59faf,
0x8023f5bf,
0x30fa1bec,
0xa6022f7f,
0x00fffa7c,
0xf00801dd,
0x10fffd07,
0x4793b078,
0x423edf18,
0xe693fff0,
0x2ca9612b,
0x402c5af4,
0x3a045ff0,
0xd0adb324,
0x3f9c0028,
0x27ed0e32,
0x000b6494,
0xfbd81eff,
0x00ad4797,
0x787fffa5,
0x492b3af2,
0x886c02b4,
0x00010ffc,
0xf943eda9,
0x01b03f6f,
0xdf93b700,
0x7e3b6fff,
0x4edffcfe,
0x7fce1fce,
0x3813fe7d,
0x301fffe8,
0xf8906a58,
0x12530082,
0xdbfc0700,
0x00a7ec89,
0xcffb00f8,
0x4104e1a1,
0xfffffe4a,
0x481133db,
0x10259f08,
0x723ff580,
0x0421b499,
0x02052791,
0x60920009,
0x6de6d6ff,
0xd1f93100,
0x5703f80f,
0x09f893df,
0x2136ab7c,
0x820100d1,
0x1fa13e3e,
0x09f893df,
0x2136ab7c,
0x820100d1,
0x1fa13e3e,
0xc00452df,
0x73fb14b6,
0x1b180ff8,
0x0e600a80,
0x581bae81,
0x7fb7fe00,
0x33f993be,
0x1c387f22,
0xc5b3834e,
0x55fb20a4,
0x2e4996f1,
0x4f780086,
0x84c7cf0b,
0x7fd70909,
0x5e1c71be,
0x4da31609,
0xdee13285,
0x31a401fb,
0xdeed8130,
0x22a0000c,
0xb2f896de,
0x723d7df2,
0x452788ff,
0x3cb68974,
0xf06bca23,
0x7faaf849,
0xdcff6f92,
0x0ebcffbc,
0xc88e6ddb,
0x2f921fe7,
0x5297e47d,
0x6af589f3,
0x07dc1dcc,
0x641533e2,
0x336f3196,
0x1f660cca,
0xf9b3fc1e,
0x4eb6efd7,
0x5e467760,
0x7583ee60,
0x4906383f,
0x7be90398,
0xfd4a4a5c,
0x76d003ff,
0x5f03f06b,
0x70002560,
0x1c064032,
0x19bc7b94,
0xf2d272cf,
0x73fb4bdf,
0x48fe9a26,
0x4eb8edcf,
0x013b2a02,
0x0400d438,
0x795bae3c,
0x52c21d30,
0x67eda744,
0x26b5bffe,
0x077cb3a8,
0x0e48acf4,
0xc311fe27,
0x79dbfff1,
0x9e0a8cbe,
0x60681809,
0x6b6013fb,
0x09981107,
0x9ce3bf8e,
0x409f0140,
0x4960cd9f,
0x525a9b9e,
0xfd7a1207,
0x602cdc3b,
0x4960cd9f,
0x525a9b9e,
0xfd7a1207,
0x602cdc3b,
0x2d2ed803,
0x755edff9,
0x6901e701,
0x1b7ea2f0,
0x92fd66ea,
0x02780bfd,
0xffe1900b,
0x38cd5b37,
0x0803e3fc,
0x79ffc738,
0x0bf6ffe8,
0x3d2364d0,
0x03cc8fa0,
0x01843efd,
0x2225a44d,
0x09218cf1,
0xe2d579c4,
0x5dbf7ff2,
0xbf2203cc,
0x7f15a071,
0x441f8a24,
0x03372070,
0xf7b94bf5,
0x7004eef3,
0x61826044,
0x07c8c02b,
0xf804d823,
0x0e49ec33,
0xcc816020,
0x697c9fb2,
0xb81feda6,
0x4af83240,
0x2685cc5d,
0x1e7c9a7d,
0x580fd884,
0x0270c5fa,
0xf33246ed,
0x7fb7ed93,
0xfedbf31f,
0x1ea98901,
0x1fa3c9d0,
0x3214b4e2,
0x03db0d80,
0x3177edb9,
0x4fef29fa,
0x025f2016,
0xbffdb3f4,
0x6d88c410,
0xc590befd,
0x165f274e,
0x28ec920b,
0x119863b0,
0x60dd4bf2,
0x48ddff66,
0x196c85cb,
0x681b32d4,
0xf76493c0,
0x61275fff,
0xf93581f7,
0x7c07ef5d,
0x20284be9,
0x0f3c125b,
0x6f80502c,
0x5ffe6cb0,
0xbdef6def,
0x0fdc8b23,
0xa20c0017,
0x19e1ec68,
0x05fc40b7,
0x61f4009b,
0x0117f1d5,
0x3fc9202d,
0x046f6f68,
0x3b3f6540,
0x04340c5d,
0x00201b3e,
0x046f6f68,
0x3b3f6540,
0x04340c5d,
0x00201b3e,
0x4c7e1209,
0x30421fa0,
0x3174a546,
0x603b7c02,
0xc3f25308,
0x77eeb91f,
0xdfa490f8,
0x0908aef4,
0xbca78efd,
0x3ef948c0,
0xa0230033,
0x40081a1b,
0xcfe17702,
0x332fd24f,
0x030009e6,
0x41c4a00c,
0xa200f57f,
0x126687bf,
0xf493d600,
0x5ec60016,
0xf9641080,
0x4c048016,
0xb89377c0,
0x27c7ecc3,
0x400881b6,
0x51dfa3f2,
0xfe819206,
0x0ef1e4fb,
0xb3a253a1,
0x004c80ed,
0xb00d97a1,
0x3d0040bc,
0x27f3a16f,
0x1db9600d,
0xbfb41403,
0x04fffc04,
0x26dae9df,
0x697f7f8d,
0x680bff00,
0x47e0881e,
0x7ff96909,
0x77fde3f9,
0xdb27cdb6,
0x016d2e3e,
0x03edee20,
0x005c9d80,
0xbc7feeda,
0x70e4103f,
0x27bc92ea,
0x7e6c01b0,
0x162c09a1,
0x0b70f5b0,
0x87d5f5e6,
0x65bc8fb9,
0x87c423d9,
0x1bdf9669,
0x689be850,
0x6d05e031,
0x77f4b628,
0x12449bf1,
0x08102f41,
0x4047600e,
0xb00dda4d,
0x2855e49f,
0x2dfdb009,
0x2a809fc6,
0xdccc8008,
0x4fa81fa6,
0xdd73f331,
0x25de8e08,
0xe7d3f2a4,
0x60463c11,
0xdd73f331,
0x25de8e08,
0xe7d3f2a4,
0x60463c11,
0x4fb054c0,
0x04a69687,
0xd453c281,
0x6f41efb7,
0x35837f3f,
0x25c7e870,
0xcd89e056,
0x7469cfa7,
0xc8806b14,
0x02f6dd35,
0xa5b4e735,
0x02976ff9,
0x1e1eac98,
0x4ebf658e,
0xf24a6dbe,
0x49fa0567,
0x3a0c771e,
0x50f7fc05,
0xf80307a9,
0x68f7d049,
0xc75a33fa,
0x5b0b3d0c,
0xe4d18bbb,
0x50200bba,
0xf89417a0,
0x002c99f4,
0x1edbb72b,
0x01896376,
0xff209fa3,
0x0fdd7597,
0xf9e04896,
0x0754df6f,
0x4482235a,
0x6fb40309,
0xcdc37ea4,
0x3d2fe36d,
0x4ffcb779,
0x0fc7e4e6,
0x233db1f8,
0x724999e7,
0x4750f7d8,
0x25c6b5bf,
0x9eed83fc,
0x07d02ff3,
0x35ed34d2,
0x4e3e1f92,
0xc86e1327,
0x0dedef4f,
0x97f668cb,
0x005d07d0,
0x2761fe4b,
0x406ddc69,
0x9ca7f1b6,
0x50745c0f,
0x87b74c08,
0x6de00345,
0x27f0b03f,
0x02dd72a4,
0xd2dcffd3,
0x2c88b686,
0xd90b263b,
0x461ff20c,
0xb7ec5da8,
0x30005198,
0x3dad0441,
0x5cd8284f,
0xe20d3c36,
0x0fff8d8f,
0xc4ed4e20,
0x7f88d04d,
0xfed1f646,
0x0e597d57,
0xc4ed4e20,
0x7f88d04d,
0xfed1f646,
0x0e597d57,
0x85d983c3,
0x0dd80cbc,
0xd9241927,
0x00102c0e,
0xbf137fdf,
0x7a2be0fd,
0x5fbbdfd9,
0x432971f9,
0x331a9f66,
0x099f927d,
0x2df7b106,
0x0825f9b9,
0x8903da1f,
0x01802de0,
0xce011a00,
0x6c9ce444,
0x0205d80c,
0x326b1eb6,
0x631ffe0f,
0x61742405,
0x4d037fff,
0x024d8081,
0xfe00804b,
0x7be0a00b,
0x27004fbf,
0x1058def9,
0xdb621d3f,
0x050bdcde,
0xc02c0a80,
0x40257a4f,
0xffbea9e4,
0x400f1e7d,
0xf8b3b1c0,
0x03e89203,
0x4c7b6d80,
0x6bd6e00c,
0x04d940bf,
0x3534bfc7,
0x440a6d44,
0x0580101f,
0x21ff09ef,
0x65e78ff8,
0xdf7381ea,
0x6fc8202b,
0x20274800,
0x7ce0d0d1,
0x63fff1fe,
0x52fc7f4f,
0x7b3399d9,
0x518905b4,
0x01050e08,
0x4fba8cf6,
0x00836fe5,
0x2ff6d070,
0xdf1fed6f,
0x6ac0010d,
0x46da41f9,
0x4225727f,
0xfd49816f,
0x02664c0f,
0x5ff3e84d,
0x7ef62080,
0xdf641ee9,
0x4bf2e738,
0x049ad44c,
0x6ff0359b,
0x2b03f084,
0x69efcdac,
0xb73d90fc,
0x640be039,
0x2120a100,
0x3d240cc3,
0xb73d90fc,
0x640be039,
0x2120a100,
0x3d240cc3,
0xf886e6db,
0x58040073,
0xfa7fd011,
0x09f60c0f,
0x7a9a497a,
0x641a8462,
0xc6c2df70,
0x7f84fde4,
0x592167b2,
0x033f03f2,
0x3d5da386,
0x68101467,
0x77320044,
0x0d960aab,
0xfffe4087,
0x74d8b862,
0xe02ffa00,
0x7f8965ff,
0xf1345807,
0x5617820d,
0xc323f03f,
0x0e5c0bb9,
0x19051600,
0x018047b0,
0x2791ceff,
0x2273dfb4,
0xcdf3f621,
0x35c900b1,
0xe020f1e7,
0x33709bfb,
0x3345003f,
0x3f000bf1,
0x76048109,
0x0e50a031,
0xf25fa530,
0x293f7b06,
0xb91cb047,
0x5378491d,
0x3e449cc1,
0x7ffca489,
0xf7e045dc,
0x7390980a,
0x2f3ff9f7,
0x36766246,
0xc3f7d887,
0x20283106,
0x4f799df9,
0x7d3b7bdf,
0xd203f07b,
0x064601a1,
0xb92610c0,
0x3f288d82,
0x2bc40aff,
0x333cd7b5,
0xf7e1be1b,
0x3245c79f,
0x24ec99f3,
0x688d7064,
0xfa601f3e,
0x4ed01e7f,
0xeafbf3dc,
0x6e10e35f,
0x36ffddf6,
0x4d3f0670,
0x3c20c086,
0x5ae1498c,
0x7ff8fc48,
0x48330fde,
0xcdfe41bf,
0x77c9e0ff,
0x203bc124,
0x24851bf0,
0x2c8801fd,
0x1359a400,
0x07a0002c,
0x4176b038,
0x2c8801fd,
0x1359a400,
0x07a0002c,
0x4176b038,
0x08001035,
0x13f60003,
0x4d705c6e,
0x79e0009a,
0x60048349,
0x07e4e7fd,
0x4111125a,
0x0115091c,
0x0d7c0a07,
0x02a31ee0,
0x04004850,
0x18b7f242,
0x280a7e01,
0x0f40f4d9,
0x7823dfa0,
0x01093fc6,
0xbdbd885f,
0x1502b769,
0x07000e36,
0x107e4c19,
0x4591c528,
0x093ff416,
0x03120049,
0x0ff69508,
0x59341037,
0x3efffebf,
0x4bf009ff,
0x4d92e3f9,
0x9d476f2f,
0x62201ffd,
0x27fc13f4,
0x124f6cbd,
0x6e70b727,
0x4ef92169,
0x21266cd9,
0x76401088,
0xf814de2c,
0x320b72d1,
0x7fd34849,
0x4164e15c,
0xe02791a2,
0x09fffeff,
0x069eb203,
0x414045fd,
0x005a01c0,
0x33012080,
0x7c7d1688,
0x5f62e4bf,
0x019e00a6,
0x002494d8,
0x580377a3,
0x4fcbe018,
0xf174d9e7,
0x14292acd,
0x3b23b004,
0x33499d9d,
0x301880d6,
0x490df5d9,
0x0c0008bf,
0x0907e3fe,
0x6fdc4db1,
0x17e121bc,
0x0fff910c,
0x03a0f260,
0x801b9620,
0x3c26c499,
0xb49be440,
0x09297ff9,
0xbc82c84f,
0x7494d9a1,
0xe92d103f,
0x4c424418,
0xbc82c84f,
0x7494d9a1,
0xe92d103f,
0x4c424418,
0x2682cac9,
0x01481ffd,
0xcf003617,
0x79bb6ddf,
0x182cb1db,
0x5a52024b,
0x140607a1,
0x35c5c40e,
0x948093a9,
0x7d8054bd,
0x0c132dc0,
0x5a5f6a62,
0xfe8e13d3,
0x64379d8f,
0x7b7f8cff,
0x1fee9480,
0xa36f3647,
0x5907d292,
0x21002fc5,
0x7069f703,
0x0112b612,
0x212cc04b,
0xfd1cc01b,
0x50a4d391,
0x0b2d86f6,
0x0a777dd8,
0x36e3f048,
0x7e1d7c06,
0xc83db1fa,
0x12689046,
0x01da9200,
0x5a0ff019,
0x67e1bcc4,
0x458376db,
0xef544801,
0x7302e32e,
0x3a3ef7c9,
0x5b216278,
0xb920d16e,
0x1297c74f,
0x7763b686,
0x6ee6c24a,
0xdc10d361,
0x11d0807e,
0xbf3c6e45,
0x3fecdc17,
0x006bed01,
0x5a2004ba,
0xbe0db64b,
0x5a2c9359,
0x9a03fe61,
0x5dc81139,
0x6ffc97e4,
0x05d23b22,
0x5b249e5b,
0x5b603c86,
0x9cee4fec,
0x332fc3ff,
0x9d97e9cf,
0x11645fe2,
0xa400cb01,
0x2e481289,
0xa6404df9,
0x01e0065d,
0x0492cee4,
0x7b4081fc,
0xff25f85e,
0x0d61185f,
0x3015b382,
0x08befb09,
0x4926ffe8,
0x75c0e9be,
0x3015b382,
0x08befb09,
0x4926ffe8,
0x75c0e9be,
0xa8e49ff9,
0x0ec10dcb,
0x86eb29d4,
0x74bc7089,
0x69dc29a6,
0x2c3671a0,
0xb14fa5f5,
0x6d7a20f9,
0xbb50b205,
0x60398930,
0xa0912396,
0x5f9bf3b6,
0xbe5436a4,
0x3f0fd523,
0xa1fe6c9d,
0x4ec0182f,
0x5a64be5c,
0x5c193419,
0xf7a5dddb,
0x749f0b36,
0x86dff911,
0x2c8fd3dd,
0x6803b3f8,
0x6dee7bfe,
0x054e9fe0,
0x1e734b41,
0x06de4a9d,
0x08065790,
0x4b50b759,
0x032eeda8,
0xb02df5ba,
0x627a1bf5,
0xfe6401d9,
0x76ff51a1,
0xbc6f6dd2,
0x65f24609,
0xe5487e26,
0x4d3f4a9b,
0xfc64ecff,
0x11f0990d,
0x25b56cc0,
0x7f9b336b,
0xc9637ca1,
0x2dbb009d,
0xcef88e45,
0x7c4fdff7,
0xccee624d,
0x66529fb7,
0x3e1810ff,
0x3e70a841,
0xf1877ef1,
0x398227f6,
0xfd8a4880,
0x3ff7d004,
0xdf2b06bb,
0x166d5b0c,
0x47499b54,
0x0e7bbc86,
0xb126f7c0,
0x721ff041,
0xb84d361c,
0x0e0d94fe,
0x0c4c00db,
0x6d532274,
0xf4e0fe9d,
0x57ab3f17,
0x9ad82df1,
0x0004593d,
0x908041b9,
0x59000a40,
0xbf6ef212,
0x6dac037f,
0x3a32701d,
0x49db3f89,
0x03dc0ffa,
0x0653e27e,
0x3a32701d,
0x49db3f89,
0x03dc0ffa,
0x0653e27e,
0x236771a0,
0x18ac9f90,
0x7eb77acc,
0x0d3406be,
0x9e05d9d0,
0x12176376,
0xc2d193f8,
0x5e7c1200,
0xda0c4dca,
0x6dde9ad9,
0xfed87ec5,
0x49836064,
0x38fc7eff,
0x1cb9bbc3,
0x8f77f561,
0x0e279f84,
0x335048c0,
0x5c20d1b7,
0xfbe03d99,
0x466a03fd,
0xbf474db6,
0x4914d875,
0xb2f26e3a,
0x0166fd91,
0x7d67a0db,
0x00a7fc44,
0x0e784f07,
0x06dce07d,
0x71ee8ec7,
0x27faba11,
0xb3b657d1,
0x48093fb1,
0x4ef5bc59,
0x67836974,
0xb6edf7bf,
0x13696554,
0xed3d93d8,
0x0896d096,
0x4e0075e4,
0x4b9f1b90,
0xc01c8a99,
0x2fd8b9f6,
0x0fc9f30d,
0x78b7fdf1,
0xdc017160,
0x2d36c669,
0x4fe09e2b,
0x1c9b00b2,
0x8407d07e,
0x7c22ad85,
0xeee20810,
0x79268647,
0x43b2f2ff,
0x3668e9f4,
0x6c272b48,
0x20e7201c,
0x1b8033a5,
0x4180de8f,
0x37e00593,
0x366fa671,
0xcd7b09ff,
0x4f403912,
0x4cdaef8d,
0x006f8d02,
0x21b79fb4,
0x4adbfa49,
0xd91f6a1e,
0x4019bffe,
0xc7fcbe0d,
0x00d2efe2,
0x3f2f33a6,
0x10b48963,
0xc7fcbe0d,
0x00d2efe2,
0x3f2f33a6,
0x10b48963,
0x7f000c40,
0x53c7d5f3,
0x3f522c1e,
0x71692021,
0xb45cd024,
0x702fe009,
0xf1168400,
0x609f90c2,
0xe49e41d7,
0x0603c7a6,
0x04dc17b5,
0x7fc8016f,
0xb76c0d00,
0x4fe49a4f,
0xf9bfe177,
0x11ffeb5f,
0x4380364b,
0x1fffce4d,
0x04dbb851,
0x4f8beff3,
0x0edc3e20,
0x58899ff0,
0xf7f8de5b,
0x002817fd,
0x1b045201,
0x003ec3f1,
0x86d999c0,
0x40b963d0,
0x081ff0dc,
0x60bbff6b,
0x9724c9ab,
0x02ff2ff9,
0x6d0ef03f,
0x507efbf7,
0xdcf5a236,
0x10383cb9,
0xfb27728f,
0x1be1a078,
0x07d5c810,
0x7017c382,
0x07bc6d27,
0x71cb5c3b,
0xb376b9d1,
0x70fb0eb4,
0xcbcd7669,
0x03781d5e,
0x01036e60,
0x7fefef96,
0xf7f7d603,
0x08269faf,
0x3175923c,
0x7e4bff8f,
0x447e8017,
0x79035c92,
0x125fc02f,
0x4ceb7de2,
0xdbdff000,
0x7f3209e0,
0x40bff2c0,
0x53726473,
0x87e2e1d9,
0x0d8a01b3,
0x9810bcbf,
0x7dc0f7b0,
0xf7fb81fa,
0x1a001c01,
0xc47b9e7c,
0x7ac0f84e,
0xa017e7fb,
0x0682d8bd,
0x54341ef7,
0x005fffb0,
0xa017e7fb,
0x0682d8bd,
0x54341ef7,
0x005fffb0,
0x72fbe2fd,
0x206fffff,
0x062d7006,
0x4da76182,
0xb90323db,
0x7f1b538d,
0x9fa86df4,
0x2da7eb64,
0x4021bc80,
0x25d0bec7,
0xffe0d306,
0x75f5cc0c,
0xf8fd9241,
0x13fb1b80,
0x01f101a0,
0x43f7fc03,
0x54c21217,
0x0ccbdf8f,
0x2021b69d,
0x0cfe7bbd,
0x4afaf083,
0x214ff26f,
0xf7338630,
0x5e403601,
0xfdf1663b,
0x12f92305,
0x9ed9be17,
0x79e6ff8c,
0x001f843f,
0x13c3fdc0,
0xfbda6820,
0x5ec86cbd,
0x4f407d84,
0x40333b37,
0x836fce56,
0x4c990941,
0x587ca003,
0x7fc13368,
0xff7d6620,
0x3407e4d7,
0x3abf80c0,
0x4656c592,
0xf8cfffbb,
0x36c00359,
0xdecbecb2,
0x300284a1,
0xcadbcdfb,
0x27a068ff,
0xc4e1e1bf,
0x6ed37bfb,
0x03664803,
0x11fe0c01,
0x3c65dee4,
0x125a5174,
0xa19103f3,
0x01dfcafb,
0xc7c375f8,
0x7e747fc9,
0xc06c32fd,
0x059809b9,
0x54d2ac11,
0x72583fc2,
0xc742403c,
0x765367df,
0xe6e37e07,
0x7f3a24f7,
0xb79df7c0,
0x11f31cb1,
0xb723ba36,
0x36dbdc0d,
0x036f0a0f,
0x3ba7cfc3,
0xb723ba36,
0x36dbdc0d,
0x036f0a0f,
0x3ba7cfc3,
0xd8effe9f,
0x059f809e,
0xc57ff9cc,
0x0ff61ecb,
0xfbb7f206,
0x60bfe0ff,
0xffabb9d9,
0x6fa6f10f,
0xe6777c01,
0x6ff8a216,
0xb6ea00ac,
0x784106c1,
0x66e5b884,
0x31d6a1e0,
0xbf02101f,
0x015f7bd2,
0x42bc17c1,
0x1d3f7b73,
0xc97efa2f,
0x3bdb821d,
0x01f301ff,
0x07fe8bff,
0x10f47e37,
0x37d4dd92,
0x17c3fdbe,
0x70dbbba0,
0x47f33749,
0x78001f4f,
0xc8587fc1,
0x0241787e,
0x8bc36d60,
0x2f8327cf,
0xb4f800f4,
0x4a5cc3b5,
0x89246e06,
0x5fd0fa52,
0xffffb21b,
0x6d437acf,
0x2bfffb5b,
0x22d03149,
0xfe8bfe41,
0x3fd5de87,
0xbe817fb1,
0x68f49130,
0xe7120020,
0x1973009f,
0x7fd37421,
0x3020ffe1,
0xfc0901f8,
0x7fdb78ba,
0xfe826875,
0x2d8080e3,
0xc6dbd60f,
0x0637ed99,
0x070f7def,
0x02cedc00,
0x2f5f9140,
0x0f3f805f,
0x41f5fed9,
0x77d7d044,
0x55c203bf,
0x03e6ff89,
0xe203b4fe,
0x205bf42f,
0x0001fe19,
0x67840dd5,
0x00000800,
0x0067f6f0,
0xd63e01c0,
0x58c1ffcf,
0x73fdb13b,
0x7aa6007d,
0x4bf726de,
0x1207e4f2,
0x1e143ffc,
0x60df9a7e,
0x4bf726de,
0x1207e4f2,
0x1e143ffc,
0x60df9a7e,
0x1d061dd3,
0x0590833a,
0xf9108161,
0x0207050d,
0x3efc0a30,
0x53e7f22c,
0x0001de7f,
0x699f0ef0,
0xd8036135,
0x003abc0d,
0x36e02d80,
0x4e0cf58e,
0xdd6ff899,
0x37f6a877,
0xbd83fa5d,
0x410dde57,
0xf89c37c0,
0x6fc0503c,
0x0703a77c,
0x6583ec22,
0xffea6fa0,
0x1340060d,
0x000bbc01,
0x5638fbd0,
0x27fe21fd,
0x5fbf7182,
0xccfc79e8,
0x4942008f,
0x20e2324a,
0x45cc168a,
0x881c1f06,
0x7810e271,
0xdd1a89fb,
0x7b0c9c07,
0x836ffe38,
0x71c4e790,
0x5fc40f06,
0x12641f18,
0x3e21bfe1,
0x0109637f,
0xc9989053,
0x0f893ffe,
0x3ce4bf2b,
0x09cf3bd0,
0xd8abb1c1,
0x1408c58d,
0x1803a0b3,
0x35fc1a70,
0x001037b9,
0x6fe89e70,
0x3eed0af8,
0x71240959,
0x076fe8a1,
0x4d84a13d,
0xd7ff5e37,
0x1276d04e,
0x39d09e2f,
0x0786e5dc,
0x08df3809,
0x4de81f9a,
0xf92bff00,
0x6fc00394,
0xfe038fb7,
0x6f90dfc7,
0x04fff53f,
0x161b1fb9,
0x3403e069,
0x365a107f,
0x6dbd9358,
0x2dcadddc,
0xf81cf127,
0x65ec05f1,
0x6dbd9358,
0x2dcadddc,
0xf81cf127,
0x65ec05f1,
0x39082e3e,
0x6274f379,
0x39f2c940,
0x1362fba0,
0x43afc7bc,
0x0eed7c21,
0x988079f7,
0x52c2042f,
0x2f0e05c0,
0x76302649,
0x8e278607,
0x0fae1ad5,
0x5404b359,
0x70130084,
0x40f251ff,
0x53b71c2b,
0xfc1ef3b2,
0x33036de1,
0x592f4feb,
0x1a244a70,
0x4db89471,
0x48fdf134,
0xcc1a6eb8,
0x703cdc83,
0xb2feae98,
0x00c563e3,
0xc729c849,
0x13c11401,
0x0782414f,
0x53e10658,
0x7d2f88f8,
0x003d5e0e,
0x24d876dc,
0x67d71390,
0xd51e801b,
0x103fde45,
0xcfd21446,
0x0bcffa61,
0x4891d7f0,
0x105b5e36,
0x2139c918,
0x0b2de4ce,
0x67ddcf02,
0x413fc74d,
0x076ff003,
0x127cc478,
0x1ba2f601,
0x602996f3,
0xfcffea07,
0x79a49d3e,
0x021cb9df,
0x4fe0c26e,
0x10036d46,
0x0ed922ff,
0x46341723,
0x083fee90,
0x7cbc4c61,
0x0dc35fef,
0xf49e2dfc,
0x5778e1fd,
0x4fa86039,
0x623cda28,
0xdfd0b4cb,
0x3d2c0a21,
0xb9202769,
0x70a42240,
0xc8182e02,
0x7a3fa06a,
0xe4849241,
0x71c63d09,
0x4de8319d,
0x4fcc02b2,
0xe4849241,
0x71c63d09,
0x4de8319d,
0x4fcc02b2,
0xc7027ffb,
0x7c1f82e6,
0xf8047efa,
0x4045ecf7,
0x2340800e,
0x763fe75f,
0x799824d0,
0x629a7c4e,
0x9f739c37,
0x03fb1f91,
0x0c3ecbf4,
0x01a407f4,
0x398786d7,
0x00de0072,
0x0f070de6,
0x687bd6b0,
0x3a6e41ee,
0x1fff7cc0,
0xd2ceba7a,
0x0c111217,
0xfffc1138,
0x6df7bc06,
0x632c3642,
0x41c4e0fe,
0xffdcea5c,
0x403f7240,
0x6ddffdac,
0x705b6bfe,
0x50f87227,
0x7b04007e,
0xe89c4e14,
0x59e35fde,
0x1cb44fff,
0x71d35cbd,
0x027df3ed,
0x77def5f0,
0xfa159844,
0x71c07e6f,
0xfbfa4012,
0x0ff6dfc1,
0xf83c043b,
0x00c0c36f,
0x7ff3f0f9,
0x4096fe0f,
0xa844cc3f,
0x0de2e80a,
0xd81f6d00,
0x1f501a17,
0x7a7ff180,
0x32decc80,
0xd39d9c5e,
0x7c2bc00e,
0xc7fdffc0,
0x182b447e,
0xfa007c85,
0x401a4339,
0x4bffb3e0,
0x1fc7e3ae,
0x0400f600,
0x7dc01fd2,
0xd9138300,
0x713b0401,
0xde9c4c07,
0x2027fd2a,
0xfc007ec0,
0x669b0dc1,
0x3fa081da,
0x683453f7,
0x401c69ff,
0x73ba14b6,
0xd01dbfba,
0x57341c97,
0xcf5cbf0b,
0x6f281b94,
0xda026277,
0x5a5a3e67,
0xcf5cbf0b,
0x6f281b94,
0xda026277,
0x5a5a3e67,
0x2c93662b,
0x12dea1a5,
0xea038a05,
0x0c06a699,
0x40df79e1,
0x7dfe2ff6,
0x4a95c2a9,
0x3956a740,
0xb8f1c406,
0x4638bb83,
0xdb3738dd,
0x5ffcc66f,
0x737e7c00,
0x0d382b32,
0x31c58aff,
0x71c6f792,
0x43ade77d,
0x17900357,
0x8920c42c,
0x403e22ae,
0x5c23a8fa,
0x7308cd94,
0x837dfe7f,
0x7fbe3b12,
0x208fe1a4,
0x7da44380,
0x00e8c9f2,
0x3cf69b74,
0x5cec8656,
0x58937e72,
0xc739e01f,
0x50723d9e,
0x42248630,
0x6cd05280,
0xa1e7eae1,
0x7d6c330d,
0x600c4ba5,
0x0cd917f1,
0x2ade924b,
0x30fc77fd,
0xa3ded134,
0x303c88b1,
0x5b7c0fa2,
0x0eff413f,
0x0f91bbf8,
0x1073be17,
0x41156fb0,
0x388c1c39,
0x89924a33,
0x09f8b4af,
0x19b0f247,
0x310afc90,
0xfcefc841,
0x04492304,
0x9bb46362,
0x10a47859,
0xc3b802f8,
0x1bd631e6,
0x31d37be4,
0x6de93c4d,
0x080df61f,
0x2f54c040,
0x73183191,
0x4f141914,
0x3e032234,
0x67d225f6,
0xbc46d42c,
0x6d040389,
0xcf2c30ef,
0x46d6fc8c,
0x23026b33,
0x797db703,
0xcf2c30ef,
0x46d6fc8c,
0x23026b33,
0x797db703,
0x29162246,
0x06ade82d,
0xa9245fb9,
0x3b811e8d,
0x69fc06b1,
0x1b4ed5f0,
0x25aede26,
0x4f730c31,
0x73fdbfb6,
0x4e576ccf,
0x3937a047,
0x16e3b775,
0x15dad840,
0x1427d6c8,
0x27f90da3,
0x08f59531,
0x4704cc9d,
0x4d59db1f,
0x4e836601,
0x091c7b36,
0x06c068c6,
0x17d01fee,
0xb99fec67,
0x0c7886f5,
0x0039b500,
0x623ec470,
0x07a57123,
0x4100f839,
0x18ba4c50,
0x7e0fc203,
0x230dc3cf,
0x1c38c4c3,
0x446d4a78,
0x218e1849,
0x35ce6684,
0x12f0df12,
0x78752bc4,
0x063187f2,
0x97a9a6c1,
0x1ee0910b,
0x7f198e26,
0x0de8208c,
0x1aa53467,
0x00d85788,
0xeca3e36b,
0x309ee0e5,
0x310faf9b,
0x7f3e5437,
0xabe32790,
0x0f01c7fb,
0x59fb1968,
0x62bfc00f,
0x3e680ed8,
0x28fb3a59,
0x30078bb7,
0x3a19a91a,
0x78072403,
0x7a4e3bf8,
0x4be5d836,
0x7d33b7e2,
0x2f948189,
0x696d0463,
0x0eb59b3a,
0x7cc904b0,
0xd9a99fe5,
0x71c005d8,
0xf4e4ce60,
0x43f60cf5,
0xe25c2940,
0x001d4467,
0xee1be18b,
0x7598c41e,
0xe25c2940,
0x001d4467,
0xee1be18b,
0x7598c41e,
0x1660ce0f,
0x41caec87,
0x0e71f057,
0x122696e1,
0xa3827964,
0x7e426bde,
0xb8789d80,
0x74b148d1,
0xf038ac37,
0x76204f73,
0xdf9f5389,
0x7000a9f3,
0x75a1afcc,
0x380ee7fe,
0x706014bc,
0x03cde593,
0x08a5ae60,
0x457e0c1f,
0x77789fd8,
0x4fb6af16,
0xd6f10b0f,
0x49d99249,
0xfe074faa,
0x013c04f3,
0x9301a004,
0x26457a53,
0xe7c3bf86,
0x792c9fc8,
0x9e924878,
0x4fd80dd6,
0x3161b194,
0x2754d57e,
0x03852067,
0x4b179b56,
0x5f2c49c3,
0x3ff8a843,
0x82f840dd,
0x21b3474e,
0x971d5255,
0x37084e99,
0x73124a05,
0x09fb3968,
0xfe9033f7,
0x4ffa3643,
0xbcb7e1e0,
0x419a64bb,
0x4d848c77,
0x35f8aa5f,
0xfde79a6c,
0x39c384f1,
0x62cc7007,
0x4d8534f6,
0x45e1bdca,
0x1e007dd3,
0x07fbc007,
0x3272cdc8,
0x88030c9d,
0x4709897f,
0xb49e60db,
0x5dba831d,
0x67f0179b,
0x43db0301,
0x79201cf8,
0x0abd0d0c,
0x0ec5e1cf,
0x04a427b0,
0x3592a2d1,
0x33685b78,
0xd2983860,
0x6024a9f4,
0xf7c48bef,
0x6ded4ec0,
0xd2983860,
0x6024a9f4,
0xf7c48bef,
0x6ded4ec0,
0x417def64,
0x3d1100bf,
0xfc9360a0,
0x7fc6bb8f,
0x7f06693e,
0x421ff6d1,
0x34003ee9,
0x00c913fc,
0xea644191,
0x485d5f79,
0xfbbf20a0,
0x00477267,
0x36fe6834,
0x05df0d83,
0x4027b225,
0x4d9a197e,
0x87a433ee,
0x0901ffbd,
0x5fd135bf,
0x224e7fd0,
0x00f26c49,
0x01ad8a51,
0x43232e08,
0x3de38092,
0xfd26fda6,
0x00e6fbc7,
0xa1fc0bc8,
0x7c3f72e0,
0xc36db320,
0x6d101b7f,
0xfb641477,
0x4d3db3f3,
0x816c9208,
0x00d09694,
0xd94267fd,
0x62441b46,
0x3cfe1ee9,
0x0f1b0c9c,
0x324c3f3b,
0x7fbc8d92,
0x2481113e,
0x483614c0,
0x0787b653,
0x56e62000,
0x3fc0102d,
0x7d3ffa81,
0x04fd07b5,
0x5f3c2a74,
0x1ed24021,
0x29c0ee88,
0xfcfb407f,
0x4fbc3807,
0xf5419cd9,
0x4dffb219,
0xb8fe7e6f,
0x741ffff9,
0x4993da34,
0x7bd8849e,
0x0f7407d3,
0x4e85b7e1,
0xfea240a7,
0x0bc90c9f,
0xefc3bae0,
0x39393aef,
0x0723fa4f,
0x6820f80d,
0xdffdf859,
0x4480700e,
0xc7fe4ba0,
0x3952ac1e,
0x17b36e0e,
0x22fd790e,
0xfcbe611f,
0x599b6a9f,
0x2cfa9ff2,
0x0cc04819,
0xfcbe611f,
0x599b6a9f,
0x2cfa9ff2,
0x0cc04819,
0x8f6cb400,
0x6748fbde,
0x80abf64f,
0x64bbfffe,
0xf6bf78db,
0x20523ff8,
0xb8dcebfe,
0x0ddb73f4,
0x4ddc49bb,
0x1c11627f,
0xd41171b6,
0x003f8d9f,
0x024d6bf9,
0x7481f906,
0x7fdcbddb,
0x47ede2fd,
0x0fe4c4da,
0x4826d7ce,
0xf9137fb7,
0x3e3e9370,
0xe90c471f,
0x06db3db8,
0xd2d26bfa,
0x7136993e,
0x15766cfb,
0x3637ee51,
0x5ac34282,
0x4586db6a,
0x49f9f9f4,
0x052be020,
0xa89bfb80,
0x4bfbd681,
0xdddf49fd,
0x06df76b6,
0x342f2cf9,
0x267bf763,
0xcf5328dc,
0x3861c6e0,
0x19013f37,
0x692bfbf8,
0x05aeefbf,
0x14bfdfc8,
0xd592f1df,
0x5df7fdb6,
0x3ed977f7,
0x16cec0a0,
0xdf96261f,
0x7ef6cf7f,
0xd4fefa44,
0x53addc80,
0xd857b2bf,
0x25dbe5d1,
0xad4e8756,
0x5a12d7a4,
0x06d17edf,
0x1e2f112f,
0x109fb739,
0x7e8a6e0c,
0x84eff731,
0x5624e760,
0xa9d002c9,
0x6c27f300,
0xfe6d3964,
0x7b26e766,
0xb4d1b717,
0x7fc80825,
0x1f31b1fc,
0x7fbb2176,
0x034005da,
0x7d72018f,
0xa7eb84f7,
0x002b7c47,
0x034005da,
0x7d72018f,
0xa7eb84f7,
0x002b7c47,
0x00b649c4,
0x353b2844,
0x5d93fc6f,
0x59e2f662,
0x1bcf1a70,
0x6644f619,
0x21479242,
0x36603bd3,
0xb80581d4,
0x361b4bb4,
0xb2e505a5,
0x6efeabbd,
0x85a73edc,
0x32f805da,
0x17d53f44,
0x302c1033,
0x26b7bcfe,
0x79cb3242,
0x216c9da0,
0x50afce41,
0x7e95a6f9,
0x283d8de6,
0x82874e6f,
0x423005be,
0xbbf8bec4,
0x30fc0009,
0xfa507118,
0x27fecdf6,
0x7ce5f4dc,
0x4fcf3ae4,
0x2a71965f,
0x4196c5b6,
0xddb5a085,
0x247feb4d,
0xc59672db,
0x4c119b7e,
0xdb364b26,
0x7d93ea40,
0x66f4c189,
0x204812db,
0xefe9596c,
0x77c772f0,
0xb2237424,
0x043c93fd,
0x04009317,
0x2a000bf2,
0x61b54012,
0x7951a561,
0x00120d37,
0x0df66482,
0x316bfc06,
0x00503aea,
0xc0fceba1,
0x3f17d49f,
0xaf707401,
0x75f21770,
0x01814236,
0x79fe8080,
0xde025823,
0x7de1e80d,
0xe736ec49,
0x1ebf9d30,
0x6e80ec3f,
0x03de09f3,
0x63e15ba9,
0x180377db,
0x64c96401,
0x5a5cf2df,
0x22d8bfbe,
0x75805d6f,
0x334cda59,
0x4024758d,
0x22d8bfbe,
0x75805d6f,
0x334cda59,
0x4024758d,
0x613c417e,
0x761be018,
0x04d85e08,
0x7e063d80,
0x31f84523,
0x2010e084,
0x748401de,
0x123881ff,
0x903d5be0,
0x7735a1f0,
0x27e1f148,
0x464064fb,
0xff8edc29,
0x0020126f,
0xb59c0adb,
0x060ee001,
0xf9937187,
0x0d396d99,
0x07b3f967,
0x00580080,
0xa008efce,
0x1e048b63,
0x0f8403e0,
0x09407fe2,
0xb5bbda0f,
0x0dc3a4bf,
0xe9ffc05b,
0x6e5c1fb7,
0xc4876046,
0x1b5012b6,
0x6a5c3602,
0x2fc068d9,
0x79304ac1,
0x25f01c31,
0x429b2f90,
0x16a49ffe,
0x7c90d007,
0x04c4f10e,
0xd8ff281f,
0x7fa68c81,
0x008a9386,
0x592d021b,
0x7a3409cf,
0x07cfbcca,
0x7ff3c3c9,
0x06c68da0,
0xb005bc4f,
0x394bc279,
0xc9021de4,
0x5980600f,
0x18fcfc4b,
0x2041739a,
0xf59c6604,
0x57281e13,
0x3ff80df6,
0x401fc60e,
0x06b1f480,
0x4cc6d59d,
0xf3ff0022,
0x6b81db9b,
0x3d981008,
0x3fc89e61,
0x0fc2f14b,
0x7c7f2076,
0x639257a5,
0x15bc185a,
0x4e7090c9,
0x1259c591,
0x0483f7c0,
0x60ed0c04,
0x208f2fa9,
0x15fb30fa,
0x3265d8c1,
0x7601fffe,
0x782748a0,
0x78ddb45f,
0x3265d8c1,
0x7601fffe,
0x782748a0,
0x78ddb45f,
0xffde60cb,
0x5ffc866f,
0xcc01f024,
0x3bd0ebe0,
0x7f993681,
0x7fc4cf0e,
0x9f2e731b,
0x05d9259d,
0x87df1213,
0x5058e861,
0x244c4b8e,
0x00c93ce6,
0xe2700654,
0x71c6ddc2,
0xb7184dfe,
0x0a16119f,
0xd80ffe9b,
0x2e49712f,
0xcca31203,
0x6058e423,
0x7f92b807,
0x4e390daf,
0xf8439ec0,
0x1d08f221,
0xf4e302bf,
0x3ba2d733,
0xbf80ff58,
0x20ffa7f1,
0x3cd7fe24,
0x6dfed931,
0x5841d5f7,
0x166b2bfb,
0xef507c24,
0x15c40357,
0x33519e84,
0x0684fcb1,
0xe091f13f,
0x68a045fd,
0xa021f008,
0x7cc0d274,
0x20223730,
0x4067774f,
0xf401f977,
0x502223ed,
0x66745000,
0x09629ffa,
0x7fcd5a85,
0x1d20074c,
0x1ec43bf8,
0x0732f3f8,
0x469db7c4,
0x7c4c1ff8,
0xc6f81fd6,
0x48594522,
0x02d8c19d,
0x36c1f189,
0x9c21ff98,
0x37f76471,
0xf95b96f9,
0x35e84351,
0x3b6fb637,
0x25417937,
0xf5a14cfb,
0x5031c10f,
0x04fc4387,
0x65bec1e0,
0x12f18c27,
0x719c0d7f,
0x41488094,
0x0feb6122,
0xfc4fa71b,
0x06d3c8e1,
0x41488094,
0x0feb6122,
0xfc4fa71b,
0x06d3c8e1,
0x5a60b7b6,
0x7edffff5,
0xfdebee4f,
0x0c07efb5,
0x669981f3,
0x0601e9b0,
0x2ff849f9,
0x1ee22964,
0xe3fd2533,
0x7c007f6e,
0x2efe307b,
0x202771f1,
0xd8c07e80,
0x5018af01,
0x07416636,
0x4dc03f50,
0x57eef7fb,
0x7dbee000,
0xb0980748,
0x66c5621f,
0x94c3fef9,
0x000f4dbe,
0x81ff7df6,
0x4d3be835,
0xdc13fefe,
0x3dc402fd,
0x4cad87fb,
0x40201e89,
0x301ec0db,
0x3cd45694,
0x134b2444,
0x6336802f,
0x2ff9a458,
0x0fe45fd0,
0x882afe96,
0x4d3f1ffe,
0xd7e72022,
0x064a42d2,
0xd8680d87,
0x0008980e,
0xb5f83fff,
0x7d97fc31,
0x67f4bdf6,
0x0e14ebb2,
0xb06093bb,
0x4ec86ff8,
0x0597d5bb,
0x01b38fec,
0x007b67fb,
0x2403efb4,
0xdb7b009f,
0x7505c9ab,
0xba406737,
0x3677fe8d,
0x66ffd001,
0x6b371f31,
0xa0f9bda6,
0x3528e5a8,
0xfdfff1d9,
0x006954f0,
0x44f3bd51,
0x08e39dbc,
0xf6ffbfe8,
0x003b4f9f,
0x9bec1afe,
0x767f5fff,
0x27ff7cf9,
0x7fb364ac,
0xff4f2017,
0x0fe3efff,
0xfcc20216,
0x17ffa8b7,
0xff4f2017,
0x0fe3efff,
0xfcc20216,
0x17ffa8b7,
0xd891f5f8,
0x17d3eb22,
0xacb78086,
0x7de5de48,
0xabea6062,
0x1f17ea56,
0xd004fc39,
0x49d7e005,
0xb7ed9414,
0x7f90e34f,
0x00063013,
0x01bf972d,
0x25fc9ed1,
0x1ebbdff7,
0xff426c61,
0x0077600e,
0x858017fa,
0x1fc7b05c,
0xd80d4817,
0x7fdf8bfe,
0xef61880c,
0x26fb7c96,
0x281ff0f9,
0x49001ff9,
0xd4be00de,
0x3f8dec0f,
0xb7cfeedb,
0x727b248f,
0x0401ffbb,
0x365ae7e4,
0xab438040,
0x1ff8286b,
0xa84dffff,
0x009b7210,
0xc2fc6081,
0x7da9f7dc,
0xdd9c13fe,
0x1f897401,
0xffdff3c4,
0x3ef30375,
0xfed58066,
0x5fc025ff,
0xf8dd884f,
0x0900efd0,
0x895c1bff,
0x277a8dc6,
0x7103de17,
0x35980c94,
0xf4cbf143,
0x3f87cf6f,
0xc1fffe8b,
0x013d5806,
0x3b2e4853,
0x16c9601b,
0x45c002f6,
0x7d9d8270,
0xa8772f7f,
0x1fc0c64d,
0x72e4ea3e,
0x7f97a770,
0xe70008c6,
0x0c8ffffa,
0xfebbbed9,
0x6cc2cdf8,
0xd8986dfc,
0x13fbd3b5,
0x7fc4de03,
0x01155d8f,
0xf7fc6e82,
0x6e9ffefc,
0x1aad988b,
0x7f96fb0e,
0xf7fc6e82,
0x6e9ffefc,
0x1aad988b,
0x7f96fb0e,
0x06e1f3d0,
0x5fb4a7fd,
0xa41f7bb7,
0x141f3d10,
0x07f277bd,
0x7e5bfb52,
0x1a180aa4,
0x3f67a7e0,
0x3ddff3d8,
0x09801f95,
0x69573a3f,
0x2de37b7f,
0x2003f15b,
0x6bbf73fc,
0xc8fc7003,
0x7d090040,
0xf6ea47fc,
0x3d80ef03,
0xb84cd9f5,
0x7f0f7268,
0xc36f2302,
0x3b07bfee,
0xc043ff17,
0x223b1bff,
0x07effffc,
0x21f60720,
0xd9c97ff8,
0x7fcc003b,
0x159849b4,
0x0ee00510,
0x3f1cb7be,
0x4e8376a1,
0xf8747e3f,
0x4dcf7fc3,
0xda5b7596,
0x7e3817bf,
0x2101db46,
0x77025fb0,
0x7b183236,
0x60269f33,
0x379fbfb6,
0x617f4ff4,
0xff63ff97,
0x34bf2347,
0xc780b1ff,
0x7c13d396,
0xff4077a7,
0x7fbff13e,
0xbbff60d0,
0x265b0665,
0x10acd037,
0x6fb84984,
0xffe8dffa,
0x1dc6d103,
0x84fcf09f,
0x528f89b6,
0xc202c1fe,
0x0d23896a,
0x27f005be,
0x6c431ea8,
0x84c132f2,
0x33fb75df,
0xbb99fc00,
0x5f030fa1,
0xffe37f7c,
0x7f77f58a,
0xe491f031,
0x7005f6cc,
0xc6de73e4,
0x75ddc25e,
0x07e76620,
0x21bfec80,
0xd89364c3,
0x307f0256,
0xc4bfc458,
0x3c05421e,
0xd89364c3,
0x307f0256,
0xc4bfc458,
0x3c05421e,
0xa7f7fe7c,
0x59f7dc00,
0xc4c0f69f,
0x2bc4ffff,
0x17201ed6,
0x6844bd00,
0x07e013c1,
0x7483e09f,
0x0077c81d,
0x4df49ff0,
0xd75c20fe,
0x7020ffff,
0x42026e1d,
0x18380360,
0xf964539f,
0x7ddfe180,
0xfc87bff9,
0x0ed90081,
0x420831fb,
0x7e26df9e,
0xc3f47ff8,
0x003faefe,
0xf8fa0040,
0x0137bb07,
0xfa81ecf8,
0x4f14f3f7,
0x04ff91dd,
0x031f6060,
0x03aacfa3,
0x6d39e416,
0xfffc013e,
0x763fa29f,
0x47ce060a,
0x7efffb90,
0xc77c6ffe,
0x01d7c74f,
0xd7661133,
0x0d78056e,
0xd8045fa0,
0x0beffc02,
0xffe00040,
0x0d47204d,
0xdb41dc80,
0x1be4fd1e,
0x02a1edf9,
0x2c3ffa00,
0x085c1ece,
0x7fe7ff30,
0x911f679b,
0x743fe2fd,
0xef005027,
0x1ffb1a5c,
0x28dac007,
0x4902ad86,
0x0c1c0e0f,
0x0ffa02f0,
0x2902d000,
0x361bd3c4,
0x610bf1ff,
0x3fc7e3f0,
0x87de6e20,
0x007a61ff,
0x80131fe0,
0x0d7b1c8f,
0xc5e0cfff,
0x7226c15c,
0x2cbc7c7f,
0x7e802bfd,
0x0003fb49,
0x21cbe64b,
0x4e046e3f,
0x4f4dbc09,
0x0003fb49,
0x21cbe64b,
0x4e046e3f,
0x4f4dbc09,
0xccf19fe6,
0x7002fe4e,
0xd491cc37,
0x7f9ae77f,
0x0f3522c6,
0x161c0260,
0x200f58a1,
0x0d9c8fad,
0x34e0b11f,
0x0b048548,
0x3b0e69bf,
0x70ffc61c,
0xd8ddbf0f,
0x06c3628e,
0x37c9609d,
0x1f8f6981,
0xd7fbcd76,
0x45f61c9d,
0xe76369c0,
0x688e013f,
0xf8e5fbe5,
0x76441be4,
0x0023740b,
0x4d116170,
0x594be1ff,
0x16d6d66b,
0x31dc4c40,
0x3c3f7fcf,
0x936e4860,
0x305b4db0,
0xe7247cdb,
0x19c18191,
0x27fc0bfa,
0x0fccf5e5,
0xdef9bcd9,
0x1bfdd6fd,
0xfe4791a7,
0x6cd2050f,
0xf9983343,
0x183edec9,
0xc0088766,
0x59021d60,
0x1c83b72b,
0x4d13cb7e,
0xb85ef67e,
0x3912578e,
0xf657d8d0,
0x0de7b1b4,
0x0fd0edb6,
0x6ccd21e8,
0x0f77cbff,
0x106ff279,
0xb8ddcd27,
0x7bbff7d9,
0xf6ffa87f,
0x7cfac18d,
0x0101ce50,
0x744e1f9c,
0xb4044cf6,
0x6c810a72,
0x7267373f,
0x26f0ccb8,
0x87db64ba,
0x25e0f5ba,
0xb0f803eb,
0x6f2588e5,
0xfa4bd21a,
0x6100a080,
0x33fbeda0,
0x0fefc0b2,
0x336d7c3f,
0x7e81034d,
0x33fbeda0,
0x0fefc0b2,
0x336d7c3f,
0x7e81034d,
0x22024c90,
0x31e3d1d6,
0x97462236,
0x0abb15d0,
0x45e4bc59,
0x1d36f002,
0x0e059dfe,
0x5b018e50,
0xd9006ecf,
0x265d7b0f,
0x3f76e33e,
0x54cc7c20,
0x4ff4073b,
0x79f4f409,
0x0942e637,
0x1fc9fd2c,
0x392b6127,
0x2033c2b0,
0x003890c6,
0x766fdfdc,
0xc19132c5,
0x02dc8ecd,
0xbfa36f3f,
0x603ffbe6,
0x074320df,
0x41a01ff0,
0xc7e4a203,
0x7e34e434,
0xfe7ff7c6,
0x1bef7c7e,
0x460e4583,
0x3046b801,
0xf12b773d,
0x4c7890cd,
0xf3d6200b,
0x01c32de3,
0xfb2de021,
0x4c9c1100,
0xe93195fd,
0x677c216d,
0xfe1a4649,
0x017bd8cd,
0x59394c49,
0x48be67e4,
0x3e9f4d43,
0x6dbeffa3,
0x043fecdd,
0x409b395d,
0x126e57fc,
0x29374db5,
0x3ce5687c,
0x7c37da75,
0x146233e8,
0x1d215f79,
0xda2b666c,
0x7478ac8d,
0x25d2ec33,
0x4483d341,
0xe09af67e,
0x4487ca97,
0x5782e137,
0x40350d4e,
0x4eca5ed8,
0x1b4fc5e6,
0xb3336cc0,
0x11fc87dd,
0xf6dc543d,
0x0269d5bd,
0xc09af0d8,
0x0d36dfe3,
0xa51da219,
0x7ed95ab1,
0xffd0305b,
0x004863fc,
0xc7d1fcf6,
0x64ffe693,
0xffd0305b,
0x004863fc,
0xc7d1fcf6,
0x64ffe693,
0xf76e6ab4,
0x7f81422a,
0xd922dc3f,
0x1b800dcf,
0x987cc4bb,
0x121b0687,
0x9ac9ee9b,
0x6fa6805a,
0x27fa7053,
0x2fde2d8c,
0xde90b6ae,
0x3ef3792d,
0x3f2f37dc,
0x0bc3ffe7,
0x206bfbee,
0x5c3e9bbf,
0xd3f4f000,
0x491fc942,
0xf7e4ffe9,
0x092da9ef,
0x85fffdf6,
0x77db0fe0,
0x0fabb449,
0x6c008032,
0xb7ff7ed8,
0x24a6c332,
0x44db92bb,
0x2c091ed2,
0x4347c85a,
0x34beef63,
0x57fea6fa,
0x45cc95ce,
0x57fc60b3,
0x61441bf6,
0xa34340fa,
0x4d461817,
0xf80fce09,
0x16a4d1f7,
0x8fb800ff,
0x283b4716,
0xea4a12bf,
0x483e45b7,
0x02ddf6fc,
0x7ef20df8,
0xf0040011,
0x3e83e92f,
0xcbf87613,
0x137fe400,
0x616e6c74,
0x00f7aa0f,
0xf810b1de,
0x3f87900f,
0x7e0c079a,
0x69014420,
0x9bf35f24,
0x1860b3f1,
0x2fd181da,
0x3781d7ae,
0x6829b16d,
0x7b17cf60,
0x480be5ff,
0x12182402,
0xd874082f,
0x3f67c64e,
0x08837627,
0x006ee7b2,
0x1be945b6,
0x103fe1fd,
0xe540b5f4,
0x26ca4df6,
0xcec0c9b2,
0x79d6f5b3,
0xe540b5f4,
0x26ca4df6,
0xcec0c9b2,
0x79d6f5b3,
0xaec99492,
0x2c9247c9,
0x44faced7,
0x4cbf2fb0,
0x20cfde1f,
0x41a548ea,
0xecec1a26,
0x64964ffb,
0xa0144600,
0x323740eb,
0x6a0f6fb0,
0x0bc00dfd,
0xa1d3fcf6,
0x263f40ad,
0x6973f390,
0x76cb737b,
0x22ef6689,
0x7ce64f1c,
0xcf4cc190,
0x0f671fd0,
0xcbfecc51,
0x26dc9366,
0x5fc1e39f,
0x3e280f6b,
0x4a2df7da,
0x06cb1304,
0xc7620107,
0x34209f16,
0xb063333e,
0x26d00478,
0xdb682644,
0x4d8ec462,
0xde74774e,
0x1343e8fa,
0xc9b776fd,
0x40593a34,
0x02ac6300,
0x4f1027c4,
0x7f6bc040,
0x6583644b,
0x7ee8f8a4,
0x7dc3185f,
0xcb26ca1a,
0x543ccf5c,
0x1cd848bf,
0x3f72e630,
0xbcdd73e6,
0x4f4f4d49,
0xe4c412db,
0x2e05a217,
0xbef24c5b,
0x7b068ff6,
0xbafab8da,
0x113c6369,
0x6493a5e8,
0x264ed370,
0x06934000,
0x7fe809a0,
0x07f6a193,
0x591013b1,
0xdfac5881,
0x7e66b022,
0xfb24d7cb,
0x6299d503,
0xff9a9001,
0x32bed08f,
0x157883c5,
0x56cc446c,
0x1b0f4e60,
0x7ede7a5a,
0xf57c92f9,
0x0222b2d1,
0x1b0f4e60,
0x7ede7a5a,
0xf57c92f9,
0x0222b2d1,
0x07866d60,
0x2409e33f,
0xdb03807c,
0x1ed3c6b2,
0x040435bf,
0x3fec4871,
0x2e806e92,
0x04e92d9d,
0x863be984,
0x09001055,
0xd694ff79,
0x648615af,
0x147e1e56,
0x379a0d98,
0xc1c0fabd,
0x799b62c4,
0xbbee4a58,
0x558c9df4,
0x0a1ef57d,
0x12cc0dea,
0xb4f580d0,
0x03653c46,
0xca7fb450,
0x7fc28cef,
0x3fe83e00,
0x14367381,
0x5deeca71,
0x724a5a52,
0x216c7dc9,
0x542efe87,
0x2fc10005,
0x2d740e4f,
0x76709a85,
0x004925cb,
0x3527bc00,
0x480a33d1,
0x6b24e456,
0x7fd327ba,
0x89e24e00,
0x4a0f64fd,
0x497fe5c9,
0x02298c0e,
0x1abda8c0,
0x6fd31b1f,
0xda57c0dd,
0x01986792,
0x2fb001b3,
0x3df71814,
0xcd2b2e0f,
0x697b207f,
0xc91fe614,
0x7ff8a101,
0x7cc8ff7b,
0x37a0c1f0,
0xcf6e65cf,
0x6cb88007,
0xd74a8b93,
0x3343af56,
0xa8ed21c6,
0x028c784d,
0xe709fd47,
0x62573b2e,
0x003c3631,
0x445190a0,
0xa5a29255,
0x00886dff,
0x80949901,
0x2905ac69,
0x6f6c77b7,
0x375bacad,
0xeb2fbb00,
0x7a30033b,
0x6f6c77b7,
0x375bacad,
0xeb2fbb00,
0x7a30033b,
0x49224201,
0x593d0426,
0x4d9647bd,
0x0b235a55,
0xfbf08e01,
0x0035a892,
0x021c927f,
0x4019e146,
0xb89c5501,
0x617c4bb7,
0xc1928381,
0x6cea9fc4,
0x37fc4663,
0x77e62053,
0x0012b326,
0x302fd8cf,
0x4154c9fc,
0x500f2fce,
0xff8381cb,
0x46c1fdeb,
0xebec8be9,
0x247338a9,
0xefec8bd4,
0x7e29258f,
0xa4cd6f24,
0x7915e30d,
0x00fe9324,
0x740645f1,
0xbe9bff7d,
0x19b9a3f4,
0xf7ff91fd,
0x68f6eebe,
0x07fd06e5,
0x01248d9b,
0x3f3d4dff,
0x697bf4b1,
0xb0b8fea7,
0x3f0e12ec,
0xb77e96c0,
0x0520080f,
0x851d6c4d,
0x6afe0af6,
0x0807805f,
0x730bc010,
0x7b934e48,
0x771de056,
0x409fc04d,
0x3dd2361e,
0xb7a5130f,
0x6d308c01,
0xf00d5de3,
0x19505fd6,
0x35adff03,
0x582f9010,
0x3ccc0053,
0x00b603f0,
0x35508f06,
0x725bf379,
0x4b6c4ff2,
0x2adfecc0,
0xbccb083b,
0x27169fc2,
0x3b74f9a2,
0x4cbe2241,
0x0bfdff24,
0x46cd3c88,
0x2df0023f,
0x7f781018,
0x23fc0c5c,
0x7003cb70,
0xda44c36f,
0x3020100d,
0x4bff7c74,
0x57d9cf0b,
0x6ec03289,
0x45005248,
0x4bff7c74,
0x57d9cf0b,
0x6ec03289,
0x45005248,
0x033297e7,
0x6878cd61,
0x1920804d,
0x37ff6e42,
0x376fba97,
0x30341fd7,
0x49b59fba,
0x7b19b45b,
0x0427d518,
0x4a2446f8,
0x4938426d,
0x13bdf263,
0xb011b000,
0x3089d249,
0x7ce24980,
0x17dff3d3,
0x06dc97cd,
0x0119f6d0,
0x06c899f5,
0x5990068c,
0x4407e2e4,
0x4882dbbb,
0xb412004b,
0x01d013f9,
0x3bbace00,
0x10d41d12,
0x1a06ae5f,
0x4be11b34,
0xb79ffd06,
0x0da5290d,
0x06de122b,
0x321caefe,
0x248c39ef,
0x0bc89250,
0x79230ac5,
0x4ed742ff,
0x04fd06dc,
0x52b872cc,
0x98f7484d,
0x61745bd2,
0xfbd008a0,
0x143cfe00,
0x5d9e0058,
0x07f7edff,
0xe2cf0d10,
0x116800cf,
0x171db8c4,
0x3ee6644a,
0xc7b3d10e,
0x1b3ff417,
0x7ee096f5,
0x33c7f58b,
0xb7e0cf80,
0x1a09ac9f,
0x84c19f11,
0x730ddc82,
0x2d9c8440,
0x48c8e1c9,
0x04c0b9fd,
0x01f61a48,
0xa69f0323,
0x4be9b80e,
0xc7bdd349,
0x09c5f026,
0xfa1384b0,
0x403f718d,
0x855c0273,
0x43008ef9,
0xd8005a41,
0x06ffffe0,
0x5f2d9301,
0x1e08dff0,
0xd8005a41,
0x06ffffe0,
0x5f2d9301,
0x1e08dff0,
0xe8088284,
0x175f0136,
0xfc980a08,
0x320464e2,
0xa138b9b6,
0x77f704a8,
0x91986fbf,
0x5a500f90,
0x3ec0f6db,
0x097ff7f9,
0x352631bf,
0x09000000,
0x63dda1e5,
0x00c00476,
0xf7d8f9ea,
0x7ece077f,
0x87fe79be,
0x0a2613ed,
0x0b782a0f,
0x4fbad608,
0xfb2c9e83,
0x02dfdffe,
0x30a86805,
0x7fe2e4a6,
0x5eebfe4b,
0x7dc2a10b,
0xdfdb4840,
0x7f269cad,
0x392265b4,
0x7ff8fc04,
0xdc92fe2f,
0x72338167,
0x2580ba43,
0x65c63e99,
0x388092de,
0x6fa4fb0d,
0xbf16fe50,
0x703e6fbd,
0xffbbec04,
0x66792005,
0x43f92efb,
0x38948183,
0xa6d8327f,
0x6f26a30d,
0xc8fc91f4,
0x0a1f1767,
0x412c453e,
0x369edff2,
0xdb817ed9,
0x6e0115b7,
0xcbef65ff,
0x4efed936,
0xd8003326,
0x61000000,
0x87fffffe,
0x3fffa6fd,
0xe89001fb,
0x0600084d,
0xffe89400,
0x7fdcfbac,
0xff3369e7,
0x1b6c841f,
0x1003bfd5,
0x161fe080,
0xd59c184b,
0x0fe6e20f,
0x06fa7d80,
0x1fbffbc0,
0x023481bf,
0x0ffa6058,
0xd3fc044e,
0x3898edfd,
0x023481bf,
0x0ffa6058,
0xd3fc044e,
0x3898edfd,
0xebe0062d,
0x6093f8cf,
0x880c37e9,
0x12810009,
0xf7d2dfdf,
0x008be7fa,
0x6b6d6890,
0x49509db8,
0x084fe226,
0x68bf73f0,
0x7e209109,
0x7bc10e8e,
0xdcef9242,
0x00ba4420,
0x7fe34948,
0x024e1c08,
0x077c1500,
0x09081b49,
0xba1368c4,
0x5d69861b,
0xa8020e06,
0x0002f020,
0xd0374f45,
0x17082ccf,
0x292041c1,
0x329e8c90,
0xa01ac467,
0x5030e75f,
0xf7fd01c0,
0x6e00fc8a,
0x1c78f3e5,
0x702ae459,
0xfb07c126,
0x1a1ffd8e,
0x47016f29,
0x163c0084,
0xb24591dc,
0x702005a9,
0xbc3905f4,
0x00091261,
0x600247a7,
0x6358907a,
0xf0884601,
0x7f4df264,
0x17fe87f4,
0x0e003031,
0x2131bd85,
0x09c01d38,
0x83881617,
0x01096e9b,
0x8f47bf47,
0x69602409,
0xcbf24df3,
0x049fffff,
0x07fb0727,
0x5df2e090,
0x24d0540b,
0x0000f268,
0x27a48e68,
0x017f3eb0,
0x3bf73ded,
0x0120dc43,
0x37c5fe09,
0x7f041042,
0x087c11c6,
0x002c506b,
0xb1ad7e86,
0x79200033,
0xf9e01377,
0x409db7cf,
0x07e00f27,
0x4018a604,
0xc0878e9a,
0x12861913,
0xe5b874f2,
0x217edf80,
0xc0878e9a,
0x12861913,
0xe5b874f2,
0x217edf80,
0x87bbc8d4,
0x0358d041,
0xbfe7e3bb,
0x29b081f9,
0xd877feb0,
0x0f470da5,
0x937d7e20,
0x3c8b027d,
0x23651610,
0x1f87ed0e,
0xd7243dc0,
0x4fcb4c0d,
0xff6c3e5c,
0x4ea791f6,
0xc47cb11b,
0x1ffb9362,
0x85f9f235,
0x71273308,
0xf16c0df4,
0x3c321c19,
0xf372733e,
0x7e72020b,
0xb2618838,
0x37b87b0c,
0xc26b6636,
0x17f84179,
0x5df2ef3a,
0x040b6583,
0xfefc7c1c,
0x36724359,
0xb7f46e5c,
0x4dbf77e9,
0x04708f94,
0x765a4366,
0xfbe3adf1,
0x76c71c13,
0xf0c3b024,
0x7fd081f3,
0xb763684e,
0x307c0df8,
0xff9ff650,
0x761f0051,
0x01eb1da6,
0x580622fd,
0x276842ef,
0x4fe653bf,
0xf3c0767b,
0x37dfc4be,
0x3865a076,
0x7bf7ea6f,
0xe39e4458,
0x0c2ba25a,
0x033c6750,
0x317b78dd,
0x07e00826,
0x0436fff0,
0x176d8f38,
0x24024000,
0x88a872d8,
0x122047b9,
0xb86194b1,
0x06d80f23,
0x64233afb,
0x0e96dbc7,
0xce62ee86,
0x4e575f71,
0xf86443e7,
0x4ffc847d,
0xffe597b4,
0x2e56d60f,
0x733df832,
0x20672049,
0xffe597b4,
0x2e56d60f,
0x733df832,
0x20672049,
0xcfb303fa,
0x3476014f,
0x00045a01,
0x7f5eea11,
0x317d808b,
0x0936f3bb,
0x3183ff9f,
0x3e6c8839,
0x67e3fe30,
0x26c4c001,
0xcc4fe0b7,
0x4e3b7e0f,
0x07cd89f9,
0x1bfecb63,
0x6ebc03f1,
0x2934194b,
0x392f4041,
0x2d901ff5,
0x200aafef,
0x6e9f2e08,
0x8ec00034,
0x751ec090,
0xb001c403,
0x0d41826d,
0xcedc8167,
0x3e3f6227,
0x5bc007bf,
0x01dfe427,
0xfbe7bef8,
0x022e980c,
0xb481efa1,
0x34245f4d,
0xa161d620,
0x5d40198d,
0x141b6600,
0x3fc52c00,
0x7b0e02d0,
0x7a5f237f,
0x06deec36,
0x6fa7c0b8,
0x227ac03d,
0x527fe00e,
0xc904f807,
0x13dbd006,
0x1fef01f1,
0x025bf265,
0xe0c04eff,
0x6fd4d7d7,
0x9fedd222,
0x5ec1291b,
0xd92faffb,
0x7f8fe4b4,
0xd3259204,
0x01de5fbf,
0x6378461f,
0x7a6e6003,
0x7ee807b3,
0x06acbff0,
0xb803b8fb,
0x4fdf4a13,
0xb4801041,
0x7d906801,
0x479a0027,
0x77dfe027,
0xd08a0cd3,
0x5dc87f91,
0xfcf843b7,
0x13a01fcc,
0xfb23a0ff,
0x296adf02,
0xcfcc7cdf,
0x72669c84,
0xffeafff2,
0x006c00b9,
0xffdeff95,
0xffb9ffa1,
0xffa4002b,
0x0030003c,
0x0028ffda,
0x0050ffb7,
0xffae0019,
0x007bff72,
0x0017ffcd,
0x002d0033,
0xffa5fffc,
0x0023ff87,
0xffdaffcc,
0x005a0013,
0xff820010,
0x0040ff99,
0x0007005c,
0xffbeffaa,
0xffe90010,
0x0027ff6b,
0xffe4ffc0,
0xfff9ff92,
0x0073ff68,
0x001effcd,
0xffd500b1,
0x00a40033,
0x003effd6,
0xffe9004a,
0x003fff95,
0xff30ffdf,
0xfff1ffc6,
0x0011ffc6,
0xffadffe0,
0x00010042,
0x00130055,
0xffec0054,
0xffd9ff66,
0x0003004c,
0x0037002c,
0x00380012,
0xfffbffa4,
0x00610035,
0xffc4fff4,
0x002a0078,
0x004f003e,
0x0016000e,
0x001effff,
0x0043ff89,
0xffd8ffaf,
0x00730003,
0x00360081,
0xffaeff9c,
0xffbcffd0,
0xff8a001e,
0xffa4ffbd,
0x004d0040,
0xffdb000d,
0xffa80039,
0x00070045,
0xff85002a,
0xff9affcd,
0xffe30014,
0x26aceea1,
0x80e36830,
0x7cb472e2,
0x4b389f35,
0xe4bea2ca,
0xae1cb41d,
0x4082fe02,
0x1a68f481,
0xd72979f2,
0x820731df,
0x87882ec2,
0x3ce05abe,
0xeb198b62,
0x44db4093,
0xbdf8f685,
0x48c934c3,
0xe4f2c854,
0x1801851e,
0xf0126578,
0xc9850fef,
0x9189e317,
0x14d812ff,
0x9e4dc4a1,
0x1f99a58e,
0x9f9d713a,
0xf4ad8f1c,
0x3f5aa686,
0x1d2df39a,
0x331854a4,
0xb6247e6c,
0x960b9879,
0xf0508d1f,
0x6895b5e7,
0x90612aec,
0x93a25ac5,
0xbf849771,
0x959ec6cb,
0xf6c36261,
0x52b824cd,
0xbb1f9e9e,
0xaf838d17,
0x83fe1521,
0x331122c9,
0x754108f6,
0xd6284f8f,
0x9fd983ce,
0x61f9402c,
0x1e9b9914,
0x8dbb424e,
0x09fad9a9,
0x5ceaf6f0,
0x33f1b11e,
0x80a45e53,
0xcdad1a34,
0x96d31abe,
0xdcd41631,
0xddd6196b,
0x0b72a173,
0x7b4b33b6,
0xd5b7701f,
0x2974b340,
0x02afd718,
0xf1330d76,
0x7a4464c1,
0xf296adf0,
0x61191884,
0x472669c8,
0x445039b8,
0x3b227a11,
0x6644a6d7,
0xe7d5fb43,
0x0384c4bb,
0xb39b6105,
0x4ea0b2f7,
0x8419b2d8,
0x2edd864c,
0xcc329c0c,
0x0eb56410,
0xff52b2b1,
0x1ccd8b71,
0x1c8f4fa0,
0x69fc25bc,
0x37acba2f,
0x0dca8dc9,
0xe7e6c85c,
0x06f80f5a,
0x6820298c,
0x1139b929,
0xfb6bd9b7,
0x56410b08,
0xee333090,
0x597c5b02,
0x65f799a1,
0x33e6db10,
0xb4f63eb0,
0x6d25ce82,
0xf3248b74,
0x645b6315,
0x0bbd610c,
0x70c90e99,
0x6a6bdd24,
0x0ce823e2,
0x03fe10a5,
0x13382f46,
0xc03c85f3,
0x6dab6e22,
0xce1fb64e,
0x145968bb,
0x39bd7949,
0x3fbf249d,
0x0b1f9651,
0x26df64ba,
0xe6d42da0,
0x0bc7ba6e,
0xb43dffbe,
0x34b0966d,
0x03f559ae,
0x6279741d,
0xdd650f9a,
0x17c4942c,
0x618f72df,
0x18089847,
0xa5426f7e,
0x01dd9cb5,
0xcb38812c,
0x09cda331,
0xb760e9db,
0x49156278,
0x182b071f,
0x0b0c880e,
0xe05f67d1,
0x1f959a4a,
0xc113223d,
0x3bc4c86e,
0xa8739e23,
0x48d8c257,
0x5b940665,
0x0dffe401,
0x780ccb34,
0x2e2cbcd0,
0x5b940665,
0x0dffe401,
0x780ccb34,
0x2e2cbcd0,
0x327dc8c8,
0x0844dfc7,
0xd8db01e2,
0x270abff3,
0xa6d19024,
0x423b0703,
0x5f600c04,
0x11f44667,
0x47eb9237,
0x40403e4c,
0xc041e807,
0x1b368cce,
0x188faff8,
0x4e7e7b50,
0xcbfc5aca,
0x26269bf1,
0x3b1e6435,
0x29307ce9,
0xeb2ab6d6,
0x0024ffaf,
0xd883d634,
0x30191ff0,
0xc0dc09e8,
0x207019bd,
0x98374ffa,
0x4846f042,
0x089c0526,
0x1a49325d,
0xf183a1b6,
0x368a1fe0,
0x17008831,
0x03642490,
0xfb4bfd76,
0x7ef88b00,
0x9a892e4b,
0x361b6c7b,
0xce9ecc48,
0x11d33c6f,
0x9ffc9c3f,
0x7c8cf0b7,
0x13146f00,
0x0816140e,
0xa47f8152,
0x00f80585,
0x1b93bf3f,
0x4fc0fff1,
0x7b0056c3,
0x0e74d930,
0xb0764e34,
0x301fc062,
0x2ed075f6,
0x1239d840,
0x13c7687f,
0x0140f352,
0x86dc1e1d,
0x1ec6fe4f,
0xc14c1e80,
0x20021d86,
0x7d7e8406,
0x72027f02,
0x7482c01f,
0x34b0141a,
0x23607d3a,
0x31f7d30f,
0xbe48a602,
0x0db33d46,
0x0483a737,
0x65fcfdd2,
0x009b69b0,
0x2f84d438,
0xf89c36ef,
0x02f7dfbf,
0x009b69b0,
0x2f84d438,
0xf89c36ef,
0x02f7dfbf,
0x67eff2df,
0x602ff3fe,
0xce7c240d,
0x4dae790d,
0xbfe371bb,
0x33db79f8,
0x9f487ff0,
0x0cbf779d,
0x32f48c92,
0x31f03480,
0x07f4f395,
0x7ee35e4e,
0x785e21d8,
0x003fdb84,
0xf2781f10,
0x6387f00a,
0x0782d205,
0x5c20df9f,
0xf1e5f63f,
0x4a3a7bbd,
0x5cdbcc02,
0x26cff3fc,
0xe5212df4,
0x4a405010,
0xb9fe241e,
0x37fc214d,
0x3cd3f89e,
0x41973f89,
0x0c1b4cbf,
0x27c7e012,
0xf4b26026,
0x1fcee03d,
0xff23fe24,
0x7004fb62,
0x43ef7e60,
0x7aa92347,
0xb0d9ad7b,
0x36807a4e,
0xde3c7e60,
0x690ba0f3,
0xf4589562,
0x2f4a41be,
0xfeddebbb,
0x37403321,
0x7f9f6ca6,
0x34e6cdbf,
0x4377eefb,
0x038799be,
0xe1a7c1bf,
0x6d9310ef,
0xaa5c2409,
0x0fff2011,
0x04853fec,
0x715bf004,
0x75d84e1b,
0x4d93103f,
0xe7f37dff,
0x649054d8,
0xbfaea2bf,
0x0050dd39,
0x79d0bf34,
0x7e501f9d,
0x4f6449e8,
0x76feddbe,
0xde5ade20,
0x49bc75fe,
0x16f9f6e0,
0x01f32fa9,
0xefcbf23e,
0x72105c39,
0x00d98c97,
0x7fffff05,
0xefcbf23e,
0x72105c39,
0x00d98c97,
0x7fffff05,
0xdb7c6e0f,
0x179bff3f,
0xf6024d32,
0x4a7ff2d0,
0x6cff03a7,
0x363cdfbe,
0xcffd87ff,
0x7fa70bf6,
0x1fdd7f37,
0x7c4a0000,
0xf819cf85,
0x3e7c1bf3,
0x97740954,
0x3ffce9fd,
0xffa5bff9,
0x4909c3e0,
0xfe100011,
0x1f47ff8d,
0xf01ed9f0,
0x404376ff,
0xbe03410f,
0x07622389,
0xc62141bf,
0x401effb9,
0x1319073d,
0x55ac9bf4,
0x00c99384,
0x4df00cf6,
0x764bb5f8,
0x40580992,
0xd7f8321a,
0x01c0000d,
0x33030006,
0x5a1a7973,
0x4c7a6316,
0x2fbfdbfe,
0xd0fbbc00,
0x7830680f,
0xb0e5d120,
0x01b7bc0f,
0x57e031c1,
0x4900c8ad,
0xf8019003,
0x703fe506,
0xd8c309bf,
0x7d992c4f,
0xe37db700,
0x0cefef37,
0xfdee3611,
0x249fffe3,
0x98021d80,
0x21880494,
0x5b6c35b7,
0x7f9e604e,
0xb7b9be73,
0x0006e00c,
0xb3fc9ffa,
0x77dbbbfd,
0xd0f09038,
0x180265f6,
0x73cbf1be,
0x01c1258d,
0x3bf8401e,
0x079fe7f0,
0x3302779f,
0x6f812e82,
0x07626e10,
0x7e3ff2a0,
0xb8e767f6,
0x341773f1,
0x0003809e,
0x5fe0101e,
0x6aff2e80,
0x6104f201,
0xc9850643,
0x7037134c,
0x6aff2e80,
0x6104f201,
0xc9850643,
0x7037134c,
0x7eda070d,
0x10048002,
0xbec0e179,
0x7266071d,
0x0ff98040,
0x7fe4c000,
0x2b4a8011,
0x75804daa,
0xab3601fc,
0x01189ec5,
0x86e7e160,
0x3a00a4dc,
0xf928b764,
0x0d012447,
0x79fc06c4,
0x100b0015,
0xf845ff0b,
0x3f665527,
0xcb0b24e9,
0x31cbe103,
0xb7f41000,
0x7a481f61,
0xe80764bf,
0x523eef69,
0x457f81fa,
0x327fe402,
0x507daf41,
0x4da0048a,
0x401f9001,
0x0005ff80,
0xa8000ed0,
0x77dd0219,
0x11699305,
0x2ecb2bd0,
0xb77c6ef2,
0x3390840b,
0x200047c8,
0x0c884490,
0x7fdb69da,
0x2347ffbf,
0xfdbbba46,
0x6d590f7f,
0xfee097fe,
0x299c9ff2,
0xf6e40948,
0x500d081d,
0x2d00c9b4,
0x717c21b4,
0x353067bf,
0x6fc88370,
0x7fd86ae7,
0x7c76c001,
0xf79a01e0,
0x01061f7c,
0xf323fe07,
0x07f6ddcf,
0xfb946c06,
0x1905df0f,
0x2a876813,
0x64407cdf,
0x11928004,
0x071ac350,
0xe7900de7,
0x2afbff0d,
0xa7fc819e,
0x0073bf7f,
0x02018079,
0x7b58006b,
0x37fbfdb6,
0x598654c9,
0xa9049fff,
0x795a55b3,
0x37fbfdb6,
0x598654c9,
0xa9049fff,
0x795a55b3,
0xf0814124,
0x2bb9e8e7,
0x2d8ba103,
0x40ffdbe0,
0xd16f0b98,
0x22e0985c,
0x0a6ff8fc,
0x403b7838,
0xcf17e9ae,
0x401bc497,
0xf7fc4800,
0x76f35e9e,
0xb979b701,
0x76fcd649,
0x0b4ff61f,
0x30ca5b5b,
0x4e860900,
0x1b6614f8,
0x10064f90,
0x702c27b8,
0xd29299b4,
0x3f50d00d,
0x2e6f1bff,
0x4b399feb,
0x396e99da,
0x2f669841,
0x0014db41,
0x4e468e10,
0x4209b205,
0x0c6daded,
0x7b165bf9,
0x7dda45d8,
0x786f0cc5,
0x662cd61e,
0xdd9f43f7,
0x5d321412,
0xa283932f,
0x6ec39879,
0xdf0771d9,
0x34a41690,
0x9979f984,
0x45eb3e9f,
0xc9a7b32d,
0x08405b35,
0x0f538f35,
0x5fdcbf4b,
0x6c94831a,
0x49239302,
0xf43f0481,
0x1b9fe167,
0x7f74bf77,
0x3f200070,
0x786de749,
0x4427c499,
0xe87e440b,
0x4a3379a9,
0x6091b620,
0x223d31af,
0x93a45b80,
0x007a61d6,
0x396b0615,
0x53b71fe1,
0x4012381f,
0x40e8976e,
0xa5902c60,
0x4037b438,
0xb4fec6a4,
0x7a0fa4af,
0xb4dc274d,
0x1753067e,
0x2b440c12,
0x4e7e89d8,
0xb4dc274d,
0x1753067e,
0x2b440c12,
0x4e7e89d8,
0x2767e000,
0x7cff5870,
0x44381e03,
0x2066faf0,
0xd81b7244,
0x22b9b24d,
0x04b992b9,
0x3ff91370,
0xcd3ecf9b,
0x4ff6c40f,
0x7e61ae40,
0x2014b41f,
0x3f1b6e4d,
0x660d9340,
0xa0d54808,
0x2d77286c,
0xca465f97,
0x1b181db4,
0xb79c098c,
0x5b42004d,
0x490ef1de,
0x737b3f26,
0xbedba705,
0x1b84090c,
0xd892ec58,
0x66e9cdb9,
0x1c34f9d3,
0x77eb2f7a,
0x3b0faff3,
0x4df69050,
0x6930cc98,
0x6fe9a26f,
0x005f8c01,
0x11e00a00,
0x4dd013b4,
0x503d9bf2,
0x27a00191,
0x21396331,
0x66d19202,
0x5daf9d30,
0x424c9f77,
0x7bf05790,
0x701a02bf,
0x027b7e2f,
0xaf3eb7f6,
0x1001e814,
0x376dfff7,
0x693b6d00,
0x1f03981b,
0x72400406,
0x4901be2f,
0x76007b64,
0xf890b77e,
0x7dc0132c,
0x8bda98bb,
0x4009e8d0,
0xf116417b,
0x0c364ba9,
0xdf7c8010,
0x091333ee,
0x2130af07,
0x6fc00000,
0x9195b627,
0x7df2c028,
0x4f5c7df3,
0x6cf7a286,
0x6eca05b9,
0x74ba7e18,
0x0a7dff30,
0x118b8020,
0x4c3e69fe,
0x12782610,
0xe403cdff,
0x01380fbf,
0x003c79c5,
0x4143e69e,
0xe403cdff,
0x01380fbf,
0x003c79c5,
0x4143e69e,
0xf7273f44,
0x025bddbe,
0x4bfff607,
0x6064fd81,
0x42604d00,
0x1937f004,
0x80008c49,
0x413fe243,
0xf8930fd0,
0x10e01506,
0x437ff24c,
0x06db11fc,
0xa4083e7f,
0x4b1baff9,
0xf691bb9a,
0x0ff76c8b,
0x083c6109,
0x1de4109d,
0xfb67287f,
0x2ec990cf,
0x27781936,
0x06c01fcc,
0x032001f9,
0x33e9ec38,
0xaffdbe00,
0x2e8b61f9,
0xd5a46e27,
0x550002f6,
0x7edb30da,
0x7ffbd267,
0x3bfefa00,
0x4f48e13c,
0xfe6fff01,
0x21f8129b,
0x016207fd,
0x30341a21,
0x3d4bb489,
0x0d3cbdcf,
0x79fe4024,
0x64331260,
0xffdc00c7,
0x7fdffc90,
0x0d009fa1,
0x06bbb79c,
0xfff83030,
0x6e668016,
0x00040683,
0x4e0fffde,
0xbfc06bf4,
0x3fc1ac2f,
0xb61c0967,
0x080ae00f,
0xd90f0d1e,
0x35ff9710,
0xd92e2841,
0x550725b0,
0x2d5a5ff9,
0x45410011,
0x782369bf,
0x17ccc839,
0x6743c1b6,
0x403eee4f,
0xf8909cce,
0x302ec270,
0x22003e04,
0x1243e360,
0xb347ede7,
0x034ff20d,
0x3281d045,
0x07e91082,
0x3edea900,
0x4e3b7eaf,
0x3281d045,
0x07e91082,
0x3edea900,
0x4e3b7eaf,
0xfebe09e0,
0x7fa44c0e,
0xbf413681,
0x7ecbe58d,
0x27fcb33d,
0x2dc7fc24,
0x102e6e39,
0x7202dfd3,
0x0fd03a24,
0x20d5a00e,
0xc699edf6,
0x091ffbde,
0xd8ef75df,
0x7fff5091,
0x64f40e30,
0x0ae01873,
0xb37f4c20,
0x26f2e705,
0x03a0f7ff,
0x4ffe3b91,
0x4dd0507a,
0x102fe202,
0xf72fb340,
0x3184c3df,
0x7ad480ca,
0x40c6c206,
0x502dc19e,
0x4c4f2613,
0x0dbfa5f0,
0x502e8f38,
0x3f02c9c3,
0x1fb27789,
0xb6422376,
0x0408133d,
0xc6ad8400,
0x6cc01fa8,
0xfb6c18be,
0x4c99726f,
0x8121f0c3,
0x4fd4801c,
0xcf0404fd,
0x7e3b600b,
0xd903b349,
0x71db7b92,
0xd5f5f009,
0x60cf6016,
0xb83c4e06,
0x7ff6cca1,
0xf76e77d8,
0x73332009,
0x2367fe49,
0x27d974a1,
0xdfde0266,
0x19c77eec,
0xfffc026d,
0x1a326409,
0x3eb7330a,
0x06476382,
0xf9236e18,
0x7980fc0c,
0x584a60e9,
0x193bb260,
0xb7340400,
0x120f209f,
0x96260cc9,
0x00092ff0,
0x62c80236,
0x00366db1,
0x006eee16,
0x49bfa0f8,
0x5fe87ecb,
0x27cce67e,
0x006eee16,
0x49bfa0f8,
0x5fe87ecb,
0x27cce67e,
0x24c088d9,
0x1bc17069,
0x36fc8118,
0x101f2429,
0x37908137,
0x553fd44b,
0x0670588a,
0x02504230,
0x830db820,
0x31bd8270,
0x40dfe7d3,
0x6bfb020e,
0x194de10f,
0x353ee432,
0x284243ae,
0x49027faf,
0xc19f6edb,
0x763a0e6f,
0x4c9ac376,
0x5ced99f6,
0xd36ef8ff,
0x111dfda2,
0x241367e7,
0x503b6da2,
0x03f8d607,
0x04acff41,
0x7e8a68d4,
0x61fa7b4b,
0x1dfd9f5a,
0x09e89c4f,
0x33e0f05c,
0x4fc4e969,
0x25c9c9f7,
0x7906f06d,
0xce4d8392,
0x08769efb,
0xcc9771ff,
0x2404dfd6,
0xe0188011,
0x77c964bf,
0x109bfcff,
0x4bad246c,
0x6d228ca6,
0x42168072,
0x181a12c5,
0x32cf0030,
0x08001b24,
0x3e3fdc7f,
0x9f6e404b,
0x08580449,
0xfa9131dc,
0x093ca442,
0x4b3fc9e8,
0x6b48fb70,
0xebf4c8c8,
0x0bc20bf3,
0x85e94c63,
0x721984e3,
0x31045ac1,
0x184884b9,
0x7798961a,
0x69f20df5,
0x4fd1c078,
0x37e0e221,
0xa640044d,
0x018d646f,
0x009b6cf6,
0x21649b3c,
0xdec9be48,
0x6cece650,
0x87f89b65,
0x7c083f2c,
0xdec9be48,
0x6cece650,
0x87f89b65,
0x7c083f2c,
0x14c96320,
0x5dadec99,
0xb39df42f,
0x4352cde0,
0xcc09fec8,
0x11ec506f,
0x16000380,
0x0803fc06,
0xb80707ed,
0x34cf53ff,
0x06719041,
0x4838150c,
0x273fff57,
0x7460e27f,
0x5eea9687,
0x7eeca072,
0x801c2fb5,
0x2011983e,
0x5f7c4ffc,
0x4607bc0c,
0x0903fc47,
0x03f907f1,
0xbd0c1002,
0x41c180ec,
0xda01b5bd,
0x165bf94f,
0x43cbf342,
0x73311739,
0xfcfa9943,
0x21d0df1f,
0xfa0583f7,
0x7337ffe8,
0x2faec01f,
0x0e75fe24,
0x0b29bf74,
0x3fe4ec9d,
0xbb63d783,
0x02578408,
0x3f2b51ff,
0x401db210,
0x660c5ee4,
0x724ce860,
0x5c95fe06,
0x78f30362,
0x02fc6207,
0x4920303c,
0x36c08093,
0x01b11b76,
0x7fca8020,
0x3fbffb65,
0x7b018802,
0x71008d7d,
0xfffdbe18,
0x78127304,
0x037da9fa,
0x203fa37e,
0x4ec04217,
0x09d1fc38,
0x000557fd,
0x365b7370};
const unsigned int bc1_1_1[] = {0x05b301df,
0x4fc40310,
0x7e7c2cc7,
0x4d693903,
0x08d4c0c7,
0x502ee0dd,
0xb8434121,
0x7fb9facf,
0x47db67b3,
0x7f7fbff6,
0x3bf3e4ff,
0x67370c1d,
0xbe065dfc,
0x278e43fd,
0x2112d529,
0x0b30e77d,
0xbe065dfc,
0x278e43fd,
0x2112d529,
0x0b30e77d,
0xe5dcc133,
0x7ec5aa11,
0x2407a96f,
0x7b1902ff,
0x83fc05b2,
0x3fdfa50b,
0x00834f44,
0x55ed5c1c,
0x42d81bfe,
0x141827bb,
0xb0bbb630,
0x66966d8d,
0xd9677dbc,
0x1da4d319,
0xd24c6e46,
0x4b067f11,
0xb9247c4f,
0x4f2863e9,
0x870242bf,
0x34392495,
0x5edc465b,
0x3277e6da,
0x76d570e6,
0x3b47d2c2,
0x5808a8e6,
0x53400dae,
0x90ba04f9,
0x7fdfcd8c,
0xd15b691e,
0x4ad98de0,
0xa10f4d4f,
0x2d0f601d,
0x880401d0,
0x323063f1,
0x41fb27c2,
0x323c51b2,
0x4490d21d,
0x5b00d9f2,
0xb66f6500,
0x30243945,
0xdadf04a6,
0x5c702402,
0xf6c035ed,
0x44a11c76,
0x837f7cf4,
0x501ccf47,
0x4b296df2,
0x6c1f3bd4,
0xf4849837,
0x78649e6e,
0x08e9fdce,
0x6df9dfe4,
0x6ff72dcc,
0x32f5121b,
0xb380406e,
0x7b3e7d02,
0xbfecbe5d,
0x36bf3660,
0x0be0e86d,
0x6c48196f,
0x59bc42d8,
0x64892db3,
0x992eaef3,
0x4a324f67,
0x5c93527a,
0x40606ced,
0x9016d1fb,
0x690065ad,
0xd96f7d7f,
0x7b4bd273,
0x02925836,
0x38abdca4,
0xd96f7d7f,
0x7b4bd273,
0x02925836,
0x38abdca4,
0xa26c919f,
0x02a921a4,
0x375dea69,
0x13d91d8d,
0x7f3f7dfc,
0x0f1584b0,
0x58d56677,
0x786cb5fe,
0xe13c5f90,
0x72bb7324,
0x772d2780,
0x04a806d7,
0x07751513,
0x761f0353,
0x6a989e2e,
0x7e897e4c,
0x06dae2c7,
0x556c7f70,
0x791b92c8,
0x49faf049,
0x541d378e,
0x03f6789e,
0x47d3bb52,
0x7ccc9c91,
0x76fbce49,
0x196789fa,
0xcde341db,
0x4dc61f00,
0x0f8b41bb,
0x49a73161,
0x485fa448,
0x76ac8943,
0x59699684,
0x583d8b8a,
0x9f369b56,
0x7b190cd2,
0x408c2c4f,
0x198d9ede,
0x148edc09,
0x03c31e0c,
0x3d6f6c6d,
0x67af67af,
0x20344ecc,
0x49f09f72,
0x4d1867be,
0x5ae1ffe2,
0x6a7c907f,
0x72fe3a08,
0xde9352bb,
0x61c345c7,
0x8bfc3f74,
0x2ca6da0f,
0x4d808c00,
0x0102e296,
0x1f62f026,
0x57e76258,
0x24885043,
0x779f6243,
0x72ddf17e,
0x7ef860a9,
0xc44a6141,
0x7382dde6,
0x480509e4,
0x0224b876,
0xcda006cb,
0x61297059,
0x103c7407,
0x7fc05fb9,
0x93e84927,
0x7a60140b,
0xd88697d9,
0x00001d7d,
0x93e84927,
0x7a60140b,
0xd88697d9,
0x00001d7d,
0xb8dc7e84,
0x7edb1f7f,
0x00bbfe00,
0x7bc45ef8,
0x932407d9,
0x6475318c,
0xf1f62094,
0x003fe025,
0x07fd9e8b,
0x6039cbe0,
0x977f6fb4,
0x0a06ffc2,
0x005c09ff,
0x0fe41b34,
0x227cdfb6,
0x00086af1,
0xff03ffbf,
0x0efa2141,
0xc8bd0b02,
0x6800000e,
0xdedbee04,
0x4e7f6010,
0x977c0800,
0x7cc03eea,
0x07539a5f,
0x4dffeffc,
0xfc81ee30,
0x00243c83,
0xf8900801,
0x7dc2db8f,
0xf80003b6,
0x1036e245,
0x4288011f,
0x00101bff,
0x03dbbe00,
0x6835fff0,
0xdbad91ff,
0x127fe3bf,
0x0529b4df,
0x53bfe00a,
0x7ffc1200,
0x0800a3ff,
0x4f600001,
0x37f7cdbf,
0xaf004dfe,
0x4bbf240c,
0xb809b772,
0x562472b5,
0xf81417c6,
0x067d0c1e,
0xc803d3ff,
0x6dfff1b5,
0x07e417b7,
0x77fb5c18,
0x27d03ff6,
0x743ffff0,
0x40031ff8,
0x0005edfd,
0xccc06e00,
0x4fe4dffe,
0xfffef9e0,
0x36dbe40f,
0xb8400027,
0x7dbe4cd1,
0xf0036607,
0x4ee774fd,
0xb003009a,
0x36ffebf6,
0x262148ff,
0x6ffc8000,
0x00dda2db,
0x0547e000,
0xcdb3ff39,
0x0ecc8038,
0xd9fa4809,
0x46149200,
0xcdb3ff39,
0x0ecc8038,
0xd9fa4809,
0x46149200,
0x2b67fed9,
0x4202df30,
0x276d49b0,
0x599ec8b1,
0x080dc834,
0x27fb71b0,
0x2110b980,
0x09409b67,
0x996f7192,
0x430d70b9,
0x7a77ccc1,
0x6dfcc742,
0x996e4d18,
0x25a67359,
0x5987f3b7,
0x587af269,
0xa39fcf46,
0x09a02d8a,
0xa4f00d66,
0x77d2840d,
0xc26bf33e,
0x326b1f9e,
0xc37c0102,
0x7efb79be,
0xa4933e0d,
0x5d9f7329,
0x18267f40,
0x31077d80,
0xbf0df41d,
0x1770e4f9,
0xcf60680a,
0x6114908e,
0x02666f64,
0x0d3ffc0e,
0x0980be49,
0x7f34400f,
0x2da02ff5,
0x0b237260,
0xcfff026d,
0x701a9fcf,
0x97b7c94c,
0x70c16000,
0x485c1e3b,
0x010bf81e,
0x0e6885be,
0x56b07b42,
0xe80b7e76,
0x0dc1f3ff,
0xd1074c9b,
0x72fcd76b,
0x85408a9b,
0x16566c19,
0xba26c815,
0x62f89cef,
0x211029e9,
0x7fbf6db9,
0x41960303,
0x5d939002,
0xc4237cda,
0x0016a1dc,
0xdf01ffde,
0x7585c6e1,
0x2841d24c,
0x53c17d72,
0xcf232d32,
0x72011d1e,
0xa62bde29,
0x47c4324d,
0xba807e40,
0x7fee8d6d,
0x3a6005c1,
0x36cf307c,
0xba807e40,
0x7fee8d6d,
0x3a6005c1,
0x36cf307c,
0xf90fffbf,
0x7237e3c1,
0x2fbc028b,
0x703d9d8c,
0xdc150c9f,
0x0ff5eff0,
0x0de17b00,
0x1d807040,
0xf3f5f780,
0x49a341d1,
0xd98c1c04,
0x35bc097a,
0xcbe97e97,
0x6407cca1,
0x0e1760b6,
0x7424ffe0,
0xb0d2c9ff,
0x19830000,
0x011f7612,
0x3fdf0001,
0xb08bbdb7,
0x77f81481,
0xd000f006,
0x79398008,
0xc00f6f36,
0x6feeffbc,
0x96d8db3f,
0x7fd0fb94,
0xb8fcff7b,
0x3d82504e,
0x287cf03f,
0x7e27e00f,
0x3c7dff00,
0x65231e3f,
0x57fd8821,
0x7c063c06,
0x4ffdfe08,
0x7bd89ff6,
0x43900fa0,
0x01c00bf2,
0xe8427ff0,
0x0177fe85,
0x06c18021,
0x4c2f0c0e,
0xcbff81ff,
0x4d8961ff,
0x207c09f9,
0x77e781f0,
0xfa617127,
0x3347fd09,
0xb5eadfff,
0x2bfb6371,
0xfe4bff49,
0x1dd80095,
0xffd07c0a,
0x7b249c8d,
0x0340a3fb,
0x05dea040,
0xb776803f,
0x3ff681a0,
0x30ffec66,
0x79fd9faf,
0x477f8017,
0x01f2e0f0,
0x40dc1ffc,
0x6cda4440,
0x38f80174,
0x0fbfa600,
0xc325faff,
0x0f70f1b0,
0x148a0802,
0x4e14f4a4,
0xc325faff,
0x0f70f1b0,
0x148a0802,
0x4e14f4a4,
0x0ac8d14d,
0x6db2a1e8,
0xec388e9b,
0x6821039d,
0x779e0fb4,
0x3b7501b2,
0x51cd763c,
0x58358216,
0xd5bc3658,
0x7097c3e6,
0x0739a122,
0x4c40e758,
0x905084ab,
0x16fd8e09,
0x239f8112,
0x2cfcbe67,
0x19b78836,
0x2f4aeb42,
0xf7b44e93,
0x215049c7,
0x660ce14e,
0x40de41f8,
0xc50ef8ec,
0x02505e4c,
0xa08c971a,
0x3267a18d,
0xdf5f657f,
0x341effdf,
0xb7fc6a78,
0x13d81f7f,
0xd7aee5b8,
0x3e0b7c2e,
0xa58735de,
0x1a60d12c,
0x4a92de7f,
0x4272cd8b,
0x21e07fdf,
0x34dcf301,
0xfc26cf7e,
0x60c0063a,
0x166853b3,
0x4683e4be,
0xec0893b9,
0x135031c8,
0x2ad185f0,
0x6e041e5b,
0xc0418dbd,
0x50145487,
0x94f753de,
0x7201f8b6,
0xbe4b0102,
0x041b5ab3,
0xf4642ff0,
0x0dedf526,
0x95e4fd3f,
0x006c548b,
0xfefd642c,
0x64c6e5f0,
0xd7a7f8d3,
0x20e35081,
0x12f01fc9,
0x7beccd92,
0x6e5fa5f8,
0x3324035d,
0x266b23e0,
0x4ff7a0fa,
0x762b7bbe,
0x6e90f78f,
0x28bf0b49,
0x00f53583,
0x872f241f,
0x403593f0,
0x28bf0b49,
0x00f53583,
0x872f241f,
0x403593f0,
0x3010125f,
0x7b0d8848,
0xe36a9008,
0x09e266eb,
0xc5a64520,
0x001e64e6,
0xe47341c8,
0x6e9a0497,
0xd2a39709,
0x361fd2d7,
0x566d938b,
0x0102ec89,
0x14220428,
0x1b400296,
0x7f9252f9,
0x41903686,
0x0134be01,
0x1cec93fc,
0x473f7e00,
0x10dd7806,
0x4f21fe8f,
0x7ff80088,
0x3f0c01ec,
0x70401ce2,
0x4b1241b5,
0x7fe00c8a,
0x3fe00049,
0x529fe27d,
0x3867fb01,
0x70040179,
0x648f0e69,
0x7a179fcf,
0x43a89efd,
0x2824ec85,
0x4b3082f9,
0x23600807,
0xa3e64ddf,
0x5ee8c8f1,
0x0009c3cd,
0x5a5fe276,
0x7c1fd9c1,
0x4000e486,
0xb8266ff4,
0x6cb24c49,
0x0c1fedbc,
0x01000bf4,
0x0e1381f4,
0x09603191,
0xf2039203,
0x321fd249,
0xe904a3be,
0x0044e075,
0xa27f405e,
0x792cf81f,
0x8403edfd,
0x7de6737f,
0x5863fc06,
0x00080e80,
0x38076a00,
0x001b0030,
0xfc1c9fcc,
0x07ecfbe0,
0xcee572cb,
0x587b6993,
0x449ffbff,
0x5b7dc0bb,
0x6a038027,
0x0c740164,
0x6ed7f303,
0x79418002,
0x7f836e34,
0x5916b431,
0xcd966047,
0x7f15600c,
0x40976403,
0x0206c07c,
0xcd966047,
0x7f15600c,
0x40976403,
0x0206c07c,
0xc36ffe86,
0x1bfe3e41,
0x610101dd,
0x33edad9e,
0xbc159acf,
0x6100779b,
0x1b5b94fd,
0x36310072,
0x0f7e3916,
0x19e73530,
0x0d18487a,
0x752ee006,
0x0f9b41c0,
0x08545241,
0xd848d991,
0x71fc43b9,
0x21fbd9e0,
0x23d9105f,
0x80afe1bf,
0x7e0db803,
0x96ee4ef6,
0x640bdbd4,
0xfc9e4059,
0x2127bbc6,
0x20402201,
0x32887940,
0xced890fb,
0x0f549270,
0x25feffff,
0x01bfa05f,
0x3fd8167c,
0x3424a331,
0x1cf887bf,
0x77599400,
0x01e84dd2,
0x690dbd0f,
0x210c0590,
0x1f78c41f,
0x3e8283dc,
0x4f6ff3e2,
0x273c8005,
0x1839709a,
0xb920b3fa,
0x26b41fbf,
0x8622f88c,
0x0047344c,
0x3a9e1e03,
0x1ee6e568,
0xef5f7c03,
0x643de5f7,
0x3d2277b7,
0x0162e819,
0x37fc8680,
0x75319c95,
0x133f0107,
0x76d91c92,
0x45044876,
0x5d40b640,
0x5874805d,
0x0944c081,
0xe3be4286,
0x167f9eff,
0x0583fa83,
0x05e98608,
0xeb4309d4,
0x0028329e,
0xdbf85e49,
0x00c01271,
0xc00d91cc,
0x0ee48de6,
0x0b058d25,
0x3c884dd4,
0xc00d91cc,
0x0ee48de6,
0x0b058d25,
0x3c884dd4,
0x306f73c9,
0x6f83c0f0,
0xc957fbdf,
0x6f4418d5,
0x853bfc88,
0x7755cbff,
0xef9e1cd0,
0x132ca179,
0xcf0db25b,
0x331fe674,
0x64811617,
0x760adfdd,
0xc9f5ff9b,
0x1fcd04de,
0xd7bb3ffe,
0x2d8a0dc6,
0xa6cfb04a,
0x112eef44,
0x3fd99d98,
0x1200d3c5,
0xdb5d2134,
0x090be7f9,
0x42f4ffec,
0x21888be0,
0x01f5de3d,
0x76df8d8d,
0xf9366fd2,
0x03b083fc,
0xe3dc69ff,
0x42069c60,
0xf90083bd,
0x48c3dd70,
0x875c0f36,
0x2c46d26d,
0xc9e36dcc,
0x0cb409ef,
0xc26a0d9e,
0x5f5fed29,
0xeafd21cb,
0x217fa080,
0xae604939,
0x7fcd9b91,
0x8158d5e7,
0x27c01005,
0xc883fd46,
0x00c16206,
0xd9f267e6,
0x76d7e012,
0x406e75e8,
0x3eba1bbe,
0x07aff9c0,
0x3e47e1f7,
0x077da1e4,
0x620f9bf4,
0x06bde5e9,
0x21178fd1,
0x418ffac6,
0x2907ec23,
0xa85b37ed,
0x3ecb8fb1,
0xfbf461b9,
0x191fffe1,
0xef546d5d,
0x610fe10d,
0xfa48a2a7,
0x02700301,
0xf3608037,
0x260adf7f,
0x846b79ff,
0x6887e0ae,
0x405b7c11,
0x1020e12d,
0x846b79ff,
0x6887e0ae,
0x405b7c11,
0x1020e12d,
0x65cffedb,
0x75b1fe56,
0x164881b2,
0x324817f6,
0xf81c4e04,
0x66327cbb,
0x7a1a8000,
0x263b2de7,
0xf898ffcc,
0x5d8ba009,
0x2826aa7f,
0x203411fb,
0xb5809242,
0x5d040d00,
0x813fdedb,
0x52dda508,
0xf5115d6e,
0x46091c06,
0x2367f4ca,
0x7fe70602,
0x24448b47,
0x137e8002,
0xd11071f0,
0x5f0ee086,
0x176e47e4,
0x56d92064,
0x36dd443f,
0x5d3d9521,
0xf313c078,
0x24c1c33f,
0x20005ff2,
0x1bd861fd,
0x604e7792,
0x74101dbf,
0x94908868,
0x798cc554,
0x8fb081ef,
0x79d001bd,
0x13e3be07,
0x036f9800,
0x1f23cfa9,
0x646137d1,
0xf89a040e,
0x61cdf80c,
0xda1085b6,
0x2644acd2,
0x488004de,
0x01e49bf4,
0xe9100e11,
0x30001a06,
0xd0020041,
0x6f887656,
0x8327b7ff,
0x36984034,
0x3c016df0,
0x018a1ed1,
0x02919006,
0x00c178e6,
0xa2694ec8,
0x11000f73,
0x4f80c0ca,
0x3bff0272,
0xf8910048,
0x29f32dbb,
0x6a0067e7,
0x5fe0ab48,
0xc5d81fde,
0x6f7fedbf,
0x069340d7,
0x01bbec46,
0x578cdf27,
0x15fba27e,
0xd1828dd4,
0x0c933c8d,
0x489e4e96,
0x2468fc18,
0xd1828dd4,
0x0c933c8d,
0x489e4e96,
0x2468fc18,
0xb61250bb,
0x624a9906,
0x6f25f929,
0x0eef4b0c,
0xd0fe03eb,
0x763fc13e,
0x277b7898,
0x26081346,
0x2b79b6db,
0x010db2e8,
0xd89c8106,
0x7d779f4b,
0x60aec927,
0x46bc0d79,
0xb074c9f8,
0x70d65d9d,
0x73b441e9,
0x6c15ed4c,
0xb5c3f22d,
0x011647bd,
0xde821dba,
0x52355e95,
0xd14bd827,
0x21c661bc,
0xb4b71007,
0x11f6faf8,
0xe4367f5c,
0x3ac35f72,
0x0cd7b21f,
0x315f0f9f,
0xf91c8c9f,
0x76da25fd,
0x0722640d,
0x69041b22,
0xff0d09cf,
0x2ffea599,
0x2be96c94,
0x4b24bdb2,
0x2b7a6a6f,
0x0cede235,
0x71540204,
0x7eb9b9dd,
0x01b8032d,
0x41943872,
0xbfe1e844,
0x51337247,
0x230011d8,
0x4121e64d,
0x1b7c4d90,
0x4dffe80f,
0x0202b344,
0x1f142895,
0xb084fa0b,
0x28d9fb74,
0x7bb1fd6c,
0x30b65dd0,
0xdad60780,
0x2007bc31,
0x64a3d870,
0x3fd957c5,
0x4709f791,
0x06dfeb1b,
0x384306ef,
0x6ed2b3f6,
0xcf4d6b26,
0x00a7b360,
0xbde53623,
0x5806eaee,
0xf004dab3,
0x0bc025bf,
0xa06dcdb1,
0x0d0be47b,
0xf004dab3,
0x0bc025bf,
0xa06dcdb1,
0x0d0be47b,
0x0b6e7526,
0x1ca654b9,
0x309fa624,
0x793f8fd7,
0xfc849fba,
0x166c1b61,
0x249fcbfa,
0x7e748c12,
0x9e5cdf25,
0x2ddf67b3,
0x000a0075,
0x7e449a01,
0x805c466c,
0x28c045f1,
0x21bbd930,
0x4beff329,
0xffda7266,
0x010b7a34,
0x0acf588a,
0x6132e129,
0xf10f7769,
0x126e049d,
0x08044274,
0x41bffc10,
0x37c1323f,
0x0996b3b5,
0xe7b36faa,
0x48141fa1,
0xccdec0db,
0x3db4702f,
0x09ef49b7,
0x0cdf3200,
0x3c8bec25,
0x337fe02c,
0xfc8b0b20,
0x083efac0,
0x4106931d,
0x05330249,
0xbc676f3f,
0x067dde01,
0x35d0e55b,
0x3e865a41,
0xd6eeee20,
0x0e367bd0,
0x24c1f2f6,
0x77093bf1,
0x87e74376,
0x79c9633e,
0xf92cbd89,
0x4df23c01,
0x47b40549,
0x1ec527af,
0x012e40fc,
0x4215d2a0,
0x83e3c7be,
0x3b245069,
0xf2cc3700,
0x1fed669b,
0xdaa6f253,
0x6d3f86c7,
0x0327f5f2,
0x40c45b7c,
0x8193fffb,
0x616517b9,
0x86fc6d61,
0x1717b1b8,
0x860ffb0b,
0x5ca23fcf,
0x7f082b38,
0x2d1240d1,
0xcae008a9,
0x493cdfd9,
0x7f082b38,
0x2d1240d1,
0xcae008a9,
0x493cdfd9,
0x509ede4b,
0x4187da48,
0x6523ff9e,
0x010f2f43,
0xf7d53ffa,
0x7f64f7e7,
0x58dfb1e1,
0x6de4a776,
0x6009a8df,
0x690003b7,
0x5c9ce9df,
0x1c649dd0,
0xc7c25f2f,
0x3429e402,
0x341f2059,
0x44a04a02,
0x7ef008f9,
0x261b3302,
0x30acce90,
0x41fff2dc,
0x7e10c044,
0x4fd4c91b,
0x35fdb249,
0x1c7b1df1,
0xb0fd244a,
0x02ec8fcd,
0x90128c05,
0x03d800c8,
0x881c6910,
0x16da0f0e,
0x5301d2ec,
0x390c3e4f,
0xa5b7fc5c,
0x4d5b2807,
0x349dffc8,
0x07e49c22,
0xd00ac237,
0x34e4c6de,
0x2f69b4a5,
0x680e4be9,
0x5a0042b4,
0x02fb2b64,
0xf3db73e5,
0x7fb49d01,
0xbfc2fee1,
0x6939a4a1,
0x4bd08200,
0x2d7e9a4e,
0x21a3cfa5,
0x7fa764db,
0x0691e10f,
0x2fc4bb06,
0xa094a9e0,
0x527ec850,
0xfb0fd347,
0x4d7ff943,
0xf13d953b,
0x1f46a517,
0x34916d5b,
0x3d3b5360,
0xfb7f725f,
0x5bcb393e,
0xaf23a64c,
0x7ecbe50d,
0xde9266f8,
0x0bdca7a8,
0x372dfbb4,
0x740b110f,
0x181cb056,
0x5939225b,
0x94967e5e,
0x17d6ec87,
0x181cb056,
0x5939225b,
0x94967e5e,
0x17d6ec87,
0x90584804,
0x16f4d01c,
0xa12d8424,
0x01ae6216,
0xd935a177,
0x3149382f,
0xfff5acf7,
0x7f88c3e3,
0x0111b708,
0x02cb6009,
0xf027e9fe,
0x6d941012,
0xb54c07d9,
0x083d9ffd,
0xa6f16978,
0x76a5bec5,
0x07f911e7,
0x7fded86c,
0x25320a54,
0x4ffff139,
0x2106d024,
0x4593f02d,
0x95b7982f,
0x09c02d79,
0x07fc34da,
0x543b060e,
0x314bf5f6,
0x6e36dff8,
0xb034de30,
0x327ffb62,
0xa3e89bb0,
0x06e95019,
0xdbc0fddf,
0x19098c36,
0x2702d884,
0x017e4751,
0x83f1292a,
0x6f107080,
0xb7fbff01,
0x12afe373,
0x7fe6785b,
0x020085bc,
0xf9030e7e,
0x2a0becd6,
0xb80090c0,
0x36be5fc6,
0xe9cbfc4c,
0x665bff6f,
0x392c152c,
0x17e73d6b,
0xf0025ee2,
0x177f601b,
0x58759c24,
0x304ff403,
0x3d27ec7d,
0x6de5e972,
0x7cbabffa,
0x1307e243,
0xc0d87fb5,
0x3489ddbe,
0xa5b4ce77,
0x0767cf8d,
0xffe08073,
0x3ff48dfb,
0xcf149ddc,
0x0da48896,
0x07604836,
0x2dc48920,
0x036cfdb1,
0x7b77e360,
0xbf98f153,
0x3f3ec89f,
0xd8e24005,
0x0982c016,
0x24eff5b4,
0x2c17c11d,
0xd8e24005,
0x0982c016,
0x24eff5b4,
0x2c17c11d,
0xcd01f2f2,
0x64677d09,
0xf9847fa4,
0x6c85e366,
0x0c4224f9,
0x0df71cc8,
0x15028820,
0x353c96ac,
0x59f3c1f9,
0x682b931a,
0xe7973457,
0x19803b6c,
0xcfc0059b,
0x25f79c15,
0xc9036ed4,
0x6f41e812,
0x406ffec6,
0x43fc53d2,
0xa613c90b,
0x3fc0b655,
0x40708362,
0x22e91fd9,
0xd8880bdb,
0x720f96bd,
0x0df87d68,
0x506f600b,
0x98102291,
0x66066483,
0x482e8c7c,
0x695bccbe,
0x2cc361cc,
0x1a01e5bd,
0x5b2efe82,
0x726dfab8,
0xfef827ec,
0x47cd08bb,
0x16d3e59a,
0x762c88d4,
0x9f3700c0,
0x05db36c0,
0x9f99ff4a,
0x4c4d412c,
0xded97749,
0x1c98dc8e,
0xe14b81eb,
0x5983fece,
0x0fffcdbc,
0x600333ec,
0x211813e7,
0x0fd3589a,
0xd6db701d,
0x46adf281,
0x6f837fc0,
0x594a7c6e,
0x1c679e51,
0x70869469,
0xf8fb379f,
0x77c488e9,
0x6cefc941,
0x6f1a6000,
0x446f09d3,
0x76fbdc89,
0x35584101,
0x5ec87fe8,
0x4f4301c4,
0x00001c8b,
0xcc42c05f,
0x490a583f,
0xcef26c47,
0x09c8a301,
0xfa484cdf,
0x3e64ee5a,
0xcef26c47,
0x09c8a301,
0xfa484cdf,
0x3e64ee5a,
0x02bc01b7,
0x401204b2,
0xbfc24978,
0x7e2fbe70,
0x27e00db7,
0x0018fb61,
0xf85fb3a8,
0x2de8be6d,
0x07e0f405,
0x7597a081,
0xbfc00097,
0x700dbba7,
0xcf0809dc,
0x07fb2030,
0xfa897026,
0x07d0dff6,
0xd44c31f4,
0x0037207f,
0xc8e789f4,
0x7e38000e,
0xfd065e57,
0x3201bfb2,
0x1cb7d03f,
0x0dbc03e4,
0xc7e3fe6f,
0x02d6cffe,
0xa65842ed,
0x162403f4,
0x26f4306e,
0x6630849e,
0x4890481b,
0x007b0116,
0x226093cf,
0x6fe6340c,
0x26ff5404,
0x7fbc9901,
0xbf5f01f7,
0x6c22c81a,
0x1f535006,
0x773fec30,
0xf880135f,
0x0ff691ef,
0x067d08ce,
0x41181f88,
0xc7b0f448,
0x52553b60,
0x00033c7d,
0x4716ed80,
0xd8fbba07,
0x06c005ff,
0x98cd2667,
0x3209a046,
0x6013bb80,
0x7df2c439,
0x607c7c00,
0x0825c4ff,
0xf92c0e04,
0x6bb77dff,
0x68001fbd,
0x0e01aefd,
0xa8806604,
0x0d80d860,
0xbbbd2407,
0x6600a245,
0x265f73ff,
0x7ec01ff1,
0xffe278da,
0x01d10807,
0x441827d9,
0x0db644ac,
0xdb6bda3a,
0x05edde53,
0x441827d9,
0x0db644ac,
0xdb6bda3a,
0x05edde53,
0xd9e76f2f,
0x7ec9034f,
0x016e6200,
0x0dc165b0,
0x29966921,
0x6cb12475,
0xb15e4789,
0x488c7eef,
0x04c7fea3,
0x497c1b8c,
0xfa5b29fb,
0x102582fd,
0xdc4c9e20,
0x3ea7273f,
0x0e0dff3f,
0x6064e042,
0x8b9ff9a9,
0x4a40104e,
0xfd964572,
0x401915bf,
0x10a24bf4,
0x4d24202d,
0x6fc9b281,
0x6f083fd0,
0xe727e8a4,
0x6c47f64f,
0xf2c08cbd,
0x72a2c505,
0xf3fb40db,
0x023fdacf,
0x9359fe48,
0x7db68080,
0xb03cb6e0,
0x78001f3d,
0x037c07ff,
0x003709a9,
0x824409b3,
0x6d545fe6,
0x47f84a09,
0x7cb6d047,
0xf8cdee37,
0x49c01353,
0x24844046,
0x66403b24,
0xd027b664,
0x26f6701f,
0x7013b60f,
0x3b6589f9,
0xb802d780,
0x6fe7e401,
0xc4ce233e,
0x00ff7bee,
0x42045a81,
0x6fbca59c,
0x3e69bfdb,
0x7eff0363,
0xfe9581d9,
0x41e7e5be,
0x4b2f02c0,
0x5ffc1886,
0x8c2e03b5,
0x11681400,
0x307dbcbc,
0x0477fac1,
0xca09b580,
0x4c80a82f,
0x080af5ae,
0x2b87f11f,
0xbeffd3b2,
0x26092da1,
0x800267be,
0x6844e2ff,
0x2bfe62de,
0x75da137d,
0xe305f0c4,
0x2d62dfae,
0x2bfe62de,
0x75da137d,
0xe305f0c4,
0x2d62dfae,
0xbc21eee0,
0x79003150,
0xcbfe7bbf,
0x213c3c1f,
0x037e6600,
0x7fcce4e0,
0x8107fffb,
0x500919f2,
0xffd891d7,
0x38d37249,
0xa04fca21,
0x0137334a,
0x6a6c016f,
0x320f6d88,
0xb690cf3f,
0x00c01f57,
0x14ec3bfd,
0x41db0236,
0xc07f905d,
0x3e3f600f,
0x21fdfa05,
0x4dffbf26,
0x232000ff,
0x2fba6262,
0x5fef6e08,
0x65e05f20,
0x083c1d1d,
0x238485f0,
0x7881ccee,
0x7f9adb66,
0x797800d8,
0x4effe212,
0x3efd9704,
0x01ffde9d,
0x05861384,
0x6e6fef4a,
0xf1e1b31f,
0x21381bcf,
0x7ffbdadd,
0x49101ce6,
0xbfb361fc,
0x7fe6c407,
0x2927f38c,
0x087ff27f,
0x93fc4c40,
0x05bfe44f,
0x4ac180c7,
0x149fef75,
0xb10962fc,
0x6fc7e84f,
0xc54a01d8,
0x20cc800f,
0x090181a4,
0x700820b7,
0x05ddb101,
0x3888dff2,
0x137ffdf8,
0x01420200,
0xcbb9fbbf,
0x7fe2a47f,
0xa01f8c00,
0x109f0bfc,
0xb058dcb5,
0x731f89ff,
0xf8037730,
0x00881df2,
0x70001834,
0x37aecb31,
0x4cdd93c0,
0x065e03f6,
0xf13e4c58,
0x7c3d4ec9,
0x4cdd93c0,
0x065e03f6,
0xf13e4c58,
0x7c3d4ec9,
0x301dda28,
0x32c53fc9,
0x864caa98,
0x106efc1e,
0x903486a9,
0x2cd0f16f,
0x3745cd13,
0x197aa02e,
0xe06773bd,
0x307e3e8d,
0xdb72406f,
0x3ec9ecae,
0xc08f6f89,
0x65d12b17,
0x973a6344,
0x3344554f,
0x81ded573,
0x593399f7,
0x03982496,
0x0e86e414,
0x01da1d34,
0x3669acb4,
0xc786fc8e,
0x7c272cf5,
0xcebf80ce,
0x2926cd4b,
0x2691dbed,
0x693ef057,
0x5affcac0,
0x4bcac581,
0x279ff978,
0x663649d0,
0x0010dcdb,
0x16789e81,
0x405b83f0,
0x0bb40ec7,
0x3d43fad8,
0x7dfc2260,
0x06165c00,
0x0ee59b7e,
0xf51a81ca,
0x10492c9b,
0x386c0e0d,
0x28687815,
0x9f9f869d,
0x7bb8fe56,
0xbc845f3b,
0x4e168df1,
0x302cc6da,
0x2331c2c9,
0x0f3cf3c9,
0x504a60f3,
0xf731818d,
0x7cbeabf3,
0x3250e91f,
0x7002dc90,
0x7ad80420,
0x0476ae70,
0xff009f68,
0x737fe899,
0xf84c917c,
0x51d232e1,
0x442b160d,
0x215ed032,
0xc092792a,
0x1979396e,
0x7960b878,
0x3032d1a3,
0xefefe408,
0x6edb22d5,
0x02936fc3,
0x1ba9010a,
0xefefe408,
0x6edb22d5,
0x02936fc3,
0x1ba9010a,
0x3b3a69ef,
0x7645bfc8,
0x2fe7483f,
0x04093241,
0x2173604d,
0x7cdf4861,
0x8f083840,
0x112df974,
0xe771becb,
0x7edb0df0,
0xb987c1eb,
0x1312c5f7,
0x289db920,
0x05a4e340,
0xbe1f0204,
0x1f8c1d9f,
0xa4dad20f,
0x5fbedb07,
0x82608cdb,
0x593efffd,
0xf2f1b2c8,
0x347fedf7,
0x21dc1e06,
0x0d893a4d,
0x04a53698,
0x498bfd4c,
0xd816bddb,
0x7fb5ffce,
0x001f9003,
0x2fd6b378,
0xdffe0b80,
0x08412db7,
0x3b6709e4,
0x7787ee75,
0x0db2ccf9,
0x6cffa5b1,
0x76fc01d0,
0x79da25bb,
0xfcf803fd,
0x7d1de497,
0x7f2b1744,
0x0da48d7e,
0x02f5f7fa,
0x6d92db61,
0x08267c0a,
0x362d00f8,
0x0513b120,
0x2e9a9f8f,
0xda7ffe00,
0x3f2c898f,
0xc8ac00fc,
0x6eff8103,
0x31686fb4,
0x24288659,
0xff838014,
0x36c8d2dd,
0xbd91f1a5,
0x1dc90329,
0xdcb80d7e,
0x1fe02955,
0xfef3cfc6,
0x36621fff,
0xcf178909,
0x7e0fcd9d,
0xf8fc5e3f,
0x36e976ff,
0x36f2fa20,
0x32936c57,
0xd73a13b4,
0x406fff6f,
0x20ffed32,
0x6031fccd,
0xd73a13b4,
0x406fff6f,
0x20ffed32,
0x6031fccd,
0x089bc1ab,
0x3cbc7f1e,
0x617c61cf,
0x7ecf859a,
0x0525e5b0,
0x100fb080,
0x46ffe168,
0x592d3419,
0xb5a7de1c,
0x5347fb82,
0x97d49fa6,
0x05000183,
0xe817a46e,
0x7f3cfeda,
0x5edd0c1e,
0x14f0127e,
0xcdf0de81,
0x7e0dda34,
0x07a78530,
0x09268b0e,
0x81af9ccc,
0x663efec8,
0x703c497f,
0x093e1e1a,
0x3f90d1b6,
0x0176561d,
0xa1e1b55f,
0x66d1e33d,
0xbf7a5e80,
0x3143e37d,
0x58072f79,
0x7fa6067c,
0xa3ec69fe,
0x58d6fe05,
0x3931933c,
0x6facdb0e,
0xefc04c69,
0x4aef6513,
0xb9fa0059,
0x698bf9f7,
0x7b7fded8,
0x2d3814f8,
0xb863f97e,
0x6ddb06c1,
0x5fecb384,
0x691a1087,
0x0fc3a0f9,
0x5d899308,
0x2648f820,
0x12f31072,
0xe4d1ce2c,
0x78ad9488,
0xc9eb49f9,
0x37dffbde,
0xef02c71d,
0x7b0fe177,
0xa643783f,
0x662bfe3b,
0x378361c8,
0x6cad1b2d,
0x7ac7fbe9,
0x4d2d2842,
0xbe9ccf09,
0x7de120f6,
0x81add0d7,
0x111c8298,
0xe7259834,
0x05afd580,
0x99edb000,
0x776604b9,
0xbd81cc37,
0x4991ccb9,
0xe71034bf,
0x037f27b3,
0x0658bd12,
0x5a27fb8a,
0xe71034bf,
0x037f27b3,
0x0658bd12,
0x5a27fb8a,
0x39932419,
0x6e536ad1,
0x020449f5,
0x3ee06000,
0xf5a6ba63,
0x6eb7c49a,
0x6917bff7,
0x04f68882,
0x6cc8060a,
0x0d02fd33,
0x400ffe09,
0x5865a026,
0x4c884464,
0x6f80cbc5,
0xcdff0de6,
0x044de589,
0x87e2c896,
0x6d9b366f,
0x4dae4101,
0x649f308f,
0x7e105051,
0x7d8960b6,
0xb7a27fe5,
0x3a4336bd,
0x12c88004,
0x37bb0100,
0x440081c9,
0x7e36dbff,
0x02583c26,
0x07dbc369,
0x22ee5c97,
0x53523500,
0x6d00a845,
0x511ec474,
0xdd07f3f1,
0x5a1856c3,
0xe033b034,
0x4d0873c1,
0xe12fd9d3,
0x7d042f9f,
0x5dbc4925,
0x783d77c6,
0x3c18d17f,
0x1ae12e59,
0xff764e9b,
0x472edfdd,
0xe15b6afc,
0x4f0bf9b3,
0xfa94bc4f,
0x3828de40,
0xc32a7d62,
0x67f80343,
0x1b91a865,
0x12fd725a,
0x384a4018,
0x79301636,
0x377c7c2c,
0x6106149f,
0xf878131a,
0x3302d903,
0xf97c163d,
0x2110bfd6,
0xf8a4d02f,
0x4c1b324f,
0x5ff3422b,
0x0da09b41,
0x770ff772,
0x023e41f0,
0x76f7cc93,
0x54bc1c97,
0xc3fe90d7,
0x4e07b271,
0x76f7cc93,
0x54bc1c97,
0xc3fe90d7,
0x4e07b271,
0x1bdca824,
0x3f275682,
0x2ce0f966,
0x03ab0010,
0xaf3d003f,
0x210c7da1,
0x109c8d9c,
0x04399c22,
0x3fe3cdf9,
0x1e796180,
0x803cde43,
0x49819760,
0x3f2308ba,
0x127e98bc,
0xdc1a09fa,
0x36d7800f,
0x78000eef,
0x0f091fc1,
0x75bcc40c,
0x77e1a853,
0xbd019a04,
0x72171fbe,
0x7959cdc3,
0x6fe0140f,
0x4421c041,
0x41208cf7,
0xfb65f1fe,
0x3239dcf7,
0x18bdf759,
0x77485ecf,
0xcfb3b24e,
0x766b234f,
0xbe803f88,
0x09c52490,
0x6000b7cc,
0x6176efef,
0x8351fb44,
0x0bb8c3f0,
0x416b0e27,
0x37c37d4c,
0x6eda709f,
0x405fc365,
0x7560083b,
0x34a6e07f,
0x0a44df40,
0x2a3d0468,
0x642025ff,
0x10100fef,
0x6ddf45c0,
0x6e3cc76d,
0xe0031d52,
0x4920cc44,
0x4910fcb6,
0x05fa2022,
0xd7160210,
0x09e9f032,
0x5cc5efc9,
0x68477790,
0x3f928004,
0x017cbf98,
0x8f9d8e00,
0x6000e961,
0xb7f991c0,
0x1bf00ac1,
0x17dcbe40,
0x004be4a8,
0x1434f61a,
0x1dff2341,
0xbf004646,
0x0d2def8d,
0x27e5b60c,
0x70e59da2,
0xbf004646,
0x0d2def8d,
0x27e5b60c,
0x70e59da2,
0x469c05df,
0x48a15c3f,
0x7941b629,
0x04fe80e0,
0x7e24740d,
0x5f80e0c6,
0x18c7efc4,
0x51835811,
0x1c07c141,
0x223c1ffe,
0xd9617b82,
0x1b70d211,
0x03421d29,
0x2d5e8c46,
0x05f92b56,
0x57833092,
0x5937a1f0,
0x2d813cd6,
0x712253e4,
0x000ceccb,
0x3f88902e,
0x6140566d,
0xf959824e,
0x2d896786,
0x33ebd00f,
0x7f6072d4,
0xc71cb83f,
0x6007e59e,
0xe7b5b033,
0x78a79b44,
0x4a221289,
0x34237cb8,
0x7d093bc4,
0x3252bda0,
0x3fdc3a29,
0x0276c732,
0x95f0ff87,
0x085c2fb4,
0x1bd6f329,
0x20a4024e,
0x430c7262,
0x1dc4186c,
0xbf1ad64c,
0x6e5433cd,
0xf813ba09,
0x621a5073,
0x4022db0b,
0x22093223,
0xbf24277e,
0x6d91e89a,
0xff701f29,
0x79f9795f,
0x53ea8db2,
0x79b90f2c,
0x2ff20d10,
0x41dca40e,
0x51580631,
0x310ff0ab,
0x14852960,
0x0f349fab,
0x169b5837,
0x260a0d82,
0x7b2d7283,
0x7b085468,
0x55b96b48,
0x0a06d0ee,
0x617f7b27,
0x2e8bca56,
0x08cfccbc,
0x533df74c,
0x0781af24,
0x69e32c79,
0x3ac085e4,
0x123f48c6,
0x06eb87f9,
0x072f9f10,
0x3ac085e4,
0x123f48c6,
0x06eb87f9,
0x072f9f10,
0x336d28ff,
0x01c29f02,
0x3ff059e6,
0x6dd441f1,
0x931d9106,
0x37bfed00,
0xfcd5f004,
0x7e4f1d96,
0x4727b5ef,
0x63046ce5,
0x3a737e0f,
0x6438e4d1,
0xc9d3ecbf,
0x2efdfd80,
0xc1309fc9,
0x3a5b6266,
0xf811720d,
0x7b3f288e,
0x26a40af8,
0x3f1113e3,
0xb78391bb,
0x7cc21264,
0x413ac9cf,
0x41fc0d16,
0x9f1d1030,
0x76e1a81e,
0x0f4b73c8,
0x6f1b1f30,
0xe8c8732f,
0x5631099d,
0x21936841,
0x03dd1071,
0x392cf3f7,
0x197e6273,
0x76d3f91e,
0x0210b376,
0x3f1ed6df,
0x79ceca30,
0xe0023f46,
0x04448101,
0x481f73f7,
0x7fc95266,
0xb2d086e6,
0x70332c94,
0x83376ffe,
0x6ec15fa1,
0xca332eb9,
0x33fdf7f2,
0xc6fe4fe7,
0x797edd99,
0xba007cd8,
0x461a204d,
0x737e4e08,
0x0803cd83,
0x4ec2ec0b,
0x6dbfabaf,
0x40000468,
0x7178005b,
0x5f0feffe,
0x183ae116,
0xf3184630,
0x363b239f,
0xcf11a84c,
0x09e62fc1,
0x03fc9ac7,
0x73bbe022,
0x41ac8e3f,
0x1e26c4fe,
0x5102ee3d,
0x7fc05b27,
0x0aabc037,
0x4f5ff496,
0x5102ee3d,
0x7fc05b27,
0x0aabc037,
0x4f5ff496,
0x2681b4e7,
0x74861f79,
0x10ffc7db,
0x03335c04,
0x796421d8,
0x3fe13bc2,
0x00cf56bf,
0x0f6b4d88,
0x92effe4f,
0x237617ad,
0x236eb147,
0x3ff65101,
0x081047d8,
0x18211b60,
0x07ec4d2b,
0x0036cfc0,
0xdcee733f,
0x7016225c,
0xec0701fb,
0x02400007,
0xfc23c1d9,
0x35b53b6f,
0x9835258e,
0x0edd294e,
0x98efaddf,
0x7fe1705d,
0x092524d8,
0x1147e100,
0x407cd9f3,
0x583a8191,
0x87ff97cb,
0x0664c007,
0x43eb6dd0,
0x2dec834b,
0x93665f02,
0x6267e145,
0xfce4d8da,
0x086f6c4d,
0x07ce1853,
0x682bfeef,
0xad89a2f0,
0x0f3b63a1,
0x90da4fb9,
0x013ff10b,
0xb834000d,
0x7fc65ff1,
0xefe4bbe6,
0x3c721ff3,
0x9b1031b6,
0x7fb4c411,
0x9ffe09b3,
0x7fc05b73,
0xa9ffe7e5,
0x32739ff9,
0xde4c3599,
0x497fb59a,
0xc0030081,
0x3fc701ff,
0xbf3373a7,
0x521bff85,
0xc47ff007,
0x0809beb5,
0x4700bf7e,
0x61cfe7f7,
0x3c740bdb,
0x0fbbeb7b,
0x24966858,
0x1db913fd,
0xfec8379a,
0x40101bde,
0xc4fcbe42,
0x64b81fff,
0xfec8379a,
0x40101bde,
0xc4fcbe42,
0x64b81fff,
0xf4fcfec6,
0x09afefbd,
0x744bee05,
0x1fdeddf0,
0x6ede9bdb,
0x72f4c92d,
0xfb910026,
0x64c01061,
0xd3360c00,
0x09a69b97,
0xb24bbf4e,
0x5beb193b,
0x968fe724,
0x5d9fdcdf,
0x0aec09dd,
0x6f69bb42,
0xfbfb67ff,
0x483e60f7,
0xc6fe5920,
0x30243fb2,
0x6c0c6c0d,
0x094856d0,
0xfbff7fd8,
0x3c76d9bf,
0x675a6ff5,
0x3577e362,
0x23fe9e24,
0x693fe90b,
0x9dfddbea,
0x6954fb18,
0xd905b7c0,
0x2037d344,
0x9ec952c9,
0x7ffee302,
0x35907805,
0x1f64ccb3,
0x2d034d26,
0x3036cde2,
0xa7e7f669,
0x0029ff2c,
0x05336801,
0x7677f369,
0x724f6fb3,
0x0a76e082,
0x485c81ff,
0x061b5f4b,
0x012791ac,
0x0972e666,
0xdd61a45f,
0x01c18175,
0x9485b236,
0x0298117f,
0xdeffebc9,
0x4b7ffbd7,
0x73244a03,
0x0037dbd0,
0x6fdc1892,
0x24f93f6e,
0xbbbdfb34,
0x6ff7e050,
0xb05800d6,
0x24f7e624,
0x432c80d8,
0x203fb7f1,
0x06ef6efa,
0x6fb96448,
0x04ff66ff,
0x0403f6f0,
0x309890c9,
0x10b6936b,
0x8cde29ef,
0x0fe4a0ce,
0x309890c9,
0x10b6936b,
0x8cde29ef,
0x0fe4a0ce,
0x0727083e,
0x07c83b5e,
0x000b48c7,
0x655b2a75,
0x98ff818f,
0x7f9a2f98,
0xcda6df25,
0x663373be,
0x1da5f22e,
0x67c41fd9,
0x071b7b0f,
0x3b610378,
0xa10e8490,
0x09ca2b4d,
0x86d04bf0,
0x1210ff07,
0x3a94d23d,
0x03003801,
0xa685ad3b,
0x0161c3fd,
0x06c03e04,
0x00277008,
0xb263dbbf,
0x3ee10add,
0x24fef607,
0x013f79ed,
0x18197fb0,
0x13c90400,
0x0900f109,
0x1e7f0dae,
0x0fe46026,
0x56c00101,
0x5fff6c09,
0x6d08026a,
0x48800064,
0x698832f8,
0xa49b0010,
0x1014d90d,
0xfdfedf26,
0x0200f3bd,
0x27e9b4c9,
0x7bcf5b42,
0x049a0170,
0x7f03fb70,
0x57b0f404,
0x0827fc2f,
0xc1787769,
0x6a17e43f,
0x78efff78,
0x36f0de82,
0x46839700,
0x7ab28cb6,
0x95024f40,
0x69c6f3f0,
0xbb6eb168,
0x0800005f,
0x68008748,
0x324bf379,
0x68e78d3e,
0x67c37c0c,
0xf9fcff32,
0x5267600e,
0x0f7f90c0,
0x00fb77f2,
0x03007e24,
0x2641fc80,
0x2cbeff26,
0x74f6f380,
0xe8ae6e13,
0x2fe012ee,
0xc001ffcb,
0x5a68ebcf,
0x440ec049,
0x1b3861af,
0xecb885ff,
0x07cda4fe,
0x440ec049,
0x1b3861af,
0xecb885ff,
0x07cda4fe,
0x4141a1e2,
0x41dbd023,
0x0317cf2a,
0x30f01ffe,
0x9f989e09,
0x63353cff,
0x5d900fec,
0x07be137f,
0xfcb98daf,
0x4e5e006b,
0x78b40e36,
0x29638494,
0x8e874029,
0x1098eb01,
0x24fbcfe0,
0x0909f341,
0xbede75fd,
0x49f1e3c1,
0xa0006897,
0x1c97fe48,
0x670c07e4,
0x70493582,
0x38ce0371,
0x7674f7a0,
0x05891fc9,
0x71375bec,
0x1a4386bf,
0x5ad2fbf6,
0x06c26fa7,
0x31611b90,
0x89b851bb,
0x2593effa,
0x3c1ddb3f,
0x4269a28b,
0xa07e06d7,
0x261bdf18,
0x14de87f3,
0x1250f41f,
0x3e436036,
0x02e9d260,
0x80d05200,
0x5bc03f00,
0x66df3048,
0x46b23798,
0xe6e70a80,
0x782d4d83,
0x4c7a201b,
0x76e7a34b,
0x41b91002,
0x1205e1de,
0x1feeffa5,
0x659b60d2,
0xd9f881ce,
0x6767eedd,
0x97bdc0b0,
0x7c28da58,
0x089c8ccf,
0x6a496986,
0x9cff91d8,
0x447f9f59,
0xbd1eb630,
0x7ef89a5e,
0x53c10846,
0x7533d7d0,
0xb6ca4044,
0x799a9c9f,
0xc10d8eb8,
0x2814282f,
0xb0d49054,
0x6d9fd9df,
0x660bb303,
0x6d832c8d,
0xb0d49054,
0x6d9fd9df,
0x660bb303,
0x6d832c8d,
0x0361ecfe,
0x36d3608c,
0x0ff0543d,
0x071b9fe8,
0x2bb12137,
0x4ec67d1b,
0xd33467e3,
0x5167f9d7,
0x6691b37e,
0x4f11ca12,
0xc0dda1d2,
0x46db163d,
0x3efb7c8a,
0x7ee650bc,
0x884cee07,
0x02ca360a,
0x46022a78,
0x071f5088,
0xd86fb6e4,
0x76490088,
0xfb3480f6,
0x7b41fdfa,
0x9033e102,
0x2754d7a9,
0x2373f822,
0x705c9fcf,
0xb60105fb,
0x218a3ff2,
0x680cdc47,
0x6025a418,
0xc3f07801,
0x4f695fe0,
0x1a65fdbe,
0x4366f930,
0x065abbb7,
0x348ff6b2,
0x9b26cb98,
0x071c05b7,
0xb06d0949,
0x1664d2d5,
0xda190237,
0x342ca4d7,
0xfca3e199,
0x5326d7f6,
0xa4cbf0e6,
0x303a0fc6,
0x9601fd7f,
0x61e4acb6,
0x3fdd3dc0,
0x700c1e11,
0xb4fc3d12,
0x2173846c,
0xc464d181,
0x51b7f098,
0x7fdf4ea4,
0x1161ac3a,
0x26a1a080,
0x17af9d91,
0xe0f1a4c4,
0x1a0d5042,
0x6e1eb33d,
0x5ca81df7,
0xcfeb2132,
0x53588f07,
0x267c90bd,
0x5f903de3,
0xbb213196,
0x63488a49,
0xef1c4506,
0x5b59e121,
0x34ac3c66,
0x017ee13e,
0xef1c4506,
0x5b59e121,
0x34ac3c66,
0x017ee13e,
0x0108b64b,
0x0dbef80e,
0xf6fb8477,
0x0052990a,
0x20fe3ddf,
0x333cee92,
0x23f22007,
0x52657811,
0x1fbbd977,
0x52b9a040,
0x009cd800,
0x1a30051e,
0x0024616f,
0x7f00e3f0,
0xc425822f,
0x17f1ebd3,
0xbb7c1e37,
0x177400a2,
0xcf2e3b20,
0x701bc707,
0x1f2d367d,
0x3e4bffa2,
0x041666da,
0x0738e062,
0xe0aac0e5,
0x10bc3284,
0x2481b9ff,
0x01f99293,
0x7880081f,
0x7000cc0d,
0x7001e1f7,
0x007fdacf,
0xfa81c578,
0x06637804,
0x082392df,
0x7ba03002,
0xe6ed9fc3,
0x3186e3ab,
0xac038230,
0x01b7d6c0,
0xfbccb207,
0x41e4663d,
0x7bc05000,
0x36fff76e,
0x27700564,
0x72228029,
0x03f34d1d,
0x1b38132f,
0x0ec43080,
0x17c1df72,
0x0921b46e,
0x7e848f19,
0x5cdf6fc0,
0x401af002,
0x8f018ffe,
0x1911f7f1,
0x0b248f00,
0x5c24eb2e,
0x300c6842,
0x50007fc0,
0xe7fa6259,
0x227ff7cd,
0x1a0012a4,
0x0582703a,
0x61380bfe,
0x40effda8,
0xaca183da,
0x6824fcdf,
0x036365be,
0x2db0242c,
0xd9cc6bae,
0x1bff2492,
0x55f3ad44,
0x464c9c96,
0xc72f4380,
0x10becc06,
0x55f3ad44,
0x464c9c96,
0xc72f4380,
0x10becc06,
0x30e8f8b2,
0x78d07c80,
0x2526d3e8,
0x07f3be69,
0xfbec89f7,
0x30500c49,
0xdcfced40,
0x76645a3d,
0x53b8ff3e,
0x19a4fa62,
0x992147d7,
0x79cb80f8,
0xf8684d86,
0x66593209,
0xd232074a,
0x00e6060e,
0x3b11fde5,
0x11bb2393,
0x309efd26,
0x59be7007,
0x00a301dc,
0x12d95298,
0x04819e38,
0x30803b83,
0x399009ff,
0x09c13d9e,
0x38038041,
0x59881ec9,
0x18de6d6e,
0x0167985d,
0x631a2e44,
0x30ccce17,
0x89000ffb,
0x7fe03276,
0x7524cc44,
0x1ff902b6,
0x48e44d99,
0x1748258c,
0xb21bfe88,
0x1016a8c7,
0x765a59ae,
0x1271be7d,
0x31033d03,
0x5141285b,
0x251af203,
0x687f1710,
0xf393c706,
0x7df580e7,
0x60fee844,
0x037ffb82,
0x9783826e,
0x61800e5f,
0x1c604e48,
0x3403645a,
0x3af788bf,
0x4dedb28d,
0x8fef30a4,
0x0174d618,
0x19fca64f,
0x030103b0,
0xbc233e24,
0x1aa5eb69,
0x110703c8,
0x6cf321e8,
0x1b008060,
0x3c40b736,
0xe1012200,
0x00af88ab,
0x2fdcc7a3,
0x00480dc0,
0xfadbfa9b,
0x6fa00b68,
0x2fdcc7a3,
0x00480dc0,
0xfadbfa9b,
0x6fa00b68,
0x78ca7edb,
0x59c05d81,
0xa50d37b2,
0x0180c8fc,
0xc03df240,
0x60046027,
0x6bc02f00,
0x4c3f8077,
0x41bd9320,
0x44e73117,
0xf93787e2,
0x0587e4c7,
0xf8c3f7c7,
0x6efdef9f,
0x0448afe4,
0x0450efe4,
0x8113e527,
0x30358001,
0x1ffa365c,
0x1cf7dc16,
0x1ecbfeb7,
0x33c8fbf8,
0x376e017d,
0x2e7e18e7,
0xe627d13b,
0x2e6023fd,
0x008bfded,
0x26d933b9,
0x087cb3fd,
0x6da1fcf0,
0xc64198b2,
0x0252cfe1,
0xb9fc71db,
0x45768bfe,
0xf1ae6080,
0x0fe29ffe,
0xd6c0b2cf,
0x6f9015b5,
0xe82780ff,
0x12d3808f,
0x86edc897,
0x3e4ae7f3,
0xb844165e,
0x764f1fb6,
0xc1c3bad6,
0x01e01c0f,
0x5fa085ff,
0x40fe9982,
0xa0d86f16,
0x0b86c061,
0x00219286,
0x1ac693b3,
0x6ccfffbe,
0x2ddca207,
0xfc84219b,
0x6d6abd98,
0xd9fe3c24,
0x42ddc86d,
0xf7b64574,
0x65c25f90,
0x5b63ee01,
0x15de6002,
0xd0203a0b,
0x39076009,
0x44a728bf,
0x00302486,
0x38931b33,
0x7ffef801,
0xfb1de007,
0x100df50f,
0x2c9b8605,
0x0ec873f8,
0xfb1de007,
0x100df50f,
0x2c9b8605,
0x0ec873f8,
0x269b6804,
0x741fe17f,
0x4027b1b1,
0x3fc45000,
0x6eeadff8,
0x6f05f103,
0x03eff1fa,
0x5fe6fe80,
0xb80f63d8,
0x68fe3d8f,
0x9c502d7c,
0x2cbfc48b,
0x3f303e33,
0x349fe59f,
0x8d0341f7,
0x7d401a00,
0x3f108e7c,
0x77c00051,
0x20fc0001,
0x4efee7f2,
0xf81b0180,
0x3604e802,
0x02304321,
0x05663c2e,
0xbe7801bf,
0x024d000f,
0x2010c217,
0x7fc6a2e0,
0xe01fca00,
0x6dc03c0e,
0x0003c1fc,
0x02401f84,
0x07d2ffe7,
0x58077774,
0x07fcd000,
0x3dc26018,
0x90008527,
0x703bd801,
0xffffffb6,
0x01f8034f,
0xf6d3c1f7,
0x7fc00d8b,
0xfc697a07,
0x5e78126f,
0xffc3fff9,
0x7fd81bcf,
0xb313fe0d,
0x7c14dff1,
0x379e011f,
0x6daf1d95,
0xc41f81b0,
0x76001c0e,
0xf85c0021,
0x3ffe05fd,
0x0007fe44,
0x71fee014,
0x80000000,
0x3fd01c8c,
0x86f6ec21,
0x70391ff0,
0xff01fcfa,
0x0d760b6d,
0x5cf905f4,
0x0fcded42,
0x2ec0fe08,
0x2fe23fd7,
0x49e97ffe,
0x57f0b77b,
0xf4b77eff,
0x16da63f8,
0x22838c01,
0x24bfe283,
0xf4b77eff,
0x16da63f8,
0x22838c01,
0x24bfe283,
0xb9e9b967,
0x05db44a7,
0xb96b68a7,
0x6dbf18ef,
0xe97e761e,
0x09c2002f,
0x6691bf29,
0x2fca7201,
0x58834c48,
0x00fbfbf2,
0x84f340de,
0x704b248d,
0x5e48b60a,
0x31fec222,
0x669bb31f,
0x67ff3ef3,
0x46de077d,
0x0f5e53f2,
0x902dbc84,
0x6ffff00d,
0x1d225356,
0x6ffbc5f9,
0x0893080f,
0x37cbdeba,
0xcd20f5fe,
0x6e3f3e42,
0x9dc181c8,
0x76a0da08,
0x38916cf8,
0x41f1fb63,
0xe0404df7,
0x12c3640f,
0xf1b2647b,
0x4d8b33b5,
0x11099600,
0x03fa0dad,
0x25a48726,
0x4e99bff9,
0x8f3ed7a9,
0x3bc0c3f2,
0x6803ec3b,
0x13c9d310,
0xfaefbfdb,
0x69b25032,
0x32df6d32,
0x363b7696,
0xb5d99064,
0x521e0dae,
0xf10890fe,
0x3ec9fa51,
0xf0f02812,
0x0b30edf3,
0x825c1636,
0x44764dbd,
0x00234d78,
0x6d8bbf70,
0x93f76331,
0x3f804003,
0xd080be8b,
0x73491daf,
0x8696dfff,
0x17e593cd,
0x37f37edf,
0x055bfc0b,
0xd676d1a2,
0x0980e1b3,
0x2d004100,
0x0115a2e6,
0x3fec01bb,
0x6e5bc266,
0x2a6c0043,
0x7f7ff05b,
0xb1effd0f,
0x2649e5ff,
0x21101991,
0x3939a6eb,
0xb1effd0f,
0x2649e5ff,
0x21101991,
0x3939a6eb,
0xf004a4f2,
0x118d0660,
0x900484b7,
0x1792899a,
0xa480695a,
0x6587e86b,
0x2a196cdf,
0x02bf7dde,
0x226afff4,
0x5e870440,
0xff3084c0,
0x163ef803,
0x39a1888c,
0x13cb9269,
0xe7bafad8,
0x5a528f42,
0x6810b698,
0x313de0eb,
0x67f891ec,
0x09848143,
0xa3baee52,
0x169ff226,
0xd5a5f007,
0x00ccc16e,
0x60918c48,
0x689f8640,
0xc11bfe18,
0x55e6c192,
0x01dcbef0,
0x1a7284fa,
0x809879f6,
0x270085a7,
0xac88bfe7,
0x74090441,
0xda94c812,
0x170ca786,
0xc63af71f,
0x22092987,
0x26096e3f,
0x49897a76,
0x037d1030,
0x59c3c402,
0xa4ec1984,
0x68335ee6,
0x37fcb5d0,
0x30410501,
0x4f308dd2,
0x79768347,
0xa613c841,
0x1806c143,
0x27de0d24,
0x7627de4c,
0xa538b91c,
0x1350c761,
0xd399e77f,
0x10e4eda2,
0x86d00401,
0x5636a072,
0xf390afff,
0x2da08df7,
0x713448cc,
0x65c6c042,
0x911bebd5,
0x6025fdf5,
0xf2bf6d7e,
0x783b705b,
0xf2d83e5a,
0x1e638d01,
0xf47b900a,
0x4f6b7ff7,
0x7195b34b,
0x30383ccc,
0xf47b900a,
0x4f6b7ff7,
0x7195b34b,
0x30383ccc,
0x26e707fb,
0x33726c2d,
0xff2e89f8,
0x7ebb5ddf,
0x0805f3be,
0x7eefa40f,
0xf8be2fff,
0x3acc000f,
0x2100a2de,
0x16c70323,
0x4fc8493f,
0x770038fc,
0x30fffbc0,
0x12091fe7,
0x7e9b370d,
0x0367e4e0,
0x7825ff04,
0x4f9a7f3f,
0xdb1a49f9,
0x3f37fff5,
0x500261f7,
0x210011c3,
0xf98f6e91,
0x2f90135f,
0x17effe01,
0x10833d9e,
0xe16287db,
0x6fe6e42f,
0x65fe13ff,
0x09800863,
0x0015c864,
0x7c048c10,
0x1c2880bb,
0x04fff818,
0xbeff1343,
0x00e3720d,
0xc7c2c1fd,
0x6d3f4007,
0x3020b327,
0x4066f761,
0x69fd91fd,
0x5fd19f8a,
0xb343a2a2,
0x408f3fae,
0x2c6ff207,
0x700d1df7,
0x4fc3ffb7,
0x40341cf1,
0x28777e0c,
0x703fe3be,
0xe783e1f6,
0x5203ff7f,
0x05ffc10e,
0x3ff51374,
0x457f8e00,
0x6ff53d82,
0xc225bf53,
0x54001b7f,
0x1c3a2bf9,
0x490eedc0,
0x02f76c01,
0x793b9408,
0xf9e3faff,
0x390b201f,
0x9f6cde08,
0x1d8b25b6,
0x7f77ec01,
0x6eff9240,
0x98077ffe,
0x10656dff,
0x14a000bf,
0x02092029,
0x98077ffe,
0x10656dff,
0x14a000bf,
0x02092029,
0x7bbc6f64,
0x0d828336,
0x217ff30c,
0x10032371,
0x287c45ff,
0x3237e4c2,
0x3905b649,
0x530396f0,
0x0fe09e00,
0x003bb0c8,
0x5c11a1fe,
0x402db2f0,
0x0a4bff4d,
0x18f13011,
0x1fb990bc,
0x697eec00,
0xff3ac9f6,
0x7bc33fc4,
0xf817f503,
0x3024021f,
0x30fef04f,
0x5e9ece49,
0x7895144e,
0x7f84e016,
0xdffed9f7,
0x12cbe022,
0xa0bfc408,
0x6000e083,
0xb2005008,
0x7a16c20d,
0xec021e92,
0x4a7f0dff,
0xbd4891e0,
0x3213f1af,
0x0367ffd9,
0x127a0360,
0xc26fe1f6,
0x6f51e0e3,
0x5902fe22,
0x0836db09,
0x16dc1340,
0x06c00209,
0xdfe71b19,
0x7f936966,
0x31681800,
0x6040f149,
0xc005a488,
0x42f427fe,
0xf99efec8,
0x16348005,
0xb4d3fb78,
0x67ffc21d,
0x4b002d49,
0x049fe043,
0x9f6a4e4b,
0x01d96e90,
0x402c08b7,
0x06f87762,
0x1024de88,
0x2a80dcd0,
0xffe222c3,
0x367f8006,
0xd3f00c24,
0x00041ed3,
0x7f3c6840,
0x091a3dcf,
0x5ffcfdd9,
0x1606ce11,
0xb0183181,
0x79378407,
0xfedc079f,
0x0183e4b7,
0x0003e685,
0x3710c92b,
0xe3ec0ef4,
0x233dfd04,
0x0003e685,
0x3710c92b,
0xe3ec0ef4,
0x233dfd04,
0x271f59bf,
0x54dedf63,
0x19a323f6,
0x2e97e900,
0x11b7fd74,
0x07006d11,
0xd3656c6c,
0x749f46e5,
0x2767be10,
0x3761f3ff,
0x9fed7fee,
0x7fbfc008,
0xeb27f624,
0x21be07cf,
0x01400198,
0x4af90670,
0xef203ae9,
0x6dbf0ff7,
0xb79e4dbe,
0x2ff6d3e9,
0xfa541139,
0x7f36fa81,
0xb9dc9af8,
0x45a364fc,
0x68d92400,
0x7f67a9b1,
0x112bf3e8,
0x0d921e0e,
0xbdb825d9,
0x11300fdf,
0x90900a46,
0x5b9fe0f0,
0xb60115b1,
0x6203b265,
0xd3fbe868,
0x76c17aa2,
0x9adbb27a,
0x7ad19dad,
0xc383fe4c,
0x66cc80a6,
0xc7ffd8c6,
0x16c237e6,
0x516f307b,
0x430527f1,
0x27f13f6b,
0x3f7e410d,
0xb2f88ec7,
0x3fc9207e,
0x43fc6a55,
0x5f3ec123,
0x709cd1d0,
0x3e00e205,
0xa123ff81,
0x04e77fdd,
0x9361b63b,
0x05bd7b00,
0x8e77acb0,
0x0dff2413,
0x0131ffb2,
0x2c2c0031,
0xa8991e8d,
0x34cb8b63,
0xc190ee5f,
0x01825187,
0xc3679237,
0x34c01bc6,
0x9322fdff,
0x69f505df,
0x19c4b1f9,
0x7b76ff6c,
0xc121f268,
0x33bc1c12,
0x19c4b1f9,
0x7b76ff6c,
0xc121f268,
0x33bc1c12,
0xf141e8cb,
0x06400160,
0x48209bd2,
0x6946fc52,
0x270e0bda,
0x6d9f42fb,
0x611dbc79,
0x01837ff3,
0xb12343e0,
0x5941f7fc,
0x67d85e00,
0x7fff62de,
0x27e0c5bd,
0x00383b6a,
0x281dba50,
0x1677e28f,
0x40349eef,
0x09c811b6,
0xd85e4b00,
0x7fcb0047,
0x36a285a5,
0x26e82cad,
0xdac08ac7,
0x3909300d,
0x4d384dc7,
0x0a3d1d83,
0x8011b406,
0x7024f7cd,
0xd9710d47,
0x0d8b6412,
0x0f91aff0,
0x777fc996,
0x1939dec8,
0x77d3ffe2,
0x7f6fefe5,
0x7212c0b2,
0x1097f3c9,
0x1a377c80,
0x3e3aaca2,
0x3bcdbbf2,
0x48b059a0,
0x17efe5b6,
0xb762dbcb,
0x29aca82d,
0x2d026b7f,
0x37ea364f,
0x04871670,
0x793592d0,
0xe72493a7,
0x100fefbf,
0xcfd3513f,
0x505e4850,
0xf7047ac8,
0x3845fb02,
0x16503fa7,
0x1004964f,
0x4a0089d9,
0x69c9757d,
0x6099b364,
0x63c0ede2,
0xc07d020f,
0x53068586,
0x2ff7ff8e,
0x5ff4df60,
0xfe82e8ff,
0x07e6e159,
0xc1bdfdec,
0x2d19f306,
0xa5e603fe,
0x26249f9d,
0xf93787df,
0x081d3521,
0xa5e603fe,
0x26249f9d,
0xf93787df,
0x081d3521,
0x925c8072,
0x032e9bf3,
0xbea9be37,
0x0d9006f7,
0xb24e0060,
0x4c19a251,
0x7f224f81,
0x3199926f,
0x012cda25,
0x1947cfe3,
0x9360bce0,
0x20dcb880,
0xe8d2b0dc,
0x13ff3091,
0x138c410b,
0x4e4122c6,
0x4203f136,
0x6481ac82,
0x197766e4,
0x13a97cd1,
0x49efc42b,
0x197f9c9e,
0x00db9ac5,
0x4dc00900,
0xb7d87eb4,
0x2dbae0b5,
0xc7cae4d0,
0x76e1feb4,
0x259a6c09,
0x6536fde0,
0xe9a49026,
0x728d67dd,
0xa592fca8,
0x20bafd5a,
0x376fe05f,
0x4c8356f8,
0x7591a7c8,
0x5c32d701,
0x6781fe92,
0x37c5db0e,
0x4c91b7db,
0x2353eff7,
0xa8592ec3,
0x2dd1fc9d,
0x971325ec,
0x10048571,
0x04d313b2,
0x69096594,
0x8e0087b6,
0x2cc8936d,
0x5ea4004d,
0x3b32ebc9,
0x222eeea9,
0x001cd9cc,
0xdcc508b6,
0x2539b481,
0x336ccbd4,
0x603fd6fd,
0x7a1c3ef9,
0x2b1ee947,
0x4702da40,
0x340dfcf6,
0x0a499396,
0x361e3fd7,
0xea9b837e,
0x372fb687,
0x6c4df6c4,
0x2f537ef6,
0x252739b6,
0x7ffffd09,
0x0af6a6dd,
0x6de48c3e,
0x252739b6,
0x7ffffd09,
0x0af6a6dd,
0x6de48c3e,
0x9ffdfe7b,
0x1af772e9,
0x00804d35,
0x481bf03c,
0xdefc2601,
0x4f87b38f,
0xfff8012e,
0x1fa72737,
0x37fbf5d6,
0x6ec03887,
0xfed3c166,
0x7e39dbff,
0x98458022,
0x4ff773dd,
0x86f865c6,
0x6e1f70d9,
0xfd6e0178,
0x7fc7dbe1,
0xf80c3ed9,
0x3dfff237,
0x7afc8406,
0x10d7e0e9,
0xf87ffffb,
0x7040f3ed,
0x12cc40d8,
0x7f480c30,
0xf245ff39,
0x7e8203c2,
0xbd9d7537,
0x03780401,
0x7ffdffd8,
0x6000fe0c,
0x87ec06ef,
0x1efe639f,
0x87e61202,
0x0fcb417b,
0xa003bc05,
0x7eda4ffb,
0x1fffd176,
0x5ae4cb60,
0xb7fbff32,
0x41bf0ffd,
0x3d08030c,
0x7fd95fcf,
0xf8001236,
0x4e3a4267,
0xf803fe0a,
0x493ff7ef,
0xe02400cb,
0x1e7f628f,
0x2c8003f7,
0x000020d8,
0xfd03ba76,
0x4f002002,
0x9cae857e,
0x047fe5f8,
0xf5faf712,
0x0587ff6f,
0x48d8cd2e,
0x000af120,
0x97da3001,
0x0dbfffff,
0xc7dc8016,
0x27de0fff,
0x329d7ac8,
0x3fbb4371,
0x069be8d1,
0x0efbeef0,
0xdf012edb,
0x567f1ff6,
0xbc836c30,
0x1ff700ab,
0xe4fed6d3,
0x65c113f3,
0x21261700,
0x1c3bffe1,
0xe4fed6d3,
0x65c113f3,
0x21261700,
0x1c3bffe1,
0xc6fc8a44,
0x13e50027,
0x24b79116,
0x025b601e,
0x281e7804,
0x003ec7f1,
0x7a0c085d,
0x59c12187,
0xe483dffd,
0x5ff0b89b,
0x2fe2eda8,
0x7ecfe463,
0xf8fb92f8,
0x32c0dfff,
0x17e009f1,
0x6670c756,
0x89242304,
0x59041047,
0xd89733c0,
0x1344e09e,
0xba42d397,
0x71edc96f,
0xf7fff7f0,
0x0108240f,
0x0208fbf4,
0x6fa0088d,
0x05000000,
0x70082191,
0xb0b6d6f0,
0x1951f58d,
0x50a36e4c,
0x6c00127b,
0x7801003c,
0x12237ff4,
0x3bc3fedc,
0x00307ced,
0x17fc0158,
0x124cc1f2,
0x84dbfffd,
0x1f34801c,
0x05e3f1da,
0x0ef7dffa,
0xe1ee81b7,
0x20000a0d,
0xff637de7,
0x0d40425d,
0xff62441b,
0x0f391fbf,
0x7fffd7a8,
0x7bed0839,
0xf80deff9,
0x12349bbf,
0xf8436dfe,
0x0148a01f,
0xc03f720e,
0x4b34f01f,
0x3966bdc9,
0x167fed89,
0xc82fe948,
0x03c9780b,
0x783fffa0,
0x083d7780,
0xfbc30007,
0x039ee071,
0x04009be0,
0x010ab876,
0xe07c498f,
0x7fc65e03,
0x2fdc4bf4,
0x7edfff2c,
0x3fca3ad1,
0x02f7dbf1,
0x2fdc4bf4,
0x7edfff2c,
0x3fca3ad1,
0x02f7dbf1,
0xded12390,
0x64876cff,
0xe497cdf6,
0x3c04a6f7,
0x059cec05,
0x7e823b5c,
0xa8449364,
0x12b69b75,
0x393ca9fb,
0x090e77b0,
0xd2d60213,
0x1227ac4c,
0x207f8fc2,
0x378f5da0,
0x011328be,
0x1df7ff61,
0xc12509b8,
0x3dbf5486,
0xeb00e1b7,
0x3f365f8f,
0xe02ec120,
0x49c8272a,
0x8626d7dc,
0x094079f6,
0xc89fe734,
0x13277085,
0x85809bf0,
0x187ca42c,
0x23627c3c,
0x7245f81e,
0xf923ef64,
0x0a3c85bf,
0x001e021f,
0x4fc6828c,
0x01236fdb,
0x4cd66e0f,
0x877e4200,
0x1a70e079,
0x76cb9fdf,
0x6d1ee5ba,
0xccd4da10,
0x35619b0a,
0xe8df4048,
0x21d9e00c,
0xb0bdf1b8,
0x7a65fe0e,
0xdfaf6f30,
0x3dfbef9f,
0x190082e0,
0x20227d91,
0xb36901c4,
0x06cf0b61,
0xb412d684,
0x1bdc1d91,
0xc7d8f539,
0x3f54edbe,
0xdb7561b5,
0x002902ee,
0x38009b6b,
0x14165d81,
0xe53cb02e,
0x2e63f3c6,
0xbed5ed77,
0x36bff719,
0x77d10810,
0x19f68bec,
0xabfbc520,
0x1b16e092,
0xa27669c8,
0x287fef00,
0xc3ad7878,
0x0f4f02f4,
0xa27669c8,
0x287fef00,
0xc3ad7878,
0x0f4f02f4,
0x8429fff0,
0x0c3b412c,
0xffd1f1fb,
0x16037b07,
0x106e497d,
0x7d86ba7b,
0x20f766f9,
0x2b76b846,
0x5970081a,
0x7e088fc1,
0xf4c1f202,
0x3ff91f86,
0x207c78f7,
0x41c0a1f0,
0xf0185bfd,
0x277663ef,
0xfb0c184e,
0x17bd332c,
0x8063f21a,
0x132c03ee,
0xdf6cf1ef,
0x2e69ee91,
0x8002bc8c,
0x034ff80d,
0x48e1eefd,
0x50cbafd2,
0x01f3f3ff,
0x037833dc,
0x213e6fde,
0x380be3e8,
0xc56132db,
0x601fff53,
0x4f6fdbff,
0x7fe7779e,
0x9039a1ff,
0x7c07133d,
0xf7dcfbfb,
0x74b106ed,
0x7603f978,
0x6085f670,
0x67f97e47,
0x6eb777e1,
0x6372f024,
0x3657ca07,
0x7a485fff,
0x0f23fd8c,
0xc03c45fc,
0x3e66938f,
0xd8c3d2c4,
0x14df92d5,
0xf3f0f0fc,
0x7f43a3f1,
0xebc1e169,
0x68126079,
0xee116800,
0x01c0df95,
0x61590a0d,
0x005b2f89,
0x0e480efe,
0x76193c4d,
0xcf8a74cf,
0x40bbecd0,
0xf92c06b6,
0x4b86da67,
0xd7e05e20,
0x6ed6ffc7,
0xdfb17234,
0x70370a82,
0xb80e20ff,
0x13fce252,
0xeffc2455,
0x4837ec1b,
0x387f7e08,
0x17c837f9,
0xa3459e0a,
0x5fbe8c87,
0x387f7e08,
0x17c837f9,
0xa3459e0a,
0x5fbe8c87,
0xca1f92a7,
0x6117f276,
0xe747d681,
0x7ed76f2f,
0xc8fff3b8,
0x784f6dfe,
0x46c2f736,
0x5c3f20fe,
0xbe8cae09,
0x441bd081,
0x3fcb11fb,
0x5f9379eb,
0x95e191d9,
0x404b7342,
0x38b786ac,
0x129437f0,
0x5aca935b,
0x1a6483e4,
0x4f0046e1,
0x01d86cb2,
0x4c041c6f,
0x7832fb70,
0x7f9325ca,
0x0948d7ef,
0x180ff6e2,
0x76248bb2,
0x405d8dc8,
0x04d99dd2,
0x44a781ce,
0x74a27dea,
0x7c49b783,
0x2cffee89,
0x7c40c345,
0x70a91741,
0x7ab3e01e,
0x42447cfa,
0x91e1203e,
0x601ea9df,
0xc8dc809d,
0x4db31252,
0x34fdb20b,
0x12df5c7e,
0x200221fb,
0x6c1fd668,
0x0fd89e1c,
0x4320cc6f,
0x7e188490,
0x11238c0c,
0x46662785,
0x573f1266,
0xa5b87b84,
0x078ff54f,
0xdbef7384,
0x7717f670,
0x788e1f37,
0x0cc17fa1,
0xef499f79,
0x0ec35b4a,
0x3219f9e2,
0x7ebfe85a,
0x626637a7,
0x34cab5b2,
0x87911223,
0x09a3111e,
0x340ff806,
0x1362c7a2,
0xfbc50288,
0x0cfe4161,
0xdcd3813d,
0x30096fee,
0x07f065e6,
0x7fc68017,
0xdcd3813d,
0x30096fee,
0x07f065e6,
0x7fc68017,
0xb83f6800,
0x63abc604,
0xeb994840,
0x0402cbf1,
0x1680ff7b,
0x01080100,
0x0c3c00be,
0x67add020,
0xf4d36cd8,
0x4bb70edd,
0xcc8813a0,
0x6736a52c,
0x81a1c9e4,
0x4de030fe,
0xfe01ffd8,
0x0b7fe437,
0x5ffc3ed8,
0x00445ba0,
0xa81df15e,
0x020595fb,
0xa92efc5b,
0x37599361,
0x424de13f,
0x200fdffc,
0x9001ffbf,
0x621bdbf0,
0xc767f30f,
0x7fe00cc1,
0xfda1c049,
0x7fb7f212,
0xf89b60ac,
0x1209bb6d,
0x5c230136,
0x3affe486,
0x6a849e28,
0x081c8ea3,
0xb713a0cb,
0x68001cd9,
0xebed9ec8,
0x0db75e84,
0x2381d887,
0x3e501bf6,
0xfb6ddba7,
0x7a193fe1,
0x869392c0,
0x02401b61,
0x37f29196,
0x3fc3e04f,
0xf8f9fec8,
0x4d800085,
0xca03a120,
0x5fc21bce,
0x00be5e37,
0x117e488d,
0x036c3f90,
0x05f80ffd,
0xa1224a16,
0x7cf93bfd,
0xa2dc6cff,
0x15d1e2dd,
0xfdff7eba,
0x7ac037b3,
0x431241bf,
0x7414d3e6,
0x0fd86c84,
0x3fdfa48c,
0xfc00fe69,
0x70bd0c09,
0xffffba40,
0x1f7680b0,
0x8b63fe10,
0x602fc775,
0xffffba40,
0x1f7680b0,
0x8b63fe10,
0x602fc775,
0x092f33ff,
0x481213b7,
0x9bc58d58,
0x0038016f,
0x3fe7adb8,
0x7ec00581,
0x97ef3e0c,
0x1e593fb3,
0x14fb0079,
0x307cd3f2,
0x79468fed,
0x3e4071f2,
0xb8627a39,
0x401d7803,
0xeb1161be,
0x42ccffc9,
0xbef02868,
0x427eff65,
0x18cd1cde,
0x7187e894,
0xa7e99060,
0x5010b520,
0x9fd9f086,
0x2dfd83be,
0x8f4c381b,
0x4fb27e60,
0xe7fc155b,
0x347eff89,
0x0610b7ae,
0x00c7e068,
0xbffbe9ff,
0x05b6eeb9,
0xbee1fe7f,
0x35068023,
0xd10175ce,
0x32080fbf,
0x8c9aee78,
0x7de11dbb,
0x006eff04,
0x2f1b54ac,
0x67fc104e,
0x09c8c046,
0x0ff9f5b1,
0x3ed183df,
0x80350670,
0x4038faf0,
0xa22b8ef4,
0x30ecf69c,
0xfa63e9fd,
0x0edc8efa,
0x6061fe00,
0x783aafce,
0xa70067fe,
0x42467a61,
0x4ef59350,
0x3e4012cf,
0xa1fc8798,
0x7046d37f,
0xddef9021,
0x1507c410,
0xfd7b1030,
0x0e3f6811,
0x47f3f3c7,
0x28017780,
0x015d62ef,
0x40d72c59,
0xb2110484,
0x50ffde93,
0x8bc5acc5,
0x49886046,
0xff234f3a,
0x005ffc67,
0x8bc5acc5,
0x49886046,
0xff234f3a,
0x005ffc67,
0x9b460314,
0x40374fe6,
0x70ffdc33,
0x7fbb6fe0,
0x9b4c77c8,
0x4d3d19b3,
0x4dbdb3ef,
0x5240dc08,
0x6c1b922f,
0x4986f7f9,
0x8c648840,
0x76eca36e,
0x6fd894be,
0x66867032,
0x032ffb6f,
0x4d8207f2,
0xa7e24a16,
0x60afa3ff,
0x4e8366bb,
0x7006d27e,
0xd8ed01f1,
0x790e161e,
0x10d32900,
0x3cfd71a2,
0x27204c01,
0x03db35c7,
0xbcee1011,
0x001e7c89,
0x9ffae19b,
0x69eefc9e,
0xbff0d2c4,
0x0fff03ff,
0x07320e00,
0x7fc01302,
0xfd7745f3,
0x467226fa,
0x989377e4,
0x305f9c59,
0xa06c333f,
0x6cc8c930,
0xb6bc85ff,
0x59e01795,
0x111059ff,
0x061b4168,
0x044f8327,
0x6e3b6077,
0xcb7d23ef,
0x0d9244b0,
0x9520b61b,
0x00780a50,
0xf8ec97f7,
0x4e40f2f7,
0x00468122,
0x5ffda6f8,
0xe308364a,
0x5df81d96,
0x646fef92,
0x46fb199b,
0xfef92736,
0x327c1db6,
0x3c335579,
0x699019d6,
0x83b677ad,
0x640d4d83,
0x202fa750,
0x66413ff2,
0x3ffc35db,
0x72002041,
0x076377fb,
0x22bff3fe,
0x5ec45e44,
0x4040be6a,
0xe0001e37,
0x5bdaec88,
0x03601bd1,
0x4db8c200,
0xe0001e37,
0x5bdaec88,
0x03601bd1,
0x4db8c200,
0x581a4fbf,
0x764015f3,
0xd8008101,
0x11841f99,
0x07fe0e41,
0x73bfd00f,
0x07671713,
0x56a658c0,
0x6fe01ff8,
0x0141e47e,
0x38118007,
0x793b2040,
0x2321ca09,
0x3ffe0445,
0xb809a9f9,
0x01817bfd,
0x07eeffd8,
0x59395d8a,
0x05ed41c0,
0x42d8efa0,
0x472395de,
0x6227f01f,
0x40226c04,
0x307d1fb0,
0x413db177,
0x03c0fe86,
0x3fe3e176,
0x7e3f040b,
0xde860c7a,
0x704e7818,
0x100a65f7,
0x3df01fb9,
0xc1e40f84,
0x7fc81396,
0x37fd0edb,
0x0dc0eff0,
0xc2d19745,
0x4f39204c,
0xb33e7278,
0x6fc43ebf,
0xb9200f8e,
0x0de08009,
0x9bd0ce04,
0x0a100269,
0xfb200805,
0x3c7f024f,
0xc713f9ff,
0x09bf0c98,
0xf00041c1,
0x16c4df89,
0x07fc1c4e,
0x58226240,
0xb83c3e06,
0x403f5a61,
0xfe0c2ff8,
0x0bdbe462,
0x08080426,
0x7f3edbb2,
0x34a10fbb,
0x7efb1c9d,
0xfa47c1dd,
0x4987c27e,
0xd12c0fff,
0x7027ffff,
0x3b6fb1fe,
0x76001fcc,
0x226003c0,
0x7ff7e1f9,
0x63daedc5,
0x0667e899,
0x009b17c0,
0x1b2c18db,
0x63daedc5,
0x0667e899,
0x009b17c0,
0x1b2c18db,
0x00fbfcbf,
0x00edb781,
0xf127f93f,
0x6b88149f,
0xf944b3da,
0x13726bff,
0xcd26b600,
0x4f4dd373,
0x06be7e50,
0x76fe9c90,
0xfe482700,
0x01de6305,
0x58e50b34,
0x622981be,
0xfb547f3e,
0x6c325804,
0x87ed7db3,
0x32043a89,
0xff1e1add,
0x73c0286b,
0xcb27ecff,
0x137d00fc,
0xfffdffd8,
0x18400585,
0x98001f76,
0x72db76d1,
0x33ffd3e6,
0x40b69861,
0xe864b1c7,
0x04d62014,
0x40fdcddb,
0x7dc21f80,
0xbad0f322,
0x5c1c8b0f,
0x8d376fff,
0x71392bfe,
0xf12bbf9d,
0x4133310d,
0x009defd3,
0x7dfe0110,
0xc041f13f,
0x2fd7f39b,
0x27857f21,
0x2fd932e4,
0x982abcbf,
0x590496d1,
0x3805b227,
0x7f7d080d,
0x84104cbd,
0x294013f1,
0xe73769c7,
0x10116047,
0x25e44451,
0x7f5dbe5d,
0xb05a8fcf,
0x6fe6d9b7,
0x4d03b7fd,
0x6bef5206,
0x27f04a20,
0x4184c9c1,
0x63070ce0,
0x7b003bbe,
0x9ed802c3,
0x6ddffbf5,
0xc8da7d23,
0x013342d6,
0x46c86cd7,
0x26c00382,
0xb6fded01,
0x12cc844d,
0x00f9ec59,
0x0067fd24,
0xb6fded01,
0x12cc844d,
0x00f9ec59,
0x0067fd24,
0x07b2ea00,
0x2fc1720b,
0xf902033f,
0x04b86001,
0x2403ff40,
0x2ee41cae,
0xdfec01be,
0x69b9000d,
0x7e4bf0e8,
0x04191d8f,
0xa590833f,
0x700cbb31,
0xf8782ffd,
0x5fd5977f,
0x0697fe2f,
0x41e816f0,
0xe0bfff7f,
0x0000e07f,
0x7c004a74,
0x7fc67de0,
0x23020001,
0x01040ff0,
0x06fc0176,
0x7ed6ab00,
0x88017d21,
0x7e001f6c,
0x181007b6,
0x3fffe003,
0x2f1c8028,
0x009a1f00,
0x9483ff2f,
0x0039204c,
0x27affe36,
0x0004ec91,
0xdc68001b,
0x1f42e20d,
0x00004da0,
0x5a3003b4,
0xffffefff,
0x767f33bf,
0x28036948,
0x10081fff,
0xf8040a06,
0x093eafbd,
0x9fffdedb,
0x70241ff8,
0x27fc4edb,
0x13fec3fe,
0xa411ffff,
0x42117fdb,
0x6f2400c9,
0x09691f80,
0x780516bf,
0x7ed7f2f3,
0xbfec17f8,
0x00106d90,
0x28d0083f,
0x000089f3,
0x06d021cf,
0x303fe00c,
0x23e9da7f,
0x64189ff9,
0xfaa7fec8,
0x199d23ff,
0x0283f52f,
0x08090ffd,
0x28837bff,
0x003fe241,
0x77ff7c17,
0x36c7ec61,
0x0ffc03f8,
0x6fe61ff0,
0x27a64d64,
0x5b086ecc,
0x25000800,
0x23209e99,
0x27a64d64,
0x5b086ecc,
0x25000800,
0x23209e99,
0x4c10c308,
0x66edbc00,
0x2be6e420,
0x60bf2902,
0x819803c0,
0x0c475206,
0x1c0480c8,
0x324086ce,
0xdc021fac,
0x3366288e,
0x25040ae0,
0x3a4c9ffb,
0x68909e1c,
0x134cb258,
0xe37e012f,
0x66e5ac8d,
0xf85da425,
0x7a4a0c6c,
0xe31b1044,
0x124c2c93,
0xdb309313,
0x04f01dfe,
0xce020382,
0x6fd2c5cc,
0x41249965,
0x6fc180b2,
0xfcc91626,
0x7b06637f,
0xb44defa5,
0x516f801b,
0xdfd75b29,
0x33c969b8,
0xc5b21e58,
0x7f73648c,
0x87be4907,
0x10776400,
0xa042485e,
0x04fb9279,
0x6c2f6dac,
0x6278b271,
0xffd58e25,
0x7624edfb,
0x7f834c24,
0x2308ebbe,
0x05045d00,
0x2b4c9640,
0x043eb91d,
0x09e48332,
0x10d093d0,
0x684db488,
0x452c594d,
0x21b2edb4,
0x04d88b6f,
0x70168d92,
0xc4aec0df,
0x73d9a662,
0x39d23601,
0x7acec4b4,
0xc7202041,
0x52c41221,
0x1573cb22,
0x4812240a,
0x3c22fb80,
0x40298249,
0x0e680b48,
0x02cc0061,
0xfcef0e42,
0x25ec805f,
0xc78a4925,
0x40570fe3,
0xaf1ba46e,
0x32196bc0,
0xc78a4925,
0x40570fe3,
0xaf1ba46e,
0x32196bc0,
0xfb2441d0,
0x23f40658,
0x204c42c4,
0x7e629fe4,
0xa63f0110,
0x0bc9f13d,
0x044ecf3b,
0x4c29204e,
0xde1a06fc,
0x4024a5e3,
0x833729b0,
0x4dd1cccf,
0x34fe0807,
0x2d8dcff9,
0x881afea9,
0x70293e7f,
0x411727a0,
0x640407a1,
0xbb9a6db6,
0x5db69bac,
0xd0b16674,
0x583df9f1,
0xdd19da80,
0x08641d96,
0x88639238,
0x7fc7f07d,
0xf4139627,
0x171057c1,
0x497d1063,
0x11f77ba6,
0x106e1038,
0x0677f765,
0x0734ff86,
0x6a592859,
0xf1df67b6,
0x433f3dcf,
0xbc83c9ef,
0x610a2037,
0x10aded23,
0x1397ff70,
0x436a866b,
0x762f5e9c,
0x6b6c324c,
0x7eda10f0,
0xd20bb454,
0x2a49bff8,
0xf4ba4010,
0x07fea5e8,
0x212df691,
0x71cf1cb5,
0x003d767b,
0x08136649,
0x302f9e7d,
0x78341efa,
0xf794324d,
0x37338c4f,
0xff6893d1,
0x1826c6e2,
0x6fd37b3b,
0x03c70188,
0x775a4c4c,
0x703cf82e,
0x80200d00,
0x77c1821e,
0x20a31892,
0x48691809,
0x709b37ee,
0x1034ea9b,
0x3f7f31de,
0x75293fe7,
0x4c600e08,
0x606814b2,
0x3f7f31de,
0x75293fe7,
0x4c600e08,
0x606814b2,
0x94d7da17,
0x0bcff8a0,
0xdc0bef27,
0x3759980a,
0x9fa8115e,
0x3624d188,
0xf8215997,
0x440b9f38,
0x3e5a4ebc,
0x1b000b6c,
0x649af291,
0x23a6a904,
0xa7907c0c,
0x69aa1c6d,
0xc4d13eda,
0x702e80d5,
0xc33601b0,
0x49c0a972,
0x6c0b72c7,
0x5c1a5d7f,
0xe69208c1,
0x0b191b62,
0x3a7fc001,
0x3264df3f,
0x6e016f6c,
0x787ac830,
0x0027584c,
0x22fecc82,
0x716d2bf4,
0x1203fc3e,
0xe49712b9,
0x34f79057,
0xf5733059,
0x221e598e,
0x9dd3da16,
0x6641620e,
0xd32633fc,
0x50265ecb,
0x23157e52,
0x31b7fb23,
0xa9a629c1,
0x10fedb23,
0x447eac0e,
0x36336d33,
0x6b5803b5,
0x4fe4bf67,
0x967d3129,
0x4930625b,
0xda233227,
0x7fdef8e6,
0x85077b24,
0x3758624d,
0xcf8fb20c,
0x7013e1f4,
0xb7b06b41,
0x176f9b90,
0x163c59f6,
0x2d7b0d34,
0x697dafa4,
0x4858e6d2,
0xe726ef34,
0x32098067,
0xfa793dc9,
0x05191fae,
0xb89ee9f0,
0x3b60764b,
0xd96eb68f,
0x0991c6f2,
0xfce08175,
0x3fa64dc1,
0xdb0c69e4,
0x0d8db11e,
0xfce08175,
0x3fa64dc1,
0xdb0c69e4,
0x0d8db11e,
0x0111fb86,
0x7a906d90,
0xe863fe81,
0x7e04cf77,
0x21027db7,
0x334aa439,
0x3107e900,
0x0017c00b,
0x818208d9,
0x720fc2b0,
0x4c4ff6b6,
0x10e1669a,
0xdc536fff,
0x3f9b01bb,
0xa48497ff,
0x55c7fda5,
0xb92496cd,
0x00290040,
0x2ad19af7,
0x7647ffc1,
0x00f2064b,
0x01640fdb,
0x30a7b60a,
0x3fbfa054,
0x6ce36c13,
0x5076d216,
0x94f85a4a,
0x31721f5f,
0xbedab04a,
0x125bffdf,
0x4803d2cb,
0x37ed2006,
0x289ff3ff,
0x514af84b,
0x0804f0bf,
0x33e8cdb1,
0xadfc01fb,
0x4d273fd1,
0x6d22011d,
0x322e63fb,
0xe81b2bfe,
0x77ffd206,
0x1a75bf06,
0x4ab65059,
0x0ff236d9,
0x17af8578,
0x7ef40103,
0x13c8100a,
0x9edaffe0,
0x5d8cd005,
0x07f9a8e1,
0x17daed43,
0xf8bce024,
0x103b37c7,
0x27694b48,
0x79021fc1,
0xd80000ef,
0x5a6387bf,
0xfd046c47,
0x6da4fbf3,
0x0c0e1386,
0x48000000,
0x0f146eff,
0x12c4a24a,
0xc57c012f,
0x48394d97,
0xd90c08ce,
0x45827b0f,
0x3cdbdd17,
0x543f585d,
0x49dc332f,
0x780f3f40,
0x9d92181a,
0x3646e9df,
0x4cd259b4,
0x7b3d894e,
0x9d92181a,
0x3646e9df,
0x4cd259b4,
0x7b3d894e,
0x6d809136,
0x5fc031d0,
0x4b2c4af7,
0x51b7827a,
0x3fc381b3,
0x0997c99c,
0x8c836ef0,
0x564ff377,
0x200ad0f4,
0x674d0380,
0x8011405c,
0x7f3645ff,
0x4e2e602a,
0x03ff0fb4,
0x6809480c,
0x20562069,
0xe56eb821,
0x52a823f1,
0x91ee8031,
0x377b2dfc,
0x6cd615cb,
0x78b36fb6,
0x8d5bfd4f,
0x1dc08d5a,
0x9898f801,
0x4941f26c,
0x272e0ddf,
0x363fe4bc,
0xc1c3892b,
0x22484db4,
0xcf7f6c6c,
0x680fec0d,
0x87f50374,
0x125a6241,
0xcdd358b7,
0x7fb80093,
0xf97cbec8,
0x1382e9ed,
0x8a7379a0,
0x7d25864d,
0xcc5e8506,
0x3d59603f,
0xabf277d4,
0x0b20131d,
0x092e18e8,
0x018a1a0c,
0xf1e5ffbc,
0x49306072,
0xc4a6ed04,
0x7ec0808a,
0x38714bd4,
0x0f36ffe1,
0x5f4549c9,
0x761d203f,
0xff3f4957,
0x02ffad31,
0xcfa029dc,
0x16f7d810,
0x8f7c0dda,
0x3c24707f,
0xf9ec67bf,
0x13a10091,
0x113fe7b0,
0x4e281f47,
0xbd4e44ae,
0x041ae7b7,
0xd1927835,
0x6f01ffc7,
0xd975f321,
0x3ec6f979,
0x0cda2030,
0x163fd39e,
0xd975f321,
0x3ec6f979,
0x0cda2030,
0x163fd39e,
0x03fc183b,
0x243b6024,
0x431ff77d,
0x412c4317,
0xb89c05a3,
0x0366f581,
0x011c0ac0,
0x34800c34,
0x17424f91,
0x3ffbdfe4,
0xe80821b0,
0x40a564fb,
0x60dc0ece,
0x033b1afa,
0xff7fe80f,
0x0f0fccb3,
0x83006fcb,
0x4f8463ff,
0xd4fc81c3,
0x3f47e007,
0x3e4847f7,
0x00361381,
0x0ff0023f,
0x3c8823fe,
0x45e80e2f,
0x1f3f77be,
0xb0ff8bc0,
0x4024e265,
0xbbb7903e,
0x01ca1001,
0x0603fea6,
0x4e04e032,
0x39580702,
0x7eef8c4b,
0xfbe1805d,
0x703c19c5,
0x25c517e3,
0x000cf00d,
0xc5170101,
0x0907b016,
0xfdff007e,
0x0fe017ef,
0x07003e05,
0x6dd81f89,
0x7f085f00,
0x30781be7,
0xb6617384,
0x76bd0040,
0x01bce039,
0x7fb80070,
0xe1bfe8cd,
0x1917ff4b,
0x0758f204,
0x3dc204fe,
0x46db7a01,
0x1ddd0066,
0xdce11d40,
0x0f80d253,
0xc3007f68,
0x7114e13f,
0x68037001,
0x5fc08015,
0x4f9603ef,
0x6c10038f,
0x2c3e6d60,
0x702a1d84,
0xfb037cb7,
0x45e0447a,
0x03f7f806,
0x1aa0f84f,
0x018573fb,
0x6309463b,
0x03f7f806,
0x1aa0f84f,
0x018573fb,
0x6309463b,
0x424e4340,
0x34dbf83f,
0x04169ef2,
0x3d037788,
0x8a1bc7a2,
0x41ff3a84,
0xdffdb2d9,
0x111b1ad3,
0xcedf4bd3,
0x4437f178,
0x17c79d48,
0x7d041e0d,
0x2ea9044e,
0x7c34fe19,
0xbc819a07,
0x4bf1c0f8,
0x985261a7,
0x025b69a1,
0xefe28371,
0x7f645de4,
0xd8820067,
0x733e7b6a,
0xdc936d64,
0x4800e976,
0x272dd8da,
0x06e108b8,
0xf4951e49,
0x680f7683,
0x6c824bb0,
0x70749803,
0x7c1b8f4b,
0x29206309,
0x0161d16c,
0x0fff128f,
0x5402b627,
0x46e43d2b,
0xff678402,
0x00c426db,
0xf69ff006,
0x3e282f79,
0x9f020324,
0x70379783,
0x4dea01ee,
0x13f3a668,
0xbfe22b7f,
0x02960cc1,
0x771df6d2,
0x09c8437b,
0x4420b65f,
0x4003e896,
0xdcfec90f,
0x1ee4781a,
0x1f2833a7,
0x530157d0,
0x62d4b744,
0x7dbf2010,
0x20bfa7b3,
0x617af1b8,
0x9a7fa02a,
0x65d2cbf6,
0x0dc5f022,
0x253df320,
0xc5d79f00,
0x0134b492,
0xddda03b0,
0x16aa1a79,
0xe40a4c09,
0x3b4c7d90,
0x2563bea4,
0x60ff483f,
0x1c8a09b7,
0x003f3080,
0x2164ad8e,
0x37966979,
0x1a47300c,
0x5f289dc8,
0x2164ad8e,
0x37966979,
0x1a47300c,
0x5f289dc8,
0xee85ba84,
0x12f3b904,
0x56cf4107,
0x4ee132f3,
0xda2b5202,
0x443498f9,
0xc7f3365b,
0x65f58b01,
0xc6ee1389,
0x33250eb4,
0x54037a34,
0x4ec21698,
0xe3713ff4,
0x405149cd,
0xda67402b,
0x3fbcb79c,
0x5b0fb493,
0x4a5f2d48,
0x3b64039b,
0x7e63374d,
0x4ebcb0fb,
0x65de9688,
0xccdb8106,
0x737ea129,
0xa4956ff0,
0x719b035f,
0xb8fbf819,
0x446bbc09,
0x86566d8b,
0x43b4b18f,
0x9527990b,
0x392b33d8,
0x4c2bd192,
0x2439640e,
0xd6f96ebc,
0x4a5468e3,
0x5d631efa,
0x74bf1bfd,
0x882c80c4,
0x41a258d0,
0xef2711bf,
0x4116beef,
0xdd3b6c7b,
0x0f0a6774,
0x5e7c0fd0,
0x160c9183,
0x1c365629,
0x591be358,
0xd47fb31b,
0x2116bce0,
0xff6c319d,
0x1707c5b9,
0xe8315dc8,
0x7bb557b2,
0xf605b064,
0x42db9a42,
0x0e15afa4,
0x06ccc5fe,
0xc57ebbb4,
0x6489d3ff,
0xf665afa3,
0x63e4bbbf,
0xc43360ca,
0x407bfcd4,
0x026ca8c9,
0x6867976b,
0x7cad4e7c,
0x47e16cd2,
0xc8db2892,
0x47f67278,
0x88621cde,
0x03efbca7,
0xc8db2892,
0x47f67278,
0x88621cde,
0x03efbca7,
0xd1604224,
0x6df66006,
0x18f78190,
0x02209843,
0x249393f7,
0x1f19e17b,
0xf59c46cc,
0x10334b06,
0x589611f8,
0x15e0c486,
0x2dce1b6c,
0x5efbef40,
0x3fc20c19,
0x49ff1201,
0x147f00e2,
0x09a7957b,
0xd05edf33,
0x18c3cc8f,
0x53590217,
0x64d85cbe,
0xc883ac53,
0x411914b6,
0xf6cd9653,
0x5a48193f,
0xbfb9364b,
0x007c9e70,
0x800fb5ed,
0x342e846e,
0x0cd74ec8,
0x003e7ff8,
0x3df04cf8,
0x6df8196f,
0x400e0b27,
0x1882d13c,
0x16cb944c,
0x10f82234,
0xbd0712fb,
0x41ffe77d,
0x57e1888f,
0x773e54e6,
0x7418b693,
0x33426ff3,
0xfffd97e2,
0x7449936d,
0xf78b095a,
0x12093be4,
0xac92a407,
0x720b2dbf,
0x200e09c9,
0x003ad266,
0x012fe5f7,
0x72525f38,
0x0804a152,
0x7a007df2,
0x002037b5,
0x3c24b76d,
0x086ff0a4,
0x7c1d1ff0,
0x08494850,
0x009b6468,
0xb5006dad,
0x51acf33f,
0x6a1adcd8,
0x60bb6f87,
0x7fe4e104,
0x36df2a5a,
0x0522d898,
0x11c03e4e,
0x04dace00,
0x0808eefa,
0xf920bd40,
0x7eea4736,
0x04dace00,
0x0808eefa,
0xf920bd40,
0x7eea4736,
0xf4906e80,
0x7fe0132f,
0x376ff840,
0x7f49607b,
0xe83c9a4b,
0x4df60417,
0x78504fdf,
0x76bd5f70,
0x6047b220,
0x7fff2893,
0xf13c5709,
0x724ffa43,
0x4a6ba5e8,
0x7a3dc006,
0x7bb819fc,
0x4dc03b33,
0x7cdd81c9,
0x55c6e0e9,
0x0fc3b01f,
0x327fc4e0,
0x24dbbb7a,
0x4d2f0029,
0x77f001e4,
0x021b0cd0,
0xf96001f6,
0x7b3ff7ff,
0x07e0ff32,
0x7cc85409,
0xfe63ee04,
0x7e37e5e3,
0x3b6080c9,
0x72009fb1,
0xfb2fd2c9,
0x19507257,
0x3ffe6926,
0x3f26c3bb,
0x7883fe7b,
0x19333e57,
0x46c3a9bf,
0x79fee48a,
0x2601fdff,
0x34bf5fde,
0x00926d6e,
0x5f1f1fc9,
0x036dbd9f,
0x7fc8c46f,
0x0beffe22,
0x680f77f2,
0x35fe6e02,
0x6bc0c271,
0xff0c0220,
0x00247bef,
0xdef4f73d,
0x6166c00f,
0x080401c0,
0x4dc50064,
0x07e40e04,
0x733fac82,
0x3c9b7322,
0x7a59fdd0,
0xb8580a19,
0x04f6f099,
0xc8219202,
0x0024fd80,
0xcfefa9c4,
0x24bf6045,
0x84ae70c9,
0x76e8ba06,
0x03cc01c9,
0x7f7c17e1,
0x4f419736,
0x6dbffb76,
0x03cc01c9,
0x7f7c17e1,
0x4f419736,
0x6dbffb76,
0x0123fe1f,
0x4ff7cfe7,
0xf803fff5,
0x7fc9ffff,
0x87d849a0,
0x01dffff8,
0x289f40c0,
0x333fe01e,
0x47d3ddfc,
0x110b72b0,
0x278995fe,
0x10403fff,
0x17fe0008,
0x703fb7d2,
0xb301b6ff,
0x095b3ff6,
0x392001df,
0x028d3c0f,
0x04f9f9ff,
0x7f9fe27e,
0x58213fc7,
0x117fdff2,
0x01e7fe0f,
0x7ed00ff2,
0xb8dbc17b,
0x00e53ff2,
0xc8d00605,
0x7fc77882,
0xefbffd54,
0x7fc0a04f,
0xffff92c5,
0x7802e496,
0x7bfc1a40,
0x1ef2db7f,
0x080df467,
0x30401ffa,
0x34c801de,
0x01eeec99,
0xe90e0030,
0x003f7feb,
0x47dffff4,
0x593f8016,
0x3ffffdb9,
0x707ee369,
0xdffc53fe,
0x41c820c3,
0x3eecbe26,
0x10101e83,
0xaefc001b,
0x45c1465f,
0xf80201ed,
0x001eb90f,
0x3cda41f6,
0x7dda1ff2,
0x0e004892,
0x00001ff1,
0xa3d000db,
0x50a087f7,
0x4107f14f,
0x5800b862,
0x689a6ffb,
0x683fe00f,
0xff3dc178,
0x41bec46f,
0x39316807,
0x41ffea8d,
0xdefb9a40,
0x00231f25,
0xffc66a7f,
0x4ce0ff75,
0xe4937806,
0x513fff7e,
0xb101de40,
0x3000e7af,
0x990777e8,
0x34871bde,
0xb101de40,
0x3000e7af,
0x990777e8,
0x34871bde,
0xec201e50,
0x16808467,
0x7b9c81bd,
0x0000e23b,
0x3110aff6,
0x0e578070,
0xb0f36c1f,
0x36417780,
0xfb2416e9,
0x0291849f,
0x73bf67f2,
0x3c7fd370,
0xbffc366f,
0x7dfa7dfe,
0x1732b6b6,
0x6404ffe2,
0xd8400144,
0x6cdf0f22,
0x7b589018,
0x7026c2b0,
0xfde5043f,
0x04be0bb7,
0xa7cb530c,
0x3f082ee7,
0xff1c377f,
0x499be20f,
0xf95975a0,
0x1e1f20bf,
0x543c3548,
0x34ff93f9,
0xdb63f8d8,
0x090499f2,
0xf84d205d,
0x49e6fee3,
0xb644eda6,
0x713bdee7,
0x636f8d0d,
0x0fdfe078,
0x069f7689,
0x1901488f,
0x70027fe8,
0x7f960dee,
0xb04cbfe6,
0x1b40304b,
0xdb528166,
0x06c098ba,
0xe027ff4b,
0x4fd90de1,
0x7b997a76,
0x20a11d90,
0x035fd201,
0x043c9eff,
0x0923248a,
0x3ddaa460,
0x33f04bfb,
0x5104e006,
0x99639c36,
0x20bedc20,
0xd7265ec6,
0x7ec3e12e,
0x36e33fff,
0x26011580,
0x80109b76,
0x43c02d99,
0x777eec08,
0x03c01606,
0xdfe3ed6d,
0x2ff8cd02,
0xe7ff28e4,
0x3db4120d,
0x45104f48,
0x3f308030,
0xe7ff28e4,
0x3db4120d,
0x45104f48,
0x3f308030,
0x43dffef6,
0x004fa1c2,
0x5d21e106,
0x05ac2063,
0x76016803,
0x3f8fff41,
0x23fd980c,
0x5a39e66b,
0xdffb61fe,
0x526d1696,
0xb991be41,
0x7ea248fd,
0x37f10a13,
0x79379b8d,
0xd40c9ee8,
0x7c994b34,
0x711166f1,
0x3fc3eef0,
0x2696bcf6,
0x36a16da2,
0x8156402a,
0x784d8000,
0xf4116dfb,
0x5bc9fb0f,
0xf890093c,
0x773e6726,
0x132cb77f,
0x22f05bc4,
0xff9fb736,
0x0bc92cb7,
0x23fec87b,
0x15991a4f,
0xf8ac4952,
0x10548c90,
0x94eac9b4,
0x76cb6fe7,
0xc273938f,
0x4e8ce875,
0x204ff2ff,
0x3189167d,
0xf2c1e81f,
0x0bbf607d,
0xd6247cc9,
0x100b1be6,
0xab2ff043,
0x4d1c1abd,
0xa61016c1,
0x59d90dbf,
0xa2000cce,
0x17fffb4b,
0xe79469a0,
0x531007c3,
0x17776052,
0x170e8fff,
0x06310300,
0x0bd85ffe,
0x816bffe9,
0x53477680,
0x273c01a6,
0x0397bfc8,
0x00609f25,
0x7f17cee4,
0xfff46a81,
0x6ffc8fc3,
0x03fefc00,
0x4103f680,
0xc3fca05f,
0x3ef3876f,
0xd0a08f43,
0x12e09bcf,
0xb8812d2d,
0x02301500,
0xd0a08f43,
0x12e09bcf,
0xb8812d2d,
0x02301500,
0x272c1201,
0x5dfa0408,
0x34c1b006,
0x0b7d332a,
0x817e6580,
0x09201eba,
0xef6009c9,
0x0925f447,
0x7ba419cb,
0x14900801,
0xb6c2fa4c,
0x6d79205d,
0x86df5e04,
0x496d9a10,
0xa7241edd,
0x16006db9,
0xf91fc1ff,
0x36006bcd,
0x142d3d01,
0x6b8e8a2d,
0x5c0c4787,
0x5dc08644,
0x790e7d39,
0x705ee04f,
0x07ff0706,
0x71e000b2,
0xfe41e888,
0x7c0ca1f3,
0xfe644d3f,
0x721f1971,
0x04016747,
0x4dfd082f,
0xdc00546b,
0x0ff9f647,
0xe806dbf0,
0x55993133,
0x5f64f813,
0x6c35f4b2,
0x5c03f84b,
0x7cbc0ade,
0xdebb1400,
0x48349092,
0x45d40ccb,
0x17f17c02,
0x3b3f86ef,
0x12741dd0,
0x332c8b9a,
0x0db4e06b,
0x9d2801a7,
0x0d001a30,
0xd0807aeb,
0x40a66acf,
0xb762e92c,
0x09033ef2,
0x13270475,
0x707fe796,
0x42842fc8,
0x6072170f,
0xeaff060d,
0x7e00a849,
0x19ac17e6,
0x160c0ff0,
0x49600f70,
0x2ff48ef2,
0x68b28676,
0x4f44a69d,
0xa3c88601,
0x05fccc04,
0x000bd990,
0x7d3bf37e,
0x749e46e8,
0x0363046e,
0xfa7e08ff,
0x043e260f,
0x06fd6b5f,
0x13c63378,
0xfa7e08ff,
0x043e260f,
0x06fd6b5f,
0x13c63378,
0x943bff82,
0x416206d0,
0x03fc7bf7,
0x756c1e3a,
0x3103fdfd,
0x681ae807,
0xc4c01a69,
0x73cfefa2,
0x7c1f0ebf,
0x39c11c92,
0x8f4bc7f7,
0x1f5f7dca,
0x0607fe17,
0x5e4813f4,
0x5f87ff09,
0x01fbe7f0,
0x26627869,
0x07f0d601,
0xa9ff411b,
0x1f823d61,
0x317c6000,
0x5fcfdd60,
0x3fef69ff,
0x103816eb,
0xa5fef740,
0x62fc82cf,
0x026c01f7,
0x7482007f,
0x2d10006f,
0x35ade1b2,
0x237f4404,
0x3392e05e,
0xfd2c31e4,
0x42c1a712,
0x41fe2ba7,
0x04900b7a,
0x40278e20,
0x67322208,
0x89140bb6,
0x5db2b020,
0x60546c5f,
0x7fc00c12,
0xf56f1200,
0x7e9de237,
0xfefaf9ff,
0x36ad320d,
0x7fd12006,
0x2794e1be,
0xa36e6927,
0x1829ed5d,
0x7873fc03,
0x68211765,
0xd8256949,
0x7d08bb43,
0x892f9a01,
0x590e11b2,
0x5a404e7f,
0x100c1c0e,
0x12027d7f,
0x167f0951,
0x80800180,
0x04ba03b5,
0xbfffb046,
0x6677edf9,
0x2690d17c,
0x1affb600,
0x3e838dff,
0x05770b60,
0x13e3240b,
0x4b08481c,
0x71fffff8,
0x49f46405,
0x13e3240b,
0x4b08481c,
0x71fffff8,
0x49f46405,
0x84de11cf,
0x1abe9f94,
0x105de900,
0x49cbd964,
0x27e735c0,
0x24073021,
0x83f0fcf8,
0x118a4d9c,
0x9def6776,
0x09b49e2d,
0xbb49f142,
0x3f8f3d2b,
0x049911f8,
0x4a3c3351,
0x99c925bf,
0x45180b8d,
0x367dcd3a,
0x263c2ffc,
0xfe007221,
0x54659f67,
0xf683c0ae,
0x325b9fff,
0xc819ad3f,
0x06200f7f,
0x00889b42,
0x542148c8,
0x30fc113f,
0x48c1e1e8,
0xf96693fc,
0x7fbfe203,
0x0faabd03,
0x0216f71b,
0x81faa1f2,
0x539b8704,
0x84c39c92,
0x37e67d50,
0xc01cb21f,
0x080012d9,
0xadb86e1d,
0x54f999cf,
0x31f101a1,
0x07c52516,
0xb83c066d,
0x20d92f81,
0x7ccf05ba,
0x411b785e,
0xbbe5dffe,
0x6d367c30,
0xb2cc7c7a,
0x740607ee,
0xfeea54a8,
0x12c00493,
0xc9d89b3e,
0x04dbcf97,
0xdf640c10,
0x788099ed,
0x641a4e47,
0x7a450df1,
0x936cdecf,
0x5f7fdf81,
0x48dbfa0f,
0x2c3a7fa6,
0x17fb7cfe,
0x064fd590,
0x2f94469f,
0x7ff8a42d,
0x6e897fb6,
0x1ffc1782,
0xb8c300f1,
0x3ff7018d,
0xd87bf642,
0x5f07e566,
0xb8c300f1,
0x3ff7018d,
0xd87bf642,
0x5f07e566,
0xe927f3ff,
0x5c1e09b0,
0xc4ec9000,
0x244d000e,
0x109ffbf0,
0x4b1912f2,
0x335e5fc0,
0x41da8d80,
0x00f8adc1,
0x3b3fe560,
0xf8dfc06b,
0x6e4973eb,
0xa4821c97,
0x00fc805f,
0x38049a26,
0x5bc1fffd,
0x913de937,
0x70205e8c,
0x989d99fb,
0x73acfe00,
0x906fdb5b,
0x71881f87,
0xc1301fa6,
0x3dbfe0f4,
0xc1003e03,
0x61bb3ed4,
0x0e90165b,
0x7ac09f80,
0xf1d0e134,
0x40c86379,
0xf88507fe,
0x01dae000,
0xe9fe9427,
0x727c4262,
0x9320605a,
0x7768036c,
0xac4cbc11,
0x6e2c8082,
0x200c5fec,
0x04c11e56,
0xfbfc83e0,
0x08151a47,
0x24bdc105,
0x1a788e7e,
0xe8074834,
0x723f0ff5,
0x3b00dad4,
0x200cb00f,
0x6ffa4edb,
0x17d80bf6,
0xb4047ff0,
0x1f39a7fe,
0x6300160e,
0x00256f80,
0xeefe0022,
0x3e04fa0f,
0xa01fafc1,
0x708b8379,
0x37f99326,
0x07e46d8f,
0x0e86810a,
0x7d84e069,
0x7bfbea00,
0x7f882196,
0xb79b803e,
0x007b1fef,
0x3fb3fa06,
0x59b1fad2,
0x46138088,
0x02408276,
0xbee3ec3f,
0x6d7beec3,
0x46138088,
0x02408276,
0xbee3ec3f,
0x6d7beec3,
0x38b9bd13,
0x03096139,
0xcd7d805c,
0x7df8ff8b,
0x813e6186,
0x1ea905fd,
0x08c159a6,
0x04c18dc0,
0xaf2ef63d,
0x583bfbe5,
0x16696498,
0x3ef6a762,
0x2783fe18,
0x04ed1172,
0x9bc38939,
0x4eeff7b1,
0x07c9e7b5,
0x050302b9,
0x186ebe3d,
0x01dfda40,
0x30017f5b,
0x01e0c370,
0x4d21901a,
0x079097f6,
0x9722f3ec,
0x0e3fffc0,
0xea67fdb2,
0x16811e47,
0xdb6089b9,
0x1222fc02,
0x86057066,
0x365b926d,
0x20019a4c,
0x361bd233,
0xd8ec0042,
0x05d0e2f6,
0xdd4153d9,
0x01fe858f,
0x456d08f9,
0x14d7fe13,
0x3ae28939,
0x4f373401,
0x2936ff02,
0x723995e0,
0xc2748219,
0x4f990ec5,
0x87d0bc24,
0x0b0fbf48,
0xf6916ddf,
0x27e2e277,
0xfed662b0,
0x2ea0cdc7,
0xea5c0e27,
0x6004db6e,
0x4697b97f,
0x6c40ee7f,
0xd81e6501,
0x79c0e11e,
0x37736efd,
0x7181183f,
0xc9d364fd,
0x0e8b049f,
0x0641bc7b,
0x038feeb6,
0x765813ba,
0x758f6986,
0x7c924288,
0x4123efb6,
0x1b7db397,
0x0ed75344,
0x85e5f1d9,
0x4cfee01f,
0xb1f5977c,
0x5693340b,
0xd4df75e4,
0x3f78cdbe,
0xb1f5977c,
0x5693340b,
0xd4df75e4,
0x3f78cdbe,
0x566bf0d0,
0x13c66cd2,
0xc62bfa48,
0x548f90e6,
0xd92defa6,
0x100179d1,
0xd16007e2,
0x3b7d605f,
0x1119fc9b,
0x0efcb162,
0x51399397,
0x61a4104a,
0xd600fae8,
0x224fe4ff,
0x79e2e02c,
0x2ed8db0b,
0x57b04332,
0x37122a7e,
0xc6fc6424,
0x31e098ff,
0xd4866fb6,
0x18f6336f,
0x93b43f52,
0x0860034f,
0xba60dc5b,
0x00b7797f,
0x643f1abd,
0x5299ef8c,
0xe5f2ce43,
0x35840e5b,
0xeade9432,
0x323acbff,
0x8ea74f20,
0x11249b6e,
0x1b7ffb92,
0x0fbae7f0,
0x37ac620c,
0x10a172df,
0xa023d67a,
0x0927d5b8,
0x83125449,
0x5afffd1e,
0xa2a65a30,
0x024fe009,
0xdb60321a,
0x7068b5a0,
0xc0feaefb,
0x7ac13db3,
0xbfd1f431,
0x7fedd48f,
0xb1065619,
0x0fae45ef,
0xdd0c9b7d,
0x2dafd017,
0x96cd7924,
0x6499c1a0,
0x41e309fa,
0x0a0821aa,
0x1ffdb7f2,
0x084489bf,
0xbedb6d14,
0x169345bf,
0x510c740a,
0x1d730492,
0x6004cd49,
0x78b7ed70,
0xc6c04dec,
0x76413f62,
0xf924b760,
0x535bf480,
0xf063c928,
0x001a00b9,
0xf924b760,
0x535bf480,
0xf063c928,
0x001a00b9,
0xf411838a,
0x43781f0f,
0x6bfd29b9,
0x0001ea6e,
0x065fff36,
0x68f00d8d,
0x48c56cf7,
0x61881c16,
0x00006259,
0x3ffc1f9d,
0x0cfffe0d,
0x0dcbc163,
0x277ca2bf,
0x57c91df9,
0xf47b484f,
0x06b3fa37,
0x1017b3fe,
0x2d800df0,
0xc20ffc07,
0x26f8ea44,
0xc01a7c03,
0x1ee0c61e,
0xfb6ec080,
0x603dedfb,
0x0205999f,
0x40126ff3,
0xf36b7e5b,
0x31d7fff9,
0xc6941201,
0x01c221a6,
0xc08ca210,
0x4036f091,
0x25bf3eff,
0x47fac13d,
0x433f821b,
0x4901fe05,
0x5fe1b6a4,
0x2d231b58,
0x670175fb,
0x363f7d1a,
0xfffccfb7,
0x6217fe26,
0xfecfc900,
0x3057e040,
0xffd83000,
0x4dfec13f,
0xfd327fdf,
0x60020fff,
0xbc984d2a,
0x7f25ad39,
0xc131b601,
0x276832c6,
0x4e03bcbf,
0x22f81e7f,
0x45fc44c0,
0x08800002,
0xfbfce0fb,
0x25201fff,
0x90cffad2,
0x00081ff4,
0x00fe4003,
0x1a265ff8,
0x01248011,
0x001a086c,
0x27c09390,
0x08506c50,
0xc20a7f80,
0x7e98320f,
0xf848020c,
0x04053c89,
0x70cf284c,
0x682c8ff1,
0xf848020c,
0x04053c89,
0x70cf284c,
0x682c8ff1,
0xbb6fc1ff,
0x7f97e89a,
0x2cbcdf2d,
0x027a9499,
0x59fdd3d9,
0x53eb5dfe,
0x54c49249,
0x59f813a0,
0x0733f9ff,
0x3ffb77f6,
0xefe70825,
0x01f822b4,
0x00305609,
0x4db6d3a8,
0x3f88214d,
0x4122799a,
0xdc2a48e9,
0x3ef434d4,
0xd927da78,
0x416dd368,
0x92068a04,
0x458412c8,
0xde42c7e6,
0x403fd6d6,
0x083f67fb,
0x3640313b,
0x885d9304,
0x482006d6,
0x2b63a5f7,
0x7efcd3f6,
0x6903655b,
0x256d22f8,
0x9d826fa2,
0x24c21ff2,
0x2ffcc605,
0x0f411211,
0xbc2c73db,
0x7fdb630d,
0xf2bd826b,
0x383c2011,
0xccfe7da2,
0x49657e0e,
0x14be5326,
0x5e5a77e0,
0x165ff730,
0x7666f242,
0xca6faf25,
0x3562f66a,
0x8e418f03,
0x48cca557,
0xd171d379,
0x083f324f,
0x4cbe51bf,
0x0d8239c6,
0x336ff666,
0x5a021584,
0x7b0152d9,
0x5fe77feb,
0xb7212659,
0x786dbff9,
0xd9266124,
0x31481fbf,
0x27820088,
0x22f51480,
0xcdb66fdb,
0x300814cb,
0x04904f44,
0x035ad4de,
0xf980404b,
0x2dfbe7df,
0x06a7bdef,
0x58803b4b,
0xff92fbbe,
0x5b18a6ad,
0x73804824,
0x25480407,
0xff92fbbe,
0x5b18a6ad,
0x73804824,
0x25480407,
0x61db4a60,
0x004940bf,
0x27ffff20,
0x2fc004f0,
0xc126e9c0,
0x013fffef,
0x412769fd,
0x7eeef07e,
0xebd16967,
0x1b8de981,
0x532360c8,
0x01a14776,
0xf12fcdb3,
0x008ddd5f,
0x2453f45a,
0x20fc3e92,
0x66780049,
0x498a1779,
0xf3bffde2,
0x4924bc46,
0x23e2f440,
0x1fad8500,
0x2327cfff,
0x12c02fd1,
0x3caefe77,
0x16c006c1,
0xf880ae44,
0x6fc0ccb5,
0xd900cc4d,
0x01fb46d2,
0x312ed0f6,
0x27fea1d1,
0x65b98000,
0x7d180200,
0xbb6e9446,
0x483f1625,
0x3601fffd,
0x7f088fe0,
0xb7db6946,
0x10060415,
0xb02c00e2,
0x76dfc293,
0x02f894c0,
0x145e29b8,
0xbff37e57,
0x2bc1c005,
0xa0903ff6,
0x5ec8dbad,
0xbfffc3b6,
0x481ec801,
0xb4d29376,
0x0b1b6007,
0x4fbe4428,
0x713eae5a,
0x0bfdc430,
0x012ee23a,
0x397881f8,
0x11c9e099,
0xd7c168f6,
0x3fe801b8,
0x34901740,
0x368cde0f,
0x465093f9,
0x7faaa302,
0xde07fe00,
0x47c01ce9,
0xe1ec8a41,
0x3e98e3fb,
0xbf348808,
0x3cafc287,
0x6b65ee04,
0x24634f64,
0xbf348808,
0x3cafc287,
0x6b65ee04,
0x24634f64,
0x9fcedf19,
0x64198df0,
0x01b938b3,
0x0782813e,
0x483d2b6e,
0x6829aa60,
0xfb721ecd,
0x030c5274,
0xf93e6159,
0x7f18b971,
0x4c8b8060,
0x6a66522c,
0x7b111c6e,
0x7264da46,
0x6f6360c1,
0x1b1ac8ce,
0x45cbf3bc,
0x6e7f8b39,
0x7a759866,
0x7986c0de,
0xdc65dabd,
0x57205276,
0x2610767a,
0x6397147e,
0x57077531,
0x27b90ac0,
0xc77a893c,
0x32767b0f,
0x29878b6f,
0x4b64f2d8,
0x207e4318,
0x7323dd9a,
0x493f07c8,
0x13fbf48b,
0xf0f8985d,
0x031b3f86,
0xfa7a4d24,
0x6be263fb,
0x33107647,
0x009f6c01,
0x79751fa5,
0x785bd854,
0x9a9d3a6f,
0x6917fe69,
0x897c97c0,
0x569b64f9,
0x0b67c838,
0x495968ee,
0x44d9b022,
0x00db70f2,
0xcfd1c6b3,
0x29978ebe,
0x57448e64,
0x53660660,
0x6265d181,
0x4980cf2f,
0x10984e2c,
0x7933c430,
0x07db5a08,
0x6f837f68,
0xa445a9c1,
0x6776eeeb,
0x401000e6,
0x1eca13cd,
0x633e501f,
0x4de600a1,
0x9f5d3681,
0x0179ffba,
0x37d0910c,
0x4b309f9d,
0xe1d3daf4,
0x2237efb6,
0x37d0910c,
0x4b309f9d,
0xe1d3daf4,
0x2237efb6,
0xc16ec1b7,
0x57981fa2,
0xb8099f3b,
0x763e5f33,
0xb0928dd6,
0x09a91d67,
0xff004a69,
0x704b066f,
0x17626dea,
0x05a6e720,
0xf06cd5a4,
0x508f2a7f,
0xf72bdf50,
0x00c3c91f,
0x184e89d1,
0x145bf649,
0x959000b6,
0x3e42a60f,
0xfcfbefc2,
0x01be048e,
0x93d96f7b,
0x04eeffc8,
0xcd83f8c9,
0x6dfedb03,
0x96f0b7d1,
0x3928d77a,
0x06723906,
0x003f642a,
0x39d30dfa,
0x683ff3a1,
0xf4cc7ffe,
0x367ff4bd,
0x7bd81ff2,
0x50001fe6,
0xf3679a3b,
0x0b803c73,
0x42007e90,
0x0fc01a72,
0xb7a3fe39,
0x74006270,
0x96189768,
0x490b65f1,
0xec58f020,
0x3ae02f08,
0x1724601e,
0x40f6efbe,
0x037664f8,
0x4fa7c5a6,
0x37d36fda,
0x7ccb5ff2,
0x3f0e2613,
0x678914fc,
0x8701920f,
0x10ff3200,
0x8439b85f,
0x60afc201,
0xc9ceae4c,
0x020afff2,
0x90a2810c,
0x05c37c2b,
0x21c00827,
0x5c16c080,
0x44835736,
0x4caa5cf2,
0xc4a4b1f6,
0x4a85c119,
0xd952d210,
0x5f83e307,
0xc41f69db,
0x35a46007,
0xfc284eca,
0x347a0f7f,
0xc41f69db,
0x35a46007,
0xfc284eca,
0x347a0f7f,
0xdb257303,
0x3a0b6d1b,
0x315a5ee1,
0x403413e3,
0x7ed0ffef,
0x744007f8,
0x03919389,
0x6cc20f82,
0xcb033b7d,
0x088a77b2,
0x18c19337,
0x3f432b6c,
0xb8277edf,
0x000a1d0d,
0xaf316eb4,
0x4ce7d585,
0xf518be3f,
0x6cc361ed,
0xbbc27120,
0x6d36d1a1,
0xdbf905fe,
0x592a7a69,
0x00036df8,
0x7e1cafb0,
0x45fba999,
0x7683b032,
0x9ffd12cf,
0x4c83100c,
0xf4d9913b,
0x3faff049,
0xb7c2ed45,
0x3cd20b3f,
0xbf3ad2b0,
0x5cd663f5,
0xf04081da,
0x226f6f70,
0x487d3310,
0x4cbb1442,
0x0778be3f,
0x76663db2,
0xe00283bf,
0x6527bda8,
0x8ed42d3a,
0x493cfddb,
0xd8848441,
0x50bf2b6e,
0x9f7d93ff,
0x7fffe926,
0x9387fedb,
0x34c08991,
0xcf3d97f2,
0x2cff2b2e,
0xb2d8c889,
0x2fe4037e,
0x68009248,
0x49cc1d82,
0xd2fc35e2,
0x3036c40f,
0xebf9ff9e,
0x0fde1249,
0xddc37f97,
0x003fb76c,
0x24cb3ee2,
0x3957f100,
0x8de23349,
0x464d0d75,
0xfffdb7ff,
0x20189e91,
0x4927b53b,
0x01e7f240,
0x5ddfbc80,
0x2837cbc6,
0x07e7b12c,
0x422400f0,
0x5e9ef6bf,
0x060be1be,
0x07e7b12c,
0x422400f0,
0x5e9ef6bf,
0x060be1be,
0xf6ec6c64,
0x09be99c2,
0x7f7b7c7c,
0x6eafe88f,
0x000072ff,
0x4da07054,
0x4c0bde03,
0x489bcd20,
0xca5e4c7b,
0x36d29fd2,
0x4448fdd8,
0x36480086,
0xc8fc02df,
0x6036fda2,
0x68f88013,
0x7db69c01,
0x4c03bf93,
0x2ee35379,
0xf8934e1b,
0x6881b37d,
0x036f2736,
0x261f2461,
0xf3e3ffd3,
0x4a3b0208,
0xb6c001db,
0x7e3f086d,
0x080c35a4,
0x00cfed90,
0x2201b680,
0x7f8923b8,
0x24d01910,
0x34b98041,
0x879fc040,
0x40321dfd,
0xd000481e,
0x7f8ca10f,
0xe1244de9,
0x7fe4dc80,
0xc253fe1f,
0x09400246,
0x27ef6408,
0x76201381,
0x43240062,
0x7ddefc82,
0x365fa0db,
0x2eb00dfb,
0x096c7c88,
0x7036ffcc,
0x0aa2ef33,
0x6fcc1102,
0xc40333af,
0x66e585b8,
0xd943f21f,
0x09988da6,
0x506bfe07,
0x3fbe8f03,
0xce9b6d00,
0x10890d86,
0x4bcff804,
0x0d801f82,
0x201d9a04,
0x503efc91,
0x17e3b600,
0x09000d90,
0x21022003,
0x003e44bb,
0x78994013,
0x104837fe,
0x296c13fa,
0x37f093b0,
0x3f63f77e,
0x7d1fd7e6,
0x296c13fa,
0x37f093b0,
0x3f63f77e,
0x7d1fd7e6,
0xf6f180c8,
0x6976a2b3,
0xf8b1ffb8,
0x7c9f134e,
0xec837fbb,
0x04fc898d,
0x843c0894,
0x00829e2d,
0xa391b6e8,
0x10bd8fb9,
0x7b24289f,
0x67dbe596,
0x53420f92,
0x768b54b2,
0xe7f6e222,
0x4b34a4fd,
0x0ee41784,
0x73401bbc,
0x41214b81,
0x17ec9201,
0xddfdbbd8,
0x681d8f48,
0x23837a9b,
0x79d88152,
0x87d3ff3f,
0x7ca908c2,
0xfcff158e,
0x1006edb0,
0xc3fc74db,
0x5222e045,
0x6600b09b,
0x4204c27f,
0xeeb26e26,
0x69f1137d,
0xf501b281,
0x26f213c0,
0x085359b1,
0x12326f44,
0xf1ec139b,
0x35049085,
0xc76c996d,
0x2d709f96,
0xb7b74a06,
0x6d200148,
0xbb208fac,
0x00a7e814,
0xa8c54080,
0x7d148001,
0x26173715,
0x12407030,
0x20fc881b,
0x2134031e,
0xc47dbf04,
0x4863501c,
0x104011b4,
0x721d9cc1,
0xf1a7279a,
0x745fb0de,
0xeec802fc,
0x374ad8c6,
0x24135932,
0x056bf1fc,
0x791e1b8a,
0x3e56a99e,
0xf26580fe,
0x20318019,
0x459b0c0e,
0x4b5da370,
0xbed3924b,
0x10096c81,
0xd82dedd8,
0x0f775c2d,
0xbed3924b,
0x10096c81,
0xd82dedd8,
0x0f775c2d,
0x8483fe80,
0x0013d41d,
0xfad0102f,
0x4fe00fb5,
0x04dee0c3,
0x7e37a7bf,
0x40116e3a,
0x6fc77dde,
0xfe671b8c,
0x6ec181cd,
0xcc0394b6,
0x67cbffff,
0x25bd76df,
0x60000f92,
0x5b03feff,
0x2f7370e0,
0xa724044e,
0x42de0dee,
0x86fc12ad,
0x35ffb3fb,
0xd6f731ff,
0x37cb7f15,
0xf80274b2,
0x1638ea9f,
0x42a04f93,
0x7eb7fa98,
0x8efdedbf,
0x6e7e0070,
0xa8547639,
0x516fb861,
0xde0c6c4b,
0x3e101ffd,
0xc5ee7edf,
0x07ffec9f,
0xb9f76619,
0x7951110d,
0xbce76fdc,
0x30311720,
0xf85267b8,
0x5ecd07e0,
0xfff0660b,
0x44d7fd89,
0xb7f3d8c0,
0x61dfcf2f,
0x300b1066,
0x4d9453df,
0xdd1e4145,
0x3ff35f65,
0xdcfbf200,
0x70017f9d,
0x007e0a04,
0x7e908060,
0x069db709,
0x743fe040,
0xfc431d28,
0x17009781,
0xe2a70004,
0x06a61039,
0x800c0a6f,
0x42253c8c,
0xdb029fff,
0x2d7ffc5e,
0x901c2f33,
0x3be5ff0b,
0xc7fc0c48,
0x7fce1f8c,
0x27cfe5f8,
0x6eafffd4,
0x310a26bf,
0x3137bcd0,
0x58db901d,
0x7e8ef9ff,
0xfffdb7df,
0x69e8cb26,
0x38689ff7,
0x49a75819,
0xfffdb7df,
0x69e8cb26,
0x38689ff7,
0x49a75819,
0xf13d2f92,
0x0254cfdd,
0x02112948,
0x10a34abc,
0x4e4af9f2,
0x601616ea,
0xd86a0937,
0x6ff6db4e,
0x417cf18f,
0x7cad392d,
0x4a6d7adc,
0x294839e0,
0x80dec5f0,
0x49301ba4,
0x7bacf59f,
0x7817f172,
0x6260488c,
0x0d846b30,
0x87fe94a4,
0x05f6c048,
0x25f9bffe,
0x121be0ba,
0x27f0beeb,
0x40240feb,
0xa0916db9,
0x3cc99b6b,
0x827d6992,
0x09bd0bac,
0x079491cf,
0x3237deec,
0xda6e747e,
0x482fde4a,
0xde6f485f,
0x39440980,
0xf87f7e49,
0x7f698031,
0xdd8f7fb0,
0x32461164,
0xddd001bb,
0x590d5fdb,
0x2437429f,
0x27930f88,
0xa6fd2681,
0x7e864fd7,
0xd3f2f1d1,
0x24f6f802,
0xf0036f26,
0x4b1b4c83,
0xd101f90f,
0x7b5351d4,
0x7fd3365b,
0x347b2800,
0xab6c881b,
0x5c091689,
0xf97f3ead,
0x5b36892f,
0x52f3f696,
0x19101d71,
0x018c4446,
0x59ba4e8c,
0x069093dd,
0x5b2fd359,
0x05f00d05,
0x21dbbb84,
0xa132e9fc,
0x73b92d89,
0x6f229136,
0x041bfe09,
0xfff0161b,
0x02f49043,
0xe100039f,
0x3244cc9e,
0xfff0161b,
0x02f49043,
0xe100039f,
0x3244cc9e,
0xd9646300,
0x1b804240,
0x5f666e17,
0x7e139da2,
0x37ff285a,
0x6a0003a1,
0x000368bf,
0x06f7020e,
0x1b6fffa4,
0x167527fc,
0xe5e100c0,
0x7f291eaf,
0x4be180e7,
0x07dbed82,
0xd6fa5e79,
0x006ed85f,
0xeb0dbc08,
0x19e427ef,
0xa00f8e5b,
0x5ddf7c9d,
0x281f072f,
0x1fb8ef90,
0xbffd860f,
0x7104fc0c,
0xdf50564e,
0x4b3d9d82,
0xf80bf9ff,
0x135d9092,
0x4038f837,
0x763edf47,
0x418bf8a0,
0x0123836f,
0x6732e097,
0x123fe0a6,
0x08363f10,
0x4dff5bf0,
0x580021ee,
0x37370004,
0x209eb5e4,
0x67ba6000,
0x07e248a2,
0x0c52e7b2,
0x41032fb1,
0x0b0b7302,
0x39bf7c34,
0x1389293c,
0xc0000301,
0x7b257e7f,
0x1f60007f,
0x7d80b340,
0x833df5e4,
0x6df00840,
0xb843bcc5,
0x4f80e0f2,
0xe01401fd,
0x41cfdf61,
0xff030040,
0x06cf4ef0,
0xfa6ffc0b,
0x7766f66f,
0xe8fc761d,
0x3427a22f,
0xf249053f,
0x7b0be3ed,
0x3a7c69df,
0x07c1af70,
0x8fffd058,
0x7e2a804e,
0xffa05dfe,
0x53c78ff7,
0x35679b36,
0x47f0d9dd,
0xffa05dfe,
0x53c78ff7,
0x35679b36,
0x47f0d9dd,
0xf027395c,
0x5fd100af,
0xba7c2632,
0x37fcc088,
0xdc11583e,
0x1141437e,
0xdffa0626,
0x1b85d842,
0xdf684697,
0x3fba9385,
0xf84b7e81,
0x13e132e6,
0x1ec3b92d,
0x48aef58e,
0x01008ff5,
0x753c1fed,
0x84bbdb21,
0x3f92521e,
0xcce812e2,
0x475f64d9,
0x7e6f3e53,
0x7d104f11,
0xfe81d326,
0x0f2c5dcd,
0xa203e419,
0x7115b031,
0xc2019f58,
0x682721fb,
0x96f23b70,
0x4112633e,
0x814d866c,
0x0ede037c,
0xcffb07fd,
0x5ffb4cb6,
0xe02590e2,
0x7365387c,
0x556e2cf2,
0x314eede9,
0x6774d761,
0x61361320,
0xb5e98c45,
0x5c407a65,
0xc67bb20d,
0x785ef6da,
0xffe811bf,
0x4fe1d5bf,
0xfe24513c,
0x0d653985,
0x9fbb25ab,
0x6acd5f37,
0x0a5fb077,
0x2a01227a,
0x9b302383,
0x4cc06db2,
0x73b8102e,
0x7b009377,
0x2129b584,
0x5d80380b,
0xc6699efb,
0x7fd68ff7,
0x07f896bc,
0x401dc93b,
0x7c1061bf,
0x00db1cbf,
0x47fd05db,
0x12c0a090,
0x12803e33,
0x0debd22d,
0xf8e16c09,
0x1e24720f,
0xd19fe3eb,
0x14fdfbf6,
0xf8e16c09,
0x1e24720f,
0xd19fe3eb,
0x14fdfbf6,
0x41e90d33,
0x04d6883e,
0x9d307eb5,
0x22d98370,
0x03eab817,
0x40cade0e,
0xb7f1dfef,
0x3a096379,
0xc7446db0,
0x1e76ff79,
0x7a1b5fb5,
0x61913643,
0x581c9e6c,
0x40c61f4a,
0xdfd172c9,
0x7b3c040e,
0x86b24c37,
0x3d3382e6,
0x804832f5,
0x2dbfe36e,
0x81234132,
0x361bec26,
0x3cf5eedc,
0x26cc0cf0,
0xddde982e,
0x593df2fe,
0x950e49ff,
0x0f44e26e,
0xf35cb380,
0x043ee6f7,
0x9a184700,
0x0faa7093,
0xe3d97b0d,
0x03cafc80,
0x102161d4,
0x70ad0042,
0x5f61cbb3,
0x001d6bdb,
0xdc93b388,
0x2d9be8f6,
0x0151f603,
0x02951fe3,
0x025fb1f9,
0x4f4dfcb9,
0xfc099223,
0x4c7ffe97,
0x01b0c964,
0x711bfdcf,
0x2517cb80,
0x199007e0,
0xae32cc04,
0x51b44270,
0x031de6c0,
0x301f6c95,
0x78ad8747,
0x5e7e997a,
0xbb307ecd,
0x16086cb4,
0x4895902f,
0x5ec8e208,
0x4bc13643,
0x67969e4c,
0xba379477,
0x3f711e6d,
0x878db5e4,
0x09372b54,
0x1fffb2d9,
0x09e7d550,
0xf42c8a6c,
0x605aeb55,
0xe3f07899,
0x0b3e8371,
0xe1f41d2e,
0x25826b3b,
0x800f81b3,
0x3c97409d,
0xe1f41d2e,
0x25826b3b,
0x800f81b3,
0x3c97409d,
0x06903f6d,
0x46c4b4b9,
0xe94ffc7b,
0x680778bb,
0x21b84de6,
0x0ccd6376,
0x21a3f600,
0x4a3e12e1,
0x6ec0e21e,
0x4c11c3b9,
0xbd3ce24b,
0x54f92b3b,
0x5efd56af,
0x16f49304,
0x5aa3097f,
0x7428df0c,
0x937d8224,
0x6249000f,
0x8b067ca3,
0x67dca1b7,
0xa4d47676,
0x5f24e3fb,
0x84852fa0,
0x764d6ffb,
0xd90cb577,
0x01e872be,
0x388a6fe9,
0x0ec41a1d,
0xb0c1e2ae,
0x4886cf20,
0x8603e1e8,
0x501d649f,
0xe9e580e4,
0x30b66edc,
0x2d6f7e17,
0x7076c430,
0x6fd1af6c,
0x06e17cbf,
0x5bd24158,
0x259bc498,
0x1ee5e12f,
0x44cb2c1e,
0xff2002f4,
0x78c0e7c7,
0x150f6cb4,
0x75e07819,
0x77835e3f,
0x7d9b6483,
0x07fe459e,
0x4fdbd59d,
0xe76ec36f,
0x7c4e9a27,
0x8adffbe5,
0x6e95f430,
0x5b94c1d9,
0x7093fa3f,
0x8728817a,
0x34c7facd,
0x2cea2840,
0x465d2307,
0x0a03fe77,
0x0209e230,
0x7adfe05b,
0x636f1209,
0x048ceadf,
0x12541377,
0xd756d5b0,
0x6ef96b17,
0x15ef06e7,
0x4ad366be,
0x68924789,
0x671e04c6,
0x15ef06e7,
0x4ad366be,
0x68924789,
0x671e04c6,
0x54dbfd2c,
0x332ea987,
0x0c301011,
0x41375921,
0xfb00d9d3,
0x7475dd8f,
0xd35a7d0f,
0x27bb7812,
0xfffa7fdf,
0x40fb0106,
0x7cf3c93d,
0x75934c38,
0x7b6579c3,
0x4b75e21d,
0x0d2687cb,
0x6c39623e,
0x30ca7ff2,
0x715e7363,
0x85a96749,
0x41452ff4,
0x2b047cbe,
0x727da1e1,
0x3e40f06d,
0x48053ed8,
0xf7605088,
0x1b403b0a,
0x5102ddbf,
0x09fe03f2,
0xf89bcbfa,
0x09f1f991,
0x90f27e3f,
0x6d6d3f0e,
0xf5b96bdb,
0x30f09253,
0xb5b3e12f,
0x6db7e744,
0xffe7ba4f,
0x45213c0d,
0x604b36dc,
0x210a227b,
0x86932240,
0x6c2c84fc,
0x947cf46b,
0x00013f4d,
0x767fa080,
0x1b7e17b9,
0x20b16ffd,
0x6ca30375,
0xa22f685e,
0x21c0d01f,
0xe8baab3f,
0x19121fe8,
0xe335a0ba,
0x223fec86,
0x79440ee8,
0x6f9a7faf,
0xdf559db8,
0x520001b0,
0x8784d184,
0x1b8f92be,
0x0302acd9,
0x0995e642,
0x93ccd395,
0x7f4f7924,
0xcb296807,
0x3a7f7680,
0x745fec4c,
0x4e32ef21,
0x7d89ad40,
0x0019effb,
0xa05d81c9,
0x24081db7,
0x7d89ad40,
0x0019effb,
0xa05d81c9,
0x24081db7,
0xd89a0e8b,
0x4a5f28b7,
0x77dfbdd5,
0x33ae97ef,
0x01b80121,
0x641b1fc8,
0xfc69eedf,
0x003eed8f,
0x26dc0309,
0x203b7ff1,
0xd94bb5fc,
0x1968cbd2,
0xd41ec1a7,
0x4c6d9bde,
0xc8d4bfe5,
0x4018002f,
0x2783ebff,
0x36a16f62,
0x08c1e632,
0x76d4100f,
0x7b3f5c27,
0x69a94223,
0x1033ed40,
0x7fcffbb6,
0x05f1b721,
0x7dffe248,
0xff7d0fd8,
0x4a001243,
0xc8088367,
0x17e17d0d,
0xfdb41f21,
0x7736acf4,
0x5675a049,
0x1057451a,
0x3001ee60,
0x6d89bf6d,
0xcf985866,
0x740be13e,
0xc46ffe2d,
0x7edb4822,
0xdbbfbe20,
0x41f6603b,
0x82c18920,
0x7e4fe1f2,
0x688320db,
0x407eda03,
0xf9030993,
0x6e70bb60,
0xf35bf3ff,
0x48ffc48e,
0xd9026b37,
0x3fbbfa0e,
0xa7a523db,
0x6f5f818f,
0x8403ae00,
0x6ea70c70,
0x882c2a63,
0x3e3ffc9e,
0xd7c27f24,
0x7fd48db4,
0xfadbbec0,
0x1ff125b2,
0x268401de,
0x1dfbcdb0,
0xdbf7f032,
0x3fc27876,
0x5923e114,
0x1427cd77,
0x3803f81b,
0x2ffff060,
0x7cdc018b,
0x010ff06f,
0x05a777b0,
0x28292001,
0xe7fbb1e4,
0x3614d61d,
0x05a777b0,
0x28292001,
0xe7fbb1e4,
0x3614d61d,
0x26ff1866,
0x7b44c01d,
0x0100800f,
0x3b413ff6,
0xc88a61eb,
0x7fcc1fde,
0xd8316915,
0x00449407,
0x6ef293a6,
0x023c6bb4,
0x20018013,
0x776cdff0,
0x3ebe9e47,
0x00006b7e,
0xf3eda5ee,
0x7256800f,
0xc003fa04,
0x7b04c80f,
0xf95c31f6,
0x7010e052,
0xf7b100c7,
0x36007ccf,
0x68104ef7,
0x6bd7e082,
0xf4fc008c,
0x7c7ef1bf,
0xf87d8e06,
0x181d2dff,
0xe0dbfeb7,
0x7e2cd2c7,
0x679089fe,
0x05c000de,
0xf209fa05,
0x63bfc156,
0x0a104def,
0x75efea89,
0xa8dff913,
0x4fef8331,
0xe4fe49b9,
0x24803e06,
0x58ccd1c8,
0x50109cbc,
0x04b19f5d,
0x4104027f,
0x3590b322,
0x35800801,
0x77a5ff4c,
0x6ffdbfdf,
0xe7bad7ec,
0x13dcd3cd,
0xe7808fbc,
0x00ab7eff,
0x06cc8536,
0x79841cd0,
0x7a466ed4,
0x33600040,
0x49103680,
0x3f323adf,
0x3e12de88,
0x0134ddf0,
0x689997e8,
0x19ec2f46,
0xbc041200,
0x035fc940,
0x0a2406a5,
0x18c9e43c,
0x97ffbe1b,
0x0bf9bffd,
0x97267e04,
0x00b73fbf,
0xf02e0048,
0x700807e7,
0x97267e04,
0x00b73fbf,
0xf02e0048,
0x700807e7,
0xd27c3620,
0x6c077e21,
0x47016e97,
0x7b9f0092,
0x55dcb613,
0x00b00fe2,
0xd33c0043,
0x7ed6666f,
0xdddaac04,
0x1a00fe2e,
0x20c3d009,
0x3fc8025e,
0xb01fbfd8,
0x6de7e043,
0x7afffb4a,
0x111f7370,
0xfff9f000,
0x7f3baf8a,
0x07eb56a6,
0x19c877f0,
0xc6bd974d,
0x12e92604,
0xe80cfe22,
0x122dcf67,
0x177200db,
0x400ff920,
0x8deff2f6,
0x012313f0,
0x43dbc8f6,
0x7a501fc7,
0x492a9586,
0x4c390490,
0xef9bfe2e,
0x747f7bef,
0x0491324a,
0x09fb0a11,
0x3463977f,
0x5e791ee0,
0x3de5fc56,
0x660c8010,
0xfa7dff67,
0x48308007,
0x374069ef,
0x0dfed345,
0xa1fe3ef9,
0x6608e49d,
0x8123a644,
0x007b18b9,
0xf97783fb,
0x6dffc087,
0xce07fe48,
0x2c287b6f,
0x5bbe013b,
0x12e6e007,
0xb4dbdfbf,
0x000ff000,
0xaa982500,
0x6d7d6690,
0xfc03f81b,
0x7a272ef3,
0x06fbf1fb,
0x1ac3e020,
0x081801bf,
0x124be0f3,
0x82db5d7a,
0x36501ec3,
0x28d989cb,
0x7c80d8c3,
0x25839930,
0x6c98fef0,
0xf3f43fff,
0x01b84efe,
0x25839930,
0x6c98fef0,
0xf3f43fff,
0x01b84efe,
0xcf24ced6,
0x1fc09403,
0xec098102,
0x12478c20,
0x00e07fc0,
0x41052d70,
0xf80ccdc9,
0x311de1fd,
0x00824087,
0x09d805fc,
0x7fec0191,
0x4a3c12db,
0x0222f83b,
0x60119810,
0xb90778c0,
0x20fb7ffd,
0xc1e6fe00,
0x7cb4046f,
0xa4addfde,
0x76fb0181,
0xc236daa4,
0x7fa27357,
0x646801fb,
0x70105e23,
0xf80be800,
0x742dbf93,
0x039c5e7f,
0x094276f4,
0x00f0de80,
0x3939e07f,
0xeca631d9,
0x769fe56f,
0xc7ecf7c0,
0x5ef04273,
0xdbec1bfc,
0x1fff6a60,
0x9013a4ef,
0x320bced2,
0x101009b6,
0x36c0040c,
0x2641b1c0,
0x2119bef1,
0xea0b81c7,
0x5fd94849,
0xfbdf3a44,
0x7fecada9,
0x9bec124d,
0x41b80cce,
0xfbbc6d11,
0x7e409fae,
0x049b4c0b,
0x017f647e,
0x00414fbe,
0x7f8817f6,
0x10f69b66,
0x19528402,
0x00b4646f,
0x7007fd6e,
0xf81c124f,
0x05b807ff,
0xa7eb694e,
0x1b841076,
0xffe41e49,
0x4d45809f,
0x07f0f381,
0x49ff794d,
0xa3b3f494,
0x291ad3de,
0x3ff80859,
0x56280ef2,
0x4359fe97,
0x738f85d6,
0x3ff80859,
0x56280ef2,
0x4359fe97,
0x738f85d6,
0x74020585,
0x7f737384,
0x9ba24c82,
0x03d0fb28,
0x2c6b8f1f,
0x7e063d07,
0xc1fdbe00,
0x15f2f617,
0x05037720,
0x4c7e4cd9,
0xff9f6446,
0x52e833d0,
0x07024742,
0x7f4e1f9b,
0x81c8de79,
0x7317874c,
0x7fe7ef10,
0x507a6789,
0xf70678cc,
0x5dd311e2,
0x7c8cc9bf,
0x42e4c6da,
0x58502e78,
0x4223c9be,
0xc0d1400b,
0x15a13022,
0x7513b7c0,
0x07f81552,
0xeab064df,
0x4c31d330,
0xc32fff79,
0x48aa7001,
0x3bac6f33,
0x7efc738b,
0x01bea8b5,
0x72e1f6f8,
0x310c9e43,
0x017d8d6a,
0xc8298802,
0x4e46e128,
0x06ec49b6,
0x25e09419,
0x044fb5a7,
0x09f0de2c,
0xf66fa41f,
0x2359eaab,
0xc5de65ea,
0x55c2c66e,
0xd9381f4a,
0x321b2af5,
0xb28a0002,
0x6a333637,
0x83beb802,
0x1c7febef,
0x04c30647,
0x5a41acf8,
0x115b9b91,
0x27bd7f93,
0x7889af36,
0x424659f5,
0xc05cb5e0,
0x7cb256f9,
0x1263661c,
0x30dd6ddc,
0xff7ded92,
0x0da447b2,
0xfefc003d,
0x724540eb,
0xce37c9e7,
0x5e8ffd31,
0x969a51f1,
0x0a79ffbb,
0xff83b5a5,
0x4a5209ad,
0xc7eba661,
0x7c17f6cb,
0xff83b5a5,
0x4a5209ad,
0xc7eba661,
0x7c17f6cb,
0x70a79299,
0x7e43e81f,
0x4865ebff,
0x3604d202,
0xcf03c9b6,
0x773d8766,
0x317fff54,
0x46523fc1,
0x6c941620,
0x1c7b0ef6,
0x483bd2c1,
0x43c0e361,
0xd762d93c,
0x35bf83b3,
0x713d3b06,
0x100769cd,
0x4d3fc8d9,
0x2b763e0a,
0xfc0ae3bf,
0x2ed005a9,
0xfeedb257,
0x0e668837,
0xd9933d24,
0x54f92cb7,
0xfb2f8485,
0x4ffe1190,
0x34f721f2,
0x780f3cee,
0xd80c002c,
0x17c6f3f4,
0xf10dc1c1,
0x5a247e8e,
0xc0eff144,
0x0fe72176,
0xfed80133,
0x71811d86,
0xd9b231bc,
0x01cbe741,
0xc5fe4edf,
0x6fd95d9f,
0xfce5ffa2,
0x003d0f0f,
0x99fb87b5,
0x6ec1d81e,
0x27a67af9,
0x3e1f026f,
0x270b09a4,
0x0109fec5,
0x097a7c06,
0x71e0ff80,
0xe7d8c8f8,
0x76a41b67,
0x0281c07c,
0x20777260,
0x7960cfd0,
0x4c42668e,
0xfffffbb1,
0x44f4fad9,
0xff350341,
0x6dcfe39f,
0x0c1bb207,
0x1007e9f2,
0xf8084db5,
0x187fe11f,
0x07c3efda,
0x0ed11fd8,
0x10dec1f4,
0x7d345d88,
0xcfff4c29,
0x7503f644,
0xc931345b,
0x5017c7f0,
0xcfff4c29,
0x7503f644,
0xc931345b,
0x5017c7f0,
0xdeef761d,
0x7260dbbd,
0x01871f9a,
0x36008450,
0xdc831e23,
0x68bcab66,
0xcf21f750,
0x1cbfdb32,
0x49817e34,
0x24d2a05e,
0xf8ff6bd9,
0x5ff77e8e,
0x6623b9f4,
0x7fbfd006,
0x6833c00b,
0x0ed32f91,
0xc4d108bc,
0x490db697,
0xd43f6a48,
0x7e3b1b97,
0xe4fdcfa7,
0x2ee5ec4f,
0xa42699ba,
0x09f61de0,
0xc001813f,
0x4fc20d8f,
0x209208ff,
0x0d07bfe7,
0xc71cfe16,
0x403fc226,
0x08df010f,
0x1ee57bb0,
0xc827bea8,
0x01c13eee,
0x42c07e37,
0x7ec7bb4d,
0x4d5f77c9,
0x2e7a1b4d,
0xc6df6e8b,
0x2fc054ae,
0x4ce865d0,
0x4636fd90,
0xec9ec3f8,
0x26c52c70,
0xeffd7a01,
0x3e5f887e,
0xbaec16d1,
0x49402779,
0x0d07c885,
0x2a7e48e0,
0x03581624,
0x607f0b54,
0x19001ecb,
0x0376fd85,
0xf8857e20,
0x5fc07d9b,
0xcf2fc077,
0x633fc074,
0x21fd326c,
0x5fb01000,
0x0860df58,
0x05a723a6,
0xfcbb59b4,
0x77cfc3f5,
0xfbd9f7b8,
0x4834f7af,
0xc1677ff1,
0x42c8081d,
0xbe97fdc0,
0x3ec4fa67,
0xc8fbf6b8,
0x3a47e3ff,
0xbe97fdc0,
0x3ec4fa67,
0xc8fbf6b8,
0x3a47e3ff,
0x097e73ff,
0x4dc05669,
0x7f28e806,
0x3df1fa18,
0xf92efe24,
0x2d70034b,
0xfff79e5d,
0x6134d24e,
0xe0fe59fc,
0x4d242a6f,
0xdffbd0cc,
0x6020b872,
0x2eccf604,
0x6af9721f,
0xeadb9fde,
0x74c3642d,
0xefebcc07,
0x471c993c,
0xbca4fe20,
0x4034eb95,
0x1448d192,
0x2dd866f4,
0x2493b6fb,
0x4df36653,
0xda3d4807,
0x5ee424f5,
0xb22028c8,
0x30beddbd,
0xb233f1eb,
0x011e3681,
0xd3e1fe03,
0x3d57fe46,
0xb935f200,
0x74e01242,
0xbe6f5bff,
0x77c91b2d,
0x244e7b1f,
0x23fd6c40,
0x44830607,
0x0007ff42,
0xcefdf1d0,
0x70840101,
0x4f9fe0ef,
0x08891f48,
0xe1a41180,
0x4af677de,
0xfa837ddf,
0x3e47dfff,
0xd9681e9e,
0x7fc48f1a,
0x74e1bab8,
0x6de7af94,
0xae137130,
0x6b07e008,
0xced9b6ff,
0x370017ae,
0xaeb3cdf8,
0x3a6d8479,
0xfb7fba94,
0x0d00ecc7,
0x0be51d1f,
0x0090eff2,
0x96ffb528,
0x26441b6f,
0x741863fd,
0x4cb5a210,
0x324ded9f,
0x4916f801,
0x4fbdf484,
0x0801eb19,
0x78ed4a64,
0x13727dcd,
0x9f25b7d9,
0x77db6c97,
0x969a41b1,
0x27e05b71,
0x9f25b7d9,
0x77db6c97,
0x969a41b1,
0x27e05b71,
0x2481fbb5,
0x20a1665b,
0x3834887c,
0x7acb53b0,
0xb5e473a9,
0x329b013c,
0x89f0badd,
0x105dffd2,
0x780003f9,
0x3ce713a3,
0x3124d104,
0x111e1e09,
0x34fff1b2,
0x12292cd9,
0x0f40afd9,
0x522b60dd,
0x203e6c4f,
0x607be480,
0x697ee76c,
0x4b4f6009,
0x97d5f9fa,
0x00ab6021,
0x80bc48be,
0x5c1e4df0,
0x05b9f2ec,
0x7a01fdaf,
0xb6217dff,
0x02574027,
0x64fc41fb,
0x380bf271,
0x8bfe0009,
0x36596404,
0x03232c9f,
0x00b6e8c0,
0x8815b980,
0x32fec334,
0x27dfd881,
0x6da095c8,
0x6b6767a4,
0x21e4759e,
0xd4df7625,
0x13400e8f,
0xdcf0d86f,
0x7dc92920,
0x387da57a,
0x2a1bbc99,
0x1b019a9e,
0x36748d02,
0x40cf9aa4,
0x6409fc0d,
0xb7a7f910,
0x39789b79,
0x6c43a6df,
0x6964d9fe,
0xdb265d4a,
0x6cbf26d2,
0x059f26bb,
0x49a0979c,
0xdec66c0c,
0x26ddd406,
0xd7000ef0,
0x5ef3b2f1,
0xd82c10c5,
0x12e795bf,
0xf64dffff,
0x10311fe3,
0xc26ff027,
0x41c4d3ce,
0x3810404e,
0x3f138099,
0x5a10fed5,
0x390ede4f,
0x3810404e,
0x3f138099,
0x5a10fed5,
0x390ede4f,
0x08050427,
0x6a01b370,
0x63933366,
0x7839881d,
0x4f791125,
0x7fef27d0,
0x0826e339,
0x5c17e454,
0xb83c2ffa,
0x6dbb1b9d,
0x07df7736,
0x14e0400d,
0xffeea027,
0x19ade40f,
0x7e18f56c,
0x724075ee,
0x016f0d28,
0x2e7ae3f0,
0x90376685,
0x5fffbc64,
0x4bba0340,
0x10046410,
0xb9905b00,
0x77e3a44b,
0x46070c87,
0x743fe0c4,
0xf89f7166,
0x31bfdd03,
0x08bcbf60,
0x00fec015,
0xc90523e6,
0x7ec0765a,
0x15008602,
0x001ff828,
0x04db7009,
0x09e639b4,
0x7f6135ca,
0x43f6cfe3,
0x2541d37b,
0x10c0b3b1,
0x78258fc0,
0x4d27aa23,
0xbd101600,
0x7e85e446,
0xfff91f89,
0x7238a1bf,
0xcbcef982,
0x7ddbc7f5,
0x4b515b2e,
0x20fee262,
0x87e3b0cb,
0x199fa09a,
0x7a08c105,
0x424187e3,
0xcfe309fa,
0x407f799e,
0x8ab18e37,
0x37afa063,
0xaa32606c,
0x7ef6ff11,
0x1d7344fa,
0x01ee5b4c,
0x992c1310,
0x1148109d,
0xed3c9787,
0x6984f180,
0x07ec13d3,
0x766772d8,
0x710370fe,
0x123448bf,
0x4fc8c804,
0x34a1a804,
0x710370fe,
0x123448bf,
0x4fc8c804,
0x34a1a804,
0xf603bf3b,
0x02dbc3e4,
0x4e50087f,
0x4a3d851a,
0x999a0003,
0x37b782de,
0x6d138794,
0x7132dd90,
0xcf6207ed,
0x46a7e8cf,
0x21336120,
0x379fb294,
0x8e3c37d8,
0x69448a2c,
0x2630d5a4,
0x1f770eeb,
0x6015a126,
0x76e5edbe,
0xfa51b089,
0x7251a96f,
0x137d632d,
0x28bbe246,
0x83324999,
0x4326a212,
0x52603526,
0x63135258,
0x3d629d70,
0x0d36cd63,
0xf92127e1,
0x5d05bcf9,
0x64ffed01,
0x3fd6c5b0,
0x501b8207,
0x37bbc899,
0x4f4085bf,
0x6f09f24e,
0xa9a183c0,
0x4b146cd5,
0xfc9079a1,
0x7e6db32c,
0xb0450fb3,
0x51d19804,
0x44b2fcd9,
0x014c5956,
0x013c0101,
0x263b1f29,
0xe66661fa,
0x1793e1a9,
0x03119b5b,
0x03199d92,
0x887ffe06,
0x561b3db5,
0x3e41df7f,
0x0ac90db3,
0xbdfe13bb,
0x54199e9d,
0x73f2e85e,
0x3fbff2c0,
0xa96f8064,
0x42479022,
0x3ef42e38,
0x39a4d850,
0x867f0fe0,
0x00081ffe,
0xf4228925,
0x3b6b622d,
0x4ce0804c,
0x4be5e6c6,
0x4003edca,
0x02212ef6,
0x7f4a008d,
0x12e83d7f,
0x4003edca,
0x02212ef6,
0x7f4a008d,
0x12e83d7f,
0xce060d07,
0x13d41e48,
0x3fe6ff07,
0x61c726f0,
0xde0bdfd8,
0x6fc53d53,
0x099bb612,
0x1228a938,
0x88110034,
0x7072e87f,
0x01c7fb48,
0x01c56d6d,
0x82ff4f42,
0x09743254,
0x317fe621,
0x781c0005,
0x1ec7fd24,
0x03fde1f6,
0x522b124b,
0x1c801f90,
0x0f08210a,
0x704e1a52,
0x0c0d3f68,
0x7fe01df1,
0xff24cb84,
0x53e7e03f,
0x3f664e6d,
0x41281fe0,
0x380013db,
0x412f7eb8,
0x00119620,
0x6d48fc1a,
0x509efb08,
0x1fd00f18,
0x1fa1b311,
0x02b60020,
0xffbf0a5f,
0x420fb5fb,
0x2791bfde,
0x682a12b0,
0x001402b4,
0x65e11eea,
0xa37c53f3,
0x5dc05d7b,
0x5e268b46,
0x487f6371,
0x4e43a0f7,
0x7926c921,
0x3b7fe847,
0x21c09ff8,
0x7ffe0709,
0x2dc4e06e,
0xc60b1e34,
0x73dfe7ff,
0xa020a3ef,
0x7bd9007e,
0x6163fda4,
0x70cd7c07,
0xc64c5e04,
0x7fe73a42,
0xc723ff3f,
0x3b3029ec,
0x201fefaf,
0x60409fe2,
0x11cf0173,
0x25fe1a70,
0xffbf81fa,
0x094ebef6,
0x06d7b1e8,
0x7fc20461,
0x0c0f6149,
0x7e41dd3f,
0x037595f7,
0x499473d0,
0x271381b9,
0x01f80c70,
0x037595f7,
0x499473d0,
0x271381b9,
0x01f80c70,
0xd0002d1b,
0x06773dbe,
0x64a47f93,
0x63dd5df8,
0xc83dcd39,
0x6ce128cf,
0x352f7716,
0x19e03ba0,
0xc307e65f,
0x08e0dd29,
0x3ffe5e60,
0x7fc11848,
0x203acf80,
0x0583300c,
0xd0fe3393,
0x3c3f5891,
0x092b6d4d,
0x1b64fc17,
0x5d9c4fdf,
0x0744ec72,
0xc07213b9,
0x12455c4f,
0x1e16c82f,
0x363dcff6,
0x1b1d39b4,
0x16e71c56,
0xb724b288,
0x337c2741,
0x73fb81d7,
0x48bc4e07,
0x36901736,
0x53d800b4,
0x29f7ff76,
0x133abfb8,
0x00fd3c37,
0x48b6db99,
0x83801665,
0x71bb984e,
0x07d0026f,
0x0dbc2079,
0xb76f460e,
0x41e4c0ff,
0x074241d8,
0x764fcdb4,
0xd8d98320,
0x5943c5c4,
0x5491de0b,
0x00bf65d2,
0xa54bd3b9,
0x013b59a5,
0xd06c1a27,
0x03130c41,
0xf62239fe,
0x1d8ddbf7,
0xfcd19303,
0x024030c9,
0x7f610283,
0x6cff07aa,
0x030bb9e7,
0x67451f9b,
0xcf843fd9,
0x713de00d,
0x780e663e,
0x01caf401,
0xdfbff713,
0x7e1da68b,
0x2efc01b4,
0x0081182e,
0x0a326d7e,
0x76fe1a00,
0x51321124,
0x680b1cfe,
0x0a326d7e,
0x76fe1a00,
0x51321124,
0x680b1cfe,
0xabfe07b6,
0x029fe002,
0x65bff5c9,
0x3a000b12,
0x48ffeca6,
0x024c9f98,
0xf9e76806,
0x2451735d,
0x3eef5df7,
0x6d3ffff0,
0x966d3005,
0x47e000fc,
0x0025b42d,
0x328c1cf0,
0xf80516c0,
0x322f924e,
0xe40048d0,
0x3fbffa99,
0x01b0cd2f,
0x0369200c,
0xdfe1b3be,
0x46f4bfee,
0x0207c04a,
0x6fe48ce0,
0xfbdbfe4f,
0x32e012cf,
0xc312013f,
0x03c05cbd,
0x783ec1e4,
0x4890397d,
0xffffd7cf,
0x00004d3f,
0xb810481f,
0x6e1fdc87,
0x056ad3f7,
0x40328da2,
0x3472d0c8,
0x01a7a970,
0x0edc6c5b,
0x7fb75694,
0xf2ef461f,
0x57019594,
0xa137dd97,
0x7f74ad23,
0x1883963d,
0x777f39e6,
0xed204006,
0x3a7ffb7f,
0x083fecce,
0x04003c9d,
0xe27d0182,
0x0443fb76,
0xc011613d,
0x4017e7df,
0xc26afcbf,
0x7b72e0bd,
0x603003a1,
0x207187ed,
0x2620db30,
0x7a19f114,
0x7b064e0f,
0x5315d5ba,
0x6e4ba057,
0x37be8950,
0x4e964b3d,
0x41077e4e,
0x80b28174,
0x53e7a691,
0x04fcdf65,
0x5dbdfd31,
0x9769b0c1,
0x7b6afb66,
0x04fcdf65,
0x5dbdfd31,
0x9769b0c1,
0x7b6afb66,
0xcd277af6,
0x682c9c9d,
0xf85b9706,
0x525f24d9,
0xdb02cfa4,
0x137ff07f,
0x2fbfb600,
0x001b1c91,
0x0006fe44,
0x093c8980,
0x39004d02,
0x5fffbc99,
0x00799224,
0x0b583a70,
0xbdc113cb,
0x7fcd8efb,
0x5c9a0000,
0x303cf296,
0x376f89cd,
0x09c8887b,
0x04264806,
0x082cc000,
0xdeac1e3f,
0x6bdb7373,
0x166c01e4,
0x527de266,
0x010401ea,
0x1009a046,
0x0703c039,
0x597c1266,
0x20827fc3,
0x588484d1,
0x33100021,
0x003f1739,
0x5b26044f,
0x1da4d4a4,
0x06f9bdcd,
0x4b041820,
0x4b521309,
0x00348202,
0x2925fa32,
0x71f008f2,
0xf9340202,
0x73d8200f,
0x3cdec010,
0x2e5c6041,
0xc25cc450,
0x51403fff,
0x791e6c24,
0x30dcc416,
0x22c0243e,
0x1340c06b,
0x0b20c17b,
0x1cb4db62,
0x4f12fe4f,
0x180a01ce,
0xd192b47b,
0x467b7c02,
0x4126fad9,
0x60cc9640,
0x4ee2c1c0,
0x0080a456,
0xffc1c000,
0x12712cfb,
0x2bc8070d,
0x1746000d,
0x590e4c04,
0x7df12ffa,
0x4ffa0040,
0x42416c9f,
0xaf6d9564,
0x310b640f,
0x4cf0dec9,
0x3e2e0d29,
0x58fd0c60,
0x1ac1e506,
0x4cf0dec9,
0x3e2e0d29,
0x58fd0c60,
0x1ac1e506,
0x7b2d20fc,
0x42a7e266,
0x46800220,
0x74e93989,
0x21f79183,
0x5278adfc,
0xfc965838,
0x418daf1d,
0x336c36c9,
0x1040dd70,
0xb193482d,
0x3186b424,
0xfb7579e6,
0x7a204c99,
0x774a424b,
0x499b3a0b,
0xbb617ee0,
0x19296495,
0xf0abfc95,
0x48993b7d,
0xb33d871c,
0x4084100d,
0xcb8403ff,
0x03be70c1,
0x3cfdb2d0,
0x07cfec08,
0xc7fa7f30,
0x3f8f349c,
0xfaefae10,
0x5d893f48,
0x6a031e4b,
0x086d327e,
0x33243d46,
0x6644c082,
0xfe9b5524,
0x3277db6f,
0xe5b01319,
0x69527bff,
0x5004d801,
0x32e78d4a,
0x67fa20ff,
0x4b111fff,
0x267237b6,
0x6846dff9,
0x49f3e813,
0x04a18c1a,
0x656d978d,
0x07136262,
0x14da09a6,
0x71a01422,
0x9f8360c9,
0x4c8c401c,
0xca980041,
0x3ff7d691,
0x1c97d660,
0x2fd42019,
0x85a5d3b8,
0x6fe2d4a0,
0x39667e02,
0x76f17d60,
0xbbd96ad6,
0x3f3cf249,
0xcba14874,
0x7a7360c2,
0x6713f149,
0x093ff2cb,
0x43679bf3,
0x01447ff5,
0x7fbdadfe,
0x133c8849,
0x8366cb54,
0x21d8a411,
0x7fbdadfe,
0x133c8849,
0x8366cb54,
0x21d8a411,
0xfa03e9b6,
0x028c87f4,
0x641ff064,
0x5637e9d1,
0xb780b244,
0x40429671,
0xf80280ec,
0x3f72f297,
0x05210a06,
0x119fc132,
0xf80100cc,
0x3e17e26e,
0xc17a09f8,
0x3ff6137e,
0x1b9421f7,
0x40274c46,
0x373c6eed,
0x002f66f5,
0x42fd99fd,
0x002fe9be,
0x4e45be14,
0x7c02c3e0,
0x016f893d,
0x1b49ed08,
0x62405727,
0x0978ffba,
0x803e7fb6,
0x7252204f,
0xefc391bf,
0x26bb3be7,
0xe8919004,
0x31c01fbf,
0xffa1a9c9,
0x7ebd43d1,
0x68511424,
0x7c182fdb,
0x6a25b033,
0x7fffe472,
0xbc003d7e,
0x3299ec8d,
0x31ed0402,
0x22ff3fbb,
0xfb412494,
0x60084c8b,
0x2681993f,
0x2240a168,
0xcb026a04,
0x159cf256,
0xb977da3d,
0x7c1217c4,
0x2d878de0,
0x037b2a3d,
0x042fe64f,
0x0da6b74e,
0x47fc4440,
0x2ff01e2a,
0xeb102d44,
0x484f97ff,
0x609890c1,
0x16bf3e9e,
0x886fbc16,
0x1df40ccf,
0x7bd8f2bf,
0x1777e10b,
0x4ed801d9,
0x6fdbe484,
0xaa22a697,
0x4d2cc20c,
0x49344c38,
0x68071fc8,
0x68a5b1fd,
0x7347ac31,
0x49344c38,
0x68071fc8,
0x68a5b1fd,
0x7347ac31,
0x81294372,
0x3f8c9396,
0x31f0de9e,
0x7e7d4007,
0xc1efc0f2,
0x6c805ff3,
0xe7d91405,
0x1f4cc4ab,
0xf1064835,
0x2fa7efe9,
0xb1425cdf,
0x32587f8a,
0xb8e619d0,
0x65c45611,
0xb32b4008,
0x34f78faf,
0xfc449120,
0x304c9c17,
0x206c2ff0,
0x69fff6eb,
0xf49fb0e6,
0x7fa4064f,
0x0fefe126,
0x48337e4f,
0x7ec3f358,
0x7dbd2075,
0x070140d4,
0x72640476,
0x971bcfff,
0x46aff1a2,
0xc093feff,
0x367d134e,
0xa7f8013f,
0x41878466,
0x1bdb94ee,
0x7588ed1c,
0x50298ff4,
0x49faed1b,
0xfb1a8086,
0x103edb35,
0x3cfd88c7,
0x56885e11,
0x15b6a6d5,
0x4e9ca0fa,
0xf1a3cfb1,
0x236782ae,
0x7f00083b,
0x4df9a070,
0x08c26a23,
0x0f907f02,
0x04e7dbb6,
0x4a00e274,
0xf813a004,
0x25c801e2,
0x4f02d62f,
0x67fce4f2,
0x816188c8,
0x1b04980d,
0xd3cc9bf6,
0x7cc406fe,
0xaf958a36,
0x3cab287d,
0xe4e0496f,
0x40fa6d86,
0x37d9a9b7,
0x10987960,
0x1ca11b7f,
0x13fb3a01,
0xbff3023f,
0x7ebe05a6,
0x67238412,
0x6e3368bb,
0xbff3023f,
0x7ebe05a6,
0x67238412,
0x6e3368bb,
0xc023dde5,
0x3e06c6cd,
0x2ca4de9e,
0x2ecb9040,
0x95d9fe02,
0x7db3266a,
0x66b3702c,
0x160fbbf8,
0x5cf260bd,
0x2626fce1,
0xd922f434,
0x73ded2ee,
0x94dd36c8,
0x6d9b1d6c,
0x3a6c58d0,
0x125b7d6c,
0xe6da681e,
0x42e36182,
0x64d671e6,
0x0598f7b4,
0x73360db7,
0x2ccfc483,
0x0e71fd9e,
0x4d9b5ec6,
0xc751f2cd,
0x0f8134d1,
0xb9251e56,
0x32c39e41,
0xc73b299c,
0x07033fdc,
0x345f70bf,
0x4ac899fe,
0xf20d4f55,
0x4f32247d,
0xb2eaa0bf,
0x1081efda,
0x5c86b390,
0x46434bdc,
0xce7c6550,
0x048edb66,
0xd4fe6570,
0x6da6dc20,
0xbc5af194,
0x26f02871,
0xdee5b6a4,
0x07e6d08e,
0x3ba4310f,
0x362700ee,
0x754f98f7,
0x6fb20092,
0xb7fa965e,
0x00437350,
0x8fd34827,
0x5e60658c,
0x9d03c23e,
0x7653e2ef,
0x712a39d9,
0x6974cc81,
0xc07c3d3c,
0x16b9afa7,
0x1d46bd2d,
0x307211e6,
0xe33bc3be,
0x01cb242c,
0xa6d96459,
0x68c667c1,
0x759497b6,
0x0a43ae1f,
0x632701d9,
0x5ec4bfcf,
0x787390d5,
0x676d9329,
0x5a27f133,
0x6c81e482,
0x648d0b3a,
0x7f3fe97e,
0x5a27f133,
0x6c81e482,
0x648d0b3a,
0x7f3fe97e,
0x27934259,
0x2741acdd,
0xd92fffff,
0x2f50e7fe,
0x4c0f7337,
0x7ef76f45,
0x59a4fe80,
0x432261be,
0x07ca601f,
0x76504299,
0x40fd4c2d,
0x7f81a422,
0x9ef805bf,
0x7ffddf18,
0xa1913a26,
0x7c3df011,
0x0c5e2edf,
0x4cd1d37a,
0x60dbc823,
0x768002bd,
0x06ee4001,
0x7cc80168,
0xfbf7ffb8,
0x77932199,
0x1b7d2fec,
0x6e777408,
0x3d02adf3,
0x1ee965b9,
0x0020443b,
0x002fe190,
0xa9236618,
0x7fc32efc,
0xf8026e0c,
0x4db7fa07,
0x6ec841fb,
0x122180f2,
0x8ec3f9da,
0x6bd6c276,
0x87e33fef,
0x5c02ccbf,
0xc6e9672e,
0x1a47fb09,
0x8a60b7f9,
0x37fbb28a,
0xfb2f68d9,
0x1ef77249,
0x8c5e7e1f,
0x6fcb7a5d,
0x80831a04,
0x7ff30e7e,
0xc81dfffd,
0x18476889,
0x2ef84ff8,
0x5619bc29,
0x4a0fe602,
0x7e7ff3fd,
0x22b00b0d,
0x0988efd0,
0xc87f9110,
0x2ffeed8f,
0x2982ac7f,
0x0ec11ca0,
0xcf65006d,
0x01b88ff9,
0x47f45b02,
0x09f51fbc,
0xd09308d3,
0x7137e91b,
0x86e56980,
0x12bf3274,
0x0db45fc7,
0x58d09910};
void bc1_gen_1(hls::stream< bit32 > & Input_1, hls::stream< bit32 > & Output_1){
#pragma HLS INTERFACE axis register port=Input_1
#pragma HLS INTERFACE axis register port=Output_1
//#include "../host/bc1_par_1.h"
bit32 out_tmp;
loop_redir: for(int i=0; i<24576; i++){
#pragma HLS PIPELINE II=2
out_tmp = Input_1.read();
Output_1.write(out_tmp);
}
loop_0: for(int i=0; i<16384; i++){
#pragma HLS PIPELINE II=1
out_tmp = bc1_1_0[i];
Output_1.write(out_tmp);
}
loop_1: for(int i=0; i<8192; i++){
#pragma HLS PIPELINE II=1
out_tmp = bc1_1_1[i];
Output_1.write(out_tmp);
}
}
|
kuisatz/b2argebilisim | public/jsinline/admin_osb.js | $(document).ready(function () {
/**
* easyui tree extend for 'unselect' event
* @author <NAME>
* @since 04/04/2016
*/
$.extend($.fn.tree.methods,{
unselect:function(jq,target){
return jq.each(function(){
var opts = $(this).tree('options');
$(target).removeClass('tree-node-selected');
if (opts.onUnselect){
opts.onUnselect.call(this, $(this).tree('getNode',target));
}
});
}
});
/**
* ACL privileges datagrid is being filled
* @since 14/07/2016
*/
$('#tt_grid_dynamic').datagrid({
url : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
queryParams: {
pk: $('#pk').val(),
subject: 'datagrid',
url : 'pkFillOsbList_sysOsb',
sort : 'id',
order : 'desc',
},
width : '100%',
singleSelect:true,
pagination : true,
collapsible:true,
method:'get',
idField:'id',
//fit:true,
//fitColumns : true,
remoteFilter: true,
remoteSort:true,
multiSort:false,
columns:
[[
{field:'id',title:'ID'},
{field:'name',title:'OSB',sortable:true,width:200},
{field:'city_name',title:'Şehir',sortable:true,width:100},
{field:'country_name',title:'Ülke',sortable:true,width:100},
{field:'address',title:'Adres',sortable:true,width:300},
{field:'action',title:'Action',width:80,align:'center',
formatter:function(value,row,index){
if(row.attributes.active == 0) {
var e = '<button style="padding : 2px 4px;" title="Pasif yap" class="btn btn-primary" type="button" onclick="return activePassiveOsbWrapper(event, '+row.id+');"><i class="fa fa-minus-circle"></i></button>';
} else {
var e = '<button style="padding : 2px 4px;" title="Aktif yap" class="btn btn-warning" type="button" onclick="return activePassiveOsbWrapper(event, '+row.id+');"><i class="fa fa-plus-circle"></i></button>';
}
var d = '<button style="padding : 2px 4px;" title="Sil" class="btn btn-danger" type="button" onclick="return deleteOSBUltimatelyDialog('+row.id+', '+index+');"><i class="fa fa-eraser"></i></button>';
var u = '<button style="padding : 2px 4px;" title="Güncelle" class="btn btn-info" type="button" onclick="return updateOsbDialog('+row.id+', { name : \''+row.name+'\',\n\ \n\
country_id : \''+row.country_id+'\',\n\
city_id : \''+row.city_id+'\',\n\
borough_id : \''+row.borough_id+'\',\n\
city : \''+row.city+'\',\n\
postal_code : \''+row.postal_code+'\',\n\
address : \''+row.address+'\',\n\
name_eng : \''+row.name_eng+'\'} );"><i class="fa fa-arrow-circle-up"></i></button>';
return e+d+u;
}
},
]]
});
$('#tt_grid_dynamic').datagrid('enableFilter');
/*
*
* @type @call;$@call;loadImager
* @Since 16/05/2016
* @Author <NAME>
* @Purpose this variable is to create loader image for roles tree
* this imager goes to #loading-image div in html.
* imager will be removed on roles tree onLoadSuccess method.
*/
//var loader = $("#loading-image").loadImager();
/*
*
* @type @call;$@call;loadImager
* @Since 23/08/2016
* @Author <NAME>
* @Purpose this variable is to create loader image for countries
* dropdown. Loading image will be removed when dropdown filled data.
*/
$("#load-imager-countries").loadImager();
$("#load-imager-countries").loadImager('appendImage');
/**
* load imager for boroughs drop down
* @author <NAME>
* @since 23/08/2016
*/
/*$("#load-imager-boroughs").loadImager();
$("#load-imager-boroughs").loadImager('appendImage');*/
/**
* Countries dropdown prepared
* @type @call;$@call;ajaxCallWidget
* @since 23/08/2016
*/
var ajaxCountries = $(window).ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_syscountrys' ,
pk : $("#pk").val(),
language_code : $('#langCode').val(),
component_type: 'ddslick'
}
})
ajaxCountries.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-countries').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Ülkeler Bulunamamıştır...',
'Ülkeler bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-countries').loadImager('removeLoadImage');
$('#dropdownCountries').ddslick({
height : 200,
data : data,
width:'98%',
selectText: "Select your preferred social network",
//showSelectedHTML : false,
defaultSelectedIndex: 3,
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
if(selectedData.selectedData.value>0) {
//alert('seelcted data >0');
window.fillCities();
} else if(selectedData.selectedData.value == 0) {
//alert('seelcted data 0');
$('#dropdownCities').ddslick('destroy');
//$("#city").toggleClass('form-control validate[required]');
$('#city').show();
}
}
});
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-countries').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Ülkeler Bulunamamıştır...',
'Ülkeler bulunamamıştır...');
},
})
ajaxCountries.ajaxCallWidget('call');
/**
* filling cities drop down
* @returns {undefined}
* @author <NAME>
* @since 23/08/2016
*/
window.fillCities = function() {
var ddData = $('#dropdownCountries').data('ddslick')
var country_id = ddData.selectedData.value;
var country = ddData.selectedData.text;
country = $.trim(country).toLowerCase();
if(country == 'türkiye') {
$("#city").removeClass('validate[required]');
$('#osbForm').validationEngine('hide');
$('#dropdownCities').ddslick('destroy');
$('#city').hide();
$('#load-imager-cities').loadImager();
$('#load-imager-cities').loadImager('appendImage');
//alert(country);
var ajaxCities = $('#load-imager-cities').ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_syscity' ,
pk : $("#pk").val(),
language_code: $("#langCode").val(),
component_type: 'ddslick',
country_id : country_id
}
})
ajaxCities.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-cities').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehirler Bulunamamıştır...',
'Şehirler bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-cities').loadImager('removeLoadImage');
$('#dropdownCities').ddslick({
height : 200,
data : data,
width:'98%',
selectText: "Select your preferred social network",
//showSelectedHTML : false,
defaultSelectedIndex: 3,
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
if(selectedData.selectedData.value>0) {
window.fillBoroughs();
} else {
$('#dropdownBoroughs').ddslick('destroy');
/*$('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#load-imager-boroughs').loadImager('appendImage'); */
}
}
});
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-cities').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehirler Bulunamamıştır...',
'Şehirler bulunamamıştır...');
},
})
ajaxCities.ajaxCallWidget('call');
} else {
$('#dropdownCities').ddslick('destroy');
$('#dropdownBoroughs').ddslick('destroy');
/*$('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#load-imager-boroughs').loadImager('appendImage');*/
$('#city').show();
if(!$('#city').hasClass('validate[required]')) {
$("#city").addClass('validate[required]');
}
$('#osbForm').validationEngine('hide');
}
}
/**
* filling boroughs drop down
* @returns {undefined}
* @author <NAME>
* @since 23/08/2016
*/
window.fillBoroughs = function() {
$('#dropdownBoroughs').ddslick('destroy');
var ddData = $('#dropdownCities').data('ddslick')
var city_id = ddData.selectedData.value;
if(city_id>0) {
$('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#load-imager-boroughs').loadImager('appendImage');
var ddData = $('#dropdownCountries').data('ddslick')
var country_id = ddData.selectedData.value;
var ddData = $('#dropdownCities').data('ddslick')
var city_id = ddData.selectedData.value;
var ajaxCities = $('#load-imager-boroughs').ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_sysborough' ,
pk : $("#pk").val(),
language_code: $("#langCode").val(),
component_type: 'ddslick',
country_id: country_id,
city_id: city_id,
}
})
ajaxCities.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-boroughs').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'İlçeler Bulunamamıştır...',
'İlçeler bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#dropdownBoroughs').ddslick({
height : 200,
data : data,
width:'98%',
selectText: "Select your preferred social network",
//showSelectedHTML : false,
defaultSelectedIndex: 3,
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
}
});
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-boroughs').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'İlçeler Bulunamamıştır...',
'İlçeler bulunamamıştır...');
},
})
ajaxCities.ajaxCallWidget('call');
} else {
/*$('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#load-imager-boroughs').loadImager('appendImage'); */
}
}
/**
* filling cities drop down for popup window (update operation)
* @returns {undefined}
* @author <NAME>
* @since 24/08/2016
*/
window.fillCitiesPopup = function(row) {
var ddData = $('#dropdownCountriesPopup').data('ddslick')
var country_id = ddData.selectedData.value;
var country = ddData.selectedData.text;
country = $.trim(country).toLowerCase();
if(country == 'türkiye') {
$("#city_popup").removeClass('validate[required]');
$('#osbFormPopup').validationEngine('hide');
$('#dropdownCitiesPopup').ddslick('destroy');
$('#city_popup').hide();
$('#load-imager-cities-popup').loadImager();
$('#load-imager-cities-popup').loadImager('appendImage');
//alert(country);
var ajaxCities = $('#load-imager-cities-popup').ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_syscity' ,
pk : $("#pk").val(),
language_code: $("#langCode").val(),
component_type: 'ddslick',
country_id : country_id
}
})
ajaxCities.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-cities-popup').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehirler Bulunamamıştır...',
'Şehirler bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-cities-popup').loadImager('removeLoadImage');
$('#dropdownCitiesPopup').ddslick({
height : 200,
data : data,
width:'98%',
selectText: "Select your preferred social network",
//showSelectedHTML : false,
defaultSelectedIndex: 3,
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
if(selectedData.selectedData.value>0) {
window.fillBoroughsPopup(row);
} else {
$('#dropdownBoroughsPopup').ddslick('destroy');
/*$('#load-imager-boroughs-popup').loadImager();
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
$('#load-imager-boroughs-popup').loadImager('appendImage'); */
}
}
});
if(window.dropdownCityControler) {
$('#dropdownCitiesPopup').ddslick('selectByValue',
{index: ''+row.city_id+''});
window.dropdownCityControler = false;
}
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-cities-popup').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehirler Bulunamamıştır...',
'Şehirler bulunamamıştır...');
},
})
ajaxCities.ajaxCallWidget('call');
} else {
$('#dropdownCitiesPopup').ddslick('destroy');
$('#dropdownBoroughsPopup').ddslick('destroy');
/*$('#load-imager-boroughs-popup').loadImager();
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
$('#load-imager-boroughs-popup').loadImager('appendImage'); */
$('#city_popup').show();
if(!$('#city_popup').hasClass('validate[required]')) {
$("#city_popup").addClass('validate[required]');
}
$('#osbFormPopup').validationEngine('hide');
}
}
/**
* filling boroughs drop down for poup window (update operation)
* @returns {undefined}
* @author <NAME>
* @since 24/08/2016
*/
window.fillBoroughsPopup = function(row) {
$('#dropdownBoroughsPopup').ddslick('destroy');
var ddData = $('#dropdownCitiesPopup').data('ddslick')
var city_id = ddData.selectedData.value;
if(city_id>0) {
$('#load-imager-boroughs-popup').loadImager();
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
$('#load-imager-boroughs-popup').loadImager('appendImage');
var ddData = $('#dropdownCountriesPopup').data('ddslick')
var country_id = ddData.selectedData.value;
var ddData = $('#dropdownCitiesPopup').data('ddslick')
var city_id = ddData.selectedData.value;
var ajaxCities = $('#load-imager-boroughs-popup').ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_sysborough' ,
pk : $("#pk").val(),
language_code: $("#langCode").val(),
component_type: 'ddslick',
country_id: country_id,
city_id: city_id,
}
})
ajaxCities.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'İlçeler Bulunamamıştır...',
'İlçeler bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
$('#dropdownBoroughsPopup').ddslick({
height : 200,
data : data,
width:'98%',
selectText: "Select your preferred social network",
//showSelectedHTML : false,
defaultSelectedIndex: 3,
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
}
});
if(window.dropdownBoroughControler){
$('#dropdownBoroughsPopup').ddslick('selectByValue',
{index: ''+row.borough_id+''});
window.dropdownBoroughControler = false;
}
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
$('#load-imager-boroughs-popup').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'İlçeler Bulunamamıştır...',
'İlçeler bulunamamıştır...');
},
})
ajaxCities.ajaxCallWidget('call');
} else {
/* $('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');
$('#load-imager-boroughs').loadImager('appendImage'); */
}
}
/**
* multilanguage plugin
* @type Lang
*/
var lang = new Lang();
lang.dynamic($('#ln').val(), '/plugins/jquery-lang-js-master/langpack/'+$('#ln').val()+'.json');
lang.init({
defaultLang: 'en'
});
lang.change($('#ln').val());
/**
* !! Important , do not delete
* @type node
*/
var selectedNode;
var sm = $(window).successMessage();
var dm = $(window).dangerMessage();
var wm = $(window).warningMessage();
var wcm = $(window).warningComplexMessage({ denyButtonLabel : 'Vazgeç' ,
actionButtonLabel : 'İşleme devam et'});
/**
* ACL privilege insert form validation engine attached to work
* @since 23/08/2016
*/
$('#osbForm').validationEngine();
/**
* reset button function for OSB insert form
* @returns null
* @author <NAME>
* @since 23/08/2016
*/
window.resetOsbForm = function () {
$('#osbForm').validationEngine('hide');
return false;
}
// Left menuyu oluşturmak için çağırılan fonksiyon...
//$.fn.leftMenuFunction();
/**
* wrapper class for pop up and delete organized industry zone ultimately
* @param {integer} nodeID
* @returns {null}
* @author <NAME>
* @since 24/08/2016
*/
window.deleteOSBUltimatelyDialog= function(id, index){
var id = id;
var index = index;
wcm.warningComplexMessage({onConfirm : function(event, data) {
deleteOsbUltimately(id, index);
}
});
wcm.warningComplexMessage('show', 'OSB Silme İşlemi Gerçekleştirmek Üzeresiniz!',
'Tanımlanmış OSB verisini silmek üzeresiniz, silme işlemi geri alınamaz!! ');
}
/**
* delete organized industrial zone
* @param {type} id
* @param {type} element
* @param {type} machine_group_id
* @returns {undefined}
* @since 23/08/2016
*/
window.deleteOsbUltimately = function(id, index) {
var loaderGridBlock = $("#loading-image-grid-container").loadImager();
loaderGridBlock.loadImager('appendImage');
var id = id;
var index = index;
var ajDeleteAll = $(window).ajaxCall({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data : {
url:'pkDelete_sysOsb' ,
id : id,
pk : $("#pk").val()
}
});
ajDeleteAll.ajaxCall ({
onError : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Silme İşlemi Başarısız...',
'OSB silinememiştir, sistem yöneticisi ile temasa geçiniz...');
console.error('"pkDelete_sysOsb" servis hatası->'+data.errorInfo);
},
onSuccess : function (event, data) {
sm.successMessage({
onShown : function() {
//console.warn(index);
loaderGridBlock.loadImager('removeLoadImage');
/*var node = $('#tt_tree_menu2').tree('find', id);
$('#tt_tree_menu2').tree('remove', node.target);*/
$('#tt_grid_dynamic').datagrid('reload');
//$('#tt_grid_dynamic').datagrid('deleteRow', index);
}
});
sm.successMessage('show', 'OSB Silme İşleminiz Başarılı...',
'OSB silme işleminiz başarılı...')
},
});
ajDeleteAll.ajaxCall('call');
}
/**
* insert OSB wrapper function
* @returns {Boolean}
* @author <NAME>
* @since 23/08/2016
*/
window.insertOsbWrapper = function (e) {
e.preventDefault();
if ($("#osbForm").validationEngine('validate')) {
var ddData = $('#dropdownCountries').data('ddslick');
if(!ddData.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'Ülke Seçiniz', 'Lütfen ülke seçiniz!');
return false;
}
var country = ddData.selectedData.text;
country = $.trim(country).toLowerCase();
if(country == 'türkiye') {
var ddDataCities = $('#dropdownCities').data('ddslick');
if(!ddDataCities.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'Şehir Seçiniz', 'Lütfen şehir seçiniz!');
return false;
}
var ddDataBoroughs = $('#dropdownBoroughs').data('ddslick');
if(!ddDataBoroughs.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'İlçe Seçiniz', 'Lütfen ilçe seçiniz!');
return false;
}
}
insertOsb();
}
return false;
}
/**
* insert OSB
* @returns {undefined}
* @author <NAME>
* @since 23/08/2016
*/
window.insertOsb = function () {
$("#osbInsertBlock").loadImager();
$("#osbInsertBlock").loadImager('appendImage');
var name = $('#name').val();
var name_eng = $('#name_eng').val();
var city = $('#city').val();
var address = $('#address').val();
var postal_code = $('#postal_code').val();
var ddDataCountries = $('#dropdownCountries').data('ddslick');
var country_id = ddDataCountries.selectedData.value;
var city_id = 0;
var ddDataCities = $('#dropdownCities').data('ddslick');
if (typeof ddDataCities != 'undefined'){
city_id = ddDataCities.selectedData.value;
}
var borough_id = 0;
var ddDataBoroughs = $('#dropdownBoroughs').data('ddslick');
if (typeof ddDataBoroughs != 'undefined'){
borough_id = ddDataBoroughs.selectedData.value;
}
var aj = $(window).ajaxCall({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data : {
url:'pkInsert_sysOsb' ,
pk : $("#pk").val(),
language_code : $('#langCode').val(),
name : name,
name_eng : name_eng,
city : city,
country_id : country_id,
city_id : city_id,
borough_id : borough_id,
address : address,
postal_code : postal_code
}
})
aj.ajaxCall ({
onError : function (event, textStatus, errorThrown) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Ekleme İşlemi Başarısız...',
'OSB ekleme işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ')
console.error('"pkInsert_sysOsb" servis hatası->'+textStatus);
},
onSuccess : function (event, data) {
//console.log(data);
var data = data;
sm.successMessage('resetOnShown');
sm.successMessage('show', 'OSB Kayıt İşlemi Başarılı...',
'OSB kayıt işlemini gerçekleştirdiniz... ',
data);
$('#tt_grid_dynamic').datagrid({
queryParams: {
pk: $('#pk').val(),
subject: 'datagrid',
url : 'pkFillOsbList_sysOsb',
sort : 'id',
order : 'desc',
},
});
$('#tt_grid_dynamic').datagrid('enableFilter');
$('#tt_grid_dynamic').datagrid('reload');
$('#osbForm')[0].reset();
$("#osbInsertBlock").loadImager('removeLoadImage');
/*$('#load-imager-boroughs').loadImager();
$('#load-imager-boroughs').loadImager('removeLoadImage');*/
},
onErrorDataNull : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Kayıt İşlemi Başarısız...',
'OSB kayıt işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkInsert_sysOsb" servis datası boştur!!');
},
onErrorMessage : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Kayıt İşlemi Başarısız...',
'OSB kayıt işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkInsert_sysOsb" servis hatası->'+data.errorInfo);
},
onError23503 : function (event, data) {
},
onError23505 : function (event, data) {
dm.dangerMessage({
onShown : function(event, data) {
$('#osbForm')[0].reset();
loaderInsertBlock.loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'OSB Kayıt İşlemi Başarısız...',
'Aynı isim ile OSB yetki kaydı yapılmıştır, yeni bir OSB yetki deneyiniz... ');
}
})
aj.ajaxCall('call');
}
/**
* wrapper for organized ındustrial zone update process
* @param {type} nodeID
* @param {type} nodeName
* @returns {Boolean}
* @author <NAME>
* @since 23/08/2016
*/
window.updateOsbDialog = function (id, row) {
window.gridReloadController = false;
//console.log(row);
BootstrapDialog.show({
title: '"'+ row.name + '" OSB "sini güncellemektesiniz...',
message: function (dialogRef) {
var dialogRef = dialogRef;
var $message = $(' <div class="row">\n\
<div class="col-md-12">\n\
<div id="loading-image-crud-popup" class="box box-primary">\n\
<form id="osbFormPopup" method="get" class="form-horizontal">\n\
<input type="hidden" id="machine_tool_group_id_popup" name="machine_tool_group_id_popup" />\n\
<div class="hr-line-dashed"></div>\n\
<div class="form-group" style="margin-top: 20px;">\n\
<label class="col-sm-2 control-label">OSB</label>\n\
<div class="col-sm-10">\n\
<div class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<div class="tag-container-popup">\n\
<input data-prompt-position="topLeft:70" class="form-control validate[required]" type="text" value="'+row.name+'" name="name_popup" id="name_popup" />\n\
</div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group" style="margin-top: 20px;">\n\
<label class="col-sm-2 control-label">OSB Eng.</label>\n\
<div class="col-sm-10">\n\
<div class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<div class="tag-container-popup">\n\
<input data-prompt-position="topLeft:70" class="form-control validate[required]" type="text" value="'+row.name_eng+'" name="name_eng_popup" id="name_eng_popup" />\n\
</div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group">\n\
<label class="col-sm-2 control-label">Ülke</label>\n\
<div class="col-sm-10">\n\
<div id="load-imager-countries-popup" class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<div id="dropdownCountriesPopup" ></div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group">\n\
<label class="col-sm-2 control-label">Şehir</label>\n\
<div class="col-sm-10">\n\
<div id="load-imager-cities-popup" class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<input data-prompt-position="topLeft:70" class="form-control validate[required]" type="text" name="city_popup" id="city_popup" value="'+row.city+'" /><div id="dropdownCitiesPopup" ></div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group">\n\
<label class="col-sm-2 control-label">İlçe</label>\n\
<div class="col-sm-10">\n\
<div id="load-imager-boroughs-popup" class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<div id="dropdownBoroughsPopup" ></div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group">\n\
<label class="col-sm-2 control-label">Adres</label>\n\
<div class="col-sm-10">\n\
<div class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<textarea data-prompt-position="topLeft:70" class="form-control validate[required]" rows="3" name="address_popup" id="address_popup" placeholder="Adres Giriniz ...">'+row.address+'</textarea>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="form-group" style="margin-top: 20px;">\n\
<label class="col-sm-2 control-label">Posta Kodu</label>\n\
<div class="col-sm-10">\n\
<div class="input-group">\n\
<div class="input-group-addon">\n\
<i class="fa fa-hand-o-right"></i>\n\
</div>\n\
<div class="tag-container-popup">\n\
<input data-prompt-position="topLeft:70" class="form-control validate[required]" type="text" value="'+row.postal_code+'" name="postal_code_popup" id="postal_code_popup" />\n\
</div>\n\
</div>\n\
</div>\n\
</div>\n\
<div class="hr-line-dashed"></div>\n\
<div class="form-group">\n\
<div class="col-sm-10 col-sm-offset-2">\n\
<button id="insertMachPopUp" class="btn btn-primary" type="submit" onclick="return updateOsbWrapper(event, '+id+');">\n\
<i class="fa fa-save"></i> Güncelle </button>\n\
</div>\n\
</div>\n\
</form>\n\
</div>\n\
</div>\n\
</div>');
return $message;
},
type: BootstrapDialog.TYPE_PRIMARY,
onshown : function () {
window.dropdownCityControler = true;
window.dropdownBoroughControler = true;
$('#osbFormPopup').validationEngine();
$("#load-imager-countries-popup").loadImager();
$("#load-imager-countries-popup").loadImager('appendImage');
var ajaxCountriesPopup = $('#load-imager-countries-popup').ajaxCallWidget({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data: { url:'fillComboBox_syscountrys' ,
pk : $("#pk").val(),
language_code : $('#langCode').val(),
component_type: 'ddslick'
}
})
ajaxCountriesPopup.ajaxCallWidget ({
onError : function (event, textStatus,errorThrown) {
dm.dangerMessage({
onShown : function() {
//$('#mach-prod-box').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehir Bulunamamıştır...',
'Şehir bulunamamıştır...');
},
onSuccess : function (event, data) {
var data = $.parseJSON(data);
$('#load-imager-countries-popup').loadImager('removeLoadImage');
$('#dropdownCountriesPopup').ddslick({
height : 200,
data : data,
width:'98%',
search : true,
//imagePosition:"right",
onSelected: function(selectedData){
if(selectedData.selectedData.value>0) {
if(selectedData.selectedData.value>0) {
//alert('seelcted data >0');
window.fillCitiesPopup(row);
} else if(selectedData.selectedData.value == 0) {
//alert('seelcted data 0');
$('#dropdownCitiesPopup').ddslick('destroy');
//$("#city").toggleClass('form-control validate[required]');
$('#city_popup').show();
}
}
}
});
$('#dropdownCountriesPopup').ddslick('selectByValue',
{index: ''+row.country_id+''});
},
onErrorDataNull : function (event, data) {
dm.dangerMessage({
onShown : function() {
//$('#mach-prod-box-popup').loadImager('removeLoadImage');
}
});
dm.dangerMessage('show', 'Şehir Bulunamamıştır...',
'Şehir bulunamamıştır...');
},
})
ajaxCountriesPopup.ajaxCallWidget('call');
},
onhide : function() {
if(window.gridReloadController == true) {
$('#tt_grid_dynamic').datagrid('reload');
}
},
});
return false;
}
/**
* update Organized industri zone wrapper
* @returns {Boolean}
* @author <NAME>
* @since 23/08/2016
*/
window.updateOsbWrapper = function (e, id) {
e.preventDefault();
var id = id;
if ($("#osbFormPopup").validationEngine('validate')) {
var ddData = $('#dropdownCountriesPopup').data('ddslick');
if(!ddData.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'Ülke Seçiniz', 'Lütfen ülke seçiniz!');
return false;
}
var country = ddData.selectedData.text;
country = $.trim(country).toLowerCase();
if(country == 'türkiye') {
var ddDataCities = $('#dropdownCitiesPopup').data('ddslick');
if(!ddDataCities.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'Şehir Seçiniz', 'Lütfen şehir seçiniz!');
return false;
}
var ddDataBoroughs = $('#dropdownBoroughsPopup').data('ddslick');
if(!ddDataBoroughs.selectedData.value > 0) {
wm.warningMessage('resetOnShown');
wm.warningMessage('show', 'İlçe Seçiniz', 'Lütfen ilçe seçiniz!');
return false;
}
}
updateOsb(id);
return false;
}
return false;
}
/**
* update organized industri zone
* @returns {undefined}
* @author <NAME>
* @since 23/08/2016
*/
window.updateOsb = function (id) {
var loader = $('#loading-image-crud-popup').loadImager();
loader.loadImager('appendImage');
var name = $('#name_popup').val();
var name_eng = $('#name_eng_popup').val();
var city = $('#city_popup').val();
var address = $('#address_popup').val();
var postal_code = $('#postal_code_popup').val();
var ddDataCountries = $('#dropdownCountriesPopup').data('ddslick')
var country_id = ddDataCountries.selectedData.value;
var ddDataCities = $('#dropdownCitiesPopup').data('ddslick');
var city_id = 0;
if (typeof ddDataCities != 'undefined'){
city_id = ddDataCities.selectedData.value;
}
var ddDataBoroughs = $('#dropdownBoroughsPopup').data('ddslick');
var borough_id = 0;
if (typeof ddDataBoroughs != 'undefined'){
borough_id = ddDataBoroughs.selectedData.value;
}
var aj = $(window).ajaxCall({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data : {
url:'pkUpdate_sysOsb' ,
pk : $("#pk").val(),
id : id,
language_code : $('#langCode').val(),
name : name,
name_eng : name_eng,
city : city,
country_id : country_id,
city_id : city_id,
borough_id : borough_id,
address : address,
postal_code : postal_code
}
})
aj.ajaxCall ({
onError : function (event, textStatus, errorThrown) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Güncelleme İşlemi Başarısız...',
'OSB güncelleme işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkUpdate_sysOsb" servis hatası->'+textStatus);
},
onSuccess : function (event, data) {
var data = data;
sm.successMessage('resetOnShown');
sm.successMessage('show', 'OSB Güncelleme İşlemi Başarılı...',
'OSB güncelleme işlemini gerçekleştirdiniz... ',
data);
loader.loadImager('removeLoadImage');
$('#loading-image-crud-popup').loadImager();
$('#loading-image-crud-popup').loadImager('removeLoadImage');
window.gridReloadController = true;
},
onErrorDataNull : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Güncelleme İşlemi Başarısız...',
'OSB güncelleme işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkUpdate_sysOsb" servis datası boştur!!');
},
onErrorMessage : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Güncelleme İşlemi Başarısız...',
'OSB güncelleme işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
},
onError23503 : function (event, data) {
},
onError23505 : function (event, data) {
}
})
aj.ajaxCall('call');
}
/**
* active/passive organized industry zone
* @returns {Boolean}
* @author <NAME>
* @since 23/08/2016
*/
window.activePassiveOsbWrapper = function (e, id) {
e.preventDefault();
var id = id;
var domElement = e.target;
wcm.warningComplexMessage({onConfirm : function(event, data) {
activePassiveOsb(id, domElement);
}
});
wcm.warningComplexMessage('show', 'OSB Aktif/Pasif İşlemi Gerçekleştirmek Üzeresiniz!',
'OSB aktif/pasif işlemi gerçekleştirmek üzeresiniz...');
return false;
}
/**
* active or passive organized industry zone
* @returns {undefined}
* @author <NAME>
* @since 23/08/2016
*/
window.activePassiveOsb = function (id, domElement) {
var loader = $("#loading-image-grid-container").loadImager();
loader.loadImager('appendImage');
var id = id;
//console.log(domElement);
var aj = $(window).ajaxCall({
proxy : 'https://proxy.b2argebilisim.com/SlimProxyBoot.php',
data : {
url:'pkUpdateMakeActiveOrPassive_sysOsb' ,
id : id,
pk : $("#pk").val()
}
})
aj.ajaxCall ({
onError : function (event, textStatus, errorThrown) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Aktif/Pasif İşlemi Başarısız...',
'OSB aktif/pasif işlemi, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkUpdateMakeActiveOrPassive_sysOsb" servis hatası->'+textStatus);
},
onSuccess : function (event, data) {
var data = data;
sm.successMessage({
onShown: function( event, data ) {
loader.loadImager('removeLoadImage');
}
});
sm.successMessage('show', 'OSB Aktif/Pasif İşlemi Başarılı...',
'OSB aktif/pasif işlemini gerçekleştirdiniz... ',
data);
if($(domElement).hasClass("fa-minus-circle")){
$(domElement).removeClass("fa-minus-circle");
$(domElement).addClass("fa-plus-circle");
$(domElement).parent().removeClass("btn-primary");
$(domElement).parent().addClass("btn-warning");
} else if($(domElement).hasClass("fa-plus-circle" )) {
$(domElement).removeClass("fa-plus-circle");
$(domElement).addClass("fa-minus-circle");
$(domElement).parent().removeClass("btn-warning");
$(domElement).parent().addClass("btn-primary");
}
},
onErrorDataNull : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Aktif/Pasif İşlemi Başarısız...',
'OSB aktif/pasif işlemi güncelleme işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
console.error('"pkUpdateMakeActiveOrPassive_sysOsb" servis datası boştur!!');
},
onErrorMessage : function (event, data) {
dm.dangerMessage('resetOnShown');
dm.dangerMessage('show', 'OSB Aktif/Pasif İşlemi Başarısız...',
'OSB aktif/pasif işlemi başarısız, sistem yöneticisi ile temasa geçiniz... ');
},
onError23503 : function (event, data) {
},
onError23505 : function (event, data) {
}
})
aj.ajaxCall('call');
}
});
|
aquaruiz/Java-OOP | Polymorphism - Exercise/wildFarm/Mammal.java | package wildFarm;
import java.text.DecimalFormat;
public abstract class Mammal extends Animal{
String livingRegion;
public Mammal(String type, String name, Double weight, String livingRegion) {
super(type, name, weight);
this.livingRegion = livingRegion;
}
@Override
public String toString() {
DecimalFormat weightFormat = new DecimalFormat("#.##");
return String.format("%s[%s, %s, %s, %d]",
this.getClass().getSimpleName(),
this.animalName,
weightFormat.format(this.animalWeight),
this.livingRegion,
this.foodEaten);
}
} |
scryinfo/dp | dots/binary/scry/client_imp.go | <reponame>scryinfo/dp
// Scry Info. All rights reserved.
// license that can be found in the license file.
package scry
import (
"errors"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/scryinfo/dot/dot"
"github.com/scryinfo/dp/dots/auth"
curr "github.com/scryinfo/dp/dots/eth/currency"
"github.com/scryinfo/dp/dots/eth/event"
"github.com/scryinfo/dp/dots/eth/event/subscribe"
"go.uber.org/zap"
"math/big"
)
type clientImp struct {
userAccount *auth.UserAccount
chainWrapper ChainWrapper
Subscriber *subscribe.Subscribe `dot:"5535a065-0d90-46f4-9776-26630676c4c5"`
Currency *curr.Currency `dot:"f76a1aac-ff18-479b-9d51-0166a858bec9"`
Acct *auth.Account `dot:"ca1c6ce4-182b-430a-9813-caeccf83f8ab"`
}
// check if 'clientImp' implements 'Client' interface.
var _ Client = (*clientImp)(nil)
// NewScryClient create a new ScryClient
func NewScryClient(address string, chainWrapper ChainWrapper) Client {
if address == "" {
dot.Logger().Errorln("failed to create client: empty address")
return nil
}
c := &clientImp{
userAccount: &auth.UserAccount{Addr: address},
chainWrapper: chainWrapper,
}
err := dot.GetDefaultLine().ToInjecter().Inject(&c)
if err != nil {
dot.Logger().Errorln("failed to create client", zap.Error(err))
return nil
}
return c
}
func getAccountComponent() (*auth.Account, error) {
logger := dot.Logger()
d, err := dot.GetDefaultLine().ToInjecter().GetByLiveId(auth.AccountTypeId)
if err != nil {
logger.Errorln("loading Binary component failed")
return nil, errors.New("loading Binary component failed")
}
a, ok := d.(*auth.Account)
if !ok {
logger.Errorln("loading Binary component failed")
return nil, errors.New("loading Binary component failed")
}
return a, nil
}
// CreateScryClient create a new Client with a new address
func CreateScryClient(password string, chainWrapper ChainWrapper) (Client, error) {
a, err := getAccountComponent()
if err != nil {
return nil, err
}
ua, err := a.CreateUserAccount(password)
if err != nil {
dot.Logger().Errorln("", zap.NamedError("failed to create client, error:", err))
return nil, err
}
c := &clientImp{
userAccount: ua,
chainWrapper: chainWrapper,
}
err = dot.GetDefaultLine().ToInjecter().Inject(&c)
if err != nil {
dot.Logger().Errorln("", zap.NamedError("failed to create client, error:", err))
return nil, err
}
return c, nil
}
func (c *clientImp) Account() *auth.UserAccount {
return c.userAccount
}
func (c *clientImp) SubscribeEvent(eventName string, callback event.Callback) error {
return c.Subscriber.Subscribe(common.HexToAddress(c.Account().Addr), eventName, callback)
}
func (c *clientImp) UnSubscribeEvent(eventName string) error {
return c.Subscriber.UnSubscribe(common.HexToAddress(c.Account().Addr), eventName)
}
func (c *clientImp) Authenticate(password string) (bool, error) {
return c.Acct.AuthUserAccount(c.Account().Addr, password)
}
func (c *clientImp) TransferEthFrom(from common.Address, password string, value *big.Int, ec *ethclient.Client) error {
tx, err := c.Currency.TransferEth(from, password, common.HexToAddress(c.Account().Addr), value, ec)
if err == nil {
dot.Logger().Debugln("transferEthFrom: " + tx.Hash().String() + string(tx.Data()))
}
return err
}
func (c *clientImp) GetEth(owner common.Address, ec *ethclient.Client) (*big.Int, error) {
return c.Currency.GetEthBalance(owner, ec)
}
|
sagelga/trashmelody | core/src/com/trashmelody/models/trashes/TrashType.java | <filename>core/src/com/trashmelody/models/trashes/TrashType.java
package com.trashmelody.models.trashes;
public enum TrashType {
General, Dangerous, Wet, Recycle
}
|
johnhurt/orgama | core/orgama/src/main/java/org/orgama/server/handler/PutInstanceHandler.java | <reponame>johnhurt/orgama
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.orgama.server.handler;
import com.gwtplatform.dispatch.server.ExecutionContext;
import org.orgama.server.SimpleDataServices;
import org.orgama.shared.action.PutInstance;
import org.orgama.shared.action.PutInstanceResult;
/**
*
* @author kguthrie
*/
public class PutInstanceHandler
extends AbstractHandler<PutInstance, PutInstanceResult> {
@Override
public PutInstanceResult execImpl(PutInstance a, ExecutionContext ec) {
return new PutInstanceResult(SimpleDataServices.put(a.getInstance()));
}
@Override
public void undoImpl(PutInstance a, PutInstanceResult r,
ExecutionContext ec) {
if (r.getResult() == null) {
return; // because nothing happened
}
//If the put instance replaced another instance, put the replaced
//instance back
if (r.getRepaced() != null) {
SimpleDataServices.put(r.getRepaced());
}
else {
}
}
@Override
public Class<PutInstance> getActionType() {
throw new UnsupportedOperationException("Not supported yet.");
}
}
|
kgdunn/peer-review-system | review/migrations/0026_course_base_url.py | <filename>review/migrations/0026_course_base_url.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-04-30 06:35
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('review', '0025_getallownsubmissionsphase'),
]
operations = [
migrations.AddField(
model_name='course',
name='base_url',
field=models.CharField(blank=True, help_text='The base URL', max_length=200),
),
]
|
souless94/main | unused/ViewTimetablePropertiesCommand.java | package seedu.address.logic.commands;
import static java.util.Objects.requireNonNull;
import java.io.File;
import java.util.List;
import seedu.address.commons.core.Messages;
import seedu.address.commons.core.index.Index;
import seedu.address.logic.CommandHistory;
import seedu.address.logic.commands.exceptions.CommandException;
import seedu.address.model.Model;
import seedu.address.model.person.Person;
/**
* view timetable stored folder and download folder from person
*/
public class ViewTimetablePropertiesCommand extends Command {
public static final String COMMAND_WORD = "view_timetable";
public static final String MESSAGE_USAGE =
COMMAND_WORD + ": view timetable download and stored folders from the person identified"
+ "by the index number used in the displayed person list. "
+ "file must be created in the folders. \n"
+ "Parameters : INDEX (must be a positive integer) "
+ "Example: " + COMMAND_WORD + " 1 ";
private final Index index;
/**
* location of the download and stored folder is gotten from the person
*
* @param index of the person in the filtered person list to edit
*/
public ViewTimetablePropertiesCommand(Index index) {
requireNonNull(index);
this.index = index;
}
@Override
public CommandResult execute(Model model, CommandHistory history) throws CommandException {
requireNonNull(model);
List<Person> lastShownList = model.getFilteredPersonList();
if (index.getZeroBased() >= lastShownList.size()) {
throw new CommandException(Messages.MESSAGE_INVALID_PERSON_DISPLAYED_INDEX);
}
Person personToViewTimetable = lastShownList.get(index.getZeroBased());
boolean doesStoredFolderExists = new File(personToViewTimetable.getStoredLocation())
.exists();
boolean doesDownloadFolderExists = new File(personToViewTimetable.getDownloadLocation())
.exists();
String message;
if (!doesDownloadFolderExists) {
message = "there is no such download folder in your computer";
} else if (!doesStoredFolderExists) {
message = "there is no such stored folder in your computer";
} else if (!doesStoredFolderExists && !doesDownloadFolderExists) {
message = "there is no such download and stored folder in your computer";
} else {
message =
"location of download folder is at : " + personToViewTimetable.getDownloadLocation()
+ ".\n"
+ "location of stored folder is at : " + personToViewTimetable
.getStoredLocation()
+ ".\n";
}
return new CommandResult(message);
}
}
|
ViniciusMazon/easy-adopt | api/src/app/models/Addresses.js | const connection = require('../../database/connection');
module.exports = {
async create(address) {
await connection('addresses').insert(address);
return;
},
async edit(id, address) {
await connection('addresses').where('id', id).update(address);
return;
},
};
|
abego/commons | abego-commons-base/src/main/java/org/abego/commons/polling/Polling.java | /*
* MIT License
*
* Copyright (c) 2021 <NAME>, (<EMAIL>)
*
* 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.
*/
package org.abego.commons.polling;
import org.abego.commons.lang.exception.MustNotInstantiateException;
import org.abego.commons.timeout.Timeout;
import org.abego.commons.timeout.TimeoutSupplier;
import org.abego.commons.timeout.TimeoutUncheckedException;
import org.abego.commons.timeout.Timeoutable;
import java.time.Duration;
import java.util.function.Predicate;
import java.util.function.Supplier;
import java.util.function.UnaryOperator;
import static java.lang.System.currentTimeMillis;
/**
* The Polling API, including factory for {@link PollingService} and
* its default instance.
* <p>
* <em>Polling</em> refers to the process of waiting for a certain state and
* periodically checking if the state is reached.
*/
public final class Polling {
private static final int MAX_SLEEP_BETWEEN_POLLS_MILLIS = 100;
Polling() {
throw new MustNotInstantiateException();
}
private static final PollingService INSTANCE =
newPollingService(Timeout.getTimeoutService());
/**
* Returns the default PollingService instance.
* <p>
* The PollingService uses the default
* {@link org.abego.commons.timeout.TimeoutService} instance,
* as provided by
* {@link Timeout#getTimeoutService()}.
*/
public static PollingService getPollingService() {
return INSTANCE;
}
/**
* Returns the newly created PollingService instance.
*/
public static PollingService newPollingService(
TimeoutSupplier timeoutSupplier) {
return PollingServiceImpl.newPollingService(timeoutSupplier);
}
/**
* Return the first value polled from <code>functionToPoll</code> that makes
* <code>isResult(value)</code> evaluate to <code>true</code>.
*
* <p>When <code>condition</code> did not return <code>true</code> within
* <code>timeout</code> call {@code onTimeout} with the last polled value
* and return the result of the function call.</p>
*
* @param functionToPoll the function used to poll for the value
* @param isResult function that returns <code>true</code> when the
* passed value is a possible result value,
* <code>false</code> otherwise.
* @param timeout the duration the method will poll the value
* before calling {@code onTimeout}
* @param onTimeout function to call when "on timeout".
*/
@Timeoutable
public static <T> T poll(
Supplier<T> functionToPoll,
Predicate<T> isResult,
Duration timeout,
UnaryOperator<T> onTimeout) {
long startTime = currentTimeMillis();
long endTime = startTime + timeout.toMillis();
T lastValue;
do {
lastValue = functionToPoll.get();
if (isResult.test(lastValue)) {
return lastValue;
}
// Before polling the next time we sleep a little to give other
// threads a better chance to do their jobs.
// The duration of the sleep adapts over the time: first we poll
// very frequently, i.e. sleep only a little. Then the sleep time
// increments until it reaches MAX_SLEEP_BETWEEN_POLLS_MILLIS.
// This way we can react quickly if the functionToPoll "is fast",
// but don't waste CPU time when the functionToPoll "is slow", i.e.
// hasn't provided the expected value in the fast phase.
long timeToSleep = currentTimeMillis() - startTime;
try {
//noinspection BusyWait
Thread.sleep(Math.min(timeToSleep, MAX_SLEEP_BETWEEN_POLLS_MILLIS));
} catch (InterruptedException e) {
// When the Thread is interrupted behave as if timeouted.
Thread.currentThread().interrupt();
break;
}
} while (currentTimeMillis() < endTime);
return onTimeout.apply(lastValue);
}
/**
* Return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}.
*
* <p>Throw a {@link TimeoutUncheckedException} when {@code isResult} did not
* return {@code true} within {@code timeout}.</p>
*
* <p><em>Polling</em> refers to the process of waiting for a certain state and
* periodically checking if the state is reached.</p>
*
* @param <T> the type of the value to be polled
* @param functionToPoll the function used to poll for the value
* @param isResult function that returns {@code true} when the
* passed value is a possible result value,
* {@code false} otherwise.
* @param timeout the duration the method will poll the value
* before throwing a {@link TimeoutUncheckedException}.
* [Default: {@code timeout()}]
* @return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}
*/
@Timeoutable
public static <T> T poll(Supplier<T> functionToPoll, Predicate<T> isResult, Duration timeout) {
return poll(functionToPoll, isResult, timeout, v -> {
throw new TimeoutUncheckedException();
});
}
/**
* Return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}, using the default
* PollingService.
*
* <p>Throw a {@link TimeoutUncheckedException} when {@code isResult} did not
* return {@code true} within {@code timeout()}.</p>
*
* <p><em>Polling</em> refers to the process of waiting for a certain state and
* periodically checking if the state is reached.</p>
*
* @param <T> the type of the value to be polled
* @param functionToPoll the function used to poll for the value
* @param isResult function that returns {@code true} when the
* passed value is a possible result value,
* {@code false} otherwise.
* @return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}
*/
@Timeoutable
public static <T> T poll(Supplier<T> functionToPoll, Predicate<T> isResult) {
return getPollingService().poll(functionToPoll, isResult);
}
/**
* Return the first value polled from <code>functionToPoll</code> that makes
* <code>isResult(value)</code> evaluate to <code>true</code> or the last
* polled value in case of a timeout.
*
* @param <T> the type of the value to be polled
* @param functionToPoll the function used to poll for the value
* @param isResult function that returns <code>true</code> when the
* passed value is a possible result value,
* <code>false</code> otherwise.
* @param timeout the duration the method will poll the value
* before stop polling and returning the last polled
* value.
* @return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}, or the last
* polled value after the timeout occurred.
*/
@Timeoutable
public static <T> T pollNoFail(
Supplier<T> functionToPoll,
Predicate<T> isResult,
Duration timeout) {
return poll(functionToPoll, isResult, timeout, v -> v);
}
/**
* Return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}, or the last
* polled value after the timeout (defined by {@code timeout()} occurred,
* using the default PollingService.
* <p>
* <em>Polling</em> refers to the process of waiting for a certain state and
* periodically checking if the state is reached.</p>
*
* @param <T> the type of the value to be polled
* @param functionToPoll the function used to poll for the value
* @param isResult function that returns {@code true} when the
* passed value is a possible result value,
* {@code false} otherwise.
* @return the first value polled from {@code functionToPoll} that makes
* {@code isResult(value)} evaluate to {@code true}, or the last
* polled value after the timeout occurred.
*/
@Timeoutable
public static <T> T pollNoFail(Supplier<T> functionToPoll, Predicate<T> isResult) {
return getPollingService().pollNoFail(functionToPoll, isResult);
}
}
|
coco-napky/material-ui-playground | src/svg-icons/image/view-compact.js | import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from '../../SvgIcon';
let ImageViewCompact = (props) => (
<SvgIcon {...props}>
<path d="M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z"/>
</SvgIcon>
);
ImageViewCompact = pure(ImageViewCompact);
ImageViewCompact.displayName = 'ImageViewCompact';
export default ImageViewCompact;
|
dnxbjyj/python-basic | spider/nga_spider/nga_spider/spiders/spider.py | <gh_stars>1-10
# coding:utf-8
import scrapy
from scrapy import Selector
from scrapy import Request
from nga_spider.items import TopicItem,ContentItem
class NgaSpider(scrapy.Spider):
name = 'NgaSpider'
host = 'http://bbs.ngacn.cc'
# start_urls是准备爬的初始页面
start_urls = ['http://bbs.ngacn.cc/thread.php?fid=406']
'''
# 这个是解析函数,如果不特别指明的话,scrapy抓取回来的页面会由这个函数进行解析。
# 对页面的处理和分析工作都在此进行,这个示例里我们只是简单地把页面内容打印出来
def parse(self,resp):
selector = Selector(resp)
# 挑选出所有的标题a标签对象列表
title_list = selector.xpath('//*[@class="topic"]')
# 遍历列表,处理每一个标签
for title in title_list:
# 提取出帖子标题内容
topic = title.xpath('string(.)').extract_first()
# 提取出帖子的url
url = self.host + title.xpath('@href').extract_first()
print topic
print url
'''
# 爬虫的入口,可以做一些初始化的工作,比如从某个文件或数据库中读取起始url
def start_requests(self):
for url in self.start_urls:
# 此处将起始url加入scrapy的待爬取队列,并指定回调解析函数
# scrapy会自行调度,并访问该url然后把内容拿回来
yield Request(url = url,callback = self.parse_page)
# 每个标题的解析函数
def parse_page(self,resp):
selector = Selector(resp)
# 挑选出所有的标题a标签对象列表
title_list = selector.xpath('//*[@class="topic"]')
# 遍历列表,处理每一个标签
for title in title_list:
# 提取出帖子标题内容
topic = title.xpath('string(.)').extract_first()
# 提取出帖子的url
url = self.host + title.xpath('@href').extract_first()
print topic
print url
# 此处继续把解析出的每个帖子地址加入待爬取队列,并指定解析函数
yield Request(url = url,callback = self.parse_topic)
# 可以在此处解析翻页信息,从而实现爬取标题列表的多个页面
# 每个帖子的解析函数
def parse_topic(self,resp):
selector = Selector(resp)
content_list = selector.xpath('//*[@class="postcontent ubbcode"]')
for content in content_list:
content = content.xpath('string(.)').extract_first()
print content
item = ContentItem()
item['url'] = resp.url
item['content'] = content
item['author'] = ''
# 这样调用就行了,scrapy会把这个item自动交给我们的DbPipeline取处理
yield item
# 可以在此处解析翻页信息,从而实现爬取帖子的多个页面 |
gzxishan/OftenPorter | Porter-Core/src/test/java/cn/xishan/oftenporter/porter/local/mixin/HelloMixinToPorter.java | package cn.xishan.oftenporter.porter.local.mixin;
import cn.xishan.oftenporter.porter.core.annotation.MixinTo;
import cn.xishan.oftenporter.porter.core.annotation.PortIn;
import cn.xishan.oftenporter.porter.core.annotation.PortStart;
import cn.xishan.oftenporter.porter.core.base.OftenObject;
import cn.xishan.oftenporter.porter.core.util.LogUtil;
import cn.xishan.oftenporter.porter.local.porter.DelayPorter;
import cn.xishan.oftenporter.porter.local.porter.HelloPorter;
/**
* @author Created by https://github.com/CLovinr on 2017/1/20.
*/
@PortIn
@MixinTo(toPorter = HelloPorter.class)
@MixinTo(toPorter = DelayPorter.class)
public class HelloMixinToPorter
{
@PortStart
public void start()
{
LogUtil.printPos();
}
@PortIn("helloMixinTo")
public String helloMixinTo(OftenObject oftenObject)
{
return "MixinTo!";
}
}
|
igHunterKiller/ouroboros | Ouroboros/Source/oGPU/Tests/gpu_pipeline_state.cpp | <gh_stars>0
// Copyright (c) 2016 <NAME>. See License.txt regarding use.
#include "gpu_pipeline_state.h"
#include <oCore/countof.h>
#include <oMesh/element.h>
#include <VStest_buffer.h>
#include <VStest_pass_through_color.h>
#include <VStest_pos.h>
#include <VStest_texture1d.h>
#include <VStest_texture2d.h>
#include <VStest_texture3d.h>
#include <VStest_texturecube.h>
#include <VStest_color.h>
#include <PStest_buffer.h>
#include <PStest_color.h>
#include <PStest_texcoords_as_color.h>
#include <PStest_texture1d.h>
#include <PStest_texture2d.h>
#include <PStest_texture3d.h>
#include <PStest_texturecube.h>
using namespace ouro::gpu;
namespace ouro {
template<> const char* as_string(const tests::pipeline_state& state)
{
const char* s_names[] =
{
"unknown",
"buffer_test",
"pos_untransformed",
"pos_color",
"lines_untransformed",
"geometry_texcoords_as_color",
"geometry_texture1d_only",
"geometry_texture2d_only",
"geometry_texture3d_only",
"geometry_texturecube_only",
};
return as_string(state, s_names);
}
namespace tests {
root_signature_desc get_root_signature_desc()
{
root_signature_desc desc;
desc.num_samplers = 1;
desc.samplers = &basic::linear_wrap;
desc.num_cbvs = 1;
static const uint32_t stride = sizeof(test_constants);
static const uint32_t max_structs = 2;
desc.struct_strides = &stride;
desc.max_num_structs = &max_structs;
return desc;
}
pipeline_state_desc get_pipeline_state_desc(const pipeline_state& state)
{
static const pipeline_state_desc s_state[] =
{
pipeline_state_desc(),
pipeline_state_desc(VStest_buffer, PStest_buffer, mesh::basic::pos, basic::opaque, basic::front_face, basic::no_depth_stencil, primitive_type::point),
pipeline_state_desc(basic::VSpass_through_pos, basic::PSwhite, mesh::basic::pos, basic::opaque, basic::two_sided, basic::no_depth_stencil ),
pipeline_state_desc(VStest_pos, basic::PSwhite, mesh::basic::pos, basic::opaque, basic::two_sided, basic::depth_test_and_write ),
pipeline_state_desc(VStest_pass_through_color, PStest_color, mesh::basic::pos_col, basic::opaque, basic::two_sided, basic::no_depth_stencil, primitive_type::line ),
pipeline_state_desc(VStest_texture2d, PStest_texcoords_as_color, mesh::basic::pos_uv0, basic::opaque, basic::front_face, basic::depth_test_and_write ),
pipeline_state_desc(VStest_texture1d, PStest_texture1d, mesh::basic::pos_uv0, basic::opaque, basic::front_face, basic::depth_test_and_write ),
pipeline_state_desc(VStest_texture2d, PStest_texture2d, mesh::basic::pos_uv0, basic::opaque, basic::front_face, basic::depth_test_and_write ),
pipeline_state_desc(VStest_texture3d, PStest_texture3d, mesh::basic::pos_uvw, basic::opaque, basic::front_face, basic::depth_test_and_write ),
pipeline_state_desc(VStest_texturecube, PStest_texturecube, mesh::basic::pos_uvw, basic::opaque, basic::front_face, basic::depth_test_and_write ),
};
match_array_e(s_state, pipeline_state);
if (state < pipeline_state::unknown || state >= pipeline_state::count)
throw std::out_of_range(stringf("invalid state %d", (int)state));
return s_state[(int)state];
}
}}
|
costanic/maestro | plugins/periodic.go | <reponame>costanic/maestro
package plugins
// Copyright (c) 2018, Arm Limited and affiliates.
// SPDX-License-Identifier: Apache-2.0
//
// 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.
import (
"errors"
"fmt"
"plugin"
"sync"
"time"
"github.com/armPelionEdge/maestro/log"
"github.com/armPelionEdge/maestroSpecs"
)
type periodicPluginConfig struct {
param *maestroSpecs.CommonParam
callees map[string]*periodicPluginRoutine
path string
callback PeriodicCallback
}
type periodicPluginRoutine struct {
callee func(num int, param *maestroSpecs.CommonParam) (contin bool, err error)
owner *periodicPluginConfig
name string
num int
stop bool
intervalms int
mut sync.Mutex
}
// PeriodicCallback is a function spec which is used for an optionalk
// user supplied callback which is called ever time a plugin's periodic functions are called
type PeriodicCallback func(param interface{})
func validatePeriodicOpts(opts *maestroSpecs.PluginOpts, path string, p *plugin.Plugin) (conf *periodicPluginConfig, err error) {
if opts != nil {
if opts.Periodic != nil {
for _, opt := range opts.Periodic {
if len(opt.FunctionName) > 0 {
var foundSym plugin.Symbol
foundSym, err = p.Lookup(opt.FunctionName)
// cast to PeriodicFunc as defined in maestroSpecs
periodicFunc, ok := foundSym.(func(num int, param *maestroSpecs.CommonParam) (contin bool, err error))
if ok {
if conf == nil {
conf = new(periodicPluginConfig)
conf.callees = make(map[string]*periodicPluginRoutine)
conf.param = new(maestroSpecs.CommonParam)
conf.path = path
}
record := new(periodicPluginRoutine)
record.callee = periodicFunc
record.owner = conf
record.intervalms = opt.IntervalMS
record.name = opt.FunctionName
conf.callees[opt.FunctionName] = record
} else {
err = fmt.Errorf("Symbol %s is not a PeriodicFunc", opt.FunctionName)
}
} else {
err = errors.New("Invalid function name in periodic options")
}
if err == nil && opt.IntervalMS < maestroSpecs.MinimalIntervalForPeriodic {
err = fmt.Errorf("Periodic function %s has bad interval setting", opt.FunctionName)
}
if err != nil {
return
}
}
}
}
return
}
func periodicRunner(r *periodicPluginRoutine) {
for {
r.mut.Lock()
if r.stop {
log.MaestroInfof("Plugin %s - periodic func %s has stopped\n", r.owner.path, r.name)
break
}
r.mut.Unlock()
log.MaestroDebugf("Plugin %s periodic func %s - calling %d time\n", r.owner.path, r.name, r.num)
r.owner.param.Mut.Lock()
c, e := r.callee(r.num, r.owner.param)
if r.owner.callback != nil {
r.owner.callback(r.owner.param.Param)
}
r.owner.param.Mut.Unlock()
r.stop = !c
if e != nil {
log.MaestroErrorf("Error in plugin %s - periodic func %s - %s\n", r.owner.path, r.name, e.Error())
}
r.mut.Lock()
if r.stop {
log.MaestroInfof("Plugin %s - periodic func %s has stopped\n", r.owner.path, r.name)
break
}
r.mut.Unlock()
r.num++
time.Sleep(time.Duration(r.intervalms) * time.Millisecond)
}
r.mut.Unlock()
}
func startPeriodicCalls(conf *periodicPluginConfig) (err error) {
if conf != nil {
for _, periodic := range conf.callees {
go periodicRunner(periodic)
}
}
return
}
func stopPeriodicCall(conf *periodicPluginConfig, routineName string) (err error) {
if conf != nil {
r, ok := conf.callees[routineName]
if ok {
r.mut.Lock()
r.stop = true
r.mut.Unlock()
} else {
err = fmt.Errorf("No periodic of name %s", routineName)
}
} else {
err = fmt.Errorf("No periodic functions")
}
return
}
|
clintjhill/arc-workflows | src/sandbox/db/index.js | var fs = require('fs')
var check = require('./_check-port')
var path = require('path')
var parse = require('@architect/parser')
var dynalite = require('dynalite')
var waterfall = require('run-waterfall')
var dynamo = require('./_get-db-client')
var getAttributeDefinitions = require('./create-table/_get-attribute-definitions')
var getKeySchema = require('./create-table/_get-key-schema')
var clean = require('./create-table/_remove-ttl-and-lambda')
var createTable = require('./create-table')
function init(callback) {
var arcPath = path.join(process.cwd(), '.arc')
var arc = parse(fs.readFileSync(arcPath).toString())
var app = arc.app[0]
var plans = []
// always create a fallback sessions table
plans.push(function _createBackUpSessions(callback) {
var attr = {_idx: '*String'}
var keys = Object.keys(clean(attr))
dynamo.createTable({
TableName: 'arc-sessions',
AttributeDefinitions: getAttributeDefinitions(attr),
KeySchema: getKeySchema(attr, keys),
ProvisionedThroughput: {
ReadCapacityUnits: 5,
WriteCapacityUnits: 5
}
},
function _create() {
// deliberately swallow the error: if it exists already thats ok (this is all in memory)
callback()
})
})
if (arc.tables) {
// kludge; pass ALL indexes into createTable to sort out
var indexes = arc.indexes || []
arc.tables.forEach(table=> {
plans.push(function _createTable(callback) {
createTable({
table,
app,
indexes,
}, callback)
})
})
}
waterfall(plans, function(err) {
if (err) console.log(err)
callback()
})
}
var server
function start(callback) {
var handle = {close(){server.close()}}
check(function _check(err, inUse) {
if (err) throw err
if (inUse) {
server = {close(){}}
init(callback)
}
else {
server = dynalite({
createTableMs: 0
}).listen(5000, function _server(err) {
if (err) {
// if we err then the db has been started elsewhere..
// just try to continue
console.log(err)
}
init(callback)
})
}
})
return handle
}
module.exports = {
start
}
|
alehpineda/flask_bootcamp | 02-Flask-basics/basic_routes.py | from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "hello puppies"
@app.route('/information')
def info():
return "Puppies are cute"
if __name__ == "__main__":
app.run()
|
artoriaschan/leetcode-algorithms | src/training/all/medium/91.numDecodings.js | /*
* @Author: <EMAIL>
* @Date: 2021-09-28 16:32:55
* @LastEditTime: 2021-09-28 16:53:25
* @LastEditors: <EMAIL>
* @Description: https://leetcode-cn.com/problems/decode-ways/
*/
/**
* @param {string} s
* @return {number}
*/
function numDecodings(s) {
const n = s.length;
const f = new Array(n + 1).fill(0);
f[0] = 1;
for (let i = 1; i <= n; ++i) {
if (s[i - 1] !== "0") {
f[i] += f[i - 1];
}
if (i > 1 && s[i - 2] !== "0" && (s[i - 2] - "0") * 10 + (s[i - 1] - "0") <= 26) {
f[i] += f[i - 2];
}
}
return f[n];
}
|
TheShellLand/crossover-source | gnutls/nettle/siv-cmac.h | <gh_stars>1-10
/* siv-cmac.h
AES-SIV, RFC5297
Copyright (C) 2017 <NAME>
This file is part of GNU Nettle.
GNU Nettle is free software: you can redistribute it and/or
modify it under the terms of either:
* 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.
or
* 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.
or both in parallel, as here.
GNU Nettle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see http://www.gnu.org/licenses/.
*/
#ifndef NETTLE_SIV_H_INCLUDED
#define NETTLE_SIV_H_INCLUDED
#include "nettle-types.h"
#include "nettle-meta.h"
#include "cmac.h"
#include "aes.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Name mangling */
#define siv_cmac_set_key nettle_siv_cmac_set_key
#define siv_cmac_encrypt_message nettle_siv_cmac_encrypt_message
#define siv_cmac_decrypt_message nettle_siv_cmac_decrypt_message
#define siv_cmac_aes128_set_key nettle_siv_cmac_aes128_set_key
#define siv_cmac_aes128_encrypt_message nettle_siv_cmac_aes128_encrypt_message
#define siv_cmac_aes128_decrypt_message nettle_siv_cmac_aes128_decrypt_message
#define siv_cmac_aes256_set_key nettle_siv_cmac_aes256_set_key
#define siv_cmac_aes256_encrypt_message nettle_siv_cmac_aes256_encrypt_message
#define siv_cmac_aes256_decrypt_message nettle_siv_cmac_aes256_decrypt_message
/* For SIV, the block size of the underlying cipher shall be 128 bits. */
#define SIV_BLOCK_SIZE 16
#define SIV_DIGEST_SIZE 16
#define SIV_MIN_NONCE_SIZE 1
void
siv_cmac_set_key(struct cmac128_key *cmac_key, void *cmac_cipher, void *ctr_cipher,
const struct nettle_cipher *nc,
const uint8_t *key);
void
siv_cmac_encrypt_message(const struct cmac128_key *cmac_key, const void *cmac_cipher_ctx,
const struct nettle_cipher *nc,
const void *ctr_ctx,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t clength, uint8_t *dst, const uint8_t *src);
int
siv_cmac_decrypt_message(const struct cmac128_key *cmac_key, const void *cmac_cipher,
const struct nettle_cipher *nc,
const void *ctr_cipher,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t mlength, uint8_t *dst, const uint8_t *src);
/*
* SIV mode requires the aad and plaintext when building the IV, which
* prevents streaming processing and it incompatible with the AEAD API.
*/
#define SIV_CMAC_CTX(type) { struct cmac128_key cmac_key; type cmac_cipher; type ctr_cipher; }
/* SIV_CMAC_AES128 */
#define SIV_CMAC_AES128_KEY_SIZE 32
struct siv_cmac_aes128_ctx SIV_CMAC_CTX(struct aes128_ctx);
void
siv_cmac_aes128_set_key(struct siv_cmac_aes128_ctx *ctx, const uint8_t *key);
void
siv_cmac_aes128_encrypt_message(const struct siv_cmac_aes128_ctx *ctx,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t clength, uint8_t *dst, const uint8_t *src);
int
siv_cmac_aes128_decrypt_message(const struct siv_cmac_aes128_ctx *ctx,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t mlength, uint8_t *dst, const uint8_t *src);
/* SIV_CMAC_AES256 */
#define SIV_CMAC_AES256_KEY_SIZE 64
struct siv_cmac_aes256_ctx SIV_CMAC_CTX(struct aes256_ctx);
void
siv_cmac_aes256_set_key(struct siv_cmac_aes256_ctx *ctx, const uint8_t *key);
void
siv_cmac_aes256_encrypt_message(const struct siv_cmac_aes256_ctx *ctx,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t clength, uint8_t *dst, const uint8_t *src);
int
siv_cmac_aes256_decrypt_message(const struct siv_cmac_aes256_ctx *ctx,
size_t nlength, const uint8_t *nonce,
size_t alength, const uint8_t *adata,
size_t mlength, uint8_t *dst, const uint8_t *src);
#ifdef __cplusplus
}
#endif
#endif /* NETTLE_SIV_H_INCLUDED */
|
kstennettlull/dagster | python_modules/libraries/dagster-aws/dagster_aws_tests/ecs_tests/launcher_tests/test_secrets.py | <gh_stars>0
# pylint: disable=redefined-outer-name
# pylint: disable=unused-argument
# pylint: disable=unused-variable
import json
from collections import namedtuple
from unittest.mock import MagicMock, patch
import pytest
Secret = namedtuple("Secret", ["name", "arn"])
@pytest.fixture
def tagged_secret(secrets_manager):
# A secret tagged with "dagster"
name = "tagged_secret"
arn = secrets_manager.create_secret(
Name=name,
SecretString="hello",
Tags=[{"Key": "dagster", "Value": "true"}],
)["ARN"]
yield Secret(name, arn)
@pytest.fixture
def other_secret(secrets_manager):
# A secret without a tag
name = "other_secret"
arn = secrets_manager.create_secret(
Name=name,
SecretString="hello",
)["ARN"]
yield Secret(name, arn)
@pytest.fixture
def configured_secret(secrets_manager):
# A secret explicitly included in the launcher config
name = "configured_secret"
arn = secrets_manager.create_secret(
Name=name,
SecretString=json.dumps({"hello": "world"}),
)["ARN"]
yield Secret(name, arn)
def test_secrets(
ecs,
secrets_manager,
instance_cm,
launch_run,
tagged_secret,
other_secret,
configured_secret,
):
initial_task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
config = {
"secrets": [
{
"name": "HELLO",
"valueFrom": configured_secret.arn + "/hello",
}
],
}
with instance_cm(config) as instance:
launch_run(instance)
# A new task definition is created
task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
assert len(task_definitions) == len(initial_task_definitions) + 1
task_definition_arn = list(set(task_definitions).difference(initial_task_definitions))[0]
task_definition = ecs.describe_task_definition(taskDefinition=task_definition_arn)
task_definition = task_definition["taskDefinition"]
# It includes tagged secrets
secrets = task_definition["containerDefinitions"][0]["secrets"]
assert {"name": tagged_secret.name, "valueFrom": tagged_secret.arn} in secrets
# And configured secrets
assert {
"name": "HELLO",
"valueFrom": configured_secret.arn + "/hello",
} in secrets
# But no other secrets
assert len(secrets) == 2
def test_secrets_backcompat(
ecs,
secrets_manager,
instance_cm,
launch_run,
tagged_secret,
other_secret,
configured_secret,
):
initial_task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
with pytest.warns(DeprecationWarning, match="Setting secrets as a list of ARNs is deprecated"):
with instance_cm({"secrets": [configured_secret.arn]}) as instance:
launch_run(instance)
# A new task definition is created
task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
assert len(task_definitions) == len(initial_task_definitions) + 1
task_definition_arn = list(set(task_definitions).difference(initial_task_definitions))[0]
task_definition = ecs.describe_task_definition(taskDefinition=task_definition_arn)
task_definition = task_definition["taskDefinition"]
# It includes tagged secrets
secrets = task_definition["containerDefinitions"][0]["secrets"]
assert {"name": tagged_secret.name, "valueFrom": tagged_secret.arn} in secrets
# And configured secrets
assert {"name": configured_secret.name, "valueFrom": configured_secret.arn} in secrets
# But no other secrets
assert len(secrets) == 2
def test_empty_secrets(
ecs,
secrets_manager,
instance_cm,
launch_run,
):
initial_task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
with instance_cm({"secrets_tag": None}) as instance:
m = MagicMock()
with patch.object(instance.run_launcher, "secrets_manager", new=m):
launch_run(instance)
m.get_paginator.assert_not_called()
m.describe_secret.assert_not_called()
# A new task definition is created
task_definitions = ecs.list_task_definitions()["taskDefinitionArns"]
assert len(task_definitions) == len(initial_task_definitions) + 1
task_definition_arn = list(set(task_definitions).difference(initial_task_definitions))[0]
task_definition = ecs.describe_task_definition(taskDefinition=task_definition_arn)
task_definition = task_definition["taskDefinition"]
# No secrets
assert not task_definition["containerDefinitions"][0].get("secrets")
|
pasmuss/cmssw | PhysicsTools/MVAComputer/src/ProcMatrix.cc | // -*- C++ -*-
//
// Package: MVAComputer
// Class : ProcMatrix
//
// Implementation:
// Variable processor to apply a matrix transformation to the input
// variables. An n x m matrix applied to n input variables results in
// m output variables.
//
// Author: <NAME>
// Created: Sat Apr 24 15:18 CEST 2007
//
#include <stdlib.h>
#include "PhysicsTools/MVAComputer/interface/VarProcessor.h"
#include "PhysicsTools/MVAComputer/interface/Calibration.h"
using namespace PhysicsTools;
namespace { // anonymous
class ProcMatrix : public VarProcessor {
public:
typedef VarProcessor::Registry::Registry<ProcMatrix,
Calibration::ProcMatrix> Registry;
ProcMatrix(const char *name,
const Calibration::ProcMatrix *calib,
const MVAComputer *computer);
virtual ~ProcMatrix() {}
virtual void configure(ConfIterator iter, unsigned int n) override;
virtual void eval(ValueIterator iter, unsigned int n) const override;
virtual std::vector<double> deriv(ValueIterator iter,
unsigned int n) const override;
private:
class Matrix {
public:
inline Matrix(const Calibration::Matrix *calib) :
rows(calib->rows), cols(calib->columns),
coeffs(calib->elements) {}
inline unsigned int getRows() const { return rows; }
inline unsigned int getCols() const { return cols; }
inline double operator () (unsigned int row,
unsigned int col) const
{ return coeffs[row * cols + col]; }
private:
unsigned int rows;
unsigned int cols;
std::vector<double> coeffs;
};
Matrix matrix;
};
ProcMatrix::Registry registry("ProcMatrix");
ProcMatrix::ProcMatrix(const char *name,
const Calibration::ProcMatrix *calib,
const MVAComputer *computer) :
VarProcessor(name, calib, computer),
matrix(&calib->matrix)
{
}
void ProcMatrix::configure(ConfIterator iter, unsigned int n)
{
if (n != matrix.getCols())
return;
for(unsigned int col = 0; col < matrix.getCols(); col++)
iter++(Variable::FLAG_NONE);
for(unsigned int row = 0; row < matrix.getRows(); row++)
iter << Variable::FLAG_NONE;
}
void ProcMatrix::eval(ValueIterator iter, unsigned int n) const
{
double *sums = (double*)alloca(matrix.getRows() * sizeof(double));
for(unsigned int row = 0; row < matrix.getRows(); row++)
sums[row] = 0.0;
for(unsigned int col = 0; col < matrix.getCols(); col++) {
double val = *iter++;
for(unsigned int row = 0; row < matrix.getRows(); row++)
sums[row] += matrix(row, col) * val;
}
for(unsigned int row = 0; row < matrix.getRows(); row++)
iter(sums[row]);
}
std::vector<double> ProcMatrix::deriv(ValueIterator iter,
unsigned int n) const
{
std::vector<double> result;
result.reserve(matrix.getRows() * matrix.getCols());
for(unsigned int row = 0; row < matrix.getRows(); row++)
for(unsigned int col = 0; col < matrix.getCols(); col++)
result.push_back(matrix(row, col));
return result;
}
} // anonymous namespace
|
likai121788501/libcommon | common/src/main/java/com/serenegiant/widget/AspectScaledGLView.java | <reponame>likai121788501/libcommon
package com.serenegiant.widget;
/*
* libcommon
* utility/helper classes for myself
*
* Copyright (c) 2014-2020 saki <EMAIL>
*
* 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.
*/
import android.content.Context;
import android.content.res.TypedArray;
import android.opengl.Matrix;
import android.util.AttributeSet;
import android.util.Log;
import com.serenegiant.common.R;
import com.serenegiant.graphics.MatrixUtils;
import com.serenegiant.view.MeasureSpecDelegater;
import androidx.annotation.Nullable;
/**
* View/表示内容のスケーリング処理を追加したGLView
* スケーリングモードがSCALE_MODE_KEEP_ASPECTのときはViewのサイズ変更を行う
*/
public class AspectScaledGLView extends GLView
implements IScaledView {
private static final boolean DEBUG = true; // set false on production
private static final String TAG = AspectScaledGLView.class.getSimpleName();
/**
* スケールモード
*/
@ScaleMode
private int mScaleMode;
/**
* 表示内容のアスペクト比
* 0以下なら無視される
*/
private double mRequestedAspect;
/**
* スケールモードがキープアスペクトの場合にViewのサイズをアスペクト比に合わせて変更するかどうか
*/
private boolean mNeedResizeToKeepAspect;
/**
* コンストラクタ
* @param context
*/
public AspectScaledGLView(@Nullable final Context context) {
this(context, null, 0);
}
/**
* コンストラクタ
* @param context
* @param attrs
*/
public AspectScaledGLView(@Nullable final Context context,
@Nullable final AttributeSet attrs) {
this(context, attrs, 0);
}
/**
* コンストラクタ
* @param context
* @param attrs
* @param defStyleAttr
*/
public AspectScaledGLView(@Nullable final Context context,
@Nullable final AttributeSet attrs, final int defStyleAttr) {
super(context, attrs, defStyleAttr);
if (DEBUG) Log.v(TAG, "コンストラクタ:");
final TypedArray a = context.getTheme().obtainStyledAttributes(
attrs, R.styleable.IScaledView, defStyleAttr, 0);
try {
mRequestedAspect = a.getFloat(R.styleable.IScaledView_aspect_ratio, -1.0f);
mScaleMode = a.getInt(R.styleable.IScaledView_scale_mode, SCALE_MODE_KEEP_ASPECT);
mNeedResizeToKeepAspect = a.getBoolean(
R.styleable.IScaledView_resize_to_keep_aspect, true);
} finally {
a.recycle();
}
}
/**
* アスペクト比を保つように大きさを決める
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (DEBUG) Log.v(TAG, "onMeasure:mRequestedAspect=" + mRequestedAspect);
final MeasureSpecDelegater.MeasureSpec spec
= MeasureSpecDelegater.onMeasure(this,
mRequestedAspect, mScaleMode, mNeedResizeToKeepAspect,
widthMeasureSpec, heightMeasureSpec);
super.onMeasure(spec.widthMeasureSpec, spec.heightMeasureSpec);
}
private int prevWidth = -1;
private int prevHeight = -1;
@Override
protected void onLayout(final boolean changed,
final int left, final int top, final int right, final int bottom) {
super.onLayout(changed, left, top, right, bottom);
final int width = right - left;
final int height = bottom - top;
if (DEBUG) Log.v(TAG, String.format("onLayout:(%dx%d)", width, height));
if ((width == 0) || (height == 0)) return;
if ((prevWidth != width) || (prevHeight != height)) {
prevWidth = width;
prevHeight = height;
onResize(width, height);
}
init();
}
protected void onResize(final int width, final int height) {
}
//================================================================================
// IScaledView
//================================================================================
/**
* アスペクト比を設定する。アスペクト比=<code>幅 / 高さ</code>.
*/
@Override
public void setAspectRatio(final double aspectRatio) {
if (DEBUG) Log.v(TAG, "setAspectRatio");
if (mRequestedAspect != aspectRatio) {
mRequestedAspect = aspectRatio;
requestLayout();
}
}
/**
* アスペクト比を設定する
* @param width
* @param height
*/
@Override
public void setAspectRatio(final int width, final int height) {
if ((width > 0) && (height > 0)) {
setAspectRatio(width / (double)height);
}
}
@Override
public double getAspectRatio() {
return mRequestedAspect;
}
@Override
public void setScaleMode(@ScaleMode final int scaleMode) {
if (DEBUG) Log.v(TAG, "setScaleMode:" + scaleMode);
if (mScaleMode != scaleMode) {
mScaleMode = scaleMode;
requestLayout();
}
}
@ScaleMode
@Override
public int getScaleMode() {
return mScaleMode;
}
//================================================================================
// 実際の実装
//================================================================================
/**
* 拡大縮小回転状態をリセット
*/
protected void init() {
final int viewWidth = getWidth();
final int viewHeight = getHeight();
final double videoWidth = mRequestedAspect > 0 ? mRequestedAspect * viewHeight : viewHeight;
final double videoHeight = viewHeight;
if (DEBUG) Log.v(TAG, String.format("init:(%dx%d),mScaleMode=%d",
viewWidth ,viewHeight, mScaleMode) );
// apply matrix
final float[] transform = new float[16];
Matrix.setIdentityM(transform, 0);
switch (mScaleMode) {
case SCALE_MODE_STRETCH_TO_FIT: // これは引き伸ばすので何もしない
// 何もしない
break;
case SCALE_MODE_KEEP_ASPECT:
case SCALE_MODE_CROP: // FIXME もう少し式を整理できそう
final double scaleX = viewWidth / videoWidth;
final double scaleY = viewHeight / videoHeight;
final double scale = (mScaleMode == SCALE_MODE_CROP)
? Math.max(scaleX, scaleY) // SCALE_MODE_CROP
: Math.min(scaleX, scaleY); // SCALE_MODE_KEEP_ASPECT
final float width = (float)(scale * videoWidth);
final float height = (float)(scale * videoHeight);
if (DEBUG) Log.v(TAG, String.format("size(%1.0f,%1.0f),scale(%f,%f),mat(%f,%f)",
width, height, scaleX, scaleY, width / viewWidth, height / viewHeight));
Matrix.scaleM(transform, 0,
width / viewWidth, height / viewHeight, 1.0f);
break;
}
if (DEBUG) Log.v(TAG, "init:" + MatrixUtils.toGLMatrixString(transform));
setTransform(transform);
}
}
|
rafap19/Curso-Js | Curso_Js_Programador_a_bordo/Escopos/ex01/ex01.js | /* Escopo é oque define a visibilidade das variáveis e funções,dependendo do escopo da qual essas variáveis e funções pertencem elas podem ser ou não visíveis em outros lugares */
/* Escopo Global: é aquele que é declarado no arquivo principal do js,ou seja é acessível em toda a aplicação,neste caso declaramos a var nome, que no caso foi exibida como função e de maneira comum e continua funcionando*/
var nome = 'Rafael'
console.log(nome);
function imprimeNome() {
console.log(nome);
}
imprimeNome();
|
serjpetrenko/hound | spec/services/update_repo_status_spec.rb | require "rails_helper"
describe UpdateRepoStatus do
describe "#call" do
it "updates the repo name" do
expected_repo_name = "foo/bar"
repo = create(:repo, :active)
payload = double(
"Payload",
github_repo_id: repo.github_id,
full_repo_name: expected_repo_name,
private_repo?: repo.private,
)
UpdateRepoStatus.new(payload).call
repo.reload
expect(repo.name).to eq(expected_repo_name)
end
it "updates the private flag for repo" do
expected_status = true
repo = create(:repo, :active)
payload = double(
"Payload",
github_repo_id: repo.github_id,
full_repo_name: repo.name,
private_repo?: expected_status,
)
UpdateRepoStatus.new(payload).call
repo.reload
expect(repo.private).to eq(expected_status)
end
end
end
|
tyang513/tyang513.github.io.example | gateway-zuul2/gateway-zuul2/src/main/java/com/talkingdata/framework/gateway/protocol/GatewayPushMessageSenderInitializer.java | package com.talkingdata.framework.gateway.protocol;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.netflix.zuul.netty.server.push.PushConnectionRegistry;
import com.netflix.zuul.netty.server.push.PushMessageSender;
import com.netflix.zuul.netty.server.push.PushMessageSenderInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* SamplePushMessageSenderInitializer
*
* @author tao.yang
* @date 2019-10-25
*/
@Singleton
public class GatewayPushMessageSenderInitializer extends PushMessageSenderInitializer {
/**
* 日志
*/
private static final Logger logger = LoggerFactory.getLogger(GatewayPushMessageSenderInitializer.class);
/**
*
*/
private final PushMessageSender pushMessageSender;
/**
* 默认的构造函数
*
* @param pushConnectionRegistry
*/
@Inject
public GatewayPushMessageSenderInitializer(PushConnectionRegistry pushConnectionRegistry) {
super(pushConnectionRegistry);
pushMessageSender = new GatewayPushMessageSender(pushConnectionRegistry);
}
@Override
protected PushMessageSender getPushMessageSender(PushConnectionRegistry pushConnectionRegistry) {
return pushMessageSender;
}
}
|
caribouW3/KITE-Hackathon | KITE-Common/src/main/java/com/cosmo/kite/stats/RTCIceCandidateStats.java | /*
* Copyright (C) CoSMo Software Consulting Pte. Ltd. - All Rights Reserved
*/
package com.cosmo.kite.stats;
import javax.json.Json;
import javax.json.JsonObjectBuilder;
import java.util.Map;
/**
* RTCIceCandidateStats, with attributes ip, port, protocol, candidateType, priority, url
*/
public class RTCIceCandidateStats extends RTCStatObject {
private String ip, port, protocol, candidateType, priority, url;
/**
* Instantiates a new Rtc ice candidate stats.
*
* @param statObject the stat object
*/
public RTCIceCandidateStats(Map<Object, Object> statObject) {
this.setId(getStatByName(statObject, "id"));
this.ip = getStatByName(statObject, "ip");
this.port = getStatByName(statObject, "port");
this.protocol = getStatByName(statObject, "protocol");
this.candidateType = getStatByName(statObject, "candidateType");
this.priority = getStatByName(statObject, "priority");
this.url = getStatByName(statObject, "url");
}
@Override
public JsonObjectBuilder getJsonObjectBuilder() {
JsonObjectBuilder jsonObjectBuilder =
Json.createObjectBuilder()
.add("ip", this.ip)
.add("port", this.port)
.add("protocol", this.protocol)
.add("candidateType", this.candidateType)
.add("priority", this.priority)
.add("url", this.url);
return jsonObjectBuilder;
}
}
|
wpradnyana/andromda | andromda-utils/src/test/java/org/andromda/utils/DateUtilsHelperTest.java | package org.andromda.utils;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
/**
*
*/
public class DateUtilsHelperTest
{
/**
* @throws Exception
*/
@Test
public void testJavaToPerlFormat() throws Exception
{
final String[][] fixture = new String[][]{new String[]{"yyyy/MM/dd", "%Y/%m/%d"},
new String[]{"dddd/MM/yyyy HH:mm:ss", "%A/%m/%Y %H:%M:%S"},
new String[]{"yy-MMMM-ddd", "%y-%B-%a"}};
for (String[] strings : fixture)
{
assertEquals(DateUtilsHelper.formatJavaToPerl(strings[0]), strings[1]);
}
}
/**
* @throws Exception
*/
@Test
public void testContainsTimeFormat() throws Exception
{
final Object[][] fixture = new Object[][]{new Object[]{"%Y/%m/%d", Boolean.FALSE},
new Object[]{"%A/%m/%Y %H:%M:%S", Boolean.TRUE},
new Object[]{"%y-%B-%a", Boolean.FALSE}};
for (Object[] objects : fixture)
{
assertEquals(DateUtilsHelper.containsTimeFormat((String) objects[0]), objects[1]);
}
}
}
|
my0k/go-competitive | lib/common/reverse_test.go | <gh_stars>1-10
package common
import (
"reflect"
"testing"
)
func TestReverseMyself(t *testing.T) {
testcases := []struct {
title string
arg, res []interface{}
}{
{
"int",
[]interface{}{0, 1, 2, 3, 4},
[]interface{}{4, 3, 2, 1, 0},
},
{
"float64",
[]interface{}{0.0, 1.1, 2.2, 3.3, 4.4},
[]interface{}{4.4, 3.3, 2.2, 1.1, 0.0},
},
{
"rune",
[]interface{}{'a', 'b', 'c', 'd', 'e'},
[]interface{}{'e', 'd', 'c', 'b', 'a'},
},
{
"string",
[]interface{}{"aaa", "bbb", "ccc", "ddd", "eee"},
[]interface{}{"eee", "ddd", "ccc", "bbb", "aaa"},
},
}
for _, tc := range testcases {
t.Run(tc.title, func(t *testing.T) {
ReverseMyself(tc.arg)
if !reflect.DeepEqual(tc.arg, tc.res) {
t.Errorf("got %v, want %v", tc.arg, tc.res)
}
})
}
}
func TestRotateMyself(t *testing.T) {
testcases := []struct {
title string
times int
arg, res []interface{}
}{
{
"int",
2,
[]interface{}{0, 1, 2, 3, 4},
[]interface{}{2, 3, 4, 0, 1},
},
{
"int full",
5,
[]interface{}{0, 1, 2, 3, 4},
[]interface{}{0, 1, 2, 3, 4},
},
{
"float64",
2,
[]interface{}{0.0, 1.1, 2.2, 3.3, 4.4},
[]interface{}{2.2, 3.3, 4.4, 0.0, 1.1},
},
{
"rune",
2,
[]interface{}{'a', 'b', 'c', 'd', 'e'},
[]interface{}{'c', 'd', 'e', 'a', 'b'},
},
{
"string",
2,
[]interface{}{"aaa", "bbb", "ccc", "ddd", "eee"},
[]interface{}{"ccc", "ddd", "eee", "aaa", "bbb"},
},
}
for _, tc := range testcases {
t.Run(tc.title, func(t *testing.T) {
RotateMyself(tc.arg, tc.times)
if !reflect.DeepEqual(tc.arg, tc.res) {
t.Errorf("got %v, want %v", tc.arg, tc.res)
}
})
}
}
|
wangkaiwd/player | src/router/lazyLoading.js | <gh_stars>10-100
const lazyLoading = (dir) => () => import(`views/${dir}`);
export default lazyLoading;
|
9ndres/Ray-Tracing-Gems-II | Chapter_14/include/Structures.h | <reponame>9ndres/Ray-Tracing-Gems-II
/* Copyright (c) 2018-2021, NVIDIA CORPORATION. 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 NVIDIA CORPORATION 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 ``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.
*/
#pragma once
#include "Common.h"
#include "..\shaders\shared.h"
#include "Scene.h"
//--------------------------------------------------------------------------------------
// Global Structures
//--------------------------------------------------------------------------------------
struct ConfigInfo
{
int width = 1280;
int height = 720;
bool vsync = false;
HINSTANCE instance = NULL;
std::string scenePath = "";
std::string sceneFile = "";
};
//--------------------------------------------------------------------------------------
// D3D12
//--------------------------------------------------------------------------------------
struct D3D12BufferCreateInfo
{
UINT64 size = 0;
UINT64 alignment = 0;
D3D12_HEAP_TYPE heapType = D3D12_HEAP_TYPE_DEFAULT;
D3D12_RESOURCE_FLAGS flags = D3D12_RESOURCE_FLAG_NONE;
D3D12_RESOURCE_STATES state = D3D12_RESOURCE_STATE_COMMON;
D3D12BufferCreateInfo() {}
D3D12BufferCreateInfo(UINT64 InSize, D3D12_RESOURCE_FLAGS InFlags) : size(InSize), flags(InFlags) {}
D3D12BufferCreateInfo(UINT64 InSize, D3D12_HEAP_TYPE InHeapType, D3D12_RESOURCE_STATES InState) :
size(InSize),
heapType(InHeapType),
state(InState) {}
D3D12BufferCreateInfo(UINT64 InSize, D3D12_RESOURCE_FLAGS InFlags, D3D12_RESOURCE_STATES InState) :
size(InSize),
flags(InFlags),
state(InState) {}
D3D12BufferCreateInfo(UINT64 InSize, UINT64 InAlignment, D3D12_HEAP_TYPE InHeapType, D3D12_RESOURCE_FLAGS InFlags, D3D12_RESOURCE_STATES InState) :
size(InSize),
alignment(InAlignment),
heapType(InHeapType),
flags(InFlags),
state(InState) {}
};
struct D3D12ShaderCompilerInfo
{
dxc::DxcDllSupport DxcDllHelper;
IDxcCompiler* compiler = nullptr;
IDxcLibrary* library = nullptr;
};
struct D3D12ShaderInfo
{
LPCWSTR filename = nullptr;
LPCWSTR entryPoint = nullptr;
LPCWSTR targetProfile = nullptr;
DxcDefine* defines = nullptr;
UINT32 defineCount = 0;
D3D12ShaderInfo() {}
D3D12ShaderInfo(LPCWSTR inFilename, LPCWSTR inEntryPoint, LPCWSTR inProfile)
{
filename = inFilename;
entryPoint = inEntryPoint;
targetProfile = inProfile;
}
};
struct D3D12Resources
{
ID3D12Resource* DXROutput;
ID3D12Resource* accumulationBuffer;
ID3D12Resource* materialsBuffer;
std::vector<ID3D12Resource*> sceneVBs;
std::vector<ID3D12Resource*> sceneIBs;
std::vector<D3D12_VERTEX_BUFFER_VIEW> sceneVBViews;
std::vector<D3D12_INDEX_BUFFER_VIEW> sceneIBViews;
std::vector<ID3D12Resource*> sceneTextures;
ID3D12Resource* raytracingDataCB = nullptr;
ID3D12Resource* raytracingDataCBUpload = nullptr;
RaytracingData raytracingData;
UINT raytracingDataCBSize = 0;
ID3D12DescriptorHeap* rtvHeap = nullptr;
ID3D12DescriptorHeap* descriptorHeap = nullptr;
UINT rtvDescSize = 0;
UINT cbvSrvUavDescSize = 0;
Scene scene;
};
struct D3D12Global
{
IDXGIFactory6* factory = nullptr;
IDXGIAdapter1* adapter = nullptr;
ID3D12Device5* device = nullptr;
ID3D12GraphicsCommandList4* cmdList = nullptr;
ID3D12CommandQueue* cmdQueue = nullptr;
ID3D12CommandAllocator* cmdAlloc[2] = { nullptr, nullptr };
IDXGISwapChain3* swapChain = nullptr;
ID3D12Resource* backBuffer[2] = { nullptr, nullptr };
ID3D12Fence* fence = nullptr;
UINT64 fenceValues[2] = { 0, 0 };
HANDLE fenceEvent;
UINT frameIndex = 0;
bool isTearingSupport = false;
ID3D12Debug* debugController = nullptr;
int width = 1280;
int height = 720;
bool vsync = false;
bool renderGui = true;
std::vector<ID3D12Resource*> temporaryBuffers;
};
class LinearGPUAllocator {
public:
void Initialize(D3D12Global& d3d, UINT64 initialSize, UINT64 alignment = 0, D3D12_RESOURCE_FLAGS flags = D3D12_RESOURCE_FLAG_NONE, D3D12_RESOURCE_STATES state = D3D12_RESOURCE_STATE_COMMON, D3D12_HEAP_TYPE heapType = D3D12_HEAP_TYPE_DEFAULT);
D3D12_GPU_VIRTUAL_ADDRESS Allocate(D3D12Global& d3d, UINT64 size, ID3D12Resource*& resource, UINT64& offset);
D3D12_GPU_VIRTUAL_ADDRESS Allocate(D3D12Global& d3d, UINT64 size);
void Reset();
void Destroy();
private:
void AllocateInternal(D3D12Global& d3d, UINT64 size);
bool isInitialized = false;
D3D12BufferCreateInfo bufferInfo;
ID3D12Resource* currentBlock = nullptr;
UINT64 currentOffset = 0;
std::vector<ID3D12Resource*> obsoleteBlocks;
};
//--------------------------------------------------------------------------------------
// DXR
//--------------------------------------------------------------------------------------
struct AccelerationStructureBuffer
{
ID3D12Resource* pResult = nullptr;
ID3D12Resource* pInstanceDesc = nullptr; // only used in top-level AS
void Release()
{
SAFE_RELEASE(pResult);
SAFE_RELEASE(pInstanceDesc);
}
};
struct RtProgram
{
D3D12ShaderInfo info = {};
IDxcBlob* blob = nullptr;
RtProgram() {}
RtProgram(D3D12ShaderInfo shaderInfo)
{
info = shaderInfo;
}
};
struct DXRGlobal
{
Camera camera;
float cameraSpeedAdjustment = 1.0f;
AccelerationStructureBuffer TLAS;
std::vector<AccelerationStructureBuffer> BLASes;
uint64_t tlasSize;
LinearGPUAllocator scratchBuffersCache;
ID3D12RootSignature* globalRootSignature = nullptr;
ID3D12Resource* shaderTable = nullptr;
uint32_t shaderTableRecordSize = 0;
std::vector<uint8_t> shaderTableData;
RtProgram rtProgram;
ID3D12StateObject* rtpso = nullptr;
ID3D12StateObjectProperties* rtpsoInfo = nullptr;
uint32_t frameNumber = 0;
uint32_t accumulatedFrames = 0;
int maxBounces = 8;
bool enableAntiAliasing = true;
float exposureAdjustment = 0.8f;
float skyIntensity = 3.0f;
bool enableAccumulation = true;
bool enableDirectLighting = true;
DirectX::XMMATRIX lastView;
bool enableSun = true;
bool enableHeadlight = false;
float sunIntensity = 1.0f;
float headlightIntensity = 10.0f;
float focusDistance = 10.0f;
float apertureSize = 0.0f;
bool forceAccumulationReset = false;
float sunAzimuth = 295.0f;
float sunElevation = 78.0f;
};
|
Prateekweb/marko | packages/marko/test/components-browser/fixtures-deprecated/widget-destroy-legacy/components/app-bar/widget.js | <reponame>Prateekweb/marko
function Widget(config) {
this.label = config.label;
this.name = "app-bar";
var $el = this.$();
this.appendHtml = function(html) {
$el.append(html);
};
}
Widget.prototype = {};
exports.Widget = Widget;
|
bazhenovc/WildMagic | LibMathematics/Distance/Wm5DistPoint3Frustum3.cpp | <filename>LibMathematics/Distance/Wm5DistPoint3Frustum3.cpp
// Geometric Tools, LLC
// Copyright (c) 1998-2012
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.1 (2010/10/01)
#include "Wm5MathematicsPCH.h"
#include "Wm5DistPoint3Frustum3.h"
namespace Wm5
{
//----------------------------------------------------------------------------
template <typename Real>
DistPoint3Frustum3<Real>::DistPoint3Frustum3 (const Vector3<Real>& point,
const Frustum3<Real>& frustum)
:
mPoint(&point),
mFrustum(&frustum)
{
}
//----------------------------------------------------------------------------
template <typename Real>
const Vector3<Real>& DistPoint3Frustum3<Real>::GetPoint () const
{
return *mPoint;
}
//----------------------------------------------------------------------------
template <typename Real>
const Frustum3<Real>& DistPoint3Frustum3<Real>::GetFrustum () const
{
return *mFrustum;
}
//----------------------------------------------------------------------------
template <typename Real>
Real DistPoint3Frustum3<Real>::Get ()
{
return Math<Real>::Sqrt(GetSquared());
}
//----------------------------------------------------------------------------
template <typename Real>
Real DistPoint3Frustum3<Real>::GetSquared ()
{
// Compute coordinates of point with respect to frustum coordinate system.
Vector3<Real> diff = *mPoint - mFrustum->Origin;
Vector3<Real> test = Vector3<Real>(
diff.Dot(mFrustum->RVector),
diff.Dot(mFrustum->UVector),
diff.Dot(mFrustum->DVector));
// Perform calculations in octant with nonnegative R and U coordinates.
bool rSignChange;
if (test.X() < (Real)0)
{
rSignChange = true;
test.X() = -test.X();
}
else
{
rSignChange = false;
}
bool uSignChange;
if (test.Y() < (Real)0)
{
uSignChange = true;
test.Y() = -test.Y();
}
else
{
uSignChange = false;
}
// Frustum derived parameters.
Real rmin = mFrustum->RBound;
Real rmax = mFrustum->GetDRatio()*rmin;
Real umin = mFrustum->UBound;
Real umax = mFrustum->GetDRatio()*umin;
Real dmin = mFrustum->DMin;
Real dmax = mFrustum->DMax;
Real rminSqr = rmin*rmin;
Real uminSqr = umin*umin;
Real dminSqr = dmin*dmin;
Real minRDDot = rminSqr + dminSqr;
Real minUDDot = uminSqr + dminSqr;
Real minRUDDot = rminSqr + minUDDot;
Real maxRDDot = mFrustum->GetDRatio()*minRDDot;
Real maxUDDot = mFrustum->GetDRatio()*minUDDot;
Real maxRUDDot = mFrustum->GetDRatio()*minRUDDot;
// Algorithm computes closest point in all cases by determining in which
// Voronoi region of the vertices, edges, and faces of the frustum that
// the test point lives.
Vector3<Real> closest;
Real rDot, uDot, rdDot, udDot, rudDot, rEdgeDot, uEdgeDot, t;
if (test.Z() >= dmax)
{
if (test.X() <= rmax)
{
if (test.Y() <= umax)
{
// F-face
closest.X() = test.X();
closest.Y() = test.Y();
closest.Z() = dmax;
}
else
{
// UF-edge
closest.X() = test.X();
closest.Y() = umax;
closest.Z() = dmax;
}
}
else
{
if (test.Y() <= umax)
{
// LF-edge
closest.X() = rmax;
closest.Y() = test.Y();
closest.Z() = dmax;
}
else
{
// LUF-vertex
closest.X() = rmax;
closest.Y() = umax;
closest.Z() = dmax;
}
}
}
else if (test.Z() <= dmin)
{
if (test.X() <= rmin)
{
if (test.Y() <= umin)
{
// N-face
closest.X() = test.X();
closest.Y() = test.Y();
closest.Z() = dmin;
}
else
{
udDot = umin*test.Y() + dmin*test.Z();
if (udDot >= maxUDDot)
{
// UF-edge
closest.X() = test.X();
closest.Y() = umax;
closest.Z() = dmax;
}
else if (udDot >= minUDDot)
{
// U-face
uDot = dmin*test.Y() - umin*test.Z();
t = uDot/minUDDot;
closest.X() = test.X();
closest.Y() = test.Y() - t*dmin;
closest.Z() = test.Z() + t*umin;
}
else
{
// UN-edge
closest.X() = test.X();
closest.Y() = umin;
closest.Z() = dmin;
}
}
}
else
{
if (test.Y() <= umin)
{
rdDot = rmin*test.X() + dmin*test.Z();
if (rdDot >= maxRDDot)
{
// LF-edge
closest.X() = rmax;
closest.Y() = test.Y();
closest.Z() = dmax;
}
else if (rdDot >= minRDDot)
{
// L-face
rDot = dmin*test.X() - rmin*test.Z();
t = rDot/minRDDot;
closest.X() = test.X() - t*dmin;
closest.Y() = test.Y();
closest.Z() = test.Z() + t*rmin;
}
else
{
// LN-edge
closest.X() = rmin;
closest.Y() = test.Y();
closest.Z() = dmin;
}
}
else
{
rudDot = rmin*test.X() + umin*test.Y() + dmin*test.Z();
rEdgeDot = umin*rudDot - minRUDDot*test.Y();
if (rEdgeDot >= (Real)0)
{
rdDot = rmin*test.X() + dmin*test.Z();
if (rdDot >= maxRDDot)
{
// LF-edge
closest.X() = rmax;
closest.Y() = test.Y();
closest.Z() = dmax;
}
else if (rdDot >= minRDDot)
{
// L-face
rDot = dmin*test.X() - rmin*test.Z();
t = rDot/minRDDot;
closest.X() = test.X() - t*dmin;
closest.Y() = test.Y();
closest.Z() = test.Z() + t*rmin;
}
else
{
// LN-edge
closest.X() = rmin;
closest.Y() = test.Y();
closest.Z() = dmin;
}
}
else
{
uEdgeDot = rmin*rudDot - minRUDDot*test.X();
if (uEdgeDot >= (Real)0)
{
udDot = umin*test.Y() + dmin*test.Z();
if (udDot >= maxUDDot)
{
// UF-edge
closest.X() = test.X();
closest.Y() = umax;
closest.Z() = dmax;
}
else if (udDot >= minUDDot)
{
// U-face
uDot = dmin*test.Y() - umin*test.Z();
t = uDot/minUDDot;
closest.X() = test.X();
closest.Y() = test.Y() - t*dmin;
closest.Z() = test.Z() + t*umin;
}
else
{
// UN-edge
closest.X() = test.X();
closest.Y() = umin;
closest.Z() = dmin;
}
}
else
{
if (rudDot >= maxRUDDot)
{
// LUF-vertex
closest.X() = rmax;
closest.Y() = umax;
closest.Z() = dmax;
}
else if (rudDot >= minRUDDot)
{
// LU-edge
t = rudDot/minRUDDot;
closest.X() = t*rmin;
closest.Y() = t*umin;
closest.Z() = t*dmin;
}
else
{
// LUN-vertex
closest.X() = rmin;
closest.Y() = umin;
closest.Z() = dmin;
}
}
}
}
}
}
else
{
rDot = dmin*test.X() - rmin*test.Z();
uDot = dmin*test.Y() - umin*test.Z();
if (rDot <= (Real)0.0)
{
if (uDot <= (Real)0)
{
// point inside frustum
closest = test;
}
else
{
udDot = umin*test.Y() + dmin*test.Z();
if (udDot >= maxUDDot)
{
// UF-edge
closest.X() = test.X();
closest.Y() = umax;
closest.Z() = dmax;
}
else
{
// U-face
t = uDot/minUDDot;
closest.X() = test.X();
closest.Y() = test.Y() - t*dmin;
closest.Z() = test.Z() + t*umin;
}
}
}
else
{
if (uDot <= (Real)0)
{
rdDot = rmin*test.X() + dmin*test.Z();
if (rdDot >= maxRDDot)
{
// LF-edge
closest.X() = rmax;
closest.Y() = test.Y();
closest.Z() = dmax;
}
else
{
// L-face
t = rDot/minRDDot;
closest.X() = test.X() - t*dmin;
closest.Y() = test.Y();
closest.Z() = test.Z() + t*rmin;
}
}
else
{
rudDot = rmin*test.X() + umin*test.Y() + dmin*test.Z();
rEdgeDot = umin*rudDot - minRUDDot*test.Y();
if (rEdgeDot >= (Real)0)
{
rdDot = rmin*test.X() + dmin*test.Z();
if (rdDot >= maxRDDot)
{
// LF-edge
closest.X() = rmax;
closest.Y() = test.Y();
closest.Z() = dmax;
}
else // assert( rdDot >= minRDDot ) from geometry
{
// L-face
t = rDot/minRDDot;
closest.X() = test.X() - t*dmin;
closest.Y() = test.Y();
closest.Z() = test.Z() + t*rmin;
}
}
else
{
uEdgeDot = rmin*rudDot - minRUDDot*test.X();
if (uEdgeDot >= (Real)0)
{
udDot = umin*test.Y() + dmin*test.Z();
if (udDot >= maxUDDot)
{
// UF-edge
closest.X() = test.X();
closest.Y() = umax;
closest.Z() = dmax;
}
else // assert( udDot >= minUDDot ) from geometry
{
// U-face
t = uDot/minUDDot;
closest.X() = test.X();
closest.Y() = test.Y() - t*dmin;
closest.Z() = test.Z() + t*umin;
}
}
else
{
if (rudDot >= maxRUDDot)
{
// LUF-vertex
closest.X() = rmax;
closest.Y() = umax;
closest.Z() = dmax;
}
else // assert( rudDot >= minRUDDot ) from geometry
{
// LU-edge
t = rudDot/minRUDDot;
closest.X() = t*rmin;
closest.Y() = t*umin;
closest.Z() = t*dmin;
}
}
}
}
}
}
diff = test - closest;
// Convert back to original quadrant.
if (rSignChange)
{
closest.X() = -closest.X();
}
if (uSignChange)
{
closest.Y() = -closest.Y();
}
mClosestPoint0 = *mPoint;
// Convert back to original coordinates.
mClosestPoint1 = mFrustum->Origin +
closest.X()*mFrustum->RVector +
closest.Y()*mFrustum->UVector +
closest.Z()*mFrustum->DVector;
return diff.SquaredLength();
}
//----------------------------------------------------------------------------
template <typename Real>
Real DistPoint3Frustum3<Real>::Get (Real t,
const Vector3<Real>& velocity0, const Vector3<Real>& velocity1)
{
Vector3<Real> movedPoint = *mPoint + t*velocity0;
Vector3<Real> movedOrigin = mFrustum->Origin + t*velocity1;
Frustum3<Real> movedFrustum(movedOrigin, mFrustum->DVector,
mFrustum->UVector, mFrustum->RVector, mFrustum->DMin,
mFrustum->DMax, mFrustum->UBound, mFrustum->RBound);
return DistPoint3Frustum3<Real>(movedPoint, movedFrustum).Get();
}
//----------------------------------------------------------------------------
template <typename Real>
Real DistPoint3Frustum3<Real>::GetSquared (Real t,
const Vector3<Real>& velocity0, const Vector3<Real>& velocity1)
{
Vector3<Real> movedPoint = *mPoint + t*velocity0;
Vector3<Real> movedOrigin = mFrustum->Origin + t*velocity1;
Frustum3<Real> movedFrustum(movedOrigin, mFrustum->DVector,
mFrustum->UVector, mFrustum->RVector, mFrustum->DMin,
mFrustum->DMax, mFrustum->UBound, mFrustum->RBound);
return DistPoint3Frustum3<Real>(movedPoint,movedFrustum).GetSquared();
}
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Explicit instantiation.
//----------------------------------------------------------------------------
template WM5_MATHEMATICS_ITEM
class DistPoint3Frustum3<float>;
template WM5_MATHEMATICS_ITEM
class DistPoint3Frustum3<double>;
//----------------------------------------------------------------------------
}
|
jogeo/rally-openstack | tests/unit/common/services/barbican/test_secrets.py | <filename>tests/unit/common/services/barbican/test_secrets.py<gh_stars>0
# Copyright 2018 Red Hat, Inc. <http://www.redhat.com>
#
# 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.
from unittest import mock
from rally_openstack.common.services.key_manager import barbican
from tests.unit import test
class BarbicanServiceTestCase(test.TestCase):
def setUp(self):
super(BarbicanServiceTestCase, self).setUp()
self.clients = mock.MagicMock()
self.name_generator = mock.MagicMock()
self.service = barbican.BarbicanService(
self.clients,
name_generator=self.name_generator)
def atomic_actions(self):
return self.service._atomic_actions
def test__list_secrets(self):
self.assertEqual(
self.service.list_secrets(),
self.service._clients.barbican().secrets.list.return_value
)
self._test_atomic_action_timer(self.atomic_actions(),
"barbican.list_secrets")
def test__create_secret(self):
self.assertEqual(
self.service.create_secret(),
self.service._clients.barbican().secrets.create(
name="fake_secret", payload="rally_data")
)
self._test_atomic_action_timer(self.atomic_actions(),
"barbican.create_secret")
def test__get_secret(self):
self.service.get_secret("fake_secret")
self.service._clients.barbican().secrets.get \
.assert_called_once_with("fake_secret")
self._test_atomic_action_timer(self.atomic_actions(),
"barbican.get_secret")
def test__delete_secret(self):
self.service.delete_secret("fake_secret")
self.service._clients.barbican().secrets.delete \
.assert_called_once_with("fake_secret")
self._test_atomic_action_timer(self.atomic_actions(),
"barbican.delete_secret")
def test__list_containers(self):
self.assertEqual(
self.service.list_container(),
self.service._clients.barbican().containers.list.return_value)
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.list_container")
def test__container_delete(self):
self.service.container_delete("fake_container")
self.service._clients.barbican().containers.delete \
.assert_called_once_with("fake_container")
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.container_delete")
def test__container_create(self):
self.service.generate_random_name = mock.MagicMock(
return_value="container")
self.service.container_create()
self.service._clients.barbican().containers.create \
.assert_called_once_with(name="container", secrets=None)
def test__create_rsa_container(self):
self.service.generate_random_name = mock.MagicMock(
return_value="container")
self.service.create_rsa_container()
self.service._clients.barbican().containers.create_rsa \
.assert_called_once_with(
name="container", private_key=None,
private_key_passphrase=None, public_key=None)
def test__create_generate_container(self):
self.service.generate_random_name = mock.MagicMock(
return_value="container")
self.service.create_certificate_container()
self.service._clients.barbican().containers \
.create_certificate.assert_called_once_with(
certificate=None, intermediates=None,
name="container", private_key=None,
private_key_passphrase=None)
def test__list_orders(self):
self.assertEqual(
self.service.orders_list(),
self.service._clients.barbican().orders.list.return_value)
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.orders_list")
def test__orders_get(self):
self.service.orders_get("fake_order")
self.service._clients.barbican().orders.get \
.assert_called_once_with("fake_order")
def test__orders_delete(self):
self.service.orders_delete("fake_order")
self.service._clients.barbican().orders.delete \
.assert_called_once_with("fake_order")
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.orders_delete")
def test__create_key(self):
self.service.generate_random_name = mock.MagicMock(
return_value="key")
self.service.create_key()
self.service._clients.barbican().orders.create_key \
.assert_called_once_with(
name="key", algorithm="aes", bit_length=256, mode=None,
payload_content_type=None, expiration=None)
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.create_key")
def test__create_asymmetric(self):
self.service.generate_random_name = mock.MagicMock(
return_value="key")
self.service.create_asymmetric()
self.service._clients.barbican().orders.create_asymmetric \
.assert_called_once_with(
algorithm="aes", bit_length=256, expiration=None, name="key",
pass_phrase=None, payload_content_type=None)
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.create_asymmetric")
def test_create_certificate(self):
self.service.generate_random_name = mock.MagicMock(
return_value="key")
self.service.create_certificate()
self.service._clients.barbican().orders.create_certificate \
.assert_called_once_with(
name="key", request_type=None, subject_dn=None,
source_container_ref=None, ca_id=None, profile=None,
request_data=None)
self._test_atomic_action_timer(
self.atomic_actions(), "barbican.create_certificate")
|
DragonJoker/Ashes | source/ashes/renderer/D3D11Renderer/Command/Commands/D3D11BeginQueryCommand.cpp | /*
This file belongs to Ashes.
See LICENSE file in root folder.
*/
#include "Command/Commands/D3D11BeginQueryCommand.hpp"
#include "Miscellaneous/D3D11QueryPool.hpp"
#include "ashesd3d11_api.hpp"
namespace ashes::d3d11
{
BeginQueryCommand::BeginQueryCommand( VkDevice device
, VkQueryPool pool
, uint32_t query
, VkQueryControlFlags flags )
: CommandBase{ device }
, m_query{ *( get( pool )->begin() + query ) }
{
}
void BeginQueryCommand::apply( Context const & context )const
{
context.context->Begin( m_query );
}
CommandPtr BeginQueryCommand::clone()const
{
return std::make_unique< BeginQueryCommand >( *this );
}
}
|
fewwind/MyFirst | mvpdemo/src/main/java/incarmedia/com/mvpdemo/model/IUserInfoListener.java | <gh_stars>0
package incarmedia.com.mvpdemo.model;
import java.util.List;
import incarmedia.com.mvpdemo.bean.User;
/**
* Created by fewwind on 2016/1/27.
*/
public interface IUserInfoListener {
void getUserInfoSuccess(User user,List<User> users);
void getUserInfoFail();
}
|
sreekanth370/presto | presto-main/src/test/java/com/facebook/presto/sql/query/TestOrderedAggregation.java | /*
* 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.
*/
package com.facebook.presto.sql.query;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class TestOrderedAggregation
{
private QueryAssertions assertions;
@BeforeClass
public void init()
{
assertions = new QueryAssertions();
}
@AfterClass(alwaysRun = true)
public void teardown()
{
assertions.close();
assertions = null;
}
@Test
public void testAggregationWithOrderBy()
{
assertions.assertQuery(
"SELECT sum(x ORDER BY y) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
"VALUES (BIGINT '8')");
assertions.assertQuery(
"SELECT array_agg(x ORDER BY y) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
"VALUES ARRAY[4, 1, 3]");
assertions.assertQuery(
"SELECT array_agg(x ORDER BY y DESC) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
"VALUES ARRAY[3, 1, 4]");
assertions.assertQuery(
"SELECT array_agg(x ORDER BY x DESC) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
"VALUES ARRAY[4, 3, 1]");
assertions.assertQuery(
"SELECT array_agg(x ORDER BY x) FROM (VALUES ('a', 2), ('bcd', 5), ('abcd', 1)) t(x, y)",
"VALUES ARRAY['a', 'abcd', 'bcd']");
assertions.assertQuery(
"SELECT array_agg(y ORDER BY x) FROM (VALUES ('a', 2), ('bcd', 5), ('abcd', 1)) t(x, y)",
"VALUES ARRAY[2, 1, 5]");
assertions.assertQuery(
"SELECT array_agg(y ORDER BY x) FROM (VALUES ((1, 2), 2), ((3, 4), 5), ((1, 1), 1)) t(x, y)",
"VALUES ARRAY[1, 2, 5]");
assertions.assertQuery(
"SELECT array_agg(z ORDER BY x, y DESC) FROM (VALUES (1, 2, 2), (2, 2, 3), (2, 4, 5), (3, 4, 4), (1, 1, 1)) t(x, y, z)",
"VALUES ARRAY[2, 1, 5, 3, 4]");
assertions.assertQuery(
"SELECT x, array_agg(z ORDER BY y + z DESC) FROM (VALUES (1, 2, 2), (2, 2, 3), (2, 4, 5), (3, 4, 4), (3, 2, 1), (1, 1, 1)) t(x, y, z) GROUP BY x",
"VALUES (1, ARRAY[2, 1]), (2, ARRAY[5, 3]), (3, ARRAY[4, 1])");
assertions.assertQuery(
"SELECT array_agg(y ORDER BY x.a DESC) FROM (VALUES (CAST(ROW(1) AS ROW(a BIGINT)), 1), (CAST(ROW(2) AS ROW(a BIGINT)), 2)) t(x, y)",
"VALUES ARRAY[2, 1]");
assertions.assertQuery(
"SELECT x, y, array_agg(z ORDER BY z DESC NULLS FIRST) FROM (VALUES (1, 2, NULL), (1, 2, 1), (1, 2, 2), (2, 1, 3), (2, 1, 4), (2, 1, NULL)) t(x, y, z) GROUP BY x, y",
"VALUES (1, 2, ARRAY[NULL, 2, 1]), (2, 1, ARRAY[NULL, 4, 3])");
assertions.assertQuery(
"SELECT x, y, array_agg(z ORDER BY z DESC NULLS LAST) FROM (VALUES (1, 2, 3), (1, 2, 1), (1, 2, 2), (2, 1, 3), (2, 1, 4), (2, 1, NULL)) t(x, y, z) GROUP BY GROUPING SETS ((x), (x, y))",
"VALUES (1, 2, ARRAY[3, 2, 1]), (1, NULL, ARRAY[3, 2, 1]), (2, 1, ARRAY[4, 3, NULL]), (2, NULL, ARRAY[4, 3, NULL])");
assertions.assertQuery(
"SELECT x, y, array_agg(z ORDER BY z DESC NULLS LAST) FROM (VALUES (1, 2, 3), (1, 2, 1), (1, 2, 2), (2, 1, 3), (2, 1, 4), (2, 1, NULL)) t(x, y, z) GROUP BY GROUPING SETS ((x), (x, y))",
"VALUES (1, 2, ARRAY[3, 2, 1]), (1, NULL, ARRAY[3, 2, 1]), (2, 1, ARRAY[4, 3, NULL]), (2, NULL, ARRAY[4, 3, NULL])");
assertions.assertQuery(
"SELECT x, array_agg(DISTINCT z + y ORDER BY z + y DESC) FROM (VALUES (1, 2, 2), (2, 2, 3), (2, 4, 5), (3, 4, 4), (3, 2, 1), (1, 1, 1)) t(x, y, z) GROUP BY x",
"VALUES (1, ARRAY[4, 2]), (2, ARRAY[9, 5]), (3, ARRAY[8, 3])");
assertions.assertQuery(
"SELECT x, sum(cast(x AS double))\n" +
"FROM (VALUES '1.0') t(x)\n" +
"GROUP BY x\n" +
"ORDER BY sum(cast(t.x AS double) ORDER BY t.x)",
"VALUES ('1.0', 1e0)");
assertions.assertQuery(
"SELECT x, y, array_agg(z ORDER BY z) FROM (VALUES (1, 2, 3), (1, 2, 1), (2, 1, 3), (2, 1, 4)) t(x, y, z) GROUP BY GROUPING SETS ((x), (x, y))",
"VALUES (1, NULL, ARRAY[1, 3]), (2, NULL, ARRAY[3, 4]), (1, 2, ARRAY[1, 3]), (2, 1, ARRAY[3, 4])");
assertions.assertFails(
"SELECT array_agg(z ORDER BY z) OVER (PARTITION BY x) FROM (VALUES (1, 2, 3), (1, 2, 1), (2, 1, 3), (2, 1, 4)) t(x, y, z) GROUP BY x, z",
".* Window function with ORDER BY is not supported");
assertions.assertFails(
"SELECT array_agg(DISTINCT x ORDER BY y) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
".* For aggregate function with DISTINCT, ORDER BY expressions must appear in arguments");
assertions.assertFails(
"SELECT array_agg(DISTINCT x+y ORDER BY y) FROM (VALUES (1, 2), (3, 5), (4, 1)) t(x, y)",
".* For aggregate function with DISTINCT, ORDER BY expressions must appear in arguments");
assertions.assertFails(
"SELECT x, array_agg(DISTINCT y ORDER BY z + y DESC) FROM (VALUES (1, 2, 2), (2, 2, 3), (2, 4, 5), (3, 4, 4), (3, 2, 1), (1, 1, 1)) t(x, y, z) GROUP BY x",
".* For aggregate function with DISTINCT, ORDER BY expressions must appear in arguments");
assertions.assertQuery(
"SELECT multimap_agg(x, y ORDER BY z) FROM (VALUES (1, 2, 2), (1, 5, 5), (2, 1, 5), (3, 4, 4), (2, 5, 1), (1, 1, 1)) t(x, y, z)",
"VALUES map_from_entries(ARRAY[row(1, ARRAY[1, 2, 5]), row(2, ARRAY[5, 1]), row(3, ARRAY[4])])");
}
@Test
public void testGroupingSets()
{
assertions.assertQuery(
"SELECT x, array_agg(y ORDER BY y), array_agg(y ORDER BY y) FILTER (WHERE y > 1), count(*) FROM (" +
"VALUES " +
" (1, 3), " +
" (1, 1), " +
" (2, 3), " +
" (2, 4)) t(x, y) " +
"GROUP BY GROUPING SETS ((), (x))",
"VALUES " +
" (1, ARRAY[1, 3], ARRAY[3], BIGINT '2'), " +
" (2, ARRAY[3, 4], ARRAY[3, 4], BIGINT '2'), " +
" (NULL, ARRAY[1, 3, 3, 4], ARRAY[3, 3, 4], BIGINT '4')");
assertions.assertQuery(
"SELECT x, array_agg(DISTINCT y ORDER BY y), count(*) FROM (" +
"VALUES " +
" (1, 3), " +
" (1, 1), " +
" (1, 3), " +
" (2, 3), " +
" (2, 4)) t(x, y) " +
"GROUP BY GROUPING SETS ((), (x))",
"VALUES " +
" (1, ARRAY[1, 3], BIGINT '3'), " +
" (2, ARRAY[3, 4], BIGINT '2'), " +
" (NULL, ARRAY[1, 3, 4], BIGINT '5')");
}
}
|
arunthakur09/Shop_CRM | src/redux/actions/routesAction.js | <reponame>arunthakur09/Shop_CRM
import {
GET_ROUTES_DETAIL_REQUEST, UPDATE_ROUTES_DETAIL_REQUEST,
DELETE_ROUTES_DETAIL_REQUEST, ADD_ROUTES_DETAIL_REQUEST,
GET_ROUTESBYID_DETAIL_REQUEST
} from './types';
export const getRoutesData= () => {
return ({
type: GET_ROUTES_DETAIL_REQUEST,
})
}
export const getRoutesbyidData= (id) => {
return ({
type: GET_ROUTESBYID_DETAIL_REQUEST,
id: id
})
}
export const addNewRoutesData = (routesData ,routesCallback ) => {
return ({
type: ADD_ROUTES_DETAIL_REQUEST ,
payload:{ routesData , routesCallback}
})
}
export const updateRoutesData = (routesData ,routesCallback ) => {
return ({
type: UPDATE_ROUTES_DETAIL_REQUEST ,
payload:{ routesData, routesCallback}
})
}
export const deleteRoutesData= (id, handleDeleteRouteCallback) => {
return ({
type: DELETE_ROUTES_DETAIL_REQUEST,
payload: {
id: id,
callback: handleDeleteRouteCallback
}
})
}
|
open-pay/cfdi-base | src/main/java/mx/grupocorasa/sat/security/PublicKeyLoader.java | package mx.grupocorasa.sat.security;
import mx.grupocorasa.sat.exceptions.KeyException;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
public class PublicKeyLoader implements KeyLoader {
private X509Certificate key;
@SuppressWarnings("unchecked")
public X509Certificate getKey() {
return key;
}
public PublicKeyLoader(String certificateLocation) {
try {
this.setX509Certificate(new FileInputStream(certificateLocation));
} catch (FileNotFoundException fnfe) {
throw new KeyException("La ubicación del archivo de la llave pública es incorrecta", fnfe.getCause());
}
}
public PublicKeyLoader(InputStream crtInputStream) {
this.setX509Certificate(crtInputStream);
}
public void setX509Certificate(InputStream crtInputStream) {
try {
this.key = (X509Certificate) CertificateFactory.getInstance("X.509").generateCertificate(crtInputStream);
} catch (CertificateException e) {
throw new KeyException("Error al obtener el certificado x.509. La codificación puede ser incorrecta.", e.getCause());
}
}
}
|
aditiapratama/blender-compo-up | source/blender/python/intern/bpy_msgbus.c | /*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file
* \ingroup pythonintern
* This file defines '_bpy_msgbus' module, exposed as 'bpy.msgbus'.
*/
#include <Python.h>
#include "../generic/py_capi_utils.h"
#include "../generic/python_utildefines.h"
#include "../mathutils/mathutils.h"
#include "BLI_utildefines.h"
#include "BKE_context.h"
#include "WM_api.h"
#include "WM_message.h"
#include "WM_types.h"
#include "RNA_access.h"
#include "RNA_define.h"
#include "RNA_enum_types.h"
#include "bpy_capi_utils.h"
#include "bpy_gizmo_wrap.h" /* own include */
#include "bpy_intern_string.h"
#include "bpy_rna.h"
#include "bpy_msgbus.h" /* own include */
/* -------------------------------------------------------------------- */
/** \name Internal Utils
* \{ */
#define BPY_MSGBUS_RNA_MSGKEY_DOC \
" :arg key: Represents the type of data being subscribed to\n" \
"\n" \
" Arguments include\n" \
" - :class:`bpy.types.Property` instance.\n" \
" - :class:`bpy.types.Struct` type.\n" \
" - (:class:`bpy.types.Struct`, str) type and property name.\n" \
" :type key: Muliple\n"
/**
* There are multiple ways we can get RNA from Python,
* it's also possible to register a type instead of an instance.
*
* This function handles converting Python to RNA subscription information.
*
* \param py_sub: See #BPY_MSGBUS_RNA_MSGKEY_DOC for description.
* \param msg_key_params: Message key with all members zeroed out.
* \return -1 on failure, 0 on success.
*/
static int py_msgbus_rna_key_from_py(PyObject *py_sub,
wmMsgParams_RNA *msg_key_params,
const char *error_prefix)
{
/* Allow common case, object rotation, location - etc. */
if (BaseMathObject_CheckExact(py_sub)) {
BaseMathObject *py_sub_math = (BaseMathObject *)py_sub;
if (py_sub_math->cb_user == NULL) {
PyErr_Format(PyExc_TypeError, "%s: math argument has no owner", error_prefix);
return -1;
}
py_sub = py_sub_math->cb_user;
/* Common case will use BPy_PropertyRNA_Check below. */
}
if (BPy_PropertyRNA_Check(py_sub)) {
BPy_PropertyRNA *data_prop = (BPy_PropertyRNA *)py_sub;
PYRNA_PROP_CHECK_INT(data_prop);
msg_key_params->ptr = data_prop->ptr;
msg_key_params->prop = data_prop->prop;
}
else if (BPy_StructRNA_Check(py_sub)) {
/* note, this isn't typically used since we don't edit structs directly. */
BPy_StructRNA *data_srna = (BPy_StructRNA *)py_sub;
PYRNA_STRUCT_CHECK_INT(data_srna);
msg_key_params->ptr = data_srna->ptr;
}
/* TODO - property / type, not instance. */
else if (PyType_Check(py_sub)) {
StructRNA *data_type = pyrna_struct_as_srna(py_sub, false, error_prefix);
if (data_type == NULL) {
return -1;
}
msg_key_params->ptr.type = data_type;
}
else if (PyTuple_CheckExact(py_sub)) {
if (PyTuple_GET_SIZE(py_sub) == 2) {
PyObject *data_type_py = PyTuple_GET_ITEM(py_sub, 0);
PyObject *data_prop_py = PyTuple_GET_ITEM(py_sub, 1);
StructRNA *data_type = pyrna_struct_as_srna(data_type_py, false, error_prefix);
if (data_type == NULL) {
return -1;
}
if (!PyUnicode_CheckExact(data_prop_py)) {
PyErr_Format(PyExc_TypeError, "%s: expected property to be a string", error_prefix);
return -1;
}
PointerRNA data_type_ptr = {
.type = data_type,
};
const char *data_prop_str = _PyUnicode_AsString(data_prop_py);
PropertyRNA *data_prop = RNA_struct_find_property(&data_type_ptr, data_prop_str);
if (data_prop == NULL) {
PyErr_Format(PyExc_TypeError,
"%s: struct %.200s does not contain property %.200s",
error_prefix,
RNA_struct_identifier(data_type),
data_prop_str);
return -1;
}
msg_key_params->ptr.type = data_type;
msg_key_params->prop = data_prop;
}
else {
PyErr_Format(PyExc_ValueError, "%s: Expected a pair (type, property_id)", error_prefix);
return -1;
}
}
return 0;
}
/** \} */
/* -------------------------------------------------------------------- */
/** \name Internal Callbacks
* \{ */
#define BPY_MSGBUS_USER_DATA_LEN 2
/* Follow wmMsgNotifyFn spec */
static void bpy_msgbus_notify(bContext *C,
wmMsgSubscribeKey *UNUSED(msg_key),
wmMsgSubscribeValue *msg_val)
{
PyGILState_STATE gilstate;
bpy_context_set(C, &gilstate);
PyObject *user_data = msg_val->user_data;
BLI_assert(PyTuple_GET_SIZE(user_data) == BPY_MSGBUS_USER_DATA_LEN);
PyObject *callback_args = PyTuple_GET_ITEM(user_data, 0);
PyObject *callback_notify = PyTuple_GET_ITEM(user_data, 1);
const bool is_write_ok = pyrna_write_check();
if (!is_write_ok) {
pyrna_write_set(true);
}
PyObject *ret = PyObject_CallObject(callback_notify, callback_args);
if (ret == NULL) {
PyC_Err_PrintWithFunc(callback_notify);
}
else {
if (ret != Py_None) {
PyErr_SetString(PyExc_ValueError, "the return value must be None");
PyC_Err_PrintWithFunc(callback_notify);
}
Py_DECREF(ret);
}
bpy_context_clear(C, &gilstate);
if (!is_write_ok) {
pyrna_write_set(false);
}
}
/* Follow wmMsgSubscribeValueFreeDataFn spec */
static void bpy_msgbus_subscribe_value_free_data(struct wmMsgSubscribeKey *UNUSED(msg_key),
struct wmMsgSubscribeValue *msg_val)
{
PyGILState_STATE gilstate = PyGILState_Ensure();
Py_DECREF(msg_val->owner);
Py_DECREF(msg_val->user_data);
PyGILState_Release(gilstate);
}
/** \} */
/* -------------------------------------------------------------------- */
/** \name Public Message Bus API
* \{ */
PyDoc_STRVAR(
bpy_msgbus_subscribe_rna_doc,
".. function:: subscribe_rna(key, owner, args, notify, options=set())\n"
"\n" BPY_MSGBUS_RNA_MSGKEY_DOC
" :arg owner: Handle for this subscription (compared by identity).\n"
" :type owner: Any type.\n"
" :arg options: Change the behavior of the subscriber.\n"
"\n"
" - ``PERSISTENT`` when set, the subscriber will be kept when remapping ID data.\n"
"\n"
" :type options: set of str.\n");
static PyObject *bpy_msgbus_subscribe_rna(PyObject *UNUSED(self), PyObject *args, PyObject *kw)
{
const char *error_prefix = "subscribe_rna";
PyObject *py_sub = NULL;
PyObject *py_owner = NULL;
PyObject *callback_args = NULL;
PyObject *callback_notify = NULL;
enum {
IS_PERSISTENT = (1 << 0),
};
PyObject *py_options = NULL;
EnumPropertyItem py_options_enum[] = {
{IS_PERSISTENT, "PERSISTENT", 0, ""},
{0, NULL, 0, NULL, NULL},
};
int options = 0;
if (PyTuple_GET_SIZE(args) != 0) {
PyErr_Format(PyExc_TypeError, "%s: only keyword arguments are supported", error_prefix);
return NULL;
}
static const char *_keywords[] = {
"key",
"owner",
"args",
"notify",
"options",
NULL,
};
static _PyArg_Parser _parser = {"OOO!O|O!:subscribe_rna", _keywords, 0};
if (!_PyArg_ParseTupleAndKeywordsFast(args,
kw,
&_parser,
&py_sub,
&py_owner,
&PyTuple_Type,
&callback_args,
&callback_notify,
&PySet_Type,
&py_options)) {
return NULL;
}
if (py_options &&
(pyrna_set_to_enum_bitfield(py_options_enum, py_options, &options, error_prefix)) == -1) {
return NULL;
}
/* Note: we may want to have a way to pass this in. */
bContext *C = (bContext *)BPy_GetContext();
struct wmMsgBus *mbus = CTX_wm_message_bus(C);
wmMsgParams_RNA msg_key_params = {{0}};
wmMsgSubscribeValue msg_val_params = {0};
if (py_msgbus_rna_key_from_py(py_sub, &msg_key_params, error_prefix) == -1) {
return NULL;
}
if (!PyFunction_Check(callback_notify)) {
PyErr_Format(PyExc_TypeError,
"notify expects a function, found %.200s",
Py_TYPE(callback_notify)->tp_name);
return NULL;
}
if (options != 0) {
if (options & IS_PERSISTENT) {
msg_val_params.is_persistent = true;
}
}
/* owner can be anything. */
{
msg_val_params.owner = py_owner;
Py_INCREF(py_owner);
}
{
PyObject *user_data = PyTuple_New(2);
PyTuple_SET_ITEMS(user_data, Py_INCREF_RET(callback_args), Py_INCREF_RET(callback_notify));
msg_val_params.user_data = user_data;
}
msg_val_params.notify = bpy_msgbus_notify;
msg_val_params.free_data = bpy_msgbus_subscribe_value_free_data;
WM_msg_subscribe_rna_params(mbus, &msg_key_params, &msg_val_params, __func__);
if (0) { /* For debugging. */
WM_msg_dump(mbus, __func__);
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(
bpy_msgbus_publish_rna_doc,
".. function:: publish_rna(key)\n"
"\n" BPY_MSGBUS_RNA_MSGKEY_DOC
"\n"
" Notify subscribers of changes to this property\n"
" (this typically doesn't need to be called explicitly since changes will automatically "
"publish updates).\n"
" In some cases it may be useful to publish changes explicitly using more general keys.\n");
static PyObject *bpy_msgbus_publish_rna(PyObject *UNUSED(self), PyObject *args, PyObject *kw)
{
const char *error_prefix = "publish_rna";
PyObject *py_sub = NULL;
if (PyTuple_GET_SIZE(args) != 0) {
PyErr_Format(PyExc_TypeError, "%s: only keyword arguments are supported", error_prefix);
return NULL;
}
static const char *_keywords[] = {
"key",
NULL,
};
static _PyArg_Parser _parser = {"O:publish_rna", _keywords, 0};
if (!_PyArg_ParseTupleAndKeywordsFast(args, kw, &_parser, &py_sub)) {
return NULL;
}
/* Note: we may want to have a way to pass this in. */
bContext *C = (bContext *)BPy_GetContext();
struct wmMsgBus *mbus = CTX_wm_message_bus(C);
wmMsgParams_RNA msg_key_params = {{0}};
if (py_msgbus_rna_key_from_py(py_sub, &msg_key_params, error_prefix) == -1) {
return NULL;
}
WM_msg_publish_rna_params(mbus, &msg_key_params);
Py_RETURN_NONE;
}
PyDoc_STRVAR(bpy_msgbus_clear_by_owner_doc,
".. function:: clear_by_owner(owner)\n"
"\n"
" Clear all subscribers using this owner.\n");
static PyObject *bpy_msgbus_clear_by_owner(PyObject *UNUSED(self), PyObject *py_owner)
{
bContext *C = (bContext *)BPy_GetContext();
struct wmMsgBus *mbus = CTX_wm_message_bus(C);
WM_msgbus_clear_by_owner(mbus, py_owner);
Py_RETURN_NONE;
}
static struct PyMethodDef BPy_msgbus_methods[] = {
{"subscribe_rna",
(PyCFunction)bpy_msgbus_subscribe_rna,
METH_VARARGS | METH_KEYWORDS,
bpy_msgbus_subscribe_rna_doc},
{"publish_rna",
(PyCFunction)bpy_msgbus_publish_rna,
METH_VARARGS | METH_KEYWORDS,
bpy_msgbus_publish_rna_doc},
{"clear_by_owner",
(PyCFunction)bpy_msgbus_clear_by_owner,
METH_O,
bpy_msgbus_clear_by_owner_doc},
{NULL, NULL, 0, NULL},
};
static struct PyModuleDef _bpy_msgbus_def = {
PyModuleDef_HEAD_INIT,
.m_name = "msgbus",
.m_methods = BPy_msgbus_methods,
};
PyObject *BPY_msgbus_module(void)
{
PyObject *submodule;
submodule = PyModule_Create(&_bpy_msgbus_def);
return submodule;
}
/** \} */
|
zhudebin/phoenix | phoenix-core/src/main/java/org/apache/phoenix/schema/types/PDouble.java | <reponame>zhudebin/phoenix<filename>phoenix-core/src/main/java/org/apache/phoenix/schema/types/PDouble.java
/*
* 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.
*/
package org.apache.phoenix.schema.types;
import java.math.BigDecimal;
import java.sql.Types;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.phoenix.schema.SortOrder;
import com.google.common.base.Preconditions;
import com.google.common.primitives.Doubles;
public class PDouble extends PRealNumber<Double> {
public static final PDouble INSTANCE = new PDouble();
private PDouble() {
super("DOUBLE", Types.DOUBLE, Double.class, new DoubleCodec(), 7);
}
@Override
public int compareTo(Object lhs, Object rhs, PDataType rhsType) {
if (rhsType == PDecimal.INSTANCE) {
return -((BigDecimal) rhs).compareTo(BigDecimal.valueOf(((Number) lhs).doubleValue()));
}
return Doubles.compare(((Number) lhs).doubleValue(), ((Number) rhs).doubleValue());
}
@Override
public boolean isFixedWidth() {
return true;
}
@Override
public Integer getByteSize() {
return Bytes.SIZEOF_DOUBLE;
}
@Override
public Integer getScale(Object o) {
if (o == null) {
return null;
}
Double v = (Double) o;
BigDecimal bd = BigDecimal.valueOf(v);
return bd.scale() == 0 ? null : bd.scale();
}
@Override
public Integer getMaxLength(Object o) {
if (o == null) {
return null;
}
Double v = (Double) o;
BigDecimal db = BigDecimal.valueOf(v);
return db.precision();
}
@Override
public byte[] toBytes(Object object) {
byte[] b = new byte[Bytes.SIZEOF_DOUBLE];
toBytes(object, b, 0);
return b;
}
@Override
public int toBytes(Object object, byte[] bytes, int offset) {
if (object == null) {
throw newIllegalDataException(this + " may not be null");
}
return this.getCodec().encodeDouble(((Number) object).doubleValue(),
bytes, offset);
}
@Override
public Object toObject(String value) {
if (value == null || value.length() == 0) {
return null;
}
try {
return Double.parseDouble(value);
} catch (NumberFormatException e) {
throw newIllegalDataException(e);
}
}
@Override
public Object toObject(Object object, PDataType actualType) {
if (object == null) {
return null;
}
double de;
if (equalsAny(actualType, PDouble.INSTANCE, PUnsignedDouble.INSTANCE)) {
return object;
} else if (equalsAny(actualType, PFloat.INSTANCE, PUnsignedFloat.INSTANCE)) {
de = (Float) object;
return de;
} else if (equalsAny(actualType, PLong.INSTANCE, PUnsignedLong.INSTANCE)) {
de = (Long) object;
return de;
} else if (equalsAny(actualType, PInteger.INSTANCE, PUnsignedInt.INSTANCE)) {
de = (Integer) object;
return de;
} else if (equalsAny(actualType, PTinyint.INSTANCE, PUnsignedTinyint.INSTANCE)) {
de = (Byte) object;
return de;
} else if (equalsAny(actualType, PSmallint.INSTANCE, PUnsignedSmallint.INSTANCE)) {
de = (Short) object;
return de;
} else if (actualType == PDecimal.INSTANCE) {
BigDecimal d = (BigDecimal) object;
return d.doubleValue();
}
return throwConstraintViolationException(actualType, this);
}
@Override
public Double toObject(byte[] b, int o, int l, PDataType actualType,
SortOrder sortOrder, Integer maxLength, Integer scale) {
if (l <= 0) {
return null;
}
if (equalsAny(actualType, PDouble.INSTANCE, PUnsignedDouble.INSTANCE, PFloat.INSTANCE,
PUnsignedFloat.INSTANCE, PLong.INSTANCE, PUnsignedLong.INSTANCE, PInteger.INSTANCE,
PUnsignedInt.INSTANCE, PSmallint.INSTANCE, PUnsignedSmallint.INSTANCE, PTinyint.INSTANCE,
PUnsignedTinyint.INSTANCE)) {
return actualType.getCodec().decodeDouble(b, o, sortOrder);
} else if (actualType == PDecimal.INSTANCE) {
BigDecimal bd = (BigDecimal) actualType.toObject(b, o, l, actualType, sortOrder);
return bd.doubleValue();
}
throwConstraintViolationException(actualType, this);
return null;
}
@Override
public boolean isCoercibleTo(PDataType targetType, Object value) {
if (value != null) {
double d = (Double) value;
if (targetType.equals(PUnsignedDouble.INSTANCE)) {
return d >= 0;
} else if (targetType.equals(PFloat.INSTANCE)) {
return Double.isNaN(d)
|| d == Double.POSITIVE_INFINITY
|| d == Double.NEGATIVE_INFINITY
|| (d >= -Float.MAX_VALUE && d <= Float.MAX_VALUE);
} else if (targetType.equals(PUnsignedFloat.INSTANCE)) {
return Double.isNaN(d) || d == Double.POSITIVE_INFINITY
|| (d >= 0 && d <= Float.MAX_VALUE);
} else if (targetType.equals(PUnsignedLong.INSTANCE)) {
return (d >= 0 && d <= Long.MAX_VALUE);
} else if (targetType.equals(PLong.INSTANCE)) {
return (d >= Long.MIN_VALUE && d <= Long.MAX_VALUE);
} else if (targetType.equals(PUnsignedInt.INSTANCE)) {
return (d >= 0 && d <= Integer.MAX_VALUE);
} else if (targetType.equals(PInteger.INSTANCE)) {
return (d >= Integer.MIN_VALUE && d <= Integer.MAX_VALUE);
} else if (targetType.equals(PUnsignedSmallint.INSTANCE)) {
return (d >= 0 && d <= Short.MAX_VALUE);
} else if (targetType.equals(PSmallint.INSTANCE)) {
return (d >= Short.MIN_VALUE && d <= Short.MAX_VALUE);
} else if (targetType.equals(PTinyint.INSTANCE)) {
return (d >= Byte.MIN_VALUE && d < Byte.MAX_VALUE);
} else if (targetType.equals(PUnsignedTinyint.INSTANCE)) {
return (d >= 0 && d < Byte.MAX_VALUE);
}
}
return super.isCoercibleTo(targetType, value);
}
@Override
public boolean isCoercibleTo(PDataType targetType) {
return equalsAny(targetType, this, PDecimal.INSTANCE, PVarbinary.INSTANCE, PBinary.INSTANCE);
}
@Override
public Object getSampleValue(Integer maxLength, Integer arrayLength) {
return RANDOM.get().nextDouble();
}
static class DoubleCodec extends BaseCodec {
@Override
public long decodeLong(byte[] b, int o, SortOrder sortOrder) {
double v = decodeDouble(b, o, sortOrder);
if (v < Long.MIN_VALUE || v > Long.MAX_VALUE) {
throw newIllegalDataException(
"Value " + v + " cannot be cast to Long without changing its value");
}
return (long) v;
}
@Override
public int decodeInt(byte[] b, int o, SortOrder sortOrder) {
double v = decodeDouble(b, o, sortOrder);
if (v < Integer.MIN_VALUE || v > Integer.MAX_VALUE) {
throw newIllegalDataException(
"Value " + v + " cannot be cast to Integer without changing its value");
}
return (int) v;
}
@Override
public byte decodeByte(byte[] b, int o, SortOrder sortOrder) {
double v = decodeDouble(b, o, sortOrder);
if (v < Byte.MIN_VALUE || v > Byte.MAX_VALUE) {
throw newIllegalDataException(
"Value " + v + " cannot be cast to Byte without changing its value");
}
return (byte) v;
}
@Override
public short decodeShort(byte[] b, int o, SortOrder sortOrder) {
double v = decodeDouble(b, o, sortOrder);
if (v < Short.MIN_VALUE || v > Short.MAX_VALUE) {
throw newIllegalDataException(
"Value " + v + " cannot be cast to Short without changing its value");
}
return (short) v;
}
@Override
public double decodeDouble(byte[] b, int o, SortOrder sortOrder) {
Preconditions.checkNotNull(sortOrder);
checkForSufficientLength(b, o, Bytes.SIZEOF_LONG);
if (sortOrder == SortOrder.DESC) {
for (int i = o; i < Bytes.SIZEOF_LONG; i++) {
b[i] = (byte) (b[i] ^ 0xff);
}
}
long l = Bytes.toLong(b, o);
l--;
l ^= (~l >> Long.SIZE - 1) | Long.MIN_VALUE;
return Double.longBitsToDouble(l);
}
@Override
public float decodeFloat(byte[] b, int o, SortOrder sortOrder) {
double v = decodeDouble(b, o, sortOrder);
if (Double.isNaN(v) || v == Double.NEGATIVE_INFINITY
|| v == Double.POSITIVE_INFINITY
|| (v >= -Float.MAX_VALUE && v <= Float.MAX_VALUE)) {
return (float) v;
} else {
throw newIllegalDataException(
"Value " + v + " cannot be cast to Float without changing its value");
}
}
@Override
public int encodeShort(short v, byte[] b, int o) {
return encodeDouble(v, b, o);
}
@Override
public int encodeLong(long v, byte[] b, int o) {
return encodeDouble(v, b, o);
}
@Override
public int encodeInt(int v, byte[] b, int o) {
return encodeDouble(v, b, o);
}
@Override
public int encodeByte(byte v, byte[] b, int o) {
return encodeDouble(v, b, o);
}
@Override
public int encodeDouble(double v, byte[] b, int o) {
checkForSufficientLength(b, o, Bytes.SIZEOF_LONG);
long l = Double.doubleToLongBits(v);
l = (l ^ ((l >> Long.SIZE - 1) | Long.MIN_VALUE)) + 1;
Bytes.putLong(b, o, l);
return Bytes.SIZEOF_LONG;
}
@Override
public int encodeFloat(float v, byte[] b, int o) {
return encodeDouble(v, b, o);
}
@Override
public PhoenixArrayFactory getPhoenixArrayFactory() {
return new PhoenixArrayFactory() {
@Override
public PhoenixArray newArray(PDataType type, Object[] elements) {
return new PhoenixArray.PrimitiveDoublePhoenixArray(type, elements);
}
};
}
}
}
|
eXl-Nic/eXl | include/gen/gridrule.hpp | <gh_stars>0
/*
Copyright 2009-2021 <NAME>
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.
*/
#pragma once
#include <gen/multigrid.hpp>
#include <core/refcobject.hpp>
namespace eXl
{
class EXL_GEN_API GridRule
{
public:
inline static MultiGrid::Direction NextDirection(MultiGrid::Direction iDir)
{
static MultiGrid::Direction nextDir[4] = {MultiGrid::DownDir, MultiGrid::UpDir, MultiGrid::RightDir, MultiGrid::LeftDir};
return nextDir[iDir];
}
inline static MultiGrid::Direction LocalToWorld(MultiGrid::Direction iDir, MultiGrid::Direction iBaseDir)
{
static MultiGrid::Direction rotateDir[4][4] = {{MultiGrid::RightDir, MultiGrid::LeftDir, MultiGrid::UpDir, MultiGrid::DownDir},
{MultiGrid::LeftDir, MultiGrid::RightDir, MultiGrid::DownDir, MultiGrid::UpDir},
{MultiGrid::UpDir, MultiGrid::DownDir, MultiGrid::LeftDir, MultiGrid::RightDir},
{MultiGrid::DownDir, MultiGrid::UpDir, MultiGrid::RightDir, MultiGrid::LeftDir}};
return rotateDir[iBaseDir][iDir];
}
inline static MultiGrid::Direction WorldToLocal(MultiGrid::Direction iDir, MultiGrid::Direction iBaseDir)
{
static MultiGrid::Direction rotateDir[4][4] = {{MultiGrid::RightDir, MultiGrid::LeftDir, MultiGrid::UpDir, MultiGrid::DownDir},
{MultiGrid::LeftDir, MultiGrid::RightDir, MultiGrid::DownDir, MultiGrid::UpDir},
{MultiGrid::DownDir, MultiGrid::UpDir, MultiGrid::RightDir, MultiGrid::LeftDir},
{MultiGrid::UpDir, MultiGrid::DownDir, MultiGrid::LeftDir, MultiGrid::RightDir}};
return rotateDir[iBaseDir][iDir];
}
inline static MultiGrid::BoxKey LocalToWorld(MultiGrid::BoxKey const& iKey, MultiGrid::Direction iBaseDir)
{
MultiGrid::BoxKey newKey;
for(unsigned int i = 0; i<4; ++i)
{
newKey.data[LocalToWorld(static_cast<MultiGrid::Direction>(i), iBaseDir)] = iKey.data[i];
}
return newKey;
}
inline static MultiGrid::BoxKey WorldToLocal(MultiGrid::BoxKey const& iKey, MultiGrid::Direction iBaseDir)
{
MultiGrid::BoxKey newKey;
for(unsigned int i = 0; i<4; ++i)
{
newKey.data[WorldToLocal(static_cast<MultiGrid::Direction>(i), iBaseDir)] = iKey.data[i];
}
return newKey;
}
inline static Vector2i LocalToWorld(Vector2i const& iPos, MultiGrid::Direction iBaseDir)
{
static const unsigned int numRot[] = {2, 0, 3, 1};
Vector2i res = iPos;
for(unsigned int i = 0; i<numRot[iBaseDir]; ++i)
{
res = Vector2i(-res.Y(), res.X());
}
return res;
}
inline static Vector2i WorldToLocal(Vector2i const& iPos, MultiGrid::Direction iBaseDir)
{
static const unsigned int numRot[] = {2, 0, 3, 1};
Vector2i res = iPos;
for(unsigned int i = 0; i<numRot[iBaseDir]; ++i)
{
res = Vector2i(res.Y(), -res.X());
}
return res;
}
inline static AABB2Di LocalToWorld(AABB2Di const& iBox, MultiGrid::Direction iBaseDir)
{
AABB2Di ret;
ret.m_Data[0] = LocalToWorld(iBox.m_Data[0], iBaseDir);
ret.m_Data[1] = LocalToWorld(iBox.m_Data[1], iBaseDir);
return ret;
}
inline static AABB2Di WorldToLocal(AABB2Di const& iBox, MultiGrid::Direction iBaseDir)
{
AABB2Di ret;
ret.m_Data[0] = WorldToLocal(iBox.m_Data[0], iBaseDir);
ret.m_Data[1] = WorldToLocal(iBox.m_Data[1], iBaseDir);
return ret;
}
static MultiGrid::Iterator MoveIter(MultiGrid::Iterator const& iIter, Vector2i const& iOffset, MultiGrid::Direction iDir);
template <typename Identifier>
struct PatternItem
{
Vector2i localPosition;
Identifier Id;
};
template <typename Identifier>
class Pattern
{
public:
class Builder
{
friend class Pattern;
public:
inline Builder& Add(Vector2i const& iPos, Identifier const& iId)
{
PatternItem<Identifier> newPattern = {iPos, iId};
m_Items.push_back(newPattern);
return *this;
}
inline Pattern End()
{
Pattern ret;
for(auto const& item : m_Items)
{
if(ret.m_Box.Empty())
{
ret.m_Box = AABB2Di(item.localPosition, Vector2i::ONE);
}
else
{
ret.m_Box.Absorb(AABB2Di(item.localPosition, Vector2i::ONE));
}
}
ret.m_Items.swap(m_Items);
return ret;
}
protected:
Vector<PatternItem<Identifier> > m_Items;
inline Builder(){};
};
inline static Builder Create(){return Builder();}
inline Vector<PatternItem<Identifier> > const& GetItems() const {return m_Items;}
inline AABB2Di const& GetBox() const {return m_Box;}
inline Pattern(Pattern const& iOther):m_Box(iOther.m_Box), m_Items(iOther.m_Items){}
inline Pattern(Pattern&& iOther):m_Box(iOther.m_Box){m_Items.swap(iOther.m_Items);}
protected:
inline Pattern(){};
AABB2Di m_Box;
Vector<PatternItem<Identifier> > m_Items;
};
template <typename Identifier, typename IdGetter>
static bool Apply(MultiGrid::Iterator const& iBox, Pattern<Identifier> const& iPattern, MultiGrid::Direction iBaseDir, IdGetter& iGetter);
};
template <typename Identifier, typename IdGetter>
bool GridRule::Apply(MultiGrid::Iterator const& iBox, Pattern<Identifier> const& iPattern, MultiGrid::Direction iBaseDir, IdGetter& iGetter)
{
unsigned int numItems = iPattern.GetItems().size();
unsigned int item = 0;
for(; item<numItems; ++item)
{
PatternItem<Identifier> const& curItem = iPattern.GetItems()[item];
MultiGrid::Iterator curBox = iBox.Get(LocalToWorld(curItem.localPosition, iBaseDir));
if(!iGetter.CheckId(curBox, iBaseDir, curItem.Id))
break;
}
if(item == numItems)
{
return true;
}
return false;
}
} |
ferno/t-a-i | src/segment.js | const { Rat } = require('./rat.js')
const { Range } = require('./range.js')
// A segment is a closed-open linear relationship between TAI and Unix time.
// It should be able to handle arbitrary ratios between the two.
// For precision, we deal with ratios of BigInts.
// Segment validity ranges are inclusive-exclusive.
class Segment {
constructor (start, end = { atomic: Rat.INFINITY }, slope = { unixPerAtomic: new Rat(1n) }) {
if (end.atomic.le(start.atomic)) {
throw Error('Segment length must be positive')
}
this.slope = {
unixPerAtomic: slope.unixPerAtomic
}
// Start is inclusive.
this.start = {
atomic: start.atomic,
unix: start.unix
}
// End is exclusive.
this.end = {
atomic: end.atomic,
unix: this.atomicToUnix(end.atomic)
}
}
unixToAtomicRange (unix) {
if (this.slope.unixPerAtomic.eq(new Rat(0n))) {
if (!unix.eq(this.start.unix)) {
throw Error('This Unix time never happened')
}
return new Range(this.start.atomic, this.end.atomic, true)
}
const atomic = unix
.minus(this.start.unix)
.divide(this.slope.unixPerAtomic)
.plus(this.start.atomic)
return new Range(atomic)
}
atomicToUnix (atomic) {
return atomic
.minus(this.start.atomic)
.times(this.slope.unixPerAtomic)
.plus(this.start.unix)
}
// Bounds checks. Each segment has an inclusive-exclusive range of validity.
// Valid TAI instants are from the computed TAI start of the segment to the computed TAI end of
// the segment. Valid Unix instants are the valid TAI instants, transformed linearly from TAI to
// Unix by the segment.
atomicOnSegment (atomic) {
return this.start.atomic.le(atomic) && this.end.atomic.gt(atomic)
}
unixOnSegment (unix) {
return this.slope.unixPerAtomic.eq(new Rat(0n))
? this.start.unix.eq(unix)
: this.start.unix.le(unix) && this.end.unix.gt(unix)
}
}
module.exports.Segment = Segment
|
ksmonkey123/awaeUtils | src/main/java/ch/awae/utils/xml/XML.java | package ch.awae.utils.xml;
import java.util.stream.Stream;
import org.w3c.dom.Document;
/**
* XML Data Wrapper
*
* This class wraps a DOM Document for nice interaction with other components. <br>
*
* XML instances keep DOM Documents around internally. Therefore any mutation
* performed by / on an XML instance affects the backing DOM document - and
* vice-versa.
*
* @author <NAME>
* @since awaeUtils 1.0.0
*/
public class XML {
private final Document document;
/**
* Creates a new XML instance based off a given DOM Document
*
* @param document
* the DOM document to base the XML instance off
*/
public XML(Document document) {
this.document = document;
}
/**
* Provides an XPath with the document root element
*
* @return the query root
*/
public XPath query() {
return new XPathImp(Stream.of(this.document.getDocumentElement()));
}
/**
* Gets the backing DOM Document
*
* @return the document
*/
public Document getDocument() {
return this.document;
}
}
|
cpusoft/rpstir2 | src/rpstir2-sync-core/rsync/rsync.go | <filename>src/rpstir2-sync-core/rsync/rsync.go
package rsync
import (
"strings"
"time"
model "rpstir2-model"
"rpstir2-sync-core/sync"
"github.com/cpusoft/goutil/belogs"
"github.com/cpusoft/goutil/conf"
"github.com/cpusoft/goutil/jsonutil"
"github.com/cpusoft/goutil/rsyncutil"
)
func InsertSyncLogFiles(syncLogId uint64,
addFiles, delFiles, updateFiles map[string]rsyncutil.RsyncFileHash, syncLogFilesCh chan []model.SyncLogFile) (err error) {
belogs.Debug("InsertSyncLogFiles():rsync, syncLogId:", syncLogId,
" len(addFiles):", len(addFiles), " len(delFiles):", len(delFiles), " len(updateFiles):", len(updateFiles))
rsyncTime := time.Now()
syncLogFiles := make([]model.SyncLogFile, 0, 2*(len(addFiles)+len(delFiles)+len(updateFiles)))
// insert lab_rpki_sync_log_file
rsyncType := "add"
for _, addFile := range addFiles {
syncLogFile := ConvertToSyncLogFile(syncLogId, rsyncTime,
rsyncType, &addFile)
syncLogFiles = append(syncLogFiles, syncLogFile)
}
belogs.Debug("InsertSyncLogFiles():rsync, after len(addFiles):", syncLogId, len(addFiles))
rsyncType = "update"
for _, updateFile := range updateFiles {
syncLogFile := ConvertToSyncLogFile(syncLogId, rsyncTime,
rsyncType, &updateFile)
syncLogFiles = append(syncLogFiles, syncLogFile)
}
belogs.Debug("InsertSyncLogFiles():rsync, after len(updateFiles):", syncLogId, len(updateFiles))
rsyncType = "del"
for _, delFile := range delFiles {
syncLogFile := ConvertToSyncLogFile(syncLogId, rsyncTime,
rsyncType, &delFile)
syncLogFiles = append(syncLogFiles, syncLogFile)
}
belogs.Debug("InsertSyncLogFiles():rsync, len(addFiles):", len(addFiles),
" len(delFiles):", len(delFiles), " len(updateFiles):", len(updateFiles),
" len(syncLogFiles):", len(syncLogFiles))
if syncLogFilesCh != nil {
belogs.Debug("InsertSyncLogFiles():rsync len(syncLogFiles) -> syncLogFilesCh:", len(syncLogFiles))
syncLogFilesCh <- syncLogFiles
} else {
belogs.Debug("InsertSyncLogFiles():rsync InsertSyncLogFilesDb():", len(syncLogFiles))
sync.InsertSyncLogFilesDb(syncLogFiles)
}
return nil
}
func ConvertToSyncLogFile(syncLogId uint64, rsyncTime time.Time,
syncType string, rsyncFileHash *rsyncutil.RsyncFileHash) (syncLogFile model.SyncLogFile) {
rtr := "notNeed"
if rsyncFileHash.FileType == "roa" {
rtr = "notYet"
}
syncLogFileState := model.SyncLogFileState{
Sync: "finished",
UpdateCertTable: "notYet",
Rtr: rtr,
}
state := jsonutil.MarshalJson(syncLogFileState)
// /root/rpki/data/rrdprepo/rpki.ripe.net/repository/*** --> rsync://rpki.ripe.net/repository/***
// so, when replace, keep "/" and add "rsync:/"
sourceUrl := strings.Replace(rsyncFileHash.FilePath, conf.VariableString("rsync::destPath"), "rsync:/", -1)
//lab_rpki_sync_log_file
syncLogFile = model.SyncLogFile{
SyncLogId: syncLogId,
FileType: rsyncFileHash.FileType,
SyncTime: rsyncTime,
FilePath: rsyncFileHash.FilePath,
FileName: rsyncFileHash.FileName,
SourceUrl: sourceUrl,
SyncType: syncType,
SyncStyle: "rsync",
State: state,
FileHash: rsyncFileHash.FileHash,
}
return syncLogFile
}
|
acejo2208/Drone_Segmentation | labelme/setup.py | from __future__ import print_function
import distutils.spawn
import os
import re
import shlex
import subprocess
import sys
from setuptools import find_packages
from setuptools import setup
def get_version():
filename = "labelme/__init__.py"
with open(filename) as f:
match = re.search(
r"""^__version__ = ['"]([^'"]*)['"]""", f.read(), re.M
)
if not match:
raise RuntimeError("{} doesn't contain __version__".format(filename))
version = match.groups()[0]
return version
def get_install_requires():
PY3 = sys.version_info[0] == 3
PY2 = sys.version_info[0] == 2
assert PY3 or PY2
install_requires = [
"imgviz>=0.11.0",
"matplotlib<3.3", # for PyInstaller
"numpy",
"Pillow>=2.8.0",
"PyYAML",
"qtpy",
"termcolor",
]
# Find python binding for qt with priority:
# PyQt5 -> PySide2 -> PyQt4,
# and PyQt5 is automatically installed on Python3.
QT_BINDING = None
try:
import PyQt5 # NOQA
QT_BINDING = "pyqt5"
except ImportError:
pass
if QT_BINDING is None:
try:
import PySide2 # NOQA
QT_BINDING = "pyside2"
except ImportError:
pass
if QT_BINDING is None:
try:
import PyQt4 # NOQA
QT_BINDING = "pyqt4"
except ImportError:
if PY2:
print(
"Please install PyQt5, PySide2 or PyQt4 for Python2.\n"
"Note that PyQt5 can be installed via pip for Python3.",
file=sys.stderr,
)
sys.exit(1)
assert PY3
# PyQt5 can be installed via pip for Python3
install_requires.append("PyQt5")
QT_BINDING = "pyqt5"
del QT_BINDING
if os.name == "nt": # Windows
install_requires.append("colorama")
return install_requires
def get_long_description():
with open("README.md") as f:
long_description = f.read()
try:
import github2pypi
return github2pypi.replace_url(
slug="wkentaro/labelme", content=long_description
)
except Exception:
return long_description
def main():
version = get_version()
if sys.argv[1] == "release":
if not distutils.spawn.find_executable("twine"):
print(
"Please install twine:\n\n\tpip install twine\n",
file=sys.stderr,
)
sys.exit(1)
commands = [
"python tests/docs_tests/man_tests/test_labelme_1.py",
"git tag v{:s}".format(version),
"git push origin master --tag",
"python setup.py sdist",
"twine upload dist/labelme-{:s}.tar.gz".format(version),
]
for cmd in commands:
subprocess.check_call(shlex.split(cmd))
sys.exit(0)
setup(
name="labelme",
version=version,
packages=find_packages(exclude=["github2pypi"]),
description="Image Polygonal Annotation with Python",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="<NAME>",
author_email="<EMAIL>",
url="https://github.com/wkentaro/labelme",
install_requires=get_install_requires(),
license="GPLv3",
keywords="Image Annotation, Machine Learning",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
package_data={"labelme": ["icons/*", "config/*.yaml"]},
entry_points={
"console_scripts": [
"labelme=labelme.__main__:main",
"labelme_draw_json=labelme.cli.draw_json:main",
"labelme_draw_label_png=labelme.cli.draw_label_png:main",
"labelme_json_to_dataset=labelme.cli.json_to_dataset:main",
"labelme_on_docker=labelme.cli.on_docker:main",
],
},
data_files=[("share/man/man1", ["docs/man/labelme.1"])],
)
if __name__ == "__main__":
main()
|
HealthByRo/react-auth | src/index.js | <gh_stars>1-10
import AuthenticationProvider from './containers/AuthenticationProvider';
import Context from './containers/AuthenticationProvider/context';
import useAuthContext from './containers/AuthenticationProvider/useAuthContext';
import { removeAuthorizationTokenInHeaders } from './api';
import { setConfig } from './config';
export * from './containers/AuthenticationProvider/constants';
export default AuthenticationProvider;
export {
AuthenticationProvider,
Context,
removeAuthorizationTokenInHeaders,
setConfig,
useAuthContext,
};
|
coderbot16/brachyura | brachyura/src/main/java/io/github/coolcrabs/brachyura/maven/MavenId.java | <reponame>coderbot16/brachyura<gh_stars>10-100
package io.github.coolcrabs.brachyura.maven;
import java.security.InvalidParameterException;
import java.util.Objects;
public final class MavenId {
public final String groupId;
public final String artifactId;
public final String version;
public MavenId(String maven) {
String[] a = maven.split(":");
if (a.length != 3) throw new InvalidParameterException("Bad maven id " + maven);
this.groupId = a[0];
this.artifactId = a[1];
this.version = a[2];
}
public MavenId(String groupId, String artifactId, String version) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
}
@Override
public int hashCode() {
return Objects.hash(groupId, artifactId, version);
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj instanceof MavenId) {
MavenId mavenId = (MavenId)obj;
return this.groupId.equals(mavenId.groupId) && this.artifactId.equals(mavenId.artifactId) && this.version.equals(mavenId.version);
} else {
return false;
}
}
@Override
public String toString() {
return groupId + ":" + artifactId + ":" + version;
}
}
|
saranshbht/bsc-codes | semester-3/data-structures/assignment/assign1.cpp | <gh_stars>1-10
#include "SLLClass.cpp"
#include "stackClass.cpp"
#include "queueClass.cpp"
#define QQ "q2.enqueue(q1.dequeue())"
#define SQ "q2.enqueue(s.pop())"
#define QS "s.push(q1.dequeue())"
int main() {
Queue<int> q1, q2;
Stack<int> s;
SLL<string> operations;
int n, a, prev;
cout << "Enter value of n: ";
cin >> n;
if(n < 0){
cout << "n cannot be negative\n";
return -1;
}
if(n == 0){
cout << "No operations\n";
return 0;
}
cout << "Enter any permutation of numbers from 1 to n:\n";
for(int i = 0; i < n; i++){
cin >> a;
if(a > n){
cout << "Values can only be between 1 and n(both inclusive)\n";
return -1;
}
q2.enqueue(a);
}
for(int i = 1; i <= n;i++)
q1.enqueue(i);
while(!q2.isEmpty()){
//cout << q2.front() << endl;
if(!q1.isEmpty() && q2.front() == q1.front()){
operations.addToTail(QQ);
q1.dequeue();
prev = q2.dequeue();
}
else if(!s.isEmpty() && s.stackTop() == q2.front()){
operations.addToTail(SQ);
s.pop();
prev = q2.dequeue();
}
else{
if(!s.isEmpty() && q2.front() < s.stackTop())
break;
else{
while(!q1.isEmpty() && q1.front() != q2.front()){
s.push(q1.dequeue());
operations.addToTail(QS);
}
}
}
}
if(!q2.isEmpty()){
cout << "Invalid as after " << prev << " next value can only be ";
if(!s.isEmpty() && !q1.isEmpty())
cout << s.stackTop() << " or " << q1.front();
else if(!s. isEmpty())
cout << s.stackTop();
else
cout << q1.front();
cout << " for this case to be valid\n";
}
else{
cout << "Valid\nSequence of operations\n";
operations.display();
}
return 0;
}
|
chenbocong/FamilyLink | app/src/org/orange/familylink/data/UrgentMessageBody.java | <filename>app/src/org/orange/familylink/data/UrgentMessageBody.java
package org.orange.familylink.data;
import org.orange.familylink.data.Message.Code.Extra.Inform;
/**
* {@link Inform#URGENT URGENT} {@link Message}的{@link Message#body body}
* @author <NAME>
*/
public class UrgentMessageBody extends MessageBody {
private Type type;
/** 发送方的当前位置,用[纬度, 经度]二元组表示 */
private double[] position;
/**
* 取得本消息的{@link Type}
* @return 本消息的{@link Type}
*/
public Type getType() {
return type;
}
/**
* 设置本消息的{@link Type}
* @param type
*/
public UrgentMessageBody setType(Type type) {
this.type = type;
return this;
}
/**
* 检测是否包含位置信息
* @return 如果包含位置信息,返回true;否则返回false
*/
public boolean containsPosition() {
return position != null;
}
/**
* 取得发送方位置的纬度
* @return 如果发送方提供了位置信息,则返回其纬度;否则返回null
*/
public Double getPositionLatitude() {
return position != null ? position[0] : null;
}
/**
* 取得发送方位置的经度
* @return 如果发送方提供了位置信息,则返回其经度;否则返回null
*/
public Double getPositionLongitude() {
return position != null ? position[1] : null;
}
/**
* 设置发送方当前地理位置
* @param latitude 纬度
* @param longitude 经度
*/
public UrgentMessageBody setPosition(double latitude, double longitude) {
if(position == null)
position = new double[2];
position[0] = latitude;
position[1] = longitude;
return this;
}
/**
* {@link UrgentMessageBody}的类型
* @author <NAME>
*/
public static enum Type {
/** 摔倒警报{@link UrgentMessageBody} */
FALL_DOWN_ALARM,
/** 求助{@link UrgentMessageBody} */
SEEK_HELP;
}
}
|
AIpynux/PAT | 1103.cpp | <filename>1103.cpp
#define _CRT_SECURE_NO_WARNING
#include <iostream>
#include <vector>
#include <cstdio>
#include <cmath>
using namespace std;
int maxn;
int N, K, P;
vector<int> fac,temp,ans;
int maxfacNumberSum = 0;
void DFS(int index,int nowK,int sum,int facNumberSum){
if (nowK > K || sum > N)
return;
if (index == 0){
if (nowK == K && sum == N && facNumberSum > maxfacNumberSum){
maxfacNumberSum = facNumberSum;
ans = temp;
}
return;
}
temp.push_back(index);
DFS(index, nowK + 1, sum + fac[index], facNumberSum + index);
temp.pop_back();
DFS(index - 1, nowK, sum, facNumberSum);
}
int main()
{
scanf("%d%d%d", &N, &K, &P);
maxn = (int)(pow((double)N, 1.0 / P));
for (int i = 0; i <= maxn; i++){
fac.push_back(pow(i, P));
}
DFS(maxn, 0, 0, 0);
if (!ans.empty()){
printf("%d = ", N);
vector<int>::iterator it = ans.begin();
while (it != ans.end()){
if (it != ans.end() - 1){
printf("%d^%d + ", *it, P);
}
else{
printf("%d^%d\n", *it, P);
}
it++;
}
}
else{
printf("Impossible\n");
}
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.