code stringlengths 3 1.05M | repo_name stringlengths 4 116 | path stringlengths 4 991 | language stringclasses 9
values | license stringclasses 15
values | size int32 3 1.05M |
|---|---|---|---|---|---|
<?php
/*******************************************************************************
Copyright 2014 Whole Foods Co-op
This file is part of Fannie.
IT CORE 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.
IT CORE 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
in the file license.txt along with IT CORE; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*********************************************************************************/
/**
@class GumTaxIdentifiersModel
This table stores tax IDs - e.g., social
security numbers. The encrypted field
should contain the full value but not
in plaintext (duh). The masked field contains
the last four digits.
RSA is the default expectation using public
key to encrypt and private key to decrypt.
Ideally, the private key should not exist anywhere
on the server side. See README.PLUGIN for more
information on setting up encryption keys.
*/
class GumTaxIdentifiersModel extends BasicModel
{
protected $name = "GumTaxIdentifiers";
protected $columns = array(
'gumTaxIdentifierID' => array('type'=>'INT', 'increment'=>true, 'index'=>true),
'card_no' => array('type'=>'INT', 'primary_key'=>true),
'encryptedTaxIdentifier' => array('type'=>'BLOB'),
'maskedTaxIdentifier' => array('type'=>'CHAR(4)'),
);
/* START ACCESSOR FUNCTIONS */
public function gumTaxIdentifierID()
{
if(func_num_args() == 0) {
if(isset($this->instance["gumTaxIdentifierID"])) {
return $this->instance["gumTaxIdentifierID"];
} else if (isset($this->columns["gumTaxIdentifierID"]["default"])) {
return $this->columns["gumTaxIdentifierID"]["default"];
} else {
return null;
}
} else if (func_num_args() > 1) {
$value = func_get_arg(0);
$op = $this->validateOp(func_get_arg(1));
if ($op === false) {
throw new Exception('Invalid operator: ' . func_get_arg(1));
}
$filter = array(
'left' => 'gumTaxIdentifierID',
'right' => $value,
'op' => $op,
'rightIsLiteral' => false,
);
if (func_num_args() > 2 && func_get_arg(2) === true) {
$filter['rightIsLiteral'] = true;
}
$this->filters[] = $filter;
} else {
if (!isset($this->instance["gumTaxIdentifierID"]) || $this->instance["gumTaxIdentifierID"] != func_get_args(0)) {
if (!isset($this->columns["gumTaxIdentifierID"]["ignore_updates"]) || $this->columns["gumTaxIdentifierID"]["ignore_updates"] == false) {
$this->record_changed = true;
}
}
$this->instance["gumTaxIdentifierID"] = func_get_arg(0);
}
return $this;
}
public function card_no()
{
if(func_num_args() == 0) {
if(isset($this->instance["card_no"])) {
return $this->instance["card_no"];
} else if (isset($this->columns["card_no"]["default"])) {
return $this->columns["card_no"]["default"];
} else {
return null;
}
} else if (func_num_args() > 1) {
$value = func_get_arg(0);
$op = $this->validateOp(func_get_arg(1));
if ($op === false) {
throw new Exception('Invalid operator: ' . func_get_arg(1));
}
$filter = array(
'left' => 'card_no',
'right' => $value,
'op' => $op,
'rightIsLiteral' => false,
);
if (func_num_args() > 2 && func_get_arg(2) === true) {
$filter['rightIsLiteral'] = true;
}
$this->filters[] = $filter;
} else {
if (!isset($this->instance["card_no"]) || $this->instance["card_no"] != func_get_args(0)) {
if (!isset($this->columns["card_no"]["ignore_updates"]) || $this->columns["card_no"]["ignore_updates"] == false) {
$this->record_changed = true;
}
}
$this->instance["card_no"] = func_get_arg(0);
}
return $this;
}
public function encryptedTaxIdentifier()
{
if(func_num_args() == 0) {
if(isset($this->instance["encryptedTaxIdentifier"])) {
return $this->instance["encryptedTaxIdentifier"];
} else if (isset($this->columns["encryptedTaxIdentifier"]["default"])) {
return $this->columns["encryptedTaxIdentifier"]["default"];
} else {
return null;
}
} else if (func_num_args() > 1) {
$value = func_get_arg(0);
$op = $this->validateOp(func_get_arg(1));
if ($op === false) {
throw new Exception('Invalid operator: ' . func_get_arg(1));
}
$filter = array(
'left' => 'encryptedTaxIdentifier',
'right' => $value,
'op' => $op,
'rightIsLiteral' => false,
);
if (func_num_args() > 2 && func_get_arg(2) === true) {
$filter['rightIsLiteral'] = true;
}
$this->filters[] = $filter;
} else {
if (!isset($this->instance["encryptedTaxIdentifier"]) || $this->instance["encryptedTaxIdentifier"] != func_get_args(0)) {
if (!isset($this->columns["encryptedTaxIdentifier"]["ignore_updates"]) || $this->columns["encryptedTaxIdentifier"]["ignore_updates"] == false) {
$this->record_changed = true;
}
}
$this->instance["encryptedTaxIdentifier"] = func_get_arg(0);
}
return $this;
}
public function maskedTaxIdentifier()
{
if(func_num_args() == 0) {
if(isset($this->instance["maskedTaxIdentifier"])) {
return $this->instance["maskedTaxIdentifier"];
} else if (isset($this->columns["maskedTaxIdentifier"]["default"])) {
return $this->columns["maskedTaxIdentifier"]["default"];
} else {
return null;
}
} else if (func_num_args() > 1) {
$value = func_get_arg(0);
$op = $this->validateOp(func_get_arg(1));
if ($op === false) {
throw new Exception('Invalid operator: ' . func_get_arg(1));
}
$filter = array(
'left' => 'maskedTaxIdentifier',
'right' => $value,
'op' => $op,
'rightIsLiteral' => false,
);
if (func_num_args() > 2 && func_get_arg(2) === true) {
$filter['rightIsLiteral'] = true;
}
$this->filters[] = $filter;
} else {
if (!isset($this->instance["maskedTaxIdentifier"]) || $this->instance["maskedTaxIdentifier"] != func_get_args(0)) {
if (!isset($this->columns["maskedTaxIdentifier"]["ignore_updates"]) || $this->columns["maskedTaxIdentifier"]["ignore_updates"] == false) {
$this->record_changed = true;
}
}
$this->instance["maskedTaxIdentifier"] = func_get_arg(0);
}
return $this;
}
/* END ACCESSOR FUNCTIONS */
}
| joelbrock/ELFCO_CORE | fannie/modules/plugins2.0/GiveUsMoneyPlugin/models/GumTaxIdentifiersModel.php | PHP | gpl-2.0 | 7,995 |
<?php
namespace CCETC\DirectoryBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class CCETCDirectoryBundle extends Bundle
{
}
| CCETC/DirectoryBundle | CCETCDirectoryBundle.php | PHP | gpl-2.0 | 136 |
/*
* Nextcloud Android client application
*
* Copyright 2014 Google, Inc. All rights reserved.
* Licenced under the BSD licence
*
* Borrowed from:
* https://github.com/bumptech/glide/blob/master/samples/svg/src/main/java/com/bumptech/glide/samples/svg/
* SvgDecoder.java
*/
package com.owncloud.android.utils.svg;
import com.bumptech.glide.load.ResourceDecoder;
import com.bumptech.glide.load.engine.Resource;
import com.bumptech.glide.load.resource.SimpleResource;
import com.caverock.androidsvg.PreserveAspectRatio;
import com.caverock.androidsvg.SVG;
import com.caverock.androidsvg.SVGParseException;
import java.io.IOException;
import java.io.InputStream;
/**
* Decodes an SVG internal representation from an {@link InputStream}.
*/
public class SvgDecoder implements ResourceDecoder<InputStream, SVG> {
private int height = -1;
private int width = -1;
public SvgDecoder(){
}
public SvgDecoder(int height, int width) {
this.height = height;
this.width = width;
}
public Resource<SVG> decode(InputStream source, int w, int h) throws IOException {
try {
SVG svg = SVG.getFromInputStream(source);
if (width > 0) {
svg.setDocumentWidth(width);
}
if (height > 0) {
svg.setDocumentHeight(height);
}
svg.setDocumentPreserveAspectRatio(PreserveAspectRatio.LETTERBOX);
return new SimpleResource<>(svg);
} catch (SVGParseException ex) {
throw new IOException("Cannot load SVG from stream", ex);
}
}
@Override
public String getId() {
return "SvgDecoder.com.owncloud.android";
}
}
| tobiasKaminsky/android | src/main/java/com/owncloud/android/utils/svg/SvgDecoder.java | Java | gpl-2.0 | 1,715 |
/*+*********************************************************************
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
Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
************************************************************************/
package monq.jfa;
import java.io.Serializable;
/**
* <p>helps to mark subgraphs in a DFA/NFA.</p>
*
* @author © 2004, 2005 Harald Kirsch
*/
class FaSubinfo implements Comparable, Serializable {
private static final byte SUBINNER = 0x1;
private static final byte SUBSTART = 0x2;
private static final byte SUBSTOP = 0x4;
private static final String[] TYPESTRINGS = {
"?", "@", "[", "[@", "]", "@]", "[]", "[@]",
};
//private static int nextID = 0;
//private static int uniqueID() { return nextID++;}
/**********************************************************************/
private byte type;
private byte id;
/**********************************************************************/
public int compareTo(Object other) {
FaSubinfo o = (FaSubinfo)other;
if( id<o.id ) return -1;
if( id>o.id ) return 1;
return 0;
}
public FaSubinfo(FaSubinfo other) {
this.type = other.type;
this.id = other.id;
}
private FaSubinfo(byte id, byte type) {
this.id = id;
this.type = type;
}
public byte id() {return id;}
public static FaSubinfo start(byte id) {
return new FaSubinfo(id, SUBSTART);
}
public static FaSubinfo stop(byte id) {
return new FaSubinfo(id, (byte)(SUBSTOP));
}
public static FaSubinfo inner(byte id) {
return new FaSubinfo(id, SUBINNER);
}
public void merge(FaSubinfo other) {
type |= other.type;
}
public boolean isStart() {return (type&SUBSTART)!=0;}
public boolean isStop() {return (type&SUBSTOP)!=0;}
public boolean isInner() {return (type&SUBINNER)!=0;}
public String typeString() {
return TYPESTRINGS[type];
}
public String toString() {
return super.toString()+"["+id+","+typeString()+"]";
}
}
| m0wfo/monqjfa | monq/jfa/FaSubinfo.java | Java | gpl-2.0 | 2,596 |
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#include <ChatUtils.h>
#include <Chat.h>
using namespace std;
typedef pair<const string, const string> HtmlEntity;
static const HtmlEntity htmlEntities[] = { HtmlEntity(""", "\""),
HtmlEntity("'", "'"),
HtmlEntity("<", "<"),
HtmlEntity(">", ">"),
HtmlEntity("&", "&")
};
string
ChatUtils::unstripHtml(const string& s)
{
string out = s;
for(unsigned int count = 0; count < sizeof(htmlEntities) / sizeof(htmlEntities[0]); ++count)
{
for(string::size_type pos = out.find(htmlEntities[count].first);
pos != string::npos;
pos = out.find(htmlEntities[count].first, pos))
{
out.replace(pos, htmlEntities[count].first.size(), htmlEntities[count].second);
}
}
return out;
}
string
ChatUtils::trim(const string& s)
{
static const string delims = "\t\r\n ";
string::size_type last = s.find_last_not_of(delims);
if(last != string::npos)
{
return s.substr(s.find_first_not_of(delims), last+1);
}
return s;
}
| lejingw/ice-java | cpp/Chat/cmdLineClient/ChatUtils.cpp | C++ | gpl-2.0 | 1,420 |
/**
* \file
* Copyright (C) 2006-2009 Jedox AG, Freiburg i.Br., Germany
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License (Version 2) as published
* by the Free Software Foundation at http://www.gnu.org/copyleft/gpl.html.
*
* 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., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* You may obtain a copy of the License at
*
* <a href="http://www.jedox.com/license_palo_bi_suite.txt">
* http://www.jedox.com/license_palo_bi_suite.txt
* </a>
*
* If you are developing and distributing open source applications under the
* GPL License, then you are free to use Worksheetserver under the GPL License.
* For OEMs, ISVs, and VARs who distribute Worksheetserver with their products,
* and do not license and distribute their source code under the GPL, Jedox provides
* a flexible OEM Commercial License.
*
* \Author
* Florian Schaper <florian.schaper@jedox.com>
* Frieder Hofmann <frieder.hofmann@jedox.com>
* Vali Nitu <vali@yalos-solutions.com>
*/
#pragma once
#include "precompiled_header.hpp"
#include <wss/i_autofill_handler.hpp>
#include <wss/variant.hpp>
namespace autofill_internal
{
class sequence_default_fill_handler : public i_autofill_handler
{
private:
public:
bool handle_sequence( session& cx, const range& sequence, range& target );
};
}
| fschaper/netcell | core/extensions/auto_fill/src/sequence_default_fill_handler.hpp | C++ | gpl-2.0 | 1,842 |
#!/usr/bin/env python
#coding: utf-8
#Filename: try_except.py
import sys
try:
s = raw_input('Enter something -->')
except EOFError:
print '\nWhy did you do an EOF on me?'
sys.exit()
except:
print '\nSome error/exception occured.'
print 'Done' | daya-prac/Python-prac | python/try_except.py | Python | gpl-2.0 | 261 |
<?php
/**
* @file
* Contains theme override functions and preprocess functions for the theme.
*
* ABOUT THE TEMPLATE.PHP FILE
*
* The template.php file is one of the most useful files when creating or
* modifying Drupal themes. You can modify or override Drupal's theme
* functions, intercept or make additional variables available to your theme,
* and create custom PHP logic. For more information, please visit the Theme
* Developer's Guide on Drupal.org: http://drupal.org/theme-guide
*
* OVERRIDING THEME FUNCTIONS
*
* The Drupal theme system uses special theme functions to generate HTML
* output automatically. Often we wish to customize this HTML output. To do
* this, we have to override the theme function. You have to first find the
* theme function that generates the output, and then "catch" it and modify it
* here. The easiest way to do it is to copy the original function in its
* entirety and paste it here, changing the prefix from theme_ to cuwt_core_.
* For example:
*
* original: theme_breadcrumb()
* theme override: cuwt_core_breadcrumb()
*
* where cuwt_core is the name of your sub-theme. For example, the
* zen_classic theme would define a zen_classic_breadcrumb() function.
*
* If you would like to override either of the two theme functions used in Zen
* core, you should first look at how Zen core implements those functions:
* theme_breadcrumbs() in zen/template.php
* theme_menu_local_tasks() in zen/template.php
*
* For more information, please visit the Theme Developer's Guide on
* Drupal.org: http://drupal.org/node/173880
*
* CREATE OR MODIFY VARIABLES FOR YOUR THEME
*
* Each tpl.php template file has several variables which hold various pieces
* of content. You can modify those variables (or add new ones) before they
* are used in the template files by using preprocess functions.
*
* This makes THEME_preprocess_HOOK() functions the most powerful functions
* available to themers.
*
* It works by having one preprocess function for each template file or its
* derivatives (called template suggestions). For example:
* THEME_preprocess_page alters the variables for page.tpl.php
* THEME_preprocess_node alters the variables for node.tpl.php or
* for node-forum.tpl.php
* THEME_preprocess_comment alters the variables for comment.tpl.php
* THEME_preprocess_block alters the variables for block.tpl.php
*
* For more information on preprocess functions and template suggestions,
* please visit the Theme Developer's Guide on Drupal.org:
* http://drupal.org/node/223440
* and http://drupal.org/node/190815#template-suggestions
*/
/**
*
* Implements hook_preprocess_html().
* @param $variables
*/
function cuwt_france_preprocess_html(&$variables) {
$background_color = variable_get('fr_custom_background_color', FALSE);
$background_image_fid = variable_get('fr_custom_background_image_fid', FALSE);
if ($background_color == FALSE) {
$background_color = 'transparent';
}
else {
$background_color = '#' . $background_color;
}
$background_css = 'background: ' . $background_color;
if ($background_image_fid != FALSE) {
$background_image = file_load($background_image_fid);
if (is_object($background_image)) {
$background_css .= ' url(' . file_create_url($background_image->uri) . ') repeat-y top center';
}
}
// Add inline css for the bakground
if (isset($background_css) && $background_css != '') {
drupal_add_css('body {' . $background_css . ';}', array('type' => 'inline'));
}
}
/**
* Implements hook_preprocess_page().
* @param $variables
*/
function cuwt_france_preprocess_page(&$variables) {
/*
// Top Header right corner variables.
$hrc_title = variable_get('fr_custom_header_right_corner_title', '');
$hrc_image_fid = variable_get('fr_custom_header_right_corner_image_fid', '');
$hrc_alt_text = variable_get('fr_custom_header_right_corner_alt_text', '');
$hrc_target_url = variable_get('fr_custom_header_right_corner_target_url', '');
$hrc_open_new_window = variable_get('fr_custom_header_right_corner_open_new_window', '');
if ($hrc_image_fid != "") {
$hrc_image = file_load($hrc_image_fid);
$image_variables = array(
'path' => file_create_url($hrc_image->uri),
'alt' => $hrc_alt_text,
);
$header_right_corner_image = theme('image', $image_variables);
if ($hrc_target_url != "") {
$link_target = ($hrc_open_new_window != 0) ? '_blank' : '';
$right_corner_image_cuwa_click_tag = core_navigation_format_click_tag(variable_get('fr_custom_right_corner_image_cuwa_click_tag'), FALSE);
$header_image_content = l($header_right_corner_image, $hrc_target_url, array('attributes' => array('target' => $link_target, 'title' => $hrc_title, 'onclick' => $right_corner_image_cuwa_click_tag), 'html' => TRUE));
}
else {
$header_image_content = $header_right_corner_image;
}
$variables['header_right_corner_image'] = '<div class="alt-image-sl-block">' . $header_image_content . '</div>';
}*/
// Get current machine role
$machine_role = variable_get('machine_role', '');
if (isset($variables['node']->type) && $machine_role == 'front_office') {
$nodetype = $variables['node']->type;
$variables['theme_hook_suggestions'][] = 'page__' . $nodetype;
if($variables['node']->type == "mobile_news") {
drupal_add_css(drupal_get_path('theme', 'cuwt_france').'/css/style-mobile.css');
$viewport = array(
'#tag' => 'meta',
'#attributes' => array(
'name' => 'viewport',
'content' => 'width=device-width, initial-scale=1, maximum-scale=1',
),
);
drupal_add_html_head($viewport, 'viewport');
}
}
if(arg(0) == 'store-carrefour-banque') {
drupal_add_css(drupal_get_path('theme', 'cuwt_france').'/css/style-banque.css');
}
//Check for the Redirection rules for the Eiffel related contributed pages
//commented as the eiffle is not used
//fr_eiffel_page_redirect();
}
/**
* Implements template_preprocess_views_view().
* @param $vars
*/
function cuwt_france_preprocess_views_view(&$vars) {
$view = $vars['view'];
//Add plus node title for the plus article listing page
if($view->name == 'carrefour_plus' && $view->current_display == 'page_1'){
$node_alias = arg(2);
$node_path = drupal_lookup_path('source', $node_alias, 'fr');
$nid = explode("/", $node_path);
if(is_numeric($nid[1])){
$node = node_load($nid[1]);
$term = taxonomy_term_load($node->field_plus_highlight_tags[LANGUAGE_NONE][0]['tid']);
$vars['plus_article_title'] = $term->name . ' : ' . $node->title;
}
//to add the Carousel Vertical right menu block to the Carrefour Plus Artcile List page
$block = module_invoke('core_feature_right_vertical_menu', 'block_view', 'right_vertical_menu');
$vars['right_vertical_menu'] = isset($block['content']) ? $block['content'] : '';
}
elseif ($view->name == 'specific_guide' && $view->current_display == 'page') {
//Add Guide article title for the Guide article listing page
$term_name_alias = arg(1);
$term_name = drupal_lookup_path('source', $term_name_alias, 'fr');
$term_id = explode("/", $term_name);
$term_data = taxonomy_term_load($term_id[2]);
$vars['guide_article_title'] = t("Discover all our articles") . ' ' . $term_data->name;
$guide_highlight = arg(2);
$target_landing_page = 'specific_guide';
$arguments = array($target_landing_page, $guide_highlight);
//Line 1: Editorial carousel: Display 1
$result_count = count(views_get_view_result('editorial_carousel', 'block_1', $target_landing_page, $guide_highlight));
$view = views_get_view('editorial_carousel');
if($result_count != 0) {
$vars['specific_editorial_carousel'] = '<div class="specific_editorial_carousel">';
$vars['specific_editorial_carousel'] .= '<h2 class ="guide-block-title ">' . t($term_data->name) . '</h2>';
$vars['specific_editorial_carousel'] .= $view->preview('block_1', $arguments) . '</div>';
}
//Line 3: Good deals carousel
$view = views_get_view('good_deals_carousel');
$result_count = count(views_get_view_result('good_deals_carousel', 'block', $target_landing_page, $guide_highlight));
if($result_count !=0 ) {
$vars['specific_good_deals_carousel'] = '<div class="specific_good_deals_carousel"><h2 class ="guide-block-title ">' . t('les bons plans') . '</h2>';
$vars['specific_good_deals_carousel'] .= $view->preview('block', $arguments) . '</div>';
}
//Line 4: Editorial carousel:Display4
$view = views_get_view('editorial_carousel');
$result_count = count(views_get_view_result('editorial_carousel', 'block', $target_landing_page, $guide_highlight));
if($result_count !=0) {
$vars['specific_editorial_carousel1'] = '<div class= "specific_editorial_carousel1"><h2 class ="guide-block-title ">' . t('Lire aussi') . '</h2>';
$vars['specific_editorial_carousel1'] .= $view->preview('block', $arguments) . '</div>';
}
//Line 5:Brand Carousel
$arguments_brand = array($guide_highlight);
$view = views_get_view('carrefour_services_carrousel');
$result_count = count(views_get_view_result('carrefour_services_carrousel', 'block', $guide_highlight));
if($result_count !=0 ){
$vars['specific_brand_carousel'] = '<div class= "specific_brand_carousel"><h2 class ="guide-block-title ">' . t('Discover all carrefour’s brands') . '</h2>';
$vars['specific_brand_carousel'] .= $view->preview('block', $arguments_brand) . '</div>';
}
}
}
/**
* Implements template_preprocess_views_view_list().
* @param $vars
*/
function cuwt_france_preprocess_views_view_list(&$vars) {
$view = $vars['view'];
if ($view->name == 'winners_block' && $view->current_display == 'newsletter_subscription') {
global $language;
$vars['newsletter_subscription_form'] = drupal_render(drupal_get_form('newsletter_subscription_form', $language));
}
}
function newsletter_subscription_form($form, &$form_state, $language) {
global $user;
$form['email_address'] = array(
'#type' => 'textfield',
'#default_value' => $user->uid > 0 ? $user->mail : t('Votre email'),
'#size' => 20,
'#weight' => 1,
'#prefix' => '<div class="news-ltr-sub">',
);
$form['email_address']['#attributes'] = array(
'onfocus' => "if (this.value == '" . t('Votre email') . "') {this.value = '';}",
'onblur' => "if (this.value == '') {this.value = '" . t('Votre email') . "';}",
);
if($user->uid > 0) {
$form['email_address']['#attributes']['readonly'] = 'readonly';
}
$form['submit-news-ltr']= array(
'#type' => 'image_button',
'#src' => drupal_get_path('theme', 'cuwt_france'). '/images/winner-ok-button.png',
'#weight' =>2,
'#suffix' => '</div>',
'#attributes' => array(
'class' => array('news-ltr-sub-button',),
'onclick' => "var email = document . getElementById('edit-email-address').value;
var pattern=/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/;
if(pattern.test(email)){
window.location.href ='/newsletters?e=' + email;
}else{
alert(\"" . t('Email is not a valid email address') ."\");
}
",
),
);
$form['#attributes']['onsubmit'] = ' return false;';
$form['#action'] = url("");
return $form;
}
function cuwt_france_process_page(&$variables) {
$ga = "var _gaq = _gaq || [];\n";
$ga .= "_gaq.push(['_setAccount', '" . variable_get('fr_google_analytics_web_poperty_id', 'UA-3928615-1') . "']);\n";
$ga .= "_gaq.push(['_trackPageview']);\n";
$ga .= "(function() {\n";
$ga .= " var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n";
$ga .= " ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n";
$ga .= " var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n";
$ga .= "})();\n";
drupal_add_js($ga, array('type' => 'inline', 'scope' => 'footer'));
}
/**
* Implementaion of hook_html_head_alter
* To remove the base url from the og_image URL and to add https/htrp for respective urls.
* @param $head_elements
*/
/* Commented the function as the FB share image will always contain //static1 or //static2 path
* As $base_url will not start with //static1 or //static2.
function cuwt_france_html_head_alter(&$head_elements) {
global $base_url;
global $is_https;
if(isset($head_elements['opengraph_meta_og:image']['#attributes']['content'])) {
if(strstr($head_elements['opengraph_meta_og:image']['#attributes']['content'], $base_url)) {
if ($is_https || $is_https == "on") {
$head_elements['opengraph_meta_og:image']['#attributes']['content'] = str_replace($base_url, 'https:/', $head_elements['opengraph_meta_og:image']['#attributes']['content']);
}
else {
$head_elements['opengraph_meta_og:image']['#attributes']['content'] = str_replace($base_url, 'http:/', $head_elements['opengraph_meta_og:image']['#attributes']['content']);
}
}
else {
$head_elements['opengraph_meta_og:image']['#attributes']['content'] = $head_elements['opengraph_meta_og:image']['#attributes']['content'];
}
return $head_elements;
}
}
*/
/**
* Render the jquery.js in the first order
*/
function cuwt_france_js_alter(&$javascript) {
if(isset($javascript['misc/jquery.js'])) {
$javascript['misc/jquery.js']['group'] = -500;
$javascript['misc/jquery.js']['weight'] = -500;
}
}
/**
* Theme function to output tablinks for classic Quicktabs style tabs.
*
* @ingroup themeable
*/
function cuwt_france_qt_quicktabs_tabset($vars) {
$tab_count = sizeof(element_children($vars['tabset']['tablinks']));
$tab_li_class = '';
if ($tab_count == 1) {
$tab_li_class = 'loy-single-tab';
if (isset($vars['tabset']['tablinks'][0])){
if ($vars['tabset']['tablinks'][0]['#title'] == '') {
$tab_li_class = 'loy-single-tab-image';
}
}
}
$variables = array(
'attributes' => array(
'class' => 'quicktabs-tabs quicktabs-style-' . $vars['tabset']['#options']['style'] . ' ' . $tab_li_class,
),
'items' => array(),
);
foreach (element_children($vars['tabset']['tablinks']) as $key) {
$item = array();
if (is_array($vars['tabset']['tablinks'][$key])) {
$tab = $vars['tabset']['tablinks'][$key];
if ($key == $vars['tabset']['#options']['active']) {
$item['class'] = array('active');
}
$item['data'] = drupal_render($tab);
$variables['items'][] = $item;
}
}
return theme('item_list', $variables);
}
| singhneeraj/fr-portal | sites/all/themes/cuwt_france/template.php | PHP | gpl-2.0 | 14,961 |
package com.ani.utils.core.data.value;
import com.ani.utils.core.AniGeneralUtils;
import com.ani.utils.core.data.type.AniDataType;
import com.ani.utils.core.data.type.AniDataTypeCategories;
import java.util.List;
import java.util.Objects;
import static com.ani.utils.core.data.type.AniDataTypeCategories.COLLECTION;
public class AniCollectionValue<P> extends AniValue<P> {
private static AniDataTypeCategories category = COLLECTION;
List<P> value;
@Override
protected AniDataTypeCategories getCategory() {
return category;
}
@Override
public void checkValue(AniDataType dataType, Boolean isRequired) throws AniValueException {
if(isRequired
&& (AniGeneralUtils.isCollectionEmpty(this.value))
)
throw new AniValueException(Errors.DATA_EMPTY);
super.checkValue(dataType);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AniCollectionValue<?> that = (AniCollectionValue<?>) o;
return Objects.equals(value, that.value);
}
@Override
public int hashCode() {
return Objects.hash(value);
}
}
| anicloud/ani-utils | src/main/java/com/ani/utils/core/data/value/AniCollectionValue.java | Java | gpl-2.0 | 1,243 |
from django.conf.urls import patterns, include, url
from django.conf.urls.static import static
from django.contrib import admin
from django.conf import settings
from kirt.settings import LOGIN_URL
"""
All the URLs that can be possibly called by user are working here.
"""
urlpatterns = patterns('',
url(r'^accounts/', include('django.contrib.auth.urls')),
url(r'^admin/', include(admin.site.urls)),
url(r'^$','src.views.index'),
url(r'^addworker/','src.views.addworker'),
url(r'^logout/$','src.views.my_logout'),
url(r'^src/addadvance/','src.views.addadvance'),
url(r'^src/promotions/','src.views.promotions'),
url(r'^ajaxpromotions/','src.views.ajaxpromotions'),
url(r'^previous_promotions/','src.views.previous_promotions'),
url(r'^daily_attendance/','src.views.daily_attendance'),
url(r'^ajax_daily_attendance/','src.views.ajax_daily_attendance'),
url(r'^ajaxdetails/','src.views.ajaxdetails'),
url(r'^ajaxrequest/','src.views.ajaxrequest'),
url(r'^ajaxrequestpaid/','src.views.ajaxrequestpaid'),
url(r'^popupadvance/','src.views.popupadvance'),
url(r'^ajaxpopupadvance/','src.views.ajaxpopupadvance'),
url(r'^particulars/','src.views.particulars'),
url(r'^payslip/', 'src.views.payslip'),
url(r'^return_advance/','src.views.return_advance'),
url(r'^deleteworker/','src.views.deleteworker'),
url(r'^jsreverse/', 'src.views.jsreverse'),
)
| KamalKaur/kirt | kirt/urls.py | Python | gpl-2.0 | 1,433 |
/*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.graal.nodes.extended;
import static com.oracle.graal.compiler.common.UnsafeAccess.*;
import com.oracle.graal.api.meta.*;
import com.oracle.graal.compiler.common.type.*;
import com.oracle.graal.nodeinfo.*;
import com.oracle.graal.nodes.*;
import com.oracle.graal.nodes.java.*;
import com.oracle.graal.nodes.spi.*;
/**
* Store of a value at a location specified as an offset relative to an object. No null check is
* performed before the store.
*/
@NodeInfo
public class UnsafeStoreNode extends UnsafeAccessNode implements StateSplit, Lowerable, Virtualizable, MemoryCheckpoint.Single {
@Input ValueNode value;
@OptionalInput(InputType.State) FrameState stateAfter;
public static UnsafeStoreNode create(ValueNode object, ValueNode offset, ValueNode value, Kind accessKind, LocationIdentity locationIdentity) {
return new UnsafeStoreNode(object, offset, value, accessKind, locationIdentity);
}
protected UnsafeStoreNode(ValueNode object, ValueNode offset, ValueNode value, Kind accessKind, LocationIdentity locationIdentity) {
this(object, offset, value, accessKind, locationIdentity, null);
}
public static UnsafeStoreNode create(ValueNode object, ValueNode offset, ValueNode value, Kind accessKind, LocationIdentity locationIdentity, FrameState stateAfter) {
return new UnsafeStoreNode(object, offset, value, accessKind, locationIdentity, stateAfter);
}
protected UnsafeStoreNode(ValueNode object, ValueNode offset, ValueNode value, Kind accessKind, LocationIdentity locationIdentity, FrameState stateAfter) {
super(StampFactory.forVoid(), object, offset, accessKind, locationIdentity);
this.value = value;
this.stateAfter = stateAfter;
assert accessKind != Kind.Void && accessKind != Kind.Illegal;
}
public FrameState stateAfter() {
return stateAfter;
}
public void setStateAfter(FrameState x) {
assert x == null || x.isAlive() : "frame state must be in a graph";
updateUsages(stateAfter, x);
stateAfter = x;
}
public boolean hasSideEffect() {
return true;
}
public ValueNode value() {
return value;
}
@Override
public void lower(LoweringTool tool) {
tool.getLowerer().lower(this, tool);
}
@Override
public void virtualize(VirtualizerTool tool) {
State state = tool.getObjectState(object());
if (state != null && state.getState() == EscapeState.Virtual) {
ValueNode indexValue = tool.getReplacedValue(offset());
if (indexValue.isConstant()) {
long off = indexValue.asJavaConstant().asLong();
int entryIndex = state.getVirtualObject().entryIndexForOffset(off);
if (entryIndex != -1) {
Kind entryKind = state.getVirtualObject().entryKind(entryIndex);
ValueNode entry = state.getEntry(entryIndex);
if (entry.getKind() == value.getKind() || entryKind == accessKind()) {
tool.setVirtualEntry(state, entryIndex, value(), true);
tool.delete();
} else {
if ((accessKind() == Kind.Long || accessKind() == Kind.Double) && entryKind == Kind.Int) {
int nextIndex = state.getVirtualObject().entryIndexForOffset(off + 4);
if (nextIndex != -1) {
Kind nextKind = state.getVirtualObject().entryKind(nextIndex);
if (nextKind == Kind.Int) {
tool.setVirtualEntry(state, entryIndex, value(), true);
tool.setVirtualEntry(state, nextIndex, ConstantNode.forConstant(JavaConstant.forIllegal(), tool.getMetaAccessProvider(), graph()), true);
tool.delete();
}
}
}
}
}
}
}
}
@Override
protected ValueNode cloneAsFieldAccess(ResolvedJavaField field) {
return StoreFieldNode.create(object(), field, value(), stateAfter());
}
@Override
protected ValueNode cloneAsArrayAccess(ValueNode location, LocationIdentity identity) {
return UnsafeStoreNode.create(object(), location, value, accessKind(), identity, stateAfter());
}
public FrameState getState() {
return stateAfter;
}
// specialized on value type until boxing/unboxing is sorted out in intrinsification
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, Object value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putObject(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, boolean value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putBoolean(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, byte value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putByte(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, char value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putChar(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, double value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putDouble(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, float value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putFloat(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, int value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putInt(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, long value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putLong(object, offset, value);
}
@SuppressWarnings("unused")
@NodeIntrinsic
public static void store(Object object, long offset, short value, @ConstantNodeParameter Kind kind, @ConstantNodeParameter LocationIdentity locationIdentity) {
unsafe.putShort(object, offset, value);
}
}
| smarr/graal | graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnsafeStoreNode.java | Java | gpl-2.0 | 8,131 |
/*
* Copyright (C) 2013-2016 JadeCore <https://www.jadecore.tk/>
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2011-2016 Project SkyFire <http://www.projectskyfire.org/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 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, see <http://www.gnu.org/licenses/>.
*/
/* ScriptData
SDName: Boss_Garr
SD%Complete: 50
SDComment: Adds NYI
SDCategory: Molten Core
EndScriptData */
#include "ObjectMgr.h"
#include "ScriptMgr.h"
#include "ScriptedCreature.h"
#include "molten_core.h"
enum Spells
{
// Garr
SPELL_ANTIMAGIC_PULSE = 19492,
SPELL_MAGMA_SHACKLES = 19496,
SPELL_ENRAGE = 19516,
// Adds
SPELL_ERUPTION = 19497,
SPELL_IMMOLATE = 20294,
};
enum Events
{
EVENT_ANTIMAGIC_PULSE = 1,
EVENT_MAGMA_SHACKLES = 2,
};
class boss_garr : public CreatureScript
{
public:
boss_garr() : CreatureScript("boss_garr") { }
struct boss_garrAI : public BossAI
{
boss_garrAI(Creature* creature) : BossAI(creature, BOSS_GARR)
{
}
void EnterCombat(Unit* victim)
{
BossAI::EnterCombat(victim);
events.ScheduleEvent(EVENT_ANTIMAGIC_PULSE, 25000);
events.ScheduleEvent(EVENT_MAGMA_SHACKLES, 15000);
}
void UpdateAI(const uint32 diff)
{
if (!UpdateVictim())
return;
events.Update(diff);
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_ANTIMAGIC_PULSE:
DoCast(me, SPELL_ANTIMAGIC_PULSE);
events.ScheduleEvent(EVENT_ANTIMAGIC_PULSE, urand(10000, 15000));
break;
case EVENT_MAGMA_SHACKLES:
DoCast(me, SPELL_MAGMA_SHACKLES);
events.ScheduleEvent(EVENT_MAGMA_SHACKLES, urand(8000, 12000));
break;
default:
break;
}
}
DoMeleeAttackIfReady();
}
};
CreatureAI* GetAI(Creature* creature) const
{
return new boss_garrAI(creature);
}
};
class mob_firesworn : public CreatureScript
{
public:
mob_firesworn() : CreatureScript("mob_firesworn") { }
struct mob_fireswornAI : public ScriptedAI
{
mob_fireswornAI(Creature* creature) : ScriptedAI(creature) {}
uint32 immolateTimer;
void Reset()
{
immolateTimer = 4000; //These times are probably wrong
}
void DamageTaken(Unit* /*attacker*/, uint32& damage)
{
uint32 const health10pct = me->CountPctFromMaxHealth(10);
uint32 health = me->GetHealth();
if (int32(health) - int32(damage) < int32(health10pct))
{
damage = 0;
DoCastVictim(SPELL_ERUPTION);
me->DespawnOrUnsummon();
}
}
void UpdateAI(const uint32 diff)
{
if (!UpdateVictim())
return;
if (immolateTimer <= diff)
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
DoCast(target, SPELL_IMMOLATE);
immolateTimer = urand(5000, 10000);
}
else
immolateTimer -= diff;
DoMeleeAttackIfReady();
}
};
CreatureAI* GetAI(Creature* creature) const
{
return new mob_fireswornAI(creature);
}
};
void AddSC_boss_garr()
{
new boss_garr();
new mob_firesworn();
}
| cooler-SAI/JadeCore | src/server/scripts/EasternKingdoms/MoltenCore/boss_garr.cpp | C++ | gpl-2.0 | 4,700 |
package org.gudy.azureus2.ui.swt.views.clientstats;
import org.gudy.azureus2.core3.util.DisplayFormatters;
import org.gudy.azureus2.plugins.ui.tables.TableCell;
import org.gudy.azureus2.plugins.ui.tables.TableCellRefreshListener;
import org.gudy.azureus2.plugins.ui.tables.TableColumn;
public class ColumnCS_Pct
implements TableCellRefreshListener
{
public static final String COLUMN_ID = "percent";
public ColumnCS_Pct(TableColumn column) {
column.initialize(TableColumn.ALIGN_TRAIL, TableColumn.POSITION_LAST, 50);
column.addListeners(this);
column.setType(TableColumn.TYPE_TEXT_ONLY);
column.setRefreshInterval(TableColumn.INTERVAL_LIVE);
}
public void refresh(TableCell cell) {
ClientStatsDataSource ds = (ClientStatsDataSource) cell.getDataSource();
if (ds == null) {
return;
}
float val = ds.count * 1000f / ds.overall.count;
if (cell.setSortValue(val) || !cell.isValid()) {
cell.setText(DisplayFormatters.formatPercentFromThousands((int) val));
}
}
}
| AcademicTorrents/AcademicTorrents-Downloader | frostwire-merge/org/gudy/azureus2/ui/swt/views/clientstats/ColumnCS_Pct.java | Java | gpl-2.0 | 996 |
package com.searchengine.domain;
import java.util.Date;
/**
* Created by RayLew on 2015/4/22.
* QQ:897929321
*/
public class UserQuery {
private Long id;
private Long uid;
private Long qid;
private Date createdTime;
private String content;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUid() {
return uid;
}
public void setUid(Long uid) {
this.uid = uid;
}
public Long getQid() {
return qid;
}
public void setQid(Long qid) {
this.qid = qid;
}
public Date getCreatedTime() {
return createdTime;
}
public void setCreatedTime(Date createdTime) {
this.createdTime = createdTime;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
| aishangzoulu/raylew_searchengine_server | com-searchengine-domain/src/main/java/com/searchengine/domain/UserQuery.java | Java | gpl-2.0 | 937 |
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2009-2013 Andrew Aloia |
| Copyright (C) 2014 Wixiweb |
| |
| 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. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
//---------------------------------------------------------------
function callRegion($subnet){
global $config;
include_once($config['base_path'] ."/plugins/gpsmap/includes/polling/pollinginitial.php");
include_once($config['base_path'] ."/plugins/gpsmap/includes/polling/processregion.php");
region($subnet);
}
//---------------------------------------------------------------
function getTowerIds(){
$towerIds = array();
$result = mysql_query("SELECT `templateID` FROM `gpsmap_templates` WHERE `AP`=1");
if (mysql_num_rows($result)== 0){
//add false towerID to relieve error, towerID goes by host type.
$towerIds[] = 9999;
}else{
while($row = mysql_fetch_array($result,MYSQL_NUM)){
$towerIds[] = $row[0];
}
}
return $towerIds;
}
//---------------------------------------------------------------
function calcMeters ($Lat1, $Lon1, $Lat2, $Lon2){
$difference= (6378.7*3.1415926*sqrt(($Lat2-$Lat1)*($Lat2-$Lat1) + cos($Lat2/57.29578)*cos($Lat1/57.29578)*($Lon2-$Lon1)*($Lon2-$Lon1))/180);
return $difference;
}
//---------------------------------------------------------------
function coordCheck($coords){
$match = preg_match('#((-\d{1,3})|(\d{1,3}))(.)(\d+)#',$coords);
if($match){
return $coords;
}else{
//return 0.00 as coords, user can fix problem.
return "0.000";
}
}
//---------------------------------------------------------------
function createDoc($hostArrays,$preemptive){
xmlCreate($hostArrays,$preemptive);
kmlCreate($hostArrays,$preemptive);
}
//---------------------------------------------------------------
function parseToXML($htmlStr)
{
$xmlStr=str_replace('<','<',$htmlStr);
$xmlStr=str_replace('>','>',$xmlStr);
$xmlStr=str_replace('"','"',$xmlStr);
$xmlStr=str_replace("'",''',$xmlStr);
$xmlStr=str_replace("&",'&',$xmlStr);
return $xmlStr;
}
//---------------------------------------------------------------
function xmlCreate($hostArrays,$preemptive){
global $towerId;
global $config;
$doc = '<markers>';
$doc .= createXMLNodes($hostArrays[1]);
$doc .= coverageXML($hostArrays);
$doc .= '</markers>';
//write that xml
$filename = $config['base_path'] ."/plugins/gpsmap/XML/".$preemptive.".xml";
$f = fopen($filename,"w");
fwrite($f, $doc);
fclose($f);
}
//---------------------------------------------------------------
function coverageXML($hostArrays){
$doc = '';
global $config;
require($config['base_path'] ."/plugins/gpsmap/includes/polling/coveragexml.php");
return $doc;
}
//---------------------------------------------------------------
function kmlCreate($hostArrays,$preemptive){
global $config;
require($config['base_path'] ."/plugins/gpsmap/includes/polling/kmlcreation.php");
}
//---------------------------------------------------------------
function createTypeArray(){
$typeArray = array();
$result = mysql_query("SELECT `id`,`name` FROM `host_template`");
while($row = mysql_fetch_array($result,MYSQL_NUM)){
$typeArray[$row[0]] = $row[1];
}
return $typeArray;
}
//---------------------------------------------------------------
function createXMLNodes($hostArray){
//step through each node selected and get info and shove it to xml
$doc = "";
$typeArray = createTypeArray();
foreach($hostArray as $host){
if($host->showMap == 1){
//Add a new node to XML
$doc .= '<marker ';
//gotta determine type based on host type,
$type = $host->type;
//insure nothing will be invalid.
$doc .= 'id="' . parseToXML($host->id) . '" ';
$doc .= 'name="' . parseToXML($host->description) . '" ';
$doc .= 'address="' . parseToXML($host->hostname) . '" ';
$doc .= 'lat="' . parseToXML($host->lat) . '" ';
$doc .= 'lng="' . parseToXML($host->long) . '" ';
if ($typeArray[$type]){
$doc .= 'type="' . parseToXML($typeArray[$type]) . '" ';
}else{
$doc .= 'type="' . parseToXML("Unknown") . '" ';
}
$doc .= 'templateId="' . parseToXML($type) . '" ';
$doc .= 'availability="' . $host->avail .'" ';
$doc .= 'radius="0" ';
$doc .= 'status="' . parseToXML($host->status) . '" ';
$doc .= 'latency="' . parseToXML($host->latency) . '" ';
$doc .= 'group="' . parseToXML($host->group) . '" ';
$doc .= '/>';
$doc .= "\n";
}
}
return $doc;
}
?> | wixiweb/cacti-gpsmaps | includes/polling/functions.php | PHP | gpl-2.0 | 5,542 |
#!/usr/bin/python3
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gio, Gtk, GObject, Gdk
from GSettingsWidgets import *
class Module:
name = "windows"
category = "prefs"
comment = _("Manage window preferences")
def __init__(self, content_box):
keywords = _("windows, titlebar, edge, switcher, window list, attention, focus")
sidePage = SidePage(_("Windows"), "cs-windows", keywords, content_box, module=self)
self.sidePage = sidePage
def on_module_selected(self):
if not self.loaded:
print("Loading Windows module")
self.sidePage.stack = SettingsStack()
self.sidePage.add_widget(self.sidePage.stack)
# Titlebar
page = SettingsPage()
self.sidePage.stack.add_titled(page, "titlebar", _("Titlebar"))
widget = TitleBarButtonsOrderSelector()
page.add(widget)
settings = page.add_section(_("Actions"))
action_options = [["toggle-shade", _("Toggle Shade")], ["toggle-maximize", _("Toggle Maximize")],
["toggle-maximize-horizontally", _("Toggle Maximize Horizontally")], ["toggle-maximize-vertically", _("Toggle Maximize Vertically")],
["toggle-stuck", _("Toggle on all workspaces")], ["toggle-above", _("Toggle always on top")],
["minimize", _("Minimize")], ["menu", _("Menu")], ["lower", _("Lower")], ["none", _("None")]]
size_group = Gtk.SizeGroup.new(Gtk.SizeGroupMode.HORIZONTAL)
widget = GSettingsComboBox(_("Action on title bar double-click"), "org.cinnamon.desktop.wm.preferences", "action-double-click-titlebar", action_options, size_group=size_group)
settings.add_row(widget)
widget = GSettingsComboBox(_("Action on title bar middle-click"), "org.cinnamon.desktop.wm.preferences", "action-middle-click-titlebar", action_options, size_group=size_group)
settings.add_row(widget)
widget = GSettingsComboBox(_("Action on title bar right-click"), "org.cinnamon.desktop.wm.preferences", "action-right-click-titlebar", action_options, size_group=size_group)
settings.add_row(widget)
scroll_options = [["none", _("Nothing")],["shade", _("Shade and unshade")],["opacity", _("Adjust opacity")]]
widget = GSettingsComboBox(_("Action on title bar with mouse scroll"), "org.cinnamon.desktop.wm.preferences", "action-scroll-titlebar", scroll_options, size_group=size_group)
settings.add_row(widget)
spin = GSettingsSpinButton(_("Minimum opacity"), "org.cinnamon.desktop.wm.preferences", "min-window-opacity", _("%"))
settings.add_reveal_row(spin)
spin.revealer.settings = Gio.Settings("org.cinnamon.desktop.wm.preferences")
spin.revealer.settings.bind_with_mapping("action-scroll-titlebar", spin.revealer, "reveal-child", Gio.SettingsBindFlags.GET, lambda x: x == "opacity", None)
# Behavior
page = SettingsPage()
self.sidePage.stack.add_titled(page, "behavior", _("Behavior"))
settings = page.add_section(_("Window Focus"))
focus_options = [["click", _("Click")], ["sloppy", _("Sloppy")], ["mouse", _("Mouse")]]
widget = GSettingsComboBox(_("Window focus mode"), "org.cinnamon.desktop.wm.preferences", "focus-mode", focus_options)
settings.add_row(widget)
widget = GSettingsSwitch(_("Automatically raise focused windows"), "org.cinnamon.desktop.wm.preferences", "auto-raise")
settings.add_reveal_row(widget)
widget.revealer.settings = Gio.Settings("org.cinnamon.desktop.wm.preferences")
widget.revealer.settings.bind_with_mapping("focus-mode", widget.revealer, "reveal-child", Gio.SettingsBindFlags.GET, lambda x: x in ("sloppy", "mouse"), None)
widget = GSettingsSwitch(_("Bring windows which require attention to the current workspace"), "org.cinnamon", "bring-windows-to-current-workspace")
settings.add_row(widget)
widget = GSettingsSwitch(_("Prevent focus stealing"), "org.cinnamon", "prevent-focus-stealing")
settings.add_row(widget)
widget = GSettingsSwitch(_("Attach dialog windows to the parent window"), "org.cinnamon.muffin", "attach-modal-dialogs")
settings.add_row(widget)
settings = page.add_section(_("Moving and Resizing Windows"))
size_group = Gtk.SizeGroup.new(Gtk.SizeGroupMode.HORIZONTAL)
placement_options = [["automatic", _("Automatic")], ["pointer", _("Cursor")], ["manual", _("Manual")], ["center", _("Center")]]
widget = GSettingsComboBox(_("Location of newly opened windows"), "org.cinnamon.muffin", "placement-mode", placement_options, size_group=size_group)
settings.add_row(widget)
special_key_options = [["", _("Disabled")], ["<Alt>", "<Alt>"],["<Super>", "<Super>"],["<Control>", "<Control>"]]
widget = GSettingsComboBox(_("Special key to move and resize windows"), "org.cinnamon.desktop.wm.preferences", "mouse-button-modifier", special_key_options, size_group=size_group)
widget.set_tooltip_text(_("While the special key is pressed, windows can be dragged with the left mouse button and resized with the right mouse button."))
settings.add_row(widget)
widget = GSettingsSpinButton(_("Window drag/resize threshold"), "org.cinnamon.muffin", "resize-threshold", _("Pixels"), 1, 100, size_group=size_group)
settings.add_row(widget)
widget = GSettingsSwitch(_("Edge resistance with other windows and monitor boundaries"), "org.cinnamon.muffin", "edge-resistance-window")
widget.set_tooltip_text(_("Make window borders stick when moved or resized near other windows or monitor edges."))
settings.add_row(widget)
# Alt Tab
page = SettingsPage()
self.sidePage.stack.add_titled(page, "alttab", _("Alt-Tab"))
settings = page.add_section(_("Alt-Tab"))
alttab_styles = [
["icons", _("Icons only")],
["thumbnails", _("Thumbnails only")],
["icons+thumbnails", _("Icons and thumbnails")],
["icons+preview", _("Icons and window preview")],
["preview", _("Window preview (no icons)")],
["coverflow", _("Coverflow (3D)")],
["timeline", _("Timeline (3D)")]
]
widget = GSettingsComboBox(_("Alt-Tab switcher style"), "org.cinnamon", "alttab-switcher-style", alttab_styles)
settings.add_row(widget)
widget = GSettingsSwitch(_("Display the alt-tab switcher on the primary monitor instead of the active one"), "org.cinnamon", "alttab-switcher-enforce-primary-monitor")
settings.add_row(widget)
widget = GSettingsSwitch(_("Move minimized windows to the end of the alt-tab switcher"), "org.cinnamon", "alttab-minimized-aware")
settings.add_row(widget)
widget = GSettingsSpinButton(_("Delay before displaying the alt-tab switcher"), "org.cinnamon", "alttab-switcher-delay", units=_("milliseconds"), mini=0, maxi=1000, step=50, page=150)
settings.add_row(widget)
widget = GSettingsSwitch(_("Show windows from all workspaces"), "org.cinnamon", "alttab-switcher-show-all-workspaces")
settings.add_row(widget)
class TitleBarButtonsOrderSelector(SettingsBox):
def __init__(self):
self.schema = "org.cinnamon.desktop.wm.preferences"
self.key = "button-layout"
super(TitleBarButtonsOrderSelector, self).__init__(_("Buttons"))
self.settings = Gio.Settings.new(self.schema)
self.value = self.settings.get_string(self.key)
left_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
left_box.set_border_width(5)
left_box.set_margin_left(20)
left_box.set_margin_right(20)
left_box.set_spacing(5)
right_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
right_box.set_border_width(5)
right_box.set_margin_left(20)
right_box.set_margin_right(20)
right_box.set_spacing(5)
try:
left_items, right_items = self.value.split(":")
except:
left_items = right_items = ""
if len(left_items) > 0:
left_items = left_items.split(",")
else:
left_items = []
if len(right_items) > 0:
right_items = right_items.split(",")
else:
right_items = []
left_label = Gtk.Label.new(_("Left side title bar buttons"))
left_label.set_alignment(0.0, 0.5)
left_label.set_line_wrap(True)
left_box.pack_start(left_label, False, False, 0)
left_grid = Gtk.Grid()
left_grid.set_column_spacing(4)
left_box.pack_end(left_grid, False, False, 0)
left_grid.set_valign(Gtk.Align.CENTER)
right_label = Gtk.Label.new(_("Right side title bar buttons"))
right_label.set_alignment(0.0, 0.5)
right_label.set_line_wrap(True)
right_box.pack_start(right_label, False, False, 0)
right_grid = Gtk.Grid()
right_grid.set_column_spacing(4)
right_box.pack_end(right_grid, False, False, 0)
right_grid.set_valign(Gtk.Align.CENTER)
self.left_side_widgets = []
self.right_side_widgets = []
for i in range(4):
self.left_side_widgets.append(Gtk.ComboBox())
self.right_side_widgets.append(Gtk.ComboBox())
buttons = [
("", ""),
("menu", _("Menu")),
("close", _("Close")),
("minimize", _("Minimize")),
("maximize", _("Maximize")),
("stick", _("Sticky")),
("shade", _("Shade"))
]
for i in self.left_side_widgets + self.right_side_widgets:
if i in self.left_side_widgets:
ref_list = left_items
index = self.left_side_widgets.index(i)
else:
ref_list = right_items
index = self.right_side_widgets.index(i)
model = Gtk.ListStore(str, str)
selected_iter = None
for button in buttons:
iter = model.insert_before(None, None)
model.set_value(iter, 0, button[0])
model.set_value(iter, 1, button[1])
if index < len(ref_list) and ref_list[index] == button[0]:
selected_iter = iter
i.set_model(model)
renderer_text = Gtk.CellRendererText()
i.pack_start(renderer_text, True)
i.add_attribute(renderer_text, "text", 1)
if selected_iter is not None:
i.set_active_iter(selected_iter)
i.connect("changed", self.on_my_value_changed)
for i in self.left_side_widgets:
index = self.left_side_widgets.index(i)
left_grid.attach(i, index, 0, 1, 1)
i.set_valign(Gtk.Align.CENTER)
for i in self.right_side_widgets:
index = self.right_side_widgets.index(i)
right_grid.attach(i, index, 0, 1, 1)
i.set_valign(Gtk.Align.CENTER)
self.add_row(left_box)
self.add_row(right_box)
def on_my_value_changed(self, widget):
active_iter = widget.get_active_iter()
if active_iter:
new_value = widget.get_model()[active_iter][0]
else:
new_value = None
left_items = []
right_items = []
for i in self.left_side_widgets + self.right_side_widgets:
active_iter = i.get_active_iter()
if active_iter:
value = i.get_model()[i.get_active_iter()][0]
if i != widget and value == new_value:
i.set_active_iter(None)
elif value != "":
if i in self.left_side_widgets:
left_items.append(value)
else:
right_items.append(value)
self.settings.set_string(self.key, ','.join(str(item) for item in left_items) + ':' + ','.join(str(item) for item in right_items))
| collinss/Cinnamon | files/usr/share/cinnamon/cinnamon-settings/modules/cs_windows.py | Python | gpl-2.0 | 12,390 |
/*
* Copyright (C) 2013 ChaosCore and GaryMoveOut
*
*/
#include "icecrown_citadel.h"
#include "MapManager.h"
#include "Transport.h"
#include "Vehicle.h"
#include "Group.h"
#include "ObjectMgr.h"
#include "Object.h"
#include "ScriptMgr.h"
#include "ScriptedCreature.h"
#include "SpellAuras.h"
#include "SpellScript.h"
enum eAchievements
{
IM_ON_A_BOAT_10 = 4536,
IM_ON_A_BOAT_25 = 4612
};
enum Actions
{
ACTION_INTRO_START = 1,
ACTION_BATTLE_EVENT = 2,
ACTION_MAGE_DIE = 3,
ACTION_ROCK_DIE = 4,
ACTION_AXES_RIFL_DIE = 5,
ACTION_DONE = 6,
ACTION_FAIL = 7,
};
enum Spells
{
SPELL_BURNING_PITCH_A = 71335,
SPELL_BURNING_PITCH_H = 71339,
SPELL_BURNING_PITCH_SIEGE_DMG_A = 70383,
SPELL_BURNING_PITCH_SIEGE_DMG_H = 70374,
SPELL_BURNING_PITCH_AOE_DAMAGE = 69660,
SPELL_WOUNDING_STRIKE_10_NM = 69651,
SPELL_WOUNDING_STRIKE_10_HM = 72570,
SPELL_WOUNDING_STRIKE_25_NM = 72569,
SPELL_WOUNDING_STRIKE_25_HM = 72571,
SPELL_TELEPORT_VISUAL = 64446,
SPELL_BLADESTORM = 69652,
SPELL_BLADESTORM_TRIGGER = 69653,
// Cannon
SPELL_HEAT_DRAIN = 69470,
SPELL_OVERHEAT = 69487, // Triggers spell #69488 every 0.25s. It should consume 10 Energy but does not.
SPELL_CANNON_BLAST = 69399,
SPELL_INCINERATING_BLAST = 69401,
// Auras
SPELL_ON_ORGRIMS_HAMMERS_DECK = 70121,
SPELL_ON_SKYBREAKERS_DECK = 70120,
// Achievement spell required target
SPELL_ACHIEVEMENT = 72959,
// Rampart of Skulls NPCs Spells
// Kor'kron Primalist
SPELL_WRATH = 69968,
SPELL_HEALING_TOUCH = 69899,
SPELL_REGROWTH = 69882,
SPELL_REJUVENATION = 69898,
SPELL_SUMMON_BATTLE_STANDART_A = 69810,
SPELL_SUMMON_BATTLE_STANDART_H = 69811,
// Kor'kron Defender
SPELL_DEVASTATE = 69902,
SPELL_THUNDERCLAP = 69965,
SPELL_SUNDER_ARMOR = 57807,
SPELL_SPELL_REFLECT = 69901,
// Skybreaker Vindicator
SPELL_AVENGERS_SHIELD = 69927,
SPELL_CONCENTRATION = 69930,
SPELL_HOLY_WRATH = 69934,
// Frostwyrm
SPELL_FROST_BREATH = 70116,
SPELL_BLIZZARD = 70362,
SPELL_FROST_CLEAVE = 70361,
// Muradin Bronzebeard / High Overlord Saurfang
SPELL_CLEAVE = 15284,
SPELL_RENDING_THROW = 70309,
SPELL_TASTE_OF_BLOOD = 69634,
// Kor'kron Battle-mage & Skybreaker Sorcerer
SPELL_BELOW_ZERO = 69705,
SPELL_SHADOW_CHANNELING = 45104,
// Experience spells
SPELL_EXPERIENCED = 71188,
SPELL_VETERAN = 71193,
SPELL_ELITE = 71195,
SPELL_DESPERATE_RESOLVE_10_NM = 69647,
SPELL_DESPERATE_RESOLVE_10_HM = 72537,
SPELL_DESPERATE_RESOLVE_25_NM = 72536,
SPELL_DESPERATE_RESOLVE_25_HM = 72538,
// Kor'kron Axethrower & Skybreaker Rifleman
SPELL_HURL_AXE = 70161,
SPELL_SHOOT = 70162,
// Kor'kron Rocketeer & Skybreaker Mortar Soldier
SPELL_ROCKET_ARTILLERY_MARKER = 71371,
SPELL_ROCKET_ARTILLERY_TRIGGERED = 69679,
SPELL_ROCKET_ARTILLERY_HORDE = 69678,
SPELL_ROCKET_ARTILLERY_ALLIANCE = 70609,
SPELL_EXPLOSION = 69680,
// Ship Explsion
SPELL_SHIP_EXPLOSION = 72137,
// Remove Rocket Packs
SPELL_REMOVE_ROCKET_PACK = 70713,
// Achievements
SPELL_ACHIEVEMENT_CHECK = 72959,
};
enum Events
{
EVENT_NULL,
EVENT_INTRO_ALLIANCE_1, // Muradin Bronzebeard yells: Fire up the engines! We got a meetin' with destiny, lads!
EVENT_INTRO_ALLIANCE_2, // Muradin Bronzebeard yells: Hold on to yer hats!
EVENT_INTRO_ALLIANCE_3, // Muradin Bronzebeard yells: What in the world is that? Grab me spyglass, crewman!
EVENT_INTRO_ALLIANCE_4, // Muradin Bronzebeard yells: By me own beard! HORDE SAILIN' IN FAST 'N HOT!
EVENT_INTRO_ALLIANCE_5, // Muradin Bronzebeard yells: EVASIVE ACTION! MAN THE GUNS!
EVENT_INTRO_ALLIANCE_6, // Muradin Bronzebeard yells: Cowardly dogs! Ye blindsided us!
EVENT_INTRO_ALLIANCE_7, // High Overlord Saurfang yells: This is not your battle, dwarf. Back down or we will be forced to destroy your ship.
EVENT_INTRO_ALLIANCE_8, // Muradin Bronzebeard yells: Not me battle? I dunnae who ye think ye are, mister, but I got a score to settle with Arthas and yer not gettin' in me way! FIRE ALL GUNS! FIRE! FIRE!
EVENT_INTRO_HORDE_1, // High Overlord Saurfang yells: Rise up, sons and daughters of the Horde! Today we battle a hated enemy of the Horde! LOK'TAR OGAR! Kor'kron, take us out!
EVENT_INTRO_HORDE_1_1, // Kor'kron, take us out!
EVENT_INTRO_HORDE_2, // High Overlord Saurfang yells: What is that?! Something approaching in the distance!
EVENT_INTRO_HORDE_3, // High Overlord Saurfang yells: ALLIANCE GUNSHIP! ALL HANDS ON DECK!
EVENT_INTRO_HORDE_4, // Muradin Bronzebeard yells: Move yer jalopy or we'll blow it out of the sky, orc! The Horde's got no business here!
EVENT_INTRO_HORDE_5, // High Overlord Saurfang yells: You will know our business soon! KOR'KRON, ANNIHILATE THEM!
EVENT_OUTRO_ALLIANCE_1,
EVENT_OUTRO_ALLIANCE_2,
EVENT_OUTRO_ALLIANCE_3,
EVENT_OUTRO_HORDE_1,
EVENT_OUTRO_HORDE_2,
EVENT_OUTRO_HORDE_3,
//Fly
EVENT_START_FLY,
//Misc battle
EVENT_WALK_MOBS,
EVENT_SUMMON_PORTAL,
EVENT_FREEZE_CANNON,
EVENT_SHADOW_CHANNELING,
EVENT_UNSUMMON_PORTAL,
EVENT_BOARDING_GUNSHIP,
EVENT_BOARDING_TALK,
EVENT_BURNING_PITCH,
EVENT_WOUNDING_STRIKE,
EVENT_BLADE_STORM,
EVENT_DONE,
EVENT_FAIL,
EVENT_RESTART_EVENT,
EVENT_BOARDING_REAVERS_MARINE,
EVENT_WIPE_CHECK,
// Rampart of Skulls NPCs Events
EVENT_WRATH,
EVENT_HEAL,
EVENT_SUNDER_ARMOR,
EVENT_SPELL_REFLECT,
EVENT_THUNDERCLAP,
EVENT_DEVASTATE,
EVENT_FROST_BREATH,
EVENT_BLIZZARD,
EVENT_CLEAVE,
// Skybreaker Vindicator
EVENT_AVENGERS_SHILED,
EVENT_CONCENTRATION,
EVENT_HOLY_WRATH,
// First Squad Assisted
EVENT_FIRST_SQUAD_ASSISTED_1,
EVENT_FIRST_SQUAD_ASSISTED_2,
// Second Squad Assisted
EVENT_SECOND_SQUAD_ASSISTED_1,
EVENT_SECOND_SQUAD_ASSISTED_2,
EVENT_SECOND_SQUAD_ASSISTED_3,
// Shared experience events
EVENT_EXPERIENCED,
EVENT_VETERAN,
EVENT_ELITE,
EVENT_ATACK_START,
// Kor'kron Axethrower & Skybreaker Rifleman
EVENT_HURL_AXE,
EVENT_SHOOT,
// Kor'kron Rocketeer & Skybreaker Mortar Soldier
EVENT_ROCKET_ART,
// Muradin Bronzebeard & High Overlord Saurfang
EVENT_RENDING_THROW,
EVENT_TASTE_OF_BLOOD,
// Misc (used in various NPCs)
EVENT_SPAWN_MAGE,
EVENT_RESPAWN_AXES_RIFLEMEN,
EVENT_RESPAWN_ROCKETEER,
};
enum Texts
{
// Kor'kron Primalist
SAY_FIRST_SQUAD_RESCUED_HORDE_0 = 0,
// Kor'kron Invoker
SAY_FIRST_SQUAD_RESCUED_HORDE_1 = 0,
// Kor'kron Defender
SAY_SECOND_SQUAD_RESCUED_HORDE_0 = 0,
SAY_SECOND_SQUAD_RESCUED_HORDE_1 = 1,
SAY_FROSTWYRM_SUMMON_0 = 2,
SAY_FROSTWYRM_SUMMON_1 = 3,
// Skybreaker Vindicator
SAY_FIRST_SQUAD_RESCUED_ALLIANCE_0 = 0,
// Skybreaker Sorcerer
SAY_FIRST_SQUAD_RESCUED_ALLIANCE_1 = 0,
// Skybreaker Protector
SAY_SECOND_SQUAD_RESCUED_ALLIANCE_0 = 0,
SAY_SECOND_SQUAD_RESCUED_ALLIANCE_1 = 1,
SAY_SECOND_SQUAD_RESCUED_ALLIANCE_2 = 2,
// Kor'kron Invoker & Skybreaker Sorcerer
SAY_SUMMON_BATTLE_STANDARD = 1,
// Froswyrm
SAY_FROSTWYRM_LAND_H_0 = 0,
SAY_FROSTWYRM_LAND_A_1 = 1,
// Muradin Bronzebeard
SAY_INTRO_ALLIANCE_0 = 0,
SAY_INTRO_ALLIANCE_1 = 1,
SAY_INTRO_ALLIANCE_2 = 2,
SAY_INTRO_ALLIANCE_3 = 3,
SAY_INTRO_ALLIANCE_4 = 4,
SAY_INTRO_ALLIANCE_5 = 5,
SAY_INTRO_ALLIANCE_7 = 6,
SAY_INTRO_HORDE_3 = 7,
SAY_BOARDING_SKYBREAKER_1 = 8,
SAY_BOARDING_ORGRIMS_HAMMER_0 = 9,
SAY_NEW_RIFLEMEN_SPAWNED = 10,
SAY_NEW_MORTAR_TEAM_SPAWNED = 11,
SAY_NEW_MAGE_SPAWNED = 12,
SAY_ALLIANCE_VICTORY = 13,
SAY_ALLIANCE_DEFEAT = 14, // How will we handle that case ? Ie. the player loses
// High Overlord Saurfang
SAY_INTRO_HORDE_0 = 0,
SAY_INTRO_HORDE_0_1 = 1,
SAY_INTRO_HORDE_1 = 2,
SAY_INTRO_HORDE_2 = 3,
SAY_INTRO_HORDE_4 = 4,
SAY_BOARDING_SKYBREAKER_0 = 5,
SAY_BOARDING_ORGRIMS_HAMMER_1 = 6,
SAY_NEW_AXETHROWER_SPAWNED = 7,
SAY_NEW_ROCKETEERS_SPAWNED = 8,
SAY_NEW_BATTLE_MAGE_SPAWNED = 9,
SAY_HORDE_VICTORY = 10,
SAY_HORDE_DEFEAT = 11,
SAY_HIGH_OVERLORD_SAURFANG_NOT_VISUAL = 0,
SAY_BOARDING_SKYBREAKER_SAURFANG = 1,
SAY_MURADIN_BRONZEBEARD_NOT_VISUAL = 0,
SAY_BOARDING_SKYBREAKER_MURADIN = 1,
};
Position const FrostWyrmPosH = {-435.429f, 2077.556f, 219.1148f, 4.767166f};
Position const FrostWyrmPosA = {-437.409f, 2349.026f, 219.1148f, 1.483120f};
struct mortarMarksLoc
{
uint32 durationBeforeRefreshing;
Position location;
};
//Function find player special for Gunship battle
typedef std::list<Player*> TPlayerLists;
TPlayerLists GetPlayersInTheMaps(Map *pMap)
{
TPlayerLists players;
const Map::PlayerList &PlayerList = pMap->GetPlayers();
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player* player = i->GetSource())
players.push_back(player);
return players;
}
Player* SelectRandomPlayerFromLists(TPlayerLists &players)
{
if (players.empty())
return NULL;
TPlayerLists::iterator it = players.begin();
std::advance(it, urand(0, players.size()-1));
return *it;
}
Player* SelectRandomPlayerInTheMaps(Map* pMap)
{
TPlayerLists players = GetPlayersInTheMaps(pMap);
return SelectRandomPlayerFromLists(players);
}
//Function start motion of the ship
void StartFlyShip(Transport* t)
{
t->SetFlag(GAMEOBJECT_FLAGS, GO_FLAG_IN_USE);
t->SetGoState(GO_STATE_ACTIVE);
t->SetUInt32Value(GAMEOBJECT_DYNAMIC, 0x10830010); // Seen in sniffs
t->SetFloatValue(GAMEOBJECT_PARENTROTATION + 3, 1.0f);
Map* map = t->GetMap();
std::set<uint32> mapsUsed;
GameObjectTemplate const* goinfo = t->GetGOInfo();
t->GenerateWaypoints(goinfo->moTransport.taxiPathId, mapsUsed);
for (Map::PlayerList::const_iterator itr = map->GetPlayers().begin(); itr != map->GetPlayers().end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
{
UpdateData transData;
t->BuildCreateUpdateBlockForPlayer(&transData, pPlayer);
WorldPacket packet;
transData.BuildPacket(&packet);
pPlayer->SendDirectMessage(&packet);
}
}
}
void UpdateTransportMotionInMap(Transport* t)
{
Map* map = t->GetMap();
for (Map::PlayerList::const_iterator itr = map->GetPlayers().begin(); itr != map->GetPlayers().end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
{
UpdateData transData;
t->BuildCreateUpdateBlockForPlayer(&transData, pPlayer);
WorldPacket packet;
transData.BuildPacket(&packet);
pPlayer->SendDirectMessage(&packet);
}
}
}
void RelocateTransport(Transport* t)
{
Map* map = t->GetMap();
InstanceScript* instance = t->GetInstanceScript();
if (!t || !instance)
return;
// Transoprt movemend on server-side is ugly hack, so we do sincronize positions
switch (t->GetEntry())
{
case GO_THE_SKYBREAKER_ALLIANCE_ICC:
if (instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
t->Relocate(-377.184021f, 2073.548584f, 445.753387f);
else if (instance->GetBossState(DATA_GUNSHIP_EVENT) == DONE)
t->Relocate(-583.942627f, 2212.364990f, 534.673889f);
break;
case GO_ORGRIM_S_HAMMER_ALLIANCE_ICC:
if (instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
t->Relocate(-384.878479f, 1989.831665f, 431.549438f);
break;
case GO_ORGRIM_S_HAMMER_HORDE_ICC:
if (instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
t->Relocate(-438.142365f, 2395.725830f, 436.781647f);
else if (instance->GetBossState(DATA_GUNSHIP_EVENT) == DONE)
t->Relocate(-583.942627f, 2212.364990f, 534.673889f);
break;
case GO_THE_SKYBREAKER_HORDE_ICC:
if (instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
t->Relocate(-435.854156f, 2475.328125f, 449.364105f);
break;
}
t->Update(0);
t->UpdatePassengerPositions();
}
//Function stop motion of the ship
void StopFlyShip(Transport* t)
{
Map* map = t->GetMap();
t->m_WayPoints.clear();
RelocateTransport(t);
t->RemoveFlag(GAMEOBJECT_FLAGS, GO_FLAG_IN_USE);
t->SetGoState(GO_STATE_READY);
for (Map::PlayerList::const_iterator itr = map->GetPlayers().begin(); itr != map->GetPlayers().end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
{
UpdateData transData;
t->BuildCreateUpdateBlockForPlayer(&transData, pPlayer);
WorldPacket packet;
transData.BuildPacket(&packet);
pPlayer->SendDirectMessage(&packet);
}
}
}
//Find Unfriendy transport
Transport* CheckUnfriendlyShip(Creature* me, InstanceScript* instance, uint32 data)
{
if (Creature* pCapitan = ObjectAccessor::GetCreature(*me, instance->GetData64(data)))
return pCapitan->GetTransport();
else
return NULL;
}
//Teleport players
void TeleportPlayers(Map* map, uint64 TeamInInstance)
{
if (map)
{
Map::PlayerList const &lPlayers = map->GetPlayers();
if (!lPlayers.isEmpty())
{
for (Map::PlayerList::const_iterator itr = lPlayers.begin(); itr != lPlayers.end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
{
if (pPlayer->isDead() && !pPlayer->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_GHOST))
pPlayer->ResurrectPlayer(1.0f);
if (TeamInInstance == ALLIANCE)
pPlayer->TeleportTo(631, -437.498505f, 2425.954f, 192.997f, 2.247f);
else
pPlayer->TeleportTo(631, -437.498505f, 1997.954f, 192.997f, 2.247f);
}
}
}
}
}
//Ship explosion
void DoShipExplosion(Transport* t)
{
for (Transport::CreatureSet::iterator itr = t->m_NPCPassengerSet.begin(); itr != t->m_NPCPassengerSet.end();)
{
if (Creature* npc = *itr)
{
if (npc->GetEntry() == NPC_GB_GUNSHIP_HULL)
npc->CastSpell(npc, SPELL_SHIP_EXPLOSION, true);
}
++itr;
}
}
//Wipe check
bool DoWipeCheck(Transport* t)
{
for (Transport::PlayerSet::const_iterator itr = t->GetPassengers().begin(); itr != t->GetPassengers().end();)
{
Player* plr = *itr;
++itr;
if (plr && plr->IsAlive())
return true;
}
return false;
}
//Check falling players
void DoCheckFallingPlayer(Creature* me)
{
Map* map = me->GetMap();
if (map)
{
Map::PlayerList const &lPlayers = map->GetPlayers();
if (!lPlayers.isEmpty())
{
for (Map::PlayerList::const_iterator itr = lPlayers.begin(); itr != lPlayers.end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
{
if (pPlayer->GetPositionZ() < 420.0f && pPlayer->IsWithinDistInMap(me, 300.0f))
pPlayer->NearTeleportTo(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ() + 5.0f, me->GetOrientation());
}
}
}
}
}
//Restart event
void RestartEvent(Transport* t1, Transport* t2, Map* instance, uint64 TeamInInstance)
{
sMapMgr->UnLoadTransportFromMap(t1);
sMapMgr->UnLoadTransportFromMap(t2);
sMapMgr->LoadTransports(); // Try
Map::PlayerList const& players = instance->GetPlayers();
if (players.isEmpty())
return;
if (TeamInInstance == ALLIANCE)
{
if (Transport* th = sMapMgr->LoadTransportInMap(instance, GO_ORGRIM_S_HAMMER_ALLIANCE_ICC, 108000))
{
th->AddNPCPassengerInInstance(NPC_GB_ORGRIMS_HAMMER, 1.845810f, 1.268872f, 34.526218f, 1.5890f);
th->AddNPCPassengerInInstance(NPC_GB_HIGH_OVERLORD_SAURFANG, 37.18615f, 0.00016f, 36.78849f, 3.13683f);
th->AddNPCPassengerInInstance(NPC_GB_INVISIBLE_STALKER, 37.18615f, 0.00016f, 36.78849f, 3.13683f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_BATTLE_MAGE, 47.2929f, -4.308941f, 37.5555f, 3.05033f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_BATTLE_MAGE, 47.34621f, 4.032004f, 37.70952f, 3.05033f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_BATTLE_MAGE, 15.03016f, 0.00016f, 37.70952f, 1.55138f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -13.19547f, -27.160213f, 35.47252f, 3.10672f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.33902f, -25.230491f, 33.04052f, 3.00672f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -60.1251f, -1.27014f, 42.8335f, 5.16073f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -48.2651f, 16.78034f, 34.2515f, 0.04292f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -14.8356f, 27.931688f, 33.363f, 1.73231f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 10.2702f, 20.62966f, 35.37483f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 39.32459f, 14.50176f, 36.88428f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 46.17223f, -6.638763f, 37.35444f, 1.32f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 27.4456f, -13.397498f, 36.34746f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 18.16184f, 1.37897f, 35.31705f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.11516f, -0.196236f, 45.15709f, 2.9f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.11844f, -0.19624f, 49.18192f, 1.6f);
if (instance->ToInstanceMap()->GetMaxPlayers() == 10)
{
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -3.170555f, 28.30652f, 34.21082f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -12.0928f, 27.65942f, 33.58557f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 14.92804f, 26.18018f, 35.47803f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 24.70331f, 25.36584f, 35.97845f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -11.44849f, -25.71838f, 33.64343f, 1.49248f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 12.30336f, -25.69653f, 35.32373f, 1.49248f);
}
else
{
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -3.170555f, 28.30652f, 34.21082f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -12.0928f, 27.65942f, 33.58557f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 14.92804f, 26.18018f, 35.47803f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 24.70331f, 25.36584f, 35.97845f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 19.92804f, 27.18018f, 35.47803f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -7.70331f, 28.36584f, 33.88557f, 1.66527f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -11.44849f, -25.71838f, 33.64343f, 1.49248f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 12.30336f, -25.69653f, 35.32373f, 1.49248f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -3.44849f, -25.71838f, 34.21082f, 1.49248f);
th->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 3.30336f, -25.69653f, 35.32373f, 1.49248f);
}
}
if (Transport* t = sMapMgr->LoadTransportInMap(instance, GO_THE_SKYBREAKER_ALLIANCE_ICC, 108000))
{
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER, -17.156807f, -1.633260f, 20.81273f, 4.52672f);
t->AddNPCPassengerInInstance(NPC_GB_MURADIN_BRONZEBEARD, 13.51547f, -0.160213f, 20.87252f, 3.10672f);
t->AddNPCPassengerInInstance(NPC_GB_HIHG_CAPTAIN_JUSTIN_BARTLETT, 42.78902f, -0.010491f, 25.24052f, 3.00672f);
t->AddNPCPassengerInInstance(NPC_GB_HIGH_OVERLORD_SAURFANG_NOT_VISUAL, -12.9806f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_ZAFOD_BOOMBOX, 18.8042f, 9.907914f, 20.33559f, 3.10672f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_DECKHAND, -64.8423f, 4.4658f, 23.4352f, 2.698897f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_DECKHAND, 35.54972f, 19.93269f, 25.0333f, 4.71242f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_DECKHAND, -36.39837f, 3.13127f, 20.4496f, 1.5708f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_DECKHAND, -36.23974f, -2.75767f, 20.4506f, 4.69496f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_DECKHAND, 41.94677f, 44.08411f, 24.66587f, 1.62032f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 13.51547f, -0.160213f, 20.87252f, 3.10672f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 42.78902f, -0.010491f, 25.24052f, 3.00672f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 14.0551f, 3.65014f, 20.7935f, 3.16073f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 14.0551f, -4.65034f, 20.7915f, 3.04292f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -17.8356f, 0.031688f, 20.823f, 4.73231f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -34.2702f, -26.18966f, 21.37483f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -11.64459f, -19.85176f, 20.88428f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -19.88223f, -6.578763f, 20.57444f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -41.4456f, -7.647498f, 20.49746f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 0.554884f, -1.232897f, 20.53705f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -50.16516f, 9.716236f, 23.58709f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 11.45844f, 16.36624f, 20.54192f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 19.72286f, -2.193787f, 33.06982f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 19.72286f, -2.193787f, 33.06982f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 8.599396f, -28.55855f, 24.79919f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 38.94339f, -33.808f, 25.39618f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 58.15474f, 0.748094f, 41.87663f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 5.607554f, -6.350654f, 34.00357f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 4.780305f, -29.05227f, 35.09634f, 1.6f);
if (instance->ToInstanceMap()->GetMaxPlayers() == 10)
{
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -5.15231f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -28.0876f, -22.9462f, 21.659f, 4.72416f);
}
else
{
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -5.15231f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -14.9806f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -21.7406f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_ALLIANCE_CANON, -28.0876f, -22.9462f, 21.659f, 4.72416f);
}
}
}
if (TeamInInstance == HORDE)
{
if (Transport* t = sMapMgr->LoadTransportInMap(instance, GO_THE_SKYBREAKER_HORDE_ICC, 77800))
{
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER, -17.156807f, -1.633260f, 20.81273f, 4.52672f);
t->AddNPCPassengerInInstance(NPC_GB_MURADIN_BRONZEBEARD, 13.51547f, -0.160213f, 20.87252f, 3.10672f);
t->AddNPCPassengerInInstance(NPC_GB_HIHG_CAPTAIN_JUSTIN_BARTLETT, 42.78902f, -0.010491f, 25.24052f, 3.00672f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_SORCERERS, 14.0551f, 3.65014f, 20.7935f, 3.16073f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_SORCERERS, 14.0551f, -4.65034f, 20.7915f, 3.04292f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_SORCERERS, -17.8356f, 0.031688f, 20.823f, 4.73231f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 13.51547f, -0.160213f, 20.87252f, 3.10672f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 42.78902f, -0.010491f, 25.24052f, 3.00672f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 14.0551f, 3.65014f, 20.7935f, 3.16073f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 14.0551f, -4.65034f, 20.7915f, 3.04292f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -17.8356f, 0.031688f, 20.823f, 4.73231f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -34.2702f, -26.18966f, 21.37483f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -11.64459f, -19.85176f, 20.88428f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -19.88223f, -6.578763f, 20.57444f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -41.4456f, -7.647498f, 20.49746f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 0.554884f, -1.232897f, 20.53705f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -50.16516f, 9.716236f, 23.58709f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 11.45844f, 16.36624f, 20.54192f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 19.72286f, -2.193787f, 33.06982f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 19.72286f, -2.193787f, 33.06982f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 8.599396f, -28.55855f, 24.79919f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 38.94339f, -33.808f, 25.39618f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 58.15474f, 0.748094f, 41.87663f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 5.607554f, -6.350654f, 34.00357f, 1.6f);
t->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 4.780305f, -29.05227f, 35.09634f, 1.6f);
if (instance->ToInstanceMap()->GetMaxPlayers() == 10)
{
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -5.15231f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -14.9806f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -21.7406f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -28.0876f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -8.61003f, 15.483f, 20.4158f, 4.69854f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -27.9583f, 14.8875f, 20.4428f, 4.77865f);
}
else
{
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, 0.15231f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -5.15231f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -14.9806f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -21.7406f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -28.0876f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -33.0876f, -22.9462f, 21.659f, 4.72416f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -8.61003f, 15.483f, 20.4158f, 4.69854f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -27.9583f, 14.8875f, 20.4428f, 4.77865f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -15.61003f, 15.483f, 20.4158f, 4.69854f);
t->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -20.9583f, 14.8875f, 20.4428f, 4.77865f);
}
}
if (Transport* th = sMapMgr->LoadTransportInMap(instance,GO_ORGRIM_S_HAMMER_HORDE_ICC, 77800))
{
th->AddNPCPassengerInInstance(NPC_GB_ORGRIMS_HAMMER, 1.845810f, 1.268872f, 34.526218f, 1.5890f);
th->AddNPCPassengerInInstance(NPC_GB_HIGH_OVERLORD_SAURFANG, 37.18615f, 0.00016f, 36.78849f, 3.13683f);
th->AddNPCPassengerInInstance(NPC_GB_MURADIN_BRONZEBEARD_NOT_VISUAL, -7.09684f, 30.582f, 34.5013f, 1.53591f);
th->AddNPCPassengerInInstance(NPC_GB_INVISIBLE_STALKER, 37.30764f, -0.143823f, 36.7936f, 3.13683f);
th->AddNPCPassengerInInstance(NPC_GB_ZAFOD_BOOMBOX, 35.18615f, 15.30652f, 37.64343f, 3.05033f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -13.19547f, -27.160213f, 35.47252f, 3.10672f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.33902f, -25.230491f, 33.04052f, 3.00672f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -60.1251f, -1.27014f, 42.8335f, 5.16073f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -48.2651f, 16.78034f, 34.2515f, 0.04292f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -14.8356f, 27.931688f, 33.363f, 1.73231f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 10.2702f, 20.62966f, 35.37483f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 39.32459f, 14.50176f, 36.88428f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 46.17223f, -6.638763f, 37.35444f, 1.32f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 27.4456f, -13.397498f, 36.34746f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, 18.16184f, 1.37897f, 35.31705f, 1.6f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.11516f, -0.196236f, 45.15709f, 2.9f);
th->AddNPCPassengerInInstance(NPC_GB_GUNSHIP_HULL, -18.11844f, -0.19624f, 49.18192f, 1.6f);
if (instance->ToInstanceMap()->GetMaxPlayers() == 10)
{
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, 22.6225f, 28.9309f, 36.3929f, 1.53591f);
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, -21.7509f, 29.4207f, 34.2588f, 1.53591f);
}
else
{
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, 22.6225f, 28.9309f, 36.3929f, 1.53591f);
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, 9.87745f, 30.5047f, 35.7147f, 1.53591f);
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, -7.09684f, 30.582f, 34.5013f, 1.53591f);
th->AddNPCPassengerInInstance(NPC_GB_HORDE_CANON, -21.7509f, 29.4207f, 34.2588f, 1.53591f);
}
}
}
}
//Stop Fight
void StopFight(Transport* t1, Transport* t2)
{
Map* map = t1->GetMap();
for (Transport::CreatureSet::iterator itr = t1->m_NPCPassengerSet.begin(); itr != t1->m_NPCPassengerSet.end();)
{
if (Creature *npc = *itr)
{
if (npc->GetEntry() != NPC_GB_SKYBREAKER && npc->GetEntry() != NPC_GB_ORGRIMS_HAMMER && npc->GetEntry() != NPC_GB_HIGH_OVERLORD_SAURFANG
&& npc->GetEntry() != NPC_GB_MURADIN_BRONZEBEARD && npc->GetEntry() != NPC_GB_GUNSHIP_HULL)
{
if (Vehicle* veh = npc->GetVehicleKit())
veh->RemoveAllPassengers();
npc->Kill(npc);
}
}
++itr;
}
for (Transport::CreatureSet::iterator itr = t2->m_NPCPassengerSet.begin(); itr != t2->m_NPCPassengerSet.end();)
{
if (Creature *npc = *itr)
{
if (npc->GetEntry() != NPC_GB_GUNSHIP_HULL && npc->GetEntry() != NPC_GB_SKYBREAKER && npc->GetEntry() != NPC_GB_ORGRIMS_HAMMER)
npc->Kill(npc);
}
++itr;
}
for (Map::PlayerList::const_iterator itr = map->GetPlayers().begin(); itr != map->GetPlayers().end(); ++itr)
{
if (Player* pPlayer = itr->GetSource())
pPlayer->CombatStop();
}
}
//Muradin Bronzebeard
class npc_muradin_gunship : public CreatureScript
{
public:
npc_muradin_gunship() : CreatureScript("npc_muradin_gunship") { }
bool OnGossipHello(Player* player, Creature* pCreature)
{
InstanceScript* pInstance = pCreature->GetInstanceScript();
if (pInstance && pInstance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if ((!player->GetGroup() || !player->GetGroup()->IsLeader(player->GetGUID())) && !player->IsGameMaster())
{
player->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, "I'm not the raid leader...", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
player->SEND_GOSSIP_MENU(DEFAULT_GOSSIP_MESSAGE, pCreature->GetGUID());
return true;
}
player->ADD_GOSSIP_ITEM(0, "My companions are all accounted for, Muradin. Let's go!", 631, 1001);
player->SEND_GOSSIP_MENU(player->GetGossipTextId(pCreature), pCreature->GetGUID());
return true;
}
return false;
}
bool OnGossipSelect(Player* player, Creature* pCreature, uint32 /*sender*/, uint32 action)
{
InstanceScript* instance = pCreature->GetInstanceScript();
player->PlayerTalkClass->ClearMenus();
player->CLOSE_GOSSIP_MENU();
if (action == GOSSIP_ACTION_INFO_DEF+2)
pCreature->MonsterSay("I'll wait for the raid leader", LANG_UNIVERSAL, player->GetGUID());
if (action == 1001)
{
pCreature->AI()->DoAction(ACTION_INTRO_START);
pCreature->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP);
}
return true;
}
struct npc_muradin_gunshipAI : public ScriptedAI
{
npc_muradin_gunshipAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript()) { }
void Reset()
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) == IN_PROGRESS)
return;
me->SetReactState(REACT_PASSIVE);
me->setFaction(1802);
events.Reset();
map = me->GetMap();
skybreaker = me->GetTransport();
UpdateTransportMotionInMap(skybreaker);
SummonCount = RAID_MODE(3, 5, 4, 6);
count = 0;
RocketerCount = RAID_MODE(2, 4, 2, 4);
RiflCount = RAID_MODE(4, 6, 4, 6);
RocketerDieCount = 0;
RiflDieCount = 0;
me->SetFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP);
EventScheduled = false;
}
void SendMusicToPlayers(uint32 musicId) const
{
WorldPacket data(SMSG_PLAY_MUSIC, 4);
data << uint32(musicId);
SendPacketToPlayers(&data);
}
// Send packet to all players
void SendPacketToPlayers(WorldPacket const* data) const
{
Map::PlayerList const& players = me->GetMap()->GetPlayers();
if (!players.isEmpty())
for (Map::PlayerList::const_iterator itr = players.begin(); itr != players.end(); ++itr)
if (Player* player = itr->GetSource())
player->GetSession()->SendPacket(data);
}
bool CanAIAttack(Unit const* target) const
{
if (target->GetEntry() == NPC_GB_KORKRON_SERGANTE || target->GetEntry() == NPC_GB_KORKRON_REAVERS)
return true;
return false;
}
void DoAction(int32 action)
{
switch (action)
{
case ACTION_INTRO_START:
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_1, 1000);
events.ScheduleEvent(EVENT_START_FLY, 2500);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_2, 7000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_3, 28000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_4, 35000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_5, 40000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_6, 47000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_7, 53000);
events.ScheduleEvent(EVENT_INTRO_ALLIANCE_8, 58900);
break;
case ACTION_BATTLE_EVENT:
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
events.ScheduleEvent(EVENT_WIPE_CHECK, 5000);
Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS));
Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS));
if (pHordeBoss && pAllianceBoss)
{
me->SetReactState(REACT_AGGRESSIVE);
pHordeBoss->SetInCombatWith(pAllianceBoss);
pAllianceBoss->SetInCombatWith(pHordeBoss);
pAllianceBoss->AddThreat(pHordeBoss, 0.0f);
pHordeBoss->AddThreat(pAllianceBoss, 0.0f);
_instance->SetBossState(DATA_GUNSHIP_EVENT, IN_PROGRESS);
events.ScheduleEvent(EVENT_SUMMON_PORTAL, 30000);
RelocateTransport(skybreaker);
RelocateTransport(CheckUnfriendlyShip(me,_instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
}
else
me->AI()->DoAction(ACTION_FAIL);
break;
}
case ACTION_DONE:
if (Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pAllianceBoss);
}
if (Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pHordeBoss);
}
me->SetReactState(REACT_PASSIVE);
_instance->SetBossState(DATA_GUNSHIP_EVENT, DONE);
_instance->DoCastSpellOnPlayers(SPELL_REMOVE_ROCKET_PACK);
Talk(SAY_ALLIANCE_VICTORY);
StartFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
StopFight(skybreaker, CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
events.CancelEvent(EVENT_WIPE_CHECK);
events.ScheduleEvent(EVENT_OUTRO_ALLIANCE_1, 3500);
events.ScheduleEvent(EVENT_OUTRO_ALLIANCE_2, 23000);
events.ScheduleEvent(EVENT_OUTRO_ALLIANCE_3, 32000);
break;
case ACTION_FAIL:
events.CancelEvent(EVENT_WIPE_CHECK);
Talk(SAY_ALLIANCE_DEFEAT);
if (Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pAllianceBoss);
}
if (Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pHordeBoss);
}
StopFight(skybreaker, CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
events.ScheduleEvent(EVENT_FAIL, 10000);
break;
case ACTION_MAGE_DIE:
//Check, if there really is no mage
if (me->GetEntry() != NPC_GB_SKYBREAKER_SORCERERS)
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
events.ScheduleEvent(EVENT_SPAWN_MAGE, 33000);
}
break;
case ACTION_ROCK_DIE:
++RocketerDieCount;
if (RocketerDieCount == RocketerCount)
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
events.ScheduleEvent(EVENT_RESPAWN_ROCKETEER, 60000);
break;
case ACTION_AXES_RIFL_DIE:
++RiflDieCount;
if (RiflDieCount == RiflCount)
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
events.ScheduleEvent(EVENT_RESPAWN_AXES_RIFLEMEN, 60000);
break;
}
}
void DamageTaken(Unit* /*attacker*/, uint32& damage)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE && me->GetHealthPct() < 2.0f )
{
damage = 0;
}
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE && me->GetHealthPct() < 2.0f )
{
damage = 0;
me->AI()->DoAction(ACTION_FAIL);
}
}
void MovementInform(uint32 type, uint32 pointId)
{
if (type != POINT_MOTION_TYPE)
return;
if (pointId = 1)
me->DespawnOrUnsummon(1000);
}
void UpdateAI(uint32 diff)
{
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
if (!HealthAbovePct(75))
{
me->SetHealth(me->GetMaxHealth() / 100 * 76); // find a better way to avoid the hardcore spell spam ....
DoCast(me, SPELL_TASTE_OF_BLOOD);
}
if (UpdateVictim())
{
if (!EventScheduled)
{
EventScheduled = true; // should temp fix the hardcore casting
events.ScheduleEvent(EVENT_RENDING_THROW, 3000);
}
}
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_WIPE_CHECK:
DoCheckFallingPlayer(me);
if (DoWipeCheck(skybreaker))
events.ScheduleEvent(EVENT_WIPE_CHECK, 3000);
else
me->AI()->DoAction(ACTION_FAIL);
break;
case EVENT_INTRO_ALLIANCE_1:
Talk(SAY_INTRO_ALLIANCE_0);
break;
case EVENT_START_FLY:
StartFlyShip(skybreaker);
break;
case EVENT_INTRO_ALLIANCE_2:
Talk(SAY_INTRO_ALLIANCE_1);
break;
case EVENT_INTRO_ALLIANCE_3:
Talk(SAY_INTRO_ALLIANCE_2);
StartFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
break;
case EVENT_INTRO_ALLIANCE_4:
Talk(SAY_INTRO_ALLIANCE_3);
break;
case EVENT_INTRO_ALLIANCE_5:
StopFlyShip(skybreaker);
StopFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG));
Talk(SAY_INTRO_ALLIANCE_4);
break;
case EVENT_INTRO_ALLIANCE_6:
Talk(SAY_INTRO_ALLIANCE_5);
SendMusicToPlayers(17289);
me->AI()->DoAction(ACTION_BATTLE_EVENT);
break;
case EVENT_INTRO_ALLIANCE_7:
if (Creature* pSaurfang = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_HIGH_OVERLORD_SAURFANG_NOT_VISUAL)))
{
pSaurfang->AI()->Talk(SAY_HIGH_OVERLORD_SAURFANG_NOT_VISUAL);
pSaurfang->SetReactState(REACT_PASSIVE);
pSaurfang->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
}
break;
case EVENT_INTRO_ALLIANCE_8:
Talk(SAY_INTRO_ALLIANCE_7);
break;
case EVENT_SUMMON_PORTAL:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
events.ScheduleEvent(EVENT_BOARDING_TALK, 10000);
events.ScheduleEvent(EVENT_BOARDING_GUNSHIP, 2500); // TODO: Fix the timers
skybreaker->AddNPCPassengerInInstance(NPC_GB_PORTAL, -15.51547f, -0.160213f, 28.87252f, 1.56211f);
CheckUnfriendlyShip(me, _instance, DATA_GB_HIGH_OVERLORD_SAURFANG)->AddNPCPassengerInInstance(NPC_GB_PORTAL, 47.55099f, -0.101778f, 37.61111f, 1.55138f);
}
break;
case EVENT_RENDING_THROW:
if (UpdateVictim())
if (me->GetVictim()->IsWithinDistInMap(me, 30.0f, false))
{
DoCastVictim(SPELL_RENDING_THROW);
EventScheduled = false;
}
else
events.CancelEvent(EVENT_RENDING_THROW);
break;
case EVENT_TASTE_OF_BLOOD:
DoCast(me, SPELL_TASTE_OF_BLOOD);
break;
case EVENT_BOARDING_TALK:
Talk(SAY_BOARDING_SKYBREAKER_1);
break;
case EVENT_BOARDING_GUNSHIP:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
if (Creature* pSaurfang = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_HIGH_OVERLORD_SAURFANG_NOT_VISUAL)))
{
pSaurfang->AI()->Talk(SAY_BOARDING_SKYBREAKER_SAURFANG);
}
if (Creature* Sergante = skybreaker->AddNPCPassengerInInstance(NPC_GB_KORKRON_SERGANTE, -15.51547f, -0.160213f, 20.87252f, 1.56211f))
{
Sergante->CastSpell(Sergante, SPELL_TELEPORT_VISUAL, true);
}
events.ScheduleEvent(EVENT_SUMMON_PORTAL, 90000);
events.ScheduleEvent(EVENT_BOARDING_REAVERS_MARINE, 3000);
count = 0;
}
break;
case EVENT_BOARDING_REAVERS_MARINE:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
if (count <= SummonCount)
{
if (Creature* Reavers = skybreaker->AddNPCPassengerInInstance(NPC_GB_KORKRON_REAVERS, -15.51547f, -0.160213f, 20.87252f, 1.56211f))
{
Reavers->CastSpell(Reavers, SPELL_TELEPORT_VISUAL, true);
events.ScheduleEvent(EVENT_BOARDING_REAVERS_MARINE, 21000 / SummonCount);
++count;
}
}
}
break;
case EVENT_OUTRO_ALLIANCE_1:
_instance->DoCompleteAchievement(RAID_MODE(IM_ON_A_BOAT_10,IM_ON_A_BOAT_25,IM_ON_A_BOAT_10,IM_ON_A_BOAT_25));
_instance->DoCastSpellOnPlayers(SPELL_ACHIEVEMENT_CHECK);
StartFlyShip(skybreaker);
StopFlyShip(CheckUnfriendlyShip(me,_instance,DATA_GB_HIGH_OVERLORD_SAURFANG));
break;
case EVENT_OUTRO_ALLIANCE_2:
StopFlyShip(skybreaker);
me->SummonGameObject(RAID_MODE(GO_CAPITAN_CHEST_A_10N, GO_CAPITAN_CHEST_A_25N, GO_CAPITAN_CHEST_A_10H, GO_CAPITAN_CHEST_A_25H), -590.200022f, 2241.193115f, 538.588269f, 0, 0, 0, 0, 0, 100000);
me->AddUnitMovementFlag(MOVEMENTFLAG_WALKING);
me->GetMotionMaster()->MovePoint(0, -590.700f, 2213.01f, 539.1f);
break;
case EVENT_OUTRO_ALLIANCE_3:
me->GetMotionMaster()->MovePoint(1, -555.59f, 2213.01f, 539.28f);
break;
case EVENT_FAIL:
TeleportPlayers(map, ALLIANCE);
events.ScheduleEvent(EVENT_RESTART_EVENT, 2000);
_instance->SetBossState(DATA_GUNSHIP_EVENT, NOT_STARTED);
break;
case EVENT_RESTART_EVENT:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
_instance->SetBossState(DATA_GUNSHIP_EVENT, FAIL);
RestartEvent(skybreaker, CheckUnfriendlyShip(me,_instance,DATA_GB_HIGH_OVERLORD_SAURFANG), map, ALLIANCE);
}
break;
case EVENT_SPAWN_MAGE:
if (me->GetEntry() != NPC_GB_SKYBREAKER_SORCERERS)
{
Talk(SAY_NEW_MAGE_SPAWNED);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_SORCERERS, -17.8356f, 0.031688f, 20.823f, 4.73231f);
}
break;
case EVENT_RESPAWN_ROCKETEER:
Talk(SAY_NEW_MORTAR_TEAM_SPAWNED);
if (RocketerCount == 2)
{
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -8.61003f, 15.483f, 20.4158f, 4.69854f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -27.9583f, 14.8875f, 20.4428f, 4.77865f);
}
if (RocketerCount == 4)
{
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -8.61003f, 15.483f, 20.4158f, 4.69854f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -27.9583f, 14.8875f, 20.4428f, 4.77865f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -15.61003f, 15.483f, 20.4158f, 4.69854f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MORTAR_SOLDIER, -20.9583f, 14.8875f, 20.4428f, 4.77865f);
}
break;
case EVENT_RESPAWN_AXES_RIFLEMEN:
Talk(SAY_NEW_RIFLEMEN_SPAWNED);
if (RiflCount == 4)
{
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -28.0876f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -21.7406f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -14.9806f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -5.15231f, -22.9462f, 21.659f, 4.72416f);
}
if (RiflCount == 6)
{
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -33.0876f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -28.0876f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -21.7406f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -14.9806f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, -5.15231f, -22.9462f, 21.659f, 4.72416f);
skybreaker->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_RIFLEMAN, 0.15231f, -22.9462f, 21.659f, 4.72416f);
}
break;
}
}
if (!me->GetCurrentSpell(CURRENT_MELEE_SPELL))
DoCastVictim(SPELL_CLEAVE);
DoMeleeAttackIfReady();
}
private:
Transport* skybreaker;
Map* map;
uint32 SummonCount;
EventMap events;
InstanceScript* _instance;
uint32 count;
uint32 RocketerDieCount;
uint32 RiflDieCount;
uint32 RocketerCount;
uint32 RiflCount;
bool EventScheduled;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_muradin_gunshipAI(pCreature);
}
};
class npc_gunship_skybreaker : public CreatureScript
{
public:
npc_gunship_skybreaker() : CreatureScript("npc_gunship_skybreaker") { }
struct npc_gunship_skybreakerAI : public ScriptedAI
{
npc_gunship_skybreakerAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
me->SetReactState(REACT_PASSIVE);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetDisplayId(11686);
}
void EnterCombat(Unit* /*who*/)
{
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
SetCombatMovement(false);
_instance->SendEncounterUnit(ENCOUNTER_FRAME_ENGAGE, me);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
}
void JustDied(Unit* killer)
{
if (Transport* t = me->GetTransport())
DoShipExplosion(t);
if(_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_MURADIN_BRONZEBEARD)))
pMuradin->AI()->DoAction(ACTION_FAIL);
}
else if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if (Creature* pSaurfang = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_HIGH_OVERLORD_SAURFANG)))
pSaurfang->AI()->DoAction(ACTION_DONE);
}
}
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_skybreakerAI(pCreature);
}
};
class npc_gunship_orgrimmar : public CreatureScript
{
public:
npc_gunship_orgrimmar() : CreatureScript("npc_gunship_orgrimmar") { }
struct npc_gunship_orgrimmarAI : public ScriptedAI
{
npc_gunship_orgrimmarAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
me->SetReactState(REACT_PASSIVE);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetDisplayId(11686);
}
void EnterCombat(Unit* /*who*/)
{
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
SetCombatMovement(false);
_instance->SendEncounterUnit(ENCOUNTER_FRAME_ENGAGE, me);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
}
void JustDied(Unit* killer)
{
if (Transport* t = me->GetTransport())
DoShipExplosion(t);
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_MURADIN_BRONZEBEARD)))
pMuradin->AI()->DoAction(ACTION_DONE);
}
else if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if (Creature* pSaurfang = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_HIGH_OVERLORD_SAURFANG)))
pSaurfang->AI()->DoAction(ACTION_FAIL);
}
}
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_orgrimmarAI(pCreature);
}
};
/* Kro'kron Axethrower */
class npc_korkron_axethrower_rifleman : public CreatureScript
{
public:
npc_korkron_axethrower_rifleman() : CreatureScript("npc_korkron_axethrower_rifleman") { }
struct npc_korkron_axethrower_riflemanAI : public ScriptedAI
{
npc_korkron_axethrower_riflemanAI(Creature *creature) : ScriptedAI(creature),_instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
DesperateResolve = RAID_MODE( SPELL_DESPERATE_RESOLVE_10_NM, SPELL_DESPERATE_RESOLVE_25_NM, SPELL_DESPERATE_RESOLVE_10_HM, SPELL_DESPERATE_RESOLVE_25_HM);
desperated = false;
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
me->RemoveAurasDueToSpell(SPELL_ELITE);
me->RemoveAurasDueToSpell(SPELL_VETERAN);
events.ScheduleEvent(EVENT_EXPERIENCED, urand(19000, 21000)); // ~20 sec
events.ScheduleEvent(EVENT_VETERAN, urand(39000, 41000)); // ~40 sec
events.ScheduleEvent(EVENT_ELITE, urand(59000, 61000)); // ~60 sec
attacktimer = urand(6000, 15000);
if (me->GetEntry() == NPC_GB_SKYBREAKER_RIFLEMAN)
SetEquipmentSlots(false, EQUIP_NO_CHANGE, EQUIP_NO_CHANGE, 47267);
else
SetEquipmentSlots(false, 49691, EQUIP_NO_CHANGE, EQUIP_NO_CHANGE);
}
void DamageTaken(Unit* /*attacker*/, uint32& /*damage*/)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE && me->GetHealthPct() < 20.0f && !desperated)
{
desperated = true;
DoCast(me, DesperateResolve);
}
}
void JustDied(Unit* killer)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if (Creature* pSaurfangBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_HIGH_OVERLORD_SAURFANG)))
pSaurfangBoss->AI()->DoAction(ACTION_AXES_RIFL_DIE);
}
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_MURADIN_BRONZEBEARD)))
pMuradin->AI()->DoAction(ACTION_AXES_RIFL_DIE);
}
}
void UpdateAI(uint32 diff)
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != IN_PROGRESS)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
// me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE); // Dodato
me->AI()->AttackStart(SelectRandomPlayerInTheMaps(me->GetMap()));
if (!UpdateVictim())
return;
events.Update(diff);
if (attacktimer <= diff)
{
if (me->GetEntry() == NPC_GB_KORKRON_AXETHROWER)
DoCast(me->GetVictim(), SPELL_HURL_AXE);
else if (me->GetEntry() == NPC_GB_SKYBREAKER_RIFLEMAN)
DoCast(me->GetVictim(), SPELL_SHOOT);
attacktimer = urand(6000, 15000);
} else attacktimer -= diff;
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_EXPERIENCED:
DoCast(me, SPELL_EXPERIENCED);
break;
case EVENT_VETERAN:
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
DoCast(me, SPELL_VETERAN);
break;
case EVENT_ELITE:
me->RemoveAurasDueToSpell(SPELL_VETERAN);
DoCast(me, SPELL_ELITE);
break;
default:
break;
}
}
}
uint32 DesperateResolve;
uint32 attacktimer;
private:
EventMap events;
bool desperated;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_korkron_axethrower_riflemanAI(pCreature);
}
};
class npc_sergeant : public CreatureScript
{
public:
npc_sergeant() : CreatureScript("npc_sergeant") { }
struct npc_sergeantAI : public ScriptedAI
{
npc_sergeantAI(Creature *creature) : ScriptedAI(creature),_instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetReactState(REACT_PASSIVE);
events.ScheduleEvent(EVENT_WALK_MOBS, 1500);
desperated = false;
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
me->RemoveAurasDueToSpell(SPELL_ELITE);
DesperateResolve = RAID_MODE( SPELL_DESPERATE_RESOLVE_10_NM, SPELL_DESPERATE_RESOLVE_25_NM, SPELL_DESPERATE_RESOLVE_10_HM, SPELL_DESPERATE_RESOLVE_25_HM);
events.ScheduleEvent(EVENT_EXPERIENCED, urand(19000, 21000)); // ~20 sec
events.ScheduleEvent(EVENT_VETERAN, urand(39000, 41000)); // ~40 sec
events.ScheduleEvent(EVENT_BURNING_PITCH, urand(60000, 62000)); // ~61 sec
if (me->GetMap()->ToInstanceMap()->GetMaxPlayers() == 25 && me->GetMap()->IsHeroic())
events.ScheduleEvent(EVENT_ELITE, urand(59000, 61000)); // ~60 sec
}
void DamageTaken(Unit* /*attacker*/, uint32& /*damage*/)
{
if (me->GetHealthPct() < 20.0f && !desperated)
{
desperated = true;
DoCast(me, DesperateResolve);
}
}
bool CanAIAttack(Unit const* target) const
{
if (target->GetEntry() == NPC_GB_GUNSHIP_HULL)
return false;
return true;
}
void UpdateAI(uint32 diff)
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != IN_PROGRESS)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_WALK_MOBS:
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetReactState(REACT_AGGRESSIVE);
switch (me->GetEntry())
{
case NPC_GB_KORKRON_SERGANTE:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 0.0f, true, SPELL_ON_SKYBREAKERS_DECK))
{
me->GetMotionMaster()->MoveChase(target);
me->AI()->AttackStart(target);
}
break;
case NPC_GB_SKYBREAKER_SERGANTE:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 0.0f, true, SPELL_ON_ORGRIMS_HAMMERS_DECK))
{
me->GetMotionMaster()->MoveChase(target);
me->AI()->AttackStart(target);
}
break;
}
events.ScheduleEvent(EVENT_WOUNDING_STRIKE, 5000);
events.ScheduleEvent(EVENT_BLADE_STORM, 3000);
break;
case EVENT_BURNING_PITCH:
if (Unit* pTarget = SelectTarget(SELECT_TARGET_RANDOM, 0, 100.0f, true))
{
if (me->GetEntry() == NPC_GB_KORKRON_SERGANTE)
DoCast(pTarget, SPELL_BURNING_PITCH_H);
else
DoCast(pTarget, SPELL_BURNING_PITCH_A);
}
events.ScheduleEvent(EVENT_BURNING_PITCH, urand(60000, 62000));// ~61 sec
break;
case EVENT_EXPERIENCED:
DoCast(me, SPELL_EXPERIENCED);
break;
case EVENT_VETERAN:
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
DoCast(me, SPELL_VETERAN);
break;
case EVENT_ELITE:
me->RemoveAurasDueToSpell(SPELL_VETERAN);
DoCast(me, SPELL_ELITE);
break;
case EVENT_WOUNDING_STRIKE:
if (UpdateVictim())
DoCastVictim( RAID_MODE( SPELL_WOUNDING_STRIKE_10_NM, SPELL_WOUNDING_STRIKE_25_NM, SPELL_WOUNDING_STRIKE_10_HM, SPELL_WOUNDING_STRIKE_25_HM));
events.ScheduleEvent(EVENT_WOUNDING_STRIKE, urand(5000, 8000));
break;
case EVENT_BLADE_STORM:
DoCast(me, SPELL_BLADESTORM);
events.ScheduleEvent(EVENT_BLADE_STORM, urand(9000, 16000));
break;
}
}
DoMeleeAttackIfReady();
}
uint32 DesperateResolve;
bool desperated;
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_sergeantAI(pCreature);
}
};
class npc_marine_or_reaver : public CreatureScript
{
public:
npc_marine_or_reaver() : CreatureScript("npc_marine_or_reaver") { }
struct npc_marine_or_reaverAI : public ScriptedAI
{
npc_marine_or_reaverAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
desperated = false;
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetReactState(REACT_PASSIVE);
events.ScheduleEvent(EVENT_WALK_MOBS, 1500);
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
me->RemoveAurasDueToSpell(SPELL_ELITE);
DesperateResolve = RAID_MODE( SPELL_DESPERATE_RESOLVE_10_NM, SPELL_DESPERATE_RESOLVE_25_NM, SPELL_DESPERATE_RESOLVE_10_HM, SPELL_DESPERATE_RESOLVE_25_HM);
events.ScheduleEvent(EVENT_EXPERIENCED, urand(19000, 21000)); // ~20 sec
events.ScheduleEvent(EVENT_VETERAN, urand(39000, 41000)); // ~40 sec
events.ScheduleEvent(EVENT_BURNING_PITCH, urand(60000, 62000)); // ~61 sec
}
void DamageTaken(Unit* /*attacker*/, uint32& /*damage*/)
{
if (me->GetHealthPct() < 20.0f && !desperated)
{
desperated = true;
DoCast(me, DesperateResolve);
}
}
bool CanAIAttack(Unit const* target) const
{
if (target->GetEntry() == NPC_GB_GUNSHIP_HULL)
return false;
return true;
}
void UpdateAI(uint32 diff)
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != IN_PROGRESS)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_WALK_MOBS:
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
me->SetReactState(REACT_AGGRESSIVE);
switch (me->GetEntry())
{
case NPC_GB_KORKRON_REAVERS:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 0.0f, true, SPELL_ON_SKYBREAKERS_DECK))
{
me->GetMotionMaster()->MoveChase(target);
me->AI()->AttackStart(target);
}
break;
case NPC_GB_SKYBREAKER_MARINE:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 0.0f, true, SPELL_ON_ORGRIMS_HAMMERS_DECK))
{
me->GetMotionMaster()->MoveChase(target);
me->AI()->AttackStart(target);
}
break;
}
break;
case EVENT_BURNING_PITCH:
if (Unit* pTarget = SelectTarget(SELECT_TARGET_RANDOM, 0, 100, true))
{
if (me->GetEntry() == NPC_GB_KORKRON_REAVERS)
DoCast(pTarget, SPELL_BURNING_PITCH_H);
else
DoCast(pTarget, SPELL_BURNING_PITCH_A);
}
events.ScheduleEvent(EVENT_BURNING_PITCH, urand(60000, 62000));// ~61 sec
break;
case EVENT_EXPERIENCED:
DoCast(me, SPELL_EXPERIENCED);
break;
case EVENT_VETERAN:
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
DoCast(me, SPELL_VETERAN);
break;
}
}
DoMeleeAttackIfReady();
}
uint32 DesperateResolve;
bool desperated;
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_marine_or_reaverAI(pCreature);
}
};
class npc_gunship_mage : public CreatureScript
{
public:
npc_gunship_mage() : CreatureScript("npc_gunship_mage") { }
struct npc_gunship_mageAI : public ScriptedAI
{
npc_gunship_mageAI(Creature *creature) : ScriptedAI(creature),_instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
timer_BelowZero = urand(10000, 15000);
}
void DoAction(int32 action)
{
switch (action)
{
case EVENT_FREEZE_CANNON:
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
std::list<Creature*> cannonsA;
GetCreatureListWithEntryInGrid(cannonsA, me, NPC_GB_ALLIANCE_CANON, 500.0f);
for (std::list<Creature*>::iterator itr = cannonsA.begin(); itr != cannonsA.end(); ++itr)
{
if (Vehicle* veh = (*itr)->GetVehicleKit())
veh->RemoveAllPassengers();
DoCast((*itr),SPELL_BELOW_ZERO,true);
}
}
else if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
std::list<Creature*> cannonsH;
GetCreatureListWithEntryInGrid(cannonsH, me, NPC_GB_HORDE_CANON, 500.0f);
for (std::list<Creature*>::iterator itr = cannonsH.begin(); itr != cannonsH.end(); ++itr)
{
if (Vehicle* veh = (*itr)->GetVehicleKit())
veh->RemoveAllPassengers();
DoCast((*itr),SPELL_BELOW_ZERO,true);
}
}
break;
}
}
void JustDied(Unit* killer)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if (me->GetGUID() == _instance->GetData64(DATA_GB_BATTLE_MAGE))
{
if (Creature* pSaurfangBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_HIGH_OVERLORD_SAURFANG)))
pSaurfangBoss->AI()->DoAction(ACTION_MAGE_DIE);
}
}
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if (me->GetGUID() == _instance->GetData64(DATA_GB_BATTLE_MAGE))
{
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_MURADIN_BRONZEBEARD)))
pMuradin->AI()->DoAction(ACTION_MAGE_DIE);
}
}
}
void UpdateAI(uint32 diff)
{
if(_instance->GetBossState(DATA_GUNSHIP_EVENT) != IN_PROGRESS)
return;
me->SetReactState(REACT_DEFENSIVE); // Dodato
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
if (me->GetGUID() == _instance->GetData64(DATA_GB_BATTLE_MAGE))
{
if( timer_BelowZero <= diff)
{
me->AI()->DoAction(EVENT_FREEZE_CANNON);
timer_BelowZero = urand(10000, 15000);
} else timer_BelowZero -= diff;
}
else
{
DoCast(me,SPELL_SHADOW_CHANNELING);
}
}
uint32 timer_BelowZero;
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_mageAI(pCreature);
}
};
/* Gunship Cannon (Horde / Ally) */
class npc_gunship_cannon : public CreatureScript
{
public:
npc_gunship_cannon() : CreatureScript("npc_gunship_cannon") { }
struct npc_gunship_cannonAI : public ScriptedAI
{
npc_gunship_cannonAI(Creature *creature) : ScriptedAI(creature) { }
void Reset()
{
me->SetReactState(REACT_PASSIVE);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
DoCast(me, SPELL_HEAT_DRAIN, true);
}
void SpellHit(Unit* /*caster*/, SpellInfo const* spellEntry)
{
if (spellEntry->Id == SPELL_BELOW_ZERO)
me->GetVehicleKit()->RemoveAllPassengers();
}
void DamageTaken(Unit* attacker, uint32& damage)
{
if (me->GetEntry() == NPC_GB_ALLIANCE_CANON)
{
if (Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, me->GetInstanceScript()->GetData64(DATA_SKYBREAKER_BOSS)))
attacker->DealDamage(pAllianceBoss, damage);
}
if (me->GetEntry() == NPC_GB_HORDE_CANON)
{
if (Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, me->GetInstanceScript()->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS)))
attacker->DealDamage(pHordeBoss, damage);
}
}
void UpdateAI(uint32 diff)
{
if (me->HasAura(SPELL_BELOW_ZERO))
{
me->RemoveAurasByType(SPELL_AURA_CONTROL_VEHICLE);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
if (Vehicle* veh = me->GetVehicleKit())
veh->RemoveAllPassengers();
}
else
{
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
me->RemoveExtraUnitMovementFlag(MOVEMENTFLAG_STRAFE_LEFT);
me->RemoveExtraUnitMovementFlag(MOVEMENTFLAG_STRAFE_RIGHT);
me->RemoveExtraUnitMovementFlag(MOVEMENTFLAG2_INTERPOLATED_TURNING);
me->AddExtraUnitMovementFlag(MOVEMENTFLAG2_NO_STRAFE);
me->AddExtraUnitMovementFlag(MOVEMENTFLAG_LEFT);
me->AddExtraUnitMovementFlag(MOVEMENTFLAG_RIGHT);
}
}
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_cannonAI(pCreature);
}
};
class npc_mortar_soldier_or_rocketeer : public CreatureScript
{
public:
npc_mortar_soldier_or_rocketeer() : CreatureScript("npc_mortar_soldier_or_rocketeer") { }
struct npc_mortar_soldier_or_rocketeerAI : public ScriptedAI
{
npc_mortar_soldier_or_rocketeerAI(Creature *creature) : ScriptedAI(creature),_instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
me->RemoveAurasDueToSpell(SPELL_ELITE);
me->RemoveAurasDueToSpell(SPELL_VETERAN);
events.ScheduleEvent(EVENT_EXPERIENCED, urand(19000, 21000)); // ~20 sec
events.ScheduleEvent(EVENT_VETERAN, urand(39000, 41000)); // ~40 sec
events.ScheduleEvent(EVENT_ELITE, urand(59000, 61000)); // ~60 sec
events.ScheduleEvent(EVENT_ROCKET_ART, urand(10000, 15000)); // ~12 sec
}
void JustDied(Unit* killer)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
{
if (Creature* pSaurfangBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_HIGH_OVERLORD_SAURFANG)))
pSaurfangBoss->AI()->DoAction(ACTION_ROCK_DIE);
}
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_GB_MURADIN_BRONZEBEARD)))
pMuradin->AI()->DoAction(ACTION_ROCK_DIE);
}
}
void UpdateAI(uint32 diff)
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != IN_PROGRESS)
return;
me->SetReactState(REACT_DEFENSIVE); // Dodato
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_EXPERIENCED:
DoCast(me, SPELL_EXPERIENCED);
break;
case EVENT_VETERAN:
me->RemoveAurasDueToSpell(SPELL_EXPERIENCED);
DoCast(me, SPELL_VETERAN);
break;
case EVENT_ELITE:
me->RemoveAurasDueToSpell(SPELL_VETERAN);
DoCast(me, SPELL_ELITE);
break;
case EVENT_ROCKET_ART:
if (Player* target = SelectRandomPlayerInTheMaps(me->GetMap()))
{
if (me->GetEntry() == NPC_GB_KORKRON_ROCKETEER && target->HasAura(SPELL_ON_SKYBREAKERS_DECK))
{
me->CastSpell(target->GetPositionX(), target->GetPositionY(), target->GetPositionZ(), SPELL_ROCKET_ARTILLERY_TRIGGERED, true);
me->CastSpell(target, 69400, true);
}
else if (me->GetEntry() == NPC_GB_SKYBREAKER_MORTAR_SOLDIER && target->HasAura(SPELL_ON_ORGRIMS_HAMMERS_DECK))
{
me->CastSpell(target->GetPositionX(), target->GetPositionY(), target->GetPositionZ(), SPELL_ROCKET_ARTILLERY_TRIGGERED, true);
me->CastSpell(target, 70173, true);
}
}
events.ScheduleEvent(EVENT_ROCKET_ART, urand(10000, 15000)); // ~12 sec
break;
default:
break;
}
}
}
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_mortar_soldier_or_rocketeerAI(pCreature);
}
};
class npc_zafod_boombox : public CreatureScript
{
public:
npc_zafod_boombox() : CreatureScript("npc_zafod_boombox") { }
bool OnGossipHello(Player* pPlayer, Creature* pCreature)
{
// Maybe this isn't blizzlike but I can't find any spell in the DBCs
if (pPlayer->GetItemCount(49278, false) == 0)
pPlayer->ADD_GOSSIP_ITEM(0, "Yeah, I'm sure that safety is your top priority. Give me a jetpack.", 631, 1);
pPlayer->SEND_GOSSIP_MENU(pPlayer->GetGossipTextId(pCreature), pCreature->GetGUID());
return true;
}
bool OnGossipSelect(Player* player, Creature* pCreature, uint32 /*sender*/, uint32 action)
{
player->PlayerTalkClass->ClearMenus();
player->CLOSE_GOSSIP_MENU();
if (action == 1)
{
// Seurity, this shouldn't happen. Maybe useless.
uint32 curItemCount = player->GetItemCount(49278, false);
if (curItemCount >= 1)
{
pCreature->MonsterWhisper("You already have my jetpack!", player->GetGUIDLow());
return false;
}
ItemPosCountVec dest;
uint8 msg = player->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, 49278, 1);
if (msg == EQUIP_ERR_OK)
{
Item* item = player->StoreNewItem(dest, 49278, true);
player->SendNewItem(item, 1, true, false);
}
else
{
pCreature->MonsterWhisper("You do not have empty space for my jet-pack!", player->GetGUIDLow());
return false;
}
}
return true;
}
};
//
class npc_saurfang_gunship : public CreatureScript
{
public:
npc_saurfang_gunship() : CreatureScript("npc_saurfang_gunship") { }
bool OnGossipHello(Player* player, Creature* pCreature)
{
InstanceScript* pInstance = pCreature->GetInstanceScript();
if (pInstance && pInstance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
{
if ((!player->GetGroup() || !player->GetGroup()->IsLeader(player->GetGUID())) && !player->IsGameMaster())
{
player->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, "I'm not the raid leader...", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
player->SEND_GOSSIP_MENU(DEFAULT_GOSSIP_MESSAGE, pCreature->GetGUID());
return true;
}
player->ADD_GOSSIP_ITEM(0, "My companions are all accounted for, Saurfang. Let's go!", 631, 1001);
player->SEND_GOSSIP_MENU(player->GetGossipTextId(pCreature), pCreature->GetGUID());
return true;
}
return false;
}
bool OnGossipSelect(Player* player, Creature* pCreature, uint32 /*sender*/, uint32 action)
{
InstanceScript* instance = pCreature->GetInstanceScript();
player->PlayerTalkClass->ClearMenus();
player->CLOSE_GOSSIP_MENU();
if (action == GOSSIP_ACTION_INFO_DEF+2)
pCreature->MonsterSay("I'll wait for the raid leader.", LANG_UNIVERSAL, player->GetGUID());
if (action == 1001)
{
pCreature->AI()->DoAction(ACTION_INTRO_START);
pCreature->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP);
}
return true;
}
struct npc_saurfang_gunshipAI : public ScriptedAI
{
npc_saurfang_gunshipAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript()) { }
void Reset()
{
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) == IN_PROGRESS)
return;
me->SetReactState(REACT_PASSIVE);
me->setFaction(1801);
events.Reset();
map = me->GetMap();
orgrimmar = me->GetTransport();
UpdateTransportMotionInMap(orgrimmar);
RocketerDieCount = 0;
AxesDieCount = 0;
SummonCount = RAID_MODE(3, 5, 4, 6);
count = 0;
RocketerCount = RAID_MODE(2, 4, 2, 4);
AxesCount = RAID_MODE(4, 6, 4, 6);
EventScheduled = false;
}
void SendMusicToPlayers(uint32 musicId) const
{
WorldPacket data(SMSG_PLAY_MUSIC, 4);
data << uint32(musicId);
SendPacketToPlayers(&data);
}
// Send packet to all players
void SendPacketToPlayers(WorldPacket const* data) const
{
Map::PlayerList const& players = me->GetMap()->GetPlayers();
if (!players.isEmpty())
for (Map::PlayerList::const_iterator itr = players.begin(); itr != players.end(); ++itr)
if (Player* player = itr->GetSource())
player->GetSession()->SendPacket(data);
}
bool CanAIAttack(Unit const* target) const
{
if (target->GetEntry() == NPC_GB_SKYBREAKER_SERGANTE || target->GetEntry() == NPC_GB_SKYBREAKER_MARINE)
return true;
return false;
}
void DoAction(int32 action)
{
switch (action)
{
case ACTION_INTRO_START:
events.ScheduleEvent(EVENT_INTRO_HORDE_1, 1000);
events.ScheduleEvent(EVENT_INTRO_HORDE_1_1, 11000);
events.ScheduleEvent(EVENT_START_FLY, 5000);
events.ScheduleEvent(EVENT_INTRO_HORDE_2, 32000);
events.ScheduleEvent(EVENT_INTRO_HORDE_3, 51000);
events.ScheduleEvent(EVENT_INTRO_HORDE_4, 57000);
events.ScheduleEvent(EVENT_INTRO_HORDE_5, 62000);
break;
case ACTION_BATTLE_EVENT:
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
events.ScheduleEvent(EVENT_WIPE_CHECK, 5000);
Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS));
Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS));
if (pHordeBoss && pAllianceBoss)
{
me->SetReactState(REACT_AGGRESSIVE);
pHordeBoss->SetInCombatWith(pAllianceBoss);
pAllianceBoss->SetInCombatWith(pHordeBoss);
pAllianceBoss->AddThreat(pHordeBoss, 0.0f);
pHordeBoss->AddThreat(pAllianceBoss, 0.0f);
_instance->SetBossState(DATA_GUNSHIP_EVENT, IN_PROGRESS);
events.ScheduleEvent(EVENT_SUMMON_PORTAL, 30000);
RelocateTransport(orgrimmar);
RelocateTransport(CheckUnfriendlyShip(me,_instance, DATA_GB_MURADIN_BRONZEBEARD));
}
else
me->AI()->DoAction(ACTION_FAIL);
break;
}
case ACTION_DONE:
if (Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pAllianceBoss);
}
if (Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pHordeBoss);
}
me->SetReactState(REACT_PASSIVE);
_instance->SetBossState(DATA_GUNSHIP_EVENT, DONE);
_instance->DoCastSpellOnPlayers(SPELL_REMOVE_ROCKET_PACK);
Talk(SAY_HORDE_VICTORY);
StartFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_MURADIN_BRONZEBEARD));
StopFight(orgrimmar,CheckUnfriendlyShip(me,_instance, DATA_GB_MURADIN_BRONZEBEARD));
events.CancelEvent(EVENT_WIPE_CHECK);
events.ScheduleEvent(EVENT_OUTRO_HORDE_1, 3500);
events.ScheduleEvent(EVENT_OUTRO_HORDE_2, 21000);
events.ScheduleEvent(EVENT_OUTRO_HORDE_3, 32000);
break;
case ACTION_FAIL:
events.CancelEvent(EVENT_WIPE_CHECK);
Talk(SAY_HORDE_DEFEAT);
if (Creature* pHordeBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_ORGRIMMAR_HAMMER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pHordeBoss);
}
if (Creature* pAllianceBoss = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_SKYBREAKER_BOSS)))
{
_instance->SendEncounterUnit(ENCOUNTER_FRAME_DISENGAGE, pAllianceBoss);
}
StopFight(orgrimmar,CheckUnfriendlyShip(me,_instance, DATA_GB_MURADIN_BRONZEBEARD));
events.ScheduleEvent(EVENT_FAIL, 10000);
break;
case ACTION_MAGE_DIE:
//Check, if there really is no mage
if (me->GetEntry() != NPC_GB_KORKRON_BATTLE_MAGE)
{
events.ScheduleEvent(EVENT_SPAWN_MAGE, 60000);
}
break;
case ACTION_ROCK_DIE:
++RocketerDieCount;
if (RocketerDieCount == RocketerCount)
events.ScheduleEvent(EVENT_RESPAWN_ROCKETEER, 60000);
break;
case ACTION_AXES_RIFL_DIE:
++AxesDieCount;
if (AxesDieCount == AxesCount)
events.ScheduleEvent(EVENT_RESPAWN_AXES_RIFLEMEN, 60000);
break;
}
}
void DamageTaken(Unit* /*attacker*/, uint32& damage)
{
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE && me->GetHealthPct() < 2.0f )
{
damage = 0;
}
if (_instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE && me->GetHealthPct() < 2.0f )
{
damage = 0;
me->AI()->DoAction(ACTION_FAIL);
}
}
void MovementInform(uint32 type, uint32 pointId)
{
if (type != POINT_MOTION_TYPE)
return;
if (pointId = 1)
me->DespawnOrUnsummon(1000);
}
void UpdateAI(uint32 diff)
{
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) == IN_PROGRESS)
{
if (!HealthAbovePct(75))
{
me->SetHealth(me->GetMaxHealth() / 100 * 76); // find a better way to avoid the hardcore spell spam ....
DoCast(me, SPELL_TASTE_OF_BLOOD);
}
if (UpdateVictim())
{
if (!EventScheduled)
{
events.ScheduleEvent(EVENT_RENDING_THROW, 1500);
EventScheduled = true;
}
}
}
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_WIPE_CHECK:
DoCheckFallingPlayer(me);
if (DoWipeCheck(orgrimmar))
events.ScheduleEvent(EVENT_WIPE_CHECK, 3000);
else
me->AI()->DoAction(ACTION_FAIL);
break;
case EVENT_INTRO_HORDE_1:
Talk(SAY_INTRO_HORDE_0);
StartFlyShip(orgrimmar);
break;
case EVENT_INTRO_HORDE_1_1:
Talk(SAY_INTRO_HORDE_0_1);
break;
case EVENT_START_FLY:
StartFlyShip(orgrimmar); // Try
break;
case EVENT_INTRO_HORDE_2:
StopFlyShip(orgrimmar);
StartFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_MURADIN_BRONZEBEARD));
Talk(SAY_INTRO_HORDE_1);
break;
case EVENT_INTRO_HORDE_3:
StopFlyShip(CheckUnfriendlyShip(me, _instance, DATA_GB_MURADIN_BRONZEBEARD));
Talk(SAY_INTRO_HORDE_2);
break;
case EVENT_INTRO_HORDE_4:
SendMusicToPlayers(17289);
me->AI()->DoAction(ACTION_BATTLE_EVENT);
if (Creature* pMuradin = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_MURADIN_BRONZEBEARD_NOT_VISUAL)))
{
pMuradin->AI()->Talk(SAY_MURADIN_BRONZEBEARD_NOT_VISUAL);
pMuradin->SetReactState(REACT_PASSIVE);
pMuradin->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
}
break;
case EVENT_INTRO_HORDE_5:
Talk(SAY_INTRO_HORDE_4);
break;
case EVENT_SUMMON_PORTAL:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
orgrimmar->AddNPCPassengerInInstance(NPC_GB_PORTAL, 15.03016f, -7.00016f, 37.70952f, 1.55138f);
CheckUnfriendlyShip(me, _instance, DATA_MURADIN_BRONZEBEARD_NOT_VISUAL)->AddNPCPassengerInInstance(NPC_GB_PORTAL, 3.51547f, -0.160213f, 20.87252f, 3.05033f);
events.ScheduleEvent(EVENT_BOARDING_TALK, 10000);
events.ScheduleEvent(EVENT_BOARDING_GUNSHIP, 2500); // TODO: Fix the timers
}
break;
case EVENT_BOARDING_TALK:
Talk(SAY_BOARDING_ORGRIMS_HAMMER_1);
break;
case EVENT_BOARDING_GUNSHIP:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
count = 0;
if (Creature* pSaurfang = ObjectAccessor::GetCreature(*me, _instance->GetData64(DATA_MURADIN_BRONZEBEARD_NOT_VISUAL)))
{
pSaurfang->AI()->Talk(SAY_BOARDING_SKYBREAKER_MURADIN);
}
if (Creature* Sergante = orgrimmar->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_SERGANTE, 15.03016f, -7.00016f, 37.70952f, 1.55138f))
{
Sergante->CastSpell(Sergante, SPELL_TELEPORT_VISUAL, true);
}
events.ScheduleEvent(EVENT_BOARDING_REAVERS_MARINE, 3000);
events.ScheduleEvent(EVENT_SUMMON_PORTAL, 90000);
}
break;
case EVENT_BOARDING_REAVERS_MARINE:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
if (count <= SummonCount)
{
if (Creature* Marine = orgrimmar->AddNPCPassengerInInstance(NPC_GB_SKYBREAKER_MARINE, 15.03016f, -7.00016f, 37.70952f, 1.55138f))
{
Marine->CastSpell(Marine, SPELL_TELEPORT_VISUAL, true);
count++;
events.ScheduleEvent(EVENT_BOARDING_REAVERS_MARINE, 2500);
}
}
}
break;
case EVENT_OUTRO_HORDE_1:
_instance->DoCompleteAchievement(RAID_MODE(IM_ON_A_BOAT_10,IM_ON_A_BOAT_25,IM_ON_A_BOAT_10,IM_ON_A_BOAT_25));
_instance->DoCastSpellOnPlayers(SPELL_ACHIEVEMENT_CHECK);
StartFlyShip(orgrimmar);
StopFlyShip(CheckUnfriendlyShip(me,_instance,DATA_GB_MURADIN_BRONZEBEARD));
break;
case EVENT_OUTRO_HORDE_2:
StopFlyShip(orgrimmar);
me->SummonGameObject(RAID_MODE(GO_CAPITAN_CHEST_H_10N, GO_CAPITAN_CHEST_H_25N, GO_CAPITAN_CHEST_H_10H, GO_CAPITAN_CHEST_H_25H), -590.200022f, 2241.193115f, 539.588269f, 0, 0, 0, 0, 0, 100000);
me->AddUnitMovementFlag(MOVEMENTFLAG_WALKING);
me->GetMotionMaster()->MovePoint(0, -590.700f, 2213.01f, 539.1f);
break;
case EVENT_OUTRO_HORDE_3:
me->GetMotionMaster()->MovePoint(1, -555.59f, 2213.01f, 539.28f);
break;
case EVENT_FAIL:
TeleportPlayers(map, HORDE);
events.ScheduleEvent(EVENT_RESTART_EVENT, 2000);
_instance->SetBossState(DATA_GUNSHIP_EVENT, NOT_STARTED);
break;
case EVENT_RESTART_EVENT:
if (_instance->GetBossState(DATA_GUNSHIP_EVENT) != DONE)
{
_instance->SetBossState(DATA_GUNSHIP_EVENT, FAIL);
RestartEvent(orgrimmar, CheckUnfriendlyShip(me,_instance,DATA_GB_MURADIN_BRONZEBEARD), map, HORDE);
}
break;
case EVENT_RENDING_THROW:
if (UpdateVictim())
if (me->GetVictim()->IsWithinDistInMap(me, 30.0f, false))
{
DoCastVictim(SPELL_RENDING_THROW);
EventScheduled = false;
}
else
events.CancelEvent(EVENT_RENDING_THROW);
break;
case EVENT_SPAWN_MAGE:
//Prevent from spawning multiple Mages
if (me->GetEntry() != NPC_GB_KORKRON_BATTLE_MAGE)
{
Talk(SAY_NEW_BATTLE_MAGE_SPAWNED);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_BATTLE_MAGE, 15.03016f, 0.00016f, 37.70952f, 1.55138f);
}
break;
case EVENT_RESPAWN_ROCKETEER:
Talk(SAY_NEW_ROCKETEERS_SPAWNED);
if (RocketerCount == 2)
{
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -11.44849f, -25.71838f, 33.64343f, 1.49248f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 12.30336f, -25.69653f, 35.32373f, 1.49248f);
}
if (RocketerCount == 4)
{
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -11.44849f, -25.71838f, 33.64343f, 1.49248f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 12.30336f, -25.69653f, 35.32373f, 1.49248f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, -3.44849f, -25.71838f, 34.21082f, 1.49248f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_ROCKETEER, 3.30336f, -25.69653f, 35.32373f, 1.49248f);
}
break;
case EVENT_RESPAWN_AXES_RIFLEMEN:
Talk(SAY_NEW_AXETHROWER_SPAWNED);
if (AxesCount == 4)
{
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -3.170555f, 28.30652f, 34.21082f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -12.0928f, 27.65942f, 33.58557f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 14.92804f, 26.18018f, 35.47803f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 24.70331f, 25.36584f, 35.97845f, 1.66527f);
}
if (AxesCount == 6)
{
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -3.170555f, 28.30652f, 34.21082f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -12.0928f, 27.65942f, 33.58557f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 14.92804f, 26.18018f, 35.47803f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 24.70331f, 25.36584f, 35.97845f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, 19.92804f, 27.18018f, 35.47803f, 1.66527f);
orgrimmar->AddNPCPassengerInInstance(NPC_GB_KORKRON_AXETHROWER, -7.70331f, 28.36584f, 33.88557f, 1.66527f);
}
break;
}
}
if (!me->GetCurrentSpell(CURRENT_MELEE_SPELL))
DoCastVictim(SPELL_CLEAVE);
DoMeleeAttackIfReady();
}
private:
Transport* orgrimmar;
uint32 RocketerDieCount;
uint32 AxesDieCount;
uint32 RocketerCount;
uint32 AxesCount;
uint32 SummonCount;
uint32 count;
bool EventScheduled;
Map* map;
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_saurfang_gunshipAI(pCreature);
}
};
class npc_gunship_portal : public CreatureScript
{
public:
npc_gunship_portal() : CreatureScript("npc_gunship_portal") { }
struct npc_gunship_portalAI : public ScriptedAI
{
npc_gunship_portalAI(Creature *creature) : ScriptedAI(creature),_instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
events.ScheduleEvent(EVENT_UNSUMMON_PORTAL, 20500); // TODO: Fix the timers
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
}
void JustDied(Unit* killer)
{
me->RemoveFromWorld();
}
void UpdateAI(uint32 diff)
{
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_UNSUMMON_PORTAL:
me->RemoveFromWorld();
break;
}
}
}
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_portalAI(pCreature);
}
};
class npc_gunship_trigger : public CreatureScript
{
public:
npc_gunship_trigger() : CreatureScript("npc_gunship_trigger") { }
struct npc_gunship_triggerAI : public ScriptedAI
{
npc_gunship_triggerAI(Creature *creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript())
{
Reset();
}
void Reset()
{
ScriptedAI::Reset();
me->SetReactState(REACT_PASSIVE);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
}
void EnterCombat(Unit* /*who*/)
{
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_DISABLE_MOVE);
SetCombatMovement(false);
}
void DamageTaken(Unit* attacker, uint32& damage)
{
damage = 0;
}
void UpdateAI(uint32 diff)
{
}
private:
EventMap events;
InstanceScript* _instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_gunship_triggerAI(pCreature);
}
};
/* ----------------------------------- Rampart of Skulls NPCs ----------------------------------- */
/* Kor'kron Primalist 37030*/
class npc_korkron_primalist: public CreatureScript
{
public:
npc_korkron_primalist() : CreatureScript("npc_korkron_primalist") { }
struct npc_korkron_primalistAI : public ScriptedAI
{
npc_korkron_primalistAI(Creature* creature) : ScriptedAI(creature)
{
instance = creature->GetInstanceScript();
}
void Reset()
{
_started = instance->GetBossState(DATA_GUNSHIP_EVENT) == DONE;
events.Reset();
events.ScheduleEvent(EVENT_WRATH, 10000); // TODO: Fix the timers
events.ScheduleEvent(EVENT_HEAL, 20000); // TODO: Fix the timers
}
void MoveInLineOfSight(Unit* who)
{
if (!instance)
return;
if (instance->GetData(DATA_TEAM_IN_INSTANCE) != HORDE)
return;
if (who->GetTypeId() != TYPEID_PLAYER)
return;
if (instance->GetData(DATA_FIRST_SQUAD_STATE) == DONE)
return;
if (!_started && me->IsWithinDistInMap(who, 25.0f))
{
_started = true;
events.ScheduleEvent(EVENT_FIRST_SQUAD_ASSISTED_1, 1000);
events.ScheduleEvent(EVENT_FIRST_SQUAD_ASSISTED_2, 15000); // TODO : fix the timer
}
}
void UpdateAI(uint32 diff)
{
if (!instance)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_FIRST_SQUAD_ASSISTED_1:
Talk(SAY_FIRST_SQUAD_RESCUED_HORDE_0);
break;
case EVENT_FIRST_SQUAD_ASSISTED_2:
if (Creature* tempUnit = me->FindNearestCreature(NPC_KORKRON_INVOKER, 120.0f, true))
{
tempUnit->AI()->Talk(SAY_FIRST_SQUAD_RESCUED_HORDE_1);
tempUnit->AI()->Talk(SAY_SUMMON_BATTLE_STANDARD);
tempUnit->CastSpell(tempUnit, SPELL_SUMMON_BATTLE_STANDART_H, true);
}
instance->SetData(DATA_FIRST_SQUAD_STATE, DONE);
break;
case EVENT_WRATH:
if (UpdateVictim())
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_WRATH);
events.ScheduleEvent(EVENT_WRATH, 10000);
break;
case EVENT_HEAL:
if (UpdateVictim())
{
std::list<Unit*> TargetList;
Unit* finalTarget = me;
Trinity::AnyFriendlyUnitInObjectRangeCheck checker(me, me, 30.0f);
Trinity::UnitListSearcher<Trinity::AnyFriendlyUnitInObjectRangeCheck> searcher(me, TargetList, checker);
me->VisitNearbyObject(30.0f, searcher);
for (std::list<Unit*>::iterator itr = TargetList.begin(); itr != TargetList.end(); ++itr)
if ((*itr)->GetHealthPct() < finalTarget->GetHealthPct())
finalTarget = *itr;
uint32 spellId = SPELL_HEALING_TOUCH;
uint32 healthPct = uint32(finalTarget->GetHealthPct());
if (healthPct > 15 && healthPct < 20)
spellId = (urand (0, 1) ? SPELL_REGROWTH : SPELL_HEALING_TOUCH);
else if (healthPct >= 20 && healthPct < 40)
spellId = SPELL_REGROWTH;
else if (healthPct > 40)
spellId = (urand(0, 1) ? SPELL_REJUVENATION : SPELL_REGROWTH);
me->CastSpell(finalTarget, spellId, false);
events.ScheduleEvent(EVENT_HEAL, 20000);
}
break;
}
}
DoMeleeAttackIfReady();
}
private:
bool _started;
EventMap events;
InstanceScript* instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_korkron_primalistAI(pCreature);
}
};
/* Kor'kron Defender 37032*/
class npc_korkron_defender: public CreatureScript
{
public:
npc_korkron_defender() : CreatureScript("npc_korkron_defender") { }
struct npc_korkron_defenderAI : public ScriptedAI
{
npc_korkron_defenderAI(Creature* creature) : ScriptedAI(creature)
{
instance = creature->GetInstanceScript();
}
void Reset()
{
events.Reset();
events.ScheduleEvent(EVENT_DEVASTATE, 10000);
events.ScheduleEvent(EVENT_THUNDERCLAP, 20000);
events.ScheduleEvent(EVENT_SPELL_REFLECT, 25000);
events.ScheduleEvent(EVENT_SUNDER_ARMOR, 15000);
}
void MoveInLineOfSight(Unit* who)
{
if (!instance)
return;
if (instance->GetData(DATA_TEAM_IN_INSTANCE) != HORDE)
return;
if (who->GetTypeId() != TYPEID_PLAYER)
return;
if (me->IsWithinDistInMap(who, 25.0f))
{
if (instance->GetData(DATA_FIRST_SQUAD_STATE) == DONE && instance->GetData(DATA_SECOND_SQUAD_STATE) != DONE)
{
instance->SetData(DATA_SECOND_SQUAD_STATE, DONE);
events.ScheduleEvent(EVENT_SECOND_SQUAD_ASSISTED_1, 1000);
events.ScheduleEvent(EVENT_SECOND_SQUAD_ASSISTED_2, 15000); // TODO : fix the timer
}
}
}
void UpdateAI(uint32 diff)
{
if (!instance)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_SECOND_SQUAD_ASSISTED_1:
Talk(SAY_SECOND_SQUAD_RESCUED_HORDE_0);
break;
case EVENT_SECOND_SQUAD_ASSISTED_2:
Talk(SAY_SECOND_SQUAD_RESCUED_HORDE_1);
Talk(SAY_FROSTWYRM_SUMMON_0);
break;
case EVENT_DEVASTATE:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
DoCast(target, SPELL_DEVASTATE);
}
events.ScheduleEvent(EVENT_DEVASTATE, 10000);
break;
case EVENT_SPELL_REFLECT:
if (UpdateVictim())
{
DoCast(me, SPELL_SPELL_REFLECT);
}
events.ScheduleEvent(EVENT_SPELL_REFLECT, 25000);
break;
case EVENT_THUNDERCLAP:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1))
DoCast(target, SPELL_THUNDERCLAP);
}
events.ScheduleEvent(EVENT_THUNDERCLAP, 20000);
break;
case EVENT_SUNDER_ARMOR:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1))
DoCast(target, SPELL_SUNDER_ARMOR);
}
events.ScheduleEvent(EVENT_SUNDER_ARMOR, 15000);
break;
}
}
DoMeleeAttackIfReady();
}
private:
EventMap events;
InstanceScript* instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_korkron_defenderAI(pCreature);
}
};
/* Skybreaker Vindicator 37003*/
class npc_skybreaker_vindicator: public CreatureScript
{
public:
npc_skybreaker_vindicator() : CreatureScript("npc_skybreaker_vindicator") { }
struct npc_skybreaker_vindicatorAI : public ScriptedAI
{
npc_skybreaker_vindicatorAI(Creature* creature) : ScriptedAI(creature)
{
instance = creature->GetInstanceScript();
}
void Reset()
{
_started = instance->GetBossState(DATA_GUNSHIP_EVENT) == DONE;
events.Reset();
events.ScheduleEvent(EVENT_AVENGERS_SHILED, 10000); // TODO: Fix the timers
events.ScheduleEvent(EVENT_CONCENTRATION, 20000); // TODO: Fix the timers
events.ScheduleEvent(EVENT_HOLY_WRATH, 20000); // TODO: Fix the timers
}
void MoveInLineOfSight(Unit* who)
{
if (!instance)
return;
if (instance->GetData(DATA_TEAM_IN_INSTANCE) != ALLIANCE)
return;
if (who->GetTypeId() != TYPEID_PLAYER)
return;
if (instance->GetData(DATA_FIRST_SQUAD_STATE) == DONE)
return;
if (!_started && me->IsWithinDistInMap(who, 25.0f))
{
_started = true;
events.ScheduleEvent(EVENT_FIRST_SQUAD_ASSISTED_1, 1000);
events.ScheduleEvent(EVENT_FIRST_SQUAD_ASSISTED_2, 15000); // TODO : fix the timer
}
}
void UpdateAI(uint32 diff)
{
if (!instance)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_FIRST_SQUAD_ASSISTED_1:
Talk(SAY_FIRST_SQUAD_RESCUED_ALLIANCE_0);
break;
case EVENT_FIRST_SQUAD_ASSISTED_2:
if (Creature* tempUnit = me->FindNearestCreature(NPC_GB_SKYBREAKER_SORCERER, 120.0f, true))
{
tempUnit->AI()->Talk(SAY_FIRST_SQUAD_RESCUED_ALLIANCE_1);
tempUnit->AI()->Talk(SAY_SUMMON_BATTLE_STANDARD);
tempUnit->CastSpell(tempUnit, SPELL_SUMMON_BATTLE_STANDART_A, true);
}
instance->SetData(DATA_FIRST_SQUAD_STATE, DONE);
break;
case EVENT_AVENGERS_SHILED:
if (UpdateVictim())
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_WRATH);
events.ScheduleEvent(EVENT_AVENGERS_SHILED, 10000);
break;
case EVENT_CONCENTRATION:
if (UpdateVictim())
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_CONCENTRATION);
events.ScheduleEvent(EVENT_CONCENTRATION, 20000);
break;
case EVENT_HOLY_WRATH:
if (UpdateVictim())
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_HOLY_WRATH);
events.ScheduleEvent(EVENT_HOLY_WRATH, 15000);
break;
}
}
DoMeleeAttackIfReady();
}
private:
bool _started;
EventMap events;
InstanceScript* instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_skybreaker_vindicatorAI(pCreature);
}
};
/* Skybreaker Protector 36998*/
class npc_skybreaker_protector: public CreatureScript
{
public:
npc_skybreaker_protector() : CreatureScript("npc_skybreaker_protector") { }
struct npc_skybreaker_protectorAI : public ScriptedAI
{
npc_skybreaker_protectorAI(Creature* creature) : ScriptedAI(creature)
{
instance = creature->GetInstanceScript();
}
void Reset()
{
events.Reset();
events.ScheduleEvent(EVENT_DEVASTATE, 10000);
events.ScheduleEvent(EVENT_THUNDERCLAP, 20000);
events.ScheduleEvent(EVENT_SPELL_REFLECT, 25000);
events.ScheduleEvent(EVENT_SUNDER_ARMOR, 15000);
}
void MoveInLineOfSight(Unit* who)
{
if (!instance)
return;
if (instance->GetData(DATA_TEAM_IN_INSTANCE) != ALLIANCE)
return;
if (who->GetTypeId() != TYPEID_PLAYER)
return;
if (me->IsWithinDistInMap(who, 25.0f))
{
if (instance->GetData(DATA_FIRST_SQUAD_STATE) == DONE && instance->GetData(DATA_SECOND_SQUAD_STATE) != DONE)
{
instance->SetData(DATA_SECOND_SQUAD_STATE, DONE);
events.ScheduleEvent(EVENT_SECOND_SQUAD_ASSISTED_1, 1000);
events.ScheduleEvent(EVENT_SECOND_SQUAD_ASSISTED_2, 11000); // TODO : fix the timer
events.ScheduleEvent(EVENT_SECOND_SQUAD_ASSISTED_3, 17000); // TODO : fix the timer
}
}
}
void UpdateAI(uint32 diff)
{
if (!instance)
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_SECOND_SQUAD_ASSISTED_1:
Talk(SAY_SECOND_SQUAD_RESCUED_ALLIANCE_0);
break;
case EVENT_SECOND_SQUAD_ASSISTED_2:
Talk(SAY_SECOND_SQUAD_RESCUED_ALLIANCE_1);
break;
case EVENT_SECOND_SQUAD_ASSISTED_3:
Talk(SAY_SECOND_SQUAD_RESCUED_ALLIANCE_2);
Talk(SAY_FROSTWYRM_SUMMON_1);
break;
case EVENT_DEVASTATE:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
DoCast(target, SPELL_DEVASTATE);
}
events.ScheduleEvent(EVENT_DEVASTATE, 10000);
break;
case EVENT_SPELL_REFLECT:
if (UpdateVictim())
{
DoCast(me, SPELL_SPELL_REFLECT);
}
events.ScheduleEvent(EVENT_SPELL_REFLECT, 25000);
break;
case EVENT_THUNDERCLAP:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1))
DoCast(target, SPELL_THUNDERCLAP);
}
events.ScheduleEvent(EVENT_THUNDERCLAP, 20000);
break;
case EVENT_SUNDER_ARMOR:
if (UpdateVictim())
{
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1))
DoCast(target, SPELL_SUNDER_ARMOR);
}
events.ScheduleEvent(EVENT_SUNDER_ARMOR, 15000);
break;
}
}
DoMeleeAttackIfReady();
}
private:
EventMap events;
InstanceScript* instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_skybreaker_protectorAI(pCreature);
}
};
/* Spire Frostwyrm 37230*/
class npc_icc_spire_frostwyrm: public CreatureScript
{
public:
npc_icc_spire_frostwyrm() : CreatureScript("npc_icc_spire_frostwyrm") { }
struct npc_icc_spire_frostwyrmAI : public ScriptedAI
{
npc_icc_spire_frostwyrmAI(Creature* creature) : ScriptedAI(creature)
{
instance = creature->GetInstanceScript();
}
void Reset()
{
landed = false;
events.Reset();
me->SetCanFly(true);
me->SetReactState(REACT_AGGRESSIVE);
me->AddUnitMovementFlag(MOVEMENTFLAG_DISABLE_GRAVITY);
events.ScheduleEvent(EVENT_FROST_BREATH, 20000);
events.ScheduleEvent(EVENT_BLIZZARD, 25000);
events.ScheduleEvent(EVENT_CLEAVE, 10000);
}
void MoveInLineOfSight(Unit* who)
{
if (!instance)
return;
if (who->GetTypeId() != TYPEID_PLAYER)
return;
if (!who->isTargetableForAttack())
return;
if (!landed && me->IsWithinDistInMap(who, 35.0f))
{
if (instance->GetData(DATA_TEAM_IN_INSTANCE) == HORDE)
Talk(SAY_FROSTWYRM_LAND_H_0);
else
Talk(SAY_FROSTWYRM_LAND_A_1);
landed = true;
me->SetCanFly(true);
me->RemoveUnitMovementFlag(MOVEMENTFLAG_DISABLE_GRAVITY);
me->SetInCombatWith(who);
me->AddThreat(who, 1.0f);
me->GetMotionMaster()->MoveChase(who);
}
}
void UpdateAI(uint32 diff)
{
if (!UpdateVictim())
return;
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent())
{
switch (eventId)
{
case EVENT_FROST_BREATH:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_FROST_BREATH);
events.ScheduleEvent(EVENT_FROST_BREATH, 20000);
break;
case EVENT_BLIZZARD:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_BLIZZARD);
events.ScheduleEvent(EVENT_BLIZZARD, 25000);
break;
case EVENT_CLEAVE:
if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 1, 10.0f))
DoCast(target, SPELL_FROST_CLEAVE);
events.ScheduleEvent(EVENT_CLEAVE, 10000);
break;
}
}
DoMeleeAttackIfReady();
}
private:
bool landed;
EventMap events;
InstanceScript* instance;
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new npc_icc_spire_frostwyrmAI(pCreature);
}
};
/* ---------------------------------- AreaTrigger Scripts ------------------------------------- */
class at_icc_land_frostwyrm : public AreaTriggerScript
{
public:
at_icc_land_frostwyrm() : AreaTriggerScript("at_icc_land_frostwyrm") { }
bool OnTrigger(Player* player, AreaTriggerEntry const* areaTrigger)
{
if (InstanceScript* instance = player->GetInstanceScript())
{
if (instance->GetData(DATA_SPIRE_FROSTWYRM_STATE) == NOT_STARTED && instance->GetData(DATA_SECOND_SQUAD_STATE) == DONE)
{
if (instance->GetData(DATA_TEAM_IN_INSTANCE) == ALLIANCE)
player->GetMap()->SummonCreature(NPC_SPIRE_FROSTWYRM, FrostWyrmPosA);
else
player->GetMap()->SummonCreature(NPC_SPIRE_FROSTWYRM, FrostWyrmPosH);
instance->SetData(DATA_SPIRE_FROSTWYRM_STATE, IN_PROGRESS);
}
}
return true;
}
};
/* transport script */
class transport_gunship : public TransportScript
{
public:
transport_gunship() : TransportScript("transport_gunship") { }
void OnRelocate(Transport* transport, uint32 waypointId, uint32 mapId, float x, float y, float z) { }
void OnAddPassenger(Transport* transport, Player* player)
{
if (!transport || !player)
return;
switch (transport->GetEntry())
{
case GO_THE_SKYBREAKER_ALLIANCE_ICC:
player->AddAura(SPELL_ON_SKYBREAKERS_DECK, player);
break;
case GO_ORGRIM_S_HAMMER_HORDE_ICC:
player->AddAura(SPELL_ON_ORGRIMS_HAMMERS_DECK, player);
break;
default:
break;
}
}
void OnRemovePassenger(Transport* /*transport*/, Player* player)
{
if (!player)
return;
player->RemoveAurasDueToSpell(SPELL_ON_ORGRIMS_HAMMERS_DECK);
player->RemoveAurasDueToSpell(SPELL_ON_SKYBREAKERS_DECK);
}
};
/* Remove Rocket Pack - 70713 */
class spell_remove_rocket_pack : public SpellScriptLoader
{
public:
spell_remove_rocket_pack() : SpellScriptLoader("spell_remove_rocket_pack") { }
class spell_remove_rocket_pack_SpellScript : public SpellScript
{
PrepareSpellScript(spell_remove_rocket_pack_SpellScript);
void HandleEffect(SpellEffIndex /*effIndex*/)
{
Player* player = GetHitPlayer();
int32 itemId = 49278;
if (!player->GetItemCount(itemId) == 1)
return;
player->DestroyItemCount(itemId, -1, true, false);
}
void Register()
{
OnEffectHit += SpellEffectFn(spell_remove_rocket_pack_SpellScript::HandleEffect, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
}
};
SpellScript* GetSpellScript() const
{
return new spell_remove_rocket_pack_SpellScript();
}
};
/* spell 69471 Heat Drain */
class spell_gb_heat_drain : public SpellScriptLoader
{
public:
spell_gb_heat_drain() : SpellScriptLoader("spell_gb_heat_drain") { }
class spell_gb_heat_drain_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gb_heat_drain_SpellScript);
void HandleDummy(SpellEffIndex /*effIndex*/)
{
Unit* caster = GetCaster();
if (caster->GetPower(POWER_ENERGY) != 0)
caster->ModifyPower(POWER_ENERGY, -1);
if (caster->GetPower(POWER_ENERGY) >= 99)
caster->CastSpell(caster, SPELL_OVERHEAT, true);
}
void Register()
{
OnEffectHit += SpellEffectFn(spell_gb_heat_drain_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
}
};
SpellScript* GetSpellScript() const
{
return new spell_gb_heat_drain_SpellScript();
}
};
/* spell 69488 Overheat Drain */
class spell_gb_overheat_drain : public SpellScriptLoader
{
public:
spell_gb_overheat_drain() : SpellScriptLoader("spell_gb_overheat_drain") { }
class spell_gb_overheat_drain_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gb_overheat_drain_SpellScript);
void HandleDummy(SpellEffIndex /*effIndex*/)
{
Unit* caster = GetCaster();
if (caster->GetPower(POWER_ENERGY) >= 10)
caster->ModifyPower(POWER_ENERGY, -10);
}
void Register()
{
OnEffectHit += SpellEffectFn(spell_gb_overheat_drain_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
}
};
SpellScript* GetSpellScript() const
{
return new spell_gb_overheat_drain_SpellScript();
}
};
/* spell 69402 Incinerating Blast */
class spell_gb_incinerating_blast : public SpellScriptLoader
{
public:
spell_gb_incinerating_blast() : SpellScriptLoader("spell_gb_incinerating_blast") { }
class spell_gb_incinerating_blast_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gb_incinerating_blast_SpellScript);
void AddExtraDamage()
{
Unit* caster = GetCaster();
if (!caster || !caster->GetPower(POWER_ENERGY))
return;
SetHitDamage(int32(GetHitDamage() + (caster->GetPower(POWER_ENERGY) * 100.0f))); // TODO: How much should be?
caster->SetPower(POWER_ENERGY, 0);
}
void Register()
{
OnHit += SpellHitFn(spell_gb_incinerating_blast_SpellScript::AddExtraDamage);
}
};
SpellScript* GetSpellScript() const
{
return new spell_gb_incinerating_blast_SpellScript();
}
};
/* spell 71335, 70339 Burning Pitch */
class spell_gb_burning_pitch : public SpellScriptLoader
{
public:
spell_gb_burning_pitch() : SpellScriptLoader("spell_gb_burning_pitch") { }
class spell_gb_burning_pitch_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gb_burning_pitch_SpellScript);
bool Validate(SpellInfo const* /*spellInfo*/)
{
if (!sSpellMgr->GetSpellInfo(SPELL_BURNING_PITCH_SIEGE_DMG_A))
return false;
if (!sSpellMgr->GetSpellInfo(SPELL_BURNING_PITCH_SIEGE_DMG_H))
return false;
if (!sSpellMgr->GetSpellInfo(SPELL_BURNING_PITCH_AOE_DAMAGE))
return false;
return true;
}
void HandleDummy(SpellEffIndex /*effIndex*/)
{
Unit* caster = GetCaster();
Unit* target = GetHitUnit();
if (!caster || !target)
return;
if (GetSpellInfo()->Id == SPELL_BURNING_PITCH_A)
caster->CastSpell(target, SPELL_BURNING_PITCH_SIEGE_DMG_A, true);
else
caster->CastSpell(target, SPELL_BURNING_PITCH_SIEGE_DMG_H, true);
caster->CastSpell(target, SPELL_BURNING_PITCH_AOE_DAMAGE, true);
}
void Register()
{
OnEffectHitTarget += SpellEffectFn(spell_gb_burning_pitch_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
}
};
SpellScript* GetSpellScript() const
{
return new spell_gb_burning_pitch_SpellScript();
}
};
/* spell 68645 Rocket Pack */
class spell_rocket_pack : public SpellScriptLoader
{
public:
spell_rocket_pack() : SpellScriptLoader("spell_rocket_pack") { }
class spell_rocket_pack_AuraScript : public AuraScript
{
PrepareAuraScript(spell_rocket_pack_AuraScript);
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
GetTarget()->CastSpell(GetTarget(), 68721, true);
}
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
GetTarget()->RemoveAurasDueToSpell(68721);
}
void Register()
{
OnEffectApply += AuraEffectApplyFn(spell_rocket_pack_AuraScript::OnApply, EFFECT_1, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
OnEffectRemove += AuraEffectRemoveFn(spell_rocket_pack_AuraScript::OnRemove, EFFECT_1, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
}
};
AuraScript* GetAuraScript() const
{
return new spell_rocket_pack_AuraScript();
}
};
void AddSC_boss_gunship_battle()
{
new npc_muradin_gunship();
new npc_saurfang_gunship();
new npc_zafod_boombox();
new npc_korkron_axethrower_rifleman();
new npc_mortar_soldier_or_rocketeer();
new npc_gunship_mage();
new npc_gunship_cannon();
new npc_sergeant();
new npc_marine_or_reaver();
new npc_gunship_trigger();
new npc_gunship_portal();
new npc_korkron_primalist();
new npc_korkron_defender();
new npc_skybreaker_vindicator();
new npc_skybreaker_protector();
new npc_icc_spire_frostwyrm();
new at_icc_land_frostwyrm();
new npc_gunship_skybreaker();
new npc_gunship_orgrimmar();
new transport_gunship();
new spell_remove_rocket_pack();
new spell_gb_heat_drain();
new spell_gb_overheat_drain();
new spell_gb_incinerating_blast();
new spell_gb_burning_pitch();
new spell_rocket_pack();
}
| planee/GaryMoveOut | src/server/scripts/Northrend/IcecrownCitadel/boss_gunship_battle.cpp | C++ | gpl-2.0 | 148,985 |
/*
Texel - A UCI chess engine.
Copyright (C) 2012-2013 Peter Österlund, peterosterlund2@gmail.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* transpositionTable.cpp
*
* Created on: Feb 25, 2012
* Author: petero
*/
#include "transpositionTable.hpp"
#include "position.hpp"
#include "moveGen.hpp"
#include "textio.hpp"
#include <iostream>
#include <iomanip>
using namespace std;
void
TranspositionTable::reSize(int log2Size) {
const size_t numEntries = ((size_t)1) << log2Size;
table.resize(numEntries);
TTEntry ent;
ent.clear();
for (size_t i = 0; i < numEntries; i++)
ent.store(table[i]);
generation = 0;
}
void
TranspositionTable::insert(U64 key, const Move& sm, int type, int ply, int depth, int evalScore) {
if (depth < 0) depth = 0;
size_t idx0 = getIndex(key);
U64 key2 = getStoredKey(key);
TTEntry ent0, ent1;
ent0.load(table[idx0]);
size_t idx = idx0;
TTEntry* ent = &ent0;
if (ent0.getKey() != key2) {
size_t idx1 = idx0 ^ 1;
ent1.load(table[idx1]);
idx = idx1;
ent = &ent1;
if (ent1.getKey() != key2)
if (ent1.betterThan(ent0, generation)) {
idx = idx0;
ent = &ent0;
}
}
bool doStore = true;
if ((ent->getKey() == key2) && (ent->getDepth() > depth) && (ent->getType() == type)) {
if (type == TType::T_EXACT)
doStore = false;
else if ((type == TType::T_GE) && (sm.score() <= ent->getScore(ply)))
doStore = false;
else if ((type == TType::T_LE) && (sm.score() >= ent->getScore(ply)))
doStore = false;
}
if (doStore) {
if ((ent->getKey() != key2) || (sm.from() != sm.to()))
ent->setMove(sm);
ent->setKey(key2);
ent->setScore(sm.score(), ply);
ent->setDepth(depth);
ent->setGeneration((byte)generation);
ent->setType(type);
ent->setEvalScore(evalScore);
ent->store(table[idx]);
}
}
void
TranspositionTable::extractPVMoves(const Position& rootPos, const Move& mFirst, std::vector<Move>& pv) {
Position pos(rootPos);
Move m(mFirst);
UndoInfo ui;
std::vector<U64> hashHistory;
while (true) {
pv.push_back(m);
pos.makeMove(m, ui);
if (contains(hashHistory, pos.zobristHash()))
break;
hashHistory.push_back(pos.zobristHash());
TTEntry ent;
ent.clear();
probe(pos.historyHash(), ent);
if (ent.getType() == TType::T_EMPTY)
break;
ent.getMove(m);
MoveGen::MoveList moves;
MoveGen::pseudoLegalMoves(pos, moves);
MoveGen::removeIllegal(pos, moves);
bool contains = false;
for (int mi = 0; mi < moves.size; mi++)
if (moves[mi].equals(m)) {
contains = true;
break;
}
if (!contains)
break;
}
}
/** Extract the PV starting from posIn, using hash entries, both exact scores and bounds. */
std::string
TranspositionTable::extractPV(const Position& posIn) {
std::string ret;
Position pos(posIn);
bool first = true;
TTEntry ent;
ent.clear();
probe(pos.historyHash(), ent);
UndoInfo ui;
std::vector<U64> hashHistory;
bool repetition = false;
while (ent.getType() != TType::T_EMPTY) {
Move m;
ent.getMove(m);
MoveGen::MoveList moves;
MoveGen::pseudoLegalMoves(pos, moves);
MoveGen::removeIllegal(pos, moves);
bool valid = false;
for (int mi = 0; mi < moves.size; mi++)
if (moves[mi].equals(m)) {
valid = true;
break;
}
if (!valid)
break;
if (repetition)
break;
if (!first)
ret += ' ';
if (ent.getType() == TType::T_LE)
ret += '<';
else if (ent.getType() == TType::T_GE)
ret += '>';
std::string moveStr = TextIO::moveToString(pos, m, false);
ret += moveStr;
pos.makeMove(m, ui);
if (contains(hashHistory, pos.zobristHash()))
repetition = true;
hashHistory.push_back(pos.zobristHash());
probe(pos.historyHash(), ent);
first = false;
}
return ret;
}
void
TranspositionTable::printStats() const {
int unused = 0;
int thisGen = 0;
std::vector<int> depHist;
const int maxDepth = 20*8;
depHist.resize(maxDepth);
for (size_t i = 0; i < table.size(); i++) {
TTEntry ent;
ent.load(table[i]);
if (ent.getType() == TType::T_EMPTY) {
unused++;
} else {
if (ent.getGeneration() == generation)
thisGen++;
if (ent.getDepth() < maxDepth)
depHist[ent.getDepth()]++;
}
}
double w = 100.0 / table.size();
std::stringstream ss;
ss.precision(2);
ss << std::fixed << "Hash stats: size:" << table.size()
<< " unused:" << unused << " (" << (unused*w) << "%)"
<< " thisGen:" << thisGen << " (" << (thisGen*w) << "%)" << std::endl;
cout << ss.str();
for (int i = 0; i < maxDepth; i++) {
int c = depHist[i];
if (c > 0) {
std::stringstream ss;
ss.precision(2);
ss << std::setw(4) << i
<< ' ' << std::setw(8) << c
<< " " << std::setw(6) << std::fixed << (c*w);
std::cout << ss.str() << std::endl;
}
}
}
| lukasmonk/lucaschess | Engines/Linux32/texel/src/transpositionTable.cpp | C++ | gpl-2.0 | 6,172 |
<?php
/**
* The template for displaying comments.
*
* This is the template that displays the area of the page that contains both the current comments
* and the comment form.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Base WP
*/
/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
<?php // You can start editing here -- including this comment! ?>
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( // WPCS: XSS OK.
esc_html( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'base-wp' ) ),
number_format_i18n( get_comments_number() ),
'<span>' . get_the_title() . '</span>'
);
?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'base-wp' ); ?></h2>
<div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'base-wp' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'base-wp' ) ); ?></div>
</div><!-- .nav-links -->
</nav><!-- #comment-nav-above -->
<?php endif; // Check for comment navigation. ?>
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
) );
?>
</ol><!-- .comment-list -->
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'base-wp' ); ?></h2>
<div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'base-wp' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'base-wp' ) ); ?></div>
</div><!-- .nav-links -->
</nav><!-- #comment-nav-below -->
<?php endif; // Check for comment navigation. ?>
<?php endif; // Check for have_comments(). ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'base-wp' ); ?></p>
<?php endif; ?>
<?php comment_form(); ?>
</div><!-- #comments -->
| rupertjeff/misayi | public/wp-content/themes/base-wp/comments.php | PHP | gpl-2.0 | 2,885 |
# Author: Hannah Brock
from agent import WumpusAgent
from knowledge_base import KnowledgeBase
class LogicalAgent(WumpusAgent):
"""Implementation of a logcial wumpus agent"""
def __init__(self):
self.kb = KnowledgeBase()
def get_action(self, percept):
"""See WumpusAgent.get_action for further
documentation.
"""
for p in percept:
self.kb.tell(p)
if self.kb.ask('GRAB'):
return WumpusAgent.GRAB
if self.kb.ask('FORWARD'):
return WumpusAgent.FORWARD
return WumpusAgent.LEFT
def reset(self):
self.kb = KnowledgeBase()
| hjbrock/AI-trials | wumpus-world-first-step/agents/logical_agent.py | Python | gpl-2.0 | 644 |
import pythonlab
import agros2d
import scipy.io as sio
import numpy as np
from test_suite.scenario import Agros2DTestCase
from test_suite.scenario import Agros2DTestResult
class TestInternalMatrixSolvers(Agros2DTestCase):
@classmethod
def setUpClass(self):
# store state
self.save_matrix_and_rhs = agros2d.options.save_matrix_and_rhs
self.dump_format = agros2d.options.dump_format
# dump format
agros2d.options.save_matrix_and_rhs = True
agros2d.options.dump_format = "matlab_mat"
# read reference matrix and rhs from file
self.reference_mat, self.reference_rhs = self.read_matrix_and_rhs(pythonlab.datadir("/resources/test/test_suite/core/matrix_solvers_matrix.mat"),
pythonlab.datadir("/resources/test/test_suite/core/matrix_solvers_rhs.mat"))
@classmethod
def tearDownClass(self):
# restore state
agros2d.options.save_matrix_and_rhs = self.save_matrix_and_rhs
agros2d.options.dump_format = self.dump_format
@classmethod
def model(self, solver):
# problem
problem = agros2d.problem(clear = True)
problem.coordinate_type = "axisymmetric"
problem.mesh_type = "triangle"
# fields
# electrostatic
electrostatic = agros2d.field("electrostatic")
electrostatic.analysis_type = "steadystate"
electrostatic.matrix_solver = solver
electrostatic.number_of_refinements = 1
electrostatic.polynomial_order = 2
electrostatic.adaptivity_type = "disabled"
electrostatic.solver = "linear"
# boundaries
electrostatic.add_boundary("Source", "electrostatic_potential", {"electrostatic_potential" : 1e9})
electrostatic.add_boundary("Ground", "electrostatic_potential", {"electrostatic_potential" : 0})
electrostatic.add_boundary("Neumann", "electrostatic_surface_charge_density", {"electrostatic_surface_charge_density" : 0})
# materials
electrostatic.add_material("Air", {"electrostatic_permittivity" : 1, "electrostatic_charge_density" : 1})
electrostatic.add_material("Dielectric 1", {"electrostatic_permittivity" : 3, "electrostatic_charge_density" : 20})
electrostatic.add_material("Dielectric 2", {"electrostatic_permittivity" : 4, "electrostatic_charge_density" : 30})
# geometry
geometry = agros2d.geometry
geometry.add_edge(0, 0.2, 0, 0.08, boundaries = {"electrostatic" : "Neumann"})
geometry.add_edge(0.01, 0.08, 0.01, 0, refinements = {"electrostatic" : 1}, boundaries = {"electrostatic" : "Source"})
geometry.add_edge(0.01, 0, 0.03, 0, boundaries = {"electrostatic" : "Neumann"})
geometry.add_edge(0.03, 0, 0.03, 0.08)
geometry.add_edge(0.03, 0.08, 0.05, 0.08)
geometry.add_edge(0.05, 0, 0.03, 0, boundaries = {"electrostatic" : "Neumann"})
geometry.add_edge(0.05, 0.08, 0.05, 0, refinements = {"electrostatic" : 1}, boundaries = {"electrostatic" : "Ground"})
geometry.add_edge(0.06, 0, 0.06, 0.08, boundaries = {"electrostatic" : "Ground"})
geometry.add_edge(0.05, 0.08, 0.06, 0.08, refinements = {"electrostatic" : 1}, boundaries = {"electrostatic" : "Ground"})
geometry.add_edge(0.06, 0, 0.2, 0, boundaries = {"electrostatic" : "Neumann"})
geometry.add_edge(0.2, 0, 0, 0.2, angle = 90, boundaries = {"electrostatic" : "Neumann"})
geometry.add_edge(0.01, 0.08, 0.03, 0.08)
geometry.add_edge(0.01, 0.08, 0, 0.08, refinements = {"electrostatic" : 1}, boundaries = {"electrostatic" : "Source"})
geometry.add_label(0.019, 0.021, materials = {"electrostatic" : "Dielectric 1"})
geometry.add_label(0.0379, 0.051, materials = {"electrostatic" : "Dielectric 2"})
geometry.add_label(0.0284191, 0.123601, materials = {"electrostatic" : "Air"})
agros2d.view.zoom_best_fit()
problem.solve()
return electrostatic.filename_matrix(), electrostatic.filename_rhs()
@classmethod
def analyse_matrix_and_rhs(self, filename_matrix, filename_rhs):
import pylab as pl
# read matrix and rhs from file
mat_object = sio.loadmat(filename_matrix)
matrix = mat_object["matrix"]
rhs_object = sio.loadmat(filename_rhs)
rhs = rhs_object["rhs"]
# size of the matrix
print("Matrix size: " + str(len(rhs)))
print("Number of nonzeros: " + str(matrix.getnnz()) + " (" + str(round(float(matrix.getnnz()) / (len(rhs)**2) * 100.0, 3)) + " %)")
# visualize matrix sparsity pattern
fig = pl.figure()
pl.spy(matrix, markersize=1)
fn_pattern = pythonlab.tempname("png")
pl.savefig(fn_pattern, dpi=60)
pl.close(fig)
# show in console
pythonlab.image(fn_pattern)
@classmethod
def read_matrix_and_rhs(self, matrix_filename, rhs_filename):
mat_object = sio.loadmat(matrix_filename)
matrix = mat_object["matrix"]
rhs_object = sio.loadmat(rhs_filename)
rhs = rhs_object["rhs"]
return matrix, rhs
def test_mumps(self):
# MUMPS
filename_mumps_matrix, filename_mumps_rhs = self.model("mumps")
mumps_mat, mumps_rhs = self.read_matrix_and_rhs(filename_mumps_matrix, filename_mumps_rhs)
self.assertTrue(np.allclose(self.reference_mat.todense(), mumps_mat.todense(), rtol=1e-15, atol=1e-15),
"MUMPS matrix failed.")
self.assertTrue(np.allclose(self.reference_rhs, mumps_rhs, rtol=1e-15, atol=1e-10),
"MUMPS rhs failed.")
def test_umfpack(self):
# UMFPACK
filename_umfpack_matrix, filename_umfpack_rhs = self.model("umfpack")
umfpack_mat, umfpack_rhs = self.read_matrix_and_rhs(filename_umfpack_matrix, filename_umfpack_rhs)
self.assertTrue(np.allclose(self.reference_mat.todense(), umfpack_mat.todense(), rtol=1e-15, atol=1e-15),
"UMFPACK matrix failed.")
self.assertTrue(np.allclose(self.reference_rhs, umfpack_rhs, rtol=1e-15, atol=1e-10),
"UMFPACK rhs failed.")
def test_paralution_iter(self):
# PARALUTION - iterative
filename_paralution_iterative_matrix, filename_paralution_iterative_rhs = self.model("paralution_iterative")
paralution_iterative_mat, paralution_iterative_rhs = self.read_matrix_and_rhs(filename_paralution_iterative_matrix, filename_paralution_iterative_rhs)
self.assertTrue(np.allclose(self.reference_mat.todense(), paralution_iterative_mat.todense(), rtol=1e-15, atol=1e-15),
"PARALUTION iterative matrix failed.")
self.assertTrue(np.allclose(self.reference_rhs, paralution_iterative_rhs, rtol=1e-15, atol=1e-10),
"PARALUTION iterative rhs failed.")
def test_paralution_amg(self):
# PARALUTION - amg
filename_paralution_amg_matrix, filename_paralution_amg_rhs = self.model("paralution_amg")
paralution_amg_mat, paralution_amg_rhs = self.read_matrix_and_rhs(filename_paralution_amg_matrix, filename_paralution_amg_rhs)
self.assertTrue(np.allclose(self.reference_mat.todense(), paralution_amg_mat.todense(), rtol=1e-15, atol=1e-15),
"PARALUTION AMG matrix failed.")
self.assertTrue(np.allclose(self.reference_rhs, paralution_amg_rhs, rtol=1e-15, atol=1e-10),
"PARALUTION AMG rhs failed.")
def test_external(self):
# external
filename_external_matrix, filename_external_rhs = self.model("external")
external_mat, external_rhs = self.read_matrix_and_rhs(filename_external_matrix, filename_external_rhs)
self.assertTrue(np.allclose(self.reference_mat.todense(), external_mat.todense(), rtol=1e-15, atol=1e-15),
"EXTERNAL matrix failed.")
self.assertTrue(np.allclose(self.reference_rhs, external_rhs, rtol=1e-15, atol=1e-10),
"EXTERNAL rhs failed.")
if __name__ == '__main__':
import unittest as ut
suite = ut.TestSuite()
result = Agros2DTestResult()
suite.addTest(ut.TestLoader().loadTestsFromTestCase(TestInternalMatrixSolvers))
suite.run(result) | hpfem/agros2d | resources/test/test_suite/core/matrix_solvers.py | Python | gpl-2.0 | 8,536 |
/**
* \file
* Copyright (C) 2006-2010 Jedox AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License (Version 2) as published
* by the Free Software Foundation at http://www.gnu.org/copyleft/gpl.html.
*
* 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., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* You may obtain a copy of the License at
*
* <a href="http://www.jedox.com/license_palo_bi_suite.txt">
* http://www.jedox.com/license_palo_bi_suite.txt
* </a>
*
* If you are developing and distributing open source applications under the
* GPL License, then you are free to use Worksheetserver under the GPL License.
* For OEMs, ISVs, and VARs who distribute Worksheetserver with their products,
* and do not license and distribute their source code under the GPL, Jedox provides
* a flexible OEM Commercial License.
*
* \author
* Vali Nitu <vali@yalos-solutions.com>
*/
#include "precompiled_header.hpp"
#include "wss/default_format_serializer.hpp"
#include "wss/define.hpp"
#if !defined(HAS_PRECOMPILED_HEADER ) || HAS_PRECOMPILED_HEADER == 0
# include <boost/foreach.hpp>
# include <sstream>
#endif // HAS_PRECOMPILED_HEADER == 0
std::string default_format_serializer::serialize( const ci_key_value_map_type& map )
{
std::stringstream s;
foreach( const ci_key_value_map_type::value_type & v, map ) {
if ( v.second.length() != 0 ) {
s << convert_utf8_ci( v.first ) << ":" << v.second << ";";
}
}
return s.str();
}
| fschaper/netcell | core/server/src/default_format_serializer.cpp | C++ | gpl-2.0 | 2,004 |
import React, { useEffect, useRef } from 'react';
import classNames from 'classnames';
import { Toolbar, ToolbarItem, useToolbarState } from 'reakit';
import { EditorView } from 'prosemirror-view';
import { usePageContext } from 'utils/hooks';
import { useRefMap } from 'client/utils/useRefMap';
import { EditorChangeObject } from 'client/components/Editor';
import BlockTypeSelector from './BlockTypeSelector';
import FormattingBarButton from './FormattingBarButton';
import FormattingBarControlsContainer from './FormattingBarControlsContainer';
import { FormattingBarButtonData, ControlsConfiguration } from './types';
import { getButtonPopoverComponent } from './utils';
import { usePendingAttrs } from './hooks/usePendingAttrs';
import { useControlsState, ButtonState } from './hooks/useControlsState';
require('./formattingBar.scss');
type Props = {
editorChangeObject: EditorChangeObject;
buttons: FormattingBarButtonData[][];
showBlockTypes?: boolean;
isSmall?: boolean;
isTranslucent?: boolean;
citationStyle?: string;
controlsConfiguration?: Partial<ControlsConfiguration>;
};
const shimEditorChangeObject = {
view: {} as EditorView,
selectedNode: null,
updateNode: () => {},
} as unknown as EditorChangeObject;
const FormattingBar = (props: Props) => {
const {
editorChangeObject: propsEditorChangeObject,
isSmall = false,
showBlockTypes = !isSmall,
controlsConfiguration = {},
isTranslucent = false,
citationStyle = 'apa',
buttons,
} = props;
const editorChangeObject = propsEditorChangeObject || shimEditorChangeObject;
const { selectedNode, updateNode } = editorChangeObject;
const { communityData } = usePageContext();
const buttonElementRefs = useRefMap();
const wrapperRef = useRef<null | HTMLDivElement>(null);
const toolbar = useToolbarState({ loop: true });
const pendingAttrs = usePendingAttrs({
selectedNode,
updateNode,
editorView: editorChangeObject.view,
});
const {
openedButton,
setOpenedButton,
selectedNodeId,
buttonStates,
resolvedControlsConfiguration,
} = useControlsState({
buttons,
editorChangeObject,
controlsConfiguration: {
kind: isSmall ? 'floating' : 'anchored',
container: wrapperRef.current!,
isAbsolutelyPositioned: false,
isFullScreenWidth: false,
...controlsConfiguration,
},
});
useEffect(() => {
if (openedButton) {
const ref = buttonElementRefs.getRef(openedButton.key);
if (ref && ref.current && typeof ref.current.scrollIntoView === 'function') {
const buttonElement = ref.current;
const paddingPx = 5;
buttonElement.parentNode.scrollLeft = buttonElement.offsetLeft - paddingPx;
}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [openedButton]);
const renderButtonState = (buttonState: ButtonState) => {
const { button, isOpen, isActive, isIndicated, isDisabled, isDetached, onClick } =
buttonState;
const maybeEditorView = button.key === 'media' && { view: editorChangeObject.view };
const PopoverComponent = getButtonPopoverComponent(button, isDisabled);
return (
<ToolbarItem
{...toolbar}
outerRef={buttonElementRefs.getRef(button.key)}
as={button.component || FormattingBarButton}
key={button.key}
formattingItem={button}
disabled={isDisabled}
isActive={isActive}
isIndicated={isIndicated && !isOpen}
isOpen={isOpen}
isDetached={isDetached}
isSmall={isSmall}
popoverContent={PopoverComponent && <PopoverComponent />}
accentColor={communityData.accentColorDark}
onClick={onClick}
{...maybeEditorView}
/>
);
};
const renderButtonGroup = (states: ButtonState[], index: number) => {
return (
<React.Fragment key={index}>
{index > 0 && <div className="separator" />}
{states.map(renderButtonState)}
</React.Fragment>
);
};
const renderControls = () => {
if (resolvedControlsConfiguration) {
const { component: ControlsComponent } = resolvedControlsConfiguration;
return (
<FormattingBarControlsContainer
controlsConfiguration={resolvedControlsConfiguration}
editorChangeObject={editorChangeObject}
accentColor={communityData.accentColorDark}
onClose={() => setOpenedButton(null)}
>
<ControlsComponent
key={selectedNodeId}
editorChangeObject={editorChangeObject}
isSmall={isSmall}
citationStyle={citationStyle}
pendingAttrs={pendingAttrs}
onClose={() => setOpenedButton(null)}
/>
</FormattingBarControlsContainer>
);
}
return null;
};
return (
<div
ref={wrapperRef}
className={classNames(
'formatting-bar-component',
isSmall && 'small',
isTranslucent && 'translucent',
)}
>
<Toolbar aria-label="Formatting toolbar" className="toolbar" {...toolbar}>
{showBlockTypes && (
<React.Fragment>
<ToolbarItem
as={BlockTypeSelector}
isSmall={isSmall}
editorChangeObject={editorChangeObject}
{...toolbar}
/>
<div className="separator" />
</React.Fragment>
)}
{buttonStates.map(renderButtonGroup)}
</Toolbar>
{renderControls()}
</div>
);
};
export default FormattingBar;
| pubpub/pubpub | client/components/FormattingBar/FormattingBar.tsx | TypeScript | gpl-2.0 | 5,142 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
from yapsy.IPlugin import IPlugin
from PyQt4 import QtCore, QtGui
from threading import Thread, RLock
import websocket
import csv
import time
#l = RLock(False)
class ListenWebsocket(QtCore.QThread):
def __init__(self, parent=None, adress = None):
super(ListenWebsocket, self).__init__(parent)
self.parent = parent
self.WS = websocket.WebSocketApp(adress,
on_message = self.on_message,
on_error = self.on_error,
on_close = self.on_close)
def run(self):
self.WS.on_open = self.on_open;
self.WS.run_forever()
def on_message(self, ws, message):
self.str = message
print "ON_MESSAGE:", ws, message
def on_error(self, ws, error):
print "ON_ERROR:", error
def on_close(self, ws):
print "### closed ###"
def on_open(self, client):
print "##ON_OPEN##", client
self.WS.send("client data")
def send(self, data):
print "##posilam data", data
self.WS.send(data)
def recv(self):
self.str = ""
while self.str == "":
pass
return self.str
class Communicator(QtCore.QThread):
def __init__(self, parent = None, win = None):
super(Communicator, self).__init__()
self.parent= parent
self.adress = "ws://"+str(self.parent.TbxIP.text())+":"+str(self.parent.NbxPORT.value())+"/ws"
print "Adresa:", self.adress
self.exiting = False
self.vTimeSpd = 0
self.vActSpd = 0
self.vTrans = 1
self.vFollow = False
self.vDir = True
self.vActDir = True
self.vSHTtemp = 88.88
self.vSHThumi = 88.88
self.vSHTdew = 88.88
self.vLTStemp = 88.88
self.vChange = False
self.vAutoUpdate = True
self.vLastOutPut = False
self.vRecLoc = False
self.vRecRem = False
self.vEneCam = False # Eneable remote camera
print "##created"
self.ws = ListenWebsocket(None, self.adress)
self.ws.start()
# self.ws.send("$raspd;%d;%d;" %(self.vDir, self.vTimeSpd))
result = self.ws.recv()
print "Received:", result
def __del__(self):
print "Communicator ukoncovani ..."
self.exiting = True
self.wait()
def sendSpd(self):
self.ws.send("$raspd;%d;%d;" %(self.vActSpd, self.vActDir))
result = self.ws.recv()
#if result.split(';')[0] == "<s":
# self.vLTStemp = float(result.split(';')[1])
def sync(self):
print "sync procedure"
self.getWeather()
self.updateUI()
self.ws.send("$raspd;%d;%d;" %(self.vTimeSpd, self.vActDir))
result = self.ws.recv()
if result.split(';')[0] == "<s":
self.vLTStemp = float(result.split(';')[1])
def getWeather(self):
self.ws.send("$sht25;")
print "getWeather"
result = self.ws.recv()
if result.split(';')[0] == "&sht25":
self.vSHTtemp = float(result.split(';')[1])
self.vSHThumi = float(result.split(';')[2])
self.vSHTdew = ((self.vSHThumi / 100) ** 0.125) * (112 + 0.9 * self.vSHTtemp) + (0.1 * self.vSHTtemp) - 112
self.ws.send("$lts;")
result = self.ws.recv()
if result.split(';')[0] == "<s":
self.vLTStemp = float(result.split(';')[1])
def updateUI(self):
self.parent.LcnSHTtemp.display(self.vSHTtemp)
self.parent.LcnSHTHumi.display(self.vSHThumi)
self.parent.LcnSHTDew.display(self.vSHTdew)
self.parent.LcnLTStemp.display(self.vLTStemp)
#self.parent.LcnRAspeed1.display((self.vTimeSpd >> 16)&0xff)
#self.parent.LcnRAspeed2.display((self.vTimeSpd >> 8)&0xff)
#self.parent.LcnRAspeed3.display((self.vTimeSpd >> 0)&0xff)
self.parent.NbxSpdTime.setValue(self.vTimeSpd)
self.parent.LcnRAspeed1.display(self.vTimeSpd)
self.parent.LcnRAspeed2.display(self.vTimeSpd*(self.vTrans**2))
self.parent.LcnRAspeed3.display(self.vActSpd)
def change(self, type=None, widget=None):
print "change,", self, type, widget
if type == "NbxSpdTime":
self.vTimeSpd = widget.value()
#if self.vFollow:
# self.vActSpd = self.vTimeSpd
elif type == "ChbTimeDir":
self.vDir = bool(widget.checkState())
self.vActDir = self.vDir
#print type, ": ", widget.checkState()
self.sendSpd()
elif type == "ChbAutoUpdate":
self.vAutoUpdate = bool(widget.checkState())
#print type, ": ", widget.checkState()
elif type == "SldTrans":
self.vTrans = widget.value()
elif type == "ChbLastOutPut":
self.vLastOutPut = widget.checkState()
elif type == "ChbRecordLocaly":
self.vRecLoc = widget.checkState()
elif type == "ChbRecordRemotly":
self.vRecRem = widget.checkState()
elif type == "ChbEneableCamera":
self.vEneCam = bool(widget.checkState())
if bool(widget.checkState()):
self.parent.LoadCamera(self.parent.BoxCameraProperties)
self.updateUI()
def RCcapture(self, type=None, value=None):
if type == "capture":
self.ws.send("$capture;%d;%d;%d;%d;%d;%d;%d;%d;%d;%s;" %(1, 0, 10, 10, 10, 10, 10, 10, 10, "CaptureCap"))# type(full res, preview); quality; ISO; shutter; clona; Res; Res; Res; Res; id;
elif type == "preview":
self.ws.send("$capture;%d;%d;%d;%d;%d;%d;%d;%d;%d;%s;" %(0, 0, 10, 10, 10, 10, 10, 10, 10, "PreviewCap"))# type(full res, preview); quality; ISO; shutter; clona; Res; Res; Res; Res; id;
def save(self, type = None):
print "SAVE:", type
if type == 0:
self.ws.send("$gettime;")
result = self.ws.recv()
if result.split(';')[0] == "&gettime":
self.vTimeSpd = int(result.split(';')[1])
self.vDir = int(result.split(';')[2])
self.updateUI()
if type == 2:
self.ws.send("$savetime;%d;%d" %(self.vTimeSpd, int(self.vDir)))
def trans(self, type = 0):
print "TRANS:", type
if type == -2:
self.vActSpd = self.vTimeSpd - self.vTimeSpd*(self.vTrans**2)
print self.vActSpd, self.vTimeSpd, self.vTimeSpd*(self.vTrans**2), self.vTimeSpd - self.vTimeSpd*(self.vTrans**2)
if self.vActSpd < 0:
self.vActSpd = self.vActSpd*-1
self.vActDir = not self.vDir
#if self.vActSpd < self.vTimeSpd*(self.vTrans**2):
# self.vActDir != self.vDir
else:
self.vActDir = self.vDir
print self.vActSpd, self.vTimeSpd, self.vTimeSpd*(self.vTrans**2), self.vTimeSpd - self.vTimeSpd*(self.vTrans**2)
if type == 1:
self.vActSpd = self.vTimeSpd
self.vFollow = True
self.vActDir = self.vDir
if type == 0:
self.vActSpd = 0
self.vFollow = False
self.vActDir = self.vDir
if type == +2:
self.vActSpd = self.vTimeSpd + self.vTimeSpd*(self.vTrans**2)
#if self.vActSpd < self.vTimeSpd*(self.vTrans**2):
# self.vActDir != self.vDir
# self.vActSpd = self.vActSpd*-1
#else:
self.vActDir = self.vDir
if type == -1:
self.vActSpd = self.vTimeSpd
self.vActDir = self.vDir
self.updateUI()
self.sendSpd()
def upgrade(self):
pass
def run(self):
# Note: This is never called directly. It is called by Qt once the
# thread environment has been set up.
timer1 = time.time()
timer2 = time.time()
fLog =open("Log_%s.txt" %time.strftime("%Y%m%d"),'a')
while not self.exiting:
if timer1+5 < time.time():
if self.vAutoUpdate:
self.getWeather()
if not self.vChange:
self.upgrade()
if self.vLastOutPut:
try:
fLast=open("LastData.txt",'w')
fLast.write("%.2f\n%.2f" %(round(self.vSHTtemp,2), round(self.vSHThumi,2)))
fLast.close()
except Exception, e:
print e
if self.vRecLoc:
try:
fLog =open("Log_%s.txt" %time.strftime("%Y%m%d"),'a')
fLog.write( str(time.time()) + ";" + str(self.vSHTtemp) + ";" + str(self.vSHThumi) + ";" + str(self.vLTStemp) + ";\n")
fLog.close()
except Exception, e:
print e
timer1 = time.time()
self.updateUI()
#if timer2+2.5 < time.time():
#print self.vActDir, self.vActSpd, self.vDir, self.vTimeSpd
time.sleep(1)
print "Communicator ukoncen"
class RA_HBSTEP_driver(IPlugin):
name = "MLAB telescope driver"
def __init__(self):
self.type = 1 #loader
self.UserName = "MLAB RA driver"
self.Local = False
def getType(self):
return self.type
def getUserName(self):
return self.UserName
def getName(self):
return self.UserName
def activate(self):
print "activated"
def deactivate(self):
print "Ive been deactivated!"
def load(self):
print "loader"
def OnSync(self, data = None):
print "local sync"
self.thread.sync()
def show(self, parent):
self.parent = parent
## Win
## ScroolArea
## ContentWidget
## HorizontalLayout
### GroupBox
self.win = QtGui.QWidget()
self.win.setMinimumHeight(900)
self.win.setMinimumWidth(900)
self.horizontalLayout = QtGui.QVBoxLayout()
self.scrollArea = QtGui.QScrollArea(self.win)
self.scrollArea.resize(900, 900)
self.scrollArea.setWidgetResizable(True)
self.contentWidget = QtGui.QWidget(self.win)
#self.contentWidget.setGeometry(0,0,900, 900)
self.content = QtGui.QHBoxLayout(self.contentWidget)
self.scrollArea.setWidget(self.contentWidget)
self.horizontalLayout.addWidget(self.scrollArea)
AbouteGroup = QtGui.QGroupBox("RA HBSTEP")
Aboute = QtGui.QVBoxLayout(self.win)
LocalRA = QtGui.QCheckBox("Remote driver", self.win)
LocalRA.stateChanged.connect(self.ToggleLocal)
BtnLoad = QtGui.QPushButton("Load")
BtnLoad.clicked.connect(self.onConnect)
Aboute.addWidget(LocalRA)
Aboute.addWidget(BtnLoad)
Aboute.addWidget(QtGui.QLabel("system",self.win))
AbouteGroup.setLayout(Aboute)
self.content.addWidget(AbouteGroup)
return self.win
def ToggleLocal(self, state):
if state == QtCore.Qt.Checked:
print "ANO"
self.Local = True
else:
print "NE"
self.Local = False
def onConnect(self, state):
self.PropertiesGroup = QtGui.QGroupBox("RA driver properties")
PropertiesMainHFrame = QtGui.QVBoxLayout()
if self.Local:
VbxIP = QtGui.QHBoxLayout()
VbxIP.addWidget(QtGui.QLabel("Remote adress:",self.win))
self.TbxIP = QtGui.QLineEdit("telescope.local")
VbxIP.addWidget(self.TbxIP)
VbxPORT = QtGui.QHBoxLayout()
VbxPORT.addWidget(QtGui.QLabel("Remote port:",self.win))
self.NbxPORT = QtGui.QSpinBox()
self.NbxPORT.setRange(0, 99999)
self.NbxPORT.setValue(10123)
VbxPORT.addWidget(self.NbxPORT)
BtnRemConnect = QtGui.QPushButton("Connect to MLAB telescope driver")
BtnRemConnect.clicked.connect(self.RemConnect)
PropertiesMainHFrame.addLayout(VbxIP)
PropertiesMainHFrame.addLayout(VbxPORT)
PropertiesMainHFrame.addWidget(BtnRemConnect)
PropertiesMainHFrame.addStretch()
else:
PropertiesMainHFrame.addWidget(QtGui.QLabel("This operation isn't supported yet.",self.win))
PropertiesMainHFrame.addWidget(QtGui.QLabel("Use Remote driving",self.win))
PropertiesMainHFrame.addWidget(QtGui.QLabel("Local driving will be supported as soos as possible :)",self.win))
PropertiesMainHFrame.addStretch()
self.PropertiesGroup.setLayout(PropertiesMainHFrame)
self.content.addWidget(self.PropertiesGroup)
def RemConnect(self, state):
while self.content.count():
child = self.content.takeAt(0)
if child.widget() is not None:
child.widget().deleteLater()
elif child.self.content() is not None:
clearLayout(child.self.content())
self.thread = Communicator(self, self.win)
self.thread.start()
self.DriverGroup = QtGui.QGroupBox("Remote driver manager")
PropertiesMainHFrame = QtGui.QVBoxLayout()
self.LcnSHTtemp = QtGui.QLCDNumber(0)
self.LcnSHTtemp.setDigitCount(5)
self.LcnSHTtemp.display(99.99)
self.LcnSHTHumi = QtGui.QLCDNumber(0)
self.LcnSHTHumi.setDigitCount(5)
self.LcnSHTHumi.display(999.99)
self.LcnSHTDew = QtGui.QLCDNumber(0)
self.LcnSHTDew.setDigitCount(5)
self.LcnSHTDew.display(99.99)
self.LcnLTStemp = QtGui.QLCDNumber(0)
self.LcnLTStemp.setDigitCount(5)
self.LcnLTStemp.display(99.99)
HbxWeather = QtGui.QHBoxLayout()
HbxWeather.addStretch(1)
HbxWeather.addWidget(self.LcnSHTtemp)
HbxWeather.addWidget(self.LcnSHTHumi)
HbxWeather.addWidget(self.LcnSHTDew)
HbxWeather.addWidget(self.LcnLTStemp)
HbxWeather.addStretch(1)
VbxMovementSpd = QtGui.QVBoxLayout()
VbxMovementSpd.addStretch()
VbxMovementSpd.addWidget(QtGui.QLabel("Speed of translation:"))
self.SldTrans = QtGui.QSlider(1)
self.SldTrans.setMaximum(10)
self.SldTrans.setMinimum(1)
VbxMovementSpd.addWidget(self.SldTrans)
VbxMovementSpd.addWidget(QtGui.QLabel("Speed of time:"))
#VbxMovementSpd.addStretch()
self.ChbTimeDir = QtGui.QCheckBox()
self.ChbTimeDir.setObjectName("ChbLR")
self.NbxSpdTime = QtGui.QSpinBox()
self.NbxSpdTime.setMaximum(0xFFFFFF)
self.LcnRAspeed1 = QtGui.QLCDNumber(0)
self.LcnRAspeed1.display(0x00)
self.LcnRAspeed1.setHexMode()
self.LcnRAspeed1.setDigitCount(6)
self.LcnRAspeed2 = QtGui.QLCDNumber(0)
self.LcnRAspeed2.setHexMode()
self.LcnRAspeed2.setDigitCount(6)
self.LcnRAspeed2.display(0x00)
self.LcnRAspeed3 = QtGui.QLCDNumber(0)
self.LcnRAspeed3.setHexMode()
self.LcnRAspeed3.display(0x00)
self.LcnRAspeed3.setDigitCount(6)
self.LcnRAspeedDec = QtGui.QLCDNumber(0)
self.LcnRAspeedDec.display(0)
self.LcnRAspeedDec.setDigitCount(9)
HbxActualSpeed = QtGui.QHBoxLayout()
HbxActualSpeed.addWidget(self.ChbTimeDir)
HbxActualSpeed.addWidget(self.NbxSpdTime)
HbxActualSpeed.addStretch(1)
HbxActualSpeed.addWidget(self.LcnRAspeed1)
HbxActualSpeed.addWidget(self.LcnRAspeed2)
HbxActualSpeed.addWidget(self.LcnRAspeed3)
'''
#websocket.enableTrace(True)
adress = "ws://"+str(self.TbxIP.text())+":"+str(self.NbxPORT.value())+"/ws"
print "Adresa:", adress
ws = websocket.create_connection(adress)
ws.send("Hello, World")
result = ws.recv()
print("Received {}".format(result))
#ws.close()
'''
self.BtnSync = QtGui.QPushButton("Sync")
self.ChbAutoUpdate = QtGui.QCheckBox("AutoUpdate")
HbxTime = QtGui.QHBoxLayout()
HbxTime2 = QtGui.QHBoxLayout()
self.BtnTrans0 = QtGui.QPushButton("<<")
self.BtnTrans0.setObjectName("BtTransFBW")
self.BtnTime = QtGui.QPushButton("==")
self.BtnTime.setObjectName("BtTransPlay")
self.BtnTrans1 = QtGui.QPushButton(">>")
self.BtnTrans1.setObjectName("BtTransFFW")
HbxTime.addStretch(3)
HbxTime.addWidget(self.BtnTrans0,2)
HbxTime.addWidget(self.BtnTime,1)
HbxTime.addWidget(self.BtnTrans1,2)
HbxTime.addStretch(3)
self.BtnTimeStop = QtGui.QPushButton("||")
self.BtnTimeStop.setObjectName("BtTransPause")
HbxTime2.addStretch(2)
HbxTime2.addWidget(self.BtnTimeStop,7)
HbxTime2.addStretch(2)
VbxSet = QtGui.QVBoxLayout()
self.BtnSetGetAllData = QtGui.QPushButton("Get all data")
self.BtnSetSaveLocaly = QtGui.QPushButton("Save localy")
self.BtnSetSaveRemotly = QtGui.QPushButton("Save remotly")
self.ChbRecordRemotly = QtGui.QCheckBox("Record remotly")
self.ChbRecordLocaly = QtGui.QCheckBox("Record localy")
self.ChbLastOutPut = QtGui.QCheckBox("Record last file")
VbxSet.addWidget(self.BtnSetGetAllData)
VbxSet.addWidget(self.BtnSetSaveLocaly)
VbxSet.addWidget(self.BtnSetSaveRemotly)
VbxSet.addWidget(self.ChbRecordRemotly)
VbxSet.addWidget(self.ChbRecordLocaly)
VbxSet.addWidget(self.ChbLastOutPut)
PropertiesMainHFrame.addLayout(HbxWeather)
PropertiesMainHFrame.addLayout(VbxMovementSpd)
PropertiesMainHFrame.addLayout(HbxActualSpeed)
PropertiesMainHFrame.addWidget(self.BtnSync)
PropertiesMainHFrame.addWidget(self.ChbAutoUpdate)
PropertiesMainHFrame.addLayout(HbxTime)
PropertiesMainHFrame.addLayout(HbxTime2)
PropertiesMainHFrame.addLayout(VbxSet)
PropertiesMainHFrame.addStretch(1)
self.DriverGroup.setLayout(PropertiesMainHFrame)
self.content.addWidget(self.DriverGroup)
self.CameraGroup = QtGui.QGroupBox("Remote camera manager")
self.CameraGroupLayout = QtGui.QVBoxLayout()
self.InitCameraBox(self.CameraGroupLayout)
self.CameraGroup.setLayout(self.CameraGroupLayout)
self.content.addWidget(self.CameraGroup)
self.thread.updateUI()
self.NbxSpdTime.valueChanged.connect(lambda: self.thread.change("NbxSpdTime", self.NbxSpdTime))
#self.BtnSync.clicked.connect(self.OnSync)
self.SldTrans.valueChanged.connect(lambda: self.thread.change("SldTrans", self.SldTrans))
self.BtnSync.clicked.connect(lambda: self.thread.sync())
self.BtnTrans0.pressed.connect(lambda: self.thread.trans(-2))
self.BtnTrans0.released.connect(lambda: self.thread.trans(-1))
self.BtnTime.clicked.connect(lambda: self.thread.trans(1))
self.BtnTimeStop.clicked.connect(lambda: self.thread.trans(0))
self.BtnTrans1.pressed.connect(lambda: self.thread.trans(+2))
self.BtnTrans1.released.connect(lambda: self.thread.trans(-1))
self.BtnSetGetAllData.clicked.connect(lambda: self.thread.save(0))
self.BtnSetSaveLocaly.clicked.connect(lambda: self.thread.save(1))
self.BtnSetSaveRemotly.clicked.connect(lambda: self.thread.save(2))
self.ChbAutoUpdate.stateChanged.connect(lambda: self.thread.change("ChbAutoUpdate", self.ChbAutoUpdate))
self.ChbRecordLocaly.stateChanged.connect(lambda: self.thread.change("ChbRecordLocaly", self.ChbRecordLocaly))
self.ChbRecordRemotly.stateChanged.connect(lambda: self.thread.change("ChbRecordRemotly", self.ChbRecordRemotly))
self.ChbLastOutPut.stateChanged.connect(lambda: self.thread.change("ChbLastOutPut", self.ChbLastOutPut))
self.ChbTimeDir.stateChanged.connect(lambda: self.thread.change("ChbTimeDir", self.ChbTimeDir))
def InitCameraBox(self, group):
while group.count():
child = group.takeAt(0)
if child.widget() is not None:
child.widget().deleteLater()
elif child.group() is not None:
clearLayout(child.group())
self.ComDriverSelect = QtGui.QComboBox()
self.ComDriverSelect.addItem("Canon EOS (python-gphoto2)")
self.ChbEneableCamera = QtGui.QCheckBox("Eneable camera")
self.BoxCameraProperties = QtGui.QVBoxLayout()
group.addWidget(self.ComDriverSelect)
group.addWidget(self.ChbEneableCamera)
group.addLayout(self.BoxCameraProperties)
group.addStretch()
self.ChbEneableCamera.stateChanged.connect(lambda: self.thread.change("ChbEneableCamera", self.ChbEneableCamera))
#LoadCamera(self.BoxCameraProperties)
def LoadCamera(self, layout):
self.getRCpreview = QtGui.QPushButton("Get preview")
self.getRCCapture = QtGui.QPushButton("Get photo")
layout.addWidget(self.getRCpreview)
layout.addWidget(self.getRCCapture)
self.getRCpreview.clicked.connect(lambda: self.thread.RCcapture("preview"))
self.getRCCapture.clicked.connect(lambda: self.thread.RCcapture("capture"))
#layout.addWidget(QtGui.QLabel(""))
| roman-dvorak/TelescopeTools-extensions | RA_HBSTEP_driver/RA_HBSTEP_driver.py | Python | gpl-2.0 | 21,395 |
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.4.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/fantasma4.png
0x0,0x0,0x34,0x20,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xf6,0x0,0x0,0x0,0x87,0x8,0x6,0x0,0x0,0x0,0x25,0x6c,0xa4,0xac,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,
0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,
0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,
0x46,0x0,0x0,0x33,0xa6,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x7d,0x7d,0x54,0x53,
0x79,0x9a,0xe6,0x8d,0xb9,0xc4,0x84,0x84,0x4,0x43,0x62,0x40,0x42,0x48,0x30,0x4d,
0x22,0x1f,0xa,0x31,0x91,0xc,0xe1,0x4b,0x83,0x81,0x50,0x20,0x68,0x85,0x96,0x12,
0x46,0x40,0x51,0x28,0xba,0xa8,0xca,0x40,0xe1,0xc4,0xc1,0xd1,0xab,0xb4,0x52,0x96,
0x94,0xb4,0x94,0xd5,0xb1,0x65,0x90,0x92,0x92,0xc1,0xa6,0x86,0xd1,0x81,0x1e,0x1d,
0xc7,0xd9,0x66,0x47,0x66,0xa4,0x7,0xdc,0x1e,0x77,0x19,0x87,0xad,0xa3,0x53,0x1e,
0x69,0x67,0xfb,0xd4,0xa9,0xaa,0xde,0xc3,0xf6,0xc1,0x39,0xac,0x23,0xbf,0xfd,0xa3,
0x78,0xd9,0x6b,0xea,0xe6,0x93,0xf0,0x7d,0x9f,0x73,0xde,0x73,0x4a,0xa5,0x48,0x2,
0xf7,0xf9,0x7d,0xbc,0xef,0xf3,0x3e,0x2f,0x86,0xd1,0xa0,0xe1,0x80,0xa1,0xa1,0x21,
0xa2,0xaa,0xaa,0x8a,0xd0,0xeb,0xf5,0xf,0xd4,0x6a,0xf5,0xd7,0x65,0x65,0x65,0x4,
0x84,0xcd,0x66,0x23,0x3a,0x3a,0x3a,0x66,0x63,0x68,0x68,0x88,0x78,0xfa,0xf4,0xe9,
0x6c,0xd0,0x3f,0x3d,0x1a,0x34,0x96,0x20,0x72,0x73,0x73,0xed,0x18,0x86,0x21,0x9c,
0xcd,0x41,0x81,0xeb,0x43,0xa7,0xc9,0xc1,0x60,0x32,0x11,0x86,0x61,0x2e,0x43,0x2a,
0x95,0x4e,0xc9,0xe5,0xf2,0x49,0xb9,0x5c,0x3e,0xe9,0x6e,0x51,0x18,0x1b,0x1b,0x9b,
0x5d,0x10,0xc6,0xc7,0xc7,0xb,0xe9,0x9f,0x3e,0xd,0x1a,0xf3,0x0,0xad,0x56,0xfb,
0x88,0x23,0x12,0x23,0x8d,0xf5,0xa8,0x69,0xfb,0x85,0x2b,0xc1,0x1a,0xeb,0x51,0x93,
0xc6,0x7a,0xd4,0xb4,0xf3,0x72,0x37,0x7,0x21,0x84,0x65,0x75,0xf4,0x6,0x98,0xda,
0x7b,0x58,0xa6,0xf6,0x1e,0x56,0xa6,0xfd,0x1a,0x17,0xfe,0x5d,0x63,0x3d,0x6a,0x8a,
0x2d,0xad,0xac,0x95,0x19,0xcd,0x3,0x10,0x42,0x55,0xcc,0x84,0x37,0x8b,0x2,0x8e,
0xe3,0x8,0x16,0x4,0xb9,0x5c,0x3e,0xa9,0xd7,0xeb,0x1f,0x90,0x17,0x85,0xa6,0xa6,
0x26,0x7a,0x51,0xa0,0x41,0xc3,0x5b,0x58,0xad,0x56,0x2,0x67,0x73,0x90,0xa9,0xbd,
0x87,0x15,0x6d,0x29,0x6e,0xc5,0xd9,0x9c,0x59,0xd2,0x31,0x98,0x4c,0xa4,0x30,0xe7,
0xf7,0x21,0x84,0x30,0x5f,0xc3,0xd5,0xa2,0x10,0x6d,0x29,0x6e,0x25,0x2f,0xa,0x41,
0x52,0xd9,0x4b,0x58,0x10,0x38,0x22,0xb1,0xdb,0x53,0x2,0x79,0x51,0x50,0xab,0xd5,
0x5f,0x57,0x55,0x55,0x11,0x77,0xef,0xde,0xa5,0xaf,0x5,0x34,0x68,0xf0,0x78,0x3c,
0xb4,0x71,0x57,0x61,0x97,0xc6,0x7a,0xd4,0xc4,0x60,0x32,0xd1,0xc6,0x5d,0x85,0x5d,
0xe9,0xcd,0x97,0x24,0xe9,0xcd,0x97,0x24,0xb1,0xa5,0x95,0xb5,0x38,0x9b,0x83,0xa2,
0x2d,0xc5,0xad,0x73,0x21,0xb7,0xaf,0x1,0xb,0x82,0xa9,0xbd,0x87,0x95,0xde,0x7c,
0x49,0xe2,0x6e,0x51,0xc0,0xd9,0x1c,0x84,0xe3,0x38,0x2a,0x28,0x28,0x38,0x4b,0xff,
0x66,0x69,0xac,0x5a,0x74,0x77,0x77,0x13,0x18,0x86,0xa1,0xad,0x75,0xc7,0xd2,0xb9,
0x61,0xe1,0xaf,0x24,0x9a,0xa4,0x67,0x8e,0xe4,0xda,0xb8,0xab,0xb0,0xb,0x67,0x73,
0x50,0x4e,0x57,0xff,0x9a,0xc5,0x20,0xb7,0xbb,0x20,0x13,0x7e,0xfb,0x85,0x2b,0xc1,
0xf1,0x87,0x6a,0xca,0x39,0x22,0x31,0xd2,0x6a,0xb5,0x8f,0xe8,0xdf,0x30,0x8d,0x55,
0x89,0xa6,0xa6,0x26,0x2,0xc3,0x30,0x94,0x72,0xa6,0x55,0x86,0x61,0x18,0x92,0x19,
0xcd,0x3,0x8e,0xc4,0xd1,0x58,0x8f,0x9a,0x30,0xc,0x43,0xa6,0xf6,0x1e,0xd6,0x52,
0x22,0x74,0x4e,0x57,0xff,0x9a,0x90,0x98,0xf8,0x6f,0x5f,0x3b,0x9a,0xb3,0x39,0x28,
0xb1,0xe6,0x48,0x5e,0x4e,0x57,0xff,0x9a,0x60,0xa5,0x6a,0xb2,0xa4,0xa4,0x84,0x3e,
0x96,0xd3,0x58,0x7d,0x28,0x2b,0x2b,0x23,0x30,0xc,0x43,0xa9,0x67,0x3f,0x9,0xc7,
0xd9,0x1c,0x4a,0x62,0x27,0x54,0xd7,0x59,0x96,0x22,0xb1,0xc3,0xf4,0xa9,0x63,0x2c,
0xbe,0x0,0x69,0xac,0x47,0x4d,0x70,0x54,0xdf,0xb8,0xab,0xb0,0x8b,0xc9,0x62,0x21,
0xfd,0xf1,0xf,0x62,0xb3,0x3a,0x7a,0x3,0x58,0x7c,0x1,0xaa,0xa8,0xa8,0xa0,0xc9,
0x4d,0x63,0x75,0x12,0x3b,0xb6,0xb4,0xb2,0x36,0x4c,0x9f,0x3a,0xc6,0x11,0x89,0x51,
0x56,0x47,0x6f,0x0,0x99,0x40,0xc1,0x4a,0xd5,0x64,0xb0,0x52,0x35,0xb9,0x94,0x48,
0xbd,0xf3,0x72,0x37,0x87,0xc1,0x64,0xa2,0xd8,0xd2,0xca,0x5a,0xc7,0x7f,0xb,0x92,
0xca,0x5e,0xa,0x55,0x31,0x13,0x8,0x21,0x2c,0xa3,0xa5,0x2d,0x84,0xc5,0x17,0x20,
0xbb,0xdd,0x4e,0x93,0x9b,0xc6,0xea,0x81,0x5a,0xad,0xfe,0x1a,0xc3,0x30,0x14,0xac,
0x54,0x4d,0x9a,0xda,0x7b,0x58,0x2c,0xbe,0x0,0xe1,0x6c,0xe,0x92,0x68,0x92,0x9e,
0x49,0x34,0x49,0xcf,0x58,0x7c,0x1,0x62,0xf1,0x5,0x28,0xa3,0xa5,0x2d,0x64,0x29,
0x11,0x1b,0xae,0x7,0x1a,0xeb,0x51,0x93,0xe3,0xbf,0xc9,0x8c,0xe6,0x81,0xc0,0xf5,
0xa1,0xd3,0xf0,0x67,0xfd,0xf1,0xf,0x62,0x3,0xd6,0xae,0x45,0x6d,0x6d,0x6d,0x34,
0xb9,0x69,0xac,0xe,0xc8,0xe5,0xf2,0x49,0x7e,0xa4,0x62,0x8a,0xc1,0x64,0xa2,0x4d,
0x25,0x15,0xd,0x99,0xf6,0x6b,0xdc,0x8d,0xbb,0xa,0xbb,0xa0,0xe4,0x24,0x33,0x9a,
0x7,0x76,0x5c,0xbc,0x1a,0xb4,0xd4,0x12,0x66,0xc9,0x27,0xcf,0x45,0x3b,0x23,0xb6,
0x44,0x93,0xf4,0x2c,0x48,0x2a,0x7b,0x49,0xfe,0xbb,0xc4,0x9a,0x23,0x79,0x41,0x2,
0x1,0x1a,0x19,0x19,0xa1,0xc9,0x4d,0x63,0xe5,0x83,0xc7,0xe3,0x21,0x99,0xd1,0x3c,
0x90,0x58,0x73,0x24,0x8f,0xc1,0x64,0x22,0x8e,0x48,0x8c,0x14,0xe6,0xfc,0x3e,0x8d,
0xf5,0xa8,0x49,0x57,0x7f,0xc2,0x40,0x2e,0x37,0x2d,0x35,0x72,0x73,0x44,0x62,0x14,
0xaa,0x4b,0x7e,0x42,0xfe,0xbb,0x1d,0x17,0xaf,0x6,0x39,0x2b,0xcf,0x45,0x5b,0x8a,
0x5b,0x45,0x22,0xd1,0x34,0x4d,0x6e,0x1a,0x2b,0x1a,0x33,0xfa,0x6e,0x94,0x50,0x5d,
0x67,0x81,0xfb,0x68,0x98,0x3e,0x75,0x8c,0x2c,0x50,0x21,0x7,0x8b,0x2f,0x78,0x4d,
0x6a,0x2a,0x4d,0x33,0xe,0x43,0xd,0x19,0x16,0x3,0x88,0xe4,0x93,0xe7,0xa2,0xe7,
0x7b,0x51,0x80,0xfb,0x33,0xf9,0x7d,0x31,0x98,0x4c,0x14,0xac,0x54,0x4d,0x3a,0x2b,
0xcd,0x45,0x9a,0x72,0xef,0xc4,0xc5,0xc5,0x3d,0xa7,0x7f,0xfb,0x34,0x56,0x2c,0x86,
0x86,0x86,0x8,0xaa,0xe3,0x6c,0x4e,0x57,0xff,0x1a,0x72,0x6d,0x38,0xa1,0xba,0xce,
0x22,0x33,0x9a,0x7,0xb8,0x61,0xe1,0xaf,0xd6,0x47,0x29,0x27,0xb3,0xb3,0xb3,0x3b,
0xc9,0x12,0x50,0x1e,0x8f,0xe7,0x56,0x21,0xe6,0x6a,0x51,0x88,0xb6,0x14,0xb7,0x92,
0x17,0x85,0xf4,0xe6,0x4b,0x12,0x4f,0x17,0x85,0x1d,0x17,0xaf,0x6,0xc1,0x9d,0x5a,
0xa8,0x8a,0x99,0x88,0x3f,0x54,0x53,0xee,0x6e,0x41,0x8,0x89,0x89,0xff,0x96,0xae,
0x71,0xd3,0x58,0xb1,0xe8,0xe8,0xe8,0x20,0x30,0xc,0x43,0xe9,0xcd,0x97,0x24,0x9e,
0xec,0x90,0x41,0x52,0xd9,0x4b,0xb9,0x5c,0x3e,0xe9,0x6c,0xf7,0x87,0xe8,0xee,0xee,
0x9e,0xd5,0x75,0xdb,0xed,0x76,0x82,0xac,0xfb,0xf6,0x65,0x51,0xe0,0x88,0xc4,0xb3,
0x8b,0x42,0x90,0x54,0xf6,0x12,0x16,0x4,0xf5,0xbe,0xf2,0x46,0x5f,0xeb,0xdf,0x74,
0x8d,0x9b,0xc6,0x8a,0xc5,0x4c,0x9,0xc8,0xe3,0xfa,0x74,0xe0,0xfa,0xd0,0xe9,0xa2,
0xa2,0x22,0xbf,0x93,0x1,0x16,0x84,0xb1,0xb1,0xb1,0xd7,0x9a,0x3d,0x9a,0x9a,0x9a,
0x5e,0x5b,0x14,0x78,0x3c,0xde,0x6b,0x9d,0x67,0xc,0x26,0x13,0x45,0x9a,0x72,0xef,
0xf8,0xaa,0x5f,0xa7,0x6b,0xdc,0x34,0x56,0x24,0xca,0xca,0xca,0x8,0x6,0x93,0xf9,
0xbd,0xba,0xb5,0xb3,0x5d,0xe,0x67,0x73,0xd0,0x4c,0xdd,0x7b,0x51,0x20,0x12,0x89,
0xa6,0xc9,0x2,0x9a,0x9d,0x97,0xbb,0x39,0xc1,0x4a,0xd5,0xa4,0xaf,0xe4,0xa6,0x6b,
0xdc,0x34,0x56,0x2c,0xb1,0xc9,0xf5,0x5e,0x77,0xcd,0x18,0x18,0x86,0xa1,0x19,0x9,
0xea,0xa2,0x27,0xfa,0xc8,0x77,0x6c,0x16,0x5f,0xe0,0x73,0x7,0x1a,0x5d,0xe3,0xa6,
0xb1,0xe2,0xa0,0x56,0xab,0xbf,0xf6,0x94,0xd8,0xe9,0xcd,0x97,0x24,0x18,0x86,0xa1,
0x99,0x7b,0xf9,0x82,0x3,0x9a,0x55,0x92,0x4f,0x9e,0x8b,0xa6,0xda,0x79,0xd9,0xeb,
0x84,0x28,0xb1,0xe6,0x48,0x9e,0x2f,0xe4,0xa6,0x6b,0xdc,0x34,0x56,0x14,0xe4,0x72,
0xf9,0xa4,0x34,0xcd,0x38,0xec,0x8d,0xd2,0xeb,0xf6,0xed,0xdb,0x8b,0xf2,0xf0,0xdb,
0x6c,0x36,0x97,0xf9,0x80,0xad,0x75,0xc7,0xd2,0x99,0x2c,0x16,0xda,0x5a,0x77,0x2c,
0xdd,0x17,0x72,0xd3,0x35,0x6e,0x1a,0x2b,0x6,0x20,0x4e,0xf1,0xe4,0xc1,0x87,0x46,
0x90,0xc5,0xf2,0x36,0x2b,0x2a,0x2a,0x22,0x38,0x22,0x31,0x72,0xb7,0xf3,0xb2,0xd7,
0x9,0x7d,0x96,0xbf,0xd2,0x35,0x6e,0x1a,0xcb,0x1e,0x70,0x67,0xa5,0x6a,0xa2,0xa0,
0xa,0x99,0xd1,0x3c,0x80,0xe3,0x38,0x5a,0x2c,0x2b,0x22,0xb9,0x5c,0x3e,0x9,0x8d,
0x1d,0xae,0x42,0x61,0xce,0xef,0x63,0xf1,0x5,0xc8,0x57,0x19,0x6c,0xb0,0x52,0x35,
0x49,0xd7,0xb8,0x69,0x2c,0x5b,0x38,0x13,0xa7,0xb8,0x22,0xb6,0xb3,0x1a,0xf6,0x42,
0x9d,0x2e,0x3c,0x4d,0x90,0x45,0x9a,0x72,0xef,0xb8,0x52,0x9f,0xd1,0x35,0x6e,0x1a,
0x2b,0x16,0x20,0x4e,0xa1,0x4a,0x46,0x51,0x85,0x50,0x15,0x33,0xb1,0x58,0xc4,0x1e,
0x1b,0x1b,0xf3,0x6a,0x11,0x9a,0x6b,0xab,0x29,0x64,0xda,0xe9,0x1a,0x37,0x8d,0x65,
0x87,0xa5,0x22,0x4e,0xf1,0x66,0x11,0xf2,0x54,0x21,0x97,0x69,0xbf,0xc6,0x35,0xfd,
0xf8,0xa3,0x48,0xad,0x56,0xfb,0x88,0xae,0x71,0xd3,0x58,0x55,0xf0,0x46,0x9c,0x82,
0x10,0xc2,0x58,0x7c,0xc1,0xa2,0x89,0x53,0x6c,0x36,0x9b,0x57,0xef,0x95,0x1b,0x16,
0xfe,0xaa,0xe8,0x9d,0xf7,0x4c,0xa3,0xa3,0xa3,0x84,0x48,0x24,0x9a,0xf6,0xb5,0xc6,
0xbd,0xb5,0xee,0x58,0x7a,0xc0,0xda,0xb5,0xe8,0xb3,0xcf,0x3e,0xa3,0xc9,0x4d,0x63,
0xf9,0x10,0x7b,0xb9,0x88,0x53,0x8a,0x8a,0x8a,0x3c,0x7e,0xaf,0xa0,0x90,0xab,0xaa,
0xaa,0x22,0x30,0xc,0xc3,0x46,0x46,0x46,0x88,0x20,0x81,0x60,0x4e,0x35,0x6e,0xb1,
0x44,0xf2,0x8a,0x2e,0x83,0xd1,0x58,0x16,0xd0,0xeb,0xf5,0xf,0x3c,0x25,0x4b,0xa6,
0xfd,0x1a,0x17,0x5b,0x44,0x71,0x8a,0x5c,0x2e,0x9f,0xa4,0x72,0x4f,0xf5,0xf4,0xbd,
0xb6,0xb5,0xb5,0x11,0x1,0x6b,0xd7,0xfa,0x5c,0xe3,0x56,0x98,0xf3,0xfb,0x44,0x22,
0xd1,0xf4,0xe8,0xe8,0x28,0x4d,0x6e,0x1a,0x4b,0x1b,0xbe,0x88,0x53,0x66,0xd4,0x5f,
0xb,0x8a,0xf1,0xf1,0xf1,0x42,0x1c,0xc7,0x3d,0xce,0x88,0xc3,0x7b,0x9d,0xc9,0xfa,
0xbf,0x96,0x53,0x98,0x8b,0xc5,0x53,0xa4,0x29,0xf7,0xe,0x5d,0x6,0xa3,0xb1,0xe4,
0xe1,0xd8,0x50,0xe1,0x9,0x59,0x16,0x43,0x9c,0xe2,0x6d,0x59,0x4e,0x61,0xce,0xef,
0x73,0x56,0x6f,0xaf,0xa8,0xa8,0x20,0xe8,0x1a,0x37,0x8d,0x15,0xb,0x6f,0xc5,0x29,
0xa,0x73,0x7e,0xdf,0x62,0x11,0xdb,0xdb,0x8c,0xb8,0x44,0x93,0xf4,0xcc,0x55,0x59,
0xae,0xa4,0xa4,0x84,0xf0,0xb5,0xc6,0x6d,0xee,0xbc,0x89,0x4b,0x34,0x49,0xcf,0xc8,
0xc3,0x7,0xe9,0x39,0x63,0x34,0x96,0xc,0xbc,0xad,0xb,0xcb,0x8c,0xe6,0x1,0xa9,
0x54,0x3a,0xb5,0x18,0xef,0xb5,0xaa,0xaa,0x8a,0xf0,0x66,0xa,0x49,0xe0,0xfa,0xd0,
0xe9,0xec,0xec,0xec,0x4e,0x57,0xdf,0x53,0xab,0xd5,0x3e,0xa,0x89,0x89,0xff,0xd6,
0x1b,0x52,0xc3,0x74,0x11,0xcc,0x61,0x38,0x81,0xaf,0x73,0xc6,0xdc,0x2d,0xa,0xdd,
0xdd,0xdd,0xf4,0x88,0x62,0x1a,0xbe,0xed,0x82,0xba,0xfa,0x13,0x86,0xa5,0x2e,0x4e,
0xc9,0xce,0xce,0xee,0xf4,0x34,0xc9,0x97,0xd5,0xd1,0x1b,0xc0,0x60,0x32,0xd1,0x4c,
0xc3,0x88,0x4b,0xc4,0xc5,0xc5,0x3d,0xf7,0xb4,0xc6,0x1d,0x5b,0x5a,0x59,0x8b,0xe3,
0xf8,0xe3,0xa2,0xa2,0xa2,0x4c,0xbb,0xdd,0xae,0xb4,0xd9,0x6c,0x5a,0xad,0x56,0xdb,
0xc2,0xe2,0xb,0xbe,0x20,0x1f,0xeb,0xbd,0x9d,0x33,0xe6,0xcd,0xa2,0xc0,0xe3,0xf1,
0x5e,0x5b,0x14,0x8a,0x8a,0x8a,0x88,0x96,0x96,0x16,0x9a,0xf0,0x34,0xbe,0x4f,0x6c,
0x6f,0xc4,0x29,0xee,0x76,0xc1,0xa5,0x90,0xe4,0xf3,0xa6,0xb5,0x74,0x64,0x64,0x84,
0x10,0x89,0x44,0xd3,0xee,0x86,0xd,0x46,0xe5,0xee,0xe9,0x11,0x4b,0x24,0xff,0x34,
0x38,0x38,0xc8,0x77,0xfc,0x37,0xbb,0xdd,0xae,0xc,0xa,0xd,0xfb,0xef,0xfe,0xf0,
0x5c,0x27,0x2f,0xa,0xc9,0x27,0xcf,0x45,0x93,0x17,0x5,0x85,0x39,0xbf,0x2f,0x22,
0xc3,0x74,0x9f,0xc9,0x62,0x7d,0x8f,0xf0,0x22,0x91,0x68,0x9a,0xae,0xb3,0xd3,0x98,
0x3d,0xde,0x7a,0x43,0xec,0xc5,0x12,0xa7,0x40,0x46,0xdc,0xd3,0x49,0x9f,0x90,0xe4,
0x9b,0xb9,0x6a,0x60,0x9e,0x90,0xdb,0x55,0x8d,0x5b,0x7f,0xfc,0x83,0x58,0x6,0x93,
0xf9,0xf4,0xc6,0x8d,0x1b,0xa1,0xce,0x5e,0xb3,0xac,0xac,0x6c,0xbb,0xbb,0xae,0x33,
0x7f,0x44,0xa4,0x29,0xf7,0xe,0x8e,0xe3,0x8f,0xf5,0x7a,0xfd,0x99,0xb2,0xb2,0xb2,
0xed,0x7a,0xbd,0xfe,0xc,0x8e,0xe3,0x8f,0x19,0x4c,0x26,0xa2,0x8d,0x22,0x68,0x60,
0x18,0xf6,0x9d,0x38,0xc5,0xd3,0x87,0x11,0xc4,0x29,0x9e,0x1c,0x6f,0xfd,0xd,0x5f,
0x32,0xe2,0x33,0xe6,0x88,0x1e,0x3,0x6a,0xdc,0xfa,0xe3,0x1f,0xc4,0x52,0x5d,0x41,
0xa4,0x52,0xe9,0x2f,0x5d,0xbd,0xe6,0xd0,0xd0,0x10,0xf,0xc3,0xb0,0xa7,0x9e,0x5e,
0x6b,0x7c,0x24,0x75,0xb3,0x56,0xab,0x6d,0x19,0x19,0x19,0x9,0x24,0xff,0xfd,0xe0,
0xe0,0x20,0x3f,0x7e,0xcb,0x96,0x76,0x16,0x5f,0x80,0x78,0x3c,0x1e,0xa2,0xeb,0xec,
0xab,0x1c,0xcb,0x45,0x9c,0x2,0x7a,0xf6,0x4c,0xfb,0x35,0xae,0x3f,0x32,0xe2,0xae,
0x5e,0x87,0xaa,0xc6,0x3d,0xa3,0x8f,0xcf,0x74,0xf7,0xba,0x18,0x86,0x3d,0xf5,0x55,
0xb6,0xea,0x89,0x1,0x84,0xab,0xc5,0x65,0x74,0x74,0x94,0xc5,0xe3,0xf1,0x46,0x17,
0x6b,0xf1,0xa5,0xb1,0x84,0x40,0x56,0x72,0xb9,0xf3,0xee,0x5e,0x4c,0x71,0x4a,0x59,
0x59,0x99,0x57,0x19,0x71,0x8e,0x48,0x8c,0x7c,0x6d,0x54,0x81,0x1a,0x37,0xd9,0x97,
0x5c,0xa8,0x8a,0x99,0x50,0xab,0xd5,0x3f,0xf7,0x64,0xc7,0x76,0xf4,0x62,0xf3,0xd7,
0x98,0x60,0x9c,0xcd,0x41,0x36,0x9b,0x4d,0xeb,0xea,0xeb,0xca,0xca,0xca,0xb6,0x63,
0x18,0x86,0x66,0xe6,0xb0,0xd1,0x58,0x6d,0x78,0xfc,0xf8,0x31,0x51,0x55,0x55,0x45,
0xf0,0x78,0x3c,0x94,0xd4,0x70,0x3a,0x11,0x8e,0xd9,0xe4,0xe3,0x6e,0xa8,0x2e,0xf9,
0x89,0x44,0x93,0xf4,0xc,0xee,0x9d,0x8b,0x29,0x4e,0xf1,0xe6,0x64,0xe1,0x8f,0x2b,
0x43,0x55,0x55,0x15,0x81,0xe3,0x38,0xe2,0x88,0xc4,0x28,0xfe,0x50,0x4d,0xf9,0xe6,
0x4a,0x6b,0x9,0x8e,0xe3,0x8f,0xa9,0x12,0x67,0x10,0x56,0xab,0x55,0xcf,0xe2,0xb,
0x3c,0x6e,0x50,0xf1,0x26,0x48,0xa7,0x25,0xb9,0xab,0xaf,0xeb,0xe8,0xe8,0x90,0x63,
0x18,0x86,0x16,0xb3,0x5f,0x9e,0xc6,0x2,0x63,0x64,0x64,0x84,0xb0,0x5a,0xad,0x4,
0x86,0xfd,0xff,0xfa,0x35,0x99,0xc8,0x2c,0xbe,0x0,0x61,0x18,0x86,0xe2,0xf,0xd5,
0x94,0xc3,0xe,0x81,0x61,0xd8,0xac,0x84,0x73,0xe3,0xae,0xc2,0x2e,0xc,0xc3,0xd0,
0x3f,0xff,0xf3,0x3f,0x2f,0x38,0xb1,0xa5,0x52,0xe9,0x94,0xa7,0x19,0x71,0x18,0xd2,
0x37,0xd7,0x2b,0xc3,0xc8,0xc8,0x8,0x51,0x50,0x50,0x70,0x16,0xc7,0x71,0xc4,0x5e,
0x27,0x44,0x4c,0x16,0xb,0xc5,0xc5,0xc5,0x7d,0x3a,0x3a,0x3a,0xfa,0xbd,0x53,0x4d,
0x5b,0x5b,0x5b,0x54,0xa0,0x30,0xe4,0xd1,0x36,0xdb,0x29,0xdd,0x7c,0x1c,0xc3,0x81,
0xd8,0x76,0xbb,0x5d,0xe9,0xea,0xeb,0x6c,0x36,0x9b,0x96,0x26,0xf6,0x2a,0xc2,0xe0,
0xe0,0x20,0x81,0xe3,0x38,0xc2,0x30,0xc,0xb5,0xb4,0xb4,0x10,0xff,0xf6,0xef,0xff,
0xeb,0x10,0x47,0x24,0x46,0x11,0x19,0xa6,0xfb,0xd2,0x34,0xe3,0xb0,0x38,0x41,0xfb,
0x5c,0x7f,0xfc,0x83,0xd8,0x4c,0xfb,0x35,0xae,0xcc,0x68,0x1e,0x10,0x44,0x29,0x5f,
0x24,0x35,0x9c,0x4e,0xc4,0xd9,0x1c,0xb4,0xcd,0x76,0x4a,0x7,0x63,0x75,0x31,0xc,
0x9b,0xed,0x96,0x5a,0x28,0x78,0xab,0x8e,0x3,0x4f,0x36,0x4f,0x33,0xe2,0xde,0x10,
0x1c,0xfb,0xae,0xac,0x34,0x6c,0xb3,0xd9,0xb4,0x1d,0x1d,0x1d,0x72,0xbb,0xdd,0xae,
0xcc,0xce,0xce,0x2e,0xb,0x58,0xbb,0xf6,0x71,0xea,0xd9,0x4f,0xc2,0xe7,0x33,0x1b,
0x1e,0xac,0x54,0x4d,0x66,0x66,0x66,0xbe,0xed,0xea,0x6b,0xb4,0x5a,0x6d,0xb,0x86,
0x61,0x68,0xb1,0x4a,0x92,0x34,0x16,0x8,0x2d,0x2d,0x2d,0x4,0x64,0x48,0xa5,0x52,
0xe9,0x54,0xb0,0x52,0x35,0x29,0x96,0x2b,0xfe,0x43,0x16,0x13,0xf7,0xf5,0xce,0xcb,
0xdd,0x1c,0x84,0x10,0xb6,0xb9,0xd2,0x5a,0x42,0x56,0x5f,0x91,0xff,0x9c,0xd3,0xd5,
0xbf,0x66,0x53,0x49,0x45,0x3,0x8b,0x2f,0x40,0xca,0xdd,0x45,0xed,0x18,0xc9,0x9d,
0x34,0x3b,0x3b,0xbb,0xb3,0xbf,0xbf,0x7f,0xde,0x49,0x3e,0xf3,0x7a,0x1e,0x8b,0x68,
0x64,0x46,0xf3,0x80,0x48,0x24,0x9a,0x9e,0x8f,0x13,0xf,0x99,0xe0,0xe4,0xd8,0x60,
0xc8,0x78,0xe8,0xcd,0x9c,0xb1,0x39,0x18,0x3e,0x7c,0xe1,0x6c,0xd7,0x6e,0x6c,0x6c,
0xdc,0x8c,0x61,0xd8,0x53,0xc,0xc3,0xd0,0x8d,0x1b,0x37,0xe8,0xe4,0xd9,0x4a,0xc5,
0x4c,0xf2,0x8,0x69,0xb5,0xda,0x47,0xff,0xe3,0xd1,0xa3,0x23,0x85,0xef,0xdb,0x74,
0xd2,0x34,0xe3,0xb0,0xfe,0xf8,0x7,0xb1,0x1b,0xc,0x19,0xf,0x3d,0x7d,0xa0,0xb6,
0xd9,0x4e,0xe9,0x94,0xbb,0x8b,0xda,0xd,0x8d,0xe7,0xa3,0x36,0xee,0x2a,0xec,0xfa,
0x59,0xff,0x6d,0x7d,0x45,0x45,0x5,0x11,0xb8,0x3e,0x74,0x1a,0xc7,0x71,0x34,0x38,
0x38,0x38,0xaf,0xf,0x91,0xb7,0xe,0x2f,0x33,0x89,0xae,0x79,0x4b,0x1e,0xb9,0x22,
0x38,0xe6,0xc1,0x9c,0xb1,0xb9,0xc,0x1f,0xcc,0x68,0x69,0xb,0x9,0x14,0x86,0x3c,
0x2a,0x28,0x28,0xc8,0xbb,0x7d,0xfb,0xb6,0x8,0x21,0x84,0xdd,0xbe,0x7d,0x5b,0x94,
0x9b,0x9b,0xbb,0x97,0xc9,0x62,0xfd,0x1b,0x7b,0x9d,0x10,0xa5,0xa4,0xa4,0xdc,0xa3,
0x9f,0xfe,0x15,0xc,0x9b,0xcd,0x46,0x30,0x59,0x2c,0x24,0x54,0xc5,0x4c,0x60,0x18,
0x86,0xfc,0x75,0x54,0x14,0x44,0x29,0x5f,0x40,0x2c,0xc4,0x43,0x54,0x56,0x56,0x46,
0xb0,0xf8,0x2,0x8f,0x85,0x1f,0x1c,0x91,0x78,0x41,0x44,0x34,0xe3,0xe3,0xe3,0x85,
0x54,0xc3,0x7,0x1d,0xe7,0x8c,0xe9,0xf5,0xfa,0x7,0x64,0x9,0xa8,0xbb,0x5,0xc1,
0xdd,0xa2,0xb0,0xc1,0x90,0xf1,0x70,0xe6,0xeb,0x9e,0x92,0x2,0xc1,0x22,0xbe,0xac,
0xef,0x8b,0xe4,0x1f,0xdc,0x72,0x8c,0xf9,0xde,0xa9,0xc1,0xe5,0x43,0x14,0x1a,0xf6,
0x2a,0x2a,0x77,0x4f,0x4f,0x42,0x75,0x9d,0xc5,0x97,0x2e,0x26,0x67,0x6,0x7f,0xe9,
0xcd,0x97,0x24,0xec,0x75,0x42,0xd4,0xfa,0xf3,0xde,0xf4,0xd1,0xd1,0x51,0x42,0xab,
0xd5,0x3e,0x9a,0x2f,0xc3,0x3f,0xbd,0x5e,0xff,0x20,0x48,0x2a,0x7b,0xb9,0x1c,0x1c,
0x5e,0xbc,0x5d,0x10,0xdc,0xd,0x1f,0x24,0x2f,0xa,0x33,0xcd,0x37,0x94,0xb,0x81,
0x54,0x2a,0x9d,0x5a,0xf6,0xb5,0x6b,0xd0,0x37,0x53,0xad,0x6e,0x4b,0x3d,0x20,0x1,
0x35,0x5f,0x25,0x23,0xbd,0x5e,0xff,0x80,0xc9,0x62,0x21,0x1e,0x8f,0x87,0xf2,0xf,
0xbf,0xbd,0x67,0xfb,0x85,0x2b,0xc1,0xfe,0x22,0xb4,0x63,0xbc,0x71,0xfd,0x16,0x23,
0xf1,0xed,0x3f,0xda,0xcb,0xe3,0xf1,0x50,0xe0,0xfa,0xd0,0x69,0x6c,0x9e,0xc4,0x2b,
0xde,0xf4,0x8b,0x43,0x46,0x7c,0x31,0x6a,0xed,0xb,0x95,0x48,0x84,0x18,0x1a,0x1a,
0x22,0x86,0x86,0x86,0x56,0x4e,0xc7,0x17,0x99,0xd8,0x54,0xf2,0xbf,0xa5,0x1c,0xf3,
0x5d,0xb,0x6e,0x6b,0x6b,0x23,0x38,0x82,0x60,0x14,0x69,0xca,0xbd,0xe3,0x89,0xa9,
0xbe,0x3f,0x12,0x3a,0x51,0xb9,0x7b,0x7a,0x4,0x51,0xca,0x17,0xf3,0xb1,0x63,0x7b,
0x9b,0x11,0x8f,0x2d,0xad,0xac,0xc5,0x16,0x71,0x4a,0x9,0xd,0x3f,0x10,0xdb,0x9b,
0x7b,0xd7,0x4a,0x27,0xf6,0xe0,0xe0,0xe0,0xec,0xf1,0xfb,0xc0,0xa1,0xc3,0x47,0x2,
0xd7,0x87,0x4e,0xbf,0x71,0xfd,0x16,0x3,0x92,0x5f,0xe4,0x44,0x4d,0xf2,0xc9,0x73,
0xd1,0xe4,0x44,0xd,0x84,0xaf,0xc2,0x8a,0x6d,0xb6,0x53,0xba,0xc0,0xf5,0xa1,0xd3,
0xff,0xed,0xcb,0x67,0x96,0x91,0x91,0x11,0xa2,0xa8,0xa8,0xc8,0x6f,0x46,0x2,0x30,
0x80,0x6f,0xb1,0x33,0xe2,0x34,0x16,0x90,0xd8,0xee,0x94,0x48,0x86,0xc6,0xf3,0x51,
0xe4,0x7,0x7a,0xbe,0xeb,0x8c,0x8b,0x49,0x6c,0xad,0x56,0xfb,0x8,0xc7,0x71,0xb4,
0xf3,0x8d,0xdc,0xf6,0xcc,0x8f,0x3b,0xf8,0x86,0xc6,0xf3,0x51,0x64,0x9d,0xb3,0xbb,
0x64,0xd,0x86,0x61,0x88,0xc1,0x64,0x52,0x5e,0x69,0x1c,0x93,0x37,0xe4,0x20,0x1f,
0xf3,0x7f,0x90,0x69,0xbe,0xb,0x89,0x21,0x7f,0xe5,0x11,0x66,0xee,0xca,0x1e,0x67,
0xc4,0x83,0xa4,0xb2,0x97,0xb4,0x9c,0xd2,0x4f,0x18,0x1d,0x1d,0x25,0xa0,0xe4,0x1,
0x35,0xce,0xc1,0xc1,0x41,0xe2,0xf1,0xe3,0xc7,0xc4,0xe3,0xc7,0x8f,0x67,0x77,0x92,
0x91,0x91,0x91,0xd9,0xbf,0x83,0xaf,0xff,0xfc,0xf3,0xcf,0x89,0xf9,0x20,0x76,0x56,
0x47,0x6f,0x0,0x28,0xa7,0x20,0xe6,0x4b,0xee,0xb7,0xd8,0xc4,0x1e,0x1c,0x1c,0x24,
0x78,0x3c,0x1e,0xe2,0x47,0x2a,0xa6,0x2,0xd7,0x87,0x4e,0x53,0x35,0x30,0x6c,0x30,
0x64,0x3c,0xd4,0xd5,0x9f,0x30,0x90,0x17,0x3a,0x67,0x8d,0xff,0x10,0x12,0x4d,0xd2,
0x33,0x57,0x79,0x2,0xc7,0xae,0xb0,0xad,0x75,0xc7,0xd2,0x95,0xbb,0x8b,0xda,0x59,
0x81,0x81,0xe8,0xdc,0xb9,0x73,0x7e,0xf9,0x7c,0xde,0x74,0x9f,0x2d,0xb6,0xe7,0xf9,
0x8a,0xdb,0x3d,0x21,0x83,0xf7,0xd9,0x67,0x9f,0x11,0x6a,0xb5,0xfa,0xeb,0xfe,0xfe,
0x7e,0x22,0x3b,0x3b,0xbb,0xd3,0x66,0xb3,0x11,0x76,0xbb,0x9d,0x50,0xab,0xd5,0x5f,
0xf,0xc,0xc,0x10,0x6a,0xb5,0xfa,0x6b,0xbb,0xdd,0x4e,0xd8,0x6c,0x36,0x22,0x3b,
0x3b,0xbb,0xf3,0xee,0xdd,0xbb,0x84,0x48,0x24,0x9a,0xf6,0xf6,0x21,0xf7,0x84,0xd8,
0x32,0xa3,0x79,0x0,0x23,0xd9,0xd6,0x84,0xea,0x92,0x9f,0x30,0x59,0x2c,0x8f,0x27,
0x4a,0x2e,0xb7,0x1d,0x7b,0x74,0x74,0x94,0x88,0xdf,0xb2,0xe5,0x29,0x95,0xec,0x32,
0x70,0x7d,0xe8,0xb4,0xbf,0x3f,0xf7,0x6,0x43,0xc6,0x43,0xc7,0x9f,0xbf,0xa1,0xf1,
0x7c,0x14,0x83,0xc9,0xf4,0xab,0x38,0x42,0xad,0x56,0x7f,0xed,0x69,0xae,0x60,0x39,
0x64,0xc4,0x97,0xd,0x6c,0x36,0x1b,0xa1,0xd7,0xeb,0x1f,0x64,0xbd,0xfb,0xbe,0xc9,
0xd6,0x78,0xba,0x24,0xda,0x52,0xdc,0x7a,0xe4,0xf8,0x89,0x43,0xe9,0x87,0xdf,0x79,
0xab,0xbe,0xe5,0x63,0xfd,0xfe,0x23,0x47,0xf5,0x86,0x1f,0xd5,0xe6,0x57,0xbc,0x7f,
0x24,0xcf,0xf0,0xa3,0xda,0xfc,0xfd,0x47,0x8e,0xea,0xdf,0x6e,0x6c,0xd2,0x1b,0xe,
0x54,0x55,0xbc,0x7b,0xe4,0x8f,0xf,0xf9,0xf2,0x90,0xbb,0x23,0x76,0xea,0xd9,0x4f,
0xc2,0x19,0x4c,0xe6,0xec,0x2e,0xcd,0x60,0x32,0x91,0x38,0x41,0xfb,0x3c,0xd2,0x94,
0x7b,0x87,0xc1,0x64,0x22,0x7f,0xb8,0x5c,0x2c,0x15,0x62,0x8f,0x8e,0x8e,0x12,0x4d,
0x4d,0x4d,0xc4,0xaf,0x86,0x87,0x8f,0xe4,0xbd,0x63,0x35,0x39,0x7a,0x6e,0x83,0x45,
0x90,0xbf,0x89,0x2d,0x33,0x9a,0x7,0x1c,0x7f,0xfe,0x59,0x1d,0xbd,0x1,0x9,0xd5,
0x75,0x96,0x1f,0xb5,0xda,0xa3,0x8a,0x8a,0x8a,0x8,0x7f,0x1c,0x89,0xbd,0xc9,0x88,
0xeb,0xea,0x4f,0x18,0xb0,0x45,0x9c,0xdb,0xbd,0xa2,0x50,0x56,0x56,0x46,0xc8,0xe5,
0xf2,0xc9,0xfc,0xf,0x3f,0x96,0x28,0x77,0x17,0xb5,0xbf,0x71,0xfd,0x16,0x43,0xb9,
0xbb,0xa8,0x7d,0xc7,0x4f,0xfe,0x4c,0x98,0x76,0xec,0x74,0x7c,0xb4,0xa5,0xb8,0xd5,
0xd4,0xde,0xc3,0xa,0xd3,0xa7,0x8e,0x99,0xda,0x7b,0x58,0xa0,0xb8,0x49,0x6f,0xbe,
0x24,0xd9,0x68,0x7a,0xe3,0xd6,0x7c,0x10,0x3b,0xda,0x52,0xdc,0xa,0xbb,0x75,0xdc,
0x81,0xea,0x6a,0x8e,0x48,0x8c,0x82,0xa4,0xb2,0x97,0xc9,0x27,0xcf,0x45,0x7,0x70,
0x79,0x48,0xbd,0xaf,0xbc,0x71,0xa5,0x10,0x1b,0x1c,0x50,0x18,0x4c,0x26,0xa2,0x6a,
0x40,0x80,0x5d,0xcc,0xdf,0xc4,0x96,0xa6,0x19,0x87,0x9d,0xfd,0xfc,0xc3,0xf4,0xa9,
0x63,0x1,0x5c,0x1e,0x9a,0x6b,0xf9,0xb,0x32,0xe2,0x9e,0xb6,0x41,0xd2,0x19,0x71,
0x3f,0x62,0xdf,0x1f,0xee,0x3f,0x22,0x95,0x4a,0xa7,0x4a,0xfb,0xff,0x2b,0x3,0x4a,
0x4f,0xc9,0x27,0xcf,0x45,0xe7,0x74,0xf5,0xaf,0x31,0x34,0x9e,0x8f,0x82,0xdd,0x11,
0x1a,0xe4,0x33,0x5a,0xda,0x42,0xb6,0x5f,0xb8,0x12,0x6c,0xee,0xbc,0x89,0x3,0x1,
0x47,0x47,0x47,0x5f,0x73,0x61,0x74,0x15,0xe3,0xe3,0xe3,0x85,0xee,0x88,0x4d,0x75,
0xbf,0x56,0xed,0xdd,0xdf,0x1c,0x91,0x61,0xba,0xbf,0xd8,0xf7,0x6c,0x7f,0x13,0xbb,
0xa0,0xa0,0xe0,0x2c,0x86,0x61,0x48,0xb9,0xbb,0xa8,0x9d,0xea,0x73,0x1,0xb1,0x3d,
0xb5,0x14,0xf2,0x34,0xe0,0xbe,0x4d,0xf5,0x6f,0x29,0x67,0x5a,0x65,0x3f,0xc8,0x34,
0xdf,0x2d,0x28,0x28,0x38,0xeb,0xab,0xdc,0xb4,0xad,0xad,0x8d,0xc8,0xcc,0xcc,0xec,
0xc5,0x30,0xc,0x85,0xc4,0xc4,0x7f,0xab,0x30,0xe7,0xf7,0x51,0xe5,0x7,0x34,0xd6,
0xa3,0xa6,0x4c,0xfb,0x35,0xae,0xa9,0xbd,0x87,0xb5,0xc1,0x90,0xf1,0x70,0xb1,0x1c,
0x54,0x57,0xc,0xa4,0x52,0xe9,0x94,0xc5,0x62,0x21,0x64,0x8a,0xa8,0x49,0x58,0x55,
0x21,0x43,0x6a,0xee,0xbc,0x89,0xc3,0x43,0x5,0xff,0xd,0xa5,0x17,0x72,0xe3,0x38,
0x3c,0xe4,0x33,0xad,0x84,0xc8,0x93,0xc0,0x71,0x1c,0x29,0x95,0xca,0x9,0x77,0x77,
0x6c,0x58,0xbd,0x31,0xc,0x43,0xec,0x75,0x42,0x14,0xa6,0x4f,0x1d,0xc3,0x66,0x5a,
0x12,0x57,0xda,0x1d,0x7b,0x68,0x68,0x88,0x8,0x95,0x46,0xfc,0x5f,0xe5,0xee,0xa2,
0x76,0x67,0xc4,0xf6,0xc4,0x52,0x8,0x8c,0xf3,0x3c,0xf1,0xed,0x76,0x46,0x6c,0x73,
0xe7,0x4d,0x9c,0xc9,0x62,0xc1,0xef,0x74,0x4e,0x27,0x41,0x6,0x93,0x89,0x1c,0x17,
0x68,0x77,0xa1,0xd7,0xeb,0x1f,0xd0,0xec,0x9c,0xe3,0x11,0x89,0xbd,0x4e,0x88,0x4,
0x51,0xca,0x17,0x38,0x9b,0x83,0x12,0x6b,0x8e,0xe4,0x65,0x75,0xf4,0x6,0x90,0x77,
0xd,0x73,0xe7,0x4d,0x3c,0xbd,0xf9,0x92,0xc4,0xdc,0x79,0x13,0x87,0xd9,0xcb,0xb0,
0x73,0x83,0x25,0x2b,0x7b,0x9d,0x10,0x71,0xc3,0xc2,0x5f,0x39,0x2b,0xa7,0x50,0x5,
0x3f,0x52,0x31,0xe5,0x49,0xb9,0xcb,0xd1,0xca,0x95,0x1f,0xa9,0x98,0x5a,0x49,0xe5,
0xae,0xc7,0x8f,0x1f,0x13,0x1d,0x1d,0x1d,0x44,0xef,0x2f,0xff,0x3e,0x4f,0xb3,0xf7,
0xf,0xcf,0x50,0x19,0xf1,0x79,0x42,0xec,0x8c,0x96,0xb6,0x10,0xc7,0x9f,0x55,0x48,
0x4c,0xfc,0xb7,0xae,0x14,0x6b,0x81,0xeb,0x43,0xa7,0x9d,0xcd,0xd0,0xda,0x66,0x3b,
0xa5,0xcb,0xae,0x3f,0x96,0x54,0x54,0x54,0x44,0xc8,0xe5,0xf2,0x49,0x5f,0x6a,0xda,
0x30,0x28,0x30,0xa7,0xab,0x7f,0xd,0x55,0xcd,0xdd,0xd1,0xd2,0x37,0x24,0x26,0xfe,
0x5b,0x7f,0x96,0xd9,0x56,0x35,0xb1,0x55,0x7b,0xf7,0x37,0x47,0x9a,0x72,0xef,0xe0,
0x6c,0xe,0x32,0x34,0x9e,0x8f,0xda,0x71,0xf1,0x6a,0x50,0x4e,0x57,0xff,0x1a,0x20,
0xb1,0xb9,0xf3,0x26,0xfe,0xc6,0xf5,0x5b,0x8c,0x37,0xae,0xdf,0x62,0x6c,0xbf,0x70,
0x25,0x18,0x8e,0x69,0x39,0x5d,0xfd,0x6b,0x40,0x34,0x21,0x8a,0x4f,0xfc,0x2a,0xa9,
0xe1,0x74,0xa2,0x2f,0xe4,0x70,0x47,0x6c,0xc7,0x87,0x62,0xbe,0xa4,0x95,0x8b,0x45,
0x6c,0xb8,0x92,0xb8,0x1a,0x2b,0xeb,0x8e,0xd8,0x59,0x1d,0xbd,0x1,0x2c,0xbe,0x0,
0x85,0xea,0x92,0x9f,0xe8,0xea,0x4f,0x18,0x32,0xed,0xd7,0xb8,0x9,0xd5,0x75,0x16,
0x7e,0xa4,0x62,0xca,0xd5,0xb0,0x78,0x77,0x99,0xf6,0x6d,0xb6,0x53,0x3a,0x48,0x60,
0xfa,0xf2,0x59,0xbd,0x99,0x0,0x4a,0xae,0x82,0xd0,0x33,0xac,0xfd,0x40,0x6c,0x8d,
0xf5,0xa8,0x69,0x83,0x21,0xe3,0x61,0x0,0x97,0x87,0x54,0x7b,0xf7,0x37,0x9b,0xda,
0x7b,0x58,0x64,0x12,0x27,0x9f,0x3c,0x17,0xd,0x7f,0xce,0xb4,0x5f,0xe3,0xbe,0x71,
0xfd,0x16,0x23,0xe5,0x4c,0xab,0xcc,0xdc,0x79,0x13,0xdf,0x7e,0xe1,0x4a,0xf0,0xd6,
0xba,0x63,0xe9,0xdc,0xb0,0xf0,0x57,0x9e,0x88,0xf,0xc8,0xf,0xae,0xa7,0xc4,0x5e,
0xe9,0xca,0x33,0x82,0x20,0x8,0xc,0xc3,0x90,0x38,0x41,0xfb,0xdc,0x9d,0x76,0xda,
0x19,0xb1,0xa3,0x2d,0xc5,0xad,0x54,0x5e,0x62,0xf0,0xff,0xc1,0x22,0xed,0xd,0xb1,
0x73,0xba,0xfa,0xd7,0xa4,0x37,0x5f,0x92,0x44,0xc5,0xc4,0x7e,0x45,0x6e,0x48,0xf1,
0x6,0x8e,0xc3,0x1,0xb2,0x3a,0x7a,0x3,0x20,0x13,0x1f,0x24,0x95,0xbd,0x8c,0xb6,
0x14,0xb7,0x92,0x9f,0x9,0x20,0x36,0x9d,0x11,0xf7,0x13,0xb1,0xa3,0x2d,0xc5,0xad,
0x42,0x55,0xcc,0x44,0xca,0x99,0x56,0x59,0xf2,0xc9,0x73,0xd1,0xdb,0x2f,0x5c,0x9,
0x86,0x87,0x61,0xfb,0x85,0x2b,0xc1,0xb0,0x63,0xc3,0x11,0x1c,0x88,0xad,0xab,0x3f,
0x61,0x30,0x34,0x9e,0x8f,0xa,0x89,0x89,0xff,0x16,0x16,0x2,0x9a,0xd8,0xbe,0xfd,
0x2e,0xde,0x7b,0xbf,0xbe,0x46,0xa8,0x8a,0x99,0xa0,0x52,0xd6,0xc1,0xeb,0x39,0x23,
0xb6,0x50,0x15,0x33,0x41,0xf5,0x73,0x84,0x9d,0xde,0x99,0xe3,0xa6,0x2b,0x62,0x3,
0xc9,0xe6,0xf2,0x19,0xe5,0x72,0xf9,0x24,0xbc,0xaf,0x1d,0x17,0xaf,0x6,0xb1,0xf8,
0x2,0xc4,0xe2,0xb,0x90,0x50,0x15,0x33,0x21,0x54,0xc5,0x4c,0xe0,0x6c,0xe,0x22,
0xf,0xd5,0xf3,0xc7,0x6b,0xd2,0xc4,0x9e,0x21,0xf6,0xc6,0x5d,0x85,0x5d,0x5b,0xde,
0xae,0xdd,0x2b,0xdc,0x14,0xf7,0xbb,0x9d,0x97,0xbb,0x39,0x3b,0xdb,0xae,0xb3,0x77,
0x7c,0xdc,0xc1,0x87,0x4c,0x38,0x90,0x31,0xab,0xa3,0x37,0x20,0xeb,0xca,0xe7,0x2c,
0x20,0x3b,0x59,0xbf,0x1c,0xac,0x54,0x4d,0x6a,0xdf,0x3f,0x9e,0xba,0xfd,0xc2,0x95,
0x60,0xaa,0xd0,0xd5,0x9f,0x30,0xec,0x6c,0xbb,0xce,0x46,0x8,0x61,0xa9,0x1f,0x7c,
0x2c,0x35,0x34,0x9e,0x8f,0x4a,0x7c,0xd7,0x96,0x3,0xaf,0xbf,0xda,0x89,0x3d,0x36,
0x36,0x46,0x54,0xbe,0x53,0x53,0x23,0xd1,0x24,0x3d,0x73,0x45,0x6c,0x67,0x5a,0x6b,
0x69,0x9a,0x71,0x98,0x4a,0xd9,0x5,0x1e,0x5b,0x54,0xa5,0x26,0x77,0xb5,0xf1,0xac,
0x8e,0xde,0x0,0x8d,0xf5,0xa8,0x29,0xff,0xf,0x4b,0x2b,0xab,0xaa,0xaa,0x88,0xc7,
0x8f,0x1f,0x13,0x73,0x21,0xb6,0x28,0x3e,0xf1,0x2b,0xc7,0x6b,0x41,0x56,0x47,0x6f,
0x0,0x47,0x24,0x46,0x61,0xfa,0xd4,0xb1,0xc5,0x9e,0x29,0xb6,0xe2,0x88,0xcd,0xe2,
0xb,0xd0,0xba,0xe8,0x4d,0xbf,0xe7,0x85,0x47,0xfc,0xe7,0xe6,0x4a,0x6b,0x9,0x42,
0x8,0xcb,0xf9,0xf3,0x5f,0xac,0x81,0x4c,0x38,0x58,0xef,0x98,0x3b,0x6f,0xe2,0x39,
0x7f,0xfe,0x8b,0xd7,0x32,0xe6,0xe6,0xce,0x9b,0xb8,0xc6,0x7a,0xd4,0xc4,0xd,0xb,
0x7f,0x95,0xf8,0xae,0x2d,0x27,0xfe,0x50,0x4d,0xb9,0xb3,0x30,0xfe,0xb4,0x93,0x87,
0x10,0xc2,0x92,0x4f,0x7d,0xa4,0x8c,0xb6,0x14,0xb7,0x6,0x45,0xc8,0x5f,0x86,0xea,
0x92,0x9f,0x2c,0x85,0x3b,0xf3,0x62,0x12,0x1b,0x9c,0x45,0x5c,0xd,0x95,0x83,0xd7,
0x73,0x76,0xdd,0x81,0x7f,0x77,0x3c,0x72,0xab,0xf6,0xee,0x6f,0x76,0x26,0xe6,0xf1,
0xa4,0x36,0x9e,0x7a,0xf6,0x93,0x70,0xc8,0x68,0x3b,0xce,0xa7,0xf6,0x94,0xd8,0xd2,
0x34,0xe3,0x30,0x2c,0x22,0x54,0xdd,0x5d,0xa,0x73,0x7e,0x1f,0x5c,0x23,0x64,0x46,
0xf3,0x0,0x6d,0xe0,0xe7,0x27,0x62,0xa7,0xa4,0xa4,0xdc,0x5b,0xbf,0x61,0xc3,0xcb,
0xc0,0xf5,0xa1,0xd3,0xe6,0xce,0x9b,0xf8,0x8e,0x8b,0x57,0x83,0x20,0xf9,0x2,0xfa,
0xe3,0x88,0xc,0xd3,0xfd,0x88,0xc,0xd3,0x7d,0xc7,0xcc,0x76,0x44,0x86,0xe9,0x7e,
0x90,0x54,0xf6,0x92,0xc9,0x62,0xa1,0xd,0x86,0x8c,0x87,0xae,0xb2,0xe0,0xd2,0x34,
0xe3,0x70,0x90,0x54,0xf6,0x12,0x8e,0x60,0x9e,0x4e,0x47,0x5c,0x4d,0xc9,0x33,0x67,
0x73,0x9e,0xdd,0x11,0x1b,0xe4,0xa1,0xc,0x26,0x13,0x9,0x55,0x31,0x13,0x32,0xa3,
0x79,0x80,0x1b,0x16,0xfe,0x8a,0xc1,0x64,0x22,0xd5,0xde,0xfd,0xcd,0xae,0x12,0x72,
0xce,0x6a,0xe3,0x59,0x1d,0xbd,0x1,0x49,0x7f,0x4c,0x24,0xa9,0x12,0x35,0x5f,0xfa,
0x9a,0x15,0x97,0xcb,0xe5,0x93,0x32,0xa3,0x79,0xc0,0x55,0xf2,0xf,0x4a,0x9a,0xa6,
0xf6,0x1e,0x56,0x90,0x54,0xf6,0x92,0x26,0xb6,0x1f,0x70,0xfb,0xf6,0x6d,0x62,0x70,
0x70,0x90,0x50,0x25,0x6a,0xbe,0xe4,0x88,0xc4,0x48,0xa2,0x49,0x7a,0x6,0xcd,0x1,
0x18,0xc5,0x68,0x51,0x7f,0x4,0x24,0x4d,0x3c,0x21,0x28,0x64,0x7b,0x31,0x7,0x43,
0x86,0xc5,0x26,0x37,0x10,0x6d,0x70,0x70,0x70,0xce,0xd,0xf2,0x50,0xee,0xea,0xff,
0xfb,0x41,0x4b,0xd2,0x5b,0xa5,0x27,0xa8,0xea,0xd8,0x9e,0x10,0x1b,0x46,0xc3,0xc2,
0xd4,0x47,0xa1,0x2a,0x66,0xc2,0x55,0x9f,0xbb,0xbb,0x4c,0x3b,0x8b,0x2f,0xf0,0xd9,
0xac,0xdf,0x91,0xd8,0xf0,0xfd,0xa8,0x4e,0x7,0xd2,0x34,0xe3,0x30,0xb4,0xee,0x6,
0xae,0xf,0x9d,0xa6,0x89,0xed,0x27,0xb4,0xb4,0xb4,0x10,0x33,0xf3,0x91,0x10,0x8b,
0x2f,0x40,0xd2,0x34,0xe3,0x70,0x6c,0x69,0x65,0x2d,0xf4,0xfb,0x2e,0x26,0x89,0xc0,
0x3,0x1b,0xea,0xed,0x91,0xa6,0xdc,0x3b,0x4c,0x16,0x6b,0xd1,0xef,0xe5,0x40,0x34,
0x8,0x7f,0xec,0xdc,0x43,0x43,0x43,0x84,0x3a,0x2e,0xfe,0xdf,0xa9,0x76,0x58,0xf2,
0xae,0xe6,0xaf,0xcf,0xe0,0x8e,0xd8,0xc9,0x27,0xcf,0x45,0x2b,0x52,0xd2,0x7f,0x6d,
0xb5,0x5a,0x9,0x5f,0x67,0x48,0x91,0x35,0xe2,0x90,0xb9,0x8f,0x2d,0xad,0xac,0xcd,
0xb4,0x5f,0xe3,0x66,0xda,0xaf,0x71,0x63,0x4b,0x2b,0x6b,0xe1,0xef,0x80,0xd8,0xb4,
0x38,0x65,0x8e,0xb8,0x71,0xe3,0x6,0x21,0x95,0x4a,0xa7,0x18,0x4c,0x26,0x92,0x68,
0x92,0x9e,0x79,0x3a,0x28,0x6d,0xa1,0x22,0xa3,0xa5,0x2d,0xc4,0xb1,0x9,0x24,0x4c,
0x9f,0x3a,0x6,0x35,0x77,0x67,0xc7,0xd6,0x85,0x24,0x36,0x7b,0x9d,0xd0,0x2f,0xc4,
0x9e,0x11,0x64,0x38,0x2d,0x4b,0x41,0xb6,0x78,0x21,0x89,0xbd,0xb9,0xd2,0x5a,0x2,
0xa7,0x25,0x5f,0x7c,0xb8,0xe0,0xaa,0x47,0xde,0xa5,0x15,0xe6,0xfc,0x3e,0xf8,0x9d,
0xc2,0xf5,0x83,0x7c,0x15,0x8,0x5c,0x1f,0x3a,0x4d,0x8b,0x53,0xe6,0x80,0xdc,0xdc,
0x5c,0x3b,0x10,0x65,0x31,0xbb,0xa4,0x3c,0xdd,0xad,0xc9,0x4d,0x20,0x49,0xd,0xa7,
0x13,0x17,0x7b,0xd7,0x6,0x62,0x8b,0xe2,0x13,0xbf,0xf2,0x7,0xb1,0xc1,0x62,0x78,
0x53,0x49,0x45,0x3,0x95,0x95,0xad,0xc2,0x9c,0xdf,0x17,0xb8,0x3e,0x74,0xda,0x9f,
0xfa,0x78,0x57,0xb5,0xf1,0x94,0x33,0xad,0xb2,0x82,0x33,0xe7,0xc3,0xcd,0xa5,0x7,
0x2a,0x79,0x3c,0x9e,0x4f,0x89,0x33,0x2a,0x62,0x43,0x32,0x16,0x3e,0x23,0x24,0x66,
0x69,0x62,0xcf,0x11,0x83,0x83,0x83,0x84,0x54,0x2a,0x9d,0xe2,0x47,0x2a,0xa6,0x96,
0x82,0x13,0x89,0x3b,0x17,0x4d,0x47,0x8d,0x71,0x44,0x86,0xe9,0x3e,0xec,0xd8,0x4b,
0xa1,0x9,0x44,0x14,0x9f,0xf8,0x15,0x8b,0x2f,0x40,0x4f,0xbe,0xfc,0xf2,0x8,0x34,
0xb8,0xf8,0x7a,0x17,0xc5,0x5c,0x68,0xa7,0xe7,0xe3,0x34,0x5,0x56,0x48,0x9,0xd5,
0x75,0x16,0x72,0x72,0x52,0x7f,0xfc,0x83,0x58,0x6c,0x66,0xd2,0x88,0x3f,0x92,0xb3,
0xde,0xc,0xb7,0xa3,0x89,0xed,0x3,0xda,0xda,0xda,0x8,0x1c,0xc7,0x51,0x44,0x86,
0xe9,0xfe,0x72,0x29,0x31,0x91,0x5b,0x37,0xc9,0x4d,0x20,0xfe,0xee,0x72,0x9a,0xb,
0xb1,0x35,0xd6,0xa3,0xa6,0x7f,0xfa,0xd7,0xff,0x59,0x2,0xef,0x93,0xc7,0xe3,0x21,
0xb2,0xff,0x34,0x84,0x5a,0xad,0xfe,0xda,0x99,0x8d,0x71,0xc4,0xd6,0x6d,0x5f,0x4a,
0x34,0x49,0xcf,0xa2,0x2d,0xc5,0xad,0xa2,0xf8,0xc4,0xaf,0x20,0x14,0xe6,0xfc,0x3e,
0xf5,0xbe,0xf2,0x46,0x43,0xe3,0xf9,0xa8,0xf9,0xaa,0xc,0x90,0xcd,0x2c,0xc8,0x1,
0x9f,0xc3,0x17,0x77,0x1c,0x47,0x1,0x94,0x37,0x93,0x28,0x69,0x62,0x7b,0x49,0xea,
0x80,0xb5,0x6b,0xd1,0x7c,0x8c,0x6,0x9d,0xef,0x70,0x6c,0x6c,0xf0,0xc6,0x62,0x67,
0x21,0x88,0x1d,0xaa,0x4b,0x7e,0xd2,0x40,0x9c,0xac,0x61,0xb2,0x58,0x88,0x4c,0x4a,
0x8,0x6e,0x58,0xf8,0x2b,0xc7,0xcc,0xfe,0x5c,0xc3,0x59,0xa5,0xc2,0x95,0xaf,0x59,
0x42,0x75,0x9d,0x85,0xaa,0x5d,0x32,0xee,0x40,0x75,0xb5,0x7a,0x5f,0x79,0xa3,0xe3,
0xa2,0x2,0xd7,0xc,0x5f,0x7b,0xb1,0xbd,0x25,0x36,0xdc,0xf9,0x69,0x62,0x7b,0x71,
0xfc,0xc6,0x71,0x7c,0x59,0x92,0x7a,0xa9,0xd7,0xb1,0xe1,0xe1,0x77,0x47,0xc2,0x7d,
0x7,0xe,0x1e,0xa2,0x32,0x96,0x27,0x47,0x55,0x55,0x15,0x91,0x92,0x92,0x72,0xf,
0xc7,0x71,0x94,0x9d,0x9d,0xdd,0xb9,0x39,0x39,0xe5,0x1,0x93,0xc5,0x42,0xc1,0x4a,
0xd5,0xa4,0x2b,0xcf,0xb2,0xf9,0xa,0x26,0x8b,0x5,0xc3,0xeb,0xa6,0xc9,0x27,0xf,
0xbd,0x5e,0xff,0x80,0xea,0xd4,0x51,0x55,0x55,0xf5,0xda,0xe7,0x99,0xf1,0x4b,0x43,
0x91,0xa6,0xdc,0x3b,0xd0,0x6b,0xed,0x18,0x54,0xc4,0x5e,0xe8,0x61,0x81,0xcb,0x16,
0x71,0x71,0x71,0xcf,0x23,0x32,0x4c,0xf7,0x97,0x23,0xa9,0x97,0xba,0xf2,0xc,0x88,
0x9d,0x58,0x73,0x24,0xcf,0x99,0xb9,0xa0,0xb7,0xc7,0x4b,0x68,0xb6,0xb0,0xd9,0x6c,
0x4,0x83,0xc9,0x74,0x39,0xd2,0x87,0x8a,0x2c,0x99,0xf6,0x6b,0x5c,0xaa,0x9d,0x39,
0xa1,0xba,0xce,0xe2,0x6c,0x37,0xe7,0x86,0x85,0xbf,0xc2,0x30,0xc,0x81,0x63,0x8a,
0x54,0x2a,0x9d,0x92,0xcb,0xe5,0x93,0x50,0x6,0x9d,0xaf,0x60,0xf1,0x5,0xb3,0x27,
0xf,0x38,0x99,0x89,0x44,0xa2,0x69,0x4f,0x17,0xf,0x5f,0xaf,0x9,0xcb,0x1e,0x25,
0x25,0x25,0x4,0x3f,0x52,0x31,0xb5,0x1c,0x65,0x9b,0xcb,0x89,0xd8,0xae,0xca,0x50,
0xbe,0x24,0x84,0xe0,0xea,0x24,0x54,0xc5,0x4c,0x4,0x70,0x79,0x68,0xbe,0x13,0x9d,
0x29,0x67,0x5a,0x65,0x18,0x86,0x21,0xa1,0x2a,0x66,0xc2,0xd1,0x60,0x81,0xca,0x1,
0x67,0x68,0x68,0x88,0xf2,0xd4,0x61,0xb7,0xdb,0x9d,0x8e,0x43,0x52,0xab,0xd5,0x5f,
0x53,0xe5,0x1e,0x5c,0x2d,0x1e,0x40,0x7c,0x67,0x46,0xd,0xab,0xb2,0xe6,0x3d,0xe3,
0x32,0x89,0xbc,0xed,0x93,0xa6,0x63,0xe9,0x10,0x3b,0x60,0xed,0x5a,0xf4,0x27,0x7f,
0x7a,0xfc,0x48,0x6e,0xeb,0x9f,0xf1,0xe7,0x6b,0x18,0x7b,0x54,0xee,0x9e,0x9e,0x82,
0x3f,0xfd,0xb1,0xaa,0xa7,0xb7,0xf7,0x48,0x5c,0x5c,0xdc,0x73,0x91,0x48,0x34,0xed,
0x4b,0x8b,0xe6,0x5c,0x33,0xe8,0x54,0x8b,0xc7,0x8e,0x9c,0x37,0x3a,0xa5,0x69,0xc6,
0xe1,0x50,0x5d,0xf2,0x13,0xb8,0xf7,0x4b,0x34,0x49,0xcf,0xd4,0xfb,0xca,0x1b,0x3,
0xb8,0xbc,0xd5,0x79,0x1f,0xd7,0x6a,0xb5,0x8f,0x42,0x75,0xc9,0x4f,0x68,0x22,0x2e,
0x2c,0xb1,0xcd,0x9d,0x37,0x71,0xf2,0xe,0xeb,0x6b,0x9,0xe7,0xb3,0xcf,0x3e,0x9b,
0xf5,0x6d,0xcf,0xcc,0xcc,0xec,0xe5,0x47,0x2a,0xa6,0x14,0xe6,0xfc,0x3e,0x7f,0x11,
0x3c,0xb1,0xe6,0x48,0x9e,0x50,0x15,0x33,0x11,0x12,0x13,0xff,0x2d,0xb9,0xa3,0xca,
0x57,0x95,0xd9,0x7c,0x0,0x84,0x3b,0x1c,0x91,0x98,0xd2,0x5e,0x69,0xd5,0x11,0xbb,
0xa5,0xa5,0x85,0x58,0x6c,0x8b,0xde,0x95,0x4e,0x6c,0x16,0x5f,0x80,0x60,0x14,0x2a,
0x99,0xd8,0xa9,0x67,0x3f,0x9,0x87,0xc,0xf5,0x1b,0xd7,0x6f,0x31,0xe6,0x5a,0x9b,
0x85,0x93,0x97,0x44,0x93,0xf4,0x4c,0xa9,0x54,0x4e,0x6c,0x3e,0xf8,0xa3,0xa,0x72,
0x77,0x9d,0x37,0xef,0xfb,0x35,0x7,0x9c,0xe6,0x9f,0x8a,0x33,0x33,0x33,0x7b,0x83,
0xa4,0xb2,0x97,0x18,0x86,0xa1,0x19,0xc3,0x87,0x25,0x5,0x20,0x36,0x24,0x4d,0xc9,
0xb9,0x84,0x85,0x1a,0xb3,0xbb,0xa4,0xa0,0xd7,0xeb,0x1f,0x2c,0xc4,0x30,0xb7,0xd5,
0x4c,0x6c,0x30,0x29,0x20,0x13,0x7b,0x6b,0xdd,0xb1,0xf4,0xf4,0xe6,0x4b,0x92,0xd8,
0xd2,0xca,0x5a,0xe5,0xee,0xa2,0x76,0x85,0x39,0xbf,0x6f,0xae,0x53,0x2d,0x60,0x20,
0x83,0x48,0x24,0x9a,0x1e,0x1d,0x1d,0x25,0xda,0x7e,0xfe,0xb9,0x85,0xc9,0x62,0x21,
0x78,0xf,0xe4,0x1d,0xdc,0x71,0x37,0x27,0x37,0x81,0x98,0xda,0x7b,0x58,0x1,0x5c,
0x1e,0xda,0x5c,0x69,0x2d,0x61,0x30,0x99,0xe8,0xf4,0xb9,0xe6,0x1a,0xc,0xc3,0xb0,
0x94,0x94,0x94,0x7b,0x5a,0xad,0xf6,0xd1,0x52,0xda,0xa9,0xa9,0x88,0xbd,0xea,0xc5,
0x2c,0x23,0x23,0x23,0x4,0x8e,0xe3,0x8b,0xee,0xe4,0xb9,0xd2,0x89,0xd,0x35,0x63,
0xf2,0x83,0xa7,0x7e,0xab,0xbc,0x71,0xfb,0x85,0x2b,0xc1,0xdb,0x6c,0xa7,0x74,0xa,
0x73,0x7e,0x5f,0x90,0x54,0xf6,0x92,0xc1,0x64,0xce,0x79,0x67,0x19,0x1f,0x1f,0x2f,
0x4,0xe2,0x15,0x14,0x14,0x9c,0x65,0xb2,0x58,0x48,0x1c,0xbb,0xf9,0x9b,0x8f,0xff,
0xfa,0x6f,0xe3,0xf6,0x9c,0xbb,0x28,0xde,0x5a,0x77,0x2c,0x1d,0x21,0x84,0x49,0x34,
0x49,0xcf,0xe0,0xbd,0x98,0xda,0x7b,0x58,0x20,0xe7,0xdc,0x5c,0x69,0x2d,0xd1,0xbf,
0x7b,0x24,0xfb,0xf3,0x7f,0xf8,0x55,0xba,0x4a,0x97,0xf4,0x5,0xce,0xe6,0x80,0x4b,
0xec,0x92,0x6,0x99,0xd8,0x30,0xcf,0x7b,0xd5,0x12,0xdb,0x66,0xb3,0x11,0x54,0xfe,
0x57,0x74,0xf8,0x97,0xd8,0x50,0x2a,0xa2,0xda,0x51,0xb8,0x61,0xe1,0xaf,0x36,0x18,
0x32,0x1e,0xce,0xc7,0x3,0x8,0x1e,0xe4,0x79,0xf9,0xf9,0x2d,0x17,0xaf,0x7f,0x6e,
0xda,0xb3,0xbf,0xac,0x2,0x67,0x73,0x50,0xb4,0xa5,0xb8,0xf5,0x42,0x67,0x57,0x9e,
0xfe,0xd0,0x3b,0xa5,0x32,0xa3,0x79,0x60,0x5b,0xe9,0xe1,0x9a,0x86,0x9f,0xb5,0x6b,
0xe2,0x4b,0xe,0xda,0x58,0x7c,0x1,0x12,0xcb,0x15,0xff,0x71,0xed,0x6f,0xee,0x9a,
0x9a,0x9a,0x9a,0x8,0x1e,0x8f,0x37,0x67,0x6b,0xe1,0x85,0x24,0x76,0x46,0x4b,0x5b,
0x48,0xc6,0x87,0x9f,0x84,0x1e,0xbc,0xfb,0x4f,0x8c,0x55,0x4b,0x6c,0x6f,0xe6,0x24,
0xd1,0xe1,0x3b,0xb1,0x63,0x4b,0x2b,0x6b,0x9d,0x11,0x5b,0xb5,0x77,0x7f,0x33,0x4c,
0xca,0xf4,0xf7,0x3,0x8,0xc6,0xc,0x9f,0x5d,0xbf,0x5e,0xf3,0x83,0x2d,0x89,0xbf,
0xd9,0x18,0xbf,0xf9,0xdf,0xd9,0xeb,0x84,0x88,0xc1,0x64,0xa2,0xd6,0x9f,0xb5,0xd5,
0xac,0x93,0x7c,0x37,0x95,0x53,0x95,0xa8,0xf9,0xd2,0xfa,0xe3,0x26,0xd3,0xba,0x90,
0x10,0x4,0xf6,0xd0,0xd1,0x9b,0xb7,0x3c,0x6f,0x6a,0x6a,0x22,0x96,0xb,0x21,0xc8,
0xc4,0x46,0x8,0x61,0xab,0x9a,0xd8,0x3c,0x1e,0xcf,0xa9,0x79,0x1d,0x1d,0xfe,0x23,
0x36,0xec,0xda,0xf3,0x51,0xee,0xf2,0x84,0xd8,0xfb,0xf,0x57,0x1e,0xca,0x68,0x69,
0xb,0x29,0xb4,0x1d,0xdf,0x92,0x6a,0xb5,0x19,0x8d,0xc7,0x9b,0x36,0x9d,0xed,0xe8,
0x4c,0x4f,0xac,0x39,0x92,0xb7,0x7d,0xef,0xbe,0x13,0xb9,0xa7,0x3e,0x54,0xfc,0xe9,
0x5f,0xf4,0x87,0xe5,0xd4,0xfd,0x89,0x41,0x63,0x3d,0x6a,0x2a,0x3e,0xf3,0x51,0x84,
0xf9,0x93,0x4f,0x79,0xb9,0xb9,0xb9,0xf6,0xe5,0x46,0x6c,0xf8,0xf9,0xae,0xda,0xa3,
0xf8,0x8c,0x6d,0xab,0xc7,0x3,0xc6,0x3d,0x89,0xa4,0x86,0xd3,0x89,0x30,0x8a,0x55,
0x9a,0x66,0x1c,0x76,0xe5,0xca,0xb1,0x9a,0x88,0x9d,0xde,0x7c,0x49,0xb2,0x98,0xc4,
0xce,0xf9,0x61,0x51,0x3,0x42,0x8,0xb3,0xfd,0xf2,0x57,0x2c,0xcb,0x27,0x1d,0xdc,
0xc3,0xff,0x65,0x98,0x51,0xf9,0xd3,0x2b,0x61,0x8,0x21,0xcc,0xf6,0xf3,0xbf,0xa,
0x3b,0x78,0xfb,0x1f,0x18,0x7b,0x7e,0xf2,0x33,0xc1,0xfb,0x7f,0x3d,0xc0,0x46,0x8,
0x61,0x95,0x9d,0x9f,0xf3,0x4d,0xed,0x3d,0xac,0x8c,0x8c,0x8c,0x3b,0xcb,0x95,0xd8,
0xab,0x36,0x79,0x6,0xbf,0x74,0x7f,0x35,0xe4,0x2b,0xcc,0xf9,0x7d,0x50,0x47,0x4,
0x7d,0x32,0x83,0xc9,0x44,0x54,0xd3,0x2a,0x56,0x1b,0xb1,0x21,0x39,0x85,0xb3,0x39,
0x28,0xa1,0xba,0xce,0xa2,0xde,0x57,0xde,0x48,0x15,0x1,0x5c,0x1e,0x4a,0x49,0x49,
0xb9,0xe7,0x4c,0x23,0xee,0x6d,0x54,0x54,0x54,0x10,0x18,0x86,0x21,0x75,0x4a,0xfa,
0x3,0x8d,0xf5,0xa8,0x29,0xbe,0xe4,0xa0,0x2d,0xe1,0xf0,0xbb,0xa5,0x9,0x87,0xdf,
0x2d,0xdd,0x56,0x5c,0x6e,0x83,0x93,0x44,0xc2,0xe1,0x77,0x4b,0xd5,0x85,0x25,0x2d,
0xf1,0x25,0x7,0x6d,0x20,0x71,0x4d,0xac,0x39,0x92,0x17,0xb1,0x51,0xf9,0x7b,0x4f,
0xde,0x4f,0x55,0x55,0x95,0x53,0x15,0xd9,0x42,0x5,0x8c,0x81,0xa2,0xf2,0xd3,0xc3,
0xd9,0x9c,0xd5,0xa3,0x3c,0x9b,0x99,0x29,0xec,0x17,0x62,0xc3,0x9c,0x64,0xc8,0xb8,
0x3a,0x3a,0x5f,0xee,0xbc,0xdc,0xcd,0x71,0x9c,0xe5,0xb5,0x5a,0x2,0xee,0xcf,0xf0,
0x90,0xa9,0xf7,0x95,0x37,0x62,0xf3,0xa8,0xa9,0x5e,0x2d,0x81,0x7,0x72,0x51,0x0,
0x97,0xe7,0x51,0x30,0x18,0x6b,0xd0,0xaa,0xf1,0x47,0x73,0x75,0x74,0xf1,0x65,0xb7,
0x6,0x93,0x39,0x2a,0xaf,0x6a,0x2a,0x2b,0xd9,0xd5,0x12,0x29,0x67,0x5a,0x65,0x54,
0xc4,0xe6,0x88,0x25,0x28,0x4c,0x9f,0x3a,0xe6,0x2e,0x22,0x32,0x4c,0xf7,0x37,0xee,
0x2a,0xec,0x82,0x8,0x56,0xaa,0x26,0x5,0x51,0xca,0x17,0x82,0x28,0xe5,0xb,0x71,
0x82,0xf6,0x39,0xf9,0x6b,0xc9,0xff,0x46,0x8e,0x50,0x5d,0xf2,0x13,0xf2,0xd7,0x6d,
0x30,0x64,0x3c,0x24,0x7f,0xcf,0xe5,0x18,0xaa,0xa2,0xd2,0xb3,0xce,0x4e,0x3e,0x54,
0x27,0xa1,0x55,0x45,0xec,0x0,0x2e,0xf,0xf9,0x63,0x27,0xa5,0x1a,0x8a,0x3e,0x9f,
0xb3,0x9a,0x97,0x2b,0xb1,0x43,0x62,0xe2,0xbf,0xfd,0xc1,0x9b,0x6f,0xd9,0x59,0x41,
0x7c,0x24,0x88,0x52,0xbe,0xf0,0xf4,0xc1,0x84,0x88,0x2e,0x2c,0x69,0xdd,0x60,0xc8,
0x78,0x18,0x77,0xa0,0xba,0x3a,0xb6,0xb4,0xb2,0xd6,0x99,0x2f,0xbb,0x6a,0xef,0xfe,
0x66,0xe5,0xee,0xa2,0x76,0x18,0xd2,0x90,0xd4,0x70,0x3a,0x11,0x62,0x9b,0xed,0x94,
0x2e,0xfe,0x50,0x4d,0xb9,0x34,0xcd,0x38,0xc,0xb,0x81,0x50,0x15,0x33,0x11,0x6d,
0x29,0x6e,0x25,0x7f,0x5d,0x42,0x75,0x9d,0x5,0x48,0xb4,0xc1,0x90,0xf1,0x50,0x61,
0xce,0xef,0x8b,0x3f,0x54,0x53,0xae,0xde,0x57,0xde,0x48,0x7e,0x2d,0x85,0x39,0xbf,
0x4f,0xa2,0x49,0x7a,0x16,0xc0,0xe5,0x21,0x89,0x56,0xff,0xa5,0xb7,0x9f,0x9,0x3e,
0x97,0x34,0x3d,0xf3,0x57,0xe4,0xe3,0xb3,0x38,0x41,0xfb,0x9c,0xaa,0x67,0x9d,0x6c,
0x6d,0x1d,0x95,0xbb,0xa7,0x87,0x26,0xb6,0x3,0x60,0x80,0xba,0x3f,0x76,0x6c,0x70,
0x95,0x74,0xb4,0x20,0x4a,0x6f,0xbe,0x24,0xc1,0xe6,0xc9,0xae,0x67,0xb9,0x4,0x48,
0x33,0x21,0x79,0xb6,0x71,0x57,0x61,0x57,0x98,0x3e,0x75,0xc,0x88,0x1d,0x5d,0x58,
0xd2,0xba,0x71,0x57,0x61,0xd7,0xf,0xde,0x7c,0xcb,0xee,0x9,0x1,0xf0,0x40,0x2e,
0xe2,0x86,0x85,0xbf,0x92,0xa6,0x19,0x87,0x1d,0xef,0x92,0x60,0x27,0xec,0x2a,0xc8,
0x66,0x14,0x60,0xc2,0xe0,0x68,0x1a,0xe8,0xec,0xff,0x5d,0x2b,0x58,0x37,0x7b,0xbc,
0x65,0xf1,0x5,0x8,0x4e,0x4,0x41,0x11,0xf2,0x97,0x18,0x86,0xf9,0xb4,0x58,0xa9,
0xf7,0x95,0x37,0xaa,0x8a,0x4a,0xcf,0x46,0x17,0x96,0xb4,0x3a,0xfb,0xcc,0xca,0x82,
0x1f,0x7e,0x1a,0x77,0xf0,0x9d,0x4a,0x58,0x4c,0xe2,0xe,0x54,0x57,0x7b,0xfa,0x33,
0x5b,0x75,0xc4,0xf6,0x67,0xf2,0xc,0x3c,0xbd,0x37,0x18,0x32,0x1e,0x82,0xb1,0x5e,
0xf2,0xc9,0x73,0xd1,0xc1,0x4a,0xd5,0xe4,0x52,0x70,0x31,0x59,0x2a,0x3b,0xb6,0x23,
0xb1,0x15,0x39,0x5,0x37,0xf0,0x40,0xee,0x77,0x66,0x5,0x6b,0xd9,0x48,0x91,0x53,
0x70,0xc3,0x93,0x87,0x74,0xd,0x1e,0x80,0xc8,0x47,0x6d,0xf2,0x91,0x7c,0x53,0xf1,
0xc1,0x6,0xaa,0x1e,0x6b,0x5d,0xfd,0x9,0x3,0xc,0x8b,0x67,0xf1,0x5,0x28,0xbd,
0xf9,0x92,0x4,0x84,0x49,0x59,0x1d,0xbd,0x1,0xe9,0xcd,0x97,0x24,0x60,0x29,0xed,
0xec,0xb3,0xe8,0x8f,0x7f,0x10,0xab,0x2a,0x2a,0x3d,0x2b,0xd1,0x24,0x3d,0x53,0xee,
0x2e,0x6a,0x4f,0x3e,0x79,0x2e,0x5a,0x66,0x34,0xf,0x84,0xc4,0x6e,0xf9,0x66,0x2e,
0xc4,0x56,0x16,0xfc,0xf0,0xd3,0x0,0x2e,0xf,0xc9,0x8c,0xe6,0x1,0x20,0xaf,0x34,
0xcd,0x38,0x2c,0x54,0xc5,0x4c,0x88,0x37,0x6b,0x7e,0x2b,0xde,0xac,0xf9,0x6d,0xc4,
0x8e,0xac,0x7b,0x32,0xa3,0x79,0x40,0xa8,0x8a,0x99,0x80,0xb1,0xca,0x9e,0xbe,0xde,
0xaa,0x24,0xb6,0x27,0x43,0xcf,0x3d,0xb5,0x0,0xa6,0x9a,0x4f,0xbd,0xda,0x9b,0x4b,
0x9c,0x11,0x9b,0x23,0x96,0x20,0x8e,0x58,0x82,0x14,0xe6,0xfc,0xbe,0xcd,0x87,0xdf,
0x2b,0xd,0x92,0xca,0x5e,0xf2,0x23,0x15,0x53,0xee,0xc8,0x1d,0xc0,0xe5,0x21,0x9c,
0xcd,0x41,0xc2,0x4d,0x71,0xbf,0x53,0xef,0xfb,0x4e,0x96,0xba,0xc1,0x90,0xf1,0x70,
0xc3,0x1f,0xa4,0xfd,0xb,0xfc,0xd9,0x97,0x6b,0x93,0x27,0xa3,0x72,0xb7,0x5f,0xb8,
0x12,0xac,0x2a,0x2a,0x3d,0x2b,0x33,0x9a,0x7,0x92,0x4f,0x7d,0xa4,0x84,0xd3,0x1a,
0x34,0xb8,0x70,0xc4,0x12,0x24,0x4e,0xd0,0x3e,0x27,0x2f,0x3a,0x91,0x3b,0x73,0xee,
0xba,0x23,0x1e,0xb8,0xcc,0x32,0xd7,0xb2,0x11,0x37,0x2c,0xfc,0x55,0x50,0x84,0xfc,
0x25,0x37,0x74,0xc3,0x74,0x48,0xec,0x96,0x6f,0xc0,0x15,0x6,0xa6,0xc8,0x88,0x13,
0xb4,0xcf,0xc5,0x9,0xda,0xe7,0xc,0x26,0x93,0x26,0x36,0x15,0xc6,0xc6,0xc6,0x8,
0xcc,0x4b,0x67,0x48,0x4f,0x42,0x57,0x7f,0xc2,0xa0,0xb1,0x1e,0x35,0x39,0xf3,0xbd,
0xa6,0x89,0xfd,0x1d,0xb1,0x31,0xd2,0x90,0xc1,0xac,0x2b,0x9f,0xb3,0xb6,0xbc,0x5d,
0xbb,0x37,0x70,0x7d,0xe8,0x34,0x7b,0x9d,0x10,0xc1,0x3,0x19,0xb9,0x33,0xe7,0xae,
0x63,0x32,0x8d,0xb9,0x96,0x8d,0xf0,0x40,0x2e,0x92,0x67,0xe5,0xdd,0xda,0x66,0x3b,
0xa5,0x33,0xb5,0xf7,0xb0,0x62,0x4b,0x2b,0x6b,0x15,0x39,0x5,0x37,0x36,0x18,0x32,
0x1e,0x6a,0xdf,0x3f,0x9e,0xea,0x29,0xb1,0xc9,0x3,0x15,0x3d,0x21,0x76,0xea,0x7,
0x1f,0x4b,0xe1,0x28,0xbe,0x56,0xb0,0xce,0xa5,0xb1,0x1,0x44,0x98,0x3e,0x75,0xcc,
0x53,0x62,0xc3,0xd7,0x4a,0xd3,0x33,0x7f,0x5,0xc3,0xf7,0xb4,0xef,0x1f,0x4f,0xd,
0x56,0xaa,0x26,0xe1,0x2e,0xbf,0xb3,0xed,0x3a,0x7b,0x67,0xdb,0x75,0xb6,0x37,0x79,
0xa,0x7e,0xa4,0x62,0x6a,0x55,0x4d,0xd,0x21,0x4f,0x5f,0xa0,0x63,0x7e,0x2,0x44,
0x3a,0x8e,0xc4,0xc6,0x3,0xb9,0x28,0x24,0x76,0xcb,0x37,0x9b,0x2b,0xad,0x25,0xf1,
0x87,0x6a,0xca,0x43,0x93,0xc,0x5f,0x4,0x70,0x79,0x28,0x3c,0x65,0xfb,0xaf,0xe1,
0x81,0x14,0x44,0x29,0x5f,0x78,0x5b,0x6,0x72,0xf6,0xfb,0x84,0xa1,0x9,0xa,0x73,
0x7e,0x1f,0x7b,0x9d,0x10,0x19,0x1a,0xcf,0x47,0x41,0x32,0x6e,0xcb,0xdb,0xb5,0x7b,
0xe3,0xf,0xd5,0x94,0xe3,0x6c,0x8e,0x53,0x25,0xe2,0x36,0xdb,0x29,0xdd,0xa6,0x92,
0x8a,0x6,0x9c,0xcd,0x41,0x3c,0xde,0x77,0xc6,0x5,0x8e,0xd1,0xd2,0xd2,0xf2,0x3d,
0x13,0x84,0xbd,0xc5,0xc5,0x35,0x1c,0xb1,0x4,0x79,0x43,0x6c,0xf5,0xbe,0xf2,0xc6,
0x4d,0x25,0x15,0xd,0x1b,0x77,0x15,0x76,0x81,0x81,0x22,0x84,0xc2,0x9c,0xdf,0x17,
0x95,0xbb,0xa7,0x27,0x80,0xcb,0xf3,0x98,0xd8,0x82,0x28,0xe5,0x8b,0x55,0x45,0xec,
0xec,0xec,0xec,0xce,0x20,0xa9,0xec,0x25,0x4d,0xc0,0x85,0x11,0xa8,0x38,0xde,0xb1,
0xc5,0x9,0xda,0xe7,0xb3,0x49,0x2b,0xc6,0x1a,0x24,0xcf,0xca,0xbb,0xa5,0xde,0x57,
0xde,0x18,0xb1,0x23,0xeb,0x5e,0x0,0x97,0x87,0x3e,0xfa,0xc9,0x4f,0x8e,0x38,0x12,
0xa5,0xa5,0xa5,0x85,0x68,0x6a,0x6a,0x9a,0x15,0x87,0x34,0x36,0x36,0x12,0x61,0xe1,
0xe1,0x2f,0x37,0xe7,0xec,0xea,0xc9,0x3b,0xd6,0xb8,0x49,0x61,0xce,0xef,0x93,0x19,
0xcd,0x3,0x8e,0x8d,0x3d,0x39,0x5d,0xfd,0x6b,0x52,0xcf,0x7e,0x12,0xae,0xb1,0x1e,
0x35,0x85,0xe9,0x53,0xc7,0xe0,0xee,0xad,0xde,0x57,0xde,0x98,0xd4,0x70,0x3a,0x31,
0x54,0x97,0xfc,0x44,0x9c,0xa0,0x7d,0xee,0xec,0x4,0x7,0x73,0xb5,0xa3,0x72,0xf7,
0xf4,0xec,0x3e,0x7b,0x21,0xf4,0xb3,0x7f,0x1c,0x8e,0x7b,0x6b,0x5f,0xb1,0xdb,0x21,
0xf7,0x50,0x7d,0xf1,0x96,0xd8,0xaa,0xa2,0xd2,0xb3,0x11,0x3b,0xb2,0xee,0x29,0x72,
0xa,0x6e,0x6c,0xdc,0x55,0xd8,0xa5,0xdc,0x5d,0xd4,0x1e,0x7f,0xa8,0xa6,0x3c,0x66,
0xff,0xe1,0xfa,0xd8,0xb2,0xb7,0xdf,0x73,0xb5,0x63,0x2b,0x72,0xa,0x6e,0x4,0x2b,
0x55,0x93,0x90,0xa5,0x5f,0x75,0xc4,0xa6,0x4d,0x16,0x16,0x86,0xd8,0xba,0xfa,0x13,
0x6,0x2a,0x62,0x43,0x22,0x2a,0x58,0xa9,0x9a,0x4,0x52,0xab,0xf7,0x95,0x37,0xc2,
0x51,0xdd,0x13,0x3b,0xdf,0xb2,0xb2,0x32,0x22,0x70,0x7d,0xe8,0x34,0x10,0x19,0x1c,
0x5b,0x9c,0xe5,0x4e,0x64,0x46,0xf3,0x0,0x47,0x24,0x46,0xe4,0xa9,0xa8,0xf0,0xdf,
0x81,0xeb,0x43,0xa7,0x1d,0x45,0x46,0x54,0x47,0xf8,0xac,0x8e,0xde,0x0,0x6e,0x58,
0xf8,0x2b,0x26,0x8b,0xe5,0xf6,0xee,0xea,0xd,0xb1,0xb7,0xbc,0x5d,0xbb,0xf7,0x8d,
0xeb,0xb7,0x18,0xa9,0x67,0x3f,0x9,0x17,0xc5,0x27,0x7e,0xb5,0x6,0xf,0x78,0x2d,
0x5b,0x4f,0x1e,0x1e,0x18,0xb8,0x3e,0x74,0x9a,0x1f,0xa9,0x98,0xa2,0xfa,0x7e,0xe2,
0xcd,0x9a,0xdf,0x32,0x18,0x6b,0x50,0xe0,0xfa,0xd0,0x69,0xd5,0xde,0xfd,0xcd,0xab,
0x8e,0xd8,0xd0,0x8,0xb2,0xd8,0xa6,0xfa,0xab,0xa9,0x9,0xc4,0xb1,0xdc,0x45,0x15,
0x11,0x19,0xa6,0xfb,0xee,0x88,0x5d,0x51,0x51,0x41,0x88,0x44,0xa2,0xe9,0xe8,0xac,
0xdc,0x5f,0xec,0xbc,0xdc,0xcd,0xc9,0xea,0xe8,0xd,0xc8,0x68,0x69,0xb,0x1,0x62,
0x3b,0x2b,0x31,0xe6,0x74,0xf5,0xaf,0x89,0xb6,0x14,0xb7,0x3a,0x96,0xc6,0xdc,0x69,
0xfb,0x41,0x9a,0x99,0xd3,0xd5,0xbf,0x26,0xab,0xa3,0x37,0x0,0x5e,0x33,0xbe,0xac,
0xaa,0x46,0x24,0x12,0x4d,0xa7,0xa4,0xa4,0xdc,0x9b,0x2b,0xb1,0x41,0xc8,0xc4,0x11,
0x89,0x11,0x4c,0xdc,0x4,0x8f,0x73,0x85,0x39,0xbf,0x8f,0x1f,0xa9,0x98,0x62,0x30,
0x99,0x28,0xab,0xa3,0x37,0x20,0x70,0x7d,0xe8,0xb4,0xe3,0xf7,0x55,0xe4,0x14,0xdc,
0x60,0xf1,0x5,0x28,0x2a,0x77,0x4f,0x4f,0xd6,0x95,0xcf,0x59,0xc9,0xa7,0x3e,0x52,
0xb2,0xd7,0x9,0xbf,0xcb,0x49,0xac,0x36,0x62,0x17,0x14,0x14,0x9c,0x5d,0xed,0x25,
0xa9,0xf9,0x26,0x36,0xd8,0xb,0x7b,0x4a,0x6c,0x78,0xd0,0x9d,0x11,0x7b,0x70,0x70,
0x90,0xc0,0xd9,0x1c,0x44,0x35,0xfe,0x16,0xd4,0x7e,0xfe,0xd6,0xe,0x38,0x9b,0xe2,
0xb9,0xe3,0xe2,0xd5,0x20,0x18,0x5f,0x34,0xe3,0xf,0xee,0x33,0xb1,0xc9,0xf3,0xb1,
0xa9,0x72,0x5,0xe4,0x11,0xc1,0xd2,0x34,0xe3,0xb0,0xe3,0xf7,0xfd,0xc1,0x9b,0x6f,
0xd9,0x83,0x95,0xaa,0xc9,0x98,0xfd,0x87,0xeb,0x75,0xf5,0x27,0xc,0x31,0xfb,0xf,
0xd7,0xb,0x55,0x31,0x13,0x1c,0xb1,0x64,0xf5,0x11,0x9b,0x76,0x51,0x99,0x7f,0x62,
0x4b,0xd3,0x8c,0xc3,0x70,0x9f,0x9e,0x2b,0xb1,0xe1,0xfa,0xe4,0xcc,0x66,0x18,0x88,
0xa1,0x2c,0xf8,0xe1,0xa7,0x6f,0x5c,0xbf,0xc5,0x70,0x8c,0x9d,0x97,0xbb,0x39,0xdb,
0x2f,0x5c,0x9,0x76,0x17,0x86,0xc6,0xf3,0x51,0x64,0x25,0x5a,0x54,0xde,0x9b,0xdd,
0xae,0x74,0xf,0x59,0x1d,0xbd,0x1,0x38,0x9b,0xf3,0xbd,0x69,0x9b,0x9e,0x10,0x3b,
0xba,0xb0,0xa4,0x95,0xb9,0x96,0x8d,0x20,0x37,0x80,0xb3,0x39,0x48,0x10,0xa5,0x7c,
0xb1,0xcd,0x76,0x4a,0x97,0xde,0x7c,0x49,0x92,0x69,0xbf,0xc6,0xdd,0x5a,0x77,0x2c,
0x3d,0x4c,0x9f,0x3a,0x6,0x3b,0xb6,0xcc,0x68,0x1e,0x60,0xae,0x65,0x23,0x2a,0x61,
0x4b,0x48,0x4c,0xfc,0xb7,0xd8,0x8c,0xf7,0xf9,0xaa,0x3d,0x8a,0xd3,0xbb,0xf6,0xc2,
0x78,0x9e,0x81,0x4b,0xe9,0x5c,0x89,0x6d,0xb1,0x58,0x8,0x57,0x9,0xcf,0xac,0x8e,
0xde,0x0,0x6f,0x6a,0xbc,0x9e,0x6,0xdc,0xfb,0x5d,0x9,0x9a,0x4,0x51,0xca,0x17,
0x64,0x17,0x53,0x6f,0x89,0x2d,0x54,0xc5,0x4c,0x0,0x69,0x83,0xa4,0xb2,0x97,0x71,
0x7,0xaa,0xab,0x41,0xb0,0xb2,0xb9,0xd2,0x5a,0x12,0x24,0x95,0xbd,0x94,0xa6,0x19,
0x87,0x73,0xba,0xfa,0xd7,0x40,0x37,0xe1,0xc6,0x5d,0x85,0x5d,0x54,0xdf,0x4f,0x66,
0x34,0xf,0x80,0x32,0x6d,0xd5,0x12,0x7b,0x7c,0x7c,0xbc,0x90,0xc7,0xe3,0xad,0xea,
0x66,0x8d,0xe5,0x40,0x6c,0x4f,0x7b,0xe8,0x3,0xd7,0x87,0x4e,0x2f,0x6,0xb1,0x61,
0xdc,0x6e,0x77,0x77,0x37,0xe1,0xcb,0x51,0x1c,0x92,0x73,0x42,0x55,0xcc,0x84,0x38,
0x41,0xfb,0x5c,0x61,0xce,0xef,0xdb,0x5c,0x69,0x2d,0xd9,0x5c,0x69,0x2d,0x91,0xa6,
0x19,0x87,0x37,0x18,0x32,0x1e,0x42,0xa2,0x10,0x8e,0xe5,0x54,0xc4,0x5e,0xf5,0xe5,
0x2e,0x32,0xec,0x76,0x3b,0x81,0xb3,0x39,0x74,0x86,0x7c,0x1e,0x88,0xcd,0x60,0x32,
0x11,0x8c,0xc6,0x91,0x67,0xe5,0xdd,0x5a,0x9f,0xa8,0xfb,0x8d,0x2f,0xc4,0x6,0xb5,
0xa0,0x27,0xc4,0x66,0xb,0x45,0x8,0x9a,0x38,0xa2,0x72,0xf7,0xf4,0x78,0xd2,0x49,
0x6,0xaa,0x31,0xe1,0xa6,0xb8,0xdf,0x41,0xd3,0xc5,0xba,0xe8,0x4d,0xbf,0x17,0x44,
0x29,0x5f,0x70,0xc4,0x12,0xe4,0x8e,0xd8,0xba,0xfa,0x13,0x6,0xc7,0xf7,0xed,0xb,
0xb1,0x9d,0x25,0xf8,0x64,0x46,0xf3,0x0,0xd4,0xe3,0x81,0xd8,0x11,0x19,0xa6,0xfb,
0x34,0xb1,0xdd,0x80,0x1e,0xf3,0x33,0x7f,0x3,0x3,0x2,0xd7,0x7f,0xe7,0x2f,0x16,
0xb9,0x33,0xe7,0xae,0x78,0xb3,0xe6,0xb7,0x40,0xec,0x88,0x1d,0x59,0xf7,0x44,0xf1,
0x89,0x5f,0x45,0xec,0xc8,0xba,0xe7,0x29,0xb1,0x33,0xed,0xd7,0xb8,0xae,0x5e,0x53,
0xa8,0x8a,0x99,0xa0,0x12,0xaf,0x84,0xc4,0x6e,0xf9,0xc6,0x93,0x96,0xc8,0x68,0x4b,
0x71,0x2b,0xfc,0x77,0x68,0x92,0xe1,0xb,0x32,0xb9,0x5c,0xcd,0x1a,0x87,0xc4,0x5d,
0x4a,0x4a,0xca,0x3d,0x18,0xd5,0x13,0x99,0x64,0x18,0x53,0x16,0xfc,0xf0,0x53,0x4f,
0x88,0xcd,0x60,0x32,0x91,0x72,0x77,0x51,0xbb,0x6a,0xef,0xfe,0x66,0xaa,0xb9,0x61,
0xe4,0x8e,0x2f,0xf0,0x38,0x17,0x27,0x68,0x9f,0xd3,0xc4,0xf6,0x0,0x5a,0xad,0xf6,
0x11,0x3d,0x98,0x6f,0xfe,0x88,0x4d,0x3e,0x8a,0x4b,0xd3,0x33,0x7f,0xc5,0x60,0xac,
0x99,0x15,0xa8,0x80,0xae,0x3a,0xba,0xb0,0xa4,0x35,0x4c,0x9f,0x3a,0xb6,0x73,0xf7,
0x9b,0x2d,0x64,0x65,0xd7,0x4c,0x49,0x9,0x6d,0x2a,0xa9,0x68,0x70,0xf5,0x9a,0x20,
0x44,0x21,0x47,0xa4,0x29,0xf7,0xe,0x47,0x2c,0x41,0x9b,0x4a,0x2a,0x1a,0x74,0xf5,
0x27,0xc,0xdb,0x2f,0x5c,0x9,0xd6,0xd5,0x9f,0x30,0x50,0xb5,0x7d,0xc6,0x1d,0x7c,
0xa7,0x12,0xb2,0xf8,0xde,0x64,0xd7,0xe1,0xb3,0x32,0xd7,0xb2,0x67,0xbb,0xc0,0xc8,
0x4a,0x3a,0x77,0xc4,0xc6,0x30,0xc,0xad,0x4f,0xd4,0xfd,0x86,0x7c,0x8a,0x88,0x34,
0xe5,0xde,0x71,0x5c,0x78,0xe4,0x59,0x79,0xb7,0x44,0xf1,0x89,0x5f,0xe1,0x6c,0xe,
0xe2,0x88,0xc4,0x88,0x26,0xb6,0x17,0xe4,0xe,0xd5,0x25,0x3f,0xa1,0x77,0x6e,0xff,
0x11,0x1b,0x3a,0x92,0x80,0xd8,0xac,0x20,0x3e,0xe2,0x88,0x25,0x28,0xeb,0xd4,0xb9,
0xa8,0x3d,0x97,0xbb,0xd8,0xd2,0x34,0xe3,0x30,0x7b,0x9d,0x10,0xad,0x4f,0xd4,0xfd,
0x86,0x4a,0x52,0x8a,0x7,0x72,0x11,0x73,0x2d,0x1b,0x61,0x18,0xe6,0xd3,0xe0,0x3d,
0x68,0xa1,0xa5,0x9a,0x97,0x2d,0x54,0xc5,0x4c,0x50,0xed,0x90,0xae,0x24,0xa6,0x54,
0x61,0x9c,0xd9,0xb1,0x3d,0xd1,0x87,0x3b,0x23,0x76,0x68,0x92,0xe1,0x8b,0xf4,0xe6,
0x4b,0x12,0x67,0xd9,0xfa,0x84,0xea,0x3a,0x4b,0xcc,0xfe,0xc3,0xf5,0x9b,0x4a,0x2a,
0x1a,0x42,0x75,0xc9,0x4f,0x18,0x8c,0x35,0x28,0x2a,0xef,0xcd,0x6e,0x9a,0xd8,0x5e,
0x90,0x9b,0x23,0x12,0xcf,0xfb,0xf4,0xc6,0xd5,0x36,0xbb,0x8b,0xdc,0x4,0x22,0x4d,
0x33,0xe,0x9b,0x3b,0x6f,0xe2,0x19,0x2d,0x6d,0x21,0x9b,0xf,0xbf,0x57,0xca,0xd,
0xdd,0x30,0x4d,0xde,0x81,0x7e,0xf0,0xe6,0x5b,0x76,0xb2,0x63,0x8,0xfc,0x7f,0xbe,
0x74,0xe4,0x41,0x6b,0xad,0x37,0xbd,0x1,0x42,0x55,0xcc,0x84,0x37,0x92,0xe3,0x4c,
0x3f,0x10,0xdb,0xb1,0x1f,0x1c,0x86,0x2d,0x50,0x85,0x34,0xcd,0x38,0xcc,0x60,0x32,
0xdd,0x1e,0xc7,0x17,0x8b,0xd8,0xe3,0xe3,0xe3,0x85,0x54,0x43,0x4,0x6f,0xdf,0xbe,
0xed,0xf5,0x4,0x52,0xbd,0x5e,0xff,0x80,0x3c,0x79,0xb4,0xa8,0xa8,0x88,0xb0,0xd9,
0x6c,0xc4,0xd0,0xd0,0x10,0xe1,0xf5,0x1b,0xab,0xaa,0xaa,0x22,0x2,0xd6,0xae,0x45,
0x1b,0x77,0x15,0x76,0xb9,0xba,0x5b,0xd1,0xe1,0x3d,0xb1,0xd9,0x42,0x11,0xe2,0x86,
0x6e,0x98,0xde,0x60,0xc8,0x78,0xa8,0xc8,0x29,0xb8,0xc1,0xb,0x8f,0xf8,0xcf,0xa0,
0x8,0xf9,0x4b,0x57,0xf7,0x51,0x45,0x4e,0xc1,0xd,0x56,0x10,0xdf,0x67,0xcb,0x68,
0x7e,0xa4,0x62,0xca,0x1b,0xa2,0x46,0x5b,0x8a,0x5b,0xa1,0x6e,0xec,0xb1,0x45,0x56,
0x10,0xdf,0xa3,0xbe,0x72,0xc7,0xf2,0x14,0x24,0xe7,0xbc,0x95,0x38,0xb,0x55,0x31,
0x13,0xac,0x20,0x3e,0x22,0xe7,0x5,0x1c,0x93,0x85,0xfe,0x10,0xa8,0xdc,0xbe,0x7d,
0x9b,0xb0,0xd9,0x6c,0xdf,0x23,0x5c,0x76,0x76,0x76,0x27,0xd5,0xc8,0x5f,0xb9,0x5c,
0x3e,0x89,0xe3,0xb8,0x5f,0xe6,0x81,0xcf,0x9a,0x64,0x88,0x25,0xaf,0x75,0xd6,0x81,
0x41,0x46,0x4a,0x4a,0xca,0x3d,0xaf,0xc7,0x2e,0x7d,0xf6,0xd9,0x67,0x84,0x54,0x2a,
0x9d,0xc2,0xd9,0x1c,0x9a,0xe0,0x7e,0x24,0xb6,0x20,0x4a,0xf9,0x22,0x62,0x47,0xd6,
0x3d,0xd0,0x43,0xaf,0x15,0xac,0x43,0xee,0x92,0x4c,0xb0,0xfb,0xf8,0xaa,0x39,0x88,
0xca,0xdd,0xd3,0xe3,0xd,0x51,0xa1,0x7c,0xe5,0x69,0xb,0x2e,0x47,0x24,0x76,0x59,
0x3f,0x7,0xb7,0x18,0x72,0x0,0x9,0x81,0xd8,0x18,0x86,0x79,0x25,0x71,0x76,0xfc,
0xf9,0x3a,0xb,0x6f,0x89,0xd,0x44,0xd6,0xeb,0xf5,0xf,0x1c,0xe7,0x72,0x83,0x13,
0xaf,0x63,0x50,0xb9,0xda,0xc8,0x8c,0xe6,0x81,0x68,0x4b,0x71,0x2b,0x95,0xf9,0x85,
0xc6,0x7a,0xd4,0x94,0x69,0xbf,0xc6,0x25,0xf,0x10,0x84,0xa0,0x92,0x2,0x27,0xbe,
0x6b,0xcb,0x9,0xd3,0xa7,0x8e,0x45,0xe5,0xbd,0xd9,0xd,0x86,0x26,0x1a,0xeb,0x51,
0x13,0x3f,0x52,0x31,0xe5,0xa8,0x1f,0xf0,0x18,0x56,0xab,0x95,0xe0,0xf1,0xbe,0x6b,
0xf2,0x97,0x68,0x92,0x9e,0x25,0x35,0x9c,0x4e,0xa4,0xef,0xe0,0x73,0x23,0x36,0xf9,
0xb8,0xed,0xcc,0x1a,0x88,0x8a,0xd8,0x18,0x86,0xa1,0xcd,0x95,0xd6,0x12,0x6f,0x8f,
0xe4,0x50,0x8e,0xf2,0xd4,0x4b,0x1e,0xc4,0x2e,0xee,0x88,0x96,0x72,0xa6,0x55,0xb6,
0xb9,0xd2,0x5a,0x82,0x61,0x18,0x62,0xb,0x45,0x8,0x16,0x1f,0x47,0xb7,0x50,0xc8,
0x11,0xb8,0xb,0x6e,0x58,0xf8,0x2b,0x4f,0x3f,0x13,0x28,0xd5,0x74,0xe9,0xdb,0x7,
0xae,0x76,0x76,0x7e,0xef,0x78,0x3b,0x36,0x36,0x46,0x3c,0x7d,0xfa,0x94,0x18,0x1f,
0x1f,0x2f,0x74,0xa7,0xc0,0x6c,0x6a,0x6a,0x7a,0x8d,0xc8,0xc,0x26,0x13,0x5,0x49,
0x65,0x2f,0x15,0xe6,0xfc,0xbe,0xc4,0x9a,0x23,0x79,0x9b,0x4a,0x2a,0x1a,0x64,0x46,
0xf3,0xc0,0xce,0xcb,0xdd,0x9c,0x85,0x7c,0x86,0xcc,0x9d,0x37,0x71,0xe5,0xee,0xa2,
0x76,0x5e,0x78,0xc4,0x7f,0xc2,0x8e,0x2d,0xd1,0x24,0x3d,0x83,0x93,0xd,0x3c,0x63,
0x4f,0x9f,0x3e,0x25,0x7c,0xbe,0x33,0xd8,0x6c,0xb6,0x59,0xf,0x67,0x9c,0xcd,0x41,
0x70,0x7,0x2,0xb1,0x3e,0x18,0xe4,0x53,0xad,0x42,0xab,0x31,0xe2,0xe,0x54,0x57,
0x93,0x89,0x1d,0x9a,0x64,0xf8,0x42,0xa2,0xd5,0x7f,0xe9,0xab,0x80,0x84,0x9c,0x50,
0x63,0xb2,0x58,0x6e,0x4b,0x5f,0x8e,0xba,0x6e,0x4f,0x88,0x4a,0x8e,0x20,0xa9,0xec,
0xa5,0xab,0x31,0x50,0x99,0xf6,0x6b,0x5c,0x26,0x8b,0x85,0x30,0xc,0x43,0x52,0xa9,
0x74,0xca,0xf1,0x38,0x9a,0x9d,0x9d,0xdd,0xe9,0x78,0x7c,0xb5,0xd9,0x6c,0xdf,0x23,
0x20,0x8c,0x13,0xca,0xcc,0xcc,0xec,0xf5,0x36,0x8f,0x0,0x63,0x83,0x7d,0x7d,0xa6,
0xcb,0xca,0xca,0x8,0x1c,0xc7,0x5f,0x23,0xb2,0xae,0xfe,0x84,0x1,0x4e,0x36,0x9,
0xd5,0x75,0x16,0xa8,0x6a,0x80,0x54,0x55,0xbd,0xaf,0xbc,0x71,0xa1,0xec,0xab,0xa3,
0xb2,0xf2,0x6e,0xbd,0x73,0xec,0x78,0xde,0xe7,0x7f,0xfb,0x77,0x96,0xbf,0x19,0x7b,
0xa2,0xe9,0x1f,0xf9,0x75,0xfa,0x85,0x2b,0x9f,0x96,0xa4,0x97,0x57,0x56,0xc4,0x1d,
0xa8,0xae,0x4e,0xa8,0xae,0xb3,0xcc,0x89,0xd8,0xce,0x8e,0x2a,0x22,0x91,0x68,0x1a,
0xa3,0xbd,0xae,0x5d,0x86,0x28,0x3e,0xf1,0xab,0xb8,0x3,0xd5,0xd5,0x1c,0x91,0x18,
0x31,0x59,0x2c,0x14,0x14,0x21,0x7f,0x9,0xc7,0xd1,0x88,0xc,0xd3,0x7d,0x47,0xb1,
0x48,0xa8,0x2e,0xf9,0x9,0x95,0x95,0xb0,0xe3,0xae,0x17,0xac,0x54,0x4d,0x42,0x99,
0xca,0xdd,0x4e,0x62,0xee,0xbc,0x89,0xbb,0x23,0x2a,0x55,0x57,0x97,0xa3,0xb5,0xf4,
0x36,0xdb,0x29,0x5d,0xcc,0xfe,0xc3,0xf5,0x31,0xfb,0xf,0xd7,0x2b,0xf5,0x86,0x7f,
0x91,0x4a,0xa5,0x53,0x33,0xc3,0x9,0xfc,0xd6,0x71,0x8,0xee,0x32,0xde,0x9c,0x8a,
0x66,0x94,0x79,0x5e,0xb5,0x2d,0x8b,0x44,0xa2,0x69,0x8e,0x48,0x8c,0xe2,0xf,0xd5,
0x94,0x53,0x5d,0x51,0x92,0x4f,0x9e,0x8b,0x4e,0x3b,0x76,0x3a,0xfe,0xc0,0xa9,0xa6,
0xb8,0x63,0x9f,0x76,0xa9,0xfe,0xe4,0x72,0x47,0x5c,0x4d,0xd3,0x39,0x7d,0x5a,0x5d,
0x43,0xea,0x42,0xb8,0x4,0xe5,0x74,0xf5,0xaf,0xd1,0x1f,0x6d,0xdc,0x7a,0xc0,0xde,
0xb1,0xee,0xcc,0xad,0x5f,0x86,0x7d,0xfc,0xcb,0x7f,0x88,0x38,0xfd,0x8b,0xbb,0x61,
0x75,0x3d,0x7d,0xeb,0xd2,0x8e,0x9d,0x8e,0x27,0x77,0xf4,0xf9,0x85,0xd8,0x8e,0x78,
0xfa,0xf4,0x29,0x31,0x36,0x36,0x46,0xf8,0x6b,0x8a,0xc5,0x4a,0x8b,0xf5,0x1b,0x36,
0xbc,0x64,0xf1,0x5,0xe8,0xa3,0xf3,0xe7,0x9,0x6f,0x16,0x42,0x1c,0xc7,0x11,0x55,
0x62,0xa6,0xa8,0xa8,0x88,0x28,0x2b,0x2b,0x7b,0xed,0x7b,0x25,0x54,0xd7,0x59,0xb2,
0x3a,0x7a,0x3,0x72,0xba,0xfa,0xd7,0xc4,0x1d,0xa8,0xae,0xa6,0x7a,0x50,0x22,0x32,
0x4c,0xf7,0xbd,0x99,0xb0,0xa,0xbb,0xc1,0x36,0xdb,0x29,0x5d,0x56,0x47,0x6f,0xc0,
0xf6,0xb,0x57,0x82,0xa3,0x72,0xf7,0xf4,0xc0,0x6b,0xaa,0xd5,0xea,0xaf,0xe7,0xc3,
0x0,0x84,0xca,0xa7,0xde,0x55,0x78,0x33,0x5b,0xbc,0xbf,0xbf,0x9f,0x88,0x8b,0x8b,
0x7b,0xce,0x60,0x32,0xd1,0xc6,0x5d,0x85,0x5d,0xce,0x7e,0x16,0x3b,0x2f,0x77,0x73,
0xa2,0x2d,0xc5,0xad,0xf9,0x7f,0x74,0x24,0xf5,0xea,0x5f,0xde,0x2c,0xf9,0xd7,0xaf,
0xbe,0xc9,0xfb,0xe2,0x77,0xff,0x27,0xef,0x2f,0xee,0xfe,0xd2,0xf2,0xde,0x85,0x9f,
0xc6,0x45,0x5b,0x8a,0x5b,0xe7,0xeb,0x58,0x4e,0x6e,0xdc,0x31,0x77,0xde,0xc4,0xc1,
0x16,0xb,0xae,0x8,0x21,0x31,0xf1,0xdf,0x82,0xed,0x56,0xfc,0xa1,0x9a,0xf2,0x79,
0x23,0x36,0xd,0xd7,0x78,0xff,0xfd,0xf7,0x67,0x27,0x57,0xbe,0xff,0xfe,0xfb,0xaf,
0xb9,0xa0,0x40,0xdc,0xbe,0x7d,0xfb,0x7b,0xa5,0x11,0x77,0x77,0xc3,0xf1,0xf1,0xf1,
0xc2,0xaa,0xaa,0x2a,0xa2,0xa9,0xa9,0x89,0x50,0x2a,0x95,0x13,0x4c,0x16,0xb,0xb1,
0xf8,0x2,0xc4,0xd,0xb,0x7f,0x95,0xf6,0xe1,0x4f,0xc3,0xcc,0x9d,0x37,0xf1,0xb4,
0xf,0x7f,0x1a,0x16,0x69,0xca,0xbd,0x83,0x10,0xc2,0xe0,0x6a,0xe0,0xe9,0x51,0x97,
0x5c,0xc2,0xa,0xe0,0x7e,0x77,0xf7,0xcc,0xcd,0xcd,0xb5,0x37,0x35,0x35,0x11,0x36,
0x9b,0xcd,0xed,0xfb,0xf3,0x5,0x37,0x6e,0xdc,0x20,0xbc,0x49,0xda,0xc1,0xc9,0x62,
0x66,0x91,0x73,0x8a,0xd1,0xd1,0x51,0xa2,0xa0,0xa0,0xe0,0x2c,0x8e,0xe3,0x28,0x54,
0x97,0xfc,0xc4,0xd3,0xec,0xfb,0xd6,0xba,0x63,0xe9,0x30,0x93,0xe,0xea,0xfe,0x9b,
0x8a,0xf,0x36,0x98,0x3b,0x6f,0xe2,0x40,0xbe,0x1d,0x17,0xaf,0x6,0x51,0xd5,0xdd,
0x53,0xcf,0x7e,0x12,0x4e,0xee,0x92,0x73,0xf4,0x77,0xa7,0x8a,0x98,0xfd,0x87,0xeb,
0xa9,0xae,0x61,0x51,0xb9,0x7b,0x7a,0x64,0x46,0xf3,0xc0,0xc6,0x5d,0x85,0x5d,0x99,
0xf6,0x6b,0xdc,0x84,0xea,0x3a,0x8b,0x44,0x93,0xf4,0x8c,0xc1,0x64,0x22,0xad,0x56,
0xfb,0x88,0x66,0xd9,0xa,0x45,0x63,0x63,0x23,0xa1,0x54,0x2a,0x27,0xd8,0xeb,0x84,
0x28,0xa1,0xba,0xce,0xc2,0x60,0xac,0x41,0x38,0x9b,0x83,0x98,0x6b,0xd9,0x48,0x10,
0xa5,0x7c,0xa1,0x30,0xe7,0xf7,0x85,0xea,0x92,0x9f,0x60,0x5e,0x4e,0x67,0x81,0x6c,
0x37,0x93,0xc5,0x42,0x4a,0xa5,0x72,0xe2,0xf3,0xcf,0x3f,0x9f,0xf7,0x9d,0xc1,0x5b,
0x3f,0x3e,0xc8,0xe0,0xcf,0x2c,0xa,0x4e,0x93,0xbf,0xfc,0x48,0xc5,0x54,0x52,0xc3,
0xe9,0x44,0x5f,0x4,0x3e,0x1a,0xeb,0x51,0xd3,0xa6,0xe2,0x83,0xd,0x91,0xa6,0xdc,
0x3b,0xe4,0x64,0xa7,0xaa,0xa8,0xf4,0xac,0x33,0x79,0xee,0x6,0x43,0xc6,0x43,0x57,
0xba,0x7c,0xc7,0xe0,0x47,0x2a,0xa6,0x9c,0x8d,0x2a,0x22,0x3b,0xca,0x90,0x13,0x8d,
0x73,0xca,0x8a,0xd3,0x58,0x1e,0x98,0x39,0x8e,0xa1,0xd0,0x24,0xc3,0x17,0x11,0x19,
0xa6,0xfb,0xdc,0xb0,0xf0,0x57,0x1b,0x77,0x15,0x76,0xfd,0xc1,0x89,0xf,0x37,0x91,
0x1f,0x8,0x89,0x26,0xe9,0x99,0x37,0xc9,0x29,0xf8,0xff,0x16,0xea,0xb8,0x57,0x56,
0x56,0x46,0x78,0x7b,0x1c,0xe7,0x88,0xc4,0x28,0x3b,0x3b,0xbb,0xd3,0x51,0x5f,0xf,
0xe5,0xda,0xb9,0x76,0x2f,0x66,0xb4,0xb4,0x85,0x8,0x37,0xc5,0xfd,0xce,0x91,0x70,
0xe0,0xd,0xef,0x6b,0x38,0x2b,0x9f,0x91,0x15,0x81,0xd2,0x34,0xe3,0x30,0xb9,0x8e,
0x2d,0xd1,0x24,0x3d,0x3,0xb9,0xef,0xbc,0xde,0xb1,0x69,0x2c,0x1d,0x48,0xa5,0xd2,
0x29,0xc7,0xac,0xbb,0xaa,0xa8,0xf4,0x2c,0xb9,0x66,0xec,0x4d,0x2d,0x1c,0xdc,0x53,
0x30,0xc,0x43,0x3e,0x29,0x9d,0x7c,0x4c,0xce,0x7a,0xab,0x55,0x8f,0xb6,0x14,0xb7,
0xce,0x94,0xaa,0xb0,0xc1,0xc1,0x41,0x42,0xab,0xd5,0x3e,0x62,0x30,0x99,0x48,0x66,
0x34,0xf,0xcc,0x45,0x7f,0x91,0xd5,0xd1,0x1b,0xb0,0x71,0x57,0x61,0x17,0x8,0x42,
0xc0,0x7f,0x8d,0xaa,0x66,0x1d,0x5b,0x5a,0x59,0x4b,0x55,0xaf,0x4e,0x3e,0x79,0x2e,
0xda,0x59,0xe5,0xc4,0x9d,0xee,0x5f,0x99,0xf7,0x66,0xd7,0xdb,0x27,0x4e,0xa5,0x77,
0xde,0xf8,0xab,0x92,0xdb,0x8f,0xbe,0xd0,0xdc,0xfc,0xc7,0x5f,0x99,0x4e,0x9d,0xff,
0x49,0x49,0x7a,0x79,0x65,0x45,0x6c,0x69,0x65,0x2d,0x94,0x1a,0x69,0x62,0xaf,0x70,
0xc8,0xe5,0xf2,0x49,0x6e,0x58,0xf8,0x2b,0x67,0x25,0x33,0x70,0x73,0xf1,0xb4,0x54,
0x6,0x3a,0x73,0xcc,0x43,0x83,0x45,0x7f,0x41,0xa9,0x54,0x4e,0x78,0x73,0xb2,0xd8,
0x79,0xb9,0x9b,0x93,0x58,0x73,0x24,0x2f,0x2e,0x2e,0xee,0x39,0x8e,0xe3,0x28,0x58,
0xa9,0x9a,0x9c,0xab,0x24,0x3a,0xfe,0x50,0x4d,0x39,0x8b,0x2f,0x40,0x3c,0x1e,0xf,
0x95,0x56,0x55,0x1f,0x3a,0xd2,0xfa,0x53,0xcd,0xc9,0x5f,0xfc,0x9d,0xd8,0xf4,0xe3,
0x8f,0x22,0x17,0x3a,0x2b,0x7e,0xec,0xd3,0x2e,0xd5,0x5f,0xe,0xff,0x5a,0x7f,0xee,
0xd6,0xdf,0x45,0xbc,0xf3,0xb3,0x4f,0x23,0xd2,0x8e,0x9d,0x8e,0x4f,0x6f,0xbe,0x24,
0x49,0xac,0x39,0x92,0x47,0x13,0x7b,0x15,0x40,0xad,0x56,0x7f,0xcd,0x5c,0xcb,0x76,
0x3a,0xcd,0x53,0xb8,0x29,0xee,0x77,0x98,0x17,0xc3,0x22,0x40,0x4,0xb2,0xd0,0xc4,
0xb6,0xd9,0x6c,0x84,0x37,0x19,0xfc,0xd8,0xd2,0xca,0x5a,0xe8,0xf8,0x9a,0xab,0xe7,
0x9b,0xfe,0xf8,0x7,0xb1,0x60,0x9e,0x28,0xd5,0xe9,0x1f,0x7f,0x74,0xf9,0xcf,0x4a,
0xfe,0xf5,0xab,0x6f,0xf2,0x9e,0xfd,0xee,0x7f,0x97,0xfc,0xfc,0xd6,0xdf,0x94,0x54,
0x9f,0xf9,0x50,0xa3,0x30,0xe7,0xf7,0xcd,0x57,0x56,0x3c,0xf7,0xe7,0xb7,0x5f,0xcb,
0x8a,0xcb,0x8c,0xe6,0x1,0xf2,0x1d,0x5b,0xa8,0x8a,0x99,0x80,0x4,0xa8,0x5f,0xeb,
0xd8,0x34,0x96,0x2e,0x60,0x44,0x32,0xe6,0xe3,0x70,0x1,0x67,0x9a,0x6c,0x1c,0xc7,
0xd1,0xdd,0xbb,0x77,0x17,0xec,0xe1,0x99,0x39,0xf6,0xbb,0xf5,0xe3,0x4b,0x6a,0x38,
0x9d,0xc8,0x11,0x89,0x11,0xce,0xe6,0xcc,0xd9,0x71,0x77,0xc7,0xc5,0xab,0x41,0xe0,
0xad,0x46,0xce,0x9c,0xc7,0x1f,0xaa,0x29,0x7,0xe3,0x7,0x89,0x26,0xe9,0x59,0xdc,
0xc1,0x77,0x2a,0xc9,0x59,0xf1,0x9c,0xae,0xfe,0x35,0x9e,0xfa,0xc7,0x41,0x6c,0xad,
0x3b,0x96,0xee,0x2c,0x33,0xbe,0xa9,0xf8,0x60,0x3,0xd5,0x8c,0xb3,0xc8,0x9d,0x39,
0x77,0xa3,0x72,0xf7,0xf4,0xec,0xb8,0x78,0x35,0x8,0xb2,0xe2,0x38,0x9b,0x83,0x9c,
0xb9,0xc4,0xd2,0x58,0x41,0x18,0x1c,0x1c,0x74,0x5a,0x42,0xb3,0x58,0x2c,0x44,0x0,
0x97,0x87,0x82,0xa4,0xb2,0x97,0xde,0x36,0x84,0xc0,0xfd,0x75,0x21,0xa1,0x54,0x2a,
0x27,0x9c,0x9,0x6a,0x32,0x5a,0xda,0x42,0x20,0xcb,0x8f,0x61,0x18,0xa,0xd5,0x25,
0x3f,0x99,0xcb,0xf1,0x18,0xa6,0xc6,0x72,0x44,0x62,0xe4,0x98,0x39,0x27,0x67,0xc5,
0x23,0x32,0x4c,0xf7,0x1d,0x27,0x7d,0x92,0x3b,0xf1,0xa8,0xb4,0xf0,0x54,0x11,0x12,
0x13,0xff,0x2d,0x55,0x66,0x9c,0x1b,0x16,0xfe,0xca,0x59,0x66,0x1c,0xfa,0xf7,0x21,
0x78,0x3c,0x1e,0xb2,0x5a,0xad,0xf4,0x4e,0xbd,0xda,0x61,0xb7,0xdb,0x9,0x6c,0x46,
0x9,0xe7,0xd8,0x10,0x92,0xd4,0x70,0x3a,0x91,0x5c,0xaf,0x85,0xdd,0x9,0x76,0x17,
0xcc,0x7,0x75,0x97,0x63,0xc6,0xde,0x31,0x5c,0x89,0x9a,0x6c,0x36,0x1b,0xb1,0x75,
0x67,0xf6,0x2f,0x18,0x4c,0x26,0xca,0xb4,0x5f,0xe3,0xc6,0x96,0x56,0xd6,0x92,0xdf,
0x1b,0x24,0xb3,0xa0,0x13,0xa,0xfe,0x1c,0x12,0x13,0xff,0xad,0x37,0x7d,0xc,0x1a,
0xeb,0x51,0x13,0xec,0xf8,0xae,0x32,0xe7,0x3b,0x2e,0x5e,0xd,0x92,0x68,0xf5,0x5f,
0x7a,0x5a,0x8a,0xf2,0x36,0x78,0x3c,0x1e,0x72,0xd6,0x29,0x6,0x82,0x24,0xb2,0x2c,
0x77,0x2e,0xbf,0xb,0x1a,0x2b,0xc,0x30,0x8c,0x11,0x7a,0xbb,0xa1,0x21,0x4,0xd4,
0x4b,0x1c,0x91,0x18,0x41,0x97,0x92,0x34,0xcd,0x38,0xc,0x13,0x54,0x95,0xbb,0x8b,
0xda,0x19,0x4c,0x26,0xb2,0x58,0x2c,0xb3,0xba,0x6e,0xaa,0x50,0xab,0xd5,0x5f,0x53,
0x3d,0x98,0x8e,0x1d,0x52,0x9e,0xc6,0xe6,0x4a,0x6b,0x9,0xf4,0x68,0x93,0x4d,0x22,
0x40,0x7d,0x45,0x4e,0x0,0x66,0x75,0xf4,0x6,0x80,0x0,0xc7,0x93,0x3b,0x76,0xea,
0xd9,0x4f,0xc2,0x83,0x95,0xaa,0x49,0x6,0x93,0x89,0xc2,0xf4,0xa9,0x63,0xce,0x32,
0xe7,0x39,0x5d,0xfd,0x6b,0x36,0xee,0x2a,0xec,0xc2,0xd9,0x1c,0x24,0x12,0x89,0xa6,
0xc9,0x9f,0x4b,0xaf,0xd7,0x3f,0xa0,0xfa,0x39,0x54,0x55,0x55,0x39,0x5d,0xb0,0x86,
0x86,0x86,0x8,0xaa,0x45,0x8e,0x7e,0x3a,0x69,0xcc,0x9,0x52,0xa9,0x74,0x2a,0x24,
0x26,0xfe,0x5b,0x72,0x43,0x8,0x8c,0xfe,0x71,0x56,0x1f,0x6,0x4b,0x60,0xcc,0x87,
0x1a,0xac,0x63,0x90,0x1b,0x86,0xc8,0x41,0xd5,0x3c,0x44,0xf6,0x70,0x23,0x1f,0x8f,
0x9d,0x4d,0x6,0x75,0x37,0x9,0x5,0x16,0x0,0x99,0xd1,0x3c,0xc0,0x60,0x32,0xdd,
0x66,0xce,0xe3,0xf,0xd5,0x94,0x73,0x44,0x62,0xc4,0xe3,0xf1,0xbe,0xe7,0x99,0x4e,
0x83,0xc6,0x92,0x42,0x76,0x76,0x76,0x27,0x47,0x24,0x46,0xdc,0xb0,0xf0,0x57,0x70,
0x7f,0x75,0x45,0x6c,0x70,0x5e,0x81,0xaf,0xf1,0xb4,0x6,0xeb,0xaf,0x0,0xff,0x35,
0xf2,0xeb,0x41,0x8e,0x60,0x9b,0xed,0x94,0x2e,0xb6,0xb4,0xb2,0x36,0xa1,0xba,0xce,
0xb2,0xcd,0x76,0x4a,0x7,0x5f,0xeb,0xec,0xae,0xed,0x69,0xe6,0x1c,0x76,0x73,0x1c,
0xc7,0x51,0x41,0x41,0xc1,0x59,0xaf,0x8d,0xc,0x68,0xd0,0x58,0x68,0x34,0x35,0x35,
0x11,0xd8,0x8c,0xfa,0xc,0xca,0x49,0xd1,0x96,0xe2,0x56,0xc,0xc3,0x90,0xc2,0x9c,
0xdf,0xb7,0xa9,0xf8,0x60,0x43,0x98,0x3e,0x75,0x6c,0xeb,0x1f,0x35,0x18,0xc1,0x98,
0x3f,0xb6,0xb4,0xb2,0x16,0x76,0xb9,0x85,0x36,0xdb,0xa0,0x22,0xf6,0xa6,0x92,0x8a,
0x6,0xa1,0x2a,0x66,0x42,0xb5,0x77,0x7f,0x73,0x6c,0x69,0x65,0x6d,0x6c,0x69,0x65,
0xed,0x36,0xdb,0x29,0x1d,0x78,0x92,0x3b,0x26,0xbf,0x92,0x1a,0x4e,0x27,0xf2,0x23,
0x15,0xb3,0x86,0x21,0xce,0xee,0xe0,0x59,0x1d,0xbd,0x1,0x90,0x15,0x8f,0x8b,0x8b,
0x7b,0xde,0xdf,0xdf,0x4f,0x13,0x9a,0xc6,0xf2,0x0,0x94,0x91,0x40,0x2a,0x9a,0xde,
0x7c,0x49,0x2,0x59,0x5c,0x28,0xe5,0x24,0x54,0xd7,0x59,0x12,0xde,0xa9,0xcf,0xf,
0xd5,0x25,0x3f,0x81,0xc6,0x3,0x2a,0x82,0x2d,0x16,0xb1,0xc5,0x9,0xda,0xe7,0xe2,
0x4,0xed,0x73,0xd0,0x63,0x47,0x64,0x98,0xee,0x2b,0xcc,0xf9,0x7d,0x30,0x54,0x0,
0xfc,0xc7,0x77,0x5c,0xbc,0x1a,0x4,0x99,0xf3,0x50,0x5d,0xf2,0x13,0xf8,0x7b,0x57,
0xbb,0xb9,0x48,0x24,0x9a,0x6e,0x69,0x69,0xa1,0x9,0x4d,0x63,0xf9,0x81,0xc7,0xe3,
0xcd,0x9a,0x3f,0xc4,0x96,0x56,0xd6,0x66,0xb4,0xb4,0x85,0xc0,0xf1,0x1c,0x12,0x67,
0x11,0x19,0xa6,0xfb,0xec,0x75,0x42,0xc4,0x11,0x89,0x51,0x46,0x4b,0x5b,0x88,0xaf,
0xc4,0xce,0xea,0xe8,0xd,0xa0,0x92,0x52,0x42,0x9,0x89,0x2a,0x60,0xce,0x37,0x8c,
0xf9,0xc5,0x48,0x4a,0xb9,0x1d,0x17,0xaf,0x6,0xa5,0x9e,0xfd,0x24,0x1c,0xae,0x6,
0x90,0x99,0xe6,0x86,0x6e,0x98,0x56,0x98,0xf3,0xfb,0x76,0x5c,0xbc,0x1a,0x4,0x32,
0x50,0x9c,0xcd,0x71,0xdb,0xf8,0x31,0x5b,0x7,0xc7,0x71,0x64,0xb5,0x5a,0xe7,0xa5,
0x63,0x8d,0x6,0x8d,0x5,0x81,0x5e,0xaf,0x7f,0xc0,0xd,0xb,0x7f,0x15,0xac,0x54,
0x4d,0xf2,0x23,0x15,0x53,0xe9,0xcd,0x97,0x24,0xe6,0xce,0x9b,0xb8,0xae,0xfe,0x84,
0x21,0x24,0x76,0xcb,0x37,0x82,0x28,0xe5,0xb,0x89,0x56,0xff,0xa5,0xae,0xfe,0x84,
0xc1,0xdc,0x79,0x13,0x4f,0x3e,0x79,0x2e,0x9a,0x1f,0xa9,0x98,0xa,0x56,0xaa,0x26,
0x61,0xf7,0x76,0x74,0xc,0xa5,0x4a,0xa2,0x91,0xcb,0x50,0xbe,0x4,0xce,0xe6,0x20,
0xf5,0xbe,0xf2,0x46,0x16,0x5f,0x80,0xc4,0x9,0xda,0xe7,0xc9,0xa7,0x3e,0x52,0x3a,
0xab,0x17,0x6f,0x2a,0x3e,0xd8,0x40,0x16,0x6d,0x40,0x72,0xcf,0x55,0x53,0x7,0xc,
0xf0,0x4b,0x49,0x49,0xb9,0x37,0x32,0x32,0x42,0xef,0xd2,0x34,0x96,0x37,0x40,0xae,
0x99,0x7c,0xf2,0x5c,0x34,0x8c,0x1f,0x62,0xf1,0x5,0x48,0xa2,0x49,0x7a,0x6,0x63,
0x7d,0xc4,0x9b,0x35,0xbf,0x95,0x68,0x92,0x9e,0xb1,0xf8,0x82,0xd9,0xfa,0x70,0x7a,
0xf3,0x25,0x9,0x8b,0x2f,0xf8,0x9e,0x4d,0xb0,0x63,0xed,0x9b,0x2a,0x1b,0xae,0x30,
0xe7,0xf7,0x79,0x6b,0xea,0x7,0x77,0xe1,0x8c,0x96,0xb6,0x10,0xf0,0x66,0xc7,0x3c,
0xe8,0x96,0xda,0xb8,0xab,0xb0,0xb,0xea,0xdb,0xae,0x9a,0x3a,0xa4,0x52,0xe9,0x94,
0xb3,0x56,0x4f,0x1a,0x34,0x96,0x1d,0x66,0x6,0xe7,0xa1,0x4d,0x25,0x15,0xd,0x70,
0xdc,0x6,0xb2,0x82,0xa1,0x2,0x59,0xf8,0xb1,0xc1,0x90,0xf1,0x90,0x3c,0xaa,0x77,
0x31,0xdc,0x6a,0xa1,0xe7,0x9a,0x1f,0xa9,0x98,0x82,0x4e,0xaa,0xb8,0x83,0xef,0x54,
0xc2,0xae,0xbd,0xe5,0xed,0xda,0xbd,0xe4,0x6b,0x2,0x47,0x24,0x46,0xa2,0xf8,0xc4,
0xaf,0x9c,0x35,0x75,0xd0,0xe5,0x2b,0x1a,0x2b,0xe,0xe3,0xe3,0xe3,0x85,0xe0,0x7b,
0xd,0x3b,0x2c,0xec,0x6e,0xba,0x3f,0x3e,0x99,0xb4,0x71,0x57,0x61,0x57,0xfa,0x47,
0x3f,0x13,0xbb,0xaa,0x19,0x2f,0x74,0xa4,0x37,0x5f,0x92,0xc0,0x90,0x80,0xa8,0xdc,
0x3d,0x3d,0x71,0x7,0xaa,0xab,0x63,0xf6,0x1f,0xae,0x7,0x62,0x27,0xbe,0x6b,0xcb,
0x49,0xa8,0xae,0xb3,0x48,0xd3,0x8c,0xc3,0x2c,0xbe,0x0,0xb1,0xf8,0x2,0xa4,0xda,
0xbb,0xbf,0x19,0x9a,0x3a,0xc8,0xe5,0x2b,0xfa,0x1e,0x4d,0x63,0xc5,0x62,0xc6,0xaf,
0xc,0x81,0xf7,0x35,0x83,0xc9,0x44,0x60,0xb1,0x2b,0x8a,0x4f,0xfc,0x6a,0xe3,0xae,
0xc2,0xae,0x4d,0x25,0x15,0xd,0xde,0x3a,0x9b,0xce,0x57,0xec,0xb8,0x78,0x35,0x28,
0xd2,0x94,0x7b,0x47,0xb9,0xbb,0xa8,0x1d,0x6,0xf4,0x61,0x4e,0xcc,0xf6,0xa1,0x7,
0xdb,0xd0,0x78,0x3e,0xa,0xca,0x57,0x5a,0xad,0xf6,0xd1,0xe0,0xe0,0x20,0xbd,0x4b,
0xd3,0x58,0xd9,0x80,0x2e,0x30,0x38,0xd6,0x46,0x64,0x98,0xee,0x8b,0x13,0xb4,0xcf,
0xa1,0xa1,0x21,0xb6,0xec,0xed,0xf7,0xa0,0x94,0xb4,0x58,0xb3,0xd3,0xc9,0xa6,0x7e,
0x6f,0x5c,0xbf,0xc5,0xd8,0x5c,0x69,0x2d,0x61,0xb,0x45,0x48,0x66,0x34,0xf,0x6c,
0x79,0xbb,0x76,0x2f,0x79,0x2,0x48,0xcc,0xfe,0xc3,0xf5,0xd0,0xca,0x48,0xce,0x8a,
0x4b,0xa5,0xd2,0x29,0xba,0x7c,0x45,0x63,0xd5,0x0,0x1a,0x42,0x64,0x46,0xf3,0x40,
0x46,0x4b,0x5b,0x8,0x7b,0x9d,0x10,0x9,0x55,0x31,0x13,0xa1,0xba,0xe4,0x27,0xa2,
0xf8,0xc4,0xaf,0x42,0x75,0xc9,0x4f,0x84,0xaa,0x98,0x9,0xf6,0x3a,0xe1,0xf7,0xc6,
0xee,0x38,0x12,0xe,0x62,0xe7,0xe5,0x6e,0x8e,0x37,0xa6,0x7e,0x49,0xd,0xa7,0x13,
0x37,0x57,0x5a,0x4b,0xa8,0x5a,0x17,0x63,0xcb,0xde,0x7e,0x8f,0x72,0xd4,0x91,0x39,
0xbf,0x2f,0x58,0xa9,0x9a,0x74,0x1c,0xb,0x1c,0xb3,0xff,0x70,0x3d,0x1c,0xc5,0x71,
0x36,0x67,0xb6,0x7c,0x45,0xff,0xa6,0x69,0xac,0x2a,0x40,0x43,0x8,0x94,0xbb,0x4c,
0xed,0x3d,0xac,0x84,0xea,0x3a,0xb,0x64,0xc5,0x5,0x51,0xca,0x17,0xa1,0xba,0xe4,
0x27,0xd1,0x96,0xe2,0x56,0xc7,0x31,0xbb,0x54,0x84,0x73,0x65,0xea,0x47,0xe5,0x9d,
0xee,0xca,0xd4,0x4f,0x10,0xa5,0x7c,0xc1,0xe2,0xb,0x90,0x2f,0x9d,0x54,0x70,0x8f,
0xa6,0xcb,0x57,0x34,0x56,0x2d,0x66,0xdc,0x2d,0x67,0xcb,0x44,0xd2,0x34,0xe3,0xf0,
0xba,0xe8,0x4d,0xbf,0xf,0x56,0xaa,0x26,0x83,0x95,0xaa,0x49,0x2a,0xc2,0x51,0x8d,
0xef,0xf1,0x87,0xa9,0x1f,0xd5,0x24,0x11,0x57,0x1d,0x54,0x45,0x45,0x45,0x4,0xf9,
0xfd,0xf3,0x78,0x3c,0xa4,0xd7,0xeb,0x1f,0xd0,0x32,0x50,0x1a,0xab,0x1e,0x77,0xef,
0xde,0xf5,0x78,0x80,0x1,0x55,0xbf,0xb0,0x63,0x9f,0x30,0x4,0x95,0x6f,0x7a,0x47,
0x47,0x7,0xd1,0xdd,0xdd,0x4d,0xd9,0xb2,0x38,0x97,0xb6,0x45,0xba,0xed,0x91,0x6,
0xd,0xa,0x8c,0x8f,0x8f,0x17,0x5a,0xad,0x56,0xc2,0xd9,0xd8,0x57,0x5a,0x6a,0x49,
0x83,0xc6,0x32,0xc6,0xc8,0xc8,0x8,0x51,0x55,0x55,0xf5,0x9a,0x59,0x42,0x59,0x59,
0x19,0xb1,0x90,0x3e,0x67,0x34,0xe6,0x86,0xff,0x37,0x0,0x24,0x31,0xe1,0x3e,0x36,
0xb1,0x2a,0xdc,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/amarillo.png
0x0,0x0,0x10,0xee,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x6d,0x0,0x0,0x1,0x52,0x8,0x6,0x0,0x0,0x0,0xf8,0xa3,0x51,0x9a,
0x0,0x0,0x10,0xb5,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0xff,0x6b,0x55,0xf5,
0x1f,0xc7,0xef,0xb6,0x7b,0x77,0xb7,0x39,0x97,0x7e,0xdc,0x4a,0x6c,0xd0,0x42,0x13,
0xa5,0x85,0x23,0xa4,0x24,0x4d,0xc2,0x16,0x2c,0x58,0x18,0xb4,0x24,0x44,0xfb,0x2,
0x13,0x8a,0x8,0x57,0x14,0x29,0x44,0x8,0x7e,0x64,0xd0,0xf,0x89,0x28,0x2c,0xd8,
0xf,0x3,0x83,0x44,0x44,0xa,0x12,0xa4,0x7e,0x30,0x22,0xc2,0x1f,0x2c,0xfa,0x41,
0x48,0x68,0x84,0xe0,0xbf,0xd0,0x8f,0xfd,0xf0,0xae,0xc7,0xd9,0xde,0x76,0x76,0x3c,
0xe7,0xde,0x73,0xef,0xf9,0xf6,0x3e,0xee,0xf9,0x82,0x37,0xd9,0x76,0xb7,0x73,0x77,
0x1e,0xf7,0xfd,0x3c,0xaf,0xf7,0xeb,0xfd,0x7a,0xbd,0xde,0x95,0x4a,0x3,0xbb,0x7d,
0xfb,0xb6,0x71,0x6d,0xdc,0xb9,0x73,0xe7,0x62,0x45,0xb6,0xd2,0x4e,0x9c,0x38,0x61,
0x26,0x26,0x26,0xcc,0xf0,0xf0,0xb0,0xf9,0xf7,0x7f,0x9d,0x1b,0x23,0x23,0x23,0x46,
0x94,0x96,0xed,0xc6,0x8d,0x1b,0x66,0x74,0x74,0xd4,0x74,0x75,0x55,0xcc,0xfa,0xf5,
0x1d,0xff,0x42,0xeb,0x14,0x34,0x97,0xd,0xc9,0x19,0x1c,0x1c,0x34,0xfb,0xf6,0x55,
0xcd,0x99,0x33,0xbd,0x66,0xe3,0xc6,0xe,0x27,0x81,0x9,0x9a,0xcf,0x26,0x27,0x27,
0xcd,0xd6,0xad,0x9d,0xe6,0xf2,0xe5,0x3e,0xf,0xd8,0xf8,0xf8,0xb8,0x99,0x9b,0x9b,
0x33,0xb,0xb,0xb,0xce,0x8d,0x4b,0x97,0x2e,0x9,0x1a,0xf,0x77,0x3e,0xc1,0xfb,
0xf7,0xd7,0x3c,0x59,0x9c,0x9e,0x9e,0xd6,0x4d,0x71,0xdd,0x2e,0x5c,0xb8,0xe0,0x41,
0xe3,0x19,0xd6,0xdf,0xdf,0x2f,0x60,0x65,0xb0,0x63,0xc7,0x8e,0x79,0xd0,0xea,0xf5,
0x8a,0xe7,0x35,0xea,0x8e,0x94,0xc0,0xde,0x7c,0xf3,0xcd,0xbb,0xf,0xf9,0xe5,0x7f,
0xcb,0x4,0x4d,0x26,0x68,0x32,0x41,0x13,0x34,0x99,0xa0,0xc9,0x4,0x4d,0xd0,0x64,
0x82,0x26,0x13,0x34,0x41,0x93,0x9,0x9a,0x4c,0xd0,0x4,0x4d,0xd0,0x4,0x4d,0x26,
0x68,0x32,0x41,0x13,0x34,0x99,0xa0,0xc9,0x4,0x4d,0xd0,0x64,0x82,0x26,0x13,0x34,
0x41,0x93,0x9,0x9a,0x4c,0xd0,0x4,0x4d,0xd0,0x4,0x4d,0x26,0x68,0x32,0x41,0x13,
0x34,0x99,0xa0,0xc9,0x4,0x4d,0xd0,0x64,0x82,0x26,0x13,0x34,0x41,0x93,0x9,0x9a,
0x4c,0xd0,0x4,0x4d,0xd0,0x4,0x4d,0x26,0x68,0x32,0x41,0x13,0x34,0x99,0xa0,0xc9,
0x4,0x4d,0xd0,0x64,0x82,0x26,0x13,0x34,0x41,0x93,0x9,0x9a,0x4c,0xd0,0x64,0x82,
0x26,0x68,0x32,0x41,0x93,0x9,0x9a,0xa0,0xc9,0x4,0x4d,0x26,0x68,0x82,0x26,0x13,
0x34,0x99,0xa0,0x9,0x9a,0xa0,0x9,0x9a,0x4c,0xd0,0x64,0x82,0x26,0x68,0x32,0x41,
0x93,0x9,0x9a,0xa0,0xc9,0x4,0x4d,0x26,0x68,0x82,0x26,0x13,0x34,0x99,0xa0,0x9,
0x9a,0xa0,0x9,0x9a,0x4c,0xd0,0x64,0x82,0x26,0x68,0x32,0x41,0x93,0x9,0x9a,0xa0,
0xc9,0x4,0x4d,0x26,0x68,0x82,0x26,0x13,0x34,0x99,0xa0,0xe5,0x61,0xb7,0x6f,0xdf,
0x36,0x61,0x43,0xd0,0x1c,0xb2,0xaf,0xbf,0xfe,0xda,0xbb,0x7,0xdb,0xb6,0x6d,0x33,
0xc3,0xc3,0xc3,0x77,0xef,0x4b,0x70,0xc,0xe,0xe,0x7a,0xaf,0xe1,0xb5,0xb,0xb,
0xb,0x46,0xd0,0xa,0x82,0xb5,0x73,0xe7,0x4e,0xef,0x1e,0xac,0x5f,0xdf,0x61,0x36,
0x6f,0xee,0x34,0xaf,0xbc,0x52,0x33,0x1f,0x7d,0x54,0x37,0x9f,0x7d,0xd6,0xb3,0x62,
0xf0,0x35,0xbe,0xc7,0x6b,0x36,0x6e,0xec,0xf0,0x7e,0x86,0x9f,0xe5,0x77,0x8,0x5a,
0x4e,0xb6,0x67,0xcf,0x1e,0xef,0x6f,0x7f,0xe2,0x89,0x2e,0xf3,0xc5,0x17,0xbd,0xe6,
0xe6,0xcd,0x7e,0xf3,0xe7,0x9f,0x6b,0x63,0x8d,0x3f,0xfe,0x58,0x6b,0x2e,0x5f,0xee,
0x33,0x2f,0xbc,0x50,0x35,0x5d,0x5d,0x15,0xb3,0xfc,0xbb,0x4,0x2d,0x4b,0x63,0x86,
0x6c,0xdd,0xda,0xe9,0xc1,0x2,0x40,0x5c,0x58,0x61,0xe3,0x9b,0x6f,0xfa,0xfe,0x9d,
0x71,0x5d,0x76,0xc6,0xa,0x5a,0x56,0xc0,0x98,0x5d,0xbf,0xfc,0xd2,0x9f,0x8,0x56,
0x70,0xe6,0x1d,0x38,0x50,0xcb,0x1e,0xdc,0x6a,0x84,0x36,0x33,0x33,0x63,0xfa,0xfa,
0x3a,0xcc,0xcf,0x3f,0xa7,0x7,0xcc,0xe,0xe4,0x95,0x67,0xdd,0xcb,0x2f,0xbf,0x6c,
0x4,0x2d,0x25,0xbb,0x73,0xe7,0xce,0xc5,0xfe,0xfe,0x7e,0xf3,0xd6,0x5b,0xdd,0xa9,
0x3,0xb3,0xe3,0x93,0x4f,0xea,0xa6,0x5a,0xad,0x9a,0x1b,0x37,0x6e,0x18,0x41,0x73,
0x7c,0x96,0xe5,0x36,0xdb,0x56,0x1b,0xb4,0xac,0x67,0x99,0x1d,0x2c,0xd,0x98,0x6d,
0x8b,0x8b,0x8b,0x46,0xd0,0x12,0xd8,0xf5,0xeb,0xd7,0xbd,0xbf,0x93,0xf5,0x56,0xd6,
0xd0,0x16,0x16,0x7a,0xbd,0x6b,0x65,0xb2,0xf8,0x5e,0x4d,0xd0,0x96,0x6f,0xa0,0xb7,
0xb6,0x8a,0x73,0xe3,0x91,0xd0,0x1f,0x7f,0x5c,0xd3,0x96,0x87,0xc9,0xcf,0x71,0xad,
0xd9,0xd9,0x59,0x41,0x4b,0x62,0xc7,0x8e,0x1d,0xf3,0x16,0xc1,0xcd,0x9e,0x67,0x17,
0x2f,0xf6,0x99,0xb1,0xb1,0x2e,0xef,0xb5,0xdc,0x17,0x9e,0x81,0x2c,0xa0,0xaf,0x5e,
0x5d,0xd3,0x92,0xfb,0xcf,0x73,0x2d,0x93,0x7b,0xba,0x9a,0xa0,0xf1,0xf7,0xd,0xf,
0x77,0x36,0xbc,0xd9,0xb3,0xb3,0x3d,0x1e,0x2c,0xd6,0x70,0xc,0x5e,0xcf,0xa2,0x19,
0x0,0x84,0xb8,0x58,0x44,0xc7,0x5,0xc7,0xcf,0x12,0xa3,0x14,0xb4,0xc,0xa1,0x31,
0x3,0x99,0x55,0x87,0xf,0xd7,0xbc,0x67,0x92,0x9d,0x69,0xc0,0x42,0x52,0xf7,0xed,
0xab,0x7a,0xf0,0xe2,0x86,0xba,0xb8,0xd6,0xc8,0xc8,0x88,0xa0,0x65,0x9,0xed,0xed,
0xb7,0xbb,0x3d,0x50,0x47,0x8f,0xd6,0xcd,0xa3,0x8f,0xf6,0x99,0x93,0x27,0x4f,0x9a,
0xb,0x17,0x2e,0x98,0x23,0x47,0x8e,0x98,0x87,0x1f,0xae,0x9a,0x13,0x27,0x7a,0x5a,
0x72,0x64,0x4,0x2d,0x7,0x68,0x7b,0xf7,0x56,0xbd,0x99,0xc6,0x98,0x9a,0x9a,0x32,
0x3f,0xfc,0xf0,0xc3,0xdd,0xf1,0xd4,0x53,0x4f,0x79,0x33,0x8e,0xef,0x11,0xe5,0x17,
0x34,0x47,0xa0,0xe1,0x7c,0x58,0x68,0x7,0xf,0x1e,0x14,0xb4,0xb2,0xc8,0x23,0x50,
0x58,0x18,0x8f,0x8c,0xac,0x33,0xa7,0x4f,0x9f,0xf6,0xe4,0xf1,0xfd,0xf7,0xdf,0xf7,
0xe4,0x71,0x7a,0xba,0x5b,0xf2,0xe8,0x1a,0x34,0x3c,0x43,0x9e,0x69,0x40,0x3b,0x7f,
0xbe,0xef,0xae,0x23,0xc2,0x7f,0x71,0x44,0xf6,0xef,0xaf,0xc9,0x11,0x71,0xd5,0xe5,
0xaf,0xd7,0x2b,0xde,0xf3,0xd,0x57,0xbf,0xe2,0xed,0x4c,0x2f,0xb9,0xff,0xc0,0x9b,
0x9f,0xef,0x6d,0xc9,0xe5,0x17,0xb4,0x1c,0xa0,0x31,0x0,0x3,0x24,0x7b,0x5f,0x80,
0xc5,0xf3,0x8e,0x45,0x77,0x2b,0x51,0x11,0x41,0xcb,0x11,0x9a,0x8d,0x68,0x10,0x8a,
0x62,0xb4,0xbb,0x23,0x20,0x68,0x39,0x43,0x4b,0x63,0x8,0x9a,0xa0,0x9,0x9a,0xa0,
0x9,0x9a,0xa0,0x9,0x9a,0xa0,0x9,0x9a,0xa0,0x9,0x9a,0xa0,0x9,0x5a,0xbe,0xd0,
0x58,0x80,0x13,0x3c,0xa6,0x18,0x83,0xf0,0x97,0xa0,0x39,0xe,0x8d,0x64,0x1f,0x2,
0xc8,0xa4,0xe4,0x8d,0x8d,0x8d,0x99,0x2d,0x5b,0xd6,0xde,0x93,0x43,0x22,0x68,0xe,
0x41,0x63,0x37,0x80,0xc2,0xd,0x6a,0xd8,0x6c,0x16,0x31,0xa5,0x4e,0xc4,0x28,0xd9,
0x1d,0x10,0x34,0x87,0xa0,0x21,0x87,0x27,0x4f,0xf6,0x78,0x7b,0x6e,0x93,0x93,0x93,
0x2b,0xee,0xd5,0x72,0x85,0xe8,0x8a,0xbd,0x36,0x41,0x2b,0x18,0x9a,0x95,0x43,0xb2,
0x86,0xc3,0x72,0x19,0x5,0xcd,0x31,0x68,0x7e,0x39,0xfc,0xe9,0xa7,0x9f,0x42,0xef,
0x91,0xa0,0x39,0x2,0xad,0x91,0x1c,0xa,0x9a,0x83,0xd0,0x48,0x29,0xa0,0x40,0x30,
0x4a,0xe,0x5,0xcd,0x31,0x68,0xb8,0xee,0x4b,0xd9,0xc5,0xd1,0x72,0x28,0x68,0xe,
0x41,0xfb,0xfc,0xf3,0x1e,0x2f,0x55,0xae,0x99,0x1c,0xa,0x9a,0x3,0xd0,0x90,0xc3,
0x83,0x7,0x6b,0xa6,0x5e,0xaf,0xb6,0x55,0xe9,0x22,0x68,0x39,0x43,0x6b,0x47,0xe,
0xb,0x85,0x46,0xf9,0xf,0x17,0x23,0x6d,0x6c,0xd7,0xae,0x5d,0xab,0xe,0x1a,0xc0,
0xda,0x91,0xc3,0x42,0xa1,0x91,0x41,0xcb,0xc5,0xb6,0x6f,0xef,0xf4,0xe2,0x68,0xab,
0x9,0x1a,0xeb,0xaf,0xe1,0xe1,0x5a,0x2a,0x85,0x7f,0xb9,0x42,0xa3,0xda,0x1f,0xb7,
0x96,0x94,0x67,0x24,0x62,0x7a,0x7a,0xda,0xac,0x16,0x68,0x44,0xe7,0x27,0x26,0x26,
0x52,0xf9,0x7b,0x73,0x85,0x86,0x51,0x85,0x4f,0xba,0x33,0x39,0x7e,0x80,0xa3,0x79,
0x9,0x9f,0x3e,0xca,0x5d,0xcb,0x32,0xae,0x5e,0xbd,0x6a,0x5a,0x85,0xf6,0xf4,0xd3,
0xe9,0x75,0xd8,0x99,0x9b,0x9b,0xcb,0x2f,0x60,0x8c,0xdd,0xbc,0x79,0xd3,0xeb,0xac,
0x46,0xd1,0x9c,0xcd,0xae,0xb5,0x79,0xec,0x65,0x1a,0xc8,0x7b,0x23,0x67,0x2a,0x8,
0xd,0x8f,0xf1,0xf8,0xf1,0xba,0xf7,0xb7,0x73,0x73,0x93,0x8c,0xcd,0x9b,0xbb,0xef,
0x49,0x6a,0xcd,0x14,0x1a,0xc6,0x16,0xc3,0xe8,0xe8,0xe8,0xdd,0xca,0x47,0x66,0x1e,
0x9f,0xc4,0x32,0xc,0x64,0x8e,0xb4,0x6d,0x22,0x18,0xbc,0x6f,0x66,0xf,0x1f,0xc4,
0x38,0x8e,0x8,0x81,0x60,0x4a,0x97,0xf8,0x7a,0xbb,0x83,0x6b,0x9f,0x3b,0xd7,0x9b,
0xdf,0x26,0x68,0xd0,0x90,0x1a,0xdb,0xf3,0x30,0xe9,0xa7,0x2f,0xaf,0x61,0x7b,0x33,
0xa2,0x10,0xdf,0x7f,0xff,0x9f,0xc4,0xa7,0x19,0xe5,0x77,0x2a,0xdd,0xe0,0x7e,0xb1,
0x5b,0xb7,0x6e,0x99,0x43,0x87,0xe,0x99,0xdd,0xbb,0xbb,0xee,0xd6,0x4b,0x53,0x5f,
0x16,0x7,0xda,0xb5,0x6b,0x6b,0xee,0xe9,0xeb,0xd8,0xca,0xe0,0x7a,0x61,0xe5,0x4f,
0x82,0x16,0xd3,0xc6,0xc7,0xc7,0xbd,0x99,0x86,0x4c,0x6,0xd7,0x9d,0x61,0xd0,0xfc,
0x75,0x68,0x49,0x6,0x2d,0x2b,0x4,0x2d,0x81,0x17,0xc7,0x4d,0xe4,0x39,0xb7,0x2c,
0x9b,0x91,0xd0,0x88,0x33,0x3e,0xf7,0xdc,0x3,0xa9,0x78,0xca,0x7b,0xf7,0xee,0xf4,
0xc2,0x60,0xfe,0x46,0x31,0x82,0xd6,0x82,0x4c,0x2,0xd,0xaf,0x90,0x1e,0x58,0x80,
0xb3,0xcf,0xbe,0x53,0xa7,0x36,0xac,0xf0,0xf0,0xb8,0xa9,0xaf,0xbd,0xf6,0x9a,0x49,
0xf3,0xba,0xb9,0xad,0xd3,0xee,0x27,0xf3,0x2f,0x72,0x3f,0xfe,0xb8,0x6e,0x36,0x6d,
0xfa,0xcf,0xcb,0xb,0x7a,0x78,0xcc,0xc,0xa0,0x12,0x60,0x28,0xdd,0xe2,0xfa,0x7e,
0x85,0x46,0xdf,0x45,0x5a,0xdd,0x36,0xda,0x99,0x26,0x12,0xc4,0x3a,0xad,0xdd,0x40,
0xb1,0xa0,0xe5,0xc,0xcd,0x82,0x4b,0xb2,0x25,0x23,0x68,0x39,0x43,0xfb,0xed,0xb7,
0xfe,0xc4,0x9b,0x9f,0x82,0x96,0x23,0x34,0x42,0x76,0x3,0x3,0x4b,0x3d,0x43,0x6c,
0xa7,0xf0,0x24,0xfb,0x6a,0x82,0x96,0x21,0x34,0x5c,0x72,0xbe,0xbe,0x63,0xc7,0xa8,
0xe7,0x39,0x12,0xaf,0x4,0xa0,0x75,0xd5,0xdb,0xdd,0xc1,0x16,0xb4,0xc,0xa1,0xd1,
0x95,0x7,0x50,0xd6,0x63,0xb4,0x31,0x57,0x16,0xe3,0xfe,0x96,0x13,0xad,0xca,0xa5,
0xa0,0x65,0x8,0x8d,0xe0,0x70,0xd8,0x8d,0x24,0x4,0x66,0xbb,0xf5,0xb4,0x23,0x97,
0x82,0x56,0x0,0x34,0x1b,0x4d,0x9,0xca,0x65,0xb3,0x74,0x70,0x41,0x2b,0x18,0x5a,
0x94,0x5c,0xc6,0xc9,0x34,0x16,0xb4,0x2,0xa1,0x5,0xe5,0x12,0x58,0x56,0x2e,0x1b,
0xe5,0xf4,0xb,0x9a,0x3,0xd0,0xfc,0x72,0x89,0x3c,0x36,0x93,0x4b,0xc5,0x1e,0x1d,
0x81,0xe6,0x97,0x4b,0x66,0x98,0x6d,0x3a,0x1d,0x94,0x4b,0xa,0xa,0x5f,0x7f,0x7d,
0x4a,0x51,0x7e,0x57,0xa0,0xf9,0xe5,0x12,0x48,0x61,0x72,0xc9,0xf5,0x48,0x7b,0xd0,
0x7e,0x9a,0x63,0xd0,0xa2,0xe4,0x92,0xc5,0xf8,0x99,0x33,0xbd,0xa1,0x7,0x2e,0x8,
0x9a,0x3,0xd0,0xa2,0xe4,0x52,0x39,0x22,0x8e,0x43,0xf3,0xcb,0x25,0x11,0x13,0xf2,
0x4b,0x4,0xad,0x24,0xd0,0x30,0xbc,0xc7,0xa1,0xa1,0x5a,0xe4,0x8c,0x13,0xb4,0x14,
0xa1,0x5,0x73,0x47,0x92,0xd8,0x52,0xa2,0x6a,0xa7,0xa0,0x65,0x9,0x8d,0xc,0x6a,
0xa2,0x1d,0x67,0xcf,0x9e,0x35,0x51,0x87,0x8f,0xc7,0x1d,0xf4,0xeb,0xa7,0xe9,0xcb,
0xbb,0xef,0x76,0xb,0x5a,0x96,0xd0,0xac,0xc7,0xc7,0xf3,0xa8,0x92,0x30,0x6d,0xae,
0xd9,0x9,0x51,0x82,0x96,0x22,0x34,0x3b,0xe3,0x90,0xca,0x24,0x83,0xb3,0x67,0xe4,
0x3d,0xe6,0x8,0x4d,0x69,0xe1,0x25,0x84,0xc6,0x5e,0x59,0x92,0x54,0x70,0x86,0xbf,
0xac,0x49,0xd0,0x72,0x78,0xa6,0xe1,0x8c,0xe8,0x99,0x56,0x12,0x68,0xac,0xa9,0xd8,
0x8d,0xe6,0x6c,0xb4,0xa4,0xde,0x23,0x81,0xe2,0xc7,0x1f,0x1f,0xf0,0x52,0x13,0x4,
0x2d,0xe3,0x75,0x1a,0xc9,0xa9,0x5a,0xa7,0xad,0xd2,0x88,0xc8,0xa5,0x4b,0x97,0xcc,
0xc0,0x40,0x4d,0x33,0xad,0x2c,0xd0,0x68,0xe5,0x41,0x9a,0x5d,0xa3,0x43,0x83,0x4,
0xcd,0x11,0x68,0xa4,0xde,0xed,0xd9,0xb3,0xc7,0x5b,0x9c,0x37,0x3b,0x96,0x4b,0xd0,
0x1c,0x80,0xf6,0xed,0xb7,0xdf,0x7a,0xcf,0x43,0xce,0x53,0xb3,0x5e,0xa3,0x3d,0xfd,
0x49,0x95,0xa0,0xe,0x42,0xb3,0x72,0x48,0xb2,0xab,0xdd,0xb9,0x6,0x9c,0x3d,0x18,
0x4f,0x95,0xa0,0xe,0x41,0xf3,0xcb,0xa1,0xdf,0xe1,0x40,0x1a,0xf9,0x1a,0x1b,0xa2,
0xec,0x68,0xab,0x12,0xd4,0x11,0x68,0x56,0xe,0x59,0xd7,0xd9,0xf6,0xed,0xcc,0x32,
0x66,0xdb,0xd2,0xac,0x7b,0x5b,0xd9,0x58,0x2e,0x41,0xb3,0x72,0xc8,0xec,0xb1,0xcf,
0x2b,0x66,0x11,0x72,0x8,0xc8,0x2f,0xbf,0xfc,0x52,0x79,0x8f,0xae,0x40,0x8b,0x92,
0x43,0x5c,0xfb,0x46,0x8d,0x65,0x4,0xad,0x20,0x68,0x51,0x72,0x48,0x51,0x46,0x50,
0xe,0x5,0xcd,0x1,0x68,0x51,0x72,0x48,0x31,0x46,0x98,0x1c,0xa,0x5a,0x8e,0xd0,
0x80,0x12,0xec,0x6b,0x49,0x96,0x70,0xab,0x72,0x28,0x68,0x39,0x42,0xb3,0xb9,0xf8,
0x80,0x22,0x9b,0x8a,0x24,0x9f,0x76,0xe4,0x50,0xd0,0x72,0x84,0x66,0xc1,0xe0,0x5,
0xb2,0x1f,0xd6,0xae,0x1c,0xa,0x5a,0xce,0xd0,0xec,0x46,0xa8,0x7f,0x3,0xd3,0xca,
0x21,0x8b,0x65,0x7b,0x52,0x93,0xa0,0x39,0x6,0xcd,0x3f,0xeb,0x90,0x43,0x66,0x1d,
0x59,0xc3,0x69,0x5c,0x57,0xd0,0x32,0x86,0x46,0x15,0xc,0x8e,0xc9,0x72,0x23,0xb4,
0x8a,0xa0,0x39,0xe,0x8d,0xa6,0x67,0xf,0x3d,0x34,0xd8,0x96,0x1c,0xa,0x5a,0x41,
0xd0,0xb8,0xa9,0x69,0x1d,0x20,0x21,0x68,0x39,0x41,0x23,0xd9,0x74,0x74,0x74,0xc8,
0x4b,0xd0,0x49,0x92,0xe0,0x43,0xb0,0xf8,0x8d,0x37,0xe,0x79,0xdb,0x33,0x8a,0xf2,
0xe7,0xf0,0x4c,0xa3,0x95,0x6d,0x25,0x85,0x4e,0xe5,0xaa,0x4,0xcd,0xd9,0x7b,0x4,
0x5c,0xd2,0xc4,0x55,0x55,0x82,0xe6,0x8,0x4d,0x69,0xe1,0x25,0x84,0xc6,0x22,0x9b,
0x4d,0xcd,0xa4,0xc5,0x18,0x61,0x85,0x85,0x82,0x96,0xe1,0x3a,0x8d,0x9e,0x20,0x49,
0xce,0x5,0x20,0xec,0xf5,0xc8,0x23,0x9d,0xf7,0x24,0xf7,0x8,0x5a,0x6,0xd0,0x8,
0x1c,0xd3,0x42,0x70,0x71,0x71,0x31,0xf1,0x8d,0x25,0xcd,0x9c,0x30,0x98,0xff,0x54,
0x79,0x41,0xcb,0x68,0x9d,0x96,0x56,0xb7,0x70,0xad,0xd3,0x72,0x82,0xc6,0xfe,0x19,
0x85,0xee,0xf3,0xf3,0xf3,0x8a,0x88,0x94,0xe9,0x99,0x46,0x74,0xbf,0xd5,0xbd,0x33,
0x41,0x73,0xc0,0xe5,0x6f,0x75,0x97,0x5a,0xd0,0xa,0x82,0x86,0xc3,0x40,0x7b,0xa4,
0x34,0x36,0x40,0x5,0x2d,0x7,0x68,0xfe,0x4a,0xd0,0x38,0x89,0xa8,0x82,0x56,0x30,
0x34,0x7f,0x25,0xe8,0xf5,0xeb,0xd7,0x4d,0xa3,0x94,0xef,0x56,0xe4,0x52,0xd0,0x32,
0x84,0x16,0x56,0x9,0xea,0x4f,0x9f,0xb,0x16,0x57,0xc4,0x95,0x4b,0x41,0xcb,0x18,
0x5a,0xd8,0x8d,0x8c,0x2a,0x63,0x8a,0x2b,0x97,0x82,0x56,0x0,0x34,0x2c,0xaa,0x60,
0x30,0x8e,0x5c,0xa,0x5a,0x41,0xd0,0x82,0x72,0x19,0x56,0x8b,0x16,0x25,0x97,0x82,
0x56,0x30,0xb4,0x38,0x72,0x9,0x58,0x41,0x73,0xc,0x5a,0x1c,0xb9,0xe4,0x7b,0xf6,
0xf8,0x13,0x3a,0xd2,0x71,0x5d,0xd6,0x7e,0x82,0x56,0x20,0xb4,0x38,0x72,0x49,0xfa,
0x1d,0x41,0xe7,0xc7,0x1e,0x1b,0xf2,0x80,0xd9,0xef,0xb,0x5a,0xc1,0xd0,0x30,0x9e,
0x63,0x51,0x72,0x39,0x34,0xd4,0x11,0xda,0xf3,0x51,0xd0,0xa,0x86,0x86,0xe1,0x39,
0xe2,0x41,0x6,0xe5,0xf2,0xf7,0xdf,0x95,0x6e,0xe0,0x2c,0x34,0x6b,0xac,0xd9,0x90,
0xcb,0xa8,0x8e,0xaa,0x82,0xe6,0x20,0x34,0x2b,0x97,0x64,0x27,0xcf,0xce,0xf6,0x8,
0x5a,0x59,0xa0,0x61,0xa4,0x93,0x3f,0xf0,0x40,0xbf,0x7a,0x18,0x67,0xd,0x8d,0xf8,
0xa2,0xba,0xd0,0x95,0xc,0x9a,0xbf,0x12,0x74,0x61,0x61,0x21,0xd1,0x98,0x99,0x99,
0x31,0x2f,0xbd,0xd4,0xa3,0xbe,0xfc,0x59,0x43,0xf3,0x57,0x82,0x56,0x12,0xa6,0x82,
0xe3,0x45,0x86,0x65,0x16,0xb,0x5a,0x6,0xd0,0xec,0x46,0x28,0x8d,0xc8,0x92,0x8c,
0x46,0xc0,0x4,0x2d,0x3,0x68,0x4a,0xb,0x2f,0x21,0xb4,0xf,0x3e,0xa8,0x7b,0xe,
0x4,0x37,0xb6,0xdd,0xe1,0xdf,0x34,0x15,0xb4,0xc,0xa1,0x71,0x93,0xaf,0x5c,0x59,
0x63,0x1e,0x7c,0x70,0x6d,0xa2,0x54,0x70,0x9b,0xe,0x4e,0x26,0x57,0x14,0x38,0x41,
0x4b,0x9,0x1a,0x5f,0x23,0x77,0xbf,0xd9,0xb9,0xd5,0x71,0xd,0x70,0x93,0x93,0x55,
0x41,0x2b,0xcb,0xe2,0x1a,0xa3,0x79,0x4c,0x58,0x41,0xa1,0xa0,0x39,0xa,0x8d,0x16,
0x16,0x2c,0x1d,0xa2,0xbc,0x48,0x41,0x73,0x8,0x9a,0x3d,0x62,0x32,0xac,0xbc,0x49,
0xd0,0x1c,0x84,0x66,0xf,0x73,0x25,0x1b,0x59,0xeb,0xb4,0x12,0x40,0xb3,0xa7,0xcc,
0xd3,0xe1,0xc7,0x7a,0x8c,0x64,0x27,0xe3,0xfa,0xab,0x12,0xd4,0x31,0x68,0x56,0xe,
0x49,0x25,0xf7,0x1f,0x9e,0x40,0x56,0xb2,0x3d,0x3c,0x2f,0x2c,0x68,0x2c,0x68,0x5,
0x41,0xb,0x93,0x43,0x9e,0x63,0xcc,0x2e,0x36,0x42,0x69,0x3f,0xc8,0x35,0x67,0x67,
0xff,0xef,0x81,0x53,0x25,0x68,0xc1,0xd0,0xa6,0xa7,0xa7,0x43,0xe5,0x90,0x5a,0x0,
0x5c,0x7d,0xff,0x5a,0x4f,0x29,0x74,0x5,0x43,0xb3,0xb9,0x20,0x51,0x72,0xc8,0xb6,
0x4e,0xa3,0xeb,0xa,0x5a,0xce,0xd0,0x6c,0xd6,0x55,0x23,0x39,0x6c,0x76,0x5d,0x41,
0xcb,0x11,0x9a,0x4d,0xd8,0x89,0x23,0x87,0x82,0x56,0x30,0xb4,0x66,0x72,0x48,0x26,
0x71,0x2b,0xd7,0x15,0xb4,0x94,0xa1,0x5,0x3,0xc6,0xcd,0xe4,0x30,0x98,0xb3,0x2f,
0x68,0x5,0x40,0xb,0x6e,0xcd,0x44,0xc9,0x21,0x20,0x29,0xc2,0x68,0xe7,0xba,0x82,
0x96,0x32,0x34,0x3b,0x48,0x7b,0x1b,0x1b,0xeb,0x5a,0x91,0x29,0xec,0x97,0x43,0x5b,
0x58,0x21,0x68,0xe,0x41,0xb,0xe6,0x8b,0xb4,0x2a,0x87,0x82,0x56,0x20,0x34,0x9e,
0x63,0xed,0xc8,0xa1,0xa0,0x15,0x4,0xd,0x60,0x2f,0xbe,0x58,0x6d,0x4b,0xe,0x5,
0xad,0x20,0x68,0xec,0x38,0xe3,0xea,0xa7,0x7d,0x5d,0x41,0xcb,0x10,0x1a,0x1,0xde,
0x89,0x89,0x89,0x54,0x6e,0x2a,0x3d,0x49,0x2a,0xaa,0x4,0xcd,0x1e,0xda,0xd2,0x5e,
0x58,0xaf,0x57,0xc9,0x49,0xab,0xf7,0x24,0xe3,0xd9,0x67,0x9f,0x50,0x25,0x68,0x5e,
0x8e,0x8,0xe0,0x6c,0xcb,0xa5,0x76,0x7,0x3b,0x1,0x87,0xf,0xd7,0xb4,0x9f,0x96,
0xb7,0xcb,0x9f,0x24,0x3d,0xdc,0x7f,0xd0,0x90,0xa0,0xe5,0x4,0x4d,0x69,0xe1,0x25,
0x94,0xc7,0xa4,0xe9,0xe1,0xc,0x15,0xca,0xe7,0x4,0xd,0x59,0xc3,0x11,0xc1,0x83,
0x4c,0xea,0x88,0xd0,0x92,0x82,0x43,0x19,0xe4,0x88,0x94,0xc8,0xe5,0x57,0xf3,0x97,
0x1c,0x17,0xd7,0xe3,0xe3,0xe3,0x5a,0x5c,0x97,0x2d,0x8c,0xb5,0x7b,0x77,0x57,0x68,
0xce,0x87,0xa0,0x39,0xec,0x88,0xd8,0x80,0x71,0xb3,0x74,0x2,0x41,0x73,0xcc,0xe5,
0xb7,0xc5,0xf3,0xec,0x68,0x47,0x25,0xee,0x8,0x9a,0x3,0xd0,0x38,0xf0,0x8e,0x43,
0xea,0x6c,0x3a,0x37,0x5e,0x1f,0xe7,0xce,0xf4,0xf5,0x75,0xb4,0x25,0x97,0x82,0x96,
0x31,0x34,0xd6,0x66,0xa4,0x1b,0x20,0x89,0x40,0x2,0x96,0x75,0xd5,0x81,0xb8,0x75,
0x6b,0x67,0xcb,0x72,0x29,0x68,0x19,0x42,0x23,0xa5,0x80,0x1d,0x6a,0xb,0xc4,0xa6,
0x7d,0x23,0x8f,0x36,0xb1,0xc7,0x2f,0x97,0x71,0x4f,0xe5,0x15,0xb4,0xc,0xa1,0x85,
0xa5,0xd0,0xd9,0x2,0xb,0x66,0x58,0x98,0x5c,0xc6,0x39,0xff,0x5a,0xd0,0x72,0x86,
0x66,0xd,0x38,0x51,0x72,0xd9,0xec,0xa4,0x79,0x41,0x2b,0x8,0x5a,0x33,0xb9,0x6c,
0x74,0x88,0xb9,0xa0,0x15,0x8,0xcd,0xca,0x25,0x8e,0x48,0x2b,0x72,0x29,0x68,0x5,
0x43,0xb3,0x86,0xeb,0x1f,0x57,0x2e,0x5,0xcd,0x11,0x68,0x18,0x8b,0x6d,0xbc,0xc8,
0x66,0x72,0x39,0x37,0x77,0xce,0x83,0xa4,0xa2,0x42,0x7,0xa0,0x61,0x2c,0xf,0xc2,
0xe4,0x92,0x74,0x72,0x52,0xd,0xd6,0xad,0x5b,0xe7,0xed,0x18,0x4,0x7b,0x19,0xb,
0x5a,0x81,0xd0,0x9a,0xc9,0xa5,0xa,0xe5,0x1d,0x86,0xe6,0x97,0xcb,0x3,0x7,0x6a,
0xd,0x7b,0x88,0x8,0x9a,0x43,0xd0,0xfc,0x72,0xc9,0xee,0x80,0x9a,0xbf,0x94,0x4,
0x9a,0x5f,0x2e,0x1b,0x35,0x81,0x11,0x34,0x7,0xa1,0x61,0x14,0x6e,0xa8,0xa1,0x59,
0xc6,0xd0,0x8e,0x1e,0x4d,0xbf,0x75,0x20,0x5b,0x3c,0x82,0x96,0x21,0x34,0xbc,0xbe,
0xaf,0xbe,0xea,0xf3,0xb6,0x66,0x92,0xa6,0x83,0x6f,0xd9,0xb2,0xc5,0xdb,0x35,0x88,
0x7a,0xae,0x9,0x5a,0x4a,0xd0,0xfc,0x95,0xa0,0x49,0x73,0x1d,0x99,0x61,0x72,0x44,
0x72,0x84,0xa6,0xc,0xe3,0x12,0x42,0x4b,0xa3,0xc5,0xbb,0xd6,0x69,0x39,0x42,0x4b,
0xeb,0x30,0x5,0xaa,0x6d,0x74,0x98,0x42,0xe,0xd0,0xb8,0xc9,0x94,0x25,0x91,0xa4,
0x4a,0xb0,0x37,0xc9,0xb1,0x25,0x6c,0xd1,0x10,0x38,0xf6,0x7,0x89,0x5,0x2d,0x3,
0x68,0xc4,0x9,0x89,0xce,0xa7,0x75,0x3d,0x22,0x23,0x3a,0x20,0xa8,0x44,0x8b,0xeb,
0xc5,0xc5,0x45,0xef,0x3,0xc0,0x11,0x93,0x82,0x56,0x2,0x68,0xf6,0x48,0x65,0x4e,
0xd2,0xd0,0x61,0xa,0x25,0x80,0x66,0x4f,0xe3,0xd5,0xb1,0x25,0x25,0x81,0x66,0xcf,
0xbd,0x26,0x12,0xa2,0x75,0x9a,0xe3,0xd0,0xfc,0xdb,0x31,0xd6,0x5b,0xb4,0xbb,0xd7,
0xc0,0x39,0x7e,0xbc,0x2e,0x68,0x2e,0x41,0x63,0xe3,0xd3,0xca,0xa1,0x5d,0x50,0xb3,
0x74,0x60,0x5b,0xc6,0x7f,0x38,0xb9,0x2a,0x41,0x1d,0x81,0xc6,0x9e,0x59,0x50,0xe,
0x69,0xe4,0xc9,0xc2,0x9a,0x6e,0x3f,0x34,0xf8,0xe4,0x75,0xaa,0x4,0x75,0x0,0x5a,
0x23,0x39,0x24,0x99,0x27,0x98,0xfb,0xa8,0x14,0xba,0x82,0xa1,0x35,0x93,0xc3,0xb0,
0x2c,0x63,0x41,0x2b,0x10,0x5a,0x23,0x39,0x6c,0x94,0xcf,0x2f,0x68,0x5,0x40,0x6b,
0x96,0xdb,0xd8,0xac,0x72,0x46,0xd0,0x32,0x86,0x6,0x9c,0xa0,0x1c,0x86,0x65,0x11,
0x37,0x92,0x43,0x41,0xcb,0x11,0x1a,0xb3,0x88,0x73,0xcf,0xce,0x9e,0x3d,0x6b,0x6e,
0xdd,0xba,0x65,0xa2,0x12,0x50,0x9b,0xc9,0xa1,0xa0,0xe5,0x8,0xcd,0x6e,0x80,0xda,
0xce,0x73,0x49,0xa,0x9,0x5,0x2d,0x47,0x68,0xb6,0xee,0x9a,0xd7,0xb4,0x52,0x83,
0x26,0x68,0x5,0x43,0xb,0x4a,0x66,0x9c,0x6a,0x4f,0x41,0x73,0x4,0x1a,0xc0,0x70,
0xf1,0x5b,0x95,0x43,0x41,0x2b,0x8,0xda,0xf9,0xf3,0x7d,0x66,0x68,0xa8,0xd6,0x96,
0x1c,0xa,0x5a,0x41,0xd0,0x48,0x13,0x20,0xd8,0x9b,0xf6,0x75,0x5,0x2d,0x43,0x68,
0x7b,0xf7,0x56,0xbd,0xe7,0x58,0xd2,0x9e,0xfc,0x18,0x4b,0x8,0xbc,0x4e,0x66,0xaf,
0xa0,0x65,0x8,0xd,0x17,0x9f,0x76,0x4b,0x78,0x8c,0xdc,0xdc,0x76,0x7,0x8b,0x75,
0xd6,0x7e,0xc1,0x74,0x3a,0x41,0xcb,0xc8,0x11,0xb1,0xe7,0xcc,0x10,0x29,0x49,0x32,
0xce,0x9d,0xeb,0xd5,0x26,0x68,0x9e,0x2e,0xbf,0xd2,0xc2,0x5,0x4d,0xd0,0x4,0x6d,
0x15,0x41,0xfb,0xf4,0xd3,0xba,0x99,0x99,0x49,0xf,0x1a,0x4e,0xb,0x39,0x20,0x3c,
0xff,0x88,0x4f,0x36,0xca,0xe1,0x17,0xb4,0x36,0xa1,0x31,0xcb,0xa8,0xfa,0x4c,0x3,
0x1a,0xc0,0xe8,0x66,0x50,0x9,0x14,0x5f,0x44,0xe5,0xf0,0xb,0x9a,0x3,0xd0,0x90,
0x5a,0x7e,0x27,0xbb,0xd9,0x94,0x38,0x5d,0xbe,0xbc,0x14,0xfa,0x8a,0x2a,0xdb,0x15,
0x34,0x7,0xa0,0xe1,0xd2,0x33,0xb3,0xfc,0xe9,0x71,0x93,0x93,0x55,0xf,0x8a,0xa0,
0x39,0xa,0x8d,0x2,0xb,0x52,0xe,0xfc,0x7,0x1,0x71,0x8,0xec,0x93,0x4f,0xfe,
0x4f,0xd0,0x5c,0x85,0x6,0x2c,0xe4,0x90,0x74,0x3a,0x66,0x1d,0xe1,0xaf,0x7a,0xbd,
0xd2,0x34,0x35,0x5c,0xd0,0xa,0x84,0x66,0xb7,0x70,0x98,0x5d,0x80,0x20,0xd0,0xac,
0x5c,0xfe,0x12,0x40,0xb,0x76,0x98,0xd3,0x3a,0x4d,0xd0,0x4,0x2d,0xb,0x68,0x8a,
0x88,0x8,0x9a,0x4c,0xd0,0x4,0x4d,0xd0,0x4,0x4d,0xd0,0x4,0xed,0x7e,0x87,0xf6,
0xce,0x3b,0xdd,0x66,0xd3,0xa6,0xff,0xba,0xc6,0x85,0xa5,0x4,0x8,0x9a,0x3,0x46,
0x51,0x5,0xd0,0xde,0x7b,0xaf,0xdb,0xbc,0xfa,0xea,0x52,0x85,0x8c,0x4d,0xc0,0x39,
0x75,0x6a,0x43,0xe4,0x41,0xe2,0x82,0x56,0xa0,0x2d,0x27,0x9e,0x2e,0xcf,0xae,0x61,
0xf3,0xf7,0xdf,0x7f,0x1b,0x6b,0x34,0xd6,0x6c,0x16,0x99,0x17,0xb4,0x2,0x8c,0x46,
0x65,0x4,0x76,0x9,0xf0,0x72,0x1c,0xb2,0xdf,0x4,0xcd,0x41,0x59,0x24,0x1f,0x9f,
0xd3,0x74,0x49,0xb,0x60,0x2b,0xe5,0xf4,0xe9,0xd3,0x82,0x96,0x87,0x7d,0xf8,0xe1,
0x87,0x6d,0x25,0x8b,0x22,0x89,0xcc,0xb0,0x2b,0x57,0xd6,0x78,0xff,0xa5,0xb3,0x8e,
0x5f,0x1a,0x2d,0xb4,0x75,0xeb,0x3a,0xcc,0x77,0xdf,0xad,0x11,0xb4,0x34,0x8d,0x1b,
0xb,0x0,0xf6,0xac,0xe2,0x26,0x8a,0xf2,0x5a,0xb6,0xfe,0xf9,0x37,0xb2,0x48,0xaa,
0x37,0xfd,0x3d,0x82,0xc6,0xef,0x1e,0x18,0xe8,0xf0,0xc0,0xa6,0xd1,0x59,0xb5,0xd9,
0x60,0xb7,0x7b,0x55,0x41,0xa3,0xa3,0x77,0xdc,0x4f,0x34,0x0,0x78,0xfd,0x33,0xcf,
0x3c,0x68,0x68,0x36,0xf6,0xd7,0x5f,0x7f,0x99,0x30,0xf3,0x43,0xb3,0x79,0x1f,0x59,
0xf,0xcd,0xb4,0x90,0xc1,0xc6,0x24,0xb3,0x6b,0xd7,0xae,0x5d,0x66,0x6a,0x6a,0xaa,
0x69,0x4b,0xf6,0x5a,0xad,0x62,0x9e,0x7f,0xbe,0x9a,0x4a,0x3b,0x5c,0xff,0x20,0x5b,
0x8b,0xf,0x82,0x7f,0xf0,0xbe,0xa8,0x13,0x48,0xd2,0x46,0x3e,0x38,0xd2,0x3a,0x4f,
0x20,0x13,0x68,0x48,0x4b,0x54,0x6b,0xf5,0xd,0x1b,0x3a,0xbc,0x19,0x13,0x1c,0x3c,
0xaf,0x92,0xb6,0x6d,0x6f,0x77,0x84,0x2d,0xdc,0xf9,0x60,0xa4,0xf5,0xfb,0x6d,0x8d,
0x38,0x6d,0x78,0xef,0x3b,0x68,0xdc,0xa8,0xa2,0xc2,0x56,0x71,0x46,0xbb,0x20,0x9d,
0x86,0x36,0x3f,0x3f,0x9f,0x48,0x3e,0x8e,0x1c,0x79,0xd5,0x93,0xa6,0x6b,0xd7,0xee,
0xf5,0x10,0x7f,0xfd,0xb5,0xdf,0x7b,0x9e,0xf9,0x47,0x5e,0x9e,0x24,0x5d,0x7f,0x78,
0x5f,0xbc,0xbf,0xfb,0x4e,0x1e,0xd3,0x8a,0x3d,0xfa,0x2b,0x32,0xed,0x0,0x12,0x41,
0x64,0xff,0x20,0x46,0x99,0x7,0x34,0x9e,0xbf,0xbc,0xaf,0xe5,0xf7,0x27,0xb,0x83,
0x86,0xc,0x5,0x9d,0x16,0x1c,0x90,0xed,0xdb,0x3b,0x57,0x8c,0x1d,0x3b,0xba,0x12,
0xd7,0xa6,0xc5,0x19,0x14,0x1d,0xa,0x5a,0x3,0xdb,0xb6,0x6d,0x5b,0xa2,0xca,0xce,
0xac,0xc6,0xd8,0xd8,0x58,0x2a,0xc0,0xfe,0x1,0x3e,0xe,0x1b,0x42,0x66,0x6d,0x4d,
0x5c,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/azul.png
0x0,0x0,0x27,0xa3,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xf6,0x0,0x0,0x0,0x87,0x8,0x6,0x0,0x0,0x0,0x25,0x6c,0xa4,0xac,
0x0,0x0,0x27,0x6a,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0x7b,0xd0,0x55,0x65,
0xbd,0xc7,0x77,0x69,0xde,0x2f,0xa9,0xa0,0x88,0xa0,0x80,0xa4,0xa8,0x5c,0x44,0x45,
0x39,0x89,0x82,0x8a,0x22,0x8,0x82,0x8a,0x89,0x42,0x82,0x40,0x20,0x86,0x4a,0x89,
0x44,0x49,0xa8,0xa0,0x92,0x12,0x5e,0x20,0xf5,0x28,0x25,0x86,0x79,0xd0,0xc8,0xb0,
0x28,0xe9,0x84,0x69,0x1d,0x6b,0x32,0x9d,0x53,0x33,0xa7,0x29,0x4f,0x53,0xa7,0xa6,
0x66,0xce,0x99,0x39,0xd3,0x99,0xce,0xcc,0xf9,0xb7,0x3f,0x9e,0xf3,0x7e,0x1e,0xf7,
0x77,0xcf,0xf3,0x2e,0x9f,0xb5,0xf6,0x5a,0x6b,0xaf,0x7d,0x5d,0xcf,0x6f,0xe6,0x99,
0xfd,0xee,0xfd,0xee,0xcb,0xba,0x3c,0xdf,0xdf,0xfd,0x52,0xa9,0x4,0xa,0x14,0xa1,
0x9f,0xff,0xfc,0xe7,0xe6,0xd6,0x5b,0x6f,0x35,0x13,0x27,0x4e,0x34,0xa3,0x46,0x8d,
0x32,0x8b,0x16,0x2d,0xaa,0xad,0xb5,0x6b,0xd7,0x9a,0x1d,0x3b,0x76,0xd4,0x16,0xef,
0xfd,0xd3,0x9f,0xfe,0x54,0x5b,0xe1,0xea,0x5,0xa,0xd4,0x81,0x34,0x73,0xe6,0x4c,
0xc0,0x69,0xe,0x3c,0xe4,0x50,0x73,0xd8,0xf1,0x83,0xfa,0xad,0xf,0x1d,0x70,0x80,
0xfd,0x5f,0xd2,0x1a,0x32,0x64,0x88,0x19,0x36,0x6c,0x98,0x5d,0xf5,0x98,0xc2,0x7b,
0xef,0xbd,0x57,0x63,0x8,0x7f,0xf9,0xcb,0x5f,0x5e,0xe,0x57,0x3f,0x50,0xa0,0x26,
0xd0,0x79,0xe7,0x9d,0x67,0xe,0x1d,0x30,0xd0,0x9c,0xb3,0xea,0xf3,0xe6,0x92,0x27,
0x9e,0xb3,0x8f,0xac,0xcb,0x9f,0xdd,0x65,0xe6,0xec,0xfd,0x17,0x33,0x6d,0xc7,0x2b,
0xe6,0x8a,0xaf,0x7d,0xd3,0xae,0xa9,0x4f,0x7f,0xa3,0xf6,0x7f,0xd6,0x59,0xb,0x97,
0x9b,0x93,0x2f,0x9b,0x5e,0x5b,0xc7,0x9e,0x7e,0x66,0x26,0xa6,0x70,0xe0,0x81,0x7,
0xd6,0x18,0x2,0xb,0x6d,0xc1,0x65,0xa,0x9b,0x36,0x6d,0xa,0x4c,0x21,0x50,0xa0,
0xac,0xb4,0x6a,0xd5,0x2a,0x2b,0xa5,0x1,0xed,0x69,0x73,0xe7,0xdb,0xbf,0x5,0x3a,
0x40,0x39,0x7c,0xfa,0x6c,0x33,0xfb,0xd5,0x37,0x2d,0xc0,0xf3,0xac,0x24,0xa6,0xc0,
0xef,0xb9,0x4c,0xe1,0xc8,0x21,0x27,0xd7,0x18,0x2,0x8c,0xa6,0x9e,0x96,0xe0,0x32,
0x5,0xb4,0x4,0xcc,0x88,0xfd,0xfb,0xf7,0x7,0xb3,0x20,0x50,0xa0,0x23,0x8e,0x38,
0xc2,0x9c,0x7a,0xf5,0xf5,0x16,0x68,0x0,0x99,0xbf,0x27,0x7f,0xf9,0x1f,0xed,0x42,
0x1a,0x3,0x74,0x0,0x98,0x17,0xd8,0x79,0x17,0xcc,0x44,0xc,0x81,0xc5,0xf1,0xd4,
0x63,0xa,0x1c,0x2b,0x60,0x9f,0x33,0x67,0x4e,0x0,0x77,0xa0,0xf2,0xd2,0xae,0x5d,
0xbb,0xac,0xe4,0x3b,0xf7,0xae,0x75,0xe6,0xf0,0x13,0x4f,0x32,0x27,0x9c,0x73,0xc1,
0x7,0x0,0x6,0xd0,0x1,0xcc,0x8c,0x17,0xf7,0xb6,0x1c,0xdc,0x69,0xc0,0xef,0x2,
0x1e,0x33,0x62,0xcc,0xa7,0x6e,0xb7,0xd2,0x1e,0xf3,0x22,0xdc,0xe1,0x40,0xa5,0x24,
0xec,0x57,0x80,0x3d,0xe9,0xa1,0xad,0xf6,0x11,0xc9,0x17,0x5,0xf,0x80,0xe1,0x7f,
0x48,0xcd,0x4e,0x2,0x35,0x8c,0xe6,0xb8,0x33,0xc7,0xf4,0x57,0xcd,0xfb,0x18,0xd0,
0xf8,0xdb,0xd7,0xd8,0xff,0x7d,0x74,0xe4,0xe9,0x66,0xc1,0x82,0x5,0x1,0xdc,0x81,
0xca,0x47,0x38,0xa7,0x0,0xc4,0x45,0xf,0x3f,0x69,0x41,0xe1,0x3,0xf6,0xd9,0xb7,
0xdd,0xd5,0x91,0xc0,0x3e,0x71,0xe2,0x45,0xe6,0xa0,0xa3,0x8e,0xb6,0x8c,0x47,0xaa,
0x3a,0xda,0xc5,0x1,0x7,0x1d,0x64,0x26,0xae,0xff,0x92,0xb5,0xed,0xf9,0xff,0xd2,
0xa5,0x4b,0x3,0xb8,0x3,0x95,0x13,0xd8,0xd8,0xd2,0x0,0x5,0x15,0x16,0x40,0x8,
0x3c,0x33,0x77,0xff,0xb3,0x95,0x7c,0xac,0x46,0x1c,0x68,0x45,0x2f,0xbc,0xf5,0xf8,
0x3,0x38,0xee,0xe8,0xff,0xb0,0xb5,0xf1,0xcc,0xf3,0xf7,0x94,0xc7,0xb6,0x5b,0x70,
0x3f,0xfd,0xf4,0xd3,0x1,0xdc,0x81,0xca,0x43,0x78,0x92,0x1,0x36,0xc0,0x45,0xea,
0x1,0x2,0x24,0x37,0xb6,0x36,0x8b,0xe7,0x2c,0x0,0xd2,0x49,0xd2,0x5a,0xe6,0x1,
0x8f,0xd1,0xff,0xa1,0x75,0xe0,0x55,0xd7,0x73,0xa4,0xf7,0x47,0xe,0x3e,0xd8,0x6c,
0xdf,0xbe,0x3d,0x80,0x3b,0x50,0x39,0x88,0x30,0xd1,0x51,0xa7,0xc,0xb7,0xd2,0xef,
0x8c,0x5,0x4b,0x6d,0x38,0xa,0x75,0x56,0x21,0x27,0x40,0x72,0xe9,0x57,0xbe,0xde,
0x71,0x4e,0xb3,0x8f,0xdf,0xbf,0x39,0x16,0xd8,0x30,0x24,0xa4,0xb6,0xfb,0x1a,0x76,
0xf7,0x91,0x47,0x1f,0x6d,0xde,0x7d,0xf7,0xdd,0x0,0xee,0x40,0xbd,0x4f,0x84,0xba,
0x0,0x2f,0x1b,0x1f,0x70,0xa3,0x8a,0x13,0xb7,0x6,0x30,0x13,0xee,0xbe,0xb7,0x5f,
0xb8,0x9,0xb5,0xbc,0x53,0x80,0xcd,0xb1,0x70,0xac,0x83,0x26,0x7c,0xbc,0xdf,0x71,
0xc1,0x84,0xe2,0xc2,0x73,0xbc,0x36,0x60,0xc0,0x80,0x0,0xee,0x40,0xbd,0x4d,0xd5,
0xfc,0x6e,0xeb,0x1c,0x93,0x3d,0x8a,0x9d,0xed,0x26,0xa8,0xb8,0xb,0x95,0xdc,0xcd,
0x28,0x1b,0x72,0xf1,0x65,0xb5,0x18,0xb2,0x98,0x81,0x16,0x12,0xb5,0xd9,0x4c,0x41,
0xf6,0xb3,0x7b,0x5c,0x30,0x27,0xcc,0xa,0x5f,0x68,0xe,0x1f,0xc1,0x29,0x57,0xcc,
0x34,0xa3,0x47,0x8f,0xe,0xc0,0xe,0xd4,0xbb,0x44,0x11,0x87,0x4f,0x9d,0x5,0x14,
0x6e,0x6c,0x18,0xe0,0x3,0x5e,0xe2,0xdc,0xc7,0x8f,0x18,0x69,0xae,0xbc,0xf2,0xca,
0x7e,0x29,0xa0,0x48,0xfd,0x4a,0x9d,0xc,0xb1,0x24,0xa6,0x80,0x24,0x75,0x99,0x2,
0xbf,0xed,0x32,0x85,0x24,0xa7,0x1d,0x12,0x5a,0x36,0x35,0xe,0x33,0x62,0xd8,0x49,
0x4c,0x84,0xef,0x22,0x44,0x16,0x62,0xdc,0x81,0x7a,0x96,0xc8,0xbb,0x6,0x74,0x0,
0x29,0x8d,0x84,0xc4,0x6e,0x5,0xc8,0x71,0xd2,0x5f,0x8b,0xa4,0x17,0xe5,0x75,0xe3,
0x8d,0x76,0xf3,0xbe,0xf3,0x30,0x5,0x54,0x6e,0x31,0x4,0x8e,0x41,0xc,0x61,0xd4,
0x4d,0xb7,0xe4,0xf2,0xd4,0x87,0x18,0x77,0xa0,0x9e,0xa6,0x6a,0x8,0x28,0x75,0x7c,
0x1a,0x60,0xcd,0x9b,0x37,0xaf,0x70,0x30,0x88,0x21,0x50,0xdc,0xe1,0x16,0x7b,0x90,
0x3c,0xe3,0x32,0x5,0x98,0x80,0x5b,0x79,0x86,0xda,0x8d,0x6a,0x9d,0x7,0xdc,0x21,
0xc6,0x1d,0xa8,0x67,0x9,0xb0,0x0,0xe,0x37,0x6e,0x9d,0x24,0xe5,0x0,0x55,0x35,
0xee,0xdd,0x16,0xc2,0xf1,0xe5,0x26,0xd0,0x10,0xcb,0x46,0xf2,0xe6,0x5,0x77,0x88,
0x71,0x7,0xea,0x59,0x60,0xbb,0xf1,0xde,0xa4,0x85,0x54,0x47,0xba,0x57,0x53,0x50,
0xdb,0xee,0xe8,0x73,0x6d,0x6c,0xc0,0x89,0xf3,0x2e,0x8f,0x3,0x2e,0xc4,0xb8,0x3,
0xf5,0x1c,0x91,0x9c,0x92,0x16,0xd8,0xd8,0xe1,0x0,0xab,0x6a,0x97,0xb7,0x9c,0x54,
0xac,0x82,0xb7,0xdd,0x27,0x79,0xf,0x39,0xe6,0x58,0x1b,0xb2,0xcb,0x3,0xee,0x10,
0xe3,0xe,0xd4,0x53,0x84,0xf3,0xa,0xef,0x74,0x96,0x4c,0xaf,0x7d,0xfb,0xf6,0xb5,
0x65,0xf3,0xd3,0x81,0x25,0xc9,0x1f,0x40,0x75,0x1a,0x39,0xe2,0x3c,0xe6,0x1,0x77,
0x88,0x71,0x7,0xea,0x19,0x52,0x72,0x4a,0x9a,0x8d,0xaf,0x42,0x90,0x76,0xf5,0x36,
0xc3,0x69,0x87,0x77,0x3c,0xc9,0x96,0x46,0xf2,0x22,0xb9,0xf3,0xa4,0xbf,0x86,0x18,
0x77,0xa0,0x9e,0x20,0xd9,0xac,0xbe,0x22,0xa,0xdf,0x82,0x1,0xd0,0xc0,0xa0,0x5d,
0xad,0x88,0xd0,0x2e,0x54,0xd8,0x91,0xb4,0xb0,0xb5,0xb1,0xb9,0xf3,0xa4,0xc1,0xaa,
0xe0,0x25,0xc4,0xb8,0x3,0x75,0x2d,0xc5,0x25,0xa7,0x24,0x1,0x3b,0x2e,0x86,0xdd,
0x2a,0xed,0x22,0x8d,0x83,0x4c,0x92,0x37,0x2e,0xfb,0x2c,0xc4,0xb8,0x3,0xf5,0x34,
0x29,0x39,0xc5,0xe7,0x8c,0xf2,0x2d,0xa4,0x65,0xbb,0x80,0x4d,0x7c,0x3b,0xb,0x13,
0x72,0x4b,0x4d,0xf3,0xa4,0xb2,0xca,0xd3,0x1e,0x62,0xdc,0x81,0xba,0x8e,0x3a,0x25,
0x39,0x25,0xb,0x13,0x4a,0x9b,0x21,0x47,0x85,0xda,0x15,0xf,0x6c,0xb1,0x2a,0x75,
0x88,0x71,0x7,0x2a,0x15,0x65,0x49,0x4e,0x41,0xea,0xb1,0xc9,0xdb,0x95,0x9c,0x82,
0x47,0x3c,0xed,0xb1,0xb2,0xc8,0x69,0x9f,0xb7,0xf2,0x4e,0xf3,0xeb,0x5f,0xff,0xda,
0x7a,0xba,0xf3,0xc6,0xb8,0xf1,0xb0,0x13,0xe3,0x7e,0xe1,0x85,0x17,0x2,0xb8,0x3,
0x75,0xf,0xb0,0xbb,0x25,0x39,0x5,0x4d,0x21,0xed,0xb1,0x2a,0x43,0x8e,0x36,0xc4,
0x7c,0x96,0xf0,0x15,0x31,0xea,0x46,0x62,0xdc,0x3,0x4f,0x38,0x21,0x84,0xc1,0x2,
0x75,0x7,0xd1,0x94,0x3f,0x2d,0x58,0x50,0x6d,0x2b,0x6d,0x4c,0x4e,0xc1,0xb6,0xf7,
0x75,0x4f,0x4d,0x7b,0xac,0x64,0x95,0x21,0x79,0xf3,0xc6,0xb8,0x91,0xf8,0x48,0x7e,
0x34,0x80,0xb0,0x73,0x2,0x75,0x34,0xe5,0x49,0x4e,0xa9,0x66,0x7f,0xb5,0x94,0x8,
0xaf,0x11,0x66,0x4b,0xab,0x4e,0xeb,0x58,0xab,0x5e,0xff,0x7e,0x3e,0x85,0xbc,0x2d,
0x9e,0xe4,0x69,0xf,0x61,0xb0,0x40,0x1d,0x4f,0xd1,0x82,0x8a,0x34,0x60,0x69,0x47,
0x72,0x4a,0xd6,0xb0,0x1c,0xc,0x20,0x2e,0xde,0x8e,0x97,0x3b,0xc4,0xb8,0x3,0xf5,
0x2c,0x65,0x4d,0x4e,0x1,0x2c,0xed,0x2,0x76,0x56,0x8f,0x38,0x2a,0x7b,0x52,0x58,
0x8e,0xf8,0x74,0xde,0x18,0xf7,0xf4,0x9d,0xaf,0xda,0xef,0x77,0x87,0xf,0x86,0x39,
0x63,0x81,0x3a,0x86,0xb2,0xc6,0x85,0x91,0xec,0x6c,0xe6,0x76,0x1c,0x2b,0x4e,0xb0,
0x2c,0x53,0x48,0xf0,0x1b,0xd0,0xcc,0x21,0xe9,0x3b,0x91,0xba,0x74,0x51,0x49,0x1b,
0x6,0xe3,0x7d,0x9a,0x2e,0x52,0x89,0xc,0x27,0xc8,0x3b,0x67,0xac,0x1e,0x53,0xc0,
0xec,0x9,0x23,0x8a,0x3,0xe5,0x92,0x82,0x34,0x2b,0xec,0xf4,0xe4,0x14,0x40,0x9a,
0xd6,0xc9,0x47,0x38,0x8c,0xb0,0x58,0xb5,0x60,0x24,0x91,0xc8,0x9,0x4f,0x1b,0xe3,
0xb6,0xf3,0xcb,0xfa,0x40,0x89,0x77,0x1e,0x5b,0x9d,0xef,0x87,0x39,0xb8,0x6a,0x7d,
0x9e,0x39,0x63,0x59,0x98,0x2,0x99,0x77,0x2e,0x53,0xe0,0x58,0x1e,0x7b,0xec,0xb1,
0x0,0xf8,0x40,0x1f,0x4,0x76,0x96,0xe4,0x94,0x7a,0x52,0xb0,0x13,0x9c,0x7c,0x59,
0x4a,0x4b,0x9,0x5f,0xe1,0x67,0xa8,0x37,0x6c,0x70,0xc4,0xcc,0x6b,0x6d,0xb8,0xeb,
0xad,0xb7,0xde,0x32,0x2e,0xfd,0xfd,0xef,0x7f,0xb7,0x20,0x3f,0x72,0xd0,0x89,0xd,
0xf7,0x5c,0x8f,0x32,0x5,0xb2,0x1,0x5d,0xa6,0x80,0x29,0x34,0x74,0xca,0x15,0xb6,
0x7a,0x2d,0xa,0x78,0xce,0x21,0xc4,0xd9,0x3,0xd5,0xd4,0xdb,0xb4,0xc0,0x6e,0x67,
0x72,0x8a,0x3c,0xe2,0x69,0x27,0x7d,0xca,0xc9,0x57,0x35,0x35,0x2a,0x69,0xc0,0x9d,
0x14,0xe3,0xa6,0x9,0x3,0x1a,0xc0,0x9e,0x3d,0x7b,0x4c,0x1c,0x71,0x5d,0x90,0xb8,
0xcd,0x6c,0xcd,0x2c,0xaf,0x3c,0xd7,0x42,0xea,0x3b,0x8f,0x3c,0xe7,0xf8,0x42,0xa3,
0x88,0x40,0x96,0xb4,0x19,0xd3,0xa8,0xa1,0x4a,0x4e,0x49,0xa3,0xde,0x16,0x4d,0x79,
0x3c,0xe2,0xd5,0xe6,0x88,0xa9,0x49,0x31,0x6e,0x40,0xec,0x33,0x41,0xf0,0x2d,0x20,
0x9d,0xe3,0x48,0xc7,0x98,0xd6,0xac,0x69,0x24,0xd4,0x6,0x23,0x72,0x9,0x2d,0x62,
0xcc,0xb8,0x71,0x96,0xf1,0x72,0xde,0x21,0xce,0x5e,0x72,0xea,0x96,0xe4,0x14,0xe5,
0xb3,0x73,0xc,0x45,0x78,0xc4,0x93,0x7e,0xc7,0x17,0xe3,0x56,0x7e,0x7c,0x12,0x29,
0xc2,0x90,0x37,0x6d,0x35,0x4d,0x3,0x8,0x98,0xcb,0x5f,0xff,0xfa,0x57,0xef,0xef,
0x3,0x66,0x75,0x7a,0x6d,0x7,0xf3,0xd,0xd4,0x41,0xa4,0x4c,0x2e,0xd7,0xb6,0x8b,
0x53,0x25,0xdb,0x99,0x9c,0x82,0x66,0x91,0xd6,0x23,0xce,0xb9,0xa0,0x85,0xe4,0x2d,
0x54,0x51,0x8c,0xdb,0xed,0x4b,0x8e,0xc4,0xa6,0x7d,0x54,0x12,0x49,0x62,0x47,0x7b,
0xb1,0x15,0x35,0x26,0x98,0xf3,0x7,0xb0,0x49,0xa4,0xc1,0x8a,0xd5,0x39,0x6c,0x81,
0xca,0x46,0xbf,0xff,0xfd,0xef,0x6d,0xe,0x35,0x1c,0xfe,0x82,0x7b,0x1e,0xac,0xa9,
0xd9,0xae,0xba,0xcb,0xc8,0x1c,0x40,0x2f,0xbb,0xb3,0x9d,0xc9,0x29,0x59,0x34,0x8b,
0x22,0x4c,0x6,0x1b,0x5a,0xeb,0xb3,0x5b,0x61,0x10,0x0,0x7c,0xec,0xf2,0x55,0xf6,
0x79,0xd4,0x71,0xe6,0xd2,0xaa,0x55,0xab,0x2c,0x43,0x48,0x5b,0xa0,0x92,0x65,0xb9,
0xda,0x52,0x12,0xc9,0x19,0xda,0xce,0x7a,0xf9,0x40,0x2d,0x26,0xec,0x32,0x36,0x1f,
0x7f,0x2b,0x7e,0x2d,0x20,0xcb,0x31,0xc6,0x73,0x36,0xb2,0x24,0x84,0xab,0x5a,0x32,
0xa0,0x8f,0xe7,0xbf,0xfa,0xd5,0xaf,0x5a,0xbe,0x69,0x50,0x41,0xd3,0x7a,0xc4,0x35,
0xa4,0xaf,0x51,0x93,0x81,0xeb,0x35,0x67,0xce,0x1c,0xb,0x68,0xda,0x2c,0xe1,0x89,
0x26,0x34,0x86,0xca,0x1b,0x25,0xec,0xf3,0xc3,0x8e,0x3d,0xce,0x9c,0xbf,0x76,0x43,
0x53,0xd4,0x70,0x1,0x1b,0x53,0x21,0x89,0xd4,0xf,0x2e,0x0,0xbb,0x24,0x84,0xa4,
0x61,0x83,0x72,0xd3,0x89,0x79,0xfe,0xc7,0x7f,0xfe,0x97,0x95,0x46,0x84,0x4e,0x0,
0xcc,0xc0,0xb3,0xcf,0xb3,0x4e,0x23,0x36,0x10,0xb1,0xd5,0xa3,0x47,0x8c,0xb4,0x92,
0x1c,0x70,0xb3,0x59,0x35,0x56,0x97,0xcf,0xab,0x5a,0xaa,0x55,0x94,0x35,0x3b,0x4e,
0x3d,0xd9,0xd2,0x7a,0xc4,0xb3,0x0,0xbc,0x52,0xd,0x2b,0x1,0x20,0x4d,0x37,0x21,
0xfc,0x87,0xd3,0xed,0xa2,0x87,0x9f,0x6c,0xaa,0x37,0x9c,0x2c,0xb9,0xa9,0x53,0xa7,
0xc6,0x3a,0xf0,0x78,0xbd,0x9a,0xe6,0xda,0xb6,0x90,0x64,0xa0,0x16,0x11,0x20,0x96,
0x87,0x14,0xa9,0xc7,0xe6,0x18,0x38,0x6c,0xb8,0x39,0xf9,0xcc,0xd1,0xb6,0xc9,0x3e,
0x92,0x1a,0x35,0x93,0xec,0x2b,0x6d,0x22,0xf7,0x39,0x92,0x9b,0x91,0xba,0x80,0x7a,
0xe4,0x35,0xf3,0xfa,0x75,0x27,0x65,0xf3,0xec,0xdd,0xbb,0xb7,0xe9,0x1b,0xa8,0xfa,
0x7b,0xa9,0xbd,0xcd,0x30,0x26,0xc0,0xd7,0xc,0x8d,0xc7,0x5,0xb8,0xbb,0x6,0x5f,
0x38,0x25,0xd3,0x9c,0xb1,0x46,0x6,0xf,0xfa,0xa4,0x36,0xa0,0xde,0xb8,0x71,0x63,
0xed,0x78,0x8,0xcb,0x85,0xdd,0xdf,0xa3,0x54,0x75,0x1e,0x59,0x2e,0xfe,0x6f,0xbf,
0xf9,0x8d,0xb9,0x7e,0xf5,0x5a,0x2b,0x9d,0x91,0xcc,0x6c,0xc4,0xab,0x5f,0x79,0x3d,
0xd5,0x86,0x42,0x62,0x3,0xea,0xb,0x37,0x3e,0x6a,0xd5,0xf1,0x67,0xf6,0xee,0xb3,
0xad,0x82,0xb0,0x79,0x65,0x77,0xb6,0xc2,0x23,0x9e,0x36,0x89,0x46,0x8e,0xae,0x66,
0x9a,0x34,0x71,0x0,0xaf,0xa4,0x98,0x33,0xd6,0xc8,0xf0,0x41,0xc0,0x8d,0xca,0xcf,
0xef,0xc3,0xf0,0xd0,0x66,0x78,0x9c,0x39,0x73,0xa6,0x35,0x15,0x30,0x19,0x26,0x4d,
0x9a,0x14,0x40,0xdd,0xcb,0x84,0xba,0xc8,0xcd,0x66,0xa3,0xb3,0xd1,0x50,0x15,0x8b,
0x90,0x22,0xa8,0xe9,0x5a,0xad,0xd8,0x44,0x78,0x7a,0x91,0x54,0x69,0x12,0x3f,0xe4,
0x11,0x6f,0x45,0x12,0xd,0x49,0x33,0xbe,0xe1,0x83,0xd1,0x39,0x63,0x38,0xfe,0xdc,
0x14,0xd0,0x7a,0xc,0xa1,0x1e,0x53,0x80,0x29,0xc7,0x7d,0xae,0xab,0x2b,0xce,0x90,
0x10,0xee,0x85,0xeb,0xc6,0xd5,0x6c,0x49,0xad,0x2e,0x1f,0x3,0x6,0x9d,0x68,0x53,
0x21,0xb1,0x3b,0xf3,0x54,0x31,0xc5,0x35,0xf8,0x43,0xc2,0x20,0x1d,0xb6,0xbe,0xfc,
0x8a,0x55,0xf5,0xd9,0x50,0xcd,0x6a,0xf8,0x7,0x30,0xd8,0xdc,0xdd,0xd0,0xe1,0x25,
0x2b,0x43,0xa8,0x37,0x7c,0xd0,0x65,0xa,0xd5,0xe2,0x1b,0xef,0xe2,0x7f,0x5d,0x1f,
0xbb,0x96,0x4b,0xdf,0xc7,0xdd,0x3a,0x7d,0xc9,0x1,0xd5,0xac,0x90,0x11,0x1b,0x1,
0x29,0x4d,0x18,0x6b,0xf6,0xb2,0x15,0xe6,0x92,0x27,0x9e,0x2b,0xc,0xd0,0xd1,0x75,
0xd5,0x4b,0xaf,0x99,0xf1,0x2b,0x3e,0x63,0x7f,0x8b,0x73,0xab,0x34,0x29,0x79,0x25,
0x4b,0xbd,0xb8,0x3c,0xe2,0xed,0x88,0xb5,0xb7,0xca,0x91,0xa8,0x45,0xdc,0x9c,0xd5,
0x33,0x15,0x5f,0x2e,0xb0,0xb1,0x17,0x8b,0x76,0x52,0x34,0x73,0x35,0x3b,0x16,0x4c,
0xd8,0xe5,0xd0,0xa3,0x3f,0x6a,0x53,0xf,0x51,0xc1,0x9b,0x99,0xb7,0x2c,0x9b,0xf,
0x8d,0x0,0xb5,0xbc,0x19,0x12,0x3b,0xab,0x47,0x9c,0xf7,0x55,0xda,0x38,0xa5,0x24,
0x50,0x1,0xc0,0x4e,0x6b,0x77,0x95,0x1,0xd8,0x98,0x27,0x52,0xbf,0x17,0x7f,0x6a,
0x99,0x95,0xa0,0x48,0x54,0x39,0xbf,0x5c,0x47,0xd,0x52,0xcd,0x75,0xd4,0x68,0xe5,
0x4d,0xac,0xe0,0xfb,0xf9,0xbd,0x7f,0xfd,0xe3,0x9f,0xed,0x31,0x60,0xa,0x14,0xd5,
0x48,0x40,0x3,0xf8,0xda,0xed,0x11,0xf,0xd4,0x42,0x60,0xd7,0xcb,0x44,0xc2,0x8b,
0xeb,0x6e,0xe8,0x66,0xc6,0x19,0xdb,0xd,0x6c,0x6c,0x5c,0x9c,0x32,0x97,0x5f,0x35,
0xd3,0x4c,0xdd,0xb6,0xc3,0x9e,0xbb,0x9b,0xe7,0x5c,0xcf,0x59,0xc3,0xa2,0x3a,0xc8,
0x67,0x3e,0x44,0x9d,0x37,0xee,0x92,0x9a,0x8f,0x87,0xfd,0x63,0x53,0xa7,0xd7,0x1c,
0x43,0x45,0xf9,0x11,0xaa,0xb6,0x72,0x6a,0x8f,0x38,0xc7,0x1a,0xd2,0x29,0xb,0x22,
0x9c,0x27,0xa,0x79,0x28,0xc6,0xc9,0x73,0xd2,0x16,0x59,0x92,0x24,0x3c,0xea,0x35,
0xbd,0x7f,0xf7,0xee,0xdd,0xa6,0x19,0xc0,0x46,0xfa,0x28,0x73,0x4a,0xab,0x59,0xe9,
0x7e,0xed,0x6,0x36,0xd7,0x12,0x3b,0xf7,0xa8,0x53,0x86,0xdb,0x6b,0xe2,0x2b,0x60,
0xc0,0x93,0x8a,0xd4,0x73,0x19,0x5d,0x5c,0xe1,0xbf,0x16,0xe9,0xa4,0x49,0x7e,0x82,
0x68,0x55,0x18,0x9d,0x3f,0x9,0x8b,0x1d,0x74,0xd8,0x61,0x66,0xf3,0xe6,0xcd,0x85,
0x9c,0x5f,0x96,0xea,0xb3,0x76,0xf7,0x3c,0xef,0x39,0xe9,0x29,0xf,0x1e,0x45,0xde,
0x70,0x4b,0x92,0x16,0x48,0x5e,0xc0,0x4b,0x47,0xc,0x92,0xd7,0xde,0x7c,0xf3,0x4d,
0xfb,0xa8,0xae,0x13,0xfc,0x7f,0xff,0xfe,0xfd,0x56,0x6d,0xca,0xba,0xc9,0xd3,0x0,
0x9b,0x8d,0x59,0x71,0xda,0xd6,0x90,0xf7,0x8c,0x53,0x29,0xad,0x13,0xa6,0xdb,0x24,
0x36,0xcc,0x95,0xb2,0x3d,0xe2,0xd4,0x51,0xf3,0x84,0xeb,0x54,0xe4,0x79,0xf3,0xfd,
0x30,0x8a,0xe8,0xf5,0x47,0x4b,0x50,0xcd,0x72,0x51,0xe7,0xc5,0x9e,0x49,0x33,0x80,
0xaf,0x5b,0x3c,0xe2,0x5d,0x43,0x80,0x14,0x4f,0xec,0xb4,0x3b,0x56,0x9b,0xb5,0x1b,
0x1f,0xb4,0xdc,0x7f,0xcd,0xfa,0x7b,0xcd,0xe4,0x65,0x2b,0xcd,0xdd,0x8f,0x6d,0x33,
0x37,0xaf,0xf9,0xbc,0xb9,0xf0,0xd3,0x9f,0x35,0x4b,0x57,0xaf,0xb1,0x8f,0x3c,0x5f,
0xb1,0x71,0x93,0xb9,0x70,0xf1,0xad,0xe6,0x8e,0x35,0x9f,0xcb,0xb5,0xc9,0xeb,0x1,
0x1b,0x95,0x9b,0xd,0x26,0x29,0xcd,0xdf,0xa4,0x4c,0xe2,0x50,0xe2,0xef,0x46,0xbb,
0x5c,0x74,0x12,0xb0,0x1,0x34,0x1b,0xf9,0xed,0x77,0xde,0x31,0xb3,0x56,0xae,0xaa,
0x55,0x6a,0x45,0x5b,0x4,0x15,0xcd,0xd0,0xf8,0xbe,0xe8,0xf5,0xe7,0xb7,0x8,0xab,
0x7d,0x7a,0xeb,0xd3,0xd6,0xce,0x2e,0x42,0x25,0xce,0xe2,0x11,0x47,0x23,0xa9,0xb4,
0x71,0x6e,0x77,0x4f,0x11,0x92,0x9a,0x18,0xdb,0xec,0x47,0xb6,0x59,0x35,0xc,0x87,
0xd,0x8f,0x97,0x3e,0xfe,0x55,0x73,0xf1,0xba,0xf7,0x81,0xe,0x27,0x3d,0x71,0xe2,
0x45,0xf6,0x51,0x19,0x37,0xc4,0x41,0x4f,0xbd,0xe2,0xaa,0xa6,0x0,0x9b,0xdf,0x90,
0xb4,0x1e,0xbd,0xf8,0x36,0xab,0xca,0x61,0x7b,0xe1,0x34,0xfa,0xc8,0xe1,0x47,0x98,
0x51,0x37,0xdd,0xd2,0x33,0xc0,0x56,0x7,0x14,0xc0,0xeb,0x2b,0x40,0x90,0x14,0x2b,
0x1a,0xd8,0x68,0x6,0x71,0xd7,0x9f,0x7b,0xcd,0x75,0x6e,0x34,0xfc,0x25,0x8f,0x78,
0xda,0x32,0xc8,0xe0,0x11,0x2f,0x90,0x6e,0xfa,0xe4,0xcd,0x36,0x38,0xbe,0x70,0xef,
0x8f,0x6b,0xa1,0x27,0x0,0x84,0x53,0x5,0xd5,0xc,0xe9,0x88,0xea,0x46,0x71,0x1,
0xff,0xe3,0x39,0xb1,0x55,0xda,0xb7,0xa,0x80,0x48,0x1d,0x37,0x3e,0x97,0xb4,0xf0,
0xb6,0xd6,0x3,0xb6,0xcf,0xbe,0x3e,0xfd,0x86,0x9b,0x6d,0xc1,0x43,0xbb,0xed,0xec,
0xa2,0x81,0x4d,0x6a,0x21,0xdf,0x7,0x33,0xf5,0x9d,0x97,0x80,0x9d,0xb6,0xa5,0x50,
0xda,0x25,0x7b,0xdb,0xf7,0xbf,0x49,0xf,0x6d,0xb5,0x8e,0x34,0x8e,0x2d,0x6f,0xba,
0x29,0x61,0x3b,0xa,0x1e,0x38,0x76,0xf2,0xd6,0xa9,0x30,0xf3,0xf9,0x7,0x58,0x76,
0xf0,0x5e,0xdf,0x79,0x62,0x1e,0xb4,0xab,0x83,0x6a,0xcf,0x10,0x17,0x70,0xee,0xdc,
0xb9,0xe6,0xe4,0xe1,0x23,0x6a,0x5c,0x15,0x30,0x3,0x62,0x40,0x8b,0x97,0x94,0x8b,
0xad,0xbf,0x15,0x7a,0xe1,0x6f,0x0,0xce,0x7b,0xb5,0xc9,0xab,0xa5,0x84,0xa9,0x16,
0x5e,0xd7,0x91,0x23,0x47,0xd6,0xb5,0xb1,0xc5,0xbd,0x59,0x64,0x48,0x21,0x45,0x2a,
0xd5,0x92,0xc4,0x5e,0xb3,0xb1,0x49,0x52,0x18,0x34,0x64,0xa8,0x5,0x77,0x1c,0xb0,
0xeb,0xb5,0x14,0xe2,0xbe,0xa9,0x71,0x1e,0xda,0x54,0x3d,0x67,0x55,0x1c,0xb0,0xb9,
0xdf,0xf8,0x32,0x54,0x1e,0xda,0x88,0x26,0x88,0x16,0x12,0x65,0xd0,0xf5,0x16,0x66,
0x61,0x40,0x67,0x83,0x2a,0x12,0x80,0x21,0x31,0x81,0x8b,0x4f,0x31,0x3e,0x12,0x83,
0x5,0x78,0x59,0xdc,0x64,0x36,0x9,0x8f,0x9a,0xbd,0xac,0xd6,0x36,0x6a,0xc9,0xca,
0x77,0x30,0x11,0x31,0x2e,0x9c,0xe2,0x5b,0x78,0x7f,0xeb,0x1,0x9b,0x8d,0x1a,0x6d,
0xe5,0xca,0xe7,0xda,0x1d,0xf7,0x2e,0x12,0xd8,0x44,0x17,0xd0,0x5e,0x5e,0x79,0xe3,
0x27,0xe6,0x9c,0x1b,0x3e,0xe9,0x6d,0xc4,0x97,0x6,0xd8,0x68,0x51,0xd1,0x6b,0x85,
0x94,0x4c,0xca,0x58,0xe3,0xda,0xc7,0xcd,0xd0,0xc2,0x24,0xb8,0xf2,0xee,0x75,0xd6,
0xce,0xc6,0x4c,0xcb,0x13,0xd3,0xd6,0xa0,0x40,0x8e,0xc1,0x17,0x73,0x8f,0xb6,0xf4,
0xe5,0x78,0x8b,0xc,0xb3,0x95,0x1a,0xd8,0xa8,0xb7,0xb6,0x63,0x62,0x1f,0xb0,0x51,
0xbb,0xc9,0x21,0xe6,0x46,0x8,0xc4,0x0,0x1a,0x49,0xcd,0x42,0xfd,0x96,0x9a,0xc6,
0x7b,0x94,0x34,0x31,0x60,0xcc,0x78,0x5b,0xf7,0x9b,0x7,0x1c,0xf5,0xe2,0xd8,0xd1,
0x4d,0xd1,0xac,0xd4,0xca,0x76,0x1,0x5b,0x26,0x49,0xd2,0x58,0xd9,0x7a,0xc0,0xe6,
0x73,0x98,0x27,0x44,0xd,0x70,0x3e,0xc1,0x78,0xd1,0xbe,0x60,0x82,0x49,0xc3,0xe2,
0xeb,0x79,0xda,0xb9,0xbf,0x72,0x60,0xe6,0x39,0xd7,0x2c,0x13,0x40,0xdd,0x28,0x48,
0x98,0x61,0x5d,0x0,0xb0,0xd9,0x2c,0xd8,0x35,0x38,0x4a,0x0,0x39,0x9b,0xc8,0x5,
0x31,0x0,0xd7,0x73,0x36,0xc,0x7f,0x3,0x6c,0x0,0xcf,0x6b,0xc4,0x3d,0x91,0xd6,
0xf5,0x92,0xf,0xd8,0x5c,0xee,0xc6,0x4d,0xb,0xec,0x5e,0xcf,0x3c,0xbb,0xef,0xbe,
0xfb,0xec,0x77,0xe1,0xf1,0x8f,0x53,0x9d,0x95,0x3b,0x1d,0x7,0x6c,0x6c,0x6f,0x5f,
0x2f,0x31,0x7d,0x4e,0x4c,0x3a,0xb,0xb0,0xf9,0x2e,0x24,0xea,0x88,0x33,0xcf,0x32,
0x6e,0x41,0x4a,0x16,0x8a,0xe,0x7,0xe0,0xfe,0xcb,0x13,0x8f,0x23,0x94,0xe3,0x76,
0xf7,0x84,0x80,0x1d,0x3c,0xe2,0x5,0x1,0x9b,0xb,0x4c,0x9c,0x11,0xc0,0xb2,0x9,
0x0,0xac,0x36,0x3,0x7f,0x4b,0x62,0x3,0x6c,0xd4,0x73,0x1,0x1b,0xe9,0x80,0x94,
0x47,0x85,0x12,0x23,0x8,0xc0,0xce,0x77,0x2f,0xee,0x5c,0x7d,0xb7,0xbd,0x7,0xbe,
0xcc,0x3a,0xfd,0x5e,0x1c,0xb0,0xf9,0x9c,0xef,0x3a,0x4a,0xd2,0xc7,0x75,0xdc,0x4c,
0x2,0xb6,0x40,0xd6,0xc8,0x39,0xa2,0xc2,0xeb,0xb8,0xd0,0x4,0xd1,0x2a,0x58,0x1c,
0x2f,0xb,0x66,0xe4,0x4e,0xdf,0x28,0xe2,0x37,0x3,0xb0,0xab,0xc0,0xa6,0xe8,0x7e,
0xdc,0x8a,0xcf,0x9a,0x63,0xcf,0x78,0xbf,0x1b,0xc7,0xe5,0xdb,0x5f,0x32,0x97,0x6e,
0xdb,0x51,0x8b,0x13,0xcb,0xde,0xb6,0xb6,0xf7,0x73,0xbb,0xcd,0xac,0x6f,0xfd,0xd0,
0x82,0x18,0xa0,0x4a,0x15,0xb7,0x53,0xb,0x57,0xaf,0xb7,0xaf,0xfb,0x16,0xc,0x80,
0xef,0xb5,0xf1,0xe9,0x2f,0x6d,0xb3,0xcc,0x60,0xfc,0x1d,0x6b,0x6b,0xbf,0x5f,0x76,
0x60,0x53,0xf6,0xb7,0x7c,0xe5,0xed,0xd6,0xde,0x4d,0x2,0x76,0x5c,0xae,0x35,0x61,
0x2b,0x5f,0x66,0x97,0x7a,0x6c,0xf9,0x42,0x4d,0xf5,0x62,0xe3,0xfc,0x9f,0xdf,0x9d,
0xfd,0xc9,0x85,0xb6,0x8d,0x12,0xbe,0x80,0x46,0x80,0x8d,0xb9,0x16,0x35,0xb,0xf8,
0xd,0x8e,0x1b,0xa7,0x68,0xbb,0x67,0x8a,0xf5,0x1c,0xb0,0xe1,0x98,0xc7,0x9c,0x76,
0x86,0x39,0xe2,0xa4,0xa1,0xb6,0x9d,0xce,0xd5,0x7b,0x7e,0x64,0x66,0xfc,0xd3,0xf7,
0xac,0x44,0x66,0xa3,0xa8,0xf5,0xe,0xcf,0x79,0x9d,0xff,0xf3,0xb7,0xec,0x6f,0x6e,
0x3e,0xaa,0x38,0x40,0xc5,0x5b,0x1d,0xb7,0x2e,0x7b,0x6a,0xe7,0xfb,0xea,0xe1,0x86,
0x2d,0x56,0x43,0x38,0x72,0xe8,0x30,0x6b,0x13,0x76,0x82,0xcd,0xdc,0x4e,0x60,0xab,
0xb3,0x8,0x5a,0x4f,0xbd,0x96,0xc1,0x71,0xe6,0x8e,0xfe,0xef,0xaa,0xdc,0xdc,0x3b,
0x4c,0xab,0xb8,0x64,0x9e,0x34,0xb1,0x71,0x98,0x8c,0x3c,0xda,0xd1,0xf9,0xd4,0x69,
0x81,0xd,0xd3,0x11,0x13,0xf1,0x55,0x77,0xd9,0x31,0xb9,0x55,0x33,0x82,0x63,0x9,
0xd,0xfc,0xa,0x2,0x36,0xdd,0x33,0x8e,0x1f,0x3c,0xd8,0x72,0x56,0x80,0x8a,0x5a,
0x24,0xe7,0x8b,0xf2,0x8f,0x89,0x1d,0xb3,0xa2,0x9e,0x6d,0x5e,0xc3,0x56,0x22,0x34,
0x82,0x9d,0x9e,0xe4,0x5,0xe7,0x6,0xf3,0x5e,0xa9,0x60,0x69,0xa7,0x23,0x96,0xc9,
0x79,0x16,0x37,0xe7,0xb9,0x1e,0xb0,0xb9,0x8e,0x5c,0x7f,0xbe,0x83,0xeb,0xcb,0xf5,
0x86,0xd9,0xf2,0x1c,0x70,0x27,0x39,0xe4,0xe2,0x62,0xe3,0x80,0xf1,0x82,0xcf,0xdd,
0x67,0x4e,0x1f,0x7f,0x4e,0x6e,0xaf,0x38,0x9f,0xe3,0x58,0x92,0x9c,0x7f,0xa,0x69,
0xf2,0x1e,0xf6,0x47,0x0,0x76,0x1,0x84,0x93,0x82,0xe4,0x3,0x6e,0x1e,0x2a,0x11,
0xaa,0xa0,0x8a,0x3,0x2a,0x9e,0xd1,0xa2,0x45,0x2c,0x39,0x4d,0xd2,0x0,0x54,0xde,
0xde,0x4a,0xa4,0x21,0x43,0xbb,0xc1,0x2d,0xa0,0x71,0xed,0x1a,0x5,0xb7,0xc2,0x5d,
0x7b,0x7f,0xf2,0x96,0xb9,0xe0,0xc6,0x85,0xde,0x38,0x76,0x3d,0x60,0xbb,0xa3,0x61,
0x35,0xf5,0x11,0x80,0xfb,0xc6,0xdc,0xa4,0xf1,0xb4,0xab,0x10,0x23,0x6f,0xb3,0xfe,
0x28,0xb0,0xf5,0x7d,0x3e,0xed,0x0,0x86,0xaf,0xd2,0x5d,0x8e,0x3b,0x0,0xbb,0x20,
0xa2,0x3,0xa6,0x46,0x8a,0x70,0x81,0xb9,0xd0,0x70,0x51,0xd5,0xfb,0xb6,0x13,0x44,
0xea,0x81,0xad,0x78,0x3b,0x61,0x39,0xb4,0x83,0x76,0xdb,0xe5,0x2,0x9a,0x56,0x11,
0x92,0x1b,0x55,0x77,0xd4,0xe8,0x31,0x5e,0x9,0xeb,0x4a,0xb5,0xa2,0xce,0x21,0x9,
0xd8,0xca,0x3c,0x1c,0x3e,0x69,0xb2,0x4d,0x52,0xc9,0x3b,0x43,0xca,0xcd,0x11,0x97,
0xe7,0x9e,0x73,0x41,0x23,0x64,0xd9,0x71,0xb6,0xd5,0xd7,0xe4,0xcc,0xb,0xc9,0x29,
0xd,0x12,0xd5,0x3b,0x38,0x2a,0x50,0xd7,0x90,0xd4,0x6a,0x38,0xdf,0x29,0x76,0x2c,
0x76,0x61,0xb4,0x8,0x4,0x27,0x8b,0x62,0xee,0x71,0x6a,0x6b,0x2b,0x81,0xd,0xb3,
0x29,0x2,0xd8,0x1a,0xe9,0x12,0x17,0x96,0x92,0xb7,0xb8,0x55,0xc0,0x56,0xfb,0x62,
0x69,0x4b,0x79,0xfa,0x70,0xc9,0xd4,0x13,0xb0,0x61,0x16,0xd8,0xd3,0xba,0xa7,0x32,
0x3f,0x0,0xbc,0x4c,0x32,0x80,0x1d,0x92,0x53,0x1a,0x20,0xda,0x9c,0xa,0x28,0xed,
0xac,0x92,0x4a,0x2b,0xad,0xdd,0x22,0x10,0x12,0x61,0xda,0x2d,0xb5,0x5,0x6c,0x3c,
0xbd,0x45,0x0,0x5b,0x2d,0x86,0xe9,0xfd,0xed,0x6b,0x65,0xb,0x20,0xd8,0xf4,0x45,
0xe6,0xc7,0xc7,0xc5,0xc6,0x1,0x19,0xe1,0xcc,0x39,0xf,0x3d,0x6a,0xa6,0x2f,0x5c,
0x6c,0xb5,0xb9,0x3c,0x8e,0xb3,0x28,0xb0,0xb5,0x70,0xc6,0xea,0x1c,0xf9,0x3b,0x1a,
0x7e,0xb,0xc0,0xce,0x41,0xd8,0x84,0x48,0x69,0x32,0x92,0x3a,0xa1,0x13,0x49,0xbd,
0x2e,0x9a,0xd1,0x1c,0x63,0x9c,0x75,0x92,0xd8,0x9d,0x50,0x4,0x2,0xb0,0x91,0x6a,
0x7f,0xf8,0xe3,0x1f,0x6b,0x5,0x2e,0x79,0x6d,0xd1,0x4a,0x42,0xee,0x74,0xda,0xb1,
0xb3,0x79,0x5a,0x21,0xe1,0x24,0x75,0x9d,0x93,0xd8,0xe5,0x95,0xea,0xa4,0x91,0x22,
0x9c,0xb3,0x59,0x86,0xdb,0x5,0x60,0xe7,0x20,0x2a,0x6d,0x28,0xbe,0x0,0x1c,0xdd,
0x12,0x62,0x72,0x4b,0x37,0xdd,0x22,0x90,0xa2,0xab,0x9c,0x1a,0x1,0x36,0x7f,0xff,
0xe2,0xb7,0xff,0x5e,0x3b,0x4e,0x24,0x9c,0xdb,0x7f,0x5a,0x8b,0xba,0xe6,0xb8,0x36,
0xc6,0x43,0xcf,0x3d,0xdf,0x9a,0x43,0x9c,0x17,0xdf,0xa9,0x85,0xa4,0xa6,0x3c,0x95,
0xb8,0x7f,0xb3,0x22,0x3,0x6e,0x33,0xb,0x77,0xe9,0x3c,0xf2,0x74,0xc7,0x89,0x26,
0x40,0x65,0x99,0x44,0x19,0x80,0x9d,0x11,0xd4,0xcc,0x25,0x82,0x7b,0x76,0x53,0x37,
0x50,0x5f,0x11,0x8,0xcf,0x3b,0xa5,0x8,0x4,0xf0,0x11,0x8b,0xbf,0xe7,0xbe,0xfb,
0xad,0x79,0xe0,0x82,0x52,0x8b,0xb0,0x53,0xd4,0xb3,0xdf,0xe8,0x8a,0x8b,0x54,0x24,
0xf5,0x35,0xe3,0xde,0xfb,0xca,0x25,0x31,0x73,0x60,0x1e,0x51,0xa6,0x22,0x33,0x23,
0x6f,0x2d,0x76,0x56,0x60,0xcb,0xe6,0xf,0xc0,0xce,0xa0,0x7e,0x23,0xa9,0x9b,0x31,
0xef,0xb7,0x15,0xab,0x93,0xe3,0xd8,0xda,0xfc,0xf5,0x40,0x78,0xd3,0xe2,0x25,0xde,
0xc6,0xf2,0xee,0x22,0xbb,0x8b,0x9c,0x2,0xee,0x15,0x39,0xd6,0x63,0x3f,0x3e,0xc9,
0x32,0xb,0xb2,0xb5,0x92,0x7a,0x96,0x35,0x6b,0xf1,0xdb,0x95,0xea,0xf0,0x3a,0x57,
0xf3,0xc0,0x6b,0xed,0xd3,0x3a,0x38,0x7e,0xf7,0x7c,0xaa,0xfd,0xd2,0xac,0xe9,0xa4,
0x5a,0xeb,0xe8,0x72,0x19,0xb4,0x80,0xdd,0xea,0x61,0x81,0x5d,0x4b,0x8c,0xc,0x45,
0xfd,0xee,0x26,0x49,0xdd,0x2d,0x99,0x67,0x2,0x36,0xa5,0x96,0x71,0xcd,0x5,0xb3,
0xaa,0x97,0x2a,0xb6,0xc0,0x13,0x8d,0x83,0x33,0xce,0x17,0x2,0x28,0x7c,0x60,0x1,
0x44,0x3e,0xc9,0xc,0x63,0x8f,0x93,0xe6,0x68,0x15,0x9c,0x87,0x3a,0xa6,0xe0,0x87,
0x1,0xc4,0xa,0x83,0x36,0x6b,0xc1,0x9c,0xc4,0xa8,0xa4,0x99,0xc1,0x48,0xd2,0x32,
0x8f,0xbc,0x66,0x42,0xd7,0xd3,0x82,0x5,0xb,0xac,0xa3,0xac,0x1b,0xd3,0x36,0xbb,
0x9,0xd8,0x49,0x61,0xa8,0x3c,0xe,0x21,0x99,0x4e,0x24,0x99,0x0,0xb6,0x66,0x3b,
0x3a,0xf1,0x82,0x73,0x1e,0xfc,0x5e,0xb4,0xc1,0x82,0xaf,0x3,0xe,0x5e,0x72,0x9f,
0xd6,0x41,0x7a,0x6c,0x9c,0x1f,0x1,0x1f,0x83,0xcf,0xf7,0x90,0xc4,0x3c,0x4,0xfc,
0xb8,0x46,0xd,0xa5,0x8c,0x79,0x57,0xbb,0x4c,0x66,0xae,0x93,0xe,0xab,0x73,0x80,
0xcd,0xfa,0xc2,0x17,0xd7,0x9b,0x99,0x5b,0xbf,0xda,0x94,0x61,0xec,0x14,0xf7,0x30,
0x1,0x64,0xce,0x17,0x1f,0x30,0xdf,0x7c,0xe5,0x15,0x3b,0x10,0x1e,0x89,0x99,0xa7,
0x44,0xb3,0x51,0xf,0xba,0x8f,0x79,0x5c,0x3a,0xe3,0x2a,0x9b,0x30,0x85,0x1f,0x43,
0x76,0x3f,0x4e,0x46,0x7c,0x2,0x30,0xbc,0x52,0xda,0xe3,0x34,0x9f,0xe7,0x82,0x4,
0x15,0xbc,0xb5,0xc0,0x26,0xdf,0x1e,0x9,0x2b,0xfb,0x31,0x6f,0x8,0x87,0x36,0xd0,
0xea,0x35,0x46,0xdf,0x30,0x34,0x2f,0xbc,0xe4,0x45,0x1,0x1c,0xf3,0x1,0x9,0x4d,
0xce,0xbe,0x5b,0x51,0x95,0x37,0xcb,0xac,0x19,0xa4,0xc4,0x1d,0xd4,0x74,0x9f,0xd4,
0x2e,0x1d,0xb0,0x89,0x41,0xb6,0xbb,0x45,0x6f,0xaf,0x3,0x1b,0x35,0x51,0xa3,0x50,
0x5d,0x60,0x3,0x6a,0x79,0xa8,0xa9,0x61,0x6f,0x34,0x36,0x2b,0xcd,0xb,0x49,0x45,
0x9f,0xb8,0xb1,0x4b,0x3e,0xdd,0xaf,0xba,0x2e,0xed,0x31,0xc3,0xe0,0x29,0xa1,0x55,
0x3d,0xfd,0x8c,0x2f,0x3f,0x65,0x1b,0xd,0x72,0x9c,0x7c,0x7f,0xb5,0xe1,0x43,0x47,
0x91,0x80,0x2d,0xa7,0xa9,0xeb,0x4b,0x68,0xd5,0x98,0xdd,0x8e,0x22,0x6c,0x8f,0xb4,
0xd,0xda,0xc3,0xca,0x7,0x6c,0x35,0x29,0x70,0x81,0x4d,0x37,0x19,0x32,0xc6,0xc8,
0x7d,0xa6,0x98,0x3,0x9,0xdb,0xe8,0x54,0xb,0xd,0x64,0x60,0x21,0x4d,0xb7,0xbf,
0xbc,0xdb,0xda,0xc1,0x3a,0x6,0x49,0x70,0x0,0xcb,0xdf,0xd2,0xd0,0x78,0x24,0xd9,
0x84,0xd7,0xe5,0x75,0x46,0x7d,0x25,0x55,0x14,0xa6,0xff,0xe0,0xe6,0x2f,0xdb,0x63,
0xc2,0x13,0x8f,0x76,0xd7,0x49,0x92,0xda,0x7,0xec,0xa8,0xe6,0x59,0xba,0x64,0x16,
0xec,0x23,0x42,0x26,0xed,0xee,0xe4,0xd9,0xeb,0xc0,0x56,0xcc,0xd8,0x5,0xf6,0xa8,
0x1b,0x6f,0xb1,0x52,0x11,0x80,0x1,0x6a,0xde,0x3,0x88,0x1a,0xdd,0x80,0x94,0x4c,
0xa,0x78,0xb4,0x3,0x6,0xd8,0x3,0xcf,0x1a,0x6b,0xb6,0x7d,0xff,0x87,0xe6,0xda,
0xcd,0x5f,0xb1,0xc,0x85,0xdf,0x47,0xaa,0xeb,0x58,0x78,0xe4,0xf8,0x0,0x36,0x60,
0x9e,0x78,0xc7,0x1a,0xb3,0xfb,0xa7,0x6f,0x9b,0xd3,0x27,0x5c,0x60,0xd5,0xda,0x6a,
0x97,0xd8,0x8e,0x26,0x17,0xd8,0x9a,0xe7,0x2d,0x46,0x55,0x3a,0x60,0x13,0x26,0xf1,
0xf5,0xbf,0xa,0xab,0x58,0x60,0x2b,0x54,0xe4,0x73,0x9e,0x11,0x3e,0x42,0x4d,0x67,
0x13,0x16,0xbd,0x1,0xd5,0x83,0x7c,0xd6,0xec,0xd9,0xe6,0x2b,0x2f,0xed,0x36,0xd7,
0xde,0xbc,0xc8,0xde,0x6f,0xc2,0x6b,0x4f,0xec,0x7c,0xd1,0x4c,0xfc,0xd4,0x4a,0x7b,
0x5c,0xe7,0x2f,0x5c,0x66,0xee,0x79,0xe6,0x6b,0x66,0xcc,0x82,0x25,0x56,0x6b,0x18,
0x38,0x6c,0xb8,0xf9,0xc6,0xf,0xf6,0xdb,0x89,0x23,0x78,0xa2,0x1b,0x6d,0x2d,0xdc,
0x4a,0x60,0x63,0x52,0x4e,0x79,0xe4,0x49,0xb3,0x64,0xff,0x2f,0xac,0xef,0x42,0x25,
0x9e,0xa5,0x2,0x76,0x96,0x39,0x49,0x61,0xe5,0x7,0x36,0xea,0x76,0x1c,0xb0,0x29,
0xbd,0xd4,0xa4,0xcc,0xa2,0x37,0xa0,0x1a,0x33,0xbc,0xf0,0xd2,0x4b,0xe6,0x63,0xe3,
0xc6,0x9b,0x53,0xc7,0x8c,0xb5,0xe9,0xb6,0x68,0x6,0x5b,0x9f,0xd9,0x6e,0x8e,0x39,
0xe1,0xfd,0xa9,0x9c,0xd4,0xd8,0xaf,0x7a,0x60,0x93,0x39,0xe6,0xb8,0xe3,0x6a,0xed,
0xa1,0x4f,0x1b,0x3b,0xce,0x2,0xbb,0x5b,0x0,0xe1,0x2,0xfb,0x9a,0xef,0xfc,0xb8,
0xdc,0xc0,0x86,0x1b,0xc7,0x35,0xaf,0xb,0xab,0x38,0x60,0x4b,0x6a,0x37,0x23,0xdc,
0x95,0x6,0xd8,0x37,0x2f,0x5b,0x6e,0x37,0xfc,0xf5,0x6b,0xd7,0x9b,0x8b,0x56,0xad,
0x35,0x97,0xad,0xdf,0x64,0x1e,0xde,0xb1,0xd3,0x7a,0xbb,0x2f,0xb9,0xe1,0x26,0x33,
0x73,0xc3,0x23,0xe6,0x8b,0xdf,0xda,0x6b,0x66,0xdc,0xf5,0x5,0x7b,0xac,0xf3,0x1f,
0xda,0x62,0xa6,0x3f,0xf9,0xbc,0xa1,0xb2,0xaf,0xdb,0x80,0xad,0xeb,0x5b,0x5a,0x55,
0xbc,0xda,0xb6,0x35,0xf5,0x80,0xf1,0x34,0x9e,0x54,0xe2,0xe0,0x1a,0xc5,0x4a,0x4c,
0x31,0xa9,0x2b,0x47,0x99,0x80,0xcd,0x26,0x6b,0x27,0xb0,0x67,0x7c,0x62,0x9e,0x95,
0x5c,0x6b,0xdf,0x78,0xdb,0xcc,0x7d,0x72,0x87,0x59,0xf6,0xa3,0x77,0xcc,0xf2,0xa7,
0x9e,0xb3,0xf7,0x6c,0xed,0xcb,0xdf,0x31,0x4b,0xf6,0xfd,0xd4,0x5c,0xfb,0xf8,0x33,
0x66,0xf5,0xf7,0xdf,0xb4,0x60,0x58,0xbe,0x73,0xb7,0x3d,0xce,0x29,0x53,0xa6,0x74,
0x2d,0xb0,0x4b,0xeb,0x3c,0xd3,0x4d,0x2f,0xaa,0x20,0x1f,0xc9,0xaf,0x38,0xa2,0xf2,
0x93,0x51,0xf9,0x7c,0xd3,0x2a,0xca,0x6,0x6c,0x39,0xa7,0xb0,0x6f,0x49,0xd7,0x24,
0x69,0xc2,0xb7,0xf0,0x44,0xe3,0x79,0x8e,0xcb,0x11,0xcf,0xba,0x96,0x2e,0x5d,0x6a,
0xef,0xc9,0xa8,0x49,0x93,0xed,0x71,0x60,0x43,0x9f,0xbd,0xec,0xe,0xbb,0xce,0x9f,
0x7f,0x4b,0x4d,0x93,0xe0,0xf9,0xa8,0xeb,0x17,0xd8,0xff,0x2b,0xc5,0x95,0xfb,0x36,
0xf4,0xd4,0x91,0xa9,0x8e,0x87,0xf4,0xcd,0xb8,0x2c,0xb2,0x56,0x2d,0x8d,0x81,0xf2,
0xf5,0xd3,0xe3,0xba,0x97,0x26,0xf3,0xac,0x3a,0x53,0xb8,0x10,0x60,0x6b,0x4e,0x32,
0x1e,0x57,0x85,0x1a,0x90,0x10,0xea,0x7c,0x49,0x91,0xbc,0x66,0x79,0x95,0x6d,0x71,
0x6d,0xb8,0x26,0xda,0x64,0x0,0xb8,0xd2,0xc4,0x9c,0xea,0xb2,0xac,0x3,0xf,0x3b,
0xdc,0x32,0xc2,0x34,0xeb,0x43,0x1f,0xfa,0x70,0x79,0xfa,0xa3,0x25,0xa9,0x2e,0x79,
0xa4,0xb5,0x9a,0xcc,0xf9,0x7a,0x55,0xfb,0x5a,0xc9,0x96,0x65,0xd9,0xe,0x23,0xd5,
0x5a,0x66,0x17,0xd8,0x87,0xe,0x3c,0xc1,0xd6,0x8c,0xd7,0x5b,0x14,0xe5,0xd0,0x1,
0x46,0x8b,0xa,0x2e,0xe6,0xa7,0xb1,0x98,0x8,0xe2,0xbe,0xd7,0xfd,0x9f,0xbb,0xc8,
0x2a,0x74,0xdf,0x87,0x54,0x73,0xbf,0xb3,0x1b,0xd7,0xe9,0xf3,0x16,0xc6,0x6a,0x3e,
0x3e,0x4d,0xa8,0x54,0xc0,0xe6,0x84,0x8b,0x90,0xa4,0xbe,0xa1,0xe8,0xcd,0x9c,0xd5,
0xdc,0xad,0xc0,0x26,0x25,0xf3,0x63,0xd7,0xdd,0x68,0xe,0x3a,0xf2,0x28,0xb,0xb8,
0xb4,0x1b,0x53,0xeb,0xb4,0x3e,0x75,0x19,0x50,0x52,0x17,0xd,0xb3,0x8c,0xeb,0xcb,
0x8e,0xa6,0x44,0xd2,0x8b,0x86,0x34,0xe0,0xfb,0xd0,0xe2,0x35,0xde,0x83,0xf,0x44,
0x8c,0x80,0xc8,0x8,0xea,0xb7,0xfb,0x3e,0x4c,0x6,0x81,0x88,0xdf,0x84,0x79,0xf3,
0x39,0x8e,0xc3,0xfd,0x2d,0x5e,0xc7,0xaf,0xc2,0x5e,0x3a,0xe1,0xbc,0x89,0x99,0xcf,
0x49,0xe7,0x35,0x64,0xf2,0xd4,0x7e,0xea,0x33,0x4c,0xcb,0x57,0xb3,0xee,0xb6,0xb6,
0x26,0x77,0x3d,0x0,0x3b,0x42,0x1a,0xa0,0x5e,0x84,0xc4,0x56,0x57,0xc9,0x68,0xb,
0x22,0x9c,0x46,0x95,0x26,0xb5,0xeb,0xe9,0x96,0xa5,0x71,0x46,0x72,0x9e,0x1,0x14,
0xa4,0xa6,0x80,0xcd,0xa6,0xe6,0x35,0x0,0x9f,0x6,0x0,0xa8,0xa0,0x84,0xa3,0x0,
0x66,0xd4,0x96,0x54,0x3b,0xe1,0xa4,0xe5,0x36,0xa3,0x50,0x13,0x86,0x68,0xd3,0xc0,
0xb8,0xcf,0x1e,0x7c,0xf4,0x31,0x35,0xf5,0x16,0xd,0x4d,0x1a,0x1,0x3,0x1d,0xf8,
0x6c,0x1e,0x66,0xc5,0x42,0xfa,0x72,0x6e,0x71,0xe7,0x3c,0x72,0xce,0x27,0xcc,0xe8,
0x25,0x2b,0x6b,0xcc,0x4,0xc6,0x96,0xf6,0x9a,0x95,0xe,0xd8,0x45,0x3a,0xcf,0xd4,
0xd3,0x1b,0xce,0xae,0xc6,0x7a,0x34,0xc0,0x43,0x22,0x74,0x42,0x17,0x93,0x4e,0x91,
0xd8,0x51,0x60,0xf,0x9f,0x31,0xc7,0x2,0x95,0xd7,0xf,0x38,0xf8,0x10,0xfb,0x3c,
0xcd,0x26,0xfd,0xf0,0x81,0x1f,0xe9,0xa7,0x6a,0xbb,0x2a,0xf9,0x19,0xf3,0x97,0x78,
0x6b,0xac,0x89,0x7e,0x68,0x58,0x3c,0xf7,0x8a,0xfb,0xa4,0xc4,0x24,0xee,0x1f,0xcf,
0xd5,0x52,0x3a,0xee,0x5c,0x88,0x72,0x0,0x42,0x9b,0x8b,0xde,0xa7,0x11,0x70,0x8f,
0xad,0x26,0x72,0xd6,0xb8,0x86,0x80,0xd,0x70,0x39,0x2f,0xbe,0x4b,0xe0,0xe5,0x38,
0xd0,0x24,0x6,0x8e,0x3d,0xc7,0xae,0xa1,0x97,0x4e,0xb3,0xff,0xe7,0x35,0x8d,0x55,
0x4e,0xfb,0x7b,0xa5,0x4,0x36,0x37,0xb4,0xa8,0x16,0xc0,0xbe,0xf9,0xd4,0x65,0x2f,
0x2e,0x89,0x3,0x36,0x36,0x36,0xb,0x55,0x76,0xec,0xb2,0x3b,0xad,0xb4,0xb5,0x55,
0x59,0x75,0xc0,0xcd,0x26,0x45,0xd2,0x32,0x3f,0x8d,0xe7,0x68,0x4,0x80,0x75,0xf0,
0x3f,0x5c,0x5c,0x7b,0x9e,0xc7,0x6c,0x4a,0x33,0x2a,0x97,0xef,0x6,0xd8,0xbc,0x87,
0xf1,0x4b,0x84,0xc6,0xd0,0xd6,0x54,0xe0,0xc2,0xf9,0xc0,0x64,0x5c,0xa6,0x73,0xca,
0xe5,0x33,0xea,0x2,0x4f,0x5d,0x66,0x61,0x6e,0x68,0x23,0x68,0x0,0x87,0xf,0x1a,
0x6c,0x19,0x86,0xba,0xc2,0x68,0x8a,0xc,0xdf,0xcf,0x42,0xb3,0x8,0xc0,0xf6,0x10,
0xad,0x77,0x2a,0x19,0x3b,0x43,0xa6,0xe9,0x3b,0x86,0x64,0x40,0x42,0xc0,0xcd,0xcb,
0x2c,0xa9,0xeb,0x1,0xbb,0xe2,0xc,0x19,0x64,0x80,0x21,0xc3,0xe,0xd9,0xc0,0x64,
0x7e,0x69,0x43,0x2,0x8a,0xa8,0x33,0x8d,0xcd,0x8f,0x94,0x1f,0x36,0x6d,0x96,0xb5,
0x97,0x91,0xc2,0xd8,0xdb,0x30,0x4,0x0,0xc6,0xc0,0xc3,0xb4,0xc0,0xd6,0x40,0x45,
0x86,0x27,0xa6,0x1,0x36,0x43,0x12,0xa5,0x8a,0xa3,0x96,0x27,0x35,0x36,0xd0,0xe2,
0x98,0xd3,0x2,0x5b,0xef,0xc5,0xde,0xe6,0xef,0xd9,0xdf,0xfd,0xb1,0x3d,0x1f,0xc0,
0x2d,0x5b,0x9e,0x81,0x8d,0xac,0x2c,0x7e,0xa,0x18,0x66,0xa9,0xa6,0x86,0xb8,0xd3,
0x17,0xc2,0x6a,0xce,0x42,0x7d,0x85,0xc1,0x45,0x81,0xd,0x38,0x91,0x48,0x14,0x5d,
0xa0,0x7a,0xe,0xba,0xe0,0x42,0xb,0x98,0x93,0x26,0x5d,0x52,0xdb,0x90,0x6c,0xdc,
0xac,0x61,0xa0,0xb8,0xfb,0x49,0x61,0x84,0x1a,0xf1,0xc3,0x3c,0x8,0xc3,0xc9,0x19,
0x7,0x53,0xe1,0x18,0x0,0x69,0x5c,0x26,0x22,0x4c,0x84,0x5e,0xe6,0xbc,0x87,0x8c,
0x45,0x5f,0x2c,0x99,0x12,0xe0,0x68,0x13,0x84,0x1b,0xe6,0xcf,0xb7,0x92,0x3c,0xb,
0xb0,0x59,0xfc,0x16,0xaf,0xab,0x81,0xa2,0x16,0xc7,0x87,0xd3,0x8c,0x6b,0x95,0x16,
0xd8,0xbc,0xaf,0x54,0xc0,0xa6,0x11,0x1e,0x2a,0x4e,0x0,0x60,0x6b,0x12,0x54,0xa2,
0x36,0x36,0x2a,0x65,0xcd,0x69,0x45,0xac,0xb5,0x4f,0xa,0xb3,0x11,0xb1,0x27,0xd9,
0xb8,0x5b,0x1e,0x7f,0xfc,0x3,0x40,0x1,0x3c,0xe4,0x20,0x28,0x39,0x64,0xe3,0xc6,
0x8d,0xe6,0xc4,0x93,0x4e,0x32,0x63,0x67,0x5c,0x6d,0x66,0xad,0xdb,0x68,0x37,0x3e,
0xbf,0x15,0x2d,0xec,0xe1,0x39,0xf5,0xdf,0x1c,0xf,0xbf,0x2f,0xdb,0x9b,0xdf,0xc3,
0xb,0x4e,0x48,0x8c,0xe3,0x89,0xd3,0xe0,0x34,0x57,0x1b,0x50,0x5d,0xf3,0xf0,0x13,
0xe6,0x85,0x9f,0xbd,0x63,0x6e,0xbc,0x69,0x7e,0xdd,0xe,0x2a,0x8a,0xbe,0x64,0x5,
0x36,0x2a,0x3f,0xd7,0x1,0x4d,0x84,0xff,0x63,0xd3,0xc3,0x7c,0xce,0xbc,0x79,0x99,
0x39,0x6b,0xd1,0x8a,0x44,0x89,0xcd,0x67,0x90,0xf2,0xf2,0xd2,0x97,0xe,0xd8,0xa1,
0xc9,0x42,0x6b,0x80,0x8d,0x79,0xe2,0x3,0xb6,0x1c,0x51,0x6c,0x42,0x81,0x9a,0x25,
0x55,0x3d,0x4d,0x3b,0x5f,0x80,0x3,0xe0,0x0,0x2e,0x9a,0x81,0x3a,0xb6,0xc4,0xf9,
0x4e,0x38,0xe,0x7c,0x21,0xee,0x54,0x54,0xfd,0xcd,0xf7,0xa8,0xac,0x33,0x49,0x85,
0xc7,0xd9,0x86,0x2d,0x8c,0xcd,0x5b,0xf,0x30,0x59,0x80,0x8d,0xe6,0x40,0xf8,0x15,
0x6,0x44,0x68,0xb,0x27,0xa1,0xeb,0xad,0x77,0x87,0x7,0x72,0x2c,0xa8,0xd8,0xbe,
0xef,0xc3,0xd9,0x6,0xa3,0xe4,0x3d,0x84,0xfe,0x4a,0x7,0x6c,0x15,0x82,0xb4,0xbb,
0xa9,0x7e,0x99,0x8a,0x40,0xa2,0xe1,0x2e,0xdf,0x2,0x64,0xf5,0x80,0x4d,0xba,0x28,
0xa6,0xd4,0x69,0xd3,0x66,0xda,0xcc,0x3e,0xc0,0x6,0x83,0x16,0xb0,0xe3,0x42,0x8c,
0x30,0x0,0x3b,0x73,0x3c,0x12,0x1a,0xab,0x97,0xdb,0xaf,0xd4,0x4c,0x3e,0xcf,0x6f,
0xe9,0x37,0xc7,0x2c,0xba,0xd5,0x1e,0x7,0xa9,0xa7,0x8d,0x2,0x1b,0x5f,0x81,0xfa,
0xc3,0x6b,0xe2,0xa6,0x7a,0x9c,0xa3,0x89,0x0,0x64,0x0,0xce,0xef,0x72,0xcc,0xd1,
0xef,0x45,0x52,0xf3,0x39,0xb4,0xa,0xfc,0x16,0x38,0xf8,0x30,0x3b,0xac,0x4f,0xa2,
0x6c,0xc0,0xa6,0x66,0xb7,0xec,0x21,0xa9,0x66,0x3,0x5b,0xed,0x85,0xd3,0x2,0x5b,
0x1b,0x3d,0xe,0xd8,0xb6,0xff,0x3b,0x9e,0x71,0xcf,0xf8,0x5b,0x65,0xfb,0x15,0x9d,
0x3b,0x10,0x37,0xc5,0x13,0xdb,0x5d,0xe3,0x8b,0xaa,0xfd,0xc1,0x73,0x3,0xdb,0x9d,
0x8f,0xed,0xf3,0x15,0xb8,0x23,0x82,0x61,0x44,0xd1,0xef,0x25,0xae,0x8d,0xf6,0x83,
0xba,0x8e,0x96,0xc4,0x23,0xd7,0x8,0x1b,0xbf,0x74,0xc0,0xe,0x5d,0x54,0x9a,0xf,
0x6c,0x36,0xa1,0xec,0xe9,0x46,0x81,0x2d,0xf3,0x29,0xae,0xcd,0xb0,0x80,0x41,0x6c,
0x18,0xb5,0x36,0xba,0x90,0xb4,0x84,0xad,0xea,0x2d,0x9c,0x6b,0x6e,0x26,0xda,0x88,
0x59,0xd7,0x25,0xe6,0x3d,0x20,0x45,0x61,0x36,0xd1,0x69,0x9b,0x69,0x80,0x8d,0x13,
0xf,0x6f,0xbf,0x7c,0x3,0x7c,0xf,0xd7,0x7,0x87,0x1d,0x26,0x5,0xcc,0xa,0x13,
0x81,0xeb,0x26,0x89,0xcd,0x7b,0xf9,0x8c,0x2f,0xb1,0x85,0xc,0xbf,0x4a,0xb5,0xf7,
0x79,0x69,0x55,0xf1,0x20,0xb5,0x5b,0xd3,0xf3,0x4c,0x5d,0x4a,0x1b,0x5,0xf6,0xdc,
0xb9,0x73,0xad,0x1a,0xad,0x5a,0x63,0x1f,0xc0,0xb2,0xc4,0x78,0xd3,0x2e,0xd9,0xfd,
0x49,0x9,0x4d,0xfc,0xa6,0xdb,0xc5,0x34,0x2b,0xb0,0x91,0xae,0x2,0x2d,0xe7,0x88,
0x47,0x5c,0x9,0x2b,0x44,0xf,0x78,0xd,0x26,0x9,0xf8,0x55,0x4d,0xc8,0xb5,0xf2,
0x7d,0x1f,0xdf,0xa1,0xcc,0xb4,0xd2,0x2,0x9b,0x3e,0x59,0xd8,0xda,0x65,0x2e,0xd6,
0xe8,0x6,0x60,0xa7,0xad,0xa1,0xe7,0xf7,0xda,0x1,0x6c,0x8d,0xdb,0xdd,0xb5,0x6b,
0x97,0xc9,0xa3,0x8a,0x73,0xdc,0x8,0x17,0x9b,0x71,0xd6,0xa7,0xe1,0xd8,0xe4,0x9d,
0x3e,0x40,0xb3,0x0,0x34,0xa1,0x39,0x39,0xa,0xa5,0x96,0xfb,0x80,0x5d,0xfa,0x70,
0x97,0x4b,0x4c,0x66,0x40,0x5,0xa,0x1e,0xf2,0xe2,0x81,0x8d,0x4,0xd5,0x68,0x1c,
0xbc,0xdf,0xc7,0x8f,0x9f,0x90,0xb,0xd8,0xca,0x16,0x4c,0x3,0xec,0x43,0x8e,0x1d,
0x50,0x2b,0xe2,0xc0,0x99,0x94,0xa6,0x92,0x4c,0x59,0x63,0x64,0xb5,0xa9,0xe8,0xe2,
0x98,0xd3,0xce,0xb0,0xaf,0x61,0xa7,0xd6,0x3,0x36,0xc7,0x15,0x3d,0xee,0xac,0xc0,
0x4e,0x72,0xf0,0x21,0x85,0xb1,0xe9,0x5d,0x7b,0x1b,0x47,0x63,0x0,0x76,0x1d,0xa,
0x63,0x7e,0x9a,0x37,0x30,0x80,0x8d,0xc9,0x23,0xd9,0x64,0x84,0x63,0x4,0x6c,0x62,
0xb5,0xb6,0x6a,0xa9,0xef,0x31,0x2d,0xb0,0xb1,0x39,0x93,0x7e,0x13,0x89,0xe7,0x4b,
0x5e,0x21,0x21,0x26,0x4d,0x49,0x24,0xa0,0xd2,0xdf,0x24,0xce,0xb8,0xe0,0x4a,0x9a,
0x35,0x2e,0xc7,0x1d,0x1e,0x72,0x8d,0xea,0x39,0xa5,0xef,0xf3,0xd8,0xfb,0x69,0x80,
0xd,0x3,0x24,0x5e,0x8d,0x5d,0xec,0x9b,0x1b,0xe6,0x56,0x7c,0xa9,0xc7,0x39,0xaf,
0x5,0x60,0xa7,0x20,0xfa,0x46,0x87,0xc1,0x7c,0xcd,0x3,0xb6,0xab,0x8a,0x93,0x3a,
0x49,0xbc,0x55,0x9,0x2a,0xca,0xab,0xc6,0x46,0xe4,0x3d,0x97,0x5f,0x73,0x5d,0xbf,
0xcc,0xae,0x6a,0x48,0xc9,0x66,0x65,0xc5,0xd9,0xd8,0x1a,0x44,0x10,0x2d,0x2,0x61,
0x92,0x25,0x52,0x97,0xcf,0x22,0x59,0x71,0x90,0xf1,0xe8,0x2b,0xfb,0xa4,0x92,0x4a,
0x5e,0xfc,0xb4,0xde,0x75,0x8e,0x47,0xe7,0x8a,0xbd,0xac,0xd4,0x53,0x37,0x93,0xae,
0x1e,0xb0,0x59,0x68,0x33,0xae,0x16,0xc1,0x71,0x47,0x19,0xf,0x5a,0xf,0xe0,0x46,
0xc3,0xc4,0x37,0x14,0x80,0x9d,0x1,0xdc,0x64,0x22,0x5,0xc9,0x5d,0x1c,0xb0,0x55,
0x91,0x24,0x60,0x93,0x39,0x5,0xd0,0xa6,0x6d,0xd8,0x6c,0xae,0x7d,0xf6,0x45,0x6b,
0x43,0x12,0x73,0x65,0x63,0xfb,0x52,0x4a,0x89,0xc5,0x2,0x18,0xfe,0xce,0x33,0x78,
0x4f,0x25,0xb4,0xbe,0x79,0xd9,0x48,0x78,0x9f,0x84,0x4c,0x4a,0x31,0xf5,0xad,0xcb,
0xaa,0x12,0x3b,0x4d,0x7e,0x78,0x1c,0xb0,0xd1,0x10,0x38,0xd6,0x38,0x6f,0x3d,0x71,
0x6d,0xc2,0x58,0x30,0x28,0xf6,0x28,0xc,0x11,0x8f,0x7d,0x0,0x76,0x6,0x70,0xc3,
0xd,0x9b,0x3d,0xbd,0xb1,0x6c,0xb3,0xbb,0xdc,0x22,0x10,0xc0,0xcc,0xe8,0x1d,0xfc,
0x1a,0x54,0x78,0x51,0xd1,0xe4,0x4a,0x20,0xbc,0xba,0x6e,0xc7,0x10,0x7d,0x2e,0x4f,
0x45,0x9e,0x4a,0x6b,0xb3,0xd4,0x6,0x0,0xf8,0x2c,0x29,0xc7,0x53,0xb,0x0,0x76,
0xb4,0x1e,0x5c,0xc3,0x16,0x7c,0x8b,0xeb,0xc7,0xfb,0xeb,0xa9,0xe3,0xed,0x2,0x36,
0x4e,0x69,0xdf,0x10,0x41,0x9c,0xa0,0x59,0x27,0x90,0xd2,0xb3,0xcd,0x9d,0x3c,0x3a,
0x6f,0xde,0x3c,0x1b,0x5a,0x64,0x20,0x61,0xe6,0x3,0xa3,0x19,0x3,0x53,0x1c,0xb9,
0xf0,0x49,0xb6,0x55,0x58,0xd9,0x81,0x8d,0x73,0xb,0x20,0xdb,0xee,0x24,0x33,0xe6,
0x98,0x23,0x4e,0x1a,0x6a,0xcb,0x15,0x93,0xec,0x51,0x9b,0x59,0xd5,0x27,0xe9,0x91,
0xa2,0x49,0xaa,0x78,0x5c,0xe5,0x1d,0x5a,0x43,0x16,0xa0,0x62,0x6b,0x2b,0x6e,0x9c,
0x46,0x15,0xb7,0x2d,0xb2,0x38,0xbe,0x14,0x75,0xe5,0xd1,0xf0,0x94,0x9c,0x73,0x59,
0x53,0x9c,0x61,0x3e,0xfc,0xa6,0xeb,0x17,0x88,0x3a,0xb,0x8b,0x48,0x50,0x1,0x8c,
0x0,0x29,0xa,0x38,0xea,0x2d,0x7c,0x23,0x7f,0x59,0xe4,0x87,0x54,0xa,0x98,0x7,
0x5e,0x6b,0x92,0xd1,0x77,0x1e,0x6e,0x65,0x9d,0x1a,0x64,0x60,0xa2,0x65,0x1e,0xbb,
0xc4,0x24,0x47,0x62,0x93,0xa8,0x65,0x1,0xe0,0xc5,0x1,0x1b,0x29,0x82,0xc3,0x4c,
0xf9,0xd0,0xdc,0xac,0x7a,0x4e,0x26,0x49,0x1f,0xa4,0x7a,0x56,0x1f,0x8,0xef,0x67,
0xc3,0xa7,0x5,0xaa,0x1b,0xbe,0xe2,0x31,0xcd,0xf7,0x73,0x5c,0x49,0xde,0x7e,0x75,
0x8b,0x71,0x97,0x40,0x28,0x60,0xb3,0xb2,0xa4,0x38,0x47,0xaf,0x6f,0xdc,0xca,0xa,
0x6c,0x1,0x19,0x49,0x19,0x9d,0xcb,0xad,0x4e,0xbc,0xd1,0xe5,0xeb,0x6a,0xc3,0xe2,
0x7c,0x7c,0xcd,0x2f,0x58,0x68,0x39,0xee,0x0,0x41,0xad,0x68,0x4e,0x9,0x66,0xf1,
0xf8,0x3b,0xd6,0xda,0x6b,0x85,0xe9,0xa1,0x86,0x26,0x7c,0x7,0xc,0x3b,0x9a,0x3f,
0x90,0x9a,0x18,0xf3,0xc2,0x9,0x2,0x70,0xa,0x17,0xc8,0x46,0xa,0x36,0x78,0x63,
0xc0,0x76,0xd5,0xed,0xb8,0xd6,0x40,0x3e,0x60,0xf3,0x3d,0xc4,0x76,0xb9,0xb9,0x59,
0x92,0x8a,0x14,0x8e,0x4a,0xdb,0x4b,0x5e,0xc9,0x2e,0x49,0x40,0xe3,0xf7,0xa9,0x39,
0xe7,0x78,0xf8,0x6e,0x34,0x11,0x31,0x9f,0x68,0xb7,0x50,0xf9,0x8,0xea,0x2d,0x42,
0x83,0x69,0x19,0x97,0x32,0xd5,0x26,0x4c,0xbe,0xc4,0x7c,0x7d,0xe7,0xce,0xf,0xa8,
0xb7,0xf4,0x1d,0x40,0xfd,0x45,0x2d,0xae,0x97,0x81,0x49,0xd5,0x9c,0xb,0x64,0xce,
0x1d,0xd,0x7,0x4d,0x84,0x76,0xcc,0xd8,0xf5,0x0,0x95,0xec,0xbd,0x56,0xee,0x21,
0xcc,0x35,0xa2,0x5,0x68,0x75,0x92,0xd8,0x60,0x50,0x9a,0x8d,0xf6,0x18,0xe7,0x99,
0xdb,0x66,0x80,0x8b,0xa9,0x87,0x33,0x17,0x54,0x36,0x90,0x92,0xf5,0xd5,0x20,0xdf,
0xc7,0x85,0xca,0xb8,0xc8,0x9e,0x72,0x81,0x8d,0x73,0x88,0x72,0xc2,0xbc,0x9,0x24,
0xae,0x43,0x8d,0xea,0xaa,0x7a,0xa1,0xaf,0x68,0x5e,0x77,0x3d,0xa0,0x46,0x17,0xf7,
0xd7,0x37,0x6,0x8a,0x26,0x8,0x2c,0x7e,0x9f,0xe3,0xb0,0x3e,0x83,0x3e,0xa9,0x11,
0x55,0x47,0x51,0x55,0xa3,0xea,0x2b,0x7b,0x28,0xa,0x40,0x8d,0x13,0x62,0x5c,0x6f,
0x56,0x3f,0x82,0xc6,0x6,0xe7,0xdd,0xd3,0xfc,0x2e,0x6a,0xb3,0xb,0x64,0x98,0x9f,
0x34,0x1b,0xf6,0xb6,0xa2,0x1a,0x4a,0x55,0xe5,0x5e,0x64,0x35,0x87,0xf2,0xb6,0xaf,
0x1e,0x31,0x6d,0x96,0x59,0xb9,0x6e,0xbd,0xd9,0xfd,0xc3,0xd7,0xcd,0xf,0xde,0xfb,
0x83,0xd9,0xfb,0xee,0x2f,0xcd,0x13,0xcf,0x3d,0x6f,0x26,0xdf,0xb2,0xdc,0xee,0x2f,
0x8e,0xaf,0x21,0x60,0xc7,0xa9,0x2a,0x54,0xf7,0x54,0x42,0xaf,0xeb,0xc4,0x5,0xb0,
0xb9,0x9,0x48,0x32,0x80,0x80,0x3d,0x2d,0x75,0x94,0xf0,0x62,0x34,0x59,0x4,0x8f,
0xaf,0xaf,0x95,0x70,0x54,0xea,0x51,0xf4,0xa0,0x30,0x55,0x3d,0x49,0x2,0xe7,0x8f,
0x3,0x6a,0x52,0x55,0x97,0xdb,0x5a,0x1a,0x49,0x4a,0xe,0x37,0x9e,0x69,0xd6,0xc8,
0x89,0x17,0x5a,0x40,0x57,0x87,0x13,0x14,0x56,0x71,0xa8,0xee,0x32,0x59,0xb4,0xa2,
0x6a,0x66,0x5e,0xa6,0xb2,0x65,0xf6,0x2e,0xf7,0x84,0xeb,0x17,0x35,0x51,0x38,0x67,
0xcc,0x90,0x8b,0xd7,0x3d,0x68,0x16,0x6f,0xd8,0x64,0xd6,0x3d,0xff,0xa2,0xf9,0xc2,
0xb3,0x3b,0xcc,0xed,0x9b,0xfa,0x5e,0xbb,0xeb,0x9e,0x96,0x74,0x9,0x42,0x23,0x99,
0xf8,0xf9,0x8d,0x66,0xf1,0xd3,0x3b,0xcc,0x43,0xaf,0xbd,0x61,0xb6,0xbd,0xf1,0x53,
0xf3,0xe0,0xf7,0xf6,0x9b,0xbb,0xbe,0xf9,0x5d,0x7b,0x5c,0x6e,0x45,0x5f,0x21,0xc0,
0x8e,0x12,0x5f,0x8a,0xda,0x53,0xd4,0x14,0x8b,0x5e,0x5b,0xc7,0xf,0x1e,0x6c,0x1,
0xb2,0xe5,0xd1,0x47,0x33,0x31,0x42,0x24,0x89,0xcf,0x31,0x83,0x57,0x14,0x49,0xe3,
0x7e,0x17,0x9c,0x9b,0xcd,0xc9,0x66,0x80,0x89,0xf8,0x1c,0x5c,0x30,0x91,0x2c,0x13,
0x56,0x25,0xd,0x0,0x33,0xdf,0x4d,0xc8,0x9,0xbb,0x58,0xbf,0x49,0x12,0x4a,0x33,
0x1a,0x80,0xf8,0xfa,0xd4,0x27,0x99,0x3,0x59,0x66,0x8b,0xef,0xdd,0xdb,0x77,0x7d,
0x46,0x8f,0xb6,0x12,0x1a,0x6,0x12,0x77,0x2d,0x60,0x94,0x68,0x37,0xb3,0x3f,0xb3,
0xc6,0x7c,0xfd,0xdb,0xaf,0x9a,0xdf,0xfe,0xf7,0xff,0x98,0xdf,0xfd,0xed,0xff,0xcc,
0xb7,0xf6,0xbf,0x61,0xee,0x7c,0xe2,0x29,0xfb,0xbf,0x66,0xa8,0xe5,0xb4,0xaa,0x72,
0xb,0x77,0x60,0xc8,0x6a,0x8b,0x25,0x13,0x81,0x42,0x17,0xb5,0xdd,0x82,0x29,0x35,
0xd,0xd8,0x81,0x92,0x69,0xf5,0xea,0xd5,0xb5,0x8d,0xc7,0xdf,0x6e,0x17,0x14,0x2d,
0x24,0x4e,0x34,0x34,0x52,0xcf,0x36,0xe4,0xff,0x44,0x2f,0xf8,0x3e,0xd4,0x51,0xb4,
0x1,0x36,0x39,0x76,0xea,0xc5,0x8f,0x3c,0x65,0x37,0x5,0x8f,0x24,0x7a,0xb0,0x9,
0x64,0x1a,0xa4,0x55,0x75,0xdd,0x10,0x16,0x2a,0x28,0x7f,0x33,0xac,0x8f,0xdf,0x43,
0x63,0xab,0x77,0x7c,0x79,0x68,0xcf,0x9e,0x3d,0xa9,0x9d,0x76,0xae,0x66,0x51,0x65,
0x72,0xb1,0x84,0xe7,0x98,0x82,0x27,0x98,0x25,0x1a,0x51,0x5a,0xef,0x3b,0x95,0x65,
0x9a,0x49,0xa7,0xb8,0x3f,0xdd,0x60,0xb9,0xb6,0x2,0x1f,0x66,0x8e,0x2f,0xee,0x4e,
0xb8,0xd8,0xad,0x92,0x8b,0xf6,0x77,0xf7,0x2d,0x34,0x21,0x9f,0x19,0x6,0x43,0xe5,
0x3c,0x61,0x46,0xdc,0x17,0x98,0x2e,0xc7,0x5,0xd0,0x9,0x4f,0x7,0x94,0xf5,0x28,
0xd1,0x26,0x9,0x70,0x93,0xe8,0xc2,0x4d,0x27,0x79,0x3,0xe9,0xc,0xa7,0xb7,0xed,
0x8e,0xfb,0x6c,0x47,0x36,0x74,0x25,0xc3,0x74,0x16,0xd7,0xdb,0xd,0xd3,0xe0,0xfb,
0x77,0xef,0xde,0xdd,0xf4,0x4d,0x94,0xb5,0x1f,0x9f,0x3c,0xf8,0x55,0xa6,0x10,0xeb,
0xfc,0xc5,0x83,0xc,0xb0,0xb2,0x44,0x15,0xd0,0x8,0x60,0x84,0xa8,0xbc,0x0,0x1a,
0x26,0xe9,0x3a,0x3b,0xc9,0x31,0x88,0x4b,0xcf,0x25,0x9c,0x99,0x94,0x97,0x1f,0x5d,
0x1c,0x5f,0xdc,0xa8,0x22,0xb7,0xa3,0x8c,0xeb,0x68,0x6c,0xc8,0x2b,0x1e,0xa8,0x3b,
0xa8,0xaa,0x8e,0x59,0x27,0x1d,0x6a,0x37,0x37,0x9e,0xd,0xf6,0xf,0xf7,0x3e,0xd2,
0x6f,0x43,0xc0,0xe9,0xb3,0x38,0xa7,0xf4,0xb9,0x56,0xa9,0x7b,0x68,0x37,0x59,0xd5,
0x71,0x18,0x10,0x6a,0x7c,0x34,0xbf,0x5e,0xe1,0x5a,0x75,0x68,0x69,0xa4,0xc5,0x36,
0x5,0x32,0x51,0xc0,0xa9,0x37,0x7c,0xde,0x15,0x17,0x3e,0x73,0x33,0x2,0x9,0xa5,
0xb9,0x71,0x6c,0xee,0x9,0x8c,0x6,0x6,0xd5,0x54,0x1b,0x3b,0x50,0xe7,0x10,0x1b,
0x39,0xea,0x75,0x47,0xaa,0xb8,0x31,0xe3,0x2c,0xb1,0x70,0x75,0x4f,0x61,0xe5,0xca,
0x74,0xca,0xe9,0x9c,0xad,0x64,0xec,0x4,0x83,0xcd,0x5b,0xd,0x55,0xd9,0x2e,0x33,
0xa8,0xa7,0xa8,0xa9,0x0,0xa3,0x91,0xfc,0xb,0x3e,0xb,0x73,0x54,0x42,0x88,0xfa,
0xaf,0xf9,0x62,0xd6,0x5c,0x2b,0x5f,0xbc,0x1a,0x8d,0x22,0x2e,0x72,0x92,0x74,0x1f,
0x50,0xe5,0x47,0xce,0xba,0xce,0xac,0xb8,0x77,0x83,0xd9,0xb9,0xe7,0x3b,0x66,0xdf,
0x6f,0x7e,0x67,0x5e,0xfd,0xd9,0xdb,0x66,0xc3,0xa3,0x8f,0x5b,0xaf,0x38,0xbf,0xa7,
0x50,0x63,0x0,0x76,0x8f,0x13,0xce,0x35,0x24,0x75,0x5c,0xc8,0x4c,0xdd,0x5c,0xd2,
0x86,0xca,0x94,0x67,0x5e,0x49,0xd9,0x60,0xb1,0x28,0x42,0xed,0xcf,0xa2,0x59,0xe0,
0xc8,0x22,0xde,0x8c,0x63,0xc,0x3b,0x9a,0x88,0x41,0x23,0x29,0xd1,0x48,0x77,0x6c,
0x5e,0x34,0x7,0x18,0xc6,0xc2,0x5b,0x6f,0x33,0x6b,0xb6,0x3e,0x65,0xee,0xff,0xde,
0xeb,0xe6,0x8a,0x7,0xb6,0xb4,0xdc,0x2b,0x8e,0x57,0xfe,0xdb,0xef,0xfc,0xd2,0x6c,
0x7e,0xed,0x75,0xb3,0xf2,0x99,0xe7,0xad,0x57,0x9c,0x7b,0xc3,0x39,0x7,0x60,0x97,
0x80,0xf0,0x54,0x63,0x57,0xc7,0xd5,0x5d,0xa3,0x4e,0x56,0x32,0xc,0x8b,0x50,0x12,
0x48,0xab,0x81,0x8d,0x73,0x2e,0xad,0x7,0x1f,0x80,0x21,0xbd,0x54,0xf1,0x25,0x35,
0xb5,0x91,0x7e,0xf0,0x6a,0x9e,0x38,0x64,0xc2,0x44,0xb3,0xe5,0xd9,0xaf,0x5a,0xaf,
0xf8,0x9f,0xff,0xf6,0xbf,0xe6,0xe5,0xd7,0x7e,0x60,0x6e,0x7b,0xe8,0x11,0xeb,0xb3,
0x68,0x56,0xb2,0xca,0xcc,0x97,0xf7,0xf5,0xf3,0x8a,0xa3,0xd,0xb8,0x36,0x36,0x1a,
0x83,0x1c,0xa0,0x85,0xc6,0xb1,0x3,0x75,0x2e,0x69,0x44,0x72,0x25,0xe7,0x70,0x81,
0xb8,0x9c,0x6c,0xa4,0xe0,0xfe,0xfd,0xfb,0x5b,0xb6,0x79,0xaa,0x6a,0x7f,0x62,0x3f,
0x3e,0xc0,0x8b,0x33,0xc,0x30,0x3,0x6a,0xd4,0xf1,0x46,0xa4,0x28,0xde,0x6d,0xf5,
0x56,0x93,0xe7,0x9c,0xdf,0xe0,0x18,0xd4,0xf8,0x1,0x2d,0x82,0xd2,0x56,0xd7,0x2b,
0xe,0xf3,0x49,0xdb,0x3f,0x4e,0xb,0x6f,0x7b,0x9c,0x67,0x1c,0x27,0x9d,0x6f,0xc6,
0x19,0xa5,0xbd,0x98,0x54,0x1c,0xa7,0xbc,0xe2,0x9c,0x77,0x5c,0x97,0xd8,0x40,0x3d,
0x44,0xd8,0x97,0x71,0x21,0x34,0x7a,0xa6,0xe1,0x80,0x61,0x93,0x66,0x2d,0x8,0x91,
0xfd,0xda,0x4a,0x42,0x1d,0x8f,0x4b,0xa8,0x1,0x74,0xf2,0xf2,0x5b,0x87,0x61,0xdf,
0xdf,0xa8,0xc7,0x79,0x24,0x35,0xcc,0x40,0x53,0x63,0x61,0x12,0xae,0xe7,0x9c,0x47,
0xd7,0x2b,0x8e,0x53,0x32,0x3a,0xe9,0xd3,0xad,0xc4,0xf3,0xe5,0xc2,0xfb,0x16,0xb1,
0x68,0x9f,0x67,0x1c,0x33,0x2a,0xce,0x33,0xae,0xfa,0x7d,0x2d,0xee,0x9,0x1e,0xff,
0xb0,0xeb,0x4b,0x4e,0x94,0x6,0x56,0xaa,0x99,0x70,0x6e,0x41,0x88,0x24,0x9f,0x1b,
0xaf,0x95,0x74,0x92,0x74,0xa9,0xe4,0xc8,0xee,0x8a,0x7a,0xec,0xa3,0x2b,0x29,0xa9,
0x9,0x55,0xfc,0xdc,0xcb,0xaf,0xb4,0xc7,0x89,0x3f,0x0,0x55,0xdb,0x3d,0x36,0x39,
0xb3,0x54,0x9,0xa5,0xe7,0x0,0x26,0x6d,0x2,0x8e,0xbc,0xca,0x92,0xf8,0x49,0x9e,
0x73,0xa4,0x24,0xe9,0xc0,0x69,0x43,0x51,0x59,0x17,0x20,0x8d,0xab,0x14,0x53,0x42,
0x92,0x9b,0x96,0xdb,0xc8,0xbd,0x8,0xd4,0x63,0xa4,0x61,0x8c,0xaa,0xed,0x56,0x41,
0x88,0xb2,0x97,0xd8,0xe0,0xaa,0x52,0xb2,0x21,0x96,0xea,0x4,0x55,0x8a,0x10,0x0,
0xe,0x12,0x5f,0x79,0xdd,0xbe,0x85,0x7d,0xef,0xdb,0x98,0xd1,0xa,0xa9,0xb4,0xb,
0x8f,0xaf,0x6a,0xb4,0xdd,0x26,0x11,0xca,0xbe,0x2,0xf0,0x2,0x22,0x4c,0x4a,0x9,
0x38,0x69,0xbc,0xe9,0x38,0xd6,0x70,0xb0,0xf1,0x5d,0x5c,0x8f,0x38,0xcf,0x39,0x4c,
0x2,0xe9,0xcb,0xef,0x13,0x5f,0x77,0xcf,0x8b,0x94,0x6a,0xdf,0x75,0x20,0x69,0x28,
0x8e,0x61,0x61,0x62,0xf8,0x98,0x5c,0xd8,0x9d,0x81,0x1a,0x22,0xc2,0x61,0x80,0xc2,
0x2d,0x8,0xd1,0xe8,0x9f,0xa8,0x1a,0xab,0x4,0x15,0xb5,0x4,0xae,0xe4,0x88,0xc1,
0x46,0x97,0x5b,0x30,0xe4,0x2e,0x5f,0xf1,0x90,0xba,0x96,0xf2,0x5b,0x68,0xe,0xf5,
0x46,0xfe,0xd6,0x9b,0x84,0x22,0x6,0xc0,0x67,0x39,0xff,0x24,0xcf,0xb9,0x6c,0x6b,
0xce,0x11,0xc6,0x14,0xed,0x99,0x1e,0x28,0x50,0x47,0x11,0x49,0x1c,0x6c,0x56,0x6c,
0x39,0xd9,0xaf,0x71,0xc0,0x56,0x1e,0xb6,0x40,0xc9,0x7b,0xd2,0xc6,0x60,0x8b,0x5a,
0xea,0xbf,0xe6,0x76,0x48,0x95,0x8f,0x80,0xd4,0x4c,0xd4,0x67,0x98,0x5,0x7f,0xeb,
0xbd,0xbe,0x74,0xd4,0x2c,0x9e,0x73,0x49,0x73,0x1c,0x86,0xa4,0xa1,0x66,0x6e,0x64,
0x10,0x28,0x50,0xab,0x9,0x55,0xba,0x52,0xcd,0x3e,0x53,0x38,0x9,0xc9,0xcd,0x6b,
0x84,0x70,0x70,0x10,0xa1,0x9a,0x9e,0xfb,0x99,0x7b,0x6a,0x8d,0xf9,0x1,0x84,0xa4,
0x5c,0xab,0x9b,0x6d,0xf8,0x80,0x4d,0x6d,0x34,0x4c,0x89,0x8e,0xa6,0x1c,0x1b,0xb,
0x60,0xab,0x27,0xb9,0x2b,0xdd,0xe5,0x3f,0x20,0x7c,0xa5,0x86,0x21,0x71,0x36,0x38,
0xe7,0x26,0xaf,0x38,0xf1,0x70,0xa,0x46,0xc2,0x8e,0x9,0xd4,0x15,0xa4,0x30,0x92,
0x52,0x45,0x51,0x81,0xe5,0xc5,0x55,0x28,0x7,0x9,0x78,0xf6,0xca,0xbb,0xad,0xa7,
0x59,0x85,0x7,0x3e,0x80,0xb5,0xb,0xd8,0x80,0x97,0xa5,0x7c,0x6c,0x3c,0xd5,0x30,
0x21,0xd,0x15,0x50,0xff,0x71,0x1e,0xe5,0x39,0xe7,0x51,0xaf,0x27,0x49,0x73,0xec,
0x68,0x4a,0x3a,0xc3,0x4e,0x9,0xd4,0x75,0x84,0xcd,0xa8,0xe6,0xf,0x6c,0x68,0x42,
0x47,0x52,0xcf,0xe5,0x38,0x3,0x2c,0x14,0x94,0xf0,0x3a,0xff,0xcf,0xb,0x6c,0xa4,
0xa0,0x2f,0x95,0x52,0x21,0x24,0xdf,0xd2,0x9c,0x6f,0x8d,0xf9,0xad,0x54,0x33,0xe5,
0x68,0xee,0x0,0x38,0x51,0x95,0x65,0x1a,0xc8,0x33,0x4d,0xf,0x39,0x3e,0xc7,0xff,
0x95,0x6,0xa,0x50,0x93,0xa,0x3f,0xfa,0xc5,0xc1,0xfb,0xd4,0x6e,0x42,0x47,0xcd,
0xa8,0x58,0xb,0x14,0xa8,0x25,0x84,0x37,0x17,0x10,0x63,0x47,0xb2,0xf1,0x1,0x19,
0x9,0x17,0x78,0xc9,0x19,0x2c,0x40,0x3c,0x95,0xd0,0xe,0xcf,0x79,0x1d,0x9b,0x95,
0xf7,0xf1,0x7e,0x49,0xef,0x68,0xc7,0x50,0x9f,0x13,0xcd,0xd,0x43,0xe5,0x59,0x0,
0x93,0x38,0x31,0x76,0x3e,0x12,0x9a,0xd1,0xb8,0x71,0xf1,0x62,0x4c,0x8,0x37,0x69,
0x43,0xce,0xbd,0xb8,0xf0,0x15,0xcc,0x4a,0x3,0xfc,0x48,0xf0,0xa0,0x3d,0x52,0xd8,
0x19,0x81,0xba,0x9a,0x94,0xae,0x9,0x60,0x35,0x7e,0x8,0xf0,0x0,0xa,0x8d,0xf5,
0x61,0x62,0x9,0xcf,0x79,0xbd,0x52,0x8d,0xf,0xc3,0x0,0x78,0x1e,0x6d,0x13,0x1c,
0x8d,0x7d,0xfb,0xbc,0xe1,0x48,0xd3,0xac,0x4d,0xfd,0x64,0xb,0x3,0x42,0xf5,0x66,
0xaf,0xa4,0xa8,0x96,0x2,0xec,0x8a,0x6f,0x27,0x15,0x75,0x10,0x21,0x88,0x2b,0xf5,
0xc,0x14,0xa8,0xeb,0xa8,0x3a,0x38,0xcf,0x3a,0xa1,0xa4,0x6e,0xb,0xac,0x6a,0xa8,
0xe0,0x26,0x7e,0x60,0xbb,0xa2,0xb6,0xb2,0x0,0x5c,0x3b,0xba,0xd5,0xaa,0xe6,0x1a,
0x80,0xab,0x92,0xa,0x7f,0x80,0xa4,0xf6,0xb8,0x15,0x9f,0xad,0x79,0xea,0x55,0xc6,
0x89,0xb9,0x11,0xd,0x5f,0xa9,0xa8,0x23,0x84,0xaf,0x2,0xf5,0x1c,0x61,0x47,0xaa,
0xef,0xb5,0x24,0xac,0xa4,0xdb,0x84,0xcf,0xdd,0x6f,0x81,0x32,0x79,0xcb,0x33,0x89,
0x31,0xe3,0x56,0x2f,0xb4,0x5,0xd,0x9,0x40,0xf5,0x26,0x19,0x85,0x6e,0x23,0x2,
0x36,0xed,0x79,0x51,0xc5,0x79,0xf,0xe0,0x65,0xe1,0x35,0x57,0x51,0x87,0x1b,0xbe,
0xa,0x76,0x74,0xa0,0x9e,0xa5,0x6a,0xbf,0xb2,0x5a,0xef,0x6b,0x0,0xa3,0x16,0xbb,
0x48,0x3a,0xc0,0xc2,0xf3,0xac,0x9d,0x4d,0x9b,0xb5,0x70,0x8a,0xd1,0xbd,0x84,0x2c,
0x38,0xd,0xe8,0xab,0xc4,0x34,0xdb,0x57,0xd,0x36,0x5,0x18,0xa,0x5f,0x51,0x9f,
0x4d,0x1e,0x7d,0xb8,0xf3,0x81,0x7a,0x9a,0x54,0x5,0x26,0xb5,0x16,0xef,0x33,0x80,
0x51,0x41,0xc3,0x59,0x8b,0x56,0xd4,0x42,0x49,0xed,0x98,0x9d,0x7e,0xf5,0x9e,0x1f,
0xf5,0x6b,0xea,0xc7,0x22,0xc5,0x94,0xde,0xe5,0x1c,0x33,0xaa,0xb7,0x3b,0x1,0x4,
0xe9,0xad,0x5e,0xeb,0xae,0x57,0x1c,0x3b,0x3a,0x84,0xaf,0x2,0x95,0x86,0x54,0x10,
0x2,0x48,0x70,0x4e,0x61,0x6b,0x93,0xe0,0x41,0xbc,0x17,0x69,0xc8,0x23,0xcf,0x79,
0xdd,0x6d,0xfc,0x47,0xc8,0x29,0xa,0x38,0x2d,0xea,0x93,0xb3,0x34,0xf5,0x63,0x1,
0x56,0x5f,0xe9,0x22,0x8c,0xc5,0x3b,0xea,0x68,0xfa,0x6c,0xab,0x56,0x47,0xc7,0x2,
0x3,0x6c,0xa9,0xe2,0x0,0x5a,0xe1,0xab,0x70,0xa7,0x3,0x95,0x8a,0x54,0x10,0xa2,
0x70,0x17,0x8e,0x27,0x80,0x21,0xaf,0x38,0xb,0x70,0x23,0x15,0xa3,0x63,0x76,0x7d,
0x80,0x4b,0x6a,0xea,0xe7,0xeb,0x9d,0x9e,0xd4,0xd4,0x8f,0x85,0x4a,0x9d,0xa7,0x92,
0x4a,0x76,0x74,0x8,0x5f,0x5,0x2a,0x2d,0x55,0xbb,0x5b,0xf6,0xab,0xec,0x2,0xd8,
0x48,0x44,0x96,0xf,0x70,0xbe,0xf1,0x3d,0x45,0x34,0xf5,0xf3,0x4d,0x12,0x49,0xaa,
0xa0,0xa2,0x94,0xd1,0x3d,0x7e,0x3c,0xdd,0xbc,0x37,0xa4,0x81,0x6,0x2a,0x3d,0xd1,
0x11,0x25,0xed,0x0,0x3,0x5f,0xbd,0x70,0xb4,0x4e,0x58,0xcb,0xd7,0x37,0x9d,0x45,
0x98,0xcd,0x57,0xb2,0xd8,0x48,0xd9,0x62,0x28,0x7b,0xc,0x14,0xc8,0x43,0x84,0x7e,
0xb0,0x45,0xe3,0xc6,0xbe,0x86,0x54,0xcb,0x40,0x81,0xba,0x98,0xb0,0x49,0x69,0x10,
0xe0,0x36,0x4b,0x40,0xfa,0xb6,0xb2,0xcf,0x59,0xa0,0xc6,0xe8,0xff,0x1,0xc8,0xa7,
0x6b,0xb0,0x9a,0x42,0xd1,0x47,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,
0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/rojo.png
0x0,0x0,0x17,0x8b,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc5,0x0,0x0,0x0,0xbe,0x8,0x6,0x0,0x0,0x0,0x85,0xdd,0xcb,0xf2,
0x0,0x0,0x17,0x52,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0xcf,0xab,0x5c,0x47,
0x76,0xc7,0x5b,0xd2,0xfb,0xa1,0xd6,0x6f,0x19,0x67,0x6c,0x82,0x88,0x4c,0xa2,0x80,
0x42,0xec,0xc9,0xf,0x29,0x33,0x1a,0x10,0x8c,0x87,0x34,0xb1,0xf3,0xb0,0x26,0xca,
0x90,0x80,0x82,0x4d,0x70,0x88,0x19,0x6c,0x78,0xc4,0x4a,0xc6,0xc9,0x38,0x1,0xc3,
0x83,0xc,0x36,0x83,0xc9,0x88,0xc4,0x9,0xa,0x63,0x83,0xc0,0xc6,0x48,0x59,0x3c,
0x34,0xd0,0x30,0x5e,0x6a,0xe1,0x85,0x16,0x5e,0x78,0xe1,0x85,0x16,0x5a,0x18,0xfc,
0x4f,0x78,0x79,0xd3,0x9f,0x4b,0x1f,0x71,0x55,0xae,0xba,0xb7,0xea,0xde,0xaa,0x7e,
0xfd,0x9e,0xbe,0x5f,0x28,0x9e,0x2d,0x77,0xdf,0x6e,0xeb,0xd5,0xa9,0x3a,0xe7,0x7b,
0xce,0xf9,0x9e,0xd1,0x48,0x10,0x76,0x39,0xee,0xdd,0xbb,0x57,0x5d,0xbf,0x7e,0xbd,
0x7a,0xf9,0xe5,0x97,0x1f,0x2c,0xfe,0xfd,0xee,0xdd,0xbb,0x95,0xfe,0x76,0x84,0x47,
0xa,0x6f,0xbe,0xf9,0x66,0xf5,0xf8,0xe3,0x8f,0xb3,0xf1,0xeb,0xb5,0xb6,0x6f,0xf4,
0xe0,0x9f,0x6d,0x9d,0x39,0x73,0xa6,0x7a,0xf5,0xd5,0x57,0xab,0xaf,0xbe,0xfa,0xea,
0xff,0xf4,0x37,0x26,0xec,0x59,0x5c,0xbb,0x76,0xad,0x3a,0x75,0xea,0x54,0x35,0xde,
0xb7,0xaf,0xfa,0xfe,0xda,0x4a,0xb5,0x79,0x78,0xbd,0xfa,0xc5,0xb1,0x71,0xf5,0xf1,
0x89,0xc3,0xd5,0x8d,0xc6,0xfa,0xa7,0xc3,0x7,0xab,0x73,0xab,0x7,0xea,0xd7,0x61,
0x3c,0xbc,0x4f,0x7f,0x7b,0xc2,0x9e,0xc3,0x2b,0xaf,0xbc,0x52,0x1d,0x98,0xdd,0x0,
0x97,0xf,0xae,0x56,0x1f,0xce,0x36,0xfe,0xaf,0x1f,0x3b,0xd2,0xb9,0x6e,0x9d,0x3c,
0x5c,0xfd,0xf5,0xc1,0xb5,0xfa,0x7d,0x17,0x2f,0x5e,0x94,0x61,0x8,0x7b,0xcb,0x20,
0x8e,0xcd,0x4e,0xfd,0x77,0x67,0xb7,0x42,0x8c,0x31,0xb8,0x8b,0xf7,0x9d,0x3e,0xb0,
0xbf,0x7a,0xfa,0xe9,0xa7,0xab,0xcf,0x3e,0xfb,0x4c,0xc6,0x21,0xec,0xd,0x83,0xf8,
0xe0,0xf8,0xa1,0x5e,0x6,0x61,0x6b,0x7b,0x76,0x6b,0x3c,0xb7,0xbe,0x5a,0xbb,0x53,
0xd3,0xe9,0x54,0x86,0x21,0xec,0x4e,0xc0,0x24,0x61,0x10,0xff,0x79,0x6c,0x98,0x41,
0xd8,0x9a,0xce,0xd6,0xdf,0x1d,0x5a,0xab,0xd6,0x57,0x56,0xaa,0xf7,0xdf,0x7f,0x5f,
0x86,0x21,0xec,0x2e,0x70,0x9a,0xb3,0x79,0xff,0xf9,0xc8,0xc1,0x2c,0x6,0xd1,0x5c,
0xaf,0xcf,0x2,0x74,0x9e,0xfd,0xe9,0xa7,0x9f,0xca,0x30,0x84,0xdd,0x1,0xfc,0x7e,
0xdc,0x1c,0x4e,0xf5,0xdc,0x6,0x61,0x8b,0x67,0xf3,0x19,0x5f,0x7c,0xf1,0x85,0xc,
0x43,0x58,0x7e,0x10,0x10,0xe3,0xff,0x4f,0x13,0xe2,0x5,0x98,0xa6,0xd4,0x18,0xe3,
0xf1,0xfd,0xfb,0xaa,0xcb,0x97,0x2f,0xcb,0x28,0x84,0xe5,0xc6,0xf9,0xf3,0xe7,0xab,
0xdf,0x5d,0xd9,0x5f,0x6f,0xda,0xae,0x8d,0xd,0x35,0xfb,0xbd,0xb5,0x95,0x3a,0xee,
0x20,0x27,0x1,0xfd,0x3a,0x4d,0x30,0xc,0xf2,0x19,0x2b,0x33,0x37,0x4a,0x8c,0x94,
0xb0,0xd4,0x4c,0x13,0xa7,0x77,0xcc,0xa9,0x8f,0xd1,0x60,0x3c,0xdc,0x2a,0x94,0x77,
0x5c,0xb9,0x72,0xa5,0x3a,0x72,0xe4,0x48,0x92,0xcb,0x85,0x1,0xe9,0xb6,0x10,0x96,
0x16,0xef,0xbc,0xf3,0x4e,0x34,0xd3,0xc4,0xd,0x41,0xde,0xe1,0xa5,0x97,0x5e,0x7a,
0x68,0x33,0x53,0xd2,0x71,0xfa,0xd4,0xa9,0x6a,0x23,0xc1,0xf5,0x22,0x33,0x3e,0x2f,
0x19,0x11,0x84,0xe5,0xc1,0x47,0x1f,0x7d,0x94,0xc4,0x34,0x91,0xd5,0xe6,0x56,0xf0,
0xd5,0x35,0xdd,0xb9,0x73,0xa7,0xae,0x7d,0xfa,0xf7,0xa3,0x71,0x89,0x3e,0x4a,0x45,
0x78,0x3d,0xc5,0x85,0xfa,0x4d,0x8,0x4b,0xc5,0x34,0xb1,0x39,0x63,0xdd,0x9e,0x53,
0xb3,0x5b,0xe2,0xa9,0xa7,0x9e,0xf2,0x6e,0xe2,0x2f,0xbf,0xfc,0xb2,0xde,0xe4,0xb1,
0xcf,0xa3,0x76,0x8a,0xd7,0xdf,0xb8,0x71,0x43,0x46,0x21,0x2c,0x7,0x28,0xf0,0xf3,
0x31,0x4d,0xfc,0x3b,0xc5,0x7d,0x3e,0x37,0x8,0xf7,0x88,0xf7,0xf9,0x9e,0xf7,0xc9,
0x27,0x9f,0xd4,0x9b,0xfc,0xad,0xc8,0x5b,0x87,0xcf,0x90,0x51,0x8,0x4b,0xc5,0x34,
0xfd,0xfe,0xca,0x1,0xaf,0x41,0x60,0x28,0x6c,0x56,0xfe,0xbb,0x1b,0x78,0x5f,0x3f,
0x7e,0xa8,0x8e,0x3f,0x28,0x21,0x77,0x9f,0xf9,0xc2,0xb,0x2f,0x78,0x9f,0x19,0x5a,
0x3f,0x9d,0x19,0x8f,0x8c,0x42,0x58,0x1a,0xa6,0x89,0x60,0xd9,0xdd,0xf0,0x66,0x10,
0xb0,0x4a,0x94,0x7c,0xf3,0x93,0xd7,0xb9,0x1,0x38,0xc1,0xf6,0xef,0xac,0xaf,0xd5,
0xcc,0x11,0x1b,0x9a,0x92,0x10,0x5e,0xfb,0x83,0x59,0xe0,0xbc,0x9d,0x90,0xb3,0x80,
0x96,0xc5,0x28,0x6e,0xde,0xbc,0x29,0xa3,0x10,0x76,0xe,0x9c,0xf0,0x21,0xa6,0x69,
0x63,0x5e,0xb4,0xd7,0xc,0xa2,0xad,0x28,0x70,0xeb,0xe8,0xc3,0x2e,0x11,0xef,0x87,
0x52,0x1d,0xcd,0x1b,0x8b,0xbe,0xb3,0xba,0x92,0x9c,0xc4,0x23,0xb7,0x41,0xd0,0xae,
0xdf,0x8a,0xb0,0x63,0xa0,0x10,0xf,0xa6,0xc9,0xdd,0xe0,0x56,0x93,0x74,0x7c,0xb6,
0x41,0x7d,0xc9,0x34,0x28,0x5b,0xde,0x47,0x0,0x3d,0x75,0xf2,0x15,0xff,0x3d,0x73,
0xa7,0x42,0xf1,0x47,0x4c,0xd0,0x7e,0xe1,0xc2,0x5,0x19,0x85,0xb0,0x73,0x4c,0x13,
0x9b,0xfe,0x75,0xf,0x33,0x44,0xcf,0x43,0x57,0xf5,0x2a,0xd4,0x2d,0xb7,0x48,0x4a,
0x9,0x48,0xdb,0xa2,0x1c,0x9d,0x6,0x24,0xc,0x4e,0xbf,0x1d,0x61,0xe1,0xc0,0x1d,
0x62,0x43,0xe3,0x1e,0xb9,0x9b,0x13,0x37,0x28,0x14,0x38,0xfb,0xc,0xb,0xe6,0xc9,
0x17,0x80,0xa7,0xae,0x49,0xb,0x8b,0x25,0x8,0xb,0x61,0x9a,0xf0,0xf9,0xa7,0x9e,
0x96,0x51,0x5f,0x76,0x3a,0xe6,0x79,0xbe,0x0,0x3c,0x76,0xe1,0xbe,0x71,0x4b,0xdc,
0xbe,0x7d,0x5b,0x46,0x21,0x2c,0x1e,0x6c,0x78,0xea,0x94,0x7c,0x4c,0x13,0x27,0x3e,
0x1b,0xbc,0xef,0x73,0xfb,0x34,0x21,0xdd,0x9a,0x57,0xc8,0x42,0xdf,0xea,0xb7,0x23,
0x64,0x77,0x89,0x62,0x99,0xa6,0xeb,0x4e,0x3b,0xa9,0x51,0xaf,0x2e,0xd3,0xd4,0x87,
0xc9,0x7a,0x6c,0x75,0x35,0xda,0x30,0xf8,0x5c,0x6e,0xac,0xbe,0x86,0x28,0x8,0x9d,
0x2e,0x4c,0xdb,0xe6,0x32,0xa6,0xc9,0x27,0x38,0x0,0x63,0x34,0x7b,0x49,0x9d,0x5f,
0x18,0xfa,0x3d,0x52,0xda,0x56,0x8d,0xf2,0x55,0x73,0x91,0x90,0x1d,0x48,0xc6,0xe0,
0x12,0xe1,0xfe,0x10,0xac,0xba,0x34,0x2a,0xad,0x9e,0x18,0xc4,0xeb,0x81,0x1a,0x24,
0x73,0x61,0x52,0x63,0x9,0x1f,0xac,0xde,0x89,0x9c,0x83,0xda,0x50,0x85,0x1d,0x81,
0x25,0xd3,0x3e,0x9c,0xe7,0x6,0xcc,0xd,0x82,0x32,0xe5,0xbf,0x73,0xa,0x87,0x98,
0x26,0xb7,0x27,0xe2,0xe2,0xda,0x4a,0x6d,0x54,0x14,0xf8,0xd9,0xa2,0x37,0xa2,0x29,
0x85,0x69,0xb,0xc5,0x3f,0xb2,0xd7,0xee,0xfa,0xab,0x4b,0x2f,0xd4,0x9f,0xd5,0xc6,
0x46,0xc5,0x50,0xbe,0x82,0x90,0xcd,0x55,0x69,0xaa,0x64,0x50,0x9a,0x81,0x4b,0xf5,
0xa3,0x83,0x71,0xb9,0x4,0x9e,0x3,0x35,0x7a,0x76,0x76,0xe3,0x3c,0xb1,0x7f,0xbf,
0x77,0xd1,0x55,0x37,0x1a,0x8d,0x82,0xeb,0xdb,0xab,0x7,0x5a,0x3f,0xa3,0xad,0x56,
0x4a,0x10,0x6,0xa1,0x4b,0x61,0x83,0x3f,0x67,0xf3,0xf9,0x92,0x6b,0x9c,0xe2,0x26,
0x6b,0x99,0x9a,0x78,0x6b,0xbe,0xd7,0x5d,0x3f,0x9f,0xdd,0x0,0x6d,0xb5,0x4e,0xb7,
0xe6,0x1d,0x7a,0x39,0xdc,0x34,0x41,0x78,0x8,0xb1,0xa,0x1b,0x64,0x89,0xa7,0x9e,
0x9c,0x40,0xf3,0xb4,0x27,0x96,0xf0,0xdd,0x8,0x94,0x5c,0x70,0x6b,0xf8,0x16,0xf1,
0x2,0xc5,0x7b,0xb6,0x62,0x82,0x6a,0x31,0x4d,0x42,0x51,0xa4,0x2a,0x6c,0xd8,0x7a,
0xfb,0xe8,0xb8,0xfa,0xee,0x89,0xe3,0xde,0x18,0xc1,0xd6,0xd9,0xb3,0x67,0x1f,0x8a,
0x29,0x6c,0xcd,0xb3,0xcd,0xde,0x85,0x91,0xb5,0xc5,0x10,0xb9,0x28,0x5f,0x41,0xf0,
0x22,0x45,0x61,0xc3,0x2d,0xef,0x26,0x6b,0xbc,0xb5,0xb5,0xd5,0xfb,0xa4,0x86,0x59,
0xf2,0x2d,0xea,0x95,0x7e,0x6f,0x76,0x7b,0xfc,0x5b,0xc0,0x95,0xa3,0x70,0xf0,0x48,
0xa0,0xb8,0x50,0x10,0x6,0x33,0x4d,0xb1,0xa,0x1b,0x21,0x6d,0xa5,0x52,0x99,0x63,
0x6e,0x93,0x67,0x3c,0x41,0x36,0xee,0x9a,0x98,0x26,0xa1,0x8,0x52,0x14,0x36,0xda,
0x6e,0xb,0x6e,0x19,0x8c,0x2b,0xe7,0x77,0xb3,0x3c,0x88,0x1b,0xf4,0x5b,0x71,0xa1,
0x2a,0x5f,0x85,0xec,0x48,0x55,0xd8,0x70,0x19,0x9f,0xa9,0x47,0x92,0x26,0x57,0xc0,
0x1b,0xaa,0xb8,0xb5,0xe2,0xc2,0xdc,0x6,0x28,0x8,0xbd,0x14,0x36,0x5c,0xa6,0x89,
0x4c,0x77,0xb3,0xde,0x89,0xd,0x1b,0xca,0x7e,0xf7,0x89,0x71,0xdc,0x8a,0xdb,0xa1,
0xc5,0x85,0x82,0xd0,0x8a,0x90,0xc2,0x46,0x2c,0xd3,0x74,0xf5,0xea,0xd5,0x6a,0x32,
0x99,0x78,0x93,0x7c,0x6e,0xf6,0x3b,0x15,0xbe,0x8a,0x5b,0x7b,0xae,0x7a,0x23,0x84,
0x62,0x4c,0x53,0x8a,0x1a,0x86,0xcb,0x34,0x61,0x10,0xf6,0x2c,0xca,0x32,0x8e,0xae,
0xae,0x3e,0x54,0xff,0xd4,0xcc,0x7e,0xa7,0x16,0x3,0xf2,0x3c,0x5f,0xc5,0x2d,0x37,
0x1a,0x86,0x26,0xa6,0x49,0x28,0xc2,0x34,0xf9,0x14,0x36,0x62,0x94,0xbe,0xcd,0x28,
0xdc,0x52,0xa,0xab,0x94,0x75,0xc5,0x8f,0x2d,0xfb,0x1d,0xeb,0xff,0x87,0x2a,0x6e,
0x79,0xe,0x7f,0xde,0xf7,0xe6,0x11,0x84,0x20,0xda,0x14,0x36,0x7c,0xb7,0x2,0x54,
0xeb,0xd8,0x79,0x7d,0x48,0x4,0x0,0xa6,0x88,0x93,0x1c,0xf9,0x99,0xa6,0x21,0x99,
0x1a,0x47,0xd7,0x90,0xc6,0x50,0xc5,0xad,0x98,0x26,0xa1,0x18,0xda,0x14,0x36,0x7c,
0xc5,0x75,0x56,0x4b,0x44,0x52,0xe,0xed,0x25,0x7b,0xdf,0x64,0x1e,0x2f,0xf8,0x3e,
0x83,0xca,0x59,0x4b,0x2,0x36,0xa7,0x9b,0xde,0x6a,0xa8,0x87,0xfb,0xdc,0x1f,0xab,
0xb8,0x75,0xcb,0xc2,0xad,0xf4,0x5c,0x4c,0x93,0x50,0x84,0x69,0x22,0xf3,0x1b,0xc3,
0x34,0xf9,0x36,0x22,0x65,0x1a,0x56,0x72,0x11,0x23,0x56,0x4c,0x22,0xcf,0xbd,0x91,
0xda,0x86,0x34,0x62,0x48,0xdc,0x30,0x53,0x8f,0xc,0xbf,0xc6,0x0,0xb,0xd9,0x61,
0x7c,0x7f,0xc,0xd3,0x14,0xda,0x88,0x73,0x65,0xbd,0x5a,0xe5,0xfb,0x97,0x91,0xdd,
0x74,0x18,0x15,0x86,0x14,0xa,0xc0,0x71,0x87,0x30,0x2c,0xa3,0x5e,0x7d,0x4c,0x13,
0x37,0x8b,0x7e,0x83,0x42,0x11,0xa6,0xc9,0xa7,0xb0,0x11,0x2a,0xae,0xf3,0x6d,0x44,
0xeb,0x7a,0x63,0x43,0x63,0x38,0xdc,0x2,0xdc,0x1e,0x5d,0x9f,0x8d,0xe1,0x60,0x0,
0xbc,0x6f,0xea,0x74,0xc7,0x59,0x45,0xad,0x8f,0x5,0xb3,0x59,0x75,0x62,0x9a,0x84,
0xec,0x8,0x29,0x6c,0xb4,0xd,0x4d,0xc,0x6d,0x44,0xf2,0x3,0xc,0x3f,0xe1,0xb5,
0x34,0xb,0x51,0xf5,0x1a,0xf3,0x1d,0x70,0x95,0x7c,0x37,0x15,0x71,0xb,0xc2,0xc7,
0x6e,0x1,0xa2,0xb5,0x93,0x6a,0xe,0xb6,0x50,0x8c,0x69,0xba,0x1e,0x31,0xb0,0xdd,
0x28,0xcf,0xb6,0x8d,0xf8,0xfc,0xf3,0xcf,0xd7,0xb1,0xc6,0xb4,0x87,0x36,0x2b,0x86,
0x16,0x53,0x96,0x4e,0xc,0xc2,0xd,0x92,0x43,0xe8,0x40,0x10,0xbc,0x4c,0x93,0x4f,
0x61,0x23,0xa4,0xdc,0xd7,0xb5,0x11,0xe7,0x94,0x68,0xdd,0x9,0x67,0xd2,0xf6,0xf3,
0x39,0x11,0x49,0xae,0xdc,0xc5,0x35,0xbf,0x2b,0x7,0x5b,0x95,0x92,0xd3,0x10,0x84,
0x68,0x74,0x29,0x6c,0xf4,0xdd,0x88,0x36,0x28,0x5,0x83,0xb0,0x21,0x28,0xa9,0xb9,
0x83,0xf9,0x7c,0x88,0xfa,0xfd,0xbe,0x76,0x52,0x31,0x4d,0x42,0x76,0xc4,0x2a,0x6c,
0xf4,0xd9,0x88,0xb0,0x58,0x2b,0x8d,0xac,0x35,0xae,0x14,0x8a,0x1c,0x29,0xdf,0x8f,
0xcf,0x72,0x3,0x6b,0xfe,0x19,0x3a,0x56,0x45,0x7e,0x42,0x31,0xa6,0xe9,0x7,0x6b,
0x71,0x4c,0x13,0xaf,0x4b,0xa5,0x3c,0x9,0xae,0x9,0xb2,0x6d,0xe2,0x68,0x4a,0x71,
0x5e,0xa8,0x91,0x9,0x23,0x93,0x70,0x99,0x50,0x4,0x24,0xcc,0x62,0x99,0x26,0xf2,
0xd,0xa3,0x1e,0xca,0x7d,0xd0,0xb0,0xb8,0x5b,0x30,0x46,0xb0,0x55,0x3c,0x63,0x4e,
0xd7,0xb6,0x22,0xa4,0xee,0x27,0xe1,0x32,0xa1,0x18,0xac,0xb2,0xf4,0xc3,0x13,0x87,
0xa3,0xab,0x5d,0x79,0xfd,0xe6,0xe6,0x66,0xd2,0x66,0x9c,0x1b,0x51,0x9d,0xc0,0x33,
0xc3,0xea,0x1a,0x99,0x15,0x6a,0x64,0xc2,0x40,0xa8,0xae,0x55,0x3b,0xa9,0x50,0x84,
0x69,0x3a,0x9a,0x20,0x3e,0xdc,0xcc,0x13,0xa4,0x76,0xb0,0xdd,0xbd,0x7b,0xf7,0xc1,
0xa8,0x5e,0x6e,0xa4,0x71,0x87,0xf8,0x58,0x48,0x32,0xc7,0x84,0xcb,0x30,0x66,0xfd,
0x6,0x85,0xac,0x30,0xe1,0xb2,0x18,0xa6,0xc9,0x37,0x9e,0xd7,0xe8,0xd8,0x14,0xd1,
0x1,0x36,0xf9,0x64,0x1e,0xc8,0x77,0x8d,0xcd,0xf2,0x35,0x32,0x59,0x80,0x2f,0x89,
0x7c,0x21,0x3b,0xec,0x14,0xee,0x12,0x1c,0xee,0x1a,0xcf,0x6b,0xa2,0x3,0x4,0xe9,
0x31,0xc1,0x2e,0x46,0x80,0x31,0x74,0x55,0xcc,0xfa,0x24,0x73,0x24,0x5c,0x26,0x14,
0x85,0x8d,0xce,0x4d,0xa9,0x69,0x32,0xd,0x58,0x58,0xa0,0xa6,0xbb,0x85,0x91,0xf0,
0x2c,0x36,0x78,0x57,0xd0,0x8b,0xcb,0xd3,0x55,0x31,0x1b,0x6a,0x64,0xda,0x90,0x70,
0x99,0x50,0xa,0x26,0x91,0x1f,0xc3,0x34,0xb5,0x8d,0xe7,0x6d,0x6,0xbf,0x56,0xbe,
0xd1,0xa5,0xa5,0xd4,0x55,0x31,0x1b,0x92,0xcc,0x69,0x9b,0x8a,0x2a,0x8,0x83,0x90,
0x22,0x5c,0xd6,0x67,0x3c,0xaf,0xd1,0xa4,0xa1,0x20,0xb8,0x59,0x31,0x3b,0x9d,0x1b,
0xdd,0xf9,0x67,0x9e,0xae,0x8,0xc2,0x79,0xa6,0x6f,0xe2,0x90,0x24,0xf2,0x85,0x62,
0x48,0x99,0xe6,0x33,0x64,0x3c,0x2f,0xef,0x6d,0xb,0xc0,0x9b,0x15,0xb3,0xac,0x1f,
0x1f,0x5a,0x7f,0xa0,0xfd,0xea,0x7e,0x37,0x49,0xe4,0xb,0xc5,0x99,0xa6,0x18,0xe1,
0xb2,0x94,0x8d,0x18,0x1a,0xcf,0x6b,0x2d,0xa9,0xc4,0x20,0x6e,0xc,0xd0,0xac,0x98,
0x35,0xd7,0x8b,0x9a,0x28,0xd7,0x20,0x24,0x91,0x2f,0x14,0x67,0x9a,0xba,0x24,0xf2,
0x87,0x6c,0x44,0xdf,0x78,0x5e,0x9e,0x5,0x5b,0xe4,0xf6,0x59,0x90,0xd9,0x46,0xd5,
0xa3,0x2d,0x59,0x28,0xe1,0x32,0xa1,0x28,0x62,0x85,0xcb,0x86,0x6e,0x44,0xb,0xc0,
0x9b,0xe2,0x6,0x16,0x37,0x10,0x9b,0x10,0x33,0x30,0x93,0xfa,0xdc,0x13,0xdf,0xaa,
0xfe,0x76,0xbc,0x26,0x89,0x7c,0x61,0x67,0x10,0x2b,0x91,0x9f,0x6b,0x23,0xb6,0x5,
0xe0,0x7,0xe6,0x73,0x23,0x7e,0xda,0xe1,0xc2,0x49,0xb8,0x4c,0x58,0xa,0xa6,0x29,
0xe7,0x46,0x24,0x38,0xa7,0xb3,0xce,0xbd,0x9d,0x70,0xad,0x30,0x88,0x69,0x87,0xce,
0xac,0x84,0xcb,0x84,0x22,0x48,0x91,0xc8,0x2f,0xb1,0x11,0x2d,0x8e,0x89,0x1d,0xf6,
0x28,0xe1,0x32,0xa1,0x28,0xac,0xb2,0x34,0x46,0xb8,0xcc,0x6a,0x90,0x9e,0x7d,0xf6,
0xd9,0xec,0x1b,0x11,0x37,0x8c,0x78,0x26,0xb6,0x69,0x49,0x12,0xf9,0x42,0x51,0xa6,
0x29,0x45,0x22,0xff,0xd2,0xec,0x34,0x7f,0x62,0xf6,0x9e,0xfb,0xf7,0xef,0x67,0xdf,
0x90,0x30,0x4d,0x6b,0xfb,0x46,0xd5,0xc7,0x2d,0x4c,0x93,0xe9,0x45,0x89,0x69,0x12,
0x76,0x94,0x69,0x72,0x17,0xbe,0x3e,0xed,0xa2,0xbe,0x61,0x8b,0xa9,0x83,0xdc,0x59,
0xf4,0x64,0xf3,0xf3,0xec,0xb7,0x7e,0xa3,0x7a,0xed,0xd0,0x7a,0x67,0x80,0x2f,0x89,
0x7c,0xa1,0x18,0xd3,0xd4,0x47,0x22,0xdf,0x36,0xe7,0x8b,0xe3,0xb5,0x7,0xe3,0x77,
0xdb,0x6,0xb9,0x1f,0x68,0x19,0xe2,0xee,0x2e,0x6a,0x9c,0x86,0xe8,0x45,0x9,0x42,
0x6f,0x90,0x6c,0x8b,0x95,0xc8,0x1f,0xba,0x3e,0x3c,0x11,0x1e,0xe4,0xce,0x8d,0x63,
0x73,0xac,0x31,0x88,0x69,0x84,0x5e,0x94,0x98,0x26,0x21,0x3b,0x52,0x24,0xf2,0xdd,
0x45,0xc9,0x77,0xe8,0x46,0x48,0x19,0xe4,0x1e,0x6b,0x8,0xa9,0x7a,0x51,0x82,0x90,
0x8c,0x14,0xe1,0x32,0xd7,0x5d,0x22,0x18,0x3f,0x3d,0xf3,0xe5,0x73,0xc,0x72,0x6f,
0xae,0x17,0xc7,0x6b,0xc9,0xca,0xe4,0x82,0x90,0x8d,0x69,0xa2,0x7c,0xe2,0xf5,0x1e,
0xc3,0x18,0xd9,0xb8,0x4,0xd6,0xa9,0x8c,0x53,0x68,0x90,0x3b,0xa5,0xdf,0x16,0x64,
0x5f,0xfa,0xce,0x9f,0xd4,0xcf,0x9f,0x26,0x28,0x93,0xb,0xc2,0x60,0x84,0x46,0xe2,
0xc6,0x2e,0xca,0xb5,0xc9,0x3a,0x97,0xd0,0x4b,0x32,0x25,0xbf,0xb7,0x9c,0x72,0xe,
0x49,0xe4,0xb,0xc5,0x99,0xa6,0x18,0x89,0xfc,0x36,0xf7,0x89,0xb8,0xe0,0x74,0x86,
0xf1,0xbc,0xbe,0xa0,0xff,0xd8,0xbe,0xb0,0x70,0x99,0x98,0x26,0x21,0x3b,0x52,0x84,
0xcb,0xdc,0xf5,0xab,0x93,0xfe,0x76,0xd3,0x5c,0xc,0x10,0x81,0xf3,0xb8,0x45,0xb8,
0x4c,0x12,0xf9,0x42,0x76,0x84,0x46,0xe2,0xc6,0x32,0x4d,0x27,0xf7,0x7f,0x73,0x3a,
0xd0,0xe6,0x7c,0xc3,0xe,0xad,0x39,0xa,0x49,0xe6,0x48,0xb8,0x4c,0x58,0x3a,0xa6,
0x89,0xe0,0x96,0x18,0xe2,0xf,0x66,0xbe,0x3c,0xd9,0x69,0x9e,0xb1,0xe1,0x64,0xbd,
0xa9,0x93,0x1a,0x22,0x65,0x1f,0x6a,0x64,0x32,0x35,0x41,0x9,0x97,0x9,0xd9,0x91,
0x22,0x91,0xdf,0xc5,0x34,0xd9,0x78,0x5e,0x77,0x56,0x9c,0x8d,0xe7,0xed,0x53,0x83,
0xe4,0x1b,0xaa,0x22,0xe1,0x32,0xa1,0x18,0x42,0x23,0x71,0xdb,0x32,0xce,0x53,0x27,
0x6e,0x70,0x27,0x7,0x75,0x8d,0xe7,0x3d,0x95,0x10,0x80,0x9b,0x64,0x8e,0x2b,0x5c,
0x26,0x89,0x7c,0xa1,0x28,0xd3,0x14,0x23,0x5c,0xd6,0xec,0x70,0x6b,0xaa,0x65,0xb4,
0x4d,0xe,0x4a,0x1d,0xcf,0xeb,0x42,0x12,0xf9,0xc2,0x52,0x33,0x4d,0x18,0x4,0x25,
0xe0,0x64,0xa5,0x89,0x1f,0x8,0xa0,0xd9,0xe0,0x5d,0x93,0x83,0xf0,0xf7,0x9,0x84,
0x43,0xe3,0x79,0x43,0xa5,0x18,0x6d,0xc2,0x65,0x92,0xc8,0x17,0x8a,0xc0,0x84,0x0,
0x62,0x24,0xf2,0xdd,0x8d,0x48,0xfc,0x90,0x32,0x39,0xc8,0x82,0x78,0x7b,0x7d,0xb3,
0x68,0xcf,0x17,0x80,0x87,0x24,0xf2,0x25,0x5c,0x26,0x14,0x43,0x88,0xef,0x4f,0x11,
0x2e,0x6b,0x4e,0xe,0x3a,0xb7,0x7a,0xa0,0xb3,0x67,0xc1,0x2,0x70,0x5c,0x35,0x5f,
0x0,0x4e,0xec,0x80,0xee,0xeb,0x9d,0x3b,0x77,0xea,0x1b,0xc9,0xd,0xfa,0x25,0x91,
0x2f,0x14,0x43,0x8a,0x44,0x7e,0xdb,0x46,0xec,0x33,0x39,0xc8,0xc6,0xf3,0xba,0x2e,
0x9b,0x5,0xe0,0x3c,0x83,0x98,0xc5,0xfd,0x6e,0x12,0x2e,0x13,0x8a,0x21,0xa7,0x70,
0x59,0x9f,0xc9,0x41,0x4d,0x46,0xc9,0xa7,0x2e,0xce,0xf7,0x72,0x7b,0xbf,0x25,0x91,
0x2f,0x14,0x45,0xcc,0x10,0xf5,0xd8,0x8d,0xd8,0x9c,0x1c,0x44,0x5c,0xc2,0x9,0x9f,
0xa2,0xc9,0x6a,0x31,0x4d,0x97,0xb,0x27,0x89,0x7c,0xa1,0x18,0x7c,0x7c,0xff,0xd0,
0x8d,0x98,0x32,0x39,0xc8,0x87,0xf7,0xde,0x7b,0xaf,0xd5,0x30,0x24,0x91,0x2f,0x14,
0x65,0x9a,0x72,0x48,0xe4,0xbb,0x88,0x9d,0x1c,0xd4,0x6,0x2,0xf4,0x89,0xa7,0x44,
0xdd,0xf4,0xa2,0xc4,0x34,0x9,0xd9,0xd1,0x47,0xb8,0x2c,0x76,0x23,0xc6,0x4c,0xe,
0xea,0x62,0xa4,0xa0,0x76,0x69,0x35,0xf5,0xb5,0x93,0x4a,0x22,0x5f,0xc8,0x8e,0x10,
0xdf,0xdf,0xd6,0xd7,0x9c,0xb2,0x11,0xbb,0x26,0x7,0xb5,0xc1,0x1a,0x99,0x7c,0x35,
0x4d,0x88,0x24,0x88,0x69,0x12,0x76,0x94,0x69,0x8a,0xcd,0x35,0xb8,0x68,0x4e,0xe,
0x22,0x56,0xc1,0xa8,0xa0,0x6a,0x63,0xde,0xeb,0x6b,0x64,0x92,0x44,0xbe,0x50,0x14,
0xa9,0xc2,0x65,0x1b,0x3,0x62,0x2,0xab,0x85,0x22,0x99,0x47,0x52,0xaf,0xeb,0x3d,
0xdc,0x2,0x6e,0xae,0x42,0xc2,0x65,0x42,0x51,0xf4,0x11,0x2e,0x6b,0xf6,0x38,0xa7,
0xb0,0x3d,0xcd,0xc9,0x41,0x94,0x71,0xb8,0x15,0xb3,0x2e,0x4c,0x32,0xc7,0x6d,0x64,
0x92,0x44,0xbe,0x50,0x94,0x69,0x8a,0x15,0x2e,0xc3,0xe5,0xd9,0xf6,0x9c,0xd6,0x31,
0xe3,0x79,0x9b,0x81,0x3c,0x2e,0x94,0x89,0x95,0x8d,0x2,0x15,0xb3,0x20,0xd4,0xc8,
0x24,0x89,0x7c,0x61,0x29,0x98,0x26,0x12,0x6e,0x18,0xf,0xa7,0x7c,0x9f,0xf1,0xbc,
0x86,0xb9,0x1,0xd4,0x6,0xd1,0x56,0x31,0x1b,0x6a,0x64,0x92,0x44,0xbe,0x50,0xc,
0x76,0xa,0xc7,0x48,0xe4,0x63,0x10,0xf8,0xf4,0x93,0xc9,0xe4,0x41,0xb,0xa9,0x8d,
0xd9,0x6d,0xe6,0x2b,0x28,0xf9,0xee,0x2a,0xc0,0x83,0x45,0xea,0xaa,0x98,0xb5,0x46,
0x26,0x57,0x32,0x47,0xc2,0x65,0x42,0x51,0xa6,0x9,0x5f,0x3e,0x46,0x22,0xdf,0xb7,
0x11,0x29,0x12,0x34,0x7a,0x74,0xdb,0xa9,0x60,0x6d,0x1b,0xcf,0x6b,0x68,0x56,0xcc,
0x12,0x74,0xbb,0xc1,0xb2,0x8f,0x69,0x92,0x44,0xbe,0x50,0xc,0x21,0xbe,0x3f,0x75,
0x56,0x83,0x8d,0xe7,0x75,0x59,0x21,0xbb,0x55,0x78,0x4f,0xa8,0xd3,0xad,0x59,0x31,
0xfb,0xf6,0xd1,0x71,0xf5,0x9b,0x33,0xb7,0x8c,0x12,0xe,0x12,0x79,0xdc,0x46,0x6e,
0xbf,0xb6,0x84,0xcb,0x84,0xa5,0x60,0x9a,0x62,0x37,0x22,0xcf,0xf3,0x55,0xb0,0xd2,
0x7,0x11,0xa,0xc0,0x9b,0x15,0xb3,0xf6,0x7a,0x8c,0x84,0x3f,0xf3,0x7d,0x37,0x49,
0xe4,0xb,0xc5,0xe0,0xe3,0xfb,0x73,0xcc,0x6a,0x68,0x1b,0xcf,0xeb,0xb,0xc0,0x9b,
0x15,0xb3,0xf6,0x7a,0x6e,0xc,0xe2,0xc,0xf7,0xbb,0x99,0x44,0xbe,0x84,0xcb,0x84,
0xec,0x8,0xf1,0xfd,0x6d,0xb3,0x1a,0x52,0x36,0x62,0xdb,0x78,0x5e,0xfe,0xbc,0x59,
0xe,0x62,0x99,0xed,0x49,0x87,0xf6,0xac,0x24,0xf2,0x85,0xe2,0x4c,0x53,0x8c,0x70,
0xd9,0x90,0x8d,0x48,0xde,0xc0,0x17,0xaf,0xf0,0xb9,0x3c,0x93,0x9b,0x8a,0xb8,0xe1,
0xed,0x9f,0xfd,0xac,0xae,0x96,0x6d,0xa3,0x82,0xc5,0x34,0x9,0x45,0x99,0xa6,0x58,
0x89,0xfc,0x1c,0x1b,0xd1,0x2,0x70,0x62,0x83,0xa6,0x2b,0xc4,0xd,0x65,0x2d,0xa4,
0x56,0x3e,0xde,0xd5,0xc5,0x27,0x89,0x7c,0x21,0x3b,0x42,0x7c,0xff,0x22,0x36,0x22,
0x1,0xf8,0x69,0xe7,0x36,0xe0,0x33,0x28,0xfb,0x6e,0x73,0xe1,0x4c,0xb8,0x4c,0x4c,
0x93,0x50,0x8c,0x69,0x8a,0x91,0xc8,0x2f,0xb5,0x11,0xfb,0xcc,0xbe,0x93,0x44,0xbe,
0x50,0xc,0x29,0xc2,0x65,0xa9,0x42,0x2,0x29,0xb0,0x2e,0xbe,0x98,0x0,0x5f,0xc2,
0x65,0x42,0x31,0x98,0x44,0x7e,0x8c,0x70,0x59,0x53,0x9a,0x66,0x6b,0x6b,0x2b,0xfb,
0x66,0x34,0xa6,0x69,0x23,0x82,0x69,0x92,0x44,0xbe,0x50,0x8c,0x69,0x62,0x73,0xa5,
0x4e,0x27,0xe5,0x46,0x39,0x3f,0x5e,0xcf,0x32,0xc8,0xbd,0x39,0x7f,0xee,0x5f,0xde,
0x78,0xa3,0x2e,0xe9,0x68,0xfb,0x3e,0x92,0xc8,0x17,0x8a,0x61,0x88,0x44,0xbe,0x25,
0xd0,0x72,0xd,0x72,0xb7,0x15,0xcb,0x34,0x49,0x22,0x5f,0xc8,0xe,0x6b,0x27,0x8d,
0x95,0xc8,0x2f,0x39,0xc8,0xbd,0xb9,0xba,0x98,0x26,0x9,0x97,0x9,0xc5,0x0,0x73,
0x14,0x2b,0x91,0xef,0xc6,0x13,0xee,0xed,0xd0,0x67,0x90,0x3b,0xeb,0x17,0xc7,0xc6,
0xb5,0x81,0xc4,0xb2,0x4d,0xd6,0xd2,0x2a,0x89,0x7c,0x21,0x3b,0x4c,0xb8,0x2c,0x75,
0x18,0x23,0xaf,0xff,0xcb,0x23,0xe3,0x5a,0x94,0x2c,0xc7,0x20,0x77,0x5b,0xbe,0x69,
0xa4,0x62,0x9a,0x84,0x85,0x21,0x45,0x22,0xdf,0x35,0x8,0xde,0x47,0xcf,0x74,0x2c,
0x8b,0xd4,0x35,0xc8,0xdd,0xd6,0xe6,0xe6,0x66,0x7d,0x6b,0x85,0x5c,0x27,0x49,0xe4,
0xb,0xc5,0x40,0x7d,0x52,0x6c,0x3b,0x69,0xc8,0x28,0xda,0xe6,0x44,0xc,0x1,0xb7,
0x8b,0x2f,0xc8,0x36,0xfa,0x57,0xc2,0x65,0x42,0x76,0x98,0x44,0x7e,0x8c,0x70,0x59,
0x5b,0x6e,0xe0,0xb1,0xd5,0xd5,0xec,0xfd,0xce,0x34,0x32,0xd1,0xd9,0xe7,0x6,0xfd,
0x92,0xc8,0x17,0x8a,0x33,0x4d,0xb1,0xc2,0x65,0x31,0x55,0xb1,0x39,0xab,0x51,0x7d,
0x8d,0x4c,0x62,0x9a,0x84,0xe2,0x4c,0x53,0x8a,0x70,0x59,0x8c,0x61,0x50,0xa3,0x94,
0x63,0xc3,0xfa,0xea,0x9d,0x9a,0x52,0x38,0x92,0xc8,0x17,0xb2,0xc3,0x46,0xeb,0x6e,
0x27,0x32,0x4d,0x31,0x31,0x6,0xa7,0x7b,0xca,0x78,0x5e,0x17,0xd6,0xc8,0xe4,0xc6,
0x38,0x34,0x1e,0x1d,0x91,0x44,0xbe,0x50,0x8a,0x69,0x8a,0x95,0xc8,0xef,0xb3,0x9a,
0x27,0x7a,0xaa,0xd0,0x58,0x48,0x32,0x47,0x12,0xf9,0x42,0x31,0xa4,0x8,0x97,0xd,
0x35,0x8c,0xcd,0x79,0xe,0x21,0x36,0x0,0xf,0x35,0x32,0x49,0xb8,0x4c,0x28,0x86,
0x14,0x89,0xfc,0x5c,0x2b,0x34,0x9e,0xd7,0xc7,0x34,0x85,0x84,0xcb,0x88,0x2d,0xd4,
0x4e,0x2a,0x14,0x63,0x9a,0x36,0x7b,0x16,0xf9,0x85,0x6e,0x83,0x1f,0x1f,0x5a,0x7f,
0x50,0xba,0xf1,0xd6,0xcc,0x0,0xa6,0x81,0x0,0xdc,0xc6,0xf3,0xb6,0xc5,0x38,0x92,
0xc8,0x17,0x16,0x8a,0x54,0x89,0xfc,0xd8,0x9a,0x23,0x2a,0x5e,0xa9,0x73,0x62,0xd3,
0x8f,0x1c,0xb9,0x19,0x5f,0x6e,0xc1,0xa7,0x2e,0x2e,0x89,0x7c,0x61,0x47,0x98,0xa6,
0x54,0x89,0xfc,0xae,0xf5,0xc1,0xf1,0x43,0xb5,0x41,0xbc,0x38,0x5e,0x7b,0xa8,0x15,
0x75,0xdc,0x52,0xaf,0x4,0xd3,0x65,0x1,0xf8,0xed,0xdb,0xb7,0xab,0x66,0xd0,0x2f,
0x89,0x7c,0x61,0xa1,0x4c,0x53,0x6a,0x7f,0x73,0xcc,0xa2,0x9a,0x95,0x9b,0xe1,0xad,
0x46,0x7c,0x62,0x7f,0x76,0xa3,0xa5,0x7e,0x6a,0x3a,0x17,0x48,0xc3,0xa0,0x4e,0x9c,
0x38,0xe1,0xfd,0x6e,0xa6,0x17,0x25,0x89,0x7c,0x21,0x3b,0x42,0x7c,0x7f,0x8e,0x45,
0x79,0x37,0x6,0x40,0x4c,0x61,0x7f,0x76,0xf9,0xe0,0x6a,0xeb,0x4d,0xe1,0x52,0xac,
0xb8,0x5f,0xee,0xd,0x21,0xa6,0x49,0x28,0x86,0x14,0x89,0xfc,0x21,0xb9,0x8,0x8b,
0x29,0xac,0xa3,0x6e,0x48,0x73,0x92,0x84,0xcb,0x76,0x1,0xee,0xdf,0xbf,0x5f,0x2b,
0xdc,0x51,0x1,0xea,0xeb,0xf,0xa0,0x7f,0x80,0xd3,0x38,0x34,0x41,0x67,0x27,0x99,
0xa6,0x58,0xe1,0xb2,0x1c,0xec,0x13,0x55,0xac,0x34,0x18,0xe1,0x3e,0xf5,0x8d,0x5b,
0xb6,0x25,0x5c,0xb6,0xdc,0x20,0x8,0xa4,0x3f,0x80,0xa1,0x20,0xb8,0x8,0x9c,0x5e,
0xfc,0xd2,0x9b,0x9d,0x63,0xcc,0x43,0xe0,0x74,0x1c,0xcf,0x55,0xae,0x61,0x49,0x30,
0x90,0x9d,0xae,0xc9,0x9,0xf1,0xfd,0x29,0xa7,0x35,0x9b,0xbb,0x54,0xb6,0x7b,0x88,
0x32,0xb9,0xb0,0x3,0xa0,0x9d,0x71,0xde,0xf8,0x5e,0xcf,0x3a,0x20,0x20,0x44,0xe6,
0x7d,0xda,0xb1,0x89,0xd0,0x3b,0xfa,0xde,0x9c,0x79,0xa1,0x36,0x67,0x27,0xfd,0xe1,
0x58,0xe1,0xb2,0xae,0x0,0xda,0x1d,0xbc,0x5e,0x72,0x49,0x22,0x7f,0x49,0x61,0xa2,
0xbe,0x5c,0xe1,0xa1,0x24,0x54,0x4c,0x43,0xbe,0x5,0x9b,0xb8,0x1,0x8b,0xbe,0x35,
0x52,0x24,0xf2,0x7d,0xee,0xb,0x86,0xfd,0x93,0x73,0x7f,0x54,0x7d,0xfe,0xf9,0xe7,
0xf5,0x4f,0xfe,0x7d,0xbb,0xf0,0x8d,0x61,0xed,0xa4,0x92,0xc8,0x5f,0x32,0x10,0x37,
0xac,0x37,0xe6,0xa7,0xd,0xfd,0x45,0x9b,0x8,0xf0,0x22,0x4f,0x3f,0x13,0x2e,0x8b,
0x51,0xd0,0x6b,0xeb,0xa0,0xfb,0xfb,0xbf,0xb9,0x52,0x81,0x9f,0xbc,0xf6,0x6a,0x54,
0x8f,0xf4,0xd0,0x52,0xf3,0xb1,0x24,0xf2,0x97,0xd3,0x20,0xf8,0xe5,0xc7,0xc8,0xcb,
0xa7,0x9e,0xbc,0x7d,0x2b,0x45,0xfb,0x32,0x4d,0x43,0xff,0x1f,0x30,0x80,0x7f,0x3d,
0x71,0xa4,0x26,0x11,0xf8,0x59,0xd2,0x20,0x4c,0xb8,0x4c,0x4c,0xd3,0x92,0x21,0x47,
0x2b,0x66,0xee,0x4a,0xd1,0x54,0xc,0x15,0x2e,0xf3,0x9d,0xde,0xb8,0x4d,0x25,0xab,
0x68,0x25,0x91,0xbf,0xc4,0x80,0x31,0x9a,0xf4,0x64,0x69,0x52,0x16,0xb9,0x82,0x12,
0xa7,0x62,0x8a,0x44,0xfe,0xb2,0x2c,0x2b,0x7,0x51,0x91,0xdf,0x12,0xe2,0xea,0xd5,
0xab,0xb5,0x3f,0x9b,0x2a,0xe9,0xb2,0xc,0xad,0x9a,0x4d,0xa6,0xa9,0x8f,0x70,0xd9,
0xd0,0x78,0x69,0xe2,0xc9,0x44,0xa7,0x4a,0xe4,0x4b,0xb8,0x6c,0xc9,0x60,0x2a,0x11,
0x30,0x45,0x8b,0x3c,0x25,0x73,0xb4,0x6a,0x1a,0x52,0x24,0xf2,0x31,0x48,0x36,0xf2,
0xd0,0x98,0x83,0x38,0x9,0x57,0xf3,0xc9,0x27,0x9f,0xac,0x7f,0xa6,0xc6,0x1c,0x12,
0x2e,0x5b,0x62,0xe0,0xdf,0x53,0x92,0xf0,0xc1,0xf1,0x43,0x3b,0xe2,0x3e,0xc,0xd,
0xc0,0x53,0x24,0xf2,0xad,0x96,0x88,0x8d,0xcc,0xff,0x73,0xdf,0xd8,0x3,0x83,0x20,
0x77,0xf3,0xf2,0x73,0x7f,0x56,0x7d,0xfd,0xf5,0xd7,0xd5,0x1b,0x97,0x7f,0x98,0xc4,
0x4e,0x49,0x22,0x7f,0xc9,0x41,0x79,0x6,0x19,0xea,0x9d,0xf4,0xab,0x49,0x58,0x71,
0x6a,0xa6,0xd2,0x91,0x29,0x12,0xf9,0xa6,0xc7,0x64,0x9f,0x61,0xd4,0xf3,0x46,0x8f,
0xbe,0xa,0x8c,0xe2,0xdb,0xab,0x7,0xaa,0x7f,0x78,0xfe,0xb9,0x5a,0xd1,0xef,0x1f,
0xff,0xe2,0x87,0xf5,0xbf,0xc7,0xe4,0x31,0x4c,0xb8,0x4c,0x12,0xf9,0x4b,0xec,0x3a,
0x51,0xbe,0x91,0x43,0xeb,0x68,0x51,0xad,0x9a,0x2e,0x5b,0x16,0x73,0xda,0x87,0x36,
0x22,0xae,0xb,0xb7,0x14,0xb1,0x48,0x1f,0xca,0x15,0x55,0xf0,0x91,0x53,0x1d,0x2b,
0x89,0xfc,0x5d,0x8e,0xf9,0xe8,0xa9,0xba,0x34,0x23,0x25,0x16,0xa0,0x99,0xe6,0x99,
0xd9,0xc9,0xc8,0xcf,0x69,0xe6,0x0,0xbc,0xab,0x55,0x13,0xa4,0x48,0xe4,0x77,0x6d,
0x44,0x82,0x5c,0x93,0xb8,0xe9,0xa3,0x1d,0x8b,0x41,0xc4,0x18,0x94,0x84,0xcb,0x76,
0x9,0x10,0xee,0x1d,0x75,0x34,0xc2,0x84,0xea,0x81,0x4e,0xce,0x5b,0x2e,0x63,0x4f,
0xc9,0x54,0xde,0xde,0xd7,0xaa,0x69,0x88,0x95,0xc8,0x4f,0xd9,0x88,0x18,0x4d,0x49,
0x65,0x8f,0xd,0x9,0x97,0xed,0xe,0xcc,0xdd,0x89,0x24,0xa3,0xe0,0x97,0x3b,0x9a,
0xf7,0xa,0x8c,0x22,0xe6,0xae,0xd,0xcd,0x80,0xbb,0x75,0x40,0x29,0x12,0xf9,0xa9,
0x1b,0x91,0xbf,0xf,0x62,0x94,0xdc,0x65,0xe6,0x3c,0xef,0xb8,0x84,0xcb,0x76,0x7,
0x98,0x9f,0x90,0x6a,0x14,0xe6,0x9f,0x8f,0xe6,0x33,0x13,0xae,0x17,0x62,0xad,0xa6,
0x73,0x1e,0xbf,0x29,0xfa,0x95,0x22,0x5c,0xd6,0x77,0x23,0x5a,0x99,0x48,0xae,0xda,
0x2f,0x49,0xe4,0xef,0x32,0xcc,0xa5,0xdb,0x93,0x8c,0xc2,0x6a,0x75,0x70,0xa3,0xf8,
0xf9,0x71,0xe1,0x84,0x1f,0x71,0xb,0x64,0x0,0x37,0x44,0xac,0x7b,0x33,0x74,0x23,
0xe,0xd,0xc0,0x25,0x91,0xbf,0x7,0x62,0x8a,0x5f,0xe,0x38,0xed,0x7f,0x75,0xb2,
0x6c,0x82,0xef,0xdc,0x2c,0xa0,0x7f,0x65,0x16,0xb7,0x90,0x71,0x8f,0xa9,0xcb,0xca,
0xb5,0x11,0xb9,0x61,0x88,0x5d,0xfa,0x96,0x9f,0x4b,0x22,0x7f,0x97,0x82,0x89,0x39,
0xa3,0x5,0x37,0xd1,0xa4,0xb8,0x4f,0x14,0xe3,0x51,0x2b,0xf5,0xda,0xcc,0x28,0x62,
0x68,0xe3,0x12,0x1b,0x91,0x1b,0xa,0x97,0x2d,0x85,0x99,0x92,0x70,0xd9,0x2e,0x87,
0x6f,0x10,0xc8,0x32,0xac,0x4b,0x7,0x57,0xeb,0xaa,0x5a,0x72,0x1,0xb1,0x9,0x36,
0x8c,0xa8,0x84,0x60,0x18,0xb1,0xc,0xc6,0x16,0x13,0x3f,0x49,0x22,0x7f,0xf,0x80,
0xfe,0x6b,0x4a,0x16,0xa6,0x4b,0x64,0x10,0x4,0xc9,0x18,0x2,0xb7,0xc4,0xb9,0xc8,
0x4c,0x31,0xb,0xd1,0x80,0x52,0xa3,0xb5,0x26,0x93,0x49,0x54,0xe6,0x5f,0xc2,0x65,
0x7b,0x0,0x73,0x75,0xba,0x5a,0xbb,0x68,0x19,0xc,0x2,0x43,0xf8,0xee,0xea,0x4a,
0xf5,0xbf,0xb3,0x53,0xf9,0xfb,0x89,0x81,0x2e,0x1,0xf6,0xf9,0xf1,0x7a,0x45,0xd5,
0xaf,0x3b,0x48,0x11,0x95,0x91,0xd0,0xe0,0xc5,0x58,0xa3,0xa0,0x94,0xa3,0xeb,0xbb,
0x4b,0xb8,0x6c,0x8f,0x0,0x97,0x3,0xd7,0x63,0xa7,0xd,0x2,0x66,0x89,0x9b,0xe1,
0xfd,0x99,0x41,0x60,0x18,0x7d,0x12,0x69,0x4d,0xca,0x38,0x76,0x71,0xb2,0xfb,0x64,
0x7b,0x58,0xdc,0x3c,0x67,0xce,0x9c,0xa9,0xdd,0xb9,0xb6,0x1b,0x4b,0xc2,0x65,0x7b,
0x90,0x85,0xa2,0x6a,0xf4,0xdd,0x1d,0xbc,0x2d,0x6e,0xcd,0x8b,0xec,0x28,0x39,0x99,
0xcc,0x5d,0xa7,0x21,0xcf,0x82,0x66,0x86,0x55,0xb,0xd,0x6d,0x27,0x70,0xf,0xd,
0x7b,0x77,0x7,0xc3,0xf3,0xbd,0xda,0x6e,0x2c,0x49,0xe4,0xef,0x51,0xc0,0xb2,0xf0,
0x8b,0xdd,0x5e,0xa0,0xc6,0x51,0x33,0x38,0xe5,0x86,0xf8,0xf9,0xcc,0x28,0x61,0x9a,
0xfa,0x48,0xe4,0xbf,0x3d,0x33,0xa6,0x90,0x1,0x60,0x1c,0x18,0x89,0xbb,0x72,0x34,
0x55,0x99,0x70,0x99,0x98,0xa6,0x3d,0x8,0x13,0xe,0xcb,0x2d,0x51,0x1f,0x63,0x10,
0x4,0xd5,0x18,0x2,0x6,0xd1,0xa7,0x94,0x9b,0x93,0x7a,0x9c,0xe8,0x32,0xb1,0x9a,
0x32,0x97,0xee,0xc2,0x48,0xbb,0xdc,0x37,0x49,0xe4,0x3f,0x2,0xb0,0xea,0xd3,0x1f,
0x1d,0x5c,0x9c,0x61,0x60,0xc,0x74,0xfd,0x99,0x88,0xda,0xb4,0xc7,0xd,0xf1,0x5b,
0xeb,0x6b,0xb5,0x2f,0xdf,0xc,0x9e,0x9,0xac,0xdd,0x60,0xdb,0x16,0x89,0x3d,0x4a,
0x5c,0x7c,0xeb,0xec,0xd9,0xb3,0x75,0x2c,0xc1,0x46,0xbf,0xd8,0x11,0xe8,0x4b,0xb8,
0xec,0x11,0x33,0x8c,0xa1,0x25,0xe,0xb1,0x4c,0xd3,0x9f,0xae,0xaf,0xd4,0x81,0xf5,
0xb9,0xe,0xbf,0x3d,0xb4,0x26,0x5,0x4f,0x6a,0x92,0x80,0xa1,0x8e,0x3a,0x93,0xc8,
0x97,0x70,0xd9,0x23,0x82,0x21,0x3d,0x6,0xa9,0x4c,0xd3,0x7f,0xcd,0x7e,0xfe,0x71,
0x84,0xab,0xd2,0xc5,0xfa,0x94,0x10,0x11,0xb3,0x56,0x5d,0xf7,0xef,0xa0,0xe4,0x67,
0xa,0xbb,0x20,0xf8,0x2e,0xd1,0x63,0xc0,0xc9,0xfb,0xdb,0xb3,0xa0,0x9e,0xdc,0xc8,
0x73,0x19,0x44,0x4,0xac,0xd5,0x34,0x67,0x8b,0xa7,0x49,0xe6,0xb8,0xd9,0x7e,0x49,
0xe4,0xb,0x75,0x89,0x3,0x41,0x6c,0xae,0x1e,0x3,0xd8,0x9a,0x67,0xe6,0x4c,0x13,
0x3e,0x79,0x4e,0xe1,0x32,0xc,0x38,0x57,0xab,0xa7,0x4f,0x32,0x47,0x12,0xf9,0xc2,
0x3,0x58,0x93,0x3f,0x9b,0x78,0x9a,0x81,0x69,0xa2,0x5b,0xf,0xa6,0xe9,0x52,0x66,
0x59,0x1d,0xdc,0x1c,0xa3,0x47,0x87,0x68,0x29,0xf9,0x1a,0x99,0x24,0x91,0x2f,0x7c,
0x3,0x4,0x94,0x46,0xd9,0xf6,0xcd,0x65,0x60,0x54,0xf4,0x47,0x70,0x4b,0x4c,0xa,
0x51,0xbf,0x6c,0x64,0x5a,0x50,0xf9,0xae,0x7d,0x34,0x95,0xb8,0x19,0x7d,0x92,0x39,
0x26,0x5c,0x26,0xa6,0x49,0xf8,0x6,0x33,0xd5,0xb7,0xc7,0x0,0xb6,0xe6,0xcf,0x67,
0x86,0xf0,0x3f,0x3,0x98,0xa6,0xd4,0x1b,0x29,0xb5,0xd1,0xc8,0x4,0xa6,0xdd,0x18,
0x4a,0x12,0xf9,0x42,0x94,0x7b,0x41,0xb0,0x19,0x1b,0x80,0x1b,0xd3,0xf4,0x1f,0xb3,
0x1b,0x2,0xa6,0xe9,0xfa,0x82,0x84,0xd7,0x6c,0x33,0xc7,0x34,0x1c,0x85,0x4,0xa6,
0x25,0x5c,0x26,0x24,0xbb,0x19,0x5d,0xdd,0x70,0xdc,0x8,0xd4,0x12,0x99,0xee,0x6a,
0xae,0xfa,0xaa,0xed,0xb9,0xd4,0xe,0xcf,0xa4,0x94,0x23,0xe4,0xd2,0xf1,0x79,0x7c,
0xcf,0xb6,0xc6,0x23,0xcb,0xcd,0xb8,0x8d,0x4c,0x26,0x91,0x2f,0xe1,0x32,0x21,0x1a,
0xf0,0xf8,0x9c,0xae,0x64,0xa5,0xa7,0x2d,0xed,0xa4,0x6c,0x4c,0xb2,0xe4,0x39,0x19,
0x2c,0x5c,0xb8,0xd9,0x57,0xa8,0x47,0x88,0xd1,0xc3,0xdd,0x36,0xc6,0xcb,0x6,0xc7,
0x10,0x80,0xfb,0x1a,0x7f,0x70,0x9,0xdd,0xf2,0x16,0x9,0x97,0x9,0xbd,0x61,0xa3,
0xc0,0xdc,0x4d,0x35,0x9d,0x67,0x9b,0x61,0x99,0xe8,0xb1,0xbe,0x32,0x5e,0xcb,0xc6,
0x30,0x61,0x0,0x6c,0xd6,0x7b,0xf7,0xee,0x55,0x76,0xd2,0x1b,0x85,0x1a,0x8a,0x55,
0x9a,0x1,0x78,0x33,0x58,0x36,0xa6,0x69,0xdb,0x61,0x9a,0x24,0x91,0x2f,0xc,0xe,
0xc0,0x29,0xb5,0xa0,0x2f,0xd9,0x36,0x25,0x6c,0xd,0xee,0xd,0xb7,0xc4,0x46,0x26,
0xa6,0x89,0x67,0xb4,0x55,0xa4,0x76,0xcd,0xd8,0x30,0x5a,0x95,0xdb,0x85,0x3e,0x9,
0x9e,0xf3,0x87,0x9e,0xa0,0x5f,0x12,0xf9,0x42,0x36,0xb0,0xc9,0x28,0x3f,0x67,0x53,
0x61,0x8,0x14,0xeb,0xe5,0x64,0x9a,0x28,0xf7,0xc6,0x65,0xa,0x95,0x57,0x50,0xd0,
0x47,0xc,0xd0,0x46,0x19,0xdb,0x44,0x25,0x12,0x92,0x4d,0x23,0x96,0x44,0xbe,0x50,
0x34,0x0,0x5f,0xdb,0x37,0xaa,0xdd,0x26,0xc,0x22,0x67,0xed,0x94,0x19,0xc5,0x5c,
0x9a,0xc7,0x6b,0x14,0xbe,0x5a,0xa5,0x90,0x3b,0x35,0x95,0x70,0x99,0xb0,0xc8,0x0,
0x9c,0xe0,0x37,0x77,0x9,0x7a,0x57,0x99,0xc5,0x90,0xb6,0x5a,0x49,0xe4,0xb,0xc5,
0xc1,0x69,0x8b,0xef,0x9e,0xbb,0x69,0x89,0xcd,0x8b,0xdb,0x3,0xc5,0x6a,0x4c,0xd2,
0xfd,0xfb,0xf7,0xeb,0xc0,0xbb,0x6f,0xb9,0xbb,0x84,0xcb,0x84,0x85,0x6,0xe0,0x4,
0xac,0xb0,0x3e,0x39,0x33,0xd8,0x56,0xa9,0x8a,0xd1,0xd1,0x10,0xc4,0xad,0x84,0xa1,
0x4c,0x7b,0x6,0xef,0x92,0xc8,0x17,0x16,0xa,0x4e,0x73,0xeb,0xcd,0xc8,0x99,0xc9,
0x26,0x6e,0x20,0xa0,0x87,0x6d,0x82,0xe5,0xea,0x5b,0x8f,0x25,0x89,0x7c,0x61,0xc7,
0x60,0x5d,0x6c,0xef,0x2e,0x89,0xbe,0x94,0x24,0xf2,0x85,0xa5,0x0,0x35,0x48,0x39,
0x87,0xbf,0xf,0x6d,0x85,0x15,0xd3,0x24,0x2c,0x4d,0x0,0xde,0x77,0x0,0x63,0xce,
0x56,0x58,0x49,0xe4,0xb,0x4b,0x5,0x9b,0xff,0x90,0x3b,0x0,0x8f,0xd,0xd2,0x25,
0x5c,0x26,0x2c,0x25,0x16,0x21,0x8e,0x20,0x89,0x7c,0x61,0x57,0xa2,0xf4,0x0,0x46,
0x9,0x97,0x9,0xbb,0x12,0xa5,0x6,0x30,0x4a,0x22,0x5f,0xd8,0x13,0x1,0x78,0xae,
0x1,0x8c,0x92,0xc8,0x17,0xf6,0x54,0x0,0x9e,0x53,0x9d,0x50,0x12,0xf9,0xc2,0xae,
0xc7,0xd0,0x1,0x8c,0x6e,0xd6,0x5b,0xc2,0x65,0xc2,0x9e,0x81,0x89,0x23,0xd0,0x7f,
0xdd,0xc7,0x9d,0xb2,0xde,0x6c,0x19,0x84,0xb0,0xe7,0x2,0x70,0xeb,0xbf,0xfe,0xe0,
0x78,0xbc,0x72,0x8,0xe5,0xe3,0xf4,0x55,0xc8,0x20,0x84,0x3d,0x9,0xa4,0x67,0x70,
0xa7,0xd8,0xe4,0xa8,0x82,0x10,0x88,0xa3,0x41,0xdb,0x1c,0xbe,0x82,0x8c,0x3f,0x4a,
0x1c,0x34,0x35,0xf1,0x3a,0x68,0xd7,0x6b,0xd7,0xae,0xc9,0x20,0x84,0xbd,0xd,0x36,
0xf9,0x85,0xb,0x17,0xea,0x9b,0x63,0x14,0x18,0xc2,0xc2,0x6c,0x3a,0x19,0x83,0xf0,
0xc8,0x81,0x86,0xa2,0xe6,0x0,0x96,0xad,0xad,0xad,0xea,0xe6,0xcd,0x9b,0xd1,0x53,
0x4e,0x5,0xa1,0xd,0xff,0xf,0x14,0xb7,0x60,0x68,0x32,0x93,0x46,0x85,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/fantasma1.png
0x0,0x0,0x13,0x7a,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x6d,0x0,0x0,0x1,0x52,0x8,0x6,0x0,0x0,0x0,0xf8,0xa3,0x51,0x9a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,
0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,
0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,
0x46,0x0,0x0,0x13,0x0,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0xdd,0x5f,0x68,0x14,
0x79,0xb6,0x7,0xf0,0x5f,0xfd,0x4b,0x75,0x57,0x97,0x19,0xeb,0x4e,0x45,0x9b,0x99,
0x82,0x64,0x69,0x27,0x66,0xd8,0x34,0x36,0x43,0x31,0xba,0x6b,0x36,0xac,0x99,0x4,
0x12,0xe8,0x25,0x42,0x3b,0x31,0x34,0x9d,0xdd,0x9e,0x4b,0x94,0x2c,0x83,0xe8,0xc,
0x13,0x12,0x21,0xec,0x6,0x72,0xa5,0x21,0x5c,0x22,0xa2,0xdc,0x8,0x79,0x68,0x56,
0xc1,0x10,0x44,0x12,0x50,0xc,0xbb,0xa0,0x12,0x8c,0xf8,0x90,0x2c,0xbb,0x97,0xbe,
0x90,0x7,0x65,0x3,0xc1,0x97,0x79,0x18,0x2e,0x61,0xe4,0x12,0x10,0x3c,0xf7,0x21,
0x56,0xa6,0x6c,0xbb,0xd3,0x9d,0xfe,0x53,0x55,0x3d,0x7e,0xf,0xfc,0x60,0x60,0x60,
0xfe,0xd4,0xc7,0x3a,0xfd,0xab,0xaa,0x73,0xce,0x8f,0xb1,0x5d,0x62,0x7d,0x7d,0x9d,
0xbc,0xb6,0x36,0x36,0x36,0xe6,0x18,0xe2,0xed,0x18,0x1f,0x1f,0xa7,0xee,0xee,0x6e,
0x32,0xc,0x83,0x18,0x63,0x9e,0x5b,0x4d,0x4d,0x4d,0x4,0xa5,0x37,0xb1,0xb2,0xb2,
0x42,0xad,0xad,0xad,0x24,0x8,0x8c,0x34,0x8d,0x23,0xc3,0xe0,0x81,0xe6,0xe5,0xd8,
0xd8,0xd8,0x98,0xd3,0x75,0x9d,0x3a,0x3a,0xc4,0xf5,0x2b,0x57,0xfc,0xed,0xc1,0x20,
0xe7,0x49,0x30,0xa0,0xd9,0x22,0x1a,0x8d,0x52,0x73,0x33,0xff,0xfa,0xce,0x1d,0xe5,
0x60,0x30,0xc8,0x51,0x67,0x67,0x27,0x4d,0x4f,0x4f,0x53,0x3a,0x9d,0xf6,0xdc,0xba,
0x7d,0xfb,0x36,0xd0,0xd6,0xd7,0xd7,0x89,0x31,0x46,0xbd,0xbd,0xd2,0x8a,0xa6,0x71,
0x34,0x38,0x38,0x88,0x8b,0xe2,0xf5,0x98,0x9d,0x9d,0x25,0xc6,0x18,0x19,0x6,0x4f,
0xaa,0xaa,0x2,0xac,0x16,0x62,0x74,0x74,0x94,0x18,0x63,0x24,0xcb,0x8c,0xba,0xbb,
0xbb,0x81,0x56,0xb,0x91,0x4c,0x26,0x77,0x7e,0xe4,0xdf,0xfc,0x35,0x2,0x68,0x8,
0xa0,0x21,0x80,0x6,0x34,0x4,0xd0,0x10,0x40,0x3,0x1a,0x2,0x68,0x8,0xa0,0x1,
0xd,0x1,0x34,0x4,0xd0,0x80,0x6,0x34,0xa0,0x21,0x80,0x86,0x0,0x1a,0xd0,0x10,
0x40,0x43,0x0,0xd,0x68,0x8,0xa0,0x21,0x80,0x6,0x34,0x4,0xd0,0x10,0x40,0x3,
0x1a,0xd0,0x80,0x86,0x0,0x1a,0x2,0x68,0x40,0x43,0x0,0xd,0x1,0x34,0xa0,0x21,
0x80,0x86,0x0,0x1a,0xd0,0x10,0x40,0x43,0x0,0xd,0x68,0x40,0x3,0x1a,0x2,0x68,
0x8,0xa0,0x1,0xd,0x1,0x34,0x4,0xd0,0x80,0x86,0x0,0x1a,0x2,0x68,0x40,0x43,
0x0,0xd,0x1,0x34,0x4,0xd0,0x80,0x86,0x0,0x1a,0x2,0x68,0x40,0x43,0x0,0xd,
0x1,0x34,0xa0,0x21,0x80,0x86,0x0,0x1a,0xd0,0x80,0x6,0x34,0x4,0xd0,0x10,0x40,
0x3,0x1a,0x2,0x68,0x8,0xa0,0x1,0xd,0x1,0x34,0x4,0xd0,0x80,0x86,0x0,0x1a,
0x2,0x68,0x40,0x3,0x1a,0xd0,0x10,0x40,0x43,0x0,0xd,0x68,0x8,0xa0,0x21,0x80,
0x6,0x34,0x4,0xd0,0x10,0x40,0x3,0x1a,0x2,0x68,0x8,0xa0,0x39,0x11,0xeb,0xeb,
0xeb,0x94,0x6b,0x1,0xcd,0x43,0x31,0x3f,0x3f,0x4f,0xc9,0x64,0x92,0x5a,0x5a,0x5a,
0xc8,0x30,0x8c,0x9d,0xeb,0x92,0xbd,0x74,0x5d,0xa7,0x96,0x96,0x16,0x4a,0x26,0x93,
0x94,0x4e,0xa7,0x9,0x68,0x2e,0x61,0x99,0xa6,0x49,0x8c,0x31,0xd2,0x34,0x8e,0x42,
0x21,0x9e,0x62,0x31,0x69,0x79,0x78,0x58,0x1e,0x99,0x9c,0xf4,0xf5,0xd8,0xd7,0xf0,
0xb0,0x3c,0x12,0x8b,0x49,0xcb,0xa1,0x10,0x4f,0xc1,0x20,0x47,0x8c,0x31,0x32,0x4d,
0x93,0xe6,0xe7,0xe7,0x9,0x68,0xe,0x45,0x5b,0x5b,0x1b,0x31,0xc6,0x28,0x1c,0x16,
0xb6,0xae,0x5f,0xf7,0x7f,0x96,0xc9,0xa8,0x1c,0x11,0xb1,0x62,0xd7,0x9d,0x3b,0xca,
0xc1,0xae,0x2e,0xf1,0xb9,0x20,0x30,0x7a,0xf3,0xcf,0x2,0x5a,0x35,0xc3,0x34,0x4d,
0x6a,0x6e,0xe6,0x5f,0x5f,0xbf,0xee,0xff,0x6c,0x2f,0x50,0xb9,0xd6,0xc2,0x82,0xa2,
0x9b,0xa6,0xb0,0xf9,0xe6,0x8e,0x5,0x5a,0xb5,0xc0,0xc2,0x61,0x61,0x6b,0x75,0x55,
0xe5,0xcb,0x5,0xb3,0xaf,0xbe,0x3e,0xe9,0x41,0xd5,0xe1,0xde,0x47,0xb4,0xb,0x17,
0x2e,0x90,0xa2,0x70,0xf4,0xe4,0x89,0x2a,0x55,0x12,0x8c,0x88,0x58,0x26,0xa3,0x72,
0xc1,0x20,0x47,0x27,0x4f,0x9e,0x24,0xa0,0x55,0x28,0x36,0x36,0x36,0xe6,0x54,0x55,
0xa5,0xaf,0xbe,0xaa,0x9b,0xad,0x34,0x98,0xb5,0xc6,0xc6,0xe4,0xb3,0xa2,0x28,0xd2,
0xca,0xca,0xa,0x1,0xcd,0xe3,0x77,0x99,0x63,0x77,0xdb,0xfb,0x86,0x56,0xed,0xbb,
0xcc,0x5a,0xc3,0xc3,0xf2,0x88,0x28,0x8a,0xf4,0xec,0xd9,0x33,0x2,0x5a,0x19,0xf1,
0xf4,0xe9,0x53,0x62,0x8c,0xd1,0xe4,0xa4,0xaf,0xa7,0xda,0x68,0xe9,0xb4,0xff,0x30,
0x63,0xac,0x3a,0xf,0xdf,0xef,0x13,0xda,0x9b,0xb,0x48,0x77,0xee,0x28,0x7,0x8b,
0xb9,0xf0,0x4f,0x9e,0xa8,0xd2,0xd2,0x52,0x40,0x2e,0x65,0x87,0xb9,0xb4,0x14,0x90,
0x19,0x63,0x94,0x4a,0xa5,0x80,0x56,0x4e,0x8c,0x8e,0x8e,0x92,0x20,0xb0,0x82,0xbf,
0x67,0x73,0x73,0x8a,0x11,0x89,0x8,0x2f,0x5,0x61,0xfb,0xba,0x28,0xa,0x47,0x5d,
0x5d,0xe2,0xf3,0xc5,0xc5,0x40,0xfd,0x5e,0xe0,0x82,0x41,0xae,0x3a,0xd7,0xf4,0x7d,
0x42,0x4b,0x26,0x93,0x64,0x18,0x3c,0xed,0x76,0xa1,0x53,0x29,0x5f,0xaf,0x20,0x6c,
0xbf,0x21,0x9,0x87,0x85,0x2d,0xc3,0xe0,0xc9,0x34,0x85,0xcd,0x60,0x90,0x23,0x4d,
0xe3,0x68,0x61,0x41,0xd1,0x8b,0x45,0x33,0xc,0x9e,0x5a,0x5a,0x5a,0x80,0x56,0x4d,
0xb4,0x27,0x4f,0x54,0x49,0x51,0x38,0x1a,0x18,0x90,0x16,0xd2,0x69,0xff,0x61,0xeb,
0x4e,0xd3,0x34,0x8e,0xee,0xdc,0x51,0xe,0x76,0x74,0x88,0xeb,0xc1,0x20,0x47,0xc5,
0xbe,0xea,0x32,0xc,0x9e,0x9a,0x9a,0x9a,0x80,0x56,0x4d,0xb4,0xa1,0xa1,0xba,0xeb,
0x82,0xc0,0xe8,0xfc,0x79,0x39,0xf5,0x8b,0x5f,0x28,0x34,0x31,0x31,0x41,0xb3,0xb3,
0xb3,0x74,0xe6,0xcc,0x19,0xfa,0xf8,0x63,0x91,0xc6,0xc7,0x7d,0x3,0x7b,0xd9,0xc8,
0x0,0xcd,0x1,0xb4,0xf6,0x76,0xf1,0x85,0xa2,0x70,0xa4,0x28,0x1c,0x9d,0x3a,0x75,
0x8a,0x1e,0x3d,0x7a,0xb4,0xb3,0x3e,0xff,0xfc,0x73,0xd2,0xb4,0xed,0xbf,0x17,0x8b,
0x49,0xcb,0x40,0xf3,0x8,0x5a,0x24,0x22,0xbc,0xb4,0xd0,0xe2,0xf1,0x38,0xd0,0x6a,
0x25,0x3d,0x2a,0xa,0x47,0xc3,0xc3,0xf2,0x48,0x53,0xd3,0x7e,0xba,0x7c,0xf9,0x32,
0xcd,0xce,0xce,0xd2,0x37,0xdf,0x7c,0x43,0x1f,0x7f,0x2c,0xd2,0xe0,0x60,0xdd,0x5f,
0x90,0x1e,0x3d,0x86,0xb6,0xb0,0xa0,0xe8,0x82,0xc0,0x68,0x78,0x58,0x1e,0xb9,0x71,
0x43,0x9,0x59,0x1b,0x11,0x41,0xd8,0x7e,0xb6,0xeb,0xed,0x95,0x56,0xb0,0x11,0xf1,
0xe8,0x96,0x5f,0x96,0x19,0xb5,0xb7,0x8b,0x2f,0x4c,0x53,0xd8,0x64,0x8c,0x91,0x69,
0xa,0x9b,0xe1,0xb0,0xb0,0x25,0x8,0x8c,0x66,0x66,0xfc,0xe1,0xbd,0x6c,0xf9,0x81,
0xe6,0x0,0x1a,0x11,0xb1,0x99,0x19,0x7f,0x38,0x1c,0x16,0xb6,0xac,0xeb,0x22,0x8,
0x8c,0x22,0x11,0xe1,0xe5,0xdc,0x9c,0x62,0xec,0xe5,0xe1,0x1a,0x68,0xe,0xa2,0xd9,
0x5f,0x45,0x2d,0x2d,0x5,0xe4,0x52,0xbf,0x8,0x0,0xcd,0x5,0xb4,0x72,0x17,0xd0,
0x80,0x6,0x34,0xa0,0x1,0xd,0x68,0x40,0x3,0x1a,0xd0,0x80,0x6,0x34,0xa0,0x1,
0xcd,0x79,0xb4,0xc9,0x49,0x5f,0x4f,0x28,0xc4,0x53,0x2a,0xe5,0xeb,0x5,0x9a,0xc7,
0xd1,0x56,0x57,0x55,0xbe,0xb7,0x57,0x5a,0x51,0x55,0x95,0x22,0x91,0x8,0x1d,0x3a,
0xb4,0x8f,0xb2,0x6b,0x48,0x80,0xe6,0x21,0xb4,0x85,0x5,0x45,0x6f,0x6e,0xe6,0x5f,
0x1b,0x86,0xb1,0x53,0x45,0x3c,0x3f,0x3f,0x4f,0x82,0xc0,0xe8,0xc6,0xd,0x25,0x4,
0x34,0x8f,0xa1,0x4d,0x4c,0xf8,0x4e,0x2b,0xa,0x47,0xd1,0x68,0xf4,0xad,0x6b,0xf5,
0xa6,0x43,0xf4,0xad,0x6f,0x6d,0x40,0x73,0x19,0xcd,0x4a,0x87,0xa2,0x28,0xe6,0xac,
0x65,0x4,0x9a,0xc7,0xd0,0xec,0xe9,0xf0,0xf1,0xe3,0xc7,0x39,0xaf,0x11,0xd0,0x3c,
0x84,0x96,0x2f,0x1d,0x2,0xcd,0x83,0x68,0x99,0x8c,0xca,0xf5,0xf5,0x49,0xf,0xf2,
0xa5,0x43,0xa0,0x79,0xc,0x6d,0x71,0x31,0x50,0xbf,0x5d,0x5d,0x9c,0x3f,0x1d,0x2,
0xcd,0x43,0x68,0x53,0x53,0xbe,0x13,0x9a,0x56,0x38,0x1d,0x2,0xcd,0x3,0x68,0x99,
0x8c,0xca,0xc5,0xe3,0xd2,0x7d,0x59,0x16,0x4b,0xea,0x74,0x1,0x9a,0xc3,0x68,0xa5,
0xa4,0x43,0x57,0xd1,0x46,0x47,0x47,0x89,0x31,0x46,0xb2,0xcc,0xe8,0xd8,0xb1,0x63,
0xef,0x1d,0xda,0xe2,0x62,0xa0,0xbe,0x94,0x74,0xe8,0x2a,0xda,0xec,0xec,0x2c,0x31,
0xc6,0xe8,0xd3,0x4f,0xf9,0x57,0xaa,0xaa,0xbe,0x57,0x68,0xb,0xb,0x8a,0x6e,0x18,
0x52,0x45,0x1a,0xff,0x1c,0x45,0xdb,0xd8,0xd8,0x98,0x13,0xc5,0xed,0x92,0xe7,0x70,
0x58,0xd8,0x1a,0x1c,0x1c,0xa4,0xf7,0x5,0x2d,0x14,0xe2,0xa9,0xbb,0xbb,0xbb,0x22,
0xff,0xbf,0x8e,0xa2,0x31,0xc6,0xd8,0xc9,0x93,0x27,0x29,0x18,0xe4,0x68,0x69,0x29,
0x20,0x87,0xc3,0xc2,0x96,0x69,0x9a,0x94,0x4a,0xa5,0x28,0x9d,0x4e,0xd7,0xcc,0x5a,
0x5c,0x5c,0xa4,0xbd,0xa2,0x1d,0x3d,0x2a,0xfc,0x50,0xa9,0x41,0x2d,0xd3,0xd3,0xd3,
0xce,0xbd,0x30,0x66,0x8c,0xb1,0x4c,0x26,0x43,0xba,0xae,0x53,0x47,0x87,0xb8,0x6e,
0x55,0xd7,0x5a,0x75,0xec,0xb5,0xb4,0x54,0x55,0xdd,0x75,0x33,0x95,0x8d,0x96,0xc9,
0xa8,0xdc,0xc5,0x8b,0xf2,0x39,0x5d,0xd7,0xa9,0xa9,0xa9,0xa9,0xac,0x15,0xa,0xd5,
0xbd,0xd3,0x16,0x5c,0x55,0x34,0xc6,0x18,0x5b,0x59,0x59,0xa1,0xd6,0xd6,0xd6,0x9d,
0xce,0xc7,0x60,0x90,0xa3,0xa3,0x47,0x85,0x1f,0x6a,0x61,0x85,0x42,0x3c,0x45,0x22,
0xc2,0xcb,0xbe,0x3e,0xe9,0x41,0x30,0xc8,0x91,0x69,0x9a,0x94,0xc9,0x64,0xa8,0x98,
0x8d,0xc8,0xea,0xaa,0xca,0xc7,0x62,0xd2,0xb2,0x61,0xf0,0x54,0xea,0x8a,0x44,0x84,
0x97,0xd7,0xae,0xf9,0x7f,0xe5,0xd8,0x47,0xd0,0xec,0x48,0xa7,0xd3,0x3b,0x33,0xf,
0xcb,0xfd,0xd3,0xe7,0xd4,0xb2,0x66,0x33,0x86,0xc3,0xc2,0xd6,0xdf,0xfe,0x16,0x50,
0xad,0x14,0x5f,0xc9,0xb7,0xfc,0x9e,0x2a,0x37,0xf8,0xb9,0xc4,0xda,0xda,0x1a,0x25,
0x12,0x9,0x3a,0x7e,0x5c,0xf8,0xde,0xea,0x97,0xbe,0x7c,0xf9,0x32,0x15,0x83,0xf6,
0xf0,0x61,0xc0,0x9f,0x3d,0xd7,0x71,0x2f,0x2b,0x9d,0xf6,0x1f,0xce,0xd5,0xfe,0x4,
0xb4,0x22,0xa3,0xb3,0xb3,0x93,0xc2,0x61,0x61,0x2b,0x18,0xe4,0xde,0x79,0xee,0xcc,
0x85,0x66,0xef,0x43,0x2b,0x67,0x75,0x75,0x89,0xcf,0x81,0x56,0xc6,0x2e,0x8e,0x31,
0x46,0xa1,0x10,0x6f,0xa5,0xcd,0xbc,0x68,0x53,0x53,0xbe,0x13,0xbf,0xfd,0xed,0x7,
0xff,0x5b,0x89,0x9d,0x72,0x7b,0xbb,0x49,0xf1,0xb8,0x74,0xdf,0x3e,0x28,0x6,0x68,
0x7b,0x48,0x93,0x8c,0x31,0xba,0x78,0x51,0x3e,0xf7,0xd5,0x57,0x75,0xb3,0x86,0x61,
0xec,0xfc,0xf6,0x5d,0xba,0xf4,0xe1,0x80,0x7d,0x87,0x67,0x18,0x3c,0xf5,0xf7,0xf7,
0x53,0x25,0xff,0xbd,0x8e,0x3d,0xa7,0xfd,0x9c,0xc2,0xfe,0x90,0x3b,0x32,0x22,0x7f,
0xfb,0xd1,0x47,0x3f,0xed,0xf2,0xb2,0x77,0x78,0xf1,0xb8,0x74,0xdf,0x30,0xc,0xda,
0xd8,0xd8,0x98,0xab,0xb9,0x87,0xeb,0x9f,0x2b,0xda,0xd8,0x98,0x7c,0xb6,0xd0,0xa8,
0xdb,0xc1,0xc1,0xba,0xbf,0xe8,0xba,0x5e,0xf2,0x8b,0x62,0xa0,0xb9,0x80,0x66,0xdd,
0x71,0xa5,0x7e,0x92,0x1,0x9a,0xc3,0x68,0xff,0xf8,0xc7,0x4f,0xdb,0xf4,0x52,0x3f,
0x7e,0x2,0xcd,0x41,0xb4,0x8e,0xe,0x71,0xbd,0xbe,0x7e,0x7b,0x66,0x48,0x25,0xbe,
0xab,0x1,0xad,0x8a,0x68,0xab,0xab,0x2a,0x3f,0x36,0x26,0x9f,0x3d,0x72,0xa4,0x95,
0xfa,0xfb,0xfb,0x49,0x55,0x55,0xea,0xe8,0x10,0xd7,0xad,0xad,0x7a,0xa9,0x5f,0xb0,
0x81,0x56,0x45,0xb4,0xa1,0xa1,0xba,0xeb,0xaa,0xaa,0xee,0xec,0x18,0xad,0x77,0xae,
0xc1,0x20,0x47,0xf6,0x91,0x13,0x7b,0x4d,0x97,0x40,0xab,0x22,0x5a,0x2c,0x26,0x2d,
0xe7,0xba,0x90,0x89,0x44,0x82,0xac,0x69,0x3d,0xa5,0xa4,0x4b,0xa0,0xb9,0x80,0x66,
0xbd,0x4d,0xc9,0x4e,0x97,0x85,0xca,0xc1,0x81,0xe6,0x32,0xda,0x6e,0xe9,0xb2,0x50,
0xa5,0x31,0xd0,0x5c,0x44,0xcb,0x4e,0x97,0x13,0x13,0xbe,0xd3,0xc5,0xd4,0xf4,0x3,
0xcd,0x3,0x68,0xf6,0x74,0xd9,0xdb,0x2b,0xad,0x14,0x4a,0x97,0x78,0xf7,0xe8,0x11,
0x34,0x7b,0xba,0x6c,0x6e,0xe6,0x5f,0xdb,0x87,0x4e,0xdb,0xd3,0xe5,0xfc,0xfc,0x3c,
0xfd,0xfe,0xf7,0xa7,0xf0,0x96,0xdf,0x2b,0x68,0xf6,0x74,0xa9,0x28,0x5c,0xce,0x74,
0xc9,0x18,0xa3,0xa3,0x47,0x85,0x1f,0xf0,0x3d,0xcd,0x63,0x68,0xf9,0xd2,0x65,0x26,
0xa3,0x72,0x57,0xae,0xf8,0xdb,0x73,0x1d,0xb8,0x0,0x34,0xf,0xa0,0xed,0x96,0x2e,
0x51,0x23,0xe2,0x61,0x34,0x7b,0xba,0xd4,0x34,0x8e,0x1e,0x3e,0xc,0xf8,0x81,0x56,
0x23,0x68,0x8c,0x31,0x96,0x4a,0xa5,0xa8,0xa1,0x41,0xca,0x7b,0x2a,0x6,0xd0,0x2a,
0x88,0x96,0x5d,0x3b,0x52,0x4e,0x6c,0x17,0xaa,0xe6,0x2e,0xcb,0x3,0x5a,0x85,0xd0,
0x66,0x66,0xfc,0xe1,0x60,0x90,0xa3,0xab,0x57,0xaf,0x52,0xbe,0xc3,0xc7,0x8b,0x5d,
0x8f,0x1e,0x3d,0xa2,0x43,0x87,0xf6,0xd1,0xd7,0x5f,0xd7,0x5d,0x1,0x5a,0x15,0xd1,
0xac,0x1d,0x9f,0xa6,0x71,0x65,0x97,0xcd,0x15,0x3a,0x21,0xa,0x68,0x15,0x44,0xb3,
0xee,0xb8,0x58,0x4c,0x5a,0x2e,0x67,0x8d,0x8f,0xfb,0x6,0xb0,0x7b,0x74,0x10,0xd,
0x65,0xe1,0x35,0x88,0xb6,0xb8,0x18,0xa8,0x2f,0xa7,0x14,0x7c,0x72,0xd2,0xd7,0x63,
0x6f,0x6b,0x2,0x9a,0x3,0xbf,0x69,0xc1,0x20,0x7e,0xd3,0x6a,0x6,0x6d,0x61,0x41,
0xd1,0xc3,0x61,0x61,0x6b,0x62,0x62,0xa2,0xec,0xdd,0xe3,0xfc,0xfc,0x3c,0xfd,0xf2,
0x97,0xf5,0x34,0x35,0xe5,0x3b,0x1,0xb4,0x2a,0x3f,0xa7,0xe9,0xba,0x8e,0xe7,0xb4,
0xf7,0xf5,0x8d,0xc8,0xed,0xdb,0xb7,0xa9,0xbe,0x5e,0xc2,0x9d,0x56,0x2b,0x68,0xa3,
0xa3,0xa3,0x24,0xcb,0x22,0xed,0x76,0x68,0x10,0xd0,0x3c,0x82,0xb6,0xb1,0xb1,0x31,
0xd7,0xd6,0xd6,0x46,0x9a,0xc6,0x15,0x3c,0x96,0xb,0x68,0x1e,0x40,0xbb,0x7b,0xf7,
0x2e,0xe9,0xba,0x4e,0xa6,0x29,0x6c,0xda,0x77,0x8d,0x4b,0x4b,0x1,0x19,0x9d,0xa0,
0x1e,0x44,0xb3,0xd2,0xe1,0xd0,0x50,0xdd,0x75,0xfb,0x11,0xcb,0xd6,0xc1,0x78,0xe8,
0x4,0xf5,0x10,0x9a,0x3d,0x1d,0xda,0x37,0x1c,0x33,0x33,0xfe,0xb0,0xa6,0x71,0xd4,
0xda,0xda,0x4a,0xd3,0xd3,0xd3,0xe8,0x4,0xf5,0xa,0x9a,0x95,0xe,0xc3,0x61,0x61,
0xcb,0x3e,0xbe,0x7d,0x68,0xa8,0xee,0xfa,0xf6,0x5d,0x37,0x84,0x6a,0x2c,0x2f,0xa1,
0x59,0xe9,0x30,0x1e,0x97,0xee,0x5b,0xbf,0x57,0xab,0xab,0x2a,0x6f,0x9a,0xc2,0xa6,
0xae,0xeb,0x74,0xf3,0xe6,0x4d,0xd4,0x3d,0x7a,0x5,0x2d,0x5f,0x3a,0x9c,0x9b,0x53,
0x8c,0xdd,0x6,0xcb,0x0,0xcd,0x25,0xb4,0x7c,0xe9,0x70,0x78,0x58,0x1e,0xc9,0x4e,
0x87,0x40,0xf3,0x0,0x5a,0xbe,0x74,0xd8,0xd1,0x21,0xae,0xe7,0x4a,0x87,0x40,0x73,
0x10,0x2d,0x1e,0x97,0xee,0x67,0xcf,0xb5,0x8c,0x46,0xa3,0x7b,0x4e,0x87,0x40,0x73,
0x10,0xcd,0xaa,0xc5,0x8f,0x46,0xa3,0x94,0x4a,0xa5,0xc8,0x30,0x8c,0x92,0xd2,0x21,
0xd0,0x1c,0x44,0xb3,0x96,0x69,0xa,0x9b,0x82,0xc0,0x4a,0x4e,0x87,0x40,0x73,0x1,
0x2d,0x93,0x51,0x39,0xfb,0xab,0x28,0x2b,0x1d,0xb6,0xb6,0xb6,0xee,0x9c,0xd4,0x4,
0x34,0x8f,0xa1,0xd9,0xd7,0xf0,0xb0,0x3c,0x22,0x8,0x8c,0x12,0x89,0x4,0xe6,0x88,
0xd4,0x2,0xda,0xc4,0x84,0xef,0xb4,0xaa,0xaa,0xf4,0x66,0x10,0x1a,0x3,0x9a,0xc7,
0xd1,0x2e,0x5e,0x94,0xcf,0x1d,0x3c,0xa8,0x97,0x94,0xe,0x81,0xe6,0x12,0x9a,0x61,
0xf0,0x15,0x3b,0x40,0x2,0x68,0xe,0xa1,0x8d,0x8f,0xfb,0x6,0x5a,0x5b,0x1b,0x68,
0x7e,0x7e,0xbe,0xac,0x2,0x9f,0xb5,0xb5,0x35,0xfa,0xc3,0x1f,0x12,0xd4,0xd5,0x25,
0x3e,0xc7,0x5b,0x7e,0x7,0x7e,0xd3,0xd2,0x69,0xff,0x61,0x56,0x81,0x49,0xe5,0xe8,
0x4,0x75,0x78,0xf7,0x98,0x4e,0xfb,0xf,0x97,0x5b,0xb8,0x8a,0x4e,0x50,0x87,0xd1,
0x50,0x16,0x5e,0x63,0x68,0x99,0x8c,0xca,0xd,0xd,0xd5,0x5d,0x2f,0xb7,0x19,0x23,
0x57,0x63,0x21,0xd0,0xaa,0xf8,0x9c,0x26,0x8a,0x62,0x59,0xe7,0x2,0xe8,0xba,0x4e,
0x8d,0x8d,0x3c,0x65,0x17,0xf7,0x0,0xad,0xa,0x68,0xbd,0xbd,0xd2,0xca,0x91,0x23,
0xad,0xf4,0xec,0xd9,0xb3,0xb2,0x2f,0xec,0xc4,0xc4,0x4,0x5,0x83,0xdc,0x5b,0xa7,
0xca,0x3,0xad,0x4a,0xcf,0x69,0x95,0x9a,0x16,0x8e,0xe7,0x34,0x87,0xd0,0xa6,0xa6,
0x7c,0x27,0x1a,0x1a,0x24,0x9a,0x99,0x99,0xc1,0x1b,0x91,0x5a,0xfa,0x4d,0x9b,0x9b,
0x53,0x8c,0xbd,0x7e,0x3b,0x3,0x9a,0x7,0xb6,0xfc,0x7b,0xfd,0x4a,0xd,0x34,0x97,
0xd0,0x16,0x17,0x3,0xf5,0x57,0xae,0xf8,0xdb,0x2b,0xf1,0x1,0x14,0x68,0xe,0xa0,
0xd9,0x3b,0x41,0x8b,0x29,0x44,0x5,0x9a,0xcb,0x68,0xf6,0x4e,0xd0,0xa7,0x4f,0x9f,
0xd2,0x6e,0x25,0xdf,0x7b,0x49,0x97,0x40,0xab,0x22,0x5a,0xae,0x4e,0x50,0x7b,0xf9,
0x5c,0x76,0x73,0x45,0xb1,0xe9,0x12,0x68,0x55,0x46,0xcb,0x75,0x21,0xf3,0xb5,0x31,
0x15,0x9b,0x2e,0x81,0xe6,0x2,0x1a,0x63,0xf9,0x1b,0x6,0x8b,0x49,0x97,0x40,0x73,
0x9,0x2d,0x3b,0x5d,0xe6,0xea,0x45,0xcb,0x97,0x2e,0x81,0xe6,0x32,0x5a,0x31,0xe9,
0x72,0x74,0x74,0x14,0x5d,0x33,0x5e,0x43,0x2b,0x26,0x5d,0xb6,0xb5,0xb5,0xed,0x1c,
0x7f,0xf2,0xe8,0xd1,0x23,0x62,0x8c,0xd1,0x95,0x2b,0xfe,0x76,0xa0,0xb9,0x88,0x56,
0x4c,0xba,0x54,0x55,0x95,0xfa,0xfb,0xfb,0xe9,0x93,0x4f,0x1a,0xde,0x2,0x3,0x9a,
0xcb,0x68,0x8c,0x31,0x76,0xf3,0xe6,0xcd,0xbc,0xe9,0xb2,0xa1,0x81,0xcb,0x39,0xf3,
0x11,0x68,0x2e,0xa3,0x31,0xc6,0x58,0x26,0x93,0x21,0xd3,0x34,0x8b,0x1a,0x47,0x1,
0x34,0x8f,0xa0,0x59,0x31,0x34,0x34,0x44,0xb2,0x2c,0xe6,0x9d,0xa8,0xa,0x34,0xf,
0xa2,0x59,0xe9,0xf2,0xe0,0x41,0x9d,0x52,0x29,0x5f,0x2f,0xd0,0x6a,0x4,0x8d,0xb1,
0xed,0x19,0xfd,0x1f,0x7c,0xa0,0x62,0x86,0x71,0xb5,0xd1,0xe2,0x71,0xe9,0x3e,0xa6,
0xd0,0xd5,0x18,0x9a,0xbd,0x13,0x34,0x9d,0x4e,0x97,0xb5,0x2e,0x5c,0xb8,0x40,0xbf,
0xfb,0x9d,0xef,0xbf,0x31,0x97,0xbf,0xca,0x68,0xf6,0x4e,0x50,0x56,0x66,0x29,0xb8,
0xa6,0x71,0x94,0xab,0xb2,0x18,0x68,0x55,0x42,0xcb,0x64,0x54,0x6e,0x69,0x29,0x20,
0x97,0xb3,0x76,0x3,0x3,0x5a,0x15,0xd0,0x50,0x16,0x5e,0x83,0x68,0xdf,0x7e,0x2b,
0xff,0x39,0x14,0xe2,0xc9,0x30,0x4a,0x5f,0xf6,0x8f,0xa6,0x40,0xab,0x32,0xda,0xbd,
0x7b,0x1,0xed,0xc0,0x81,0x7d,0x65,0x95,0x82,0x5b,0xe5,0xe0,0x98,0xac,0xea,0x0,
0xda,0xd8,0x98,0x7c,0x56,0x14,0xc5,0x82,0xe7,0x56,0x17,0x1b,0xba,0xae,0x53,0x34,
0x2a,0xfe,0x13,0x68,0x35,0xf2,0x70,0xcd,0x18,0x63,0x86,0x61,0xe4,0x6c,0x28,0x4,
0x9a,0x47,0xd1,0x12,0x89,0x4,0x99,0xa6,0xb0,0x99,0x6f,0x17,0x9,0x34,0xf,0xa1,
0x59,0x47,0x4c,0xe6,0x6a,0x6f,0x2,0x9a,0x7,0xd1,0xac,0xc3,0x5c,0x3b,0x3a,0xc4,
0x75,0x3c,0xa7,0xd5,0x0,0x9a,0x75,0xca,0xfc,0xf0,0xb0,0x3c,0x62,0x2f,0x2f,0x8f,
0xc7,0xa5,0xfb,0xe8,0x4,0xf5,0x18,0x9a,0x95,0xe,0x83,0x41,0xee,0xad,0x2d,0xfe,
0xd4,0x94,0xef,0x84,0x75,0x78,0x5e,0xae,0x97,0xc6,0x40,0x73,0x9,0x2d,0x57,0x3a,
0xcc,0x64,0x54,0x2e,0x1e,0x97,0xee,0xcb,0xb2,0x48,0xa9,0x54,0x8a,0xd6,0xd7,0xd7,
0x29,0x95,0xfa,0xf,0xa,0x85,0x78,0x74,0x82,0xba,0x8d,0x36,0x38,0x38,0x98,0x33,
0x1d,0x86,0xc3,0xc2,0x96,0x61,0x18,0x6f,0x3d,0xeb,0xa1,0x84,0xce,0x65,0x34,0xab,
0x16,0x24,0x5f,0x3a,0x8c,0x46,0xa3,0x28,0x56,0xf5,0x12,0x9a,0x55,0x75,0xb5,0x5b,
0x3a,0x2c,0xf4,0xef,0x5,0x9a,0x83,0x68,0x56,0xc1,0x4e,0x31,0xe9,0x10,0x68,0x2e,
0xa3,0x15,0x4a,0x87,0x6d,0x6d,0x6d,0x68,0x75,0x72,0x13,0x2d,0xfb,0x85,0x71,0xa1,
0x74,0x98,0x5d,0xb3,0xf,0x34,0x17,0xd0,0xb2,0x3f,0xcd,0xe4,0x4b,0x87,0xba,0xae,
0xd3,0xdd,0xbb,0x77,0x31,0x2d,0xdc,0x2b,0x68,0x44,0xc4,0xbe,0xfe,0xba,0xee,0x4a,
0x24,0x22,0xbc,0xb4,0x57,0xa,0xdb,0xd3,0xa1,0xd5,0x58,0x1,0x34,0xf,0xa1,0x65,
0xd7,0x8b,0xec,0x35,0x1d,0x2,0xcd,0x45,0xb4,0xd5,0x55,0x95,0x2f,0x25,0x1d,0x2,
0xcd,0x25,0xb4,0xd5,0x55,0x95,0xef,0xe9,0x11,0xff,0xa7,0x94,0x74,0x8,0x34,0x97,
0xd0,0x8e,0x1e,0x15,0x7e,0x30,0x4d,0x13,0x3,0xcd,0x6a,0x9,0x2d,0x14,0xe2,0xa9,
0xbb,0xbb,0xbb,0x22,0x17,0xf5,0xe9,0xd3,0xa7,0xe8,0x4,0x75,0x2,0x6d,0xfb,0x5b,
0x98,0x7f,0xb1,0xbf,0xbf,0x9f,0x92,0xc9,0x64,0x59,0xeb,0x37,0xbf,0x9,0xa3,0x13,
0xd4,0xa9,0x8d,0xc8,0xe2,0x62,0xa0,0xde,0x1a,0xb9,0x54,0xea,0x12,0x4,0x46,0x3,
0x3,0xd2,0x2,0xbe,0xa7,0x39,0xbc,0xe5,0x2f,0xa7,0x3c,0xdc,0xde,0xce,0xb,0x34,
0x87,0xd0,0x50,0x16,0x5e,0x83,0xe9,0xb1,0xdc,0xf2,0x70,0xc3,0xe0,0xd1,0x28,0xef,
0x14,0xda,0x93,0x27,0xaa,0x14,0x8f,0xfb,0x17,0xbb,0xbb,0xbb,0xcb,0xde,0x88,0x7c,
0xf2,0x49,0x3,0xa5,0xd3,0xfe,0xc3,0x40,0xab,0xa1,0x2d,0x3f,0x86,0xbf,0x38,0xf8,
0x70,0xdd,0xd9,0xd9,0x89,0x87,0xeb,0x5a,0x7b,0x8d,0x75,0xfc,0xb8,0xf0,0x7d,0xae,
0x9a,0xf,0xa0,0x79,0x78,0x23,0x62,0xbd,0x30,0x2e,0x54,0x4e,0x0,0x34,0x8f,0x6d,
0xf9,0xad,0xe6,0x79,0x51,0xcc,0x5f,0xb8,0x3,0x34,0xf,0xa0,0x8d,0x8f,0xfb,0x6,
0xba,0xba,0xc4,0xe7,0xf6,0x72,0xee,0x89,0x9,0xdf,0x69,0x45,0xc9,0x5d,0x22,0x7,
0x34,0x97,0xd1,0x16,0x17,0x3,0xf5,0x7,0xe,0xec,0x23,0xc3,0x30,0x48,0x51,0x38,
0x9a,0x98,0xf0,0x9d,0xb6,0xf,0xa6,0x6e,0x6e,0xe6,0x5f,0xef,0x35,0x5d,0x2,0xad,
0x8a,0x68,0x53,0x53,0xbe,0x13,0xb2,0xfc,0x53,0x61,0x8f,0x55,0xf6,0xdd,0xdb,0x2b,
0xad,0x58,0x85,0x3d,0xf6,0x74,0x59,0xec,0xa9,0xbc,0x40,0xab,0x22,0x5a,0xae,0x12,
0x3a,0xab,0xc1,0xa2,0xb9,0x99,0x7f,0x9d,0x2b,0x5d,0x16,0x73,0xfe,0x35,0xd0,0x1c,
0x46,0xb3,0x22,0x91,0x48,0xe4,0x4d,0x97,0x85,0x4e,0x9a,0x7,0x9a,0x4b,0x68,0x85,
0xd2,0xe5,0x6e,0x87,0x98,0x3,0xcd,0x45,0x34,0x2b,0x5d,0x1a,0x86,0xb1,0xa7,0x74,
0x9,0x34,0x97,0xd1,0xac,0x88,0x46,0xa3,0x45,0xa7,0x4b,0xa0,0x79,0x4,0x8d,0x31,
0xc6,0x52,0xa9,0x14,0x89,0xa2,0x58,0x30,0x5d,0x4e,0x4f,0x5f,0x23,0xc3,0x40,0x53,
0xa1,0x27,0xd0,0x18,0x63,0xec,0xf1,0xe3,0xc7,0x39,0xd3,0xe5,0xf0,0xb0,0x3c,0x22,
0x8,0x8c,0xf6,0xef,0xdf,0x8f,0xf6,0x5d,0xaf,0xa1,0x15,0x4a,0x97,0x68,0x94,0xf7,
0x30,0x9a,0x3d,0x5d,0xf6,0xf5,0x49,0xf,0x76,0x9b,0x21,0x2,0x34,0xf,0xa1,0xd9,
0xd3,0x65,0x38,0x2c,0x6c,0x61,0xf8,0x4b,0x8d,0xa0,0xd9,0xd3,0xe5,0x6e,0x43,0x60,
0x80,0xe6,0x41,0x34,0xc6,0xb6,0xa7,0xd0,0x61,0xa0,0x59,0x95,0xd1,0xce,0x9f,0x97,
0x53,0x95,0x1e,0x1d,0xd8,0xd5,0x25,0x3e,0x7,0x5a,0x15,0xd1,0x88,0x88,0xdd,0xba,
0xa5,0x34,0x1e,0x38,0xb0,0x8f,0xca,0x2d,0x7,0x3f,0x74,0xe8,0x10,0x4d,0x4d,0xf9,
0x4e,0xe4,0xfb,0x5d,0x3,0x5a,0x5,0xd1,0xac,0x4e,0xd0,0x72,0x6b,0x1d,0xbb,0xba,
0xc4,0xe7,0xd8,0x88,0x38,0x88,0x86,0xa,0xe3,0x1a,0x44,0xab,0xc4,0x88,0x77,0x3c,
0xa7,0x39,0x8c,0x56,0x89,0xc3,0x14,0x82,0x41,0x1c,0xa6,0xe0,0x8,0xda,0xea,0xaa,
0xca,0xf,0xc,0x48,0xb,0x9d,0x9d,0x9d,0x34,0x3d,0x3d,0x5d,0xd6,0xb1,0x25,0x89,
0x44,0x82,0x7a,0x7b,0xa5,0x15,0xfb,0x4b,0x62,0xa0,0x55,0x1,0x2d,0x1e,0x97,0xee,
0xab,0xaa,0x5a,0xd1,0xc1,0xd3,0x38,0x20,0xa8,0x86,0x1e,0xae,0x9f,0x3d,0x7b,0x46,
0xaa,0xaa,0xbe,0x75,0x56,0x28,0xd0,0x3c,0x8c,0x66,0x1d,0xa9,0xfc,0xed,0xb7,0xf2,
0x9f,0xf1,0x9b,0x56,0x3,0x68,0xd6,0x69,0xbc,0x38,0xb6,0xa4,0x46,0xd0,0xac,0x73,
0xaf,0xa7,0xa6,0x7c,0x27,0xf0,0x9c,0xe6,0x71,0x34,0xfb,0xe7,0x18,0xfb,0x6e,0x71,
0x78,0x58,0x1e,0x31,0xc,0x9e,0x2e,0x5e,0x94,0xcf,0x1,0xcd,0x43,0x68,0xa9,0x54,
0x6a,0x27,0x1d,0x5a,0xf,0xd4,0xab,0xab,0x2a,0xdf,0xd1,0x21,0xae,0xdb,0xf,0x27,
0x47,0x27,0xa8,0x47,0xd0,0xa2,0xd1,0xe8,0x3b,0xe9,0x70,0x6e,0x4e,0x31,0x82,0x41,
0x8e,0x4c,0xd3,0xa4,0x4c,0x26,0x43,0x8c,0xa1,0x13,0xd4,0x13,0x68,0xbb,0xa5,0x43,
0x41,0x60,0xef,0xd4,0x3e,0xa2,0x84,0xce,0x65,0xb4,0x42,0xe9,0x30,0x57,0x95,0x31,
0xd0,0x5c,0x44,0xdb,0x2d,0x1d,0xee,0x56,0xcf,0xf,0x34,0x17,0xd0,0xa,0xd5,0x36,
0x16,0xea,0x9c,0x1,0x5a,0x95,0xd1,0xc,0xc3,0xa0,0xec,0x74,0x98,0xab,0x8a,0x78,
0xb7,0x74,0x8,0x34,0x7,0xd1,0x16,0x16,0x14,0xbd,0xb1,0x91,0xa7,0xab,0x57,0xaf,
0xd2,0xda,0xda,0x1a,0xe5,0x2b,0x40,0x2d,0x94,0xe,0x81,0xe6,0x20,0x9a,0xf5,0x1,
0xd4,0x9a,0x3c,0x57,0x4e,0x23,0x21,0xd0,0x1c,0x44,0xb3,0xfa,0xae,0x27,0x27,0x7d,
0x3d,0x7b,0xe9,0x41,0x3,0x9a,0xcb,0x68,0xd9,0x29,0xb3,0x98,0x6e,0x4f,0xa0,0x79,
0x4,0x6d,0x61,0x41,0xd1,0x35,0x6d,0xef,0xe9,0x10,0x68,0x2e,0xa1,0xdd,0xb8,0xa1,
0x84,0x1a,0x1a,0xa4,0x92,0xd2,0x21,0xd0,0x5c,0x42,0xb,0x85,0x78,0xea,0xef,0xef,
0xc7,0x40,0xb3,0x5a,0x42,0x6b,0x6f,0x17,0x5f,0xb4,0xb6,0xb6,0x96,0x3d,0x93,0x9f,
0x31,0xc6,0xae,0x5e,0xbd,0x4a,0x8a,0xc2,0xd1,0x8d,0x1b,0x4a,0x8,0x68,0x55,0xfe,
0x4d,0x1b,0x1f,0xf7,0xd,0xa8,0xaa,0x4a,0x4d,0x4d,0x4d,0x25,0x2f,0xc3,0x30,0xa8,
0xb1,0x91,0x7f,0xa7,0x9c,0xe,0x68,0x55,0x42,0xb3,0xce,0x99,0x89,0xc5,0xa4,0xe5,
0x72,0xd6,0xb5,0x6b,0xfe,0x5f,0xe1,0x23,0xa8,0x83,0x5b,0x7e,0x94,0x85,0x3,0xd,
0x68,0x40,0x7b,0x8f,0xd0,0xfe,0xf4,0x27,0xf9,0xdf,0x2f,0x5c,0x90,0x2f,0x55,0x12,
0x2d,0x9d,0xf6,0x1f,0x8e,0xc7,0xa5,0xfb,0x13,0x13,0xbe,0xd3,0xbb,0xd5,0xf0,0x3,
0xad,0x44,0xb4,0xb1,0x31,0xf9,0xec,0xf9,0xf3,0x72,0xaa,0x52,0x68,0x7d,0x7d,0xd2,
0x3,0x96,0xd5,0x7c,0x91,0xaf,0x86,0x1f,0x68,0x1e,0x40,0x9b,0x9c,0xf4,0xf5,0x30,
0xc6,0x68,0x6a,0xca,0x77,0x62,0x69,0x29,0x20,0xdf,0xb9,0xa3,0x1c,0xd4,0x34,0x2e,
0x6f,0xdb,0x2e,0xd0,0x3c,0x80,0x16,0x8b,0x49,0xcb,0xc1,0x20,0xf7,0x56,0x93,0x45,
0x34,0x2a,0xfe,0xd3,0x30,0x72,0x37,0x5e,0x0,0xcd,0x3,0x68,0x43,0x43,0x75,0xd7,
0x5,0x81,0x91,0xfd,0x20,0xa0,0x48,0x44,0x78,0xf9,0xd9,0x67,0xff,0xf6,0x1a,0x68,
0x1e,0x45,0x7b,0xf2,0x44,0x95,0x34,0x8d,0xa3,0x70,0x58,0xd8,0x8a,0xc5,0xa4,0xe5,
0xf6,0x76,0xf1,0x85,0x2c,0xb3,0x82,0xa5,0xe1,0x40,0x73,0x79,0x23,0xb2,0xb0,0xa0,
0xe8,0x91,0x88,0xf0,0xd2,0x30,0x78,0xa,0x85,0x78,0xd4,0xf2,0xd7,0x2,0x1a,0x9e,
0xd3,0x80,0x86,0x0,0x1a,0xd0,0x80,0x6,0x34,0xa0,0x1,0xd,0x68,0x40,0x3,0x1a,
0xd0,0xca,0x47,0xfb,0xe3,0x1f,0xeb,0xfe,0xeb,0xa3,0x8f,0x7e,0x9a,0x1a,0x97,0xab,
0x24,0x0,0x68,0x1e,0x88,0xb5,0xb5,0x35,0x62,0x8c,0xd1,0xb9,0x73,0x75,0xff,0xf9,
0xe5,0x97,0xd2,0x92,0x61,0x18,0x3b,0x5,0x38,0x97,0x2e,0x7d,0x38,0x90,0xef,0x20,
0x71,0xa0,0xb9,0x18,0x6f,0xa,0x4f,0xdf,0xdc,0x5d,0x6,0xbd,0x7a,0xf5,0x8a,0xac,
0x48,0x26,0x93,0x54,0xe8,0xcd,0x3c,0xd0,0x5c,0x88,0xce,0xce,0x4e,0xa,0x87,0x85,
0x2d,0x4d,0xe3,0xa8,0xbb,0xbb,0x9b,0xec,0x1,0x34,0xf,0xa6,0xc5,0x44,0x22,0x41,
0xc7,0x8f,0xb,0xdf,0xa7,0xd3,0xfe,0xc3,0x82,0xc0,0xe8,0xf2,0xe5,0xcb,0x40,0x73,
0x22,0xbe,0xfb,0xee,0xbb,0x92,0x8a,0x45,0x19,0x63,0x14,0xe,0xb,0x5b,0xf7,0xee,
0x5,0xb4,0x70,0x58,0xd8,0x6a,0x6b,0x6b,0x7b,0x2b,0x35,0x5a,0x68,0xfb,0xf7,0x73,
0xf4,0xd7,0xbf,0x6,0xf6,0x1,0xad,0x82,0x91,0x4c,0x26,0x89,0x31,0x46,0xed,0xed,
0xe2,0x8b,0x62,0xb,0x45,0xdb,0xdb,0xc5,0x17,0x5d,0x5d,0xe2,0xf3,0x58,0x4c,0x5a,
0xd6,0xb4,0xed,0xe,0xce,0x4c,0x26,0x43,0xd9,0x91,0x4c,0x26,0xa9,0xbe,0x9e,0xa3,
0x7b,0xf7,0x2,0x5a,0x25,0x26,0xab,0x16,0x5a,0xc1,0x20,0xf7,0x7e,0xa1,0xdd,0xba,
0xa5,0x34,0x16,0xfb,0x27,0x3a,0x93,0x51,0xb9,0x5b,0xb7,0x94,0xc6,0x5f,0xff,0xfa,
0xc0,0xab,0xd1,0xd1,0x51,0xfa,0xf1,0xc7,0x1f,0x29,0x57,0xd8,0xd1,0xac,0xba,0x8f,
0x6a,0x2f,0xdc,0x69,0x39,0x56,0x24,0x22,0xbc,0xd4,0x34,0x8e,0x8e,0x1d,0x3b,0x46,
0xa7,0x4e,0x9d,0x2a,0x38,0x92,0x5d,0x92,0x18,0x7d,0xf1,0x85,0xf8,0xaf,0x4a,0x8c,
0xc3,0xb5,0xaf,0xbe,0x3e,0xe9,0xc1,0xe4,0xa4,0xaf,0xc7,0xbe,0x34,0x8d,0x23,0x55,
0x55,0xcb,0x1a,0x23,0x9f,0xbd,0x2a,0x75,0x9e,0x40,0x55,0xd0,0x82,0x41,0x2e,0xef,
0x68,0xf5,0xf,0x3f,0xe4,0xa8,0xbe,0xfe,0xdd,0xb5,0x7f,0x3f,0x47,0xe5,0x8e,0x6d,
0x2f,0x75,0xe5,0x7a,0x70,0x37,0x4d,0x61,0xb3,0x52,0xff,0x7c,0xab,0x47,0x3c,0x9d,
0x4e,0xff,0xfc,0xd0,0x4c,0x53,0xd8,0x74,0xeb,0xb5,0x55,0x31,0xab,0x54,0x48,0x4f,
0xa3,0xcd,0xcc,0xcc,0x94,0x95,0x3e,0xce,0x9c,0xf9,0x92,0x26,0x27,0x7d,0x3d,0xf,
0x1f,0x6,0xfc,0xd9,0x17,0xec,0xef,0x7f,0x57,0xf9,0x7b,0xf7,0x2,0x9a,0x7d,0x39,
0xb5,0x93,0x9c,0x9b,0x53,0x8c,0xc9,0x49,0x5f,0xcf,0x99,0x33,0x5f,0xfe,0xfc,0xd2,
0x63,0xa5,0xde,0x3d,0xda,0x3b,0x32,0xad,0x75,0xef,0x5e,0x40,0x3b,0x7f,0x5e,0x4e,
0xd9,0xd7,0xd8,0x98,0x7c,0xd6,0x9,0xb4,0x58,0x4c,0x5a,0x66,0x8c,0xd1,0x9b,0xff,
0x3e,0x44,0x2e,0x34,0xd3,0x14,0x36,0xb3,0x37,0x2d,0x5f,0x7c,0x21,0xfe,0xeb,0xd3,
0x4f,0xf9,0x57,0xf6,0x75,0xe4,0x88,0xf0,0x7f,0xe5,0xf6,0xa6,0x15,0xb3,0x1a,0x1b,
0x79,0x2,0xda,0x2e,0xd1,0xd2,0xd2,0x52,0x56,0x67,0x67,0xb5,0x56,0x24,0x12,0xa9,
0x8,0xd8,0xff,0xf,0x0,0xe2,0xc8,0xfe,0x44,0x43,0x31,0xe7,0x89,0x0,0x0,0x0,
0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/fantasma2.png
0x0,0x0,0x1a,0xbe,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc5,0x0,0x0,0x0,0xbe,0x8,0x6,0x0,0x0,0x0,0x85,0xdd,0xcb,0xf2,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,
0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,
0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,
0x46,0x0,0x0,0x1a,0x44,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x9d,0x4f,0x68,0x1c,
0x57,0x9a,0xc0,0x5f,0x55,0xbd,0xfa,0x5f,0xfd,0x6f,0x5c,0x3b,0xa,0x49,0xb1,0x12,
0x33,0x32,0xf4,0xe0,0x4e,0xb4,0x33,0xea,0xf5,0xc8,0xa2,0x21,0x11,0x2b,0xd6,0x5a,
0xa3,0x8c,0xbd,0xc3,0x6a,0xd0,0x62,0x61,0xda,0xac,0x10,0x32,0x88,0xb1,0xd7,0x89,
0x57,0x9a,0x85,0x21,0x2,0xf,0x69,0x12,0xb3,0x16,0x5e,0xcf,0xd2,0x4b,0x14,0x68,
0xb0,0x18,0x22,0x23,0x84,0xf,0x7d,0x30,0xe4,0x12,0x82,0xf,0x3a,0x18,0x93,0x43,
0x1f,0x34,0x20,0x8c,0xa1,0xf,0x3e,0xcc,0xcd,0xb0,0x90,0x83,0x58,0x7f,0x7b,0x58,
0x3d,0xd1,0x2e,0x55,0x75,0xbf,0x57,0x5d,0x25,0xb5,0x94,0xef,0x7,0xf,0x6,0xe3,
0x48,0x3d,0xe6,0xbd,0xae,0xfa,0xbe,0xf7,0x7d,0xbf,0x8f,0x10,0x4,0x39,0xe6,0x6c,
0x6f,0x6f,0x43,0xb5,0x5a,0x85,0x72,0xb9,0xbc,0xbf,0xaa,0xd5,0x2a,0x6c,0x6d,0x6d,
0x1,0xfe,0xeb,0x20,0x3f,0x28,0x96,0x96,0x96,0xc0,0x75,0x5d,0x20,0x84,0x0,0x21,
0x4,0x34,0x89,0xec,0xff,0x6f,0xb6,0x6,0x7,0x7,0x61,0x7e,0x7e,0x1e,0x9a,0xcd,
0xe6,0x43,0xfc,0x17,0x43,0x4e,0x2c,0x2b,0x2b,0x2b,0xe0,0x79,0x1e,0x98,0x92,0x4,
0xef,0x6b,0xf4,0xeb,0x5,0x5b,0x1f,0xbb,0x9b,0x36,0x4f,0xfd,0x29,0x6b,0xd3,0x5a,
0xd6,0x56,0xd9,0xba,0x69,0x1b,0xa3,0xc3,0xaa,0xd2,0x30,0x25,0x9,0x5c,0xd7,0x85,
0x95,0x95,0x15,0x7c,0x72,0x20,0x27,0x8f,0xd9,0xd9,0x59,0x50,0x8,0x81,0x4b,0x86,
0xfa,0xf9,0x83,0xac,0x4d,0x1,0x80,0x74,0x5a,0xeb,0x39,0x5b,0x9e,0x32,0xb4,0x45,
0x85,0x10,0x28,0x95,0x4a,0x78,0x30,0x90,0x93,0x75,0x20,0xd2,0x92,0x4,0x77,0xd2,
0x66,0x1f,0xcf,0x61,0xf0,0xaf,0x3b,0x69,0xb3,0xaf,0x5f,0x91,0x77,0xb,0x85,0x2,
0x3c,0x7d,0xfa,0x14,0xf,0x7,0x72,0x32,0xe,0xc4,0x97,0x19,0x4b,0x8f,0x72,0x20,
0xd8,0xda,0xcc,0xd9,0xd2,0x79,0x5d,0x5d,0x73,0x5d,0x17,0xea,0xf5,0x3a,0x1e,0xc,
0xe4,0x78,0x52,0xad,0x56,0x21,0x2d,0x49,0x70,0x2f,0x6d,0x65,0xbb,0x39,0x10,0xad,
0xeb,0xaa,0xa5,0x5d,0xd1,0x29,0x85,0xd5,0xd5,0x55,0x3c,0x18,0xc8,0xf1,0xa2,0x5e,
0xaf,0x83,0x4e,0x29,0xdc,0x72,0x8c,0x62,0x5c,0x7,0x82,0xad,0xeb,0xb6,0x3e,0xaa,
0x53,0xa,0x4f,0x9e,0x3c,0xc1,0x83,0x81,0x1c,0xf,0x9e,0x3e,0x7d,0xa,0xae,0xeb,
0xc2,0x55,0x4b,0xbb,0x12,0xf7,0x81,0x68,0x7d,0x62,0xb8,0xae,0xb,0x8d,0x46,0x3,
0xf,0x6,0xd2,0xfb,0x14,0xa,0x5,0x38,0xaf,0xab,0x6b,0x22,0xf1,0xc2,0x7a,0xce,
0x96,0x45,0x63,0xc,0x57,0x96,0xe0,0xd2,0xa5,0x4b,0x78,0x28,0x90,0xde,0xa6,0x58,
0x2c,0xc2,0x69,0x2a,0xbf,0xda,0xcc,0xd9,0x52,0xa7,0x8d,0xfd,0x20,0x6b,0xd3,0x73,
0x1a,0xdd,0x4a,0x4b,0x12,0x98,0x92,0x4,0x53,0x86,0xb6,0x28,0x72,0x30,0x6e,0xda,
0xc6,0x28,0xa5,0x14,0x33,0x52,0x48,0x6f,0x67,0x9a,0x5c,0x59,0x2,0x9e,0x6f,0xfd,
0xcd,0x9c,0x2d,0x9d,0xa6,0xf2,0xab,0x42,0xa1,0x0,0xe5,0x72,0x19,0xa6,0xa7,0xa7,
0xc1,0x71,0x1c,0xe1,0x57,0x2e,0x7c,0x5a,0x20,0x3d,0x4b,0xa5,0x52,0xe1,0xce,0x34,
0x3d,0xc8,0xda,0xb4,0x5f,0x91,0x77,0x67,0x66,0x66,0xde,0xd8,0xcc,0xcd,0x66,0xf3,
0x61,0xbf,0xe7,0xc1,0x5,0x5d,0x5d,0xe5,0x3d,0x14,0xef,0x6b,0xf4,0xeb,0xbd,0x92,
0x11,0x4,0xe9,0x1d,0xd6,0xd6,0xd6,0x84,0x32,0x4d,0x97,0xc,0xf5,0x73,0xc7,0x71,
0x2,0xeb,0x9a,0xbe,0xf9,0xe6,0x1b,0x20,0x84,0xc0,0xed,0x94,0xd9,0xcf,0xf3,0xb3,
0x16,0x6c,0x7d,0x8c,0x10,0x2,0xdb,0xdb,0xdb,0x78,0x30,0x90,0xde,0xca,0x34,0x2d,
0xd8,0xfa,0x18,0xef,0xb7,0xbb,0xa7,0xc8,0xaf,0x7,0x6,0x6,0x2,0x37,0xf1,0x8b,
0x17,0x2f,0x80,0x10,0xc2,0xfd,0xf3,0xee,0xa6,0xcd,0x53,0x84,0x10,0xa8,0xd5,0x6a,
0x78,0x28,0x90,0xde,0xc0,0xf3,0xbc,0xd0,0x4c,0x53,0x2d,0x6b,0xab,0x41,0x7f,0x7e,
0x41,0x57,0x57,0x3d,0xcf,0xb,0xdc,0xc4,0x8f,0x1f,0x3f,0x6,0x42,0x8,0xfc,0xde,
0x31,0x6,0x79,0xe,0x45,0x2d,0x6b,0xab,0x78,0x28,0x90,0x9e,0xca,0x34,0x9d,0xa1,
0x4a,0x33,0x68,0xb3,0x9e,0xd7,0xd5,0x35,0x42,0x8,0x9c,0xa1,0x4a,0xd3,0x1f,0x78,
0x57,0x33,0x96,0x95,0x96,0x24,0x58,0x5a,0x5a,0x3a,0xb0,0x91,0x27,0x27,0x27,0x43,
0x7f,0x66,0xd0,0x5a,0x74,0x8c,0x21,0x3c,0x14,0x48,0xcf,0x64,0x9a,0xfa,0x15,0x79,
0x37,0x28,0xd3,0x74,0x5e,0x57,0xd7,0xa,0x85,0x2,0xac,0xac,0xac,0x40,0xa1,0x50,
0x80,0x7e,0x45,0xde,0xf5,0x7,0xe0,0xf,0xb2,0x36,0xfd,0xa9,0xae,0x7d,0x7f,0xe9,
0xd2,0x25,0xa8,0xd5,0x6a,0x50,0xad,0x56,0xa1,0x50,0x28,0xc0,0x98,0x46,0xeb,0x3c,
0xe9,0xdc,0xd6,0xb4,0x2c,0x21,0x4,0xbe,0xfa,0xea,0x2b,0x3c,0x14,0xc8,0xd1,0xb1,
0xb4,0xb4,0x14,0x9a,0x69,0xba,0xa0,0xab,0xab,0xae,0xeb,0xbe,0x11,0x44,0xb3,0xa2,
0xc0,0xe5,0xd4,0x9b,0xaf,0x44,0xf7,0xd2,0x56,0xd6,0x95,0xa5,0xfd,0xc6,0xa2,0xb3,
0x2a,0x7d,0x26,0x7a,0x89,0x37,0x65,0x68,0x8b,0x8e,0xe3,0xe0,0x81,0x40,0x8e,0x8e,
0xd5,0xd5,0x55,0xd0,0x29,0x3d,0xb0,0xc1,0x59,0x4d,0x52,0xc6,0x71,0x2,0x2f,0xd3,
0x2a,0x95,0xa,0xe8,0x94,0x1e,0x8,0xa0,0x37,0x73,0xb6,0xf4,0xc7,0x8c,0x95,0xa,
0x8b,0x3f,0x78,0x82,0xf6,0x91,0x91,0x11,0x3c,0x14,0xc8,0xd1,0x65,0x9a,0x32,0x8e,
0x3,0xd7,0x6d,0x7d,0x34,0xa8,0xe7,0xa1,0x53,0xf5,0xea,0xda,0xda,0x1a,0xb8,0xae,
0x2b,0x54,0x2,0xd2,0x6e,0x7d,0x99,0xb1,0x74,0x85,0x10,0xa8,0x54,0x2a,0x78,0x28,
0x90,0xc3,0xa7,0xd9,0x6c,0x3e,0x74,0x5d,0x37,0xf0,0x62,0xed,0x5e,0xda,0xca,0x86,
0x5,0xce,0x41,0x7,0xcb,0xf3,0xbc,0xc0,0x0,0x5c,0x74,0x8d,0xeb,0xea,0x46,0x58,
0x16,0xb,0x41,0xe,0x25,0xd3,0x74,0x56,0xa5,0xcf,0x82,0x5a,0x46,0x83,0x6e,0xa7,
0x79,0x7e,0x5e,0x50,0x0,0xce,0xbb,0x96,0x53,0xc6,0xa0,0x42,0x8,0x3c,0x7a,0xf4,
0x8,0xf,0x5,0x72,0xf8,0xcc,0xcc,0xcc,0xc0,0x69,0x2a,0xbf,0xa,0xfa,0x66,0x3f,
0x43,0x95,0x66,0xb1,0x58,0x84,0xa8,0x3f,0x37,0x4a,0x13,0xd2,0x7a,0xce,0x96,0x5d,
0x59,0x82,0xc9,0xc9,0x49,0x3c,0x10,0x48,0xfc,0xaf,0x44,0xbc,0x99,0xa6,0x6a,0xc6,
0xb2,0x82,0x52,0xaf,0xfe,0x4c,0x53,0x94,0x4c,0xd6,0x8f,0x54,0x55,0xe8,0x60,0x9c,
0x55,0xe9,0xb3,0xa8,0x7,0x11,0x41,0x3a,0xbe,0xc2,0xb4,0xdb,0x5c,0x2c,0xd3,0x14,
0x24,0x1c,0xf8,0x63,0xc6,0x4a,0x11,0x42,0xa0,0x5a,0xad,0x76,0xbd,0x39,0x45,0xda,
0x56,0x59,0xca,0x17,0x9b,0x8b,0x90,0xd8,0x29,0x95,0x4a,0x70,0x9a,0xca,0xaf,0xce,
0x50,0xa5,0xe9,0x79,0xde,0x81,0x34,0xea,0x93,0x27,0x4f,0x40,0xa7,0x34,0x30,0xd3,
0xd4,0xfa,0xa,0x23,0x1a,0x4b,0x4,0xc1,0xea,0x9d,0x3a,0xf5,0x53,0x60,0x1b,0x2a,
0x92,0x18,0xec,0x32,0x8d,0xf9,0x97,0xd8,0x6b,0xd0,0xda,0xda,0x1a,0x10,0x42,0x48,
0xa3,0xd1,0x80,0xb0,0x4c,0x93,0xff,0x8e,0xa1,0xa4,0xd1,0x6f,0x3d,0xcf,0x83,0x81,
0x81,0x81,0xfd,0x35,0x3d,0x3d,0xfd,0x86,0xa,0x93,0xad,0xf9,0xf9,0x79,0xa8,0xd5,
0x6a,0x7,0xd6,0x3f,0x7d,0x38,0x9,0x17,0x74,0x75,0xb5,0x5d,0x36,0x8a,0x27,0xe5,
0x8b,0x20,0xb1,0xbe,0xaa,0x30,0x4b,0xc6,0xca,0xca,0xa,0x14,0x8b,0x45,0xf8,0xb5,
0xa1,0x7e,0xc2,0xf3,0x7e,0x7f,0x2f,0x6d,0x65,0xc7,0x75,0x75,0x23,0x4f,0x95,0x97,
0x7d,0xb2,0xc,0x41,0xcb,0x94,0xa4,0x3,0x5a,0xcc,0xd6,0xf5,0x9e,0xaa,0x3c,0x6f,
0xf7,0x3b,0xda,0xd5,0x4a,0x21,0x48,0x57,0x74,0x32,0x6c,0xdc,0x72,0x8c,0x62,0x5a,
0x92,0x2,0x2f,0xd7,0xd6,0x73,0xb6,0xcc,0xb4,0x96,0xa2,0xe9,0xd3,0xd6,0xff,0xd6,
0xbf,0x3e,0x4b,0x9b,0x7d,0xed,0x6a,0x9d,0xd6,0x73,0xb6,0x7c,0x9a,0xca,0xaf,0xe2,
0x78,0x4d,0x43,0x90,0x37,0xe0,0x35,0x6c,0x4,0x49,0xcb,0x96,0x53,0xc6,0x60,0xeb,
0xb7,0xbd,0x2b,0x4b,0x81,0x4f,0x4,0x4f,0x91,0x5f,0x8f,0xeb,0xea,0x46,0xd0,0x9a,
0x32,0xb4,0xc5,0x9b,0xb6,0x31,0xca,0x16,0x6f,0xb6,0x9,0x33,0x4d,0x48,0x62,0x88,
0x1a,0x36,0xd8,0xfa,0x34,0x65,0xbe,0xf3,0xcb,0x6c,0xe6,0x79,0x50,0x8c,0xc0,0x56,
0x3e,0x9f,0x7f,0x23,0xa6,0x60,0x6b,0xef,0xb6,0x39,0x70,0x99,0x52,0xe7,0x5e,0xee,
0x38,0x52,0xbe,0x8,0x12,0x88,0x88,0x61,0xc3,0x5f,0xde,0xad,0x10,0x2,0xcb,0xcb,
0xcb,0x91,0xbf,0xa9,0x5f,0xbc,0x78,0x1,0x41,0xab,0x52,0xa9,0xc0,0xcf,0xc,0xed,
0x2f,0xff,0xee,0x18,0x3f,0xb,0x6b,0x33,0x75,0x42,0x8a,0xb,0x11,0xa4,0xeb,0x4c,
0x13,0xaf,0x61,0x23,0xcc,0xad,0x94,0xd4,0xcd,0xf1,0xc0,0xc0,0x0,0xbc,0x1b,0x10,
0x64,0x2f,0xa7,0x8c,0x41,0xcc,0x34,0x21,0x89,0x20,0x62,0xd8,0x68,0xf7,0xb4,0x38,
0x4d,0xe5,0x57,0xb3,0xb3,0xb3,0xb1,0x6e,0x50,0x76,0xf,0xe2,0xf,0xfa,0x59,0x71,
0x21,0x56,0xbe,0x22,0xb1,0x23,0x6a,0xd8,0xf0,0x67,0x7c,0x82,0x94,0x34,0x71,0x5,
0xbc,0x61,0x15,0xb7,0xac,0xb8,0x30,0xee,0x3,0x88,0x20,0x91,0xc,0x1b,0xfe,0x4c,
0xd3,0x19,0xaa,0x34,0x5b,0xeb,0x9d,0xd6,0x73,0xb6,0x1c,0x76,0xfb,0x1d,0x25,0xc6,
0x9,0xaa,0xb8,0xed,0xa6,0xb8,0x10,0x41,0xda,0xd2,0xce,0xb0,0xc1,0x93,0x69,0xba,
0x71,0xe3,0x6,0x8c,0x8f,0x8f,0x7,0xbe,0x7a,0xf9,0x6f,0xbf,0x45,0x9,0xab,0xb8,
0x3d,0xaf,0xab,0x6b,0xd8,0x1b,0x81,0x24,0x96,0x69,0x12,0xb1,0x61,0xf8,0x33,0x4d,
0x37,0x6e,0xdc,0xd8,0xdf,0x98,0xf3,0xf3,0xf3,0x90,0x52,0xd5,0x3,0xf5,0x4f,0xec,
0xf6,0x5b,0xb4,0x18,0x70,0x7e,0x7e,0x3e,0xb0,0xe2,0x76,0xc1,0xd6,0xc7,0x5c,0xd7,
0xc5,0x4c,0x13,0x92,0x4c,0xa6,0x29,0xcc,0xb0,0xd1,0xc9,0xf4,0xcd,0xe,0x85,0xbf,
0x94,0x82,0x55,0xca,0xfa,0x8b,0xf5,0xd8,0xed,0x37,0xef,0xfb,0x7f,0x58,0xc5,0xed,
0x2d,0xc7,0x28,0xea,0x94,0x46,0x7e,0xf2,0x20,0x48,0x28,0xed,0xc,0x1b,0x41,0x4f,
0x5,0x57,0xfe,0x7f,0xd3,0x77,0xeb,0xdf,0xf,0x93,0x0,0x3c,0x79,0xf2,0x4,0x5c,
0xd7,0x85,0x31,0x8d,0xd6,0x5b,0xf,0x12,0xb3,0x71,0x74,0x1a,0xd2,0x18,0x56,0x71,
0x8b,0x99,0x26,0x24,0x31,0xda,0x19,0x36,0x82,0x8a,0xeb,0x58,0x2d,0xd1,0xf2,0xf2,
0x32,0xfc,0x54,0xd7,0xbe,0x67,0xff,0xdd,0xb8,0xae,0x6e,0x84,0xc9,0x8a,0x1b,0x8d,
0x6,0xb0,0x4b,0xc0,0xd6,0xe9,0xa6,0xac,0x36,0x29,0x6c,0x48,0x23,0xab,0xb8,0xf5,
0x3f,0x69,0x58,0xe9,0x39,0x66,0x9a,0x90,0x44,0x32,0x4d,0x8e,0xe3,0x70,0x65,0x9a,
0x82,0x36,0x62,0xb9,0x5c,0xde,0x2f,0xb9,0xe0,0x91,0x15,0x4f,0x4e,0x4e,0x1e,0x78,
0x22,0xb5,0x1b,0xd2,0x58,0x2c,0x16,0x61,0x4c,0xa3,0xf5,0x20,0xd,0x3f,0x8e,0x1,
0x46,0x62,0x87,0xe5,0xfb,0x79,0x32,0x4d,0x61,0x1b,0x71,0xcf,0xac,0x7,0xb7,0x53,
0x66,0xff,0x17,0x19,0xcb,0x22,0x1c,0xdd,0x74,0xb3,0xb3,0xb3,0x60,0x4a,0x52,0x68,
0x0,0x5e,0xa9,0x54,0x60,0x7b,0x7b,0x1b,0x58,0xea,0x35,0x28,0xd3,0x54,0x28,0x14,
0xf0,0x40,0x20,0xc9,0x64,0x9a,0x82,0xf2,0xfd,0x61,0xc5,0x75,0x41,0x1b,0x91,0x75,
0xbd,0x5d,0xb5,0xb4,0x2b,0x9b,0x39,0x5b,0x4a,0x4b,0x12,0x94,0xcb,0xe5,0x8e,0x1b,
0xb6,0x5a,0xad,0x82,0x4e,0xe9,0x81,0xaa,0xdb,0xeb,0xb6,0x3e,0xca,0x2a,0x6a,0x83,
0xb2,0x60,0x6c,0x56,0x1d,0x66,0x9a,0x90,0xd8,0x69,0x67,0xd8,0x10,0xdd,0x88,0x9e,
0xe7,0xc1,0xfb,0x1a,0xfd,0x1a,0x0,0x48,0x9e,0x2a,0x2f,0xf3,0xf9,0x3c,0xd7,0x86,
0xad,0xd7,0xeb,0x81,0x72,0xb3,0x6a,0xc6,0xb2,0x16,0x1d,0x63,0xc8,0x5f,0x80,0xc8,
0xda,0x49,0x71,0xe,0x36,0x92,0x58,0xa6,0x29,0xc8,0xb0,0x11,0xd4,0x38,0xd4,0x69,
0x23,0x4e,0x4c,0x4c,0x80,0x2b,0x4b,0x10,0xc5,0xcd,0xfa,0xf4,0xe9,0x53,0xe0,0x29,
0x4b,0xbf,0x97,0xb6,0xb2,0xa6,0x24,0xc5,0x22,0x3a,0x40,0x90,0xc0,0x4c,0x53,0x90,
0x61,0x23,0xcc,0xdc,0xd7,0x69,0x23,0xee,0xa5,0x44,0xa1,0x96,0xb5,0x55,0xa6,0xb6,
0xdf,0x9b,0x13,0x21,0xf4,0x2a,0x57,0xd2,0xe8,0xb7,0x61,0x29,0x60,0x91,0x3b,0xd,
0x4,0xe1,0xa6,0x93,0x61,0x23,0xea,0x46,0x64,0x83,0x52,0x16,0x1d,0x63,0x88,0xd,
0x41,0x11,0xbd,0x3b,0xd8,0x9b,0xf,0x1,0xfe,0x76,0x55,0x96,0xb2,0xc5,0x4c,0x13,
0x12,0x3b,0xbc,0x86,0x8d,0x28,0x1b,0xb1,0xd9,0x6c,0x3e,0xa4,0x2d,0xb7,0xd6,0xae,
0x2c,0xc1,0xf4,0xf4,0xb4,0xd0,0x26,0x2e,0x95,0x4a,0x81,0x81,0xf5,0x98,0x46,0xeb,
0x58,0xe4,0x87,0x24,0x96,0x69,0xf2,0xe7,0xfb,0xc3,0xd6,0x98,0x46,0xeb,0xa2,0x29,
0xcf,0x7c,0x3e,0xf,0x79,0xaa,0xbc,0x64,0x13,0x47,0x45,0x8a,0xf3,0xc2,0x1a,0x99,
0xa6,0xc,0x6d,0x11,0xc5,0x65,0x48,0x22,0x4c,0x4e,0x4e,0x72,0x67,0x9a,0x6e,0xa7,
0xcc,0x7e,0x12,0xc1,0xdc,0x57,0x2e,0x97,0x21,0x2d,0x49,0xb0,0x99,0xb3,0xa5,0xab,
0x96,0x76,0x85,0x10,0x2,0x7b,0xe9,0xda,0xb6,0x84,0x29,0x73,0x50,0x5c,0x86,0x24,
0x6,0xab,0x2c,0x6d,0x2d,0xad,0xe0,0x89,0x25,0x16,0x16,0x16,0x84,0x36,0xe3,0xde,
0x21,0x82,0x2f,0x32,0x96,0xc5,0xe,0x56,0xa7,0x91,0x59,0x61,0x8d,0x4c,0xf7,0xd2,
0x56,0x36,0xa5,0xaa,0xd8,0x4e,0x8a,0x24,0x93,0x69,0x4a,0x9,0xca,0x87,0xd9,0x3d,
0x81,0x68,0x7,0xdb,0xd6,0xd6,0xd6,0xfe,0xa8,0xde,0xf5,0x9c,0x2d,0x9b,0x1d,0xe4,
0x63,0x61,0xca,0x1c,0x26,0x2e,0x9b,0x9f,0x9f,0xc7,0x3,0x81,0xc4,0xb,0x13,0x97,
0xf1,0x64,0x9a,0x82,0xc6,0xf3,0xb2,0x74,0xac,0x88,0x74,0xc0,0x75,0x5d,0x18,0xd7,
0xd5,0xd,0x9e,0xb1,0x59,0x41,0x8d,0x4c,0x2c,0xc0,0x47,0x45,0x3e,0x12,0x3b,0xec,
0x5b,0xb8,0x93,0x70,0xb8,0xd3,0x78,0x5e,0x26,0x1d,0x28,0x16,0x8b,0x5c,0xc1,0xee,
0xc8,0xc8,0x8,0x78,0x8a,0xfc,0xba,0x53,0xc5,0x6c,0x98,0x32,0x7,0xc5,0x65,0x48,
0x62,0xb0,0xd1,0xb9,0x22,0x35,0x4d,0xcc,0x1,0xeb,0xca,0x6f,0x6,0xbd,0xeb,0x39,
0x5b,0x1e,0xd3,0x68,0xdd,0x75,0xdd,0x8e,0x41,0xef,0xfc,0xfc,0x7c,0xc7,0x8a,0xd9,
0xb0,0x46,0xa6,0xa0,0xa9,0xa8,0x8,0x12,0xb,0x4c,0x91,0xcf,0x93,0x69,0x6a,0x37,
0x9e,0xd7,0x1f,0xfc,0x4e,0x19,0xda,0x62,0x27,0x97,0x52,0xa7,0x8a,0xd9,0x30,0x65,
0x4e,0xbb,0xa9,0xa8,0x8,0xd2,0x15,0x22,0xe2,0xb2,0x28,0xe3,0x79,0x59,0x9a,0x34,
0x2c,0x8,0x6e,0xad,0x98,0x65,0x87,0xae,0xf8,0x6e,0x1,0xb6,0xb6,0xb6,0xa0,0x52,
0xa9,0x4,0x4e,0x1c,0x42,0x45,0x3e,0x92,0x18,0x22,0xd3,0x7c,0xba,0x19,0xcf,0x7b,
0x27,0x6d,0xf6,0xb5,0xb,0xc0,0x5b,0x2b,0x66,0x1,0x80,0xcc,0x59,0xfa,0x45,0xb2,
0xe7,0x7e,0xf5,0x7f,0x36,0x54,0xe4,0x23,0x89,0x67,0x9a,0x78,0xc4,0x65,0x22,0x1b,
0x31,0x6c,0x3c,0x2f,0x6b,0x49,0x2d,0x16,0x8b,0x7,0x62,0x80,0xd6,0x8a,0x59,0xb6,
0x16,0x1d,0x63,0xc8,0x7f,0x20,0x50,0x91,0x8f,0x24,0x9e,0x69,0xea,0xa4,0xc8,0xef,
0x66,0x23,0x6,0x8d,0xe7,0x5d,0xcf,0xd9,0xf2,0x59,0x95,0x3e,0xf3,0xf7,0x59,0x94,
0xcb,0x65,0x50,0x8,0xe9,0x78,0x59,0x88,0xe2,0x32,0x24,0x31,0x44,0xc4,0x65,0xdd,
0x6c,0x44,0x16,0x80,0xfb,0xe5,0x6,0x17,0x74,0x75,0x35,0xe3,0x38,0x50,0xa9,0x54,
0xe0,0xd1,0xa3,0x47,0x30,0xdc,0xf7,0xe3,0xff,0xb9,0x62,0xb6,0x3f,0xa0,0xa8,0xc8,
0x47,0x12,0x43,0x44,0x91,0x1f,0xc7,0x46,0x6c,0x17,0x80,0x2b,0x7b,0x73,0x23,0x16,
0x1d,0x63,0xa8,0xdd,0xe7,0x40,0x71,0x19,0xd2,0x13,0x99,0xa6,0x38,0x37,0xe2,0xea,
0xea,0x2a,0x38,0x8e,0x73,0xe0,0xe9,0x74,0x2f,0x6d,0x65,0x3b,0x1d,0x8,0xa6,0xc8,
0x47,0x71,0x19,0x12,0x3b,0x22,0x8a,0xfc,0x24,0x36,0x22,0x8b,0x63,0x78,0x87,0x3d,
0xa2,0xb8,0xc,0x49,0x14,0x56,0x59,0xca,0x23,0x2e,0x63,0x35,0x48,0x1f,0x7c,0xf0,
0x41,0xec,0x1b,0xb1,0xd9,0x6c,0x3e,0xf4,0x3c,0x8f,0xbb,0x69,0x9,0x15,0xf9,0x48,
0xa2,0x99,0x26,0x11,0x45,0xfe,0x87,0x86,0x7a,0xbf,0xcf,0x75,0x61,0x67,0x67,0x27,
0xf6,0xd,0x59,0x2e,0x97,0x41,0x93,0x8,0xfc,0xa9,0x4d,0xa6,0x89,0xf9,0xa2,0x30,
0xd3,0x84,0x1c,0x79,0xa6,0xc9,0x7f,0x4f,0x40,0x29,0xd,0x1c,0xb6,0x28,0x3a,0xc8,
0xbd,0x56,0xab,0xc1,0xe3,0xc7,0x8f,0xa1,0x56,0xab,0x41,0xfe,0xc7,0x7f,0xf5,0xfa,
0x9a,0xa5,0x4f,0x74,0xa,0xf0,0x51,0x91,0x8f,0x24,0x96,0x69,0x8a,0xa2,0xc8,0x67,
0xeb,0xb2,0xa9,0xcd,0xb1,0xf1,0xbb,0xed,0x6,0xb9,0x2b,0x6d,0x86,0xb8,0xfb,0xd7,
0xed,0x94,0xd9,0xdf,0x8d,0x2f,0xa,0x41,0x22,0x33,0x33,0x33,0xc3,0xad,0xc8,0xef,
0x76,0x3d,0xc8,0xda,0x34,0x6c,0x90,0xfb,0xa2,0x63,0xc,0xb1,0x39,0xd6,0x9d,0xe,
0x4,0x2a,0xf2,0x91,0xc4,0x10,0x51,0xe4,0x7,0x9,0x8,0xc2,0x9e,0x8,0x22,0x83,
0xdc,0x79,0xf,0x82,0xa8,0x2f,0xa,0x41,0x84,0x11,0x11,0x97,0x5,0xdd,0x4d,0xf4,
0x7b,0x5e,0x2c,0x83,0xdc,0x5b,0xd7,0x65,0x53,0x9b,0x13,0x35,0x93,0x23,0x48,0x6c,
0x99,0xa6,0x8c,0xe3,0x70,0xb7,0x93,0xfa,0xe3,0x7,0x4a,0xa9,0x70,0xc6,0x29,0x6c,
0x90,0xfb,0xd6,0xd6,0xd6,0x7e,0x90,0xfd,0xe1,0xd9,0xbf,0xdd,0xd,0x3b,0x18,0xa8,
0xc8,0x47,0x12,0x23,0x6c,0x24,0x2e,0xef,0x9a,0xb3,0xf4,0x8b,0x8e,0xe3,0x24,0xe2,
0x4b,0x62,0x26,0xbf,0xdf,0x3b,0x7,0xef,0x49,0x50,0x91,0x8f,0x24,0x9a,0x69,0xe2,
0x55,0xe4,0x87,0xad,0x29,0x43,0x5b,0xec,0x8f,0x61,0x3c,0x6f,0x50,0xd0,0x9f,0x96,
0xc2,0xc5,0x65,0x98,0x69,0x42,0x62,0x47,0x44,0x5c,0xc6,0xdb,0x6e,0x1a,0x57,0x6,
0xa8,0x5a,0xad,0x6,0x36,0xb,0xa1,0x22,0x1f,0x49,0x8c,0xb0,0x91,0xb8,0xbc,0x99,
0xa6,0x9c,0x7c,0x70,0x3a,0xd0,0x82,0xad,0x8f,0xb1,0xe9,0x40,0xdd,0x7c,0xb6,0x30,
0x65,0xe,0x8a,0xcb,0x90,0x9e,0xcb,0x34,0x6d,0xe6,0x6c,0x69,0xce,0xd2,0x2f,0xe,
0x15,0xa,0x30,0x3d,0x3d,0xd,0x3a,0xa5,0x7,0x62,0x91,0xe5,0x94,0x31,0xd8,0x8d,
0xca,0x3e,0xac,0x91,0x89,0xd9,0x4,0x51,0x5c,0x86,0xc4,0x8e,0x88,0x22,0xbf,0x53,
0xa6,0x89,0x8d,0xe7,0xf5,0xcf,0x8a,0x63,0xe3,0x79,0xa3,0xd4,0x20,0x5,0xd,0x55,
0x41,0x71,0x19,0x92,0x18,0x61,0x23,0x71,0xdb,0xdd,0x38,0xfb,0xe3,0x6,0xff,0xe4,
0xa0,0x4e,0xe3,0x79,0x3d,0x81,0x0,0x9c,0x29,0x73,0xfc,0x8d,0x4c,0xa8,0xc8,0x47,
0x12,0xcd,0x34,0xf1,0x8a,0xcb,0x58,0x87,0x5b,0xab,0x2d,0xa3,0xdd,0xe4,0x20,0xd1,
0xf1,0xbc,0x7e,0x50,0x91,0x8f,0xf4,0x74,0xa6,0xe9,0xba,0xad,0x8f,0xf6,0xb9,0x2e,
0x94,0xcb,0x65,0x18,0x2a,0x14,0x60,0xc1,0xd6,0xc7,0x36,0x73,0xb6,0xd4,0x69,0x72,
0xd0,0xfc,0xfc,0x3c,0xa4,0x54,0x35,0x74,0x3c,0x6f,0x58,0x29,0x46,0x3b,0x71,0x19,
0x2a,0xf2,0x91,0x44,0x60,0x22,0x0,0x1e,0x45,0xbe,0x7f,0x23,0xee,0xec,0xec,0x80,
0xc8,0xe4,0x20,0x16,0xc4,0xfb,0x5f,0xd1,0x6e,0x39,0x46,0x31,0x28,0x0,0xf,0x53,
0xe4,0xa3,0xb8,0xc,0x49,0x8c,0xb0,0x7c,0xbf,0x88,0xb8,0xac,0x75,0x72,0xd0,0xb0,
0xaa,0x34,0x3a,0xf5,0x2c,0xb0,0x0,0x7c,0x4c,0xa3,0xf5,0xa0,0x0,0xbc,0x54,0x2a,
0xc1,0xf6,0xf6,0x36,0x7c,0xf3,0xcd,0x37,0xd0,0xe7,0xba,0x7,0x9e,0x2c,0xa8,0xc8,
0x47,0x12,0x43,0x44,0x91,0xdf,0x6e,0x23,0x46,0x99,0x1c,0xc4,0xc6,0xf3,0xfa,0x5f,
0xd9,0x58,0x0,0x4e,0x8,0x1,0x85,0x90,0x3,0x9f,0xd,0xc5,0x65,0x48,0x62,0xc4,
0x29,0x2e,0x8b,0x32,0x39,0xa8,0x35,0xa3,0x14,0x64,0x17,0xbf,0x6a,0x69,0x57,0x82,
0x7a,0xbf,0x51,0x91,0x8f,0x24,0x6,0xcf,0x10,0x75,0xde,0x8d,0xd8,0x3a,0x39,0xe8,
0x41,0xd6,0xa6,0xa,0x21,0x42,0x4e,0x56,0x16,0xd3,0x74,0x7a,0x85,0x43,0x45,0x3e,
0x92,0x18,0x61,0xf9,0xfe,0x6e,0x36,0xa2,0xc8,0xe4,0xa0,0x20,0xee,0xdf,0xbf,0xdf,
0xf6,0x60,0xa0,0x22,0x1f,0x49,0x34,0xd3,0x14,0x87,0x22,0xdf,0xf,0xef,0xe4,0xa0,
0x76,0x78,0x9e,0xb7,0x7f,0xb0,0x82,0x7c,0x51,0x98,0x69,0x42,0x62,0x27,0x8a,0xb8,
0x8c,0x77,0x23,0xf2,0x4c,0xe,0xea,0x94,0x91,0xa2,0x94,0xc2,0x4d,0xdb,0x18,0xd,
0x6a,0x27,0x45,0x45,0x3e,0x12,0x3b,0x61,0xf9,0xfe,0x76,0x7d,0xcd,0x22,0x1b,0xb1,
0xd3,0xe4,0xa0,0x76,0xb0,0x46,0xa6,0xa0,0x9a,0xa6,0x7e,0x45,0xde,0xc5,0x4c,0x13,
0x72,0xa4,0x99,0x26,0xde,0xbb,0x6,0x3f,0xad,0x93,0x83,0x36,0x73,0xb6,0x94,0x96,
0x24,0x28,0x97,0xcb,0x5c,0x3f,0x23,0xac,0x91,0x9,0x15,0xf9,0x48,0x62,0x88,0x8a,
0xcb,0x58,0x70,0x1d,0xe5,0xf7,0xb0,0x5a,0xa8,0x3c,0x55,0x5e,0xe6,0xf3,0xf9,0x8e,
0x3f,0x63,0x66,0x66,0x26,0xb0,0xbc,0x4,0xc5,0x65,0x48,0x62,0x44,0x15,0x97,0xb1,
0x1e,0x67,0x91,0x6c,0x4f,0xeb,0xe4,0xa0,0x29,0x43,0x5b,0xf4,0x57,0xcc,0xfa,0x61,
0xca,0x1c,0x7f,0x23,0x13,0x2a,0xf2,0x91,0x44,0x33,0x4d,0xbc,0xe2,0xb2,0xcd,0x9c,
0x2d,0xf9,0x53,0xb4,0xac,0x82,0x95,0xb7,0xe0,0x6e,0xaf,0x10,0x10,0x98,0xac,0x8c,
0x84,0x54,0xcc,0x12,0x12,0xde,0xc8,0x84,0x8a,0x7c,0xa4,0x27,0x32,0x4d,0xf,0xb2,
0x36,0xed,0x57,0xe4,0x5d,0x57,0x8e,0x36,0x9e,0x97,0xb1,0x77,0x0,0x60,0xd1,0x31,
0x86,0xda,0x55,0xcc,0x86,0x35,0x32,0xa1,0x22,0x1f,0x49,0xc,0xf6,0x2d,0xcc,0xa3,
0xc8,0x7f,0x90,0xb5,0xe9,0x69,0x2a,0xbf,0x1a,0x1f,0x1f,0xdf,0x6f,0x21,0xf5,0x7,
0xe4,0xd7,0x6d,0x7d,0x34,0xa5,0xaa,0x1d,0xb,0xf0,0x9a,0xcd,0xe6,0xc3,0x4e,0x15,
0xb3,0xac,0x91,0xc9,0xdf,0xa6,0x8a,0xe2,0x32,0x24,0xd1,0x4c,0x93,0xe3,0x38,0x5c,
0x8a,0xfc,0xa0,0x8d,0x58,0xaf,0xd7,0xf7,0xc7,0xf3,0xb6,0xbe,0x4e,0xb1,0x6f,0xf1,
0x4e,0x2d,0x9f,0xad,0x15,0xb3,0xef,0x6b,0xf4,0x6b,0x7f,0xb0,0x1c,0x94,0x69,0x42,
0x45,0x3e,0x92,0x18,0x61,0xf9,0x7e,0xd1,0x59,0xd,0x6c,0x3c,0xaf,0x3f,0x2b,0xc4,
0x9e,0x2a,0xc5,0x62,0x31,0xb4,0xd3,0xad,0xb5,0x62,0xf6,0xd3,0x94,0xf9,0xce,0xdb,
0x8a,0xc,0xf7,0xef,0xdf,0x87,0xed,0xed,0x6d,0x18,0x1f,0x1f,0x3f,0xd0,0xaf,0x8d,
0xe2,0x32,0xa4,0x67,0x32,0x4d,0x3c,0x1b,0xb1,0x58,0x2c,0x6,0x56,0xb0,0x8e,0x69,
0xb4,0x1e,0x16,0x80,0xb7,0x56,0xcc,0xb2,0xbf,0x9f,0x96,0x24,0x20,0x84,0x4,0x7e,
0x36,0x54,0xe4,0x23,0x89,0x11,0x96,0xef,0xef,0x76,0x56,0x43,0xbb,0xf1,0xbc,0x41,
0x1,0x78,0x6b,0xc5,0x2c,0xfb,0xbb,0x9f,0xa6,0xcc,0x77,0xa6,0xc,0x6d,0xd1,0xff,
0xd9,0x98,0x22,0x1f,0xc5,0x65,0x48,0xec,0x84,0xe5,0xfb,0xdb,0xcd,0x6a,0x10,0xd9,
0x88,0xed,0xc6,0xf3,0xea,0x94,0xbe,0x51,0xe,0xc2,0x6e,0xb6,0x83,0xa,0xfb,0x50,
0x91,0x8f,0x1c,0x6a,0xa6,0x89,0x47,0x5c,0xd6,0xcd,0x46,0x5c,0x5b,0x5b,0x83,0xa0,
0x78,0xe5,0x4e,0xda,0xec,0x4b,0x4b,0x12,0xcc,0xcc,0xcc,0xc0,0xf6,0xf6,0x36,0x7c,
0xfa,0x87,0x3f,0x80,0xa7,0xc8,0xaf,0xdb,0xa5,0x82,0x31,0xd3,0x84,0x24,0x9a,0x69,
0xe2,0x55,0xe4,0xc7,0xb1,0x11,0x59,0x0,0x7e,0x86,0x2a,0xcd,0xd6,0x57,0xa1,0x6a,
0xc6,0xb2,0x58,0xb,0x29,0x2b,0x1f,0xef,0xd4,0xc5,0x87,0x8a,0x7c,0x24,0x76,0xc2,
0xf2,0xfd,0x87,0xb1,0x11,0x8b,0xc5,0x22,0xf4,0x2b,0xf2,0xae,0x3f,0x0,0xbf,0x69,
0x1b,0xa3,0x9d,0x5e,0xe1,0xc6,0x34,0x5a,0xc7,0x4c,0x13,0x92,0x58,0xa6,0x89,0x57,
0x91,0x9f,0xc4,0x46,0x8c,0x32,0xfb,0xe,0x15,0xf9,0x48,0x62,0x88,0x88,0xcb,0x44,
0x45,0x2,0x22,0xb0,0x2e,0x3e,0x9e,0x0,0x1f,0xc5,0x65,0x48,0x62,0x30,0x45,0x3e,
0x8f,0xb8,0xac,0x55,0x4d,0xb3,0xbc,0xbc,0x1c,0xfb,0x66,0x64,0x99,0xa6,0x4e,0xaf,
0x70,0xa8,0xc8,0x47,0x12,0xcd,0x34,0xa5,0x54,0x55,0x78,0x3a,0xe9,0x7a,0xce,0x96,
0x8b,0xa6,0xde,0x88,0x63,0x90,0x7b,0xeb,0xfc,0xb9,0x7f,0xfb,0xf8,0x63,0xc8,0x53,
0xe5,0x65,0xbb,0xcf,0x83,0x8a,0x7c,0x24,0x31,0xba,0x51,0xe4,0xb3,0xb,0xb4,0xb8,
0x6,0xb9,0xb3,0xc5,0x9b,0x69,0x42,0x45,0x3e,0x12,0x3b,0xac,0x9d,0x94,0x57,0x91,
0x9f,0xe4,0x20,0xf7,0xd6,0xd5,0x29,0x96,0x40,0x71,0x19,0x92,0x18,0x85,0x42,0x81,
0x5b,0x91,0xef,0x8f,0x27,0xfc,0x4f,0x87,0x28,0x83,0xdc,0x6f,0xda,0xc6,0xe8,0xdd,
0xb4,0x79,0xaa,0x96,0xb5,0x55,0xde,0x6c,0x13,0x6b,0x69,0x45,0x45,0x3e,0x12,0x3b,
0x4c,0x5c,0x26,0x3a,0x8c,0x71,0x3d,0x67,0xcb,0xff,0xe8,0x98,0x9f,0x8f,0x8c,0x8c,
0xc4,0x32,0xc8,0x9d,0xad,0xa0,0x69,0xa4,0x98,0x69,0x42,0xe,0xd,0x11,0x45,0xbe,
0xff,0x40,0xa4,0x25,0x9,0x26,0x26,0x26,0xb8,0x36,0x25,0xcf,0x20,0x77,0xb6,0x16,
0x16,0x16,0x60,0x4c,0xa3,0xf5,0xb0,0x57,0x27,0x54,0xe4,0x23,0x89,0x51,0xad,0x56,
0xb9,0xdb,0x49,0xc3,0xe,0x45,0xbb,0x39,0x11,0xdd,0xe0,0x79,0x5e,0x60,0x90,0xcd,
0xd2,0xbf,0x28,0x2e,0x43,0x62,0x87,0x29,0xf2,0x79,0xc4,0x65,0xed,0xee,0x6,0x7e,
0xa4,0xaa,0xb1,0xf7,0x3b,0x37,0x9b,0xcd,0x87,0x8e,0xe3,0x1c,0x8,0xfa,0x51,0x91,
0x8f,0x24,0x9e,0x69,0xe2,0x15,0x97,0xf1,0x54,0xc5,0xc6,0x59,0x8d,0x1a,0xd6,0xc8,
0x84,0x99,0x26,0x24,0xd1,0x4c,0x93,0x88,0xb8,0x8c,0xe7,0x60,0xf4,0x2b,0xf2,0x6e,
0x1c,0x1b,0x36,0xac,0xde,0x89,0xa9,0x70,0x50,0x91,0x8f,0xc4,0xe,0x1b,0xad,0xcb,
0xa3,0xc8,0x17,0x8d,0x31,0xce,0x50,0xa5,0x29,0x32,0x9e,0xd7,0xf,0x6b,0x64,0xf2,
0xc7,0x38,0xb,0xb6,0x3e,0xe6,0xa0,0x22,0x1f,0x49,0x2a,0xd3,0xc4,0xab,0xc8,0x8f,
0xba,0xd8,0x37,0xba,0xa8,0x68,0x2c,0x4c,0x99,0x83,0x8a,0x7c,0x24,0x31,0x44,0xc4,
0x65,0xdd,0xae,0x5,0x5b,0x1f,0xd3,0x29,0xe5,0xe,0xc0,0xc3,0x1a,0x99,0x50,0x5c,
0x86,0x24,0x86,0x88,0x22,0x3f,0xae,0x15,0x36,0x9e,0x37,0x28,0xd3,0x14,0x26,0x2e,
0xeb,0x57,0xe4,0x5d,0x6c,0x27,0x45,0x12,0xcb,0x34,0xf1,0x88,0xcb,0x44,0xd6,0x9c,
0xa5,0x5f,0x64,0xa5,0x1b,0xbf,0x77,0x82,0x2d,0x81,0xad,0xe3,0x79,0xdb,0xc5,0x38,
0xa8,0xc8,0x47,0xe,0x15,0x51,0x45,0x3e,0x6f,0xcd,0x91,0x42,0x8,0xf4,0xc9,0x32,
0xb8,0xb2,0x74,0x40,0x37,0x13,0x74,0xb7,0x10,0x64,0x17,0x47,0x45,0x3e,0x72,0x24,
0x99,0xa6,0x28,0x8a,0xfc,0x76,0xeb,0xcb,0x8c,0xa5,0x2b,0x84,0xc0,0x65,0x53,0x9b,
0x6b,0x6d,0x45,0x35,0xdb,0xd4,0x2b,0x6d,0xe6,0x6c,0x89,0x5,0xe0,0x8f,0x1e,0x3d,
0x82,0xd6,0xa0,0x1f,0x15,0xf9,0xc8,0xa1,0x66,0x9a,0x44,0xfb,0x9b,0x79,0xd6,0x4d,
0xdb,0x18,0x25,0x84,0x40,0xeb,0x2b,0x13,0xfb,0xb3,0x5a,0xd6,0x56,0x3b,0x9,0xd2,
0x14,0x42,0x20,0x9b,0xcd,0x6,0x7e,0x36,0xe6,0x8b,0x42,0x45,0x3e,0x12,0x3b,0x61,
0xf9,0xfe,0x38,0xd6,0xdd,0xb4,0x79,0x8a,0x10,0x2,0x73,0x96,0x7e,0x91,0xfd,0xd9,
0x25,0x43,0xfd,0xdc,0x94,0xf8,0x52,0xbd,0xcb,0x29,0x63,0xf0,0x82,0xae,0xae,0xfa,
0x9f,0x10,0x98,0x69,0x42,0x12,0x43,0x44,0x91,0xdf,0xcd,0x5d,0x4,0x8b,0x29,0x58,
0x47,0x5d,0x37,0xcd,0x49,0x28,0x2e,0x3b,0x6,0xec,0xec,0xec,0x40,0xb5,0x5a,0x85,
0xe9,0xe9,0xe9,0xc0,0xfe,0x80,0x91,0x91,0x11,0x58,0x5a,0x5a,0xa,0x9d,0xa0,0x73,
0x94,0x99,0x26,0x5e,0x71,0x59,0x1c,0xd9,0x27,0x4f,0x91,0x5f,0xe7,0xa9,0xf2,0xd2,
0x3f,0x82,0x57,0x64,0x31,0x33,0x39,0x8a,0xcb,0x7a,0x94,0x47,0x8f,0x1e,0xc1,0xc4,
0xc4,0x4,0x50,0x4a,0x81,0x10,0x2,0xae,0x2c,0x41,0x9e,0x2a,0x2f,0x5b,0x3b,0xc7,
0xde,0xd7,0xe8,0xd7,0x7d,0xb2,0xc,0xe6,0x9e,0xe5,0xda,0xf3,0x3c,0x58,0x5a,0x5a,
0x3a,0xf2,0x9a,0x9c,0xb0,0x7c,0xbf,0xc8,0xb7,0xf5,0x4d,0xdb,0x18,0x4d,0xf2,0xb6,
0x3b,0xaa,0x99,0x1c,0x39,0x2,0x1a,0x8d,0x6,0x1b,0x14,0x2,0x6f,0x2b,0x32,0x5c,
0xb5,0xb4,0x2b,0x5f,0x74,0xe8,0xd,0x5e,0xcf,0xd9,0xf2,0xed,0x94,0xd9,0x7f,0x4e,
0xa3,0x5b,0xa6,0x24,0x81,0xe3,0x38,0x47,0xfa,0x3e,0x2c,0x22,0x2e,0x6b,0x17,0x40,
0x77,0xf3,0xad,0x2f,0xba,0x50,0x91,0xdf,0xa3,0x30,0xa9,0xef,0x69,0x2a,0xbf,0xa,
0xbb,0x84,0xe2,0x69,0xc8,0x67,0xc1,0x66,0xa9,0x54,0x3a,0xf4,0xa7,0x86,0x88,0x22,
0x3f,0xe8,0xf5,0xe5,0x9c,0x46,0xb7,0x3e,0x1a,0xfe,0x79,0xfd,0xbb,0xef,0xbe,0x83,
0x8f,0x86,0x7f,0x5e,0x3f,0xa7,0xd1,0xad,0xb8,0xb,0x6,0xc3,0xda,0x49,0x51,0x91,
0xdf,0x63,0x54,0xab,0x55,0xd0,0x5b,0xe6,0xa7,0x75,0xbb,0x98,0x4,0xf8,0x30,0xbf,
0xfd,0x98,0xb8,0x8c,0xc7,0xa0,0xd7,0xae,0x83,0xee,0x5f,0xfe,0x79,0x1a,0x0,0x0,
0x3e,0xba,0x36,0xcf,0xd5,0x23,0xdd,0x6d,0xa9,0xb9,0x89,0x8a,0xfc,0xde,0x3c,0x10,
0x69,0x49,0xe2,0xd2,0xcb,0x8b,0x7e,0xf3,0x46,0xad,0x14,0x8d,0x9a,0x69,0xea,0xf6,
0xff,0xc3,0x7a,0xce,0x96,0x7f,0x97,0x75,0x86,0x6,0x6,0x6,0xe0,0x77,0x59,0x67,
0x28,0xc9,0x3,0xc1,0xc4,0x65,0x98,0x69,0xea,0x31,0xe2,0x68,0xc5,0x8c,0xbb,0x52,
0x54,0x94,0x6e,0xc5,0x65,0x41,0xdf,0xde,0xe7,0x34,0xba,0x95,0x64,0x15,0x2d,0x2a,
0xf2,0x7b,0x18,0xcf,0xf3,0x3a,0x4e,0xc1,0x89,0x63,0x2d,0xa7,0x8c,0xc1,0x24,0xbe,
0x15,0x45,0x14,0xf9,0xbd,0xb4,0xc6,0x34,0x5a,0xc7,0x22,0xbf,0x1e,0xe4,0xc6,0x8d,
0x1b,0x60,0x46,0x50,0xba,0xf4,0x42,0xab,0x66,0x6b,0xa6,0x29,0x8a,0xb8,0xac,0xdb,
0x78,0x69,0x5c,0x57,0x37,0xa2,0xc6,0x2e,0x4c,0x91,0x8f,0xe2,0xb2,0x1e,0x83,0x59,
0x22,0x2e,0x19,0xea,0xe7,0x87,0xb9,0xa1,0xe2,0x68,0xd5,0x64,0x88,0x28,0xf2,0xef,
0xa5,0xad,0xec,0xb8,0xae,0x6e,0x74,0x1b,0x73,0x6c,0xe6,0x6c,0xe9,0x96,0x63,0x14,
0xdf,0x7a,0xeb,0x2d,0xb8,0xe5,0x18,0x45,0xd1,0x98,0x3,0xc5,0x65,0x3d,0x4c,0xa5,
0x52,0x1,0x85,0x10,0xf8,0x32,0x63,0xe9,0x47,0xf1,0xfa,0xd0,0x6d,0x0,0x2e,0xa2,
0xc8,0x67,0xb5,0x44,0x6f,0xbd,0xf5,0x16,0x28,0x84,0x44,0x8e,0x3d,0x36,0x73,0xb6,
0xf4,0xb6,0x22,0x43,0xf9,0xfc,0xdf,0xef,0x7e,0xff,0xfd,0xf7,0xf0,0xf1,0xa5,0x5f,
0xbd,0x12,0xc9,0x4e,0xa1,0x22,0xbf,0xc7,0x19,0x19,0x19,0x81,0x3c,0x55,0x5e,0x1e,
0xe5,0x7b,0xf5,0x55,0x4b,0xbb,0xa2,0x53,0x2a,0x9c,0x8e,0x14,0x51,0xe4,0x33,0x1f,
0x13,0xfb,0x1d,0x2c,0xf5,0x1c,0x25,0x6,0xd9,0xcc,0xd9,0xd2,0x7b,0xaa,0xf2,0xfc,
0xb7,0x13,0xe7,0xff,0xf2,0xe2,0xc5,0xb,0xf8,0xd7,0x8b,0xbf,0x7a,0xf5,0x9e,0xaa,
0x3c,0xe7,0xb9,0xc7,0x60,0xe2,0x32,0x54,0xe4,0xf7,0xf0,0xab,0x13,0xa5,0x34,0x16,
0xd7,0xd1,0x61,0xb5,0x6a,0xfa,0xb3,0x65,0x3c,0xdf,0xf6,0x61,0x1b,0xf1,0xc9,0x93,
0x27,0xe0,0xba,0x2e,0x8c,0x69,0xb4,0x1e,0x25,0xe5,0xba,0xe8,0x18,0x43,0xc4,0x57,
0x1d,0x8b,0x8a,0xfc,0x63,0xce,0xde,0xe8,0x29,0xb8,0x9d,0x32,0xfb,0x45,0x62,0x81,
0xcb,0xa6,0x36,0xf7,0xae,0xaa,0x3c,0x6f,0x6d,0xaa,0x89,0x2b,0x0,0xef,0xd4,0xaa,
0x49,0x88,0x98,0x22,0xbf,0xd3,0x46,0x6c,0x34,0x1a,0xc0,0x14,0x37,0x51,0xdc,0xb1,
0x73,0x96,0x7e,0x91,0xf7,0x40,0xa1,0xb8,0xec,0x18,0x50,0xab,0xd5,0x80,0x70,0x34,
0xc2,0x4,0xd5,0x3,0xe5,0xf6,0x5a,0x2e,0x79,0xbf,0x25,0x45,0xf3,0xf6,0x41,0xad,
0x9a,0xc,0x11,0x45,0x3e,0xef,0x46,0x9c,0x9c,0x9c,0x4c,0xd4,0xec,0xc1,0x14,0xf9,
0x28,0x2e,0xeb,0x71,0xf6,0x5e,0x27,0x84,0xe,0xc5,0x5,0x5d,0x5d,0x25,0x7b,0xbd,
0x2,0x84,0x63,0xee,0x5a,0xb7,0x37,0xe0,0xfe,0x3a,0x20,0x11,0x45,0xbe,0xe8,0x46,
0x9c,0x9f,0x9f,0x87,0x94,0xaa,0xc6,0x5e,0x66,0x7e,0xdd,0xd6,0x47,0x33,0x28,0x2e,
0x3b,0x1e,0x94,0xcb,0x65,0xe1,0x43,0xc1,0xde,0xcf,0xc9,0xde,0xcc,0x84,0xa8,0x39,
0x7a,0xde,0x3c,0x7e,0xab,0xf4,0x4b,0x44,0x5c,0x16,0x75,0x23,0xb2,0x32,0x91,0xb8,
0x6a,0xbf,0x50,0x91,0x7f,0xcc,0xd8,0x53,0xb7,0xb,0x1d,0xa,0x56,0xab,0x73,0xd3,
0x36,0x46,0x1f,0x64,0x6d,0xfa,0xa7,0x84,0x2f,0xfc,0x2e,0x9b,0xda,0x1c,0xa5,0x14,
0x4a,0xa5,0x12,0xf7,0xeb,0x4d,0xb7,0x1b,0xb1,0xdb,0x0,0x1c,0x15,0xf9,0x27,0x20,
0xa6,0xf8,0x22,0xc1,0x6f,0xfb,0x6e,0xe3,0x8b,0x61,0x55,0x69,0xcc,0x5a,0xfa,0x6f,
0x4c,0x49,0xe2,0xaa,0xcb,0x8a,0x6b,0x23,0x3e,0x7d,0xfa,0x14,0xa,0x85,0x42,0xe4,
0xf2,0x73,0x54,0xe4,0x1f,0x53,0xb6,0xb6,0xb6,0x80,0x1c,0x72,0x13,0x8d,0xc8,0x3a,
0xa7,0xd1,0xad,0xe5,0x94,0x31,0x78,0xcd,0xd2,0x27,0x78,0xd2,0xc6,0x49,0x6c,0xc4,
0x52,0xa9,0x4,0xae,0x2c,0x5e,0x2,0x83,0xe2,0xb2,0x63,0x4c,0xd0,0x20,0x90,0x5e,
0x58,0x1f,0x1a,0xea,0xfd,0x5,0x5b,0x1f,0x5b,0x74,0x8c,0x21,0xde,0x60,0xfe,0x9c,
0x46,0xb7,0x92,0x10,0x86,0xcd,0xce,0xce,0xc2,0x69,0x2a,0xbf,0xe2,0x8d,0x9f,0x50,
0x91,0x7f,0xcc,0x99,0x98,0x98,0x80,0xb7,0x15,0x19,0x7a,0xe9,0x40,0x5c,0xb7,0xf5,
0xd1,0xb,0xba,0xba,0xba,0x9c,0x32,0x6,0x87,0x55,0xa5,0xc1,0xdb,0xf1,0xe6,0x29,
0xf2,0xeb,0xa4,0x46,0x6b,0x8d,0x8f,0x8f,0x73,0xdd,0xfc,0xa3,0xb8,0xec,0x4,0xb0,
0x67,0xa7,0x83,0xbb,0x69,0xf3,0x54,0x2f,0x1c,0x88,0xe5,0x94,0x31,0xf8,0x4b,0x95,
0x3e,0xfb,0xef,0x8c,0x65,0xbd,0xaf,0xd1,0xaf,0x45,0xde,0xe7,0xef,0xa4,0xcd,0xbe,
0xa2,0xa9,0x37,0x6e,0xdc,0xb8,0x71,0x60,0x90,0xe2,0xe3,0xc7,0x8f,0x21,0x6c,0xf0,
0x22,0xef,0xa1,0x78,0x4f,0x55,0x9e,0x77,0xfa,0xec,0x28,0x2e,0x3b,0x21,0x78,0x9e,
0x7,0xe7,0x34,0xba,0x75,0xd4,0x7,0xe2,0x5e,0xda,0xca,0xe,0xab,0x4a,0x63,0x35,
0x63,0xe9,0xbf,0x54,0xe9,0xb3,0x28,0x17,0x69,0xad,0x29,0x63,0xde,0xe5,0xba,0x6e,
0xa0,0xb6,0x67,0x60,0x60,0x0,0xa6,0xa7,0xa7,0x61,0x70,0x70,0x10,0x3e,0x34,0xd4,
0xfb,0xed,0x9e,0x58,0x28,0x2e,0x3b,0x81,0x59,0x28,0x85,0x90,0xd8,0xdb,0x50,0x45,
0xb3,0x35,0xef,0xa9,0xca,0xf3,0xdb,0x29,0xb3,0x7f,0x5c,0x57,0x37,0xba,0x11,0x97,
0xad,0xe7,0x6c,0xb9,0x96,0xb5,0xd5,0x2f,0x32,0x96,0x15,0x36,0xb4,0xfd,0xaa,0xa5,
0x5d,0x9,0x1b,0xf6,0xee,0x1f,0xc,0xff,0x9e,0xaa,0x3c,0x6f,0xf7,0xc4,0x42,0x45,
0xfe,0x9,0xa5,0x54,0x2a,0x41,0xbf,0x22,0xef,0x26,0x6d,0xac,0x8,0x5b,0xc3,0xaa,
0xd2,0xf8,0x2c,0x6d,0xf6,0x5d,0xb3,0xf4,0x89,0x28,0x8a,0xfc,0x4f,0x53,0xe6,0x3b,
0x61,0x7,0xe0,0x8b,0x8c,0x65,0xd5,0xb2,0xb6,0xea,0x5f,0x71,0x34,0x55,0x31,0x71,
0x19,0x66,0x9a,0x4e,0x20,0x4c,0x1c,0x16,0xb7,0xa2,0x9e,0xb7,0x74,0x64,0xc1,0xd6,
0xc7,0xae,0x59,0xfa,0x44,0x94,0xb2,0x91,0xf5,0x9c,0x2d,0x9b,0x82,0xaf,0x4c,0x84,
0x10,0x68,0xd5,0x5c,0xfa,0xd7,0xb0,0xaa,0x34,0x78,0x5e,0xdf,0x50,0x91,0x7f,0xc2,
0x61,0xd5,0xa7,0xbf,0x36,0xd4,0x4f,0xe,0xeb,0x40,0x2c,0xd8,0xfa,0xd8,0x25,0x43,
0xfd,0x9c,0x49,0xd4,0xa2,0x3c,0x21,0xfe,0x5a,0xd7,0xfe,0xb7,0x52,0xa9,0xbc,0x11,
0x3c,0x3f,0x7e,0xfc,0xf8,0x40,0xb0,0xcd,0xd6,0xd2,0xd2,0x12,0x94,0xcb,0xe5,0xc0,
0x95,0xcf,0xe7,0x61,0x60,0x60,0x0,0x3c,0xcf,0x83,0x92,0x46,0xbf,0x6d,0xf7,0xda,
0x84,0xe2,0xb2,0x1f,0xd8,0xc1,0xe8,0xb6,0xc4,0x81,0x37,0xd3,0xf4,0x77,0x3a,0xdd,
0x58,0xcd,0x58,0xfa,0xb0,0xaa,0x34,0xa2,0xfc,0xbe,0x71,0x5d,0xdd,0x48,0xea,0x9b,
0x7a,0x66,0x66,0x26,0xd4,0xf7,0xc4,0x14,0xf9,0x28,0x2e,0xfb,0x81,0xd0,0x4d,0x8f,
0x81,0x68,0xa6,0xe9,0x3f,0xd3,0x56,0xf6,0x17,0xaa,0xf2,0xe7,0xa8,0x25,0xdb,0x2c,
0xeb,0x93,0x84,0x44,0x8c,0xb5,0xea,0xfa,0xff,0xd,0x92,0xfc,0x9d,0xc8,0x31,0x8,
0xbe,0x93,0xe8,0x31,0x58,0xcf,0xd9,0xf2,0x4f,0x14,0xf9,0xfb,0xbb,0x69,0xf3,0xd4,
0x79,0x5d,0x5d,0xeb,0x36,0xeb,0xc5,0x5a,0x4d,0xe3,0x6c,0xf1,0x64,0xca,0x1c,0xff,
0x6d,0x3f,0x2a,0xf2,0x11,0x32,0x3b,0x3b,0xb,0xa6,0x24,0xc5,0xd6,0x63,0xb0,0x99,
0xb3,0xa5,0x77,0x55,0xe5,0xf9,0x67,0x69,0xb3,0xef,0xaa,0xa5,0x5d,0x89,0x53,0x5c,
0x96,0x96,0x24,0x88,0xab,0xd5,0x33,0x48,0x99,0x83,0x8a,0x7c,0x64,0x1f,0xd6,0xe4,
0x1f,0x47,0x2f,0xf7,0x5,0x5d,0x5d,0x9d,0xb3,0xf4,0x8b,0xd7,0x2c,0x7d,0xe2,0x43,
0x43,0xbd,0x1f,0xb7,0x7e,0x92,0xa5,0x47,0xbb,0x71,0x29,0x85,0x35,0x32,0xa1,0x22,
0x1f,0x79,0x83,0x7a,0xbd,0xe,0x2c,0x65,0x1b,0xf5,0x2e,0xe3,0xaa,0xa5,0x5d,0xb9,
0x6c,0x6a,0x73,0x9f,0xa5,0xcd,0xbe,0xa4,0x6c,0x84,0xeb,0x39,0x5b,0x3e,0xab,0xd2,
0x67,0xae,0xeb,0x46,0x72,0x2a,0xcd,0xce,0xce,0x6,0x2a,0x73,0x98,0xb8,0xc,0x33,
0x4d,0xc8,0x81,0xcc,0x54,0xd4,0x1e,0x83,0x5b,0x8e,0x51,0xfc,0x7,0x5d,0x5d,0xfd,
0xaf,0x8c,0x95,0x8a,0x9a,0x69,0x12,0x7d,0x22,0x89,0x36,0x1a,0x31,0xc1,0xb4,0x3f,
0x86,0x42,0x45,0x3e,0xc2,0xf5,0x7a,0xe1,0xca,0xfc,0x1,0x38,0xcb,0x34,0xfd,0x47,
0xda,0x3c,0xf5,0xb,0x55,0xf9,0x73,0xf5,0x90,0x9a,0x9a,0xd8,0x66,0xe6,0x69,0x38,
0xa,0x13,0x4c,0xa3,0xb8,0xc,0x11,0x7e,0xcd,0xe8,0xd4,0xd,0xb7,0x9e,0xb3,0xe5,
0x3c,0x55,0x5e,0x32,0xef,0x6a,0x5c,0xf5,0x55,0x9b,0x39,0x5b,0xba,0x6c,0x6a,0x73,
0xe3,0xba,0xba,0x71,0xd3,0x36,0x46,0xc3,0x5e,0xe9,0xee,0xa4,0xcd,0xbe,0xb4,0x24,
0x41,0xbb,0xc6,0x23,0x76,0x37,0xe3,0x8f,0x99,0x98,0x22,0x1f,0xc5,0x65,0x8,0x37,
0x95,0x4a,0x5,0x74,0x4a,0x21,0xac,0x56,0x89,0xb5,0x93,0xde,0x49,0x9b,0x7d,0xbf,
0x36,0xd4,0x4f,0xe2,0xcc,0x60,0x9d,0xa6,0xf2,0x2b,0x42,0x8,0x38,0x8e,0x3,0x94,
0xd2,0xb6,0x63,0xbc,0xd8,0xe0,0x98,0x62,0xb1,0x18,0xd8,0xf8,0x53,0x28,0x14,0xe,
0x94,0xb7,0xa0,0xb8,0xc,0x89,0xc,0x1b,0x5,0x16,0x54,0x33,0x35,0xae,0xab,0x1b,
0xd7,0x2c,0x7d,0x62,0xd6,0xd2,0x7f,0x33,0x6d,0x6a,0xbf,0x8d,0x2b,0xc3,0x74,0x56,
0xa5,0xcf,0x26,0x27,0x27,0x61,0x7b,0x7b,0x1b,0xd8,0x37,0x3d,0x4b,0xa1,0x86,0xc5,
0x2a,0xad,0x1,0x78,0x6b,0xb0,0xcc,0x32,0x4d,0xfe,0x27,0xd,0x2a,0xf2,0x91,0xae,
0x3,0x70,0xcf,0xf3,0xe0,0xc,0x55,0x9a,0x6c,0x53,0x4e,0x19,0xda,0xe2,0x65,0x53,
0x9b,0xbb,0x93,0x36,0xfb,0xe2,0x74,0x43,0xb5,0xab,0x48,0xe5,0x99,0xb1,0x71,0x5e,
0x57,0xd7,0x1c,0xc7,0x81,0xe9,0xe9,0x69,0x28,0x16,0x8b,0xf0,0x37,0xaa,0xf2,0x67,
0xff,0x41,0x42,0x45,0x3e,0x12,0x1b,0xc5,0x62,0x11,0xfa,0x15,0x79,0x77,0xca,0xd0,
0x16,0x2f,0xe8,0xea,0xea,0xa7,0x29,0xf3,0x9d,0x38,0x33,0x4d,0xb5,0xac,0xad,0x12,
0x42,0x42,0xcb,0x2b,0xca,0xe5,0x32,0xa4,0x25,0x9,0x3a,0xa5,0x8c,0x17,0x6c,0x7d,
0xcc,0x94,0xa4,0x37,0xe,0x31,0x2a,0xf2,0x91,0x44,0x3,0x70,0x4d,0x22,0x70,0xcd,
0xd2,0x27,0x86,0x55,0xa5,0x11,0x67,0xed,0x14,0x3b,0x14,0x7b,0x6a,0x9e,0xc0,0x43,
0x11,0x54,0xab,0x14,0xf6,0x3a,0x85,0xe2,0x32,0xe4,0x50,0x3,0x70,0x4a,0x69,0xec,
0x25,0xe8,0x9d,0xca,0x2c,0xba,0x69,0xab,0x45,0x45,0x3e,0x92,0x38,0xab,0xab,0xab,
0xe0,0x38,0x4e,0xec,0x4d,0x4b,0xd5,0x8c,0x65,0x9d,0xa1,0x4a,0x73,0x66,0x66,0x66,
0x3f,0x93,0xb4,0xb3,0xb3,0x3,0x93,0x93,0x93,0x91,0xcb,0xdd,0x51,0x5c,0x86,0x1c,
0x6a,0x0,0xee,0xba,0x2e,0x9c,0x55,0xe9,0xb3,0x38,0x6f,0xb0,0x59,0xa5,0xaa,0xe3,
0x38,0x30,0x30,0x30,0x0,0x94,0x52,0x38,0x43,0x95,0x66,0xd4,0x9f,0x87,0x8a,0x7c,
0xe4,0x50,0x69,0x36,0x9b,0xf,0x59,0x6f,0x46,0x9c,0x37,0xd9,0xf,0xb2,0x36,0x9d,
0x32,0xb4,0xc5,0x71,0x5d,0xdd,0xb8,0x6c,0x6a,0x73,0x51,0xeb,0xb1,0x50,0x91,0x8f,
0x1c,0x19,0xac,0x8b,0xed,0x28,0x8d,0x21,0xa8,0xc8,0x47,0x7a,0x8e,0xa5,0xa5,0xa5,
0x58,0x87,0xbf,0x77,0xdb,0xa,0x8b,0x99,0x26,0xa4,0x67,0x2,0xf0,0xa8,0x3,0x18,
0xe3,0x6c,0x85,0x45,0x45,0x3e,0xd2,0x53,0xb0,0xf9,0xf,0x71,0x7,0xe0,0xbc,0x41,
0x3a,0x8a,0xcb,0x90,0x9e,0xe4,0x30,0xe4,0x8,0xa8,0xc8,0x47,0x8e,0x25,0x49,0xf,
0x60,0x44,0x71,0x19,0x72,0x2c,0x49,0x6a,0x0,0x23,0x2a,0xf2,0x91,0x13,0x11,0x80,
0x27,0x31,0x40,0x6,0x15,0xf9,0xc8,0xb1,0xf,0xc0,0xe3,0xb4,0x13,0xa2,0x22,0x1f,
0x39,0xf6,0x74,0x3b,0x80,0xd1,0x7f,0xeb,0x8d,0xe2,0x32,0xe4,0xc4,0xc0,0xe4,0x8,
0x51,0x87,0x54,0xb2,0xde,0x6c,0x3c,0x10,0xc8,0x89,0xb,0xc0,0x59,0xff,0xf5,0x97,
0x19,0x4b,0xe7,0x7d,0x5d,0x3a,0xa7,0xd1,0x2d,0x85,0x10,0x3c,0x10,0xc8,0xc9,0xa4,
0x5e,0xaf,0x43,0xa1,0x50,0x0,0x85,0x10,0xc8,0x53,0xe5,0xe5,0x94,0xa1,0x2d,0xde,
0x4d,0x9b,0xa7,0x5a,0x87,0xaf,0xdc,0x4e,0x99,0xfd,0x57,0x2d,0xed,0xca,0xb0,0xaa,
0x34,0x14,0x42,0xc0,0xf3,0x3c,0x58,0x59,0x59,0xc1,0x3,0x81,0x9c,0x6c,0x56,0x56,
0x56,0x60,0x64,0x64,0x4,0x28,0xa5,0xa1,0x43,0x58,0x6,0x7,0x7,0xf1,0x30,0x20,
0x3f,0x3c,0x76,0x76,0x76,0xde,0x18,0xc0,0xb2,0xbc,0xbc,0xc,0x5f,0x7d,0xf5,0x15,
0xf7,0x94,0x53,0x4,0x69,0xc7,0xff,0xd,0x0,0xe9,0xfc,0xc9,0x68,0x19,0xb4,0x13,
0xee,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/rosado.png
0x0,0x0,0x12,0xd0,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xcc,0x0,0x0,0x0,0x56,0x8,0x6,0x0,0x0,0x0,0x83,0xdf,0x79,0xd7,
0x0,0x0,0x12,0x97,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0xeb,0x8f,0x5e,0x55,
0x15,0xc6,0x57,0x70,0x10,0x9,0xe5,0xa2,0xc,0x52,0x4c,0xd5,0x1a,0x8a,0x54,0x33,
0xd1,0x60,0xc0,0x54,0xd3,0x4,0x94,0x62,0x1a,0xc5,0x38,0x1a,0x35,0x55,0x40,0x8b,
0x56,0x2c,0x11,0xb0,0x28,0x84,0x82,0xa4,0x54,0xa3,0x36,0x5a,0xd,0x24,0x9a,0x34,
0x81,0x28,0x92,0x8a,0x78,0x8d,0x26,0x35,0xe0,0xbd,0x92,0x12,0xab,0xe9,0x87,0x26,
0xd6,0xd8,0x60,0xa3,0x18,0xfe,0x9,0x3e,0x1e,0xfb,0xdb,0x99,0x67,0xdc,0x6c,0xce,
0x39,0x7b,0xef,0x73,0xde,0xcb,0x99,0x77,0xf6,0x4a,0x4e,0x3a,0x6d,0xdf,0x39,0xef,
0xb9,0xac,0x67,0xaf,0xdb,0xb3,0xd6,0x36,0xcb,0x94,0xa7,0x9e,0x7a,0xaa,0xda,0xb9,
0x73,0x67,0xb5,0x71,0xe3,0xc6,0x6a,0xfd,0xfa,0xf5,0xd5,0xba,0x75,0xeb,0xaa,0x35,
0x6b,0xd6,0xb8,0x9f,0xf9,0xb7,0xed,0xdb,0xb7,0x57,0x8f,0x3e,0xfa,0x68,0x65,0x45,
0x8a,0xac,0x56,0x79,0xfe,0xf9,0xe7,0x7f,0xb2,0x6b,0xd7,0x2e,0x7,0x8c,0xd3,0x7f,
0xad,0xce,0xb1,0xb3,0xab,0x4b,0xed,0xf5,0xd5,0x87,0xed,0x7d,0xcb,0xc7,0xfb,0xed,
0xba,0x6a,0x9d,0x5d,0x52,0x5d,0x62,0xaf,0x76,0x9f,0xe1,0xb3,0x8b,0x8b,0x8b,0xd5,
0xb1,0x63,0xc7,0xa,0x78,0x8a,0xac,0x1e,0x11,0x50,0x0,0xc2,0xad,0xf6,0x89,0xea,
0x31,0x7b,0xa8,0x3a,0x6e,0xbf,0xad,0xfe,0x6b,0x7f,0xab,0x3d,0xfe,0x6d,0x7f,0xa9,
0x7e,0x69,0xdf,0x73,0x9f,0x5d,0x6f,0xeb,0xaa,0xb9,0xb9,0x39,0x67,0x75,0x0,0x5d,
0x79,0x9a,0x45,0x66,0x56,0x4e,0x9c,0x38,0x51,0x5d,0x79,0xe5,0x95,0xce,0x9a,0xa0,
0xfc,0xff,0xb4,0x3f,0x37,0x82,0xa4,0xd,0x3c,0x7b,0xec,0x4e,0x7,0xb6,0xf9,0xf9,
0xf9,0x62,0x6d,0x8a,0xcc,0xa6,0xa0,0xd8,0x28,0xf8,0xb5,0xb6,0xb9,0xfa,0xab,0x1d,
0xca,0x6,0x4a,0x78,0x60,0x91,0x70,0xdb,0x2e,0x9e,0xbf,0xb8,0x3a,0x78,0xf0,0x60,
0x1,0x4d,0x91,0xd9,0x3,0xcb,0x36,0xfb,0x80,0xb3,0x10,0x7d,0xc1,0xe2,0x1f,0xdf,
0xb0,0xfb,0xaa,0xb3,0xe6,0xce,0xaa,0x1e,0x79,0xe4,0x91,0x2,0x9a,0x22,0xb3,0x21,
0xb,0xb,0xb,0x63,0x1,0x4b,0x1,0x4d,0x91,0x99,0x13,0xb2,0x5a,0xc4,0x1b,0x5d,
0xe2,0x95,0x2e,0xa0,0x39,0x74,0xe8,0x50,0x1,0x4d,0x91,0x95,0xeb,0x8a,0x91,0xd1,
0xfa,0x96,0xed,0x19,0x2b,0x58,0x7c,0xd0,0x10,0xd3,0x94,0x44,0x40,0x91,0x15,0x29,
0xd7,0x5c,0x73,0x4d,0xf5,0x16,0x7b,0xd3,0xd8,0x5c,0xb1,0x2,0x9a,0x22,0x33,0x23,
0xa7,0x4e,0x9d,0x72,0xd6,0xe5,0x1e,0xfb,0xdc,0xc4,0xc0,0xa2,0xe3,0x6b,0x76,0x4f,
0x49,0x39,0x17,0x59,0x59,0xb2,0x6f,0xdf,0xbe,0x6a,0xce,0x5e,0x56,0x3d,0x6d,0xbf,
0x98,0x38,0x60,0xb0,0x68,0x24,0x19,0xa,0x68,0x8a,0xac,0x18,0xd9,0xb4,0x69,0x53,
0x75,0x85,0x2d,0x4c,0x1c,0x2c,0x75,0xa0,0xa1,0x60,0x5a,0xde,0x48,0x91,0x41,0xb,
0x8a,0x4a,0x61,0x71,0x5a,0x80,0xf1,0x41,0x3,0xbb,0xa0,0xbc,0x91,0x22,0x83,0x95,
0xe7,0x9e,0x7b,0xce,0x91,0x25,0xbb,0xc4,0x2f,0xbf,0xb3,0x1f,0x55,0x37,0xd8,0x87,
0x1c,0xd8,0xe,0xd9,0xf,0xa,0x68,0x8a,0xcc,0xbe,0x1c,0x3d,0x7a,0xd4,0x1,0xa6,
0x4b,0x3a,0x19,0x37,0xe,0xae,0x19,0xc7,0xa8,0xea,0x37,0x5,0x34,0x45,0x66,0x12,
0x30,0xcf,0xda,0x91,0xea,0x22,0xbb,0xb0,0xda,0x6c,0x57,0x55,0xb7,0xd8,0xd,0xee,
0x1c,0xcf,0xd8,0xaf,0x46,0xe2,0x9e,0x1,0x3c,0x52,0xdc,0x5,0x34,0x45,0x6,0xeb,
0x92,0x75,0xb1,0x30,0xb8,0x63,0xfc,0x2e,0xc7,0x7b,0xed,0xdd,0x23,0xad,0xe1,0x40,
0xd8,0x2c,0xa0,0x29,0x32,0x58,0xc0,0x40,0xe1,0xef,0xe2,0x3e,0xd1,0x1f,0xf3,0x1d,
0xfb,0xea,0x58,0xa,0x9e,0x2,0xcd,0x8d,0x37,0xde,0x58,0x40,0x53,0x64,0x58,0x59,
0x32,0x3a,0x26,0xa7,0x99,0x25,0x8b,0x81,0x66,0xc7,0x8e,0x1d,0x5,0x34,0x45,0x86,
0x21,0xdb,0xb6,0x6d,0xab,0x5e,0x65,0x17,0x8c,0x9d,0x74,0x59,0x40,0x53,0x64,0x52,
0x72,0xf2,0xe4,0x49,0x37,0x5b,0x82,0xf9,0x13,0x74,0xfc,0xfa,0x7,0x85,0x7a,0x66,
0x53,0x74,0x3e,0xf9,0x81,0x3,0x7,0x9c,0x5b,0x46,0x6b,0xf1,0x24,0x81,0x0,0x40,
0x53,0x41,0x4a,0x23,0x1b,0xa0,0x2e,0xa0,0x29,0x52,0x27,0xb4,0xc0,0x3,0x10,0x16,
0x7f,0x6,0xb3,0x28,0xb6,0x26,0x83,0xcb,0xac,0x9,0x1d,0xe8,0x90,0xfe,0x4f,0x73,
0x27,0xb2,0xc1,0xc3,0x97,0xf1,0xcb,0x9f,0xb2,0x6d,0x13,0x5,0xcc,0x26,0x7b,0x9b,
0x4b,0x47,0xb7,0xcd,0x8,0xf0,0xf,0x6a,0x3d,0x5,0x34,0x45,0x24,0x28,0xfa,0xee,
0xdd,0xbb,0xdd,0xb4,0x22,0xb8,0x90,0x80,0x0,0xfd,0xb8,0xda,0xde,0xe1,0x38,0x8a,
0x18,0x80,0x50,0xb7,0x58,0xa0,0xc9,0xe6,0x12,0x77,0x13,0xb7,0x6b,0x68,0xcb,0xe6,
0xcd,0x9b,0xf3,0xa8,0x59,0xc,0xbb,0x0,0x8d,0xa3,0x68,0x49,0x4e,0x71,0xb1,0xc8,
0xca,0x7d,0x76,0xe1,0xe6,0x6a,0xfb,0x96,0x9b,0x1c,0x6b,0x99,0x22,0x68,0xe,0x68,
0x78,0x50,0x45,0x65,0x56,0x97,0x50,0x2,0xc1,0x9d,0x82,0xca,0xe5,0x4f,0x30,0xa2,
0x1e,0x88,0xf2,0x3,0x90,0xdc,0xb0,0x82,0xcf,0x3f,0x6c,0xdf,0x74,0x2e,0x3f,0xa0,
0xe3,0xfc,0x83,0xb3,0x32,0x80,0x85,0x9b,0x3d,0x7e,0xfc,0x78,0xf5,0xc2,0xb,0x2f,
0x54,0x6b,0xd7,0xae,0xcd,0xa2,0xe6,0x0,0x9a,0x8b,0xe6,0xe6,0x4b,0xd7,0xe6,0x2a,
0x88,0x43,0x8,0x17,0xb6,0x6e,0xdd,0xea,0x78,0x86,0xe8,0xc,0x24,0x61,0x46,0x7c,
0x51,0xd2,0x88,0x4d,0x30,0xca,0xcd,0xf8,0xa2,0x97,0x59,0x1e,0xc,0x17,0x7,0x62,
0x47,0x41,0x73,0x89,0x59,0x18,0xa6,0xc9,0xdc,0xb9,0xe5,0xf6,0xea,0xbe,0xdb,0x76,
0x57,0x5f,0xb2,0x3b,0x92,0x2d,0x4c,0x1,0xcd,0x6c,0xc7,0x21,0x4f,0x3c,0xf1,0x84,
0xb,0xd4,0x37,0x6c,0xd8,0xb0,0x1c,0x6b,0xe0,0x36,0x91,0xc5,0x45,0xa1,0xc7,0xed,
0x1,0xa1,0x87,0x58,0x9b,0x2d,0x5b,0xb6,0xa4,0xe9,0x15,0xe8,0xca,0x89,0x2b,0xfa,
0xc6,0x30,0x20,0xba,0xeb,0x77,0x1,0x9a,0xf3,0xe6,0xce,0x2d,0xa0,0x99,0x81,0x38,
0x4,0x37,0x2b,0x8c,0x43,0xe0,0x37,0xfe,0xd1,0x7e,0x3a,0xd1,0xa6,0x46,0x3f,0xc1,
0x4,0x70,0x93,0x6e,0x82,0xea,0x3a,0x23,0x96,0xc6,0x7d,0xa1,0xf8,0x8f,0x7d,0x81,
0x59,0x86,0x6a,0xac,0xcc,0x38,0x4,0x37,0xab,0x2e,0xe,0xc1,0xcd,0x1a,0x42,0x79,
0xe3,0xfb,0xf6,0xed,0xbc,0xb9,0x13,0x80,0x66,0x9c,0xd3,0x63,0xc6,0x31,0x54,0xa3,
0xcc,0x3c,0x1b,0x9e,0xd0,0xcd,0x8b,0xab,0x4f,0xba,0xb7,0x2e,0xe,0x21,0x5b,0x35,
0x9,0x6f,0xa6,0xcb,0xf1,0x1e,0xbb,0x5a,0x29,0x6a,0x9b,0x8,0x68,0xf0,0x7,0xdf,
0x6c,0x6f,0xac,0x1e,0xb7,0xef,0x96,0xf9,0x0,0xab,0x48,0x14,0x87,0xf8,0xe9,0x5e,
0xc5,0x21,0xa4,0x7b,0x27,0xd9,0xd9,0x8b,0xb5,0xc2,0x6a,0x11,0xff,0xf0,0x67,0x8e,
0x2e,0x73,0x9d,0x80,0xfb,0xc1,0x7,0x1f,0x4c,0xd3,0x29,0xba,0x1f,0xbb,0xe,0xf5,
0x63,0xd5,0x78,0x78,0x6e,0xbf,0x9b,0xea,0x7f,0xcf,0xdc,0x6d,0x13,0x49,0x57,0x17,
0xd0,0x4c,0x3f,0xe,0xf1,0xdd,0x2c,0xc5,0x21,0xa4,0x7b,0xa7,0xe1,0xa9,0x10,0xe3,
0xaa,0xce,0xa2,0xe3,0x2a,0x7b,0x6b,0x56,0x82,0x29,0xdb,0xca,0x74,0x99,0x84,0x9,
0xaa,0xb9,0xd0,0x5b,0xb6,0xed,0xa8,0x90,0x3d,0xbb,0xee,0x77,0x48,0x2d,0xa0,0x99,
0x1d,0x37,0x4b,0x71,0x88,0xef,0x66,0xf9,0x71,0xc8,0xb4,0xdd,0x2c,0x65,0x51,0xa9,
0xe4,0x63,0xf1,0x20,0x19,0xc3,0x4,0x20,0xfb,0x75,0xb9,0x5d,0xea,0x2c,0xdd,0x1,
0xdb,0x17,0x3d,0xf,0xf7,0xc2,0xfd,0x65,0xb1,0x1,0x4,0x9a,0xd4,0xae,0x4c,0x80,
0xc5,0x83,0xbb,0x7b,0xe1,0x8e,0xea,0xf0,0xe1,0xc3,0xd5,0xd7,0xb7,0x3c,0xe0,0xcc,
0xf1,0xa4,0x82,0x39,0x7c,0xe3,0x32,0x54,0x63,0xbc,0x2e,0x97,0xdc,0xac,0x77,0xd9,
0x3b,0x5d,0x6b,0xc7,0x6f,0xec,0xf1,0xc1,0xc4,0x1e,0x2a,0x6e,0x2f,0x51,0xbe,0x6a,
0x33,0xc1,0x5c,0x3f,0x0,0x47,0x57,0xdb,0xc,0x1,0xc0,0xc7,0x5a,0x26,0x67,0xcc,
0x7c,0xd0,0xb0,0x72,0xb3,0x82,0xa7,0x5e,0x38,0x1,0x1d,0x17,0xb6,0xcb,0x3e,0x93,
0xe5,0x73,0x42,0x5d,0x20,0x9d,0x88,0xdf,0xc9,0xa1,0x36,0x68,0x2,0x45,0xf8,0x40,
0x80,0xaf,0xed,0x26,0xcb,0x24,0x9a,0xf1,0xd7,0x4b,0x88,0x4d,0x58,0x14,0x71,0x6f,
0x78,0xbf,0xe3,0xae,0xdd,0xe5,0x14,0x20,0xd9,0x66,0x25,0x56,0x47,0xa1,0x68,0xfe,
0xc3,0xfd,0x8f,0xb9,0xcf,0xc6,0x38,0x94,0x0,0x8b,0x78,0x2c,0xfb,0x41,0xe5,0x82,
0x86,0x8b,0x87,0x76,0xe0,0x5b,0x16,0xdc,0x32,0x71,0x79,0x0,0x3,0xf,0x1d,0x30,
0xe0,0xef,0x86,0xe4,0x38,0x1d,0xbc,0x1c,0x62,0x21,0xe,0x91,0xeb,0x1e,0xb2,0x2f,
0xb7,0x5a,0x2c,0x81,0x86,0x59,0xd1,0x45,0xc5,0xbb,0xa5,0x7f,0xdb,0xfe,0x5f,0x93,
0x86,0x4e,0xda,0xd3,0xd5,0xdd,0x76,0x6b,0x92,0x7b,0x33,0x89,0x83,0x85,0x16,0x9d,
0x69,0xb2,0x2e,0x35,0xf7,0xe8,0xdc,0xb3,0xb6,0x73,0xa2,0x9f,0x59,0x71,0x8c,0x2f,
0x47,0x8e,0x1c,0x71,0x29,0xdc,0x54,0xd0,0x90,0xcf,0xd6,0xee,0x64,0x1c,0xf8,0xba,
0x21,0x20,0xb8,0x18,0xc0,0x80,0x4f,0xc,0xfd,0x9a,0x0,0x12,0x7f,0x13,0xbf,0x11,
0xdf,0xb3,0x6e,0x33,0x26,0xac,0x47,0xac,0xe9,0xad,0xcc,0x7,0xe8,0x96,0xfe,0x15,
0xdb,0xb7,0xd,0x34,0xbc,0x23,0x5c,0x15,0x5c,0x16,0x74,0xe1,0x5e,0xbb,0xad,0x3a,
0x65,0xcf,0x4c,0x1d,0x30,0xf2,0x6a,0x62,0xdb,0x46,0x52,0x82,0x20,0x41,0xf1,0x73,
0x7b,0x38,0x1a,0x9b,0xa3,0x67,0x9c,0x73,0xa9,0xd9,0x32,0x5f,0x28,0x12,0xa6,0x80,
0x86,0x87,0x89,0x9f,0xcb,0xb,0xd0,0xfe,0x97,0xf8,0x82,0xdc,0xc,0x7,0x5c,0xa1,
0x2e,0x17,0x21,0xde,0x5b,0x4a,0x97,0x68,0x1,0x4d,0x7b,0x76,0x2b,0x4c,0xff,0x62,
0xe1,0xc9,0xc,0xb1,0xb0,0xb5,0x11,0x5c,0x97,0x82,0x60,0xa7,0xa0,0x94,0xd,0x70,
0xcb,0x26,0x91,0xd4,0x49,0xa9,0xd2,0x73,0xed,0x31,0x12,0x65,0x4e,0xf,0x98,0x5a,
0xf1,0x3b,0x3,0xc6,0x7,0xd,0x16,0xa4,0xc9,0xb2,0xb0,0x2,0x8d,0xa3,0x98,0x88,
0xf2,0x7f,0xd0,0xb6,0x26,0x67,0x62,0x0,0xd,0xe9,0xc4,0xd5,0xe,0x1a,0x2c,0x46,
0x2c,0xfd,0x2b,0x5,0x22,0x5e,0xe4,0x73,0x6d,0xe7,0xe3,0x1c,0x28,0x13,0xf5,0xa,
0x0,0xc3,0x6a,0x3d,0x4,0xb7,0x2c,0xe6,0x42,0xe5,0x2c,0xb8,0x3a,0x5f,0x6f,0xc0,
0x8,0x34,0xa4,0xee,0xea,0x2,0x3e,0x99,0x31,0xac,0xc8,0xa8,0xc1,0x82,0xf2,0xfb,
0x66,0x94,0x55,0x25,0x16,0x74,0xae,0xc6,0xa1,0x1a,0x3c,0xfb,0xba,0xf4,0x2f,0x60,
0x88,0xa5,0x7f,0xf9,0xff,0x25,0x50,0x35,0xa,0xe7,0xe5,0x5c,0xb8,0x62,0xb8,0x64,
0x39,0x9,0xa1,0x71,0x93,0x7b,0xa1,0x76,0x11,0xf8,0x87,0xee,0xbc,0xb6,0xa2,0xcc,
0x29,0x93,0x0,0x98,0xa5,0xe7,0xd7,0x5f,0x9a,0x40,0x33,0x8e,0x1,0x16,0xba,0x51,
0xdf,0x8c,0x2a,0x85,0x88,0x22,0xc4,0x18,0x5,0xba,0x26,0x9a,0x85,0x66,0x35,0x7b,
0x55,0xd7,0x75,0x88,0x5b,0xcc,0x4b,0xc7,0x7d,0x4a,0x75,0x9b,0x52,0xea,0xf,0xfe,
0x4c,0x6e,0x92,0x30,0x4,0xff,0x24,0x1,0x86,0x92,0x2d,0x63,0x61,0x5,0xf4,0x3c,
0xf,0xc2,0x1,0xf1,0xd7,0x72,0xb,0xf1,0x24,0x37,0x88,0xb1,0x47,0xf6,0xa2,0x8,
0x16,0x51,0xda,0x26,0xd0,0xf4,0xed,0x90,0x6c,0x5a,0x15,0x54,0x9c,0xa2,0xf9,0xcd,
0xf5,0x4d,0xcc,0x5f,0xeb,0x5e,0xdc,0x6a,0x9a,0xf,0x10,0xeb,0x3a,0xec,0xca,0xf6,
0x4d,0xa9,0x3f,0xf8,0x59,0x26,0xdc,0x31,0xdc,0xb2,0x69,0xc,0xb4,0x6f,0x2b,0x51,
0xa8,0xab,0x52,0x96,0x95,0x6b,0xcc,0x79,0x1e,0x9c,0x83,0xe7,0x9,0xe0,0x46,0xfa,
0xe2,0x50,0xc0,0x26,0xd0,0x70,0xc1,0x5d,0x15,0xb4,0x89,0x69,0x0,0x30,0xc2,0x7e,
0x18,0x6e,0x2a,0x85,0x51,0xb0,0x92,0x41,0xd3,0xd6,0x75,0x18,0xc6,0x21,0x7d,0x8f,
0x94,0xfa,0x83,0x26,0xe,0xf1,0x4c,0x51,0xc6,0x49,0xf0,0x6,0xbb,0x58,0x9b,0xae,
0x9,0x9,0x59,0xda,0xa5,0x62,0xad,0x4d,0x4,0x34,0x5d,0x7b,0xf1,0x9b,0xc0,0xd2,
0x44,0xe9,0x7,0x30,0x7e,0xe6,0x83,0x3f,0xc9,0xf8,0xd0,0x77,0x13,0xfa,0xea,0xfc,
0x1d,0x8a,0xc4,0xd0,0x41,0xd3,0xd4,0x75,0xa8,0x7a,0xd5,0x27,0xed,0x23,0xcb,0xf7,
0x86,0x52,0xe0,0x76,0xe1,0x7e,0x8d,0x22,0x9e,0x0,0x80,0x58,0x2d,0x52,0xce,0x75,
0x96,0xed,0x81,0xdd,0x7b,0xaa,0x4d,0xeb,0xae,0x72,0xd7,0xf2,0xf,0xfb,0x53,0x75,
0xbf,0x7d,0xbe,0xfa,0x8a,0xdd,0x35,0x78,0x76,0x7b,0xce,0x41,0x7,0x72,0x2c,0x96,
0xeb,0xd,0x1a,0x14,0x31,0x54,0x50,0x81,0x26,0x95,0x62,0x90,0xb,0x16,0x15,0xd3,
0x30,0xbb,0x2,0xb,0x56,0x88,0x73,0xe0,0xcf,0x63,0x51,0x9a,0xae,0x69,0x48,0xa0,
0x51,0xd7,0x21,0xe0,0xf,0xe3,0x10,0xbf,0xeb,0x50,0x6d,0xde,0x3f,0xb6,0x3,0xee,
0xbe,0xb8,0x6f,0xd5,0xb8,0xb8,0xa7,0xb3,0xec,0xe5,0xbd,0x41,0x83,0xb5,0xe2,0x7c,
0xfb,0xf7,0xef,0xaf,0x9a,0xfa,0x58,0x6e,0xb7,0x9b,0x97,0x27,0xe,0x51,0xbc,0xfc,
0x82,0xdd,0xe2,0xc0,0x33,0xb,0x60,0xe1,0x39,0x73,0x8f,0xb8,0xfc,0x63,0x7d,0xe9,
0x28,0x60,0x93,0x82,0xa6,0xb4,0x15,0x8b,0x51,0x80,0x6f,0x1c,0x82,0xe5,0xfc,0x35,
0xe7,0x37,0xfe,0x3e,0xa,0xa6,0xd9,0x0,0x21,0xcb,0xb4,0xed,0x9a,0x72,0x80,0x8c,
0xc2,0x64,0xf3,0x8a,0x12,0xe3,0x90,0x9c,0xae,0x43,0xb9,0xa,0xa2,0xf,0xd9,0x12,
0x37,0xea,0x3c,0x3b,0xd7,0x65,0x88,0x58,0x19,0xfb,0x82,0x46,0xfe,0xfb,0x32,0xe3,
0xa2,0xa6,0x8f,0x45,0x14,0x78,0xae,0xf3,0x49,0x3b,0xe8,0xdc,0xb2,0xdc,0x76,0xf3,
0xa1,0x5b,0x97,0xba,0xc2,0xf9,0x60,0x40,0x43,0x87,0x5b,0x1d,0xfd,0x26,0xc6,0x42,
0xf6,0xb7,0xed,0x40,0xb9,0x58,0x91,0xc3,0x40,0xad,0x2f,0x90,0x95,0x19,0xea,0xc4,
0x2b,0xaa,0x89,0x43,0xfa,0x74,0x1d,0x2a,0x28,0x47,0x79,0xb1,0x3c,0x9c,0x3,0x80,
0xa0,0xe0,0x3a,0x17,0xae,0xa8,0x2c,0x6e,0xd7,0x83,0x73,0x73,0x5e,0x5c,0xad,0xa6,
0x80,0x9e,0xef,0x0,0xdc,0x58,0x16,0x2c,0xc,0x74,0xa8,0x95,0xe,0x16,0x40,0xcf,
0x73,0x4c,0x9e,0x22,0x33,0xaa,0x34,0x70,0x93,0x82,0xd6,0xf5,0xe2,0xd7,0x31,0x8,
0xc4,0x7c,0x8e,0x51,0xf6,0x55,0x79,0x66,0xb5,0x85,0xab,0xc6,0xcf,0x75,0x37,0xdb,
0x17,0x34,0x28,0x7b,0x93,0x5f,0x1f,0x8b,0x43,0x46,0xdd,0x75,0xe8,0xd2,0x9d,0xb6,
0xce,0x2d,0xe,0xfc,0xcc,0x79,0x71,0x91,0xd8,0x51,0x1,0xe0,0x70,0x70,0xfe,0xbe,
0x7b,0x90,0x5a,0x64,0xc8,0x23,0xdf,0x21,0x9a,0xc,0xc0,0x22,0x96,0xf9,0x8f,0x1d,
0x5d,0xb1,0x60,0xd1,0xee,0x11,0x53,0x29,0x3f,0x34,0x81,0x6,0x50,0xf8,0xa0,0x41,
0xa1,0xea,0xc0,0x92,0xca,0x3a,0xd6,0xf4,0x4e,0xdc,0x17,0xb9,0x2b,0x4d,0x7c,0x22,
0x1e,0x44,0x1f,0xd0,0x70,0x3d,0x31,0x72,0x5f,0xdb,0xf4,0x93,0x94,0xae,0x43,0xfc,
0xe7,0x26,0x2b,0xc3,0x73,0xc1,0xf5,0xe1,0x1e,0x64,0x59,0x70,0x41,0x5,0x1a,0xe,
0x3a,0x5d,0x45,0x5d,0x19,0x5,0x99,0xb1,0xad,0xb5,0x43,0xfc,0x2d,0x9e,0x3b,0xc,
0xf,0xae,0x6d,0xa8,0x6d,0xc7,0x29,0x60,0x99,0x3a,0x69,0xb7,0x69,0xa8,0x6,0xb9,
0x7b,0x40,0x42,0xac,0xc1,0x8a,0xdb,0x15,0x2c,0xca,0x90,0x69,0x95,0xd3,0xaa,0xd8,
0xc6,0x32,0x68,0x2,0x32,0x89,0x82,0xd8,0x50,0xd,0x2c,0x5,0x47,0x53,0x1c,0xd2,
0xa5,0xeb,0x90,0xeb,0x40,0xf1,0x58,0xad,0x15,0xc0,0x87,0x8c,0x86,0x90,0x45,0xa1,
0x83,0x4c,0x99,0x38,0x60,0xb8,0x61,0xfc,0x1b,0xb1,0xcc,0x28,0x9a,0xf6,0x44,0x97,
0xe7,0x3e,0x62,0xee,0x21,0xd7,0x25,0x9a,0xcc,0x50,0xe8,0xfe,0x39,0x7,0xfa,0x48,
0xc2,0xa,0xdd,0x98,0x48,0xdc,0x92,0x52,0xa5,0xf,0x15,0x80,0x15,0x89,0x40,0xdd,
0xe7,0xa4,0x75,0xe9,0x67,0x41,0x51,0x61,0x43,0x8b,0xca,0x90,0x92,0xa,0xac,0xa3,
0xd9,0xa4,0x4c,0xa2,0xc1,0xba,0x70,0x6d,0x7d,0xba,0xe,0x59,0xc9,0x0,0x11,0x9f,
0xd5,0x4e,0x6e,0x3e,0xc8,0x8,0x38,0x59,0x64,0xee,0xb2,0x9d,0xcb,0xe7,0xe1,0x3a,
0x1,0x14,0xd6,0x83,0xdf,0x63,0x23,0x2b,0xac,0xb,0x56,0x4b,0xc9,0xb,0xdf,0x92,
0xc5,0x8a,0xb8,0x39,0xd,0x79,0x31,0xa2,0x22,0x8b,0x8f,0x4f,0xf7,0x1f,0xd5,0x77,
0x4f,0x2a,0x1b,0xc6,0xf3,0xe6,0xfd,0x5d,0x7f,0xfd,0xf5,0xc3,0x29,0x33,0xa4,0x70,
0x78,0x7c,0x76,0x71,0xe,0xca,0xb1,0x52,0xda,0xb2,0x23,0x87,0xca,0xd0,0x74,0x4d,
0x2,0xcd,0xde,0xbd,0x7b,0x97,0x59,0xd5,0xa2,0x9d,0x8,0x20,0x1c,0xac,0xbe,0x8a,
0x43,0x62,0xab,0x39,0xff,0x8f,0xb5,0x1,0x10,0x52,0xee,0x36,0x6e,0x97,0xb2,0x54,
0x8a,0x43,0x88,0xcf,0xf8,0x3c,0x2b,0x21,0xd7,0xc7,0xcf,0x2c,0x12,0x0,0x84,0xeb,
0x27,0x50,0x1d,0xc7,0x1c,0x2f,0xdf,0xe5,0xd2,0xbf,0xc1,0x1f,0xc3,0x9a,0x50,0xa8,
0xe4,0x5a,0xde,0x6e,0x57,0x2c,0x5b,0xb4,0x21,0xd1,0xfd,0x63,0xe3,0x8a,0x79,0x17,
0x6e,0x60,0xf9,0x69,0xfd,0x89,0xb5,0x4,0x4c,0x45,0xb8,0xb0,0x36,0xd0,0xa0,0x1c,
0xb9,0xcd,0x3a,0xfe,0xa6,0x50,0xca,0x90,0x85,0x2e,0x53,0x17,0xd0,0xb0,0x4a,0x86,
0xd,0x6d,0xfc,0x5d,0x71,0x48,0x8e,0x72,0xf2,0x82,0x7c,0xb,0x90,0xc2,0xed,0xc2,
0x6a,0xa0,0x84,0x4c,0x9,0xd5,0x70,0x39,0x8d,0xf2,0x55,0x6c,0x1,0x60,0x14,0xbb,
0x8d,0x9b,0x32,0xff,0x31,0x5b,0x74,0x60,0xe5,0xb9,0x0,0x8,0x5c,0xaf,0x3b,0xec,
0xd3,0xce,0x25,0x5c,0xb0,0xcb,0x7,0x49,0xf7,0x8f,0x59,0x74,0x62,0xcc,0xe4,0xa9,
0x30,0xd3,0x90,0xb6,0xa1,0x1a,0xc7,0xec,0x49,0xe7,0x62,0xe4,0xf2,0x76,0xea,0x32,
0x64,0xb9,0xc3,0xca,0x1,0x69,0x5d,0x46,0x49,0x45,0x42,0x8e,0x18,0xed,0x4,0x50,
0xf0,0xfd,0xe1,0x67,0x50,0x7c,0x56,0x32,0x94,0x28,0x15,0x64,0x22,0xf,0xe2,0xea,
0xf0,0x33,0xf1,0x89,0x3f,0x91,0x54,0xb,0x83,0x0,0xd3,0x65,0x17,0xec,0xdc,0x8c,
0x1c,0xdf,0xc7,0x3d,0xec,0xb0,0x8f,0xbb,0xeb,0xc1,0xdf,0x5f,0x63,0xe7,0xbc,0x68,
0x41,0xe1,0x19,0xf2,0xcc,0xa6,0x4d,0x93,0xe1,0xf9,0xf0,0xac,0x5f,0x62,0xd1,0xe7,
0xe6,0x5c,0x9c,0x89,0x7e,0xc4,0xba,0x4a,0x7,0x7,0x9a,0xba,0x7e,0x84,0x2e,0x3,
0x2c,0x72,0x32,0x64,0x4d,0x82,0xeb,0x95,0x1b,0x24,0x6b,0xd5,0xe2,0xa5,0xf8,0xab,
0x16,0xca,0x14,0xd6,0x29,0x14,0x5f,0xa5,0x1e,0x58,0x15,0xb9,0x5f,0x6e,0xa,0xe3,
0xe9,0x85,0x24,0xec,0x3d,0xc2,0x4a,0x11,0xdc,0xb3,0x39,0x6f,0x5b,0x50,0x3e,0x8a,
0x83,0x77,0x75,0xa6,0x9d,0xe9,0x6,0x5e,0x9c,0x61,0x67,0xb8,0xfb,0xe4,0x3d,0x11,
0xc3,0xf1,0xfc,0x71,0x5b,0xa1,0xd3,0xe3,0xa2,0x12,0xc7,0x4c,0x83,0xee,0xaf,0xc5,
0xd,0xf,0xc0,0x1f,0xaf,0xc4,0x62,0xc8,0x22,0x4c,0xe6,0x72,0xea,0xc1,0x7c,0x1f,
0xd0,0xd4,0x15,0x28,0x15,0xc3,0xe4,0xb8,0x65,0xb9,0x19,0xb2,0x3a,0x21,0x8d,0xd8,
0x94,0x95,0xa,0x57,0x2d,0xbe,0xa3,0x2e,0xe,0x1,0xec,0xbc,0x30,0x0,0x83,0x82,
0xc9,0x1a,0xf0,0x2,0x73,0x76,0x78,0x93,0xfb,0xa5,0x73,0xc8,0x85,0x6b,0x8a,0x2d,
0x34,0xb,0xa1,0xe9,0xfc,0x7f,0xb7,0x3f,0xf4,0x56,0x46,0x2d,0x44,0x5b,0x17,0xae,
0x73,0xc9,0x8e,0xba,0xd5,0x79,0xa9,0xee,0xe5,0x9e,0xd1,0x24,0xe8,0xfe,0x3c,0x1b,
0xae,0xcb,0xcf,0x2c,0xd6,0x1,0x79,0x66,0xfa,0x37,0x62,0xa0,0x49,0x6d,0xf6,0xea,
0x92,0x21,0xb,0x63,0x98,0xa6,0xe,0x4e,0x6d,0x7c,0xcb,0x79,0xfd,0x55,0xab,0x6d,
0xa2,0xbc,0x4f,0x17,0xf1,0xb7,0xf7,0x48,0xd9,0xe1,0x8d,0xef,0x23,0x3b,0x86,0xbb,
0x3,0x0,0x88,0x59,0x0,0x43,0x9d,0xe5,0x53,0x6c,0x21,0xb7,0x4c,0x41,0xb9,0x56,
0x5a,0x29,0x12,0x16,0xa8,0x6f,0x9a,0x37,0x97,0xee,0xcf,0xf7,0x8d,0x9a,0xee,0xdf,
0x64,0xd1,0x79,0xdf,0xe8,0x40,0x13,0x90,0x67,0x4a,0x0,0xd,0xfc,0xb0,0x3e,0xa0,
0x21,0x23,0xd6,0x25,0x43,0xe6,0xa7,0x96,0x9b,0x56,0x67,0xad,0xac,0xb9,0x13,0xe5,
0x51,0x54,0xae,0xc5,0x57,0xec,0x94,0x38,0x3,0x5a,0x9,0x9f,0xc5,0xfd,0xc2,0x1d,
0xe3,0xe7,0xb6,0x2d,0xe1,0x15,0x5b,0xf0,0x39,0xb9,0xb8,0x2a,0x60,0xe2,0xc6,0xb9,
0x56,0xe3,0xcc,0x9d,0xde,0x9a,0xe,0xee,0x7f,0xa9,0x10,0xdb,0x1a,0xb,0xf2,0x39,
0xd1,0xfd,0x9b,0x5a,0xd8,0x73,0xe2,0x90,0x97,0x58,0xf4,0xd3,0x71,0x8,0xf4,0x24,
0xc0,0xdb,0x6b,0xaf,0xca,0x95,0x2a,0x4d,0x43,0x35,0xb4,0xda,0xb6,0x81,0xc6,0x9f,
0x91,0xc5,0xef,0xb0,0xda,0xa6,0x66,0xc8,0x62,0x69,0x6e,0xf6,0xad,0xb9,0x6c,0x7e,
0x43,0x75,0xd3,0xfc,0x47,0xb3,0x5f,0xbc,0x4f,0x17,0x9,0x1,0x14,0x1b,0x1a,0x82,
0x35,0x3,0xc0,0x58,0x99,0xd8,0x2e,0xa,0xdc,0x37,0xdf,0x43,0xec,0xc0,0xf9,0x5,
0x4e,0x11,0x31,0x51,0x30,0x94,0x8d,0x73,0xd6,0x15,0x6a,0x73,0xe9,0xfe,0x31,0x77,
0x57,0xc3,0x25,0xe0,0x95,0xed,0xb5,0x2f,0x66,0xd3,0xfd,0xfd,0x16,0x85,0x30,0xe,
0xe1,0xdc,0xc4,0xa6,0x2b,0x36,0xe,0x99,0x4,0x68,0x62,0xbd,0xf8,0x72,0x3,0xe4,
0x1a,0xc5,0xa6,0x9d,0xc8,0xaa,0x11,0xb3,0xb4,0x81,0xe5,0x59,0x3b,0xe2,0x5c,0x19,
0xe2,0xa3,0x7f,0xed,0x3e,0xee,0xac,0x50,0x8e,0xb2,0xc9,0x32,0xc9,0x4d,0xa,0x1,
0xd4,0xd4,0x3b,0x2e,0x4b,0x20,0x20,0xc4,0x98,0xbf,0xfa,0x1e,0x16,0xa,0x3e,0xf,
0xc8,0x55,0xe9,0x47,0x71,0x45,0xbf,0x17,0x41,0xb3,0xcf,0xc6,0xbf,0xa2,0xfb,0xb7,
0xd1,0x82,0x96,0x92,0x2d,0xee,0xb3,0x58,0xc8,0x18,0xdd,0x5f,0x71,0x88,0xd2,0xbd,
0x61,0x1c,0x82,0x9b,0x35,0x53,0x71,0xc8,0xa8,0x41,0x3,0xbf,0xac,0xa9,0xd5,0xb9,
0xe,0x34,0x7a,0x41,0x98,0x6e,0xbd,0xd0,0xb6,0xc,0x59,0xce,0xac,0x68,0x94,0xed,
0x75,0xf3,0xaf,0xad,0x7e,0x7f,0xff,0xaf,0x5d,0x10,0x9b,0x33,0x15,0xc5,0xa7,0x8b,
0xd4,0x1,0xa8,0x6e,0xca,0x8e,0xdc,0x2f,0x31,0x65,0x53,0x5c,0x38,0x7d,0x8f,0xe2,
0x18,0x31,0x96,0x21,0x60,0xf2,0xef,0xfc,0xe9,0xc7,0x5d,0x7d,0x8a,0x9a,0x29,0x35,
0x2e,0x59,0x7c,0xae,0x5d,0xe9,0x65,0x68,0xff,0x75,0x71,0x88,0x8a,0x86,0x7e,0x1c,
0xb2,0xa2,0xd2,0xbd,0x43,0x1,0x4d,0xdb,0x50,0x8d,0xb0,0xd9,0xb,0x3f,0x56,0x2b,
0xb7,0x82,0xeb,0xa6,0x15,0xa9,0xcb,0x60,0x75,0x55,0xd7,0xc9,0x7c,0xe5,0x6,0xce,
0xac,0x98,0xa2,0xd7,0x87,0x0,0xa,0x83,0x59,0xb9,0x5f,0x58,0x36,0xac,0x59,0x2c,
0x63,0x17,0xc6,0x16,0x0,0x85,0x7b,0xe7,0x3c,0xfc,0x4c,0xb2,0x40,0x81,0x31,0x54,
0x1a,0x2c,0x4e,0xce,0x3e,0xa2,0x6d,0x74,0xff,0xd8,0x4,0x15,0xe2,0xb,0xbe,0x1b,
0xc6,0x32,0x16,0xf,0xd7,0x8c,0x38,0x44,0xd9,0xc2,0x30,0xe,0x19,0x4b,0xfb,0x6f,
0x1,0x4d,0x3d,0x68,0xb0,0x3a,0x4,0xb5,0x72,0x7b,0x9a,0x32,0x64,0xca,0xc8,0xf1,
0x99,0x9c,0x55,0x96,0xcf,0x52,0x13,0x51,0x60,0xd,0x70,0x52,0x1b,0xa4,0x0,0x87,
0x5f,0xdb,0xf1,0x1,0x14,0x7e,0x4e,0x99,0x30,0xd5,0x5f,0x52,0xc0,0x29,0x77,0x6,
0x90,0xf0,0xfb,0x80,0x8c,0xf3,0x3b,0x5a,0xcf,0x69,0xd0,0xf0,0x5c,0xb4,0x82,0x8f,
0x82,0xb9,0xec,0xd3,0xfd,0xdb,0xac,0x80,0x16,0x31,0x0,0x8a,0x5b,0x1b,0xc6,0x21,
0xb8,0x74,0x39,0xed,0x11,0x45,0x12,0x84,0x87,0xde,0x36,0x89,0x6,0xa0,0x70,0xf8,
0x3d,0xed,0xac,0xb4,0x75,0x19,0xb2,0x2e,0x83,0xd4,0xeb,0xac,0x80,0x80,0x83,0x32,
0xb0,0x82,0xc7,0x8a,0x9c,0x72,0x11,0xa5,0xa8,0x21,0x80,0x42,0xfa,0x8b,0xb6,0x9,
0x51,0xc6,0x2f,0x35,0xad,0xaa,0xd8,0xc5,0xf5,0xe0,0x2f,0x8d,0x3d,0xe2,0x5e,0x1,
0xf,0x4a,0xdb,0x67,0x7a,0x4c,0xd3,0x26,0x43,0x6d,0x8d,0x55,0x62,0x5e,0xf8,0x71,
0x48,0x71,0xb3,0x26,0x20,0x6d,0x93,0x68,0x58,0x3d,0x39,0xfc,0x74,0x70,0x5d,0x86,
0x8c,0xc9,0x9b,0x7d,0xc1,0xd2,0x15,0x38,0x22,0x4f,0xca,0x15,0x12,0x80,0x94,0x26,
0x16,0xfd,0x45,0xee,0x17,0x9f,0x27,0xdb,0x45,0xdc,0xa1,0x6d,0x18,0xda,0xa,0xa5,
0x21,0x61,0x53,0xe7,0x8f,0xd,0xd7,0xee,0x7b,0xf0,0xdd,0x0,0x21,0x81,0xae,0x54,
0x64,0x1a,0xa0,0x49,0xa9,0x21,0xf8,0x59,0xad,0x58,0xe6,0xad,0x89,0xb9,0x8a,0x62,
0x6b,0xff,0xf7,0x58,0x55,0x5e,0x33,0xaf,0x0,0x4d,0x1b,0x70,0x50,0x74,0x5,0xdb,
0x6a,0xfc,0xd2,0xcc,0x30,0x8a,0xa5,0xc4,0x2d,0x21,0x43,0x19,0x6b,0xc1,0xef,0xa4,
0x16,0x4a,0x43,0x80,0x36,0x59,0xa8,0x51,0xee,0xbf,0x33,0xd6,0x49,0x2a,0x45,0xfa,
0x83,0x26,0xa5,0x86,0x40,0x26,0x8b,0x61,0x7e,0xf8,0xc8,0x70,0xc3,0x52,0xc0,0x52,
0xc7,0x48,0x56,0xf0,0x9c,0x12,0x47,0xa8,0x97,0x42,0xc0,0x1,0x44,0x3e,0xd8,0x0,
0x61,0xe8,0x86,0x61,0xa1,0xf8,0xe,0xee,0xa9,0xe,0x98,0xc4,0x48,0xb8,0x5c,0x5d,
0xb6,0xde,0xce,0xa5,0xe1,0xe4,0xd2,0x50,0xb8,0x3f,0x9e,0x8d,0xe5,0xee,0xca,0x55,
0x64,0x98,0xa0,0x81,0x21,0x8b,0x82,0xa2,0xbc,0x31,0xb0,0x88,0xd4,0x88,0xc2,0x93,
0x39,0x43,0x9,0xb0,0x52,0x34,0x6d,0xa9,0x2f,0x3e,0x95,0x8c,0xe9,0x3,0x7,0x6b,
0x80,0xa2,0x63,0x45,0x48,0x12,0x84,0xcd,0x54,0x28,0x3f,0xe3,0x91,0xc6,0xb1,0x23,
0x5b,0x4a,0xf,0x7e,0x6a,0xb2,0x23,0x96,0xfe,0x2d,0x81,0xfb,0xc0,0x85,0x6e,0xb8,
0x14,0xd0,0x60,0x19,0x62,0x8a,0xee,0xb7,0xde,0x52,0x5f,0x1,0x28,0xac,0xce,0x9c,
0x9f,0x98,0x2,0x65,0x91,0xab,0xd5,0xa5,0x7b,0x4f,0xa,0xd6,0x54,0x77,0x19,0xd7,
0x11,0xf2,0xd8,0x72,0x7f,0x57,0xe9,0x5f,0xdf,0x1d,0x84,0xe,0x53,0xd2,0xbf,0x2b,
0x54,0x9a,0x7a,0xf1,0xbb,0x56,0xad,0x1,0x7,0x56,0x46,0x45,0x49,0x80,0xa4,0x1e,
0x79,0xfe,0x2f,0x97,0x96,0xef,0x3,0x67,0x5a,0xbb,0x7,0x6b,0xec,0x51,0x8a,0x9b,
0x15,0xce,0x11,0x50,0x76,0x4b,0xe9,0xdf,0x52,0x65,0x9f,0x11,0xd0,0xe4,0x14,0xf6,
0x9a,0xa,0x92,0xcb,0xf5,0x81,0x0,0x14,0xea,0x66,0x54,0x46,0x6a,0x48,0x9d,0x83,
0x6d,0x7,0x14,0x14,0xe2,0x1f,0x36,0x6a,0xad,0xa3,0xe1,0x34,0x75,0x1d,0xe2,0x66,
0x95,0xf4,0xef,0x2a,0x0,0x4d,0xee,0xb6,0x5,0x75,0x1c,0x2c,0xaa,0xe0,0x61,0xa1,
0x50,0xf5,0xc,0xcd,0xfc,0x9a,0x86,0x95,0x48,0x39,0xc2,0xbe,0x7a,0x78,0x5b,0x64,
0xe1,0x68,0x25,0xa6,0xc9,0x8b,0x2c,0x1c,0xb,0x43,0x5b,0xd7,0x61,0x9,0xdc,0xb,
0x68,0xb2,0xc6,0xa0,0xa2,0x54,0xf8,0xed,0x58,0x19,0x14,0x8b,0xf8,0x3,0x10,0x11,
0x94,0x6b,0x74,0xd1,0x50,0x0,0x2,0xd5,0x4,0x6b,0x17,0xf6,0xd5,0xeb,0xa0,0x61,
0x8b,0x7b,0xe0,0x99,0x84,0xad,0xc3,0x33,0xd1,0x75,0x58,0xa4,0xbf,0xc4,0x58,0xc7,
0x31,0xba,0x3a,0x6e,0x9,0x69,0x5e,0xa5,0x7f,0xdd,0xf0,0xe9,0xd3,0xca,0x7,0x90,
0x52,0xd8,0xc2,0x93,0x4,0xc9,0x3e,0xbb,0xf7,0x45,0x0,0xc1,0xa2,0x70,0xf,0x8c,
0x5b,0x22,0xab,0xf7,0x1a,0x5b,0x3b,0xfb,0x5d,0x87,0x45,0xfa,0x49,0x17,0x42,0xa5,
0x9f,0x29,0x23,0xe0,0xd5,0xf6,0x11,0x2,0x8c,0xfe,0x3e,0xad,0xd9,0x5a,0xc4,0x22,
0x30,0x7c,0x99,0x86,0xcf,0xd8,0xd5,0xd0,0x8a,0xc0,0xa2,0xa6,0xe0,0x79,0x99,0xbd,
0x61,0x75,0x76,0x1d,0x16,0x99,0x1e,0x68,0x94,0x86,0x56,0xa6,0x8,0x5f,0x9f,0xa0,
0x78,0x92,0x81,0x3e,0x7d,0xef,0xc4,0x22,0xd4,0x85,0x68,0xb8,0x52,0x2c,0xe2,0x3,
0x84,0x7b,0x23,0x3b,0x78,0x81,0x9d,0xf7,0x22,0xb6,0x6f,0x89,0x43,0x8a,0xf4,0x2,
0xcd,0xb8,0x79,0x54,0xa3,0xa,0xd6,0x1,0xa4,0x82,0x75,0x40,0xe1,0x3,0x84,0x3f,
0x49,0x6d,0xe3,0x66,0x5d,0x68,0xaf,0x2c,0x5d,0x87,0x45,0xc6,0x7,0x9a,0x51,0x12,
0x2d,0x47,0x19,0x87,0x90,0xe2,0xc5,0x92,0x85,0xc1,0xba,0xac,0x9,0x0,0x61,0x84,
0x51,0x5d,0x1c,0x52,0xba,0xe,0x8b,0xcc,0x3c,0x68,0x54,0x13,0x61,0xa8,0x45,0x18,
0x87,0x0,0x12,0x2,0x75,0x2a,0xea,0x75,0x71,0x48,0xe9,0x3a,0x2c,0x32,0x51,0x81,
0xd2,0x9f,0x42,0xbc,0x1c,0x47,0x1c,0x82,0x9b,0xd5,0x14,0x87,0x90,0x79,0xc3,0xcd,
0xa,0xe3,0x90,0x42,0x3b,0x29,0x32,0x75,0x49,0xa5,0xf6,0xf7,0x8d,0x43,0x54,0x13,
0xa9,0x8b,0x43,0x8,0xd4,0x95,0xee,0xb5,0xd2,0x75,0x58,0x64,0x35,0x81,0xc6,0x8f,
0x43,0x48,0xf7,0x86,0x45,0x43,0xd,0xe5,0x26,0xdd,0xbb,0xd1,0x36,0xd4,0xc6,0x21,
0xc5,0xcd,0x2a,0xb2,0x62,0x40,0x43,0x61,0x32,0x97,0xb0,0x89,0x9b,0x45,0x1c,0x42,
0xba,0x97,0x41,0xe,0x61,0x3d,0x84,0x38,0x84,0x40,0x9d,0x74,0xef,0xd9,0xf6,0x8a,
0x42,0x3b,0x29,0x32,0x1b,0xc2,0x46,0xb3,0xb8,0x42,0xf0,0xc2,0xd4,0x3b,0x9f,0xc2,
0xcd,0xaa,0x73,0xb3,0x88,0x43,0x20,0x7e,0xfa,0xe9,0x5e,0x9f,0xfe,0x5e,0xd2,0xbd,
0x45,0x66,0x46,0x16,0x17,0x17,0x9d,0x5,0x0,0x38,0xea,0x87,0x3f,0x6c,0x3f,0xab,
0xe5,0x66,0x11,0xb4,0xf3,0x19,0x3f,0xe,0x29,0xf4,0xf7,0x22,0xab,0x4e,0x48,0x3b,
0x3,0x1c,0xed,0x43,0xc9,0x16,0xe,0xcc,0xec,0xa2,0xed,0x16,0xd2,0x25,0x7,0x80,
0x22,0x93,0x25,0x80,0x14,0xfa,0x7b,0x91,0x22,0xf6,0xff,0x9d,0x8e,0x89,0x39,0x18,
0xcf,0xe4,0x1f,0x0,0xa4,0xc4,0x21,0x45,0x42,0xf9,0x1f,0x68,0x87,0xd3,0xbf,0xd8,
0x5d,0x2a,0x3e,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/baro2/fantasma3.png
0x0,0x0,0x16,0x92,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xcc,0x0,0x0,0x0,0x56,0x8,0x6,0x0,0x0,0x0,0x83,0xdf,0x79,0xd7,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,
0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,
0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,
0x46,0x0,0x0,0x16,0x18,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x5d,0x7f,0x68,0x54,
0xe7,0x9a,0x7e,0x62,0x4e,0x9d,0x4d,0x33,0xda,0xd9,0x64,0x8c,0x9d,0xf5,0xec,0x66,
0x96,0xe4,0x6a,0x22,0x83,0x41,0x99,0x2c,0x13,0x19,0x48,0x6f,0x8d,0x32,0x34,0x8a,
0x31,0xa4,0x61,0xee,0xa6,0x37,0x9d,0xba,0xc9,0xec,0xc,0xb6,0xe9,0xd8,0x1f,0x4c,
0x6a,0x4b,0xd4,0xa2,0x1b,0xb4,0x91,0x1b,0x48,0x61,0x20,0x41,0xa3,0xe4,0xaa,0xad,
0xb1,0x58,0x98,0xa5,0xd9,0xb8,0x6b,0x9b,0xa1,0x85,0x8,0x41,0x2,0x9b,0x92,0x84,
0x15,0x11,0xe6,0xf,0xff,0xb8,0x7f,0x8,0x5,0x21,0x84,0x45,0xdf,0xfd,0xe3,0xfa,
0xce,0x1e,0x4f,0xe6,0xcc,0x9c,0x33,0x93,0x4c,0x26,0xf1,0x7b,0xe0,0xfb,0x43,0xd4,
0x49,0xa2,0xdf,0xf3,0x7d,0xef,0xf3,0xbe,0xcf,0xfb,0x7e,0x80,0x41,0x8c,0x8d,0x8d,
0x51,0x20,0x10,0xa0,0xaa,0xaa,0x2a,0xb2,0xdb,0xed,0x24,0xcb,0x32,0x99,0xcd,0x66,
0xb2,0xdb,0xed,0x54,0x55,0x55,0x45,0x3e,0x9f,0x8f,0x86,0x87,0x87,0x9,0x2,0x2,
0x2f,0x2b,0xe2,0xf1,0xf8,0xb7,0xa1,0x50,0x88,0xcc,0x66,0x33,0x1,0xa0,0x62,0x14,
0x51,0x5,0xca,0xa9,0x5,0x8d,0x71,0x5e,0x87,0xb0,0xff,0xb1,0xc,0x1b,0xd9,0x50,
0x46,0x0,0xc8,0x6c,0x36,0x53,0x53,0x53,0x13,0x4d,0x4d,0x4d,0x9,0xf2,0x8,0xbc,
0x3c,0x60,0xa2,0xd8,0x50,0x46,0x41,0xb4,0xc7,0xae,0xa0,0xdf,0x39,0x8d,0x71,0x89,
0x88,0xa0,0xb5,0x6e,0xe1,0x62,0x79,0x10,0xed,0x31,0x3b,0x64,0x92,0x24,0x89,0x7c,
0x3e,0x1f,0xc5,0xe3,0xf1,0x6f,0xc5,0xbf,0xa6,0xc0,0xba,0xc5,0xcc,0xcc,0xc,0x39,
0x9d,0x4e,0x2a,0x46,0x11,0x5,0xd1,0x1e,0x9b,0xc5,0x44,0x41,0x2a,0x92,0x68,0xad,
0x1e,0x1c,0x3f,0x6f,0x43,0x19,0x59,0xad,0x56,0x71,0xdb,0x8,0xac,0x4f,0x4c,0x4d,
0x4d,0x91,0xd5,0x6a,0xa5,0x7d,0x70,0x2f,0xdc,0x45,0xd4,0x94,0x9,0x51,0x94,0x6b,
0x1a,0xe3,0x52,0xb,0x1a,0xe3,0x5b,0xad,0x5b,0x69,0x64,0x64,0x44,0x90,0x46,0x60,
0xfd,0x91,0xc5,0x8b,0xc3,0xf,0xb2,0x25,0x8a,0x7a,0x9d,0xc3,0x89,0x2e,0x93,0x64,
0xa2,0xa1,0xa1,0x21,0x41,0x1a,0x81,0xf5,0x1,0x87,0xc3,0xb1,0x22,0x64,0x11,0xa4,
0x11,0x58,0x77,0x68,0x6a,0x6a,0x22,0x1b,0xca,0x28,0x53,0xbd,0x62,0x94,0x34,0xd1,
0x68,0x54,0x90,0x46,0x60,0xed,0x86,0x62,0x92,0x24,0x51,0x1f,0x7a,0xfc,0x2b,0x49,
0x16,0x25,0x69,0xb6,0x5a,0xb7,0x8a,0x44,0x80,0xc0,0xda,0xc4,0x1b,0x6f,0xbc,0x41,
0xbb,0x50,0x4d,0xb9,0x20,0x8b,0x20,0x8d,0xc0,0x9a,0xc6,0xfd,0xfb,0xf7,0x49,0x92,
0x24,0xa,0xe3,0xd8,0x50,0x2e,0x9,0x43,0x44,0x38,0x8b,0x70,0x58,0xa4,0x9c,0x5,
0xd6,0x14,0x7a,0x7b,0x7b,0x49,0x42,0x21,0xc5,0xf0,0xdd,0xa6,0x5c,0x13,0x86,0x88,
0xe0,0xc5,0xe1,0x7,0x82,0x34,0x2,0x6b,0x6,0x2e,0x97,0x8b,0x76,0xc3,0x41,0xab,
0x41,0x16,0x35,0x69,0x66,0x66,0x66,0x4,0x69,0x4,0xf2,0x1b,0x56,0xab,0x95,0x5a,
0xd0,0x18,0x5f,0x4d,0xc2,0x30,0x69,0x9c,0x4e,0xa7,0x20,0x8c,0x40,0xfe,0xe2,0xe1,
0xc3,0x87,0x4,0x20,0x23,0xfd,0x72,0x1b,0xd7,0x4a,0xdb,0xd0,0x3c,0xdf,0x82,0xc6,
0x78,0x14,0x97,0xb7,0x9,0xd2,0x8,0xac,0x7b,0x4c,0x4e,0x4e,0x12,0x80,0x8c,0xd2,
0xc9,0xbb,0xe1,0xa0,0x62,0x14,0x51,0x31,0x8a,0x96,0xb5,0x7e,0x23,0x48,0x23,0xb0,
0x2e,0x9,0xb3,0x5,0xa5,0xe4,0x46,0xed,0x53,0x3f,0xda,0x26,0x1,0xd0,0x2f,0xf8,
0xfe,0xd5,0xe5,0x20,0xcc,0x2c,0x26,0xa,0x76,0xa1,0x9a,0x4,0x69,0x4,0xf2,0x36,
0x24,0xcb,0x84,0x30,0x6d,0x68,0x9e,0x7,0x40,0x0,0xe8,0x2d,0xbc,0xf9,0xdb,0x72,
0xea,0x99,0x69,0x8c,0x4b,0x82,0x34,0x2,0x79,0x4b,0x98,0x20,0xda,0x63,0x99,0x6c,
0xec,0x2b,0xe8,0x77,0xe,0xe0,0x4c,0xeb,0x4a,0x24,0x1,0x98,0x34,0xef,0xbc,0xf3,
0x8e,0x20,0x8d,0x40,0x7e,0x65,0xc9,0xe,0x61,0xff,0xe3,0xd5,0xce,0x92,0xa5,0x22,
0x4d,0x47,0x47,0x87,0x20,0x8d,0x40,0x7e,0xc0,0xeb,0xf5,0x52,0x9,0x2c,0x2b,0x6e,
0xba,0x14,0xa4,0x11,0xc8,0x15,0xe6,0xe6,0xe6,0x68,0x78,0x78,0x98,0x2,0x81,0x0,
0xf9,0x7c,0xbe,0x17,0x56,0x6f,0x6f,0x2f,0x8d,0x8d,0x8d,0x65,0xbe,0x97,0x22,0x91,
0x8,0x1,0xa0,0x5b,0xb8,0x58,0x9e,0x4b,0x22,0xcc,0x62,0xa2,0x40,0x2f,0x49,0xef,
0x22,0x6a,0x2a,0x81,0x45,0x90,0x46,0x20,0x29,0xe2,0xf1,0xf8,0xb7,0xc3,0xc3,0xc3,
0xe4,0xf5,0x7a,0x49,0x96,0x65,0x62,0x6d,0x5d,0x8c,0x22,0x92,0x61,0x4b,0xac,0x12,
0x58,0x12,0xbf,0xc7,0x73,0x27,0xc,0x93,0x27,0x1e,0x8f,0x7f,0x6b,0x36,0x9b,0xe9,
0x28,0xbc,0xf7,0x72,0x49,0x18,0x17,0xf6,0x3c,0xb3,0xa1,0x8c,0xd2,0xcd,0x8,0xe0,
0x15,0xc5,0xe5,0x6d,0x82,0x34,0x2,0x8c,0xb1,0xb1,0x31,0xea,0xee,0xee,0xa6,0xaa,
0xaa,0x2a,0x92,0x24,0x89,0x0,0x50,0x9,0x2c,0x54,0x8f,0xba,0xc5,0xb3,0x8,0x87,
0x6f,0xe1,0x62,0xb9,0x7a,0x6f,0xcd,0x62,0xa2,0xe0,0x17,0x7c,0xff,0xea,0x0,0xce,
0xb4,0x6,0xd1,0x1e,0xe3,0xa1,0x2d,0x6e,0xb7,0xdb,0x98,0x35,0x2b,0x14,0xa,0x51,
0x31,0x8a,0x68,0x39,0x5a,0x92,0xf5,0x84,0x58,0x7d,0xe8,0xf1,0xff,0xab,0xe3,0xbd,
0xff,0xf5,0x35,0xfc,0x91,0xce,0xe1,0x44,0xd7,0x6d,0x5c,0x2b,0x35,0x42,0x9a,0xee,
0xee,0x6e,0x41,0x9a,0x97,0xc,0x93,0x93,0x93,0xd4,0xdb,0xdb,0x4b,0x2e,0x97,0xeb,
0x85,0x9,0x46,0xbb,0xe1,0xa0,0x20,0xda,0x63,0xb7,0x70,0xb1,0xdc,0xa8,0xac,0x98,
0xc5,0x44,0xc1,0x20,0xce,0x7b,0x76,0xa1,0x9a,0x24,0x49,0xa2,0xde,0xde,0x5e,0x7d,
0xfb,0x2a,0x97,0xb7,0x4c,0x1f,0x7a,0xfc,0x0,0x68,0x7a,0x7a,0x9a,0x16,0x16,0x16,
0xe8,0xf5,0xd7,0x5f,0x37,0x64,0xcd,0x89,0xe2,0xf2,0xb6,0x2d,0x92,0x55,0x74,0x6d,
0xbe,0x4,0x3a,0x24,0x12,0x89,0x90,0xc7,0xe3,0x21,0xab,0xd5,0x4a,0x0,0x48,0x42,
0x21,0x55,0xa0,0x9c,0xda,0xd0,0x3c,0xaf,0x67,0x82,0x91,0xd1,0x7d,0x69,0x28,0x82,
0x89,0x44,0x22,0x54,0x8c,0x22,0x5a,0x2e,0x9b,0x4b,0xaa,0x1b,0xa6,0x7,0xc7,0xcf,
0x1f,0x6f,0xf8,0x80,0x4e,0xbc,0xdf,0x4d,0x9f,0xa3,0x6b,0x40,0xef,0xd,0x23,0x48,
0xb3,0xbe,0x75,0xc8,0xf5,0xeb,0xd7,0x29,0x10,0x8,0x50,0x65,0x65,0x65,0x42,0x6b,
0xd8,0x50,0x46,0x87,0xb0,0xff,0x71,0x1f,0x7a,0xfc,0x2b,0x1d,0x1,0xdd,0xc6,0xb5,
0xd2,0x5d,0xa8,0xa6,0x86,0x86,0x6,0x7d,0xfb,0xaa,0xa3,0xa3,0x83,0x8c,0xe8,0x8a,
0x6c,0x35,0x4c,0x9,0x2c,0x19,0x7f,0xad,0x28,0x2e,0x6f,0xdb,0x2c,0x6d,0x12,0xa4,
0x59,0x7,0x3a,0xc4,0xe5,0x72,0x2d,0xd1,0x21,0x61,0x1c,0x1b,0xba,0x83,0x1b,0x96,
0x5c,0x67,0x65,0x39,0xc1,0x14,0x8,0x4,0xf4,0xed,0x2b,0xa7,0xd3,0x49,0xfb,0xe0,
0x5e,0xc8,0x45,0x96,0x2c,0x5b,0x62,0x8a,0xa1,0x1a,0x6b,0x53,0x87,0x78,0x3c,0x9e,
0xa4,0x3a,0xe4,0xa,0xfa,0x9d,0xf9,0x50,0xde,0xb8,0x84,0xb,0x7b,0xd,0xcd,0x9d,
0x70,0x3a,0x9d,0x2b,0x3a,0x3d,0x66,0x25,0x86,0x6a,0x88,0x99,0x67,0xf9,0x87,0xfb,
0xf7,0xef,0x53,0x24,0x12,0x21,0xaf,0xd7,0x9b,0x54,0x87,0xc,0xe0,0x4c,0x6b,0x2e,
0xa2,0x99,0x4c,0xd6,0x1,0xd4,0x3f,0x79,0x9e,0xa2,0x46,0x4e,0x48,0x73,0x1b,0xd7,
0x4a,0x77,0x62,0x3b,0x5d,0xc5,0xd7,0x35,0x62,0x3e,0xc0,0xcb,0x3,0xd6,0x21,0xca,
0x74,0x2f,0xeb,0x90,0xb3,0x8,0x87,0x73,0xd9,0xd9,0x3b,0x8b,0x89,0x82,0x2b,0xe8,
0x77,0xf6,0xa1,0xc7,0x7f,0x5,0xfd,0x4e,0x23,0x7f,0x37,0x86,0xef,0x36,0x49,0x28,
0xa4,0x3f,0xfd,0xe9,0x4f,0xfa,0xf6,0xd4,0xcc,0xcc,0x4c,0xc6,0x43,0xfd,0xa6,0x31,
0x2e,0xd,0x4a,0x5f,0x79,0xec,0x76,0x3b,0x85,0xa5,0xf7,0x47,0x72,0x91,0xae,0x16,
0xa4,0x59,0x7d,0x1d,0xa2,0xc,0xb3,0x58,0x87,0xe4,0xba,0x20,0xae,0xd4,0xb8,0x5c,
0x67,0xe1,0x55,0x8b,0x1a,0x32,0x92,0x60,0x32,0x7c,0xcb,0x64,0x32,0x9,0x73,0x16,
0x13,0x5,0x36,0x94,0x91,0xdf,0xdb,0x41,0x44,0x44,0x3d,0xa1,0x2f,0x48,0x42,0x21,
0x9,0xd2,0xac,0x9f,0x30,0x8b,0x75,0x88,0x32,0xcc,0x52,0xea,0x90,0xd5,0xe,0xb3,
0x38,0x8b,0xda,0xd4,0xd4,0x44,0xd7,0xaf,0x5f,0xa7,0x87,0xf,0x1f,0xd2,0xf0,0xf0,
0x30,0x35,0x34,0x34,0xd0,0xe,0x54,0xd0,0x59,0x84,0xc3,0x11,0xf4,0x7a,0xf4,0x98,
0x8b,0x1,0x18,0x73,0x3,0x30,0x69,0x8c,0x74,0x65,0x6,0xd1,0x1e,0xfb,0xd4,0xd1,
0xf5,0x97,0x9f,0x7e,0xfa,0x89,0xfe,0xad,0xe1,0xe4,0xc2,0x21,0xec,0x7f,0x9c,0x2b,
0x31,0xd7,0x86,0xe6,0x79,0x31,0x54,0x63,0x65,0x43,0x2e,0xe,0xb3,0x7e,0x8f,0xbd,
0x8b,0x6f,0xe1,0xcd,0xdf,0xfe,0x3,0x57,0xb7,0xe6,0x8b,0xf6,0xe0,0xe2,0xf6,0x73,
0xcb,0x57,0xd2,0x4c,0x30,0x0,0x5d,0x73,0x2c,0xa6,0x31,0x2e,0x15,0xa3,0x48,0x7f,
0xc6,0x4c,0x49,0x9a,0xad,0xd6,0xad,0x74,0xe,0x27,0xba,0xf4,0x7e,0xe3,0x3,0x38,
0xd3,0xa,0x80,0x42,0xe8,0x1c,0x35,0x72,0x3b,0xfd,0x82,0xef,0x5f,0xbd,0x83,0x1b,
0x96,0x3e,0xf4,0xf8,0xfb,0xd0,0xe3,0xe7,0x36,0xe8,0xa,0x94,0x93,0xc,0x9b,0x2e,
0x67,0xb5,0x98,0x44,0xb3,0xb2,0xf5,0x12,0x49,0x92,0x28,0x88,0xf6,0xd8,0x6d,0x5c,
0x2b,0xd,0xa1,0x73,0x74,0xa5,0x6b,0x77,0x46,0x96,0x1d,0x72,0xda,0x3a,0xca,0xf4,
0xf4,0x34,0xfd,0xf9,0xab,0x2b,0x64,0x87,0x9c,0xd6,0x43,0xb9,0x1b,0xe,0xaa,0xaa,
0xaa,0x32,0xbe,0x8f,0x32,0x21,0xcd,0x20,0xce,0x7b,0x94,0x37,0xcb,0x5d,0x44,0x4d,
0xec,0xe5,0xe9,0x43,0x8f,0x3f,0x88,0xf6,0x58,0xb,0x1a,0xe3,0xf5,0xa8,0x5b,0x54,
0x9b,0xe3,0x78,0x49,0x92,0x44,0x76,0xbb,0x9d,0xec,0x76,0x7b,0xc2,0x5c,0xd7,0x8f,
0xd3,0xad,0xe9,0x6e,0x2c,0x2f,0xe,0x3f,0x70,0x38,0x1c,0x82,0x30,0x19,0xa6,0x7f,
0x53,0xfd,0x3e,0x4f,0x1a,0x9a,0x43,0xac,0xe0,0x53,0x4,0x47,0xf4,0x84,0x37,0xb9,
0x58,0x77,0x70,0xc3,0x2,0x40,0xf3,0x76,0x49,0xf2,0x33,0xd2,0x59,0x84,0xc3,0xa9,
0x3e,0xb3,0x5,0x8d,0x71,0x43,0x3a,0x46,0x89,0x9f,0x7f,0xfe,0x99,0x4c,0x92,0x49,
0x37,0x69,0x2e,0xe1,0xc2,0x5e,0x7e,0x9d,0x4c,0x86,0x8d,0x24,0x14,0x2e,0x21,0x84,
0x2c,0xcb,0x64,0xb7,0xdb,0xc9,0xe3,0xf1,0x90,0xcf,0xe7,0xa3,0xee,0xee,0x6e,0x1a,
0x1e,0x1e,0xa6,0xb1,0xb1,0x31,0x7a,0xf8,0xf0,0x61,0xd2,0xc7,0x98,0xac,0x56,0xab,
0xae,0xa6,0x37,0x31,0x1f,0xc0,0x78,0xfa,0x97,0xdd,0xbe,0xa9,0x48,0xd3,0xdd,0xdd,
0x4d,0xc5,0x28,0xa2,0x69,0x8c,0x4b,0xe7,0x70,0xa2,0xeb,0x33,0xbc,0x3f,0x94,0xf,
0x84,0xe1,0xa8,0x26,0xdd,0xb3,0x91,0x23,0x23,0x23,0x64,0x36,0x9b,0xe9,0x26,0x6,
0x2b,0xf5,0xc8,0xb,0x0,0xf4,0xbc,0xd9,0xd2,0x38,0x86,0x86,0x86,0x74,0x91,0x66,
0x1a,0xe3,0x92,0xd,0x65,0x24,0xcb,0x72,0xe2,0xfd,0xcb,0x40,0x20,0x40,0xc3,0xc3,
0xc3,0x34,0x3c,0x3c,0x4c,0x73,0x73,0x73,0x19,0x7d,0x13,0xec,0x7b,0xd3,0xdb,0x25,
0x2a,0x48,0xa3,0x9d,0xdd,0x52,0xa7,0x7f,0x4b,0x60,0xa1,0x3,0xa8,0x7f,0x22,0xa1,
0x30,0xa5,0xc1,0xf5,0xb9,0x8,0xa6,0x1,0x9c,0x69,0xbd,0x8a,0xaf,0x6b,0x42,0xe8,
0x1c,0xcd,0x45,0x52,0x47,0x4f,0x95,0x5e,0x42,0x61,0x5a,0x13,0xa5,0x91,0x1e,0x30,
0x6e,0xc5,0xcf,0x98,0x30,0x4a,0xd2,0x5c,0xc2,0x85,0xbd,0x5a,0x37,0x4b,0x31,0x8a,
0x56,0xa4,0x98,0xe8,0x74,0x3a,0xe9,0x8,0x3c,0x8f,0x8c,0x64,0x62,0x6a,0x51,0xf3,
0xd2,0xcf,0x7,0x98,0x9c,0x9c,0x4c,0x9b,0xfe,0xe5,0xd,0x54,0x81,0x72,0x72,0xb9,
0x5c,0x29,0xff,0xbd,0xcc,0x66,0x33,0xb5,0xa1,0x79,0x3e,0x86,0xef,0x36,0x85,0xd0,
0x39,0xaa,0xe7,0xb4,0xce,0xc5,0x4a,0x17,0x42,0x19,0x3d,0x70,0x5b,0xd0,0x18,0xcf,
0x9a,0x30,0x4c,0x9a,0x2d,0x92,0x35,0xa9,0x59,0x93,0xaf,0xb1,0xb9,0xb9,0x39,0x5a,
0x6e,0xb2,0xd4,0xa2,0x86,0xd4,0xa7,0x4a,0x3a,0xd1,0xf9,0x32,0xe,0xd5,0x98,0x9b,
0x9b,0x4b,0x9a,0xfe,0xad,0x40,0x79,0xda,0xf4,0x6f,0x10,0xed,0xb1,0xe7,0xa4,0xd2,
0x84,0xc7,0xe3,0xa1,0xa,0x94,0x13,0x11,0xe1,0x33,0xbc,0x3f,0x64,0x44,0xdb,0xae,
0xb4,0xb9,0x77,0x1f,0xdc,0xb,0xd,0xd,0xd,0x4b,0xc2,0x79,0x7e,0x8a,0xd2,0x48,
0x99,0xa4,0x5,0x8d,0xf1,0xe7,0xff,0x7e,0xd9,0x43,0x8b,0x34,0x2b,0x31,0xc0,0x82,
0x7f,0x50,0xe5,0x35,0xca,0x29,0x44,0x9,0x85,0x69,0x1d,0x5,0xfc,0x3d,0xb9,0xdd,
0xee,0x75,0x49,0x1a,0xad,0xae,0x43,0x1b,0xca,0xa8,0x5,0x8d,0xf1,0x1,0x9c,0x69,
0xd5,0x1b,0x36,0xe9,0xa9,0x3f,0x28,0x67,0x72,0xf7,0xe3,0x74,0xeb,0xa7,0x8,0x8e,
0xcc,0x21,0x96,0x37,0x6d,0xee,0xb5,0xa8,0x21,0xb3,0xd9,0x4c,0x5e,0xaf,0x97,0x7c,
0x3e,0x5f,0xc2,0xbf,0x66,0xb4,0x10,0xbf,0x1b,0xe,0xb2,0xdb,0xed,0xcb,0xb7,0x67,
0x22,0x91,0x8,0x95,0xc0,0xa2,0x49,0x9a,0x6c,0x3b,0x24,0xb5,0x4e,0x5,0x2e,0x4e,
0x85,0x42,0xa1,0xbf,0xf6,0x4d,0x58,0xf7,0x51,0x3f,0x4e,0xb7,0xbe,0x4c,0xf3,0x1,
0xd2,0x75,0x1d,0x66,0xea,0xf6,0xd5,0x53,0x7f,0x50,0x66,0x99,0x6e,0x62,0xb0,0x32,
0x84,0xce,0xd1,0xd5,0x1a,0x68,0xaf,0x55,0xa2,0xe0,0xae,0x4a,0xbe,0x59,0x8d,0x94,
0x38,0xf8,0x33,0x4a,0x60,0x21,0x9f,0xcf,0xb7,0xbc,0xfb,0xa5,0xa3,0xa3,0x43,0x93,
0x34,0x36,0x94,0x65,0xbc,0x41,0xb5,0x9c,0x6,0xfd,0x38,0xdd,0xaa,0xee,0x87,0xf1,
0xf9,0x7c,0xba,0x1c,0x5,0x6b,0x99,0x34,0xa9,0xba,0xe,0xd5,0x3a,0x24,0xdb,0xa5,
0xa7,0xfe,0xc0,0x13,0x87,0xa6,0x31,0x2e,0x85,0xd0,0x39,0x9a,0xb,0xdf,0x60,0xa6,
0xc9,0x80,0x4c,0xc7,0x88,0x1,0xa0,0xe7,0xc5,0x5a,0xe4,0x84,0x34,0x99,0xf6,0xe2,
0x6b,0x91,0x45,0xcb,0xd2,0xef,0xf3,0xf9,0x5e,0xc8,0x7c,0xcc,0x62,0xa2,0xe0,0x0,
0xea,0x9f,0xb8,0xb0,0xe7,0x99,0x3a,0x56,0x9f,0xc6,0xb8,0xb4,0x3,0x15,0x79,0x4f,
0x1a,0xad,0xae,0x43,0xae,0x57,0xbd,0x8b,0xb7,0x67,0xf8,0x67,0xbb,0x8b,0xa8,0x69,
0x0,0x67,0x5a,0x5b,0xd0,0x18,0x5f,0xe,0x3d,0x11,0xc6,0xb1,0x21,0x49,0x92,0xe8,
0xfe,0xfd,0xfb,0x94,0xec,0x66,0x3b,0xd9,0xdd,0x43,0x2e,0xb9,0x96,0x4a,0x60,0xa1,
0x5f,0xf1,0xe3,0x86,0x2f,0xf0,0xe1,0xc0,0x97,0xf8,0xe4,0xe4,0x5a,0x70,0xb8,0xeb,
0x5d,0x47,0xe1,0xbd,0x97,0x4e,0xcb,0x65,0x4d,0x9a,0x1d,0xa8,0x58,0xd2,0x14,0xc6,
0xa4,0xd1,0x6b,0x31,0x30,0x4a,0x16,0x2e,0xa6,0xb1,0x8,0x9d,0xc5,0x44,0x41,0x3f,
0x4e,0xb7,0x5a,0xad,0x56,0x92,0x65,0x99,0x76,0xa1,0x5a,0xf3,0x7b,0xca,0x27,0xd2,
0x70,0xd7,0xa1,0xcf,0xe7,0x5b,0xa2,0x43,0x94,0x5d,0x87,0xdc,0xe6,0xfd,0xd,0x22,
0xd5,0xd3,0x18,0x97,0x2a,0x50,0x9e,0xa8,0x71,0x95,0xc0,0x42,0x26,0x6c,0xa4,0x6c,
0x49,0x73,0xb,0x17,0xcb,0x1,0xd0,0x57,0x5f,0x7d,0x45,0x5a,0x7d,0x2c,0x1f,0xe0,
0xbd,0x28,0x9e,0x4f,0x1c,0x8a,0xa0,0xd7,0xf3,0x11,0xfc,0xa3,0xbf,0xe2,0xc7,0xd,
0xeb,0x81,0x2c,0x77,0x11,0x35,0x15,0xa3,0x88,0x42,0xa1,0xd0,0xca,0xee,0x8f,0x8e,
0x8e,0xe,0xcd,0xd,0xaa,0xa7,0xad,0x98,0x1d,0x5,0xea,0xa,0xec,0x39,0x9c,0xe8,
0x7a,0xcd,0xfc,0x9a,0xe6,0xdf,0x97,0x65,0x39,0x31,0x1b,0x40,0xed,0x32,0x4d,0xf5,
0x3d,0x19,0x21,0xb2,0xc7,0xe3,0x31,0xee,0x2b,0xd2,0xa9,0x43,0x8c,0x74,0x1d,0x72,
0xa8,0xc0,0xf6,0x21,0x3c,0xf7,0x46,0x6d,0xc6,0x26,0xda,0x7,0xf7,0xc2,0x51,0x78,
0xef,0x65,0x4b,0x1a,0x8e,0xdf,0x13,0x8e,0x8b,0x24,0x7d,0x2c,0x6c,0x81,0xf,0xe3,
0xd8,0xd0,0xf,0x18,0xd9,0x1a,0x42,0xe7,0xa8,0xd1,0x76,0xf3,0x7c,0xbf,0x5d,0x92,
0x15,0xce,0xf3,0x86,0x34,0xd1,0x68,0x34,0xa9,0xfd,0x26,0x9d,0xb,0x59,0xfd,0x6c,
0x87,0xd,0x65,0x4b,0x84,0x5a,0xb6,0x44,0xe6,0xcc,0x50,0x46,0xbe,0xa2,0x24,0x3a,
0x24,0x9b,0xae,0x43,0x16,0xe5,0x6d,0x68,0x9e,0x3f,0x84,0xfd,0x8f,0x1,0x90,0x9,
0x1b,0xa9,0x4,0x96,0xc4,0x67,0xb9,0xb0,0xe7,0x19,0xdf,0xb8,0x99,0xae,0x43,0xd8,
0xff,0xd8,0x84,0x8d,0xf4,0x25,0x3e,0x39,0xa9,0x25,0xe8,0x2b,0x50,0x4e,0xf5,0xa8,
0x5b,0xfc,0x15,0x3f,0x6e,0xf8,0x8,0xfe,0xd1,0x41,0x9c,0xf7,0xac,0x75,0xb2,0xdc,
0xc6,0xb5,0xd2,0x62,0x14,0xe9,0x9f,0x22,0xb3,0x5c,0x69,0x60,0xad,0xd,0x9a,0xac,
0x17,0x5f,0xcb,0x41,0x10,0x44,0x7b,0x2c,0x9d,0x65,0x9f,0x2b,0xcf,0x7d,0xe8,0xf1,
0xff,0x82,0xef,0x5f,0x5,0x90,0xf4,0x87,0xcd,0x96,0x34,0x93,0x93,0x93,0xa4,0x15,
0xd7,0xa7,0xd3,0x21,0xcb,0xdd,0x75,0xb8,0x1b,0xe,0xb2,0x43,0x26,0x1b,0xca,0x68,
0x37,0x1c,0x4,0x80,0x3e,0xc0,0x7b,0x51,0x37,0x6a,0x9f,0x96,0xc0,0x42,0x25,0xb0,
0x50,0x1b,0x9a,0xe7,0xb3,0x7d,0x83,0x14,0x69,0x86,0x3c,0xb6,0xa1,0x79,0x9e,0x6d,
0x32,0x5f,0xe2,0x93,0x93,0x5f,0xe0,0xc3,0x81,0xb5,0x4c,0x16,0x7e,0x3d,0x62,0x55,
0xca,0xf,0x5a,0xa4,0x39,0x87,0x13,0x5d,0x4a,0xd2,0x44,0x22,0x91,0xa4,0x64,0xd1,
0xeb,0x3a,0xe6,0xe9,0x9d,0x77,0x70,0xc3,0xc2,0xe1,0x8a,0x96,0x9f,0xc8,0xed,0x76,
0x67,0x45,0x1a,0xab,0xd5,0x9a,0xd6,0xdc,0x97,0x6a,0xfa,0x89,0x9e,0xae,0xc3,0xbb,
0x88,0x9a,0x52,0xdd,0x32,0x21,0x74,0x8e,0xee,0x42,0x35,0xf1,0xcd,0x72,0x0,0xf5,
0x4f,0x98,0x34,0x0,0x68,0x27,0xb6,0x27,0xac,0x2b,0xcb,0x61,0x66,0x4c,0xd5,0xda,
0xc1,0xfe,0xad,0x2b,0xe8,0x77,0x5e,0xc2,0x85,0xbd,0x21,0x74,0x8e,0xe6,0x6b,0xdb,
0xb1,0x1e,0xb2,0xac,0xba,0x69,0x57,0x6b,0xa8,0xc6,0x4d,0xc,0x56,0x9a,0x24,0x13,
0xc9,0xb2,0x4c,0x12,0xa,0x33,0x26,0xb,0x67,0xc8,0xf8,0x94,0xe3,0x53,0x31,0x95,
0xcb,0x40,0x8b,0xc8,0xfd,0x38,0xdd,0x9a,0x6e,0xa8,0x86,0xd7,0xeb,0x25,0xaf,0xd7,
0x4b,0x5a,0x3a,0x24,0x93,0xae,0xc3,0x69,0x8c,0x4b,0x3,0x38,0xd3,0xda,0x86,0xe6,
0x79,0x16,0xf0,0x6a,0x47,0x83,0xda,0x45,0xc1,0xeb,0x5d,0xbc,0x3d,0xc3,0x1e,0x30,
0x17,0xf6,0x3c,0x3,0x40,0x9b,0xb1,0x69,0xd9,0x9a,0xf6,0xec,0x90,0xa9,0x1e,0x75,
0x8b,0xe9,0xc2,0xc3,0x20,0xda,0x63,0x6c,0x93,0xc9,0x27,0xbb,0xbf,0xde,0x75,0x13,
0x83,0x95,0x3b,0x50,0x41,0x4e,0xa7,0x33,0x37,0xba,0x45,0x4f,0x95,0x3e,0x99,0xe7,
0xac,0x5,0x8d,0x71,0xb5,0x27,0xcd,0x68,0x3f,0x8b,0xcb,0xe5,0x22,0x19,0x36,0x62,
0x2b,0x83,0x9e,0x54,0x60,0x32,0x9b,0x8d,0x9e,0x49,0x34,0x91,0x48,0x84,0xac,0x56,
0x6b,0x56,0x5d,0x87,0xb3,0x98,0x28,0xb8,0x85,0x8b,0xe5,0x41,0xb4,0xc7,0xf8,0x25,
0x37,0x25,0xc9,0x8e,0xc2,0x7b,0x6f,0x1f,0xdc,0xb,0x9f,0x20,0x30,0xa2,0xfc,0x9c,
0x36,0x34,0xcf,0xef,0xc4,0x76,0xa,0xa2,0x3d,0xe6,0x47,0xdb,0xa4,0x9,0x1b,0xe9,
0x10,0xf6,0x3f,0xe6,0xe4,0x85,0xf2,0x26,0x4b,0x57,0xc4,0x35,0xd2,0x90,0x97,0xce,
0xa8,0xb8,0xb,0xd5,0x2f,0xd8,0xfd,0x97,0xeb,0x6b,0xe7,0x2a,0x1b,0x76,0x14,0xde,
0x7b,0x12,0xa,0xe9,0xe0,0xc1,0x83,0xf9,0x53,0x66,0xd0,0xeb,0xe1,0x61,0x77,0xb1,
0x11,0x96,0xcb,0xb2,0x9c,0x68,0x2c,0x33,0x62,0x65,0xd0,0xfa,0x9e,0x98,0x34,0xa7,
0x4e,0x9d,0x4a,0xb8,0xaa,0xd9,0x76,0xc2,0x4,0x1,0x40,0x76,0xc8,0x9,0x1d,0x92,
0xee,0x34,0xbf,0x8b,0xa8,0x29,0x8c,0x63,0x43,0xf5,0xa8,0x5b,0xe4,0xcd,0x9d,0xca,
0xdb,0xc5,0x59,0x2a,0xd6,0x21,0x7d,0xe8,0xf1,0x4b,0x28,0xa4,0x9b,0x18,0xac,0x3c,
0x87,0x13,0x5d,0x12,0xa,0x49,0x86,0x8d,0x6c,0x28,0x23,0x16,0xaa,0x2b,0x31,0xc7,
0x4b,0x19,0x72,0xa9,0x87,0x44,0x5c,0xc5,0xd7,0x35,0xe7,0x70,0xa2,0xeb,0x9f,0xb0,
0xfb,0x19,0xdf,0x68,0xf9,0x64,0xf7,0x4f,0x37,0xae,0xb8,0x1e,0x75,0x8b,0xc5,0x28,
0x22,0x59,0x96,0xd3,0xb6,0x4,0xac,0xa,0x64,0x59,0x4e,0x49,0x9a,0x36,0x34,0xcf,
0x1b,0x6d,0xd6,0x51,0x3f,0xa,0x65,0x43,0xd9,0x92,0x90,0x29,0x13,0xd2,0xf4,0xe3,
0x74,0xab,0xba,0xa1,0xad,0x4,0x96,0x84,0xe,0x31,0xb2,0x39,0xa7,0x31,0x2e,0x29,
0x6f,0x0,0x3d,0xde,0xae,0x28,0x2e,0x6f,0x93,0x50,0x48,0x3d,0x38,0x7e,0x9e,0x87,
0xcb,0xf1,0x28,0x5f,0xd6,0x16,0x32,0x6c,0x9,0xed,0xb6,0xd2,0x96,0xf9,0x3f,0xa0,
0xe9,0xc1,0x4d,0xc,0x56,0xf6,0xe3,0x74,0xeb,0x67,0x78,0x7f,0x28,0x84,0xce,0xd1,
0x2e,0xfc,0x4b,0xf4,0x5d,0xbc,0x3d,0xe3,0xc0,0x8e,0xbc,0xb4,0xfb,0xa7,0xbb,0xd1,
0x2b,0x2b,0x2b,0xf5,0x4f,0x85,0x59,0xd,0xa4,0x1a,0xaa,0x31,0x85,0x1f,0x5e,0x31,
0x61,0xa3,0x61,0xdf,0x4e,0xb2,0xc,0x99,0xd1,0x61,0xe5,0xb2,0x2c,0x27,0xcd,0x28,
0x71,0x91,0xb0,0xf,0x3d,0xfe,0x74,0xb6,0x93,0x69,0x8c,0x4b,0xbf,0xe0,0xfb,0x57,
0xd5,0x7f,0x26,0x8a,0xcb,0xdb,0xea,0x51,0xb7,0x18,0x42,0xe7,0xa8,0x91,0x8d,0x5d,
0x8b,0x1a,0xda,0x85,0x6a,0xe2,0xba,0x92,0x7a,0x22,0xa9,0xd,0x65,0x9,0xc2,0x64,
0xf2,0xa,0xb6,0xd1,0x8c,0x9c,0xd,0x65,0x14,0x42,0xe7,0x68,0x7,0xfe,0x79,0xf2,
0x0,0xea,0x9f,0xec,0x40,0x5,0x99,0x51,0xfc,0xc2,0x81,0xd2,0x86,0xe6,0xf9,0xbb,
0x88,0x9a,0xf2,0xc1,0x26,0x73,0x7,0x37,0x2c,0x4b,0x6e,0x74,0x49,0x22,0x97,0xcb,
0x45,0xdd,0xdd,0xdd,0x94,0xae,0xab,0x34,0xef,0x48,0x93,0xac,0x1f,0x21,0x93,0x1,
0x16,0x46,0x32,0x64,0x5a,0x38,0x75,0xea,0x94,0x61,0x91,0xcc,0xa7,0x56,0x18,0xc7,
0x86,0x94,0xa7,0xd6,0x1,0xd4,0x3f,0x51,0xd7,0x29,0x58,0x5f,0xe9,0x5d,0x3d,0x38,
0x7e,0x9e,0xc3,0xaf,0x4b,0xb8,0xb0,0xd7,0x84,0x8d,0x4b,0x7a,0x8f,0x5a,0xd0,0x18,
0xdf,0x8c,0x4d,0xb4,0x5,0xa5,0x29,0x45,0xf9,0x72,0xac,0x20,0xda,0x63,0xaf,0xe0,
0x15,0x7a,0xb,0x6f,0xfe,0xb6,0x1,0x1b,0x8,0x0,0x59,0xad,0x56,0xf2,0x78,0x3c,
0x14,0x89,0x44,0x68,0x6e,0x6e,0x8e,0x1a,0x1a,0x1a,0xc8,0xe,0x99,0xe6,0x10,0x2b,
0x58,0xd,0xbb,0x3f,0x1f,0x6e,0x87,0xb0,0xff,0xb1,0x72,0xbc,0x92,0x2c,0xcb,0xe4,
0xf3,0xf9,0xe8,0xfa,0xf5,0xeb,0xab,0x2f,0xe6,0xb3,0x21,0x8d,0xd6,0x7c,0x0,0x2f,
0xe,0x3f,0x30,0x12,0x96,0x19,0xcd,0x90,0x25,0x83,0xc3,0xe1,0xd0,0xcc,0x4a,0xa9,
0x4f,0xad,0xb3,0x8,0x87,0x93,0xe9,0x90,0x36,0x34,0xcf,0xf7,0xa1,0xc7,0x7f,0x0,
0xf5,0x4f,0x82,0x68,0x8f,0xf1,0x6d,0x70,0x8,0xfb,0x1f,0x1b,0x79,0xe1,0x8d,0xc3,
0x2f,0xfe,0xc,0xe,0xe1,0xb4,0xb4,0x5,0xcf,0x42,0xd0,0xfa,0xfc,0xff,0xc6,0x7f,
0x65,0x6d,0x55,0xe1,0x83,0xc8,0xe3,0xd8,0x4f,0xbd,0xbd,0xbd,0x49,0x4f,0xe7,0xe7,
0x75,0x2f,0xba,0x83,0x1b,0x96,0x5c,0xd8,0xfd,0xa7,0x31,0x2e,0x5d,0x41,0xbf,0x53,
0x99,0x59,0x4c,0x46,0xe4,0x75,0xd3,0xbf,0x91,0x8e,0x34,0x7a,0x9b,0xbd,0x32,0xc9,
0x90,0xa9,0x35,0x4c,0xaa,0xe,0xce,0x2b,0xe8,0x77,0xb6,0xa0,0x31,0xae,0x3c,0xb5,
0x52,0x4d,0x94,0x57,0xda,0x45,0x94,0xcf,0x7b,0xe8,0x1d,0x68,0xb7,0xf,0xee,0x85,
0x1d,0xa8,0xa0,0x59,0x4c,0x14,0x1c,0x85,0xf7,0x5e,0x9,0x2c,0x49,0x6f,0x3e,0xd6,
0x16,0x1c,0x96,0xb1,0x28,0xe7,0x93,0x96,0x37,0xd2,0x16,0x94,0x66,0xfd,0x22,0x83,
0x51,0xbb,0x7f,0x14,0x97,0xb7,0x2d,0xb7,0xdd,0x5f,0xeb,0x46,0x37,0x9b,0xcd,0xe4,
0x72,0xb9,0x34,0x89,0xbc,0xae,0x30,0x35,0x35,0x45,0xaf,0x99,0x5f,0xcb,0x8a,0x34,
0x76,0xbb,0x3d,0xa3,0xc,0x99,0x32,0xb5,0xac,0x75,0x3a,0xf3,0xc9,0x6a,0x74,0xa2,
0x7c,0x5,0xca,0x13,0x73,0xaf,0x78,0x63,0xeb,0xd1,0x19,0x83,0x38,0xef,0x91,0x50,
0x48,0x97,0x70,0x61,0xef,0x4d,0xc,0x56,0x4a,0x28,0x4c,0xf9,0x24,0x3c,0x6b,0xb,
0x9,0x85,0x89,0x10,0x97,0xb,0x98,0x26,0x6c,0xa4,0xa,0x94,0x93,0xd1,0x97,0xde,
0xb4,0x56,0x3d,0xea,0x16,0x9f,0x17,0x62,0x53,0x6a,0xc1,0x7a,0xd4,0x2d,0xb2,0xdd,
0x5f,0xab,0x85,0xdd,0x88,0xe,0x59,0x72,0xa3,0x4b,0x12,0x55,0x55,0x55,0x51,0x20,
0x10,0xc8,0xee,0xad,0xca,0xb5,0x8a,0x54,0x43,0x35,0xf6,0xc1,0xbd,0x90,0x8a,0x34,
0xca,0x19,0x59,0x44,0x4,0x19,0x36,0xdd,0x19,0xb2,0x74,0x69,0xee,0xcf,0xd1,0x35,
0xf0,0x3b,0x6b,0x25,0xfd,0xd1,0xda,0xfa,0x17,0xa3,0xff,0xf1,0x4a,0xbb,0x88,0x9a,
0x40,0xe9,0x86,0x86,0xb4,0xa0,0x31,0x3e,0x8b,0x89,0x82,0x1d,0xa8,0x48,0xfb,0x8a,
0x42,0x10,0xed,0xb1,0x62,0x14,0x91,0x1d,0x32,0xed,0x86,0x83,0x98,0x9c,0x6c,0xc4,
0x4,0x40,0xf5,0xa8,0x5b,0x6c,0x41,0x63,0x3c,0x59,0xa1,0xd6,0xa8,0xdd,0x3f,0x5d,
0xb8,0xcb,0xc3,0x25,0x7e,0xc5,0x8f,0x1b,0x4e,0xe1,0xe3,0x93,0x46,0xed,0xfe,0xca,
0x16,0x5,0xb5,0xe,0xf1,0x7a,0xbd,0x34,0x3c,0x3c,0xbc,0x76,0x75,0x48,0x2e,0x48,
0x93,0xae,0x17,0x9f,0xc3,0x0,0xe,0x8d,0xd2,0x4d,0x3b,0xe1,0x5b,0xcd,0xe1,0x70,
0xa4,0xad,0x9,0x6d,0x41,0x29,0xf9,0x7c,0x3e,0xfa,0x9f,0xee,0xe9,0xdb,0xb5,0xa8,
0x31,0xb4,0xd9,0xf8,0x66,0xe2,0x30,0x49,0x4d,0x20,0xad,0xde,0x71,0xbe,0x9,0x98,
0x8,0xe9,0x9c,0xbf,0xfc,0x75,0x64,0xd8,0xa8,0x18,0x45,0xf4,0x39,0xba,0x6,0xb8,
0xd2,0x5f,0x2,0x4b,0xc2,0x7e,0xcf,0x6,0xcd,0x6c,0xe6,0x1c,0xb3,0xdd,0x3f,0x95,
0x2d,0xe8,0x79,0xb2,0x85,0x6e,0xe1,0x62,0xf9,0x4d,0xc,0x56,0xa6,0xb3,0xfb,0xb3,
0xe,0xe1,0x74,0xaf,0x5a,0x87,0xf4,0xf6,0xf6,0xae,0x2f,0x1d,0xb2,0xdc,0xa4,0xd9,
0x2c,0x6d,0xd2,0x6c,0x75,0x4e,0x46,0x1a,0xfe,0xf,0xba,0x83,0x1b,0x16,0xfe,0xf,
0x4d,0x95,0x21,0x33,0x32,0x2b,0xfa,0x3,0xbc,0x17,0xfd,0x7,0xeb,0xdf,0xd3,0x7f,
0x7e,0xf1,0xef,0x4f,0xfb,0x71,0xba,0xd5,0xc8,0x54,0x14,0xa5,0x5d,0x24,0x19,0x81,
0x92,0x39,0x1e,0x38,0xfc,0x62,0xa7,0xac,0x9e,0x10,0x8e,0xbf,0xe,0xeb,0x18,0x76,
0x2c,0xbb,0x51,0xfb,0xb4,0x18,0x45,0xe4,0x46,0xed,0x53,0xa5,0xee,0xca,0x56,0x47,
0xa4,0xab,0x71,0xf1,0x8d,0x1f,0xc6,0xb1,0x21,0x4e,0x2f,0xff,0x80,0x91,0xad,0xc9,
0x74,0x8,0x17,0xd,0x95,0x3a,0x64,0x4d,0xa5,0x7b,0xf3,0x85,0x34,0xa9,0x86,0x6a,
0xa8,0x9b,0xbd,0x2,0x81,0x40,0x22,0x43,0xc6,0xe2,0x5a,0xeb,0x44,0xca,0x64,0xb0,
0x3a,0x57,0xd7,0xf,0xa0,0xfe,0x89,0x51,0xe1,0xbc,0x1b,0x8e,0x44,0x43,0x9b,0x9a,
0x40,0x6a,0x31,0xab,0xc,0xbf,0x6a,0x51,0xa3,0x2b,0x63,0xa7,0xd4,0x16,0x26,0x6c,
0x24,0x0,0xb4,0x3,0x15,0x64,0xc2,0x46,0x3a,0xa,0xef,0x3d,0x16,0xc6,0x3b,0xb1,
0x9d,0x36,0x63,0x93,0xa1,0x77,0x44,0x53,0xd9,0xfd,0xd3,0x4d,0x50,0xa9,0xaa,0xaa,
0x4a,0x84,0x9f,0x9f,0xa3,0x6b,0xe0,0x14,0x3e,0x3e,0x79,0x16,0xe1,0x30,0x67,0xb,
0xd5,0x3a,0x64,0x45,0xda,0x7f,0x5,0x69,0x92,0x93,0xc6,0xe9,0x74,0x92,0xb,0x7b,
0x9e,0x71,0xd8,0xa3,0x95,0x21,0xe3,0x8c,0x5c,0x26,0x76,0xf7,0x1e,0x1c,0x3f,0xcf,
0xc2,0xfa,0x0,0xea,0x9f,0xe8,0x6d,0x90,0xa,0xa2,0x3d,0xa6,0xac,0xed,0x28,0x9,
0xa4,0xfe,0x73,0x9c,0x9,0xe3,0xfa,0x8b,0x1e,0x72,0x72,0x38,0xb3,0x3,0x15,0x54,
0x2,0xb,0xd5,0xa2,0x86,0x2a,0x50,0x4e,0xe7,0x70,0xa2,0xcb,0x84,0x8d,0xe4,0xc2,
0x9e,0x67,0x7c,0x82,0x2f,0x87,0x73,0x59,0x69,0xf7,0x4f,0x75,0xb,0xf0,0x21,0xd6,
0x82,0xc6,0xf8,0x16,0x94,0x2e,0xd1,0x21,0x91,0x48,0xc4,0x50,0x7b,0x84,0x80,0xe,
0x4,0x2,0x81,0x94,0x93,0x68,0x9c,0x4e,0x27,0x39,0x9d,0xce,0x17,0x7a,0xda,0xeb,
0x51,0xb7,0x98,0x2c,0x43,0x96,0xc9,0x4c,0xe8,0x64,0xb7,0x0,0x13,0xa7,0x18,0x45,
0x74,0x14,0xde,0x7b,0xe9,0x8a,0x9c,0x1c,0x22,0xf2,0x46,0x55,0x13,0x48,0x6d,0x7f,
0xe1,0x67,0x42,0xb4,0x86,0xad,0x6b,0xa5,0x55,0x59,0xbb,0x84,0x71,0x6c,0x88,0xc7,
0x1e,0x9d,0xc3,0x89,0xae,0xa,0x94,0x53,0xb,0x1a,0xe3,0xd9,0x4c,0x8f,0xd1,0x7a,
0x64,0x28,0x55,0x63,0x15,0x3b,0x2f,0x94,0x3a,0x44,0x84,0x59,0x39,0x40,0xaa,0x49,
0x34,0x2e,0xec,0x79,0xe6,0xc2,0x9e,0x67,0xca,0x74,0x70,0xb2,0xc,0xd9,0xc8,0xc8,
0x48,0xd6,0x64,0xc9,0x94,0x38,0x6c,0x9e,0xe4,0x50,0x88,0x9,0xa4,0x4c,0x13,0x2b,
0xc3,0xaf,0x59,0x4c,0x14,0xd8,0x21,0x93,0x1b,0xb5,0x4f,0xf5,0x14,0x4a,0xd5,0x86,
0x4d,0xfe,0xfc,0x74,0xc3,0xb5,0xb3,0x5d,0x15,0x28,0x27,0x8f,0xc7,0x43,0x3a,0xec,
0x4a,0x2,0xab,0x41,0x1a,0xbd,0x35,0x4,0xce,0x6a,0xe9,0x49,0x57,0x27,0x73,0xae,
0xb6,0xa0,0x31,0xce,0xef,0xbf,0xa7,0xab,0xca,0xf3,0xcc,0xab,0x62,0x14,0xa5,0x24,
0x4e,0x3d,0xea,0x16,0x95,0x62,0x3b,0x84,0xce,0x51,0x9e,0x19,0x76,0x4,0x9e,0x47,
0xfb,0xe0,0x5e,0x50,0x3b,0x94,0x3f,0x47,0xd7,0x80,0xd,0x65,0xa4,0xb7,0x50,0xaa,
0x26,0xa8,0x9e,0xe7,0x40,0xb2,0xb5,0xfb,0xaf,0xe8,0x24,0x15,0x81,0xec,0x49,0xa3,
0xa7,0x86,0xd0,0x8f,0xd3,0xad,0x1e,0xeb,0x3e,0x8a,0x44,0x22,0x74,0xea,0xd4,0x29,
0x5d,0x64,0x49,0xe6,0x48,0x66,0xf1,0xac,0x47,0x47,0x70,0x2f,0x5,0x13,0x27,0x88,
0xf6,0x98,0x92,0x6c,0x2d,0x68,0x8c,0xab,0xc3,0xb0,0x1e,0x1c,0x3f,0xf,0x80,0x76,
0xa1,0x3a,0x69,0xc1,0xf4,0x36,0xae,0x95,0xee,0x86,0x23,0xa3,0xa7,0xb7,0x8d,0xda,
0x70,0x8c,0xda,0x50,0x82,0x68,0x8f,0xed,0x40,0x5,0xc1,0xe8,0xab,0x5c,0x2,0xf9,
0x49,0x9a,0xab,0xf8,0xba,0x46,0x42,0x21,0x15,0xa3,0x28,0x2d,0x59,0xd8,0xd4,0x78,
0x14,0xde,0x7b,0x5e,0x1c,0x7e,0x0,0x80,0xb6,0xa0,0x94,0x3e,0x41,0x60,0x84,0xfb,
0xe2,0xf5,0x9a,0x31,0x95,0xc4,0xb1,0xa1,0x8c,0xc2,0x38,0x36,0x74,0x16,0xe1,0xf0,
0x1,0xd4,0x3f,0x49,0xd6,0x4c,0xf5,0xd,0x22,0xd5,0x2b,0xf1,0x22,0x9b,0x9e,0x1e,
0x7c,0x23,0x75,0x97,0x54,0xe9,0x5f,0x21,0xdc,0xf3,0x1c,0x7,0xf,0x1e,0xd4,0x45,
0x9a,0x28,0x2e,0x6f,0xd3,0xb3,0xd1,0xb9,0xf5,0xf6,0x26,0x6,0x2b,0xb7,0xa0,0x94,
0xe,0x61,0xff,0xe3,0x5d,0xa8,0xa6,0x5a,0xd4,0xd0,0x2d,0x5c,0x2c,0xe7,0x50,0x2b,
0x93,0xee,0x3d,0xde,0x60,0x46,0x5f,0xee,0x5d,0x2e,0x51,0x9e,0x89,0xdd,0x3f,0x86,
0xef,0x36,0x71,0xfa,0x57,0x19,0xe,0x56,0x56,0x56,0x8a,0xf4,0xef,0x5a,0x85,0x56,
0x2f,0x7e,0xa6,0x55,0xeb,0x5a,0xd4,0x90,0x9,0x1b,0x5f,0x78,0x58,0x87,0x7b,0xe4,
0x6b,0x51,0x63,0xd8,0x96,0xaf,0x24,0xce,0x6a,0xbd,0x1e,0xcc,0x63,0x8f,0xf4,0x84,
0x59,0xea,0x39,0x2,0x9c,0xdd,0xe2,0xf4,0xaf,0xa8,0xb2,0xaf,0x13,0xd2,0x18,0x29,
0xec,0x69,0x15,0x24,0x13,0xf5,0x1,0x15,0x29,0xb8,0x9b,0x91,0x33,0x52,0xf9,0xd4,
0x39,0x98,0x6a,0xfd,0x8a,0x1f,0x37,0xdc,0xc6,0xb5,0xd2,0xdf,0x63,0xef,0x62,0x32,
0x1b,0x8e,0x56,0xd7,0xa1,0xd9,0x6c,0x16,0xe9,0xdf,0x97,0x81,0x34,0x46,0x9f,0x2d,
0x48,0xe6,0xc1,0xda,0x89,0xed,0xa4,0x2e,0x14,0x72,0x3d,0x83,0x67,0x7e,0xe5,0x33,
0x49,0x94,0x7d,0xf5,0x1f,0xc1,0x3f,0x1a,0x42,0xe7,0xe8,0x1f,0xd0,0xf4,0x60,0x3,
0x36,0xd0,0x11,0x78,0x1e,0xf5,0xa1,0xc7,0x9f,0xaa,0xeb,0x50,0x8,0x77,0x41,0x1a,
0x43,0x63,0x50,0x8f,0xc0,0xf3,0xe8,0x2c,0xc2,0x61,0x19,0x36,0xa,0xe3,0xd8,0xd0,
0x51,0x78,0xef,0xed,0xc4,0x76,0xfa,0x6,0x91,0x6a,0x1e,0x5d,0x94,0x6f,0x13,0x4e,
0xd4,0x7d,0xf5,0xbc,0x3e,0x45,0x70,0x24,0x8c,0x63,0x43,0x5e,0x1c,0x7e,0xa0,0x6e,
0x1d,0x5e,0x17,0x5d,0x87,0x2,0xd9,0x43,0x8f,0xeb,0x38,0x95,0x5d,0xbd,0x18,0x45,
0xd4,0x83,0xe3,0xe7,0x39,0xfd,0x5b,0x8c,0x22,0xa,0xa1,0x73,0xf4,0x8,0x3c,0x8f,
0xf4,0xb8,0x85,0x73,0x49,0x92,0x5e,0x7c,0xd6,0xa5,0x24,0xc8,0x47,0xf0,0x8f,0x86,
0x71,0x6c,0xc8,0x8f,0xb6,0x49,0x37,0x6a,0x9f,0xfe,0x1d,0x5e,0x5f,0xff,0x5d,0x87,
0x2,0xd9,0x21,0x13,0x43,0xa5,0xba,0x8,0xc7,0xcf,0x47,0x30,0x61,0xf8,0xd7,0xab,
0x35,0x5b,0xeb,0x57,0xfc,0xb8,0xe1,0x7,0x8c,0x6c,0x8d,0xa0,0xd7,0xf3,0x5,0x3e,
0x1c,0x50,0xdf,0x22,0x1f,0xe0,0xbd,0xe8,0x3e,0xb8,0x17,0x7e,0x87,0x7f,0x7c,0x39,
0xbb,0xe,0x5,0x56,0x97,0x34,0x51,0x5c,0xde,0xc6,0x99,0xa2,0x7a,0xd4,0x2d,0x6,
0xd1,0x1e,0xcb,0xa5,0xd0,0x9f,0x43,0xac,0x20,0x86,0xef,0x36,0x5d,0xc2,0x85,0xbd,
0x5f,0xe2,0x93,0x93,0xac,0x45,0x94,0x4,0xf1,0xe2,0xf0,0x83,0x5d,0xa8,0x26,0xb,
0x36,0xbf,0xe0,0xf6,0x15,0x3a,0x44,0x20,0x2b,0xd2,0xac,0xb4,0x8f,0x6a,0x39,0xc3,
0x2c,0x16,0xeb,0x9f,0x22,0x38,0xa2,0x24,0x48,0x8,0x9d,0xa3,0xef,0xe2,0xed,0x19,
0x37,0x6a,0x9f,0x96,0xe2,0x6f,0x45,0xd7,0xa1,0xc0,0xca,0x91,0x66,0x39,0x8d,0x96,
0xcb,0x6d,0x2d,0x89,0xe2,0xf2,0x36,0xb5,0x58,0xe7,0xdb,0xe4,0x5d,0xbc,0x3d,0xf3,
0x16,0xde,0xfc,0x2d,0x99,0xe,0x11,0x5d,0x87,0x2,0xeb,0x9e,0x34,0x5c,0x13,0x19,
0xc4,0xf9,0x25,0x3a,0xe4,0x23,0xf8,0x47,0xfd,0x68,0x9b,0x3c,0x84,0xfd,0x8f,0x93,
0xe9,0x10,0xd1,0x75,0x28,0x90,0x53,0x8c,0x8c,0x8c,0xe8,0x32,0x5e,0xae,0x84,0xe,
0xb9,0x8a,0xaf,0x6b,0xb4,0x74,0xc8,0x11,0x78,0x1e,0xb9,0x51,0xfb,0x54,0xad,0x43,
0x84,0xed,0x44,0x60,0xd5,0xa1,0xd7,0xda,0xbf,0x5c,0x35,0x91,0x64,0x3a,0xc4,0x8b,
0xc3,0xf,0x38,0xdd,0xb,0xd1,0x75,0x28,0xf0,0xb2,0x91,0x86,0x75,0x48,0x4,0xbd,
0x1e,0x75,0xd1,0x90,0x87,0x72,0xef,0x83,0x7b,0xa1,0xa,0x95,0x49,0x75,0x88,0x8,
0xb3,0x4,0xd6,0xc,0x69,0x5a,0xd0,0x18,0x37,0x6a,0xd8,0x9c,0x43,0xac,0xe0,0x36,
0xae,0x95,0x5e,0xc2,0x85,0xbd,0xa7,0xf0,0xf1,0x49,0x75,0x3d,0xc4,0x8f,0xb6,0xc9,
0xb7,0xf0,0xe6,0x6f,0xbb,0x50,0x4d,0x45,0xf8,0x1b,0x61,0x3b,0x11,0x58,0x1f,0x88,
0x46,0xa3,0x24,0xcb,0x7f,0xf5,0x85,0x71,0xef,0xbc,0x1e,0x6f,0x56,0xb2,0x30,0xeb,
0x8,0x3c,0x8f,0x6a,0x51,0x43,0xca,0x74,0xaf,0xd2,0xfe,0x2e,0xd2,0xbd,0x2,0xeb,
0x6,0x4d,0x4d,0x4d,0x24,0x49,0x12,0xd9,0x50,0x96,0xe8,0x87,0xff,0x9,0xa3,0x96,
0x64,0xde,0xac,0x8f,0xe0,0x1f,0xd,0xa2,0x3d,0xa6,0xd4,0x21,0xc2,0xfe,0x2e,0xf0,
0xd2,0x61,0x6a,0x6a,0x8a,0x9a,0x9a,0x9a,0x12,0xef,0x50,0xbe,0x82,0x57,0x68,0x33,
0x36,0xd1,0xe,0x54,0xd0,0x4e,0x6c,0xa7,0x9d,0xd8,0x4e,0x36,0x94,0x91,0x5,0x9b,
0x13,0x4,0x11,0xf6,0x77,0x1,0x1,0xfc,0xff,0x4b,0xc7,0x2e,0x97,0x8b,0xec,0x76,
0xfb,0xb,0xcb,0xe3,0xf1,0x8,0x1d,0x22,0xb0,0x4,0xff,0x37,0x0,0xeb,0x71,0xb2,
0xda,0xfa,0xaf,0xcf,0x94,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/llantaI.png
0x0,0x0,0x1,0x6f,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x36,0x0,0x0,0x0,0x5b,0x8,0x6,0x0,0x0,0x0,0x38,0x2f,0x76,0x59,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xdf,0x4,0xb,0x1,0x36,0x31,0xd4,0x3d,0xde,0xe3,0x0,0x0,0x0,0xfc,0x49,0x44,
0x41,0x54,0x78,0xda,0xed,0xdc,0x31,0x4e,0x85,0x40,0x14,0x40,0xd1,0x3b,0x42,0x6c,
0x80,0x6,0xad,0x6c,0xd8,0x3,0xa1,0x71,0xd,0x92,0x68,0xed,0xce,0xdc,0x80,0xb6,
0x86,0x44,0x57,0x41,0xd8,0x2,0x6c,0xe0,0x57,0x44,0x1b,0x63,0xb0,0xf1,0xdb,0x5b,
0xce,0xcb,0xbd,0xd5,0xe4,0x75,0x27,0x33,0xaf,0x9d,0x4,0x5c,0x2,0xf7,0xc0,0x35,
0x31,0x3a,0x1,0xaf,0x25,0xf0,0x0,0x3c,0xf,0xc3,0x50,0x44,0x50,0xcd,0xf3,0xfc,
0xd,0x3c,0x96,0x40,0xdb,0xf7,0x7d,0x31,0x4d,0x13,0x4d,0xd3,0x64,0x8d,0xda,0xf7,
0x9d,0x71,0x1c,0x8b,0x65,0x59,0xda,0xf2,0x3c,0xac,0xaa,0x8a,0xba,0xae,0xb3,0x86,
0x1d,0xc7,0xf1,0x77,0xbe,0x20,0x68,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,
0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x58,
0x9e,0xdd,0x44,0x85,0xdd,0x45,0x85,0xb5,0xee,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,
0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0xfe,
0xd9,0x1a,0x15,0xf6,0x16,0x15,0xf6,0xe1,0x8e,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,
0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,
0xb0,0x4c,0x2b,0x81,0x4f,0xe0,0x58,0xd7,0x35,0x45,0xf8,0xc,0xe8,0x5c,0x2,0xae,
0x80,0x97,0xae,0xeb,0x6e,0x73,0xbf,0xa5,0x94,0xd2,0xd7,0xb6,0x6d,0xef,0xc0,0x53,
0xfa,0x9d,0xf5,0x81,0x9e,0xe5,0x4c,0xe4,0x7e,0x0,0x52,0xcf,0x26,0x46,0x22,0xa2,
0x3f,0xf8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/Interfaz.png
0x0,0x0,0x8c,0x57,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0x22,0x0,0x0,0x1,0x9f,0x8,0x6,0x0,0x0,0x0,0xfb,0xea,0xdf,0x1d,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xdf,0x4,0x14,0x2,0x22,0x22,0x74,0x11,0xb1,0xf8,0x0,0x0,0x20,0x0,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x9d,0x77,0x78,0x5c,0xc5,0xd5,0xc6,0x7f,0xf7,0x6e,0xd1,
0xaa,0x77,0x4b,0xb6,0xdc,0x7b,0xaf,0xd8,0xc6,0xb8,0x63,0x4c,0xc7,0x80,0x29,0xc1,
0x1,0x42,0x9,0x81,0x0,0x9,0x1f,0x25,0x40,0x42,0x8,0x29,0x40,0x2,0x9,0xa1,
0x86,0x1e,0x20,0x34,0x9b,0x4e,0xe8,0x10,0xc0,0x14,0x83,0xd,0xb6,0xc1,0xb2,0x71,
0x6f,0x72,0x93,0x9b,0x64,0x49,0x56,0xd7,0x96,0x3b,0xdf,0x1f,0x67,0x16,0x2d,0xc2,
0x55,0x96,0x64,0xed,0x6a,0xde,0xe7,0xd9,0x47,0xda,0xd5,0xea,0x96,0xb9,0x33,0xef,
0x9c,0x7e,0xc0,0xc0,0xc0,0xc0,0xe0,0x30,0xc3,0x32,0x43,0x60,0x70,0x8,0xb0,0x1b,
0xbc,0x77,0xcc,0x90,0x18,0x18,0x22,0x32,0x68,0x4e,0x78,0x1b,0x10,0x8f,0x17,0x18,
0x3,0x24,0xe8,0xf7,0x7e,0x60,0x1e,0x50,0x1d,0xf1,0x9d,0xa0,0x7e,0x19,0x18,0x18,
0x22,0x32,0x68,0x34,0x5c,0x9a,0x68,0xb2,0x80,0x4b,0x80,0x4c,0x2d,0xf5,0x4,0x81,
0xbe,0xc0,0x16,0x20,0x1f,0x8,0x69,0x92,0xea,0x4,0xa4,0x3,0x1,0xfd,0xd9,0x6c,
0xe0,0x63,0xfd,0xb7,0x4a,0x43,0x4a,0x6,0x86,0x88,0xc,0xe,0x6,0x89,0x40,0x3c,
0x70,0x24,0x70,0x35,0x30,0xc,0xf8,0xf,0xf0,0xa2,0x26,0x19,0xb,0x70,0x3,0xeb,
0x80,0x5d,0x11,0x6a,0x5a,0xf,0x20,0x4d,0x13,0x8e,0x1b,0x98,0xaa,0x9,0x6c,0x1d,
0x70,0x37,0xf0,0x5,0x50,0x61,0x86,0xd7,0xc0,0xc0,0x60,0x5f,0x70,0x3,0xb9,0xc0,
0xdf,0x81,0x62,0x60,0x27,0x70,0x39,0x90,0x74,0x88,0x9b,0x5d,0x2e,0xf0,0x34,0x30,
0xb,0xe8,0xa2,0x8f,0xe7,0x36,0xc3,0x6d,0x60,0x60,0x10,0x9,0xf,0x90,0xa,0x4c,
0x7,0x16,0x1,0xef,0x3,0xbf,0xd5,0x9f,0x35,0x25,0x46,0x2,0xf,0x1,0x93,0x80,
0xa3,0xb4,0xca,0xe7,0x35,0xc3,0x6f,0x60,0x54,0x33,0x83,0x4c,0xe0,0x78,0x60,0x4,
0x30,0x4,0x78,0xa,0x78,0xae,0x99,0xcf,0xd9,0x5,0x98,0xa1,0xd5,0xbf,0xf7,0x80,
0x5,0x88,0x4d,0xc9,0xc0,0xc0,0xa0,0x8d,0x92,0xd0,0x9d,0x88,0xd,0xe7,0x2f,0x40,
0x46,0xb,0x9e,0xdb,0x5,0x8c,0x6,0x2e,0x5,0x8e,0xd1,0xa4,0x64,0x60,0x60,0xd0,
0xc6,0x90,0x2,0xdc,0x2,0xbc,0xb,0x9c,0xa6,0xd5,0xb3,0xc3,0x81,0xde,0xc0,0xfd,
0xc0,0x8d,0x40,0xb6,0x79,0x2c,0x6d,0x13,0x2e,0x33,0x4,0x6d,0x12,0x59,0xc0,0xd,
0xc0,0x28,0xe0,0x77,0xc0,0xa7,0x1c,0xbe,0x60,0xc4,0x5d,0x40,0x15,0x30,0x59,0x13,
0xd1,0x76,0x60,0xb7,0x79,0x44,0x6,0x6,0xb1,0x8d,0x4e,0xc0,0x83,0xc0,0x3b,0x40,
0x3f,0xfd,0x59,0x6b,0xb1,0x15,0x9e,0x5,0xfc,0x1f,0xd0,0x7,0x63,0xbf,0x34,0x12,
0x91,0x41,0xcc,0xa2,0x23,0xf0,0x1b,0xc4,0x9d,0xfe,0x2b,0x60,0xbd,0x5e,0xf0,0xaa,
0x95,0x5c,0xdf,0x72,0xc4,0xb5,0x3f,0x2,0x9,0x1f,0x30,0x92,0x51,0x1b,0x81,0x6d,
0x86,0xa0,0xcd,0x20,0x9,0xb8,0x10,0xe8,0x9,0x5c,0xb,0x14,0xb6,0x32,0x12,0xa,
0xe3,0x63,0xfd,0x73,0x0,0xc6,0xb5,0x6f,0x88,0xc8,0x20,0xa6,0x60,0x21,0x46,0xe1,
0x89,0x5a,0x25,0xdb,0xd2,0x4a,0x49,0x28,0x8c,0xaf,0x81,0x6e,0x88,0x2d,0xcb,0xc0,
0xc0,0x20,0x86,0xa4,0xa1,0x97,0x81,0x27,0x80,0x76,0x51,0x72,0xcd,0x53,0x80,0x93,
0xcd,0xa3,0x33,0x30,0x88,0xd,0xc4,0x21,0x6,0xe0,0x2a,0xc4,0xf6,0x12,0x4d,0x38,
0x5,0x38,0x13,0xf0,0x99,0xc7,0x68,0x60,0x10,0xdd,0x48,0x4,0x56,0x20,0xd1,0xd3,
0xd1,0x6,0x2f,0x62,0x50,0x4f,0x32,0x8f,0xd1,0xc0,0x20,0x7a,0xe1,0x3,0x1e,0x3,
0x36,0x46,0xf1,0x3d,0x9c,0xa4,0xef,0xc1,0x90,0x91,0x81,0x41,0x94,0x22,0x7,0x31,
0x4c,0x3f,0x1f,0xa5,0xd7,0x1f,0x8e,0x25,0x5a,0x69,0x88,0x28,0xb6,0x61,0xe2,0x88,
0x62,0x17,0x36,0x12,0x3d,0x3d,0x6,0xb1,0xb5,0x54,0x47,0xf1,0xbd,0x74,0x40,0xa,
0xb4,0xad,0xc1,0x94,0xa3,0x35,0x30,0x88,0x2a,0xf4,0x41,0x2,0x4,0x5f,0x8d,0x91,
0x7b,0x99,0x66,0x1e,0x69,0x6c,0xef,0x9a,0x6,0xb1,0x7,0xb,0x29,0xd9,0x9a,0x9,
0x3c,0x12,0x3,0xf7,0xb3,0x6,0xc9,0xce,0xef,0x8f,0x49,0xfd,0x30,0x44,0x64,0x10,
0x35,0x50,0x48,0xb9,0xd6,0x64,0x24,0x55,0x22,0xda,0xe1,0x20,0x39,0x72,0xed,0xcd,
0xa3,0x35,0x44,0x64,0x10,0x3d,0x48,0x4,0xfe,0x84,0xd4,0x89,0xce,0x8f,0x91,0x7b,
0x32,0xb1,0x44,0x86,0x88,0xc,0xa2,0x50,0x22,0x4a,0xd6,0x92,0x84,0x8a,0x91,0x7b,
0x9a,0x8f,0xd8,0x8a,0x4c,0xad,0x6b,0x43,0x44,0x6,0x51,0xa6,0xce,0xc4,0xd2,0xf3,
0x5d,0x86,0xb4,0x30,0x4a,0x30,0x8f,0xd6,0x10,0x91,0x81,0xc1,0xe1,0x82,0x85,0x71,
0xdd,0x1b,0x22,0x32,0x88,0x4a,0x4,0x62,0xe8,0x5e,0x82,0x98,0x2,0xfb,0x31,0xb,
0xa3,0x6f,0xc7,0x2e,0x14,0x62,0x53,0x19,0x8b,0x24,0xbe,0x46,0x33,0x42,0x48,0x28,
0x42,0xba,0x91,0x8a,0xc,0x11,0x19,0x44,0x9f,0x4,0x31,0x3,0x29,0xbf,0x1a,0xed,
0xb1,0x37,0x4a,0xcf,0xd5,0xf,0x8d,0x54,0x64,0x88,0xc8,0x20,0xfa,0x9e,0xed,0x43,
0xc0,0x6d,0x44,0xbf,0xeb,0xdb,0x41,0xa,0xeb,0x5f,0x62,0xe6,0xac,0x21,0x22,0x83,
0xe8,0x82,0x5,0x14,0x1,0xdb,0x62,0xe4,0x7e,0xea,0x90,0x9a,0x4a,0x26,0xb2,0x3a,
0x6,0x61,0x8c,0xd5,0x66,0xa3,0x89,0xa6,0x7b,0x31,0x49,0xda,0x66,0xa2,0x1e,0x30,
0x12,0x90,0xc8,0xde,0xc3,0x25,0xc2,0x7,0x80,0x4a,0x8c,0x51,0xd3,0x20,0x76,0x85,
0x87,0x24,0xa4,0x21,0xe6,0xe1,0x12,0x24,0x2c,0xbd,0xce,0x4a,0x5b,0x33,0x11,0x1d,
0x3,0x9c,0xaa,0x8f,0xed,0xb4,0xa0,0x28,0x1d,0x42,0x6c,0x21,0xe5,0xc0,0x1f,0x81,
0x9d,0x66,0xce,0x1a,0xc4,0x20,0xb2,0x80,0x3f,0x23,0x9d,0x7a,0x6b,0xf,0x83,0x94,
0xa8,0xb4,0xb0,0xb1,0x16,0xf8,0x7d,0x6b,0x26,0xa2,0x4f,0x81,0x45,0xd,0xd8,0xb3,
0x25,0xb0,0xb,0x69,0xa1,0xfc,0xb,0xe0,0x5e,0x43,0x44,0x6,0x31,0x8a,0x74,0xe0,
0x27,0xc0,0xe3,0xc0,0x5f,0x90,0xb0,0x86,0x96,0x26,0x22,0x1b,0xf0,0xb7,0x76,0xd5,
0xac,0x5c,0xbf,0xe,0x7,0x8a,0xb5,0x5a,0xa6,0xcc,0x7c,0x35,0x88,0x51,0x28,0x3d,
0xc7,0x8b,0x11,0xe3,0x7d,0x55,0xac,0xe8,0x9b,0xb1,0xa6,0x3f,0x1b,0xaf,0x8a,0x41,
0xac,0xc3,0x8a,0xb5,0xb5,0x6b,0xbc,0x66,0x6,0x6,0x6,0x86,0x88,0xc,0xc,0xc,
0xc,0x62,0x8d,0x88,0xfc,0xe6,0x91,0x1a,0x18,0x44,0x1f,0x62,0x25,0xe0,0xed,0x48,
0x24,0xc1,0x73,0xb2,0x26,0x57,0x63,0xac,0x36,0x30,0x30,0x44,0xd4,0xe2,0x48,0x3,
0x3a,0x23,0x55,0x9,0xd,0xea,0x11,0x2,0x6,0x21,0x79,0x5a,0x20,0x1d,0x5f,0xa3,
0x29,0xe5,0x63,0x18,0xb0,0x9a,0x18,0xf1,0xc,0x19,0xc4,0xbe,0x6a,0xf6,0x3e,0x70,
0x2b,0xd2,0x3a,0x27,0x84,0xf1,0x9c,0xa1,0xa5,0xc2,0x1a,0x24,0xe8,0xec,0x6e,0xe0,
0x5c,0xa0,0x5f,0x94,0xdd,0xc3,0x75,0x40,0x9e,0x79,0x94,0x7b,0x7c,0xb6,0x16,0x12,
0xd4,0xd8,0xce,0x10,0x51,0xeb,0x43,0xa2,0x21,0xa1,0x1f,0xc0,0x1,0x6,0x20,0xdd,
0x2f,0x9e,0x40,0xfa,0xc8,0x47,0x13,0xfa,0x20,0x6d,0x84,0xc,0x7e,0x2c,0xe9,0xc6,
0x3,0x97,0x22,0x65,0x5e,0xc,0x11,0x19,0xb4,0x7a,0x54,0x0,0x3b,0x80,0xb9,0xc0,
0x86,0x28,0xbb,0x76,0x93,0x33,0xb8,0xf7,0xd,0x26,0xe,0x38,0x19,0x38,0x2a,0x16,
0x6e,0xc8,0x94,0x1,0x89,0x7d,0x44,0x73,0xf0,0x9b,0x91,0x6e,0xf7,0xbe,0x6e,0xab,
0x80,0x3f,0x10,0x23,0x8e,0x19,0x43,0x44,0x6,0x6,0xd1,0xa9,0xc9,0xd4,0x1,0x73,
0x62,0xe9,0x86,0xc,0xc,0xc,0x8c,0xb4,0x68,0x88,0xc8,0xc0,0xc0,0xc0,0x88,0x78,
0x6,0x6,0x6,0x6,0x86,0x88,0xc,0x9a,0x1d,0xc6,0xf3,0x64,0x60,0x88,0x68,0x3f,
0xe8,0x4,0x5c,0x3,0xfc,0x9c,0x1f,0x17,0x79,0x32,0x5e,0x93,0xa6,0x41,0x16,0x52,
0x39,0xb3,0xab,0x19,0x8a,0x36,0x8d,0x56,0xbb,0x9e,0xe,0xa7,0xd7,0xec,0x27,0x48,
0x35,0xc5,0x4,0x60,0x8,0x92,0xb0,0x7a,0x19,0xb0,0x11,0xa8,0xb5,0x2c,0x6b,0xa6,
0x52,0xea,0xbd,0xfa,0xf1,0x33,0xe9,0x63,0x8d,0x84,0x42,0x2,0x1a,0xff,0x8d,0x44,
0x59,0x6f,0x88,0xa2,0x6b,0x8f,0x33,0x52,0x7b,0x93,0xcf,0x85,0x6b,0x81,0xf1,0x7b,
0x90,0x98,0xd3,0x80,0xc7,0x80,0x17,0x63,0xf6,0xee,0x5d,0x2e,0x29,0xab,0x6b,0xdb,
0x76,0xaa,0xde,0x95,0x77,0x2,0x15,0x71,0x71,0xde,0x50,0xdf,0xbe,0x3d,0x43,0xcf,
0x3d,0xf7,0x90,0xda,0xb6,0x6d,0x8d,0xba,0xe2,0x8a,0xb,0x9d,0x2e,0x5d,0x3a,0x6,
0x73,0x72,0xb2,0x42,0xc0,0x37,0xc0,0xd4,0x83,0x3c,0xd5,0x8d,0xc0,0x66,0xa0,0x77,
0x1b,0x9f,0x70,0x9,0xc0,0x6c,0xe0,0x6,0x60,0x1e,0x92,0x63,0xe6,0x25,0xfa,0xfa,
0x9b,0xa5,0x45,0x6c,0x96,0x1d,0x91,0x12,0xc0,0xa9,0x6d,0xfc,0xd9,0xf6,0xd6,0x73,
0xfc,0xc6,0x83,0x12,0x85,0x2c,0xeb,0x48,0xe0,0x13,0xa0,0xa6,0x53,0xa7,0xbc,0x60,
0xb7,0x6e,0x9d,0x83,0x13,0x26,0x1c,0x19,0x5c,0xb1,0xe2,0xf3,0xe0,0xd5,0x57,0x5f,
0x1a,0xec,0xdb,0xb7,0x67,0x28,0x3d,0x3d,0xb5,0x42,0xaf,0xcd,0xae,0x7a,0xad,0xe2,
0x72,0xc5,0xd8,0x3e,0x90,0x98,0x98,0x10,0x7,0xbc,0xe3,0x72,0xb9,0xca,0xbb,0x77,
0xef,0xac,0x86,0xe,0x1d,0xa8,0xfa,0xf5,0xeb,0xa5,0x56,0xaf,0xfe,0x52,0xdd,0x7b,
0xef,0xad,0xea,0xfe,0xfb,0x6f,0x57,0xff,0xf9,0xcf,0x7d,0x6a,0xeb,0xd6,0x45,0x6a,
0xf6,0xec,0x57,0xd4,0xe8,0xd1,0xc3,0x9d,0x76,0xed,0xb2,0x8a,0x81,0xbf,0xba,0x5c,
0xb6,0xcf,0x10,0xd1,0x21,0x11,0xd1,0xd2,0x18,0xb8,0x27,0x43,0x44,0x8d,0x20,0x22,
0xcb,0xb2,0x7c,0x48,0x33,0x8b,0x2f,0x6,0xf,0xee,0x17,0x38,0xf1,0xc4,0xa3,0xd5,
0xaa,0x55,0x5f,0xa9,0xea,0xea,0x2,0x55,0x5c,0xbc,0x4c,0x6d,0xdd,0xba,0x48,0x6d,
0xdf,0xfe,0x9d,0xa,0x4,0x36,0xab,0xd7,0x5f,0x7f,0x42,0xfd,0xf4,0xa7,0x67,0x28,
0xaf,0xd7,0x53,0xe,0xbc,0x93,0x90,0x10,0x17,0x7,0xe0,0xf1,0x34,0x7f,0x7d,0xfe,
0x96,0x52,0xcd,0x7c,0x55,0x55,0xd5,0x4f,0xb7,0x6f,0x9f,0x73,0xec,0x4f,0x7f,0x7a,
0xba,0x3b,0x2e,0x2e,0x8e,0x77,0xde,0xf9,0x90,0xcd,0x9b,0xb7,0x72,0xf9,0xe5,0x37,
0x7e,0xf7,0xc9,0x27,0x73,0x2d,0x97,0xcb,0xb6,0x92,0x93,0x93,0xd4,0x94,0x29,0xe3,
0xc8,0xc9,0xc9,0x4e,0x3d,0xe7,0x9c,0x69,0x9d,0xb6,0x6f,0x2f,0xce,0xbc,0xf7,0xde,
0xc7,0xae,0xa8,0xab,0xf3,0xdb,0x96,0x65,0xfd,0x55,0x29,0xb5,0xa7,0x5a,0xd8,0x89,
0x48,0xe6,0xfd,0xa,0xa3,0xbf,0x19,0x18,0xfc,0x0,0x29,0x4a,0xa9,0x9b,0x32,0x32,
0xd2,0x2f,0xeb,0xd5,0xab,0x5b,0xda,0xb5,0xd7,0x5e,0xe6,0xac,0x5f,0xbf,0x91,0x9b,
0x6e,0xba,0x15,0xdb,0xb6,0xfc,0xa9,0xa9,0xc9,0xab,0x1d,0xc7,0xc2,0xb6,0xad,0x90,
0xdf,0xef,0x4f,0xad,0xaa,0xaa,0xee,0x7a,0xce,0x39,0xd3,0xe9,0xd8,0x31,0x37,0xe9,
0xdf,0xff,0x7e,0xfe,0xd8,0x92,0x92,0xb2,0x67,0x92,0x92,0x12,0x2e,0xa8,0xac,0xac,
0xae,0x8d,0x95,0x1,0xf9,0x2f,0x10,0x98,0x32,0x65,0xbc,0x9a,0x38,0x71,0x8c,0xd3,
0xa1,0x43,0x8e,0x42,0x3a,0x7d,0x5c,0xe3,0xf5,0x7a,0xdb,0x5b,0x96,0xd5,0x1d,0xe8,
0xe1,0x76,0xbb,0xbb,0x7b,0x3c,0x9e,0xee,0x6e,0xb7,0xeb,0x84,0x76,0xed,0xb2,0xde,
0x3b,0xfb,0xec,0x53,0x8a,0x2f,0xba,0xe8,0x1c,0x95,0x9e,0x9e,0x5a,0xab,0x6d,0x1c,
0x1d,0xf6,0x70,0xec,0x49,0x48,0xe7,0x90,0x6e,0x88,0xd1,0x7b,0x93,0x91,0x88,0xbe,
0x97,0x88,0x6e,0x34,0x12,0x51,0x9b,0x95,0x88,0x3a,0xe8,0x35,0x53,0x3b,0x68,0x50,
0x3f,0x75,0xfe,0xf9,0x67,0x86,0x46,0x8d,0x1a,0xa6,0x92,0x92,0x12,0xdf,0x2,0xee,
0x73,0xb9,0xec,0x8b,0xe2,0xe2,0xbc,0x3d,0x7d,0xbe,0xb8,0xee,0x3e,0x5f,0x5c,0x57,
0xaf,0xd7,0x33,0xc0,0xb2,0xac,0xbb,0x7b,0xf6,0xec,0x76,0xd7,0xe8,0xd1,0xc3,0xd5,
0x1f,0xff,0x78,0x9d,0xd3,0xa7,0x4f,0x8f,0x80,0x5e,0xbb,0x31,0x81,0x5,0x88,0x31,
0x4c,0x79,0x3c,0x6e,0xc7,0xb2,0x2c,0x5,0x8c,0xb7,0x2c,0x2b,0x8f,0x7d,0x1b,0x22,
0x33,0xb2,0xb2,0x32,0x6f,0xef,0xd8,0xb1,0x7d,0xc8,0xe7,0xf3,0x2a,0x2d,0xed,0x3c,
0xc3,0x8f,0xcb,0x42,0x1c,0xf,0xac,0x2,0xfa,0x1a,0x22,0xfa,0x1e,0x1e,0xe0,0x1d,
0xe0,0x72,0x4d,0xd2,0xcb,0x44,0x4c,0xc7,0x8a,0xc6,0x97,0xbe,0xa7,0x2c,0xe0,0x4e,
0x6d,0x37,0x6a,0xeb,0x44,0xb4,0x9,0x31,0x3a,0x77,0x5,0xde,0x3,0x46,0x35,0xf8,
0x4e,0x17,0x60,0x96,0x5e,0x33,0xca,0xe5,0xb2,0x1d,0xb7,0xdb,0xad,0x2c,0xcb,0x7a,
0x3,0xe8,0x85,0xf4,0x42,0xfb,0xd1,0xda,0x73,0xbb,0xdd,0x1e,0x3d,0x77,0x7e,0x91,
0x97,0xd7,0x5e,0x65,0x65,0x65,0x3a,0x7a,0xed,0x2e,0x88,0x76,0xd5,0x6c,0x25,0x52,
0xca,0x1,0x40,0x5,0x2,0x41,0xb,0x18,0x1,0x7c,0xab,0xd4,0x7e,0xb5,0xa8,0x92,
0xe2,0xe2,0x5d,0xf,0x2,0x39,0xc0,0xf9,0x88,0xb1,0xf5,0x3c,0xa4,0x9f,0xfb,0x6d,
0xd4,0x77,0x99,0x54,0x11,0x2f,0x3,0x71,0x31,0xde,0x0,0x9c,0x68,0xdb,0xd6,0x89,
0x8e,0xa3,0x0,0x94,0x6d,0x5b,0x51,0x3b,0x3e,0x96,0xa6,0x22,0xa5,0x98,0xd,0x4,
0xe,0x60,0xee,0xb4,0x5,0x28,0xc4,0xab,0xd8,0x1d,0xe9,0x75,0x16,0x89,0x1c,0x4d,
0x46,0x0,0x84,0x42,0x4e,0x9,0x38,0xd7,0x2,0xcf,0x23,0x25,0x44,0xf6,0x88,0x60,
0x30,0x18,0xd0,0xbf,0x3e,0x5e,0x58,0xb8,0x2d,0xe,0x78,0x40,0x13,0xd1,0x11,0x7a,
0xb3,0xef,0x13,0x8d,0x44,0x94,0x15,0xf1,0x7b,0x1d,0xb0,0x4e,0xb3,0xf8,0xb7,0x7,
0x71,0x8c,0xad,0xc0,0x25,0xc0,0xb3,0x5a,0xcc,0xec,0xa9,0x49,0xe9,0x1b,0x60,0x66,
0xc4,0xf7,0x5c,0x44,0x9f,0x47,0xa8,0x29,0x8,0x7,0x3d,0x19,0x3d,0xd4,0xc7,0x38,
0x24,0x0,0x7d,0x92,0x93,0x93,0x19,0x31,0x62,0x20,0xb,0x17,0x2e,0x41,0x29,0x65,
0x8d,0x1f,0x3f,0x9a,0xaa,0xaa,0x9a,0xef,0x17,0x75,0xf4,0x91,0x91,0x4d,0x30,0x18,
0x48,0x5b,0xb8,0x70,0xf1,0x89,0x75,0x75,0xfe,0x2f,0x90,0x12,0x21,0xe1,0x7b,0xe,
0x20,0x5d,0x4f,0xdb,0x2a,0x21,0x45,0xa2,0x3b,0xf0,0x5b,0x60,0x8c,0x7e,0x5f,0x1,
0xdc,0x5,0xbc,0xb6,0x2f,0x12,0xda,0x3,0xfe,0x5,0xfc,0x7,0xf8,0x9f,0x3e,0x56,
0x4f,0x2d,0x65,0x9f,0x14,0x4d,0x44,0xd4,0x5,0xf8,0x48,0x5f,0x3c,0x5a,0x94,0x1c,
0xb,0x94,0x35,0xf2,0x78,0x9f,0x1,0x33,0x90,0xee,0x96,0x43,0x81,0xe1,0x48,0x55,
0xc6,0x12,0xfd,0x20,0x12,0x81,0x9f,0xd1,0x76,0x8a,0x68,0xb9,0xb5,0xcd,0x24,0x1e,
0x38,0x31,0x42,0x15,0x75,0xf4,0xe7,0x27,0xa7,0xa5,0xa5,0x30,0x75,0xea,0x44,0x56,
0xae,0x5c,0x7,0x28,0xa6,0x4d,0x3b,0x8e,0xa2,0xa2,0x62,0x2c,0xcd,0x44,0xad,0x91,
0x90,0xf6,0x25,0xe8,0xc4,0xc5,0x79,0x59,0xbd,0xba,0x60,0xf8,0xd7,0x5f,0x2f,0x7a,
0x9,0x78,0x1b,0xd8,0x12,0xa1,0x5e,0xac,0x2,0x1e,0xd2,0xb,0x2d,0x28,0x12,0xa0,
0x8d,0xe3,0x38,0x6d,0x8d,0x84,0x3c,0xda,0x54,0x71,0xb4,0x7e,0x5f,0x4,0xfc,0x1d,
0x78,0x44,0x13,0xf7,0xc1,0xa2,0x52,0x6b,0x21,0xf3,0x81,0xc,0xbd,0xce,0x7a,0x68,
0xa1,0x22,0x2a,0x70,0x9e,0x96,0x66,0x14,0xd2,0x91,0xf2,0x27,0x7a,0x90,0xe,0x15,
0xbf,0xd2,0xc7,0x7c,0x17,0x31,0x4e,0x3,0x4c,0xb6,0x2c,0x6b,0x7d,0x7a,0x7a,0x6a,
0x30,0x29,0x29,0xb1,0xdc,0xb6,0xed,0x6d,0x11,0x4,0x18,0x8b,0x88,0x3,0xae,0xd0,
0x3b,0xd5,0x32,0x3d,0x59,0xc2,0x1d,0x3f,0xab,0xf5,0xfb,0xd2,0x7d,0xbc,0x4a,0x90,
0x4e,0xbc,0xaa,0x95,0xbd,0xaa,0xf7,0x73,0xdd,0x91,0xaf,0x4a,0xfd,0xfd,0xf0,0x7d,
0x57,0x2,0xf7,0xe9,0x71,0x89,0x75,0xfb,0x60,0xd8,0x46,0x74,0xd,0x30,0x18,0x58,
0xe,0x1c,0xab,0xff,0xd6,0x3e,0xd2,0x36,0x84,0xb4,0xa4,0x3e,0x54,0x78,0x80,0xdf,
0xe8,0xe3,0xed,0xd0,0x6b,0x3b,0x2a,0x24,0x22,0x9f,0xbe,0xe8,0xb0,0x18,0xb8,0x19,
0x78,0x4b,0x8b,0xcf,0x87,0x8a,0x45,0xc0,0x12,0x7d,0xac,0x4c,0x3d,0x1,0x53,0xe2,
0xe3,0x7d,0xd6,0xad,0xb7,0xde,0xe0,0xca,0xcf,0x5f,0x96,0x3c,0x73,0xe6,0xeb,0x35,
0xd5,0xd5,0x35,0xb1,0x3c,0x11,0x1f,0xd1,0xea,0xa9,0x4b,0x4b,0x85,0xd7,0xea,0xf1,
0xb0,0x38,0xb0,0x10,0xfe,0x2a,0xa4,0x7c,0xec,0xe3,0xfb,0xf9,0x9e,0x1f,0x9,0x6e,
0xb,0x71,0x68,0xd1,0xcd,0x8e,0xfe,0xff,0x74,0x20,0x69,0x1f,0xdf,0x7b,0x1e,0x89,
0xea,0x75,0xe,0xe2,0x7c,0x4a,0x7f,0xff,0x44,0xcb,0xb2,0x7e,0x13,0x1f,0xef,0x53,
0x2e,0x97,0xeb,0xeb,0x8a,0x8a,0xca,0x63,0x88,0xed,0x82,0xfb,0x4a,0xcf,0xff,0xcb,
0xf4,0xcf,0x78,0xa4,0x41,0x42,0xc7,0x8,0xad,0xe0,0x63,0x3d,0xa6,0x87,0x8a,0x0,
0xf0,0xa4,0x26,0xb5,0x3a,0x3d,0xc7,0xda,0xeb,0x6b,0xd8,0xde,0x9a,0x7,0xe9,0xba,
0x6,0x3b,0xee,0xb7,0x48,0x91,0xef,0xa6,0x80,0xb,0x71,0x5b,0x96,0x6b,0x11,0xbc,
0xa,0xa8,0xb5,0x2c,0x2,0xf1,0xf1,0xbe,0x80,0xd7,0xeb,0x75,0x2c,0xcb,0xda,0xa6,
0xc5,0xc7,0x58,0x44,0x22,0xe2,0x8a,0x57,0x5a,0x1d,0xe9,0xd0,0xc8,0xe3,0x4c,0x3c,
0x0,0x9,0x65,0x33,0x30,0x21,0x62,0x57,0xf4,0x36,0xe2,0xe5,0xd1,0x86,0xe5,0xde,
0xc0,0x6c,0x97,0xcb,0xde,0xd7,0xf9,0xae,0x3f,0x84,0x71,0x39,0x3b,0x2e,0x2e,0xae,
0x66,0xda,0xb4,0x63,0xd5,0xcf,0x7f,0x3e,0x63,0x33,0x92,0x32,0x14,0xab,0xe8,0xa1,
0x9,0x20,0xbc,0xd9,0x87,0xed,0x63,0xd5,0x48,0xb3,0x84,0x80,0xfe,0xdb,0x63,0x4d,
0x6c,0xaa,0x18,0xa9,0x8f,0x5b,0xa7,0x7f,0x7e,0xd9,0xda,0x25,0xa2,0xd,0xda,0xa8,
0x15,0x0,0x4e,0xa7,0x69,0x13,0xed,0xdc,0x7a,0xb0,0xe7,0x6a,0x23,0x5c,0x8,0xb0,
0x94,0x42,0xd5,0xd4,0xd4,0x86,0xeb,0xf8,0x16,0x37,0x52,0x1f,0x8e,0x6,0xbc,0xa6,
0xa5,0x19,0x10,0x8f,0x64,0x63,0xd,0xb4,0xfb,0xc,0x95,0xb5,0x2c,0x54,0x62,0x62,
0x62,0x47,0xbf,0xdf,0xff,0x98,0xdf,0x1f,0xf8,0x25,0x12,0x2,0xd0,0x28,0x58,0x96,
0xd5,0xc3,0xb6,0xed,0x3b,0x72,0x73,0xb3,0x27,0x67,0x64,0xa4,0xab,0x65,0xcb,0x56,
0x5a,0x7b,0xb1,0x5,0x85,0x5d,0xca,0x8d,0x31,0xec,0xbc,0x2,0x6a,0x78,0x71,0x71,
0xc9,0x8d,0x3d,0x7a,0x74,0xe9,0x68,0xdb,0xf6,0x4b,0x8e,0xe3,0xf4,0x89,0xd1,0x39,
0x50,0x9,0xbc,0x81,0x38,0x83,0xea,0xf4,0x98,0x59,0xd,0xa4,0xcf,0x31,0x7a,0xf3,
0x68,0xca,0xfc,0x8c,0x5a,0xfd,0x9a,0x89,0x74,0xe,0x59,0x13,0x4d,0x83,0x96,0xaf,
0xd5,0xa9,0xa6,0x92,0x88,0x52,0xb4,0x5a,0x32,0x8c,0xb6,0x87,0x31,0xc0,0x62,0xbd,
0x1b,0xd5,0x22,0xc6,0xff,0x3,0x25,0xf9,0xb0,0x38,0x3d,0x59,0x8b,0xf2,0x13,0x1,
0x65,0x59,0x96,0xb2,0x2c,0x4b,0xa5,0xa6,0xa6,0xa8,0xe,0x1d,0x72,0x95,0xd7,0x2b,
0xf1,0x5a,0xb6,0x6d,0xa9,0xc9,0x93,0x8f,0xda,0x9d,0x97,0x97,0x5b,0xac,0x9f,0xe1,
0x49,0x7b,0x21,0x2f,0x8f,0x56,0xc5,0x7d,0xfb,0xb0,0x67,0xbc,0x90,0x9c,0x9c,0xe4,
0x3f,0xff,0xfc,0x33,0xb6,0x9d,0x73,0xce,0xa9,0xca,0xb6,0x6d,0x65,0xdb,0xb6,0xea,
0xd0,0x21,0x47,0xe5,0xe4,0x64,0x47,0x4a,0x44,0x37,0xea,0xeb,0x1c,0x8c,0x18,0x5b,
0xfb,0x1c,0xa8,0x5d,0xd1,0xed,0x76,0xbb,0x80,0x53,0xb3,0xb2,0x32,0x4a,0xef,0xbe,
0xfb,0x4f,0x6a,0xf0,0xe0,0x7e,0x3b,0x81,0x8b,0x0,0x6c,0xbb,0x4d,0xe6,0xcc,0xfe,
0x3,0xf1,0x78,0x25,0x35,0xe1,0x31,0x7,0x6a,0x53,0x40,0xb3,0xa0,0xb9,0x9f,0x52,
0x53,0x4b,0x5c,0x4a,0x4f,0xce,0xe,0xb4,0xbd,0xac,0xec,0xd3,0x90,0x60,0x34,0x90,
0xa,0x5,0xc1,0x83,0x7c,0xe,0x27,0x20,0xde,0xa6,0xd3,0xc2,0x92,0x54,0x7a,0x7a,
0x1a,0x7d,0xfa,0xf4,0x60,0xc2,0x84,0xd1,0x4c,0x9b,0x76,0x2c,0x39,0x39,0x59,0xa4,
0xa6,0xa6,0x90,0x90,0x90,0xc0,0xc6,0x8d,0x5b,0x4a,0xbd,0x5e,0xef,0x35,0xc0,0x2e,
0xc4,0xfd,0x7b,0xdc,0x1e,0x8e,0x3b,0x1a,0x69,0x69,0x33,0x63,0xf,0x7f,0x1b,0x80,
0x78,0x6c,0xc6,0xc5,0xc7,0xfb,0xae,0x99,0x3b,0x77,0xe1,0xa2,0xb7,0xde,0xfa,0x90,
0x21,0x43,0x6,0xd0,0xa5,0x4b,0x47,0x4e,0x3e,0xf9,0x18,0x4e,0x3c,0xf1,0xe8,0x86,
0xcf,0x36,0x6c,0x60,0xfd,0x1f,0xe2,0x82,0xce,0x3a,0x90,0x9b,0xb,0x6,0x83,0x21,
0x60,0xb6,0xdf,0xef,0x5f,0xb9,0x68,0xd1,0x52,0x8e,0x38,0x62,0x68,0x36,0xf0,0x53,
0xa0,0x2d,0x78,0xce,0xf6,0xb4,0x59,0xa7,0xd3,0xf4,0x25,0x3f,0x2c,0x9a,0x31,0x44,
0x26,0x5a,0x17,0x73,0x5b,0x8b,0x68,0xcb,0x41,0xa2,0x68,0xc3,0x12,0xc2,0x7f,0x11,
0xa3,0xfd,0xc1,0x8c,0x43,0x15,0xb0,0x96,0x88,0x58,0x92,0xb4,0xb4,0x14,0xfa,0xf7,
0xef,0x45,0x4a,0x4a,0x32,0x35,0x35,0xb5,0xb8,0x5c,0x2e,0x86,0xc,0xe9,0x4f,0x4e,
0x4e,0x16,0xeb,0xd7,0x6f,0x2a,0x2c,0x28,0xd8,0xf4,0x89,0x65,0x59,0x97,0x22,0x61,
0x17,0xf,0x20,0xae,0x61,0xb4,0x68,0x3e,0x4,0xb8,0x12,0xf1,0x56,0xdd,0x81,0x34,
0x6f,0xc,0xdb,0x24,0x86,0x2,0xf7,0x6b,0x9,0xec,0xea,0x9d,0x3b,0x8b,0xff,0xbd,
0x6e,0xdd,0xc6,0xd,0x29,0x29,0xc9,0xc,0x1a,0xd4,0x97,0xdc,0xdc,0x6c,0x6a,0x6b,
0xeb,0x10,0xfe,0xf8,0x11,0xb6,0x1,0x5,0x7,0xab,0x5e,0xdb,0xb6,0x1d,0x2a,0x2f,
0xaf,0xfc,0x70,0xf6,0xec,0x2f,0x98,0x3a,0x75,0x22,0x5d,0xbb,0x76,0xca,0xe5,0xc7,
0xe5,0x2e,0xda,0x2,0x4c,0x70,0xef,0x1e,0xb0,0xb4,0x89,0x55,0xb3,0x64,0xe0,0x62,
0x24,0x76,0xa6,0x2d,0x49,0x44,0xd3,0x91,0xd8,0xd,0xa5,0x17,0xea,0xe0,0x46,0x1c,
0x23,0x55,0x93,0x85,0xf,0xc9,0xcf,0x53,0x5e,0xaf,0x47,0xa5,0xa5,0xa5,0xa8,0xcc,
0xcc,0x74,0x95,0x96,0x96,0xaa,0xbc,0x5e,0x8f,0xca,0xcd,0xcd,0x56,0xc9,0xc9,0x49,
0x4a,0x4b,0x3a,0xae,0x8,0x62,0x59,0x88,0x18,0xb0,0x8f,0x7,0x2e,0xd4,0xcf,0x36,
0xec,0x94,0x8,0x1,0x5f,0x69,0xb5,0x79,0x24,0x92,0xdf,0x56,0x81,0x14,0xbb,0xb,
0x63,0xa2,0xc7,0xe3,0xde,0x91,0x96,0x96,0xaa,0x12,0x12,0xe2,0x55,0x6a,0x6a,0x8a,
0xca,0xca,0xca,0x50,0xb6,0x6d,0x37,0x54,0xcd,0x3a,0x1,0xfd,0x81,0xdc,0x83,0x94,
0xa8,0x2d,0x60,0xb4,0xcb,0xe5,0xda,0x76,0xfc,0xf1,0x93,0xd5,0x93,0x4f,0xde,0x53,
0x3,0xdc,0x97,0x96,0x96,0x12,0xd7,0xc6,0xd6,0x5c,0x32,0xe2,0x11,0x7d,0xba,0x89,
0x55,0xb3,0x41,0x1c,0x82,0xad,0x30,0x56,0x25,0xa2,0xb6,0x84,0x6c,0xc4,0xe8,0xdf,
0x49,0xbf,0x7f,0x9e,0xc6,0x75,0x6c,0xdd,0x8d,0x54,0x28,0xa8,0xd,0x13,0x8c,0xdf,
0x1f,0xa8,0xaa,0xab,0xf3,0x57,0x67,0x67,0x67,0x56,0x25,0x24,0xf8,0x56,0xfb,0xfd,
0x81,0x35,0xdb,0xb7,0x17,0x7d,0x53,0x51,0x51,0xf9,0xb0,0x65,0x59,0x9f,0x52,0xdf,
0xbe,0x3b,0x1f,0x89,0xd1,0x59,0xd,0x3c,0x8,0x9c,0xad,0x55,0xaf,0xe4,0x88,0x79,
0x34,0x1a,0x29,0xbc,0xf6,0x2f,0x7d,0xcd,0xff,0x87,0x74,0x97,0x15,0x96,0xb0,0xac,
0x95,0x81,0x40,0xf0,0x85,0xb2,0xb2,0xdd,0x9b,0xab,0xab,0x6b,0x96,0x5,0x83,0xc1,
0x45,0x1d,0x3b,0xb6,0xdf,0x95,0x9b,0xdb,0x2e,0x92,0x48,0x2c,0x4d,0x76,0xcb,0x11,
0xcf,0xd0,0xc1,0xa8,0x9f,0xca,0xed,0x76,0x2d,0x9,0x85,0x42,0xcf,0x2c,0x5e,0xbc,
0x9c,0x2d,0x5b,0xb6,0xf9,0x26,0x4f,0x1e,0x7b,0x74,0x59,0x59,0xf9,0x18,0x33,0x85,
0x5a,0x3f,0xc,0x11,0xb5,0x7e,0xf4,0xd3,0x8b,0xde,0x83,0xb8,0xec,0xef,0xe5,0xd0,
0xbd,0x82,0x16,0xe2,0x61,0x79,0x2f,0x2e,0xce,0xfb,0x9c,0x52,0x8a,0x94,0x94,0xe4,
0x77,0x34,0x79,0x5c,0xe,0x5c,0xa9,0x94,0x5a,0xdd,0x40,0xd,0x9e,0x8f,0x24,0x1d,
0xb7,0xd7,0xf6,0xa6,0x48,0x15,0x20,0xfc,0x7b,0x1f,0x24,0x1,0xf3,0x7f,0x48,0xec,
0x49,0x3d,0x4b,0x28,0xb5,0x3,0x69,0x8,0x78,0x29,0xf0,0xe7,0xf8,0x78,0xdf,0xa7,
0xb6,0x6d,0x97,0x82,0x2a,0xa6,0x3e,0xe,0xaa,0xf1,0x37,0x64,0x59,0x4,0x83,0xa1,
0x5a,0xe0,0x9d,0x6d,0xdb,0x76,0x94,0x7f,0xf5,0xd5,0x37,0x5c,0x79,0xe5,0x85,0xed,
0x81,0x23,0x3b,0x75,0xea,0x60,0xfa,0xf7,0xb5,0x72,0x98,0x7,0xd4,0xba,0x91,0x84,
0x18,0x97,0xfb,0xea,0xf7,0x77,0xd3,0xb4,0x41,0x64,0x8b,0xca,0xca,0xca,0x9f,0x2c,
0x2b,0x2b,0xef,0xb,0x1c,0x63,0x59,0xd6,0x87,0x4a,0xa9,0x3d,0x65,0x5a,0xbb,0xb4,
0x3a,0xf7,0xb3,0x88,0x39,0x63,0x35,0x20,0xb6,0x30,0x1c,0xa4,0x3e,0xf6,0x2f,0x11,
0xcf,0x4d,0x64,0x88,0x41,0x39,0x92,0xae,0xf3,0xdb,0xe2,0xe2,0x92,0x53,0x8b,0x8b,
0x4b,0xa,0x81,0x87,0x2c,0xcb,0x3a,0x43,0x29,0x75,0x48,0x73,0x51,0xc7,0x2b,0x29,
0x2d,0x2d,0x6e,0x2f,0x2c,0xdc,0x9e,0xb2,0x68,0xd1,0xd2,0x94,0x1,0x3,0xfa,0xf4,
0x5b,0xb6,0x6c,0x55,0xa,0x12,0x51,0x6e,0x60,0x24,0x22,0x83,0x46,0x20,0x11,0x9,
0x55,0x88,0x47,0x62,0x46,0xa,0xe,0x52,0x5d,0xd9,0x9f,0x54,0x94,0xac,0x89,0xed,
0x26,0xc0,0xad,0x94,0xfa,0xf,0x92,0x8e,0x13,0x49,0x2c,0xed,0x81,0x3f,0x21,0xb9,
0x5c,0x47,0x6b,0xc9,0x4c,0xed,0x67,0x4e,0xf5,0x42,0x3c,0x6d,0x77,0x21,0xa1,0x2,
0x61,0xa4,0x20,0x95,0x13,0xae,0x40,0xea,0x25,0xfd,0x6,0x78,0x51,0x29,0x55,0xd5,
0x54,0x73,0xd1,0xb2,0xac,0x12,0xe0,0xa9,0xb5,0x6b,0xb,0x58,0xb5,0x6a,0xad,0x7b,
0xca,0x94,0x71,0x3d,0xb5,0x54,0x69,0x60,0x88,0xc8,0xa0,0x91,0x38,0x82,0xfa,0x72,
0xe,0xaf,0x6a,0x1b,0x4f,0x73,0xe0,0x4b,0x24,0x5d,0x60,0x3b,0x12,0x83,0x72,0x46,
0x4,0x19,0x9d,0xa5,0x9,0xa3,0xf7,0x5e,0x24,0xa0,0x7d,0x91,0xe8,0x95,0x5a,0xd5,
0x3,0x31,0x92,0xdf,0x84,0xe4,0x2a,0xfd,0x1b,0xb8,0x5a,0xab,0x7b,0x8e,0x26,0xda,
0x26,0xf1,0xf4,0x28,0xa5,0xaa,0x81,0x67,0xeb,0xea,0xfc,0xf9,0x5,0x5,0x9b,0xad,
0xca,0xca,0xea,0x61,0xbd,0x7a,0x75,0x3f,0xde,0x4c,0x25,0xa3,0x9a,0xed,0xd,0xe3,
0x91,0x28,0xe9,0x3d,0x91,0xa1,0x1f,0xf1,0x12,0x55,0xb4,0xe1,0x67,0x93,0xa1,0x55,
0xa1,0x6e,0x88,0xa1,0xf9,0x35,0xa0,0xb0,0x19,0xcf,0x37,0x7,0xf1,0x86,0xdd,0x8f,
0x14,0x20,0xf3,0x23,0x1,0x94,0xa7,0xd3,0xb8,0xf8,0x11,0xa5,0x9,0x6b,0xc,0xf0,
0x6b,0xc4,0xe5,0x7f,0x21,0xf0,0x28,0xf0,0x4f,0xea,0x73,0xc1,0x9a,0xa3,0x45,0xcb,
0x8e,0x60,0x30,0x78,0x67,0x61,0xe1,0xf6,0x67,0x7a,0xf5,0xea,0x16,0xdf,0xbd,0x7b,
0xe7,0xe3,0xd6,0xac,0x59,0xff,0x6,0xe2,0xf9,0x33,0x68,0x83,0x44,0x64,0xe9,0x9,
0x5d,0xe,0x4c,0xd3,0xb6,0xe,0x3f,0xe2,0x9a,0xbd,0x80,0xfa,0x24,0xba,0x86,0x8,
0x20,0x29,0xc,0xb,0xf4,0xdf,0xbf,0x4,0x3e,0xd4,0xc4,0x74,0x30,0x49,0x91,0xd1,
0x88,0xf0,0xc2,0x3c,0x53,0x93,0x40,0x58,0x1a,0x9a,0x4f,0xf3,0xc7,0x87,0x2c,0x42,
0x8c,0xc9,0xff,0x0,0x6e,0x46,0xc2,0xf8,0x7,0x1e,0xe2,0x7d,0xe4,0x2,0xb7,0x20,
0x65,0x3b,0xfe,0x80,0x64,0x87,0x37,0x77,0xa,0x4e,0x10,0x98,0x63,0xdb,0xf6,0xeb,
0xc1,0x60,0xe8,0x6c,0xdb,0xb6,0x46,0x22,0x5,0xe4,0x17,0xfa,0x7c,0x3e,0x6a,0x6b,
0x6b,0xcd,0xca,0x6f,0x63,0x44,0x54,0xa7,0x45,0xfa,0xd7,0x10,0x6f,0x4a,0xb6,0xfe,
0x7c,0xa3,0xde,0x25,0xf7,0xb6,0xd3,0x3a,0x88,0xeb,0x78,0x2c,0x52,0x18,0x6d,0x27,
0xf0,0xb5,0xfe,0xbf,0x6d,0x48,0x60,0x5e,0xac,0x42,0xe9,0xfb,0xfe,0x95,0xb6,0xc7,
0x54,0x6a,0x82,0x28,0x6a,0xa1,0xf3,0xaf,0x40,0x42,0xf9,0x6f,0x45,0xe2,0x87,0xe,
0x85,0xf4,0x2d,0x24,0xf9,0x35,0x4b,0xdf,0x4b,0x2a,0x2d,0x97,0x7,0x58,0xb1,0x73,
0x67,0xf1,0xe6,0xcd,0x9b,0xb7,0xd2,0xaf,0x5f,0x4f,0xf2,0xf2,0x72,0xb3,0xb,0xb,
0xb7,0x1b,0x12,0x6a,0x83,0x44,0xf4,0x27,0xea,0x3,0xe8,0xc6,0x6b,0xe9,0xe6,0x3e,
0xbd,0xd0,0x4a,0xe,0x50,0x4c,0x9e,0x3,0xbc,0x80,0xe4,0x3a,0x5d,0xa6,0xa5,0xa9,
0x52,0x4d,0x4c,0x5f,0xc4,0xf0,0x73,0xe9,0x4d,0x7d,0x5,0x81,0x5a,0x24,0xb2,0x39,
0x6c,0xa4,0xee,0xa0,0x17,0x77,0x11,0xcd,0x57,0xea,0x22,0xa8,0x37,0x2,0x4f,0x13,
0x1e,0x33,0x15,0xb1,0x79,0x35,0xa7,0x24,0x99,0xab,0xa5,0xef,0xaa,0x94,0x94,0xe4,
0xca,0xf2,0xf2,0x8a,0xf7,0x76,0xef,0xae,0x38,0x29,0x31,0x31,0xa1,0x6f,0x6e,0x6e,
0xbb,0xb3,0xb,0xb,0xb7,0x7f,0x85,0x78,0xf2,0x62,0x1d,0xe1,0xf0,0x8c,0x5a,0xa4,
0xc6,0x77,0x2e,0x52,0x4b,0xe8,0x67,0x5a,0xca,0xde,0x97,0x4d,0xce,0x41,0x2,0x51,
0xc3,0xf3,0x6d,0x87,0x1e,0xd3,0x43,0xe,0xb1,0x68,0x69,0x22,0xb2,0x91,0x52,0x20,
0xbf,0x45,0xe2,0x49,0xbe,0x45,0xea,0x11,0xed,0x44,0x82,0xd5,0xe,0x6,0x5b,0xf5,
0xeb,0x3b,0x2d,0xd2,0x67,0x20,0x79,0x4d,0x17,0x23,0x65,0xf,0xde,0xa6,0x69,0xea,
0x1c,0xb5,0x26,0xb8,0x90,0xe0,0x45,0xaf,0x7e,0xff,0x91,0x96,0x6,0xc3,0x13,0xe3,
0x2e,0xe0,0x28,0x2d,0x31,0xbd,0xc7,0xc1,0x95,0xff,0x3c,0x98,0x89,0xbc,0x5f,0x64,
0x65,0x65,0x50,0x53,0x53,0x43,0x7a,0x7a,0x1a,0x5b,0xb6,0x6c,0x3b,0x90,0x7f,0x9,
0x35,0xe3,0x3c,0x3e,0xd,0xf8,0xb3,0x1e,0xaf,0x6b,0xcb,0xcb,0x2b,0x42,0xc0,0xaa,
0x55,0xab,0xd6,0x2e,0x1e,0x32,0xa4,0x7f,0xdf,0x29,0x53,0xc6,0xa7,0x7f,0xf3,0xcd,
0x92,0xd3,0xf5,0x9c,0x29,0x6e,0xd7,0x2e,0x8b,0x9d,0x3b,0x8b,0x63,0x91,0x84,0xfc,
0x48,0x7e,0xe0,0x4,0xad,0x75,0x4c,0xd4,0x2,0x81,0xa3,0xd7,0xe0,0x56,0xea,0x3,
0x55,0xf7,0x24,0x8d,0xa3,0xcd,0x26,0xbd,0x90,0x68,0xea,0x7c,0x3d,0xa6,0xf3,0xb4,
0x86,0x13,0x35,0x38,0x47,0xab,0x4e,0x8f,0xe9,0x5d,0x3d,0xa5,0x89,0x8f,0x9f,0xa2,
0x99,0xfd,0x6d,0x24,0x97,0x29,0xd6,0x30,0x49,0xab,0x62,0xe1,0x20,0xc1,0x4b,0x1a,
0xfc,0x7d,0x99,0xfe,0xfc,0xa2,0x43,0xd8,0x48,0x8e,0xd1,0x13,0xf3,0x6f,0x7b,0xf9,
0xfb,0xe5,0x48,0x39,0x95,0x7d,0xd6,0x2c,0x1a,0x31,0x62,0xb0,0x7a,0xff,0xfd,0x97,
0xd4,0x4f,0x7f,0x3a,0xfd,0x40,0xab,0x30,0xee,0xa9,0x50,0x57,0x7b,0x24,0xb6,0xe8,
0x96,0x43,0x50,0x3,0xe3,0x34,0x9,0x85,0xeb,0x28,0x75,0x6,0xf0,0xf9,0xbc,0x1e,
0xe0,0xcc,0x8c,0x8c,0xb4,0xd,0x7f,0xfc,0xe3,0xf5,0xea,0xaa,0xab,0x2e,0xab,0x42,
0xbc,0x75,0xb1,0x8c,0xbe,0x48,0x19,0x9e,0x9d,0x48,0x71,0xb4,0xb7,0x91,0x5a,0x4f,
0x97,0x1,0xe3,0x10,0xa7,0x41,0xd6,0x7e,0x5e,0x5d,0xf4,0x66,0x77,0x29,0xe2,0xbc,
0x78,0x13,0xa9,0x13,0xff,0x59,0x34,0x49,0x44,0x83,0x90,0x8,0xe0,0xfb,0x69,0x9e,
0xda,0xb6,0xe5,0x48,0x84,0xef,0xb1,0xfc,0xb8,0xb5,0x50,0x2c,0x60,0x20,0xf5,0xa5,
0x6e,0x1f,0xe3,0xc7,0x7d,0xa5,0xfe,0xa9,0x25,0xa6,0xaf,0x69,0x5c,0xed,0x9e,0x26,
0xc3,0xaa,0x55,0x6b,0x99,0x3d,0x7b,0xe,0x73,0xe6,0x7c,0xd5,0x1a,0xa4,0x80,0x67,
0xb5,0x94,0xec,0xd7,0xaa,0x2c,0xb5,0xb5,0xfe,0x80,0x65,0x59,0x2b,0x4a,0x4a,0xca,
0xb6,0xbc,0xf9,0xe6,0xfb,0x5d,0x4e,0x3c,0x71,0x4a,0xc2,0x71,0xc7,0x4d,0x9a,0xfa,
0xc1,0x7,0x9f,0xbe,0xa7,0xe7,0x68,0x2c,0xc1,0xd6,0x52,0xe1,0xdf,0xb5,0x2a,0x76,
0x3f,0xf0,0x9c,0x96,0x62,0x76,0xe8,0x71,0x9,0x70,0x60,0xe,0x8f,0x62,0xc4,0x1e,
0xbb,0x50,0xab,0x76,0xed,0x91,0xb4,0x9e,0x2e,0x88,0xed,0xf0,0xf,0xd1,0x40,0x44,
0x2e,0x6d,0xc7,0x29,0x6f,0xe6,0x81,0xaf,0x22,0xf6,0xb2,0x8c,0x27,0x6a,0x49,0x27,
0x9c,0xac,0xb8,0x58,0x4f,0x8a,0x48,0xcc,0xd2,0x63,0x5c,0x73,0xb8,0x89,0xa8,0xb2,
0xb2,0x9a,0x7,0x1f,0x7c,0x82,0xea,0xea,0xea,0xc3,0x3d,0x6e,0x4a,0x6f,0x7a,0xf,
0xe8,0xf7,0xdf,0xd7,0xa,0x56,0x4a,0x2d,0x3,0xee,0x5e,0xb4,0xe8,0xbb,0x5e,0x47,
0x1d,0x75,0x44,0xbb,0xe9,0xd3,0x4f,0xf4,0x7d,0xf0,0xc1,0xa7,0x2e,0x62,0xf,0xe,
0x92,0x62,0x13,0xd4,0x84,0x34,0x8f,0x43,0xb7,0x21,0x86,0xcb,0x5,0xef,0x44,0x22,
0xd6,0xfb,0x6b,0xc9,0xf5,0x1a,0xe0,0x9e,0xa6,0x66,0xd1,0xe6,0x98,0x14,0x7,0x6c,
0x67,0x30,0xf8,0x1,0x92,0xf8,0x61,0x3,0xc1,0x3d,0x91,0x79,0xd,0xe2,0x79,0xa,
0xb5,0x86,0xb,0xae,0xaa,0xaa,0xa6,0x95,0xb4,0x19,0xb,0x17,0xe0,0xaf,0xe,0xcf,
0x41,0xab,0xbe,0x55,0x49,0x19,0x10,0xf0,0xfb,0xfd,0xac,0x58,0xb1,0xe6,0x28,0xe0,
0x9c,0xf8,0x78,0x5f,0x4a,0x8c,0xcd,0x9d,0x33,0x81,0xbf,0xea,0xcd,0x6b,0x19,0x4d,
0xef,0xc8,0xa8,0xd0,0xf6,0xa2,0x7b,0xf4,0x18,0x37,0x69,0xc7,0x1c,0x13,0x59,0xdd,
0x7a,0xe0,0xd3,0x3b,0x5a,0x38,0x1d,0xfd,0x4f,0x5a,0xb4,0x3e,0x5c,0xf0,0x68,0xb2,
0xdb,0x2b,0xe1,0x8d,0x18,0x31,0x88,0x9f,0xfc,0x64,0x1a,0xa7,0x9c,0x32,0x75,0x7f,
0x4,0xe1,0x44,0x48,0xcb,0x2d,0xc7,0x4c,0xf5,0xc,0xb9,0xe,0x58,0xf0,0xfc,0xf3,
0xaf,0x11,0x8,0x4,0x7d,0xd7,0x5e,0x7b,0x59,0x9f,0x9a,0x9a,0xda,0x8c,0x18,0x9b,
0x3f,0xc9,0x9a,0x70,0x67,0x22,0x21,0x2e,0xcd,0x81,0x3a,0x24,0xbc,0x23,0x8b,0x26,
0xae,0x92,0x6a,0x88,0xa8,0xf5,0x60,0x10,0x52,0x77,0x28,0x9,0xa9,0xed,0xf3,0xe6,
0x61,0xba,0x8e,0x1,0x48,0x5d,0xa1,0x15,0xc0,0x53,0x11,0xaa,0xe1,0x8f,0xe4,0x1e,
0xb7,0xdb,0x8d,0xc7,0xe3,0xc1,0xe3,0xf1,0xec,0x4b,0x32,0xde,0x89,0x74,0x1e,0x79,
0x19,0xf1,0xe4,0x9c,0x71,0x18,0xee,0x69,0x23,0xf0,0x9f,0xba,0x3a,0x7f,0x51,0x41,
0xc1,0x26,0x76,0xee,0x2c,0x9a,0xdc,0xb1,0x63,0xfb,0xa9,0x34,0x6d,0x78,0x42,0x6b,
0x91,0xa,0x9b,0x5b,0x5d,0xf,0xc7,0xf8,0x35,0xe9,0x79,0x5a,0x63,0xf6,0x7d,0x2e,
0x12,0xc7,0xf0,0x2e,0xe2,0x3d,0x6a,0x2b,0x18,0xab,0x5f,0x15,0x7a,0x57,0x3b,0x1c,
0xf7,0x3e,0x12,0x29,0xaa,0x95,0x84,0xd8,0xaa,0xd6,0x22,0x86,0xf3,0x9c,0x88,0x89,
0x6e,0x85,0xd5,0x9e,0xf9,0xf3,0xf3,0x59,0xb0,0x60,0x31,0xe1,0xf7,0xd,0x5a,0x41,
0x5b,0x11,0x24,0x70,0x8b,0x96,0xf8,0xfe,0x85,0xd4,0x28,0xf2,0x22,0xb6,0xae,0x96,
0xc4,0x1b,0xa1,0x50,0xe8,0x88,0x65,0xcb,0x56,0xdd,0x3c,0x76,0xec,0xa8,0xec,0x3e,
0x7d,0x7a,0x1e,0xbb,0x65,0xcb,0xb6,0xf,0x90,0x1e,0x61,0x6,0x87,0x19,0xad,0x4d,
0x22,0xca,0x41,0x2,0xce,0x6e,0x43,0xdc,0xb1,0x9d,0xda,0xc8,0x73,0x38,0x9,0xf1,
0x46,0x80,0x14,0x1f,0xfb,0xe6,0x30,0x5c,0xc3,0x68,0x4d,0x42,0xed,0x11,0x17,0xf7,
0x1c,0x2d,0xe2,0x5f,0xaa,0xed,0xe,0x3f,0xe8,0x9b,0xa6,0x94,0x42,0x29,0x85,0xe3,
0x38,0x38,0x8e,0xc3,0x5e,0xfa,0xd1,0xef,0x42,0xb2,0xf6,0x77,0x21,0x79,0x72,0xd7,
0x22,0x81,0xa8,0xf,0x21,0x59,0xfe,0x2d,0x8d,0x67,0x76,0xef,0xae,0xf8,0xa0,0xa6,
0xa6,0x86,0x4e,0x9d,0x3a,0x38,0xe9,0xe9,0x69,0x8e,0xa1,0x0,0x43,0x44,0xd,0x91,
0x84,0x4,0x42,0x86,0x8b,0xb4,0x4f,0x45,0x82,0x22,0x93,0xdb,0xc0,0x73,0x48,0xa3,
0xde,0x53,0xe6,0xa7,0xe5,0x3,0xc7,0x86,0x21,0xee,0xde,0x9e,0x48,0xa0,0xe4,0xdb,
0x11,0x7f,0x5b,0x83,0x24,0xab,0x6e,0x38,0xc8,0x63,0x96,0x23,0xc6,0xd3,0xa7,0x23,
0x3e,0x2b,0x40,0x62,0x5a,0x96,0x22,0x95,0x1e,0xa7,0x21,0x86,0xcf,0x96,0xc2,0x56,
0xc7,0x71,0x36,0x5b,0x96,0x45,0x61,0xe1,0xb6,0xb3,0x83,0xc1,0xe0,0xa1,0xc4,0x62,
0x45,0x33,0x3a,0x20,0x35,0xd0,0xdb,0xd3,0xc2,0x76,0xbb,0x68,0x20,0xa2,0x4a,0x2d,
0x15,0xdc,0xab,0xdf,0x1f,0x68,0xcc,0x43,0xb4,0x23,0x3,0x38,0x52,0xff,0x5e,0xac,
0x55,0x96,0x6f,0x5b,0xe8,0xdc,0x1,0x2d,0x85,0xfe,0x3,0x89,0xa4,0xbd,0x40,0xdb,
0x72,0x1a,0x22,0x1f,0x29,0x74,0xf6,0x77,0xf6,0xef,0x8d,0xf1,0x3,0x2f,0x21,0xc6,
0xf6,0xbb,0xc3,0x6a,0x5b,0x4,0x56,0x20,0xf5,0x88,0xd6,0x22,0x1e,0x98,0xe9,0x48,
0x2a,0x82,0xa2,0x99,0x3d,0xad,0x9,0x9,0x9,0xb5,0xe5,0xe5,0x15,0x9b,0x37,0x6f,
0xde,0x1a,0xe8,0xd5,0xab,0x1b,0xbd,0x7b,0x77,0x9f,0x40,0x7d,0x67,0x94,0xb6,0x82,
0x31,0x48,0xc,0x5a,0x81,0x7e,0x9d,0xd5,0x1a,0xc8,0xb8,0xb5,0xa9,0x66,0x15,0x48,
0xdd,0xe3,0x93,0x11,0xa3,0xe6,0x83,0xc4,0x76,0xeb,0x60,0x90,0xd8,0xa1,0x5f,0x45,
0x2c,0xd2,0x2f,0x5a,0x88,0x80,0x15,0x90,0xeb,0x72,0xd9,0x37,0xda,0xb6,0x7d,0x94,
0x26,0x8e,0x6f,0x11,0x63,0x75,0xce,0x1e,0xe6,0xc6,0x47,0xd4,0x87,0xd,0x4,0xf9,
0xb1,0xb1,0x52,0x51,0xdf,0x75,0xf4,0x61,0x22,0xe2,0x4c,0x22,0xd4,0xb6,0x54,0x24,
0x60,0xb3,0x32,0x23,0x23,0xed,0xcf,0x1d,0x3a,0xe4,0xec,0x4e,0x4e,0x4e,0x7c,0x0,
0x9,0x4e,0xd,0x36,0xe7,0x7d,0x5b,0x96,0x45,0x75,0x75,0x75,0x8,0x78,0x71,0xc1,
0x82,0xfc,0xcf,0x2a,0x2b,0xab,0xc8,0xcb,0xcb,0x3d,0x26,0x35,0x35,0x65,0x1a,0xb1,
0x67,0xb4,0xde,0x17,0x7e,0x87,0xb4,0xa6,0x6,0x89,0x48,0x1f,0xd3,0x1a,0xee,0xbf,
0x35,0x7a,0xcd,0xaa,0x91,0x10,0xf5,0xf,0xf5,0xc2,0x8c,0x65,0x3d,0xbe,0xb3,0x96,
0x42,0xd0,0x84,0x3b,0x8f,0x96,0xe9,0xa0,0xa9,0x0,0xdb,0xb2,0xac,0x5f,0x74,0xe8,
0x90,0x7b,0x4d,0xf7,0xee,0x9d,0x5d,0x5e,0xaf,0xe7,0x56,0x9f,0xcf,0xb7,0xc4,0xe5,
0x72,0x2d,0x45,0xec,0x74,0x91,0x6d,0xbb,0xe3,0x91,0x28,0xef,0x9b,0x91,0x4a,0xa,
0x8f,0x22,0x19,0xfa,0xbb,0x35,0x39,0x55,0x20,0x5,0xef,0xff,0x85,0x18,0xa7,0xdf,
0x47,0xca,0x6e,0x44,0x22,0xd3,0xb2,0xb8,0xd1,0xe3,0x71,0x7f,0xe7,0xf3,0xf9,0x96,
0xb9,0x5c,0xae,0x59,0x27,0x9c,0x70,0x74,0x9f,0x49,0x93,0x8e,0x4a,0x94,0xfe,0x88,
0xcd,0x4b,0xbe,0x61,0x32,0x4c,0x4e,0x4e,0x5e,0x7,0xcc,0xde,0xb8,0xb1,0xb0,0xbc,
0x7f,0xff,0xde,0x74,0xee,0x9c,0x77,0x5d,0x84,0x44,0xda,0x16,0xf0,0xa,0x62,0xa0,
0xf,0x20,0xf6,0xc8,0xfb,0x88,0x8,0x0,0x3d,0x5c,0x30,0x35,0xab,0xf,0x1f,0x5c,
0xda,0x36,0x73,0x54,0xd8,0x7e,0x81,0x94,0x4f,0x6d,0x89,0x32,0x19,0x8b,0x80,0x7,
0x5d,0x2e,0xfb,0xca,0xe4,0xe4,0x44,0xfc,0xfe,0x80,0x77,0xd8,0xb0,0x41,0xde,0x33,
0xcf,0x3c,0x89,0x77,0xdf,0xfd,0x98,0x4f,0x3e,0x99,0x7b,0x3c,0x52,0x16,0x76,0x8d,
0xde,0x2d,0xef,0x44,0x1a,0x16,0xfe,0x1,0xf1,0x7a,0xd5,0x20,0x76,0xad,0x63,0x81,
0x4,0x4d,0x22,0x4b,0x11,0x23,0xfb,0x73,0x9a,0xac,0x5e,0x40,0x72,0x2,0x5f,0xb6,
0x2c,0x2b,0x49,0x29,0x75,0x55,0x4a,0x4a,0xf2,0xef,0xa6,0x4f,0x3f,0x99,0xc9,0x93,
0xc7,0xc7,0xbf,0xfa,0xea,0xdb,0xf1,0x6f,0xbf,0xfd,0x11,0xed,0xda,0x65,0x12,0x1f,
0x1f,0x4f,0x45,0x45,0xf3,0xdf,0xb6,0xcb,0xe5,0xa2,0xa2,0xa2,0x22,0xe8,0x76,0xbb,
0xe6,0x7e,0xf6,0xd9,0xbc,0x95,0x67,0x9c,0x71,0xd2,0xa8,0xfe,0xfd,0x7b,0x67,0x7f,
0xf7,0xdd,0x8a,0x93,0x91,0xc4,0xea,0xb2,0x18,0x9f,0x73,0x16,0x92,0x1e,0x55,0xaa,
0xa5,0xa2,0x70,0x12,0x2c,0x86,0x88,0xda,0x2e,0xe2,0x90,0xac,0xe8,0xec,0x8,0xfb,
0xd0,0xae,0x16,0x3a,0x77,0x9,0xf0,0x61,0x66,0x66,0xc6,0x95,0x49,0x49,0x89,0x28,
0xa5,0xb8,0xe1,0x86,0x2b,0x98,0x3e,0xfd,0x3c,0x46,0x8e,0x1c,0xc6,0xb6,0x6d,0x37,
0xb0,0x72,0xe5,0xda,0x73,0x91,0xa4,0xc9,0x73,0x11,0x63,0xf5,0x9f,0xb4,0x8d,0x68,
0x2e,0x92,0x78,0x5c,0xa7,0xa5,0xb8,0xb0,0xc4,0xfa,0x33,0xea,0x83,0xea,0x2e,0x43,
0x72,0xe2,0x1e,0x4,0xea,0x94,0x52,0x8b,0x80,0x91,0x63,0xc6,0x8c,0xe6,0x9f,0xff,
0xbc,0x83,0xf4,0xf4,0x54,0x86,0xf,0x1f,0xc2,0xaf,0x7f,0xfd,0x3b,0x3e,0xf9,0xe4,
0xf3,0x16,0x1b,0xf0,0x50,0x48,0x62,0x33,0x83,0xc1,0xd0,0x1a,0x60,0xf3,0x8a,0x15,
0xab,0x47,0x79,0xbd,0x1e,0x92,0x93,0x93,0x8e,0xac,0xa8,0xa8,0xcc,0x6a,0x3,0x44,
0x14,0x96,0x3a,0xdf,0x6a,0x6d,0x17,0x66,0x88,0xe8,0xf0,0x21,0x15,0x9,0xf0,0x43,
0xab,0x38,0x2f,0xd0,0xb2,0xa5,0x4c,0xbd,0x45,0x45,0xbb,0xd8,0xb1,0xa3,0x88,0x1,
0x3,0xfa,0xe0,0xf1,0xc4,0x51,0x5a,0xba,0x93,0x40,0xc0,0x22,0x3e,0xde,0x17,0x96,
0x9a,0x26,0x22,0xae,0xfc,0xfb,0x11,0x27,0x82,0x5,0x74,0xa7,0x3e,0xae,0x68,0x4f,
0x28,0xd2,0x22,0xff,0x58,0xad,0x5e,0xdf,0x9b,0x92,0x92,0x7c,0x7b,0x7c,0xbc,0xaf,
0xb2,0xb0,0x70,0x2b,0x77,0xdf,0x7d,0xf,0x7e,0xbf,0x9f,0xba,0xba,0x0,0x45,0x45,
0x3b,0xf,0x97,0x99,0xa0,0xd8,0xb6,0xad,0x45,0xf,0x3f,0xfc,0xcc,0x31,0xf7,0xde,
0xfb,0x97,0xd4,0x40,0x20,0xd0,0xe3,0x85,0x17,0xde,0xc8,0x23,0xb6,0xb,0xee,0xb5,
0x6a,0x18,0x22,0x3a,0x3c,0xb0,0x81,0x11,0x5a,0xfd,0x1,0x29,0xaf,0xf0,0x78,0x3,
0x11,0xba,0xb9,0xd,0xd6,0xa5,0x8e,0xe3,0x54,0x3,0x9,0xeb,0xd7,0x6f,0xe4,0x37,
0xbf,0xf9,0x23,0x69,0x69,0x29,0x54,0x54,0x54,0xb1,0x71,0xe3,0x16,0xbf,0x26,0x93,
0x73,0xa8,0xaf,0xfb,0x54,0xd7,0x80,0x2c,0x1a,0x5e,0x5f,0x10,0x49,0x8c,0x9c,0xa9,
0xc5,0xfd,0x3a,0x24,0xf9,0xf2,0xa5,0x84,0x4,0xdf,0x7d,0xd3,0xa7,0x9f,0x54,0xb3,
0x60,0x41,0x3e,0xb7,0xdd,0x76,0xef,0xde,0x76,0xea,0x96,0x90,0x46,0xc2,0xe3,0xea,
0x77,0x1c,0xf5,0x39,0x30,0xfd,0xe9,0xa7,0x5f,0x1e,0x3e,0x6e,0xdc,0xc8,0xbc,0xe1,
0xc3,0x7,0x9d,0xfc,0xed,0xb7,0xdf,0x2d,0x6e,0x3,0x52,0x91,0x21,0x22,0x83,0xef,
0xd1,0x9,0x9,0xda,0x8c,0xd3,0x6a,0xd2,0x7b,0x40,0x8d,0xdb,0xed,0x4e,0xc,0x6,
0x83,0x3,0x90,0x9a,0x32,0x8b,0x93,0x93,0x13,0x97,0x54,0x54,0x54,0x35,0x17,0x21,
0x7d,0x84,0x4,0x2b,0x3e,0xe8,0x72,0xb9,0x52,0x93,0x93,0x93,0xc9,0xcc,0xcc,0xc0,
0xb6,0x5d,0xb8,0xdd,0x2e,0x2f,0x62,0x78,0xde,0xad,0xd5,0xb2,0x70,0x9d,0xf,0x7,
0x71,0x24,0xc4,0xf1,0xc3,0xe2,0x5a,0xa,0x31,0x58,0xff,0xb,0xa9,0x35,0x1e,0xc6,
0x56,0xcb,0xb2,0x66,0x6c,0xdf,0x5e,0xf4,0xfa,0x7,0x1f,0x7c,0x3a,0xe2,0xf8,0xe3,
0x27,0xb3,0x7b,0x77,0x5,0x25,0x25,0xa5,0xa4,0xa4,0x24,0xa3,0x94,0x43,0x41,0xc1,
0x66,0x47,0xab,0x70,0x2f,0xd3,0x8c,0x8e,0x9,0xcb,0xb2,0xfa,0x2a,0xa5,0x46,0x1,
0x3b,0x6c,0xdb,0xfe,0xc6,0x71,0x9c,0x39,0xc0,0x33,0xcb,0x97,0xaf,0xea,0x75,0xc2,
0x9,0x93,0x93,0x7d,0x3e,0xdf,0x35,0x6e,0xb7,0xfb,0xed,0x60,0x30,0xf8,0x99,0x99,
0x9e,0x86,0x88,0xda,0x2,0x5c,0xc0,0x70,0x24,0x98,0xc,0xad,0xbe,0x3c,0x62,0x59,
0x56,0x72,0x30,0x18,0x3c,0x3b,0x2d,0x2d,0xf5,0x77,0x2e,0x97,0xab,0xc7,0xee,0xdd,
0xbb,0xe7,0x57,0x54,0x54,0xfd,0x1c,0x31,0x2,0x37,0x17,0x5e,0x0,0xd2,0xd2,0xd3,
0x53,0xff,0x34,0x76,0xec,0x11,0x59,0x83,0x7,0xf7,0x67,0xed,0xda,0x2,0xa,0xb,
0xb7,0x53,0x5e,0x5e,0x89,0x56,0xc7,0x56,0x6b,0x62,0x74,0x69,0xc2,0xf9,0xc3,0x5e,
0xa4,0x35,0x1b,0xf1,0xae,0xd,0xa0,0xbe,0x54,0x29,0x4a,0xa9,0xa0,0x65,0x59,0x77,
0xad,0x5b,0xb7,0xe1,0x81,0x27,0x9e,0x98,0x99,0x35,0x7a,0xf4,0x70,0x2c,0xcb,0x22,
0x27,0x27,0xb,0xdb,0xb6,0x2,0x5,0x5,0x9b,0x5f,0x44,0xe2,0x98,0x9a,0xb3,0x26,
0x77,0x7,0xa5,0xd4,0xed,0x19,0x19,0xe9,0xd3,0x3d,0x1e,0x77,0xcd,0x8e,0x1d,0x45,
0xbf,0x77,0xb9,0x5c,0xf7,0x3b,0x8e,0xf3,0x69,0x5d,0x9d,0x7f,0x75,0x7e,0xfe,0xb2,
0x11,0x3,0x7,0xf6,0x55,0x3b,0x77,0x16,0x4f,0x58,0xbb,0xb6,0x60,0x21,0xb1,0x1f,
0x32,0x62,0x88,0xa8,0x95,0xc1,0x72,0xbb,0xdd,0xc9,0xc1,0x60,0xd0,0xa7,0x55,0x8b,
0x32,0x9a,0x3f,0x5c,0xa0,0x2b,0x92,0xea,0xd0,0xe,0x31,0x50,0x7f,0xae,0x17,0x6c,
0x7b,0xe0,0xfc,0x51,0xa3,0x86,0xf5,0xe8,0xdc,0x39,0x2f,0x34,0x73,0xe6,0x6b,0xa3,
0x82,0xc1,0x9a,0xa3,0x9b,0x99,0x88,0x42,0x9,0x9,0x9,0xcf,0x6d,0xde,0xbc,0x35,
0x78,0xff,0xfd,0x4f,0x9c,0x8b,0x4,0xf7,0xb9,0x44,0x80,0xb0,0x2a,0x95,0x52,0xfd,
0x11,0x23,0x75,0x5c,0x84,0x6a,0xb3,0x3f,0xa8,0x6,0xbf,0x3b,0x4a,0xa9,0x3a,0x60,
0x73,0x6d,0x6d,0x9d,0xf5,0xd9,0x67,0xf3,0x42,0x80,0xbd,0x6a,0xd5,0xda,0x4d,0xc0,
0xc7,0x5e,0xaf,0xf7,0x69,0xbf,0xdf,0xbf,0xb9,0x99,0xc7,0x7c,0x18,0x30,0x65,0xea,
0xd4,0x89,0x64,0x65,0xa5,0xc7,0x3f,0xfc,0xf0,0xd3,0xbf,0xc,0x85,0x42,0x4b,0xf5,
0x26,0xf0,0xd5,0x8e,0x1d,0x45,0x23,0x7a,0xf4,0xe8,0xea,0xae,0xaa,0xaa,0x3e,0xb,
0x9,0x28,0x6d,0x29,0x5b,0x51,0xa2,0x26,0xef,0x52,0x5a,0x49,0x59,0x17,0x43,0x44,
0x87,0x7,0xde,0x60,0x30,0x78,0x5a,0xa7,0x4e,0x1d,0x8e,0xba,0xf4,0xd2,0xf3,0x2a,
0xdf,0x7f,0xff,0x93,0x5,0x5f,0x7e,0xb9,0xe0,0x63,0x7e,0x5c,0x8c,0xac,0x29,0x6d,
0x14,0x3d,0x91,0x92,0x9d,0x20,0x31,0x37,0xe1,0x26,0x0,0x55,0x2e,0x97,0x6b,0x4b,
0x20,0x10,0x60,0xdb,0xb6,0xed,0xae,0x60,0x30,0x48,0x73,0x4f,0x4e,0xdb,0xb6,0xa9,
0xae,0xae,0xde,0x8d,0xc4,0x5,0xcd,0x45,0xf2,0xcd,0xe2,0x35,0x79,0xd8,0x7a,0xa1,
0xd8,0x87,0x68,0xaf,0xa,0xdb,0x65,0xbe,0x46,0xa2,0xae,0x2d,0x7d,0xcc,0xc5,0xc0,
0x97,0x7e,0xbf,0xbf,0x25,0x16,0x60,0x10,0x8,0x6e,0xdd,0xba,0xd,0x97,0xcb,0x26,
0x25,0x25,0xc9,0x55,0x56,0x56,0x1e,0x4e,0x6d,0xf8,0xdf,0xb7,0xdf,0x7e,0x77,0xda,
0x91,0x47,0x8e,0xc8,0xeb,0xd3,0xa7,0x47,0xe7,0xca,0xca,0xaa,0x81,0x15,0x15,0x95,
0xeb,0x68,0x5e,0x1b,0x5d,0x7b,0xc4,0x5b,0x7a,0x1c,0x90,0x89,0x94,0xec,0xdd,0x6d,
0x88,0xa8,0x8d,0x4a,0x43,0x5a,0xe5,0xb8,0xc2,0x71,0x9c,0xd1,0x1e,0x8f,0x9b,0x29,
0x53,0xc6,0x6d,0x1d,0x33,0xe6,0x88,0xb7,0xef,0xba,0xeb,0xe1,0x2f,0x90,0xf0,0xf7,
0xa6,0xee,0x14,0x92,0x4c,0x7d,0xb,0xe6,0x10,0x52,0xae,0x74,0x89,0x7e,0xbf,0x5d,
0x29,0xf5,0xf2,0xa7,0x9f,0xce,0x3d,0x4a,0x29,0x95,0xa0,0x17,0xee,0xf2,0xe6,0x1c,
0x0,0xc7,0xf9,0x81,0xf0,0xf7,0x9d,0x7e,0xc5,0x22,0x36,0x2,0xcb,0xe6,0xcc,0xf9,
0x7a,0x2,0x50,0xe7,0x72,0xb9,0x9e,0xf,0xdb,0xbd,0x72,0x73,0x13,0xde,0xde,0xbe,
0xbd,0xfa,0xd8,0x4f,0x3f,0x9d,0xfb,0xf3,0x53,0x4f,0x3d,0x3e,0x75,0xf5,0xea,0xf5,
0xbf,0xac,0xa8,0xa8,0x5c,0x96,0x99,0x99,0xb1,0x76,0xd7,0xae,0x92,0xa6,0x26,0x23,
0xf,0x30,0xb9,0x6f,0xdf,0x9e,0x17,0xa4,0xa7,0xa7,0xf6,0x5c,0xbc,0x78,0xf9,0xe0,
0xea,0xea,0x1a,0x1b,0xf1,0x96,0xbe,0x41,0xec,0x35,0x82,0x38,0x28,0x7b,0x45,0x53,
0xe3,0x18,0xc4,0x35,0x3d,0xbb,0x99,0x59,0xfe,0x14,0x3d,0xc1,0xbe,0x3b,0x84,0x7b,
0x3f,0x9,0xb8,0xac,0xa2,0xa2,0xd2,0x9a,0x37,0xef,0x1b,0xd2,0xd3,0xd3,0x92,0x13,
0x13,0xe3,0x47,0x64,0x65,0xa5,0x9f,0x3e,0x61,0xc2,0x91,0x63,0xd7,0xae,0xdd,0x80,
0xdf,0xef,0x2f,0xd6,0xa2,0x73,0x53,0x20,0xf,0xa9,0xcd,0x93,0x80,0x64,0xa3,0xdf,
0x43,0x7d,0x1b,0x69,0xa5,0x94,0x5a,0xa7,0x3f,0xff,0x10,0x29,0x9d,0xb1,0x1e,0x53,
0xe9,0xb2,0x29,0x36,0x9c,0x62,0x24,0x5f,0xce,0x5,0x3c,0xaf,0x94,0xfa,0xf,0x12,
0xb3,0x65,0x55,0x56,0x6,0x14,0x50,0x5b,0x5d,0x5d,0x33,0x75,0xd8,0xb0,0x81,0xa9,
0xa0,0x7a,0x96,0x97,0x57,0x7e,0x56,0x5c,0x5c,0xb2,0xb2,0x29,0xa5,0x22,0xdb,0xb6,
0x8e,0x52,0x8a,0xab,0x7,0xc,0xe8,0xf3,0x97,0x1e,0x3d,0xba,0x8e,0x76,0x1c,0x27,
0x6f,0xfb,0xf6,0x9d,0x6e,0xbf,0x3f,0xe0,0xd2,0x2,0xc1,0x3b,0x1c,0x5a,0xb2,0xf3,
0x30,0x2d,0x61,0xfd,0x17,0xb1,0xeb,0x35,0x17,0x92,0x91,0x7e,0x77,0x1b,0x90,0xa6,
0x99,0x46,0x22,0x6a,0x2,0xf1,0xf8,0x58,0xa4,0xeb,0xc3,0xdf,0xab,0xaa,0xaa,0xbb,
0xbe,0xfc,0xf2,0x5b,0x33,0x5c,0x2e,0x9b,0x33,0xce,0x38,0xa9,0x63,0xe7,0xce,0x79,
0x7d,0xce,0x3a,0xeb,0x94,0x7,0xca,0xca,0xca,0x4f,0x2d,0x28,0xd8,0xf4,0x78,0x49,
0x49,0xe9,0xca,0xdd,0xbb,0x2b,0x76,0x95,0x95,0xed,0xde,0xda,0xc8,0x9,0xea,0x46,
0x7a,0x4a,0xa5,0x6a,0x69,0x68,0x2e,0x12,0x81,0xdc,0x50,0x85,0x78,0x69,0x1f,0x36,
0x17,0x83,0x83,0x47,0x38,0x99,0x36,0x1f,0xf1,0x12,0xfe,0x68,0x6c,0x5d,0x2e,0xfb,
0xbb,0xaa,0xaa,0xea,0xfc,0x15,0x2b,0x56,0xe7,0x8d,0x1e,0x3d,0xdc,0xb5,0x78,0xf1,
0xf2,0xf3,0x80,0x4f,0x39,0xb4,0x0,0x53,0x6f,0x4a,0x4a,0x72,0xe7,0x60,0x30,0x38,
0xa1,0xba,0xba,0x66,0x40,0x7c,0x7c,0xfc,0xf1,0xbd,0x7b,0xf7,0xe8,0x9f,0x97,0x97,
0xcb,0x9a,0x35,0x5,0xb5,0xab,0x56,0xad,0xad,0x42,0xca,0xa1,0x4c,0x5,0x6,0x23,
0xe,0x8c,0x39,0x6d,0xd5,0x56,0xd4,0x56,0x89,0xc8,0x83,0x4,0x13,0x4e,0x2,0x6e,
0xd7,0x13,0xc2,0x67,0x59,0xd6,0xe7,0xa1,0x90,0x93,0xf4,0xd2,0x4b,0x6f,0x9d,0xd2,
0xa1,0xc3,0xfc,0xd1,0x47,0x1e,0x39,0xa2,0xab,0xc7,0xe3,0x3e,0x26,0x3e,0x3e,0x6e,
0x78,0xcf,0x9e,0xdd,0x96,0xd,0x18,0xd0,0x67,0x53,0x59,0xd9,0xee,0xf7,0x9f,0x79,
0xe6,0xe5,0x6f,0x22,0x24,0x99,0x83,0xb1,0xd,0x5d,0xa5,0xc7,0xbc,0x14,0xf8,0xc0,
0x70,0x44,0x8b,0x92,0xd1,0x5e,0x11,0xa,0x39,0x45,0xc0,0x17,0xeb,0xd6,0x6d,0x9c,
0x38,0x6a,0xd4,0xf0,0xd4,0xc4,0xc4,0x84,0x69,0x48,0xc7,0x8a,0x92,0xfd,0xfd,0xaf,
0xcb,0xe5,0xfa,0x3e,0x62,0x5b,0xa3,0x4b,0x8f,0x1e,0x5d,0xd2,0x80,0x29,0x29,0x29,
0xc9,0x93,0x6b,0x6a,0x6a,0x8f,0x5c,0xb9,0x72,0x6d,0x56,0x30,0x18,0xc4,0xe5,0xb2,
0x8b,0x16,0x2c,0xc8,0xdf,0xbe,0x63,0x47,0xd1,0x87,0x48,0x3a,0xcc,0x4c,0x24,0x74,
0xe3,0x63,0xc4,0x6e,0xf8,0x95,0x21,0xa2,0xb6,0x87,0x5c,0x24,0xf9,0x6f,0xa6,0x7e,
0x5f,0xab,0x94,0x7a,0x1b,0xc0,0xe3,0x71,0x7f,0xbd,0x75,0xeb,0x8e,0xa1,0xaf,0xbd,
0xf6,0xee,0xc4,0x1e,0x3d,0xba,0xf4,0xf5,0xfb,0x3,0xc3,0x93,0x93,0x93,0xc6,0x67,
0x66,0xa6,0x93,0x95,0x95,0x31,0xf6,0xbe,0xfb,0x6e,0x5d,0xbf,0x70,0xe1,0xe2,0xa7,
0x9f,0x7d,0xf6,0x95,0xad,0xda,0x96,0xb4,0xee,0x0,0x16,0x42,0x3a,0x92,0xe4,0xaa,
0x34,0x89,0x7d,0x6a,0xf8,0xa1,0x55,0x61,0xde,0xaa,0x55,0xeb,0x6a,0xa,0xa,0x36,
0xa7,0x8e,0x1e,0x3d,0xdc,0xa,0x85,0x42,0x23,0x36,0x6e,0xdc,0xb2,0xdf,0x2a,0x99,
0x11,0x24,0x34,0x16,0xf1,0x3a,0x9e,0x5a,0x5e,0x5e,0x99,0xd8,0xa1,0x43,0xce,0x88,
0x40,0x20,0x90,0x51,0x53,0x53,0xb,0xb0,0xa6,0xae,0xce,0xff,0xca,0xc2,0x85,0x8b,
0xd7,0x0,0x9b,0x3d,0x1e,0x4f,0x7e,0x20,0x10,0x8,0x3b,0x44,0xe6,0x69,0x52,0xea,
0x89,0x54,0xb1,0x34,0x3d,0xb1,0x9b,0x8,0x7f,0x43,0x12,0x1f,0xbb,0x34,0xf3,0x79,
0x1e,0x45,0xd4,0x20,0x71,0xc9,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xf2,0xa0,
0x1a,0x63,0x33,0xe8,0xa6,0x45,0xf5,0x37,0xa8,0x77,0x4d,0xef,0x9,0xed,0xf4,0xe4,
0x3a,0xc3,0xe7,0x8b,0x7b,0x3a,0x33,0x33,0xbd,0x72,0xc0,0x80,0x3e,0xea,0xe2,0x8b,
0xcf,0x51,0xdd,0xba,0x75,0xda,0xf8,0xb7,0xbf,0xdd,0xb4,0x34,0x2f,0xaf,0xfd,0x7,
0x48,0xe7,0xd9,0x7d,0xc1,0xa7,0xc7,0x24,0x5c,0x2a,0xe3,0x5f,0x66,0x9a,0xb4,0x2e,
0xa4,0xa5,0xa5,0xda,0xc0,0x1d,0x69,0x69,0xa9,0x15,0xf,0x3e,0xf8,0x57,0xd5,0xae,
0x5d,0xd6,0x77,0xc0,0x40,0x97,0xcb,0xb5,0x3f,0x1b,0x5d,0x1e,0xf0,0x97,0xde,0xbd,
0xbb,0x7f,0xfb,0x87,0x3f,0x5c,0xb3,0x9,0x50,0x5e,0xaf,0x47,0xa5,0xa7,0xa7,0xa9,
0x94,0x94,0xa4,0x2d,0x5e,0xaf,0xe7,0x76,0x6d,0xbb,0x49,0x65,0xef,0x69,0x2c,0x37,
0x1,0xdb,0x91,0xda,0x40,0x8d,0x2d,0xc9,0x71,0x91,0x96,0xe0,0x4e,0x69,0x1,0x93,
0xc6,0x6f,0x89,0x82,0x8a,0x5,0xad,0x9d,0x88,0xc2,0xbb,0x57,0x8,0x49,0x61,0x38,
0x50,0xb4,0x3,0x8e,0x7,0xe6,0x24,0x24,0xc4,0x2b,0x40,0x4d,0x9c,0x78,0x94,0x3a,
0xe5,0x94,0x63,0xd5,0x63,0x8f,0xfd,0x63,0x4b,0xef,0xde,0x3d,0xde,0xe1,0x87,0xa5,
0x33,0x22,0x91,0x4a,0x7d,0x61,0xf3,0x2f,0x5a,0x60,0x6c,0xc,0xe,0x66,0x67,0xd2,
0x85,0xdb,0x2c,0x8b,0x49,0x40,0xf1,0xf4,0xe9,0x27,0xa9,0x73,0xcf,0x9d,0xae,0x32,
0x33,0xd3,0x4f,0x63,0xef,0xce,0x2,0xb,0x38,0x27,0x25,0x25,0x69,0xde,0xe5,0x97,
0x5f,0x50,0xdd,0xbd,0x7b,0x67,0x35,0x71,0xe2,0x98,0x70,0x47,0xdb,0xcf,0x90,0x24,
0xe0,0xc9,0x88,0x63,0x62,0x7f,0xe8,0x2,0x2c,0x0,0xee,0x40,0x42,0x26,0xc,0x11,
0xb5,0x1,0x22,0x72,0x21,0x31,0x2c,0x5f,0x51,0x5f,0x20,0xea,0x60,0xd0,0x45,0x4b,
0x34,0x95,0x80,0xca,0xcb,0xcb,0x55,0xa7,0x9f,0x7e,0x82,0x7a,0xe4,0x91,0x3b,0x55,
0xdf,0xbe,0x3d,0xe7,0x4f,0x99,0x32,0xee,0x7d,0xe0,0xdf,0xd4,0xb7,0x5,0x2,0x78,
0x95,0xfa,0xbe,0x5b,0xf7,0x9b,0xa5,0xdf,0x6a,0xe1,0x3,0x1e,0x68,0xd7,0x2e,0xab,
0xf6,0xb6,0xdb,0x6e,0x54,0xd9,0xd9,0x59,0xab,0xf4,0x26,0x12,0x46,0x22,0xd0,0xd5,
0xe5,0x72,0x7d,0x34,0x7e,0xfc,0xa8,0xf,0x73,0x72,0xb2,0x37,0x1f,0x77,0xdc,0x24,
0x35,0x6a,0xd4,0x50,0xe5,0xf1,0xb8,0x1d,0x60,0xb6,0x65,0x59,0x37,0xed,0x63,0x43,
0xda,0x17,0xee,0x44,0xbc,0xc0,0x43,0x69,0x9c,0xa7,0xd4,0x10,0x51,0x14,0x11,0x91,
0xb,0xb8,0x41,0x93,0xc2,0x6f,0xf,0xe1,0xdc,0x3d,0x90,0x38,0x9f,0x1a,0x7d,0x2c,
0x75,0xc4,0x11,0x43,0x54,0x5c,0x9c,0x57,0x5d,0x76,0xd9,0xf9,0x2a,0x27,0x27,0x3b,
0x74,0xcb,0x2d,0xd7,0xcc,0x9f,0x3c,0x79,0xec,0x5f,0xd2,0xd3,0x53,0x7f,0x15,0xf1,
0xbd,0x4d,0xd4,0xb7,0x93,0x36,0x68,0x9d,0x18,0x1,0x2c,0xb9,0xf9,0xe6,0xab,0x43,
0x93,0x26,0x1d,0xa5,0xb2,0xb3,0x33,0xdb,0x3,0xf1,0xd9,0xd9,0x99,0x93,0x13,0x12,
0x7c,0x33,0x2f,0xb8,0xe0,0xec,0x45,0x5e,0xaf,0x47,0x9d,0x77,0xde,0x19,0xca,0xe5,
0x72,0xa9,0xbc,0xbc,0xdc,0x22,0xe0,0x75,0xa4,0xb2,0x68,0xa7,0x3,0x94,0x80,0xf6,
0x84,0xf1,0x7a,0xa3,0x9a,0x42,0xe3,0x2a,0x11,0x44,0x35,0x11,0xb5,0x35,0x63,0x75,
0x8,0xc9,0x95,0xfa,0xe6,0x10,0x25,0x93,0xf5,0xc0,0x95,0x7a,0xe2,0xfd,0x2,0xe8,
0xba,0x70,0xe1,0xe2,0x7e,0x0,0x6f,0xbc,0xf1,0x1,0x81,0x40,0xc0,0xce,0xcf,0x5f,
0x3e,0x72,0xf2,0xe4,0xb1,0x7d,0x8b,0x8a,0x76,0xf9,0x4b,0x4b,0x77,0x7b,0xa9,0xf,
0x60,0xdc,0x6c,0xd6,0x7a,0xab,0xc6,0x37,0x40,0xe1,0xaa,0x55,0x6b,0x7,0xf4,0xec,
0xd9,0x95,0x25,0x4b,0x96,0x3f,0x75,0xea,0xa9,0xc7,0x5,0xbe,0xfa,0xea,0xdb,0x3e,
0x43,0x86,0xc,0xe8,0xb6,0x74,0xe9,0x4a,0x77,0x30,0x18,0xe2,0x8b,0x2f,0xe6,0xbf,
0x1b,0xa,0x85,0x16,0x17,0x16,0x6e,0x7f,0x1b,0xd8,0x6c,0x59,0x56,0x99,0x52,0xaa,
0xe2,0x10,0xce,0x5b,0x80,0x4,0x36,0x3e,0x84,0x34,0xda,0x34,0x88,0x61,0x89,0xe8,
0x74,0x2d,0x99,0x2c,0x6b,0xa2,0x6b,0x70,0xe9,0x1d,0x62,0x18,0x52,0x10,0xbe,0xa,
0x50,0xb6,0x6d,0xab,0xf8,0xf8,0x78,0x95,0x97,0xd7,0x5e,0x85,0xed,0x49,0x48,0xb0,
0xda,0xd5,0x66,0x7a,0xb4,0x7e,0x5b,0x11,0xf0,0xb,0x97,0xcb,0x2e,0xfe,0xe0,0x83,
0x59,0x2a,0x21,0x21,0xde,0x39,0xed,0xb4,0xe3,0x43,0x1e,0x8f,0x5b,0x25,0x27,0x27,
0xa9,0xb8,0xb8,0xb8,0xb7,0x90,0x26,0xf,0xed,0xbc,0x5e,0x6f,0x6a,0x13,0x5f,0xc2,
0xdf,0xf5,0x5c,0xb9,0x89,0x83,0xf,0x36,0x36,0xaa,0x59,0x14,0x11,0xd1,0x6b,0x88,
0xd7,0x6a,0x78,0x33,0x5c,0x8f,0x17,0xf1,0x8e,0x9c,0xd,0xfc,0x31,0xac,0xb2,0xe9,
0x57,0x8,0xb1,0x49,0xa5,0x99,0xe5,0xde,0xfa,0x61,0xdb,0x76,0x36,0xb0,0x79,0xc2,
0x84,0x23,0xd5,0x93,0x4f,0xde,0xa3,0x52,0x52,0x92,0x42,0x7a,0xbe,0x9d,0xad,0xe7,
0x75,0x52,0x33,0x9d,0x3a,0x53,0x4b,0xdb,0x8d,0x91,0xac,0xa2,0x9a,0x88,0xda,0x52,
0xcb,0xe9,0x53,0x10,0x2f,0xc6,0x1c,0x9a,0xa7,0x5d,0x8f,0x1f,0xa9,0xf1,0xf3,0x1a,
0x52,0xd6,0xe2,0x58,0xad,0x8a,0x85,0x55,0xc2,0x37,0x30,0x45,0xb7,0xa2,0x2,0x8e,
0xe3,0x14,0x1,0xf7,0x7c,0xfe,0xf9,0x57,0x75,0x96,0x5,0x59,0x59,0x19,0x58,0x96,
0xf5,0x8d,0x7e,0xb6,0x1b,0x69,0xbe,0xba,0xe2,0xbb,0x90,0xba,0x4c,0xf1,0x48,0x6d,
0xe9,0x36,0x93,0xde,0xd3,0x56,0x88,0x28,0x11,0xe9,0x2c,0x9a,0x6,0x9c,0xd0,0x8c,
0xe7,0x9,0xb7,0xda,0xa9,0x46,0x82,0x17,0xbb,0xea,0xcf,0x4b,0xb5,0xa4,0x8,0x12,
0xb7,0x74,0x3a,0x52,0xc,0xec,0x68,0xb3,0xec,0x5b,0x2d,0x9e,0x5,0x96,0xdd,0x75,
0xd7,0xc3,0xce,0xfd,0xf7,0xdf,0xa6,0x6c,0xdb,0xe,0xe8,0x67,0xdb,0xdc,0xb8,0x51,
0x4b,0xed,0xe1,0x90,0xf,0x43,0x44,0x31,0x84,0x2c,0x24,0x76,0xe8,0x6a,0x5a,0xa6,
0x8b,0xaa,0x7,0xe9,0x23,0x1f,0x47,0x7d,0xf5,0xc2,0x48,0x15,0x6e,0x22,0x62,0x53,
0x7a,0x17,0x71,0xed,0x77,0x40,0xc,0xdf,0x1d,0x11,0x17,0xb2,0xc1,0xe1,0x47,0x11,
0xb0,0xae,0xbc,0xbc,0xd2,0xf1,0xfb,0x3,0x2e,0xcb,0xe2,0x62,0x24,0x78,0xb1,0x25,
0xb0,0x1e,0xf1,0xa2,0x1d,0x6f,0x88,0x28,0xb6,0xd0,0x43,0xeb,0xb6,0x6b,0x5a,0xe8,
0x7c,0x99,0xd4,0x77,0x10,0xd,0x21,0x4d,0xec,0xc2,0x8,0x20,0x71,0x4c,0x1f,0x23,
0xa9,0x21,0xd3,0xf5,0xcf,0xd5,0x48,0x11,0xb4,0xc7,0x10,0xdb,0x97,0x71,0xf3,0x1f,
0x7e,0x7c,0xb5,0x79,0xf3,0x56,0xe7,0xe9,0xa7,0x5f,0xe6,0x86,0x1b,0x7e,0xd5,0x7,
0x18,0xda,0xbf,0x7f,0xaf,0x96,0x50,0x97,0x6,0x69,0x89,0x68,0x3c,0xad,0xa4,0x25,
0xb4,0x21,0xa2,0x43,0x87,0x17,0xf8,0xb5,0xd6,0xed,0x57,0xb6,0xd0,0x39,0xa7,0x68,
0xa9,0x47,0x21,0x15,0xff,0xca,0x23,0xfe,0x56,0x8b,0xf4,0x83,0x3f,0x1e,0x69,0x42,
0x78,0x9f,0x56,0xdd,0x6c,0x3d,0xf9,0xce,0x45,0x8c,0xfd,0x4f,0x2,0x7f,0x6,0xfa,
0x1b,0x3e,0x38,0x6c,0xb8,0x1b,0x58,0xb7,0x74,0xe9,0xa,0x55,0x5b,0x5b,0x9b,0xdd,
0xb3,0x67,0xd7,0xb,0x97,0x2f,0x5f,0x13,0x9f,0x92,0x92,0xd4,0xdc,0xe7,0x75,0xf4,
0x1c,0xb9,0x4,0x29,0xbd,0x6b,0x88,0x28,0x6,0x30,0x54,0x2f,0xfa,0x87,0x91,0x58,
0x8d,0x96,0xc0,0x9d,0x7a,0x6c,0xcb,0x34,0xd1,0xd4,0xed,0x61,0xa2,0x5,0x91,0x92,
0xa4,0xbf,0x45,0x5a,0x6c,0x3f,0xa3,0xff,0x16,0xae,0xf7,0x3c,0xe,0xa9,0x49,0x34,
0x4b,0x4b,0x4d,0x5e,0xc3,0xb,0x87,0x5,0xbf,0x5a,0xb7,0x6e,0x63,0x60,0xf7,0xee,
0xa,0xd5,0xad,0x5b,0x97,0x69,0x40,0x57,0x5d,0xcf,0xbb,0xb9,0x71,0x97,0x56,0xed,
0x4f,0x32,0x44,0x14,0xfd,0x48,0xd1,0x44,0x50,0x5,0x7c,0x42,0xcb,0x18,0xff,0x1e,
0x41,0x32,0xfb,0x2d,0xe0,0x45,0x24,0x40,0x6e,0x5f,0xa8,0x45,0xbc,0x78,0x8f,0x6a,
0x32,0x2a,0x69,0xf0,0x5c,0x7a,0x21,0xf6,0x23,0x97,0xe1,0x84,0xc3,0x82,0xcf,0x81,
0x27,0x17,0x2c,0x58,0xcc,0x90,0x21,0xfd,0x3d,0xc9,0xc9,0x89,0x4f,0xd4,0xef,0x17,
0xcd,0x8a,0x2,0xa4,0x44,0xc8,0x8d,0x48,0xb4,0xb7,0x21,0xa2,0x28,0x46,0x1a,0x52,
0x87,0xf9,0x26,0xc4,0x2e,0xd3,0x12,0x38,0x4f,0x8f,0x6b,0x58,0xea,0x39,0x50,0x2c,
0x4,0xfe,0xf,0x78,0xa,0xa9,0x6c,0x19,0xfe,0xdf,0xb7,0x90,0x14,0x82,0x1a,0xc3,
0x9,0x87,0x5,0x41,0xe0,0x4d,0x50,0xca,0xed,0x76,0x59,0x60,0xd,0x3,0xdc,0x2d,
0xb0,0xa7,0xd5,0x0,0x7f,0xd1,0xbf,0x77,0x33,0x44,0x14,0xdd,0xe8,0xa7,0x9,0xa1,
0xa5,0x6a,0x1,0x67,0xe9,0xf3,0x85,0x2b,0x2,0xfe,0xf9,0x20,0xff,0xbf,0xc,0xb8,
0x5e,0x13,0xe8,0x75,0x5a,0x75,0x5b,0x43,0xcb,0x78,0xfa,0xc,0xf6,0x2,0xcb,0xb2,
0x2a,0x97,0x2c,0x59,0x5e,0x53,0x57,0x57,0xc7,0x84,0x9,0x63,0x40,0x2a,0x2a,0xb6,
0x4,0x42,0x88,0x7d,0xb1,0xbb,0x21,0xa2,0xe8,0x45,0x22,0xe2,0x1e,0x5f,0x43,0xcb,
0xb5,0x72,0xfe,0xe,0xa9,0xe9,0x1b,0x42,0xd2,0x48,0x1a,0x5b,0xe4,0xca,0x2,0x1e,
0xd0,0x6a,0xd9,0xcd,0xc0,0xe,0x43,0x7,0x87,0x8d,0x84,0x50,0x4a,0xcd,0x1,0x6e,
0x9f,0x33,0x67,0xbe,0x9a,0x38,0x71,0xb4,0x7,0x98,0xdf,0x42,0xa7,0x2f,0xd2,0x26,
0x85,0x3b,0x89,0x82,0x94,0xa,0x43,0x44,0x7b,0xc6,0xb5,0x5a,0x12,0xba,0x8f,0x96,
0xe9,0x4e,0x71,0x7a,0x84,0xe4,0xb5,0x1d,0xc9,0x1b,0x6a,0xac,0x55,0xd3,0xd4,0xa9,
0x6e,0x25,0x50,0x4a,0x1e,0x85,0xdb,0x6d,0xcf,0x5d,0xb8,0x70,0xf1,0x26,0xa5,0x94,
0x7d,0xda,0x69,0x27,0x38,0x7a,0x5e,0x35,0x37,0x4a,0x91,0xe4,0xec,0x9d,0x48,0x49,
0x63,0xd3,0x48,0xe1,0x20,0xd0,0x1a,0x72,0xcd,0xfa,0x0,0xdb,0xa8,0x4f,0xb1,0x68,
0x6e,0xa4,0x20,0x5d,0x18,0x82,0x9a,0x44,0xde,0x35,0xd3,0x20,0x76,0xe0,0xf1,0x7c,
0xef,0x27,0xf8,0x87,0xcb,0x65,0x7,0xb6,0x6c,0x59,0xa4,0x80,0x22,0xdb,0xb6,0x5b,
0x4a,0x4a,0x79,0x41,0xcf,0xad,0x8b,0xf6,0xf1,0x1d,0x93,0x6b,0xd6,0xa,0x31,0x11,
0xf1,0x5c,0x9d,0xda,0x42,0xe7,0x1b,0xac,0xf5,0xf8,0x70,0x5b,0xe6,0x69,0x66,0xf9,
0xc6,0xe,0x2,0x81,0xef,0xeb,0x52,0xaf,0x70,0xb9,0xdc,0xc1,0x5d,0xbb,0x76,0xd3,
0xbd,0x7b,0x67,0xaf,0xe3,0x38,0x63,0x5b,0xe8,0x12,0x7e,0x86,0xb4,0x44,0x3a,0x21,
0x56,0xc7,0x38,0x16,0x89,0x28,0x1b,0x31,0x12,0xaf,0x41,0x7a,0x84,0x35,0x37,0xe2,
0x90,0xc0,0xb3,0x70,0x24,0xf4,0x6e,0xda,0x56,0x32,0x71,0x5b,0xc2,0x36,0xbf,0xdf,
0x5f,0x36,0x64,0xc8,0x24,0xe6,0xcd,0x7b,0xc7,0xa5,0x37,0x3b,0x4f,0xb,0x9c,0x57,
0xe9,0x79,0x95,0xa5,0xa5,0x6f,0x43,0x44,0x51,0x80,0x76,0x88,0xa1,0xfa,0x67,0x34,
0xae,0x9c,0x42,0x63,0x88,0xc8,0x87,0x78,0xcb,0xd0,0xb6,0x83,0x90,0x59,0xb3,0x31,
0x89,0xf7,0x80,0xa7,0xe3,0xe2,0xbc,0xdc,0x73,0xcf,0xa3,0x89,0x93,0x26,0x1d,0x75,
0x2e,0x12,0x45,0xdf,0xdc,0x70,0x80,0xe7,0xb5,0xa4,0x7f,0x8d,0x21,0xa2,0xe8,0xc0,
0x15,0x48,0xf6,0xbb,0x9b,0x96,0x31,0xee,0x8d,0x45,0x72,0xc9,0xbc,0x48,0xf0,0xe2,
0x9f,0xc,0x11,0xc5,0x34,0xfe,0x5d,0x57,0xe7,0x2f,0x7d,0xf4,0xd1,0x67,0xb9,0xf8,
0xe2,0x73,0x92,0x52,0x52,0x92,0xc7,0xd3,0xfc,0x51,0xef,0x21,0x24,0xa6,0x68,0xa1,
0x56,0xcf,0xd2,0xd,0x11,0xb5,0x6e,0x8c,0x42,0xec,0x42,0xaf,0x20,0x5d,0x11,0x5a,
0xc2,0xfb,0x74,0x31,0x12,0xf9,0x5c,0x81,0x78,0xea,0x8c,0x67,0x23,0xb6,0xb1,0x16,
0xf8,0xbd,0x52,0xf0,0xd9,0x67,0xf3,0x92,0xc7,0x8d,0x1b,0x75,0x3a,0x92,0x46,0xd4,
0xdc,0x70,0x21,0x75,0xae,0x7a,0x6b,0x53,0x80,0x21,0xa2,0x56,0x8a,0x44,0xa4,0xa5,
0x70,0x16,0xf0,0x25,0x2d,0x13,0x4,0x78,0xc,0xd2,0x2d,0xd6,0x42,0x22,0xa0,0x17,
0x63,0x5c,0xef,0x6d,0x1,0x8f,0xd5,0xd5,0xd5,0x51,0x5e,0x5e,0x49,0x52,0x52,0x62,
0x8e,0x65,0x59,0xed,0x5b,0xe0,0x9c,0x21,0xe0,0x4d,0x3d,0xb7,0xa7,0x1a,0x22,0x6a,
0xbd,0x18,0xa1,0xa5,0xa1,0x38,0x24,0x55,0xe2,0x6a,0xa4,0xce,0x4f,0x7a,0x33,0x4a,
0x29,0x7f,0xd5,0xc4,0x7,0x52,0xca,0x23,0x60,0xd6,0x68,0x9b,0x80,0xa7,0xae,0xce,
0xff,0xd6,0xd2,0xa5,0x2b,0xc9,0xc9,0xc9,0x8a,0xeb,0xda,0xb5,0xe3,0xf8,0x66,0x3e,
0x9f,0xf,0xa9,0x85,0x74,0xb9,0x9e,0x6f,0xb9,0x40,0xdf,0x58,0x1a,0xd0,0x58,0xea,
0xe2,0xb1,0xb,0x69,0xd7,0x93,0x85,0xe4,0x97,0x8d,0x46,0x6c,0x37,0x95,0x5a,0x4d,
0x7b,0x8b,0xa6,0xf5,0xa2,0xe5,0x52,0x5f,0xbb,0xb8,0x4,0x58,0x84,0x94,0x8b,0x35,
0x88,0x7d,0xd4,0x2a,0xa5,0xfe,0x6f,0xd7,0xae,0x92,0x63,0x82,0xc1,0x60,0x62,0x56,
0x56,0xe6,0x45,0x5,0x5,0x9b,0xdf,0x40,0xca,0x10,0x37,0xf5,0xfa,0xec,0x83,0xd4,
0xca,0xee,0x87,0x74,0x82,0x5,0x31,0x5e,0x4f,0xd7,0x1b,0xa1,0x21,0xa2,0x56,0x86,
0x95,0x48,0x77,0x85,0xa9,0x5a,0x32,0x4a,0xd0,0xf,0x10,0xfd,0xd0,0x26,0x21,0x85,
0xc7,0xee,0xd6,0x92,0xe0,0xa1,0xd6,0x72,0xb8,0x81,0xfa,0x52,0xb0,0xaf,0x23,0xdd,
0x3d,0x83,0x66,0x8d,0xb6,0xd,0x28,0xa5,0x2a,0x4b,0x4a,0x76,0xbf,0xb4,0x64,0xc9,
0x8a,0xb,0x26,0x4f,0x3e,0x2a,0x75,0xc1,0x82,0xfc,0xeb,0x9a,0x88,0x88,0x7c,0x7a,
0x7e,0xfe,0x1f,0x62,0x4,0x9f,0x4,0x4c,0x88,0xd0,0x5e,0x36,0x2,0x6f,0x23,0x55,
0x1,0x8c,0x44,0xd4,0xa,0x11,0x2,0xfe,0xb,0xcc,0x6,0xde,0x47,0xe2,0x3b,0xae,
0x47,0xca,0xaf,0x76,0x44,0x6a,0x56,0xff,0x44,0xef,0x30,0x8e,0x26,0x8e,0x57,0xf8,
0x61,0xd1,0xb2,0x83,0x51,0x3,0xa7,0x21,0x45,0xce,0x77,0x1,0xff,0x43,0xe2,0x3c,
0xc,0xda,0x8,0xbc,0x5e,0xcf,0x2e,0xbf,0x3f,0x30,0x73,0xe9,0xd2,0x55,0xa7,0x1e,
0x73,0xcc,0x84,0xb4,0x91,0x23,0x87,0x4c,0x5a,0xb0,0x60,0xf1,0x2f,0x91,0x32,0x30,
0x8d,0x45,0x7b,0x4d,0x40,0x1d,0x80,0xf3,0xb5,0xaa,0x1f,0x8e,0x53,0x5a,0x81,0xe4,
0x2f,0x3e,0x8e,0x34,0xf7,0x2c,0x37,0x4f,0x61,0xdf,0x68,0x4d,0xed,0x84,0x46,0x0,
0x67,0xea,0x1d,0xa4,0x8e,0x1f,0xb6,0xf8,0xd9,0xac,0x1f,0xea,0xc1,0x46,0x5f,0xc7,
0x69,0xa9,0xaa,0x52,0x1f,0xe7,0x53,0xda,0x40,0x76,0xb4,0xc1,0x9e,0xd5,0x73,0x8f,
0xc7,0x3d,0x73,0xea,0xd4,0x9,0xea,0xd9,0x67,0x1f,0x50,0x48,0x97,0xf,0x38,0x78,
0x9b,0x64,0x16,0x70,0x19,0x62,0x8c,0x6e,0x38,0x4f,0x37,0x20,0xc5,0xf1,0x26,0xec,
0x67,0x9e,0x99,0x4e,0xaf,0xad,0x18,0xdf,0xe8,0x57,0x3e,0xe2,0xe1,0x4a,0x0,0xae,
0x42,0x4a,0xb2,0x76,0x44,0xdc,0xa0,0x93,0xf4,0xab,0x2,0x98,0xab,0xa5,0xa9,0x7d,
0x21,0x1b,0xa9,0x29,0x9c,0xa8,0xdf,0x2f,0x47,0xb2,0xa4,0xd,0xda,0x18,0x6c,0xdb,
0x2e,0xf,0x4,0x82,0xf9,0xeb,0xd7,0x6f,0x9a,0x91,0x92,0x92,0x84,0x65,0xd1,0x49,
0x29,0xfa,0x1,0x2b,0x12,0x13,0xe3,0xa9,0xaa,0xaa,0xd9,0x93,0xda,0x35,0x4e,0xbf,
0x12,0xb5,0x14,0xaf,0xf4,0xa6,0x3d,0x19,0xb1,0x3b,0x2,0x6c,0x41,0xa,0xa3,0xbd,
0x89,0x84,0xb,0x2c,0xd4,0x9f,0xc5,0x2c,0xda,0x4a,0xcb,0xe9,0xb5,0xd4,0x97,0x89,
0xfd,0x56,0x3f,0xf0,0x6b,0x90,0xb8,0xa3,0x9e,0x9a,0x9c,0x2,0x88,0xe7,0xeb,0x78,
0x24,0x69,0xf5,0x7f,0xfb,0x90,0xb2,0xba,0x46,0xbc,0x7f,0x9d,0xe6,0xeb,0x73,0x65,
0xd0,0x8a,0xe1,0x38,0x4e,0x2d,0x30,0x7f,0xcb,0x96,0xad,0xeb,0x67,0xce,0x7c,0xbd,
0xfb,0xb3,0xcf,0x3e,0xd0,0xf7,0xbc,0xf3,0x7e,0x7d,0xbe,0x52,0xea,0xa6,0x88,0xae,
0xb1,0x61,0x2,0x9a,0x84,0xd8,0x2c,0xc7,0x22,0x1e,0xb0,0x70,0x87,0x17,0x22,0xd4,
0xaf,0xad,0x88,0x1d,0xf3,0x9f,0x48,0x5,0x87,0x65,0xda,0x8c,0x10,0xf3,0x21,0x21,
0xee,0x36,0x34,0x6f,0xc2,0xd1,0xce,0x9f,0x22,0x86,0xbf,0xa5,0xc0,0x40,0x2d,0x6a,
0xde,0xad,0x27,0x46,0x7f,0xa4,0x6,0xd0,0xb1,0x5a,0x92,0x7a,0xa,0xb1,0x39,0x45,
0xe2,0x88,0x88,0x9d,0xeb,0xf7,0x88,0xd1,0xd0,0xc4,0xe,0xb5,0x51,0x2e,0xb2,0x2c,
0x6b,0x55,0x5d,0x9d,0x7f,0xd3,0xec,0xd9,0x5f,0x76,0xef,0xdb,0xb7,0x57,0xd2,0x8c,
0x19,0xa7,0x8d,0xb2,0x2c,0x2b,0x57,0x13,0x49,0x5f,0xe0,0x97,0x48,0xc0,0xeb,0x10,
0xbd,0x81,0xed,0xa9,0xe4,0xef,0x1a,0xe0,0x5f,0x7a,0x4e,0x6e,0xd4,0x1b,0x62,0x9b,
0x82,0xbb,0xad,0x4e,0x20,0xfd,0xd0,0x97,0x22,0x9e,0x89,0xb9,0x7a,0xa7,0xfa,0xa7,
0xde,0x9d,0xfa,0xe9,0x49,0x34,0xe,0xa9,0x5,0xf3,0x1c,0x52,0xa8,0x2c,0xec,0x91,
0x4b,0xd2,0xc7,0x8,0xdb,0x9e,0xc,0xda,0x28,0x94,0x52,0x3b,0x81,0x3b,0x76,0xed,
0x2a,0x3d,0xea,0xf3,0xcf,0xbf,0xf2,0x9e,0x70,0xc2,0xd1,0x43,0x66,0xcd,0xfa,0xef,
0x8d,0x7a,0xde,0x5c,0xac,0xd5,0xae,0x3d,0x25,0xc6,0x6,0x90,0x70,0x8f,0x5f,0x23,
0xed,0xc8,0xd7,0xd0,0x86,0xbd,0xae,0x6e,0x33,0x95,0xf0,0x23,0x5e,0x88,0x7c,0x60,
0x9,0x62,0x0,0x3f,0x5,0xe9,0x4d,0xd6,0x55,0xbf,0xfa,0x20,0x39,0x3e,0x25,0xd4,
0x7,0x30,0x5e,0x8a,0xd8,0x87,0xc,0xda,0x36,0x42,0xc0,0x42,0xc7,0x71,0xde,0x5f,
0xb3,0x66,0xfd,0xb4,0x81,0x3,0xfb,0x66,0x8c,0x1f,0x3f,0xfa,0x92,0x39,0x73,0xbe,
0x86,0xfa,0x38,0xb3,0x48,0x6c,0x46,0x2a,0x6e,0xce,0x42,0x3c,0xb7,0x8b,0x31,0x61,
0x1f,0x86,0x88,0x22,0x50,0x87,0xf4,0xae,0xff,0xe,0x71,0xeb,0xf7,0x44,0xea,0xc,
0x9d,0x85,0x18,0xb7,0x4f,0x40,0xba,0x81,0xc4,0xe9,0xef,0x6f,0x31,0x13,0xc8,0x40,
0x63,0x17,0xf0,0x70,0x65,0x65,0xd5,0xb4,0xdd,0xbb,0xcb,0xad,0xa4,0xa4,0xc4,0x3d,
0x11,0xd0,0x46,0xe0,0xd,0xfd,0x2a,0xd0,0x64,0x54,0x6d,0x86,0xce,0x10,0xd1,0xde,
0xb0,0x83,0xfa,0x38,0xa4,0x34,0xa4,0xf4,0xc3,0x58,0x24,0x6e,0x28,0xec,0x3e,0xfd,
0x8,0x31,0x80,0x1b,0xb4,0x6d,0x5c,0x85,0xb4,0x80,0x2a,0x3,0x96,0x57,0x55,0x55,
0x7f,0xb5,0x75,0xeb,0xf6,0x23,0xfb,0xf7,0xef,0xad,0xde,0x7b,0xf,0x4b,0x4b,0x3f,
0x9f,0x20,0x95,0x42,0xe7,0x20,0x41,0xb7,0xbb,0xa8,0x2f,0x19,0x63,0x60,0x88,0x68,
0xbf,0xe2,0x76,0x8,0x31,0x38,0xfe,0x17,0xf8,0x0,0x31,0x50,0x77,0xd7,0x9f,0x3d,
0x88,0xc4,0x77,0x18,0xb4,0x4d,0xbc,0xa2,0x55,0xf7,0x14,0xc4,0x99,0x51,0x6,0x14,
0x6,0x2,0xc1,0x27,0xbf,0xfd,0x76,0xe9,0x91,0xe9,0xe9,0xe9,0xd6,0xb4,0x69,0xc7,
0x2d,0x7e,0xf3,0xcd,0xf,0xae,0x46,0xd2,0x8b,0x2c,0x2d,0xfd,0x18,0x2,0xda,0xb,
0x4c,0x25,0xc1,0xfd,0x23,0x88,0xd4,0x38,0x3a,0x43,0xbf,0x2f,0x41,0xdc,0xac,0xa6,
0xe6,0x50,0xdb,0x40,0x3b,0xfd,0xbc,0xaf,0x41,0x42,0x3a,0x8a,0xf4,0x5c,0x98,0x84,
0x44,0xd6,0xbb,0x23,0x36,0xaf,0x37,0x41,0x3d,0x11,0xa,0x85,0x48,0x48,0xf0,0xd,
0x1,0x2e,0x70,0xbb,0x3d,0xe,0x12,0xde,0x61,0x48,0xc8,0x10,0xd1,0x21,0x4b,0x8d,
0x79,0x5a,0x55,0xb,0x21,0xde,0xb3,0x45,0x66,0x58,0x62,0x12,0xe1,0xe0,0x9f,0xe,
0x48,0xd7,0x8c,0x9d,0x88,0x2b,0xbd,0x3d,0x70,0x7,0x12,0x74,0x98,0x81,0x18,0x99,
0xef,0x47,0x6c,0x88,0x91,0x1d,0x62,0xaa,0x4b,0x4a,0xca,0xb6,0x2e,0x5f,0xbe,0x8a,
0x2e,0x5d,0x3a,0x71,0xca,0x29,0x53,0xf3,0x82,0xc1,0x40,0xae,0x19,0x56,0xa3,0x9a,
0x35,0x5,0x4e,0x41,0x5a,0x5,0xa1,0x77,0xb6,0x2a,0xb3,0xbb,0xc5,0x2c,0xba,0x22,
0x5e,0xd3,0x4b,0x35,0x19,0x45,0x6e,0xd4,0x75,0xc0,0xc3,0x48,0x4,0xfe,0x5f,0xf5,
0xdf,0x1a,0x3a,0x2b,0x2a,0x80,0x37,0x82,0xc1,0xe0,0x69,0x15,0x15,0x15,0x83,0xca,
0xcb,0x2b,0xa7,0x2,0xbf,0x40,0x3a,0xd,0x1b,0x18,0x89,0xe8,0x90,0x88,0xba,0x1b,
0xf5,0x5,0xcb,0x17,0x20,0xae,0x7e,0xa3,0x96,0xc5,0x26,0xfa,0x68,0x35,0xbc,0x53,
0xc4,0xda,0x8,0x4b,0x49,0x73,0x90,0xea,0xe,0xb7,0xb3,0x87,0x76,0xe2,0x11,0x91,
0xd4,0x25,0x6b,0xd7,0x6e,0x58,0xb5,0x7e,0xfd,0x26,0xc6,0x8d,0x1b,0x4d,0x4a,0x4a,
0x72,0x17,0xad,0xde,0x19,0x18,0x22,0x6a,0x34,0xd2,0x90,0x94,0x8e,0x14,0xa4,0x96,
0xd1,0xbf,0x80,0xd5,0x66,0x58,0x62,0x16,0x1f,0x23,0x29,0x3b,0xb5,0x9a,0x80,0x2c,
0x24,0x28,0x71,0x3a,0x12,0x78,0x18,0x4e,0x74,0xfe,0x11,0xc2,0x8d,0x18,0x6d,0xdb,
0xde,0xa,0x7c,0x35,0x77,0xee,0x42,0xb6,0x6c,0xd9,0xca,0xd9,0x67,0x9f,0x32,0x8c,
0x96,0x6b,0x51,0x6d,0x88,0x28,0x46,0x71,0x21,0xf0,0x53,0xfd,0xfb,0x2e,0xa4,0x69,
0x63,0x43,0x7b,0x82,0x41,0xec,0x20,0x0,0xac,0xd7,0xd2,0xce,0xb,0x40,0x67,0x24,
0xcd,0xe7,0x75,0xfd,0xf9,0xde,0x10,0x26,0x2d,0xcb,0x71,0x9c,0x3a,0xe0,0xa5,0xf2,
0xf2,0x8a,0x97,0x2b,0x2a,0x2a,0x49,0x4a,0x4a,0xec,0x87,0xa4,0x79,0xe4,0x99,0xe1,
0x35,0x44,0xd4,0x18,0xb4,0x3,0x6,0xe8,0xdf,0x4b,0xb5,0x9e,0x1f,0xee,0x79,0xde,
0x11,0x69,0x23,0x93,0x61,0x86,0x29,0xe6,0xf0,0x4f,0x20,0x19,0x98,0x81,0xc4,0x1,
0xed,0xf,0x1e,0x24,0x67,0xf1,0xe8,0x88,0xf9,0xb2,0x1b,0x58,0xf9,0xda,0x6b,0xef,
0x86,0x4a,0x4a,0x76,0xf3,0xdb,0xdf,0xfe,0xaa,0xb3,0x21,0x22,0x43,0x44,0x8d,0xc5,
0xc9,0xc0,0x5,0xfa,0xf7,0x2f,0xa8,0x6f,0x5f,0x1d,0xa7,0x55,0xb4,0xf,0x91,0xae,
0xa,0xe9,0x66,0xa8,0xda,0x34,0xd2,0x91,0xb8,0xb2,0x8f,0x10,0x63,0x36,0x48,0xd1,
0xb2,0xd7,0xe3,0xe2,0xbc,0x8b,0x6c,0xdb,0x62,0xed,0xda,0x8d,0x23,0x69,0xb9,0xae,
0xc3,0x86,0x88,0x62,0x8,0x3,0x90,0x6,0x8d,0x61,0xf5,0x6b,0x36,0xf5,0x91,0xd4,
0xed,0xf5,0xb8,0x55,0x1,0xe7,0x61,0xc,0x91,0x6d,0x1d,0x41,0x24,0x1a,0xdf,0x89,
0x54,0xdd,0x2d,0xcb,0x2a,0xa9,0xab,0xf3,0xaf,0x5f,0xb2,0x64,0x39,0x19,0x19,0xa9,
0x8c,0x1a,0x35,0xac,0x83,0x99,0x2b,0x86,0x88,0xe,0x16,0x59,0x11,0x93,0x26,0x5c,
0xa2,0x33,0x8c,0xd,0x5a,0x4d,0xbb,0x16,0xf8,0x15,0x12,0x69,0x6d,0xd0,0x76,0x51,
0x8d,0xa4,0x79,0x5c,0xb,0x3c,0x1b,0xfe,0x50,0x29,0xb5,0x11,0x78,0x66,0xcd,0x9a,
0x82,0xb2,0x60,0x30,0x44,0x6e,0x6e,0xbb,0x73,0x81,0x93,0xcc,0x70,0xed,0x19,0x26,
0x8e,0x68,0xcf,0xa2,0xf6,0xa9,0x48,0x29,0x10,0x90,0x7a,0x43,0xf3,0x1b,0x7c,0x27,
0x5c,0x42,0xc4,0xc0,0xa0,0x16,0xe9,0x10,0xf3,0x23,0xf8,0x7c,0xbe,0xd9,0x15,0x15,
0x95,0x4f,0x6d,0xdb,0xb6,0xe3,0x9a,0x6e,0xdd,0x3a,0x7b,0xf2,0xf2,0x72,0xcf,0x2c,
0x2c,0xdc,0xfe,0x25,0xb0,0xda,0xb2,0xac,0xef,0x3d,0x6d,0x6,0xcd,0x43,0x44,0x16,
0xf5,0xb9,0x5a,0xd1,0x88,0xce,0x48,0xe5,0x46,0x90,0x2c,0xe9,0x8f,0xb4,0xf8,0x9d,
0x63,0xa6,0x8b,0xc1,0x41,0x31,0x54,0x6d,0x6d,0x5,0xb0,0xf8,0xbd,0xf7,0x66,0x97,
0xfe,0xee,0x77,0x57,0xa5,0x4f,0x99,0x32,0x7e,0xe4,0x33,0xcf,0xbc,0x3c,0x3c,0x2f,
0xaf,0xfd,0x9a,0xc2,0xc2,0x6d,0x86,0x85,0x9a,0x99,0x88,0x42,0x48,0xfc,0x4d,0x72,
0x14,0x8e,0x47,0xa,0x92,0x47,0x34,0x56,0xbf,0xcf,0xd5,0xea,0x57,0xb8,0x71,0xa3,
0x81,0xc1,0xc1,0x20,0x80,0x98,0x3f,0x76,0x95,0x95,0x95,0xa5,0x83,0xca,0xf6,0x7a,
0xbd,0x67,0x16,0x16,0x6e,0xfb,0x92,0x3,0xf3,0xc8,0x19,0x22,0x3a,0x4,0xec,0x46,
0x4a,0x66,0xbc,0x8d,0x18,0x78,0xa3,0xa9,0xfb,0x69,0x57,0xea,0xdb,0xf9,0x6e,0x44,
0x22,0xa9,0xbd,0xd4,0x17,0x43,0x33,0x30,0x68,0xc,0x19,0xed,0x7a,0xf5,0xd5,0x77,
0x3b,0x5c,0x70,0xc1,0xd9,0x9,0x27,0x9d,0x74,0x4c,0xe6,0xeb,0xaf,0xbf,0x9b,0x11,
0xc5,0x44,0xa4,0x68,0x86,0x14,0xa7,0xe6,0x54,0xcd,0x5c,0x44,0x5f,0xd0,0x5f,0x3a,
0xf5,0x46,0xea,0x2f,0xd9,0x7f,0xbb,0x22,0x3,0x83,0x3,0xc1,0xe8,0xd2,0xd2,0xb2,
0xa7,0x8a,0x8b,0x77,0xf5,0x4b,0x48,0xf0,0x4d,0xca,0xcd,0x6d,0x77,0xc2,0xf6,0xed,
0x3b,0x57,0x21,0xf6,0xa5,0x68,0x43,0x1c,0xd2,0xd,0xa7,0x49,0xd1,0x5c,0x5e,0x33,
0x17,0xd1,0xd7,0x7d,0x20,0x15,0xe9,0x1d,0xd5,0x4d,0x5f,0xfb,0x4e,0x2d,0xd,0x19,
0x18,0x1c,0xda,0x62,0x70,0xd9,0xab,0x2,0x81,0xe0,0x17,0x1f,0x7f,0xfc,0x5,0xd9,
0xd9,0x59,0xc,0x1d,0x3a,0x60,0xb2,0x9e,0x67,0x24,0x25,0x25,0x46,0xd3,0xad,0x58,
0x48,0xd,0xee,0x11,0xd1,0x40,0x44,0x71,0x48,0x38,0xfc,0x6,0xa2,0xcb,0x60,0x9d,
0x83,0xe4,0x15,0x59,0x5a,0x1a,0x7a,0x1e,0xd3,0xcb,0xde,0xa0,0x9,0x10,0xa,0x39,
0x65,0xc0,0xcc,0x4d,0x9b,0xa,0xd7,0xae,0x5f,0xbf,0x81,0xa4,0xa4,0x84,0xa3,0xbb,
0x77,0xef,0x3c,0x9,0x88,0xab,0xac,0xac,0x8a,0xa6,0x5b,0xb1,0xb5,0xc6,0x90,0xd7,
0x1c,0x7,0x6e,0x6a,0x24,0xe8,0x85,0xbc,0x82,0xe8,0x29,0x97,0x91,0xa,0xfc,0x1c,
0xb1,0x11,0x55,0x21,0xc9,0x8f,0xb,0xcd,0x12,0x32,0x68,0x2a,0xb8,0xdd,0xae,0x79,
0xc0,0xac,0x95,0x2b,0xd7,0x56,0xc6,0xc7,0xc7,0xbb,0xbb,0x77,0xef,0xda,0x35,0xa,
0x25,0x6e,0xa5,0x37,0x67,0x3f,0x4d,0x6c,0x76,0xb1,0x9b,0xe9,0x62,0x6d,0xa2,0x2b,
0x58,0xb2,0x1b,0x70,0x83,0xfe,0xfd,0x6b,0xea,0x5b,0x7,0x1b,0x18,0x34,0x9,0x82,
0xc1,0x50,0x1d,0xf0,0xc6,0x8e,0x1d,0x45,0xab,0x93,0x92,0x12,0x8,0x4,0x2,0x13,
0x69,0xfe,0xb6,0xec,0xcd,0x25,0x15,0xb9,0xa2,0x41,0x22,0x8a,0x46,0xa4,0xe9,0x9f,
0x7e,0xa4,0xe2,0xde,0x77,0x66,0x48,0xc,0x9a,0x1,0xbb,0x2b,0x2b,0xab,0xaa,0x4b,
0x4a,0xca,0x88,0x8f,0xf7,0x8d,0xee,0xd0,0x21,0x77,0x22,0xd1,0x15,0x54,0xec,0x20,
0x26,0x97,0x85,0x4d,0xad,0xed,0x18,0x22,0x12,0xd7,0xfc,0xef,0xf5,0xef,0xb5,0x98,
0x94,0xd,0x83,0x66,0x82,0xcf,0x17,0xb7,0x39,0x14,0x72,0xde,0x5e,0xb8,0x70,0x49,
0xc9,0xf0,0xe1,0x83,0x49,0x4c,0x4c,0xf8,0x35,0xf5,0x9d,0x61,0xa2,0x5,0x85,0x48,
0x37,0x92,0x26,0x55,0xcd,0x5a,0x9a,0x8d,0xd3,0x90,0x7e,0x61,0xce,0x1e,0x6e,0x44,
0x45,0x7c,0xa6,0xb4,0xf8,0x57,0x83,0x34,0x31,0x6c,0x2e,0x5b,0x93,0xb,0x29,0x5,
0x7b,0x8c,0x3e,0xc7,0x57,0x48,0xd7,0xe,0x3,0x83,0x26,0x85,0x65,0x59,0xd4,0xd6,
0xd6,0xd5,0x1,0xaf,0xac,0x5b,0xb7,0xe1,0xa4,0x92,0x92,0x92,0xf1,0x7d,0xfb,0xf6,
0xe8,0x53,0x54,0x54,0x7c,0x75,0x59,0x59,0xf9,0x4d,0x48,0x27,0x90,0x68,0x80,0x1b,
0x69,0x1a,0xd0,0xe4,0x7,0x6d,0x4e,0x5d,0x32,0x8c,0x6b,0x11,0x23,0xf0,0x10,0x7e,
0x58,0xad,0x2e,0x4c,0x3e,0x2e,0x24,0xaa,0xb9,0x94,0x7a,0x97,0xbf,0x5b,0xff,0xcf,
0x57,0x48,0x17,0x85,0x5a,0xa4,0x8b,0xc2,0x96,0xa6,0x9a,0x1b,0xfa,0x5a,0x2e,0xd,
0xab,0xf1,0x48,0x72,0xeb,0x4a,0xb3,0x6c,0xc,0x9a,0x1a,0x11,0x79,0x65,0xeb,0x80,
0x17,0x67,0xcd,0x7a,0xa3,0xe7,0xdf,0xff,0x7e,0x73,0xfb,0x8d,0x1b,0xb7,0x9c,0x5a,
0x56,0x56,0x7e,0x1b,0x50,0xd6,0x42,0xf9,0x67,0x16,0xad,0x30,0xac,0xa6,0xb9,0x88,
0xc8,0xb6,0x6d,0x7b,0xa3,0xe3,0x38,0xb7,0x0,0xfd,0x81,0xe3,0x11,0xfb,0x4b,0xa,
0x7b,0x4f,0x95,0x78,0x13,0x89,0xc8,0x6e,0x88,0xa3,0x90,0xc,0xe7,0x20,0x52,0xac,
0xea,0x2e,0xa4,0xcf,0x58,0xa0,0x9,0xee,0xbd,0x7f,0x4,0x31,0x7e,0xa5,0x8f,0x6d,
0x60,0xd0,0x5c,0x8b,0x2,0xc7,0x71,0xb0,0x6d,0x6b,0xee,0xee,0xdd,0xe5,0x5b,0x87,
0xc,0x19,0xd0,0x3e,0x14,0x72,0x3a,0x0,0x17,0xc6,0xc5,0xc5,0xdd,0x57,0x57,0x57,
0xd7,0x12,0xbe,0x7c,0x5,0xfc,0x1,0x49,0xea,0x8e,0xc,0xaf,0x49,0x0,0x9e,0xd6,
0xeb,0x30,0x26,0x88,0xc8,0x6,0x76,0x38,0x8e,0x73,0x2f,0x52,0x58,0x2c,0x25,0xe2,
0x6f,0x1,0xa4,0xd3,0xc1,0xb7,0xc0,0x6d,0xd4,0x5b,0xdf,0x6b,0x91,0xd8,0xa3,0x7,
0x23,0xd4,0x33,0xb,0x18,0x83,0xe4,0x7a,0x65,0xea,0xcf,0x72,0x90,0x5a,0x41,0xff,
0x40,0x62,0x19,0x42,0x87,0xf8,0x40,0x92,0xa8,0x77,0xa1,0x16,0x6b,0xc9,0xcb,0xc0,
0xa0,0x59,0xe0,0x38,0x8e,0xfe,0xa9,0xca,0x81,0xba,0xb,0x2e,0xb8,0x8a,0x3f,0xfe,
0xf1,0x5a,0x6e,0xbf,0xfd,0xfe,0x51,0xcb,0x96,0xad,0x6a,0x8e,0x2c,0x84,0x24,0xa4,
0x1b,0xc9,0x2f,0x81,0xa1,0x7a,0x33,0xf,0x0,0x13,0x81,0x3d,0x45,0x52,0x1e,0x81,
0xd4,0xe6,0x56,0xfa,0xb5,0x5,0x29,0x79,0xe3,0xd7,0xda,0xa,0x34,0x53,0xb6,0x44,
0x73,0xe5,0x9a,0x9d,0xf,0x74,0x3f,0xfe,0xf8,0xa3,0xbd,0x9f,0x7d,0x36,0x8f,0x9a,
0x9a,0x9a,0x10,0x62,0x69,0x7f,0x1c,0xe9,0x9,0x56,0x8a,0x64,0xb6,0x37,0x44,0xc3,
0xfc,0x9b,0xcf,0x11,0x77,0xfa,0x49,0xc0,0x38,0x8f,0xc7,0x3d,0xb8,0x63,0xc7,0xe,
0xed,0xeb,0xea,0xfc,0x7f,0xd8,0xb6,0x6d,0x7b,0x9a,0x52,0xbc,0x72,0x8,0xd7,0xd9,
0xb,0x38,0x47,0x8f,0xc1,0x6e,0x24,0x76,0xc8,0xc0,0xa0,0x25,0xb0,0xce,0xb2,0xac,
0xff,0xae,0x5a,0xb5,0xae,0x6f,0x61,0xe1,0xf6,0x8c,0xee,0xdd,0x3b,0x4f,0x2c,0x28,
0xd8,0x74,0x5a,0x75,0x75,0xcd,0x8b,0x87,0x28,0xe9,0x87,0x34,0xd9,0x24,0x3,0xbf,
0x43,0xec,0x9f,0x36,0x62,0x97,0xf5,0x36,0xf8,0x9e,0x1f,0xf8,0x46,0xaf,0x39,0x7,
0x89,0xa5,0x3b,0x6,0xa9,0x3e,0x11,0x89,0x11,0x7a,0x7d,0xdc,0xe5,0x76,0xbb,0x36,
0x6,0x83,0xa1,0x8d,0xd1,0x42,0x44,0x41,0xa0,0xc3,0xe5,0x97,0xff,0xcc,0xab,0x14,
0x7c,0xfe,0x39,0x1,0xa4,0x0,0xf9,0x3f,0xf4,0x4d,0xd7,0x1d,0xc4,0xb1,0xaa,0x91,
0x3e,0xf4,0x5f,0x2,0x3,0x6d,0xdb,0x9e,0x71,0xf2,0xc9,0x53,0x4f,0x8b,0x8b,0xf3,
0xe6,0x3d,0xf7,0xdc,0x2b,0x6c,0xdf,0x5e,0xd4,0x58,0x76,0xb6,0x81,0x61,0x48,0xb7,
0x4e,0x80,0x79,0xd4,0x97,0xf9,0x34,0x30,0x68,0x9,0x9b,0xd1,0x63,0xc0,0xf9,0x77,
0xdf,0xfd,0x58,0xc6,0xb5,0xd7,0xfe,0x22,0x6d,0xed,0xda,0x8d,0xc7,0xae,0x58,0xb1,
0xfa,0x5d,0xa4,0x93,0x70,0x63,0x25,0x7c,0x5b,0x6b,0x11,0xe7,0x1,0x67,0x36,0x20,
0x9f,0x39,0xc0,0xbb,0x48,0x35,0xc9,0xb0,0x5d,0xf6,0x33,0x4d,0x32,0xe1,0x35,0x71,
0x92,0x26,0x25,0x7,0x29,0x85,0x73,0x26,0x30,0x24,0x2e,0xce,0xcb,0xf0,0xe1,0x83,
0x7a,0xcd,0x9b,0xf7,0xcd,0x2a,0xaf,0xd7,0x7d,0x8b,0xdf,0x1f,0x2c,0x27,0xa,0xd2,
0xb7,0x6e,0x3c,0xe1,0x84,0xc9,0xa5,0x45,0x45,0x6b,0xd5,0xc8,0x91,0xc3,0x14,0x62,
0xfc,0x6d,0xaa,0xc0,0xad,0x3e,0xe7,0x9d,0x77,0xe6,0xcb,0xbf,0xf9,0xcd,0xe5,0xaa,
0x7b,0xf7,0x2e,0x4a,0xf,0x78,0x63,0xd0,0x55,0x3f,0x18,0x85,0xb8,0xeb,0x47,0x98,
0xa5,0x61,0x70,0x18,0x70,0x11,0xb0,0x63,0xc6,0x8c,0xd3,0xd4,0x8c,0x19,0xa7,0xed,
0xc8,0xc9,0xc9,0x9e,0x8e,0x14,0xe3,0x6f,0xc,0xce,0x7,0x54,0x7c,0xbc,0xaf,0xa8,
0x7f,0xff,0xde,0x35,0x9d,0x3a,0xe5,0x85,0xd5,0xab,0x4f,0xb5,0x79,0x63,0x0,0xe2,
0xed,0x8a,0x8b,0x78,0x35,0x44,0xe4,0xdf,0x32,0x80,0xe3,0x80,0x7f,0x24,0x25,0x25,
0xaa,0xeb,0xae,0xfb,0xa5,0x9a,0x36,0xed,0xd8,0x5a,0x60,0xbe,0x6d,0xdb,0xcf,0x2,
0xc3,0x9b,0xda,0x9e,0xd3,0x64,0xd0,0x3d,0xe6,0xe2,0x3f,0xfb,0xec,0x2b,0xf7,0xd6,
0xad,0x9b,0xa8,0xa9,0xa9,0x9,0x4b,0x35,0x25,0x4d,0x74,0x8a,0x75,0x99,0x99,0xe9,
0xdf,0xd8,0xb6,0x55,0xae,0xcf,0xd5,0x18,0x89,0xc8,0x2,0xb2,0x81,0x71,0x88,0x57,
0xee,0x51,0x2d,0xa2,0x1a,0x18,0xb4,0x34,0x9e,0x2,0x36,0xd7,0xd4,0xd4,0xa2,0x14,
0xed,0x6a,0x6a,0x6a,0x87,0xd1,0xf8,0xb4,0xf,0x5,0xd0,0xa3,0x47,0x97,0xac,0x21,
0x43,0xfa,0xc7,0x85,0x42,0x21,0x90,0x50,0x94,0x8b,0x80,0xc7,0x90,0x30,0x98,0x1a,
0xad,0x91,0xd4,0xed,0x45,0x33,0x89,0xfc,0x5b,0x9,0x52,0x14,0xf0,0xd6,0xea,0xea,
0x9a,0xb,0x67,0xcd,0x7a,0x9d,0x8e,0x1d,0x3b,0x78,0xa6,0x4c,0x19,0x3f,0xd2,0x71,
0x9c,0x61,0x4d,0xcd,0x1d,0x4d,0x7a,0x30,0xa5,0xc0,0xb2,0x78,0xb5,0xba,0xba,0x26,
0xff,0xbb,0xef,0x96,0x3b,0x7e,0xbf,0x3f,0x72,0xf1,0x37,0xc9,0x29,0x66,0xce,0x7c,
0x2d,0xf0,0xe4,0x93,0x2f,0xb0,0x79,0xf3,0x56,0xe,0x52,0xcd,0x8b,0xbc,0x96,0xae,
0xfa,0x77,0x3f,0x3f,0xac,0x47,0x6d,0x60,0xd0,0xd2,0xa8,0x59,0xb8,0x70,0x9,0xa9,
0xa9,0xc9,0xc,0x1d,0xda,0x3f,0xb7,0x5d,0xbb,0xac,0x46,0xe7,0x9f,0x75,0xed,0xda,
0x85,0xab,0xae,0xba,0x8a,0xce,0x9d,0xbb,0x59,0xc5,0xc5,0xc5,0x2f,0x2,0x57,0x22,
0xb6,0x58,0x7f,0x23,0x55,0xa9,0x10,0x50,0xee,0x38,0xce,0xac,0xda,0xda,0xda,0x73,
0xa,0xa,0x36,0xda,0x3,0x6,0xf4,0xe,0x4b,0x4e,0x4d,0x9a,0x10,0xde,0xe4,0x91,
0xd5,0x4a,0xb1,0x12,0x58,0x72,0xd9,0x65,0x37,0xa8,0x75,0xeb,0x36,0x34,0xf9,0x53,
0x2b,0x2a,0xda,0x15,0x57,0x5c,0x5c,0xe2,0xf7,0xfb,0x3,0xd7,0xd2,0xb8,0xe0,0x43,
0x2f,0xf0,0xa2,0xfe,0x7d,0x27,0x7b,0x36,0x9a,0x1b,0x18,0xb4,0x14,0xce,0xda,0xb1,
0xa3,0x68,0x63,0x75,0x75,0xd,0x81,0x40,0xe8,0x12,0x97,0xcb,0xd5,0xa1,0x91,0xc7,
0x71,0xd7,0xd4,0x54,0x53,0x56,0xb6,0x43,0x39,0x8e,0x1f,0x97,0xcb,0x5d,0x41,0xd3,
0x5,0x49,0xfa,0xb3,0xb2,0x32,0x57,0x82,0x45,0x7a,0x7a,0x5a,0x29,0xe2,0x74,0x5a,
0xd2,0xea,0x47,0xd6,0xb2,0xac,0x1c,0x24,0x4e,0x61,0x3,0xe2,0x25,0x4b,0x69,0xa2,
0x43,0xc7,0x3,0x57,0x23,0xee,0xc8,0xa4,0x46,0xfc,0xbf,0xb,0x49,0x68,0x55,0x5a,
0x4c,0xbd,0xb,0x93,0xe6,0x62,0x70,0x18,0x11,0x17,0x97,0x8,0x70,0xdb,0xd4,0xa9,
0x13,0xab,0x7e,0xfe,0xf3,0x19,0x2a,0x23,0x23,0x7d,0xb5,0xdb,0xed,0xf6,0x35,0xe2,
0x50,0x9d,0x80,0x17,0xd2,0xd3,0x53,0x55,0x6e,0x6e,0x3b,0xe5,0xf5,0x7a,0xfe,0xcd,
0x9e,0x5d,0xf4,0x8d,0x42,0x62,0x62,0xc2,0x90,0xec,0xec,0x4c,0xd5,0xb3,0x67,0xd7,
0x52,0xe0,0xba,0x68,0x1b,0xe7,0xa5,0x4d,0x4c,0x44,0xc9,0x48,0x1b,0xe8,0x63,0x1b,
0xa9,0xee,0xd,0xa5,0xbe,0xd4,0xe5,0x2a,0x60,0xb4,0x59,0xa,0x6,0xad,0x60,0xe3,
0x1e,0x5,0xac,0xba,0xfb,0xee,0x3f,0x3a,0x83,0x6,0xf5,0x53,0x6e,0xb7,0x7b,0x7a,
0x23,0x37,0xc8,0x4e,0x48,0x6b,0x23,0x5,0x34,0x29,0x11,0x85,0xd7,0x8e,0x65,0x59,
0xcf,0xdb,0xb6,0xab,0xc9,0x3b,0x1c,0x47,0xa3,0x34,0x60,0x23,0x61,0x7,0x7,0x4b,
0x44,0x16,0xf5,0x91,0xd3,0xb5,0x48,0x48,0x80,0xb1,0xf,0x19,0x1c,0x76,0x28,0xa5,
0x16,0x2,0x1f,0x79,0xbd,0x71,0x7e,0xb7,0xdb,0xa5,0x1c,0x27,0xf4,0x2a,0x8d,0xf3,
0x9e,0x6d,0x6,0x6e,0x45,0xe2,0xef,0x12,0x68,0xda,0xe0,0x43,0x5,0xac,0x57,0x4a,
0xfd,0x9f,0xe3,0x84,0x4a,0x9a,0x63,0x51,0xb7,0x15,0x9c,0x88,0xf4,0x28,0x47,0x4b,
0x44,0xab,0x81,0x4a,0xb3,0xc,0xc,0x5a,0x9,0x2a,0x6f,0xb8,0xe1,0x36,0xe7,0xfe,
0xfb,0xff,0x6a,0x25,0x26,0x26,0x4,0x13,0x12,0x12,0x7c,0x8d,0x3c,0xce,0x56,0xc4,
0x43,0xd6,0xd4,0xd5,0x45,0x43,0x48,0x43,0x89,0xe2,0xe6,0x92,0x2e,0xda,0x84,0xf4,
0x8b,0xa4,0x89,0xa4,0x52,0x1f,0xba,0xfe,0x96,0x99,0xfb,0x6,0xad,0x4,0x8e,0x65,
0x59,0xaf,0x57,0x57,0x57,0x6f,0x9c,0x39,0xf3,0x55,0x75,0xfe,0xf9,0x67,0xb9,0xfd,
0x7e,0xff,0x53,0x96,0x65,0xbb,0x1a,0xb9,0xa6,0x1b,0xa3,0x31,0x1c,0xc8,0x1a,0x8a,
0x5a,0xbe,0x68,0xe,0x1b,0xd1,0xc5,0x5a,0xba,0x39,0x98,0x41,0xc9,0x46,0xa2,0x48,
0x95,0x66,0xf6,0x4f,0xcd,0xdc,0x37,0x68,0x35,0xbb,0xa4,0xe,0x8a,0xb3,0x6d,0xfb,
0x56,0xa0,0xb2,0xbc,0x7c,0x9d,0xca,0xcc,0x4c,0x2f,0x76,0xbb,0xdd,0xc7,0x34,0x72,
0x8d,0x3c,0x8e,0x24,0xb0,0x26,0x35,0xe1,0x65,0xe,0x6a,0xce,0x75,0xd3,0x56,0x24,
0xa2,0x6e,0x40,0x47,0xfd,0x7b,0x29,0x92,0xda,0x61,0x99,0x25,0x60,0xd0,0x1a,0x10,
0x2e,0xfd,0xe1,0x38,0xce,0x6a,0xa0,0x32,0x25,0xa5,0x7,0xaf,0xbd,0xf6,0xef,0x64,
0xa5,0x9c,0x23,0x2c,0xcb,0x72,0xb5,0x85,0x31,0x68,0xb,0x44,0xe4,0x43,0x2a,0x30,
0x76,0x47,0x6c,0x43,0xb3,0xc2,0xcf,0xdf,0x2c,0x1,0x83,0x56,0x86,0x67,0x81,0xa5,
0x2e,0x97,0xcb,0xa9,0xa8,0xa8,0xf2,0x7a,0xbd,0xde,0x2b,0x95,0x52,0x3d,0xd,0x11,
0xc5,0x6,0xfa,0x53,0x9f,0x4b,0x56,0x80,0x94,0x39,0x30,0x30,0x68,0xad,0xf8,0x36,
0x14,0x72,0xd4,0x5b,0x6f,0x7d,0xc8,0x89,0x27,0x1e,0xed,0x50,0xdf,0xf0,0xd3,0x10,
0x51,0x34,0xab,0xdf,0x48,0xb2,0x5f,0xb8,0xf,0xd3,0x2d,0x66,0x9e,0x1b,0xb4,0x72,
0xdc,0x0,0x6a,0xcd,0xbb,0xef,0xce,0xe,0xd,0x1e,0xdc,0xbf,0x73,0x66,0x66,0xfa,
0xe9,0x5a,0xaa,0x37,0x44,0x14,0xc5,0x48,0x46,0xa,0xb0,0x29,0xa0,0x8,0xd8,0x64,
0xe6,0xb9,0x41,0x14,0xe0,0x82,0xe2,0xe2,0x5d,0x76,0x49,0xc9,0x6e,0x7a,0xf6,0xec,
0x76,0x25,0x6d,0xa0,0x3a,0x44,0xac,0x13,0xd1,0x24,0xc4,0x48,0x6d,0x21,0xa9,0x1d,
0xf3,0xcc,0x1c,0x37,0x88,0x2,0xcc,0xaf,0xa9,0xa9,0xfd,0xfa,0xe3,0x8f,0xe7,0x30,
0x69,0xd2,0x18,0x4f,0x42,0x42,0xc2,0x51,0x34,0xbe,0x3c,0x88,0x21,0xa2,0xc3,0x8c,
0x4,0xe0,0xd,0x7d,0x8f,0x15,0xc0,0x62,0x8c,0x81,0xda,0x20,0x7a,0xf0,0xb3,0xd2,
0xd2,0xdd,0xb5,0x5e,0xaf,0x97,0x9c,0x9c,0xec,0xbf,0xd3,0xc,0x6d,0x9e,0xd,0x11,
0xb5,0x90,0x78,0x8b,0xd4,0x42,0x2,0x29,0x3,0xfb,0xc,0xd1,0xd3,0x2,0xdb,0xa0,
0x8d,0xc3,0xb6,0xed,0xda,0xc2,0xc2,0x6d,0x8b,0x2b,0x2a,0x2a,0xad,0xb1,0x63,0x47,
0x4,0x90,0x8a,0x89,0xe1,0x9a,0x5f,0x86,0x88,0x5a,0x1,0x2c,0xf6,0x1f,0x3,0xe4,
0x41,0xaa,0x37,0x86,0x8d,0x7c,0xb,0x91,0x22,0x68,0x6,0x6,0xad,0x7f,0x82,0x5b,
0x16,0x8e,0xe3,0x6c,0x6,0xde,0xf9,0xf4,0xd3,0xb9,0x81,0x23,0x8e,0x18,0xea,0x76,
0xbb,0xdd,0x7f,0x0,0x72,0x94,0x3a,0xac,0xeb,0x2e,0xaa,0x89,0x48,0xd1,0x74,0x39,
0x5d,0x15,0x40,0x39,0x52,0x67,0x65,0x5f,0xd2,0xcd,0x20,0x24,0x13,0xd9,0x46,0x6a,
0xe,0x7d,0x6d,0xa6,0xb7,0x41,0xb4,0x20,0xa2,0xb7,0xd9,0xdc,0xfc,0xfc,0x65,0xd5,
0xbb,0x77,0x57,0x58,0xd3,0xa6,0x4d,0xed,0x8f,0x54,0x9e,0x38,0x90,0x35,0x52,0xab,
0x5f,0x4d,0x99,0x4b,0x59,0x46,0x33,0x9a,0x36,0xac,0xbd,0x90,0xd3,0x95,0x48,0xed,
0x1f,0xe7,0x0,0x8f,0xe1,0xec,0x41,0x52,0xa9,0x1,0x6e,0x46,0xba,0x12,0x3c,0x49,
0x7d,0x83,0xc4,0x6f,0xe,0xe2,0xda,0xc2,0x37,0xde,0x1b,0x29,0xe4,0x1d,0xd2,0x24,
0x53,0x8e,0x34,0xaa,0xb,0x9f,0xfb,0x33,0xa4,0x50,0x53,0x40,0x4b,0x43,0x77,0x20,
0x75,0x7a,0xbd,0x48,0x4e,0xd9,0x34,0x33,0xbd,0xd,0xa2,0x10,0x59,0xc0,0xbf,0xe3,
0xe2,0xbc,0xa7,0xce,0x9e,0xfd,0x8a,0x33,0x76,0xec,0xb4,0x6f,0x6c,0xdb,0x3e,0xc7,
0x71,0x9c,0xf5,0x11,0xeb,0x23,0x19,0x38,0x1a,0xe9,0x4a,0xa3,0x90,0x3c,0xb3,0xd3,
0xf5,0xcf,0x97,0xf5,0x9a,0x59,0x81,0x94,0x7d,0x3d,0x98,0x8a,0xa6,0x1e,0x7d,0x9c,
0x6e,0xfa,0xb8,0x69,0xc0,0x4f,0x80,0x7b,0xf9,0x61,0x38,0x81,0x4d,0x7d,0xea,0x94,
0xbd,0x1f,0xb2,0xb2,0x90,0xe6,0x1a,0xdb,0x81,0x57,0x88,0xe8,0x58,0xd2,0x90,0x88,
0x5c,0xc0,0x6f,0x11,0x97,0xf7,0x7a,0xe,0xac,0x7e,0x6e,0xb8,0x3f,0xd8,0x7b,0xc0,
0x1a,0xea,0x3b,0x83,0x58,0x48,0xdd,0x5b,0x7,0x18,0xab,0xc9,0x60,0x39,0x52,0x7e,
0xc3,0xad,0x9,0x69,0xce,0x1e,0x2e,0x34,0xe,0x89,0x82,0x9e,0xa6,0xc9,0xab,0x4a,
0x4b,0x37,0xe3,0xf4,0x4d,0x84,0x22,0xae,0xdb,0x85,0x18,0xf1,0xae,0x7,0xee,0xd7,
0xef,0xaf,0x41,0x7a,0x31,0x25,0x22,0x36,0xa2,0x19,0x1c,0xa6,0xa6,0x71,0x6,0x6,
0x4d,0x80,0x53,0x2c,0xcb,0x7a,0xee,0xa2,0x8b,0xce,0x49,0x71,0xb9,0x6c,0xf5,0xf8,
0xe3,0xcf,0xcf,0x46,0x72,0xbe,0xe6,0x2,0xb3,0x81,0xbe,0x48,0xc5,0xd1,0xc1,0x48,
0xc0,0xae,0x5b,0x2f,0x70,0xa5,0xd7,0xaf,0x4f,0x4b,0x46,0x5f,0x20,0x19,0xf9,0xef,
0x21,0x59,0xf4,0x1,0xea,0x4b,0xc8,0x86,0xd7,0xd3,0x78,0x24,0x54,0x40,0x69,0x22,
0x3a,0x2,0x9,0xa8,0x7c,0x4e,0xaf,0xc3,0x2a,0x4d,0x48,0x4e,0x84,0x10,0x90,0x88,
0x34,0x41,0xed,0xa5,0xd7,0xdb,0xbe,0x54,0xb8,0x3a,0xa0,0x7,0x12,0x46,0x33,0x5a,
0x13,0xd2,0x8f,0x88,0xc8,0xd2,0x27,0xfe,0x4,0x29,0x25,0x30,0x43,0x9f,0xf4,0x40,
0x88,0x28,0x51,0x93,0xca,0xde,0x4a,0x53,0xa6,0x23,0xdd,0x5e,0x4f,0xd5,0xdf,0xd,
0x67,0xc0,0x6f,0xd0,0x9f,0x55,0xeb,0x9b,0x2a,0xd3,0x6a,0x54,0x2,0xd2,0xee,0x27,
0xa8,0xbf,0xbf,0x5c,0x93,0x49,0x64,0xe7,0x81,0xf0,0x60,0xfc,0xb,0xf1,0x88,0x5d,
0x6,0x4c,0x46,0xa,0x42,0x65,0xe9,0xef,0x3c,0x2,0x5c,0x6e,0xe6,0xb2,0x41,0x14,
0xa3,0x1d,0xf0,0x5f,0x9f,0xcf,0x37,0x66,0xce,0x9c,0xff,0x32,0x72,0xe4,0xf1,0xe1,
0xcf,0x7f,0xb,0xdc,0x89,0x74,0xef,0x78,0x42,0x6b,0x5,0xbf,0x43,0x2a,0x4c,0x44,
0xae,0x4d,0xf,0xd2,0x8d,0xa3,0xbb,0xde,0xc4,0x17,0x3,0xdb,0x90,0x5e,0x67,0x7d,
0xf4,0x5a,0x4b,0x44,0x3c,0xcc,0x5d,0xa9,0xf,0x77,0x9,0x0,0xaf,0x22,0xed,0x87,
0x3e,0xda,0xcf,0x35,0xf6,0xd3,0x4,0xb3,0x3f,0x22,0x2a,0x3,0x9e,0x47,0xba,0xfa,
0x5c,0x83,0x24,0xe7,0x86,0xe0,0x87,0x7d,0xcd,0x3c,0x5a,0xfd,0x49,0x44,0x12,0x43,
0x9b,0xb2,0xb3,0x45,0x29,0x92,0xe3,0xf5,0x11,0xf5,0xdd,0x5d,0xe3,0x35,0x61,0x84,
0x19,0x3c,0x11,0xc9,0xd2,0x2f,0xd0,0x7a,0xee,0x87,0x9a,0xd1,0xfd,0x2e,0x97,0xbd,
0x22,0x14,0x72,0xca,0xf7,0x72,0xec,0x22,0xe0,0x4,0xa4,0xfd,0x49,0x8f,0x6,0x62,
0xe3,0x3d,0xb4,0xd2,0x5e,0xdf,0x6,0x6,0x7,0x88,0x9d,0xc0,0x3c,0xb7,0xdb,0x35,
0x7a,0xe6,0xcc,0xd7,0xec,0x81,0x3,0xfb,0xb2,0x74,0xe9,0xca,0x72,0xad,0x2d,0xa0,
0xb5,0x5,0xf,0x52,0x14,0x6d,0xe1,0x1e,0x75,0x2c,0x8f,0x67,0x49,0x20,0x10,0x8,
0xe7,0x5a,0x26,0x47,0xa8,0x50,0x1e,0x7d,0x7c,0x5b,0xb,0x20,0xc5,0xda,0xa4,0x12,
0xae,0x62,0x5a,0x74,0x80,0xd7,0xb8,0x42,0xbf,0xe,0x4,0xbb,0xf5,0x1a,0x1d,0xa8,
0xb9,0xe0,0x47,0x44,0xe4,0x0,0x6b,0xf5,0xd,0x36,0x57,0xf0,0x54,0xc3,0x1b,0x2b,
0x0,0x16,0xe8,0xdf,0xc7,0xa5,0xa6,0xa6,0xdc,0x31,0x63,0xc6,0x69,0x3,0x53,0x52,
0x92,0x5d,0x81,0x40,0xd0,0x5a,0xbc,0x78,0x69,0xdc,0x17,0x5f,0x2c,0xf8,0xda,0xef,
0xf7,0xdf,0xba,0x97,0xe3,0x25,0xea,0x9b,0x49,0xd5,0x37,0x57,0x1b,0x61,0xd7,0x5a,
0xa0,0x45,0x50,0x43,0x42,0x91,0xa,0xbd,0x6d,0x59,0x8e,0xa3,0xcc,0x98,0x44,0x17,
0x9e,0xa8,0xac,0xac,0xba,0xf6,0xe9,0xa7,0x5f,0x26,0x3e,0xde,0xd7,0xd0,0x94,0x11,
0x69,0xa6,0xd8,0x23,0x2,0x81,0x40,0xdf,0xe,0x1d,0x72,0x2e,0x9f,0x38,0xf1,0xa8,
0xdc,0xe,0x1d,0x72,0x2,0x5e,0xaf,0x87,0x6f,0xbf,0x5d,0xaa,0x3e,0xfb,0x6c,0x5e,
0x51,0x6d,0x6d,0xed,0xad,0xd4,0xb7,0x93,0x6e,0x9,0xb8,0x22,0xa4,0xb5,0xef,0x11,
0x49,0x44,0x41,0xe0,0x1d,0xe0,0x37,0xb4,0xbc,0x5b,0xdf,0x5,0xe4,0x26,0x27,0x27,
0x8d,0x9d,0x3e,0xfd,0x24,0x3a,0x77,0xee,0x40,0x6d,0x6d,0x1d,0x2f,0xbd,0x14,0xc7,
0xfc,0xf9,0xf9,0x8e,0xdf,0xef,0x4f,0xda,0xcb,0x60,0x85,0xf5,0xe0,0xf7,0xb5,0xbe,
0x19,0xf9,0x30,0x1e,0xb,0xb3,0x6d,0x5b,0x85,0x65,0x59,0x53,0x95,0x52,0x13,0x34,
0x39,0x57,0x78,0x3c,0xae,0xb7,0x3,0x81,0xd0,0x4a,0xdb,0xb6,0xbf,0xef,0xc3,0x1e,
0xd,0xf0,0x78,0x3c,0x56,0x20,0x10,0x98,0x2,0x4c,0x0,0xe2,0x2d,0xcb,0xba,0x5f,
0x29,0xb5,0xb9,0xd,0x3d,0xca,0xe5,0xc0,0xf5,0x25,0x25,0xa5,0x43,0xa8,0x6f,0x2a,
0x1a,0xb6,0x3,0x7d,0xaa,0x37,0xdc,0x7d,0xd9,0x73,0x3b,0xb4,0x6b,0x97,0x3d,0xfe,
0xe4,0x93,0xa7,0xe6,0xe,0x1e,0xdc,0x8f,0x84,0x84,0x78,0x9e,0x7d,0xf6,0x15,0xbe,
0xfa,0xea,0x9b,0x8d,0xb5,0xb5,0xb5,0x9,0x87,0x81,0x88,0x76,0x69,0x55,0x30,0xb8,
0x27,0x22,0x42,0xab,0x44,0x75,0x87,0x63,0xcd,0x0,0xaa,0xb4,0xb4,0xcc,0xb9,0xf3,
0xce,0x7,0xec,0x84,0x84,0x78,0x42,0xa1,0x10,0x9b,0x36,0x6d,0xc5,0xef,0xaf,0xf3,
0xb3,0x77,0xef,0x9d,0xa5,0xa5,0xb7,0x2f,0xb4,0xfe,0x19,0x49,0xa0,0x25,0xb4,0xe1,
0x0,0x46,0xcb,0xb2,0x26,0x2a,0xa5,0xee,0xee,0xd1,0xa3,0x4b,0xcf,0xd4,0xd4,0x14,
0xb6,0x6f,0x2f,0xf2,0x6f,0xdd,0xba,0x7d,0x84,0xcf,0xe7,0xfb,0xbf,0xda,0xda,0xda,
0x9d,0xd1,0x70,0xb,0xe1,0x5d,0x33,0x10,0x8,0x3c,0x5,0x8c,0xea,0xdb,0xb7,0x67,
0xd7,0xed,0xdb,0x77,0x7a,0xca,0xca,0xca,0x47,0x22,0xce,0x94,0x8b,0xdb,0xd0,0x23,
0x7d,0x10,0xb1,0xa7,0x9e,0xa7,0x17,0x73,0x77,0x6d,0x8a,0x48,0x0,0x8a,0x2d,0xcb,
0xb2,0xd5,0xde,0x5,0xdd,0x40,0x41,0xc1,0xa6,0xba,0xbb,0xee,0x7a,0x88,0xe4,0xe4,
0x44,0x5c,0x2e,0x37,0x85,0x85,0xdb,0xa8,0xae,0xae,0xa9,0xa5,0xe5,0xeb,0x72,0x59,
0x5a,0x1d,0x5c,0x10,0xb9,0x3e,0x1b,0x12,0x91,0xad,0x5f,0x87,0x63,0x1,0xdb,0x55,
0x55,0xd5,0x15,0x1f,0x7f,0xfc,0xc5,0xb3,0x9a,0x31,0xdd,0x7a,0x7,0xb4,0xf,0x60,
0xb0,0xf6,0xf4,0x4,0x3c,0xb4,0xdd,0xe2,0x67,0x47,0x2a,0xa5,0x1e,0xe9,0xdf,0xbf,
0x77,0xdf,0xd7,0x5f,0x7f,0x8a,0xc4,0xc4,0x34,0xe6,0xcc,0x99,0xe3,0xbb,0xec,0xb2,
0xeb,0xa7,0x97,0x97,0x57,0xf8,0xd3,0xd2,0xda,0x5d,0x52,0x56,0xb6,0x33,0xd0,0xca,
0xef,0x41,0x1,0x53,0x80,0x1,0x57,0x5f,0x7d,0xc9,0x59,0x6e,0xb7,0x3b,0xe1,0xc2,
0xb,0xcf,0xa3,0xb0,0x70,0x7,0xef,0xbf,0xff,0xc1,0xc4,0x7b,0xee,0x79,0x6c,0x9c,
0x65,0x59,0x71,0x4a,0xa9,0x5f,0x50,0x1f,0x41,0x1f,0xcb,0xf8,0xde,0xec,0xe0,0xf5,
0x7a,0x7c,0xe3,0xc7,0x8f,0x3e,0xff,0xe4,0x93,0xa7,0x1e,0xb7,0x75,0xeb,0xf6,0xb8,
0x17,0x5f,0x7c,0xb3,0xcb,0xa6,0x4d,0x85,0xfb,0xb4,0xd1,0x24,0x24,0xf8,0xe8,0xd1,
0xa3,0x1b,0xb9,0xb9,0xd9,0x78,0x3c,0x62,0x79,0xd9,0xb4,0xa9,0x90,0xc0,0xe1,0x99,
0x5,0x3f,0xe2,0x17,0x77,0x2b,0x9a,0x74,0x2e,0x2d,0x91,0xdd,0xad,0xd5,0xac,0xb0,
0xdb,0x71,0xca,0xbe,0xf4,0xdf,0x8,0x96,0x35,0x10,0xc,0x4,0x5e,0xe8,0xd3,0xa7,
0x67,0x97,0x27,0x9e,0xb8,0x8f,0xfb,0xee,0x7b,0x9c,0x95,0x2b,0xd7,0x33,0x75,0xea,
0x4,0xee,0xbf,0xff,0xe,0xef,0xaf,0x7e,0x75,0xfd,0x99,0x65,0x65,0x3b,0x7,0x0,
0xef,0x7b,0x3c,0x9e,0x5b,0x2,0x81,0x40,0x6a,0x2b,0xbc,0x87,0x2a,0xcb,0xb2,0x46,
0x2b,0xa5,0xfe,0xa,0xf4,0xbe,0xf2,0xca,0x5f,0xc5,0x7b,0xbd,0xe,0x77,0xdd,0xf5,
0x20,0x5f,0x7e,0xb9,0x90,0x47,0x1e,0xf9,0x1b,0xd9,0xd9,0x99,0xae,0x9b,0x6e,0xfa,
0xdb,0x69,0x48,0x69,0x97,0x75,0x6d,0xe0,0xb9,0x7e,0xbf,0x21,0x7b,0xbd,0x5e,0xd7,
0xc4,0x89,0x47,0xb5,0xfb,0xe5,0x2f,0x7f,0xde,0x6e,0xf9,0xf2,0xb5,0x7c,0xfd,0xf5,
0xb7,0x6c,0xda,0x54,0xb8,0x2f,0xe1,0xc1,0xea,0xd4,0xa9,0x3,0x3f,0xff,0xf9,0xc,
0x46,0x8c,0x18,0x44,0x62,0x62,0x2,0x8f,0x3e,0xfa,0x2c,0xf9,0xf9,0x4b,0xa9,0xad,
0xad,0x6b,0x15,0x37,0xe7,0x6e,0x45,0x3,0xad,0xf4,0x2b,0x6c,0xb9,0xaf,0xd1,0x44,
0xe4,0x58,0x96,0x55,0xa1,0x94,0xca,0x40,0x5c,0xfa,0xa5,0xb6,0x6d,0xaf,0x73,0x1c,
0x67,0xb7,0xe1,0x9c,0x3d,0x22,0x3b,0x3e,0x3e,0xae,0xcb,0x3,0xf,0xdc,0xc1,0xdc,
0xb9,0x5f,0xf3,0xe4,0x93,0xb3,0x18,0x32,0x64,0x0,0x8f,0x3e,0xfa,0xc,0xf7,0xde,
0x7b,0x1b,0xf,0x3e,0xf8,0xf7,0x84,0x7b,0xee,0x79,0x74,0x44,0x7e,0xfe,0x77,0x7d,
0x3,0x81,0xc0,0xe9,0xb4,0xce,0xac,0xee,0xa0,0x52,0x2a,0x39,0x33,0x33,0xbd,0xc3,
0x8b,0x2f,0x3e,0x62,0x77,0xeb,0xd6,0x8e,0xbb,0xee,0x7a,0x88,0x27,0x9f,0x9c,0x45,
0x55,0x55,0x35,0xc1,0x60,0x88,0x23,0x8e,0x18,0x12,0x9e,0x2f,0xee,0xb6,0xf6,0x80,
0x2d,0xb,0x7c,0x3e,0x2f,0x3e,0x5f,0x2a,0x19,0x19,0x49,0xb8,0x5c,0xf5,0xfb,0xb4,
0xd7,0xeb,0x49,0xf1,0xfb,0x3,0xbd,0x10,0x47,0x8e,0x95,0x9e,0x9e,0x3e,0xbf,0xb4,
0xb4,0xb4,0xc2,0xed,0xf6,0x90,0x9a,0x9a,0x4c,0x66,0x66,0x3a,0xb6,0x9d,0x48,0x52,
0x52,0x22,0x96,0xd5,0x7a,0x32,0xbc,0x5a,0xcb,0x43,0xc,0xdb,0x3,0x52,0x90,0xa8,
0xe8,0x52,0xbd,0x40,0x46,0x2,0x9d,0x95,0x52,0xd7,0xf8,0x7c,0x9e,0x5e,0xb6,0xed,
0x3a,0xae,0xae,0x2e,0xe0,0xf,0x85,0x42,0xf7,0x20,0x3d,0xca,0xaa,0x88,0x88,0xce,
0x34,0x0,0xc0,0x1f,0x8,0x84,0x58,0xb4,0x68,0x31,0x75,0x75,0xb5,0xd4,0xd6,0xd6,
0xd1,0xab,0x57,0x77,0x16,0x2f,0x5e,0x4e,0x79,0xf9,0x6e,0x7e,0xf6,0xb3,0xb3,0xf1,
0xf9,0xe2,0xf9,0xc9,0x4f,0x7e,0x9e,0x88,0x44,0xac,0xd7,0x1c,0x80,0xc4,0xd9,0x92,
0x9b,0x11,0x96,0x65,0xf9,0x94,0x52,0xae,0xab,0xae,0xba,0x84,0x5e,0xbd,0xba,0x53,
0x5a,0x5a,0xca,0xd6,0xad,0xdb,0xa8,0xae,0xae,0xfe,0xfe,0x6b,0x49,0x49,0x89,0x91,
0x9b,0x57,0x9b,0x82,0x52,0x68,0x67,0x43,0x10,0xa5,0x42,0xe1,0x94,0x90,0x0,0x80,
0xdf,0x1f,0xb8,0x22,0x27,0x27,0xf3,0x9a,0xf3,0xcf,0x3f,0xcf,0xc9,0xcf,0x5f,0x16,
0xf7,0xd1,0x47,0x1f,0xbd,0x2,0xd8,0x5,0x5,0x1b,0xd3,0xee,0xbf,0xff,0x9,0x72,
0x72,0xb2,0xf0,0x78,0xdc,0xe4,0xe7,0x2f,0xb,0x8f,0xa7,0x65,0x88,0x28,0x62,0x7,
0x44,0x82,0x28,0x3d,0x48,0x69,0xd7,0x4a,0xbd,0x38,0xb2,0x91,0xc8,0xe9,0xeb,0x2e,
0xba,0xe8,0x12,0xd7,0xc8,0x91,0x43,0xbd,0xbf,0xff,0xfd,0xcd,0x6c,0xdb,0x56,0x74,
0xb2,0x6d,0xdb,0x5,0x8e,0xe3,0x94,0x2,0x19,0x96,0x65,0x39,0xca,0x78,0xa4,0xc3,
0x58,0x1c,0xa,0x85,0x5e,0x78,0xec,0xb1,0x67,0xcf,0x99,0x35,0xeb,0x41,0xb5,0x72,
0xe5,0x5a,0x6b,0xcb,0x96,0x42,0x7a,0xf6,0xec,0xca,0x9f,0xff,0x7c,0x17,0xef,0xbd,
0xf7,0x31,0x19,0x19,0xe9,0x20,0x1e,0xc5,0xe7,0x90,0x88,0xf4,0xcc,0xd6,0x24,0x15,
0x2b,0xa5,0xce,0x1c,0x38,0xb0,0xef,0x79,0x73,0xe6,0x7c,0x95,0xfc,0xe9,0xa7,0x5f,
0xb2,0x6b,0x57,0x29,0xb5,0xb5,0x75,0xf4,0xe9,0xd3,0x8b,0x53,0x4e,0x39,0x86,0x31,
0x63,0x8e,0xe4,0x8e,0x3b,0xee,0x5,0x89,0x45,0xf3,0xb5,0xe5,0x87,0xad,0x94,0xa,
0x13,0x51,0x2e,0x70,0xbc,0xcf,0x17,0x77,0xd2,0xd9,0x67,0x9f,0xd6,0xee,0x8a,0x2b,
0x2e,0xe4,0x96,0x5b,0xee,0x0,0xf8,0x19,0xe0,0x54,0x55,0xd5,0xc4,0xad,0x5b,0xb7,
0x41,0xed,0xdc,0x59,0x6c,0xb9,0x5c,0x2e,0xb6,0x6c,0xd9,0x4e,0x28,0xe4,0xba,0xb6,
0xb7,0x32,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xf8,0x69,0x59,0x8f,0xd9,0x1,
0x23,0x15,0x69,0x1,0x94,0xdf,0xcc,0xe7,0xe9,0x6,0xfc,0x7,0xc9,0x3,0xfb,0x10,
0xf8,0x0,0x89,0xf8,0xdc,0x88,0x94,0x76,0xcd,0x42,0x2,0xb5,0x7e,0x83,0x4,0x40,
0xa9,0xf1,0xe3,0x8f,0x52,0x1f,0x7c,0xf0,0xa2,0xfa,0xe5,0x2f,0xcf,0x57,0x96,0x65,
0xd5,0x0,0xdb,0xcf,0x3f,0xff,0xcc,0x6d,0xbd,0x7a,0x75,0x53,0xfa,0x7b,0x0,0xff,
0x17,0xfe,0x3e,0x92,0x17,0xe3,0x6a,0x6b,0x13,0xd3,0xb6,0x6d,0x80,0x9,0xb6,0x6d,
0x17,0x8f,0x1a,0x35,0x4c,0xed,0xdc,0xb9,0xd4,0x59,0xb1,0xe2,0x73,0x75,0xfb,0xed,
0xbf,0x55,0x80,0xca,0xca,0xca,0x50,0xa3,0x47,0xf,0x53,0x60,0x5,0x80,0xbf,0xea,
0x7f,0x73,0xb5,0xa2,0x97,0x5,0xdc,0xd8,0xa5,0x4b,0xc7,0x92,0x30,0x31,0xfd,0xe3,
0x1f,0x7f,0x50,0x99,0x99,0x19,0x6a,0xe6,0xcc,0x7,0x55,0x28,0x54,0xa9,0xee,0xba,
0xeb,0x8f,0x2a,0x33,0x33,0x5d,0x21,0x1d,0x4d,0xdb,0xca,0x33,0x76,0xe9,0x39,0xad,
0x92,0x92,0x12,0xd5,0xdf,0xfe,0x76,0x93,0x52,0xaa,0x4c,0x15,0x16,0xae,0x50,0x27,
0x9d,0x34,0x45,0xf5,0xea,0xd5,0xbd,0xf2,0xec,0xb3,0x4f,0xd9,0xea,0x76,0xbb,0x6a,
0x1e,0x79,0xe4,0x2e,0xf5,0xe2,0x8b,0x4f,0xa8,0xac,0xac,0xcc,0xb0,0xc4,0xa8,0x86,
0xc,0xe9,0xaf,0xde,0x78,0xe3,0x3f,0x6a,0xfd,0xfa,0xaf,0xd4,0xb6,0x6d,0x8b,0xd5,
0x1d,0x77,0xfc,0x5e,0xa5,0xa4,0x24,0xed,0x42,0xa2,0xb2,0xef,0xd5,0xaf,0x67,0xce,
0x38,0x63,0x5a,0x73,0xeb,0x6b,0xf9,0x48,0x8b,0xb1,0xf8,0x86,0x6,0xb0,0x1f,0x88,
0xf5,0x2d,0x24,0xea,0xe6,0x21,0x29,0x24,0xf7,0x20,0x21,0xea,0xbf,0x40,0x12,0x63,
0x5d,0x88,0xdb,0xbd,0x18,0x71,0xf1,0x95,0x87,0xaf,0x67,0xf1,0xe2,0x25,0x6c,0xdf,
0xbe,0x8b,0x21,0x43,0x86,0x90,0x90,0x10,0xef,0x3,0x72,0xc6,0x8c,0x19,0x91,0x9b,
0x97,0xd7,0x1e,0x4c,0xc7,0xd6,0xef,0xa1,0xe3,0x83,0xe6,0x3a,0x8e,0xf3,0x8b,0xf9,
0xf3,0x17,0x55,0x4d,0x98,0x70,0xba,0xd5,0xa5,0x4b,0x47,0x92,0x92,0x12,0x0,0x28,
0x2e,0x2e,0xe1,0xeb,0xaf,0x17,0x85,0x87,0x35,0x6c,0xe0,0xc,0xb5,0xa2,0x97,0x2,
0x54,0xaf,0x5e,0xdd,0xac,0xe5,0xcb,0x3f,0xa7,0x5f,0xbf,0xde,0xdc,0x71,0xc7,0xbf,
0xa8,0xab,0xab,0xa3,0x5f,0xbf,0xfe,0x3c,0xf8,0xe0,0xc3,0xdc,0x7c,0xf3,0x9d,0xec,
0xda,0x55,0xba,0xda,0xb6,0xed,0xa9,0xb4,0xd1,0x58,0x31,0xb1,0xb,0xf9,0x99,0x35,
0x6b,0x16,0xef,0xbc,0xf3,0x31,0x83,0x7,0xf7,0x4b,0x1c,0x39,0x72,0x58,0xfb,0x60,
0x30,0xe4,0xb,0x6,0x21,0x10,0x50,0xf8,0xfd,0xf5,0x86,0x68,0xb7,0xdb,0x4d,0x4a,
0x4a,0x32,0xe9,0xe9,0x69,0x64,0x65,0x65,0xe0,0xf3,0xc5,0xd1,0xae,0x5d,0x56,0xfa,
0xdb,0x6f,0x3f,0xfb,0xb3,0xfc,0xfc,0xf,0xaf,0x28,0x28,0xf8,0xfa,0x8a,0x6b,0xae,
0xb9,0x74,0xc6,0x6b,0xaf,0xbd,0xb5,0xa1,0x5,0xb4,0x9f,0xa1,0x48,0x52,0xba,0x67,
0x4f,0xaa,0x99,0x57,0xdb,0x67,0x6,0xd2,0xb4,0xe9,0x1d,0xfb,0x62,0xf8,0x8d,0xd4,
0x7,0x22,0x6e,0xe5,0x87,0x9,0x78,0xd,0x16,0x98,0xc2,0xb2,0x2c,0xdc,0x6e,0xd7,
0xf7,0xc5,0xa1,0x6c,0xdb,0xc6,0xb6,0x2d,0x80,0x7f,0x20,0xe9,0x23,0xc6,0x5e,0x54,
0xff,0xb0,0xdf,0x1,0xfe,0x5a,0x52,0x52,0x7a,0xfb,0xfa,0xf5,0x9b,0x28,0x2e,0x16,
0x9,0x7c,0xf0,0xe0,0x7e,0xcc,0x98,0x71,0x3a,0x37,0xdd,0x74,0x87,0xa5,0x94,0x13,
0xaf,0x77,0xa6,0xe,0xad,0xc4,0xd6,0xe2,0xe8,0xeb,0xc8,0x4,0x6c,0xa9,0xcb,0x13,
0x22,0x27,0xa7,0x1d,0x17,0x5c,0x70,0x16,0x2f,0xbf,0xfc,0x3a,0xf7,0xde,0xfb,0x38,
0xb5,0xb5,0xb5,0x85,0xc0,0x50,0xc7,0x71,0xea,0xbc,0x5e,0x2f,0x7e,0xbf,0xbf,0xd,
0x3e,0x62,0xb,0xc7,0x51,0x54,0x56,0x56,0x7d,0xbf,0x16,0x2,0x1,0x3f,0x53,0xa7,
0x1e,0x4d,0xb7,0x6e,0x5d,0xf8,0xdb,0xdf,0xee,0xa2,0xbc,0xbc,0x92,0x8c,0x8c,0x34,
0x2a,0x2a,0x2a,0xb5,0xfa,0xa6,0x7e,0xf0,0xd3,0xe3,0xf1,0x58,0x9d,0x3b,0xe7,0xb9,
0xbb,0x74,0xe9,0x48,0x4a,0x8a,0x10,0x14,0x92,0x2,0xd2,0x12,0x69,0x51,0xd9,0x91,
0x6b,0xdd,0xdd,0x40,0x3f,0xdf,0xd5,0xc2,0xa3,0x99,0x86,0x18,0xa8,0x3d,0x5a,0x2d,
0xdc,0xab,0xe1,0xac,0xb6,0xb6,0x8e,0x25,0x4b,0x96,0xd0,0xb7,0x6f,0x2f,0xda,0xb7,
0xcf,0x65,0xcd,0x9a,0xf5,0x78,0xbd,0xde,0xb0,0xc7,0xa0,0x5a,0x93,0x90,0x71,0xe3,
0xff,0x90,0x8c,0xbe,0x2d,0x2a,0xda,0x55,0x3a,0x74,0xe8,0x94,0x74,0xa5,0x14,0xb6,
0x6d,0x87,0x96,0x2e,0x5d,0x55,0x7a,0xf3,0xcd,0x77,0x28,0xa5,0x9c,0x6c,0xa4,0xb5,
0xd2,0xe5,0xb4,0x9e,0x2,0x79,0xa,0xb0,0x2c,0xcb,0x72,0x7f,0xfc,0xf1,0x17,0x81,
0x41,0x83,0x26,0x17,0x87,0x42,0x21,0x47,0x29,0xa5,0xfe,0xf2,0x97,0xbb,0x93,0x8f,
0x3e,0x7a,0x5c,0xbc,0xe3,0x28,0xb,0xe9,0xf4,0x5b,0x23,0xc6,0x59,0x7f,0x9b,0x7d,
0xc0,0x4a,0x29,0x42,0x21,0x11,0x8,0xd7,0xac,0x29,0xa0,0xaa,0xaa,0xa,0xa5,0x1c,
0xca,0xcb,0xcb,0xbf,0xaf,0x69,0x74,0xfc,0xf1,0x47,0xb3,0x72,0xe5,0x5a,0x2,0xd,
0x2,0x86,0x2c,0xcb,0x22,0x14,0x72,0x28,0x2d,0xdd,0x4d,0x52,0x52,0x2,0x8e,0xe3,
0x84,0x8d,0xd7,0x2d,0xb5,0x21,0xfd,0x20,0x12,0x3c,0x92,0x88,0x2,0xc0,0x4c,0xe0,
0x92,0x16,0x98,0x98,0x5e,0x2d,0x5,0xfd,0x5b,0xab,0x5f,0xb6,0x36,0xb6,0xed,0x55,
0xa2,0x9,0x6,0x83,0xfc,0xeb,0x5f,0x4f,0xd2,0xab,0x57,0x77,0x6a,0x6b,0x25,0xdf,
0xef,0xbb,0xef,0x56,0x50,0x54,0x54,0x2,0x52,0x18,0x7f,0x67,0x5b,0xb4,0x9,0xed,
0x47,0xba,0x98,0xab,0x94,0x5a,0x13,0xc,0x86,0x46,0xe9,0x85,0xfb,0x2e,0x12,0xa1,
0xdb,0x7,0x78,0x18,0x49,0x44,0x7e,0x80,0xfa,0x6a,0x5,0xad,0x42,0x22,0x52,0x4a,
0x5d,0xc,0x64,0x6,0x83,0xc1,0xa7,0xf5,0x73,0x75,0xaa,0xaa,0xaa,0xcf,0x7d,0xeb,
0xad,0xff,0x5d,0x8,0x3c,0x63,0x59,0x56,0x81,0x71,0x4e,0x28,0x5c,0x2e,0x9b,0xbc,
0xbc,0xf6,0x24,0x26,0x26,0x90,0x9f,0xbf,0x94,0xfc,0x7c,0x68,0xd7,0x2e,0x93,0xdb,
0x6e,0xbb,0x93,0x2d,0x5b,0xb6,0x1,0x30,0x73,0xe6,0x6b,0x0,0x8c,0x18,0x31,0x58,
0x69,0xf2,0xb2,0x94,0x52,0xb8,0x5c,0x2e,0xb5,0x73,0x67,0x11,0xd7,0x5f,0xff,0x67,
0x2b,0x3e,0x3e,0x1e,0x8f,0xc7,0x4d,0x41,0xc1,0x66,0x94,0x52,0x49,0x2d,0x70,0xf1,
0x75,0xc0,0x77,0x91,0x6a,0x75,0x43,0xaf,0x59,0x11,0x62,0xec,0x6d,0x6e,0x22,0x5a,
0x85,0x18,0x98,0x15,0xf5,0x91,0xdc,0x23,0x80,0x31,0xda,0x46,0x14,0xfe,0xac,0x9c,
0x88,0x7c,0x94,0x4e,0x9d,0x3a,0x30,0x62,0xc4,0x60,0xe6,0xcf,0x5f,0x4,0xc0,0x3,
0xf,0x3c,0x19,0xb6,0x89,0x2c,0xd3,0xb,0xcd,0x48,0x44,0x3f,0x46,0x58,0xf,0xdf,
0x5,0xbc,0x84,0x64,0x59,0x87,0xc7,0x77,0xb,0x7b,0xc9,0xd8,0x3e,0xcc,0x98,0xa8,
0x27,0xeb,0x47,0x48,0x19,0xa,0x90,0x12,0x35,0x0,0x8b,0x94,0x52,0x15,0xc6,0x16,
0xe8,0x0,0x1e,0x26,0x4d,0x3a,0x8a,0x21,0x43,0xfa,0x33,0x77,0xae,0x3c,0xc6,0xce,
0x9d,0x3b,0x32,0x6e,0xdc,0x28,0x3e,0xf8,0xe0,0x33,0x76,0xef,0xae,0x0,0xb1,0xb7,
0xce,0x4f,0x4c,0x8c,0x1f,0x94,0x91,0x91,0xde,0x29,0x23,0xa3,0x3d,0x90,0x44,0x72,
0x72,0x8a,0x65,0xdb,0xf6,0x8e,0xf9,0xf3,0xf3,0x1f,0x8c,0x58,0x73,0xd0,0xfc,0x76,
0x62,0x37,0x92,0xec,0xfe,0xf2,0xbe,0x88,0x88,0x16,0x5a,0xcc,0x85,0xc0,0x3f,0x1b,
0x9c,0x73,0x3a,0x52,0x86,0x64,0x8d,0x1e,0xc,0xb,0xc8,0x41,0x8a,0x3f,0x2d,0x0,
0xfe,0xdc,0xae,0x5d,0x16,0xd7,0x5d,0x77,0x23,0x6b,0xd7,0xae,0xe1,0xa2,0x8b,0x2e,
0xe1,0xfa,0xeb,0xaf,0xe4,0xdd,0x77,0x3f,0xe6,0xcb,0x2f,0x17,0xc4,0x19,0xbe,0x39,
0x20,0x69,0x23,0x18,0x31,0xde,0x16,0xad,0xb7,0x66,0xb9,0x4b,0xcf,0x4d,0xdf,0x1e,
0x44,0x79,0xaf,0x79,0x94,0xf5,0x1a,0x94,0xd7,0x1b,0x87,0xcf,0x17,0xf7,0xbd,0x9d,
0x28,0x37,0x37,0x9b,0x50,0x28,0xc4,0xce,0x9d,0xdf,0x17,0xba,0xa8,0x6,0xbe,0x9d,
0x3f,0x3f,0x3f,0xe7,0xb8,0xe3,0x66,0x74,0x8a,0x8b,0x8b,0xc3,0xb6,0x2d,0xca,0xcb,
0x2b,0x28,0x2b,0x2b,0x2f,0x3,0x9e,0xd2,0x1b,0x52,0x4b,0xae,0xff,0x50,0xc3,0xf3,
0xb8,0x5b,0xd1,0xc4,0xb,0x8f,0x6e,0x88,0x1f,0x57,0x80,0xfb,0x7,0x50,0xf4,0xe5,
0x97,0xb,0x1e,0x1a,0x34,0x68,0xb8,0xa3,0xbf,0xa3,0x7e,0xff,0xfb,0x3b,0xdc,0x68,
0xa3,0xa6,0x11,0xd5,0xd,0xda,0x16,0xc2,0x7b,0x89,0xfa,0xc1,0xdc,0x7f,0xef,0xbd,
0x4f,0xbe,0xb7,0x1b,0x69,0x5c,0xf,0x94,0x2a,0xc5,0x5,0x61,0xe7,0x8e,0x65,0xc9,
0x6b,0x9f,0xc,0xd7,0xc2,0x68,0x4d,0x46,0x4a,0xf,0xe2,0x39,0xeb,0x8a,0x94,0x9d,
0xec,0x89,0xb8,0xf8,0xfc,0x88,0x67,0x27,0x2c,0xf5,0xcc,0x5,0x1e,0x45,0x5c,0xff,
0xb,0xb4,0xde,0xab,0x12,0x12,0x12,0xcc,0xdc,0x34,0x68,0x1b,0xb2,0x90,0x82,0xaa,
0xaa,0x1a,0x6a,0x6a,0x4a,0x28,0x2d,0x2d,0xc7,0xef,0xf,0xe0,0x76,0xbb,0x99,0x3a,
0x75,0x22,0xbf,0xf9,0xcd,0x15,0x9c,0x7f,0xfe,0x59,0x74,0xeb,0xd6,0x39,0x52,0x92,
0xb4,0xc7,0x8c,0x19,0xe1,0x7c,0xf6,0xd9,0xab,0xac,0x5f,0xbf,0x9e,0x75,0xeb,0x36,
0xf0,0xc0,0x3,0x7f,0x23,0x33,0x33,0xad,0xd5,0xdc,0x53,0x6b,0xcb,0xd3,0xf1,0x20,
0xa5,0x2a,0x77,0x6a,0xb1,0xbc,0x9d,0xbe,0xc6,0x70,0xdd,0xa1,0xcd,0xda,0xb6,0x14,
0xee,0xca,0x31,0xc,0x29,0xc2,0xdd,0xbf,0xba,0xba,0x7a,0xc,0x92,0xb2,0xe0,0x36,
0x53,0xd5,0x20,0x96,0x51,0x5b,0x5b,0xab,0x66,0xcd,0x7a,0x3d,0xb0,0x60,0xc1,0x22,
0x7f,0x45,0x45,0x95,0xbd,0x78,0xf1,0xf2,0xb8,0x89,0x13,0x8f,0x74,0xbd,0xf0,0xc2,
0xbf,0x49,0x4b,0xeb,0xe,0x54,0xf0,0xe2,0x8b,0xcf,0x73,0xc3,0xd,0xb7,0xb1,0x69,
0x53,0xa1,0x5,0x50,0x53,0x53,0xcb,0x86,0xd,0x5b,0xc8,0xca,0xca,0x24,0x29,0x29,
0x81,0xa2,0xa2,0x9d,0x84,0x42,0xad,0xa7,0x4a,0x4e,0x6b,0xca,0x35,0xb,0x69,0x35,
0xec,0x2a,0xad,0xd7,0xba,0x91,0xa2,0xfb,0x58,0x16,0x8e,0x52,0x58,0x48,0xcd,0xa1,
0x48,0xcf,0xda,0x22,0x24,0x16,0xe9,0x7c,0xa4,0x26,0x76,0x62,0x84,0x5d,0xc1,0xe8,
0x6a,0x6,0x31,0x27,0xc,0x1,0x84,0x42,0xa1,0xba,0xb5,0x6b,0xb,0x3e,0x5a,0xbb,
0xb6,0xe0,0x43,0x24,0x1e,0xe7,0xac,0xd2,0xd2,0xf2,0x3e,0x6b,0xd6,0xac,0x62,0xc0,
0x0,0x85,0xdb,0xed,0x65,0xd8,0xb0,0x21,0xf4,0xe8,0xd1,0x85,0x4d,0x9b,0xa,0x6b,
0x0,0xab,0xb0,0x70,0x1b,0xcf,0x3d,0xf7,0x1a,0x9f,0x7c,0xf2,0x25,0x2e,0x97,0x87,
0x6f,0xbe,0x59,0x44,0x4d,0x4d,0xed,0xe1,0xba,0xf,0x87,0x6,0xa5,0x40,0x1a,0x12,
0xd1,0xf7,0x91,0xad,0x87,0xe3,0xe2,0xbc,0x5e,0x6f,0x6a,0xa7,0x4e,0x1d,0xae,0xf7,
0x7a,0x3d,0x38,0x8e,0x43,0x59,0x59,0x39,0x45,0x45,0xbb,0x66,0x3b,0x8e,0x13,0xb6,
0x1b,0xd,0x42,0x3c,0x2a,0xcb,0x91,0xfa,0x2c,0x89,0x48,0xad,0xea,0x67,0xb5,0xba,
0x76,0x1e,0x12,0x7e,0x90,0xa0,0xbf,0x1f,0x32,0x73,0xd7,0x20,0x46,0x10,0x8a,0x58,
0xbc,0x75,0x48,0x37,0x8e,0x87,0x80,0xee,0x49,0x49,0x89,0x63,0x4a,0x4b,0x4b,0xfb,
0xbc,0xff,0xfe,0xe7,0x8c,0x1c,0x39,0x1a,0x80,0xff,0xfd,0xef,0x4b,0x16,0x2c,0xc8,
0x7f,0x8,0xa9,0x84,0x78,0x4a,0x51,0x51,0x9,0x1f,0x7c,0xf0,0x9,0x71,0x71,0x5e,
0x2c,0xcb,0xa2,0xbc,0xbc,0x12,0xbf,0xff,0xb0,0xc4,0xff,0x86,0xb5,0x9b,0x6c,0x24,
0x23,0x42,0x35,0x24,0x22,0x4b,0xdb,0x67,0x92,0xf4,0xd,0xf,0xd4,0x2a,0xd2,0xce,
0x6,0xc4,0x95,0xa2,0xed,0x36,0x8d,0x4d,0xab,0x48,0xd7,0x27,0x6f,0xd8,0xf1,0xc3,
0x95,0x9e,0x9e,0x6a,0x5f,0x7d,0xf5,0x2f,0xc8,0xcd,0xcd,0xa6,0xae,0xce,0xcf,0x47,
0x1f,0xcd,0xe1,0xa5,0x97,0xde,0x74,0x55,0x57,0xd7,0x84,0x8b,0x83,0x57,0x21,0x1d,
0x0,0xbc,0xd4,0xb7,0x1a,0x5a,0xad,0x7f,0x2e,0x42,0x5c,0xbc,0xc1,0x8,0xb5,0x6d,
0x27,0x30,0xf,0x13,0x71,0x6d,0x10,0xfd,0xc8,0xa4,0x3e,0x84,0x21,0x5c,0x99,0x14,
0xe0,0xc4,0x81,0x3,0xfb,0x4e,0x79,0xed,0xb5,0x27,0xc8,0xc8,0x48,0xa5,0xaa,0xaa,
0x14,0xcb,0x72,0xb1,0x6d,0xdb,0x66,0x1c,0x47,0xad,0xd5,0x73,0x3f,0xae,0x4b,0x97,
0x3c,0xf7,0x79,0xe7,0x9d,0x49,0xcf,0x9e,0x5d,0xf1,0xf9,0xe2,0x78,0xf7,0xdd,0xd9,
0xbc,0xf0,0xc2,0x7f,0xdd,0x95,0x95,0x55,0xd6,0x1e,0xb4,0x93,0x2c,0xad,0x95,0x34,
0xa6,0x3b,0x72,0x92,0x5e,0x9f,0x3f,0x8,0xbd,0xd1,0x66,0x96,0x76,0x5a,0x48,0xe8,
0xad,0x5,0x86,0x3f,0x69,0x2e,0xf9,0x51,0x8a,0xc7,0xd5,0x9a,0x8c,0x82,0x48,0xee,
0xd7,0xd,0xd,0x88,0x28,0x1d,0xe9,0x98,0x51,0xc0,0x8f,0x7b,0x92,0x1d,0x28,0x8e,
0xd1,0x8c,0x1e,0xd9,0x6b,0x2c,0x68,0x59,0xd6,0xae,0x1d,0x3b,0x8a,0x16,0xff,0xfa,
0xd7,0xbf,0x8f,0xc,0x2f,0x4f,0x40,0x7a,0x20,0xb9,0x81,0x17,0x90,0xde,0x66,0xf1,
0xfa,0x21,0x74,0xd6,0x83,0xf6,0x3c,0x62,0xb8,0x7e,0x94,0x1f,0xba,0x4,0x6f,0x42,
0xda,0xab,0x5c,0x84,0xc4,0x2c,0x54,0x9b,0xb9,0x6c,0x10,0xa5,0x68,0x6f,0x59,0xd6,
0x75,0x29,0x29,0x49,0xd7,0x75,0xee,0x9c,0xc7,0xf2,0xe5,0xab,0x9,0x85,0x9c,0x70,
0x31,0xc1,0x76,0x75,0x75,0x75,0x6c,0xdf,0xbe,0x93,0xf2,0xf2,0xa,0x32,0x33,0xb3,
0x59,0xb1,0x62,0x15,0xef,0xbc,0xf3,0xb1,0xaa,0xae,0xae,0x29,0x17,0xd3,0x86,0x55,
0xbe,0x7a,0xf5,0xfa,0xd5,0xb7,0xdc,0xf2,0xf7,0xdd,0x11,0x9b,0xb2,0xb,0xd8,0x60,
0xdb,0x76,0x55,0x83,0xfa,0xe5,0x36,0x70,0x86,0xde,0xd8,0x1b,0xd3,0x21,0x79,0x98,
0xe6,0x90,0xf7,0x90,0x18,0xa6,0x30,0xfa,0x3,0x7f,0x47,0x4a,0xdc,0x42,0x83,0x3a,
0x58,0xee,0x6,0xa2,0xdf,0xd7,0xc0,0xb9,0xda,0xee,0x72,0x8e,0x66,0x35,0x1f,0xf5,
0xae,0xf4,0x70,0xe1,0xeb,0x1a,0xfd,0xbf,0x7,0x5b,0x54,0xab,0x4e,0x4b,0x34,0xf1,
0xfa,0xff,0xbf,0xef,0xc,0xa9,0x94,0xf2,0x6a,0xc2,0x8,0x8f,0x4a,0x10,0x9,0xb0,
0x5c,0xae,0x99,0x39,0x5d,0xb3,0x6d,0x86,0x65,0x71,0x91,0x52,0x4c,0x2,0xd2,0xe3,
0xe3,0x7d,0xd9,0x7e,0xbf,0x3f,0x45,0x97,0x34,0x70,0x45,0xde,0xd3,0xb8,0x71,0xa3,
0xac,0xb9,0x73,0x17,0x3e,0xe6,0x38,0x4e,0xb2,0x26,0x56,0x43,0x46,0x6,0xd1,0x86,
0x8e,0xc0,0x9f,0x81,0x8b,0xbb,0x74,0xe9,0xc8,0xd9,0x67,0x9f,0xc2,0x6d,0xb7,0xdd,
0xe7,0xe,0x85,0xea,0x40,0x92,0xc7,0xcf,0x5d,0xb3,0xa6,0x80,0x8b,0x2e,0xba,0x6,
0xcb,0x82,0x61,0xc3,0x86,0xd1,0xb9,0x73,0x67,0x92,0x92,0x92,0xde,0x47,0x3c,0xcc,
0x2e,0xa5,0xd4,0x42,0xa4,0xd2,0x42,0x1f,0xbd,0x86,0xc2,0x31,0x64,0x75,0x8e,0xe3,
0x4c,0xa4,0xbe,0xfa,0x63,0x98,0xdc,0x7a,0x23,0xbd,0xcf,0x5c,0x1c,0x5c,0xdc,0x56,
0x40,0x6b,0x2a,0x25,0x7a,0x1d,0xc6,0x45,0xac,0xf1,0xa5,0x9a,0x53,0xde,0x46,0xfa,
0xa0,0x85,0xf6,0x46,0x44,0x41,0xe0,0x69,0xc4,0x2b,0x95,0x5,0x9c,0xa2,0xc5,0xc1,
0x86,0xdf,0x9,0x17,0xd2,0x9a,0x7e,0x0,0x17,0xe6,0x8f,0x90,0xb6,0xd0,0x84,0x72,
0x1,0x92,0xce,0x51,0x1e,0x21,0xc1,0x28,0x7d,0xec,0x2a,0xea,0xa3,0xad,0xc3,0x11,
0x98,0xf3,0x80,0x93,0xf5,0xfb,0x1,0xc0,0x11,0x4a,0x71,0x4a,0x56,0x56,0x6,0xb6,
0x6d,0xd3,0xbd,0x7b,0x17,0x56,0xaf,0x5e,0x17,0x2c,0x29,0x29,0x3b,0x5a,0x1f,0x63,
0x83,0xb6,0x1d,0xe5,0xd,0x1e,0xdc,0xcf,0x3d,0x6f,0xde,0x37,0x5e,0xfd,0x10,0x82,
0x48,0x67,0xf,0xc7,0xcc,0x6d,0x83,0xd6,0xe,0xdb,0xb6,0x2d,0xc7,0x71,0xfa,0x2,
0x37,0x2,0x17,0x28,0xa5,0x58,0xb9,0x72,0x6d,0xf0,0xde,0x7b,0x1f,0x2f,0xac,0xab,
0xf3,0x57,0xe9,0xb5,0x75,0x32,0xd0,0xbd,0xb2,0xb2,0x8a,0xc5,0x8b,0x97,0x1,0x90,
0x9f,0xbf,0x4c,0x27,0x85,0x5b,0x89,0xc0,0xd9,0x9a,0xc,0xaa,0xb5,0x4d,0x66,0xac,
0x26,0xa2,0x50,0xc4,0x3a,0xb,0x27,0xb9,0x86,0x89,0xc8,0xd2,0xe6,0x97,0xa1,0x48,
0xf7,0xd8,0x70,0xb9,0x8e,0x70,0x40,0xec,0xfe,0x88,0xa9,0x5a,0x1f,0x7f,0xf4,0x1e,
0xb8,0xa3,0x44,0x73,0x4a,0xa5,0x5e,0xd7,0x7b,0xed,0xe2,0xe1,0x41,0x62,0x73,0xfa,
0x20,0x9d,0x53,0xf7,0xb4,0x68,0x23,0xc9,0x63,0x5f,0xa8,0x45,0xd2,0x36,0xd0,0x6c,
0x18,0xfe,0xbf,0x72,0x2d,0xe5,0xcc,0xdc,0xc3,0xf9,0xc3,0x83,0xa1,0xb4,0x3e,0x79,
0x92,0x66,0xd1,0x70,0x42,0x6b,0x5e,0xf8,0x8b,0x43,0x87,0xe,0xa4,0xb4,0xb4,0x2c,
0x5c,0x18,0xca,0xd,0x5c,0x8a,0x78,0xdc,0x6e,0xd2,0x5f,0x99,0xf6,0xd0,0x43,0x4f,
0xf,0xd6,0x7a,0x75,0xb2,0xde,0x55,0xaa,0x10,0xc3,0xb6,0x81,0x41,0xab,0x86,0xe3,
0x38,0x33,0x80,0x4b,0xfe,0xbf,0xbd,0xf3,0x8e,0xaf,0xb2,0xba,0xff,0xf8,0xfb,0x3c,
0xcf,0x9d,0xd9,0x40,0x58,0x1,0x64,0xf,0x5,0x14,0x94,0xa1,0x28,0x2a,0x45,0x70,
0xe0,0xde,0xda,0xd6,0xd1,0xa5,0xa2,0xfd,0x59,0xdb,0xda,0x3a,0xaa,0xb5,0xe,0xd4,
0x5a,0x77,0xd5,0xd6,0x6d,0xd5,0x2a,0x2a,0x75,0x20,0x28,0x4b,0x11,0x44,0x65,0xca,
0x46,0x44,0xf6,0x8,0x90,0x84,0xec,0x9b,0xe4,0x8e,0xe7,0xfc,0xfe,0x38,0xe7,0x21,
0x97,0x98,0x5,0xdc,0x40,0xc6,0xf9,0xbc,0x5e,0xf7,0x95,0xe4,0xe6,0xde,0x67,0x9d,
0x73,0x3e,0xe7,0xbb,0xbf,0x96,0x65,0x9d,0xaa,0x55,0xa7,0x48,0x38,0x1c,0xf9,0x4f,
0x6e,0x6e,0xfe,0x64,0xfd,0x91,0x5c,0x54,0x51,0xbb,0x1f,0x41,0xc5,0x37,0xca,0xa3,
0xf4,0xa2,0x77,0xc9,0xc5,0x87,0xca,0x52,0xf8,0x86,0xca,0xcc,0x85,0xaa,0x6b,0xd8,
0x8d,0xe7,0xbb,0x1,0x95,0x90,0x7e,0x79,0x15,0x33,0x49,0x37,0x60,0x9,0xb5,0x17,
0xa3,0xab,0x8d,0x1f,0x2c,0x6d,0x6a,0x59,0x89,0xaa,0xe,0x51,0x63,0x17,0x8f,0x32,
0x54,0x31,0xf2,0x20,0x7,0xef,0x39,0xcb,0x45,0xf5,0xb9,0x8f,0xa0,0xdc,0xeb,0xe1,
0x38,0xd1,0x6f,0xf,0x2a,0x78,0xb1,0x2e,0xbc,0xaf,0x1f,0x88,0xfb,0xdd,0xab,0x51,
0xad,0x6a,0x3,0x9b,0x37,0x6f,0x2d,0x2a,0x28,0x28,0xa,0xe5,0xe4,0xe4,0x39,0x5a,
0x5d,0xfb,0x5c,0x4a,0x96,0xc5,0x19,0xd8,0xe6,0x69,0x35,0xf0,0x1,0x54,0xcb,0xdd,
0x76,0xa8,0xf2,0xb2,0x7e,0x2d,0xf9,0x19,0x3,0xb6,0x41,0x63,0x84,0x17,0xb8,0x3a,
0x2d,0x2d,0xf5,0x81,0x1,0x3,0xfa,0xb6,0x5b,0xb9,0x72,0x2d,0x45,0x45,0xc5,0x65,
0xda,0xb4,0x70,0x17,0x95,0x15,0x15,0x53,0x50,0x76,0xd3,0x52,0x54,0xcf,0xfa,0x1c,
0xbd,0x46,0x5a,0xe9,0x63,0xcc,0x0,0x1e,0x8c,0xdb,0xc4,0x83,0xa8,0x26,0x3,0xf5,
0xa9,0xf5,0xbe,0x80,0x7d,0x83,0x9d,0x25,0x2a,0xc0,0xf8,0x2f,0xc0,0xb9,0x1c,0x5c,
0x45,0x4f,0xc1,0xbe,0x8d,0x50,0xab,0x25,0x22,0x7,0xd5,0x2f,0x2a,0x51,0x28,0xd7,
0x24,0xb2,0x56,0x93,0xdc,0xfe,0x62,0x8b,0x7e,0xb9,0x78,0x1d,0x18,0x22,0x4,0x63,
0xd6,0xad,0xdb,0x38,0xb,0x65,0xf0,0x2e,0x3,0xae,0x90,0x92,0x49,0xec,0x6b,0xe5,
0xcf,0xd5,0xaf,0xf1,0xa8,0x14,0x91,0xb,0x35,0x19,0x3d,0xa6,0xc5,0xd4,0xc7,0xa9,
0x6c,0xdb,0x6b,0x60,0xd0,0x18,0xe0,0xc6,0xd1,0xdd,0xde,0xba,0x75,0xab,0xd4,0xde,
0xbd,0xbb,0xb3,0x62,0xc5,0x77,0x45,0x5a,0xf2,0x79,0x98,0x7d,0x3d,0xd5,0x25,0x7a,
0x43,0xed,0xa2,0xd7,0xf1,0x53,0x7a,0x7e,0x9f,0xf,0x8c,0xd2,0x84,0xb3,0x9a,0x3,
0xb,0x61,0xf9,0xae,0x9a,0xf7,0xa2,0x5a,0xed,0xda,0x45,0x65,0x22,0x72,0xc2,0xd0,
0xd0,0x1,0x8d,0xae,0x51,0xcc,0x7b,0x80,0x44,0x54,0x15,0x1b,0x81,0x6f,0xa4,0x64,
0xc,0xaa,0x78,0xdb,0xab,0xfa,0xfd,0xa3,0x6b,0x79,0xe0,0x1b,0xb4,0xdd,0x2b,0x80,
0xaa,0x63,0x93,0xaa,0x77,0x96,0x2e,0x5a,0x3d,0xfc,0xd2,0xcc,0x7f,0x83,0x46,0x80,
0x0,0xf0,0x7,0xe0,0x36,0x20,0x98,0x97,0xb7,0x87,0x29,0x53,0x66,0x95,0x15,0x17,
0x97,0xfc,0x43,0x8,0xf1,0x77,0x29,0x65,0x75,0x7d,0x7f,0xba,0x0,0xa7,0xa2,0xa,
0x1a,0xbe,0x8d,0x4a,0x12,0x4f,0xd1,0x3f,0x2d,0x2d,0x5,0x95,0x24,0xf0,0xfa,0x1a,
0x2c,0x21,0xd6,0x6a,0x62,0x83,0x15,0x46,0x79,0xed,0xa,0x81,0x2b,0xb5,0x41,0xcc,
0x95,0xe4,0x6a,0x7b,0x50,0x1b,0x51,0xa1,0x8,0x5f,0x3,0x8,0x21,0x82,0x7e,0xbf,
0xef,0x6,0xdb,0xb6,0xff,0x1,0x1c,0xdf,0x42,0x26,0xba,0xc4,0x4,0x78,0x36,0x56,
0x8,0x94,0x4d,0xf6,0x77,0x9a,0x3c,0x28,0x2e,0x2e,0x59,0x90,0x9b,0xbb,0xe7,0x3a,
0xcb,0xb2,0x1e,0xaf,0x81,0x84,0xa0,0x32,0x7,0xd3,0x95,0x50,0xd2,0xf4,0x18,0xe7,
0x6a,0x9,0xa6,0xc9,0x94,0xc5,0x69,0x6a,0x44,0x94,0x84,0x72,0x2b,0xbe,0x8f,0x8a,
0x4b,0xe8,0xa7,0xdf,0xff,0x44,0x8b,0xa3,0x6d,0x6b,0xf9,0xee,0x2a,0x3d,0xd0,0x5f,
0xfa,0x7c,0x5e,0x86,0xf,0x3f,0x96,0x11,0x23,0x86,0xc,0xd3,0x7a,0xf4,0xf0,0x16,
0x30,0xd9,0xfd,0x34,0x9e,0x2,0x68,0x6,0xfb,0xe2,0x5a,0x2d,0xd,0xb5,0xd2,0x7f,
0x7f,0x89,0x4a,0xf8,0x7e,0xdd,0x71,0x9c,0x92,0x5a,0x32,0xe5,0x5,0x95,0x4d,0x7,
0x40,0x75,0x46,0xee,0xa3,0x89,0xc9,0xdb,0x94,0x1e,0x40,0x53,0x23,0x22,0xf,0x2a,
0x22,0x7b,0x97,0x16,0x39,0xdd,0x2e,0xa5,0xeb,0x35,0x29,0xd5,0xd5,0x5a,0x66,0x1,
0xf0,0x5b,0xc7,0x91,0x93,0x76,0xee,0xcc,0x21,0x1a,0x8d,0x9,0x8f,0xc7,0x73,0xa,
0xca,0x5e,0x74,0x76,0x33,0x9f,0xec,0xad,0xf5,0x3d,0xb6,0xd3,0xbb,0xa5,0xc9,0xc5,
0x3b,0xfc,0x73,0xb9,0x35,0xca,0x26,0xf4,0x17,0xad,0x66,0x1,0x4c,0x42,0x95,0xf0,
0x5d,0xb8,0x57,0x94,0xad,0xbe,0xc4,0x4d,0x8a,0x26,0x9e,0x2d,0x28,0x1b,0xac,0x6b,
0x2,0xd9,0xa5,0xdf,0xf3,0x35,0xa5,0x31,0x6e,0x6a,0x99,0xea,0xe,0xca,0xc6,0xb3,
0x1d,0x55,0x6a,0xf2,0x72,0xe0,0x53,0x54,0x61,0xa7,0x35,0xa8,0x68,0xeb,0xed,0x75,
0xa8,0x20,0x4b,0x23,0x91,0xc8,0x9f,0xbe,0xff,0x7e,0xfd,0xfa,0xa4,0xa4,0xe0,0x25,
0x52,0x3a,0xdd,0x51,0x95,0x21,0x1f,0x42,0x19,0xb,0x27,0x36,0xd3,0x89,0xef,0x43,
0x45,0xb5,0x9f,0xf,0x2c,0x37,0x3c,0x70,0x78,0xe1,0xf5,0x7a,0x7f,0x1e,0x89,0x44,
0xc6,0xa2,0x72,0x27,0x3b,0xea,0xb7,0x5f,0x1,0xee,0xa7,0x7e,0xe,0xa3,0x74,0x94,
0xb7,0xec,0x3b,0x54,0x0,0x72,0x5f,0xbd,0x19,0x2f,0xd7,0x52,0x51,0x93,0x12,0x32,
0x9a,0x9a,0x44,0xe4,0x76,0x83,0x5d,0x84,0xea,0x69,0xd5,0xf,0x65,0x98,0xb,0x1,
0x3f,0xa0,0xec,0x3d,0xc9,0xf5,0x38,0xce,0x6,0x60,0x42,0x28,0x54,0x76,0x5d,0x2c,
0xe6,0xb8,0x5e,0xb9,0xfe,0xc0,0xbd,0x54,0x6,0x6a,0x36,0xb7,0xb2,0xb3,0xf9,0xa8,
0x1a,0xe1,0x9f,0x6a,0x35,0xcd,0x94,0xd5,0x3d,0xf4,0xd0,0xbd,0xeb,0xbd,0x17,0x46,
0x22,0x91,0xdb,0xef,0xb9,0xe7,0x8f,0x97,0xf6,0xe9,0xd3,0xc3,0x25,0xa1,0xb7,0xf5,
0xfc,0xab,0xaf,0xd7,0xba,0x5c,0xab,0x64,0x6e,0x51,0xa1,0xc1,0x7a,0x63,0x3e,0x14,
0x1d,0x38,0x5a,0x3c,0x11,0xb9,0xd7,0x5c,0x4a,0x65,0xba,0x86,0xeb,0x82,0x8f,0x6a,
0x92,0xaa,0xef,0x3d,0x15,0xa2,0x62,0x2d,0xc6,0xa3,0x52,0x4f,0xd0,0x3b,0xc9,0x5d,
0x5a,0xe4,0x6d,0x6e,0xaa,0x4b,0xb1,0xb6,0x3d,0x6c,0x69,0x6a,0xf6,0x83,0x66,0x4,
0x9,0x9c,0x1c,0xe,0x47,0xee,0x1a,0x3f,0xfe,0xea,0xde,0x5b,0xb6,0x6c,0xb3,0xb2,
0xb3,0x77,0xa1,0xc7,0xe5,0x5e,0x54,0x56,0x40,0x7d,0x10,0x4,0x7e,0xa9,0x37,0xe1,
0xbf,0xbb,0x42,0x16,0x2a,0xa5,0x63,0xb2,0x96,0x96,0x64,0x53,0x5b,0xd4,0x4d,0x55,
0xcd,0x58,0xaf,0xc9,0xe7,0x4e,0x6d,0xf7,0xd8,0x86,0xf2,0xaa,0xed,0x6f,0xfd,0xea,
0x4f,0x50,0x1d,0x34,0xdd,0x56,0x4a,0x83,0xb4,0x78,0x7c,0xe,0x95,0xc6,0xc3,0xe6,
0xb4,0x10,0xc,0xe,0x1f,0x4e,0x44,0x39,0x47,0x6,0xa9,0xec,0xf7,0xf,0x29,0x2e,
0x2e,0xfd,0x1a,0xe5,0x44,0x59,0xb3,0x9f,0x26,0x95,0x2e,0x28,0x3b,0xd1,0xda,0xb8,
0xb1,0xdd,0x85,0x4a,0x52,0x6f,0x72,0x1b,0x8d,0xd5,0x44,0x17,0x53,0x1b,0x54,0xc,
0xd0,0x42,0xad,0x8a,0xf9,0x50,0xae,0xf9,0x74,0x60,0xc4,0x7e,0xe,0x84,0x83,0xa,
0x8c,0xbc,0xcc,0x9d,0xc,0xa9,0xa9,0x29,0x27,0xb4,0x69,0xd3,0xfa,0x3f,0xa8,0x7a,
0x2f,0x5d,0xcd,0xfa,0x31,0x48,0x0,0xc6,0xa2,0x82,0x69,0x47,0x8,0x1,0x9b,0x36,
0x6d,0xfd,0x2a,0x14,0x2a,0x7b,0x12,0xb8,0xce,0xe7,0xf3,0xee,0x6f,0x43,0x53,0x8f,
0x9e,0xf7,0xf9,0x7a,0xfe,0x66,0xa1,0x2a,0x53,0xec,0x68,0xaa,0xf,0xc7,0x6a,0xc2,
0xd7,0xed,0xee,0xee,0x3d,0xa8,0x34,0xf6,0x45,0xf5,0x20,0xed,0xaf,0xfd,0x43,0x2,
0xb3,0x50,0xf9,0x6a,0x8b,0x53,0x52,0x92,0x3d,0xe7,0x9d,0x37,0x36,0xe3,0xd4,0x53,
0x4f,0xb8,0x1c,0xd5,0x7,0xac,0x4f,0x4d,0xfa,0x3e,0xaa,0x64,0xc2,0x19,0x5a,0x2d,
0x34,0x68,0x79,0xc8,0x4,0x2e,0xd0,0x73,0xa0,0xa6,0x39,0x32,0x4e,0x93,0xd0,0x30,
0x0,0x29,0x59,0x82,0x8a,0x6b,0xbb,0x13,0x58,0xb9,0x9f,0x5,0xca,0x2c,0x60,0xa8,
0x26,0xb6,0xa7,0xb5,0x59,0xa1,0x3f,0x2a,0x4b,0xff,0x9,0x54,0x88,0x8b,0x21,0xa2,
0x43,0xac,0x62,0x3c,0xa5,0x55,0xb1,0x93,0xf4,0xdf,0x6d,0x50,0xf6,0xa3,0xe8,0x1,
0x1e,0xf7,0x4b,0xe0,0x4f,0xbb,0x76,0xe5,0xac,0xfe,0xf2,0xcb,0x85,0x6e,0xf3,0xc6,
0x71,0xa8,0x66,0x84,0xc7,0x54,0x73,0xd,0xf,0x1,0x2f,0xa0,0xa2,0x61,0x3b,0x61,
0xc,0xc0,0x2d,0xd,0x59,0x7a,0xe,0xbc,0x8e,0xca,0x92,0xaf,0x6e,0x9e,0x8e,0x2,
0x9e,0xd4,0x64,0x1,0x2a,0xed,0xe2,0x56,0x54,0x2e,0x64,0xe9,0x1,0xa8,0xcb,0x2,
0xe5,0xf6,0x4f,0xd5,0xe6,0x9,0x50,0xf9,0x64,0x79,0x28,0x3b,0x60,0x93,0x6c,0x32,
0xda,0xd0,0x44,0xd4,0x10,0x91,0xbc,0x22,0xee,0xb8,0xf3,0xf4,0x0,0x24,0x69,0x42,
0xfa,0x3d,0x2a,0x56,0xe6,0x88,0x83,0x38,0xfe,0x67,0x8e,0xe3,0xfc,0xe1,0x87,0x1f,
0x36,0xee,0xfc,0xee,0xbb,0x75,0xee,0x7b,0x43,0x80,0x9e,0xd5,0x7c,0xf6,0x4c,0x94,
0x1d,0xa9,0x3d,0x95,0x45,0xfe,0xd,0x5a,0xe,0x5a,0x51,0xe9,0xa9,0xad,0x1a,0x4c,
0x3b,0x0,0xd5,0xd0,0xf2,0x9d,0xb8,0xb9,0xb3,0xd,0x15,0xb8,0xf8,0xd9,0x41,0x9e,
0x37,0x4a,0x65,0xd,0xa1,0x56,0x7a,0xde,0x77,0x68,0xca,0xf,0xb2,0x21,0x89,0xe8,
0x55,0x3d,0x18,0x89,0xbb,0x58,0xcb,0xa,0x69,0x11,0xf4,0x76,0x4d,0xe,0x6e,0x56,
0x7e,0x85,0xfe,0x59,0x82,0x32,0xe0,0x1d,0xac,0xb1,0x6e,0x86,0xe3,0x38,0x59,0xb1,
0x98,0x73,0xb3,0xfe,0xdb,0xae,0x41,0xda,0x19,0x81,0x72,0x9f,0xe,0x41,0x45,0x6e,
0x1b,0xb4,0x2c,0x7c,0x8f,0x2a,0x77,0x3a,0x1d,0x15,0xa3,0x15,0xf,0xb7,0x24,0x6a,
0x66,0x1c,0x9,0x8d,0x47,0x85,0x4f,0x1c,0xc,0x3c,0x5a,0xfa,0xce,0x45,0xd9,0x84,
0xda,0xa3,0x5c,0xfe,0x3f,0x35,0x44,0x14,0x87,0x60,0x30,0xe0,0x1,0x9e,0xf8,0xcd,
0x6f,0x7e,0x76,0x71,0xfb,0xf6,0x99,0x56,0x22,0xa5,0x4,0xc7,0x71,0xf0,0xfb,0x7d,
0x21,0x9f,0xcf,0x3b,0xcc,0xb2,0xac,0xe7,0x35,0x1,0xec,0x1,0xce,0x8b,0xdb,0x11,
0x24,0x7,0x9f,0xa0,0xe7,0x16,0x8e,0x7a,0x4a,0xeb,0xf2,0x61,0xaa,0xf,0xfe,0x2c,
0x45,0x85,0x1,0x94,0x62,0xa,0xae,0xb5,0x44,0x44,0x80,0xff,0x69,0x29,0x7c,0x67,
0x2d,0xeb,0xeb,0x7,0x54,0x2e,0xd9,0xe4,0x4,0x9c,0xb3,0x7,0xaa,0x54,0xcf,0x33,
0xfa,0xb8,0xee,0x26,0x69,0x57,0xd1,0x1a,0x9a,0x94,0xe0,0x92,0xf0,0x3,0x97,0x95,
0x95,0x5f,0x3f,0x7c,0xf8,0xe0,0x9f,0x3e,0xfc,0xf0,0x3d,0xc9,0x9d,0x3a,0x65,0x25,
0xfa,0xf0,0xce,0xa5,0x97,0x9e,0x1b,0xb9,0xe4,0x92,0x73,0x2b,0x3a,0x74,0x68,0x37,
0x58,0xdb,0x84,0xfe,0x85,0xf2,0x6c,0x75,0xd3,0x9f,0x79,0x1e,0x55,0x33,0x25,0x98,
0xa0,0x73,0xae,0x46,0x45,0x6b,0x9b,0x7e,0x69,0x6,0xd5,0xce,0x49,0x6a,0xae,0x6d,
0x65,0xa3,0x52,0x92,0xee,0x6,0xa6,0x26,0x6a,0x89,0xe9,0x8d,0xcf,0x9d,0xdf,0xa3,
0xf4,0xcb,0x2d,0x81,0x33,0x16,0x65,0x3c,0x4f,0x74,0x37,0x1e,0xf,0xca,0x48,0x7e,
0x4e,0x53,0x61,0xb8,0xd4,0x4e,0x9d,0x3a,0x78,0x2,0x1,0x1f,0xba,0xb2,0xdc,0x41,
0x3d,0x8c,0x2a,0x9,0x7f,0x9d,0xf6,0xec,0x29,0x18,0x9c,0x9e,0x9e,0x9a,0x16,0x8,
0xf8,0xa0,0x32,0xb7,0xa6,0x84,0xca,0xc0,0xc6,0x1c,0x94,0x11,0xd1,0x4a,0xe0,0x0,
0x18,0x12,0x32,0x38,0xa0,0xe9,0xab,0x9,0xa2,0x28,0x41,0xc7,0xf3,0x6a,0x15,0x70,
0x17,0xaa,0xc2,0x61,0x0,0x65,0x1b,0xfd,0x42,0xaf,0x81,0xb1,0x5d,0xbb,0x76,0x7e,
0xaa,0x6f,0xdf,0x9e,0xad,0x93,0x92,0x82,0xd1,0x44,0xde,0x48,0xab,0x56,0xe9,0x4e,
0x8f,0x1e,0x5d,0x3,0xa3,0x47,0x9f,0xf4,0x48,0x35,0x6a,0x68,0xa3,0x24,0x22,0xc7,
0xed,0x99,0x14,0xc,0xfa,0x11,0x42,0x78,0x0,0x8f,0x6d,0xdb,0xfb,0x25,0x2e,0x6,
0x83,0x8a,0xf0,0xa5,0x94,0x78,0xbd,0x7b,0x4d,0x3e,0x7d,0x8e,0x39,0xa6,0xff,0x71,
0xbd,0x7b,0x77,0xf7,0x8,0x61,0xb9,0x3,0x5d,0x81,0x8a,0x1f,0xba,0x1e,0xe5,0x42,
0x8f,0x6a,0x55,0xca,0x32,0xeb,0xc0,0xa0,0x91,0x90,0x51,0xa2,0x54,0x25,0x3f,0xaa,
0xda,0x68,0xe,0x95,0x25,0x5b,0xf3,0x51,0x76,0xa7,0x93,0x3a,0x77,0xee,0xf4,0xee,
0x4d,0x37,0x5d,0x9f,0x75,0xde,0x79,0xe3,0x50,0xad,0x0,0x13,0xa7,0xa2,0xb5,0x6b,
0x97,0x49,0xbf,0x7e,0xbd,0x38,0xf1,0xc4,0x61,0x59,0xa8,0x1a,0x48,0x56,0x63,0x27,
0x22,0x66,0xce,0x9c,0xcb,0xf8,0xf1,0x7f,0xe4,0xc3,0xf,0xdf,0x60,0xf4,0xe8,0x91,
0xfd,0x3,0x81,0xc0,0x3f,0x51,0xc5,0xcb,0xfc,0xd4,0xb3,0x2b,0x40,0x59,0x59,0x19,
0xdd,0xba,0x75,0x3,0x10,0x91,0x48,0xa4,0x9b,0x10,0xe2,0xb2,0xbe,0x7d,0x7b,0xfe,
0x39,0x3b,0x7b,0x67,0xff,0xf7,0xdf,0xff,0x24,0xba,0x7e,0xfd,0x66,0x77,0x60,0xbe,
0xd1,0xba,0x77,0x4f,0x4d,0x48,0x1b,0xf4,0x8e,0x71,0x26,0x4d,0xd4,0x95,0x69,0x60,
0x50,0xb,0x8a,0xe2,0x24,0xf4,0x34,0x94,0x9d,0xd4,0xb,0xb4,0xd,0x6,0x83,0x69,
0xdd,0xba,0x1d,0x81,0xc7,0xe3,0xa1,0xbc,0x3c,0x1c,0xa6,0x32,0x75,0xe9,0xa0,0x11,
0xa,0x95,0x3b,0x5e,0xaf,0x97,0x41,0x83,0x6,0xa4,0x6,0x2,0x81,0x4b,0x50,0xcd,
0x4e,0x13,0xaa,0xf7,0x35,0xc4,0xe,0x50,0xf1,0xe6,0x9b,0xef,0xc7,0xf2,0xf3,0x8b,
0xad,0x61,0xc3,0x6,0xd9,0x7e,0xbf,0xef,0x8a,0x69,0xd3,0x3e,0x3f,0xd,0x98,0x86,
0xca,0x11,0xbb,0x93,0x7d,0x63,0x7d,0x42,0x5a,0x8a,0x9,0x2,0x7e,0x21,0x4,0xb6,
0x6d,0xcb,0xcd,0x9b,0x37,0xa7,0x67,0x64,0xa4,0x9f,0x5a,0x54,0x54,0xfc,0x8b,0x93,
0x4e,0x1a,0x76,0x4a,0x87,0xe,0xed,0xf8,0xf8,0xe3,0x99,0x54,0x54,0x84,0x67,0x80,
0x8c,0x8f,0x78,0x8e,0x6a,0x5d,0xdd,0x25,0x39,0xb7,0x43,0x81,0x89,0xeb,0x31,0x68,
0x4e,0x92,0x55,0x7f,0x60,0xc,0xca,0x81,0x2,0xd0,0x1d,0x65,0xbc,0x9e,0x1,0x9c,
0x9b,0x9d,0xbd,0x83,0x65,0xcb,0x96,0xd0,0xaf,0x5f,0xf,0x8e,0x3c,0xb2,0xf7,0xc5,
0x6b,0xd6,0xac,0xfb,0x9a,0xc4,0x34,0x8b,0xc8,0x6a,0xdd,0x3a,0xe3,0x81,0xab,0xae,
0xba,0x84,0x89,0x13,0x3f,0xa4,0xbc,0xbc,0x1c,0xcb,0xc2,0xe3,0x38,0x8d,0x9b,0x88,
0x5a,0x1,0xff,0x15,0x42,0xb4,0x9b,0x3a,0x75,0x66,0x9f,0xa9,0x53,0x67,0xe,0x6c,
0xd7,0x2e,0xd3,0x13,0x8b,0x39,0x6d,0x51,0x2d,0xa1,0x41,0x79,0x19,0x5c,0x69,0x2c,
0x6,0x3c,0x8a,0x32,0xe6,0xfd,0x11,0xb8,0xc8,0xb2,0xac,0xf2,0xf4,0xf4,0x34,0x27,
0x14,0xa,0x79,0x6,0xe,0xec,0xd7,0xbe,0x67,0xcf,0x6e,0x4c,0x9c,0xf8,0x91,0x93,
0x94,0x14,0xa8,0xc8,0xcb,0xcb,0x5f,0xae,0x7,0xe2,0x17,0x71,0xf6,0xa7,0xed,0xc0,
0x8d,0xa8,0xee,0x91,0x7f,0xd1,0xa4,0x64,0x48,0xc8,0xa0,0x39,0xc1,0x2,0x7a,0xa3,
0xc2,0x2,0x3e,0xd0,0xef,0x85,0x51,0x35,0xb6,0x4a,0x1,0xab,0xa4,0x24,0xc4,0x4b,
0x2f,0xbd,0xe5,0x9c,0x77,0xde,0x19,0xa2,0x53,0xa7,0x8e,0x6d,0xd7,0xad,0xdb,0xf0,
0x8a,0x10,0xa2,0x75,0x24,0x12,0x7d,0x43,0x6f,0xf6,0xe5,0xd4,0xdf,0x66,0xeb,0xf5,
0xfb,0x7d,0xbe,0x60,0x30,0xd0,0x33,0x14,0x2a,0x7f,0xb2,0x53,0xa7,0x8e,0xa7,0x86,
0xc3,0x11,0x67,0xe2,0xc4,0xf,0x23,0x42,0x88,0x90,0xe3,0xc8,0x84,0xc6,0xcc,0x35,
0x4,0x11,0x49,0xa0,0x9d,0x94,0xf2,0x46,0x94,0x6b,0xfb,0x9f,0xbb,0x77,0xe7,0xb6,
0x41,0xd5,0xfc,0xc9,0xd0,0xff,0xaf,0xea,0x4e,0x7b,0x4c,0xbf,0x0,0x48,0x4a,0xa,
0x72,0xdc,0x71,0x47,0x53,0x5a,0x5a,0x1a,0x9d,0x3b,0x77,0x7e,0xf1,0xdc,0xb9,0xf3,
0x2d,0x60,0x5d,0x59,0x59,0xd9,0x6b,0x1e,0x8f,0xe7,0x8d,0x68,0x34,0x9a,0x8b,0xa,
0x22,0x73,0xc9,0xec,0x41,0xe0,0x2a,0x2d,0xaa,0x7a,0x51,0xed,0x4a,0x86,0xea,0xfb,
0x8b,0x9a,0x39,0xbc,0xcf,0xd8,0x18,0x34,0x5d,0xb8,0xa6,0x86,0x14,0xfd,0x73,0x0,
0x95,0x31,0x73,0x96,0x10,0x82,0xec,0xec,0x5d,0x2b,0x16,0x2c,0x58,0xd2,0xbe,0x75,
0xeb,0x8c,0xe,0xc3,0x87,0x1f,0x6b,0xef,0xd8,0xb1,0xf3,0x89,0x8d,0x1b,0xb7,0xfe,
0x1a,0x55,0xeb,0xe8,0xb,0x6d,0xba,0xa8,0x6b,0x4d,0xa4,0x2,0xa7,0x39,0x8e,0xd3,
0xa3,0x63,0xc7,0xf6,0x77,0x87,0x42,0x65,0x9c,0x7b,0xee,0x18,0xae,0xb8,0xe2,0xfa,
0x3c,0xcb,0x12,0x13,0x1d,0x47,0x6e,0x4d,0xf4,0x46,0xef,0x69,0xc0,0xc9,0x9e,0xa1,
0x89,0xe8,0x26,0xfd,0xf7,0x19,0x5a,0x8c,0x2c,0x43,0x45,0x82,0x56,0x6d,0xea,0xb6,
0xf7,0xbb,0xc5,0xc5,0x25,0x62,0xfa,0xf4,0xd9,0xe,0xb0,0xdc,0xb2,0xac,0x79,0x8e,
0xe3,0xd8,0xa8,0x12,0x7,0x8b,0xa3,0xd1,0x6a,0x9f,0x61,0x9a,0x56,0xcb,0x5c,0xf5,
0xec,0x13,0x54,0xd7,0x83,0x7f,0xd3,0xc8,0x3a,0x75,0x8,0x21,0x90,0x52,0xba,0xbd,
0xcb,0xdd,0xfb,0xae,0xcd,0x5,0x9c,0x48,0xd1,0x9e,0xb8,0xf3,0x35,0x66,0x62,0x8a,
0xe9,0x57,0xb4,0xca,0x7b,0xf1,0x3f,0xf,0x5e,0xc4,0xb0,0x40,0xab,0x17,0x5e,0xbd,
0xc8,0xa3,0x8d,0x78,0xe3,0xa,0xa2,0xda,0x69,0x6d,0xa5,0xb2,0x61,0xe2,0xd9,0xa8,
0x14,0x23,0x0,0x8f,0x94,0x72,0x87,0x6d,0x5b,0xf,0x2e,0x59,0xb2,0xa2,0x2b,0x70,
0xf3,0x39,0xe7,0x8c,0x69,0x3,0x88,0x8d,0x1b,0xb7,0xf6,0x47,0xb5,0xd2,0xda,0x88,
0xaa,0xe3,0x55,0x4a,0xcd,0xf6,0x61,0x89,0xca,0x4c,0x18,0x27,0xa5,0xa4,0x4b,0x97,
0x4e,0x15,0xab,0x57,0xaf,0x8d,0x5d,0x7f,0xfd,0x9f,0xd7,0xda,0xb6,0x35,0x2f,0x16,
0x73,0x1e,0x46,0xd5,0xec,0xf2,0x36,0x76,0x22,0xaa,0x9,0xf1,0x11,0xa5,0xf3,0xab,
0x59,0x1c,0x55,0x89,0x4c,0x2,0xd9,0x8e,0xe3,0x14,0x54,0x59,0x4c,0xb2,0x86,0xef,
0xe4,0xa2,0xf2,0xc1,0xda,0xa1,0xc,0x7a,0x3b,0xa9,0xc,0x6c,0x6c,0x34,0xb,0x4e,
0x4a,0x89,0x65,0x59,0x3e,0xc7,0x71,0x46,0xeb,0x1,0x8f,0x9,0x21,0xd6,0x49,0x29,
0x67,0x37,0xf0,0xa9,0x93,0x50,0x85,0xe4,0x92,0xb5,0xfa,0xec,0xe8,0xc9,0x1d,0xa4,
0xb2,0xe4,0x6e,0x63,0x40,0x48,0x6f,0x26,0x16,0x2a,0xa7,0x2a,0x2a,0x4,0x61,0x29,
0xf7,0xda,0xff,0x82,0x42,0x8,0xaf,0x94,0xf2,0xa0,0x89,0xdb,0x71,0xc0,0xeb,0xb5,
0xd3,0x22,0x91,0xd8,0x19,0x7a,0x61,0xef,0x10,0x42,0xcc,0xb5,0x2c,0x2b,0x2f,0x16,
0x8b,0x35,0x36,0x92,0x4e,0x46,0xc5,0xb,0x5d,0xaf,0x9f,0x51,0x17,0x54,0x65,0xc6,
0xaf,0xe2,0xc7,0x38,0x16,0x73,0xa,0x81,0xbf,0xdb,0xb6,0xbd,0x6e,0xf2,0xe4,0x19,
0x63,0x80,0xc,0x21,0xc4,0x20,0x29,0x65,0x1b,0xbd,0x1e,0xae,0xae,0xe3,0x3c,0x61,
0x54,0x28,0xc0,0xce,0x58,0xcc,0x29,0x9b,0x3e,0x7d,0xf6,0x17,0x40,0x85,0x10,0x62,
0x42,0x2c,0xe6,0xb8,0x4,0x96,0x9c,0xe8,0x9b,0x3b,0x5c,0xf1,0x31,0xab,0x13,0xac,
0x5a,0x14,0x3,0x2f,0x69,0x9,0x68,0x8,0x2a,0x19,0xf0,0x76,0x54,0x32,0xea,0x6f,
0x1b,0xd9,0x2e,0x27,0x1c,0xc7,0xe9,0xe7,0xf1,0x78,0xee,0x4e,0x4b,0x4b,0x1d,0xee,
0x38,0x31,0xa7,0xa0,0xa0,0xe8,0x23,0x54,0x49,0x93,0xd2,0x4,0x9f,0x2b,0x1a,0x27,
0x41,0xb4,0x12,0x42,0xdc,0x24,0xa5,0x3c,0x4e,0x93,0x92,0xad,0xa5,0xd4,0xe,0x71,
0xa2,0xfe,0xe1,0x86,0xa3,0xa5,0xc6,0xa3,0xa4,0x94,0x5e,0x4d,0x98,0x21,0x29,0x71,
0x2c,0xcb,0x1a,0xd0,0xa1,0x43,0x3b,0x76,0xed,0xca,0xb9,0xd6,0x71,0x9c,0x37,0xf5,
0xee,0x7e,0xd0,0x88,0x44,0x62,0xd7,0xa5,0xa5,0xa5,0xdc,0xde,0xa5,0x4b,0xa7,0x8c,
0xcd,0x9b,0xb7,0x95,0x96,0x94,0x94,0xfe,0x3e,0x16,0x8b,0xfd,0x87,0x4,0x7a,0x9c,
0x12,0x4,0xb7,0x1d,0x57,0xbe,0xde,0x5c,0x47,0xa3,0x9a,0x3e,0x88,0x2a,0xeb,0xc3,
0xb,0x10,0x8b,0xc5,0xde,0x7,0x3e,0x4,0xfc,0x52,0xca,0x11,0x7a,0x9c,0xb7,0x69,
0x22,0x3b,0x92,0x1f,0xdb,0x51,0xdd,0xe6,0xa7,0xff,0x45,0xd5,0x38,0xf2,0x4a,0x29,
0x73,0xb4,0xd,0x2a,0x12,0x47,0xfc,0x1d,0x1b,0x62,0x63,0x6f,0x4e,0x81,0x7a,0xab,
0x34,0x21,0xb9,0x6d,0x54,0x16,0xa3,0xa,0x91,0x37,0x36,0xa3,0x75,0x32,0x70,0x45,
0x52,0x52,0x70,0xf8,0x59,0x67,0x8d,0xa6,0xa0,0xa0,0xd0,0xfa,0xf8,0xe3,0x19,0x63,
0x51,0xc6,0xf6,0xbf,0x27,0xf8,0x5c,0x3d,0x80,0xb4,0x60,0x30,0x40,0xff,0xfe,0x7d,
0xad,0x45,0x8b,0x96,0x65,0x65,0x64,0xa4,0x5d,0xd4,0xb9,0x73,0x16,0x2b,0x57,0x7e,
0x27,0xf5,0xb5,0x74,0xa0,0x71,0x85,0x39,0x38,0x52,0x4a,0xd1,0xa3,0x47,0xd7,0x4e,
0xa5,0xa5,0xa5,0x5d,0x77,0xed,0xca,0x65,0xcc,0x98,0x53,0x28,0x29,0x29,0xe1,0x94,
0x53,0x46,0xc8,0xa7,0x9f,0x7e,0xa9,0x47,0x69,0x69,0xe8,0x7c,0x54,0xfa,0x4d,0x22,
0xd4,0xb4,0x63,0x7,0xd,0x1a,0xd0,0xea,0xa9,0xa7,0x26,0xf0,0x9b,0xdf,0xfc,0x31,
0x65,0xc1,0x82,0x25,0x3,0x51,0x61,0x21,0x8d,0x89,0x88,0x2c,0x54,0x7d,0xea,0x6c,
0x54,0x4a,0x93,0x1f,0x65,0xb8,0xce,0xa7,0xb2,0x52,0x69,0x4d,0xc4,0x5e,0x86,0x2a,
0x71,0x13,0xaf,0x8d,0x4,0x6b,0x50,0xd7,0x3d,0x5a,0xb3,0x38,0xe4,0x68,0x4e,0x44,
0x14,0xd1,0x83,0x72,0xa,0x30,0x93,0xca,0x6e,0x1f,0x1,0x1a,0x57,0x7b,0xe9,0x28,
0xf0,0x83,0xe3,0xc4,0x8a,0xb7,0x6e,0xdd,0x9e,0x5a,0x5a,0x5a,0x6,0xca,0xeb,0xb7,
0xaa,0x1,0x48,0xe8,0x91,0xb4,0xb4,0xd4,0x3e,0xb7,0xdc,0x72,0x1d,0x23,0x46,0x1c,
0xc7,0xe9,0xa7,0x5f,0x41,0xbb,0x76,0x99,0x8c,0x1e,0x7d,0x12,0xab,0x56,0xad,0x8d,
0x49,0x29,0xff,0x5,0x4c,0x68,0x84,0x63,0x79,0xdd,0x90,0x21,0x47,0x4f,0xd8,0xbc,
0x79,0x5b,0xeb,0x5d,0xbb,0x72,0xb9,0xe1,0x86,0x6b,0xf9,0xec,0xb3,0x2f,0x38,0xea,
0xa8,0x3e,0xa2,0x7f,0xff,0x7e,0x2c,0x58,0xb0,0xe4,0x31,0xdb,0xb6,0x5f,0x8c,0xc5,
0x62,0xc5,0x9,0x38,0x57,0xd1,0x9e,0x3d,0x5,0xcc,0x98,0x31,0x8f,0xfc,0xfc,0x42,
0x57,0xba,0x6e,0x6c,0xfd,0xdf,0x3c,0x7a,0x53,0x7d,0x57,0xcf,0xed,0xb6,0x28,0xdb,
0xe7,0xa3,0xec,0x7f,0xe3,0xd2,0x72,0x5a,0x48,0x87,0xe3,0x7,0x81,0x37,0x69,0xf8,
0xca,0x86,0xff,0x66,0xdf,0x8c,0xe3,0xc,0xe0,0x2d,0xbd,0xd0,0xdd,0x42,0x66,0x37,
0x68,0x49,0xe3,0x60,0x70,0x1e,0xaa,0x72,0x63,0xc2,0xb2,0x9b,0x3d,0x1e,0x4f,0xb2,
0x9e,0x44,0x4b,0x80,0x6f,0x84,0x10,0xb7,0xd5,0x62,0x33,0x3b,0x10,0xb4,0xb7,0x2c,
0xeb,0xad,0x8e,0x1d,0xdb,0xc9,0xa7,0x9e,0xba,0xdf,0x91,0xb2,0x44,0x5e,0x73,0xcd,
0x25,0x6e,0xee,0x91,0xfb,0x8a,0xc4,0x91,0x50,0xb0,0x91,0xbc,0xfc,0xda,0x5e,0xf5,
0x64,0x6a,0x6a,0x4a,0x49,0x52,0x52,0x70,0xef,0xf5,0xf6,0xe9,0xd3,0x5d,0x86,0x42,
0x5b,0xe4,0xa4,0x49,0xaf,0xca,0x61,0xc3,0x6,0x47,0x80,0xd3,0x2c,0xcb,0xea,0x72,
0xd0,0xa2,0x86,0x65,0x9d,0x8e,0xa,0x1d,0x59,0x8,0x4c,0x13,0x42,0x9c,0x66,0xdb,
0x56,0x22,0x36,0xe8,0x61,0x54,0xe6,0x29,0x1e,0x6c,0xab,0x2a,0x9f,0x56,0xab,0xde,
0xd4,0x7f,0x9f,0xa0,0x6d,0x43,0x63,0xe2,0x3e,0x73,0xad,0x96,0x96,0xce,0x69,0xe0,
0x75,0xd7,0x51,0x9b,0x3c,0x12,0xda,0x98,0xb4,0x21,0x24,0x22,0xb7,0xb8,0xfd,0xa1,
0x66,0xdd,0x2,0xad,0x8e,0x8d,0xa2,0xb2,0x5a,0xe2,0xbb,0x5a,0x14,0x7d,0x96,0x46,
0x64,0xb0,0x8e,0x46,0xa3,0x11,0x6d,0xd3,0x7a,0x1b,0x40,0x4a,0x99,0x5f,0x87,0xd,
0xac,0xfe,0x6,0x28,0x21,0xfc,0x52,0xca,0x6b,0x7c,0x3e,0xef,0xe5,0x7f,0xfd,0xeb,
0x6d,0x5c,0x73,0xcd,0x85,0x7c,0xf2,0xc9,0x47,0x4c,0x9c,0xf8,0xd1,0x8f,0xc6,0x49,
0x8,0x71,0x8c,0x94,0xf2,0x1a,0x94,0x51,0xb8,0x31,0x20,0x86,0x2a,0x9b,0x71,0x56,
0xbb,0x76,0x99,0x49,0xb9,0xb9,0x79,0xb2,0x6b,0xd7,0xce,0x62,0xf3,0xe6,0x6d,0x80,
0x60,0xfe,0xfc,0x5,0x74,0xe8,0xd0,0x96,0x7f,0xfc,0xe3,0x1e,0xfb,0x97,0xbf,0xfc,
0xdd,0x83,0xeb,0xd6,0x6d,0x5c,0x8e,0xea,0xb,0x76,0xa0,0xb6,0x35,0xe1,0x38,0xce,
0x34,0x94,0x4b,0xbb,0x2d,0x90,0x2d,0xa5,0xdc,0xd8,0xf8,0xec,0xd4,0x8c,0xd2,0x92,
0xbd,0x3b,0x88,0x7d,0xb5,0x9d,0x6f,0xd9,0x61,0xb2,0xe3,0x25,0x5c,0x6d,0x6d,0x8,
0x22,0xaa,0x40,0x85,0x7f,0x77,0x43,0x15,0xf2,0x3e,0x94,0xa3,0xea,0x56,0xac,0x3b,
0x13,0xd5,0xdf,0xc9,0xa7,0xa5,0xa4,0xc6,0x36,0xb3,0xc2,0x1c,0xb8,0xc1,0xbe,0x56,
0x48,0x29,0x7b,0xd8,0xb6,0x75,0xd3,0xb8,0x71,0xa3,0x19,0x31,0xe2,0x4,0x39,0x7e,
0xfc,0xed,0xe2,0xfb,0xef,0x37,0x50,0x56,0x56,0xc1,0xb1,0xc7,0xe,0xe4,0x88,0x23,
0xb2,0xc8,0xc8,0xc8,0x60,0xfb,0xf6,0x6c,0x6b,0xc6,0x8c,0x39,0xa3,0x51,0x5,0xdd,
0x1b,0x8b,0x8d,0x48,0x2,0xbe,0xa4,0xa4,0xa0,0xbf,0x7f,0xff,0xbe,0x44,0x22,0x11,
0x79,0xc1,0x5,0x67,0xf2,0xe9,0xa7,0x9f,0xb3,0x78,0xf1,0x72,0xfe,0xf4,0xa7,0xfb,
0xc9,0xcc,0xcc,0xe4,0xd9,0x67,0x27,0x88,0x2b,0xae,0x38,0x7f,0xc8,0xbd,0xf7,0x3e,
0x3e,0x50,0x4b,0x75,0xeb,0xf,0xe2,0x7c,0x2,0x58,0xa7,0x5f,0x8d,0x11,0x2,0xd5,
0xb1,0xc3,0x46,0xf5,0xdc,0xb3,0xb5,0x94,0x35,0x5d,0xaf,0xaf,0x43,0xd,0x1f,0xca,
0x33,0xdd,0xe8,0x89,0xc8,0xdd,0xd5,0xd2,0x38,0xf4,0xae,0xf3,0xf7,0x81,0x9b,0x51,
0x5e,0x1,0x2f,0xca,0xb8,0xf7,0x81,0x16,0x23,0xbf,0xa1,0x65,0xa0,0x83,0xd7,0xeb,
0xed,0xfc,0x7f,0xff,0xf7,0x1b,0xa6,0x4d,0x9b,0x2e,0x5e,0x7e,0xf9,0x2d,0xa5,0xb7,
0x66,0xa4,0xf1,0xcb,0x5f,0xfe,0x8c,0x73,0xcf,0x3d,0x8f,0xc9,0x93,0xff,0xc7,0xac,
0x59,0x25,0x68,0x55,0xc8,0xdf,0xd8,0x6e,0xc0,0xb6,0x6d,0xa4,0x74,0xb8,0xf1,0xc6,
0x6b,0xc5,0x19,0x67,0x8c,0xe2,0x8c,0x33,0x46,0xf1,0xd0,0x43,0x4f,0xf3,0xec,0xb3,
0xaf,0x1,0xb0,0x75,0xeb,0x8d,0x8c,0x1a,0x75,0xa2,0xbc,0xf7,0xde,0xc7,0xa3,0x9,
0x98,0xc3,0x8d,0x3d,0xc8,0xd3,0xf5,0x66,0xa5,0xc4,0x99,0x20,0xce,0x47,0xb9,0xd8,
0xf,0x35,0x52,0x51,0x25,0x46,0x46,0xeb,0xb5,0xd6,0xa8,0x89,0x28,0xa8,0xf5,0xd7,
0x35,0x1c,0x9e,0x62,0x61,0xe5,0x5a,0xe2,0x70,0xf4,0x20,0x76,0x45,0x45,0xa0,0xb6,
0x14,0x22,0xaa,0x70,0x1c,0x87,0x99,0x33,0xe7,0xe2,0xf1,0x58,0x4,0x83,0x1,0x82,
0xc1,0x0,0x23,0x47,0x8e,0xe0,0xf4,0xd3,0xcf,0x62,0xc6,0x8c,0xd9,0xdc,0x79,0xe7,
0xc3,0xe4,0xe7,0x17,0xe6,0xe9,0x67,0xf2,0x79,0x23,0x23,0xa3,0x68,0x71,0x71,0xc9,
0x71,0x93,0x27,0xcf,0x18,0x57,0x5a,0x5a,0x96,0x3c,0x79,0xf2,0x74,0x1e,0x7e,0xf8,
0x4e,0x8e,0x38,0xa2,0x13,0x69,0x69,0xc9,0x94,0x94,0x94,0x91,0x92,0x92,0xcc,0xc6,
0x8d,0x5b,0x5c,0x33,0x40,0x73,0xaf,0xb2,0x70,0x12,0x2a,0xfe,0xeb,0x3e,0xfd,0x77,
0x6b,0x54,0x33,0xc5,0x9b,0xf,0xc3,0xb5,0xa4,0xa3,0xea,0x1d,0x65,0x91,0x60,0x83,
0x7e,0x43,0x45,0x56,0xdb,0x87,0x51,0xdc,0x8f,0xa0,0x3c,0x46,0xad,0xb5,0x8,0x9b,
0xd0,0x2a,0x91,0x4d,0x0,0xdf,0x87,0xc3,0x91,0x37,0x5e,0x7c,0xf1,0xf5,0x9f,0x3d,
0xf3,0xcc,0x4,0xde,0x7e,0xfb,0x15,0x6c,0x5b,0xd0,0xa1,0x43,0x7b,0x96,0x2e,0xfd,
0x96,0x3b,0xef,0xbc,0x8b,0xfc,0xfc,0xc2,0x29,0xc0,0x3f,0xb5,0x3a,0xb2,0xbe,0x11,
0xde,0x43,0x7b,0xcb,0xb2,0xbe,0xfc,0xec,0xb3,0x2f,0x87,0x7d,0xf6,0xd9,0x97,0xe3,
0x76,0xee,0xdc,0xdd,0x6a,0xfc,0xf8,0x6b,0x79,0xed,0xb5,0xe7,0x11,0xc2,0x62,0xcb,
0x96,0x6c,0x1e,0x7d,0xf4,0x5f,0x2,0x15,0x65,0x9c,0xdb,0xcc,0xc7,0x73,0x8,0x70,
0x14,0xaa,0x0,0xbf,0xab,0xaa,0xad,0x45,0x19,0xd7,0xf,0xb5,0xc6,0x21,0xa9,0xac,
0x97,0xdd,0xe8,0x55,0xb3,0xc3,0x8d,0x49,0xc0,0xe3,0xc0,0x71,0xa8,0x9a,0xbe,0x6b,
0xb4,0xaa,0xd6,0x1e,0xe5,0xce,0x6f,0xee,0xc8,0x15,0x42,0x3c,0xbe,0x67,0x4f,0xc1,
0xb0,0x57,0x5f,0x7d,0xa7,0xcf,0xb0,0x61,0xc3,0x70,0x9c,0x28,0x7b,0xf6,0x14,0x30,
0x6d,0xda,0x4c,0xb2,0xb3,0x73,0x26,0x9,0x21,0xee,0x90,0x52,0x7e,0x1f,0x37,0xb1,
0x1b,0x1b,0x51,0xef,0x72,0x1c,0xe7,0x59,0xe0,0x5d,0x21,0xc4,0x17,0x1f,0x7e,0x38,
0xed,0x6e,0xcb,0xb2,0xba,0xc,0x1d,0x3a,0x4,0x9f,0xcf,0xcb,0x5b,0x6f,0x4d,0x62,
0xf1,0xe2,0x65,0x5b,0x84,0x10,0xaf,0xea,0xa0,0xbb,0xe6,0x8c,0xdd,0x71,0x2a,0x59,
0x29,0x2a,0x9e,0xc8,0x77,0x98,0xd4,0xca,0x7c,0x6d,0xea,0xf0,0x24,0x9a,0x8c,0x9a,
0x23,0x11,0x4d,0xd5,0xbb,0x47,0x58,0xff,0xbd,0x56,0x3f,0xb4,0x23,0x5a,0x8,0x11,
0x21,0x84,0x58,0x55,0x51,0x11,0xbe,0xf5,0xa3,0x8f,0xa6,0xff,0x7c,0xe6,0xcc,0x39,
0x5e,0x40,0xc6,0x62,0xe,0x15,0x15,0xe1,0xad,0xc0,0xf3,0x9a,0x84,0x5c,0x2,0x6a,
0xcc,0xf9,0x66,0x3b,0x81,0x97,0x81,0xa2,0xf7,0xdf,0xff,0xe4,0xb2,0xe9,0xd3,0x67,
0x5b,0x42,0x8,0x59,0x52,0x12,0xf2,0x2,0x4f,0x4a,0x29,0x57,0x36,0xf3,0xa1,0x4c,
0xd2,0x6a,0xd8,0x62,0x54,0xda,0x92,0x4f,0xff,0xfd,0xbf,0xc3,0x74,0x3d,0x21,0x54,
0x70,0x64,0x27,0x43,0x44,0xf5,0xb0,0x31,0xe8,0x87,0x74,0xd,0x2a,0xc1,0xaf,0x1c,
0xe5,0xfa,0x6c,0x11,0x41,0x5c,0x0,0x8e,0xe3,0x54,0xd8,0xb6,0x3d,0x25,0x16,0x8b,
0x7d,0x1b,0xa,0x95,0xdb,0x71,0x64,0x13,0x42,0x55,0xf7,0x3b,0x1c,0xbb,0xe9,0x81,
0xe9,0x2,0x52,0x3a,0xb6,0x6d,0x4d,0x8a,0xc5,0x9c,0xf9,0x3a,0xf8,0xd3,0xb5,0xd,
0x6d,0x6c,0x1,0x43,0xd9,0x11,0x15,0xc7,0xf6,0xf,0x2d,0x8d,0xf8,0xb4,0xe9,0x61,
0xf9,0x61,0xbc,0xa6,0x88,0x7e,0x25,0x34,0x63,0xa1,0x39,0x1a,0xfa,0xf2,0x51,0xc1,
0x82,0xe7,0xa3,0x52,0x18,0x1c,0x60,0xae,0x56,0xd5,0x5a,0xc,0x62,0xb1,0x58,0x4c,
0xdb,0x50,0x36,0xa1,0x92,0x23,0x37,0xbb,0x24,0x64,0xdb,0x76,0x13,0xbb,0x17,0x27,
0x16,0x77,0xf,0x9b,0x5b,0x8,0x9,0x81,0xa,0x85,0x69,0x83,0xea,0xdd,0x7,0x2a,
0xd4,0x62,0x34,0x87,0x37,0xfd,0x44,0x34,0x4,0x6f,0x34,0x47,0x22,0x92,0xa8,0x7a,
0x44,0x3e,0x2a,0xd,0x99,0x4b,0x51,0xde,0x87,0xeb,0xe2,0x1e,0x66,0x93,0xd5,0xbc,
0xe2,0x26,0xe5,0xd0,0x3,0x24,0xa9,0xe6,0xba,0x70,0xcf,0x1,0x7a,0x35,0x93,0x7b,
0xb9,0x1a,0xb8,0x54,0x93,0xee,0xa,0xfd,0x5e,0x40,0xff,0xdc,0xda,0xdc,0x6,0xae,
0x39,0x77,0xa7,0x28,0x47,0x95,0xc9,0xc,0xa1,0xdc,0x8e,0xa3,0xb4,0x98,0x3b,0x4,
0xf8,0x75,0x13,0x27,0xda,0xe3,0x51,0x7d,0xad,0xda,0xe9,0x9,0x3b,0x8b,0x96,0xdd,
0x57,0xcd,0x87,0x6a,0x5e,0xf8,0x3b,0x54,0xeb,0x9e,0x1f,0x9a,0xf8,0xfd,0x58,0xc0,
0x3,0xa8,0x50,0x98,0x5c,0x54,0x25,0x9,0x89,0xa,0x12,0x7e,0x86,0x66,0xe8,0x5,
0x6e,0x8e,0x44,0xd4,0x17,0xf8,0xab,0xde,0x3d,0x2e,0xa5,0x32,0x7a,0xd6,0x2d,0xe4,
0x74,0x51,0x13,0x27,0x22,0x50,0x75,0x97,0x8e,0xd2,0xf7,0x94,0x8c,0x81,0x7,0x95,
0x7f,0xd5,0x15,0x65,0xe0,0x6d,0xea,0x58,0x88,0x32,0x8,0xd3,0xbd,0x7b,0x97,0xb4,
0xd2,0xd2,0xb2,0xae,0xbb,0x77,0xe7,0xba,0x31,0x53,0x3d,0x51,0x8d,0x28,0x6e,0x6c,
0x4e,0x3,0xd8,0x1c,0x55,0xb3,0x9,0x7a,0x91,0xba,0xe4,0xe3,0x63,0xdf,0x6a,0x72,
0xcd,0xa1,0xb3,0xc7,0x32,0x54,0xe9,0xcf,0x5f,0x18,0x69,0x8,0x50,0xc6,0xd3,0x29,
0xa8,0x44,0xe8,0x6f,0x9b,0xc1,0xfd,0x1c,0xeb,0xfe,0xd2,0xad,0xdb,0x11,0x9e,0x76,
0xed,0x32,0xfd,0x80,0xd7,0xeb,0xf5,0xda,0xa7,0x9e,0x3a,0xa2,0x73,0x87,0xe,0xed,
0x3a,0x1a,0x89,0xa8,0xf1,0xe3,0x45,0x54,0xac,0x45,0x26,0xd5,0xdb,0x82,0x6e,0x6f,
0x6,0xf7,0xb8,0x8,0x65,0x7,0xab,0xa0,0x71,0x95,0x38,0x39,0x9c,0x44,0x34,0x11,
0xe5,0xd6,0x6e,0xe,0xde,0xd1,0x13,0x51,0x11,0xef,0xbe,0xaf,0xbe,0x5a,0x48,0x2c,
0xa6,0xf6,0x19,0x29,0x25,0xf9,0xf9,0x5,0x32,0x12,0x89,0x14,0x1a,0x22,0x6a,0xfc,
0xf8,0x4,0x55,0x5e,0xe3,0x74,0x54,0x6d,0x99,0xe7,0xa9,0xc,0x0,0x2b,0xd6,0x22,
0xed,0xb3,0x4d,0xfc,0x1e,0xa3,0x1c,0x9e,0x5c,0x23,0x17,0x3d,0x50,0x5e,0x49,0xd7,
0x7b,0x13,0x5f,0x7b,0xdc,0x87,0x2a,0x5a,0x76,0xa8,0xab,0x62,0x56,0xd0,0xf8,0xaa,
0x2a,0x1e,0x28,0x6,0x69,0x29,0x7e,0xb1,0x6a,0x9d,0x45,0xa,0x10,0x8b,0x46,0xa3,
0xfd,0x57,0xad,0x5a,0x1b,0xb,0x6,0x83,0x37,0x37,0xb7,0x45,0xdb,0x5c,0x8d,0xd5,
0x67,0x68,0x95,0xa5,0x37,0xca,0x5e,0xe4,0x4a,0xd,0x3e,0xe,0x4f,0x8e,0x4e,0x63,
0x86,0x40,0xd5,0xb2,0xf9,0xa9,0x56,0xd5,0x6b,0x6b,0xc5,0x24,0xf5,0xff,0xbb,0xa0,
0x6a,0x3e,0x89,0x1a,0xa4,0x93,0x8b,0x51,0x4e,0x82,0xda,0xa,0xb4,0xbb,0xe7,0x7a,
0x53,0xab,0x99,0xa6,0xc3,0x48,0x25,0xee,0x5,0xbe,0x46,0xd5,0x1b,0x8a,0xc6,0x99,
0x51,0x4e,0x89,0x46,0x63,0x43,0x8a,0x8b,0x4b,0x8a,0x9a,0xdb,0xd,0x37,0x67,0xaf,
0x59,0x2e,0xca,0x56,0x54,0x4e,0x65,0x82,0x9e,0x40,0xd5,0x2d,0x6a,0x8a,0x8,0xea,
0x9d,0xb1,0x2e,0xbb,0x9e,0x5b,0xb7,0xf8,0x6d,0x94,0x1,0xb7,0xbe,0xf6,0xa3,0x90,
0x96,0x28,0xac,0x3a,0x8e,0xed,0x41,0x15,0xe0,0x3a,0x19,0x65,0x54,0x8d,0x27,0x10,
0x2f,0xf0,0x7,0x54,0x97,0x96,0xba,0x54,0x46,0x7,0x95,0x6c,0x3b,0x12,0xf8,0xd7,
0x7e,0xcc,0xd7,0x7,0x50,0x71,0x62,0xf5,0x49,0xd4,0x75,0xf4,0x7d,0x95,0x36,0xb1,
0xb1,0xe,0xe8,0x79,0x5a,0x16,0xf7,0x7c,0xdb,0x1,0x1f,0xa3,0x1c,0x30,0x18,0x22,
0x6a,0x3a,0x28,0xd3,0x83,0xf7,0xad,0xd6,0xb9,0x8b,0xb0,0x53,0xcb,0xeb,0x0,0x0,
0x20,0x0,0x49,0x44,0x41,0x54,0xf5,0x42,0xeb,0xaf,0x27,0x66,0x7d,0xbd,0x4d,0xae,
0x14,0x50,0x9f,0x1d,0xdb,0x4b,0x65,0x87,0xd9,0xda,0xa4,0xa,0x89,0x2a,0xc,0x3f,
0x4c,0x4f,0x3a,0x59,0x87,0xc4,0xb2,0x43,0xab,0x94,0x17,0xd4,0x73,0x1,0xba,0x5d,
0x4d,0xa6,0x50,0x7b,0x92,0xa2,0x44,0x79,0x99,0xd6,0x6a,0x75,0x6a,0x3d,0xf5,0x8f,
0xb1,0xaa,0xee,0x9a,0xc3,0xa8,0x2c,0xf1,0xfb,0xea,0xf9,0xfd,0x9e,0xa8,0xc2,0x66,
0x7d,0x35,0x61,0xd4,0x76,0xee,0x18,0x2a,0xb8,0xef,0x36,0x54,0xa7,0xe0,0xfa,0x5e,
0xe7,0x3c,0xad,0x8a,0x97,0xd5,0x32,0xdf,0xdd,0x44,0xed,0x5d,0xa8,0x74,0x8a,0xa,
0xea,0xee,0x14,0xec,0xce,0x8b,0x70,0x3d,0xee,0x73,0x7f,0xa4,0xbd,0xa3,0xf4,0xcf,
0xd9,0x55,0xbe,0x17,0x5,0x3e,0x23,0xc1,0xe5,0x37,0xc,0x11,0x35,0x3c,0xfe,0x5,
0x5c,0xa2,0xef,0xb1,0x43,0x9c,0x4d,0x25,0xa6,0x27,0x27,0xf5,0x98,0x68,0xc9,0xa8,
0xd8,0x8d,0xa0,0x26,0xb5,0xee,0xd4,0xdc,0x7a,0x67,0xf,0xaa,0xd3,0x6c,0xf,0x6a,
0xf7,0xcc,0xb9,0x13,0xb8,0x93,0x26,0xc8,0xad,0x75,0x8c,0x83,0xab,0xc6,0xb8,0xb6,
0x97,0xd5,0xf5,0xb8,0x76,0x1b,0x15,0x51,0x3d,0xf3,0x0,0x9e,0xdb,0xc1,0xaa,0x48,
0xfb,0xf3,0xfd,0xf5,0xfb,0xa9,0x2a,0xa7,0xa2,0x82,0x16,0x7d,0xf5,0x18,0x3b,0x49,
0x65,0xef,0xaf,0x47,0x35,0xb9,0xd4,0xb6,0x39,0xf8,0x50,0x35,0xb4,0xa6,0xc7,0xa9,
0x95,0x75,0x9d,0x63,0x27,0x30,0x59,0xff,0x8c,0xdf,0x20,0x4a,0x81,0xce,0x7a,0x93,
0xf1,0xa2,0xf2,0x1c,0x7b,0xa0,0xa2,0xfe,0xf3,0xeb,0xb8,0x8e,0xf7,0xf4,0x7c,0x78,
0xba,0xca,0xe7,0x6,0xd0,0xb8,0xda,0x3e,0x19,0x22,0xaa,0x27,0xbe,0xd1,0x6a,0xd9,
0x22,0x3d,0xa9,0x6e,0xa3,0xd2,0xa3,0x72,0x83,0xde,0xb5,0xf7,0xd4,0x20,0x2d,0x38,
0x9a,0xb0,0x86,0xea,0x89,0x9c,0xa6,0x77,0xe1,0x5b,0xf4,0x22,0x17,0x35,0xa8,0x36,
0x3d,0x51,0xc6,0x71,0xc9,0x8f,0x5b,0xb5,0xb8,0xe4,0xe1,0xfe,0x6f,0x25,0xaa,0x5c,
0xec,0x5c,0x2a,0x8d,0xe9,0xf1,0x9f,0xaf,0xda,0x61,0x21,0xa0,0x17,0x6e,0xa2,0xbc,
0x42,0x96,0x5e,0x24,0x55,0x89,0x23,0xca,0xfe,0x85,0x3,0x78,0xe3,0x6c,0x43,0xfb,
0x73,0x6e,0x4f,0x35,0x92,0x5f,0xa4,0x8e,0x73,0x17,0xa3,0xda,0xdd,0x54,0x25,0xdd,
0x58,0x2d,0xe7,0xf9,0xaf,0x1e,0xbf,0x28,0xfb,0x36,0xf2,0xac,0xae,0x83,0xc5,0x85,
0xec,0x5b,0x6b,0x5d,0x56,0xb9,0xbe,0xf8,0xf7,0x7c,0x28,0x5b,0xe4,0xd,0x5a,0x92,
0xf2,0x56,0x91,0xde,0x2,0x5a,0xea,0x95,0xa8,0x90,0x92,0xdf,0xa1,0x7a,0xfb,0x7d,
0xaf,0x49,0x4b,0xd4,0x60,0x4e,0x70,0xc3,0x4e,0x3e,0xd6,0xa4,0x94,0x9,0x3c,0x7,
0x3c,0x4,0x3c,0x61,0x88,0xa8,0x69,0xa2,0x1c,0xe5,0x3d,0x3b,0xd1,0xe7,0xf3,0x75,
0x8d,0xc5,0x62,0x4e,0x2c,0x16,0x8b,0x79,0x3c,0x9e,0x8b,0xbc,0x5e,0xcf,0x89,0x65,
0x65,0xe5,0xe1,0x5a,0xd4,0x2e,0xb,0xd5,0xa9,0xf6,0x21,0x54,0x46,0x7f,0x9b,0x2a,
0x93,0xb8,0xea,0x24,0x75,0x6d,0x33,0x73,0xf5,0x44,0x8c,0xff,0x8c,0xdb,0x45,0xb4,
0xea,0xa4,0x8e,0xd6,0xb0,0xb0,0x83,0x5a,0x95,0x88,0xd4,0x83,0x4,0x82,0xd5,0x10,
0x49,0xa8,0x1e,0xcf,0xe6,0x6c,0xe0,0x11,0x54,0x15,0x4b,0xa1,0xe7,0x42,0x18,0xd5,
0xfa,0xfb,0x63,0xcb,0xb2,0x70,0x1c,0xa7,0x5a,0xe9,0xc6,0xb6,0x2d,0x62,0x31,0x27,
0x49,0x7f,0xef,0x65,0xfd,0xf6,0x2f,0x0,0x69,0xdb,0x56,0xc8,0x75,0x37,0xd7,0x82,
0xb1,0xc0,0x9f,0xf5,0x62,0x8e,0xea,0xe7,0xd4,0x11,0xf8,0x93,0x10,0x62,0x8a,0x94,
0xd2,0xa9,0x83,0x90,0x92,0xf4,0xf5,0x5e,0xac,0x6d,0x26,0xe7,0x2,0x3e,0x21,0x44,
0xa9,0x94,0xfb,0xf4,0x64,0x77,0xb4,0x5a,0xbb,0x23,0xee,0x3d,0xbf,0x7e,0x6e,0xa1,
0x6a,0xce,0xf1,0x50,0xdc,0x46,0xe3,0xc4,0x11,0x4e,0x38,0x6e,0x4e,0xc4,0x4b,0xa9,
0x9d,0xb5,0xa4,0x13,0xae,0x42,0x54,0x56,0x1c,0x21,0xb9,0x4,0xfa,0x7f,0xa8,0x1e,
0x7b,0xe5,0xb5,0x90,0xa6,0x3b,0xe,0x22,0x29,0x29,0x38,0xba,0xac,0xac,0x7c,0xa4,
0x94,0xd2,0xa3,0x25,0xfb,0xb6,0xda,0xee,0x67,0x50,0x4f,0x3c,0x8,0xbc,0xc1,0xa1,
0xef,0xe2,0x51,0x1d,0x7a,0xfb,0xfd,0xfe,0x70,0xdb,0xb6,0x6d,0xe5,0xdd,0x77,0xff,
0x5e,0x5e,0x70,0xc1,0x59,0x12,0x90,0x83,0x7,0xf,0x94,0x8f,0x3d,0x76,0x4f,0xb9,
0xde,0x69,0xe,0x34,0xef,0x2c,0x55,0x93,0x53,0x6a,0x2d,0xea,0x51,0xa6,0x56,0xc1,
0x76,0xa3,0x9a,0xdd,0xa5,0x54,0x27,0x5e,0x5b,0x96,0x70,0x37,0x85,0xce,0x42,0x88,
0xa7,0x84,0x10,0x52,0x3f,0xc7,0x40,0x35,0xd2,0x92,0x62,0x32,0x21,0x92,0x80,0x9b,
0x84,0x10,0xd2,0xb6,0x2d,0x69,0xdb,0x96,0xb4,0x2c,0x4b,0x6a,0x49,0xb0,0x95,0xfb,
0x3d,0x7d,0x6c,0x84,0xd8,0xe7,0x36,0xcf,0x17,0x42,0xc8,0x94,0x94,0x14,0xd9,0xbe,
0x7d,0x3b,0xd9,0xb6,0x6d,0xa6,0x6c,0xdf,0xbe,0xad,0x4c,0x49,0x49,0x96,0xfa,0xdc,
0x2f,0x6b,0x62,0xa8,0x9,0x59,0x42,0x88,0x39,0xb6,0x6d,0xcb,0xf8,0x97,0x10,0x62,
0xe,0xaa,0x7a,0x5f,0x6d,0x18,0x9,0xac,0x4c,0x4e,0x4e,0x8e,0x3b,0x77,0x3b,0x99,
0x92,0x92,0xe2,0x9e,0xfb,0x5b,0x2a,0xbb,0xb0,0x54,0x87,0x20,0xf0,0x8d,0x65,0x59,
0x7b,0xef,0xdb,0xb6,0x2d,0x29,0x84,0xc8,0x46,0xb9,0xbd,0xe3,0x9f,0x91,0xfb,0xd3,
0xa7,0xc7,0xaa,0x33,0x30,0x49,0x8,0x51,0x2,0x5c,0x9,0x4,0x2c,0xf7,0x1,0xed,
0x33,0x1e,0x96,0xad,0xd5,0xf2,0xf,0xf4,0x33,0x9d,0xaa,0x89,0xc0,0xae,0x63,0x2e,
0xb4,0xe2,0xc0,0xab,0x5d,0xe,0x46,0xe5,0x94,0xc5,0xda,0xb4,0x69,0x2d,0xe7,0xcc,
0x79,0x5f,0x66,0x66,0xb6,0x96,0x1e,0x8f,0xc7,0x55,0x33,0xb3,0xeb,0xf8,0x7e,0x93,
0xee,0xe2,0xd1,0x9c,0x89,0xc8,0x6,0x62,0x57,0x5c,0x71,0x91,0x94,0x52,0xca,0x59,
0xb3,0xde,0x91,0xcb,0x97,0xcf,0x92,0x96,0x25,0xf6,0xb6,0xd3,0xb1,0x2c,0x6b,0x6a,
0x95,0x49,0xdf,0x56,0x8b,0xdb,0xa7,0x69,0x2,0xa9,0x8e,0x4,0xda,0xe9,0x7b,0x5b,
0x93,0x92,0x92,0x2c,0x3d,0x1e,0xfb,0x7b,0x21,0xc4,0x68,0x21,0x44,0x7a,0x95,0x73,
0x5f,0xe4,0xf7,0x7b,0x65,0x7a,0x7a,0x9a,0x6c,0xd5,0x2a,0x5d,0xb6,0x6a,0x95,0x2e,
0xd3,0xd2,0x52,0xa5,0x10,0x62,0xb9,0xb6,0x19,0xc4,0xa3,0x3d,0xf0,0x5b,0x21,0xc4,
0xca,0x2e,0x5d,0xb2,0xe4,0x80,0x1,0xfd,0x62,0x6d,0xda,0xb4,0x96,0x3e,0x9f,0x57,
0xea,0x9,0x56,0x65,0x61,0xe1,0x3,0xbe,0x12,0x42,0xc8,0xa1,0x43,0x7,0xc9,0xb3,
0xce,0x1a,0x2b,0xc7,0x8d,0x1b,0x23,0xcf,0x3a,0x6b,0xac,0x93,0x92,0x92,0xe4,0xde,
0xdf,0xa5,0xb5,0x10,0x41,0x7e,0xaf,0x5e,0xdd,0xe5,0xa4,0x49,0x6f,0x4b,0x85,0x52,
0x29,0xa5,0x94,0xef,0xbc,0xf3,0x1f,0x79,0xd2,0x49,0xc3,0x64,0x9b,0x36,0xad,0x24,
0xaa,0xd9,0x63,0x6a,0xd,0xd2,0xc8,0xc4,0xe,0x1d,0xda,0x3a,0x23,0x46,0xc,0x75,
0x4e,0x3e,0x79,0x98,0x73,0xf2,0xc9,0xc3,0x9c,0x11,0x23,0x86,0x3a,0x1d,0x3a,0xb4,
0x75,0x80,0x77,0xb4,0x4d,0xae,0xa6,0xc5,0x36,0x37,0x2b,0xab,0xbd,0x9c,0x38,0xf1,
0xb5,0x7d,0xce,0x3d,0x69,0xd2,0xdb,0xb2,0x57,0xaf,0xee,0x52,0xab,0x2e,0x23,0xaa,
0x10,0xa7,0x4b,0x10,0xc9,0xc0,0xc7,0x29,0x29,0x49,0xf2,0xac,0xb3,0xc6,0x3a,0xe3,
0xc6,0x8d,0xd1,0xf7,0x7d,0x9a,0xec,0xd5,0xab,0x9b,0x44,0x15,0xc1,0xeb,0x5e,0xcd,
0x79,0xaf,0xf2,0xf9,0x7c,0x32,0x3d,0x3d,0x4d,0x76,0xe9,0xd2,0x49,0x1e,0x79,0x64,
0x6f,0x27,0x23,0x23,0x5d,0xa,0x21,0x3e,0x42,0x15,0xcd,0xdb,0x7b,0xb2,0x56,0xad,
0xd2,0x5,0x70,0x8e,0xd7,0xeb,0x8d,0xa6,0xa6,0x26,0xcb,0xd1,0xa3,0x47,0xca,0xd4,
0xd4,0x14,0xe9,0xf7,0x7b,0x25,0x2a,0x3d,0xc8,0x6,0xc8,0xc8,0x48,0x77,0x9f,0xc5,
0x48,0xcb,0xb2,0xbe,0x4f,0x4f,0x4f,0x95,0xc9,0xc9,0xc9,0x12,0x78,0xcd,0xb6,0xed,
0x2c,0x2a,0x13,0x54,0xdd,0xb1,0xf3,0xea,0x39,0x35,0x4a,0x1f,0x67,0x58,0x9c,0x34,
0x9b,0x82,0xea,0x38,0x13,0x5,0xe4,0x97,0x5f,0x7e,0x24,0xdf,0x7f,0xff,0x15,0x39,
0x6b,0xd6,0x3b,0xf2,0xd4,0x53,0x4f,0x90,0xb6,0x6d,0x4b,0x4d,0x32,0x3d,0xc,0x11,
0x35,0x3d,0x22,0xfa,0x39,0x50,0x32,0x7a,0xf4,0x49,0xf2,0x9e,0x7b,0x7e,0xbf,0xb7,
0x3f,0x56,0x20,0xe0,0x97,0x3e,0x9f,0xcf,0x89,0x53,0xc9,0xa6,0xea,0x49,0xd2,0xc1,
0xb6,0xed,0xa7,0x32,0x32,0xd2,0x65,0xbb,0x76,0x99,0xa5,0x3e,0x9f,0xf7,0x43,0x21,
0xc4,0x4f,0x89,0xf3,0xae,0x9,0x41,0x32,0x70,0x7f,0xdb,0xb6,0x6d,0xa2,0x7d,0xfb,
0xf6,0x94,0x7f,0xfb,0xdb,0xad,0xce,0x9,0x27,0xc,0x91,0x69,0x69,0xa9,0xd2,0xb2,
0xac,0xdf,0xc6,0xed,0x86,0xfd,0x3d,0x1e,0x4f,0xd1,0xf9,0xe7,0x9f,0x21,0x9f,0x79,
0xe6,0x21,0xf9,0xcc,0x33,0xf,0xca,0x67,0x9e,0x79,0xc8,0xf9,0xfb,0xdf,0xff,0xea,
0xf4,0xed,0xdb,0x53,0xa2,0x6a,0x7a,0x77,0x8c,0x53,0x15,0xee,0xf1,0xf9,0xbc,0xf2,
0x84,0x13,0x86,0xc8,0xf,0x3e,0x78,0x35,0xb6,0x62,0xc5,0xe7,0xf2,0x8d,0x37,0xfe,
0x29,0xc7,0x8d,0x1b,0x2d,0x3d,0x1e,0x4f,0x36,0xfb,0xf6,0xc5,0x12,0xc0,0x5,0x1e,
0x8f,0x67,0xdd,0xe8,0xd1,0x27,0x39,0x9b,0x36,0x2d,0x91,0x52,0x46,0xa4,0x94,0x15,
0x52,0xca,0x88,0xbc,0xef,0xbe,0x5b,0x65,0x9b,0x36,0x19,0x11,0x21,0xc4,0x73,0x42,
0xfc,0x48,0x3a,0xe9,0x4,0xbc,0xdb,0xb3,0x67,0x57,0x39,0x6d,0xda,0x24,0x29,0x65,
0x89,0xcc,0xce,0x5e,0x22,0x73,0x72,0x56,0xca,0x5d,0xbb,0x96,0xca,0x58,0x2c,0x57,
0x4a,0x59,0x2c,0x6f,0xb8,0xe1,0x2a,0x69,0x59,0x22,0x47,0x1b,0xd3,0xab,0xe2,0x67,
0x5e,0xaf,0xb7,0xe2,0xd2,0x4b,0xcf,0x75,0x1e,0x7c,0xf0,0xe,0xe7,0xc1,0x7,0xef,
0x90,0xf,0x3e,0x78,0x87,0x9c,0x30,0xe1,0x76,0xe7,0x57,0xbf,0xfa,0xa9,0xd3,0xb1,
0x63,0x7b,0x59,0x83,0xa,0xd1,0xd,0x98,0xd2,0xb3,0x67,0x37,0xf9,0xc1,0x7,0xaf,
0xc6,0xa4,0xcc,0x95,0xbb,0x77,0x2f,0x97,0x39,0x39,0x2b,0x65,0x76,0xf6,0x12,0x29,
0x65,0x89,0x9c,0x3e,0xfd,0x7f,0xf2,0xb8,0xe3,0x6,0x4a,0xdb,0xb6,0x97,0xa2,0xf2,
0xa9,0xaa,0x9a,0x11,0x5e,0xcc,0xc8,0x48,0x97,0xf7,0xdd,0x77,0x6b,0xdc,0x3d,0x87,
0xa5,0x94,0x61,0x39,0x65,0xca,0xeb,0xb2,0x67,0xcf,0xae,0x52,0xab,0xc6,0x81,0x2a,
0xe4,0xf7,0xcd,0xc8,0x91,0xc3,0xe5,0xf3,0xcf,0x3f,0x22,0x27,0x4f,0x7e,0x4d,0x2e,
0x5b,0x36,0x4b,0x3e,0xf6,0xd8,0xdf,0xa2,0x5d,0xbb,0x76,0x96,0xda,0x6e,0xd3,0x33,
0x8e,0x2c,0x2e,0xb7,0x2c,0x91,0x7b,0xce,0x39,0x63,0xe4,0x43,0xf,0xfd,0x45,0x4a,
0xb9,0x53,0x3e,0xf6,0xd8,0xbd,0xf2,0xbc,0xf3,0x4e,0x97,0x3e,0x9f,0xaf,0x48,0x8,
0x2e,0x8a,0x53,0xa5,0xc6,0xda,0xb6,0x55,0xda,0xaf,0x5f,0x2f,0xf9,0xc4,0x13,0xf7,
0xc9,0x3f,0xfc,0xe1,0x6,0xd9,0xa9,0x53,0x47,0x99,0x94,0x14,0x5c,0x8f,0xa,0x9d,
0x88,0xc7,0x38,0xe0,0x83,0xf6,0xed,0x33,0x4b,0x7b,0xf5,0xea,0x26,0x53,0x53,0x53,
0xa,0xa9,0xec,0xce,0x31,0x18,0x55,0x63,0xc8,0xd1,0x12,0xd8,0xde,0xd7,0xcd,0x37,
0xff,0x4a,0xf6,0xed,0xdb,0xcb,0x75,0x70,0xac,0x34,0x44,0xd4,0xf4,0x88,0x68,0x3a,
0x10,0x4d,0x4a,0xa,0x4a,0xaf,0xd7,0x2b,0x7b,0xf7,0xee,0x2e,0xaf,0xbb,0xee,0x2a,
0x79,0xdd,0x75,0x3f,0x97,0xe7,0x9e,0x7b,0x7a,0xbc,0x4b,0x7e,0xad,0xbe,0xd6,0x17,
0xba,0x74,0xc9,0x92,0x77,0xde,0x79,0xb3,0x7c,0xee,0xb9,0x87,0xe4,0xc9,0x27,0x1f,
0x2f,0xbd,0x5e,0xef,0x77,0xa8,0xce,0xb1,0x2e,0x2e,0xa,0x4,0x2,0xdb,0x6f,0xbb,
0xed,0xb7,0x72,0xde,0xbc,0x8f,0xa4,0xe3,0x6c,0x97,0x4b,0x97,0xce,0x70,0x2e,0xb8,
0xe0,0x4c,0x19,0xc,0x6,0x96,0xb8,0x13,0x1a,0xb8,0xa8,0x73,0xe7,0x8e,0x72,0xfe,
0xfc,0xa9,0x8e,0x94,0x45,0x52,0xca,0x3d,0x52,0xca,0x3c,0x29,0x65,0x8e,0xf3,0xaf,
0x7f,0xfd,0xdd,0xf5,0xb6,0x9c,0xa6,0x3f,0x7b,0x2c,0xf0,0xc3,0x69,0xa7,0x8d,0x94,
0xab,0x56,0x7d,0x21,0xa5,0xcc,0x91,0x91,0xc8,0x16,0x29,0x65,0xa1,0x5c,0xb0,0xe0,
0x13,0x39,0x74,0xe8,0x20,0xa9,0xd,0xe0,0xae,0x94,0xd1,0xa,0xd8,0x7c,0xf6,0xd9,
0x63,0xe4,0xda,0xb5,0xf3,0x64,0x28,0xb4,0x41,0xe6,0xe4,0xac,0x90,0x39,0x39,0x2b,
0x64,0x6e,0xee,0x4a,0xe9,0x38,0xdb,0xe5,0xd3,0x4f,0x4f,0x90,0x99,0x99,0xad,0xa4,
0x36,0x90,0xc6,0xdb,0x20,0x46,0x6,0x83,0x81,0x55,0xb7,0xdc,0xf2,0x1b,0x29,0xe5,
0x2e,0xb9,0x7b,0xf7,0x72,0x99,0x97,0xb7,0x46,0xe6,0xe5,0xad,0x96,0x79,0x79,0xab,
0xe5,0xee,0xdd,0xcb,0xa5,0x94,0x39,0xf2,0xdf,0xff,0x7e,0x44,0xb6,0x6b,0x97,0x59,
0x84,0xf2,0x2,0xfa,0xab,0x90,0xe0,0xea,0x63,0x8f,0x1d,0xe8,0xf4,0xef,0xdf,0x57,
0x1e,0x73,0xcc,0x51,0xf2,0xc2,0xb,0xcf,0x92,0x17,0x5e,0x78,0x96,0x1c,0x30,0xa0,
0x9f,0x3c,0xfb,0xec,0x31,0xce,0x35,0xd7,0x5c,0xe6,0x86,0xe,0xa4,0x55,0x19,0x8f,
0x61,0x29,0x29,0xc9,0xdb,0x1f,0x78,0xe0,0x36,0x29,0x65,0x9e,0x13,0x7f,0xde,0xbc,
0xbc,0x35,0x72,0xd7,0xae,0x65,0x52,0xca,0x5d,0xf2,0xbd,0xf7,0x5e,0x90,0x47,0x1c,
0xd1,0x69,0x97,0xb6,0xfb,0xd8,0x55,0xa4,0xd5,0xe5,0xd7,0x5f,0x7f,0x95,0x23,0xe5,
0xe,0x99,0x9b,0xbb,0x72,0x9f,0xfb,0xe,0x87,0xb7,0x3a,0x4f,0x3e,0x79,0xbf,0x44,
0x79,0xb,0x8f,0x88,0x23,0xaf,0x2b,0x33,0x32,0xd2,0xb2,0x9f,0x7a,0xea,0x7e,0x29,
0x65,0x99,0x94,0x32,0x5b,0x3a,0xce,0xe,0x29,0x65,0x89,0x9c,0x30,0xe1,0xe,0x57,
0x82,0xbc,0x55,0x3f,0x9f,0x63,0x80,0xad,0x63,0xc7,0x9e,0x22,0xd7,0xae,0xfd,0xd2,
0x91,0xb2,0xd0,0xc9,0xcf,0xff,0x4e,0x4a,0x59,0x28,0xd7,0xad,0xfb,0xca,0x39,0xf3,
0xcc,0xd1,0xd2,0xb2,0xac,0x62,0xfd,0x1c,0x82,0xb6,0x6d,0xfd,0xb5,0x6f,0xdf,0x9e,
0xf2,0xbd,0xf7,0x5e,0x94,0x52,0xee,0x91,0xe5,0xe5,0x9b,0x9c,0x97,0x5f,0x7e,0x5c,
0xf6,0xe9,0xd3,0x63,0x27,0xf0,0x9b,0x78,0x55,0x16,0xf8,0x24,0x23,0x23,0x5d,0xde,
0x7f,0xff,0x6d,0x72,0xe1,0xc2,0x4f,0x63,0x17,0x5f,0x7c,0xb6,0xf4,0xf9,0xbc,0x61,
0x54,0xd9,0x92,0xc7,0x51,0x5e,0x3d,0x9,0x38,0xbf,0xfe,0xf5,0xcf,0xe4,0xf8,0xf1,
0xd7,0xc8,0x4b,0x2f,0x3d,0x57,0x76,0xeb,0xd6,0x45,0xb6,0x6e,0x9d,0xe1,0xce,0xd7,
0xdd,0xda,0xbe,0xd6,0xec,0x88,0xa8,0x39,0x1b,0xab,0x77,0x1,0x32,0x14,0x52,0x55,
0xfd,0x8e,0x3f,0x7e,0x8,0xf,0x3d,0x74,0x7,0x20,0x59,0xb8,0x70,0x19,0x1f,0x7d,
0x34,0x4d,0xc4,0x19,0xb4,0xdb,0x27,0x27,0x27,0xfd,0xea,0xa7,0x3f,0xbd,0x88,0x7b,
0xee,0xb9,0x15,0x8f,0x27,0x40,0x7a,0x7a,0x1a,0x8b,0x17,0x2f,0x4f,0x8e,0x44,0x22,
0xf1,0xcd,0x7,0x93,0xba,0x77,0xef,0xc2,0xb8,0x71,0xa3,0x39,0xfe,0xf8,0x63,0x29,
0x28,0x28,0xe2,0x98,0x63,0xfa,0x8b,0xab,0xaf,0xbe,0x94,0x85,0xb,0x97,0xd,0xde,
0xbe,0x3d,0xbb,0x93,0x94,0x72,0x23,0xf0,0xd7,0xd4,0xd4,0x14,0x99,0x9c,0x9c,0x24,
0x8a,0x8b,0xb3,0xa9,0xa8,0x88,0xb8,0xaa,0x85,0xe8,0xd0,0xa1,0x9d,0x6b,0x50,0x76,
0xcb,0xd,0xa6,0xfa,0xfd,0xbe,0x2e,0xa7,0x9e,0x7a,0x12,0x47,0x1d,0x35,0x84,0xdc,
0xdc,0x8d,0x80,0x40,0x88,0x62,0xfa,0xf4,0xe9,0xce,0x99,0x67,0x8e,0x62,0xc3,0x86,
0xcd,0x83,0xf2,0xf2,0xf2,0x3b,0x6a,0x2,0x4b,0x12,0x42,0x44,0x2f,0xbf,0xfc,0x3c,
0xba,0x76,0xed,0x44,0x69,0x69,0x8,0x65,0xd2,0x50,0x28,0x2c,0x2c,0xe6,0xca,0x2b,
0xcf,0x67,0xd2,0xa4,0x8f,0xc3,0xb3,0x67,0x7f,0xd5,0xa6,0xa,0x89,0xa4,0x76,0xeb,
0xd6,0x25,0x63,0xdc,0xb8,0xd3,0x28,0x2a,0x2a,0xc0,0xb6,0x3d,0xfb,0xd8,0xdc,0x6d,
0xdb,0x43,0x71,0x71,0x1,0x3f,0xf9,0xc9,0x8,0xfe,0xfb,0xdf,0xde,0xa9,0xbb,0x77,
0xe7,0x5e,0xa0,0x9,0x7d,0x4b,0xdc,0x31,0x5a,0x1d,0x77,0xdc,0xd1,0xe2,0xdb,0x6f,
0x57,0x72,0xe5,0x95,0x17,0xf2,0x8b,0x5f,0x5c,0x86,0x94,0x92,0x97,0x5f,0x7e,0x8b,
0xdb,0x6e,0x7b,0x50,0x74,0xee,0xdc,0xd1,0x55,0x35,0x1e,0x42,0x95,0xe6,0xd8,0xeb,
0x49,0xa,0x4,0xfc,0xe5,0x29,0x29,0xc9,0x40,0x54,0x38,0x4e,0xc,0xcb,0xaa,0xb4,
0xfd,0x7a,0x3c,0x5e,0x8a,0x8a,0xa,0x69,0xdd,0x3a,0x83,0xd4,0xd4,0xe4,0xf2,0xb8,
0x85,0x19,0xef,0x89,0x2a,0xec,0xd2,0x25,0x4b,0x96,0x94,0x94,0xa,0x21,0x2c,0x5c,
0xed,0x4d,0x8,0x41,0x59,0x59,0x99,0xc8,0xcc,0xcc,0xc0,0xb2,0xac,0xa8,0xe3,0x38,
0x91,0x38,0x15,0x39,0x63,0xd0,0xa0,0x1,0x29,0xa7,0x9c,0x72,0x3c,0x5,0x5,0x9b,
0x88,0xc5,0x1c,0x1c,0xc7,0x21,0x23,0x23,0xca,0x45,0x17,0x9d,0x25,0x3e,0xfe,0x78,
0x3a,0x5f,0x7d,0xb5,0x68,0xac,0xde,0x3c,0xd3,0x1,0xeb,0xa6,0x9b,0x7e,0x41,0xa7,
0x4e,0x1d,0x45,0x5e,0xde,0x56,0x84,0xb0,0xc8,0xc9,0xd9,0x42,0xaf,0x5e,0xbd,0xc4,
0x5,0x17,0x9c,0x21,0x67,0xcd,0x9a,0xeb,0xd,0x87,0xc3,0x16,0x60,0xfb,0xfd,0xfe,
0xf4,0xe3,0x8e,0x3b,0x9a,0x31,0x63,0x4e,0x26,0x3f,0x7f,0x17,0x3e,0x9f,0x57,0x1c,
0x7d,0xf4,0x91,0xd8,0xb6,0xa7,0x3d,0xaa,0xb7,0xde,0x27,0xa8,0xf0,0x8c,0xe3,0xbc,
0x5e,0xef,0x91,0x7f,0xfc,0xe3,0xf5,0xdc,0x7c,0xf3,0x2f,0x49,0x49,0xe9,0x69,0x8d,
0x1e,0xbd,0x42,0x1f,0xab,0x30,0x53,0x4b,0xbc,0xae,0x19,0x40,0x4c,0x98,0x70,0x3b,
0xc1,0x60,0x80,0xad,0x5b,0xb7,0x33,0x66,0xcc,0xe5,0xec,0xd9,0x53,0xe0,0x3e,0xfb,
0x64,0x1a,0xa0,0xa7,0x58,0x63,0x40,0x73,0x6e,0xc5,0x52,0xe5,0xde,0x24,0x8e,0xa3,
0x5e,0x4b,0x97,0xee,0xd3,0x66,0x5e,0x68,0x92,0xc0,0xe7,0xb,0x12,0xe,0xb,0x1c,
0xa7,0x1c,0xed,0x7b,0x71,0xd8,0xd7,0x35,0xec,0x8,0x21,0x70,0x1c,0x87,0x8a,0x8a,
0x30,0x1e,0x8f,0x4d,0x38,0x1c,0xc6,0xb6,0x2d,0x3c,0x1e,0xdb,0xb5,0xe1,0x8,0xc0,
0x89,0x46,0xa3,0x22,0x1a,0x8d,0x62,0x59,0x1e,0x2c,0xcb,0xc2,0xb2,0x2c,0xfd,0xf9,
0xa,0xf7,0xda,0xec,0x38,0xcf,0x4e,0x34,0x1a,0x55,0xda,0xa2,0x10,0x2,0xcb,0x12,
0x7a,0x91,0xa,0x82,0xc1,0x20,0x7e,0xbf,0x6f,0x1f,0x4f,0x9b,0x94,0xd2,0xde,0xb2,
0x65,0x1b,0xa5,0xa5,0xa1,0xaa,0x46,0x68,0x84,0x80,0xed,0xdb,0xb3,0xc9,0xcf,0x2f,
0x14,0xfc,0x38,0xd8,0x2e,0x5a,0x5a,0x1a,0x8a,0x6e,0xdb,0x96,0x8d,0xc7,0xe3,0xfd,
0xd1,0x3,0x53,0xe,0x27,0x49,0x6a,0x6a,0x2a,0xc1,0x60,0x80,0x9a,0x3c,0x8a,0x96,
0x65,0x13,0xc,0x6,0xf9,0xe1,0x87,0xd,0x94,0x97,0x57,0xe8,0xe7,0xa,0x1e,0x8f,
0x4d,0x59,0x59,0xb9,0x7b,0x7f,0x55,0xbb,0xc7,0xa,0xc7,0x71,0xac,0x70,0x38,0xb2,
0xf7,0x3e,0xab,0x31,0xc0,0x6b,0xa2,0xa8,0xd6,0x59,0x27,0x0,0x4f,0x59,0x59,0x79,
0x4d,0xff,0xa7,0xbc,0xbc,0x2,0x29,0x65,0xd5,0x60,0x52,0x7,0xa4,0x63,0x59,0x16,
0x5e,0xaf,0xd7,0xdd,0x10,0xf0,0x7a,0x53,0x98,0x36,0xed,0xb,0x56,0xaf,0x5e,0x87,
0x26,0x5a,0xb7,0xd,0x95,0x5c,0xb3,0x66,0x1d,0xe1,0x70,0x64,0x2f,0x51,0xdb,0xb6,
0x4d,0x28,0x54,0xcc,0xb6,0x6d,0xd9,0x42,0x4a,0xc7,0x13,0xa7,0x3a,0x39,0x52,0x4a,
0x62,0xb1,0x28,0x81,0x80,0xf,0xcb,0xb2,0x8,0x85,0xca,0x88,0xa9,0x56,0xb1,0x9e,
0x78,0x15,0xd1,0xb6,0x85,0x15,0xc,0x6,0x11,0xc2,0x22,0x14,0xda,0xc1,0xd6,0xad,
0xd9,0x22,0x1a,0x8d,0xb9,0x4,0xbb,0x32,0xce,0x7b,0x88,0x94,0x12,0xc7,0x71,0xd8,
0xb2,0x65,0x3b,0xfa,0x33,0xc4,0x79,0xe4,0x9a,0x65,0xa5,0x85,0xe6,0x2c,0x11,0xf9,
0xe2,0xc9,0x68,0xed,0xda,0x1f,0x78,0xe9,0xa5,0x37,0x71,0x1c,0x87,0xdb,0x6e,0x9b,
0x80,0x10,0x42,0x2f,0x3c,0x2a,0x80,0xbc,0xe2,0xe2,0x92,0xcf,0x9f,0x7f,0xfe,0xd5,
0x51,0x5,0x5,0x79,0xc,0x18,0xd0,0x8f,0x39,0x73,0xbe,0x21,0x1a,0x8d,0x86,0xd9,
0xd7,0x15,0x5e,0xbe,0x73,0xe7,0xee,0xe8,0x82,0x5,0x4b,0x69,0xdb,0xb6,0xd,0x81,
0x80,0x9f,0x75,0xeb,0x36,0x72,0xf7,0xdd,0xff,0x60,0xd3,0xa6,0xad,0x6b,0xb5,0x4a,
0x12,0x3,0xae,0xdd,0xb3,0xa7,0xe0,0x9b,0x39,0x73,0xe6,0xfb,0xba,0x76,0xed,0xec,
0x2e,0x6a,0x76,0xec,0xd8,0xc9,0xa7,0x9f,0x7e,0x1,0x2a,0xe0,0xcd,0x95,0x88,0xca,
0xa3,0xd1,0x68,0xd1,0xca,0x95,0x2b,0x93,0x36,0x6d,0x5a,0x4d,0x56,0x56,0x7,0xa2,
0xd1,0x28,0x5e,0xaf,0x97,0xc5,0x8b,0x97,0xf3,0xd6,0x5b,0x1f,0xb0,0x63,0xc7,0xae,
0x75,0x96,0x65,0xed,0x71,0x1c,0x7,0xdb,0xb6,0xa,0x63,0x31,0x67,0xd5,0xd3,0x4f,
0xbf,0x7c,0xc4,0xa8,0x51,0x27,0x89,0xfe,0xfd,0xfb,0xec,0x9d,0xac,0x42,0x80,0xc7,
0xe3,0xe1,0x85,0x17,0xfe,0xcb,0xb2,0x65,0xab,0x8a,0x84,0x10,0xcb,0xe3,0xbc,0xd9,
0x31,0xcb,0x12,0x3b,0xb7,0x6c,0xd9,0xbe,0xe1,0xd1,0x47,0xff,0x75,0xc4,0x98,0x31,
0x23,0x69,0xd5,0x2a,0x83,0x50,0xa8,0x6c,0x2f,0x29,0x58,0x96,0x45,0x6a,0x6a,0x3a,
0x8f,0x3c,0xf2,0x1c,0x9f,0x7f,0x3e,0xcf,0x1,0x16,0x9,0x21,0xa,0xe3,0x8e,0x21,
0x81,0x3d,0xeb,0xd6,0xad,0xef,0xd0,0xad,0x5b,0x67,0x9e,0x7b,0xee,0x3f,0x24,0x27,
0x27,0x91,0x9e,0x9e,0xce,0xc2,0x85,0x4b,0x19,0x3b,0xf6,0x14,0x3a,0x75,0xea,0xc0,
0xb3,0xcf,0xbe,0x96,0xf,0x5c,0x5e,0x65,0x3c,0xc2,0xa5,0xa5,0xa1,0x92,0xb5,0x6b,
0xd7,0x93,0x93,0x93,0x47,0x30,0x18,0x20,0x1c,0xde,0x97,0x27,0x7d,0x3e,0x2f,0xc5,
0xc5,0x25,0x54,0x54,0x84,0xed,0x6a,0x36,0xc9,0x18,0x50,0x34,0x7f,0xfe,0x12,0xf2,
0xf3,0x8b,0xc8,0xcc,0x6c,0xb5,0xf7,0xfb,0x1e,0x8f,0x87,0x8a,0x8a,0xa,0x16,0x2d,
0x5a,0x8e,0x94,0x32,0x44,0x65,0x58,0x84,0x3,0x94,0x6f,0xda,0xb4,0x2d,0x36,0x7b,
0xf6,0xd7,0x74,0xea,0xd4,0x91,0x94,0x94,0x64,0x84,0x10,0x6c,0xda,0xb4,0x8e,0xd9,
0xb3,0xe7,0x51,0x58,0x58,0x54,0x8e,0xa,0x7e,0xcd,0x47,0xb5,0x9f,0x5a,0x75,0xc7,
0x1d,0xf,0x66,0xd,0x1d,0x7a,0xac,0x38,0xe6,0x98,0xbe,0x4,0x2,0x1,0x7c,0x3e,
0x1f,0xdf,0x7c,0xb3,0x98,0x97,0x5e,0x7a,0x8b,0x48,0x24,0x3a,0xc7,0x25,0x83,0x48,
0x24,0x52,0xbe,0x7e,0xfd,0x66,0x16,0x2f,0x5e,0x41,0x8f,0x1e,0x5d,0xa9,0xa8,0xa8,
0x60,0xfe,0xfc,0x6f,0xc9,0xcd,0xcd,0xdb,0xa4,0x3d,0xb2,0xeb,0x34,0xc1,0x7e,0x5f,
0x5e,0x1e,0xfe,0x7a,0xc2,0x84,0xa7,0x3a,0xe5,0xe5,0xed,0xb1,0xa2,0xd1,0x28,0xaf,
0xbd,0xf6,0x2e,0xc5,0xc5,0x25,0xb3,0x35,0x9,0x3e,0xad,0x9d,0x8,0x6d,0x0,0x5e,
0x7e,0xf9,0xbf,0x8,0x61,0xf1,0xfa,0xeb,0xef,0xb1,0x73,0xe7,0xae,0xaa,0x44,0x54,
0xd8,0x1c,0x17,0x6b,0x43,0xd4,0xe6,0x39,0x4d,0x8b,0xb8,0x9f,0x35,0xf0,0x43,0x3b,
0x7,0x55,0xbf,0x78,0x45,0xd,0xff,0xef,0xa3,0x7,0xd7,0x16,0x42,0xb0,0x7d,0xfb,
0x4e,0x66,0xcc,0x98,0xc3,0xcc,0x99,0x73,0xe3,0x49,0xa8,0x4,0x78,0x15,0x78,0xdf,
0xe3,0xb1,0x3f,0x2a,0x2a,0x2a,0xe9,0x3c,0x7f,0xfe,0xb7,0xa5,0x93,0x27,0xcf,0xf8,
0x7e,0xf9,0xf2,0x35,0x3b,0x63,0xb1,0xd8,0x47,0x96,0x65,0xbd,0x2f,0xa5,0x2c,0xd3,
0xb,0xa5,0xac,0xa4,0x24,0x94,0xb5,0x62,0xc5,0xea,0x1e,0xcb,0x97,0xaf,0xf1,0x7e,
0xf1,0xc5,0xd7,0xb1,0xb7,0xdf,0xfe,0x50,0x2c,0x5f,0xbe,0x7a,0xb9,0x76,0x7,0xaf,
0x74,0xdd,0xbf,0xa1,0x50,0xd9,0xf1,0xf3,0xe6,0x2d,0xec,0x9a,0x99,0xd9,0x9a,0xd2,
0xd2,0x10,0x9b,0x36,0x6d,0xe5,0x85,0x17,0xde,0xe4,0xa5,0x97,0xfe,0xbb,0xc3,0xb2,
0xac,0x7f,0x49,0x29,0xa7,0x2,0x61,0xcb,0xb2,0x4a,0x1d,0xc7,0xa9,0x58,0xbd,0x7a,
0xdd,0xb1,0x9b,0x36,0x6d,0x4b,0x6a,0xd5,0x2a,0x83,0x6d,0xdb,0xb2,0xd9,0xb6,0x6d,
0x7,0x6f,0xbe,0xf9,0x3f,0xe6,0xce,0x9d,0xbf,0x21,0x1c,0xe,0xdf,0x2f,0xa5,0x5c,
0xa2,0x77,0xcb,0x28,0xb0,0xae,0xa2,0x22,0x3c,0x26,0x16,0x8b,0xb5,0x3a,0xe6,0x98,
0x1,0xa4,0xa6,0x2a,0x7b,0xba,0xe3,0xd8,0x4c,0x99,0x32,0x8d,0xe7,0x9e,0xfb,0xf,
0x5,0x5,0x45,0x6f,0xa1,0x8a,0xae,0xc7,0x49,0x3c,0xec,0x1,0x64,0x38,0x1c,0x1e,
0x5b,0x56,0x56,0xee,0x1d,0x3c,0x78,0x0,0x19,0x19,0x19,0x5a,0xa,0xb3,0xf0,0xf9,
0xbc,0xcc,0x99,0xf3,0x35,0xaf,0xbc,0xf2,0x36,0x9b,0x36,0x6d,0x9b,0x6,0xfc,0x8d,
0xca,0x62,0xfb,0x7b,0xc9,0x78,0xe3,0xc6,0xad,0xfd,0x7b,0xf4,0xe8,0xda,0xba,0x7f,
0xff,0xde,0x72,0xc1,0x82,0x65,0x62,0xf9,0xf2,0xd5,0x6c,0xdf,0xbe,0x93,0xb4,0xb4,
0x14,0x56,0xaf,0xfe,0x9e,0x5d,0xbb,0x72,0xbf,0x42,0x55,0xc7,0x8c,0xf7,0x78,0x95,
0x47,0xa3,0xd1,0xcc,0xec,0xec,0x5d,0x23,0xbb,0x75,0xeb,0xc2,0xe0,0xc1,0x3,0x70,
0x1c,0x89,0xd7,0xeb,0xd1,0xe7,0xf6,0xb3,0x66,0xcd,0x3a,0x9e,0x7c,0xf2,0x5,0x96,
0x2e,0x5d,0xf5,0x43,0x34,0x1a,0x7b,0x4f,0x13,0x83,0x8b,0xa,0xcb,0xb2,0x92,0xd7,
0xaf,0xdf,0x74,0x66,0xfb,0xf6,0x1d,0xad,0x94,0x14,0x3f,0x6d,0xdb,0xb6,0x7,0x1c,
0x72,0x72,0xf6,0x30,0x75,0xea,0x2c,0x9e,0x78,0xe2,0x85,0x48,0x79,0x79,0xc5,0xc4,
0xac,0xac,0xe,0xef,0x17,0x17,0x97,0x0,0x38,0x5e,0xaf,0x37,0xb4,0x67,0x4f,0x7e,
0xd6,0xfc,0xf9,0xdf,0xe,0xf4,0x7a,0xbd,0x22,0x10,0xf0,0xb3,0x7a,0xf5,0x5a,0x1e,
0x78,0xe0,0x29,0x3e,0xf8,0xe0,0x93,0x2d,0xc0,0xb7,0x42,0x88,0xa9,0x5a,0x95,0x2f,
0x2,0x72,0xfc,0x7e,0xdf,0x9,0xeb,0xd6,0xad,0x6f,0x15,0x8d,0x46,0x45,0x69,0x69,
0x19,0x1b,0x36,0x6c,0xe1,0xbd,0xf7,0x26,0xf3,0xd5,0x57,0x8b,0x72,0xa2,0xd1,0xd8,
0x99,0x40,0x91,0x6d,0xdb,0x32,0x1a,0x8d,0x39,0xd9,0xd9,0xbb,0x8f,0x5e,0xba,0x74,
0x55,0xfb,0x6f,0xbf,0x5d,0x11,0xfd,0xf8,0xe3,0x99,0xf2,0x7f,0xff,0x9b,0x52,0x98,
0x93,0xb3,0xe7,0x63,0x9f,0xcf,0xfb,0xbf,0x58,0xcc,0x29,0xd0,0xd2,0x59,0xae,0x6d,
0xdb,0x8b,0x4b,0x4b,0x43,0x29,0x73,0xe7,0xce,0x2f,0x9b,0x37,0x6f,0xe1,0xb6,0xd2,
0xd2,0xd0,0x1c,0xdb,0xb6,0xaf,0x91,0x52,0xe6,0x6a,0xbb,0xcb,0x28,0x20,0x53,0x8,
0xc1,0xcc,0x99,0x73,0xc5,0xcc,0x99,0x73,0xd8,0xbd,0x3b,0x37,0x5e,0x72,0x94,0xa8,
0xe4,0xe0,0x57,0xa9,0x3e,0x16,0x69,0x30,0x2a,0x66,0xee,0x3,0xed,0x79,0x6c,0x28,
0xa4,0xa2,0xc2,0x24,0x36,0x1,0xdb,0x8c,0xb1,0xba,0x6e,0x63,0xb5,0xf,0x15,0x9c,
0x57,0x1c,0xef,0x85,0x88,0x17,0xab,0x35,0x89,0xd,0xaa,0xf2,0xbd,0xce,0xda,0x30,
0xda,0xa6,0xba,0x83,0xfa,0xfd,0xfe,0xce,0xa8,0x8,0xeb,0x87,0xf5,0xeb,0x91,0x78,
0xf,0x89,0x6b,0xf7,0x10,0x42,0x8c,0x1,0xa6,0xa4,0xa6,0xa6,0x6c,0xef,0xdc,0xb9,
0xe3,0xd6,0xac,0xac,0xe,0xdb,0x80,0x35,0x42,0x88,0xdf,0x56,0x3d,0x66,0x46,0x46,
0x9a,0xad,0xd,0xc3,0xab,0xdb,0xb4,0x69,0xbd,0xb3,0x4b,0x97,0xac,0xad,0x9d,0x3b,
0x77,0xdc,0xe6,0xf7,0xfb,0x36,0x3,0x77,0x5,0x2,0x81,0x7d,0x62,0x8f,0x2,0x1,
0xbf,0x1f,0x95,0x5c,0x9a,0x73,0xc5,0x15,0x17,0x49,0xe5,0xb9,0xba,0x5d,0xfe,0xed,
0x6f,0x77,0xca,0x8c,0x8c,0x34,0x9,0x4c,0xf5,0x78,0x3c,0x3,0xaa,0x15,0x81,0x3d,
0x9e,0x5e,0xc0,0x67,0xb6,0x6d,0x15,0x5e,0x73,0xcd,0xe5,0x72,0xd5,0xaa,0x2f,0xe5,
0xae,0x5d,0xab,0xe4,0xbc,0x79,0x1f,0xcb,0x27,0x9e,0xb8,0x4f,0x1e,0x73,0xcc,0x51,
0x12,0x58,0x0,0x9c,0x1e,0x8,0x4,0x6a,0x92,0x98,0x2f,0x6,0xd6,0x9d,0x77,0xde,
0xe9,0xf2,0x96,0x5b,0x7e,0x23,0x6f,0xbe,0xf9,0xd7,0x72,0xcc,0x98,0x93,0xa5,0xc7,
0xe3,0x29,0x40,0x45,0x4,0xf,0xa8,0xe1,0x7b,0xfd,0x80,0xf9,0x43,0x87,0xe,0x92,
0x8f,0x3d,0xf6,0x37,0x39,0x6f,0xde,0xc7,0x32,0x27,0x67,0xb5,0xfc,0xfa,0xeb,0x29,
0xf2,0xe5,0x97,0x9f,0x94,0xc3,0x87,0x1f,0x27,0x51,0x35,0x9a,0xaf,0x4e,0x4d,0x4d,
0xaa,0x2e,0x1e,0x27,0xb,0x98,0xd2,0xa6,0x4d,0xc6,0xb6,0xc1,0x83,0x7,0xc8,0x47,
0x1e,0xb9,0x4f,0x4e,0x98,0x70,0x87,0xbc,0xf2,0xca,0x8b,0x65,0x72,0x72,0x52,0x89,
0xcf,0xe7,0x9d,0x4d,0x35,0x31,0x48,0x81,0x80,0xbf,0x23,0xf0,0x9f,0x40,0xc0,0xbf,
0xbb,0x47,0x8f,0xae,0x5b,0xdb,0xb4,0x69,0xbd,0x13,0x95,0x2a,0x73,0xad,0x65,0x59,
0x1d,0x89,0x8b,0x8a,0xf6,0xf9,0x7c,0x1,0xed,0x71,0x7d,0x37,0x29,0x29,0xb8,0xa9,
0x73,0xe7,0x8e,0xdb,0xb2,0xb2,0xda,0x6f,0xb3,0x2c,0x6b,0x3d,0x70,0x8b,0x65,0x59,
0x55,0x2b,0x40,0x8e,0xd0,0x73,0xe0,0x61,0x1d,0xf2,0xf0,0xbb,0x40,0x20,0x50,0x53,
0xc,0x96,0x5f,0xdb,0x78,0x3a,0x57,0x33,0xe7,0x1e,0x40,0x15,0xc9,0x97,0x35,0xbc,
0xea,0x6a,0x84,0xd9,0xa4,0x8d,0xd5,0xa2,0x81,0x88,0xa8,0xb,0x2a,0x25,0x62,0x73,
0x3,0x13,0xd1,0x1c,0x54,0x19,0x89,0xda,0x70,0x17,0xf0,0x27,0x2a,0x7b,0x87,0xc7,
0x63,0xbb,0x36,0xc6,0xbe,0x1c,0x67,0xf,0x89,0x55,0x91,0x18,0x85,0x7e,0xcf,0xfd,
0x7d,0x49,0x9c,0x5a,0x55,0xbb,0x91,0xca,0xb2,0x5a,0x3b,0x8e,0x33,0x3a,0xee,0x39,
0x17,0x69,0x77,0xf1,0x8f,0x90,0x9c,0x9c,0x64,0x97,0x96,0x86,0x4e,0x60,0xdf,0x48,
0xdd,0x90,0xc7,0xe3,0x99,0x13,0x8d,0x46,0xf3,0x75,0xa4,0x73,0xbc,0x34,0x87,0x7e,
0xc6,0x67,0x55,0x91,0x6c,0x77,0x7b,0x3c,0xd6,0xcd,0xd1,0xa8,0xb3,0xd1,0xb6,0xed,
0xea,0xa,0xe5,0xa7,0x9,0x21,0x86,0x48,0x29,0x47,0xf8,0x7c,0xbe,0x5b,0x86,0xe,
0x1d,0xdc,0xba,0x5f,0xbf,0x5e,0xac,0x5c,0xf9,0x1d,0xf3,0xe7,0x2f,0xde,0x83,0x4a,
0xfa,0x7c,0x5c,0x1b,0x5a,0xab,0x9e,0x2f,0x1e,0x57,0x1,0xbf,0x14,0xc2,0xf2,0x2b,
0x69,0xcb,0xa9,0x40,0x25,0xd9,0xbe,0x4b,0xd,0x5d,0x36,0xd2,0xd3,0xd3,0xac,0xc2,
0xc2,0xa2,0xb1,0x9a,0xc8,0x87,0xc,0x1f,0x7e,0x5c,0xeb,0x1,0x3,0xfa,0xb1,0x66,
0xcd,0xf,0x2c,0x5c,0xb8,0x78,0x47,0x24,0x12,0xdd,0xd,0x3c,0x99,0x94,0x94,0xfc,
0x7a,0x28,0x54,0x1a,0xd3,0x11,0xdc,0x55,0x9f,0x69,0x3f,0xc7,0x71,0x8e,0xd5,0x86,
0x70,0x4f,0x9c,0xda,0xf6,0x19,0x2a,0xef,0x6b,0x41,0x95,0xcf,0xe3,0x38,0xe,0x96,
0x65,0x75,0x72,0x1c,0x67,0x94,0x56,0xdb,0xbc,0xc0,0xc6,0xa4,0xa4,0xe0,0xd7,0xa1,
0x50,0x59,0xb5,0xe9,0x21,0xb6,0x6d,0x77,0x8c,0xc5,0x62,0x27,0xe8,0x73,0x38,0x7a,
0x91,0x7f,0x56,0xcf,0xb9,0x79,0x14,0x2a,0x98,0x35,0x4c,0x65,0x42,0xad,0x3b,0x8f,
0x9c,0x2a,0x73,0xcb,0xd6,0x1b,0x6a,0x77,0xed,0xa1,0xad,0x4a,0xc0,0x45,0x9a,0x34,
0x9f,0xd1,0x1b,0x7c,0x6d,0x44,0xf4,0x28,0xaa,0x86,0xf9,0xe4,0x6,0x26,0xa2,0xab,
0x51,0x49,0xb9,0xdf,0x18,0x22,0xaa,0x3f,0x11,0x9,0xe0,0xe,0x60,0x60,0x35,0x86,
0x3e,0x3f,0xca,0x7d,0x5e,0xaa,0xc5,0xdd,0xaa,0xcf,0xc3,0xd,0xd7,0x77,0xdb,0x56,
0xfb,0x80,0x19,0x5a,0x92,0x92,0x75,0x3c,0x3f,0xd7,0x58,0x3c,0x95,0x7d,0xdb,0x22,
0x7b,0x6b,0x70,0x12,0xc4,0xd8,0xcf,0x62,0x62,0x7e,0xbf,0xcf,0x53,0x51,0x11,0x1e,
0x10,0x7f,0x1d,0x96,0x65,0xe5,0x3b,0x8e,0xb3,0xc9,0xb2,0x44,0x8d,0x46,0x5d,0x77,
0xe7,0xf,0x87,0xc3,0xd7,0xa0,0x2,0x38,0x4b,0xb5,0x61,0x75,0xae,0x9e,0xc4,0x9b,
0x81,0x68,0x2d,0x24,0x84,0xd7,0xeb,0xf5,0x46,0x22,0x91,0xde,0x71,0xb,0xa7,0x42,
0x4a,0xb9,0xba,0x3a,0x23,0x74,0x15,0x42,0xf3,0xa0,0xdc,0xeb,0xe7,0x6a,0xd5,0xb9,
0x5c,0x7b,0x83,0x3e,0x46,0x95,0x15,0x59,0x3,0x84,0xab,0x3b,0x77,0x95,0xf7,0x6,
0xc4,0x49,0x32,0x32,0x10,0x8,0xac,0x28,0x2f,0x2f,0xdf,0xdf,0xf6,0x24,0x5e,0x6a,
0xae,0x94,0x10,0x9f,0xf7,0x96,0xa9,0x4d,0xe,0x75,0x55,0x6c,0x88,0xe9,0x85,0x3a,
0x4e,0x9b,0x27,0x22,0xfb,0x1a,0xcd,0xab,0x9d,0x5f,0x1,0xbd,0x49,0x2e,0xa7,0xb2,
0x5c,0x89,0x8c,0x73,0xb8,0x2c,0xd5,0x9b,0xe5,0x12,0x6a,0xef,0xca,0xdb,0xa4,0x89,
0xa8,0xb9,0xe7,0x9a,0xb9,0x83,0xfa,0xb0,0x1e,0xec,0x18,0xfb,0xe6,0x4,0xd9,0xc0,
0xa9,0xb5,0xa8,0x12,0x65,0xa8,0xd8,0x92,0xf3,0xf4,0xe0,0x16,0xa3,0x82,0xfc,0x4e,
0xac,0x72,0x2c,0x6a,0x98,0xc8,0xdd,0xf5,0xa0,0x6d,0xa8,0xc5,0x1e,0x27,0xe2,0x26,
0xea,0x6a,0xe0,0xb,0x7d,0xde,0xba,0x32,0xf8,0x7d,0xba,0x73,0xeb,0xd2,0xf8,0x7f,
0x38,0x8e,0xa3,0x7f,0xd6,0x9e,0x4,0x1f,0xe,0x87,0xcb,0x35,0x99,0x4f,0xa4,0xb2,
0x54,0x48,0x71,0x3c,0x59,0xd7,0x44,0x42,0x42,0x8,0x22,0x91,0x48,0x84,0xca,0x4a,
0x0,0x7b,0xdf,0xaf,0x89,0xbc,0xe2,0xde,0x8b,0xea,0xe7,0xf1,0x94,0xb6,0x79,0xb8,
0x9,0xa7,0x5,0xf1,0x8b,0xac,0x8e,0x63,0x40,0x95,0xe0,0xbe,0xf2,0xf2,0xf2,0x76,
0x7a,0x3,0xc,0x53,0x77,0x9,0x96,0xa3,0xf5,0x18,0x26,0x51,0x7b,0x21,0x38,0x97,
0x5c,0x7a,0x68,0xb5,0x72,0x23,0xfb,0x26,0xb7,0x56,0x77,0x7c,0xaf,0xbe,0xbf,0x25,
0x5a,0x6a,0xf4,0xa3,0xa2,0xcd,0x97,0xf3,0xe3,0xbc,0x40,0x17,0xab,0x50,0xa5,0x61,
0xab,0x9b,0x9f,0x25,0x71,0x1b,0x54,0xb3,0x2d,0x1e,0xd7,0x12,0x88,0xc8,0x9d,0xfc,
0x35,0x15,0x44,0xfb,0x40,0xbf,0x6a,0xc2,0x19,0x5a,0x6a,0x7a,0x4f,0xef,0xda,0xc3,
0xf4,0xe4,0x72,0xea,0x41,0x44,0x3,0xb4,0x11,0x32,0xa5,0x1e,0x93,0xbd,0x35,0xaa,
0x79,0xde,0xd,0x5a,0x1c,0xaf,0x8b,0x88,0xfc,0x5a,0xd,0x99,0x1b,0x47,0x1e,0xb5,
0x9d,0xa3,0x50,0x4f,0xf6,0xbc,0x2a,0xc7,0xc9,0xdf,0x6f,0x66,0x97,0xf2,0x80,0xfe,
0x57,0x5,0x4e,0x1d,0xce,0x8c,0x36,0xfa,0xd9,0xa5,0xd7,0xf1,0x1c,0x5c,0xc9,0x61,
0xa4,0x1e,0x9b,0xba,0xca,0x7d,0x78,0xf4,0x31,0xb7,0x69,0x83,0x6b,0x5d,0xcf,0x4d,
0x6a,0x83,0xfd,0xbb,0x5a,0x12,0xf6,0xd6,0xf2,0x39,0x57,0x62,0xf9,0x4e,0x5f,0xff,
0x68,0x54,0x60,0xe7,0x1b,0x5a,0x92,0x36,0x68,0xe1,0x44,0x74,0x30,0xf0,0x6b,0x52,
0x48,0xd6,0x84,0xf6,0xd5,0x7e,0x7c,0xf7,0x2b,0x3d,0x81,0xeb,0xb3,0x28,0x53,0x81,
0xe1,0xa8,0xf2,0xb6,0xd1,0x7a,0x90,0x5c,0xa6,0x36,0x70,0x9f,0x5e,0xf,0x22,0x72,
0xd5,0xc4,0x15,0x7a,0x57,0xf7,0xd7,0xb1,0xf0,0x3c,0x7a,0xf1,0x3d,0xab,0x17,0xac,
0xef,0x20,0x9f,0x61,0x58,0x1b,0x64,0xc7,0xa3,0x1c,0x1,0x75,0xdd,0x5f,0x85,0x96,
0x26,0x7,0xea,0x73,0xcb,0x7a,0x10,0x91,0x40,0x35,0x4e,0xc8,0xad,0x83,0x2c,0xdc,
0xa,0x93,0x5f,0x53,0xd9,0xa8,0xb0,0x3e,0x26,0x8a,0xfc,0xfd,0x94,0x48,0xba,0x52,
0xd9,0x15,0xd5,0x6f,0x96,0x91,0x21,0xa2,0xc3,0xad,0x16,0xee,0xa9,0xe7,0x67,0xb,
0xd8,0xff,0xe,0x9e,0xf3,0xe2,0xec,0x16,0xb5,0x2d,0x12,0xb,0x55,0x99,0xf2,0x26,
0x54,0x92,0x67,0x5d,0xe5,0x60,0x2d,0x6d,0xb,0x38,0x55,0x5f,0xff,0xc1,0xce,0x93,
0xa8,0x96,0xf8,0x6,0xa3,0x4a,0x72,0x38,0x75,0x5c,0x83,0xa3,0xa5,0x96,0x7f,0x6a,
0xb5,0xc5,0xa9,0xc3,0x16,0x87,0xb6,0xaf,0x4c,0x35,0x53,0xce,0x10,0x91,0xc1,0xa1,
0xc7,0xfe,0x2c,0xbc,0x64,0x54,0xc5,0xc6,0xfa,0x14,0x56,0x8b,0xa0,0x72,0x9a,0x6,
0xb1,0x6f,0x31,0xb7,0x3,0x25,0x63,0xa1,0x25,0x8a,0x49,0xc0,0x34,0x2a,0x8d,0xc4,
0xb5,0x21,0xa0,0xed,0x2c,0xa5,0x66,0x98,0xd,0x11,0x19,0x34,0x1f,0x94,0xa2,0xec,
0x49,0xf5,0xc5,0x3a,0xaa,0xf,0x79,0x38,0x18,0x94,0x18,0x62,0x31,0x30,0x44,0x64,
0xb0,0xbf,0xc4,0x65,0x48,0xc3,0xe0,0x90,0xc0,0x32,0x8f,0xa0,0xde,0x70,0xcc,0x23,
0x30,0xd8,0xcf,0xf9,0x62,0x7a,0xb5,0x19,0x89,0x28,0x61,0x70,0x8d,0xb7,0x29,0xd4,
0x50,0xea,0xd5,0xc0,0xa0,0x1a,0x15,0x34,0x85,0xea,0x9b,0x13,0x18,0x18,0x22,0x3a,
0xe0,0x9d,0xcd,0x8b,0x4a,0x20,0xbd,0x83,0xca,0x48,0x6b,0x3,0x83,0x9a,0x36,0x2e,
0x77,0xf3,0x6a,0x87,0xaa,0x21,0x65,0x60,0x88,0x28,0x21,0xf0,0xa2,0xa2,0x9d,0xff,
0x85,0x32,0xe2,0x26,0x99,0x47,0x62,0x50,0xb,0x11,0x9,0x54,0x50,0xea,0xa9,0xa8,
0x24,0x54,0xb3,0x71,0x19,0x22,0x4a,0x8,0x2c,0x54,0x3c,0xcd,0x17,0xa8,0xfc,0x1a,
0xf3,0xdc,0xc,0xea,0x42,0x14,0x15,0x55,0x7d,0x6,0xd,0x93,0xd3,0x69,0x88,0xa8,
0x85,0xab,0x69,0xee,0x24,0x33,0x30,0xa8,0xaf,0x74,0x64,0x50,0x8f,0x9d,0xde,0xc0,
0xc0,0xc0,0xc0,0x10,0x91,0x81,0x81,0x81,0x51,0xcd,0xc,0xe,0xc,0x5d,0x51,0xad,
0x7d,0x1c,0x54,0x81,0xb5,0x3d,0x18,0x57,0x6d,0x4b,0xdd,0xcc,0xb3,0x50,0x49,0xc8,
0x7b,0xa8,0xec,0x78,0x62,0x60,0x24,0xa2,0x43,0x82,0xbb,0x50,0xc5,0xa1,0x66,0xa0,
0xaa,0x24,0x1a,0x52,0x6f,0x79,0x10,0xa8,0x52,0x2f,0x6f,0xa2,0xd2,0x67,0x9e,0x47,
0x35,0x92,0x34,0x30,0x44,0x74,0xc8,0xd0,0x1a,0x15,0xdc,0x98,0x89,0x72,0xe7,0x1b,
0xa3,0x64,0xcb,0x83,0x17,0x55,0xb3,0xfa,0x64,0x54,0x0,0xe3,0x10,0x1a,0xbe,0x66,
0xb4,0x51,0xcd,0xc,0xf6,0xc1,0xf,0xa8,0xb2,0xa6,0xe5,0xa8,0x1a,0x38,0x46,0x2d,
0x6b,0x79,0x8,0xa3,0x2a,0x5c,0x1e,0xd,0xfc,0x4,0x55,0xe7,0xfb,0x69,0xf3,0x58,
0xc,0x11,0x1d,0x4a,0x91,0xfc,0x4f,0xfa,0x65,0xd0,0xb2,0x91,0xcf,0xbe,0x1d,0x6d,
0xd,0x8c,0x6a,0x76,0xc8,0x60,0xa4,0x1f,0x3,0x3,0x43,0x44,0x6,0x6,0x6,0x86,
0x88,0xc,0xc,0xc,0xc,0xc,0x11,0x19,0x18,0x18,0x18,0x22,0x32,0x30,0x30,0x30,
0x30,0x44,0x64,0x60,0x60,0x60,0x88,0xc8,0xc0,0xc0,0xc0,0xc0,0x10,0x91,0x81,0x81,
0x81,0x21,0x22,0x3,0x3,0x3,0x3,0x43,0x44,0x6,0x6,0x6,0x86,0x88,0xc,0xc,
0xc,0xc,0xc,0x11,0x19,0x18,0x18,0x18,0x22,0x32,0x30,0x30,0x30,0x30,0x44,0x64,
0x60,0x60,0x60,0x88,0xc8,0xc0,0xc0,0xc0,0xc0,0x10,0x91,0x81,0x81,0x81,0x21,0xa2,
0x86,0xb9,0x8e,0xe1,0xc0,0x3b,0xc0,0x7d,0xfa,0x3d,0x53,0x7a,0xd5,0xc0,0xa0,0x85,
0xa0,0xb1,0x54,0x68,0x6c,0x7,0x3c,0x84,0x6a,0xd1,0x5b,0x8c,0x2a,0x3c,0x76,0xb7,
0x19,0x1e,0x3,0x3,0x43,0x44,0x87,0x12,0x5e,0x2a,0xbb,0x1f,0xa4,0xa2,0x3a,0x23,
0x18,0x18,0x18,0x24,0xe,0x59,0x42,0x88,0x33,0xa5,0x94,0x5d,0x81,0x3c,0x21,0xc4,
0x2b,0x52,0xca,0x22,0x43,0x44,0xfb,0x22,0x2,0xac,0x44,0x15,0xa2,0xf,0x3,0xeb,
0xcc,0xbc,0x31,0x30,0x48,0x28,0x3a,0x4b,0x29,0xaf,0x1f,0x30,0xa0,0xdf,0xc0,0xcd,
0x9b,0xb7,0x59,0xc5,0xc5,0x25,0xc9,0xc0,0x13,0x40,0xc8,0x10,0x51,0x25,0x76,0x3,
0x57,0xe9,0xeb,0x91,0x40,0x85,0x99,0x37,0x6,0x6,0x9,0xd7,0x3a,0x52,0x4e,0x38,
0x61,0x88,0xbf,0xb0,0xb0,0x88,0xe2,0xe2,0x92,0xa3,0x1,0xbf,0x21,0xa2,0x7d,0xe1,
0xa0,0xba,0x21,0x18,0x18,0x18,0x34,0xc,0x16,0x2,0x53,0xde,0x78,0xe3,0xbd,0xac,
0x70,0x38,0x5c,0xe,0xfc,0x7,0x30,0xaa,0x99,0x81,0x81,0xc1,0x21,0x45,0x58,0x8,
0xf1,0x40,0x59,0x59,0xf9,0x8b,0x40,0x14,0xd5,0x1a,0x3b,0x66,0x88,0xc8,0xc0,0xc0,
0xe0,0x90,0x42,0x4a,0x99,0xf,0x14,0xb8,0x7f,0x36,0xa6,0x6b,0x6b,0x8,0x22,0x12,
0xfa,0x26,0x1b,0xfa,0x46,0x2d,0x4c,0x40,0xa6,0x81,0xc1,0x7e,0xf3,0x51,0x63,0xbc,
0xa8,0x86,0x58,0xc8,0x51,0xe0,0x8,0x54,0x4f,0xf8,0x86,0xc2,0xc5,0xc0,0x65,0x46,
0xa2,0x33,0x30,0x38,0x6c,0x64,0x96,0xd0,0x80,0xe3,0x86,0x20,0xa2,0x19,0x40,0x77,
0xe0,0x79,0x60,0x30,0xd0,0x2a,0x41,0xe7,0x11,0xfa,0xd5,0xe,0x38,0x9,0xf8,0xa,
0x58,0x66,0xe6,0x84,0x81,0xc1,0x5e,0x72,0xb0,0x50,0xde,0xb1,0x86,0x44,0x5b,0xa0,
0x1f,0x9,0xb6,0x2f,0x35,0x4,0x11,0x7d,0xa1,0x25,0x96,0x4c,0xe0,0x75,0x60,0x22,
0x70,0x6,0x90,0x84,0x72,0x17,0xfa,0xf7,0xf3,0xfa,0xfc,0x80,0xd,0x1c,0x5,0xdc,
0x6,0xbc,0x7,0x74,0x5,0x6e,0x6,0x96,0x98,0xf9,0x67,0x60,0x0,0xc0,0x36,0xa0,
0x14,0x38,0x17,0x68,0xdd,0x40,0xe7,0x48,0x6,0x4e,0x46,0xc5,0xfa,0x7d,0x97,0xc8,
0x3,0x37,0x94,0x6a,0xb3,0x0,0xf8,0x9,0x30,0x1b,0xe8,0xf,0x1c,0xab,0x25,0x98,
0x7c,0x54,0xf0,0xe2,0x1f,0xeb,0x21,0xda,0x49,0x60,0x20,0x2a,0xbe,0xc8,0x6,0x8e,
0x4,0x7a,0x0,0xf3,0x81,0xa7,0x81,0xb5,0x66,0xee,0x19,0x18,0xec,0xc5,0xd7,0x28,
0x97,0xfc,0x1f,0xf4,0x3a,0x7b,0x4,0xd8,0x91,0xc0,0xe3,0xb7,0x6,0x46,0x0,0x37,
0x0,0x37,0x92,0x60,0xd7,0x7f,0x43,0xda,0x58,0x36,0x0,0x85,0xc0,0x2e,0x60,0x92,
0xbe,0x78,0xbf,0x16,0xed,0xce,0xab,0x43,0xcf,0x74,0xc5,0x4c,0x5b,0x8b,0x80,0x49,
0xc0,0xfd,0xc0,0x4,0xe0,0x5a,0xc0,0x17,0xf7,0x3f,0x3,0x3,0x3,0x25,0xd,0xbd,
0xc,0xf4,0x2,0x7e,0xa7,0x89,0xe3,0x4e,0x94,0xcd,0x76,0x8f,0x96,0x62,0xe,0x4,
0xa9,0x40,0x6f,0xe0,0x4b,0x2d,0x75,0xdd,0xad,0x5,0x8c,0x84,0xa2,0xa1,0x8d,0xbd,
0x42,0x9f,0xe3,0x31,0x54,0x52,0x2b,0xc0,0xb3,0xc0,0x9,0x9a,0x44,0x44,0x2d,0x24,
0x14,0x5,0xde,0x4,0x9e,0xac,0xf2,0x50,0x84,0xfe,0xbf,0x34,0x73,0xcf,0xc0,0x60,
0x1f,0xac,0x3,0x2e,0x1,0xee,0x0,0xee,0xd5,0xda,0x44,0x4,0xb8,0x49,0x6b,0x24,
0xe5,0xa8,0x2c,0x86,0x18,0x35,0x9b,0x65,0xdc,0x8d,0xbf,0x17,0x50,0x6,0xfc,0x9,
0xb8,0x12,0x58,0x84,0xb2,0xc9,0xbe,0x4d,0xa5,0x67,0xbc,0xc9,0x10,0x91,0x8b,0x40,
0x1c,0x23,0x8f,0x37,0xf3,0xc5,0xc0,0xa0,0xc1,0x90,0x6,0x74,0x4,0xbe,0x5,0xa6,
0xa2,0x1c,0x3b,0x8f,0xa1,0xec,0x3b,0xb,0x81,0xe9,0x5a,0x7a,0xaa,0x49,0x1b,0x71,
0x80,0xe,0xc0,0xaf,0xf5,0xdf,0xf3,0x81,0x7b,0x80,0x47,0xf5,0x77,0x69,0x8,0x21,
0xc0,0xb8,0xbf,0xd,0xc,0x9a,0x17,0xa4,0x26,0x9d,0x6f,0x80,0xbf,0x6a,0xb5,0x2a,
0x4b,0x13,0xd4,0x39,0x5a,0x1b,0xa9,0xcb,0x3e,0xbb,0x5,0x65,0x94,0x4e,0x47,0xd9,
0x7b,0x4b,0x80,0x63,0xe,0x42,0xbd,0x33,0x44,0x64,0x60,0xd0,0x2,0x11,0xd3,0x24,
0x92,0xa6,0xd5,0x35,0xb7,0x9a,0xc5,0x34,0xea,0xe7,0xb5,0x8e,0x68,0x35,0xae,0xaa,
0xa4,0xd4,0x60,0x30,0x44,0x64,0x60,0xd0,0x7c,0x25,0xa3,0xaa,0xe4,0x11,0x6e,0x48,
0xa9,0xe6,0x60,0x60,0x52,0x24,0xc,0xc,0xc,0xc,0x11,0x19,0x18,0x18,0x18,0x18,
0x22,0x32,0x30,0x30,0x30,0x44,0x64,0x60,0x60,0x60,0x60,0x88,0xc8,0xc0,0xc0,0xc0,
0x10,0x91,0x81,0x81,0x81,0x41,0x43,0x13,0x51,0xa2,0x73,0xc1,0x84,0x3e,0x66,0x31,
0xd,0x1c,0xd7,0x60,0x60,0xd0,0x44,0xe1,0xd0,0x70,0xe9,0x4f,0xd,0x96,0x56,0x95,
0xe8,0x38,0xa2,0xce,0xc0,0xaf,0x50,0x39,0x61,0x3b,0x51,0x11,0x9d,0xdb,0x12,0x78,
0xfc,0x8,0x90,0x2,0xfc,0x12,0x15,0x25,0xea,0xe6,0xcc,0x44,0x50,0xb9,0x69,0x1e,
0x54,0xa2,0xed,0x8b,0x98,0x62,0xfc,0x6,0xcd,0x5b,0x80,0xf0,0x56,0xb3,0x7e,0x23,
0xa8,0x64,0xf0,0x86,0x82,0x1b,0x91,0x9d,0x8c,0xca,0x43,0x4b,0x98,0x30,0x90,0x68,
0x22,0x2a,0x41,0x85,0x84,0x3b,0xc0,0xef,0x51,0x35,0x89,0xb6,0x26,0xf0,0xf8,0x65,
0xa8,0x88,0xd1,0x6e,0xa8,0x1c,0x98,0x2d,0xfa,0xe1,0x74,0x44,0x45,0x8c,0x9e,0x8d,
0x6a,0xce,0xf8,0xbe,0x21,0x22,0x83,0x66,0x8a,0x2c,0xe0,0x1f,0x9a,0x88,0x76,0xe9,
0x35,0xec,0x26,0xa1,0x5a,0xa8,0xac,0xfb,0x91,0xc0,0xc7,0x9,0xd6,0x1a,0x8a,0x81,
0xa1,0xa8,0xc,0xff,0x1c,0xe0,0x19,0xbd,0xfe,0x1a,0x25,0x11,0x15,0xa0,0x12,0xed,
0x46,0xa2,0xca,0xc5,0xc6,0x33,0x75,0x22,0x90,0x89,0xaa,0x6f,0x54,0x0,0x4c,0x8e,
0x93,0xb6,0x4e,0x45,0x55,0x83,0xf4,0xe9,0x7b,0x32,0xb6,0x2f,0x83,0xe6,0x8a,0x54,
0x54,0xa1,0xc1,0x49,0xa8,0x2a,0xa8,0x29,0xa8,0xa4,0xf2,0xa8,0x26,0xa9,0xff,0x43,
0x55,0x31,0x4d,0xa4,0x59,0xc4,0x7,0x5c,0xae,0xc9,0x6f,0x13,0xf0,0x49,0xa2,0x37,
0xfa,0x86,0x5a,0xb0,0xc9,0x71,0x62,0xdc,0x11,0xc0,0xf0,0x4,0x9d,0xeb,0x42,0xfd,
0x40,0x2,0x96,0x65,0x5,0xe2,0xde,0x5f,0xad,0x7,0x66,0x71,0x2,0x49,0xcf,0xc0,
0xa0,0x31,0x42,0x6a,0xf3,0xc3,0x66,0x54,0xe1,0x40,0x1f,0xf0,0x19,0x30,0x47,0xff,
0xdc,0xa4,0x3f,0x77,0x3a,0x70,0x62,0x82,0xce,0xd9,0x1e,0xb8,0xc7,0xb2,0x44,0x11,
0x2a,0x6f,0x6d,0xa1,0x96,0x90,0x1a,0x3d,0x11,0x7d,0xaa,0xc5,0x37,0x80,0x36,0xa8,
0x92,0x2,0x7,0x2a,0x26,0xba,0x84,0x36,0x30,0x23,0x23,0xed,0xfa,0x5e,0xbd,0xba,
0x5b,0x9d,0x3b,0x67,0x6d,0x76,0x1c,0xa7,0x30,0xee,0x33,0xbb,0xb5,0x98,0xb8,0xcb,
0xcc,0x53,0x83,0x16,0x0,0xb7,0xce,0x57,0x51,0xdc,0x3a,0x73,0x35,0x92,0xaf,0xf4,
0xfb,0x47,0xe8,0x75,0xd7,0xfe,0x60,0x55,0xc1,0xcc,0xcc,0xd6,0xaf,0xde,0x7c,0xf3,
0xaf,0xfc,0x8e,0x23,0x57,0xeb,0xcd,0x3e,0xe1,0x68,0x48,0x15,0xe6,0xa,0x60,0xbd,
0xfe,0xfd,0x22,0xe0,0xbe,0x3,0x7c,0xe0,0x12,0x18,0x6,0xbc,0x39,0x7a,0xf4,0xc8,
0x63,0xce,0x3d,0x77,0xec,0x7b,0xdb,0xb6,0xed,0x78,0xba,0xca,0x0,0xb8,0xb0,0xcd,
0x1c,0x35,0x68,0x1,0xb0,0x51,0xd9,0xf1,0x93,0xd9,0xb7,0x76,0x74,0x58,0x9b,0x46,
0xa6,0xea,0xbf,0x2f,0x0,0x1e,0x47,0x39,0x91,0xf6,0x7f,0xf1,0x9,0x91,0x1,0xbc,
0x99,0x9b,0xbb,0xe7,0x27,0xcb,0x96,0xad,0x46,0x4b,0x41,0xdf,0x37,0x35,0x22,0xda,
0x1a,0x47,0x16,0x7e,0xe0,0x56,0x54,0xb9,0xd8,0xfd,0x15,0x43,0x7,0x1,0x2f,0x5c,
0x75,0xd5,0xa5,0x3,0x7b,0xf7,0xee,0x2e,0x9f,0x7a,0xea,0xc5,0xf5,0x5a,0x2c,0x35,
0x30,0x68,0xe9,0x2a,0x1a,0xfc,0xd8,0x16,0x94,0xab,0xd7,0x87,0xa3,0xa5,0xa6,0xcb,
0x81,0xbb,0xb4,0x66,0xb2,0x3f,0xf0,0x49,0x29,0x9f,0xf7,0xfb,0xfd,0xa7,0xfe,0xf7,
0xbf,0xcf,0x30,0x7b,0xf6,0x57,0xdf,0x6a,0xe1,0xa2,0x49,0x22,0x5,0x98,0xeb,0xf3,
0xf9,0x64,0xdf,0xbe,0xbd,0xa4,0x6d,0xdb,0xc5,0xc0,0x75,0xa8,0x62,0xfa,0x75,0x21,
0x9,0x18,0x5,0xcc,0xbe,0xf7,0xde,0x5b,0xe5,0xbf,0xff,0xfd,0x77,0x69,0x59,0xe2,
0x1d,0x54,0x1,0xfd,0x9a,0xf0,0x67,0x4d,0x80,0x7d,0x12,0x78,0xf,0x67,0x3,0xdb,
0x51,0x76,0xa8,0x61,0x66,0xfe,0x1b,0xec,0x7,0x7e,0xa,0xac,0x41,0xd5,0x68,0x4f,
0x14,0xfa,0xe8,0x39,0xfe,0xe7,0x5a,0x3e,0xd3,0xb,0x55,0x66,0x59,0x5a,0x96,0x90,
0x42,0x88,0x12,0x54,0xc3,0x89,0x7e,0xb6,0x6d,0x7b,0xea,0xb9,0x6e,0x9f,0xcf,0xc8,
0x48,0x8b,0xfe,0xe5,0x2f,0xbf,0x93,0x47,0x1d,0xd5,0x27,0xf,0x8,0x36,0xe4,0x83,
0x6a,0xe8,0x7a,0x44,0x25,0xc0,0x58,0xbf,0xdf,0xf7,0xda,0x90,0x21,0xc7,0x5c,0x72,
0xf4,0xd1,0xfd,0x52,0x36,0x6f,0xde,0xfe,0xe8,0x82,0x5,0xdf,0x96,0x1,0xcf,0xd9,
0xb6,0xfd,0x61,0x2c,0x16,0x2b,0x88,0x53,0xa9,0xa4,0x10,0x2,0x29,0x65,0x2f,0x60,
0x7c,0xef,0xde,0x3d,0x6,0xdd,0x70,0xc3,0x55,0x9d,0xba,0x74,0xe9,0xc4,0x13,0x4f,
0x3c,0xbf,0xdd,0x71,0xe4,0x5b,0xa8,0xa2,0xfc,0xe8,0xcf,0x99,0xa9,0x6e,0x60,0xf0,
0x63,0xfc,0xa0,0xa5,0xa0,0xf2,0xa4,0xa4,0xe0,0xcf,0x4f,0x3d,0xf5,0xc4,0xe4,0x5d,
0xbb,0x72,0xae,0x5f,0xb8,0x70,0xe9,0x90,0x58,0x2c,0xb6,0x56,0x8,0xf1,0xac,0x6e,
0x3f,0x5d,0x86,0x8a,0xf7,0xeb,0x6,0x58,0x5e,0xaf,0xb7,0x22,0x12,0x89,0x5c,0x6,
0xc,0xba,0xfa,0xea,0x4b,0x2f,0xee,0xd7,0xaf,0x97,0x3d,0x69,0xd2,0x94,0xc8,0xea,
0xd5,0xdf,0x3f,0xa,0x94,0x59,0x96,0xc0,0x71,0x64,0x93,0x24,0x22,0x80,0xb2,0xb2,
0xb2,0xf2,0xeb,0xa7,0x4e,0x9d,0x19,0x3b,0xf1,0xc4,0x61,0x97,0xf,0x1f,0x3e,0x38,
0xf9,0x9c,0x73,0xc6,0x24,0x3f,0xf1,0xc4,0xf3,0xb7,0xe6,0xe5,0x15,0x5c,0xac,0xc9,
0x6a,0x2f,0x11,0x49,0x29,0x69,0xdf,0x3e,0x33,0xed,0xa6,0x9b,0x7e,0xd1,0xab,0x73,
0xe7,0x8e,0x22,0x37,0x77,0xcf,0xee,0x27,0x9e,0x78,0x7e,0xde,0xbc,0x79,0xb,0x27,
0xb,0xc1,0x54,0x29,0x21,0x18,0xf4,0x53,0x56,0x56,0x61,0xa6,0x9b,0x81,0x41,0xcd,
0xd8,0x0,0xdc,0xe6,0x38,0x4e,0x4e,0x5e,0xde,0x9e,0xdf,0xe,0x1d,0x3a,0x28,0xe9,
0xac,0xb3,0x46,0xf,0x7b,0xee,0xb9,0xd7,0x86,0xed,0xde,0x9d,0x3b,0x58,0xab,0x74,
0xbb,0x6c,0xdb,0xfa,0x3e,0x16,0x73,0x4e,0x0,0xec,0x48,0x24,0x12,0x1e,0x3b,0xf6,
0xd4,0x63,0x2e,0xbe,0xf8,0x1c,0x6f,0xf7,0xee,0x5d,0x3d,0x77,0xde,0xf9,0x0,0x8b,
0x16,0x2d,0xfb,0x3d,0x2a,0x66,0xa8,0xc1,0x48,0xe8,0x90,0x10,0x51,0x87,0xe,0x6d,
0xd9,0xb9,0x33,0x67,0x4f,0x7e,0x7e,0xe1,0x35,0x9f,0x7f,0xfe,0x55,0xea,0xac,0x59,
0xce,0xb8,0xeb,0xaf,0xff,0xb9,0xdc,0xb4,0x69,0x61,0x60,0xd1,0xa2,0x65,0xfd,0x76,
0xee,0xdc,0x8d,0x10,0x6e,0x13,0x57,0xa5,0xfa,0xf6,0xe8,0xd1,0x8d,0x8e,0x1d,0x3b,
0x89,0x5b,0x6e,0xb9,0xa3,0xe4,0x83,0xf,0x3e,0x79,0xc1,0xb2,0xec,0x47,0x81,0x12,
0x29,0x95,0x6b,0xde,0x90,0x90,0x81,0x41,0xbd,0x90,0x13,0xa,0x95,0xdf,0xb7,0x72,
0xe5,0xda,0xe9,0x5f,0x7f,0xbd,0xf8,0x8f,0x8f,0x3d,0xf6,0xd7,0xd1,0x9f,0x7d,0xf6,
0xae,0x6f,0xdd,0xba,0x8d,0x3,0x1d,0xc7,0xe1,0xcf,0x7f,0x7e,0xc0,0xf9,0xe1,0x87,
0x8d,0xa3,0x6e,0xbc,0xf1,0x1a,0x6f,0x9f,0x3e,0x3d,0xc5,0xcd,0x37,0xdf,0x25,0xff,
0xf6,0xb7,0x3f,0x8a,0x7b,0xee,0xf9,0x87,0x28,0x2d,0x2d,0xff,0x64,0xf1,0xe2,0xe5,
0xb7,0xa2,0x1c,0x4e,0xcd,0x52,0xf5,0x58,0xe4,0xf1,0x78,0x64,0x5a,0x5a,0xaa,0x1c,
0x36,0x6c,0x90,0xac,0xa8,0xd8,0x2c,0xb,0xb,0xbf,0x97,0xf9,0xf9,0x6b,0x65,0x41,
0x81,0x7a,0xbd,0xfe,0xfa,0xd3,0x12,0x88,0xf8,0xfd,0xde,0x57,0x50,0x2d,0xab,0xf7,
0x22,0x18,0xc,0x60,0x6c,0x44,0x6,0xc6,0x46,0x54,0xab,0x8d,0x8,0xb1,0x6f,0x79,
0xfc,0x54,0xe0,0x45,0xbf,0xdf,0x17,0x1,0xe4,0xa2,0x45,0x9f,0xca,0x50,0x68,0xa3,
0xdc,0xbd,0x7b,0x85,0xdc,0xb9,0x73,0x99,0x2c,0x2d,0x5d,0x2f,0x17,0x2d,0xfa,0x54,
0x6,0x83,0x1,0x99,0x9c,0x1c,0x94,0xb6,0x6d,0x2f,0x74,0xf,0x93,0x95,0xd5,0xa1,
0xd9,0xe,0x8e,0x9b,0x92,0xb1,0xa,0x98,0x2f,0x84,0x70,0x84,0x10,0xe5,0xfa,0x15,
0x16,0x42,0x14,0x8,0x21,0x3e,0xb0,0x6d,0xfb,0xa2,0x3,0x38,0xb6,0x21,0x22,0x3,
0x43,0x44,0x35,0xe3,0x22,0xe0,0x3,0xbd,0xc6,0xc2,0x7a,0xcd,0x55,0xe8,0x9f,0x11,
0x21,0xc4,0x66,0xe0,0xf3,0xc3,0xf1,0xa0,0xe,0x47,0xf1,0x7c,0x9,0x64,0xa3,0x52,
0x35,0xbc,0x52,0xca,0xdf,0x69,0x36,0x9d,0xa8,0xe7,0x0,0x0,0xb,0xb4,0x49,0x44,
0x41,0x54,0x7d,0x55,0xea,0xeb,0xc9,0x5,0x5e,0x89,0xc5,0x62,0xd8,0xb6,0x4d,0x2c,
0x66,0x9a,0xb9,0x1a,0x18,0x24,0x8,0x93,0x80,0x49,0x52,0xca,0x6b,0x51,0xe9,0x52,
0x51,0x2d,0x18,0x38,0x28,0x4f,0xd9,0x47,0xc0,0xf2,0x96,0x42,0x44,0xf1,0x88,0xa0,
0x7a,0x74,0x57,0xb,0x43,0x42,0x6,0x6,0xd,0x82,0x57,0x1a,0xdb,0x5,0x99,0xe4,
0x50,0x3,0x3,0x3,0x43,0x44,0x6,0x6,0x6,0x6,0x86,0x88,0xc,0xc,0xc,0xc,
0x11,0x25,0x18,0x26,0xd4,0xda,0xc0,0xa0,0x9,0xa2,0xb9,0xb4,0x9c,0xe,0xa0,0xc,
0xdf,0xfe,0x43,0x48,0x46,0x41,0x54,0xa1,0x28,0x89,0xca,0x84,0x36,0x75,0x90,0x5a,
0x2e,0x2,0xa8,0xba,0x40,0x11,0x54,0xda,0x84,0x41,0xb,0x25,0xa2,0xd3,0x51,0x89,
0xb4,0xa7,0xe9,0x7b,0x3a,0x14,0x64,0x74,0x29,0x2a,0x4,0x21,0x6,0x7c,0x88,0x2a,
0x16,0x65,0xdc,0x7c,0x2d,0xb,0x2,0x55,0x9a,0xf5,0x2,0xa0,0x2f,0xb0,0xc,0x78,
0xc3,0x3c,0x96,0x96,0x4b,0x44,0xfd,0x51,0xc5,0xf4,0xbb,0xa2,0x6a,0xb2,0x1c,0xa,
0x22,0xba,0x1c,0x55,0xb2,0x13,0x54,0x5c,0xd4,0x12,0x43,0x44,0x2d,0xe,0x36,0x70,
0x12,0xf0,0x4f,0x2d,0x8d,0xcf,0x36,0x44,0x74,0x60,0x68,0x2e,0x36,0xa2,0x27,0x51,
0xe5,0x68,0x9f,0xa1,0x32,0x48,0xab,0xa1,0xf1,0x2a,0xb0,0x42,0x4b,0x42,0xb,0xf5,
0x79,0xd,0x5a,0x16,0x24,0xaa,0x2a,0xe2,0x4a,0x54,0xf4,0xfd,0x46,0xf3,0x48,0x5a,
0xb6,0x44,0x54,0xaa,0x7f,0x16,0xe9,0xc9,0x71,0x28,0x88,0x68,0x22,0x2a,0xa,0xbc,
0x10,0x55,0x3e,0xd3,0x18,0xca,0x5b,0x1e,0x62,0xa8,0x5a,0xd1,0xbf,0x46,0x95,0x66,
0xdd,0x7a,0x88,0xce,0x2b,0x51,0xf6,0xc9,0x3e,0x28,0xbb,0x54,0x93,0x27,0xc0,0xe6,
0x40,0x44,0x9d,0xb5,0x78,0x3c,0x59,0x13,0x90,0x38,0x84,0xe7,0x9e,0x65,0xd6,0xa2,
0x91,0x8a,0x80,0x6f,0xf5,0xb,0x2a,0xcb,0x1b,0x37,0x34,0x1,0x6,0x80,0x3b,0xf4,
0xcf,0xff,0x43,0xd5,0x6d,0x37,0xaa,0xd9,0x61,0xc4,0x60,0xe0,0x39,0x54,0xe5,0xc6,
0xa8,0x91,0x4c,0xc,0x1a,0x1,0x31,0x35,0x34,0x4,0xca,0x3b,0xb7,0x8,0xd5,0x4a,
0x6b,0xb8,0x91,0x88,0xe,0x3f,0xc2,0xa8,0x2a,0x73,0x61,0xb3,0x6,0xc,0xe,0x0,
0x3e,0xfd,0x92,0xa8,0x36,0x58,0x5e,0x54,0x12,0x68,0x7c,0x5b,0x73,0xa1,0x55,0xa0,
0xc6,0x32,0xc7,0x2c,0x20,0xa4,0xb5,0x80,0x1b,0x68,0x6,0xa1,0x23,0xcd,0xc5,0x46,
0x24,0xe,0xc1,0xf1,0xa3,0x7a,0xf0,0xd,0x9a,0x7,0x3a,0x0,0x19,0xc0,0xc9,0x28,
0x5b,0x4b,0x0,0x65,0x6b,0x29,0x44,0xc5,0x88,0xf5,0xd2,0xef,0xb9,0x1d,0x54,0xcb,
0x50,0xad,0x7a,0xb6,0x3,0x5f,0xd6,0xf3,0x1c,0x9,0x6d,0xcb,0x5c,0xd,0x2,0x28,
0xcf,0x5d,0x93,0xd7,0x2,0x3c,0x66,0x3e,0xd6,0x5b,0x27,0x6f,0x83,0xaa,0xe7,0x32,
0x58,0xef,0x9a,0x6,0x4d,0x77,0x2c,0xfd,0xc0,0x29,0x40,0x3f,0x54,0xe8,0x87,0x3,
0xbc,0x8b,0x2a,0xaf,0x9a,0x83,0x2a,0x24,0xd6,0x5b,0x4b,0x4a,0xae,0xba,0x95,0xa,
0xb4,0x5,0xfe,0x0,0x4c,0x43,0x35,0x1a,0xf4,0xd4,0xa2,0x9e,0x55,0x68,0xb5,0xc9,
0x6b,0xcc,0x5,0x2d,0x83,0x88,0x5c,0x11,0xba,0xa8,0x1,0x25,0x96,0x28,0xaa,0xc0,
0xf8,0xdd,0x1c,0x7a,0x83,0xb8,0x41,0x62,0x50,0x81,0xf2,0xae,0xfa,0x50,0xb5,0x77,
0x36,0x0,0xef,0x1,0xaf,0xa3,0xbc,0x9f,0xb3,0x50,0xf1,0x60,0x2e,0xbe,0x61,0x5f,
0x1b,0xaa,0x6b,0x97,0x9,0x1,0x69,0xc0,0x6b,0xa8,0xb6,0xcb,0xd5,0x19,0xa7,0x25,
0x95,0x35,0x7e,0x76,0x9,0x21,0x9c,0x6,0x68,0xf4,0xe0,0x50,0x59,0xc7,0xab,0xc9,
0xc7,0xaf,0x25,0x9a,0x88,0x7a,0xa1,0x7a,0x97,0x75,0x3a,0x44,0xbb,0x40,0xc,0xe8,
0xa2,0x49,0xe2,0x25,0x54,0x40,0x63,0x52,0x3,0x9c,0xdb,0x3,0xec,0x0,0x5e,0x46,
0x75,0x48,0x30,0x92,0x64,0xd3,0x41,0x44,0x13,0xc6,0x39,0x28,0x37,0xfb,0xa,0x54,
0xe8,0xc5,0x1c,0x60,0x5e,0x2d,0xaa,0x53,0x4d,0xbd,0xdd,0x5f,0xd6,0x3f,0x93,0x81,
0xfb,0x93,0x92,0x82,0x5c,0x76,0xd9,0xb9,0x9c,0x7e,0xfa,0x4f,0x28,0x2b,0x73,0x90,
0x32,0x8a,0x10,0x2,0xaf,0x37,0xc8,0xbc,0x79,0xb,0x78,0xf5,0xd5,0x57,0x65,0x82,
0x6b,0xac,0xb,0x4d,0xa6,0xe9,0xa8,0x1e,0xf7,0x41,0x2d,0xad,0x27,0x6b,0xe2,0x3b,
0x54,0x52,0x65,0x1,0x9,0x8c,0x9d,0x4b,0xf4,0x82,0xb2,0xb5,0xee,0xdd,0x56,0x4f,
0x80,0x43,0x21,0x39,0x94,0x2,0xd3,0xb5,0xb8,0xbd,0x1d,0x58,0x40,0x82,0xfb,0x72,
0xeb,0xfb,0xca,0x3,0xde,0xd1,0x13,0xd9,0xa0,0xe9,0xa0,0xb,0xf0,0x5b,0x54,0x99,
0xdf,0x65,0xc0,0x9d,0xc0,0x94,0x4,0x1c,0xf7,0x1,0xad,0x9e,0x9d,0xbc,0x7d,0xfb,
0xce,0xb,0x5b,0xb5,0x4a,0x6f,0x73,0xe9,0xa5,0xa3,0x7c,0x42,0x78,0x65,0x34,0x5a,
0x26,0x3c,0x9e,0x56,0x4,0x83,0x36,0x6f,0xbc,0xf1,0x86,0x16,0xc6,0x12,0x86,0x22,
0x54,0xdc,0xda,0xaf,0x80,0xb3,0xb4,0x74,0x76,0x1b,0xaa,0x5f,0x60,0x43,0x6f,0x90,
0x52,0x93,0x60,0x36,0x70,0x3b,0xb0,0xb6,0xb1,0x12,0xd1,0x46,0x54,0x2d,0x5d,0x9b,
0x86,0x35,0xd2,0x55,0xb7,0x4b,0xb8,0x81,0x8c,0x31,0x2d,0x6a,0x27,0x7a,0x0,0x6c,
0x1a,0xb8,0xc9,0x9c,0x41,0xc2,0xd1,0xd,0x15,0xda,0xd1,0x53,0xdb,0x80,0x66,0x1,
0x5f,0x24,0xf0,0xf8,0xef,0x84,0x42,0x65,0x73,0xa7,0x4f,0xff,0x62,0x9a,0x10,0xe2,
0xe8,0x6d,0xdb,0xb6,0x8f,0xbf,0xec,0xb2,0xf3,0xb3,0x84,0x80,0x58,0x6c,0x37,0x65,
0x65,0x25,0xd,0xd1,0x82,0x27,0x47,0x93,0xe9,0x99,0x7a,0x8d,0x95,0xe9,0x4d,0xf8,
0x50,0x48,0xe9,0x6e,0x39,0xe7,0x22,0x94,0x51,0xbf,0xd1,0xaa,0x66,0x61,0x60,0x8b,
0x99,0xff,0x6,0x8d,0x0,0xed,0xb4,0xfd,0xa7,0x93,0xde,0xbd,0x3f,0xd0,0xaa,0x44,
0xa2,0xed,0x29,0xd9,0xc0,0x94,0x69,0xd3,0x66,0xcf,0xcd,0xc9,0xc9,0xf3,0x6d,0xd9,
0xb2,0xe3,0xee,0xbb,0xef,0xfe,0xbd,0x63,0x59,0x1e,0xeb,0x20,0xed,0x42,0x16,0x2a,
0x60,0x31,0x5f,0x9b,0x1b,0x9e,0x43,0xf5,0x0,0x8c,0x2,0x4b,0x13,0x29,0x8d,0xec,
0x27,0x11,0xb9,0x9b,0x7e,0x42,0x43,0x19,0x8c,0xad,0xc3,0xa0,0x39,0xa2,0xbd,0x96,
0x7c,0xda,0x6b,0xb5,0x65,0x62,0x3,0x9f,0xcf,0x1,0xa,0x96,0x2c,0x59,0x31,0xb1,
0xa0,0xa0,0x70,0x4c,0x46,0x46,0xea,0x9,0xbf,0xfb,0xdd,0x2d,0xd2,0xe3,0xb1,0xf,
0xd4,0x34,0x21,0x84,0x10,0x9f,0x9c,0x71,0xc6,0xa8,0xe3,0xd7,0xad,0xdb,0x18,0xfd,
0xe1,0x87,0x8d,0x31,0x54,0xb,0xe9,0x92,0xb8,0xcf,0x98,0x72,0x23,0x2d,0xc,0xa6,
0x9d,0x50,0xd3,0x42,0x16,0x2a,0xe2,0xb8,0x44,0x9b,0x9,0xe,0xa5,0x87,0xd3,0x2,
0xce,0xea,0xdb,0xb7,0xe7,0x86,0x77,0xdf,0x7d,0x5e,0xbe,0xfb,0xee,0xf3,0x32,0x25,
0x25,0x79,0xa3,0x9e,0x43,0xfb,0x3,0xfb,0xf8,0xe3,0x8f,0x2b,0x5f,0xba,0x74,0xa6,
0xec,0xde,0xfd,0x8,0x57,0xfa,0xe8,0xdc,0x9c,0x7,0xcd,0x94,0x8a,0x35,0x68,0x4e,
0x10,0xa8,0xe0,0xc4,0xfe,0x5a,0x22,0x7a,0x98,0x43,0x1b,0xc3,0xe3,0x0,0xab,0xd7,
0xae,0x5d,0xbf,0xe2,0x95,0x57,0x26,0xb2,0x61,0xc3,0x16,0x92,0x92,0xe,0xc8,0xac,
0x18,0xfb,0xee,0xbb,0x75,0x72,0xd2,0xa4,0x29,0xa4,0xa6,0xa6,0xb8,0xc7,0x6d,0xd6,
0x30,0xaa,0x99,0x41,0x73,0x42,0x1a,0x2a,0xe5,0xc1,0xcb,0xe1,0xb1,0xa1,0x70,0xe2,
0x89,0xc3,0x37,0xcd,0x9b,0x37,0xff,0x2f,0xab,0x57,0x7f,0x6f,0x6d,0xde,0xbc,0xed,
0xec,0xa2,0xa2,0xe2,0xba,0x24,0x32,0xb,0x15,0x76,0xe2,0x12,0x8e,0x0,0x2a,0x2a,
0x2a,0xc2,0xa2,0xa2,0xa2,0x1c,0xab,0x85,0x88,0xa,0x86,0x88,0xea,0xbf,0xd3,0x46,
0x51,0x25,0x61,0xd,0x1a,0x2f,0x8e,0x44,0x45,0xbf,0x7f,0x8f,0x8a,0x80,0x3e,0xb4,
0xea,0x85,0x65,0x31,0x6f,0xde,0x7c,0x80,0x15,0xdb,0xb6,0x65,0x3f,0xed,0x38,0xce,
0xb1,0x8e,0xe3,0xd4,0x15,0x85,0xef,0x0,0x6f,0xa1,0xc2,0xc,0x22,0x5a,0x82,0x13,
0x96,0x65,0x79,0x2d,0xcb,0xa6,0xa5,0xc4,0xce,0x1a,0x22,0xaa,0x1f,0x22,0x28,0x57,
0xf0,0x5f,0x51,0xe5,0x16,0x4c,0x8a,0x47,0xe3,0x82,0xd4,0x1b,0x45,0xf,0x94,0x6d,
0xe8,0x21,0xe,0x43,0x5a,0x85,0xe3,0x54,0x6a,0x50,0xd1,0x68,0x74,0x1e,0xca,0x6b,
0x77,0x29,0x50,0x26,0x84,0x18,0x25,0xa5,0xbc,0x9c,0xca,0xa,0x11,0xae,0xf7,0xc9,
0x67,0xdb,0x76,0xbf,0x4b,0x2e,0x39,0x2f,0x7d,0xc4,0x88,0xe3,0x0,0x49,0x2c,0x16,
0xe5,0xb6,0xdb,0x26,0xb4,0xa8,0x1,0x34,0x44,0x54,0xff,0x89,0x9e,0xc,0xc,0xd5,
0xa4,0x64,0x9b,0x47,0xd2,0x68,0xc6,0xc5,0x5d,0xd4,0x99,0x54,0xa6,0x6e,0x7c,0xd8,
0x8,0xae,0xad,0x14,0x15,0x40,0x79,0x11,0x90,0x2e,0xa5,0x1c,0xd8,0xa3,0x47,0xb7,
0xdf,0x3c,0xf0,0xc0,0x5f,0x62,0x3,0x7,0xf6,0xa1,0xac,0xac,0x14,0xcb,0xb2,0x29,
0x28,0x28,0xe0,0x8a,0x2b,0x6e,0xb0,0x4e,0x3c,0xf1,0x38,0x79,0xed,0xb5,0x97,0xb,
0x29,0x25,0xe1,0x70,0x84,0x5b,0x6f,0xbd,0x1f,0xd9,0x82,0x32,0xd4,0xc,0x11,0xd5,
0xf,0x5e,0x54,0x6a,0xc7,0xb5,0xa8,0x1c,0xa4,0x80,0x79,0x24,0x8d,0x8a,0x8c,0x6c,
0xe0,0x29,0xe0,0xa,0x2d,0xd,0x15,0x36,0x92,0x6b,0xb,0xb,0x21,0xda,0x4b,0x29,
0xdf,0x2,0x64,0x52,0x52,0x40,0x76,0xef,0x9e,0x65,0xf7,0xe9,0xd3,0x8d,0xe2,0xe2,
0x12,0x6c,0xdb,0x26,0x2f,0x2f,0x15,0xcb,0xb2,0x89,0x46,0xa3,0xc4,0x62,0x31,0xa4,
0x74,0x88,0xc5,0xa2,0x88,0x16,0x96,0xcd,0x68,0x88,0xa8,0xfe,0x88,0x69,0xb1,0xda,
0xc1,0x94,0x3,0x69,0x6c,0x48,0xd2,0x52,0xd1,0x77,0xc0,0xa4,0x46,0x74,0x5d,0x51,
0x29,0x65,0xf8,0x27,0x3f,0x39,0x31,0x15,0x4,0xbb,0x77,0xe7,0x20,0xa5,0xca,0x53,
0x75,0x83,0x1d,0xa5,0x34,0x89,0xf9,0x60,0xdc,0xf7,0x6,0xcd,0x3,0x69,0x40,0x47,
0x54,0xcd,0xe8,0x3d,0x8d,0xe8,0xba,0x3e,0x4,0xfe,0xd9,0xbe,0x7d,0x3b,0x8e,0x38,
0xa2,0x33,0x42,0x58,0x9a,0x78,0xea,0x27,0xee,0x58,0x2d,0x68,0x75,0x1a,0x22,0x32,
0x68,0xe,0x52,0xfd,0x25,0xa8,0xde,0x76,0x65,0x34,0x3e,0x37,0x53,0x34,0x16,0x8b,
0x11,0x8b,0xb9,0x89,0xea,0xf5,0x2b,0x69,0x2d,0x25,0x84,0xc3,0x11,0x62,0x31,0xa7,
0xc5,0xc,0xa2,0xc1,0x81,0xc3,0xab,0xc9,0x3c,0x42,0xb,0x8,0x3a,0x6b,0xa4,0x70,
0x3b,0xed,0x36,0x56,0xe4,0x7b,0x3c,0x9e,0xb0,0xe3,0x48,0xdf,0x7e,0x49,0x8,0x96,
0xe0,0x7f,0xff,0x9b,0x4a,0x4e,0x4e,0xbe,0x91,0x88,0xc,0x6a,0x85,0xd,0x5c,0xf,
0xdc,0xa,0x1c,0x6d,0x9e,0xa5,0x41,0xd,0x98,0xda,0xa5,0x4b,0xc7,0x19,0x91,0x48,
0x18,0xb1,0x9f,0x16,0xe8,0xcc,0xcc,0x4c,0x92,0x92,0xfc,0x86,0x88,0xc,0x6a,0xc5,
0x5f,0x81,0xc7,0x81,0x7b,0x81,0x13,0x8c,0x74,0x69,0x50,0x93,0xc4,0x66,0x59,0xd6,
0x7e,0x67,0xfc,0x4b,0xe9,0x70,0xfa,0xe9,0x27,0xd3,0xa9,0x53,0x47,0x43,0x44,0x6,
0xb5,0x22,0x43,0xab,0x64,0x21,0x12,0x5c,0xf9,0xca,0xa0,0x59,0xe1,0x57,0x6b,0xd7,
0xae,0x3f,0xd7,0xeb,0xf5,0xed,0x35,0x54,0xb,0xb1,0xef,0x6b,0x5f,0x2,0x72,0xed,
0x47,0x82,0x48,0x44,0xb9,0xf3,0x5b,0x2,0xcc,0x2e,0x7e,0x60,0x10,0xa8,0xa6,0x76,
0x45,0xa8,0x7a,0x37,0xeb,0x30,0x36,0x22,0x83,0xea,0x11,0xda,0xba,0x75,0x7,0x42,
0x8,0x29,0xa5,0x14,0x20,0x90,0x92,0xb8,0x38,0x21,0xf5,0x8b,0x6d,0xdb,0xd8,0xb6,
0x8d,0x65,0x59,0x55,0x2,0x19,0x4d,0x8a,0x87,0x41,0x2d,0x92,0xb3,0x9e,0x21,0x7f,
0x31,0x8f,0xa2,0x51,0x8c,0xc5,0xe,0x2a,0xdb,0x8e,0x37,0xaa,0xc0,0x1c,0xcb,0xb2,
0x82,0xb,0x17,0x2e,0x2d,0x0,0xca,0xbb,0x75,0xeb,0xd2,0x61,0xd1,0xa2,0x6f,0xd9,
0xb3,0x27,0x8f,0x50,0xa8,0x1c,0xdb,0xb6,0x28,0x2c,0x2c,0x26,0x12,0x89,0x10,0x89,
0xc4,0x8,0x85,0xc2,0xd8,0xb6,0x24,0x1c,0xe,0xd3,0xd2,0xc2,0x8b,0xc,0x11,0x1d,
0xdc,0x2,0x30,0x38,0xfc,0x70,0x50,0x45,0xf0,0xa7,0xa1,0x6a,0xa5,0x27,0xc7,0x91,
0xd2,0xe1,0x46,0x7f,0xc7,0x71,0x4e,0x6,0x3e,0x1,0x76,0x6d,0xdf,0xbe,0x73,0xdc,
0x43,0xf,0x3d,0xed,0xf8,0x7c,0x3e,0x1c,0xc7,0x41,0x8,0x21,0xa3,0xd1,0x98,0x5d,
0x54,0x54,0xd2,0x65,0xe6,0xcc,0x39,0xfe,0x9c,0x9c,0x5c,0x21,0xa5,0xc4,0x71,0x62,
0xd8,0xb6,0xdd,0xa2,0xa2,0xab,0xd,0x11,0x19,0x34,0x7,0x54,0xa0,0x6c,0x75,0x67,
0xa2,0x8a,0xd7,0x7d,0xde,0x48,0xae,0xeb,0x68,0xa0,0x3b,0xf0,0xbc,0x65,0x89,0x29,
0x91,0x48,0xe4,0xed,0x1d,0x3b,0x76,0xc5,0xd3,0x4b,0xc,0x65,0x6b,0x7c,0xf3,0x93,
0x4f,0x66,0x5,0x3e,0xfd,0x74,0xd6,0x5e,0x49,0xe8,0x0,0xeb,0x18,0x19,0x22,0x6a,
0x21,0x12,0x50,0xcc,0x3c,0x86,0x46,0x4b,0x44,0xb,0x81,0xb1,0xc0,0x19,0xc0,0x5c,
0x12,0xd8,0xea,0xe6,0x20,0x51,0xa,0x14,0x39,0x8e,0x2c,0x0,0xe6,0x57,0xf3,0x7f,
0x1f,0x2a,0x4b,0xbf,0xb3,0x94,0x7b,0xed,0x8c,0x51,0xe0,0x72,0x54,0x88,0x48,0x8b,
0x90,0x8b,0xc,0x11,0xd5,0x9f,0x84,0xfc,0xa8,0x72,0x9d,0x39,0xfa,0x77,0x83,0xc6,
0x33,0x36,0xe,0xaa,0x22,0xe3,0xcd,0xc0,0x35,0xc0,0x93,0x28,0xbb,0xd1,0xe1,0x44,
0x6,0x30,0x82,0xba,0x13,0xa4,0xc3,0x54,0x53,0x3b,0x49,0x8,0x2e,0xb6,0x2c,0xe1,
0x69,0x29,0xea,0x99,0x21,0xa2,0xfa,0x21,0x86,0x2a,0xc4,0xfe,0x1b,0x54,0x63,0x39,
0x9f,0x79,0x24,0x8d,0x8a,0x88,0x24,0x2a,0xf1,0xd5,0xed,0xa7,0x37,0x1c,0x78,0xff,
0x30,0x5f,0xd7,0x19,0xc0,0x2f,0x50,0xb9,0x6f,0xfb,0x6b,0x4f,0xf4,0x4a,0x89,0x27,
0x1a,0x8d,0xed,0x53,0xe3,0xc8,0x10,0x91,0x81,0xd0,0x3b,0xd7,0x66,0xbd,0xd3,0x1a,
0x89,0xa8,0xf1,0x91,0x51,0x4,0xd5,0xe4,0xe0,0x17,0xc0,0x1f,0x81,0xcf,0x38,0xc4,
0xe5,0x40,0x84,0x10,0x48,0x29,0xf1,0x7a,0x3d,0x1d,0x23,0x91,0xe8,0x38,0x4d,0x8e,
0x39,0x7,0x70,0x28,0x27,0x12,0x89,0x64,0xcf,0x9e,0xfd,0x75,0x97,0xec,0xec,0x1c,
0x57,0x7d,0x33,0x35,0xb0,0x5a,0x38,0xdc,0x2e,0x1e,0xab,0x80,0x63,0xcc,0xe3,0x68,
0xd4,0x68,0xb,0x3c,0xa1,0x9,0xe8,0xcf,0x71,0x9b,0xc8,0x21,0x43,0x20,0x10,0x8,
0x2,0x7f,0x68,0xd5,0x2a,0xbd,0xa0,0x6f,0xdf,0x9e,0x32,0x18,0xc,0xec,0x77,0x17,
0x8f,0x40,0xc0,0x7,0x70,0x35,0xaa,0x83,0xb1,0x44,0x75,0x2f,0xce,0x30,0xc3,0x6b,
0x88,0xc8,0x25,0x22,0xd3,0x4e,0xa8,0xf1,0xa3,0x2f,0xaa,0x9c,0xef,0x3a,0xe0,0xa8,
0x43,0x4c,0x46,0x5e,0xe0,0x8a,0x40,0x20,0x90,0x7b,0xe3,0x8d,0xd7,0xc8,0xc7,0x1e,
0xbb,0x47,0xa6,0xa7,0xa7,0x1d,0x48,0x3b,0x21,0x17,0x47,0xa2,0x52,0x88,0x4e,0x6e,
0xee,0x83,0x66,0x52,0x3c,0xf6,0x4f,0x3d,0x33,0x68,0xfc,0xd8,0xc,0xdc,0xd,0xa4,
0x3,0xff,0x4,0x7a,0x71,0xe8,0x62,0xbe,0x52,0x81,0x9f,0xb6,0x6a,0x95,0xd6,0x66,
0xdc,0xb8,0xd3,0xe8,0xd3,0xa7,0x7,0xd1,0xe8,0x41,0x39,0xef,0xd6,0xe8,0x7b,0x99,
0x63,0x88,0xc8,0xc0,0xa0,0x69,0xa1,0x1c,0x78,0x1e,0x55,0x15,0xa1,0x1b,0x2a,0x31,
0xb9,0x6b,0x83,0xef,0x52,0x42,0xa4,0x2,0x13,0xd2,0xd2,0x52,0x4f,0xb9,0xe6,0x9a,
0xcb,0x38,0xe5,0x94,0x13,0x28,0x29,0x29,0x35,0xa3,0x61,0x88,0xc8,0xa0,0x5,0xc3,
0x41,0xc5,0xe6,0xdc,0x5,0xf4,0x4,0xa6,0x0,0xb7,0xd3,0x40,0xde,0x4e,0x21,0x44,
0x1f,0x29,0xe5,0x8b,0x7e,0xbf,0xef,0xd7,0xe3,0xc7,0x5f,0x9d,0xf2,0xe7,0x3f,0xdf,
0x28,0x93,0x92,0xd2,0xe,0x56,0x1a,0x6a,0x51,0x30,0x5e,0xb3,0xba,0x61,0x8a,0x9e,
0x35,0x5d,0x32,0x7a,0x17,0x15,0xc7,0xf3,0x38,0x30,0x1,0x65,0xf0,0xbd,0x97,0x4,
0xa5,0x80,0x8,0x21,0x7a,0x4a,0x29,0xaf,0x95,0x52,0x9e,0x6f,0xdb,0xf6,0x51,0xbf,
0xff,0xfd,0x78,0xf1,0xa7,0x3f,0x8d,0xc7,0xb6,0x85,0x88,0x44,0x4c,0x59,0x73,0x43,
0x44,0x89,0x43,0x32,0x2a,0x28,0xad,0x23,0x2a,0x1e,0x24,0x62,0x1e,0x49,0x93,0x42,
0x18,0x78,0x19,0x15,0x7,0x76,0x17,0xca,0xb5,0xdf,0x19,0x78,0x11,0xf8,0x16,0x15,
0x13,0x76,0xa0,0xf3,0x62,0x82,0x94,0xb2,0x6f,0x52,0x52,0x70,0xe4,0x15,0x57,0x5c,
0x90,0x74,0xf2,0xc9,0x23,0xb9,0xfc,0xf2,0xb,0xf1,0xf9,0x6c,0xa4,0xac,0x40,0x88,
0x74,0x2,0x81,0x14,0x2c,0xcb,0x98,0x16,0xd,0x11,0x1d,0x3c,0xda,0x0,0x3,0x51,
0x31,0x1c,0xc9,0xa8,0xdc,0x21,0x2f,0x10,0x34,0x8f,0xa6,0x49,0xc0,0x4d,0xcb,0xd9,
0xd,0x3c,0x8,0x5c,0x0,0x5c,0x9,0x1c,0x8b,0x72,0xf1,0x7f,0x4,0x2c,0x42,0xb5,
0x8a,0xda,0x50,0x8f,0xe3,0xf5,0x41,0x85,0x5,0x74,0x6,0x4e,0xb1,0x6d,0xcb,0x73,
0xe4,0x91,0xbd,0xed,0x91,0x23,0x87,0xd3,0xb6,0x6d,0x6,0xb3,0x67,0xcf,0x26,0x16,
0x8b,0x20,0x84,0x20,0x29,0x29,0x89,0x65,0xcb,0x56,0x12,0x89,0xc4,0xdc,0x80,0x4b,
0x83,0xda,0xa4,0x4b,0xf3,0x8,0x6a,0x45,0x57,0x54,0xbf,0xac,0x73,0x51,0xf9,0x3f,
0x39,0x34,0x9f,0x6,0x8b,0x8d,0x75,0x81,0x88,0x4,0xce,0x4b,0x19,0xf7,0x33,0xaa,
0x55,0xb3,0x56,0x71,0xff,0x2f,0x42,0x25,0xcb,0x6e,0x47,0x79,0xa6,0xca,0x6a,0x18,
0x5b,0x89,0x6a,0xde,0x78,0x32,0xd0,0xf,0x6d,0x6b,0x12,0x42,0x90,0x9c,0x1c,0x24,
0x23,0x23,0x3,0x21,0x20,0x16,0x73,0xf6,0x66,0xcc,0xb,0x61,0x11,0xa,0x85,0xc8,
0xcf,0x2f,0x2c,0x95,0x52,0xfe,0xa,0x78,0xdb,0x2c,0x27,0x23,0x11,0x1d,0xcc,0xa2,
0xb0,0xe3,0x7e,0xef,0xd0,0x4c,0xc8,0x5b,0x36,0xf2,0xfb,0x90,0xd,0xb4,0x51,0xba,
0x79,0x69,0x2e,0x52,0xf5,0xab,0x1d,0x30,0x20,0xee,0x7c,0x22,0xee,0xf3,0x96,0x56,
0xf1,0x6c,0xbd,0x5e,0x2c,0x97,0xc4,0xa5,0x94,0x94,0x94,0x84,0x28,0x29,0x9,0x55,
0x3d,0x87,0x8d,0xea,0xb1,0x76,0x7,0xb0,0x92,0x3,0x8b,0xae,0x36,0x12,0x91,0xc1,
0x5e,0xd8,0xa8,0x78,0x94,0x40,0x33,0x13,0xaf,0x2b,0x80,0x31,0xc0,0x3f,0x50,0xb6,
0xaf,0xc6,0xe2,0x3d,0xf5,0xa0,0xda,0x34,0x3f,0x2,0x6c,0x3b,0x84,0xd7,0xe5,0x12,
0xf3,0xa3,0xc0,0x60,0xad,0xce,0xb9,0x24,0xb4,0x13,0xd5,0xe1,0x37,0xba,0x1f,0x73,
0xc0,0x4d,0x9,0xca,0xc7,0x54,0x6c,0x30,0x44,0x64,0x50,0xe7,0xa2,0x4f,0x69,0x84,
0x4,0x1b,0xd5,0xea,0xd2,0xe1,0xb8,0xae,0xe4,0x6a,0xb4,0x4,0x7,0x28,0x36,0xd3,
0xc5,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xa0,0x99,0xe3,
0xff,0x1,0x1d,0x3,0x1b,0x74,0x61,0x63,0xcd,0x51,0x0,0x0,0x0,0x0,0x49,0x45,
0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/Antena.png
0x0,0x0,0x16,0xee,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x65,0x0,0x0,0x0,0x6f,0x8,0x6,0x0,0x0,0x0,0xf5,0xe7,0xe,0xa9,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0x9c,0x0,0x0,
0xe,0x9c,0x1,0x7,0x94,0x53,0xdd,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xdf,0x4,0x10,0x14,0x1,0x34,0xa9,0xa5,0x3b,0x5d,0x0,0x0,0x16,0x7b,0x49,0x44,
0x41,0x54,0x78,0xda,0xed,0x9d,0x79,0x7c,0x56,0xd5,0x99,0xc7,0xbf,0x79,0xb3,0x93,
0x7d,0x21,0x61,0x8d,0x24,0x10,0x92,0x60,0x22,0x10,0x76,0x88,0x8,0x14,0x14,0x88,
0xe0,0x82,0x30,0x5a,0x68,0x6d,0xad,0xb6,0xd3,0x6a,0x3b,0x9d,0xe9,0xb8,0xd4,0xb6,
0x53,0xbb,0xe8,0xb4,0xd5,0xb6,0x7e,0xec,0xa2,0xd3,0xb1,0xe3,0x54,0x6b,0x5b,0xc5,
0x7d,0x50,0xab,0x56,0x4,0x2a,0x45,0x94,0xba,0x80,0xec,0x9b,0xac,0x61,0xcf,0xc2,
0x4e,0x96,0x33,0x7f,0x9c,0xdf,0x25,0x97,0xcb,0xd,0x24,0xb9,0x6f,0xb0,0x92,0xf7,
0xf9,0x7c,0xee,0x87,0x70,0xcf,0xdd,0xde,0xf3,0x9c,0x67,0xfb,0x3d,0xcf,0x39,0x27,
0x8a,0x8,0x85,0x83,0x42,0xae,0x23,0xa,0x68,0xd2,0x61,0xf4,0x6f,0x9b,0x28,0x26,
0xd2,0x9f,0x81,0x29,0xa,0x88,0x56,0x5f,0x46,0xbb,0x98,0xd2,0xa0,0x83,0x8,0x53,
0x3e,0x1e,0x29,0x89,0x6,0x62,0xd5,0x9f,0x51,0x2e,0xe9,0x70,0x4b,0x4c,0x9b,0x1e,
0x18,0xa1,0x60,0x52,0x12,0xe5,0x52,0x5d,0x8e,0xc4,0x84,0x3c,0x47,0x44,0x52,0xce,
0x42,0x5,0x40,0xf,0x60,0x1a,0x90,0xd,0xcc,0x5,0xfe,0x1c,0xf0,0x99,0xc6,0x75,
0x34,0x79,0xfe,0x6f,0x22,0x4c,0x69,0x59,0x23,0xe4,0x2,0x9f,0x6,0xae,0x2,0xb2,
0x80,0xa3,0x40,0x2f,0x60,0x43,0x0,0xa6,0x38,0x4c,0x68,0x74,0xd9,0x8f,0x28,0xd7,
0xb9,0xa6,0xf6,0x30,0xe5,0x7c,0xa7,0x68,0x60,0x10,0x70,0x35,0xb0,0x18,0xd8,0xe,
0xdc,0xf,0x8c,0x5,0x6,0x2,0xf,0x2,0x7f,0x5,0xfa,0x5,0x54,0x61,0x31,0x40,
0x1c,0x90,0x8,0x74,0x1,0x12,0x64,0x63,0xda,0x65,0x1e,0xce,0x47,0x49,0x89,0x5,
0x32,0x81,0xe1,0x40,0xb9,0x24,0x21,0x3,0xe8,0xd,0xfc,0x1b,0xf0,0x12,0x70,0x48,
0xd7,0x3e,0x1,0x4c,0x2,0x3e,0xa5,0xeb,0xda,0x2b,0x2d,0x8d,0x2e,0xa3,0x8e,0x47,
0x8d,0x75,0x7a,0x1a,0xc,0xfc,0x1c,0x58,0x5,0xec,0x6,0xe6,0x3,0xf1,0x62,0xd2,
0xeb,0xc0,0x97,0x7d,0xee,0xf9,0x6f,0xe0,0x2f,0x40,0x4e,0x18,0xd,0x7f,0x60,0x5d,
0x7b,0x3e,0xd1,0x1c,0xe0,0x46,0xe0,0x15,0xe0,0x59,0xa9,0xae,0x71,0xae,0x11,0xdb,
0xdf,0xe7,0x9e,0xa7,0x80,0xbe,0xc0,0x25,0x61,0x78,0xbf,0x9,0x87,0x74,0x44,0x9f,
0x67,0x4c,0xb9,0xc,0xd8,0x23,0x89,0x78,0x57,0xb6,0xa3,0x48,0x2a,0x6a,0x9c,0xc,
0xfb,0x5b,0xc0,0x4e,0xd7,0x3d,0x47,0x64,0xfc,0x43,0xc0,0x82,0xf6,0x6,0x7c,0xe1,
0x36,0x84,0xe7,0x13,0x15,0x1,0x37,0x1,0xef,0x89,0x29,0x49,0xb2,0x2d,0x99,0xc0,
0x42,0xa0,0xbb,0xae,0x5b,0xe8,0x1a,0xd1,0x87,0xc4,0xac,0xcb,0xe5,0xc,0xec,0x8c,
0x58,0x81,0xf0,0xc7,0x20,0x6f,0x2,0xbf,0x6,0x52,0x74,0x2e,0x59,0x47,0x14,0xf0,
0x23,0x60,0x9e,0x3c,0x24,0x37,0xf5,0x7,0x96,0x1,0xf7,0x45,0xba,0xb0,0x63,0xe8,
0x9b,0xc0,0x26,0x60,0x82,0x4f,0xdb,0x3f,0x1,0x35,0xfa,0xd7,0x4b,0xff,0x2,0xac,
0x95,0x1d,0xfa,0xd8,0x83,0xaa,0xf3,0x89,0xba,0x49,0x25,0xe7,0xb7,0xc0,0x94,0xf9,
0x52,0x5d,0x57,0x2a,0x98,0x74,0xd3,0x2b,0x72,0x63,0xfb,0x47,0xc6,0x75,0x70,0x4a,
0x92,0x41,0xbf,0x5d,0xaa,0x69,0x23,0x50,0xad,0x78,0x24,0xdb,0xe7,0xfa,0xcf,0x3,
0xab,0x81,0x42,0xcf,0xf9,0x1c,0xe0,0x79,0x79,0x63,0xa9,0x91,0x6e,0x6d,0x7f,0x4c,
0x30,0x5a,0x76,0xe0,0x23,0xd9,0x92,0x3f,0x1,0x33,0x80,0xeb,0x80,0x35,0xc0,0xd,
0x3e,0xf7,0x7d,0x4a,0x1e,0xda,0xbf,0xfa,0xb4,0x7d,0x6,0x38,0x21,0x38,0x26,0x42,
0x6d,0x34,0xe6,0xb7,0x0,0xbf,0x1,0xb6,0x2,0x7f,0x3,0xee,0xc0,0x82,0x8c,0x89,
0xba,0x26,0x15,0x78,0x12,0x78,0x59,0xd1,0xbc,0x97,0x99,0xf7,0x2,0x6f,0x2b,0x3e,
0x71,0x53,0x96,0xbc,0xb6,0xff,0x88,0x74,0xf3,0xd9,0x29,0x46,0xf6,0xe2,0x76,0x49,
0xc4,0x5e,0xe0,0x77,0xc0,0xcd,0x3e,0x1d,0xeb,0xd0,0x95,0x52,0x63,0x9f,0xf1,0x69,
0xbb,0x58,0x2a,0xec,0xdb,0x9e,0xb0,0x20,0x49,0xc,0x5b,0xe2,0xa3,0xde,0x22,0x24,
0xea,0xa2,0xce,0xfd,0x9d,0x2,0xbb,0xcd,0xc0,0x2f,0x80,0x89,0xad,0x70,0x52,0xd2,
0x15,0xaf,0xdc,0xdd,0x2,0x93,0x1f,0x94,0x1b,0x9c,0xe2,0x69,0x1b,0xd,0x6c,0x3,
0xbe,0x1a,0xe9,0xfe,0x53,0x29,0x13,0x98,0x8e,0x5,0xc,0xd7,0x49,0xd,0xdd,0x5,
0x8c,0xf7,0xe9,0xc4,0x96,0x28,0x41,0x71,0xc9,0xdf,0x81,0x32,0x9f,0xf6,0x2f,0x61,
0x51,0x63,0x3f,0x78,0xe5,0x67,0xc0,0xd2,0x33,0x48,0x61,0xa7,0xa3,0x14,0xe0,0x11,
0xa9,0xa8,0x57,0x80,0x2f,0xfa,0xb8,0xaf,0xad,0xa5,0xe1,0x92,0xae,0x6f,0xfa,0xb4,
0xf5,0x14,0xe4,0xf2,0x90,0xf,0xb2,0x31,0x46,0xea,0xed,0xb2,0x8,0xcc,0x62,0xa9,
0x11,0xb8,0x50,0x90,0xc9,0xe7,0xc4,0x98,0xc3,0xed,0x7c,0xd6,0xe,0xa0,0x44,0x4e,
0xc0,0xf3,0x9c,0xa,0x16,0x1e,0x91,0x44,0x5e,0x9,0x2c,0x7,0xb6,0x78,0xee,0x9d,
0xa2,0x1,0xf2,0xa6,0x3c,0xb2,0x4e,0x1d,0x3c,0x36,0x2,0xaf,0x6a,0xc0,0xc,0x9,
0xc3,0xf3,0x96,0x2a,0x90,0xbc,0xd4,0xe7,0x3d,0x73,0x15,0xe1,0x5f,0xee,0x69,0xdb,
0xa6,0x98,0x67,0x5a,0x98,0xbe,0xe1,0xbc,0x88,0xe8,0xdf,0x5,0xde,0x91,0x5d,0x89,
0xb,0xf8,0xac,0xf9,0x8a,0x59,0x66,0xc8,0xf8,0xbb,0x69,0x93,0x24,0xa1,0xaf,0x6c,
0x90,0x9b,0x1e,0x95,0xf4,0xcc,0x8a,0xa8,0x2f,0x4b,0x4e,0x6,0xef,0x46,0x6c,0xb2,
0x6a,0x79,0x80,0x67,0xd5,0x4a,0xd,0xdd,0x28,0xa3,0xef,0xcd,0x30,0x26,0xcb,0x6e,
0xed,0x97,0xb7,0xe6,0x56,0x6f,0x69,0xc0,0x35,0xf2,0xfc,0xf6,0x76,0x76,0xa6,0x0,
0x1c,0x0,0x4a,0x75,0xcc,0x57,0x27,0xb5,0x97,0x36,0xc9,0x73,0x3b,0xe,0x2c,0xf2,
0xb4,0xed,0x7,0x8a,0xb1,0x39,0xfb,0xf9,0x2e,0xfb,0x65,0xb0,0xb0,0xfe,0x75,0x92,
0x98,0xf7,0x3a,0xbb,0xfa,0x2,0xd8,0x85,0xad,0x32,0x29,0x94,0x41,0xe,0x42,0x7,
0x81,0xf5,0x62,0xcc,0x5,0x9e,0xb6,0xbd,0xc0,0x73,0xf2,0xb8,0x26,0xf8,0x30,0xf3,
0x7d,0x6c,0xe1,0x45,0x6a,0x44,0x52,0x2c,0x25,0x62,0x71,0xa8,0xc3,0xd2,0xfd,0x41,
0x9c,0x87,0x7a,0xe0,0x5a,0x49,0xe0,0x32,0x4f,0xfb,0x6,0x60,0xa8,0xec,0xca,0x6b,
0xae,0xf3,0xf5,0xf2,0xbc,0xbe,0x2c,0x4f,0xee,0xfd,0x8,0x53,0xa0,0xa,0xe8,0xaa,
0x91,0xfa,0x26,0x16,0x48,0xc,0xa2,0xc2,0x6,0xa9,0xf3,0xff,0x4f,0xaa,0xcc,0xcd,
0xb4,0x12,0x6c,0x5a,0xf8,0xaf,0xb2,0x63,0xe,0xed,0x93,0x7a,0x1b,0x24,0xd5,0x57,
0xd7,0x99,0xd5,0x97,0xd3,0x59,0xcf,0x9,0x16,0x99,0x12,0x70,0x10,0x19,0xb9,0xc0,
0xa5,0x3e,0x2e,0x30,0x62,0x54,0x83,0xda,0x62,0x3d,0x36,0xe7,0x59,0x79,0x68,0x19,
0x9d,0xdd,0xa6,0x38,0xf4,0xb6,0x54,0xca,0xa4,0x30,0x48,0xf6,0xdf,0xe5,0x8d,0x8d,
0xf4,0x74,0xbc,0xd3,0xf6,0x9a,0xa2,0x78,0x6f,0x3d,0xdc,0x16,0x6c,0xa9,0xd2,0xe5,
0x11,0xa6,0x34,0xd3,0x3a,0x5,0x71,0xe3,0x2,0x3e,0xa7,0x1a,0x78,0x11,0xb,0x68,
0xe,0xf4,0x69,0x5f,0xab,0xf3,0xe3,0x7c,0x2,0xd0,0xc7,0x64,0xdf,0xca,0x22,0x4c,
0x69,0x56,0x2d,0xab,0x65,0xa8,0x93,0x3,0x3c,0xa7,0x41,0x9d,0x5b,0xdf,0xc2,0xa8,
0x9f,0x7,0x7c,0x20,0x37,0x38,0xc5,0xe7,0x1b,0x62,0x4,0xd9,0x44,0x98,0x22,0xd8,
0xe3,0x69,0x60,0x14,0x36,0x11,0x15,0x84,0x3e,0x94,0xaa,0xea,0xcb,0xe9,0xd5,0x8c,
0x3b,0x65,0x77,0x86,0x63,0x21,0x7c,0x6f,0x3c,0x53,0xa5,0x8,0xbf,0x43,0xdd,0xe3,
0x4f,0x52,0xdd,0x57,0x22,0xb6,0xa,0x65,0xa3,0x46,0x73,0x10,0x4a,0xc5,0x26,0xbf,
0xb6,0xa,0x82,0xf1,0xda,0x8f,0xcb,0x64,0xd4,0x5f,0x76,0x9d,0xaf,0xc1,0xe6,0x77,
0xfe,0x59,0x2e,0xf5,0x6,0x22,0x44,0x2c,0xf0,0x7b,0xfc,0x53,0xbc,0x6d,0xa5,0x9e,
0x58,0xd4,0xf8,0x4f,0x2d,0x8c,0xfa,0x7,0x64,0xf4,0xbd,0x85,0x17,0x39,0x72,0x8b,
0x1f,0xa3,0x39,0xf5,0xdc,0x69,0x29,0xd,0xb8,0x47,0x23,0xfb,0x28,0x16,0xab,0xa,
0x4a,0xd7,0x2b,0x28,0xbd,0xda,0xa7,0xad,0x52,0x92,0x70,0x8b,0xe7,0x7c,0x14,0xcd,
0xf5,0x61,0x45,0x9d,0xdd,0xa6,0x84,0x80,0xa,0xec,0x74,0x86,0x4,0x2c,0x48,0x98,
0x1e,0xf0,0x99,0xf3,0xb0,0x40,0xe7,0x0,0x9f,0xb6,0xc5,0x3a,0xae,0x96,0x54,0xb9,
0x63,0x9d,0x85,0xfa,0x9e,0x4b,0x3a,0x3b,0x53,0xaa,0x65,0xe8,0x9d,0x28,0xbc,0x1b,
0xb6,0xfe,0x37,0x8,0x1d,0xc5,0x66,0x1e,0x2b,0x39,0xbd,0x0,0xaf,0x46,0x1,0xe3,
0x8,0x1f,0x2f,0xed,0x7d,0xa9,0xb0,0x2b,0x3a,0xca,0xe0,0x7f,0x92,0xc,0x7d,0x17,
0x6c,0x4e,0x24,0x1,0x9b,0x1e,0xae,0xc5,0xce,0x39,0x69,0x2f,0xd5,0x63,0x81,0xca,
0x39,0x58,0xf0,0xd3,0x8b,0x87,0x6d,0x96,0xb7,0xd7,0x84,0x4d,0xba,0x79,0xef,0xfd,
0x82,0x18,0xbb,0xb4,0x33,0xdb,0x95,0x10,0x36,0x77,0xef,0xcc,0x1,0x59,0x15,0xa6,
0x40,0xee,0x57,0x58,0xbc,0xab,0x97,0xcf,0x80,0xbd,0x4d,0x2e,0xb4,0xb7,0xbe,0x38,
0x3,0x78,0x18,0x3b,0xd9,0xa8,0x5b,0x67,0x55,0x5f,0x68,0xc4,0x3e,0x8d,0xad,0x40,
0x41,0x2a,0xa7,0x92,0xe0,0x33,0xa7,0xe6,0x62,0xa7,0x48,0x8c,0xf2,0x9c,0x6f,0xc4,
0x96,0xbe,0x1a,0x6c,0x5a,0x38,0xc6,0xa3,0x4e,0x5f,0x95,0xbd,0xe9,0xd1,0x99,0x99,
0x2,0x16,0x29,0x5e,0xe0,0x1a,0xc9,0x23,0x38,0x1d,0xc3,0x6a,0x2b,0xad,0xc5,0x22,
0xc1,0xe3,0xb0,0xc5,0x78,0xde,0x40,0xf3,0x29,0xa9,0xb8,0x8b,0x3c,0x6d,0x2b,0xa5,
0xc6,0xae,0x89,0x44,0x2b,0xb6,0x5e,0xcb,0x51,0x61,0x47,0x5b,0x70,0x69,0xdb,0x4a,
0xdf,0xc1,0x26,0xc1,0x2a,0x7c,0xda,0x6,0x0,0x2b,0xb0,0x85,0xe1,0x5e,0xfa,0x77,
0xdd,0x37,0xb8,0x33,0x4b,0x8a,0x23,0x2d,0x2b,0xf4,0x77,0x82,0xbc,0xa0,0xa0,0xd0,
0xcb,0xa3,0xd8,0xc,0xa4,0x5f,0x91,0xc4,0x6e,0xc5,0x47,0x13,0x7d,0x82,0xc9,0x97,
0xb1,0x78,0x5a,0x9f,0xce,0xea,0x7d,0xb9,0xdd,0xd5,0x34,0x6c,0x3d,0x70,0x34,0x36,
0x9,0xf6,0x1,0x16,0x49,0x6e,0x2f,0xd5,0x2a,0x42,0x9f,0x2d,0xa3,0xbf,0xcb,0xe3,
0x3a,0x27,0x4a,0x85,0xad,0xf6,0xc0,0x32,0xb1,0xd8,0x34,0x72,0xa1,0x6c,0xcc,0x9,
0x3a,0x31,0xd,0xc4,0xa6,0x75,0x1d,0x35,0xf6,0xd3,0x30,0x3c,0xb3,0x58,0x9d,0x3e,
0xa7,0x5,0x77,0xfc,0x59,0xc1,0x2f,0x5e,0xfa,0x9c,0xe2,0xa7,0x99,0x9d,0x59,0x7d,
0x81,0x45,0x73,0xdd,0xf1,0xc1,0x30,0x4f,0xe4,0xdd,0x1e,0xda,0x23,0x37,0x7b,0x96,
0xf,0x5a,0x70,0x4,0xb,0x84,0xe,0xe5,0xf4,0xc2,0x8b,0x79,0xd8,0x2a,0x98,0x19,
0x4,0x2f,0xf0,0xf8,0xc4,0xaa,0x2f,0xa7,0x93,0x42,0xc0,0x54,0xb9,0xaa,0xd9,0xf2,
0xa0,0xde,0xa,0x18,0xe1,0x1b,0xec,0xaa,0x14,0xeb,0x38,0xbd,0xd6,0xec,0x84,0x18,
0xd6,0x80,0x9d,0x13,0x63,0x5c,0xdf,0x12,0x27,0xa6,0x3c,0x2b,0x77,0xb9,0x53,0x4a,
0xa,0xd2,0xe1,0x6f,0xe8,0xef,0x24,0xa9,0x8f,0xa4,0x80,0xcf,0x7c,0x4d,0x2e,0xb2,
0xdf,0xbc,0xc7,0xb7,0xe4,0x64,0xcc,0xf0,0x91,0xca,0x55,0xb2,0x3b,0x93,0x3a,0xb3,
0xa4,0x80,0x45,0x78,0x53,0xb0,0x5,0x15,0x21,0xc5,0xc,0x8b,0xb0,0xa5,0x40,0xed,
0xa5,0x28,0x2c,0xe8,0x39,0x49,0xc,0xd8,0xe7,0x6a,0x6b,0x10,0x2c,0x73,0x3,0x36,
0xd9,0xe5,0x86,0x65,0x76,0x60,0x17,0xdd,0xb9,0x54,0x8c,0xad,0xeb,0xac,0x92,0x2,
0x36,0x21,0xe5,0x54,0x34,0xe6,0x63,0xd3,0xc5,0x41,0xe8,0x28,0xf0,0x82,0xa2,0xf4,
0xca,0x16,0xa4,0x65,0x3d,0xb6,0x1c,0xc9,0xf,0x19,0xc8,0x26,0x32,0x5f,0x92,0x10,
0xf0,0xb8,0xcb,0xb,0x5b,0xaf,0x28,0x3f,0x28,0xfd,0x8,0x5b,0xa6,0x5a,0xec,0xa3,
0x59,0x6e,0x57,0x34,0x3f,0xc6,0xd3,0x96,0x84,0x5d,0x7c,0x67,0x9,0xfe,0xb3,0x92,
0x3b,0x8d,0xa4,0x34,0xc9,0xe8,0x3a,0xf1,0x41,0x3f,0xc2,0x53,0x6,0xf4,0xac,0x2,
0x53,0xaf,0xa7,0xe5,0xd4,0xa1,0x1d,0xf1,0x79,0xcf,0x61,0x6c,0xe,0xa6,0x6b,0xb,
0x92,0xd4,0x69,0x98,0x2,0x76,0x52,0x91,0xbb,0x22,0xbe,0x88,0xe0,0xd3,0x27,0x76,
0x2a,0x80,0x9c,0xa6,0x40,0xd5,0x4d,0x6b,0x81,0x3f,0x62,0x33,0x97,0xde,0x44,0xd7,
0x2,0xb9,0xd6,0x81,0xa6,0x4f,0x9c,0xf,0xb,0xe6,0x44,0x63,0xb1,0x27,0x67,0x74,
0xf6,0x95,0x1a,0xfb,0x30,0xc0,0x33,0xeb,0xb0,0xf0,0xfc,0xe7,0x65,0xd0,0x37,0x79,
0xda,0xf7,0x63,0x4b,0x5c,0xd7,0x70,0x6a,0x35,0x7e,0x1d,0xb6,0x4,0x6a,0x16,0x76,
0x8e,0xcd,0xf6,0xce,0xca,0x94,0x23,0x82,0x3b,0xae,0xa4,0x79,0xe9,0x40,0x27,0x6d,
0x7b,0x38,0xc0,0x73,0xd7,0x61,0xab,0xf4,0x7b,0x60,0x6b,0xbe,0xdc,0x14,0xa3,0x40,
0xb2,0x58,0xef,0x71,0x56,0xda,0x33,0x62,0xcc,0x74,0xa9,0xbf,0x85,0x52,0x79,0xff,
0x10,0x4c,0xe9,0x89,0x4d,0x95,0x86,0x38,0xb5,0x90,0xba,0xa3,0x68,0x9b,0x24,0xc5,
0x31,0xcc,0x3d,0xb0,0x69,0xdb,0xd5,0x1,0x9e,0x79,0x4c,0x91,0xfd,0x4c,0xc5,0x43,
0x7b,0x3d,0xf6,0x23,0x16,0x5b,0xc0,0xb1,0x52,0x87,0x43,0x7b,0xb1,0x9,0xb3,0xa1,
0xd8,0xfc,0x4f,0x9b,0xf1,0xb0,0x70,0xda,0x94,0x90,0x18,0xf1,0x55,0xe0,0xd1,0x50,
0x28,0x6a,0x1,0x76,0xa1,0x80,0xa4,0x73,0xc0,0x94,0x1a,0xe9,0xf9,0x83,0xfa,0x7f,
0xba,0x3a,0x25,0x8,0x19,0xc1,0x27,0x51,0xd8,0xb5,0x5f,0xbc,0xc9,0xb4,0xa7,0x14,
0x17,0xd,0xf3,0xb9,0xf7,0x7d,0x9d,0x9f,0xfe,0x71,0xa9,0x8f,0x58,0x6c,0xf1,0xda,
0xaf,0xb1,0x99,0xba,0xed,0x80,0x29,0x2c,0xcc,0x37,0xd9,0xd9,0x99,0x35,0x61,0x88,
0x1d,0x5a,0x4b,0x43,0xb0,0x10,0xbb,0xe3,0x1e,0xbf,0x43,0xf0,0x32,0xa0,0x38,0x6c,
0xad,0xd9,0x2b,0x3e,0x6,0x1f,0xe0,0x87,0xb2,0x29,0xde,0x8a,0x98,0x4c,0x31,0xed,
0x69,0x9a,0x17,0x7e,0xeb,0x70,0xf5,0x15,0x23,0xa9,0x18,0xb,0xdc,0x29,0x31,0x4e,
0xc4,0x82,0x84,0x8f,0x2,0xd5,0xa9,0xa9,0x29,0x43,0xba,0x75,0xcb,0x49,0xa8,0xaa,
0xda,0x93,0xa7,0x6b,0x57,0x75,0xb0,0x2a,0xab,0x92,0xda,0x1c,0xed,0x92,0x96,0x2a,
0x7d,0x53,0x7b,0xd7,0x75,0x6c,0xd4,0x37,0xdf,0x84,0x5d,0x94,0x67,0x85,0x8f,0x3d,
0xbb,0x4a,0x68,0xc2,0x12,0x9a,0xe7,0x6a,0x1e,0x55,0xdf,0x5e,0x83,0x2d,0xfa,0xdb,
0xd7,0xd1,0x23,0xb2,0x4,0xf8,0xbe,0x46,0xc8,0x4e,0x19,0xb3,0xaf,0x3,0x79,0xae,
0x6b,0xae,0x2d,0x28,0xc8,0x33,0x93,0x27,0x8f,0x77,0x46,0xed,0x36,0xce,0xcd,0x34,
0x82,0x11,0x32,0xd0,0xc6,0xa5,0x7e,0xe2,0x3,0x3e,0x33,0x4b,0xcc,0xb8,0xf,0xff,
0x7a,0x80,0x9f,0x4b,0x2a,0xf3,0x3d,0xe7,0x2b,0xa4,0x35,0x6e,0xed,0xa8,0x1f,0xdb,
0x5d,0xcc,0xb8,0x55,0xcc,0x58,0x85,0x5d,0x23,0xe5,0x6,0x5,0x4b,0x5e,0xdb,0x94,
0xf,0x2c,0x19,0x38,0x70,0x80,0xc9,0xcb,0xeb,0xe9,0x74,0xd0,0x23,0xe7,0xc0,0xdb,
0x4b,0x90,0x1a,0x75,0xde,0xb9,0x4b,0x1e,0x54,0x50,0x15,0xf6,0x63,0x2c,0x6a,0xec,
0x97,0xf6,0x1d,0x89,0x85,0xf5,0xbf,0xe2,0xd3,0x76,0x8f,0xfa,0xab,0x24,0xdc,0x3f,
0xb4,0xf,0x30,0x37,0x14,0xa,0x6d,0x94,0x67,0xf1,0x9f,0xfa,0x90,0xb3,0x75,0xf0,
0x2d,0xe9,0xe9,0x69,0xc7,0x46,0x8d,0x1a,0x6a,0x42,0xa1,0x90,0xc1,0x66,0xf7,0xa6,
0x9e,0x3,0x69,0xa9,0x90,0x64,0x3a,0x8c,0x79,0x98,0xe0,0x75,0xbf,0x83,0x15,0x93,
0x7c,0xd7,0xa7,0x2d,0x55,0xaa,0xeb,0x11,0x9f,0xf7,0x8c,0xd4,0x0,0xfe,0x1e,0x61,
0x5e,0x98,0x7b,0x76,0x7e,0x7e,0x9e,0x99,0x34,0x69,0xac,0x91,0xb7,0xd1,0xda,0x75,
0x52,0x8a,0xa2,0xa2,0xa2,0x96,0xd,0x1b,0x36,0xc8,0xbd,0x30,0xff,0x6f,0xe9,0xf8,
0x29,0x6a,0x21,0xd,0x1c,0xe7,0xbd,0x9b,0x9,0x4f,0x89,0xe9,0xb7,0x15,0x94,0x96,
0x7b,0xce,0x47,0x1,0xdf,0x10,0xd3,0x26,0xfa,0xd8,0xec,0x5f,0x48,0x5a,0xd2,0xdb,
0xf2,0x3,0xce,0x46,0x2b,0xe,0x1d,0x3a,0xbc,0x32,0x2f,0xaf,0x17,0x39,0x39,0xd9,
0x63,0xb0,0x13,0x6a,0x5a,0x43,0x6b,0x8d,0x31,0xf3,0x76,0xec,0xa8,0xa2,0xa8,0xa8,
0xaf,0xf3,0xf1,0xc3,0x9,0x36,0xe9,0xa7,0xb5,0x78,0xd8,0xb,0xae,0x28,0xbc,0x4f,
0x98,0xec,0xd9,0x3c,0x2c,0x7c,0xdf,0xd3,0xc7,0x75,0x7e,0x42,0xf0,0xca,0x55,0x9e,
0x3e,0x6d,0x14,0x43,0x72,0xdb,0xe2,0xa2,0xb7,0x8a,0x29,0x7b,0xf7,0xee,0x5f,0x65,
0x8c,0xa1,0xb2,0x72,0x62,0x8,0x5b,0xd2,0x93,0xdf,0xca,0xe7,0xaf,0xae,0xaa,0xda,
0x73,0x22,0x25,0x25,0x99,0xe8,0xe8,0x68,0x68,0x79,0x12,0x68,0xb8,0x69,0x89,0x3a,
0xd1,0xa1,0xc2,0x30,0xc4,0x4b,0x7,0xe4,0x81,0xf9,0x4d,0x1a,0xda,0x8e,0x45,0xab,
0x67,0xf9,0x48,0xcb,0x3c,0x6c,0x5,0xff,0x75,0xad,0x55,0x61,0xad,0x61,0xca,0x18,
0x60,0xe4,0x8a,0x15,0xab,0x29,0x2d,0x2d,0x22,0x3e,0x3e,0x3e,0xaf,0xd,0x2a,0xec,
0x15,0x63,0xcc,0xbc,0x63,0xc7,0x8e,0xd1,0xab,0xd7,0x49,0x77,0x7d,0x16,0x61,0x2e,
0xc9,0x69,0x49,0x52,0x5d,0x7f,0x5f,0x8a,0xff,0xb2,0xb7,0x6d,0xa1,0xad,0x8a,0x3d,
0x2e,0x6f,0x41,0x1d,0xfe,0x59,0xae,0x6f,0x81,0xe7,0xfc,0x3e,0x2c,0xb2,0x5c,0x41,
0x2b,0xe7,0x6c,0xb6,0xc6,0x1b,0xea,0x1,0x5c,0x5d,0x5d,0x5d,0x9b,0x9e,0x96,0x96,
0xca,0xf1,0xe3,0xc7,0xd3,0xf7,0xed,0x3b,0xb0,0x8f,0xd6,0x15,0x57,0x1f,0x3,0xa2,
0xe2,0xe2,0x62,0xa7,0x8e,0x1e,0x3d,0x34,0x76,0xe5,0xca,0xb5,0x8e,0x8b,0xb9,0x5d,
0x6e,0x64,0x47,0xd2,0x6e,0x6c,0x29,0x6a,0x2f,0x5,0xb8,0xb1,0xd8,0xda,0xdf,0xc3,
0x1,0x19,0x33,0x6,0xb,0x7a,0x7a,0x4b,0x8a,0x62,0xb0,0xb5,0xcd,0x43,0xf5,0x1e,
0x37,0x1e,0xb6,0x53,0x3,0x23,0x8d,0x56,0xec,0xd5,0xd2,0x1a,0xa6,0xec,0x0,0xb2,
0x1a,0x1a,0x1a,0xc6,0x76,0xe9,0x92,0xc8,0xa8,0x51,0x43,0x58,0xb6,0xec,0x83,0x2,
0x75,0xea,0xd6,0x56,0xdc,0x9f,0x72,0xf0,0xe0,0xe1,0xe9,0x71,0x71,0x71,0xa9,0xfb,
0xf6,0x1d,0xa0,0xa9,0xa9,0xc9,0x89,0x1b,0x9e,0xa4,0x1d,0x3b,0xbb,0xb5,0x81,0x6a,
0xe5,0x54,0x8c,0x55,0x87,0x15,0xc8,0x13,0xa,0x32,0x35,0xef,0xa8,0xdc,0xee,0xab,
0xb1,0xb3,0x8c,0xf7,0x7b,0xda,0xa2,0x15,0xb3,0xad,0xe7,0x54,0xf4,0xb8,0x56,0x2a,
0xb4,0x48,0xc1,0x64,0x7d,0x50,0xf5,0x65,0x64,0x38,0x77,0x2d,0x5d,0xfa,0x2e,0x0,
0x79,0x79,0x3d,0xb3,0xb1,0xb9,0xec,0xd6,0xd0,0x5b,0xc6,0x98,0xc7,0xeb,0xea,0xe,
0x32,0x60,0xc0,0x49,0xd4,0xa3,0x88,0x30,0x97,0x7a,0xb6,0x40,0x4f,0xd0,0x9c,0x4b,
0x8f,0xe,0x53,0xbc,0xf0,0xb6,0x9e,0x35,0xbe,0x5,0x67,0xe0,0x49,0xa9,0x4a,0x6f,
0x35,0xfe,0xdf,0xe4,0xb9,0x7d,0x36,0x5c,0x30,0x4b,0x82,0xc4,0xb6,0x4f,0x56,0x56,
0x6,0xd9,0xd9,0x99,0xd1,0x1b,0x37,0x6e,0x41,0x62,0x7a,0xb4,0x15,0xf7,0x1f,0xaa,
0xad,0x3d,0x38,0x3e,0x35,0x35,0x39,0xb3,0xa1,0xa1,0x91,0xe3,0xc7,0x8f,0x67,0x8,
0xbe,0x78,0xad,0x83,0xa5,0xa5,0x4e,0xc0,0xa0,0x3,0x1a,0x66,0x10,0x7c,0x99,0xa8,
0x5d,0x52,0x53,0x15,0x52,0x45,0x6e,0x75,0xd8,0xa0,0xdf,0x73,0x8d,0x70,0x40,0xf7,
0xb2,0x25,0xfb,0x25,0xad,0xc3,0x84,0x34,0x1c,0xc,0x22,0x29,0xc8,0xbd,0x7c,0x12,
0x60,0xd5,0xaa,0x75,0xf4,0xe8,0x91,0x4b,0x74,0x74,0xf4,0xe4,0x36,0x44,0xcb,0xef,
0x36,0x36,0x36,0xbe,0x76,0xfc,0xf8,0x9,0xca,0xca,0x4e,0xe,0xd6,0xc9,0x3e,0x3e,
0x7f,0x47,0xd0,0x5f,0x68,0xde,0xe9,0xa1,0xbf,0x2,0xd8,0xa0,0xe8,0xf8,0x5c,0xd9,
0x95,0xeb,0x7d,0xda,0x36,0xd2,0x3c,0x4f,0x3f,0xc6,0xc3,0x94,0xe7,0xe5,0x24,0xe5,
0x84,0xb,0x90,0xdc,0x5,0x8c,0xa8,0xab,0x3b,0x98,0x57,0x5e,0x5e,0x46,0x4e,0x4e,
0x76,0xdc,0x86,0xd,0x1f,0xc5,0xa,0x41,0x3d,0xd6,0xa,0x60,0x2f,0x2f,0x31,0x31,
0xa1,0x32,0x25,0x25,0x9,0x63,0x20,0x37,0xb7,0x6b,0xe6,0x81,0x3,0x35,0xbb,0x68,
0xae,0xdd,0xea,0x28,0xda,0x23,0xb5,0x55,0xa6,0xdf,0x9b,0x2b,0x69,0x9,0x2,0x12,
0xee,0x17,0x53,0x46,0x4b,0x5a,0xe,0xb9,0xda,0x9c,0x7c,0xca,0x4c,0x5,0xdb,0xbb,
0x3d,0xc,0x1b,0x87,0x2d,0xac,0x58,0x10,0x54,0x52,0x1c,0x5f,0x7c,0x2e,0x70,0x74,
0xff,0xfe,0x6a,0xa6,0x4e,0x9d,0x40,0x66,0x66,0x7a,0x5,0x67,0x2f,0x17,0x2d,0xc7,
0x56,0xc6,0x5f,0x5e,0x55,0xb5,0x87,0xa5,0x4b,0xdf,0xa3,0x6f,0xdf,0xb,0x28,0x2c,
0xcc,0x47,0x3f,0xac,0xa3,0xa5,0x65,0xbf,0xa7,0x3,0x6,0x2a,0x88,0xd,0xea,0x44,
0x38,0x5b,0x46,0xe5,0xf9,0xb4,0xff,0x51,0x6a,0xcc,0xfb,0x9e,0x6,0x61,0x68,0x73,
0xce,0xf4,0xbb,0xdb,0xa,0x10,0xc6,0x2,0xd7,0x6c,0xdd,0xba,0x23,0xb1,0x4f,0x9f,
0xde,0x6c,0xda,0xf4,0x51,0xa8,0xae,0xee,0xd0,0x16,0x19,0x3f,0xe3,0x71,0xf,0x2f,
0x12,0x48,0xf7,0x83,0x6e,0xdd,0x72,0x66,0xf7,0xee,0xdd,0xa3,0x34,0x3d,0x3d,0x8d,
0x3,0x7,0x6a,0xd8,0xb6,0x6d,0x67,0xe3,0xe6,0xcd,0xdb,0x5e,0x6d,0x6a,0x6a,0x1a,
0x8d,0x4d,0xe3,0x76,0xd5,0x8,0xdb,0xd3,0x41,0x8c,0x69,0x72,0x8d,0x50,0xb0,0x49,
0xb1,0x85,0xad,0x90,0xf0,0x33,0xd1,0x9,0x6c,0x12,0x2b,0x89,0xd3,0xe7,0x44,0x36,
0x48,0x3d,0x67,0xeb,0x3d,0x47,0x3d,0x76,0x6e,0xaa,0xcb,0xf8,0x37,0x6,0x65,0xca,
0x76,0x60,0x40,0x43,0x43,0xc3,0xc0,0xac,0xac,0xc,0xf2,0xf2,0x7a,0xc5,0xae,0x59,
0xb3,0x21,0x4d,0xa3,0xc6,0x59,0x91,0xe1,0x2a,0xec,0x7a,0x8d,0x77,0xf4,0xeb,0x97,
0x7f,0xf5,0x9c,0x39,0x33,0x32,0x72,0x73,0xbb,0xc6,0x6f,0xd9,0xb2,0xdd,0x6c,0xd9,
0xb2,0xed,0x68,0x53,0x93,0x59,0xf,0xec,0x68,0x6a,0x6a,0xba,0x1b,0xe8,0x96,0x98,
0x98,0x30,0x2a,0x2f,0xaf,0xe7,0xd8,0xea,0xea,0xda,0x14,0x31,0xf7,0x60,0x7,0x30,
0xa5,0x1a,0x5b,0x5c,0xd7,0x57,0x83,0x27,0x5b,0x23,0x76,0x7d,0xc0,0x8,0x3f,0x5e,
0x76,0xe5,0x4d,0x4e,0x9f,0x3e,0x91,0x44,0xf3,0x46,0x8,0x6b,0x3c,0xf1,0x53,0x1,
0xb6,0xa,0xf3,0xf7,0x7e,0xee,0x71,0x5b,0x99,0xe2,0x0,0x8b,0x17,0x6f,0xdb,0xb6,
0x23,0x75,0xc4,0x88,0x72,0xaa,0xab,0x6b,0x7b,0xd5,0xd4,0xd4,0x1d,0x90,0x1f,0xfe,
0xad,0xae,0x5d,0xb3,0xbe,0x99,0x95,0x95,0x31,0x2a,0x27,0x27,0x2b,0x3b,0x33,0x33,
0x9d,0xba,0xba,0xc3,0xbc,0xf0,0xc2,0xab,0x3b,0xab,0xab,0x6b,0xe6,0x36,0x35,0x99,
0x7b,0x14,0x15,0xcf,0x54,0x47,0xad,0x88,0x89,0x89,0xae,0x1c,0x31,0xa2,0x9c,0x9c,
0x9c,0xec,0x81,0x5b,0xb7,0xee,0xc8,0x16,0x24,0x11,0x2e,0x89,0x71,0xe6,0xbb,0xdf,
0xac,0xd1,0x99,0xe8,0xea,0x88,0x64,0x82,0xef,0x84,0xea,0x6c,0x90,0xb3,0x82,0x53,
0xf3,0xf4,0xe8,0x77,0x8c,0xc3,0xd6,0x8e,0x79,0xd7,0x44,0xce,0x13,0x33,0xdf,0x25,
0xd8,0xbc,0x9a,0x93,0x34,0x5b,0xaa,0xc6,0xc,0x1b,0x36,0xc8,0xe4,0xe6,0x66,0x1b,
0x60,0x5f,0x4c,0x4c,0x74,0xf5,0xb0,0x61,0x83,0xcc,0xc5,0x17,0x8f,0x30,0x97,0x5c,
0x32,0xca,0x64,0x66,0xa6,0x1f,0x94,0x2e,0xff,0xb1,0x3a,0xc4,0x41,0x87,0x93,0x68,
0x5e,0xb6,0x7c,0x36,0xb0,0xbd,0x7b,0xf7,0x1c,0x53,0x59,0x39,0xd1,0x14,0x14,0x5c,
0x60,0xb0,0x9,0xb4,0x20,0x14,0xad,0x8e,0xb8,0x19,0xbb,0x3a,0xf7,0x16,0x75,0x48,
0x2d,0xb6,0xc8,0xae,0xc,0xf8,0xa5,0x10,0x89,0xdc,0x80,0xef,0xca,0x11,0x84,0xf2,
0xc,0xfe,0xe9,0xe2,0xcf,0xe9,0xfd,0x17,0xfb,0xdc,0xf7,0x3a,0xf0,0x87,0x16,0xee,
0x6b,0x13,0x8d,0x91,0x7b,0x79,0x72,0x5f,0xdc,0xf8,0xf8,0x38,0x93,0x9a,0x9a,0x6c,
0x0,0x53,0x5a,0x5a,0x6c,0xe4,0x61,0x2c,0xc6,0xc2,0xd9,0x2d,0x2d,0x40,0x70,0x99,
0x44,0xba,0x52,0x3a,0xd7,0x24,0x24,0xc4,0x9b,0xc4,0xc4,0x4,0xe7,0xfe,0xf6,0x2c,
0xf3,0x11,0x85,0xcd,0x5f,0x7c,0x1b,0xbb,0x4a,0x91,0x3b,0x65,0xb0,0x40,0xf6,0x2d,
0xd7,0xe5,0x8e,0xaf,0x11,0xe3,0x82,0xd2,0x1c,0x49,0xde,0x6c,0x9f,0xb6,0x7c,0xbd,
0xc7,0x6f,0xaf,0x96,0x9b,0xd4,0x36,0x2d,0xc8,0xcb,0xbb,0x0,0x3f,0x1,0xea,0x33,
0x33,0xd3,0xd,0x60,0x6,0xc,0xe8,0x6f,0x86,0xc,0xb9,0xc8,0xf4,0xe9,0xd3,0xdb,
0xa9,0xe3,0xbd,0x1f,0x9b,0x92,0xed,0xc2,0x99,0xa7,0x52,0xf7,0x94,0xbb,0xf8,0x8,
0x76,0x3a,0x9b,0x19,0x30,0xa0,0xbf,0xb9,0xf0,0xc2,0x22,0x93,0x96,0x96,0x6a,0x84,
0xc6,0x7e,0xaa,0x95,0xdf,0xe5,0xac,0x31,0xf9,0x98,0xd4,0xc9,0x11,0x31,0x63,0x35,
0xb6,0x9a,0xc6,0xc9,0x8e,0xba,0x29,0x59,0xd7,0x2f,0x22,0xf8,0x3c,0xf8,0x4c,0x9a,
0x77,0x28,0xf2,0xc6,0x1f,0x49,0xc0,0xff,0x6a,0x90,0x7a,0x7,0x68,0x96,0xc2,0x89,
0x87,0x82,0xbc,0x3c,0x3,0x78,0xaf,0x6b,0xd7,0x2c,0x53,0x54,0xd4,0xd7,0x0,0xa6,
0x6b,0xd7,0x2c,0x33,0x7d,0xfa,0x65,0x26,0x3f,0x3f,0x6f,0xbb,0x46,0x43,0x5b,0xe6,
0xb4,0x7f,0x51,0x6a,0xb0,0x11,0x30,0xb1,0xb1,0xb1,0x26,0x3f,0xbf,0xb7,0x29,0x29,
0x29,0x74,0x46,0xf8,0xd7,0xcf,0xa2,0xa2,0x86,0x48,0x2f,0x3f,0x2e,0xe3,0x69,0x34,
0x62,0x37,0x62,0x77,0x90,0x38,0x5b,0xfe,0x62,0x8a,0x98,0x78,0x63,0x98,0x54,0xba,
0xdf,0x96,0x52,0xe,0x42,0xbd,0x1f,0xff,0x74,0xf1,0x7d,0x8a,0xd3,0xda,0x3d,0x30,
0x66,0x85,0x42,0xa1,0x63,0xc9,0xc9,0x49,0x27,0x55,0x57,0x56,0x56,0x86,0x79,0xf4,
0xd1,0x7,0xcc,0x6d,0xb7,0xdd,0x6c,0x34,0x22,0xda,0xc2,0x94,0x7c,0x79,0x2d,0xa6,
0x85,0xe3,0xe5,0x16,0x62,0x80,0x41,0xd8,0x9d,0x80,0xdc,0x5,0x12,0x7,0xb0,0xcb,
0x44,0x5d,0x4b,0xeb,0xab,0xee,0x93,0xb0,0x79,0x97,0x70,0x6c,0x23,0x38,0x42,0xb6,
0xe3,0xab,0x2d,0x40,0x54,0xf,0x4a,0x85,0x16,0xf8,0x30,0x6c,0x83,0x54,0x7d,0xbb,
0x44,0xf4,0x99,0xd2,0xd2,0x22,0x53,0x5c,0xdc,0xd7,0x29,0xcd,0x34,0x80,0x99,0x39,
0x73,0x9a,0x79,0xf1,0xc5,0xc7,0x4c,0xff,0xfe,0x7d,0xf7,0x49,0xa7,0xb7,0x85,0xee,
0x70,0x33,0x22,0x3d,0x3d,0xd5,0x2d,0x29,0x5b,0x69,0xde,0xbf,0xa4,0xbb,0x74,0xf0,
0x7d,0xd2,0xc3,0x8d,0xc2,0x9c,0xf6,0x2b,0xa0,0xbd,0xca,0x47,0x45,0xb5,0x26,0xe6,
0xfa,0x8e,0x50,0xe3,0x70,0x6c,0x32,0xf0,0x33,0xfc,0xb7,0x94,0x42,0xaa,0x78,0xb5,
0xcf,0x80,0x49,0xc5,0xa6,0xc8,0x17,0xb9,0x7,0x60,0x6b,0x23,0xfa,0x9c,0xb4,0xb4,
0xd4,0x51,0x83,0x7,0x97,0xb1,0x79,0xf3,0xf6,0x2d,0xb2,0x5,0xaf,0x3,0x6f,0x3c,
0xf7,0xdc,0xcb,0xd,0xbb,0x77,0xef,0x65,0xca,0x94,0xf1,0x89,0x62,0x4a,0x5b,0xa4,
0x65,0xbd,0x3b,0x80,0xab,0xa9,0xa9,0xa3,0xa6,0xa6,0xce,0xad,0xa2,0x2e,0xc1,0xae,
0x44,0xf7,0x18,0x76,0xf,0xae,0x6f,0x8,0xbf,0x5a,0x82,0x2d,0x62,0x18,0x2f,0x15,
0xf6,0x6c,0x3b,0x40,0xc6,0x7a,0xd9,0x82,0x58,0xc2,0x93,0xd,0x75,0x76,0xbd,0x9b,
0xed,0xd3,0x7,0xbb,0x14,0x6c,0x4e,0xf3,0xb4,0xd5,0xc9,0x73,0x1b,0xe8,0xfe,0x86,
0x36,0x55,0x58,0x94,0x94,0xf4,0x23,0x2a,0x2a,0x6a,0x2f,0x76,0xea,0xf2,0x76,0x20,
0xbb,0xbe,0xbe,0xe1,0xb7,0x2f,0xbd,0x34,0xff,0xb2,0xd4,0xd4,0xe4,0x2e,0x8a,0x3f,
0xe6,0x72,0xf6,0x29,0x6e,0x17,0xd0,0x9c,0xb7,0x3e,0x28,0x11,0x27,0x27,0x27,0x9b,
0x63,0xc7,0x4e,0xf2,0xa8,0x7,0x76,0x31,0x1b,0x47,0x5,0x7c,0x24,0x74,0xf5,0x2d,
0xa9,0xb6,0x2a,0xda,0x51,0x3c,0xed,0xa1,0xe5,0xb2,0x49,0x9f,0xd7,0x33,0xdf,0xe,
0x18,0x4c,0xae,0x51,0x94,0xff,0x6b,0x17,0xb6,0x56,0x48,0x73,0x8a,0x78,0xe,0x36,
0xf,0xb3,0xc4,0x75,0xdf,0x2,0x39,0x3b,0x6d,0xae,0xa4,0x2c,0x4e,0x4b,0x4b,0xad,
0xba,0xeb,0xae,0x6f,0x98,0xd4,0xd4,0x54,0x6f,0x99,0xcd,0x97,0x80,0x13,0x59,0x59,
0x19,0x8e,0xda,0xf9,0xca,0x19,0x5c,0xd6,0x2c,0xec,0x6a,0x73,0x6f,0x8,0x79,0x36,
0xd6,0x1d,0x4e,0x30,0xe5,0xe5,0x65,0x66,0xdc,0xb8,0xd1,0x66,0xf4,0xe8,0xa1,0x6e,
0xbb,0xd2,0x28,0x9,0x78,0x40,0x81,0x58,0x47,0x2c,0x11,0x58,0x2a,0xd5,0xd2,0x9e,
0x69,0x71,0xb1,0xb2,0x71,0xf7,0x8a,0xc1,0x1f,0x61,0xab,0x67,0x26,0xb8,0xec,0xe6,
0x1b,0x99,0x99,0xe9,0x8d,0x33,0x66,0x54,0x3a,0x9e,0xe5,0x2f,0xb1,0x73,0x35,0x73,
0x34,0x18,0xfe,0x4b,0x80,0xe6,0x5d,0x6d,0x66,0x4a,0x54,0x54,0x54,0xd5,0x90,0x21,
0x17,0x19,0x4e,0xdf,0xd3,0x7d,0x92,0xa2,0x73,0xa7,0x23,0x17,0x78,0xf4,0x6a,0x94,
0x2,0xb6,0x5b,0xa4,0xf2,0x1a,0xdd,0x76,0xa4,0xb8,0xb8,0x9f,0x19,0x3a,0x74,0xa0,
0x29,0x2b,0x2b,0x39,0xc5,0xd0,0xa7,0xa5,0xa5,0x18,0xec,0x14,0x84,0xf1,0x84,0x61,
0x8f,0xf7,0x33,0x50,0x77,0x6c,0x72,0xea,0xf1,0x36,0xd8,0xa5,0xee,0xfa,0x4d,0x77,
0x8a,0xa1,0x1f,0x60,0xcb,0x9a,0x26,0x6b,0xc0,0x3d,0xe8,0x30,0x25,0x3e,0x3e,0xee,
0xa3,0x59,0xb3,0xa6,0x99,0xdd,0xbb,0x97,0x9b,0xdb,0x6f,0xbf,0xd9,0x74,0xe9,0x92,
0x58,0x8f,0xcd,0x23,0xcd,0xa7,0x79,0xb7,0x89,0xef,0x62,0x67,0xa1,0xb5,0x8d,0x29,
0x40,0x55,0x46,0x46,0x9a,0x1f,0x53,0x42,0xd2,0xf9,0x4e,0x87,0xee,0x14,0xa4,0x9d,
0xad,0x20,0xf1,0x61,0xa9,0x9a,0xda,0x96,0x3c,0xad,0xf8,0xf8,0x38,0xc7,0x9d,0xdd,
0x3,0xd4,0x95,0x97,0x97,0x99,0x99,0x33,0xa7,0x39,0x55,0x95,0xe7,0x82,0x6e,0xd4,
0x37,0x5e,0x71,0x86,0x6b,0x52,0xe5,0xba,0x7e,0x41,0xf1,0xc5,0x1a,0xc1,0x2b,0x3f,
0xc0,0x16,0x78,0xc7,0x69,0xf0,0x7c,0x4d,0x6d,0x65,0xd8,0x5a,0xaf,0xdf,0x57,0x54,
0xc,0x37,0xb,0x16,0x3c,0x6d,0xee,0xbe,0xfb,0xe,0x53,0x58,0x58,0x60,0xa4,0xfa,
0x1f,0x94,0x44,0x65,0xd2,0xce,0xfc,0x4e,0x71,0x5a,0x5a,0x6a,0xd5,0xf5,0xd7,0xcf,
0x32,0x49,0x49,0x49,0xbf,0xf2,0xb1,0x45,0x5f,0x53,0xa7,0x3a,0x1d,0xbd,0x42,0xc7,
0x8e,0x33,0xb8,0xbc,0xee,0x63,0xa5,0x3c,0xb1,0x52,0xe0,0xa7,0xe5,0xe5,0x17,0x99,
0x39,0x73,0x66,0x9c,0x4b,0xa6,0x24,0xa,0x2e,0xf9,0x3,0xa7,0x2f,0x55,0x15,0x92,
0x36,0xf8,0xa5,0x7e,0xd3,0x11,0xb9,0xff,0xd3,0xb1,0x7b,0x87,0x79,0xe9,0x42,0x6c,
0x25,0xcd,0x8d,0xea,0xa7,0x5f,0x49,0x23,0x34,0x8,0x6b,0x7b,0x0,0xff,0x7d,0x8d,
0xdb,0xc7,0x94,0x7b,0xee,0xb9,0xc3,0x24,0x24,0x24,0x6c,0xe4,0xf4,0xba,0xaf,0xfe,
0xd8,0x42,0x8a,0x53,0x3a,0x3b,0x25,0x25,0xd9,0xe4,0xe5,0xf5,0x34,0x25,0x25,0x85,
0x26,0x37,0xb7,0xab,0x97,0x11,0x3b,0xe5,0xa3,0xaf,0x95,0x64,0x45,0x2b,0xd2,0x7f,
0xb1,0xac,0xac,0xd8,0xc1,0xc1,0xee,0xe6,0xdc,0xd1,0xd,0xf2,0x6,0x9d,0x55,0xf0,
0xa,0xd4,0x79,0xbf,0x90,0x4,0x2f,0xc2,0xce,0xc,0xbe,0x86,0xd3,0xb7,0x8a,0xf2,
0xc6,0x3f,0x4f,0x48,0x1a,0xfe,0x28,0xcf,0xeb,0x15,0xd9,0xde,0xb4,0xd6,0x38,0x57,
0xad,0xf6,0xbe,0xea,0xeb,0xeb,0xeb,0x57,0xae,0x5c,0x47,0xff,0xfe,0x5,0xd1,0xcb,
0x97,0xaf,0xf2,0x4e,0xf4,0x5c,0x27,0xbd,0x7c,0x4a,0x14,0x5d,0x54,0xd4,0x97,0xdc,
0xdc,0x6c,0x96,0x2d,0x5b,0xce,0xee,0xdd,0x7b,0x1d,0x48,0xfb,0xb8,0x6c,0xc5,0x33,
0xd8,0xea,0x92,0xef,0x48,0xec,0x1b,0x81,0xcc,0x94,0x94,0xe4,0x41,0x13,0x26,0x54,
0xf0,0xf0,0xc3,0x7f,0x70,0x36,0x2b,0x3b,0x57,0xf4,0x37,0xe5,0x41,0x3e,0x2d,0x29,
0x98,0x2a,0xf5,0xb3,0x4f,0xc1,0xea,0x9f,0x65,0xc8,0xcf,0x46,0x87,0x25,0xe1,0xe,
0xd2,0x7d,0x9b,0xec,0xcc,0xb6,0x70,0x7f,0x70,0x14,0xf0,0xd0,0x88,0x11,0xe5,0xa6,
0xb2,0x72,0x62,0x63,0xb,0x0,0xdb,0x6c,0x41,0xd1,0x2d,0xa9,0xa8,0xfd,0x1a,0x69,
0x63,0x5c,0x3a,0x34,0x51,0x23,0xd1,0x59,0x1d,0xe8,0xf6,0xbc,0xbc,0x9e,0x8d,0x9f,
0xfd,0xec,0x4c,0x93,0x94,0xd4,0x65,0x2b,0xe7,0x76,0xf3,0xcb,0x28,0xe9,0x79,0xa7,
0xfe,0xf8,0x27,0x34,0x2f,0xbb,0xfb,0xf,0x4b,0xe3,0x81,0xed,0x31,0x31,0x31,0x6,
0x5b,0xb6,0x33,0xc6,0x83,0x8b,0x4d,0x57,0x0,0x75,0xac,0x5,0xa6,0xfc,0xae,0x5,
0x2f,0x6a,0xac,0x98,0x59,0xa,0x3c,0x71,0xc5,0x15,0x93,0x4d,0x45,0xc5,0x70,0x13,
0x2e,0x58,0xbb,0x1d,0x70,0x89,0x33,0x70,0x92,0xf8,0x4,0x50,0xa,0x70,0x7f,0x4c,
0x4c,0x4c,0x63,0x59,0x59,0xb1,0xc1,0x4e,0x1d,0xeb,0x2a,0xf8,0xfd,0x37,0xd2,0xa1,
0xee,0x79,0x21,0xbb,0x64,0x2f,0xe6,0xca,0x88,0x3e,0xcf,0xe9,0x95,0xe7,0x17,0x0,
0xdf,0x52,0xcc,0xf2,0x14,0x70,0x58,0xae,0xf0,0x21,0x3e,0xc6,0xf9,0x82,0x9f,0x34,
0xba,0x38,0x2e,0x2e,0x76,0xcf,0xf5,0xd7,0xcf,0x32,0xa5,0xa5,0xc5,0x87,0xb0,0x65,
0x47,0x7,0xb1,0x39,0x8b,0x5a,0x31,0xe1,0x21,0x49,0xd5,0x4,0x61,0x4a,0x51,0xea,
0xfc,0xd7,0x14,0x58,0x66,0xca,0x58,0xfe,0xf,0xb0,0xb8,0x4f,0x9f,0xde,0x8d,0x80,
0x89,0x8b,0x8b,0x6d,0x2c,0x2d,0x2d,0x36,0x99,0x99,0xe9,0x87,0xa4,0x87,0x43,0x9d,
0xb5,0x93,0xdb,0x1a,0x94,0xf5,0x0,0x9e,0x89,0x8f,0x8f,0x1b,0x51,0x5f,0xdf,0x40,
0x53,0xd3,0xc9,0x3a,0xba,0x97,0x15,0xab,0x2c,0x14,0x73,0x4e,0x5b,0x70,0x26,0x14,
0xa,0x5d,0x6e,0x8c,0x49,0x37,0xc6,0xec,0x49,0x4e,0x4e,0x1a,0x3c,0x72,0x64,0x79,
0xb7,0x82,0x82,0xb,0xd8,0xb4,0x69,0xb,0x2b,0x56,0xac,0xa6,0xb2,0x72,0x12,0x1b,
0x36,0x6c,0x66,0xd1,0xa2,0xb7,0x5e,0x97,0x27,0xb4,0x35,0x22,0x3,0xad,0xa3,0xb1,
0x34,0x27,0x91,0xdc,0xc7,0x3d,0xd8,0x92,0x19,0x87,0xc9,0xdf,0xf3,0x5e,0x53,0x51,
0x31,0xdc,0xdc,0x70,0xc3,0xb5,0x66,0xdc,0xb8,0xd1,0xe6,0x81,0x7,0x7e,0x68,0x36,
0x6f,0x5e,0x6a,0xee,0xbc,0xf3,0x6b,0x26,0x14,0xa,0x99,0x39,0x73,0x66,0x98,0x5b,
0x6f,0xfd,0x8a,0x51,0xd0,0x35,0xb2,0xb3,0x77,0x72,0x5b,0x25,0xa5,0xbb,0x40,0xc7,
0x78,0x41,0xa,0xc3,0xa,0xb,0xb,0x52,0xba,0x77,0xcf,0x39,0xb2,0x7c,0xf9,0xea,
0x63,0x35,0x35,0xb5,0x2f,0x61,0xb3,0x6c,0x37,0xe1,0xa9,0x6b,0x8a,0x8f,0x8f,0xe3,
0xfb,0xdf,0xbf,0x95,0xa1,0x43,0x7,0xb1,0x78,0xf1,0x3b,0xac,0x5f,0xbf,0x89,0x57,
0x5f,0x5d,0x48,0x49,0x49,0x3f,0xe,0x1f,0x3e,0xca,0xca,0x95,0x6b,0x76,0x1c,0x39,
0x72,0xec,0x69,0xec,0x8e,0xd8,0x47,0x22,0xe3,0xbf,0x7d,0x94,0xf,0x7c,0x39,0x26,
0x26,0xe6,0xd0,0x95,0x57,0x4e,0x36,0xf7,0xde,0xfb,0x1f,0x66,0xca,0x94,0x9,0x26,
0x3a,0x3a,0xb4,0xcb,0x2b,0x25,0xa5,0xa5,0xc5,0x26,0x2e,0x2e,0xce,0xe4,0xe5,0xf5,
0x34,0xfd,0xfa,0xf5,0x31,0x99,0x99,0xe9,0xa6,0xb2,0x72,0xa2,0x93,0x6d,0x74,0x36,
0x70,0x9e,0x48,0xf0,0x99,0xbc,0xe7,0x5,0x5,0x99,0xad,0x5b,0x3,0xbc,0xd7,0xd4,
0xd4,0x14,0xb7,0x71,0xe3,0x96,0xc1,0xa1,0x50,0x28,0xbe,0xb1,0xb1,0x89,0xc4,0xc4,
0xf8,0xe4,0xf8,0xf8,0x38,0xea,0xea,0x6c,0xf9,0x56,0x49,0x49,0x21,0xe5,0xe5,0x65,
0x7c,0xf8,0xe1,0x5a,0xd2,0xd3,0x53,0xb9,0xf4,0xd2,0x4b,0xe8,0xd9,0xb3,0x1b,0xf5,
0xf5,0xd,0x6c,0xd8,0xb0,0x79,0xef,0x81,0x3,0x35,0xf7,0x63,0xd7,0xd7,0x7a,0x87,
0xe0,0x50,0x7c,0x84,0x5c,0x8c,0xbd,0x4e,0x28,0xe9,0x6f,0x53,0x52,0x92,0x77,0xe3,
0xca,0x4c,0xba,0x0,0x47,0x3,0xd4,0xe6,0xe6,0x66,0x57,0x67,0x67,0x67,0x56,0xcb,
0x4d,0x9e,0xd5,0xc1,0x8,0x70,0xa7,0xb0,0x29,0xad,0xa1,0x41,0x72,0x87,0xaf,0xf2,
0x9c,0x6f,0x50,0x2c,0xb2,0x58,0xff,0xdf,0x48,0xc7,0x54,0x43,0x46,0x98,0x72,0x86,
0xe7,0xfa,0x81,0x76,0x4e,0xb4,0x1f,0xa1,0x8,0x45,0x28,0x42,0x11,0x8a,0x50,0x84,
0x22,0x14,0xa1,0x8,0xfd,0x83,0xd0,0xff,0x3,0x5a,0xa8,0xb5,0xde,0xe0,0x29,0x94,
0xa3,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/jose/Documentos/qt/robocol/robocol/imagenes/llantaD.png
0x0,0x0,0x1,0x79,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x36,0x0,0x0,0x0,0x5b,0x8,0x6,0x0,0x0,0x0,0x38,0x2f,0x76,0x59,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xdf,0x4,0xb,0x1,0x35,0x29,0xec,0x7c,0x15,0x76,0x0,0x0,0x1,0x6,0x49,0x44,
0x41,0x54,0x78,0xda,0xed,0xdc,0x21,0x4e,0xc5,0x50,0x10,0x46,0xe1,0xd3,0xf2,0x40,
0x40,0x5a,0xc3,0x6,0x5a,0x8d,0x6b,0xb0,0x38,0x14,0x2f,0x69,0xb0,0x4,0x57,0xc3,
0xae,0xba,0x6,0xc,0x6b,0xc0,0xcd,0x1e,0x6a,0x70,0xd4,0xb4,0x95,0x8f,0x62,0x80,
0x80,0xc4,0xd1,0xcb,0x19,0x35,0x19,0xf7,0xe5,0xce,0x3f,0xf2,0x42,0xa2,0x95,0x7d,
0xeb,0x2f,0x13,0x31,0xbd,0x1,0x91,0x1,0x57,0xc0,0x43,0x55,0x55,0x37,0xeb,0xba,
0x1e,0x6f,0x5d,0x35,0xc,0xc3,0x33,0x70,0xb7,0x3,0x2e,0x9a,0xa6,0xb9,0xef,0xfb,
0x9e,0xa2,0x28,0x36,0x8d,0x9a,0xa6,0x89,0xae,0xeb,0xae,0x23,0x62,0xbf,0xfb,0x1c,
0xd6,0x75,0x4d,0x59,0x96,0x9b,0x87,0x7d,0xc4,0xeb,0x34,0x4f,0xf5,0x78,0x8,0x13,
0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,
0x9,0x13,0x26,0x4c,0x98,0xb0,0xff,0x0,0x3b,0x4b,0x15,0xb6,0x4f,0x15,0x56,0x9b,
0x31,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,
0x4c,0x98,0x30,0x61,0xc2,0x84,0xfd,0x12,0x36,0xa6,0xa,0x7b,0x4a,0x15,0xf6,0x62,
0xc6,0x84,0x9,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,
0x30,0x61,0xc2,0x84,0x9,0x13,0x26,0x4c,0x98,0xb0,0x3f,0x53,0x5f,0x7f,0xe6,0x2c,
0xcb,0x42,0x9e,0x6f,0xdb,0x39,0xcf,0xf3,0xf,0xd8,0x18,0x11,0x87,0xb6,0x6d,0x8f,
0x52,0x78,0xa9,0x88,0x38,0x0,0x63,0x6,0x9c,0x0,0xb7,0xc0,0x79,0x22,0x5b,0xf8,
0xa,0x3c,0xbe,0x3,0xa4,0xa9,0x2c,0xb1,0xb7,0xef,0x56,0xd1,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// fantasma4
0x0,0x9,
0x5,0xa8,0x7a,0x44,
0x0,0x66,
0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x34,
// amarillo
0x0,0x8,
0x3,0x89,0xe,0x2f,
0x0,0x61,
0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x6f,
// azul
0x0,0x4,
0x0,0x6,0x91,0xbc,
0x0,0x61,
0x0,0x7a,0x0,0x75,0x0,0x6c,
// imagenes
0x0,0x8,
0x3,0x7d,0xca,0xc3,
0x0,0x69,
0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,
// rojo
0x0,0x4,
0x0,0x7,0x96,0xf,
0x0,0x72,
0x0,0x6f,0x0,0x6a,0x0,0x6f,
// fantasma1
0x0,0x9,
0x5,0xa8,0x7a,0x41,
0x0,0x66,
0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x31,
// fantasma2
0x0,0x9,
0x5,0xa8,0x7a,0x42,
0x0,0x66,
0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x32,
// rosado
0x0,0x6,
0x7,0x96,0x97,0xaf,
0x0,0x72,
0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x64,0x0,0x6f,
// fantasma3
0x0,0x9,
0x5,0xa8,0x7a,0x43,
0x0,0x66,
0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x33,
// llantaI.png
0x0,0xb,
0xa,0xbe,0x7,0xe7,
0x0,0x6c,
0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x49,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// Interfaz.png
0x0,0xc,
0x6,0x86,0xe,0x47,
0x0,0x49,
0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// Antena.png
0x0,0xa,
0xc,0x4d,0x5c,0x7,
0x0,0x41,
0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// llantaD.png
0x0,0xb,
0xa,0xb1,0x7,0xe7,
0x0,0x6c,
0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x44,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1,
// :/azul
0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x45,0x16,
// :/rojo
0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6c,0xbd,
// :/imagenes
0x0,0x0,0x0,0x3c,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xa,
// :/amarillo
0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x34,0x24,
// :/fantasma1
0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x84,0x4c,
// :/fantasma2
0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x97,0xca,
// :/fantasma3
0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc5,0x60,
// :/fantasma4
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
// :/rosado
0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb2,0x8c,
// :/imagenes/Interfaz.png
0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xdd,0x69,
// :/imagenes/llantaD.png
0x0,0x0,0x1,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x80,0xb6,
// :/imagenes/llantaI.png
0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xdb,0xf6,
// :/imagenes/Antena.png
0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x69,0xc4,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_rsc)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_rsc)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_rsc)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_rsc)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_rsc)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_rsc)(); }
} dummy;
}
| Robocol/RobocolERC2015 | Code/qt/robocol/build-robocol-Desktop_Qt_5_4_1_GCC_64bit-Debug/qrc_rsc.cpp | C++ | gpl-2.0 | 511,987 |
from scipy.io import wavfile
import bark, os
def dat_from_wav(wav, barkname, **attrs):
rate, data = wavfile.read(wav)
return bark.write_sampled(barkname, data, rate,**attrs)
def _main():
''' Function for getting commandline args.'''
import argparse
p = argparse.ArgumentParser(description='''
converts wav file to bark format
''')
p.add_argument('wav', help='path to wav file')
p.add_argument('out', help="path to bark file")
p.add_argument("-a",
"--attributes",
action='append',
type=lambda kv: kv.split("="),
dest='keyvalues',
help="extra metadata in the form of KEY=VALUE")
args = p.parse_args()
if args.keyvalues:
dat_from_wav(args.wav,
args.out,
**dict(args.keyvalues))
else:
dat_from_wav(args.wav, args.out)
if __name__ == '__main__':
_main()
| gfetterman/bark | bark/io/datfromwav.py | Python | gpl-2.0 | 910 |
package com.lightniinja.kperms.commands;
import org.bukkit.command.CommandSender;
import com.lightniinja.kperms.ConfigManager;
import com.lightniinja.kperms.KPermsPlugin;
import com.lightniinja.kperms.Utilities;
public class CommandUnknown {
private CommandSender s = null;
private KPermsPlugin pl = null;
private Utilities u = null;
private ConfigManager m = null;
public CommandUnknown(CommandSender s, KPermsPlugin pl) {
this.s = s;
this.pl = pl;
this.u = new Utilities(this.pl);
this.m = new ConfigManager(this.pl);
}
public void execute() {
this.s.sendMessage(this.u.format(this.m.getMessage("prefix") + " " + this.m.getMessage("unknown-command")));
}
}
| lightniinja/KPerms | src/main/java/com/lightniinja/kperms/commands/CommandUnknown.java | Java | gpl-2.0 | 680 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dragon_slayer
{
public class Vector
{
public float X { get; set; }
public float Y { get; set; }
public Vector(float x, float y)
{
X = x;
Y = y;
}
}
}
| darthzilla/dragon-slayer | dragon-slayer/Vector.cs | C# | gpl-2.0 | 356 |
<?php
/**
* Copyright (c) by the ACP3 Developers.
* See the LICENSE file at the top-level module directory for licensing details.
*/
namespace ACP3\Modules\ACP3\Categories\ViewProviders;
use ACP3\Core\ACL;
use ACP3\Core\DataGrid\ColumnRenderer\IntegerColumnRenderer;
use ACP3\Core\DataGrid\ColumnRenderer\NestedSetSortColumnRenderer;
use ACP3\Core\DataGrid\ColumnRenderer\TextColumnRenderer;
use ACP3\Core\DataGrid\ColumnRenderer\TranslateColumnRenderer;
use ACP3\Core\DataGrid\DataGrid;
use ACP3\Core\DataGrid\Input;
use ACP3\Core\Helpers\ResultsPerPage;
use ACP3\Core\I18n\Translator;
use ACP3\Modules\ACP3\Categories\Model\Repository\DataGridRepository;
use ACP3\Modules\ACP3\System\Installer\Schema;
class DataGridViewProvider
{
/**
* @var \ACP3\Core\I18n\Translator
*/
private $translator;
/**
* @var \ACP3\Core\ACL
*/
private $acl;
/**
* @var \ACP3\Core\DataGrid\DataGrid
*/
private $dataGrid;
/**
* @var \ACP3\Modules\ACP3\Categories\Model\Repository\DataGridRepository
*/
private $dataGridRepository;
/**
* @var \ACP3\Core\Helpers\ResultsPerPage
*/
private $resultsPerPage;
public function __construct(
ACL $acl,
DataGrid $dataGrid,
DataGridRepository $dataGridRepository,
ResultsPerPage $resultsPerPage,
Translator $translator
) {
$this->translator = $translator;
$this->acl = $acl;
$this->dataGrid = $dataGrid;
$this->dataGridRepository = $dataGridRepository;
$this->resultsPerPage = $resultsPerPage;
}
/**
* @return array|array[]|\Symfony\Component\HttpFoundation\JsonResponse
*/
public function __invoke()
{
return $this->dataGrid->render($this->configureDataGrid());
}
private function configureDataGrid(): Input
{
$input = (new Input())
->setUseAjax(true)
->setRepository($this->dataGridRepository)
->setRecordsPerPage($this->resultsPerPage->getResultsPerPage(Schema::MODULE_NAME))
->setIdentifier('#categories-data-grid')
->setResourcePathDelete('admin/categories/index/delete')
->setResourcePathEdit('admin/categories/index/edit')
->addColumn([
'label' => $this->translator->t('categories', 'title'),
'type' => TextColumnRenderer::class,
'fields' => ['title_nested'],
'sortable' => false,
], 50)
->addColumn([
'label' => $this->translator->t('system', 'description'),
'type' => TextColumnRenderer::class,
'fields' => ['description'],
'sortable' => false,
], 40)
->addColumn([
'label' => $this->translator->t('categories', 'module'),
'type' => TranslateColumnRenderer::class,
'fields' => ['module'],
'sortable' => false,
], 30)
->addColumn([
'label' => $this->translator->t('system', 'id'),
'type' => IntegerColumnRenderer::class,
'fields' => ['id'],
'primary' => true,
'sortable' => false,
], 10);
if ($this->acl->hasPermission('admin/categories/index/order')) {
$input
->addColumn([
'label' => $this->translator->t('system', 'order'),
'type' => NestedSetSortColumnRenderer::class,
'fields' => ['left_id'],
'sortable' => false,
'custom' => [
'route_sort_down' => 'acp/categories/index/order/id_%d/action_down',
'route_sort_up' => 'acp/categories/index/order/id_%d/action_up',
],
], 20);
}
return $input;
}
}
| ACP3/cms | ACP3/Modules/ACP3/Categories/src/ViewProviders/DataGridViewProvider.php | PHP | gpl-2.0 | 3,948 |
<?php
/**
* Class for interacting with course data from data tables
*
* @link https://it.clas.ufl.edu/
* @since 0.1.0
*
* @package Syllabus_Manager
* @subpackage Syllabus_Manager/admin
*/
/**
* Class for interacting with section data from data tables
*
* @since 0.1.0
* @package Syllabus_Manager
* @subpackage Syllabus_Manager/includes
* @author Priscilla Chapman (CLAS IT) <no-reply@clas.ufl.edu>
*/
class Syllabus_Manager_Course {
/**
* Unique identifier for the course post type
*
* @since 0.0.0
* @access public
* @var string $course_id
*/
public $course_id;
/**
* Unique identifier for the course in external source
*
* @since 0.0.0
* @access public
* @var string $import_code
*/
public $import_code;
/**
* Course prefix and number
*
* @since 0.0.0
* @access public
* @var string $course_code
*/
public $course_code;
/**
* Course title
*
* @since 0.0.0
* @access public
* @var string $course_title
*/
public $course_title;
/**
* Section number
*
* @since 0.0.0
* @access public
* @var array Syllabus_Manager_Section
*/
public $sections;
/**
* Department term IDs
*
* @since 0.4.1
* @access public
* @var array $departments
*/
public $departments;
/**
* Instructor terms
*
* @since 0.4.1
* @access public
* @var array $departments
*/
public $instructors;
/**
* Define a course section from $_POST or DB data
*
* @since 0.0.0
*/
public function __construct( $args = array() ) {
$defaults = array(
'course_id' => '',
'import_code' => '',
'code' => '',
'name' => '',
'sections' => array(),
'semester_code' => '',
'departments' => array(),
'instructors' => array(),
);
$args = array_merge( $defaults, $args );
$this->course_code = $args['code'];
$this->departments = $args['departments'];
$this->set_course_title( $args['name'] );
$this->set_import_code( $args['semester_code'] );
if ( !empty($args['sections']) ){
foreach ( $args['sections'] as $section_args ){
$section_args['course_code'] = $this->import_code;
$section = new Syllabus_Manager_Course_Section( $section_args );
// Add section instructors to the course instructors list
if ( is_array($this->instructors) && is_array($section->instructors) ){
array_push( $this->instructors, $section->instructors );
}
// Add section
$this->sections[] = $section;
}
}
}
/**
* Adds semester code to the end of course code to form a unique id
*
* @param string $semester_code
* @since 0.4.1
*/
public function set_import_code( $semester_code ){
$this->import_code = $this->course_code;
if ( !empty( $semester_code ) ){
$this->import_code .= '-' . $semester_code;
}
}
/**
* Set course title to course_code course_name
*
* @param string $title
* @since 0.4.1
*/
public function set_course_title( $title ){
$this->course_title = wp_strip_all_tags( "{$this->course_code} {$title}" );
}
/**
* Get arguments that can be used for insert/update course posts
*
* @param int $semester
* @param int $department
* @param int $level
* @return array Array with import code as the key and post args as value
* @since 0.4.1
*/
public function get_post_args( $semester, $department, $level ){
$post_author = get_current_user_id();
$post_type = 'syllabus_course';
$post_status = 'publish';
$post_id = ( !empty($this->post_id) )? $this->post_id : null;
// Merge section instructors into a single array
$post_instructors = array();
foreach( $this->sections as $section ){
$post_instructors = array_merge( $post_instructors, $section->instructors );
}
$args = array(
'ID' => $post_id,
'post_title' => $this->course_title,
'post_name' => $this->import_code,
'post_content' => '',
'post_status' => $post_status,
'post_author' => $post_author,
'post_type' => $post_type,
'tax_input' => array(
'syllabus_department' => $department,
'syllabus_level' => $level,
'syllabus_semester' => $semester,
'syllabus_instructor' => join( ', ', $post_instructors)
),
'meta_input' => array(
'sm_import_code' => $this->import_code,
'sm_import_date' => current_time('mysql'),
'sm_sections' => json_encode($this->sections),
)
);
//error_log('$args: ' . print_r($args, true));
return $args;
}
/**
* Get terms from the UF SOC API, used to import taxonomies
*
* @param string $taxonomy Taxonomomy for new/existing terms
* @return array|WP_Error Term data as an associative array or error
*/
public static function get_courses_from_api( $semester_id, $department_id, $level_id ){
$request_args = array(
'term' => get_term_meta( $semester_id, 'sm_import_code', true ),
'dept' => get_term_meta( $department_id, 'sm_import_code', true ),
'prog-level' => get_term_meta( $level_id, 'sm_import_code', true ),
);
$response = self::request_courses( $request_args );
//error_log('$response: ' . print_r($response, true));
if ( is_wp_error($response) ){
return $response;
}
// Get JSON objects as array
$json = ( isset($response['body']) )? $response['body'] : null;
$response_data = json_decode( $json, true );
// Test valid response
if ( empty($response_data) ){
return new WP_Error('import_no_data', __("Error: API response data not found.", 'syllabus-manager'));
}
if ( !isset($response_data[0]['COURSES']) ){
if ( WP_DEBUG ){ error_log( '$response_data:' . print_r($response_data, true) ); }
return new WP_Error('import_invalid_format', __("Error: API format not valid.", 'syllabus-manager'));
}
$response_data = $response_data[0]['COURSES'];
//error_log('$response_data: ' . print_r($response_data, true));
$courses = array();
foreach ( $response_data as $course_args ):
// Add semester import code to the args
$course_args['semester_code'] = $request_args['term'];
error_log('$course_args: ' . print_r($course_args, true));
// Process course arguments
$course = new Syllabus_Manager_Course( $course_args );
// Add data to be used for inserting/updating course post
$courses = array_merge( $courses, array( $course->import_code => $course ) );
endforeach;
return $courses;
}
/**
* Get course array from external source
*
* @param array $query_args Query to get data from external source
* @return array|WP_Error JSON array of course objects
*
* @since 0.0.1
*/
public static function request_courses( $query_args = array() ){
$defaults = array(
'category' => 'RES',
'course-code' => '',
'course-title' => '',
'cred-srch' => '',
'credits' => '',
'day-f' => '',
'day-m' => '',
'day-r' => '',
'day-s' => '',
'day-t' => '',
'day-w' => '',
'days' => 'false',
'dept' => '',
'eep' => '',
'fitsSchedule' => 'false',
'ge' => '',
'ge-b' => '',
'ge-c' => '',
'ge-h' => '',
'ge-m' => '',
'ge-n' => '',
'ge-p' => '',
'ge-s' => '',
'instructor' => '',
'last-row' => '0',
'level-max' => '--',
'level-min' => '--',
'no-open-seats' => 'false',
'online-a' => '',
'online-c' => '',
'online-h' => '',
'online-p' => '',
'online-b' => '',
'online-e' => '',
'prog-level' => '',
'term' => '',
'var-cred' => 'true',
'writing' => '',
);
$args = array_merge($defaults, $query_args);
// Get external data
$api_url = 'https://one.uf.edu/apix/soc/schedule/?';
$request_url = $api_url . http_build_query( $args );
$response = wp_remote_get( $request_url );
if ( WP_DEBUG ){ error_log( '$request_url: ' . $request_url ); }
if ( empty($response) ){
return new WP_Error('import_request_error', __("Error: API response data not found.", 'syllabus-manager'));
}
return $response;
}
/**
* Get courses from the semester's stored tables
*
* @param string [$semester = '20178'] [[Description]]
* @param string [$department = '011690003'] [[Description]]
* @param string [$level = 'ugrd'] [[Description]]
* @return array Syllabus_Manager_Course objects
*/
public static function get_courses( $semester = '20178', $department = '011690003', $level = 'ugrd' ){
global $wpdb;
$courses = array();
/**
* Query
*
* @todo Update repo with new query string
*/
$query = "SELECT
A.id AS section_id,
A.number AS section_code,
A.course_id,
B.code AS course_code,
B.name AS course_title,
GROUP_CONCAT( D.name SEPARATOR ';') AS instructor_list,
A.dept_id,
E.deptcode,
E.deptname,
A.semester_id,
F.semester AS semester_code,
'Fall 2017' AS semester
FROM
sy_soc_sections AS A
LEFT JOIN sy_soc_courses AS B ON A.course_id = B.id
LEFT JOIN sy_soc_sections_instructors AS C ON A.id = C.section_id
LEFT JOIN sy_soc_instructors AS D ON C.instructor_id = D.id
LEFT JOIN sy_soc_departments AS E ON A.dept_id = E.id
LEFT JOIN sy_soc_semesters AS F ON A.semester_id = F.id
WHERE
A.dept_id >= 1 AND
A.semester_id = 1 AND
SUBSTR(B.code,4,4) < 5000
GROUP BY
A.id";
/**
* Query list of courses
*
* @todo Determine if this needs to be an array or objects
* @todo Pass in the semester name as a parameter in query, use prepare
*/
$results = $wpdb->get_results( $query );
if ( WP_DEBUG ){
error_log( 'Getting sections from tables...' );
// error_log( print_r( $courses, true ) );
}
if ( is_null( $results ) ){
return false;
}
$tax_queries = array(
'taxonomy' => 'syllabus_semester',
'field' => 'slug',
'terms' => $semester
);
if ( !empty($department) ){
$tax_queries[] = array(
'taxonomy' => 'syllabus_department',
'field' => 'slug',
'terms' => $department
);
}
if ( !empty($level) ){
$tax_queries[] = array(
'taxonomy' => 'syllabus_level',
'field' => 'slug',
'terms' => $level
);
}
foreach ( $results as $section ):
//error_log( print_r( $section->instructor_list, true ) );
$syllabus_section = new Syllabus_Manager_Section( array(
'section_id' => $section->section_id,
'section_code' => $section->section_code,
'course_id' => $section->course_id,
'course_code' => $section->course_code,
'course_title' => $section->course_title,
'instructors' => $section->instructor_list,
'department' => $section->deptcode,
'semester_code' => $section->semester_code,
'post_id' => '',
));
// Add course objects to the array indexed by course_id
if ( !isset( $courses[$syllabus_section->course_id] ) ){
$courses[$syllabus_section->course_id] = new Syllabus_Manager_Course(
array(
'course_id' => $syllabus_section->course_id,
'course_code' => $syllabus_section->course_code,
'course_title' => $syllabus_section->course_title,
'semester' => $semester,
'sections' => array(),
)
);
}
$courses[$syllabus_section->course_id]->sections[] = $syllabus_section;
endforeach;
if ( WP_DEBUG ){
//error_log( print_r( $courses, true ) );
}
return $courses;
}
}
/**
* Class for course sections
*
* @link https://it.clas.ufl.edu/
* @since 0.4.1
*
* @package Syllabus_Manager
* @subpackage Syllabus_Manager/admin
*/
class Syllabus_Manager_Course_Section {
public $import_code;
public $section_number;
public $section_display;
public $dept_code;
public $dept_name;
public $instructors;
public function __construct( $args ){
$defaults = array(
'import_code' => '',
'section_number' => '',
'section_display' => '',
'dept_code' => '',
'dept_name' => '',
'instructors' => array(),
'course_code' => '',
);
$args = array_merge( $defaults, $args );
$this->section_number = $args['number'];
$this->section_display = $args['display'];
$this->dept_code = $args['deptCode'];
$this->dept_name = $args['deptName'];
$this->set_import_code( $args['course_code'] );
$this->set_instructors( $args['instructors'] );
}
/**
* Creates a unique section code using the course import code and section number
*
* @param string $course_code
* @since 0.4.1
*/
public function set_import_code( $course_code ){
$this->import_code = $this->section_number;
if ( !empty($course_code) ){
$this->import_code = $course_code . '-' . $this->import_code;
}
}
/**
* Formats instructor array from api
*
* @param array $instructors
8 @since 0.4.0
*/
public function set_instructors( $instructors ){
if ( empty($instructors) ){
$this->instructors = array();
}
$instructor_names = array();
foreach ( $instructors as $instructor ){
$name = $instructor['name'];
// Change to firstname lastname format, ignore middle name
if ( false !== strpos( $name, ',' ) ){
$name = preg_replace("/(.*),\s?(\S*)(.*)/", "$2 $1", $name);
}
$instructor_names[] = $name;
}
$this->instructors = $instructor_names;
}
} | ufclas/ufclas-syllabus-manager | includes/class-syllabus-manager-course.php | PHP | gpl-2.0 | 13,419 |
# Use this hook to configure devise mailer, warden hooks and so forth.
# Many of these configuration options can be set straight in your model.
Devise.setup do |config|
# The secret key used by Devise. Devise uses this key to generate
# random tokens. Changing this key will render invalid all existing
# confirmation, reset password and unlock tokens in the database.
# Devise will use the `secret_key_base` on Rails 4+ applications as its `secret_key`
# by default. You can change it below and use your own secret key.
# config.secret_key = '7a680e2fbd8dbbf201b00ea99d240d904d656e93a8a53cd3572b24033dc955f93b548e93facc5dcc7039b12d2237703d0942c5ef7c7f099654e1ff402065f73b'
# ==> Mailer Configuration
# Configure the e-mail address which will be shown in Devise::Mailer,
# note that it will be overwritten if you use your own mailer class
# with default "from" parameter.
config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com'
# Configure the class responsible to send e-mails.
# config.mailer = 'Devise::Mailer'
# ==> ORM configuration
# Load and configure the ORM. Supports :active_record (default) and
# :mongoid (bson_ext recommended) by default. Other ORMs may be
# available as additional gems.
require 'devise/orm/active_record'
# ==> Configuration for any authentication mechanism
# Configure which keys are used when authenticating a user. The default is
# just :email. You can configure it to use [:username, :subdomain], so for
# authenticating a user, both parameters are required. Remember that those
# parameters are used only when authenticating and not when retrieving from
# session. If you need permissions, you should implement that in a before filter.
# You can also supply a hash where the value is a boolean determining whether
# or not authentication should be aborted when the value is not present.
# config.authentication_keys = [:email]
# Configure parameters from the request object used for authentication. Each entry
# given should be a request method and it will automatically be passed to the
# find_for_authentication method and considered in your model lookup. For instance,
# if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
# The same considerations mentioned for authentication_keys also apply to request_keys.
# config.request_keys = []
# Configure which authentication keys should be case-insensitive.
# These keys will be downcased upon creating or modifying a user and when used
# to authenticate or find a user. Default is :email.
config.case_insensitive_keys = [:email]
# Configure which authentication keys should have whitespace stripped.
# These keys will have whitespace before and after removed upon creating or
# modifying a user and when used to authenticate or find a user. Default is :email.
config.strip_whitespace_keys = [:email]
# Tell if authentication through request.params is enabled. True by default.
# It can be set to an array that will enable params authentication only for the
# given strategies, for example, `config.params_authenticatable = [:database]` will
# enable it only for database (email + password) authentication.
# config.params_authenticatable = true
# Tell if authentication through HTTP Auth is enabled. False by default.
# It can be set to an array that will enable http authentication only for the
# given strategies, for example, `config.http_authenticatable = [:database]` will
# enable it only for database authentication. The supported strategies are:
# :database = Support basic authentication with authentication key + password
# config.http_authenticatable = false
# If 401 status code should be returned for AJAX requests. True by default.
# config.http_authenticatable_on_xhr = true
# The realm used in Http Basic Authentication. 'Application' by default.
# config.http_authentication_realm = 'Application'
# It will change confirmation, password recovery and other workflows
# to behave the same regardless if the e-mail provided was right or wrong.
# Does not affect registerable.
# config.paranoid = true
# By default Devise will store the user in session. You can skip storage for
# particular strategies by setting this option.
# Notice that if you are skipping storage for all authentication paths, you
# may want to disable generating routes to Devise's sessions controller by
# passing skip: :sessions to `devise_for` in your config/routes.rb
config.skip_session_storage = [:http_auth]
# By default, Devise cleans up the CSRF token on authentication to
# avoid CSRF token fixation attacks. This means that, when using AJAX
# requests for sign in and sign up, you need to get a new CSRF token
# from the server. You can disable this option at your own risk.
# config.clean_up_csrf_token_on_authentication = true
# ==> Configuration for :database_authenticatable
# For bcrypt, this is the cost for hashing the password and defaults to 10. If
# using other encryptors, it sets how many times you want the password re-encrypted.
#
# Limiting the stretches to just one in testing will increase the performance of
# your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
# a value less than 10 in other environments. Note that, for bcrypt (the default
# encryptor), the cost increases exponentially with the number of stretches (e.g.
# a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
config.stretches = Rails.env.test? ? 1 : 10
# Setup a pepper to generate the encrypted password.
# config.pepper = 'cfe0cd838d0c350f523ed9ff051392b8a6dc7ca10b66f5a0328259963c557d476bdb525a7ba1f5b943fe66bfb83763215ee04bc9dc6e5842a5aaa32e46c9c2fb'
# ==> Configuration for :confirmable
# A period that the user is allowed to access the website even without
# confirming their account. For instance, if set to 2.days, the user will be
# able to access the website for two days without confirming their account,
# access will be blocked just in the third day. Default is 0.days, meaning
# the user cannot access the website without confirming their account.
# config.allow_unconfirmed_access_for = 2.days
# A period that the user is allowed to confirm their account before their
# token becomes invalid. For example, if set to 3.days, the user can confirm
# their account within 3 days after the mail was sent, but on the fourth day
# their account can't be confirmed with the token any more.
# Default is nil, meaning there is no restriction on how long a user can take
# before confirming their account.
# config.confirm_within = 3.days
# If true, requires any email changes to be confirmed (exactly the same way as
# initial account confirmation) to be applied. Requires additional unconfirmed_email
# db field (see migrations). Until confirmed, new email is stored in
# unconfirmed_email column, and copied to email column on successful confirmation.
config.reconfirmable = true
# Defines which key will be used when confirming an account
# config.confirmation_keys = [:email]
# ==> Configuration for :rememberable
# The time the user will be remembered without asking for credentials again.
# config.remember_for = 2.weeks
# Invalidates all the remember me tokens when the user signs out.
config.expire_all_remember_me_on_sign_out = true
# If true, extends the user's remember period when remembered via cookie.
# config.extend_remember_period = false
# Options to be passed to the created cookie. For instance, you can set
# secure: true in order to force SSL only cookies.
# config.rememberable_options = {}
# ==> Configuration for :validatable
# Range for password length.
config.password_length = 8..72
# Email regex used to validate email formats. It simply asserts that
# one (and only one) @ exists in the given string. This is mainly
# to give user feedback and not to assert the e-mail validity.
# config.email_regexp = /\A[^@]+@[^@]+\z/
# ==> Configuration for :timeoutable
# The time you want to timeout the user session without activity. After this
# time the user will be asked for credentials again. Default is 30 minutes.
# config.timeout_in = 30.minutes
# ==> Configuration for :lockable
# Defines which strategy will be used to lock an account.
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
# :none = No lock strategy. You should handle locking by yourself.
# config.lock_strategy = :failed_attempts
# Defines which key will be used when locking and unlocking an account
# config.unlock_keys = [:email]
# Defines which strategy will be used to unlock an account.
# :email = Sends an unlock link to the user email
# :time = Re-enables login after a certain amount of time (see :unlock_in below)
# :both = Enables both strategies
# :none = No unlock strategy. You should handle unlocking by yourself.
# config.unlock_strategy = :both
# Number of authentication tries before locking an account if lock_strategy
# is failed attempts.
# config.maximum_attempts = 20
# Time interval to unlock the account if :time is enabled as unlock_strategy.
# config.unlock_in = 1.hour
# Warn on the last attempt before the account is locked.
# config.last_attempt_warning = true
# ==> Configuration for :recoverable
#
# Defines which key will be used when recovering the password for an account
# config.reset_password_keys = [:email]
# Time interval you can reset your password with a reset password key.
# Don't put a too small interval or your users won't have the time to
# change their passwords.
config.reset_password_within = 6.hours
# When set to false, does not sign a user in automatically after their password is
# reset. Defaults to true, so a user is signed in automatically after a reset.
# config.sign_in_after_reset_password = true
# ==> Configuration for :encryptable
# Allow you to use another encryption algorithm besides bcrypt (default). You can use
# :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
# :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
# and :restful_authentication_sha1 (then you should set stretches to 10, and copy
# REST_AUTH_SITE_KEY to pepper).
#
# Require the `devise-encryptable` gem when using anything other than bcrypt
# config.encryptor = :sha512
# ==> Scopes configuration
# Turn scoped views on. Before rendering "sessions/new", it will first check for
# "users/sessions/new". It's turned off by default because it's slower if you
# are using only default views.
# config.scoped_views = false
# Configure the default scope given to Warden. By default it's the first
# devise role declared in your routes (usually :user).
# config.default_scope = :user
# Set this configuration to false if you want /users/sign_out to sign out
# only the current scope. By default, Devise signs out all scopes.
# config.sign_out_all_scopes = true
# ==> Navigation configuration
# Lists the formats that should be treated as navigational. Formats like
# :html, should redirect to the sign in page when the user does not have
# access, but formats like :xml or :json, should return 401.
#
# If you have any extra navigational formats, like :iphone or :mobile, you
# should add them to the navigational formats lists.
#
# The "*/*" below is required to match Internet Explorer requests.
# config.navigational_formats = ['*/*', :html]
# The default HTTP method used to sign out a resource. Default is :delete.
config.sign_out_via = :delete
# ==> OmniAuth
# Add a new OmniAuth provider. Check the wiki for more information on setting
# up on your models and hooks.
# config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
# ==> Warden configuration
# If you want to use other strategies, that are not supported by Devise, or
# change the failure app, you can configure them inside the config.warden block.
#
# config.warden do |manager|
# manager.intercept_401 = false
# manager.default_strategies(scope: :user).unshift :some_external_strategy
# end
# ==> Mountable engine configurations
# When using Devise inside an engine, let's call it `MyEngine`, and this engine
# is mountable, there are some extra configurations to be taken into account.
# The following options are available, assuming the engine is mounted as:
#
# mount MyEngine, at: '/my_engine'
#
# The router that invoked `devise_for`, in the example above, would be:
# config.router_name = :my_engine
#
# When using OmniAuth, Devise cannot automatically set OmniAuth path,
# so you need to do it manually. For the users scope, it would be:
# config.omniauth_path_prefix = '/my_engine/users/auth'
end
| LYK2015-Ruby-on-Rails/ayemdibi-aniliyidogan | config/initializers/devise.rb | Ruby | gpl-2.0 | 13,009 |
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using WikiFunctions;
using System.Text.RegularExpressions;
using System.Diagnostics;
namespace UnitTests
{
[TestFixture]
public class ToolsTests
{
public ToolsTests()
{
Globals.UnitTestMode = true;
}
[Test]
public void InvalidChars()
{
Assert.IsTrue(Tools.IsValidTitle("test"));
Assert.IsTrue(Tools.IsValidTitle("This is a_test"));
Assert.IsTrue(Tools.IsValidTitle("123"));
Assert.IsTrue(Tools.IsValidTitle("А & Б сидели на трубе! ة日?"));
Assert.IsFalse(Tools.IsValidTitle(""), "Empty strings are not supposed to be valid titles");
Assert.IsFalse(Tools.IsValidTitle("[xxx"));
Assert.IsFalse(Tools.IsValidTitle("]abc"));
Assert.IsFalse(Tools.IsValidTitle("{duh!"));
Assert.IsFalse(Tools.IsValidTitle("}yoyo"));
Assert.IsFalse(Tools.IsValidTitle("|pwn3d"));
Assert.IsFalse(Tools.IsValidTitle("<1337"));
Assert.IsFalse(Tools.IsValidTitle(">nooooo"));
Assert.IsFalse(Tools.IsValidTitle("#yeee-hooo"));
//Complex titles
Assert.IsFalse(Tools.IsValidTitle("[test]#1"));
Assert.IsFalse(Tools.IsValidTitle("_ _"), "Titles should be normalised before checking");
Assert.IsTrue(Tools.IsValidTitle("http://www.wikipedia.org")); //unfortunately
Assert.IsTrue(Tools.IsValidTitle("index.php/Viagra")); //even more unfortunately
Assert.IsTrue(Tools.IsValidTitle("index.php?title=foobar"));
}
[Test]
public void RemoveInvalidChars()
{
Assert.AreEqual("tesT 123!", Tools.RemoveInvalidChars("tesT 123!"));
Assert.AreEqual("тест, ёпта", Tools.RemoveInvalidChars("тест, ёпта"));
Assert.AreEqual("", Tools.RemoveInvalidChars(""));
Assert.AreEqual("test", Tools.RemoveInvalidChars("{<[test]>}"));
Assert.AreEqual("", Tools.RemoveInvalidChars("#|#"));
Assert.AreEqual("http://www.wikipedia.org", Tools.RemoveInvalidChars("http://www.wikipedia.org"));
}
[Test]
public void RomanNumbers()
{
Assert.IsTrue(Tools.IsRomanNumber("XVII"));
Assert.IsTrue(Tools.IsRomanNumber("I"));
Assert.IsFalse(Tools.IsRomanNumber("xvii"));
Assert.IsFalse(Tools.IsRomanNumber("XXXXXX"));
Assert.IsFalse(Tools.IsRomanNumber("V II"));
Assert.IsFalse(Tools.IsRomanNumber("AAA"));
Assert.IsFalse(Tools.IsRomanNumber("123"));
Assert.IsFalse(Tools.IsRomanNumber(" "));
Assert.IsFalse(Tools.IsRomanNumber(""));
}
[Test, Category("Incomplete")]
//TODO: address the need of escaped string as argument
public void CaseInsensitive()
{
Assert.AreEqual("", Tools.CaseInsensitive(""));
Assert.AreEqual("123", Tools.CaseInsensitive("123"));
Assert.AreEqual("-", Tools.CaseInsensitive("-"));
Regex r = new Regex(Tools.CaseInsensitive("test"));
Assert.IsTrue(r.IsMatch("test 123"));
Assert.AreEqual("Test", r.Match("Test").Value);
Assert.IsFalse(r.IsMatch("tEst"));
r = new Regex(Tools.CaseInsensitive("Test"));
Assert.IsTrue(r.IsMatch("test 123"));
Assert.AreEqual("Test", r.Match("Test").Value);
Assert.IsFalse(r.IsMatch("TEst"));
//behavior changed
//r = new Regex(Tools.CaseInsensitive("[test}"));
//Assert.IsTrue(r.IsMatch("[test}"));
//Assert.IsFalse(r.IsMatch("[Test}"));
//Assert.IsFalse(r.IsMatch("test"));
}
[Test]
public void AllCaseInsensitive()
{
Assert.AreEqual("", Tools.AllCaseInsensitive(""));
Assert.AreEqual("123", Tools.AllCaseInsensitive("123"));
Assert.AreEqual("-", Tools.AllCaseInsensitive("-"));
Regex r = new Regex(Tools.AllCaseInsensitive("tEsT"));
Assert.IsTrue(r.IsMatch("Test 123"));
Assert.AreEqual("Test", r.Match("Test").Value);
Assert.IsFalse(r.IsMatch("teZt"));
r = new Regex(Tools.AllCaseInsensitive("[test}"));
Assert.IsTrue(r.IsMatch("[test}"));
Assert.IsTrue(r.IsMatch("[tEsT}"));
Assert.IsFalse(r.IsMatch("test"));
}
[Test, Ignore("Too slow")]
public void TurnFirstToUpper()
{
Assert.AreEqual("", Tools.TurnFirstToUpper(""));
Assert.AreEqual("ASDA", Tools.TurnFirstToUpper("ASDA"));
Assert.AreEqual("ASDA", Tools.TurnFirstToUpper("aSDA"));
Assert.AreEqual("%test", Tools.TurnFirstToUpper("%test"));
Assert.AreEqual("Ыыыы", Tools.TurnFirstToUpper("ыыыы"));
Variables.SetProject(LangCodeEnum.en, ProjectEnum.wiktionary);
Assert.AreEqual("test", Tools.TurnFirstToUpper("test"));
Assert.AreEqual("Test", Tools.TurnFirstToUpper("Test"));
}
[Test]
public void TurnFirstToLower()
{
Assert.AreEqual("", Tools.TurnFirstToLower(""));
Assert.AreEqual("test", Tools.TurnFirstToLower("test"));
Assert.AreEqual("%test", Tools.TurnFirstToLower("%test"));
Assert.AreEqual("ыыыы", Tools.TurnFirstToLower("Ыыыы"));
Assert.AreEqual("tEST", Tools.TurnFirstToLower("TEST"));
Assert.AreEqual("test", Tools.TurnFirstToLower("Test"));
}
[Test]
public void WordCount()
{
Assert.AreEqual(0, Tools.WordCount(""));
Assert.AreEqual(0, Tools.WordCount(" "));
Assert.AreEqual(0, Tools.WordCount("."));
Assert.AreEqual(1, Tools.WordCount("foo"));
Assert.AreEqual(2, Tools.WordCount("Превед медвед"));
Assert.AreEqual(1, Tools.WordCount("123"));
Assert.AreEqual(3, Tools.WordCount("foo\nbar\r\nboz"));
Assert.AreEqual(2, Tools.WordCount("foo.bar"));
Assert.AreEqual(1, Tools.WordCount("foo<!-- bar boz -->"));
Assert.AreEqual(1, Tools.WordCount("foo<!--bar-->quux"));
Assert.AreEqual(2, Tools.WordCount("foo <!--\r\nbar--> quux"));
Assert.AreEqual(2, Tools.WordCount("foo {{template| bar boz box}} quux"));
Assert.AreEqual(2, Tools.WordCount("foo{{template\r\n|boz = quux}}bar"));
Assert.AreEqual(2, Tools.WordCount(@"foo
{|
! test !! test
|-
| test
| test || test
|-
|}bar"));
Assert.AreEqual(2, Tools.WordCount(@"foo
{|
! test !! test
|-
| test
| test || test
|-
|}
bar"));
Assert.AreEqual(1, Tools.WordCount(@"foo
{| class=""wikitable""
! test !! test
|- style=""color:red""
| test
| test || test
|-
|}"));
}
[Test]
public void ReplacePartOfString()
{
Assert.AreEqual("abc123ef", Tools.ReplacePartOfString("abcdef", 3, 1, "123"));
Assert.AreEqual("123abc", Tools.ReplacePartOfString("abc", 0, 0, "123"));
Assert.AreEqual("abc123", Tools.ReplacePartOfString("abc", 3, 0, "123"));
Assert.AreEqual("123", Tools.ReplacePartOfString("", 0, 0, "123"));
Assert.AreEqual("abc", Tools.ReplacePartOfString("abc", 1, 0, ""));
Assert.AreEqual("123", Tools.ReplacePartOfString("abc", 0, 3, "123"));
Assert.AreEqual("1bc", Tools.ReplacePartOfString("abc", 0, 1, "1"));
Assert.AreEqual("ab3", Tools.ReplacePartOfString("abc", 2, 1, "3"));
}
[Test]
public void BasePageName()
{
Assert.AreEqual("", Tools.BasePageName(""));
Assert.AreEqual("Foo", Tools.BasePageName("Foo"));
Assert.AreEqual("Foo", Tools.BasePageName("Project:Foo"));
Assert.AreEqual("Foo", Tools.BasePageName("Foo/Bar"));
Assert.AreEqual("Foo", Tools.BasePageName("Foo/Bar/Boz"));
Assert.AreEqual("Foo", Tools.BasePageName("Project:Foo/Bar/Boz"));
}
[Test]
public void SubPageName()
{
Assert.AreEqual("", Tools.SubPageName(""));
Assert.AreEqual("Foo", Tools.SubPageName("Foo"));
Assert.AreEqual("Bar", Tools.SubPageName("Foo/Bar"));
Assert.AreEqual("Boz", Tools.SubPageName("Foo/Bar/Boz"));
Assert.AreEqual("Foo", Tools.SubPageName("Project:Foo"));
Assert.AreEqual("Bar", Tools.SubPageName("Image:Foo/Bar"));
}
[Test]
public void ServerName()
{
Assert.AreEqual("", Tools.ServerName(""));
Assert.AreEqual("foo", Tools.ServerName("http://foo"));
Assert.AreEqual("foo", Tools.ServerName("http://foo/"));
Assert.AreEqual("foo.bar.com", Tools.ServerName("http://foo.bar.com/path/script?a=foo/bar"));
}
[Test]
public void WikiEncode()
{
Assert.AreEqual("foo", Tools.WikiEncode("foo"));
Assert.AreEqual("Foo", Tools.WikiEncode("Foo"));
Assert.AreEqual("foo_bar", Tools.WikiEncode("foo bar"));
Assert.AreEqual("foo_bar", Tools.WikiEncode("foo_bar"));
Assert.AreEqual("foo/bar", Tools.WikiEncode("foo/bar"));
Assert.AreEqual("foo:bar", Tools.WikiEncode("foo:bar"));
StringAssert.AreEqualIgnoringCase("Caf%C3%A9", Tools.WikiEncode("Café"));
StringAssert.AreEqualIgnoringCase("%D1%82%D0%B5%D1%81%D1%82:%D1%82%D0%B5%D1%81%D1%82", Tools.WikiEncode("тест:тест"));
}
[Test]
public void SplitToSections()
{
string[] sections = Tools.SplitToSections("foo\r\n==bar=\r\nboo\r\n\r\n= boz =\r\n==quux==");
CollectionAssert.AreEqual(new string[]
{
"foo\r\n",
"==bar=\r\nboo\r\n\r\n",
"= boz =\r\n",
"==quux==\r\n"
}, sections);
sections = Tools.SplitToSections("==bar=\r\nboo\r\n\r\n= boz =\r\n==quux==");
CollectionAssert.AreEqual(new string[]
{
"==bar=\r\nboo\r\n\r\n",
"= boz =\r\n",
"==quux==\r\n"
}, sections);
sections = Tools.SplitToSections("\r\n==bar=\r\nboo\r\n\r\n= boz =\r\n==quux==");
CollectionAssert.AreEqual(new string[]
{
"\r\n",
"==bar=\r\nboo\r\n\r\n",
"= boz =\r\n",
"==quux==\r\n"
}, sections);
sections = Tools.SplitToSections("");
CollectionAssert.AreEqual(new string[] { "\r\n" }, sections);
sections = Tools.SplitToSections("==foo==");
CollectionAssert.AreEqual(new string[] { "==foo==\r\n" }, sections);
}
[Test]
public void RemoveMatches()
{
MatchCollection matches = Regex.Matches("abc bce cde def", "[ce]");
Assert.AreEqual("ab b d df", Tools.RemoveMatches("abc bce cde def", matches));
matches = Regex.Matches("", "test");
Assert.AreEqual("test", Tools.RemoveMatches("test", matches));
Assert.AreEqual("abc", Tools.RemoveMatches("abc", matches));
Assert.AreEqual("", Tools.RemoveMatches("", matches));
matches = Regex.Matches("abc123", "(123|abc)");
Assert.AreEqual("", Tools.RemoveMatches("abc123", matches));
matches = Regex.Matches("test", "[Tt]est");
Assert.AreEqual("", Tools.RemoveMatches("test", matches));
}
[Test]
public void RemoveHashFromPageTitle()
{
Assert.AreEqual("ab c", Tools.RemoveHashFromPageTitle("ab c"));
Assert.AreEqual("foo", Tools.RemoveHashFromPageTitle("foo#bar"));
Assert.AreEqual("foo", Tools.RemoveHashFromPageTitle("foo##bar#"));
Assert.AreEqual("foo", Tools.RemoveHashFromPageTitle("foo#"));
Assert.AreEqual("", Tools.RemoveHashFromPageTitle("#"));
Assert.AreEqual("", Tools.RemoveHashFromPageTitle(""));
}
[Test]
public void SplitLines()
{
CollectionAssert.IsEmpty(Tools.SplitLines(""));
string[] test = new string[] { "foo" };
CollectionAssert.AreEqual(test, Tools.SplitLines("foo"));
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\r"));
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\n"));
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\r\n"));
test = new string[] { "foo", "bar" };
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\r\nbar"));
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\rbar"));
CollectionAssert.AreEqual(test, Tools.SplitLines("foo\rbar"));
test = new string[] { "" };
CollectionAssert.AreEqual(test, Tools.SplitLines("\n"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\r\n"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\r"));
test = new string[] { "", "" };
CollectionAssert.AreEqual(test, Tools.SplitLines("\n\n"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\r\n\r\n"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\r\r"));
test = new string[] { "", "foo", "", "bar" };
CollectionAssert.AreEqual(test, Tools.SplitLines("\r\nfoo\r\n\r\nbar"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\rfoo\r\rbar"));
CollectionAssert.AreEqual(test, Tools.SplitLines("\nfoo\n\nbar"));
}
[Test]
public void FirstChars()
{
Assert.AreEqual("", Tools.FirstChars("", 0));
Assert.AreEqual("", Tools.FirstChars("", 3));
Assert.AreEqual("", Tools.FirstChars("123", 0));
Assert.AreEqual("12", Tools.FirstChars("12", 2));
Assert.AreEqual("12", Tools.FirstChars("12", 3));
Assert.AreEqual("12", Tools.FirstChars("123", 2));
}
[Test]
public void IsRedirect()
{
Assert.IsTrue(Tools.IsRedirect("#REDIRECT [[Foo]]"));
Assert.IsTrue(Tools.IsRedirect("#redirecT[[:Foo]]"));
Assert.IsTrue(Tools.IsRedirect("should work!\r\n#REDIRECT [[Foo]]"));
Assert.IsFalse(Tools.IsRedirect("#REDIRECT you to [[Hell]]"));
Assert.IsFalse(Tools.IsRedirect("REDIRECT [[Foo]]"));
}
[Test]
public void RedirectTarget()
{
Assert.AreEqual("Foo", Tools.RedirectTarget("#redirect [[Foo]]"));
Assert.AreEqual("Foo", Tools.RedirectTarget("#REDIRECT[[Foo]]"));
Assert.AreEqual("Foo bar", Tools.RedirectTarget("#redirect[[:Foo bar ]]"));
Assert.AreEqual("Foo bar", Tools.RedirectTarget("#redirect[[ : Foo bar ]]"));
Assert.AreEqual("Foo", Tools.RedirectTarget("{{delete}}\r\n#redirect [[Foo]]"));
// http://en.wikipedia.org/wiki/Wikipedia_talk:AutoWikiBrowser/Bugs/Archive_6#AWB_follows_piped_redirects_to_an_invalid_page_title
Assert.AreEqual("Foo", Tools.RedirectTarget("#REDIRECT [[Foo|bar]]"));
// URL-decode targets
// http://en.wikipedia.org/wiki/Wikipedia_talk:AutoWikiBrowser/Bugs/Archive_7#Problem_with_redirects
Assert.AreEqual("Foo, bar", Tools.RedirectTarget("#REDIRECT[[Foo%2C_bar]]"));
Assert.AreEqual("Хуй", Tools.RedirectTarget("#REDIRECT[[%D0%A5%D1%83%D0%B9]]"));
}
[Test]
public void GetTitleFromURL()
{
Assert.AreEqual("foo bar", Tools.GetTitleFromURL("http://en.wikipedia.org/wiki/foo_bar"));
Assert.AreEqual("Хуй", Tools.GetTitleFromURL("http://en.wikipedia.org/wiki/%D0%A5%D1%83%D0%B9"));
Assert.AreEqual("foo", Tools.GetTitleFromURL("http://en.wikipedia.org/w/index.php?title=foo"));
Assert.AreEqual("foo", Tools.GetTitleFromURL("http://en.wikipedia.org/w/index.php/foo"));
// return null if there is something wrong
Assert.IsNull(Tools.GetTitleFromURL(""));
Assert.IsNull(Tools.GetTitleFromURL("foo"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/wiki/"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/w/index.php?title=foo&action=delete"));
// http://en.wikipedia.org/wiki/Wikipedia_talk:AutoWikiBrowser/Bugs/Archive_7#list_entries_like:_Index.html.3Fcurid.3D16235168
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/wiki/index.html?curid=666"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/wiki/foo?action=delete"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/w/index.php?title=foo&action=delete"));
Assert.IsNull(Tools.GetTitleFromURL("http://en.wikipedia.org/w/index.php/foo?action=bar"));
}
[Test]
public void FirstDifference()
{
Assert.AreEqual(0, Tools.FirstDifference("a", "b"));
Assert.AreEqual(0, Tools.FirstDifference("", "a"));
Assert.AreEqual(0, Tools.FirstDifference("a", ""));
Assert.AreEqual(1, Tools.FirstDifference("aa", "ab"));
Assert.AreEqual(1, Tools.FirstDifference("ab", "aa"));
Assert.AreEqual(3, Tools.FirstDifference("foo", "foobar"));
// beyond the end
Assert.AreEqual(3, Tools.FirstDifference("foo", "foo"));
}
[Test]
public void ApplyKeyWords()
{
//Test majority of Key Words except %%key%%
Assert.AreEqual(@"AutoWikiBrowser/Sandbox
AutoWikiBrowser/Sandbox
AutoWikiBrowser
AutoWikiBrowser
Wikipedia talk
Wikipedia_talk
Sandbox
Sandbox
Wikipedia talk:AutoWikiBrowser/Sandbox
Wikipedia_talk:AutoWikiBrowser/Sandbox
Wikipedia talk:AutoWikiBrowser/Sandbox
Wikipedia talk",
Tools.ApplyKeyWords("Wikipedia talk:AutoWikiBrowser/Sandbox", @"%%pagename%%
%%pagenamee%%
%%basepagename%%
%%basepagenamee%%
%%namespace%%
%%namespacee%%
%%subpagename%%
%%subpagenamee%%
%%fullpagename%%
%%fullpagenamee%%
%%title%%
%%namespace%%"));
//Date Stuff - disabled for now
// Assert.AreEqual(DateTime.Now.Day.ToString() + "\r\n" +DateTime.Now.ToString("MMM") + "\r\n" +DateTime.Now.Year.ToString(), Tools.ApplyKeyWords("n/a", @"{{CURRENTDAY}}
//{{CURRENTMONTHNAME}}
//{{CURRENTYEAR}}"));
//Server Stuff
Assert.AreEqual(@"http://en.wikipedia.org
/w
en.wikipedia.org", Tools.ApplyKeyWords("n/a", @"%%server%%
%%scriptpath%%
%%servername%%"));
//%%key%%, Tools.MakeHumanCatKey() - Covered by HumanCatKeyTests
}
}
[TestFixture]
public class HumanCatKeyTests
{
public HumanCatKeyTests()
{
Globals.UnitTestMode = true;
if (WikiRegexes.Category == null) WikiRegexes.MakeLangSpecificRegexes();
}
[Test]
public void OneWordNames()
{
Assert.AreEqual("OneWordName", Tools.MakeHumanCatKey("OneWordName"));
}
[Test]
public void WithRomanNumbers()
{
Assert.AreEqual("Doe, John, III", Tools.MakeHumanCatKey("John Doe III"));
}
[Test]
public void WithJrSr()
{
Assert.AreEqual("Doe, John, Jr.", Tools.MakeHumanCatKey("John Doe, Jr."));
Assert.AreEqual("Doe, John, Sr.", Tools.MakeHumanCatKey("John Doe, Sr."));
}
[Test]
public void WithApostrophes()
{
Assert.AreEqual("Ddoe, John", Tools.MakeHumanCatKey("J'ohn D'Doe"));
Assert.AreEqual("Test", Tools.MakeHumanCatKey("'Test"));
}
[Test]
public void WithPrefixes()
{
Assert.AreEqual("Doe, John de", Tools.MakeHumanCatKey("John de Doe"));
}
[Test]
public void RemoveDiacritics()
{
Assert.AreEqual("Doe", Tools.MakeHumanCatKey("Ďöê"));
Assert.AreEqual("Doe, John", Tools.MakeHumanCatKey("Ĵǒħń Ďöê"));
// Ё should be changed, but not Й
Assert.AreEqual("Епрстий", Tools.MakeHumanCatKey("Ёпрстий"));
}
[Test]
public void RemoveNamespace()
{
Assert.AreEqual("Doe, John", Tools.MakeHumanCatKey("Wikipedia:John Doe"));
}
[Test]
public void FuzzTest()
{
string allowedChars = "abcdefghijklmnopqrstuvwxyzйцукенфывапролдж ,,,,,";
Random rnd = new Random();
for (int i = 0; i < 10000; i++)
{
string name = "";
for (int j = 0; j < rnd.Next(45); j++) name += allowedChars[rnd.Next(allowedChars.Length)];
name = Regex.Replace(name, @"\s{2,}", " ").Trim(new char[] { ' ', ',' });
//System.Diagnostics.Trace.WriteLine(name);
name = Tools.MakeHumanCatKey(name);
Assert.IsFalse(name.Contains(" "), "Sorting key shouldn't contain consecutive spaces - it breaks the sorting ({0})", name);
Assert.IsFalse(name.StartsWith(" "), "Sorting key shouldn't start with spaces");
Assert.IsFalse(name.EndsWith(" "), "Sorting key shouldn't cend with spaces");
}
}
}
[TestFixture]
public class NamespaceSwitches
{
#region Constructor and helpers
public NamespaceSwitches()
{
Globals.UnitTestMode = true;
if (WikiRegexes.Category == null) WikiRegexes.MakeLangSpecificRegexes();
}
string ToTalk(string title)
{
Article a = new Article(title);
return Tools.ConvertToTalk(a);
}
string FromTalk(string title)
{
Article a = new Article(title);
return Tools.ConvertFromTalk(a);
}
#endregion
[Test]
public void ConvertToTalk()
{
Assert.AreEqual("Talk:Foo", ToTalk("Foo"));
Assert.AreEqual("Talk:Foo bar", ToTalk("Foo bar"));
Assert.AreEqual("Talk:Foo:Bar", ToTalk("Foo:Bar"));
Assert.AreEqual("Image talk:Foo bar", ToTalk("Image:Foo bar"));
Assert.AreEqual("Image talk:Foo bar", ToTalk("Image talk:Foo bar"));
Assert.AreEqual("Wikipedia talk:Foo", ToTalk("Wikipedia:Foo"));
// current namespace detection sucks, must be tested elsewhere
//Assert.AreEqual("Wikipedia talk:Foo", ToTalk("Project:Foo"));
}
[Test]
public void ToTalkOnList()
{
List<Article> l = new List<Article>();
l.Add(new Article("Foo"));
l.Add(new Article("Talk:Foo bar"));
l.Add(new Article("Image:Foo"));
CollectionAssert.AreEquivalent(Tools.ConvertToTalk(l),
new string[] { "Talk:Foo", "Talk:Foo bar", "Image talk:Foo" });
}
[Test]
public void ConvertFromTalk()
{
Assert.AreEqual("Foo", FromTalk("Talk:Foo"));
Assert.AreEqual("Foo", FromTalk("Foo"));
Assert.AreEqual("Foo:Bar", FromTalk("Foo:Bar"));
Assert.AreEqual("Foo:Bar", FromTalk("Talk:Foo:Bar"));
Assert.AreEqual("Image:Foo bar", FromTalk("Image:Foo bar"));
Assert.AreEqual("Image:Foo bar", FromTalk("Image talk:Foo bar"));
}
[Test]
public void FromTalkOnList()
{
List<Article> l = new List<Article>();
l.Add(new Article("Foo"));
l.Add(new Article("Talk:Foo bar"));
l.Add(new Article("Image talk:Foo"));
CollectionAssert.AreEquivalent(Tools.ConvertFromTalk(l),
new string[] { "Foo", "Foo bar", "Image:Foo" });
}
}
}
| svn2github/autowikibrowser | tags/IRCM/UnitTests/ToolsTests.cs | C# | gpl-2.0 | 24,946 |
/*
Sketchy
Copyright (C) 2015 Matthew Havlovick
http://www.quickdrawbot.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
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.
Contact Info:
Matt Havlovick
QuickDraw
470 I St
Washougal, WA 98671
matt@quickdrawbot.com
http://www.quickdrawbot.com
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
*/
package com.sketchy.metadata;
import java.util.ArrayList;
import java.util.List;
public class MetaDataGroup {
private String name="";
public MetaDataGroup(String name){
this.name=name;
}
private List<MetaDataProperty> metaDataProperties = new ArrayList<MetaDataProperty>();
public String getName() {
return name;
}
public List<MetaDataProperty> getMetaDataProperties() {
return metaDataProperties;
}
public void add(MetaDataProperty metaDataProperty){
metaDataProperties.add(metaDataProperty);
}
}
| MHAVLOVICK/Sketchy | src/main/java/com/sketchy/metadata/MetaDataGroup.java | Java | gpl-2.0 | 1,801 |
// This file has been generated by Py++.
// (C) Christopher Woods, GPL >= 2 License
#include "boost/python.hpp"
#include "CLJCutoffFunction.pypp.hpp"
namespace bp = boost::python;
#include "SireBase/errors.h"
#include "SireBase/lengthproperty.h"
#include "SireBase/numberproperty.h"
#include "SireBase/properties.h"
#include "SireBase/stringproperty.h"
#include "SireError/errors.h"
#include "SireMaths/multidouble.h"
#include "SireStream/datastream.h"
#include "SireStream/shareddatastream.h"
#include "SireVol/cartesian.h"
#include "SireVol/gridinfo.h"
#include "SireVol/periodicbox.h"
#include "cljboxes.h"
#include "cljfunction.h"
#include "switchingfunction.h"
#include "tbb/blocked_range.h"
#include "tbb/parallel_for.h"
#include "tostring.h"
#include <QElapsedTimer>
#include "cljfunction.h"
#include "Qt/qdatastream.hpp"
#include "Helpers/str.hpp"
void register_CLJCutoffFunction_class(){
{ //::SireMM::CLJCutoffFunction
typedef bp::class_< SireMM::CLJCutoffFunction, bp::bases< SireMM::CLJFunction, SireBase::Property >, boost::noncopyable > CLJCutoffFunction_exposer_t;
CLJCutoffFunction_exposer_t CLJCutoffFunction_exposer = CLJCutoffFunction_exposer_t( "CLJCutoffFunction", "This is the base class of all CLJ functions that have a cutoff\n\nAuthor: Christopher Woods\n", bp::no_init );
bp::scope CLJCutoffFunction_scope( CLJCutoffFunction_exposer );
{ //::SireMM::CLJCutoffFunction::containsProperty
typedef bool ( ::SireMM::CLJCutoffFunction::*containsProperty_function_type)( ::QString const & ) const;
containsProperty_function_type containsProperty_function_value( &::SireMM::CLJCutoffFunction::containsProperty );
CLJCutoffFunction_exposer.def(
"containsProperty"
, containsProperty_function_value
, ( bp::arg("name") )
, "Return whether or not this function contains a property called name" );
}
{ //::SireMM::CLJCutoffFunction::coulombCutoff
typedef ::SireUnits::Dimension::Length ( ::SireMM::CLJCutoffFunction::*coulombCutoff_function_type)( ) const;
coulombCutoff_function_type coulombCutoff_function_value( &::SireMM::CLJCutoffFunction::coulombCutoff );
CLJCutoffFunction_exposer.def(
"coulombCutoff"
, coulombCutoff_function_value
, "Return the coulomb cutoff distance" );
}
{ //::SireMM::CLJCutoffFunction::hasCutoff
typedef bool ( ::SireMM::CLJCutoffFunction::*hasCutoff_function_type)( ) const;
hasCutoff_function_type hasCutoff_function_value( &::SireMM::CLJCutoffFunction::hasCutoff );
CLJCutoffFunction_exposer.def(
"hasCutoff"
, hasCutoff_function_value
, "Return whether or not this function has a cutoff" );
}
{ //::SireMM::CLJCutoffFunction::ljCutoff
typedef ::SireUnits::Dimension::Length ( ::SireMM::CLJCutoffFunction::*ljCutoff_function_type)( ) const;
ljCutoff_function_type ljCutoff_function_value( &::SireMM::CLJCutoffFunction::ljCutoff );
CLJCutoffFunction_exposer.def(
"ljCutoff"
, ljCutoff_function_value
, "Return the LJ cutoff distance" );
}
{ //::SireMM::CLJCutoffFunction::properties
typedef ::SireBase::Properties ( ::SireMM::CLJCutoffFunction::*properties_function_type)( ) const;
properties_function_type properties_function_value( &::SireMM::CLJCutoffFunction::properties );
CLJCutoffFunction_exposer.def(
"properties"
, properties_function_value
, "Return the properties that can be set in this function" );
}
{ //::SireMM::CLJCutoffFunction::property
typedef ::SireBase::PropertyPtr ( ::SireMM::CLJCutoffFunction::*property_function_type)( ::QString const & ) const;
property_function_type property_function_value( &::SireMM::CLJCutoffFunction::property );
CLJCutoffFunction_exposer.def(
"property"
, property_function_value
, ( bp::arg("name") )
, "Return the value of the property with name name" );
}
{ //::SireMM::CLJCutoffFunction::setCoulombCutoff
typedef void ( ::SireMM::CLJCutoffFunction::*setCoulombCutoff_function_type)( ::SireUnits::Dimension::Length ) ;
setCoulombCutoff_function_type setCoulombCutoff_function_value( &::SireMM::CLJCutoffFunction::setCoulombCutoff );
CLJCutoffFunction_exposer.def(
"setCoulombCutoff"
, setCoulombCutoff_function_value
, ( bp::arg("distance") )
, "Set the coulomb cutoff to the specified distance" );
}
{ //::SireMM::CLJCutoffFunction::setCutoff
typedef void ( ::SireMM::CLJCutoffFunction::*setCutoff_function_type)( ::SireUnits::Dimension::Length ) ;
setCutoff_function_type setCutoff_function_value( &::SireMM::CLJCutoffFunction::setCutoff );
CLJCutoffFunction_exposer.def(
"setCutoff"
, setCutoff_function_value
, ( bp::arg("distance") )
, "Set the coulomb and LJ cutoff distances to distance" );
}
{ //::SireMM::CLJCutoffFunction::setCutoff
typedef void ( ::SireMM::CLJCutoffFunction::*setCutoff_function_type)( ::SireUnits::Dimension::Length,::SireUnits::Dimension::Length ) ;
setCutoff_function_type setCutoff_function_value( &::SireMM::CLJCutoffFunction::setCutoff );
CLJCutoffFunction_exposer.def(
"setCutoff"
, setCutoff_function_value
, ( bp::arg("coulomb_cutoff"), bp::arg("lj_cutoff") )
, "Set the coulomb and LJ cutoff distances to the specified values" );
}
{ //::SireMM::CLJCutoffFunction::setLJCutoff
typedef void ( ::SireMM::CLJCutoffFunction::*setLJCutoff_function_type)( ::SireUnits::Dimension::Length ) ;
setLJCutoff_function_type setLJCutoff_function_value( &::SireMM::CLJCutoffFunction::setLJCutoff );
CLJCutoffFunction_exposer.def(
"setLJCutoff"
, setLJCutoff_function_value
, ( bp::arg("distance") )
, "Set the LJ cutoff to the specified distance" );
}
{ //::SireMM::CLJCutoffFunction::setProperty
typedef ::SireMM::CLJFunctionPtr ( ::SireMM::CLJCutoffFunction::*setProperty_function_type)( ::QString const &,::SireBase::Property const & ) const;
setProperty_function_type setProperty_function_value( &::SireMM::CLJCutoffFunction::setProperty );
CLJCutoffFunction_exposer.def(
"setProperty"
, setProperty_function_value
, ( bp::arg("name"), bp::arg("value") )
, "Set the property with name name to value value" );
}
{ //::SireMM::CLJCutoffFunction::toString
typedef ::QString ( ::SireMM::CLJCutoffFunction::*toString_function_type)( ) const;
toString_function_type toString_function_value( &::SireMM::CLJCutoffFunction::toString );
CLJCutoffFunction_exposer.def(
"toString"
, toString_function_value
, "" );
}
{ //::SireMM::CLJCutoffFunction::typeName
typedef char const * ( *typeName_function_type )( );
typeName_function_type typeName_function_value( &::SireMM::CLJCutoffFunction::typeName );
CLJCutoffFunction_exposer.def(
"typeName"
, typeName_function_value
, "" );
}
CLJCutoffFunction_exposer.staticmethod( "typeName" );
CLJCutoffFunction_exposer.def( "__rlshift__", &__rlshift__QDataStream< ::SireMM::CLJCutoffFunction >,
bp::return_internal_reference<1, bp::with_custodian_and_ward<1,2> >() );
CLJCutoffFunction_exposer.def( "__rrshift__", &__rrshift__QDataStream< ::SireMM::CLJCutoffFunction >,
bp::return_internal_reference<1, bp::with_custodian_and_ward<1,2> >() );
CLJCutoffFunction_exposer.def( "__str__", &__str__< ::SireMM::CLJCutoffFunction > );
CLJCutoffFunction_exposer.def( "__repr__", &__str__< ::SireMM::CLJCutoffFunction > );
}
}
| chryswoods/Sire | wrapper/MM/CLJCutoffFunction.pypp.cpp | C++ | gpl-2.0 | 8,964 |
/**
* Copyright (C) Miklos Maroti, 2011
*
* 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.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.mmaroti.dsp;
import java.util.*;
import java.text.*;
import edu.emory.mathcs.jtransforms.fft.*;
public abstract class BlockCodec {
public final String name;
public final int dataLength;
public final int codeLength;
public BlockCodec(String name, int dataLength, int codeLength) {
this.name = name;
this.dataLength = dataLength;
this.codeLength = codeLength;
}
public abstract double[] encode(boolean[] data);
public abstract boolean[] decode(double[] code);
protected final static Random RANDOM = new Random();
public boolean[] getRandomData() {
boolean[] data = new boolean[dataLength];
for (int i = 0; i < dataLength; ++i) {
data[i] = RANDOM.nextBoolean();
}
return data;
}
protected double SQRT2 = Math.sqrt(2.0);
protected double LOG2 = Math.log(2.0);
public double[] getWhiteNoise(double power) {
power /= SQRT2;
double[] noise = new double[2 * codeLength];
for (int i = 0; i < noise.length; ++i)
noise[i] = power * RANDOM.nextGaussian();
return noise;
}
public static double[] addSignals(double[] code, double[] noise) {
double signal[] = new double[code.length];
for (int i = 0; i < code.length; ++i)
signal[i] = code[i] + noise[i];
return signal;
}
public static void scaleSignal(double[] signal, double scale) {
for(int i = 0; i < signal.length; ++i)
signal[i] *= scale;
}
public static void clipSignal(double[] signal, double clip) {
double nclip = -clip;
for(int i = 0; i < signal.length; ++i) {
if( signal[i] > clip )
signal[i] = clip;
else if( signal[i] < nclip )
signal[i] = nclip;
}
}
public double getAveragePower(double[] code) {
assert (code.length == 2 * codeLength);
double sum = 0.0;
for (int i = 0; i < code.length; ++i)
sum += code[i] * code[i];
sum /= (code.length / 2);
return sum;
}
public double getPeakPower(double[] code) {
assert (code.length == 2 * codeLength);
double max = 0.0;
for (int i = 0; i < code.length; i += 2) {
double v = code[i] * code[i] + code[i + 1] * code[i + 1];
if (v > max)
max = v;
}
return max;
}
public int getErrorCount(boolean[] data, boolean[] decoded) {
assert (data.length == dataLength && decoded.length == dataLength);
int c = 0;
for (int i = 0; i < dataLength; ++i) {
if (data[i] != decoded[i])
c += 1;
}
return c;
}
protected final static DecimalFormat FORMAT = new DecimalFormat("0.00");
protected double getBandwidthPerSample() {
return 1.0 * dataLength / codeLength;
}
protected double getCapacityPerSample(double ber) {
double h2 = 1.0;
if (0.0 < ber && ber < 1.0) {
h2 += ber * Math.log(ber) / LOG2;
h2 += (1.0 - ber) * Math.log(1.0 - ber) / LOG2;
}
return getBandwidthPerSample() * h2;
}
protected double getShannonLimit(double snr) {
return getBandwidthPerSample() * Math.log(1.0 + snr) / LOG2;
}
public void simulate(double noisePower) {
int rounds = 1000000 / dataLength;
double averageSignalPower = 0.0;
double peakSignalPower = 0.0;
int errorCount = 0;
for (int i = 0; i < rounds; ++i) {
boolean[] data = getRandomData();
double[] code = encode(data);
double[] noise = getWhiteNoise(noisePower);
averageSignalPower += getAveragePower(code);
peakSignalPower = Math.max(peakSignalPower, getPeakPower(code));
double[] signal = addSignals(code, noise);
errorCount += getErrorCount(data, decode(signal));
}
averageSignalPower /= rounds;
double bitErrorRate = 1.0 * errorCount / (rounds * dataLength);
String s = name;
s += " rate=" + dataLength + "/" + codeLength;
// s += " S_dB=" + FORMAT.format(10.0 * Math.log10(averageSignalPower));
// s += " P_dB=" + FORMAT.format(10.0 * Math.log10(peakSignalPower));
s += " N0_dB=" + FORMAT.format(10.0 * Math.log10(noisePower));
s += " SNR_dB="
+ FORMAT.format(10.0 * Math.log10(averageSignalPower
/ noisePower));
s += " PSNR_dB="
+ FORMAT.format(10.0 * Math.log10(peakSignalPower / noisePower));
s += " SbN0_dB="
+ FORMAT.format(10.0 * Math.log10(averageSignalPower
* codeLength / dataLength / noisePower));
s += " BER_log=" + FORMAT.format(Math.log10(bitErrorRate));
s += " CPS=" + FORMAT.format(getCapacityPerSample(bitErrorRate));
s += " SL="
+ FORMAT.format(getShannonLimit(averageSignalPower / noisePower));
System.out.println(s);
}
public void simulate() {
for(double n0 = 6.0; n0 >= -6.0; n0 -= 3.0)
simulate(Math.pow(10.0, n0/10.0));
}
public static final BlockCodec BPSK = new BlockCodec("BPSK", 1, 1) {
public double[] encode(boolean[] data) {
double[] code = new double[2];
code[0] = data[0] ? 1.0 : -1.0;
code[1] = data[0] ? 1.0 : -1.0;
return code;
}
public boolean[] decode(double[] code) {
boolean[] data = new boolean[1];
data[0] = code[0] + code[1] > 0.0;
return data;
}
};
public static final BlockCodec QPSK = new BlockCodec("QPSK", 2, 1) {
public double[] encode(boolean[] data) {
double[] code = new double[2];
code[0] = data[0] ? 1.0 : -1.0;
code[1] = data[1] ? 1.0 : -1.0;
return code;
}
public boolean[] decode(double[] code) {
boolean[] data = new boolean[2];
data[0] = code[0] > 0.0;
data[1] = code[1] > 0.0;
return data;
}
};
public static final BlockCodec QPSK2 = new BlockCodec("QPSK2", 2, 2) {
public double[] encode(boolean[] data) {
double[] code = new double[4];
code[0] = data[0] ? 1.0 : -1.0;
code[1] = data[1] ? 1.0 : -1.0;
code[2] = code[0];
code[3] = code[1];
return code;
}
public boolean[] decode(double[] code) {
boolean[] data = new boolean[2];
data[0] = code[0] + code[2] > 0.0;
data[1] = code[1] + code[3] > 0.0;
return data;
}
};
public static DoubleFFT_1D fft8 = new DoubleFFT_1D(8);
public static DoubleFFT_1D fft16 = new DoubleFFT_1D(16);
public static DoubleFFT_1D fft32 = new DoubleFFT_1D(32);
public static DoubleFFT_1D fft64 = new DoubleFFT_1D(32);
public static void fftForward(double[] vector) {
if (vector.length == 16)
fft8.complexForward(vector);
else if (vector.length == 32)
fft16.complexForward(vector);
else if (vector.length == 64)
fft32.complexForward(vector);
else if (vector.length == 128)
fft64.complexForward(vector);
else
throw new IllegalArgumentException();
scaleSignal(vector, 1.0 / Math.sqrt(vector.length / 2));
}
public static void fftReverse(double[] vector) {
if (vector.length == 16)
fft8.complexInverse(vector, false);
else if (vector.length == 32)
fft16.complexInverse(vector, false);
else if (vector.length == 64)
fft32.complexInverse(vector, false);
else if (vector.length == 128)
fft64.complexInverse(vector, false);
else
throw new IllegalArgumentException();
scaleSignal(vector, 1.0 / Math.sqrt(vector.length / 2));
}
public static final BlockCodec OFDM = new BlockCodec("OFDM", 32, 16) {
public double[] encode(boolean[] data) {
double[] code = new double[data.length];
for(int i = 0; i < data.length; ++i)
code[i] = data[i] ? 1.0 : -1.0;
fftReverse(code);
clipSignal(code, 1.0);
return code;
}
public boolean[] decode(double[] code) {
fftForward(code);
boolean[] data = new boolean[code.length];
for(int i = 0; i < data.length; ++i)
data[i] = code[i] > 0.0;
return data;
}
};
public static final BlockCodec OFDM2 = new BlockCodec("OFDM2", 128, 64) {
public double[] encode(boolean[] data) {
double[] code = new double[data.length];
for(int i = 0; i < data.length; ++i)
code[i] = data[i] ? 1.0 : -1.0;
fftReverse(code);
scaleSignal(code, 10.0);
clipSignal(code, 1.0);
return code;
}
public boolean[] decode(double[] code) {
fftForward(code);
boolean[] data = new boolean[code.length];
for(int i = 0; i < data.length; ++i)
data[i] = code[i] > 0.0;
return data;
}
};
public static void main(String[] args) {
BPSK.simulate();
QPSK.simulate();
QPSK2.simulate();
// OFDM.simulate();
// OFDM2.simulate();
}
}
| mmaroti/shared | org/mmaroti/dsp/BlockCodec.java | Java | gpl-2.0 | 8,793 |
<?php
/**
* Shows a simple single post
*
* @package Smartbox
* @subpackage Frontend
* @since 1.0
*
* @copyright (c) 2013 Oxygenna.com
* @license http://wiki.envato.com/support/legal-terms/licensing-terms/
* @version 1.5.4
*/
global $post;
$author_id = get_the_author_meta('ID');
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('row-fluid'); ?>>
<?php get_template_part( 'partials/post-gutter' ); ?>
<div class="<?php echo oxy_get_option( 'blog_image_size' ) == 'normal'? 'span10':'span12'; ?> post-body">
<div class="post-head">
<h2 class="small-screen-center">
<?php
$link_shortcode = oxy_get_content_shortcode( $post, 'link' );
if( $link_shortcode !== null ) {
if( isset( $link_shortcode[5] ) ) {
$link_shortcode = $link_shortcode[5];
if( isset( $link_shortcode[0] ) ) {
$title = '<a href="' . $link_shortcode[0] . '">' . get_the_title( $post->ID ) . ' <i class="icon-double-angle-right"></i></a>';
}
}
}
echo empty( $title ) ? the_title() : $title;
?>
</h2>
<?php get_template_part( 'partials/post-extras' ); ?>
</div>
<div class="entry-content">
<?php
if ( has_post_thumbnail() ){
$img = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
echo '<figure>' . '<img alt="featured image" src="'.$img[0].'">' . '</figure>';
}
the_content();
get_template_part( 'partials/social-links', null );
?>
</div>
</div>
</article>
| andriysobol/holybunch_preprod | wp-content/themes/smartbox-theme-1.01/partials/content-link.php | PHP | gpl-2.0 | 1,784 |
/*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2016 Serge Rieder (serge@jkiss.org)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (version 2)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.jkiss.dbeaver.model.struct.rdb;
import org.jkiss.code.NotNull;
import org.jkiss.dbeaver.model.struct.DBSEntity;
import org.jkiss.dbeaver.model.struct.DBSEntityAttribute;
/**
* DBSTableColumn
*/
public interface DBSTableColumn extends DBSEntityAttribute
{
@NotNull
@Override
DBSEntity getParentObject();
}
| Corvu/dbeaver | plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/struct/rdb/DBSTableColumn.java | Java | gpl-2.0 | 1,129 |
<?php
/**
* ViewLinkRequest
*
* PHP version 5
*
* @category Class
* @package DocuSign\eSign
* @author Swaagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* DocuSign REST API
*
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
*
* OpenAPI spec version: v2
* Contact: devcenter@docusign.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
namespace DocuSign\eSign\Model;
use \ArrayAccess;
/**
* ViewLinkRequest Class Doc Comment
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class ViewLinkRequest implements ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
* @var string
*/
protected static $swaggerModelName = 'viewLinkRequest';
/**
* Array of property to type mappings. Used for (de)serialization
* @var string[]
*/
protected static $swaggerTypes = [
'email' => 'string',
'return_url' => 'string'
];
public static function swaggerTypes()
{
return self::$swaggerTypes;
}
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
protected static $attributeMap = [
'email' => 'email',
'return_url' => 'returnUrl'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
protected static $setters = [
'email' => 'setEmail',
'return_url' => 'setReturnUrl'
];
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
protected static $getters = [
'email' => 'getEmail',
'return_url' => 'getReturnUrl'
];
public static function attributeMap()
{
return self::$attributeMap;
}
public static function setters()
{
return self::$setters;
}
public static function getters()
{
return self::$getters;
}
/**
* Associative array for storing property values
* @var mixed[]
*/
protected $container = [];
/**
* Constructor
* @param mixed[] $data Associated array of property values initializing the model
*/
public function __construct(array $data = null)
{
$this->container['email'] = isset($data['email']) ? $data['email'] : null;
$this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null;
}
/**
* show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalid_properties = [];
return $invalid_properties;
}
/**
* validate all the properties in the model
* return true if all passed
*
* @return bool True if all properteis are valid
*/
public function valid()
{
return true;
}
/**
* Gets email
* @return string
*/
public function getEmail()
{
return $this->container['email'];
}
/**
* Sets email
* @param string $email
* @return $this
*/
public function setEmail($email)
{
$this->container['email'] = $email;
return $this;
}
/**
* Gets return_url
* @return string
*/
public function getReturnUrl()
{
return $this->container['return_url'];
}
/**
* Sets return_url
* @param string $return_url
* @return $this
*/
public function setReturnUrl($return_url)
{
$this->container['return_url'] = $return_url;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
* @param integer $offset Offset
* @return boolean
*/
public function offsetExists($offset)
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
* @param integer $offset Offset
* @return mixed
*/
public function offsetGet($offset)
{
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
/**
* Sets value based on offset.
* @param integer $offset Offset
* @param mixed $value Value to be set
* @return void
*/
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
* @param integer $offset Offset
* @return void
*/
public function offsetUnset($offset)
{
unset($this->container[$offset]);
}
/**
* Gets the string presentation of the object
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print
return json_encode(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);
}
return json_encode(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this));
}
}
| emundus/v6 | libraries/docusign-php-client/src/Model/ViewLinkRequest.php | PHP | gpl-2.0 | 5,562 |
<?php
/**
* This file has been @generated by a phing task by {@link BuildMetadataPHPFromXml}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return array (
'generalDesc' =>
array (
'NationalNumberPattern' => '[2-9]\\d{9}|3\\d{6}',
'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?',
'PossibleLength' =>
array (
0 => 7,
1 => 10,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'fixedLine' =>
array (
'NationalNumberPattern' => '(?:2(?:04|[23]6|[48]9|50)|3(?:06|43|65)|4(?:03|1[68]|3[178]|50)|5(?:06|1[49]|48|79|8[17])|6(?:0[04]|13|22|39|47)|7(?:0[59]|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}|310\\d{4}',
'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?',
'ExampleNumber' => '2042345678',
'PossibleLength' =>
array (
0 => 10,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'mobile' =>
array (
'NationalNumberPattern' => '(?:2(?:04|[23]6|[48]9|50)|3(?:06|43|65)|4(?:03|1[68]|3[178]|50)|5(?:06|1[49]|48|79|8[17])|6(?:0[04]|13|22|39|47)|7(?:0[59]|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}',
'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?',
'ExampleNumber' => '2042345678',
'PossibleLength' =>
array (
0 => 10,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'tollFree' =>
array (
'NationalNumberPattern' => '8(?:00|44|55|66|77|88)[2-9]\\d{6}|310\\d{4}',
'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?',
'ExampleNumber' => '8002123456',
'PossibleLength' =>
array (
),
'PossibleLengthLocalOnly' =>
array (
),
),
'premiumRate' =>
array (
'NationalNumberPattern' => '900[2-9]\\d{6}',
'PossibleNumberPattern' => '\\d{10}',
'ExampleNumber' => '9002123456',
'PossibleLength' =>
array (
0 => 10,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'sharedCost' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'personalNumber' =>
array (
'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}',
'PossibleNumberPattern' => '\\d{10}',
'ExampleNumber' => '5002345678',
'PossibleLength' =>
array (
0 => 10,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'voip' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'pager' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'uan' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'voicemail' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'noInternationalDialling' =>
array (
'NationalNumberPattern' => 'NA',
'PossibleNumberPattern' => 'NA',
'PossibleLength' =>
array (
0 => -1,
),
'PossibleLengthLocalOnly' =>
array (
),
),
'id' => 'CA',
'countryCode' => 1,
'internationalPrefix' => '011',
'nationalPrefix' => '1',
'nationalPrefixForParsing' => '1',
'sameMobileAndFixedLinePattern' => false,
'numberFormat' =>
array (
),
'intlNumberFormat' =>
array (
),
'mainCountryForCode' => false,
'leadingZeroPossible' => false,
'mobileNumberPortableRegion' => true,
);
| THECALLR/callr-woocommerce | admin/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CA.php | PHP | gpl-2.0 | 4,105 |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using SenseNet.Configuration;
using SenseNet.ContentRepository.Search.Indexing.Activities;
using SenseNet.ContentRepository.Storage;
using SenseNet.ContentRepository.Storage.Data;
using SenseNet.ContentRepository.Storage.Schema;
using SenseNet.Diagnostics;
using SenseNet.Search;
using SenseNet.Search.Indexing;
using SenseNet.Search.Querying;
using STT=System.Threading.Tasks;
namespace SenseNet.ContentRepository.Search.Indexing
{
/// <summary>
/// Provides methods for managing indexes.
/// </summary>
public static class IndexManager // alias LuceneManager
{
private static IDataStore DataStore => Providers.Instance.DataStore;
#region /* ==================================================================== Managing index */
/// <summary>
/// Gets the current <see cref="IIndexingEngine"/> implementation.
/// </summary>
public static IIndexingEngine IndexingEngine => SearchManager.SearchEngine.IndexingEngine;
internal static ICommitManager CommitManager { get; private set; }
/// <summary>
/// Gets a value that is true if the current indexing engine is running.
/// </summary>
public static bool Running => IndexingEngine?.Running ?? false;
/// <summary>
/// Gets the ids of not indexed <see cref="NodeType"/>s.
/// </summary>
public static int[] GetNotIndexedNodeTypes()
{
return new AllContentTypes()
.Where(c => !c.IndexingEnabled)
.Select(c => NodeType.GetByName(c.Name).Id)
.ToArray();
}
/// <summary>
/// Initializes the indexing feature: starts the IndexingEngine, CommitManager and indexing activity organizer.
/// If "consoleOut" is not null, writes progress and debug messages into it.
/// </summary>
/// <param name="consoleOut">A <see cref="TextWriter"/> instance or null.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static async STT.Task StartAsync(TextWriter consoleOut, CancellationToken cancellationToken)
{
await IndexingEngine.StartAsync(consoleOut, cancellationToken).ConfigureAwait(false);
CommitManager = IndexingEngine.IndexIsCentralized
? (ICommitManager) new NoDelayCommitManager()
: new NearRealTimeCommitManager();
SnTrace.Index.Write("LM: {0} created.", CommitManager.GetType().Name);
CommitManager.Start();
if (IndexingEngine.IndexIsCentralized)
{
RestoreIndexIfNeeded();
CentralizedIndexingActivityQueue.Startup(consoleOut);
}
else
{
DistributedIndexingActivityQueue.Startup(consoleOut);
}
}
/// <summary>
/// Restores already executed indexing actity states to Waiting. The goal is to
/// mark old activities that cannot be found in the index to be executed again.
/// This should happen after a db and index restore, when the index is older than
/// the database. This method assumes that the latest activity id is written to the index.
/// </summary>
private static void RestoreIndexIfNeeded()
{
//TODO: review this method, because currently we do not write status to the service index. That means
// the last activity id will always be 0 in case of a centralized index and this method will never
// restore the status of indexing activities. This is a problem in case we restore an older index:
// newer activities will never be executed.
SnTrace.Index.Write("Reading IndexingActivityStatus from index:");
try
{
var status = IndexManager.IndexingEngine.ReadActivityStatusFromIndexAsync(CancellationToken.None)
.GetAwaiter().GetResult();
SnTrace.Index.Write($" Status: {status}");
if (status.LastActivityId > 0)
{
SnTrace.Index.Write(" Restore indexing activities: ");
var result = IndexManager.RestoreIndexingActivityStatusAsync(status, CancellationToken.None)
.ConfigureAwait(false).GetAwaiter().GetResult();
SnTrace.Index.Write($" Restore result: {result}.");
}
else
{
SnTrace.Index.Write(" Restore is not necessary.");
}
}
catch (Exception ex)
{
SnTrace.Index.Write($"WARNING: error when reading indexing activity status " +
$"from the centralized index or when restoring activity status: {ex.Message}");
}
}
/// <summary>
/// Shuts down the indexing feature: stops CommitManager, indexing activity organizer and IndexingEngine.
/// </summary>
public static void ShutDown()
{
CommitManager?.ShutDown();
if (IndexingEngine == null)
return;
//TODO: [async] rewrite this using async APIs.
if (IndexingEngine.IndexIsCentralized)
CentralizedIndexingActivityQueue.ShutDown();
else
DistributedIndexingActivityQueue.ShutDown();
//TODO: [async] rewrite this using async APIs.
IndexingEngine.ShutDownAsync(CancellationToken.None).GetAwaiter().GetResult();
SnLog.WriteInformation("Indexing engine has stopped. Max task id and exceptions: " + DistributedIndexingActivityQueue.GetCurrentCompletionState());
}
/// <summary>
/// Deletes the existing index. Called before making a brand new index.
/// </summary>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static STT.Task ClearIndexAsync(CancellationToken cancellationToken)
{
return IndexingEngine.ClearIndexAsync(cancellationToken);
}
/* ========================================================================================== Activity */
/// <summary>
/// Registers an indexing activity in the database.
/// </summary>
/// <param name="activity">The activity to register.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static STT.Task RegisterActivityAsync(IndexingActivityBase activity, CancellationToken cancellationToken)
{
return DataStore.RegisterIndexingActivityAsync(activity, cancellationToken);
}
/// <summary>
/// Executes an indexing activity taking dependencies into account and waits for its completion asynchronously.
/// Dependent activities are executed in the order of registration.
/// Dependent activity execution starts after the previously blocker activity is completed.
/// </summary>
/// <param name="activity">The activity to execute.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static STT.Task ExecuteActivityAsync(IndexingActivityBase activity, CancellationToken cancellationToken)
{
return SearchManager.SearchEngine.IndexingEngine.IndexIsCentralized
? ExecuteCentralizedActivityAsync(activity, cancellationToken)
: ExecuteDistributedActivityAsync(activity, cancellationToken);
}
private static STT.Task ExecuteCentralizedActivityAsync(IndexingActivityBase activity, CancellationToken cancellationToken)
{
SnTrace.Index.Write("ExecuteCentralizedActivity: #{0}", activity.Id);
CentralizedIndexingActivityQueue.ExecuteActivity(activity);
return activity.WaitForCompleteAsync(cancellationToken);
}
private static async STT.Task ExecuteDistributedActivityAsync(IndexingActivityBase activity, CancellationToken cancellationToken)
{
SnTrace.Index.Write("ExecuteDistributedActivity: #{0}", activity.Id);
await activity.DistributeAsync(cancellationToken).ConfigureAwait(false);
// If there are too many activities in the queue, we have to drop at least the inner
// data of the activity to prevent memory overflow. We still have to wait for the
// activity to finish, but the inner data can (and will) be loaded from the db when
// the time comes for this activity to be executed.
if (DistributedIndexingActivityQueue.IsOverloaded())
{
SnTrace.Index.Write("IAQ OVERLOAD drop activity FromPopulator A:" + activity.Id);
activity.IndexDocumentData = null;
}
// all activities must be executed through the activity queue's API
DistributedIndexingActivityQueue.ExecuteActivity(activity);
await activity.WaitForCompleteAsync(cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Returns the Id of the last registered indexing activity.
/// </summary>
public static int GetLastStoredIndexingActivityId()
{
return DataStore.GetLastIndexingActivityIdAsync(CancellationToken.None).GetAwaiter().GetResult();
}
/// <summary>
/// Deletes all activities from the database.
/// </summary>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
internal static STT.Task DeleteAllIndexingActivitiesAsync(CancellationToken cancellationToken)
{
return DataStore.DeleteAllIndexingActivitiesAsync(cancellationToken);
}
/// <summary>
/// Gets the current <see cref="IndexingActivityStatus"/> instance
/// containing the last executed indexing activity id and ids of missing indexing activities.
/// This method is used in the distributed indexing scenario.
/// The indexing activity status comes from the index.
/// </summary>
/// <returns>The current <see cref="IndexingActivityStatus"/> instance.</returns>
public static IndexingActivityStatus GetCurrentIndexingActivityStatus()
{
return DistributedIndexingActivityQueue.GetCurrentCompletionState();
}
/// <summary>
/// Deletes all restore points from the database.
/// This method is used in the centralized indexing scenario.
/// </summary>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static STT.Task DeleteRestorePointsAsync(CancellationToken cancellationToken)
{
return DataStore.DeleteRestorePointsAsync(cancellationToken);
}
/// <summary>
/// Gets the current <see cref="IndexingActivityStatus"/> instance
/// containing the last executed indexing activity id and ids of missing indexing activities.
/// This method is used in the centralized indexing scenario.
/// The indexing activity status comes from the database.
/// </summary>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation and wraps the current
/// <see cref="IndexingActivityStatus"/> instance.</returns>
public static STT.Task<IndexingActivityStatus> LoadCurrentIndexingActivityStatusAsync(CancellationToken cancellationToken)
{
return DataStore.LoadCurrentIndexingActivityStatusAsync(cancellationToken);
}
/// <summary>
/// Restores the indexing activity status.
/// This method is used in the centralized indexing scenario.
/// </summary>
/// <remarks>
/// To ensure index and database integrity, this method marks indexing activities
/// that were executed after the backup status was queried as executables. In the
/// CentralizedIndexingActivityQueue's startup sequence these activities will be
/// executed before new indexing activities that were added later.
/// </remarks>
/// <param name="status">An <see cref="IndexingActivityStatus"/> instance that contains the latest executed activity id and gaps.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A Task that represents the asynchronous operation.</returns>
public static async STT.Task<IndexingActivityStatusRestoreResult> RestoreIndexingActivityStatusAsync(
IndexingActivityStatus status, CancellationToken cancellationToken)
{
// Running state of the activity is only used in the centralized indexing scenario.
// Additionally, the activity table can be too large in the distributed indexing scenario
// so it would be blocked for a long time by RestoreIndexingActivityStatusAsync.
if (!SearchManager.SearchEngine.IndexingEngine.IndexIsCentralized)
throw new SnNotSupportedException();
// No action is required if the status is the default
if (status.LastActivityId <= 0)
return IndexingActivityStatusRestoreResult.NotNecessary;
// Request to restore the running state of the stored activities by the status.
var result = await DataStore.RestoreIndexingActivityStatusAsync(status, cancellationToken)
.ConfigureAwait(false);
// Reset activity status in the index if an actual operation happened.
if(result == IndexingActivityStatusRestoreResult.Restored)
await SearchManager.SearchEngine.IndexingEngine.WriteActivityStatusToIndexAsync(
IndexingActivityStatus.Startup, cancellationToken).ConfigureAwait(false);
return result;
}
/*========================================================================================== Commit */
// called from activity
internal static void ActivityFinished(int activityId, bool executingUnprocessedActivities)
{
//SnTrace.Index.Write("LM: ActivityFinished: {0}", activityId);
//CommitManager.ActivityFinished();
}
// called from activity queue
internal static void ActivityFinished(int activityId)
{
SnTrace.Index.Write("LM: ActivityFinished: {0}", activityId);
CommitManager?.ActivityFinished();
}
internal static STT.Task CommitAsync(CancellationToken cancellationToken)
{
var state = GetCurrentIndexingActivityStatus();
SnTrace.Index.Write("LM: WriteActivityStatusToIndex: {0}", state);
return IndexingEngine.WriteActivityStatusToIndexAsync(state, cancellationToken);
}
#endregion
#region /* ==================================================================== Document operations */
/* ClearAndPopulateAll */
internal static STT.Task AddDocumentsAsync(IEnumerable<IndexDocument> documents, CancellationToken cancellationToken)
{
return IndexingEngine.WriteIndexAsync(null, null, documents, cancellationToken);
}
/* AddDocumentActivity, RebuildActivity */
internal static async STT.Task<bool> AddDocumentAsync(IndexDocument document, VersioningInfo versioning, CancellationToken cancellationToken)
{
var delTerms = versioning.Delete.Select(i => new SnTerm(IndexFieldName.VersionId, i)).ToArray();
var updates = GetUpdates(versioning);
if(document != null)
SetDocumentFlags(document, versioning);
await IndexingEngine.WriteIndexAsync(delTerms, updates, new[] {document}, cancellationToken).ConfigureAwait(false);
return true;
}
// UpdateDocumentActivity
internal static async STT.Task<bool> UpdateDocumentAsync(IndexDocument document, VersioningInfo versioning, CancellationToken cancellationToken)
{
var delTerms = versioning.Delete.Select(i => new SnTerm(IndexFieldName.VersionId, i)).ToArray();
var updates = GetUpdates(versioning).ToList();
if (document != null)
{
SetDocumentFlags(document, versioning);
updates.Add(new DocumentUpdate
{
UpdateTerm = new SnTerm(IndexFieldName.VersionId, document.VersionId),
Document = document
});
}
await IndexingEngine.WriteIndexAsync(delTerms, updates, null, cancellationToken).ConfigureAwait(false);
return true;
}
// RemoveTreeActivity, RebuildActivity
internal static async STT.Task<bool> DeleteDocumentsAsync(IEnumerable<SnTerm> deleteTerms, VersioningInfo versioning, CancellationToken cancellationToken)
{
await IndexingEngine.WriteIndexAsync(deleteTerms, null, null, cancellationToken).ConfigureAwait(false);
// Not necessary to check if indexing interfered here. If it did, change is detected in overlapped AddDocument/UpdateDocument
// operations and refresh (re-delete) is called there.
// Delete documents will never detect changes in index, since it sets timestamp in index history to maxvalue.
return true;
}
private static IEnumerable<DocumentUpdate> GetUpdates(VersioningInfo versioning)
{
var result = new List<DocumentUpdate>(versioning.Reindex.Length);
var updates = LoadIndexDocumentsByVersionId(versioning.Reindex);
foreach (var doc in updates)
{
SetDocumentFlags(doc, versioning);
result.Add(new DocumentUpdate { UpdateTerm = new SnTerm(IndexFieldName.VersionId, doc.VersionId), Document = doc });
}
return result;
}
private static void SetDocumentFlags(IndexDocument doc, VersioningInfo versioning)
{
var versionId = doc.VersionId;
var version = VersionNumber.Parse(doc.Version);
var isMajor = version.IsMajor;
var isPublic = version.Status == VersionStatus.Approved;
var isLastPublic = versionId == versioning.LastPublicVersionId;
var isLastDraft = versionId == versioning.LastDraftVersionId;
// set flags
SetDocumentFlag(doc, IndexFieldName.IsMajor, isMajor);
SetDocumentFlag(doc, IndexFieldName.IsPublic, isPublic);
SetDocumentFlag(doc, IndexFieldName.IsLastPublic, isLastPublic);
SetDocumentFlag(doc, IndexFieldName.IsLastDraft, isLastDraft);
}
private static void SetDocumentFlag(IndexDocument doc, string fieldName, bool value)
{
doc.Add(new IndexField(fieldName, value, IndexingMode.NotAnalyzed, IndexStoringMode.Yes, IndexTermVector.No));
}
// AddTreeActivity
internal static async STT.Task<bool> AddTreeAsync(string treeRoot, int activityId,
bool executingUnprocessedActivities, CancellationToken cancellationToken)
{
var delTerms = executingUnprocessedActivities ? new [] { new SnTerm(IndexFieldName.InTree, treeRoot) } : null;
var excludedNodeTypes = GetNotIndexedNodeTypes();
var docs = SearchManager.LoadIndexDocumentsByPath(treeRoot, excludedNodeTypes).Select(CreateIndexDocument);
await IndexingEngine.WriteIndexAsync(delTerms, null, docs, cancellationToken).ConfigureAwait(false);
return true;
}
#endregion
#region /* ==================================================================== IndexDocument management */
// ReSharper disable once InconsistentNaming
private static IPerFieldIndexingInfo __nameFieldIndexingInfo;
internal static IPerFieldIndexingInfo NameFieldIndexingInfo => __nameFieldIndexingInfo ??
(__nameFieldIndexingInfo = SearchManager.GetPerFieldIndexingInfo(IndexFieldName.Name));
// ReSharper disable once InconsistentNaming
private static IPerFieldIndexingInfo __pathFieldIndexingInfo;
internal static IPerFieldIndexingInfo PathFieldIndexingInfo => __pathFieldIndexingInfo ??
(__pathFieldIndexingInfo = SearchManager.GetPerFieldIndexingInfo(IndexFieldName.Path));
// ReSharper disable once InconsistentNaming
private static IPerFieldIndexingInfo __inTreeFieldIndexingInfo;
internal static IPerFieldIndexingInfo InTreeFieldIndexingInfo => __inTreeFieldIndexingInfo ?? (__inTreeFieldIndexingInfo =
SearchManager.GetPerFieldIndexingInfo(IndexFieldName.InTree));
// ReSharper disable once InconsistentNaming
private static IPerFieldIndexingInfo __inFolderFieldIndexingInfo;
internal static IPerFieldIndexingInfo InFolderFieldIndexingInfo => __inFolderFieldIndexingInfo ?? (__inFolderFieldIndexingInfo =
SearchManager.GetPerFieldIndexingInfo(IndexFieldName.InFolder));
internal static IndexDocument LoadIndexDocumentByVersionId(int versionId)
{
return CreateIndexDocument(SearchManager.LoadIndexDocumentByVersionId(versionId));
}
internal static IEnumerable<IndexDocument> LoadIndexDocumentsByVersionId(int[] versionIds)
{
return versionIds.Length == 0
? new IndexDocument[0]
: SearchManager.LoadIndexDocumentByVersionId(versionIds)
.Select(CreateIndexDocument)
.ToArray();
}
private static IndexDocument CreateIndexDocument(IndexDocumentData data)
{
return data == null ? null : CompleteIndexDocument(data);
}
internal static IndexDocument CompleteIndexDocument(IndexDocumentData docData)
{
var doc = docData?.IndexDocument;
if (doc == null)
return null;
if (doc is NotIndexedIndexDocument)
return null;
var path = docData.Path.ToLowerInvariant();
var parentPath = RepositoryPath.GetParentPath(docData.Path)?.ToLowerInvariant() ?? "/";
doc.Add(new IndexField(IndexFieldName.Name, RepositoryPath.GetFileName(path), NameFieldIndexingInfo.IndexingMode, NameFieldIndexingInfo.IndexStoringMode, NameFieldIndexingInfo.TermVectorStoringMode));
doc.Add(new IndexField(IndexFieldName.Path, path, PathFieldIndexingInfo.IndexingMode, PathFieldIndexingInfo.IndexStoringMode, PathFieldIndexingInfo.TermVectorStoringMode));
doc.Add(new IndexField(IndexFieldName.Depth, Node.GetDepth(path), IndexingMode.AnalyzedNoNorms, IndexStoringMode.Yes, IndexTermVector.No));
doc.Add(new IndexField(IndexFieldName.InTree, GetParentPaths(path), InTreeFieldIndexingInfo.IndexingMode, InTreeFieldIndexingInfo.IndexStoringMode, InTreeFieldIndexingInfo.TermVectorStoringMode));
doc.Add(new IndexField(IndexFieldName.InFolder, parentPath, InFolderFieldIndexingInfo.IndexingMode, InFolderFieldIndexingInfo.IndexStoringMode, InFolderFieldIndexingInfo.TermVectorStoringMode));
doc.Add(new IndexField(IndexFieldName.ParentId, docData.ParentId, IndexingMode.AnalyzedNoNorms, IndexStoringMode.No, IndexTermVector.No));
doc.Add(new IndexField(IndexFieldName.IsSystem, docData.IsSystem, IndexingMode.NotAnalyzed, IndexStoringMode.Yes, IndexTermVector.No));
// flags
doc.Add(new IndexField(IndexFieldName.IsLastPublic, docData.IsLastPublic, IndexingMode.NotAnalyzed, IndexStoringMode.Yes, IndexTermVector.No));
doc.Add(new IndexField(IndexFieldName.IsLastDraft, docData.IsLastDraft, IndexingMode.NotAnalyzed, IndexStoringMode.Yes, IndexTermVector.No));
// timestamps
doc.Add(new IndexField(IndexFieldName.NodeTimestamp, docData.NodeTimestamp, IndexingMode.AnalyzedNoNorms, IndexStoringMode.Yes, IndexTermVector.No));
doc.Add(new IndexField(IndexFieldName.VersionTimestamp, docData.VersionTimestamp, IndexingMode.AnalyzedNoNorms, IndexStoringMode.Yes, IndexTermVector.No));
return doc;
}
private static string[] GetParentPaths(string lowerCasePath)
{
var separator = "/";
string[] fragments = lowerCasePath.Split(separator.ToCharArray(), StringSplitOptions.None);
string[] pathSteps = new string[fragments.Length];
for (int i = 0; i < fragments.Length; i++)
pathSteps[i] = string.Join(separator, fragments, 0, i + 1);
return pathSteps;
}
#endregion
}
}
| SenseNet/sensenet | src/ContentRepository/Search/Indexing/IndexManager.cs | C# | gpl-2.0 | 25,971 |
#region Header
// Vorspire _,-'/-'/ SystemOpts.cs
// . __,-; ,'( '/
// \. `-.__`-._`:_,-._ _ , . ``
// `:-._,------' ` _,`--` -: `_ , ` ,' :
// `---..__,,--' (C) 2016 ` -'. -'
// # Vita-Nex [http://core.vita-nex.com] #
// {o)xxx|===============- # -===============|xxx(o}
// # The MIT License (MIT) #
#endregion
#region References
using System;
using Server;
using VitaNex.Schedules;
#endregion
namespace VitaNex.Updates
{
public class UpdateServiceOptions : CoreServiceOptions
{
[CommandProperty(UpdateService.Access)]
public Schedule Schedule { get; set; }
[CommandProperty(UpdateService.Access)]
public TimeSpan Timeout { get; set; }
[CommandProperty(UpdateService.Access)]
public AccessLevel NotifyAccess { get; set; }
[CommandProperty(UpdateService.Access)]
public bool NotifyStaff { get; set; }
[CommandProperty(UpdateService.Access)]
public VersionInfo VersionLocal { get { return UpdateService.LocalVersion; } }
[CommandProperty(UpdateService.Access)]
public VersionInfo VersionRemote { get { return UpdateService.RemoteVersion; } }
public UpdateServiceOptions()
: base(typeof(UpdateService))
{
Schedule = new Schedule("UpdateService", true, ScheduleMonths.All, ScheduleDays.All, ScheduleTimes.EveryHour);
Timeout = TimeSpan.FromSeconds(10.0);
NotifyAccess = AccessLevel.Administrator;
NotifyStaff = true;
}
public UpdateServiceOptions(GenericReader reader)
: base(reader)
{ }
public override void Clear()
{
base.Clear();
Schedule.Info.Clear();
Timeout = TimeSpan.Zero;
NotifyAccess = AccessLevel.Administrator;
NotifyStaff = true;
}
public override void Reset()
{
base.Reset();
Schedule.Info.Clear();
Timeout = TimeSpan.FromSeconds(10.0);
NotifyAccess = AccessLevel.Administrator;
NotifyStaff = true;
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
var version = writer.SetVersion(0);
switch (version)
{
case 0:
{
Schedule.Serialize(writer);
writer.Write(Timeout);
writer.WriteFlag(NotifyAccess);
writer.Write(NotifyStaff);
}
break;
}
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
var version = reader.GetVersion();
switch (version)
{
case 0:
{
Schedule = new Schedule(reader);
Timeout = reader.ReadTimeSpan();
NotifyAccess = reader.ReadFlag<AccessLevel>();
NotifyStaff = reader.ReadBool();
}
break;
}
}
}
} | Andries1985/Shards-of-Nagash | Scripts/VitaNex/Core/Services/Updates/Options/SystemOpts.cs | C# | gpl-2.0 | 2,605 |
/*
QtCurve KWin window decoration
Copyright (C) 2007 - 2010 Craig Drummond <craig.p.drummond@gmail.com>
based on the window decoration "Plastik":
Copyright (C) 2003-2005 Sandro Giessl <sandro@giessl.com>
based on the window decoration "Web":
Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#define DRAW_INTO_PIXMAPS
#include <KDE/KLocale>
#include <QBitmap>
#include <QDateTime>
#include <QFontMetrics>
#include <QImage>
#include <QLabel>
#include <QLayout>
#include <QPainter>
#include <QPixmap>
#include <QStyleOptionTitleBar>
#include <QStyle>
#include <QPainterPath>
#include <QLinearGradient>
#include <KDE/KColorUtils>
#include <KDE/KWindowInfo>
#include <KDE/KIconEffect>
#include <KDE/KWindowSystem>
#include <qdesktopwidget.h>
#include "qtcurveclient.h"
#include "qtcurvebutton.h"
#include "qtcurvetogglebutton.h"
#include "qtcurvesizegrip.h"
#include "common.h"
#if KDE_IS_VERSION(4, 3, 0)
#include "tileset.h"
#endif
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include "../style/fixx11h.h"
#include "../style/qtcurve.h"
#include <QX11Info>
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
#include <KDE/KIconLoader>
#endif
#if KDE_IS_VERSION(4, 3, 0)
#define COMPOSITING_ENABLED compositingActive()
#else
#define COMPOSITING_ENABLED KWindowSystem::compositingActive()
#endif
namespace KWinQtCurve
{
static const int constTitlePad=4;
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
#define TAB_CLOSE_ICON_SIZE tabCloseIconSize(layoutMetric(LM_TitleHeight))
static const int constInvalidTab=-1;
static const int constAddToEmpty=-2;
static inline int tabCloseIconSize(int titleHeight)
{
int size=titleHeight*0.8;
if(0==size%2)
size++;
return size;
}
#endif
int getProperty(WId wId, const Atom &atom)
{
unsigned char *data;
int dummy;
unsigned long num,
dummy2;
int rv(-1);
if (Success==XGetWindowProperty(QX11Info::display(), wId, atom, 0L, 1, False, XA_CARDINAL, &dummy2, &dummy, &num, &dummy2, &data) && num>0)
{
unsigned short val=*((unsigned short*)data);
if(val<512)
rv=val;
XFree(data);
}
//else
// *data = NULL; // superflous?!?
return rv;
}
int getMenubarSizeProperty(WId wId)
{
static const Atom constAtom = XInternAtom(QX11Info::display(), MENU_SIZE_ATOM, False);
return getProperty(wId, constAtom);
}
int getStatusbarSizeProperty(WId wId)
{
static const Atom constAtom = XInternAtom(QX11Info::display(), STATUSBAR_ATOM, False);
return getProperty(wId, constAtom);
}
int getOpacityProperty(WId wId)
{
static const Atom constAtom = XInternAtom(QX11Info::display(), OPACITY_ATOM, False);
int o=getProperty(wId, constAtom);
return o<0 || o>100 ? 100 : o;
}
void getBgndSettings(WId wId, EAppearance &app, QColor &col)
{
static const Atom constAtom = XInternAtom(QX11Info::display(), BGND_ATOM, False);
unsigned char *data;
int dummy;
unsigned long num,
dummy2;
if (Success==XGetWindowProperty(QX11Info::display(), wId, constAtom, 0L, 1, False, XA_CARDINAL, &dummy2, &dummy, &num, &dummy2, &data) && num>0)
{
unsigned long val=*((unsigned long*)data);
app=(EAppearance)(val&0xFF);
col.setRgb((val&0xFF000000)>>24, (val&0x00FF0000)>>16, (val&0x0000FF00)>>8);
XFree(data);
}
//else
// *data = NULL; // superflous?!?
}
static QPainterPath createPath(const QRectF &r, double radiusTop, double radiusBot)
{
QPainterPath path;
double diameterTop(radiusTop*2),
diameterBot(radiusBot*2);
if (radiusBot>1.0)
path.moveTo(r.x()+r.width(), r.y()+r.height()-radiusBot);
else
path.moveTo(r.x()+r.width(), r.y()+r.height());
if (radiusTop>1.0)
path.arcTo(r.x()+r.width()-diameterTop, r.y(), diameterTop, diameterTop, 0, 90);
else
path.lineTo(r.x()+r.width(), r.y());
if (radiusTop>1.0)
path.arcTo(r.x(), r.y(), diameterTop, diameterTop, 90, 90);
else
path.lineTo(r.x(), r.y());
if (radiusBot>1.0)
path.arcTo(r.x(), r.y()+r.height()-diameterBot, diameterBot, diameterBot, 180, 90);
else
path.lineTo(r.x(), r.y()+r.height());
if (radiusBot>1.0)
path.arcTo(r.x()+r.width()-diameterBot, r.y()+r.height()-diameterBot, diameterBot, diameterBot, 270, 90);
else
path.lineTo(r.x()+r.width(), r.y()+r.height());
return path;
}
static void drawSunkenBevel(QPainter *p, const QRect &r, const QColor &bgnd, bool circular, int round)
{
double radius=circular
? r.height()/2.0
: round>ROUND_FULL
? 5.0
: round>ROUND_SLIGHT
? 3.0
: 2.0;
QPainterPath path(createPath(QRectF(r), radius, radius));
QLinearGradient g(r.topLeft(), r.bottomLeft());
QColor black(Qt::black),
white(Qt::white);
black.setAlphaF(SUNKEN_BEVEL_DARK_ALPHA(bgnd));
white.setAlphaF(SUNKEN_BEVEL_LIGHT_ALPHA(bgnd));
g.setColorAt(0, black);
g.setColorAt(1, white);
p->fillPath(path, QBrush(g));
}
static QColor blendColors(const QColor &foreground, const QColor &background, double alpha)
{
return KColorUtils::mix(background, foreground, alpha);
}
static void drawFadedLine(QPainter *painter, const QRect &r, const QColor &col, bool horiz=false, bool fadeStart=true, bool fadeEnd=true)
{
bool aa(painter->testRenderHint(QPainter::Antialiasing));
QPointF start(r.x()+(aa ? 0.5 : 0.0), r.y()+(aa ? 0.5 : 0.0)),
end(r.x()+(horiz ? r.width()-1 : 0)+(aa ? 0.5 : 0.0),
r.y()+(horiz ? 0 : r.height()-1)+(aa ? 0.5 : 0.0));
QLinearGradient grad(start, end);
QColor c(col),
blank(Qt::white);
c.setAlphaF(horiz ? 0.6 : 0.3);
blank.setAlphaF(0.0);
grad.setColorAt(0, fadeStart ? blank : c);
grad.setColorAt(FADE_SIZE, c);
grad.setColorAt(1.0-FADE_SIZE, c);
grad.setColorAt(1, fadeEnd ? blank : c);
painter->setPen(QPen(QBrush(grad), 1));
painter->drawLine(start, end);
}
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
static void paintTabSeparator(QPainter *painter, const QRect &r)
{
drawFadedLine(painter, r, Qt::white);
drawFadedLine(painter, r.adjusted(1, 0, 1, 0), Qt::black);
drawFadedLine(painter, r.adjusted(2, 0, 2, 0), Qt::white);
}
#endif
static void fillBackground(EAppearance app, QPainter &painter, const QColor &col, const QRect &fillRect, const QRect &widgetRect, const QPainterPath path)
{
if(!IS_FLAT_BGND(app) || !widgetRect.isEmpty())
{
QtCurve::Style::BgndOption opt;
opt.state|=QtC_StateKWin;
opt.rect=fillRect;
opt.widgetRect=widgetRect;
opt.palette.setColor(QPalette::Window, col);
opt.app=app;
opt.path=path;
Handler()->wStyle()->drawPrimitive(QtC_PE_DrawBackground, &opt, &painter, NULL);
}
else if(path.isEmpty())
painter.fillRect(fillRect, col);
else
painter.fillPath(path, col);
}
// static inline bool isModified(const QString &title)
// {
// return title.indexOf(i18n(" [modified] ")) > 3 ||
// (title.length()>3 && QChar('*')==title[0] && QChar(' ')==title[1]);
// }
QtCurveClient::QtCurveClient(KDecorationBridge *bridge, QtCurveHandler *factory)
#if KDE_IS_VERSION(4, 3, 0)
: KCommonDecorationUnstable(bridge, factory)
#else
: KCommonDecoration(bridge, factory)
#endif
, itsResizeGrip(0L)
, itsTitleFont(QFont())
, itsMenuBarSize(-1)
, itsToggleMenuBarButton(0L)
, itsToggleStatusBarButton(0L)
// , itsHover(false)
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
, itsClickInProgress(false)
, itsDragInProgress(false)
, itsMouseButton(Qt::NoButton)
, itsTargetTab(constInvalidTab)
#endif
{
Handler()->addClient(this);
}
QtCurveClient::~QtCurveClient()
{
Handler()->removeClient(this);
deleteSizeGrip();
}
QString QtCurveClient::visibleName() const
{
return i18n("QtCurve");
}
bool QtCurveClient::decorationBehaviour(DecorationBehaviour behaviour) const
{
switch (behaviour)
{
case DB_MenuClose:
return true;
case DB_WindowMask:
return false;
default:
return KCommonDecoration::decorationBehaviour(behaviour);
}
}
int QtCurveClient::layoutMetric(LayoutMetric lm, bool respectWindowState,
const KCommonDecorationButton *btn) const
{
switch (lm)
{
case LM_BorderLeft:
case LM_BorderRight:
case LM_BorderBottom:
return respectWindowState && isMaximized() ? 0 : Handler()->borderSize(LM_BorderBottom==lm);
case LM_TitleEdgeTop:
return respectWindowState && isMaximized() ? 0 : Handler()->borderEdgeSize();
case LM_TitleEdgeBottom:
return respectWindowState && isMaximized() && Handler()->borderlessMax() ? 0 : Handler()->borderEdgeSize();
case LM_TitleEdgeLeft:
case LM_TitleEdgeRight:
return respectWindowState && isMaximized() ? 0 : Handler()->borderEdgeSize();
case LM_TitleBorderLeft:
case LM_TitleBorderRight:
return 5;
case LM_ButtonWidth:
case LM_ButtonHeight:
case LM_TitleHeight:
return respectWindowState && isMaximized() && Handler()->borderlessMax()
? 0
: respectWindowState && isToolWindow()
? Handler()->titleHeightTool()
: Handler()->titleHeight();
case LM_ButtonSpacing:
return 0;
case LM_ButtonMarginTop:
return 0;
#if KDE_IS_VERSION(4, 3, 0)
case LM_OuterPaddingLeft:
case LM_OuterPaddingRight:
case LM_OuterPaddingTop:
case LM_OuterPaddingBottom:
if(Handler()->customShadows())
return Handler()->shadowCache().shadowSize();
#endif
default:
return KCommonDecoration::layoutMetric(lm, respectWindowState, btn);
}
}
#ifdef QTC_KWIN_MAX_BUTTON_HACK
static char typeToChar(ButtonType t)
{
switch(t)
{
case MenuButton:
return 'M';
case OnAllDesktopsButton:
return 'S';
case HelpButton:
return 'H';
case MinButton:
return 'I';
case MaxButton:
return 'A';
case CloseButton:
return 'X';
case AboveButton:
return 'F';
case BelowButton:
return 'B';
case ShadeButton:
return 'L';
default:
return '?';
}
}
#endif
KCommonDecorationButton *QtCurveClient::createButton(ButtonType type)
{
#ifdef QTC_KWIN_MAX_BUTTON_HACK
// If we're beng asked for a minimize button - then need to create a max button as well
// - otherwise position changes!
if(isMinimizable() && !isMaximizable())
{
QString left=options()->customButtonPositions() ? options()->titleButtonsLeft() : defaultButtonsLeft(),
right=options()->customButtonPositions() ? options()->titleButtonsRight() : defaultButtonsRight();
char ch=typeToChar(type),
mc=typeToChar(MaxButton);
int li=left.indexOf(ch),
ri=-1==li ? right.indexOf(ch) : -1,
lm=left.indexOf(mc),
rm=-1==lm ? right.indexOf(mc) : -1,
mod=0;
bool create=false,
isLeft=false;
if((-1!=li && lm<li) || (-1!=ri && rm<ri))
{
isLeft=-1!=li;
const QString &str=isLeft ? left : right;
int i=isLeft ? li : ri,
m=isLeft ? lm : rm;
for(m=m+1; str[m]=='_' && m<i; ++m)
mod++;
create=m==i;
}
if(create)
{
KCommonDecorationButton *btn = createButton(MaxButton);
if (btn)
{
btn->setRealizeButtons(Qt::LeftButton|Qt::MidButton|Qt::RightButton);
const bool max = maximizeMode()==MaximizeFull;
btn->setTipText(max?i18n("Restore"):i18n("Maximize") );
btn->setEnabled(false);
// fix double deletion, see objDestroyed()
connect(btn, SIGNAL(destroyed(QObject*)), this, SLOT(objDestroyed(QObject*)));
KCommonDecoration::m_button[MaxButton] = btn;
btn->setSize(QSize(layoutMetric(LM_ButtonWidth, true, btn), layoutMetric(LM_ButtonHeight, true, btn)) );
btn->show();
ButtonContainer &cont=isLeft ? m_buttonsLeft : m_buttonsRight;
if(0==mod)
cont.append(btn);
else
{
int size=cont.size();
cont[size-mod]=btn;
cont.append(0);
}
}
}
}
#endif
switch (type)
{
case MenuButton:
case OnAllDesktopsButton:
case HelpButton:
case MinButton:
case MaxButton:
case CloseButton:
case AboveButton:
case BelowButton:
case ShadeButton:
return new QtCurveButton(type, this);
default:
return 0;
}
}
void QtCurveClient::init()
{
itsTitleFont=isToolWindow() ? Handler()->titleFontTool() : Handler()->titleFont();
KCommonDecoration::init();
widget()->setAutoFillBackground(false);
widget()->setAttribute(Qt::WA_OpaquePaintEvent, true);
widget()->setAttribute(Qt::WA_NoSystemBackground);
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
widget()->setAcceptDrops(true);
#endif
if(Handler()->showResizeGrip())
createSizeGrip();
if (isPreview())
itsCaption = isActive() ? i18n("Active Window") : i18n("Inactive Window");
else
captionChange();
}
void QtCurveClient::maximizeChange()
{
reset(SettingBorder);
if(itsResizeGrip)
itsResizeGrip->setVisible(!(isShade() || isMaximized()));
KCommonDecoration::maximizeChange();
}
void QtCurveClient::shadeChange()
{
if(itsResizeGrip)
itsResizeGrip->setVisible(!(isShade() || isMaximized()));
KCommonDecoration::shadeChange();
}
void QtCurveClient::activeChange()
{
if(itsResizeGrip && !(isShade() || isMaximized()))
{
itsResizeGrip->activeChange();
itsResizeGrip->update();
}
informAppOfActiveChange();
KCommonDecoration::activeChange();
}
void QtCurveClient::captionChange()
{
itsCaption=caption();
widget()->update();
}
void QtCurveClient::paintEvent(QPaintEvent *e)
{
bool compositing=COMPOSITING_ENABLED;
QPainter painter(widget());
QRect r(widget()->rect());
QStyleOptionTitleBar opt;
int windowBorder(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_WindowBorder, 0L, 0L));
bool active(isActive()),
colorTitleOnly(windowBorder&WINDOW_BORDER_COLOR_TITLEBAR_ONLY),
roundBottom(Handler()->roundBottom()),
preview(isPreview()),
blend(!preview && Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_BlendMenuAndTitleBar, NULL, NULL)),
menuColor(windowBorder&WINDOW_BORDER_USE_MENUBAR_COLOR_FOR_TITLEBAR),
separator(active && windowBorder&WINDOW_BORDER_SEPARATOR),
maximized(isMaximized());
QtCurveConfig::Shade outerBorder(Handler()->outerBorder()),
innerBorder(Handler()->innerBorder());
const int border(Handler()->borderEdgeSize()),
titleHeight(layoutMetric(LM_TitleHeight)),
titleEdgeTop(layoutMetric(LM_TitleEdgeTop)),
titleEdgeBottom(layoutMetric(LM_TitleEdgeBottom)),
titleEdgeLeft(layoutMetric(LM_TitleEdgeLeft)),
titleEdgeRight(layoutMetric(LM_TitleEdgeRight)),
titleBarHeight(titleHeight+titleEdgeTop+titleEdgeBottom+(isMaximized() ? border : 0)),
round=Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_Round, NULL, NULL),
buttonFlags=Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarButtons, NULL, NULL);
int rectX, rectY, rectX2, rectY2, shadowSize(0),
kwinOpacity(compositing ? Handler()->opacity(active) : 100),
opacity(kwinOpacity);
EAppearance bgndAppearance=APPEARANCE_FLAT;
QColor windowCol(widget()->palette().color(QPalette::Window));
getBgndSettings(windowId(), bgndAppearance, windowCol);
QColor col(KDecoration::options()->color(KDecoration::ColorTitleBar, active)),
fillCol(colorTitleOnly ? windowCol : col);
// APPEARANCE_RAISED is used to signal flat background, but have background image!
// In which case we still have a custom background to draw.
bool customBgnd=APPEARANCE_FLAT!=bgndAppearance,
customShadows=
#if KDE_IS_VERSION(4, 3, 0)
Handler()->customShadows()
#else
false
#endif
;
painter.setClipRegion(e->region());
if(!preview && compositing && 100==opacity)
opacity=getOpacityProperty(windowId());
#if KDE_IS_VERSION(4, 3, 0)
if(customShadows)
{
shadowSize=Handler()->shadowCache().shadowSize();
if(compositing)
{
TileSet *tileSet=Handler()->shadowCache().tileSet(this, roundBottom);
if(opacity<100)
{
painter.save();
painter.setClipRegion(QRegion(r).subtract(getMask(round, r.adjusted(shadowSize, shadowSize, -shadowSize, -shadowSize))), Qt::IntersectClip);
}
if(!isMaximized())
tileSet->render(r.adjusted(5, 5, -5, -5), &painter, TileSet::Ring);
else if(isShade())
tileSet->render(r.adjusted(0, 5, 0, -5), &painter, TileSet::Bottom);
if(opacity<100)
painter.restore();
}
r.adjust(shadowSize, shadowSize, -shadowSize, -shadowSize);
}
#endif
int side(layoutMetric(LM_BorderLeft)),
bot(layoutMetric(LM_BorderBottom));
QRect widgetRect(widget()->rect().adjusted(shadowSize+side, shadowSize+titleBarHeight, -(shadowSize+side), -(shadowSize+bot)));
r.getCoords(&rectX, &rectY, &rectX2, &rectY2);
if(!preview && (blend||menuColor) && -1==itsMenuBarSize)
{
QString wc(windowClass());
if(wc==QLatin1String("W Navigator Firefox browser") ||
wc==QLatin1String("W Navigator Firefox view-source") ||
wc==QLatin1String("W Mail Thunderbird 3pane") ||
wc==QLatin1String("W Mail Thunderbird addressbook") ||
wc==QLatin1String("W Mail Thunderbird messageWindow") ||
wc==QLatin1String("D Calendar Thunderbird EventDialog") ||
wc==QLatin1String("W Msgcompose Thunderbird Msgcompose") ||
wc==QLatin1String("D Msgcompose Thunderbird Msgcompose"))
itsMenuBarSize=QFontMetrics(QApplication::font()).height()+8;
else if(
#if 0 // Currently LibreOffice does not seem to pain menubar backgrounds for KDE - so disable check here...
wc.startsWith(QLatin1String("W VCLSalFrame libreoffice-")) ||
wc.startsWith(QLatin1String("W VCLSalFrame.DocumentWindow libreoffice-")) ||
//wc==QLatin1String("W soffice.bin Soffice.bin") ||
#endif
wc.startsWith(QLatin1String("W VCLSalFrame.DocumentWindow OpenOffice.org")) ||
wc.startsWith(QLatin1String("W VCLSalFrame OpenOffice.org")) ||
wc==QLatin1String("W soffice.bin Soffice.bin"))
itsMenuBarSize=QFontMetrics(QApplication::font()).height()+7;
else
{
int val=getMenubarSizeProperty(windowId());
if(val>-1)
itsMenuBarSize=val;
}
}
if(menuColor && itsMenuBarSize>0 &&
(active || !Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ShadeMenubarOnlyWhenActive, NULL, NULL)))
col=QColor(QRgb(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_MenubarColor, NULL, NULL)));
if(opacity<100)
{
double alpha=opacity/100.0;
col.setAlphaF(alpha);
windowCol.setAlphaF(alpha);
fillCol.setAlphaF(alpha);
}
opt.init(widget());
opt.state=QStyle::State_Horizontal|QStyle::State_Enabled|QStyle::State_Raised|
(active ? QStyle::State_Active : QStyle::State_None)|QtC_StateKWin;
int fillTopAdjust(maximized ? Handler()->borderEdgeSize() : 0),
fillBotAdjust(maximized ? Handler()->borderSize(true) : 0),
fillSideAdjust(maximized ? Handler()->borderSize(false) : 0);
QRect fillRect(r.adjusted(-fillSideAdjust, -fillTopAdjust, fillSideAdjust, fillBotAdjust));
bool clipRegion((outerBorder || round<=ROUND_SLIGHT) && !maximized);
painter.setRenderHint(QPainter::Antialiasing, true);
if(clipRegion)
{
painter.save();
painter.setClipRegion(getMask(round, r));
}
else if(maximized)
painter.setClipRect(r, Qt::IntersectClip);
//
// Fill titlebar and border backgrounds...
//
QPainterPath fillPath(maximized || round<=ROUND_SLIGHT
? QPainterPath()
: createPath(QRectF(fillRect),
APPEARANCE_NONE==Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarApp,
&opt, NULL) ? 6.0 : 8.0,
roundBottom ? 6.0 : 1.0));
bool fillTitlebar(windowBorder&WINDOW_BORDER_FILL_TITLEBAR),
opaqueBorder(opacity<100 && Handler()->opaqueBorder());
if(opaqueBorder)
{
QColor fc(fillCol);
fc.setAlphaF(1.0);
if(!clipRegion)
painter.save();
painter.setClipRect(r.adjusted(0, titleBarHeight, 0, 0), Qt::IntersectClip);
fillBackground(bgndAppearance, painter, fc, fillRect, widgetRect, fillPath);
if(fillTitlebar)
{
painter.save();
painter.setClipRect(QRect(r.x(), r.y(), r.width(), titleBarHeight), Qt::IntersectClip);
fillBackground(bgndAppearance, painter, fillCol, fillRect, widgetRect, fillPath);
painter.restore();
}
}
else
{
if(!fillTitlebar)
{
if(!clipRegion)
painter.save();
if(!compositing)
{
// Not compositing, so need to fill with background colour...
if(fillPath.isEmpty())
painter.fillRect(QRect(r.x(), r.y(), r.width(), titleBarHeight), windowCol);
else
painter.fillPath(fillPath, windowCol);
}
painter.setClipRect(r.adjusted(0, titleBarHeight, 0, 0), Qt::IntersectClip);
}
fillBackground(bgndAppearance, painter, fillCol, fillRect, widgetRect, fillPath);
}
if(clipRegion || opaqueBorder || !fillTitlebar)
painter.restore();
//
// Titlebar and border backgrounds filled.
//
if(maximized)
r.adjust(-3, -border, 3, 0);
opt.palette.setColor(QPalette::Button, col);
opt.palette.setColor(QPalette::Window, windowCol);
opt.rect=QRect(r.x(), r.y()+6, r.width(), r.height()-6);
if(!roundBottom)
opt.state|=QtC_StateKWinNotFull;
if(compositing && !preview)
opt.state|=QtC_StateKWinCompositing;
if(outerBorder)
{
#if KDE_IS_VERSION(4, 3, 0)
if(QtCurveConfig::SHADE_SHADOW==outerBorder && customShadows)
{
opt.version=2+TBAR_BORDER_VERSION_HACK;
opt.palette.setColor(QPalette::Shadow, blendColors(Handler()->shadowCache().color(active), windowCol, active ? 0.75 : 0.4));
}
else
#endif
opt.version=(QtCurveConfig::SHADE_LIGHT==outerBorder ? 0 : 1)+TBAR_BORDER_VERSION_HACK;
painter.save();
painter.setClipRect(r.adjusted(0, titleBarHeight, 0, 0), Qt::IntersectClip);
#ifdef DRAW_INTO_PIXMAPS
if(!compositing && !preview)
{
// For some reason, on Jaunty drawing directly is *hideously* slow on intel graphics card!
QPixmap pix(32, 32);
pix.fill(Qt::transparent);
QPainter p2(&pix);
p2.setRenderHint(QPainter::Antialiasing, true);
opt.rect=QRect(0, 0, pix.width(), pix.height());
Handler()->wStyle()->drawPrimitive(QStyle::PE_FrameWindow, &opt, &p2, widget());
p2.end();
painter.drawTiledPixmap(r.x(), r.y()+10, 2, r.height()-18, pix.copy(0, 8, 2, 16));
painter.drawTiledPixmap(r.x()+r.width()-2, r.y()+8, 2, r.height()-16, pix.copy(pix.width()-2, 8, 2, 16));
painter.drawTiledPixmap(r.x()+8, r.y()+r.height()-2, r.width()-16, 2, pix.copy(8, pix.height()-2, 16, 2));
painter.drawPixmap(r.x(), r.y()+r.height()-8, pix.copy(0, 24, 8, 8));
painter.drawPixmap(r.x()+r.width()-8, r.y()+r.height()-8, pix.copy(24, 24, 8, 8));
}
else
#endif
Handler()->wStyle()->drawPrimitive(QStyle::PE_FrameWindow, &opt, &painter, widget());
painter.restore();
}
else
opt.state|=QtC_StateKWinNoBorder;
if(kwinOpacity<100 && (blend||menuColor))
{
// Turn off opacity for titlebar...
QColor c(col);
c.setAlphaF(1.0);
opt.palette.setColor(QPalette::Button, c);
c=windowCol;
c.setAlphaF(1.0);
opt.palette.setColor(QPalette::Window, c);
}
opt.rect=QRect(r.x(), r.y(), r.width(), titleBarHeight);
opt.titleBarState=(active ? QStyle::State_Active : QStyle::State_None)|QtC_StateKWin;
if(!preview && !isShade() && blend && -1!=itsMenuBarSize)
opt.rect.adjust(0, 0, 0, itsMenuBarSize);
// Remove QtC_StateKWinNotFull settings - as its the same value as QtC_StateKWinFillBgnd, and it is not
// used in CC_TitleBar...
if(!roundBottom)
opt.state&=~QtC_StateKWinNotFull;
#ifdef DRAW_INTO_PIXMAPS
if(!compositing && !preview && !customBgnd)
{
QPixmap tPix(32, titleBarHeight+(!blend || itsMenuBarSize<0 ? 0 : itsMenuBarSize));
QPainter tPainter(&tPix);
tPainter.setRenderHint(QPainter::Antialiasing, true);
if(!customBgnd)
opt.state|=QtC_StateKWinFillBgnd;
opt.rect=QRect(0, 0, tPix.width(), tPix.height());
Handler()->wStyle()->drawComplexControl(QStyle::CC_TitleBar, &opt, &tPainter, widget());
tPainter.end();
painter.drawTiledPixmap(r.x()+12, r.y(), r.width()-24, tPix.height(), tPix.copy(8, 0, 16, tPix.height()));
painter.drawPixmap(r.x(), r.y(), tPix.copy(0, 0, 16, tPix.height()));
painter.drawPixmap(r.x()+r.width()-16, r.y(), tPix.copy(tPix.width()-16, 0, 16, tPix.height()));
}
else
#endif
Handler()->wStyle()->drawComplexControl(QStyle::CC_TitleBar, &opt, &painter, widget());
if(outerBorder && innerBorder)
{
QStyleOptionFrame frameOpt;
frameOpt.palette=opt.palette;
#if KDE_IS_VERSION(4, 3, 0)
if(QtCurveConfig::SHADE_SHADOW==innerBorder && customShadows)
{
frameOpt.version=2+TBAR_BORDER_VERSION_HACK;
frameOpt.palette.setColor(QPalette::Shadow, blendColors(Handler()->shadowCache().color(active), windowCol, active ? 0.75 : 0.4));
}
else
#endif
frameOpt.version=(QtCurveConfig::SHADE_LIGHT==innerBorder ? 0 : 1)+TBAR_BORDER_VERSION_HACK;
frameOpt.rect=widgetRect.adjusted(-1, -1, 1, 1);
frameOpt.state=(active ? QStyle::State_Active : QStyle::State_None)|QtC_StateKWin;
frameOpt.lineWidth=frameOpt.midLineWidth=1;
Handler()->wStyle()->drawPrimitive(QStyle::PE_Frame, &frameOpt, &painter, widget());
}
if(buttonFlags&TITLEBAR_BUTTON_SUNKEN_BACKGROUND)
{
int hOffset=2,
vOffset=hOffset+(outerBorder ? 1 :0),
posAdjust=maximized || outerBorder ? 2 : 0,
edgePad=Handler()->edgePad();
bool menuIcon=TITLEBAR_ICON_MENU_BUTTON==Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarIcon, 0L, 0L),
menuOnlyLeft=menuIcon && onlyMenuIcon(true),
menuOnlyRight=menuIcon && !menuOnlyLeft && onlyMenuIcon(false);
if(!menuOnlyLeft && buttonsLeftWidth()>(titleBarHeight-2*hOffset))
drawSunkenBevel(&painter, QRect(r.left()+hOffset+posAdjust+edgePad+(compositing ? 0 : -1), r.top()+vOffset+edgePad,
buttonsLeftWidth()-hOffset+(compositing ? 0 : 2),
titleBarHeight-2*(vOffset+edgePad)), col, buttonFlags&TITLEBAR_BUTTON_ROUND, round);
if(!menuOnlyRight && buttonsRightWidth()>(titleBarHeight-2*hOffset))
drawSunkenBevel(&painter, QRect(r.right()-(buttonsRightWidth()+posAdjust+edgePad), r.top()+vOffset+edgePad,
buttonsRightWidth(), titleBarHeight-2*(vOffset+edgePad)), col, buttonFlags&TITLEBAR_BUTTON_ROUND, round);
}
bool showIcon=TITLEBAR_ICON_NEXT_TO_TITLE==Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarIcon, 0L, 0L);
int iconSize=showIcon ? Handler()->wStyle()->pixelMetric(QStyle::PM_SmallIconSize) : 0;
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
QList<ClientGroupItem> tabList = clientGroupItems();
const int tabCount = tabList.count();
// Delete unneeded tab close buttons
while(tabCount < itsCloseButtons.size() || (1==tabCount && itsCloseButtons.size() > 0))
{
QtCurveButton *btn = itsCloseButtons.takeFirst();
btn->hide();
btn->deleteLater();
}
if(tabCount>1)
{
QRect allTabGeom = titleRect().adjusted(-1, -titleEdgeTop, 1, 0),
tabGeom = allTabGeom;
int activeTab = visibleClientGroupItem();
tabGeom.setWidth(tabGeom.width() / tabCount + 1); // Split titlebar evenly
for(int i = 0; i < tabCount; ++i)
{
// Last tab may have a different width due to rounding
if(i==tabCount - 1)
tabGeom.setWidth(allTabGeom.width() - tabGeom.width() * i + i - 1);
int iconSize(TAB_CLOSE_ICON_SIZE);
if(0==i)
paintTabSeparator(&painter, tabGeom);
paintTitle(&painter, tabGeom.adjusted(showIcon ? constTitlePad : 0, 0,
-(iconSize+(showIcon ? constTitlePad : 0)), 0), QRect(), tabList[i].title(),
showIcon ? tabList[i].icon().pixmap(iconSize) : QPixmap(), 0, true, activeTab==i);
if(i >= itsCloseButtons.size())
itsCloseButtons.append(new QtCurveButton(ItemCloseButton, this));
//itsCloseButtons[i]->setActive(isActive() && visibleClientGroupItem()==i);
itsCloseButtons[i]->setFixedSize(iconSize, iconSize);
itsCloseButtons[i]->move(tabGeom.right() - iconSize,
tabGeom.top() + titleEdgeTop + ((tabGeom.height()-iconSize)/2));
itsCloseButtons[i]->installEventFilter(this);
itsCloseButtons[i]->show();
QRect br(tabGeom);
tabGeom.translate(tabGeom.width() - 1, 0);
paintTabSeparator(&painter, tabGeom.adjusted(-1, 0, -1, 0));
if(i!=activeTab)
{
QColor gray(Qt::black);
gray.setAlphaF(0.1);
painter.fillRect(br.adjusted(0==i ? 1 : 0, 0, 0, 0), gray);
}
if(itsDragInProgress && itsTargetTab>constInvalidTab &&
(i==itsTargetTab || ((i==tabCount-1) && itsTargetTab==tabCount)))
{
QPixmap arrow(SmallIcon("arrow-down"));
painter.drawPixmap(br.x()+(itsTargetTab==tabCount ? tabGeom.width() : 0)-(arrow.width()/2), br.y()+2, arrow);
}
}
}
else
{
#endif
itsCaptionRect=captionRect(); // also update itsCaptionRect!
paintTitle(&painter, itsCaptionRect, QRect(rectX+titleEdgeLeft, itsCaptionRect.y(),
rectX2-(titleEdgeRight+rectX+titleEdgeLeft),
itsCaptionRect.height()),
itsCaption, showIcon ? icon().pixmap(iconSize) : QPixmap(), shadowSize);
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
if(constAddToEmpty==itsTargetTab)
{
QPixmap arrow(SmallIcon("list-add"));
painter.drawPixmap(itsCaptionRect.x(),
itsCaptionRect.y()+((itsCaptionRect.height()-arrow.height())/2),
arrow);
}
}
#endif
bool hideToggleButtons(true);
int toggleButtons(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ToggleButtons, NULL, NULL));
if(toggleButtons)
{
if(!itsToggleMenuBarButton && toggleButtons&0x01 && (Handler()->wasLastMenu(windowId()) || getMenubarSizeProperty(windowId())>-1))
itsToggleMenuBarButton=createToggleButton(true);
if(!itsToggleStatusBarButton && toggleButtons&0x02 && (Handler()->wasLastStatus(windowId()) || getStatusbarSizeProperty(windowId())>-1))
itsToggleStatusBarButton=createToggleButton(false);
// if(itsHover)
{
if(
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
1==tabCount &&
#endif
active && (itsToggleMenuBarButton||itsToggleStatusBarButton))
{
if( (buttonsLeftWidth()+buttonsRightWidth()+constTitlePad+
(itsToggleMenuBarButton ? itsToggleMenuBarButton->width() : 0) +
(itsToggleStatusBarButton ? itsToggleStatusBarButton->width() : 0)) < r.width())
{
int align(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleAlignment, 0L, 0L));
bool onLeft(align&Qt::AlignRight);
if(align&Qt::AlignHCenter)
{
QString left=options()->customButtonPositions() ? options()->titleButtonsLeft() : defaultButtonsLeft(),
right=options()->customButtonPositions() ? options()->titleButtonsRight() : defaultButtonsRight();
onLeft=left.length()<right.length();
}
int offset=2,
posAdjust=maximized ? 2 : 0;
QRect cr(onLeft
? r.left()+buttonsLeftWidth()+posAdjust+constTitlePad+2
: r.right()-(buttonsRightWidth()+posAdjust+constTitlePad+2+
(itsToggleMenuBarButton ? itsToggleMenuBarButton->width() : 0)+
(itsToggleStatusBarButton ? itsToggleStatusBarButton->width() : 0)),
r.top()+offset,
(itsToggleMenuBarButton ? itsToggleMenuBarButton->width() : 0)+
(itsToggleStatusBarButton ? itsToggleStatusBarButton->width() : 0),
titleBarHeight-2*offset);
if(itsToggleMenuBarButton)
{
itsToggleMenuBarButton->move(cr.x(), r.y()+3+(outerBorder ? 2 : 0));
itsToggleMenuBarButton->show();
}
if(itsToggleStatusBarButton)
{
itsToggleStatusBarButton->move(cr.x()+(itsToggleMenuBarButton ? itsToggleMenuBarButton->width()+2 : 0),
r.y()+3+(outerBorder ? 2 : 0));
itsToggleStatusBarButton->show();
}
hideToggleButtons=false;
}
}
}
}
if(hideToggleButtons)
{
if(itsToggleMenuBarButton)
itsToggleMenuBarButton->hide();
if(itsToggleStatusBarButton)
itsToggleStatusBarButton->hide();
}
if(separator)
{
QColor color(KDecoration::options()->color(KDecoration::ColorFont, isActive()));
Qt::Alignment align((Qt::Alignment)Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleAlignment, 0L, 0L));
r.adjust(16, titleBarHeight-1, -16, 0);
color.setAlphaF(0.5);
drawFadedLine(&painter, r, color, true, align&(Qt::AlignHCenter|Qt::AlignRight), align&(Qt::AlignHCenter|Qt::AlignLeft));
}
painter.end();
}
void QtCurveClient::paintTitle(QPainter *painter, const QRect &capRect, const QRect &alignFullRect,
const QString &cap, const QPixmap &pix, int shadowSize, bool isTab, bool isActiveTab)
{
int iconX=capRect.x();
bool showIcon=!pix.isNull() && capRect.width()>pix.width();
if(!cap.isEmpty())
{
painter->setFont(itsTitleFont);
QFontMetrics fm(painter->fontMetrics());
QString str(fm.elidedText(cap, Qt::ElideRight,
capRect.width()-(showIcon ? pix.width()+constTitlePad : 0), QPalette::WindowText));
Qt::Alignment hAlign((Qt::Alignment)Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleAlignment, 0L, 0L)),
alignment(Qt::AlignVCenter|hAlign);
bool alignFull(!isTab && Qt::AlignHCenter==hAlign),
reverse=Qt::RightToLeft==QApplication::layoutDirection(),
iconRight((!reverse && alignment&Qt::AlignRight) || (reverse && alignment&Qt::AlignLeft));
QRect textRect(alignFull ? alignFullRect : capRect);
int textWidth=alignFull || (showIcon && alignment&Qt::AlignHCenter)
? fm.boundingRect(str).width()+(showIcon ? pix.width()+constTitlePad : 0) : 0;
EEffect effect((EEffect)(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarEffect)));
if(alignFull)
{
int halfWidth=(textWidth+(showIcon ? pix.width()+constTitlePad : 0))/2;
if(capRect.left()>(textRect.x()+(textRect.width()/2)-halfWidth))
{
alignment=Qt::AlignVCenter|Qt::AlignLeft;
textRect=capRect;
hAlign=Qt::AlignLeft;
}
else if (capRect.right()<(textRect.x()+(textRect.width()/2)+halfWidth))
{
alignment=Qt::AlignVCenter|Qt::AlignRight;
textRect=capRect;
hAlign=Qt::AlignRight;
}
}
if(showIcon)
{
if(alignment&Qt::AlignHCenter)
{
if(reverse)
{
iconX=((textRect.width()-textWidth)/2.0)+0.5+textWidth+pix.width();
textRect.setX(textRect.x()-(pix.width()+constTitlePad));
}
else
{
// iconX=(((textRect.width()-textWidth)/2.0)+0.5)+
// (shadowSize ? (Qt::AlignHCenter==hAlign ? shadowSize : capRect.x()) : 0)+
// (isTab ? capRect.x() : 0);
int adjustment=textRect==capRect ? capRect.x() : 0;
iconX=(((textRect.width()-textWidth)/2.0)+0.5)+
(shadowSize
? (Qt::AlignHCenter==hAlign ? shadowSize : capRect.x())
: (isTab ? 0 : adjustment))+
(isTab ? capRect.x() : 0);
textRect.setX(iconX+pix.width()+constTitlePad);
alignment=Qt::AlignVCenter|Qt::AlignLeft;
}
}
else if((!reverse && alignment&Qt::AlignLeft) || (reverse && alignment&Qt::AlignRight))
{
iconX=textRect.x();
textRect.setX(textRect.x()+(pix.width()+constTitlePad));
}
else if((!reverse && alignment&Qt::AlignRight) || (reverse && alignment&Qt::AlignLeft))
{
if(iconRight)
{
iconX=textRect.x()+textRect.width()-pix.width();
textRect.setWidth(textRect.width()-(pix.width()+constTitlePad));
}
else
{
iconX=textRect.x()+textRect.width()-(textWidth+constTitlePad);
if(iconX<textRect.x())
iconX=textRect.x();
}
}
}
// painter->setClipRect(capRect.adjusted(-2, 0, 2, 0));
QColor color(KDecoration::options()->color(KDecoration::ColorFont, isActive())),
bgnd(KDecoration::options()->color(KDecoration::ColorTitleBar, isActive()));
if(isTab && !isActiveTab)
textRect.adjust(0, 1, 0, 1);
if((!isTab || isActiveTab) && EFFECT_NONE!=effect)
{
// QColor shadow(WINDOW_SHADOW_COLOR(effect));
// shadow.setAlphaF(WINDOW_TEXT_SHADOW_ALPHA(effect));
// painter->setPen(shadow);
painter->setPen(blendColors(WINDOW_SHADOW_COLOR(effect), bgnd, WINDOW_TEXT_SHADOW_ALPHA(effect)));
painter->drawText(EFFECT_SHADOW==effect
? textRect.adjusted(1, 1, 1, 1)
: textRect.adjusted(0, 1, 0, 1),
alignment, str);
if (!isActive() && DARK_WINDOW_TEXT(color))
{
//color.setAlpha((color.alpha() * 180) >> 8);
color=blendColors(color, bgnd, ((255 * 180) >> 8)/256.0);
}
}
// if(isTab && !isActiveTab)
// color.setAlphaF(0.45);
// painter->setPen(color);
painter->setPen(isTab && !isActiveTab ? blendColors(color, bgnd, 0.45) : color);
painter->drawText(textRect, alignment, str);
// painter->setClipping(false);
}
if(showIcon && iconX>=0)
{
// if(isModified(cap))
// {
// QPixmap mod=pix;
// KIconEffect::semiTransparent(mod);
// painter->drawPixmap(iconX, capRect.y()+((capRect.height()-pix.height())/2)+1+(isTab && !isActiveTab ? 1 : 0), mod);
// }
// else
painter->drawPixmap(iconX, capRect.y()+((capRect.height()-pix.height())/2)+1+(isTab && !isActiveTab ? 1 : 0), pix);
}
}
void QtCurveClient::updateWindowShape()
{
if(isMaximized())
clearMask();
else
{
QRect r(
#if KDE_IS_VERSION(4, 3, 0)
Handler()->customShadows()
? widget()->rect().adjusted(layoutMetric(LM_OuterPaddingLeft), layoutMetric(LM_OuterPaddingTop),
-layoutMetric(LM_OuterPaddingRight),
COMPOSITING_ENABLED ? 0 : -layoutMetric(LM_OuterPaddingBottom))
:
#endif
widget()->rect());
setMask(getMask(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_Round, NULL, NULL), r));
}
}
QRegion QtCurveClient::getMask(int round, const QRect &r) const
{
int x, y, w, h;
r.getRect(&x, &y, &w, &h);
switch(round)
{
case ROUND_NONE:
return QRegion(x, y, w, h);
case ROUND_SLIGHT:
{
QRegion mask(x+1, y, w-2, h);
mask += QRegion(x, y+1, 1, h-2);
mask += QRegion(x+w-1, y+1, 1, h-2);
return mask;
}
default: // ROUND_FULL
{
bool roundBottom=!isShade() && Handler()->roundBottom();
// #if KDE_IS_VERSION(4, 3, 0)
// if(!isPreview() && COMPOSITING_ENABLED)
// {
// QRegion mask(x+4, y, w-8, h);
//
// if(roundBottom)
// {
// mask += QRegion(x, y+4, 1, h-8);
// mask += QRegion(x+1, y+2, 1, h-4);
// mask += QRegion(x+2, y+1, 1, h-2);
// mask += QRegion(x+3, y+1, 1, h-2);
// mask += QRegion(x+w-1, y+4, 1, h-8);
// mask += QRegion(x+w-2, y+2, 1, h-4);
// mask += QRegion(x+w-3, y+1, 1, h-2);
// mask += QRegion(x+w-4, y+1, 1, h-2);
// }
// else
// {
// mask += QRegion(x, y+4, 1, h-4);
// mask += QRegion(x+1, y+2, 1, h-1);
// mask += QRegion(x+2, y+1, 1, h);
// mask += QRegion(x+3, y+1, 1, h);
// mask += QRegion(x+w-1, y+4, 1, h-4);
// mask += QRegion(x+w-2, y+2, 1, h-1);
// mask += QRegion(x+w-3, y+1, 1, h-0);
// mask += QRegion(x+w-4, y+1, 1, h-0);
// }
// return mask;
// }
// else
// #endif
{
QRegion mask(x+5, y, w-10, h);
if(roundBottom)
{
mask += QRegion(x, y+5, 1, h-10);
mask += QRegion(x+1, y+3, 1, h-6);
mask += QRegion(x+2, y+2, 1, h-4);
mask += QRegion(x+3, y+1, 2, h-2);
mask += QRegion(x+w-1, y+5, 1, h-10);
mask += QRegion(x+w-2, y+3, 1, h-6);
mask += QRegion(x+w-3, y+2, 1, h-4);
mask += QRegion(x+w-5, y+1, 2, h-2);
}
else
{
mask += QRegion(x, y+5, 1, h-5);
mask += QRegion(x+1, y+3, 1, h-3);
mask += QRegion(x+2, y+2, 1, h-2);
mask += QRegion(x+3, y+1, 2, h-1);
mask += QRegion(x+w-1, y+5, 1, h-5);
mask += QRegion(x+w-2, y+3, 1, h-3);
mask += QRegion(x+w-3, y+2, 1, h-2);
mask += QRegion(x+w-5, y+1, 2, h-1);
}
return mask;
}
}
}
return QRegion();
}
bool QtCurveClient::onlyMenuIcon(bool left) const
{
return QLatin1String("M")==
(left
? (options()->customButtonPositions() ? options()->titleButtonsLeft() : defaultButtonsLeft())
: (options()->customButtonPositions() ? options()->titleButtonsRight() : defaultButtonsRight()));
}
QRect QtCurveClient::captionRect() const
{
QRect r(widget()->rect());
const int titleHeight(layoutMetric(LM_TitleHeight)),
titleEdgeTop(layoutMetric(LM_TitleEdgeTop)),
titleEdgeLeft(layoutMetric(LM_TitleEdgeLeft)),
marginLeft(layoutMetric(LM_TitleBorderLeft)),
marginRight(layoutMetric(LM_TitleBorderRight)),
titleLeft(r.left() + titleEdgeLeft + buttonsLeftWidth() + marginLeft),
titleWidth(r.width() -
titleEdgeLeft - layoutMetric(LM_TitleEdgeRight) -
buttonsLeftWidth() - buttonsRightWidth() -
marginLeft - marginRight);
#if KDE_IS_VERSION(4, 3, 0)
if(Handler()->customShadows())
{
int shadowSize=Handler()->shadowCache().shadowSize();
return QRect(titleLeft+shadowSize, r.top()+titleEdgeTop+shadowSize, titleWidth-(shadowSize*2), titleHeight);
}
#endif
return QRect(titleLeft, r.top()+titleEdgeTop, titleWidth, titleHeight);
}
void QtCurveClient::updateCaption()
{
QRect oldCaptionRect(itsCaptionRect);
itsCaptionRect=QtCurveClient::captionRect();
if (oldCaptionRect.isValid() && itsCaptionRect.isValid())
widget()->update(oldCaptionRect|itsCaptionRect);
else
widget()->update();
}
bool QtCurveClient::eventFilter(QObject *o, QEvent *e)
{
if(QEvent::StyleChange==e->type())
Handler()->setStyle();
// if(widget()==o)
// {
// if(itsToggleMenuBarButton || itsToggleStatusBarButton)
// switch(e->type())
// {
// case QEvent::Enter:
// itsHover=true;
// widget()->update();
// break;
// case QEvent::Leave:
// itsHover=false;
// widget()->update();
// default:
// break;
// }
// return true;
// }
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
if(Handler()->grouping())
{
if(QtCurveButton *btn = dynamic_cast<QtCurveButton *>(o))
{
if(QEvent::MouseButtonPress==e->type())
return true; // No-op
else if(QEvent::MouseButtonRelease==e->type())
{
const QMouseEvent *me = static_cast<QMouseEvent *>(e);
if(Qt::LeftButton==me->button() && btn->rect().contains(me->pos()))
closeClientGroupItem(itsCloseButtons.indexOf(btn));
return true;
}
}
bool state = false;
if(QEvent::MouseButtonPress==e->type())
state = mouseButtonPressEvent(static_cast<QMouseEvent *>(e));
else if(QEvent::MouseButtonRelease==e->type() && widget()==o)
state = mouseButtonReleaseEvent(static_cast<QMouseEvent *>(e));
else if(QEvent::MouseMove==e->type())
state = mouseMoveEvent(static_cast<QMouseEvent *>(e));
else if(QEvent::DragEnter==e->type() && widget()==o)
state = dragEnterEvent(static_cast<QDragEnterEvent *>(e));
else if(QEvent::DragMove==e->type() && widget()==o)
state = dragMoveEvent(static_cast<QDragMoveEvent *>(e));
else if(QEvent::DragLeave==e->type() && widget()==o)
state = dragLeaveEvent(static_cast<QDragLeaveEvent *>(e));
else if(QEvent::Drop==e->type() && widget()==o)
state = dropEvent(static_cast<QDropEvent *>(e));
return state || KCommonDecorationUnstable::eventFilter(o, e);
}
#endif
return KCommonDecoration::eventFilter(o, e);
}
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
bool QtCurveClient::mouseButtonPressEvent(QMouseEvent *e)
{
itsClickPoint = widget()->mapToParent(e->pos());
int item = itemClicked(itsClickPoint);
if(OperationsOp==buttonToWindowOperation(e->button()))
{
displayClientMenu(item, widget()->mapToGlobal(itsClickPoint));
return true;
}
if(item >= 0)
{
itsClickInProgress = true;
itsMouseButton = e->button();
return true;
}
itsClickInProgress = false;
return false;
}
bool QtCurveClient::mouseButtonReleaseEvent(QMouseEvent *e)
{
int item = itemClicked(widget()->mapToParent(e->pos()));
if(itsClickInProgress && item >= 0)
{
itsClickInProgress = false;
setVisibleClientGroupItem(item);
return true;
}
itsClickInProgress = false;
return false;
}
bool QtCurveClient::mouseMoveEvent(QMouseEvent *e)
{
QPoint c = e->pos();
int item = itemClicked(c);
if(item >= 0 && itsClickInProgress && ClientGroupDragOp==buttonToWindowOperation(itsMouseButton) &&
(c - itsClickPoint).manhattanLength() >= 4)
{
itsClickInProgress = false;
itsDragInProgress = true;
QDrag *drag = new QDrag(widget());
QMimeData *groupData = new QMimeData();
groupData->setData(clientGroupItemDragMimeType(), QString().setNum(itemId(item)).toAscii());
drag->setMimeData(groupData);
// Create draggable tab pixmap
QList<ClientGroupItem> tabList = clientGroupItems();
const int tabCount = tabList.count();
QRect frame(QPoint(0, 0), widget()->frameGeometry().size()),
titlebar(frame.topLeft(), QSize(frame.width(),
layoutMetric(LM_TitleEdgeTop) + layoutMetric(LM_TitleHeight) +
layoutMetric(LM_TitleEdgeBottom) - 1 // Titlebar and main frame overlap by 1px
)),
geom = titleRect().adjusted(-1, -layoutMetric(LM_TitleEdgeTop), 1, 0);
geom.setWidth(geom.width() / tabCount + 1); // Split titlebar evenly
geom.translate(geom.width() * item - item, 0);
QPixmap pix(geom.size());
pix.fill(Qt::transparent);
QPainter painter(&pix);
bool showIcon=TITLEBAR_ICON_NEXT_TO_TITLE==Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_TitleBarIcon, 0L, 0L);
int iconSize=showIcon ? Handler()->wStyle()->pixelMetric(QStyle::PM_SmallIconSize) : 0;
QRect r(0, 0, geom.size().width()-(tabList.count() ? (TAB_CLOSE_ICON_SIZE+constTitlePad) : 0), geom.size().height());
painter.save();
painter.setRenderHint(QPainter::Antialiasing, true);
QStyleOptionTitleBar opt;
QColor col(KDecoration::options()->color(KDecoration::ColorTitleBar, isActive()));
opt.init(widget());
opt.palette.setColor(QPalette::Window, col);
opt.palette.setColor(QPalette::Button, col);
opt.rect=r;
opt.titleBarState=(isActive() ? QStyle::State_Active : QStyle::State_None)|QtC_StateKWin;
opt.state|=QtC_StateKWin|QtC_StateKWinNoBorder|QtC_StateKWinTabDrag;
Handler()->wStyle()->drawComplexControl(QStyle::CC_TitleBar, &opt, &painter, widget());
painter.restore();
paintTitle(&painter, r, QRect(), tabList[item].title(), showIcon ? tabList[item].icon().pixmap(iconSize) : QPixmap(), 0,
true, true);
drag->setPixmap(pix);
// If the cursor is on top of the pixmap then it makes the movement jerky on some systems
//drag->setHotSpot(QPoint(c.x() - geom.x(), c.y() - geom.y()));
drag->setHotSpot(QPoint(c.x() - geom.x(), -1));
drag->exec(Qt::MoveAction);
itsDragInProgress = false;
if(drag->target()==0 && tabList.count() > 1)
{ // Remove window from group and move to where the cursor is located
QPoint pos = QCursor::pos();
frame.moveTo(pos.x() - c.x(), pos.y() - c.y());
removeFromClientGroup(itemClicked(itsClickPoint), frame);
}
return true;
}
return false;
}
bool QtCurveClient::dragEnterEvent(QDragEnterEvent *e)
{
if(e->mimeData()->hasFormat(clientGroupItemDragMimeType()))
{
itsDragInProgress = true;
e->acceptProposedAction();
if(1==clientGroupItems().count() && widget()!=e->source())
itsTargetTab = constAddToEmpty;
else
itsTargetTab = itemClicked(widget()->mapToParent(e->pos()), true, true);
widget()->update();
return true;
}
return false;
}
bool QtCurveClient::dropEvent(QDropEvent *e)
{
QPoint point = widget()->mapToParent(e->pos());
int tabClick = itemClicked(point, true, true);
itsDragInProgress = false;
if(tabClick >= 0)
{
const QMimeData *groupData = e->mimeData();
if(groupData->hasFormat(clientGroupItemDragMimeType()))
{
if(widget()==e->source())
moveItemInClientGroup(itemClicked(itsClickPoint), itemClicked(point, true, true));
else
moveItemToClientGroup(QString(groupData->data(clientGroupItemDragMimeType())).toLong(), itemClicked(point, true, true));
itsTargetTab=constInvalidTab;
widget()->update();
return true;
}
}
else if(constInvalidTab!=itsTargetTab)
{
itsTargetTab=constInvalidTab;
widget()->update();
}
return false;
}
bool QtCurveClient::dragMoveEvent(QDragMoveEvent *e)
{
if(e->mimeData()->hasFormat(clientGroupItemDragMimeType()))
{
e->acceptProposedAction();
int tt = 1==clientGroupItems().count() && widget()!=e->source()
? constAddToEmpty
: itemClicked(widget()->mapToParent(e->pos()), true, true);
if(itsTargetTab!=tt)
{
itsTargetTab=tt;
widget()->update();
}
return true;
}
return false;
}
bool QtCurveClient::dragLeaveEvent(QDragLeaveEvent *)
{
itsDragInProgress = false;
itsTargetTab = constInvalidTab;
widget()->update();
return false;
}
int QtCurveClient::itemClicked(const QPoint &point, bool between, bool drag)
{
QRect title = titleRect();
QList<ClientGroupItem> list = clientGroupItems();
int tabs = list.count(),
shadowSize = Handler()->customShadows() ? Handler()->shadowCache().shadowSize() : 0,
titleX = title.x()-shadowSize,
frameY = 0,
titleWidth = title.width(),
titleHeight = layoutMetric(LM_TitleEdgeTop) +
layoutMetric(LM_TitleHeight) +
layoutMetric(LM_TitleEdgeBottom) + shadowSize,
tabWidth = titleWidth/tabs;
if(drag)
{
if(point.x() <= title.left())
return 0;
else if(point.x() >= titleRect().right())
return tabs;
}
if(between) // We are inserting a new tab between two existing ones
titleX -= tabWidth / 2;
int rem = titleWidth%(tabs+(drag ? 1 : 0)),
tabX = titleX;
for(int i = 0; i < tabs+(drag ? 1 : 0); ++i)
{
QRect tabRect(tabX, frameY, i<rem?tabWidth+1:tabWidth, titleHeight);
if(tabRect.contains(point))
return i;
tabX += tabRect.width();
}
return constInvalidTab;
}
#endif
void QtCurveClient::reset(unsigned long changed)
{
#if KDE_IS_VERSION(4, 3, 85) && !KDE_IS_VERSION(4, 8, 80)
if(changed & SettingCompositing)
{
updateWindowShape();
widget()->update();
}
#endif
if (changed&(SettingColors|SettingFont|SettingBorder))
{
// Reset button backgrounds...
for(int i=0; i<constNumButtonStates; ++i)
itsButtonBackground[i].pix=QPixmap();
}
if (changed&SettingBorder)
{
if (maximizeMode()==MaximizeFull)
{
if (!options()->moveResizeMaximizedWindows() && itsResizeGrip)
itsResizeGrip->hide();
}
else if (itsResizeGrip)
itsResizeGrip->show();
}
if (changed&SettingColors)
{
// repaint the whole thing
widget()->update();
updateButtons();
}
else if (changed&SettingFont)
{
// font has changed -- update title height and font
itsTitleFont=isToolWindow() ? Handler()->titleFontTool() : Handler()->titleFont();
updateLayout();
widget()->update();
}
if(Handler()->showResizeGrip())
createSizeGrip();
else
deleteSizeGrip();
KCommonDecoration::reset(changed);
}
void QtCurveClient::createSizeGrip()
{
if(!itsResizeGrip && ((isResizable() && 0!=windowId()) || isPreview()))
{
itsResizeGrip=new QtCurveSizeGrip(this);
itsResizeGrip->setVisible(!(isMaximized() || isShade()));
}
}
void QtCurveClient::deleteSizeGrip()
{
if(itsResizeGrip)
{
delete itsResizeGrip;
itsResizeGrip=0L;
}
}
void QtCurveClient::informAppOfBorderSizeChanges()
{
static const Atom constQtCTitleBarSize = XInternAtom(QX11Info::display(), TITLEBAR_SIZE_ATOM, False);
QX11Info info;
XEvent xev;
xev.xclient.type = ClientMessage;
xev.xclient.message_type = constQtCTitleBarSize;
xev.xclient.display = QX11Info::display();
xev.xclient.window = windowId();
xev.xclient.format = 32;
xev.xclient.data.l[0] = 0;
XSendEvent(QX11Info::display(), windowId(), False, NoEventMask, &xev);
}
void QtCurveClient::informAppOfActiveChange()
{
if(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ShadeMenubarOnlyWhenActive, NULL, NULL))
{
static const Atom constQtCActiveWindow = XInternAtom(QX11Info::display(), ACTIVE_WINDOW_ATOM, False);
QX11Info info;
XEvent xev;
xev.xclient.type = ClientMessage;
xev.xclient.message_type = constQtCActiveWindow;
xev.xclient.display = QX11Info::display();
xev.xclient.window = windowId();
xev.xclient.format = 32;
xev.xclient.data.l[0] = isActive() ? 1 : 0;
XSendEvent(QX11Info::display(), windowId(), False, NoEventMask, &xev);
}
}
void QtCurveClient::sendToggleToApp(bool menubar)
{
//if(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ShadeMenubarOnlyWhenActive, NULL, NULL))
{
static const Atom constQtCToggleMenuBar = XInternAtom(QX11Info::display(), TOGGLE_MENUBAR_ATOM, False);
static const Atom constQtCToggleStatusBar = XInternAtom(QX11Info::display(), TOGGLE_STATUSBAR_ATOM, False);
QX11Info info;
XEvent xev;
xev.xclient.type = ClientMessage;
xev.xclient.message_type = menubar ? constQtCToggleMenuBar : constQtCToggleStatusBar;
xev.xclient.display = QX11Info::display();
xev.xclient.window = windowId();
xev.xclient.format = 32;
xev.xclient.data.l[0]=0;
XSendEvent(QX11Info::display(), windowId(), False, NoEventMask, &xev);
if(menubar)
Handler()->emitToggleMenuBar(windowId());
else
Handler()->emitToggleStatusBar(windowId());
}
}
const QString & QtCurveClient::windowClass()
{
if(itsWindowClass.isEmpty())
{
KWindowInfo info(windowId(), NET::WMWindowType, NET::WM2WindowClass|NET::WM2WindowRole);
switch(info.windowType(NET::AllTypesMask))
{
case NET::Dialog:
itsWindowClass="D "+info.windowClassName()+' '+info.windowClassClass()+' '+info.windowRole();
break;
case NET::Normal:
itsWindowClass="W "+info.windowClassName()+' '+info.windowClassClass()+' '+info.windowRole();
break;
default:
itsWindowClass="<>";
break;
}
}
return itsWindowClass;
}
void QtCurveClient::menuBarSize(int size)
{
itsMenuBarSize=size;
if(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ToggleButtons, NULL, NULL) &0x01)
{
if(!itsToggleMenuBarButton)
itsToggleMenuBarButton=createToggleButton(true);
//if(itsToggleMenuBarButton)
// itsToggleMenuBarButton->setChecked(itsMenuBarSize>0);
}
KCommonDecoration::activeChange();
}
void QtCurveClient::statusBarState(bool state)
{
Q_UNUSED(state)
if(Handler()->wStyle()->pixelMetric((QStyle::PixelMetric)QtC_ToggleButtons, NULL, NULL) &0x02)
{
if(!itsToggleStatusBarButton)
itsToggleStatusBarButton=createToggleButton(false);
//if(itsToggleStatusBarButton)
// itsToggleStatusBarButton->setChecked(state);
}
KCommonDecoration::activeChange();
}
void QtCurveClient::toggleMenuBar()
{
sendToggleToApp(true);
}
void QtCurveClient::toggleStatusBar()
{
sendToggleToApp(false);
}
QtCurveToggleButton * QtCurveClient::createToggleButton(bool menubar)
{
QtCurveToggleButton *button = new QtCurveToggleButton(menubar, this);
int size = layoutMetric(LM_TitleHeight)-6;
button->setFixedSize(size, size);
//button->setCheckable(true);
//button->setChecked(false);
connect(button, SIGNAL(clicked()), menubar ? SLOT(toggleMenuBar()) : SLOT(toggleStatusBar()));
// widget()->setAttribute(Qt::WA_Hover, true);
// widget()->installEventFilter(this);
return button;
}
}
| yuyichao/qtcurve-qt5 | kwin/qtcurveclient.cpp | C++ | gpl-2.0 | 65,635 |
// Gulp core and plugins
var gulp = require('gulp'),
gutil = require('gulp-util');
// Settings
var config = require('./../config.json');
// Pipes
var json = require('./../pipes/json');
/* Compile application data */
gulp.task('data', 'Compile application data', function()
{
gutil.log( gutil.colors.magenta('Compiling application data') );
return gulp.src(config.tasks.jsonlint.src)
.pipe( json.pipeline() );
}); | Truemedia/Treasure-Chest | gulp/tasks/data.js | JavaScript | gpl-2.0 | 420 |
/**
* Copyright (c) 2006-. OSCARservice, OpenSoft System. All Rights Reserved.
* This software is published under the GPL GNU General Public License.
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package org.oscarehr.common.dao;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import javax.persistence.Query;
import org.oscarehr.common.model.ProviderSite;
import org.oscarehr.common.model.Site;
import org.oscarehr.util.SpringUtils;
import org.springframework.stereotype.Repository;
/**
*
* @author Victor Weng
*/
@Repository
public class SiteDao extends AbstractDao<Site> {
/** Creates a new instance of UserPropertyDAO */
public SiteDao() {
super(Site.class);
}
public void save(Site s) {
boolean isUpdate = s.getSiteId() != null && s.getSiteId() > 0;
if (isUpdate) {
Site old = find(s.getSiteId());
if (!old.getName().equals(s.getName())) {
// site name changed, need to update all references as it serves as PK
// so we need to update the tables that references to the site
Query query = entityManager.createNativeQuery("update rschedule set avail_hour = replace(avail_hour, :oldname, :newname) ");
query.setParameter("oldname", ">"+old.getName()+"<");
query.setParameter("newname", ">"+s.getName()+"<");
query.executeUpdate();
query = entityManager.createNativeQuery("update scheduledate set reason = :newname where reason = :oldname");
query.setParameter("oldname", old.getName());
query.setParameter("newname", s.getName());
query.executeUpdate();
query = entityManager.createNativeQuery("update appointment set location = :newname where location = :oldname");
query.setParameter("oldname", old.getName());
query.setParameter("newname", s.getName());
query.executeUpdate();
query = entityManager.createNativeQuery("update billing_on_cheader1 set clinic = :newname where clinic = :oldname");
query.setParameter("oldname", old.getName());
query.setParameter("newname", s.getName());
query.executeUpdate();
}
}
merge(s);
}
public List<Site> getAllSites() {
Query query = this.entityManager.createQuery("select s from Site s order by s.name");
@SuppressWarnings("unchecked")
List<Site> rs = query.getResultList();
return rs;
}
public List<Site> getAllActiveSites() {
Query query = this.entityManager.createQuery("select s from Site s where s.status=1 order by s.name");
@SuppressWarnings("unchecked")
List<Site> rs = query.getResultList();
return rs;
}
public List<Site> getActiveSitesByProviderNo(String provider_no) {
ProviderSiteDao providerSiteDao = SpringUtils.getBean(ProviderSiteDao.class);
List<ProviderSite> pss = providerSiteDao.findByProviderNo(provider_no);
List<Site> rs = new ArrayList<Site>();
for(ProviderSite ps:pss) {
rs.add(find(ps.getId().getSiteId()));
}
Iterator<Site> it = rs.iterator();
while (it.hasNext()) {
Site site = it.next();
// remove inactive sites
if (site.getStatus() == 0)
it.remove();
}
Collections.sort(rs, new Comparator<Site>() {
public int compare(Site o1, Site o2) {
return o1.getName().compareTo(o2.getName());
}
});
return rs;
}
public Site getById(Integer id) {
return find(id);
}
public Site getByLocation(String location) {
Query query = this.entityManager.createQuery("select s from Site s where s.name=?");
query.setParameter(1, location);
@SuppressWarnings("unchecked")
List<Site> rs = query.getResultList();
if (rs.size()>0)
return rs.get(0);
else
return null;
}
public List<String> getGroupBySiteLocation(String location) {
Query query = entityManager.createNativeQuery(
"select distinct g.mygroup_no from mygroup g " +
" inner join provider p on p.provider_no = g.provider_no and p.status = 1 " +
" inner join providersite ps on ps.provider_no = g.provider_no " +
" inner join site s on s.site_id = ps.site_id " +
" where s.name like :sitename ");
query.setParameter("sitename",location);
@SuppressWarnings("unchecked")
List<String> groupList = query.getResultList();
return groupList;
}
public List<String> getProviderNoBySiteLocation(String location) {
Query query = entityManager.createNativeQuery(
"select distinct p.provider_no " +
" from provider p " +
" inner join providersite ps on ps.provider_no = p.provider_no " +
" inner join site s on s.site_id = ps.site_id " +
" where s.name like :sitename ") ;
query.setParameter("sitename", location);
@SuppressWarnings("unchecked")
List<String> pList = query.getResultList();
return pList;
}
public List<String> getProviderNoBySiteManagerProviderNo(String providerNo) {
Query query = entityManager.createNativeQuery(
"select distinct p.provider_no " +
" from provider p " +
" inner join providersite ps on ps.provider_no = p.provider_no " +
" where ps.site_id in (select site_id from providersite where provider_no = :providerno)");
query.setParameter("providerno", providerNo);
@SuppressWarnings("unchecked")
List<String> pList = query.getResultList();
return pList;
}
public List<String> getGroupBySiteManagerProviderNo(String providerNo) {
Query query = entityManager.createNativeQuery(
"select distinct g.mygroup_no from mygroup g " +
" inner join provider p on p.provider_no = g.provider_no and p.status = 1 " +
" inner join providersite ps on ps.provider_no = g.provider_no " +
" where ps.site_id in (select site_id from providersite where provider_no = :providerno)");
query.setParameter("providerno", providerNo);
@SuppressWarnings("unchecked")
List<String> groupList = query.getResultList();
return groupList;
}
public String getSiteNameByAppointmentNo(String appointmentNo) {
Query query = entityManager.createNativeQuery("select location from appointment where appointment_no = :appointmentno");
query.setParameter("appointmentno", appointmentNo);
@SuppressWarnings("unchecked")
List<String> list = query.getResultList();
if(list.size()>0) {
return list.get(0);
}
return "";
}
public List<String> getGroupsBySiteProviderNo(String groupNo) {
List<String> groupList = new ArrayList<String>();
Query query = entityManager.createNativeQuery(
"select distinct g.mygroup_no from mygroup g " +
" inner join provider p on p.provider_no = g.provider_no and p.status = 1 " +
" inner join providersite ps on ps.provider_no = g.provider_no " +
" where ps.site_id in (select site_id from providersite where provider_no = :providerno)");
query.setParameter("providerno", groupNo);
groupList = query.getResultList();
return groupList;
}
public List<String> getGroupsForAllSites() {
List<String> groupList = new ArrayList<String>();
Query query = entityManager.createNativeQuery(
"select distinct g.mygroup_no from mygroup g " +
" inner join provider p on p.provider_no = g.provider_no and p.status = 1 " +
" inner join providersite ps on ps.provider_no = g.provider_no");
groupList = query.getResultList();
return groupList;
}
}
| vvanherk/oscar_emr | src/main/java/org/oscarehr/common/dao/SiteDao.java | Java | gpl-2.0 | 7,911 |
import { createSelector } from '@automattic/state-utils';
import { map, pickBy } from 'lodash';
import 'calypso/state/reader/init';
/**
* Returns a list of site IDs dismissed by the user
*
* @param {object} state Global state tree
* @returns {Array} Dimissed site IDs
*/
export const getDismissedSites = createSelector(
( state ) => map( Object.keys( pickBy( state.reader.siteDismissals.items ) ), Number ),
( state ) => [ state.reader.siteDismissals.items ]
);
| Automattic/wp-calypso | client/state/reader/site-dismissals/selectors.js | JavaScript | gpl-2.0 | 481 |
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2014.11.06 um 02:47:13 AM CET
//
package de.idealo.offers.imports.offermanager.ebay.api.binding.jaxb.trading;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
*
* Returns an item ID for a new Transaction Confirmation Request (TCR).
*
*
* <p>Java-Klasse für AddTransactionConfirmationItemResponseType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="AddTransactionConfirmationItemResponseType">
* <complexContent>
* <extension base="{urn:ebay:apis:eBLBaseComponents}AbstractResponseType">
* <sequence>
* <element name="ItemID" type="{urn:ebay:apis:eBLBaseComponents}ItemIDType" minOccurs="0"/>
* <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="EndTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AddTransactionConfirmationItemResponseType", propOrder = {
"itemID",
"startTime",
"endTime"
})
public class AddTransactionConfirmationItemResponseType
extends AbstractResponseType
{
@XmlElement(name = "ItemID")
protected String itemID;
@XmlElement(name = "StartTime")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTime;
@XmlElement(name = "EndTime")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTime;
/**
* Ruft den Wert der itemID-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemID() {
return itemID;
}
/**
* Legt den Wert der itemID-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemID(String value) {
this.itemID = value;
}
/**
* Ruft den Wert der startTime-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartTime() {
return startTime;
}
/**
* Legt den Wert der startTime-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartTime(XMLGregorianCalendar value) {
this.startTime = value;
}
/**
* Ruft den Wert der endTime-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndTime() {
return endTime;
}
/**
* Legt den Wert der endTime-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndTime(XMLGregorianCalendar value) {
this.endTime = value;
}
}
| Team-OfferManager/ebay-jaxb-bindings | src/main/java/de/idealo/offers/imports/offermanager/ebay/api/binding/jaxb/trading/AddTransactionConfirmationItemResponseType.java | Java | gpl-2.0 | 3,726 |
/**
* OWASP Benchmark Project v1.1
*
* This file is part of the Open Web Application Security Project (OWASP)
* Benchmark Project. For details, please see
* <a href="https://www.owasp.org/index.php/Benchmark">https://www.owasp.org/index.php/Benchmark</a>.
*
* The Benchmark 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, version 2.
*
* The Benchmark 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
*
* @author Nick Sanidas <a href="https://www.aspectsecurity.com">Aspect Security</a>
* @created 2015
*/
package org.owasp.benchmark.testcode;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/BenchmarkTest20656")
public class BenchmarkTest20656 extends HttpServlet {
private static final long serialVersionUID = 1L;
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
}
@Override
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
org.owasp.benchmark.helpers.SeparateClassRequest scr = new org.owasp.benchmark.helpers.SeparateClassRequest( request );
String param = scr.getTheValue("foo");
String bar = doSomething(param);
Object[] obj = { "a", bar};
response.getWriter().println(obj);
} // end doPost
private static String doSomething(String param) throws ServletException, IOException {
StringBuilder sbxyz9405 = new StringBuilder(param);
String bar = sbxyz9405.append("_SafeStuff").toString();
return bar;
}
}
| iammyr/Benchmark | src/main/java/org/owasp/benchmark/testcode/BenchmarkTest20656.java | Java | gpl-2.0 | 2,018 |
<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'test');
/** MySQL database username */
define('DB_USER', 'sooglejay');
/** MySQL database password */
define('DB_PASSWORD', '123456');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
| sooglejay/MyBlog | wp-config.php | PHP | gpl-2.0 | 2,739 |
require_dependency 'query'
require 'erb'
module Backlogs
class RbERB
def initialize(s)
@sql = ERB.new(s)
end
def to_s
return @sql.result
end
end
module QueryPatch
def self.included(base) # :nodoc:
base.extend(ClassMethods)
base.send(:include, InstanceMethods)
# Same as typing in the class
base.class_eval do
unloadable # Send unloadable so it will not be unloaded in development
base.add_available_column(QueryColumn.new(:story_points, :sortable => "#{Issue.table_name}.story_points"))
base.add_available_column(QueryColumn.new(:velocity_based_estimate))
# couldn't get HAVING to work, so a subselect will have to
# do
story_sql = "from issues story
where
story.root_id = issues.root_id
and story.lft in (
select max(story_lft.lft)
from issues story_lft
where story_lft.root_id = issues.root_id
and story_lft.tracker_id in (<%= RbStory.trackers(:string) %>)
and issues.lft >= story_lft.lft and issues.rgt <= story_lft.rgt
)"
base.add_available_column(QueryColumn.new(:position,
:sortable => [
# sprint startdate
"coalesce((select sprint_start_date from versions where versions.id = issues.fixed_version_id), '1900-01-01')",
# sprint id, in case start dates are the same
"(select id from versions where versions.id = issues.fixed_version_id)",
# make sure stories with NULL position sort-last
RbERB.new("(select case when story.position is null then 1 else 0 end #{story_sql})"),
# story position
RbERB.new("(select story.position #{story_sql})"),
# story ID, in case story positions are the same (SHOULD NOT HAPPEN!).
RbERB.new("(select story.id #{story_sql})"),
# order in task tree
"issues.lft"
],
:default_order => 'asc'))
base.add_available_column(QueryColumn.new(:remaining_hours))
alias_method_chain :available_filters, :backlogs_issue_type
alias_method_chain :sql_for_field, :backlogs_issue_type
end
end
module InstanceMethods
def available_filters_with_backlogs_issue_type
@available_filters = available_filters_without_backlogs_issue_type
if RbStory.trackers.length == 0 or RbTask.tracker.blank?
backlogs_filters = { }
else
backlogs_filters = {
"backlogs_issue_type" => { :type => :list,
:values => [[l(:backlogs_story), "story"], [l(:backlogs_task), "task"], [l(:backlogs_impediment), "impediment"], [l(:backlogs_any), "any"]],
:order => 20 }
}
end
return @available_filters.merge(backlogs_filters)
end
def sql_for_field_with_backlogs_issue_type(field, operator, value, db_table, db_field, is_custom_filter=false)
return sql_for_field_without_backlogs_issue_type(field, operator, value, db_table, db_field, is_custom_filter) unless field == "backlogs_issue_type"
db_table = Issue.table_name
sql = []
selected_values = values_for(field)
selected_values = ['story', 'task'] if selected_values.include?('any')
story_trackers = RbStory.trackers.collect{|val| "#{val}"}.join(",")
all_trackers = (RbStory.trackers + [RbTask.tracker]).collect{|val| "#{val}"}.join(",")
selected_values.each { |val|
case val
when "story"
sql << "(#{db_table}.tracker_id in (#{story_trackers}))"
when "task"
sql << "(#{db_table}.tracker_id = #{RbTask.tracker})"
when "impediment"
sql << "(#{db_table}.id in (
select issue_from_id
from issue_relations ir
join issues blocked on
blocked.id = ir.issue_to_id
and blocked.tracker_id in (#{all_trackers})
where ir.relation_type = 'blocks'
))"
end
}
case operator
when "="
sql = sql.join(" or ")
when "!"
sql = "not (" + sql.join(" or ") + ")"
end
return sql
end
end
module ClassMethods
# Setter for +available_columns+ that isn't provided by the core.
def available_columns=(v)
self.available_columns = (v)
end
# Method to add a column to the +available_columns+ that isn't provided by the core.
def add_available_column(column)
self.available_columns << (column)
end
end
end
end
Query.send(:include, Backlogs::QueryPatch) unless Query.included_modules.include? Backlogs::QueryPatch
| planio-gmbh/redmine_backlogs | lib/backlogs_query_patch.rb | Ruby | gpl-2.0 | 5,617 |
/*
Copyright (C) 2006 - 2011 Evan Teran
eteran@alum.rit.edu
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, see <http://www.gnu.org/licenses/>.
*/
#include "FunctionFinder.h"
#include "DialogFunctions.h"
#include "Debugger.h"
#include <QMenu>
//------------------------------------------------------------------------------
// Name: FunctionFinder()
// Desc:
//------------------------------------------------------------------------------
FunctionFinder::FunctionFinder() : menu_(0), dialog_(0) {
}
//------------------------------------------------------------------------------
// Name: ~FunctionFinder()
// Desc:
//------------------------------------------------------------------------------
FunctionFinder::~FunctionFinder() {
delete dialog_;
}
//------------------------------------------------------------------------------
// Name: menu(QWidget *parent)
// Desc:
//------------------------------------------------------------------------------
QMenu *FunctionFinder::menu(QWidget *parent) {
if(menu_ == 0) {
menu_ = new QMenu(tr("FunctionFinder"), parent);
menu_->addAction (tr("&Function Finder"), this, SLOT(show_menu()), QKeySequence(tr("Ctrl+Shift+F")));
}
return menu_;
}
//------------------------------------------------------------------------------
// Name: show_menu()
// Desc:
//------------------------------------------------------------------------------
void FunctionFinder::show_menu() {
if(dialog_ == 0) {
dialog_ = new DialogFunctions(yad64::v1::debugger_ui);
}
dialog_->show();
}
Q_EXPORT_PLUGIN2(FunctionFinder, FunctionFinder)
| DevelopersOfYad64/yad64 | plugins/FunctionFinder/FunctionFinder.cpp | C++ | gpl-2.0 | 2,136 |
#include "QUPlaylistModel.h"
#include "QUPlaylistDatabase.h"
#include <QVariant>
#include <QDir>
#include <QString>
QUPlaylistModel::QUPlaylistModel(QObject *parent): QAbstractListModel(parent) {
// some playlist changed ... maybe it was the 'current' playlist =D ... could be optimized
connect(playlistDB, SIGNAL(playlistChanged(QUPlaylistFile*)), this, SLOT(reload()));
// new playlist as 'current' selected -> show contents!
connect(playlistDB, SIGNAL(currentPlaylistChanged(QUPlaylistFile*)), this, SLOT(reload()));
}
int QUPlaylistModel::rowCount(const QModelIndex &parent) const {
if(!playlistDB->currentPlaylist())
return 0;
return playlistDB->currentPlaylist()->count();
}
QVariant QUPlaylistModel::data(const QModelIndex &index, int role) const {
if(!index.isValid() || !playlistDB->currentPlaylist())
return QVariant();
QUPlaylistEntry *entry = playlistDB->currentPlaylist()->entry(index.row());
if(!entry)
return QVariant();
QUSongFile *song = entry->song();
if(role == Qt::DisplayRole) {
if(song)
return QString("%1. %2 - %3 (%4)")
.arg( index.row() + 1)
.arg( song->artist() )
.arg( song->title() )
.arg( entry->gameMode().remove("TR_GAMEMODE_").toLower() );
else
return QString(tr("%1. %2 - %3 (%4) (not found)"))
.arg( index.row() + 1)
.arg( entry->artistLink() )
.arg( entry->titleLink() )
.arg( entry->gameMode().remove("TR_GAMEMODE_").toLower() );
} else if(role == Qt::FontRole) {
QFont f("MS Shell Dlg", 8, QFont::Normal, false);
if(entry->hasUnsavedChanges())
f.setBold(true);
return f;
} else if(role == Qt::ForegroundRole) {
if(song)
return QColor(Qt::black);
else
return QColor(Qt::gray);
}
return QVariant();
}
void QUPlaylistModel::reload() {
beginResetModel();
//reset();
endResetModel();
}
| UltraStar-Deluxe/UltraStar-Manager | src/playlistdetails/QUPlaylistModel.cpp | C++ | gpl-2.0 | 1,881 |
<?php
class dbrtt extends dbtable {
function init() {
parent::init('tbl_news_stories');
$this->objDbSysconfig = $this->getObject('dbsysconfig', 'sysconfig');
$this->objWashout=$this->getObject('washout','utilities');
}
function getPostDemoContent() {
$objTrim = $this->getObject('trimstr', 'strings');
$storyid = $this->objDbSysconfig->getValue('POST_DEMO_STORY_ID', 'rtt');
$data = $this->getStory($storyid);
$content = '';
$content = '
' . $this->objWashout->parseText($data['storytext']) . '
<br/>
';
return $content;
}
function getDemoContent() {
$objTrim = $this->getObject('trimstr', 'strings');
$storyid = $this->objDbSysconfig->getValue('DEMO_STORY_ID', 'rtt');
$data = $this->getStory($storyid);
$content = '';
$content = '
' . $this->objWashout->parseText($data['storytext']) . '
<br/>
';
return $content;
}
public function getDownloadsStory() {
$objTrim = $this->getObject('trimstr', 'strings');
$storyid = $this->objDbSysconfig->getValue('DOWNLOAD_STORY_ID', 'rtt');
$data = $this->getStory($storyid);
$content = '';
$content = $this->objWashout->parseText($data['storytext']) . '<br/>';
return $content;
}
public function getStory($id) {
$data = $this->getRow('id', $id);
return $data;
}
}
?>
| chisimba/modules | rtt/classes/dbrtt_class_inc.php | PHP | gpl-2.0 | 1,576 |
using System.Collections.Generic;
using System.Linq;
using KappAIO_Reborn.Common.Databases.Items;
namespace KappAIO_Reborn.Plugins.Utility.Activator
{
public static class ItemActiv
{
private static List<ItemInstance> currentItemsInstances = new List<ItemInstance>();
public static void Init()
{
var menu = Program.UtilityMenu.AddSubMenu("Items Activator");
foreach (var item in ItemsDatabase.Current.Where(i => i.item.ItemInfo.AvailableForMap && !i.matchCastType(CastTime.Cleanse)))
currentItemsInstances.Add(new ItemInstance(item, menu));
Cleanse.Init(ItemsDatabase.Current.Where(i => i.matchCastType(CastTime.Cleanse)).ToArray());
}
}
}
| plsfixrito/KappAIO | KappaAIO Reborn/Plugins/Utility/Activator/ItemActiv.cs | C# | gpl-2.0 | 741 |
<?php
/**
* @package Surveyforce
* @version 1.3-modified
* @copyright JooPlce Team, 臺北市政府資訊局, Copyright (C) 2016. All rights reserved.
* @license GPL-2.0+
* @author JooPlace Team, 臺北市政府資訊局- http://doit.gov.taipei/
*/
defined('_JEXEC') or die('Restricted Access');
JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('dropdown.init');
JHtml::_('formbehavior.chosen', 'select');
$listOrder = $this->state->get('list.ordering');
$listDirn = $this->state->get('list.direction');
$saveOrder = $ordering = $listOrder == 'ordering';
$user = JFactory::getUser();
$userId = $user->get('id');
$unit_id = $user->get('unit_id');
$cross_unit = $user->get('cross_unit');
$plugin = JPluginHelper::getPlugin('system', 'switch');
$exercise_host = json_decode($plugin->params, true);
$extension = 'com_surveyforce';
$saveOrder = $listOrder == 'ordering';
if ($saveOrder) {
$saveOrderingUrl = 'index.php?option=com_surveyforce&task=surveys.saveOrderAjax&tmpl=component';
JHtml::_('sortablelist.sortable', 'surveyforceList', 'adminForm', strtolower($listDirn), $saveOrderingUrl);
}
$sortFields = $this->getSortFields();
$self_gps = JUserHelper::getUserGroups($user->get('id'));
$core_review = JComponentHelper::getParams('com_surveyforce')->get('core_review');
$stage = [
1 => JText::_("COM_SURVEYFORCE_CHECK"), 2 => JText::_("COM_SURVEYFORCE_REVIEW"), 3 => JText::_("COM_SURVEYFORCE_DISCUSS"), 4 => JText::_("COM_SURVEYFORCE_OPTIONS"), 5 => JText::_("COM_SURVEYFORCE_LAUNCHED"), 6 => JText::_("COM_SURVEYFORCE_RESULT")
];
?>
<?php // echo $this->loadTemplate('menu'); ?>
<script type="text/javascript">
Joomla.orderTable = function () {
table = document.getElementById("sortTable");
direction = document.getElementById("directionTable");
order = table.options[table.selectedIndex].value;
if (order != '<?php echo $listOrder; ?>') {
dirn = 'asc';
} else {
dirn = direction.options[direction.selectedIndex].value;
}
Joomla.tableOrdering(order, dirn, '');
};
Joomla.submitbutton = function (task) {
if (task == 'surveys.preview') {
document.adminForm.target = '_blank';
Joomla.submitform(task);
document.adminForm.target = '';
} else
Joomla.submitform(task);
};
jQuery(document).ready(function () {
jQuery("#btnFormTest").fancybox();
jQuery("#btn_clear").bind("click", function () {
jQuery("#filter_search").val("");
jQuery("#adminForm").submit();
});
jQuery(".vote_url").bind("click", function () {
var index = jQuery(".vote_url").index(this);
var id = jQuery(".vote_url").eq(index).attr('id');
console.log(id);
jQuery("#btnFormLink" + id).fancybox();
jQuery("#btnFormLink" + id).trigger('click');
});
jQuery(".survey_preview").on("show", function () {
var BodyHeight = jQuery(window).height() - 200;
jQuery(".preview-body").css("max-height", BodyHeight);
jQuery("body").addClass("modal-open");
var modalBody = jQuery(this).find('.preview-body');
modalBody.find("iframe").remove();
var id = jQuery(this).attr("itemid");
modalBody.prepend("<iframe class=\"iframe\" src=\"index.php?option=com_surveyforce&view=surveys&layout=preview&id=" + id + "&tmpl=component\" name=\"議題預覽\" width=\"99%\"></iframe>");
jQuery(".iframe").css("height", BodyHeight).css("border", 0);
}).on("hide", function () {
jQuery("body").removeClass("modal-open");
});
});
function show_test(_survey_id) {
jQuery("#test_survey_id").val(_survey_id);
jQuery("#btnFormTest").trigger('click');
}
</script>
<form action="<?php echo JRoute::_('index.php?option=com_surveyforce&view=surveys'); ?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty($this->sidebar)) : ?>
<div id="j-sidebar-container" class="span2">
<?php echo $this->sidebar; ?>
</div>
<?php endif; ?>
<div id="j-main-container" class="span10">
<div id="filter-bar" class="btn-toolbar">
<div class="filter-search btn-group pull-left">
<label for="filter_search"
class="element-invisible"><?php echo JText::_('COM_SURVEYFORCE_FILETERBYTAG'); ?></label>
<input type="text" name="filter_search" id="filter_search"
placeholder="<?php echo JText::_('COM_SURVEYFORCE_FILETERBYTAG'); ?>"
value="<?php echo $this->escape($this->state->get('filter.search')); ?>" />
</div>
<div class="btn-group pull-left">
<button type="submit" class="btn hasTooltip" title="<?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?>"><i
class="icon-search"></i></button>
<button type="button" class="btn hasTooltip" title="<?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?>"
id="btn_clear"><i class="icon-remove"></i></button>
</div>
<div class="btn-group pull-right hidden-phone">
<label for="limit"
class="element-invisible"><?php echo JText::_('JFIELD_PLG_SEARCH_SEARCHLIMIT_DESC'); ?></label>
<?php echo $this->pagination->getLimitBox(); ?>
</div>
<div class="btn-group pull-right hidden-phone">
<label for="directionTable"
class="element-invisible"><?php echo JText::_('JFIELD_ORDERING_DESC'); ?></label>
<select name="directionTable" id="directionTable" class="input-medium" onchange="Joomla.orderTable()">
<option value=""><?php echo JText::_('JFIELD_ORDERING_DESC'); ?></option>
<option value="asc" <?php if ($listDirn == 'asc')
echo 'selected="selected"'; ?>><?php echo JText::_('JGLOBAL_ORDER_ASCENDING'); ?></option>
<option value="desc" <?php if ($listDirn == 'desc')
echo 'selected="selected"'; ?>><?php echo JText::_('JGLOBAL_ORDER_DESCENDING'); ?></option>
</select>
</div>
<div class="btn-group pull-right">
<label for="sortTable" class="element-invisible"><?php echo JText::_('JGLOBAL_SORT_BY'); ?></label>
<select name="sortTable" id="sortTable" class="input-medium" onchange="Joomla.orderTable()">
<option value=""><?php echo JText::_('JGLOBAL_SORT_BY'); ?></option>
<?php echo JHtml::_('select.options', $sortFields, 'value', 'text', $listOrder); ?>
</select>
</div>
</div>
<div class="clearfix"></div>
<table class="table table-striped" id="testimonialsList" style="min-width:1100px;">
<thead>
<tr>
<th width="1%" class="hidden-phone">
<input type="checkbox" name="checkall-toggle" value=""
title="<?php echo JText::_('JGLOBAL_CHECK_ALL'); ?>" onclick="Joomla.checkAll(this)" />
</th>
<th width="3%" class="nowrap center">
流程狀態
</th>
<th width="10%" class="nowrap center">
階段
</th>
<th class="nowrap center">
<?php echo JHtml::_('grid.sort', '名稱', 's.title', $listDirn, $listOrder); ?>
</th>
<th width="10%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '上架時間', 's.publish_up', $listDirn, $listOrder); ?>
</th>
<th width="10%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '開始投票時間', 's.vote_start', $listDirn, $listOrder); ?>
</th>
<th width="10%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '投票結束時間', 's.vote_end', $listDirn, $listOrder); ?>
</th>
<th width="10%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '單位', 'ut.title', $listDirn, $listOrder); ?>
</th>
<th width="10%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '承辦人員', 'u.name', $listDirn, $listOrder); ?>
</th>
<th width="1%" class="nowrap center">
<?php echo JHtml::_('grid.sort', '是否公開', 's.is_public', $listDirn, $listOrder); ?>
</th>
<th width="1%" class="nowrap center">
題目
</th>
<th width="5%" class="nowrap center">
功能
</th>
<th width="1%" class="nowrap center">
<?php echo JHtml::_('grid.sort', 'COM_SURVEYFORCE_ID', 's.id', $listDirn, $listOrder); ?>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="13">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$date = JFactory::getDate();
$nowDate = $date->toSql();
foreach ($this->items as $i => $item) :
$verify_type = json_decode($item->verify_type, true);
$verify_params = json_decode($item->verify_params, true);
$ordering = ($listOrder == 'ordering');
$canEdit = $user->authorise('core.edit', $extension . '.surveys.' . $item->id);
$canCheckin = $user->authorise('core.admin', 'com_checkin') || $item->checked_out == $userId || $item->checked_out == 0;
$canChange = $user->authorise('core.edit.state', $extension . '.surveys.' . $item->id) && $canCheckin;
?>
<tr class="row<?php echo $i % 2; ?>" sortable-group-id="1">
<td class="nowrap center">
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
</td>
<td class="center">
<?php
// 辨別議題狀態
$is_processing = false;
$is_finish = false;
if ($item->is_complete) {
if ($item->is_checked) {
if (strtotime($item->publish_up) < strtotime($nowDate)) {
if ($item->release_stage > 5) {
if (strtotime($item->vote_start) < strtotime($nowDate)) {
if (strtotime($item->vote_end) < strtotime($nowDate)) {
$is_finish = true;
if (strtotime($item->publish_down) < strtotime($nowDate)) {
echo "已下架";
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_COMPLETED");
}
} else {
$is_processing = true;
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_VOTING");
}
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_TO_BE_VOTE");
}
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_VOTING");
}
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_TO_BE_LAUNCHED");
}
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_TO_BE_CHECK");
}
} else {
echo JText::_("COM_SURVEYFORCE_LIST_STATUS_DRAFT");
}
?>
</td>
<td class="center">
<?php
echo $stage[$item->release_stage] ? $stage[$item->release_stage] : "尚未送審";
?>
</td>
<td class="nowrap">
<div style="white-space: nowrap; text-overflow: ellipsis; overflow: hidden; width:200px;">
<?php if ($canEdit) : ?>
<a class="hasTooltip" href="<?php echo JRoute::_('index.php?option=com_surveyforce&view=survey&layout=edit&id=' . $item->id); ?>"
title=" <?php echo $this->escape($item->title); ?>"><?php echo $this->escape($item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($item->title); ?>
<?php endif; ?>
</div>
</td>
<td class="center">
<?php echo JHtml::_('date', $item->publish_up, JText::_('DATE_FORMAT_LC5')); ?>
</td>
<?php
$check_stage = $item->release_stage >= 5 ? true : false;
?>
<td class="center">
<?php
if ($check_stage) {
echo JHtml::_('date', $item->vote_start, JText::_('DATE_FORMAT_LC5'));
} else {
echo JText::_('COM_SURVEYFORCE_LIST_VOTE_TIME');
}
?>
</td>
<td class="center">
<?php
if ($check_stage) {
echo JHtml::_('date', $item->vote_end, JText::_('DATE_FORMAT_LC5'));
} else {
echo JText::_('COM_SURVEYFORCE_LIST_VOTE_TIME');
}
?>
</td>
<td class="center">
<?php echo $item->unit_title; ?>
</td>
<td class="center">
<?php echo $item->create_name; ?>
</td>
<td class="center">
<?php
if ($item->is_public) {
echo "是";
} else {
echo "否";
}
?>
</td>
<td class=" center">
<a href="<?php echo JRoute::_('index.php?option=com_surveyforce&view=questions&surv_id=' . $item->id); ?>"><?php echo JText::_('COM_SURVEYFORCE_EDIT'); ?></a>
</td>
<td class="has-context">
<?php
// 作者 或 同單位審核者 或 最高權限 才可使用下列功能
if ($item->created_by == $userId || ($item->unit_id == $unit_id && in_array($core_review, $self_gps)) || $this->canDo->get('core.own')) {
?>
<div class="center">
<?php
unset($funs);
$funs = array ();
if ($item->questions == 1) {
$funs[] = '<a href="#survey_preview' . $item->id . '" class="hasTooltip" role="button" data-toggle="modal" title="議題預覽">議題預覽</a>';
}
?>
<div style="display: none;" id="survey_preview<?php echo $item->id; ?>" itemid="<?php echo $item->id; ?>" tabindex="-1" class="modal hide fade survey_preview">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>議題預覽</h3>
</div>
<div class="preview-body">
</div>
<div class="modal-footer">
<button type="button" class="btn" data-dismiss="modal" aria-hidden="true">關閉</button>
</div>
</div>
<?php
if (($this->is_testsite == false && $this->testsite_link) && $item->stage >= 5) {
$funs[] = '<a class="hasTooltip" href="javascript:void(0);" onclick="show_test(' . $item->id . ')" title="投票測試">投票測試</a>';
}
if($item->release_stage) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=print&surv_id=' . $item->id . '" title="議題列印" target="_blank">議題列印</a>';
}
if ($item->is_checked) {
if ($item->is_public == 0) {
$url = JRoute::_($item->id . '-survey-intro' . '?token=' . JHtml::_('utility.endcode', $item->title), false);
$url_prac = JRoute::_(str_replace('/', '', $exercise_host['exercise_host']) . '/' . $item->id . '-survey-intro' . '?token=' . JHtml::_('utility.endcode', $item->title), false);
$url_result = JRoute::_($item->id . '-survey-result' . '?token=' . JHtml::_('utility.endcode', $item->title), false);
} else {
$url = JRoute::_($item->id . '-survey-intro', false);
$url_prac = JRoute::_(str_replace('/', '', $exercise_host['exercise_host']) . '/' . $item->id . '-survey-intro', false);
$url_result = JRoute::_($item->id . '-survey-result', false);
}
?>
<a href="#divFormLink<?php echo $item->id; ?>" id="btnFormLink<?php echo $item->id; ?>" title="投票網址" style="display:none">投票網址</a>
<div id="divFormLink<?php echo $item->id; ?>" style="display:none;">
<?php if ($item->vote_pattern != 2) { ?>
<div>
正式連結:<input type="text" title="正式連結" value="<?php echo JUri::root() . $url; ?>" size="50" style="width:350px;"><br>
<a href="<?php echo '/' . $url; ?>" target="_blank" title="點此開啟前台頁面">點此開啟正式頁面</a>
</div>
<?php } ?>
<?php if ($item->vote_pattern != 1) { ?>
<div>
練習連結:<input type="text" title="練習連結" value="<?php echo JUri::root() . $url_prac; ?>" size="50" style="width:350px;"><br>
<a href="<?php echo '/' . $url_prac; ?>" target="_blank" title="點此開啟前台頁面">點此開啟練習頁面</a>
</div>
<?php } ?>
<?php if (($item->display_result == 2 && strtotime(JHtml::_('date', $item->vote_end, JText::_('DATE_FORMAT_LC5'))) < time()) || $item->display_result == 1) { ?>
<div>
結果連結:<input type="text" title="結果連結" value="<?php echo JUri::root() . $url_result; ?>" size="50" style="width:350px;">
<br>
<a href="<?php echo '/' . $url_result; ?>" target="_blank" title="點此開啟結果頁面">點此開啟結果頁面</a>
</div>
<?php } ?>
</div>
<?php
$funs[] = '<a class="hasTooltip vote_url" id="' . $item->id . '" href="javascript:void(0);" title="投票網址">投票網址</a>';
// 開始投票後才會有資料
if ($is_processing) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=result&surv_id=' . $item->id . '" title="觀看結果">觀看結果</a>';
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=import&surv_id=' . $item->id . '" title="匯入紙本">匯入紙本</a>';
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=resultnote&layout=edit&id=' . $item->id . '" title="結果說明">結果說明</a>';
if (!preg_match('/none/', $item->verify_type)) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=voted&surv_id=' . $item->id . '" title="投票查詢">投票查詢</a>';
}
}
// 投票結束後才能匯出結果 及 抽獎名單
if ($is_finish) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=result&surv_id=' . $item->id . '" title="觀看結果">觀看結果</a>';
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=import&surv_id=' . $item->id . '" title="匯入紙本">匯入紙本</a>';
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=resultnote&layout=edit&id=' . $item->id . '" title="結果說明">結果說明</a>';
if (!preg_match('/none/', $item->verify_type)) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=voted&surv_id=' . $item->id . '" title="投票查詢">投票查詢</a>';
}
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=export&surv_id=' . $item->id . '" title="匯出結果">匯出結果</a>';
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=getip&surv_id=' . $item->id . '" title="投票來源">投票來源</a>';
if ($item->is_lottery) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=lottery&surv_id=' . $item->id . '" title="抽獎名單">抽獎名單</a>';
}
// 投票結束半小時後才可觀看檢核紀錄
if (time() - (strtotime($item->vote_end) + 28800) >= 1800) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=autocheck&surv_id=' . $item->id . '" title="檢核紀錄">檢核紀錄</a>';
}
if ($item->is_analyze) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=analyze&layout=result&surv_id=' . $item->id . '" title="投票行為分析">投票分析</a>';
}
} else {
// 若為身分證驗證或是可投票人名單驗證,則可進行補送名單
if (in_array('idnum', $verify_type) || in_array('assign', $verify_type) || (in_array('any', $verify_type) && array_key_exists('suffix', $verify_params['any']))) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=addend&surv_id=' . $item->id . '" title="補送名單">補送名單</a>';
}
}
}
if ($funs) {
echo implode("<br>", $funs);
}
?>
</div>
<?php // 若群組為管理-匯出結果、管理-觀看結果、管理-議題列印
} else if (in_array($this->export_result, $user->groups) || in_array($this->print, $user->groups) || in_array($this->show_result, $user->groups)) {
?>
<div class="center">
<?php
unset($funs);
$funs = array ();
if (in_array($this->print, $user->groups) && $item->release_stage) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=print&surv_id=' . $item->id . '" title="議題列印" target="_blank">議題列印</a>';
}
if ($item->is_checked) {
// 開始投票後才會有資料
if ($is_processing) {
if (in_array($this->show_result, $user->groups)) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=result&surv_id=' . $item->id . '" title="觀看結果">觀看結果</a>';
}
}
// 投票結束後才能匯出結果
if ($is_finish) {
if (in_array($this->show_result, $user->groups)) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=result&surv_id=' . $item->id . '" title="觀看結果">觀看結果</a>';
}
if (in_array($this->export_result, $user->groups)) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=export&surv_id=' . $item->id . '" title="匯出結果">匯出結果</a>';
}
}
}
if ($funs) {
echo implode("<br>", $funs);
}
?>
</div>
<?php
// 若為同單位的承辦人群組
} else if (($item->unit_id == $unit_id && in_array($this->undertaker, $self_gps)) || ($item->unit_id != $unit_id && $cross_unit == 1)) {
?>
<div class="center">
<?php
unset($funs);
$funs = array ();
if ($item->is_checked) {
if (!$is_finish) {
// 若為身分證驗證或是可投票人名單驗證,則可進行補送名單
if (in_array('idnum', $verify_type) || in_array('assign', $verify_type) || (in_array('any', $verify_type) && array_key_exists('suffix', $verify_params['any']))) {
$funs[] = '<a class="hasTooltip" href="index.php?option=com_surveyforce&view=addend&surv_id=' . $item->id . '" title="補送名單">補送名單</a>';
}
}
}
if ($funs) {
echo implode("<br>", $funs);
}
?>
</div>
<?php } ?>
</td>
<td class="center">
<?php echo $item->id; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
<?php echo JHtml::_('form.token'); ?>
</div>
</form>
<a href="#divFormTest" id="btnFormTest" title="投票測試" style="display:none">投票測試</a>
<div id="divFormTest" style="display:none; width:450px;">
<form action="<?php echo JRoute::_('index.php'); ?>" method="post" name="testForm" id="testForm" target="_blank">
*請先確認所有議題、題目皆已編輯完成,點擊"開始測試"按鈕後,系統將會把資料發佈至測試站台中,並將議題狀態自動修改為進行中投票。 <br><br>
<input type="submit" id="test_btn" value="開始測試" style="width:80px; padding: 5px;"><br>
<input type="hidden" id="test_survey_id" name="test_survey_id" value="">
<input type="hidden" name="option" value="com_surveyforce"> <input type="hidden" name="task" value="testvote">
</form>
</div>
| taipeicity/i-voting | administrator/components/com_surveyforce/views/surveys/tmpl/default.php | PHP | gpl-2.0 | 26,776 |
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Http
* @subpackage CookieJar
* @version $Id: CookieJar.php,v 1.1 2009/02/11 06:57:32 jerome Exp $
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com/)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
require_once "Zend/Uri.php";
require_once "Zend/Http/Cookie.php";
require_once "Zend/Http/Response.php";
/**
* A Zend_Http_CookieJar object is designed to contain and maintain HTTP cookies, and should
* be used along with Zend_Http_Client in order to manage cookies across HTTP requests and
* responses.
*
* The class contains an array of Zend_Http_Cookie objects. Cookies can be added to the jar
* automatically from a request or manually. Then, the jar can find and return the cookies
* needed for a specific HTTP request.
*
* A special parameter can be passed to all methods of this class that return cookies: Cookies
* can be returned either in their native form (as Zend_Http_Cookie objects) or as strings -
* the later is suitable for sending as the value of the "Cookie" header in an HTTP request.
* You can also choose, when returning more than one cookie, whether to get an array of strings
* (by passing Zend_Http_CookieJar::COOKIE_STRING_ARRAY) or one unified string for all cookies
* (by passing Zend_Http_CookieJar::COOKIE_STRING_CONCAT).
*
* @link http://wp.netscape.com/newsref/std/cookie_spec.html for some specs.
*
* @category Zend
* @package Zend_Http
* @subpackage CookieJar
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com/)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Http_CookieJar
{
/**
* Return cookie(s) as a Zend_Http_Cookie object
*
*/
const COOKIE_OBJECT = 0;
/**
* Return cookie(s) as a string (suitable for sending in an HTTP request)
*
*/
const COOKIE_STRING_ARRAY = 1;
/**
* Return all cookies as one long string (suitable for sending in an HTTP request)
*
*/
const COOKIE_STRING_CONCAT = 2;
/**
* Array storing cookies
*
* Cookies are stored according to domain and path:
* $cookies
* + www.mydomain.com
* + /
* - cookie1
* - cookie2
* + /somepath
* - othercookie
* + www.otherdomain.net
* + /
* - alsocookie
*
* @var array
*/
protected $cookies = array();
/**
* Construct a new CookieJar object
*
*/
public function __construct()
{ }
/**
* Add a cookie to the jar. Cookie should be passed either as a Zend_Http_Cookie object
* or as a string - in which case an object is created from the string.
*
* @param Zend_Http_Cookie|string $cookie
* @param Zend_Uri_Http|string $ref_uri Optional reference URI (for domain, path, secure)
*/
public function addCookie($cookie, $ref_uri = null)
{
if (is_string($cookie)) {
$cookie = Zend_Http_Cookie::fromString($cookie, $ref_uri);
}
if ($cookie instanceof Zend_Http_Cookie) {
$domain = $cookie->getDomain();
$path = $cookie->getPath();
if (! isset($this->cookies[$domain])) $this->cookies[$domain] = array();
if (! isset($this->cookies[$domain][$path])) $this->cookies[$domain][$path] = array();
$this->cookies[$domain][$path][$cookie->getName()] = $cookie;
} else {
require_once 'Zend/Http/Exception.php';
throw new Zend_Http_Exception('Supplient argument is not a valid cookie string or object');
}
}
/**
* Parse an HTTP response, adding all the cookies set in that response
* to the cookie jar.
*
* @param Zend_Http_Response $response
* @param Zend_Uri_Http|string $ref_uri Requested URI
*/
public function addCookiesFromResponse($response, $ref_uri)
{
if (! $response instanceof Zend_Http_Response) {
require_once 'Zend/Http/Exception.php';
throw new Zend_Http_Exception('$response is expected to be a Response object, ' .
gettype($response) . ' was passed');
}
$cookie_hdrs = $response->getHeader('Set-Cookie');
if (is_array($cookie_hdrs)) {
foreach ($cookie_hdrs as $cookie) {
$this->addCookie($cookie, $ref_uri);
}
} elseif (is_string($cookie_hdrs)) {
$this->addCookie($cookie_hdrs, $ref_uri);
}
}
/**
* Get all cookies in the cookie jar as an array
*
* @param int $ret_as Whether to return cookies as objects of Zend_Http_Cookie or as strings
* @return array|string
*/
public function getAllCookies($ret_as = self::COOKIE_OBJECT)
{
$cookies = $this->_flattenCookiesArray($this->cookies, $ret_as);
return $cookies;
}
/**
* Return an array of all cookies matching a specific request according to the request URI,
* whether session cookies should be sent or not, and the time to consider as "now" when
* checking cookie expiry time.
*
* @param string|Zend_Uri_Http $uri URI to check against (secure, domain, path)
* @param boolean $matchSessionCookies Whether to send session cookies
* @param int $ret_as Whether to return cookies as objects of Zend_Http_Cookie or as strings
* @param int $now Override the current time when checking for expiry time
* @return array|string
*/
public function getMatchingCookies($uri, $matchSessionCookies = true,
$ret_as = self::COOKIE_OBJECT, $now = null)
{
if (is_string($uri)) $uri = Zend_Uri::factory($uri);
if (! $uri instanceof Zend_Uri_Http) {
require_once 'Zend/Http/Exception.php';
throw new Zend_Http_Exception("Invalid URI string or object passed");
}
// Set path
$path = $uri->getPath();
$path = substr($path, 0, strrpos($path, '/'));
if (! $path) $path = '/';
// First, reduce the array of cookies to only those matching domain and path
$cookies = $this->_matchDomain($uri->getHost());
$cookies = $this->_matchPath($cookies, $path);
$cookies = $this->_flattenCookiesArray($cookies, self::COOKIE_OBJECT);
// Next, run Cookie->match on all cookies to check secure, time and session mathcing
$ret = array();
foreach ($cookies as $cookie)
if ($cookie->match($uri, $matchSessionCookies, $now))
$ret[] = $cookie;
// Now, use self::_flattenCookiesArray again - only to convert to the return format ;)
$ret = $this->_flattenCookiesArray($ret, $ret_as);
return $ret;
}
/**
* Get a specific cookie according to a URI and name
*
* @param Zend_Uri_Http|string $uri The uri (domain and path) to match
* @param string $cookie_name The cookie's name
* @param int $ret_as Whether to return cookies as objects of Zend_Http_Cookie or as strings
* @return Zend_Http_Cookie|string
*/
public function getCookie($uri, $cookie_name, $ret_as = self::COOKIE_OBJECT)
{
if (is_string($uri)) {
$uri = Zend_Uri::factory($uri);
}
if (! $uri instanceof Zend_Uri_Http) {
require_once 'Zend/Http/Exception.php';
throw new Zend_Http_Exception('Invalid URI specified');
}
// Get correct cookie path
$path = $uri->getPath();
$path = substr($path, 0, strrpos($path, '/'));
if (! $path) $path = '/';
if (isset($this->cookies[$uri->getHost()][$path][$cookie_name])) {
$cookie = $this->cookies[$uri->getHost()][$path][$cookie_name];
switch ($ret_as) {
case self::COOKIE_OBJECT:
return $cookie;
break;
case self::COOKIE_STRING_ARRAY:
case self::COOKIE_STRING_CONCAT:
return $cookie->__toString();
break;
default:
require_once 'Zend/Http/Exception.php';
throw new Zend_Http_Exception("Invalid value passed for \$ret_as: {$ret_as}");
break;
}
} else {
return false;
}
}
/**
* Helper function to recursivly flatten an array. Shoud be used when exporting the
* cookies array (or parts of it)
*
* @param Zend_Http_Cookie|array $ptr
* @param int $ret_as What value to return
* @return array|string
*/
protected function _flattenCookiesArray($ptr, $ret_as = self::COOKIE_OBJECT) {
if (is_array($ptr)) {
$ret = ($ret_as == self::COOKIE_STRING_CONCAT ? '' : array());
foreach ($ptr as $item) {
if ($ret_as == self::COOKIE_STRING_CONCAT) {
$ret .= $this->_flattenCookiesArray($item, $ret_as);
} else {
$ret = array_merge($ret, $this->_flattenCookiesArray($item, $ret_as));
}
}
return $ret;
} elseif ($ptr instanceof Zend_Http_Cookie) {
switch ($ret_as) {
case self::COOKIE_STRING_ARRAY:
return array($ptr->__toString());
break;
case self::COOKIE_STRING_CONCAT:
return $ptr->__toString();
break;
case self::COOKIE_OBJECT:
default:
return array($ptr);
break;
}
}
return null;
}
/**
* Return a subset of the cookies array matching a specific domain
*
* Returned array is actually an array of pointers to items in the $this->cookies array.
*
* @param string $domain
* @return array
*/
protected function _matchDomain($domain) {
$ret = array();
foreach (array_keys($this->cookies) as $cdom) {
$regex = "/" . preg_quote($cdom, "/") . "$/i";
if (preg_match($regex, $domain)) $ret[$cdom] = &$this->cookies[$cdom];
}
return $ret;
}
/**
* Return a subset of a domain-matching cookies that also match a specified path
*
* Returned array is actually an array of pointers to items in the $passed array.
*
* @param array $dom_array
* @param string $path
* @return array
*/
protected function _matchPath($domains, $path) {
$ret = array();
if (substr($path, -1) != '/') $path .= '/';
foreach ($domains as $dom => $paths_array) {
foreach (array_keys($paths_array) as $cpath) {
$regex = "|^" . preg_quote($cpath, "|") . "|i";
if (preg_match($regex, $path)) {
if (! isset($ret[$dom])) $ret[$dom] = array();
$ret[$dom][$cpath] = &$paths_array[$cpath];
}
}
}
return $ret;
}
/**
* Create a new CookieJar object and automatically load into it all the
* cookies set in an Http_Response object. If $uri is set, it will be
* considered as the requested URI for setting default domain and path
* of the cookie.
*
* @param Zend_Http_Response $response HTTP Response object
* @param Zend_Uri_Http|string $uri The requested URI
* @return Zend_Http_CookieJar
* @todo Add the $uri functionality.
*/
public static function fromResponse(Zend_Http_Response $response, $ref_uri)
{
$jar = new self();
$jar->addCookiesFromResponse($response, $ref_uri);
return $jar;
}
}
| nicolasconnault/moodle2.0 | lib/zend/Zend/Http/CookieJar.php | PHP | gpl-2.0 | 12,299 |
<?php
defined('SYSTEM_STARTED') or die('You are not permitted to access this resource.');
class Registry {
const CONFIG_TYPE_DATABASE = "DATABASE";
const CONFIG_TYPE_MAIL = "MAIL";
const CONFIG_TYPE_APP = "APP";
const PORT_TYPE_PUBLIC = "PUBLIC";
const PORT_TYPE_PRIVATE = "PRIVATE";
/**
* Contains registry entries of the form:
* (<controller_name>,<method_name>)
*/
private static $port_registry=array();
/**
* Contains registry entries of the form:
* <type, key>=<value>
*/
private static $app_config=array();
/**
* Contains registry entries of the form:
* <key>=<value>
*/
private static $custom_config = array();
public static function init() {
if(!file_exists(BASE_DIR.'app/config/app.ini')) {
copy(BASE_DIR.'app/config/app.ini.default', BASE_DIR.'app/config/app.ini');
}
$config_app = parse_ini_file(BASE_DIR.'app/config/app.ini', TRUE);
$config_ports = parse_ini_file(BASE_DIR.'app/config/ports.ini', TRUE);
$config_custom = parse_ini_file(BASE_DIR.'app/config/custom.ini', FALSE);
self::$port_registry = $config_ports;
foreach(array_keys($config_ports['PUBLIC']) as $key) {
$value = trim($config_ports['PUBLIC'][$key]);
if($value) self::$port_registry['PUBLIC'][$key] = explode(':', $value);
else self::$port_registry['PUBLIC'][$key] = null;
}
foreach(array_keys($config_ports['PRIVATE']) as $key) {
$value = trim($config_ports['PRIVATE'][$key]);
if($value) self::$port_registry['PRIVATE'][$key] = explode(':', $value);
else self::$port_registry['PRIVATE'][$key] = null;
}
self::$app_config = $config_app;
self::$custom_config = $config_custom;
}
public static function portExists($portName) {
if(array_key_exists($portName, self::$port_registry['PUBLIC'])) return TRUE;
if(array_key_exists($portName, self::$port_registry['PRIVATE'])) return TRUE;
return FALSE;
}
public static function lookupPort($portName) {
if(isset(self::$port_registry['PUBLIC'][$portName])) return array_merge(self::$port_registry['PUBLIC'][$portName], array('PUBLIC'));
else if(isset(self::$port_registry['PRIVATE'][$portName])) return array_merge(self::$port_registry['PRIVATE'][$portName], array('PRIVATE'));
else return null;
}
public static function listPorts() {
return array_merge(array_keys(self::$port_registry['PUBLIC']), array_keys(self::$port_registry['PRIVATE']));
}
public static function lookupConfig($type, $configKey) {
if(isset(self::$app_config[$type][$configKey])) return self::$app_config[$type][$configKey];
else return null;
}
public static function lookupCustomConfig($key) {
if(array_key_exists($key, self::$custom_config)) return self::$custom_config[$key];
else return null;
}
}
?>
| dasrajdeep/kiln | system/Registry.php | PHP | gpl-2.0 | 2,761 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MyFitnessTrackerLibrary.Globals
{
public class Constants
{
public static String Session_LogInuserId = "Cache_LogInuser.Id";
public static String SignalR_HeaderID_Username = "username";
public static String SignalR_HeaderID_Password = "password";
public static string SignalR_HostApplicationUserName = "SignalRHostApplication";
}
} | lionadi/MyFitnessTracker | MyFitnessTrackerLibrary/Globals/Constants.cs | C# | gpl-2.0 | 476 |
<?php
/// Please, do not edit this file manually! It's auto generated from
/// contents stored in your standard lang pack files:
/// (langconfig.php, install.php, moodle.php, admin.php and error.php)
///
/// If you find some missing string in Moodle installation, please,
/// keep us informed using http://moodle.org/bugs Thanks!
///
/// File generated by cvs://contrib/lang2installer/installer_builder
/// using strings defined in stringnames.txt (same dir)
$string['admindirerror'] = 'Adresár pre správu (admin) nie je určený správne';
$string['admindirname'] = 'Adresár pre správu (admin)';
$string['admindirsettinghead'] = 'Nastavovanie adresáre \'admin\'...';
$string['admindirsettingsub'] = 'Na niektorých serveroch je URL adresa /admin vyhradená pre špeciálne účely (napr. pre ovládací panel). Na takých serveroch môže dojsť ku kolízii so štandardným umiestením stránok pre správu Moodle. Ak máte tento problém, premenujte adresár \'admin\' vo vašej inštalácii Moodle a do tohto poľa zadajte jeho nový názov. Príklad: <br /> <br /><b>moodleadmin</b><br /> <br />
Všetky generované odkazy na stránky správy Moodle budú používať tento nový názov.';
$string['bypassed'] = 'Obídené';
$string['cannotcreatelangdir'] = 'Nie je možné vytvoriť adresár pre jazykové súbory.';
$string['cannotcreatetempdir'] = 'Nie je možné vytvoriť dočasný adresár.';
$string['cannotdownloadcomponents'] = 'Nie je možné stiahnuť komponenty.';
$string['cannotdownloadzipfile'] = 'Nie je možné stiahnuť súbor ZIP.';
$string['cannotfindcomponent'] = 'Komponent nenájdený.';
$string['cannotsavemd5file'] = 'Nie je možné uložiť súbor MD5.';
$string['cannotsavezipfile'] = 'Nie je možné uložiť súbor ZIP.';
$string['cannotunzipfile'] = 'Nie je možné dekomprimovať súbor.';
$string['caution'] = 'Varovanie';
$string['check'] = 'Kontrolovať';
$string['chooselanguagehead'] = 'Vyberte jazyk';
$string['chooselanguagesub'] = 'Zvoľte si jazyk PRE INŠTALOVANIE. Jazyk pre stránky Moodle a pre užívateľov budete môcť vybrať neskôr.';
$string['closewindow'] = 'Zavrieť toto okno';
$string['compatibilitysettingshead'] = 'Kontrola nastavenia PHP...';
$string['compatibilitysettingssub'] = 'Pre správny beh Moodle by váš server mal vyhovieť vo všetkých nasledujúcich testoch.';
$string['componentisuptodate'] = 'Komponent je aktuálny.';
$string['configfilenotwritten'] = 'Inštalačný skript nebol schopný automaticky vytvoriť config.php súbor, obsahujúci Vaše zvolené nastavenia, pravdepodobne preto, že adresár Moodle nie je zapisovateľný. Môžete ručne skopírovať nasledovný kód do súboru s názvom config.php v rámci koreňového adresára Moodle.';
$string['configfilewritten'] = 'súbor config.php bol úspešne vytvorený';
$string['configurationcompletehead'] = 'Konfigurácia ukončená';
$string['configurationcompletesub'] = 'Moodle sa pokúsil uložiť súbor s konfiguráciou do koreňového adresára inštalácie Moodle.';
$string['continue'] = 'Pokračovať';
$string['ctyperecommended'] = 'Pre zlepšenie výkonu na portáli (najmä pre nie latinkové jazyky) je doporučené nainštalovať voliteľnú knižnicu ctype.';
$string['ctyperequired'] = 'Voliteľná knižnica ctype je vyžadovaná v Moodle na zlepšenie výkonu na portáli a podporu kompatibility viacerých jazykov.';
$string['curlrecommended'] = 'Pre beh sieťových funkcionalít (\"Moodle Networking\") je treba nainštalovať voliteľnú knižnicu Curl.';
$string['customcheck'] = 'Ostatné kontroly';
$string['database'] = 'Databáza';
$string['databasecreationsettingshead'] = 'Teraz musíte nastaviť pripojenie k databáze, kam si bude Moodle ukladať väčšinu svojich údajov. Táto databáza môže byť vytvorená inštalátorom automaticky podľa nasledujúceho nastavenia.';
$string['databasecreationsettingssub'] = '<b>Typ:</b> inštalátor nastaví na \"mysql\"<br />
<b>Hostiteľ:</b> inštalátor nastaví na \"localhost\"<br />
<b>Názov:</b> názov databázy, napr. moodle<br />
<b>Používateľ:</b> inštalátor nastaví na \"root\"<br />
<b>Heslo:</b> heslo k tomuto účtu<br />
<b>Predpona tabuliek:</b> voliteľná predpona, ktorá sa vloží pred názvy všetkých tabuliek (umožňuje používať jednu databázu pre viac inštalácií Moodle)';
$string['databasesettingshead'] = 'Teraz potrebujete nastaviť pripojenie k databáze, kam si bude Moodle ukladať väčšinu svojich údajov. Táto databáza už musí byť vytvorená a tiež musí byť vytvorené používateľské meno a prístupové heslo.';
$string['databasesettingssub'] = '<b>Typ:</b> mysql alebo postgres7<br />
<b>Hostiteľ:</b> napr. localhost alebo db.nasaskola.sk<br />
<b>Názov:</b> názov databázy, napr. moodle<br />
<b>Používateľ:</b> používateľské meno účtu pre prístup k databáze<br />
<b>Heslo:</b> heslo k tomuto účtu<br />
<b>Predpona tabuliek:</b> voliteľná predpona, ktorá sa vloží pred názvy všetkých tabuliek (umožňuje používať jednu databázu pre viac inštalácií Moodle)';
$string['databasesettingssub_mssql'] = '<b>Typ:</b> SQL*Server (bez UTF-8) <b><font color=\"red\">Len na experimentovanie! (nie je určené pre produkčné servery)</font></b><br />
<b>Hostiteľ (Host):</b> napr. localhost alebo db.nasaskola.sk<br />
<b>Názov (Name):</b> názov databázy, napr. moodle<br />
<b>Používateľ (User):</b> uživatel oprávněný pro práci s databází<br />
<b>Heslo (Password):</b> heslo pro uživatele<br />
<b>Předpona (Tables Prefix):</b> jednotná předpona názvů všech tabulek, např. mdl_ (povinné)';
$string['databasesettingssub_mssql_n'] = '<b>Typ:</b> SQL*Server (s UTF-8) <br />
<b>Hostiteľ (Host):</b> napr. localhost alebo db.nasaskola.sk<br />
<b>Názov (Name):</b> názov databázy, napr. moodle<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek, napr. mdl_ (povinné)';
$string['databasesettingssub_mysql'] = '<b>Typ:</b> MySQL<br />
<b>Hostiteľ (Host):</b> napr. localhost alebo db.nasaskola.sk<br />
<b>Název (Name):</b> názov databázy, např. moodle<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek, napr. mdl_ (povinné)';
$string['databasesettingssub_mysqli'] = '<b>Typ:</b> Vylepšené MySQL<br />
<b>Hostiteľ (Host):</b> eg localhost alebo db.isp.com<br />
<b>Názov (Name):</b> názov databázy, napr. moodle<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek, napr. mdl_ (voliteľné)';
$string['databasesettingssub_oci8po'] = '<b>Typ:</b> Oracle<br />
<b>Hostitel (Host):</b> nepoužité, musí být prázdne<br />
<b>Názov (Name):</b> daný názov pripojenia tnsnames.ora<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek (povinné, max 2 znaky)';
$string['databasesettingssub_odbc_mssql'] = '<b>Typ:</b> SQL*Server (cez ODBC) <b><font color=\"red\">Len na experimentovanie! (nie je určené pre produkčné servery)</font></b><br />
<b>Hostiteľ (Host):</b> názov DSN podľa ovládacieho panelu ODBC<br />
<b>Názov (Name):</b> názov databázy, napr. moodle<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek (povinné)';
$string['databasesettingssub_postgres7'] = '<b>Typ:</b> PostgreSQL<br />
<b>Hostiteľ (Host):</b> napr. localhost alebo db.nasaskola.sk<br />
<b>Názov (Name):</b> názov databázy, napr. moodle<br />
<b>Používateľ (User):</b> používateľ oprávnený pre prácu s databázou<br />
<b>Heslo (Password):</b> heslo pre používateľa<br />
<b>Predpona (Tables Prefix):</b> jednotná predpona názvov všetkých tabuliek, napr. mdl_ (povinné)';
$string['databasesettingswillbecreated'] = '<b>Poznámka:</b> inštalátor sa pokúsi vytvoriť databázu automaticky, ak neexistuje.';
$string['dataroot'] = 'Adresár pre údaje';
$string['datarooterror'] = '\'Adresár pre údaje\', ktorý ste zadali, nemôže byť nájdený alebo vytvorený. Upravte buď cestu alebo vytvorte ten adresár ručne.';
$string['datarootpublicerror'] = 'Adresár \'data\', ktorý ste zvolili, je priamo dostupný z webu. Musíte zvoliť iný adresár.';
$string['dbconnectionerror'] = 'Nemohli sme sa pripojiť k vami zadanej databáze. Prosím skontrolujte nastavenia Vašej databázy.';
$string['dbcreationerror'] = 'Chyba pri vytváraní databázy. Ale bolo možné vytvoriť databázu so zadaným menom a jej nastaveniami';
$string['dbhost'] = 'Hosťovský server';
$string['dbprefix'] = 'Predpona tabuliek';
$string['dbtype'] = 'Typ';
$string['dbwrongencoding'] = 'Vybraná databáza používa nedoporučené kódovanie $a. Vhodnejšie by bolo používať databázu s kódovaním Unicode (UTF-8). Túto kontrolu môžete preskočiť zaškrtnutím poľa \"Preskočiť test kódovania DB\", môžete však v budúcnosti naraziť na problémy.';
$string['dbwronghostserver'] = 'Musíte rešpektovať pravidlá pre \"Host\" ako bolo vysvetlené vyššie.';
$string['dbwrongnlslang'] = 'Premenná prostredia NLS_LANG vo vašom web serveri musí používať znakovú sadu AL32UTF8. Viď dokumentáciu k PHP o tom, ako správne nastaviť správne OCI8 .';
$string['dbwrongprefix'] = 'Musíte rešpektovať pravidlá pre \"Tables Prefix\" ako bolo vysvetlené vyššie.';
$string['directorysettingshead'] = 'Potvrďte prosím adresy tejto inštalácie Moodle.';
$string['directorysettingssub'] = '<b>Webová adresa</b>:
zadajte celú webovú adresu, na ktorej bude Moodle dostupný. Ak sú vaše stránky dostupné na viacerých URL, vyberte z nich tú, ktorú budú vaši študenti používať najčastejšie. Na konci adresy nepíšte lomítko.
<br />
<br />
<b>Adresár Moodle</b>:
zadajte celú cestu k adresáru s touto inštaláciou. Uistite sa, že sú v nej správne uvedené malé/VEĽKÉ písmená.
<br />
<br />
<b>Dátový adresár</b>:
potrebujete diskový priestor, kam bude Moodle ukladať nahrané (uploadované) súbory. K tomuto adresári musí mať proces webového serveru právo na čítanie A ZÁPIS (webový server býva spustený pod užívateľom \'nobody\' alebo \'apache\' alebo podobne). Tento adresár by ale zároveň nemal byť dostupný priamo cez webové rozhranie (môže obsahovať neverejné údaje).';
$string['dirroot'] = 'Adresár Moodle';
$string['dirrooterror'] = 'Nastavenia v \'Adresári Moodle\' sú nesprávne - nemôžeme tu nájsť inštaláciu Moodle. Hodnota nižšie bola vynulovaná.';
$string['download'] = 'Stiahnuť';
$string['downloadedfilecheckfailed'] = 'Kontrola stiahnutého súboru dopadla negatívne';
$string['downloadlanguagebutton'] = 'Stiahnuť jazykový balíček \"$a\"';
$string['downloadlanguagehead'] = 'Stiahnuť jazykový balíček';
$string['downloadlanguagenotneeded'] = 'V inštalácii je možné pokračovať v jazyku \"$a\".';
$string['downloadlanguagesub'] = 'Teraz máte možnosť si stiahnuť si niektorý z jazykových balíčkov Moodle a pokračovať v tomto jazyku.<br /><br />Ak si práve nemôžete alebo nechcete stiahnuť jazykový balíček, bude inštalačný proces pokračovať v angličtine. Jazykové balíčky si budete môcť stiahnuť aj neskôr po ukončení inštalácie.';
$string['environmenterrortodo'] = 'Pre pokračovanie v inštalácii tejto verzie Moodle je nutné najprv vyriešiť problémy v programovom prostredí (chyby) serveru uvedené vyššie!';
$string['environmenthead'] = 'Kontrola programového prostredia...';
$string['environmentrecommendcustomcheck'] = 'ak tento test nebude úspešne vykonaný, indikuje to prítomnosť problému';
$string['environmentrecommendinstall'] = 'doporučený komponent';
$string['environmentrecommendversion'] = 'doporučená je verzia $a->needed, teraz používate verziu $a->current';
$string['environmentrequirecustomcheck'] = 'tento test musí byť úspešne splnený';
$string['environmentrequireinstall'] = 'vyžadovaný komponent';
$string['environmentrequireversion'] = 'vyžadovaná je verzia $a->needed, teraz používate verziu $a->current';
$string['environmentsub'] = 'Teraz sa preveruje, či vybrané komponenty vášho systému splňujú požiadavky inštalácie.';
$string['environmentxmlerror'] = 'Chyba pri zisťovaní údajov o programovom prostredí ($a->error_code)';
$string['error'] = 'Chyba';
$string['fail'] = 'Neúspešné';
$string['fileuploads'] = 'prenesené súbory';
$string['fileuploadserror'] = 'Toto by malo byť zapnuté';
$string['fileuploadshelp'] = '<p>Zdá sa, že na Vašom serveri nie je aktivovaný prenos súborov.</p>
<p>Moodle môže byť aj napriek tomu nainštalovaný, ale bez tejto možnosti, nebudete schopní preniesť súbory kurzu, alebo obrázky v nových používateľských profiloch.</p>
<p>Na aktivovanie prenosu súborov, Vy (alebo Váš systémový administrátor) budete musieť upraviť main php.ini súbor v systéme a zmeniť nastavenie pre <b>file_uploads</b> na \'1\'.</p>';
$string['gdversion'] = 'Verzia knižnice GD';
$string['gdversionerror'] = 'Knižnica GD by mala existovať na spracovávanie a vytváranie obrázkov';
$string['gdversionhelp'] = '<p>Na Vašom serveri zrejme nie je nainštalovaná GD knižnica.</p>
<p>GD je knižnica, ktorú si vyžaduje PHP, aby mohlo Moodle povoliť spracovávať obrázky (napr. ikony v používateľských profiloch) a vytvárať nové obrázky (napr. grafy z prihlásení). Moodle bude stále pracovať bez GD - tieto možnosti budú dostupné len Vám.</p>
<p>Keď chcete pridať GD do PHP pod Unixom, vytvorte PHP použitím --with-gd parameter.</p>
<p>Pod Windows môžete upraviť php.ini a odkomentovať riadok obsahujúci php_gd2.dll.</p>';
$string['globalsquotes'] = 'Nie bezpečné používanie globálnych premenných';
$string['globalsquoteserror'] = 'Opravte svoje nastavenia PHP: vypnite register_globals a/alebo zapnite magic_quotes_gpc';
$string['globalsquoteshelp'] = '<p>Kombinácia vypnutých Magic Quotes GPC a zapnutých Register Globals nie je doporučená.</p>
<p>Odporúčané nastavenie je<b>magic_quotes_gpc = On</b> a <b>register_globals = Off</b> vo vašom php.ini</p>
<p>Ak nemáte prístup k vašemu php.ini, skúste pridať nasledovný riadok do súboru .htaccess vo vašom Moodle adresári:
<blockquote>php_value magic_quotes_gpc On</blockquote>
<blockquote>php_value register_globals Off</blockquote>
</p>';
$string['globalswarning'] = '<p><strong>Bezpečnostné upozornenie</strong>: pre správne fungovanie Moodle je nutné upraviť nastavenie PHP <br />na vašom serveri.<p/><p><em>Musíte</em> nastaviť <code>register_globals=off</code>. <p>Nastavenie skontrolujte v súbore <code>php.ini</code>, v konfiguračnom súbore Apache/IIS, alebo v súbore <code>.htaccess</code>.</p>';
$string['help'] = 'Pomoc';
$string['iconvrecommended'] = 'Inštalácia voliteľnej knižnice ICONV je vysoko doporučovaná, pretože zvyšuje výkon stránok, najmä ak používate mäkčeňové jazyky - napr. slovenčinu.';
$string['info'] = 'Informácie';
$string['installation'] = 'Inštalácia';
$string['invalidmd5'] = 'Neplatný MD5 hash';
$string['langdownloaderror'] = 'Bohužiaľ, jazyk \"$a\" sa nepodarilo nainštalovať. Inštalácia bude pokračovať v angličtine.';
$string['langdownloadok'] = 'Podarilo so úspešne nainštalovať jazykový balíček \"$a\". Inštalácia bude pokračovať v tomto jazyku.';
$string['language'] = 'Jazyk';
$string['magicquotesruntime'] = 'Magic Quotes Run Time';
$string['magicquotesruntimeerror'] = 'Toto by malo byť vypnuté';
$string['magicquotesruntimehelp'] = '<p>Magic quotes runtime by malo byť vypnuté, aby Moodle fungoval tak, ako má.</p>
<p>Zvyčajne je voľba štandardne vypnutá ... pozri nastavenia <b>magic_quotes_runtime</b> vo Vašom php.ini súbore.</p>
<p>Ak nemáte prístup k súboru php.ini, mali by ste nasledovný riadok do súboru s názvom .htaccess v rámci adresára Moodle:
<blockquote>php_value magic_quotes_runtime Off</blockquote>
</p>';
$string['mbstringrecommended'] = 'Inštalácia voliteľnej knižnice MBSTRING je vysoko doporučovaná, pretože zvyšuje výkon stránok, najmä ak používate mäkčeňové jazyky - napr. slovenčinu.';
$string['memorylimit'] = 'Limit pamäte';
$string['memorylimiterror'] = 'PHP limit pamäte je nastavený na minimum...S týmto môžete mať neskôr problémy.';
$string['memorylimithelp'] = '<p>PHP limit pamäte pre Váš server je momentálne nastavený na $a.</p>
<p>Toto môže neskôr spôsobiť problémy v Moodle, najmä ak máte veľa modulov a/alebo veľa používateľov.</p>
<p>Odporúčame Vám, aby ste nastavili PHP s vyšším limitom pamäte, ak je to možné, napr. 40M. Na to existuje veľa spôsobov, ktoré môžete vyskúšať:</p>
<ol>
<li>Ak je to možné, znovu vytvorte PHP s <i>--enable-memory-limit</i>. Toto umožní Moodle samonastavenie limitu pamäte.</li>
<li>Ak máte prístup k Vášmu php.ini súboru, môžete zmeniť <b>memory_limit</b> nastavenie, napr. na 40M. Ak nemáte prístup k súboru, môžete sa na to spýtať Vášho administrátora.</li>
Na niektorých PHP serveroch, si môžete vytvoriť súbor .htaccess v Adresári Moodle, ktorý bude obsahovať tento riadok: <p><blockquote>php_value memory_limit 40M</blockquote></p>
<p>Avšak, na niektorých serveroch bude toto brániť <b>všetkým</b> PHP stránkam v práci (budete vidieť chyby, keď sa pozriete na stránky), takže budete musieť odstrániť súbor .htaccess.</p></li>
</ol>';
$string['missingrequiredfield'] = 'Chýba niektoré z povinných polí';
$string['moodledocslink'] = 'Moodle Docs pre túto stránku';
$string['mssql'] = 'SQL*Server (mssql)';
$string['mssqlextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s MSSQL rozšírením, a tak nemôže komunikovať s SQL*Server. Prosím, skontrolujte si Váš php.ini súbor alebo znovu vytvorte PHP.';
$string['mssql_n'] = 'SQL*Server s UTF-8 podporou (mssql_n)';
$string['mysql'] = 'MySQL (mysql)';
$string['mysql416bypassed'] = 'Ak ale vo vašej inštalácii Moodle používate IBA jazyky založené na latinke (iso-8859-1), môžete aj ďalej používať súčasne nainštalovanú verziu MySQL 4.1.12 (alebo vyššiu).';
$string['mysql416required'] = 'Minimálnou verziou potrebnou pre Moodle 1.6 -- a pre neskorší bezpečný prevod všetkých údajov do UTF-8 -- je MySQL 4.1.16.';
$string['mysqlextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s MySQL rozšírením, a tak nemôže komunikovať s MySQL. Prosím, skontrolujte si Váš php.ini súbor alebo znovu vytvorte PHP.';
$string['mysqli'] = 'Vylepšené MySQL (mysqli)';
$string['mysqliextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s rozšírením MySQLi, aby mohlo komunikovať s MySQL. Skontrolujte svoj súbor php.ini alebo prekompilujte PHP. Rozšírenie MySQLi nie je dostupné pre PHP 4.';
$string['name'] = 'Meno';
$string['next'] = 'Ďalší';
$string['oci8po'] = 'Oracle (oci8po)';
$string['ociextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s OCI8 rozšírením, a tak nemôže komunikovať s Oracle. Prosím, skontrolujte si Váš php.ini súbor alebo znovu vytvorte PHP.';
$string['odbcextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s ODBC rozšírením, a tak nemôže komunikovať s SQL*Serverom. Prosím, skontrolujte si Váš php.ini súbor alebo znovu vytvorte PHP.';
$string['odbc_mssql'] = 'SQL*Server cez ODBC (odbc_mssql)';
$string['ok'] = 'OK';
$string['opensslrecommended'] = 'Pre beh sieťových funkcionalít (\"Moodle Networking\") je treba nainštalovať voliteľnú knižnicu OpenSSL.';
$string['parentlanguage'] = '<< PREKLADATELIA: Ak chcete definovať sekundárny jazyk, ktorý má Moodle používať v prípadoch, keď reťazce vo vašom jazykovom balíčku chýbajú, zadajte ho sem. Príklad: cs_utf8>>';
$string['pass'] = 'Prejsť';
$string['password'] = 'Heslo';
$string['pgsqlextensionisnotpresentinphp'] = 'PHP nebolo správne nakonfigurované s PGSQL rozšírením, a tak nemôže komunikovať s PostgreSQL. Prosím, skontrolujte si Váš php.ini súbor alebo znovu vytvorte PHP.';
$string['php50restricted'] = 'V PHP 5.0.x bolo nájdených množstvo chýb; prejdite buď na vyššiu verziu 5.1.x, alebo na nižšiu verziu 4.3.x či 4.4.x.';
$string['phpversion'] = 'Verzia PHP';
$string['phpversionerror'] = 'Verzia PHP musí byť aspoň 4.1.0';
$string['phpversionhelp'] = '<p>Moodle si vyžaduje verziu PHP aspoň 4.1.0.</p>
<p>Vy máte momentálne nainštalovanú túto verziu $a</p>
<p>Musíte obnoviť PHP alebo presunúť na hostiteľský počítač s novou verziou PHP!</p>';
$string['postgres7'] = 'PostgreSQL (postgres7)';
$string['postgresqlwarning'] = '<strong>Poznámka:</strong> Ak pozorujete občasné problémy s pripojením, môžete skúsiť nastaviť pole hostiteľského servera nasledovne
host=\'postgresql_host\' port=\'5432\' dbname=\'postgresql_database_name\' user=\'postgresql_user\' password=\'postgresql_user_password\'
a ponechajte prázdne polia databáza, používateľ a heslo. Viac informácií na <a href=\"http://docs.moodle.org/en/Installing_Postgres_for_PHP\">Moodle Docs</a>';
$string['previous'] = 'Predchádzajúci';
$string['qtyperqpwillberemoved'] = 'Počas aktualizácie budú odobrané otázky typu RQP. Nemali ste žiadne také, takže by ste nemali zbadať žiadne problémy.';
$string['qtyperqpwillberemovedanyway'] = 'Počas aktualizácie budú odobrané otázky typu RQP. Vo vašej databáze sa otázky takéhoto typu nachádzajú a nebudú fungovať ak nepreinštalujete program z http://moodle.org/mod/data/view.php?d=13&rid=797 predtým, ako budete pokračovať v aktualizácii.';
$string['remotedownloaderror'] = 'Stiahnutie komponentu na server zlyhalo, skontrolujte nastavenia proxy, doporučené je PHP rozšírenie cURL. <br /><br />Musíte stiahnuť súbor <a href=\"$a->url\">$a->url</a> manuálne, skopírovať ho do \"$a->dest\" na serveri a rozzipovať ho tam.';
$string['remotedownloadnotallowed'] = 'Nahrávanie komponentov na server nie je povolené (direktíva allow_url_fopen je v stave \'vypnuté\').<br /><br />Musíte súbor stiahnuť <a href=\"$a->url\">$a->url</a> ručne, skopírovať ho na serveri do umiestnenia \"$a->dest\" a tam ho dekomprimovať.';
$string['report'] = 'Záznamy';
$string['restricted'] = 'Obmedzený';
$string['safemode'] = 'Bezpečný mód';
$string['safemodeerror'] = 'Moodle môže mať problémy, ak je zapnutý bezpečný mód';
$string['safemodehelp'] = '<p>Moodle môže mať viacero problémov, ak je zapnutý bezpečný mód, pravdepodobne nedovolí vytvárať nové súbory.</p>
<p>Bezpečný mód je zvyčajne povolený verejnými poskytovateľmi webového priestoru, takže by ste si mali nájsť nového poskytovateľa webového priestoru pre stránku Moodle.</p>';
$string['serverchecks'] = 'Kontroly servera';
$string['sessionautostart'] = 'Autoštart sekcie';
$string['sessionautostarterror'] = 'Toto by malo byť vypnuté';
$string['sessionautostarthelp'] = '<p>Moodle vyžaduje podporu sekcií a nebude bez nich fungovať.</p>';
$string['skipdbencodingtest'] = 'Preskočiť test kódovania DB';
$string['status'] = 'Status';
$string['thischarset'] = 'UTF-8';
$string['thisdirection'] = 'ltr';
$string['thislanguage'] = 'Slovenčina';
$string['unicoderecommended'] = 'Doporučujeme ukladanie údajov v kódovaní Unicode (UTF-8). Nové inštalácie by mali byť založené nad databázou s východzím kódovaním Unicode. Ak prechádzate z nižších verzií, mali by ste premigrovať na UTF-8 (viď stránku Administratíva).';
$string['unicoderequired'] = 'Je nutné ukladanie údajov v kódovaní Unicode (UTF-8). Nové inštalácie musia byť založené nad databázou s východzím kódovaním Unicode. Ak prechádzate z nižších verzií, mali by ste premigrovať na UTF-8 (viď stránku Administratíva).';
$string['user'] = 'Používateľ';
$string['welcomep10'] = '$a->installername ($a->installerversion)';
$string['welcomep20'] = 'Podarilo so vám úspešne nainštalovať a spustiť balíček <strong>$a->packname $a->packversion</strong>. Gratulujeme!';
$string['welcomep30'] = '<strong>$a->installername</strong> obsahuje aplikáciu k vytvoreniu prostredia, v ktorom bude prevádzkovaný váš <strong>Moodle</strong>. Menovite sa jedná o:';
$string['welcomep40'] = 'Balíček tiež obsahuje <strong>Moodle vo verzii $a->moodlerelease ($a->moodleversion)</strong>.';
$string['welcomep50'] = 'Použitie všetkých aplikácií v tomto balíčku je viazané ich príslušnými licenciami. Kompletný balíček <strong>$a->installername</strong> je software s <a href=\"http://www.opensource.org/docs/definition_plain.html\"> otvoreným kódom (open source)</a> a je šírený pod licenciou <a href=\"http://www.gnu.org/copyleft/gpl.html\">GPL</a>.';
$string['welcomep60'] = 'Nasledujúce stránky vás povedú v nekoľkých jednoduchých krokoch nastavením <strong>Moodle</strong> na vašom počítači. Môžete prijať východzie nastavenie, alebo si ich upraviť podľa svojich potrieb.';
$string['welcomep70'] = 'Stlačením nižšie uvedeného tlačidla \"Ďalší\" pokračujte v nastavení vašej inštalácie Moodle.';
$string['wrongdestpath'] = 'Chybné cieľové umiestnenie';
$string['wrongsourcebase'] = 'Chybné URL zdrojového serveru';
$string['wrongzipfilename'] = 'Chybné meno súboru ZIP';
$string['wwwroot'] = 'Web adresa';
$string['wwwrooterror'] = 'Táto web adresa pravdepodobne nie je platná - táto inštalácia Moodle tu pravdepodobne nie je.';
$string['xmlrpcrecommended'] = 'Pre beh sieťových funkcionalít (\"Moodle Networking\") je treba nainštalovať voliteľnú knižnicu xlmrpc.';
$string['ziprequired'] = 'Moodle v súčasnosti vyžaduje PHP zásuvný modul ZIP. Knižnice info-ZIP alebo PclZip už nie sú používané.';
?>
| sproutlabs/moodle-mitms | install/lang/sk_utf8/installer.php | PHP | gpl-2.0 | 26,546 |
package org.iatoki.judgels.uriel.config;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;
import org.iatoki.judgels.play.JudgelsPlayProperties;
import org.iatoki.judgels.uriel.UrielProperties;
import play.inject.guice.GuiceApplicationBuilder;
import play.inject.guice.GuiceApplicationLoader;
public final class UrielApplicationLoader extends GuiceApplicationLoader {
@Override
public GuiceApplicationBuilder builder(Context context) {
org.iatoki.judgels.uriel.BuildInfo$ buildInfo = org.iatoki.judgels.uriel.BuildInfo$.MODULE$;
JudgelsPlayProperties.buildInstance(buildInfo.name(), buildInfo.version(), ConfigFactory.load());
Config config = ConfigFactory.load();
UrielProperties.buildInstance(config);
return super.builder(context);
}
}
| ia-toki/judgels-uriel | app/org/iatoki/judgels/uriel/config/UrielApplicationLoader.java | Java | gpl-2.0 | 823 |
<?php
/**
* Parameter of type integer in pixel for widgets.
*
* @file
* @ingroup Extensions
*/
namespace WidgetsFramework;
class IntegerInPixel extends Integer {
/**
* <ul>
* <li>The default value is 0</li>
* <li>The minimal value is 0</li>
* <li>No maximal value</li>
* <li>The parameter is not required</li>
* </ul>
* @param string $name The parameter name, case insensitive
* @throws \MWException When $name not set
*/
public function __construct($name) {
parent::__construct($name);
$this->setMin(0);
}
/**
* Converts from string to signed integer. The string can contains the "px" unit.
*
* The minimum and maximum value depends on the system:
* <ul>
* <li>32 bit systems have a range of -2147483648 to 2147483647 and</li>
* <li>32 bit systems have a range of -9223372036854775807 to 9223372036854775807.</li>
* </ul>
*
* Empty string throws an exception.
* @param string|boolean $value A string or boolean <i>true</i>
* @return int
* @throws UserError When value is not a signed integer.
*/
public function parse($value) {
// remove the px unit
if (is_string($value)) {
$value = str_ireplace(array('px', 'p', 'pt', 'pixel'), '', $value);
}
return parent::parse($value);
}
}
| Seizam/skrc | extensions/WidgetsFramework/Parameters/IntegerInPixel.php | PHP | gpl-2.0 | 1,392 |
// <copyright file="PlayServicesResolver.cs" company="Google Inc.">
// Copyright (C) 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
#if UNITY_ANDROID
namespace GooglePlayServices
{
using System;
using Google.JarResolver;
using UnityEditor;
using UnityEngine;
/// <summary>
/// Play services resolver. This is a background post processor
/// that copies over the Google play services .aar files that
/// plugins have declared as dependencies. If the Unity version is less than
/// 5, aar files are not supported so this class 'explodes' the aar file into
/// a plugin directory. Once the version of Unity is upgraded, the exploded
/// files are removed in favor of the .aar files.
/// </summary>
[InitializeOnLoad]
public class PlayServicesResolver : AssetPostprocessor
{
/// <summary>
/// The instance to the play services support object.
/// </summary>
private static PlayServicesSupport svcSupport;
/// <summary>
/// The resolver to use, injected to allow for version updating.
/// </summary>
private static IResolver _resolver;
/// <summary>
/// Initializes the <see cref="GooglePlayServices.PlayServicesResolver"/> class.
/// </summary>
static PlayServicesResolver()
{
svcSupport = PlayServicesSupport.CreateInstance(
"PlayServicesResolver",
EditorPrefs.GetString("AndroidSdkRoot"),
"ProjectSettings");
}
/// <summary>
/// Registers the resolver.
/// </summary>
/// <remarks>
/// The resolver with the greatest version number is retained
/// </remarks>
/// <returns>The resolver.</returns>
/// <param name="resolverImpl">Resolver impl.</param>
public static IResolver RegisterResolver(IResolver resolverImpl)
{
if (resolverImpl == null)
{
return _resolver;
}
if (_resolver == null || _resolver.Version() < resolverImpl.Version())
{
_resolver = resolverImpl;
}
//Debug.Log("Resolver version is now: " + _resolver.Version());
return _resolver;
}
/// <summary>
/// Gets the resolver.
/// </summary>
/// <value>The resolver.</value>
public static IResolver Resolver
{
get
{
return _resolver;
}
}
/// <summary>
/// Called by Unity when all assets have been updated. This
/// is used to kick off resolving the dependendencies declared.
/// </summary>
/// <param name="importedAssets">Imported assets. (unused)</param>
/// <param name="deletedAssets">Deleted assets. (unused)</param>
/// <param name="movedAssets">Moved assets. (unused)</param>
/// <param name="movedFromAssetPaths">Moved from asset paths. (unused)</param>
static void OnPostprocessAllAssets(string[] importedAssets,
string[] deletedAssets,
string[] movedAssets,
string[] movedFromAssetPaths)
{
if (!Resolver.ShouldAutoResolve(importedAssets, deletedAssets,
movedAssets, movedFromAssetPaths))
{
return;
}
Resolver.DoResolution(svcSupport,
"Assets/Plugins/Android",
HandleOverwriteConfirmation);
AssetDatabase.Refresh();
Debug.Log("Android Jar Dependencies: Resolution Complete");
}
/// <summary>
/// Add a menu item for resolving the jars manually.
/// </summary>
[MenuItem("Assets/Google Play Services/Settings")]
public static void SettingsDialog()
{
Resolver.ShowSettingsDialog();
}
/// <summary>
/// Add a menu item for resolving the jars manually.
/// </summary>
[MenuItem("Assets/Google Play Services/Resolve Client Jars")]
public static void MenuResolve()
{
Resolver.DoResolution(svcSupport, "Assets/Plugins/Android", HandleOverwriteConfirmation);
AssetDatabase.Refresh();
EditorUtility.DisplayDialog("Android Jar Dependencies",
"Resolution Complete", "OK");
}
/// <summary>
/// Handles the overwrite confirmation.
/// </summary>
/// <returns><c>true</c>, if overwrite confirmation was handled, <c>false</c> otherwise.</returns>
/// <param name="oldDep">Old dependency.</param>
/// <param name="newDep">New dependency replacing old.</param>
public static bool HandleOverwriteConfirmation(Dependency oldDep, Dependency newDep)
{
// Don't prompt overwriting the same version, just do it.
if (oldDep.BestVersion != newDep.BestVersion)
{
string msg = "Remove or replace " + oldDep.Artifact + " version " +
oldDep.BestVersion + " with version " + newDep.BestVersion + "?";
return EditorUtility.DisplayDialog("Android Jar Dependencies",
msg, "OK", "Keep");
}
return true;
}
}
}
#endif
| temdisponivel/TheKingdomOfTheBouncingDudes | Assets/PlayServicesResolver/Editor/PlayServicesResolver.cs | C# | gpl-2.0 | 6,047 |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
use Magento\Framework\Exception\NoSuchEntityException;
\Magento\TestFramework\Helper\Bootstrap::getInstance()->getInstance()->reinitialize();
/** @var \Magento\Framework\Registry $registry */
$registry = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(\Magento\Framework\Registry::class);
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', true);
/** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */
$productRepository = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
->get(\Magento\Catalog\Api\ProductRepositoryInterface::class);
try {
$product = $productRepository->get('simple products', false, null, true);
$productRepository->delete($product);
} catch (NoSuchEntityException $e) {
}
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', false);
| kunj1988/Magento2 | dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/product_simple_rollback.php | PHP | gpl-2.0 | 998 |
package de.neusta.soccerclient;
public class Starter {
public static void main(String[] args) throws InterruptedException {
Agent smith = new Agent("127.0.0.1","TeamA");
Agent hurz = new Agent("127.0.0.1","TeamA");
while(smith.isConnected()){
Thread.sleep(1000);
}
}
}
| jclohmann/soccer-client | src/main/java/de/neusta/soccerclient/Starter.java | Java | gpl-2.0 | 292 |
<?php
/**
* English language file for DokuWiki plugin snippets
*/
$lang['js']['preview'] = 'preview';
$lang['js']['insert'] = 'insert';
$lang['gb_snippets'] = 'Insert Templates';
$lang['popup_title'] = 'Snippets (Template Manager)';
// vim:ts=4:sw=4:et:enc=utf-8:
| chimeric/dokuwiki-plugin-snippets | lang/en/lang.php | PHP | gpl-2.0 | 272 |
<?php
/**
* components/com_wedding/views/templates/view.html.php
* @author : Phạm Văn An
* @version : 1.0
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport( 'joomla.application.component.view');
class weddingViewTemplates extends JView
{
function display($tpl = null)
{
// JToolBarHelper::addNew();
// JToolBarHelper::editListX();
// JToolBarHelper::publishList();
// JToolBarHelper::unpublishList();
// JToolBarHelper::deleteListX(JText::_('COM_WEDDING_DELETE_APPS_CONFIRM'));
$model = & $this->getModel();
$items = & $model->getItems();
$pagination = $model->getPagination();
$this->state = $this->get('State');
$this->addToolbar();
$this->assignRef('items', $items);
$this->assignRef('pagination', $pagination);
parent::display($tpl);
}
// function edit($tpl = null)
// {
// JToolBarHelper::save();
// JToolBarHelper::apply();
// JToolBarHelper::cancel();
//
// $cid = JRequest::getVar('cid', array(0), '', 'array');
// JArrayHelper::toInteger($cid);
// $id = $cid[0];
// if($id <= 0) $item = null;
// else
// {
// require_once(JPATH_COMPONENT.DS.'helpers'.DS.'template.php');
// $item = templateHelpers::getTemplate($id);
// }
//
// $this->assignRef('item', $item);
//
// parent::display($tpl);
// }
/**
* Add the page title and toolbar.
*
* @return void
*
* @since 1.6
*/
protected function addToolbar()
{
require_once JPATH_COMPONENT . '/helpers/wedding.php';
$canDo = WeddingHelper::getActions($this->state->get('filter.category_id'));
$user = JFactory::getUser();
JToolBarHelper::title(JText::_('COM_WEDDING_MANAGER_TEMPLATES'), 'templates.png');
if ($canDo->get('core.create'))
{
JToolBarHelper::addNew('template.add');
}
if (($canDo->get('core.edit')))
{
JToolBarHelper::editList('template.edit');
}
if ($canDo->get('core.edit.state'))
{
if ($this->state->get('filter.state') != 2)
{
JToolBarHelper::divider();
JToolBarHelper::publish('templates.publish', 'JTOOLBAR_PUBLISH', true);
JToolBarHelper::unpublish('templates.unpublish', 'JTOOLBAR_UNPUBLISH', true);
}
if ($this->state->get('filter.state') != -1)
{
JToolBarHelper::divider();
if ($this->state->get('filter.state') != 2)
{
JToolBarHelper::archiveList('templates.archive');
}
elseif ($this->state->get('filter.state') == 2)
{
JToolBarHelper::unarchiveList('templates.publish');
}
}
}
if ($canDo->get('core.edit.state'))
{
JToolBarHelper::checkin('templates.checkin');
}
if ($this->state->get('filter.state') == -2 && $canDo->get('core.delete'))
{
JToolBarHelper::deleteList('', 'templates.delete', 'JTOOLBAR_EMPTY_TRASH');
JToolBarHelper::divider();
}
elseif ($canDo->get('core.edit.state'))
{
JToolBarHelper::trash('templates.trash');
JToolBarHelper::divider();
}
if ($canDo->get('core.admin'))
{
JToolBarHelper::preferences('com_wedding');
}
}
} | ngxuanmui/hanhphuc.vn | administrator/components/com_wedding/views/templates/view.html.php | PHP | gpl-2.0 | 3,243 |
# here is a file of hackish extends to core ruby. how fun and confusing.
# they provide some syntatic sugar which makes things easier to read.
require 'core_extensions/array_chunk'
require 'core_extensions/nil_class'
require 'core_extensions/string_nameize'
require 'core_extensions/string_globalize'
require 'core_extensions/object_try'
require 'core_extensions/date_time_loc'
| mikeymicrophone/greenchange | lib/extends_to_core.rb | Ruby | gpl-2.0 | 381 |
/**
* Copyright (C) 2013, Moss Computing Inc.
*
* This file is part of jpa-mapping.
*
* jpa-mapping 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, or (at your option)
* any later version.
*
* jpa-mapping 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 jpa-mapping; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* Linking this library statically or dynamically with other modules is
* making a combined work based on this library. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* As a special exception, the copyright holders of this library give you
* permission to link this library with independent modules to produce an
* executable, regardless of the license terms of these independent
* modules, and to copy and distribute the resulting executable under
* terms of your choice, provided that you also meet, for each linked
* independent module, the terms and conditions of the license of that
* module. An independent module is a module which is not derived from
* or based on this library. If you modify this library, you may extend
* this exception to your version of the library, but you are not
* obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
package com.moss.jpa.mapping;
import java.util.LinkedList;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;
/**
<persistence-unit name="lender-data">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>lenderDataManaged</jta-data-source>
<non-jta-data-source>lenderDataUnManaged</non-jta-data-source>
<class>org.superbiz.injection.jpa.Movie</class>
<properties>
<property name="hibernate.hbm2ddl.auto" value="create-update"/>
<property name="hibernate.transaction.manager_lookup_class"
value="org.apache.openejb.hibernate.TransactionManagerLookup"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.DerbyDialect"/>
</properties>
</persistence-unit>
*/
@XmlType(name="persistence-unit", namespace="http://java.sun.com/xml/ns/persistence", propOrder={
"providerClass",
"jtaDataSourceName",
"nonJtaDataSourceName",
"persistentClasses",
"excludeUnlistedClasses",
"properties"
})
public class PersistenceUnitConfig {
private String name;
private String providerClass;
private String jtaDataSourceName;
private String nonJtaDataSourceName;
private Boolean excludeUnlistedClasses = true;
private List<String> persistentClasses = new LinkedList<String>();
private List<PersistenceUnitProperty> properties = new LinkedList<PersistenceUnitProperty>();
public PersistenceUnitConfig() {
}
public PersistenceUnitConfig(String name) {
super();
this.name = name;
}
public void setProperty(String name, String value){
this.properties.add(new PersistenceUnitProperty(name, value));
}
public void add(PersistenceUnitProperty property){
this.properties.add(property);
}
public void add(Class persistentClass){
this.persistentClasses.add(persistentClass.getCanonicalName());
}
public void addClass(String className){
this.persistentClasses.add(className);
}
@XmlAttribute
public final String getName() {
return name;
}
public final void setName(String name) {
this.name = name;
}
@XmlElement(name="provider")
public final String getProviderClass() {
return providerClass;
}
public final void setProviderClass(String providerClass) {
this.providerClass = providerClass;
}
@XmlElement(name="jta-data-source")
public final String getJtaDataSourceName() {
return jtaDataSourceName;
}
public final void setJtaDataSourceName(String jtaDataSourceName) {
this.jtaDataSourceName = jtaDataSourceName;
}
@XmlElement(name="non-jta-data-source")
public final String getNonJtaDataSourceName() {
return nonJtaDataSourceName;
}
public final void setNonJtaDataSourceName(String nonJtaDataSourceName) {
this.nonJtaDataSourceName = nonJtaDataSourceName;
}
@XmlElement(name="class")
public final List<String> getPersistentClasses() {
return persistentClasses;
}
public final void setPersistentClasses(List<String> persistentClasses) {
this.persistentClasses = persistentClasses;
}
@XmlElementWrapper(name="properties")
@XmlElement(name="property")
public final List<PersistenceUnitProperty> getProperties() {
return properties;
}
public final void setProperties(List<PersistenceUnitProperty> properties) {
this.properties = properties;
}
@XmlElement(name="exclude-unlisted-classes")
public final Boolean getExcludeUnlistedClasses() {
return excludeUnlistedClasses;
}
public final void setExcludeUnlistedClasses(Boolean excludeUnlistedClasses) {
this.excludeUnlistedClasses = excludeUnlistedClasses;
}
}
| mosscode/jpa-mapping | src/main/java/com/moss/jpa/mapping/PersistenceUnitConfig.java | Java | gpl-2.0 | 5,467 |
<?php
$lang['db_batch_missing_index'] = "一个或多个批量更新缺少指定索引.";
$lang['db_column_definition_required'] = "必须提供字段定义.";
$lang['db_column_name_required'] = "必须提供字段名.";
$lang['db_del_must_use_where'] = "删除记录时必须包含\"where\"或\"like\"子句.";
$lang['db_error_heading'] = "发生了一个数据库错误";
$lang['db_field_param_missing'] = "必须提供表名参数才能取得字段信息.";
$lang['db_filepath_error'] = "您指定的文件路径无法写入数据.";
$lang['db_invalid_cache_path'] = "缓存路径无效或不可写.";
$lang['db_invalid_connection_str'] = "用您给出的连接字符串无法获得数据库设置.";
$lang['db_invalid_query'] = "查询无效.";
$lang['db_must_set_database'] = "必須在你的資料庫設置檔案內設定資料庫名稱";
$lang['db_must_set_table'] = "查询中必须设置数据库表.";
$lang['db_must_use_index'] = "必须为批量更新指定索引.";
$lang['db_must_use_set'] = "必须使用\"set\"命令更新记录.";
$lang['db_must_use_where'] = "更新记录时必须包含\"where\"子句.";
$lang['db_table_name_required'] = "必须提供表名.";
$lang['db_transaction_failure'] = "事务失败: 已回滚.";
$lang['db_unable_to_connect'] = "使用给出的设置无法连接数据库.";
$lang['db_unable_to_create'] = "无法创建指定的数据库: %s";
$lang['db_unable_to_drop'] = "无法删除数据库.";
$lang['db_unable_to_select'] = "无法选择指定的数据库: %s";
$lang['db_unable_to_set_charset'] = "无法设置客户端连接的字符集: %s";
$lang['db_unsuported_compression'] = "不支持此文件压缩格式.";
$lang['db_unsuported_feature'] = "数据库平台不支持此功能.";
$lang['db_unsupported_function'] = "您使用的数据库不支持此功能.";
| jkzleond/school | system/language/zh/db_lang.php | PHP | gpl-2.0 | 1,820 |
/*
* 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.catalina.authenticator;
import java.io.File;
import java.io.IOException;
import java.security.Principal;
import java.security.PrivilegedAction;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.regex.Pattern;
import javax.security.auth.Subject;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
import javax.servlet.http.HttpServletResponse;
import org.apache.catalina.Globals;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.Realm;
import org.apache.catalina.connector.Request;
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
import org.apache.tomcat.util.buf.ByteChunk;
import org.apache.tomcat.util.buf.MessageBytes;
import org.apache.tomcat.util.codec.binary.Base64;
import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
import org.ietf.jgss.GSSException;
import org.ietf.jgss.GSSManager;
import org.ietf.jgss.Oid;
/**
* A SPNEGO authenticator that uses the SPNEGO/Kerberos support built in to Java
* 6. Successful Kerberos authentication depends on the correct configuration of
* multiple components. If the configuration is invalid, the error messages are
* often cryptic although a Google search will usually point you in the right
* direction.
*/
public class SpnegoAuthenticator extends AuthenticatorBase {
private static final Log log = LogFactory.getLog(SpnegoAuthenticator.class);
private String loginConfigName = Constants.DEFAULT_LOGIN_MODULE_NAME;
public String getLoginConfigName() {
return loginConfigName;
}
public void setLoginConfigName(String loginConfigName) {
this.loginConfigName = loginConfigName;
}
private boolean storeDelegatedCredential = true;
public boolean isStoreDelegatedCredential() {
return storeDelegatedCredential;
}
public void setStoreDelegatedCredential(
boolean storeDelegatedCredential) {
this.storeDelegatedCredential = storeDelegatedCredential;
}
private Pattern noKeepAliveUserAgents = null;
public String getNoKeepAliveUserAgents() {
Pattern p = noKeepAliveUserAgents;
if (p == null) {
return null;
} else {
return p.pattern();
}
}
public void setNoKeepAliveUserAgents(String noKeepAliveUserAgents) {
if (noKeepAliveUserAgents == null ||
noKeepAliveUserAgents.length() == 0) {
this.noKeepAliveUserAgents = null;
} else {
this.noKeepAliveUserAgents = Pattern.compile(noKeepAliveUserAgents);
}
}
@Override
protected String getAuthMethod() {
return Constants.SPNEGO_METHOD;
}
@Override
protected void initInternal() throws LifecycleException {
super.initInternal();
// Kerberos configuration file location
String krb5Conf = System.getProperty(Constants.KRB5_CONF_PROPERTY);
if (krb5Conf == null) {
// System property not set, use the Tomcat default
File krb5ConfFile = new File(container.getCatalinaBase(),
Constants.DEFAULT_KRB5_CONF);
System.setProperty(Constants.KRB5_CONF_PROPERTY,
krb5ConfFile.getAbsolutePath());
}
// JAAS configuration file location
String jaasConf = System.getProperty(Constants.JAAS_CONF_PROPERTY);
if (jaasConf == null) {
// System property not set, use the Tomcat default
File jaasConfFile = new File(container.getCatalinaBase(),
Constants.DEFAULT_JAAS_CONF);
System.setProperty(Constants.JAAS_CONF_PROPERTY,
jaasConfFile.getAbsolutePath());
}
}
@Override
public boolean authenticate(Request request, HttpServletResponse response)
throws IOException {
// Have we already authenticated someone?
Principal principal = request.getUserPrincipal();
String ssoId = (String) request.getNote(Constants.REQ_SSOID_NOTE);
if (principal != null) {
if (log.isDebugEnabled()) {
log.debug("Already authenticated '" + principal.getName() + "'");
}
// Associate the session with any existing SSO session
if (ssoId != null) {
associate(ssoId, request.getSessionInternal(true));
}
return true;
}
// Is there an SSO session against which we can try to reauthenticate?
if (ssoId != null) {
if (log.isDebugEnabled()) {
log.debug("SSO Id " + ssoId + " set; attempting " +
"reauthentication");
}
/* Try to reauthenticate using data cached by SSO. If this fails,
either the original SSO logon was of DIGEST or SSL (which
we can't reauthenticate ourselves because there is no
cached username and password), or the realm denied
the user's reauthentication for some reason.
In either case we have to prompt the user for a logon */
if (reauthenticateFromSSO(ssoId, request)) {
return true;
}
}
MessageBytes authorization =
request.getCoyoteRequest().getMimeHeaders()
.getValue("authorization");
if (authorization == null) {
if (log.isDebugEnabled()) {
log.debug(sm.getString("authenticator.noAuthHeader"));
}
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
}
authorization.toBytes();
ByteChunk authorizationBC = authorization.getByteChunk();
if (!authorizationBC.startsWithIgnoreCase("negotiate ", 0)) {
if (log.isDebugEnabled()) {
log.debug(sm.getString(
"spnegoAuthenticator.authHeaderNotNego"));
}
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
}
authorizationBC.setOffset(authorizationBC.getOffset() + 10);
byte[] decoded = Base64.decodeBase64(authorizationBC.getBuffer(),
authorizationBC.getOffset(),
authorizationBC.getLength());
if (decoded.length == 0) {
if (log.isDebugEnabled()) {
log.debug(sm.getString(
"spnegoAuthenticator.authHeaderNoToken"));
}
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
}
LoginContext lc = null;
GSSContext gssContext = null;
byte[] outToken = null;
try {
try {
lc = new LoginContext(getLoginConfigName());
lc.login();
} catch (LoginException e) {
log.error(sm.getString("spnegoAuthenticator.serviceLoginFail"),
e);
response.sendError(
HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
return false;
}
Subject subject = lc.getSubject();
// Assume the GSSContext is stateless
// TODO: Confirm this assumption
final GSSManager manager = GSSManager.getInstance();
// IBM JDK only understands indefinite lifetime
final int credentialLifetime;
if (Globals.IS_IBM_JVM) {
credentialLifetime = GSSCredential.INDEFINITE_LIFETIME;
} else {
credentialLifetime = GSSCredential.DEFAULT_LIFETIME;
}
final PrivilegedExceptionAction<GSSCredential> action =
new PrivilegedExceptionAction<GSSCredential>() {
@Override
public GSSCredential run() throws GSSException {
return manager.createCredential(null,
credentialLifetime,
new Oid("1.3.6.1.5.5.2"),
GSSCredential.ACCEPT_ONLY);
}
};
gssContext = manager.createContext(Subject.doAs(subject, action));
outToken = Subject.doAs(lc.getSubject(), new AcceptAction(gssContext, decoded));
if (outToken == null) {
if (log.isDebugEnabled()) {
log.debug(sm.getString(
"spnegoAuthenticator.ticketValidateFail"));
}
// Start again
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
}
principal = Subject.doAs(subject, new AuthenticateAction(
context.getRealm(), gssContext, storeDelegatedCredential));
} catch (GSSException e) {
if (log.isDebugEnabled()) {
log.debug(sm.getString("spnegoAuthenticator.ticketValidateFail"), e);
}
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
} catch (PrivilegedActionException e) {
Throwable cause = e.getCause();
if (cause instanceof GSSException) {
if (log.isDebugEnabled()) {
log.debug(sm.getString("spnegoAuthenticator.serviceLoginFail"), e);
}
} else {
log.error(sm.getString("spnegoAuthenticator.serviceLoginFail"), e);
}
response.setHeader("WWW-Authenticate", "Negotiate");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
} finally {
if (gssContext != null) {
try {
gssContext.dispose();
} catch (GSSException e) {
// Ignore
}
}
if (lc != null) {
try {
lc.logout();
} catch (LoginException e) {
// Ignore
}
}
}
// Send response token on success and failure
response.setHeader("WWW-Authenticate", "Negotiate "
+ Base64.encodeBase64String(outToken));
if (principal != null) {
register(request, response, principal, Constants.SPNEGO_METHOD,
principal.getName(), null);
Pattern p = noKeepAliveUserAgents;
if (p != null) {
MessageBytes ua =
request.getCoyoteRequest().getMimeHeaders().getValue(
"user-agent");
if (ua != null && p.matcher(ua.toString()).matches()) {
response.setHeader("Connection", "close");
}
}
return true;
}
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
return false;
}
/**
* This class gets a gss credential via a privileged action.
*/
private static class AcceptAction implements PrivilegedExceptionAction<byte[]> {
GSSContext gssContext;
byte[] decoded;
AcceptAction(GSSContext context, byte[] decodedToken) {
this.gssContext = context;
this.decoded = decodedToken;
}
@Override
public byte[] run() throws GSSException {
return gssContext.acceptSecContext(decoded,
0, decoded.length);
}
}
private static class AuthenticateAction implements PrivilegedAction<Principal> {
private final Realm realm;
private final GSSContext gssContext;
private final boolean storeDelegatedCredential;
public AuthenticateAction(Realm realm, GSSContext gssContext,
boolean storeDelegatedCredential) {
this.realm = realm;
this.gssContext = gssContext;
this.storeDelegatedCredential = storeDelegatedCredential;
}
@Override
public Principal run() {
return realm.authenticate(gssContext, storeDelegatedCredential);
}
}
}
| nrgaway/qubes-tools | experimental/tomcat/apache-tomcat-8.0.15-src/java/org/apache/catalina/authenticator/SpnegoAuthenticator.java | Java | gpl-2.0 | 13,418 |
<?php
class TennisUIRadioColorSwatchesSingle extends TennisUIRadioList {
public $colors;
/**
*
*
* @package Tennis
* @subpackage Core
* @author thethangtran <tranthethang@gmail.com>
* @since 1.0.0
*
*/
public function __construct($args = array()) {
parent::__construct($args);
$this->options = array();
$this->colors = isset($args['colors']) ? $args['colors'] : array();
foreach ($this->colors as $color) {
$tmp = array();
$tmp['attributes']['data-primary'] = $color['primary'];
$tmp['value'] = $color['primary'];
if ('customize' == $tmp['value']) {
$tmp['control_begin'] = sprintf('<label onclick="TennisUI.select_colorSwatchesSingle(event, jQuery(this));" data-primary="customize" for="%s" class="color-swatches-item color-swatches-single-customize">', "{$this->name}-{$tmp['value']}");
$tmp['control_begin'].= sprintf('<span class="color-swatches-primary">%1$s</span>', $color['label']);
} else {
$tmp['control_begin'] = sprintf('<label onclick="TennisUI.select_colorSwatchesSingle(event, jQuery(this));" data-primary="%1$s" for="%2$s" class="color-swatches-item" style="border-color: %1$s !important;">', $color['primary'], "{$this->name}-{$tmp['value']}");
$tmp['control_begin'].= sprintf('<span class="color-swatches-primary %3$s" style="background-color: %1$s;">%2$s</span>', $color['primary'], $color['label'], implode(' ', $color['classes']));
}
$tmp['control_end'] = '</label>';
$this->options[] = $tmp;
}
$this->control_begin = $this->control_begin . '<div class="row row_space15 clearfix">';
$this->control_end = '</div>' . $this->control_end;
$this->option_args['wrap_begin'] = '<div class="col-xs-4 col-md-1 color-swatches-outer color-swatches-single-outer">';
$this->option_args['wrap_end'] = '</div>';
}
/**
*
*
* @package Tennis
* @subpackage Core
* @author thethangtran <tranthethang@gmail.com>
* @since 1.0.0
*
*/
protected function get_control() {
$this->classes[] = 'tennis-ui-radio-color-swatches';
return parent::get_control();
}
} | nick144/Tournaments | classes/ui/radio/list/colorswatches.single.radio.ui.class.php | PHP | gpl-2.0 | 2,343 |
#include "StdAfx.h"
#include "strategy_cmds.h"
#include "events.h"
strategy_cmds::strategy_cmds(CWnd* dlg,boost::unordered_map<std::wstring,plugins_t>* plugins)
{
_dlg = dlg;
_plugins = plugins;
_reg_start = boost::xpressive::wsregex::compile(L"^start\\s+.+",boost::xpressive::icase);
_reg_stop = boost::xpressive::wsregex::compile(L"^stop\\s+.+",boost::xpressive::icase);
_reg_status = boost::xpressive::wsregex::compile(L"^status\\s+.+",boost::xpressive::icase);
}
strategy_cmds::~strategy_cmds(void)
{
}
bool strategy_cmds::execute(const std::wstring& cmd)
{
if(boost::xpressive::regex_match(cmd,_reg_start))
{
std::wstring name = cmd.substr(wcslen(L"start"));
boost::trim(name);
std::wstring plugins,params;
get_params(name,plugins,params);
auto find = _plugins->find(plugins);
if(find != _plugins->end())
{
js_result_t rs = find->second->start(dark::windows::utf::to_utf8(params));
std::wostringstream out;
out<<L"("<<rs->code<<L") "<<dark::windows::utf::to_utf16(rs->msg);
event_info_t e = events::create_event_info(DARK_EVENT_SHOW_MSG, out.str(),cmd);
singleton_events::get_mutable_instance().push(e);
_dlg->PostMessage(DARK_EVENT_NEW);
return true;
}
return false;
}
else if(boost::xpressive::regex_match(cmd,_reg_stop))
{
std::wstring name = cmd.substr(wcslen(L"stop"));
boost::trim(name);
std::wstring plugins,params;
get_params(name,plugins,params);
auto find = _plugins->find(plugins);
if(find != _plugins->end())
{
js_result_t rs = find->second->stop(dark::windows::utf::to_utf8(params));
std::wostringstream out;
out<<L"("<<rs->code<<L") "<<dark::windows::utf::to_utf16(rs->msg);
event_info_t e = events::create_event_info(DARK_EVENT_SHOW_MSG, out.str(),cmd);
singleton_events::get_mutable_instance().push(e);
_dlg->PostMessage(DARK_EVENT_NEW);
return true;
}
return false;
}
else if(boost::xpressive::regex_match(cmd,_reg_status))
{
std::wstring name = cmd.substr(wcslen(L"status"));
boost::trim(name);
auto find = _plugins->find(name);
if(find != _plugins->end())
{
js_result_t rs = find->second->status();
std::wostringstream out;
out<<L"("<<rs->code<<L") "<<dark::windows::utf::to_utf16(rs->msg);
event_info_t e = events::create_event_info(DARK_EVENT_SHOW_MSG, out.str(),cmd);
singleton_events::get_mutable_instance().push(e);
_dlg->PostMessage(DARK_EVENT_NEW);
return true;
}
return false;
}
return false;
}
void strategy_cmds::get_params(const std::wstring& cmd,std::wstring& name,std::wstring& params)
{
BOOST_AUTO(find,cmd.find(L' '));
BOOST_AUTO(find_tab,cmd.find(L' '));
if(find_tab != std::wstring::npos)
{
if(find == std::wstring::npos)
{
find = find_tab;
}
else if(find_tab < find)
{
find = find_tab;
}
}
if(find == std::wstring::npos)
{
name = cmd;
}
else
{
name = cmd.substr(0,find);
params = cmd.substr(find);
boost::algorithm::trim(name);
boost::algorithm::trim(params);
}
} | zuiwuchang/dark-cpp-ghoul | ghoul/ghoul/strategy_cmds.cpp | C++ | gpl-2.0 | 2,986 |
# -*- coding: utf-8 -*-
#
#
# TheVirtualBrain-Framework Package. This package holds all Data Management, and
# Web-UI helpful to run brain-simulations. To use it, you also need do download
# TheVirtualBrain-Scientific Package (for simulators). See content of the
# documentation-folder for more details. See also http://www.thevirtualbrain.org
#
# (c) 2012-2013, Baycrest Centre for Geriatric Care ("Baycrest")
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License version 2 as published by the Free
# Software Foundation. This program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details. You should have received a copy of the GNU General
# Public License along with this program; if not, you can download it here
# http://www.gnu.org/licenses/old-licenses/gpl-2.0
#
#
# CITATION:
# When using The Virtual Brain for scientific publications, please cite it as follows:
#
# Paula Sanz Leon, Stuart A. Knock, M. Marmaduke Woodman, Lia Domide,
# Jochen Mersmann, Anthony R. McIntosh, Viktor Jirsa (2013)
# The Virtual Brain: a simulator of primate brain network dynamics.
# Frontiers in Neuroinformatics (7:10. doi: 10.3389/fninf.2013.00010)
#
#
"""
.. moduleauthor:: Bogdan Neacsa <bogdan.neacsa@codemart.ro>
"""
import copy
import json
import numpy
import unittest
import cherrypy
from time import sleep
from tvb.tests.framework.interfaces.web.controllers.base_controller_test import BaseControllersTest
from tvb.config import SIMULATOR_MODULE, SIMULATOR_CLASS
from tvb.interfaces.web.controllers import common
from tvb.interfaces.web.controllers.burst.burst_controller import BurstController
from tvb.datatypes.connectivity import Connectivity
from tvb.core.entities import model
from tvb.core.entities.file.files_helper import FilesHelper
from tvb.core.entities.storage import dao
from tvb.core.entities.model.model_burst import BurstConfiguration, NUMBER_OF_PORTLETS_PER_TAB
from tvb.core.entities.transient.burst_configuration_entities import AdapterConfiguration
from tvb.core.entities.transient.structure_entities import DataTypeMetaData
from tvb.core.adapters.abcadapter import ABCAdapter
from tvb.core.services.burst_service import BurstService
from tvb.core.services.operation_service import OperationService
from tvb.core.services.flow_service import FlowService
from tvb.tests.framework.adapters.storeadapter import StoreAdapter
from tvb.tests.framework.adapters.simulator.simulator_adapter_test import SIMULATOR_PARAMETERS
class BurstContollerTest(BaseControllersTest):
""" Unit tests for burst_controller """
def setUp(self):
"""
Sets up the environment for testing;
creates a `BurstController`
"""
BaseControllersTest.init(self)
self.burst_c = BurstController()
def tearDown(self):
"""
Cleans up the environment after testing is done
"""
self.cleanup()
self.clean_database()
def test_index(self):
"""
Test that index returns a dict with all required keys. Also check
that the default portlets are populated, with only the first being
the TimeSeries portlet and the rest are empty.
"""
result_dict = self.burst_c.index()
self.assertTrue('burst_list' in result_dict and result_dict['burst_list'] == [])
self.assertTrue('available_metrics' in result_dict and isinstance(result_dict['available_metrics'], list))
self.assertTrue('portletList' in result_dict and isinstance(result_dict['portletList'], list))
self.assertEqual(result_dict[common.KEY_SECTION], "burst")
self.assertTrue('burstConfig' in result_dict and isinstance(result_dict['burstConfig'], BurstConfiguration))
portlets = json.loads(result_dict['selectedPortlets'])
portlet_id = dao.get_portlet_by_identifier("TimeSeries").id
for tab_idx, tab in enumerate(portlets):
for index_in_tab, value in enumerate(tab):
if tab_idx == 0 and index_in_tab == 0:
self.assertEqual(value, [portlet_id, "TimeSeries"])
else:
self.assertEqual(value, [-1, "None"])
self.assertTrue(result_dict['draw_hidden_ranges'])
def test_load_burst_history(self):
"""
Create two burst, load the burst and check that we get back
the same stored bursts.
"""
self._store_burst(self.test_project.id, 'started', {'test': 'test'}, 'burst1')
burst = self._store_burst(self.test_project.id, 'started', {'test': 'test'}, 'burst2')
cherrypy.session[common.KEY_BURST_CONFIG] = burst
result_dict = self.burst_c.load_burst_history()
burst_history = result_dict['burst_list']
self.assertEqual(len(burst_history), 2)
for burst in burst_history:
self.assertTrue(burst.name in ('burst1', 'burst2'))
def test_get_selected_burst(self):
"""
Create burst, add it to session, then check that get_selected_burst
return the same burst. Also check that for an unstored entity we get
back 'None'
"""
burst_entity = BurstConfiguration(self.test_project.id, 'started', {}, 'burst1')
cherrypy.session[common.KEY_BURST_CONFIG] = burst_entity
stored_id = self.burst_c.get_selected_burst()
self.assertEqual(stored_id, 'None')
burst_entity = dao.store_entity(burst_entity)
cherrypy.session[common.KEY_BURST_CONFIG] = burst_entity
stored_id = self.burst_c.get_selected_burst()
self.assertEqual(str(stored_id), str(burst_entity.id))
def test_get_portlet_configurable_interface(self):
"""
Look up that an AdapterConfiguration is returned for the default
portlet configuration, if we look at index (0, 0) where TimeSeries portlet
should be default.
"""
self.burst_c.index()
result = self.burst_c.get_portlet_configurable_interface(0)
self.assertTrue(common.KEY_PARAMETERS_CONFIG in result)
self.assertFalse(result[common.KEY_PARAMETERS_CONFIG])
adapter_config = result['adapters_list']
# Default TimeSeries portlet should be available, so we expect
# adapter_config to be a list of AdapterConfiguration with one element
self.assertEqual(len(adapter_config), 1)
self.assertTrue(isinstance(adapter_config[0], AdapterConfiguration))
def test_portlet_tab_display(self):
"""
Update the default portlet configuration, by storing a TimeSeries
portlet for all postions. Then check that we get the same configuration.
"""
self.burst_c.index()
portlet_id = dao.get_portlet_by_identifier("TimeSeries").id
one_tab = [[portlet_id, "TimeSeries"] for _ in range(NUMBER_OF_PORTLETS_PER_TAB)]
full_tabs = [one_tab for _ in range(BurstConfiguration.nr_of_tabs)]
data = {'tab_portlets_list': json.dumps(full_tabs)}
result = self.burst_c.portlet_tab_display(**data)
selected_portlets = result['portlet_tab_list']
for entry in selected_portlets:
self.assertEqual(entry.id, portlet_id)
def test_get_configured_portlets_no_session(self):
"""
Test that if we have no burst stored in session, an empty
portlet list is reduced.
"""
result = self.burst_c.get_configured_portlets()
self.assertTrue('portlet_tab_list' in result)
self.assertTrue(result['portlet_tab_list'] == [])
def test_get_configured_portlets_default(self):
"""
Check that the default configuration holds one portlet
and it's identifier is 'TimeSeries'.
"""
self.burst_c.index()
result = self.burst_c.get_configured_portlets()
self.assertTrue('portlet_tab_list' in result)
portlets_list = result['portlet_tab_list']
self.assertEqual(len(portlets_list), 1)
self.assertTrue(portlets_list[0].algorithm_identifier == 'TimeSeries')
def test_get_portlet_session_configuration(self):
"""
Test that the default portlet session sonciguration is generated
as expected, with a default TimeSeries portlet and rest empty.
"""
self.burst_c.index()
result = json.loads(self.burst_c.get_portlet_session_configuration())
portlet_id = dao.get_portlet_by_identifier("TimeSeries").id
for tab_idx, tab in enumerate(result):
for index_in_tab, value in enumerate(tab):
if tab_idx == 0 and index_in_tab == 0:
self.assertEqual(value, [portlet_id, "TimeSeries"])
else:
self.assertEqual(value, [-1, "None"])
def test_save_parameters_no_relaunch(self):
"""
Test the save parameters for the default TimeSeries portlet and
pass an empty dictionary as the 'new' data. In this case a relaunch
should not be required.
"""
self.burst_c.index()
self.assertEqual('noRelaunch', self.burst_c.save_parameters(0, portlet_parameters="{}"))
def test_rename_burst(self):
"""
Create and store a burst, then rename it and check that it
works as expected.
"""
burst = self._store_burst(self.test_project.id, 'started', {'test': 'test'}, 'burst1')
self.burst_c.rename_burst(burst.id, "test_new_burst_name")
renamed_burst = dao.get_burst_by_id(burst.id)
self.assertEqual(renamed_burst.name, "test_new_burst_name")
def test_launch_burst(self):
"""
Launch a burst and check that it finishes correctly and before timeout (100)
"""
self.burst_c.index()
connectivity = self._burst_create_connectivity()
launch_params = copy.deepcopy(SIMULATOR_PARAMETERS)
launch_params['connectivity'] = connectivity.gid
launch_params['simulation_length'] = '10'
launch_params = {"simulator_parameters": json.dumps(launch_params)}
burst_id = json.loads(self.burst_c.launch_burst("new", "test_burst", **launch_params))['id']
waited = 1
timeout = 100
burst_config = dao.get_burst_by_id(burst_id)
while burst_config.status == BurstConfiguration.BURST_RUNNING and waited <= timeout:
sleep(0.5)
waited += 0.5
burst_config = dao.get_burst_by_id(burst_config.id)
if waited > timeout:
self.fail("Timed out waiting for simulations to finish.")
if burst_config.status != BurstConfiguration.BURST_FINISHED:
BurstService().stop_burst(burst_config)
self.fail("Burst should have finished successfully.")
def test_load_burst(self):
"""
Test loading and burst and checking you get expected dictionary.
"""
self.burst_c.index()
burst = self._store_burst(self.test_project.id, 'started', {'test': 'test'}, 'burst1')
result = json.loads(self.burst_c.load_burst(burst.id))
self.assertEqual(result["status"], "started")
self.assertEqual(result['group_gid'], None)
self.assertEqual(result['selected_tab'], 0)
def test_load_burst_removed(self):
"""
Add burst to session, then remove burst from database. Try to load
burst and check that it will raise exception and remove it from session.
"""
burst = self._store_burst(self.test_project.id, 'started', {'test': 'test'}, 'burst1')
cherrypy.session[common.KEY_BURST_CONFIG] = burst
burst_id = burst.id
BurstService().cancel_or_remove_burst(burst_id)
self.assertRaises(Exception, self.burst_c.load_burst, burst_id)
self.assertTrue(common.KEY_BURST_CONFIG not in cherrypy.session)
def test_remove_burst_not_session(self):
"""
Test removing a burst that is not the one currently stored in
session. SHould just remove and return a 'done' string.
"""
burst = self._store_burst(self.test_project.id, 'finished', {'test': 'test'}, 'burst1')
cherrypy.session[common.KEY_BURST_CONFIG] = burst
another_burst = self._store_burst(self.test_project.id, 'finished', {'test': 'test'}, 'burst1')
result = self.burst_c.cancel_or_remove_burst(another_burst.id)
self.assertEqual(result, 'done')
def test_remove_burst_in_session(self):
"""
Test that if we remove the burst that is the current one from the
session, we get a 'reset-new' string as result.
"""
burst = self._store_burst(self.test_project.id, 'finished', {'test': 'test'}, 'burst1')
cherrypy.session[common.KEY_BURST_CONFIG] = burst
result = self.burst_c.cancel_or_remove_burst(burst.id)
self.assertEqual(result, 'reset-new')
def _store_burst(self, proj_id, status, sim_config, name):
"""
Create and store a burst entity, for the project given project_id, having the
given status and simulator parames config, under the given name.
"""
burst = BurstConfiguration(proj_id, status, sim_config, name)
burst.prepare_before_save()
return dao.store_entity(burst)
def _burst_create_connectivity(self):
"""
Create a connectivity that will be used in "non-dummy" burst launches (with the actual simulator).
TODO: This is duplicate code from burstservice_test. Should go into the 'generic' DataType factory
once that is done.
"""
meta = {DataTypeMetaData.KEY_SUBJECT: "John Doe", DataTypeMetaData.KEY_STATE: "RAW_DATA"}
algorithm, algo_group = FlowService().get_algorithm_by_module_and_class(SIMULATOR_MODULE, SIMULATOR_CLASS)
self.operation = model.Operation(self.test_user.id, self.test_project.id, algo_group.id,
json.dumps(''),
meta=json.dumps(meta), status=model.STATUS_STARTED,
method_name=ABCAdapter.LAUNCH_METHOD)
self.operation = dao.store_entity(self.operation)
storage_path = FilesHelper().get_project_folder(self.test_project, str(self.operation.id))
connectivity = Connectivity(storage_path=storage_path)
connectivity.weights = numpy.ones((74, 74))
connectivity.centres = numpy.ones((74, 3))
adapter_instance = StoreAdapter([connectivity])
OperationService().initiate_prelaunch(self.operation, adapter_instance, {})
return connectivity
def suite():
"""
Gather all the tests in a test suite.
"""
test_suite = unittest.TestSuite()
test_suite.addTest(unittest.makeSuite(BurstContollerTest))
return test_suite
if __name__ == "__main__":
#So you can run tests individually.
TEST_RUNNER = unittest.TextTestRunner()
TEST_SUITE = suite()
TEST_RUNNER.run(TEST_SUITE)
| rajul/tvb-framework | tvb/tests/framework/interfaces/web/controllers/burst_controller_test.py | Python | gpl-2.0 | 15,161 |
Ext.define('Rd.view.meshes.gridMeshes' ,{
extend:'Ext.grid.Panel',
alias : 'widget.gridMeshes',
multiSelect: true,
store : 'sMeshes',
stateful: true,
stateId: 'StateGridMeshes',
stateEvents:['groupclick','columnhide'],
border: false,
requires: [
'Rd.view.components.ajaxToolbar'
],
viewConfig: {
loadMask:true
},
urlMenu: '/cake2/rd_cake/meshes/menu_for_grid.json',
bbar: [
{ xtype: 'component', itemId: 'count', tpl: i18n('sResult_count_{count}'), style: 'margin-right:5px', cls: 'lblYfi' }
],
initComponent: function(){
var me = this;
var filters = {
ftype : 'filters',
encode : true,
local : false
};
me.tbar = Ext.create('Rd.view.components.ajaxToolbar',{'url': me.urlMenu});
me.features = [filters];
me.columns = [
{xtype: 'rownumberer'},
{ text: i18n('sOwner'), dataIndex: 'owner', tdCls: 'gridTree', flex: 1,filter: {type: 'string'}},
{ text: i18n('sName'), dataIndex: 'name', tdCls: 'gridTree', flex: 1,filter: {type: 'string'}},
{ text: 'SSID', dataIndex: 'ssid', tdCls: 'gridTree', flex: 1,filter: {type: 'string'},hidden: true},
{ text: 'BSSID', dataIndex: 'bssid', tdCls: 'gridTree', flex: 1,filter: {type: 'string'},hidden: true},
{ text: 'Node count', dataIndex: 'node_count', tdCls: 'gridTree', flex: 1},
{ text: 'Nodes up', dataIndex: 'nodes_up', tdCls: 'gridTree', flex: 1},
{ text: 'Nodes down', dataIndex: 'nodes_down', tdCls: 'gridTree', flex: 1},
{
text : i18n('sNotes'),
sortable: false,
width : 130,
xtype : 'templatecolumn',
tpl : new Ext.XTemplate(
"<tpl if='notes == true'><div class=\"note\">"+i18n("sExisting_Notes")+"</div></tpl>"
),
dataIndex: 'notes'
}
];
me.callParent(arguments);
}
});
| smartwifi/stores-rd | rd_legacy/app/view/meshes/gridMeshes.js | JavaScript | gpl-2.0 | 2,214 |
<?php
// $Id: views-view.tpl.php,v 1.13.2.2 2010/03/25 20:25:28 merlinofchaos Exp $
/**
* @file views-view.tpl.php
* Main view template
*
* Variables available:
* - $classes_array: An array of classes determined in
* template_preprocess_views_view(). Default classes are:
* .view
* .view-[css_name]
* .view-id-[view_name]
* .view-display-id-[display_name]
* .view-dom-id-[dom_id]
* - $classes: A string version of $classes_array for use in the class attribute
* - $css_name: A css-safe version of the view name.
* - $css_class: The user-specified classes names, if any
* - $header: The view header
* - $footer: The view footer
* - $rows: The results of the view query, if any
* - $empty: The empty text to display if the view is empty
* - $pager: The pager next/prev links to display, if any
* - $exposed: Exposed widget form/info to display
* - $feed_icon: Feed icon to display, if any
* - $more: A link to view more, if any
* - $admin_links: A rendered list of administrative links
* - $admin_links_raw: A list of administrative links suitable for theme('links')
*
* @ingroup views_templates
*/
?>
<div class="subcontent-wrapper">
<div id="mainCol" class="<?php print $classes; ?>">
<div id="comments">
<div id="comment-feed">
<h3 style="font-family: 'helvetica neue', arial; ">
<?php
$total_rows = sizeof($view->result);
print number_format($total_rows);
print (intval($total_rows) == 1) ? ' comment' : ' comments';
?>
</h3>
<?php if ($rows): ?>
<?php print $rows; ?>
<?php elseif ($empty): ?>
<div class="view-empty">
<?php print $empty; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
| himsme91/education | sites/all/themes/usgbc/views/credit_comments/views-view--credit-comments--page-1.tpl.php | PHP | gpl-2.0 | 1,766 |
/*
* Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/**
* @test
* @bug 4960208
* @summary verify behavior passing null to various java.security.Security methods
* @author Andreas Sterbenz
*/
import java.util.*;
import java.security.*;
public class Nulls {
public static void main(String[] args) throws Exception {
try {
Security.addProvider(null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("addProvider(null): " + e);
}
if (Security.getAlgorithms(null).isEmpty() == false) {
throw new Exception();
}
try {
Security.getProperty(null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("getProperty(null): " + e);
}
if (Security.getProvider(null) != null) {
throw new Exception();
}
try {
Security.getProviders((Map)null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("getProviders((Map)null): " + e);
}
try {
Security.getProviders((String)null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("getProviders((String)null): " + e);
}
try {
Security.insertProviderAt(null, 1);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("insertProviderAt(null): " + e);
}
Security.removeProvider(null);
try {
Security.setProperty("foo", null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("setProperty(\"foo\", null): " + e);
}
try {
Security.setProperty(null, "foo");
throw new Exception();
} catch (NullPointerException e) {
System.out.println("setProperty(null, \"foo\"): " + e);
}
try {
Security.setProperty(null, null);
throw new Exception();
} catch (NullPointerException e) {
System.out.println("setProperty(null, null): " + e);
}
if (Security.getAlgorithmProperty(null, null) != null) {
throw new Exception();
}
}
}
| TheTypoMaster/Scaper | openjdk/jdk/test/java/security/Security/Nulls.java | Java | gpl-2.0 | 3,383 |
/*
* Yalp Store
* Copyright (C) 2018 Sergey Yeriomin <yeriomin@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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.
*/
package com.github.yeriomin.yalpstore.fragment.details;
import android.os.Build;
import android.view.View;
import android.widget.TextView;
import com.github.yeriomin.yalpstore.PreferenceUtil;
import com.github.yeriomin.yalpstore.R;
import com.github.yeriomin.yalpstore.YalpStoreActivity;
import com.github.yeriomin.yalpstore.fragment.Abstract;
import com.github.yeriomin.yalpstore.model.App;
import com.github.yeriomin.yalpstore.task.ExodusSearchTask;
import com.github.yeriomin.yalpstore.view.HttpTaskOnClickListener;
public class Exodus extends Abstract {
@Override
public void draw() {
TextView view = activity.findViewById(R.id.exodus);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP || null == view) {
// TLS...
return;
}
if (!app.isInPlayStore()) {
view.setVisibility(View.GONE);
return;
}
view.setVisibility(View.VISIBLE);
HttpTaskOnClickListener listener = new HttpTaskOnClickListener(new ExodusSearchTask(view, app.getPackageName()));
if (PreferenceUtil.getBoolean(activity, PreferenceUtil.PREFERENCE_EXODUS)) {
listener.onClick(view);
} else {
view.setText(activity.getString(R.string.details_exodus, activity.getString(R.string.details_exodus_tap_to_check)));
view.setOnClickListener(listener);
}
}
public Exodus(YalpStoreActivity activity, App app) {
super(activity, app);
}
}
| yeriomin/YalpStore | app/src/main/java/com/github/yeriomin/yalpstore/fragment/details/Exodus.java | Java | gpl-2.0 | 2,297 |
###############
# Brian Burns
# MATH 238
# x' = ax + by, y' = cx + dy
# system.py
###############
import sys
import math
import sympy as sy
def main():
# make sure we have enough arguments
if len(sys.argv) != 5:
print("Usage: \"python system.py [a] [b] [c] [d]\"")
sys.exit(0)
# grab the arguments
a = float(sys.argv[1])
b = float(sys.argv[2])
c = float(sys.argv[3])
d = float(sys.argv[4])
# initialize sympy functions
t = sy.symbols("t")
x = sy.Function("x")(t)
y = sy.Function("y")(t)
# create x' = ax + by, y' = cx + dy
e1 = sy.Eq(x.diff(t), a*x + b*y)
e2 = sy.Eq(y.diff(t), c*x + d*y)
eqs = (e1, e2)
# solve the system
sol = sy.dsolve(eqs)
print("The solution to the system is:")
sy.pprint(sy.simplify(sol[0]));
sy.pprint(sy.simplify(sol[1]));
if __name__ == "__main__":
main()
| brnbrns/DifferentialEquations | system.py | Python | gpl-2.0 | 891 |
/**
* This file is part of OSM2GpsMid
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* Copyright (C) 2010 Harald Mueller
*/
package de.ueller.osmToGpsMid.area;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import de.ueller.osmToGpsMid.model.Bounds;
import de.ueller.osmToGpsMid.model.Node;
public class Outline {
private final List<Vertex> vertexList = new ArrayList<Vertex>();
private long wayId = -1;
// private ArrayList<Vertex> ordered;
public long getWayId() {
return wayId;
}
public void setWayId(long wayId) {
this.wayId = wayId;
}
public List<Vertex> getVertexList() {
return Collections.unmodifiableList(vertexList);
}
public boolean isValid() {
if (vertexList.size() < 2) {
return false;
}
return true;
}
public void clean() {
vertexList.clear();
}
public void prepend(Vertex v) {
vertexList.add(0, v);
v.setOutline(this);
}
public void append(Vertex v) {
vertexList.add(v);
v.setOutline(this);
}
public boolean isClosed() {
if (vertexList.size() < 1) {
return false;
}
Vertex prev = null;
Vertex first = null;
first = vertexList.get(0);
prev = vertexList.get(vertexList.size() - 1);
if (first.equals(prev)) {
return true;
}
return false;
}
public void connectPartWays(List<Outline> others) {
boolean changed = false;
// System.out.println("Entering connectPartWays");
do {
changed = false;
Iterator<Outline> i = others.iterator();
while (i.hasNext() && ! changed) {
Outline o = i.next();
final Vertex last = vertexList.get(vertexList.size() - 1);
final Vertex first = vertexList.get(0);
// System.out.println("Iterating, node: " + o.vertexList.get(0).getNode());
if (o == this) {
// System.out.println("o == this");
continue;
}
if (!o.isClosed()) {
// System.out.println("not o.isClosed()");
// System.out.println("last.getNode(): " + last.getNode());
// System.out.println("first.getNode(): " + first.getNode());
// System.out.println("vertexlist size: " + vertexList.size());
Node otherFirst = o.vertexList.get(0).getNode();
Vertex otherLast = o.vertexList.get(o.vertexList.size()-1);
if (otherFirst.equals(last.getNode())) {
// System.out.println("found way connecting to end of outline, so append it");
changed = true;
for (Vertex v : o.vertexList) {
append(v);
}
i.remove();
} else if (otherLast.getNode().equals(last.getNode())) {
// System.out.println("found way reverse connecting to end of outline, so append it");
changed = true;
for (int loop = o.vertexList.size()-1; loop >= 0; loop--) {
Vertex v = o.vertexList.get(loop);
append(v);
}
i.remove();
} else if (otherFirst.equals(first.getNode())) {
// System.out.println("found way connecting to start of outline, so prepend it");
changed = true;
for (Vertex v : o.vertexList) {
prepend(v);
}
i.remove();
} else if (otherLast.getNode().equals(first.getNode())) {
// System.out.println("found way reverse connecting to start of outline, so prepend it");
changed = true;
for (int loop = o.vertexList.size()-1; loop >= 0; loop--) {
Vertex v = o.vertexList.get(loop);
prepend(v);
}
i.remove();
}
}
}
} while (changed);
}
public void calcNextPrev() {
if (vertexList == null || vertexList.size() == 0) {
return;
}
Vertex prev = vertexList.get(vertexList.size() - 1);
Vertex first = vertexList.get(0);
if (first.equals(prev)) {
vertexList.remove(vertexList.size() - 1);
prev = vertexList.get(vertexList.size() - 1);
}
if (vertexList.size() < 3) {
// this is a degenerated polygon make it empty
vertexList.clear();
return;
}
for (Vertex v : vertexList) {
v.setOutline(this);
v.setPrev(prev);
prev.setNext(v);
prev = v;
}
prev.setNext(first);
}
// @SuppressWarnings("unchecked")
// public List<Vertex> getLonOrdered() {
// ArrayList<Vertex> ordered = (ArrayList<Vertex>) vertexList.clone();
// Collections.sort(ordered, new LonComperator());
// return ordered;
// }
public Vertex getLonMin() {
return Collections.min(vertexList, new LonComperator());
}
// @SuppressWarnings("unchecked")
// public List<Vertex> getOrdered(int dir) {
//// return getLonOrdered();
// ArrayList<Vertex> ordered = (ArrayList<Vertex>) vertexList.clone();
// switch (dir) {
// case 0:
// Collections.sort(ordered, new DirectionComperator0());
// break;
// case 1:
// Collections.sort(ordered, new DirectionComperator1());
// break;
// case 2:
// Collections.sort(ordered, new DirectionComperator2());
// break;
// default:
// Collections.sort(ordered, new DirectionComperatorX());
// break;
// }
// return ordered;
// }
//
public Vertex getMin(int dir) {
switch (dir) {
case 0:
return Collections.min(vertexList, new DirectionComperator0());
case 1:
return Collections.min(vertexList, new DirectionComperator1());
case 2:
return Collections.min(vertexList, new DirectionComperator2());
default:
return Collections.min(vertexList, new DirectionComperatorX());
}
}
// public Vertex findVertexInside(Triangle triangle) {
// float leftmost = Float.MAX_VALUE;
// Vertex leftmostNode = null;
// for (Vertex v:vertexList) {
// if (triangle.isVertexInside(v)) {
// float lon = v.getX();
// if (lon < leftmost) {
// leftmost = lon;
// leftmostNode = v;
// }
// }
// }
// return leftmostNode;
// }
public ArrayList<Vertex> findVertexInside(Triangle triangle, ArrayList<Vertex> ret) {
if (ret == null) {
ret = new ArrayList<Vertex>();
}
for (Vertex vertex : vertexList) {
if (triangle.isVertexInside(vertex)){
ret.add(vertex);
}
}
if (ret.isEmpty()) {
return null;
} else {
return ret;
}
}
public Vertex findFirstVertexInside(Triangle triangle, Comparator<Vertex> comp, Vertex first) {
for (Vertex vertex : vertexList) {
if (triangle.isVertexInside(vertex)){
if ((first == null) || (comp.compare(first, vertex) > 0)) {
first = vertex;
}
}
}
return first;
}
public void remove(Vertex v) {
v.getPrev().setNext(v.getNext());
v.getNext().setPrev(v.getPrev());
vertexList.remove(v);
}
public int vertexCount() {
return vertexList.size();
}
@Override
public String toString() {
StringBuffer b = new StringBuffer();
for (Vertex n:vertexList) {
b.append(n);
}
return b.toString();
}
// public boolean isClockWise() {
// boolean cw = isClockWise3();
// if (cw != isClockWise2()){
// System.out.println("2 and 3 not the same");
// }
// return cw;
// }
/**
* Check if this outline (polygon) is clockwise. Therefore we get the leftmost vertex and the
* both neighbors. This edge must be convex.
* @return
*/
public boolean isClockWise() {
// Nothing to do for an empty outline
if (vertexList.isEmpty()) {
return true;
}
calcNextPrev();
Vertex v = getLonMin();
Vertex vp = v.getPrev();
Vertex vn = v.getNext();
if (((v.getX() - vp.getX()) * (vn.getY() - v.getY())
- (v.getY() - vp.getY()) * (vn.getX() - v.getX())) < 0) {
return true;
} else {
return false;
}
}
/**
* Check if this outline (polygon) is clockwise. Therefore we get the leftmost vertex and the
* both neighbors. This edge must be convex.
* @return
*/
public boolean isClockWiseFast() {
// Nothing to do for an empty outline
if (vertexList.isEmpty()) {
return true;
}
//calcNextPrev();
Vertex v = getLonMin();
Vertex vp = v.getPrev();
Vertex vn = v.getNext();
if (((v.getX()-vp.getX())*(vn.getY()-v.getY())-(v.getY()-vp.getY())*(vn.getX()-v.getX())) <0 ) {
return true;
} else {
return false;
}
}
/**
* this one is only valid for convex polygon
* @return
*/
public boolean isClockWise2() {
float z = 0.0f;
for (Vertex i : vertexList) {
z += i.cross(i.getNext());
}
if (z < 0) {
return true;
} else {
return false;
}
}
public boolean isClockWise1() {
Vertex j, k;
int count = 0;
double z;
if (vertexCount() < 3) {
throw new IllegalArgumentException("polygone with < then 3 nodes is degenerated");
}
for (Vertex i:vertexList){
j=i.getNext();
k=j.getNext();
z = (j.getX() - i.getX()) * (k.getY() - j.getY()) - (j.getY() - i.getY()) * (k.getX() - j.getX());
if (z < 0) {
count--;
} else if (z > 0) {
count++;
}
}
if (count > 0) {
return true;
} else if (count < 0) {
return false;
} else {
System.err.println("Triangulation Error! this should never happen");
// throw new IllegalArgumentException("this should never happen");
return true;
}
}
public Bounds extendBounds(Bounds b) {
for (Vertex i:vertexList){
i.extendBounds(b);
}
return b;
}
/**
* @param i
* @return
*/
public Node getNode(int i) {
return (vertexList.get(i).getNode());
}
}
| martints/gpsmid | Osm2GpsMid/src/de/ueller/osmToGpsMid/area/Outline.java | Java | gpl-2.0 | 9,431 |
package edu.stanford.nlp.international.arabic.pipeline;
import java.io.File;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import edu.stanford.nlp.international.arabic.Buckwalter;
import edu.stanford.nlp.trees.treebank.Mapper;
import edu.stanford.nlp.trees.international.arabic.ATBTreeUtils;
import edu.stanford.nlp.util.Generics;
/**
* Applies a default set of lexical transformations that have been empirically validated
* in various Arabic tasks. This class automatically detects the input encoding and applies
* the appropriate set of transformations.
*
* @author Spence Green
*/
public class DefaultLexicalMapper implements Mapper, Serializable {
private static final long serialVersionUID = -3798804368296999785L;
private final Pattern utf8ArabicChart = Pattern.compile("[\u0600-\u06FF]");
//Buckwalter patterns
private final String bwAlefChar = "A"; //U+0627
private final Pattern bwDiacritics = Pattern.compile("F|N|K|a|u|i|\\~|o");
private final Pattern bwTatweel = Pattern.compile("_");
private final Pattern bwAlef = Pattern.compile("\\{|\\||>|<");
private final Pattern bwQuran = Pattern.compile("`");
private final Pattern bwNullAnaphoraMarker = Pattern.compile("\\[nll\\]");
public final Pattern latinPunc = Pattern.compile("([\u0021-\u002F\u003A-\u0040\\u005B-\u0060\u007B-\u007E\u00A1-\u00BF\u00F7\u2010-\u2027\u2030-\u205E\u20A0-\u20BA])+");
public final Pattern arabicPunc = Pattern.compile("([\u00AB\u00BB\u0609-\u060D\u061B-\u061F\u066A\u066C-\u066D\u06D4])+");
public final Pattern arabicDigit = Pattern.compile("([\u06F0-\u06F9\u0660-\u0669])+");
//TODO Extend coverage to entire Arabic code chart
//Obviously Buckwalter is a lossful conversion, but no assumptions should be made about
//UTF-8 input from "the wild"
private final Pattern utf8Diacritics = Pattern.compile("َ|ً|ُ|ٌ|ِ|ٍ|ّ|ْ|\u0670");
private final Pattern utf8Tatweel = Pattern.compile("ـ");
private final Pattern utf8Alef = Pattern.compile("ا|إ|أ|آ|\u0671");
private final Pattern utf8Quran = Pattern.compile("[\u0615-\u061A\u06D6-\u06E5]");
private final Pattern utf8ProDrop = Pattern.compile("\\[نلل\\]");
//Patterns to fix segmentation issues observed in the ATB
public final Pattern segmentationMarker = Pattern.compile("^-+|-+$");
private final Pattern morphemeBoundary = Pattern.compile("\\+");
private final Pattern hasDigit = Pattern.compile("\\d+");
// Process the vocalized section for parsing
private boolean useATBVocalizedSectionMapping = false;
// Strip morpheme boundary markers in the vocalized section
private boolean stripMorphemeMarkersInUTF8 = false;
// Strip all morpheme and segmentation markers in UTF-8 Arabic
private boolean stripSegmentationMarkersInUTF8 = false;
//wsg: "LATIN" does not appear in the Bies tagset, so be sure to pass
//in the extended POS tags during normalization
private final String parentTagString = "PUNC LATIN -NONE-";
private final Set<String> parentTagsToEscape;
private final String utf8CliticString = "ل ف و ما ه ها هم هن نا كم تن تم ى ي هما ك ب م";
// private final Set<String> utf8Clitics;
private final Set<String> bwClitics;
public DefaultLexicalMapper() {
parentTagsToEscape =
Collections.unmodifiableSet(Generics.newHashSet(Arrays.asList(parentTagString.split("\\s+"))));
// utf8Clitics =
// Collections.unmodifiableSet(Generics.newHashSet(Arrays.asList(utf8CliticString.split("\\s+"))));
Buckwalter bw = new Buckwalter(true);
String bwString = bw.apply(utf8CliticString);
bwClitics =
Collections.unmodifiableSet(Generics.newHashSet(Arrays.asList(bwString.split("\\s+"))));
}
private String mapUtf8(String element) {
Matcher latinPuncOnly = latinPunc.matcher(element);
Matcher arbPuncOnly = arabicPunc.matcher(element);
if (latinPuncOnly.matches() || arbPuncOnly.matches()) return element;
//Remove diacritics
Matcher rmDiacritics = utf8Diacritics.matcher(element);
element = rmDiacritics.replaceAll("");
if (element.length() > 1) {
Matcher rmTatweel = utf8Tatweel.matcher(element);
element = rmTatweel.replaceAll("");
}
//Normalize alef
Matcher normAlef = utf8Alef.matcher(element);
element = normAlef.replaceAll("ا");
//Remove characters that only appear in the Qur'an
Matcher rmQuran = utf8Quran.matcher(element);
element = rmQuran.replaceAll("");
Matcher rmProDrop = utf8ProDrop.matcher(element);
element = rmProDrop.replaceAll("");
if (stripMorphemeMarkersInUTF8) {
Matcher rmMorphemeBoundary = morphemeBoundary.matcher(element);
String strippedElem = rmMorphemeBoundary.replaceAll("");
if (strippedElem.length() > 0)
element = strippedElem;
}
if (stripSegmentationMarkersInUTF8) {
String strippedElem = segmentationMarker.matcher(element).replaceAll("");
if (strippedElem.length() > 0)
element = strippedElem;
}
return element;
}
private String mapBuckwalter(String element) {
Matcher puncOnly = latinPunc.matcher(element);
if (puncOnly.matches()) return element;
//Remove diacritics
Matcher rmDiacritics = bwDiacritics.matcher(element);
element = rmDiacritics.replaceAll("");
//Remove tatweel
if (element.length() > 1) {
Matcher rmTatweel = bwTatweel.matcher(element);
element = rmTatweel.replaceAll("");
}
//Normalize alef
Matcher normAlef = bwAlef.matcher(element);
element = normAlef.replaceAll(bwAlefChar);
//Remove characters that only appear in the Qur'an
Matcher rmQuran = bwQuran.matcher(element);
element = rmQuran.replaceAll("");
Matcher rmProDrop = bwNullAnaphoraMarker.matcher(element);
element = rmProDrop.replaceAll("");
// This conditional is used for normalizing raw ATB trees
// Morpheme boundaries are removed, and segmentation markers are retained on
// segmented morphemes (not the tokens to which the morphemes were attached)
if (useATBVocalizedSectionMapping && element.length() > 1) {
Matcher rmMorphemeBoundary = morphemeBoundary.matcher(element);
element = rmMorphemeBoundary.replaceAll("");
//wsg: This is hairy due to tokens like this in the vocalized section:
// layos-+-a
Matcher cliticMarker = segmentationMarker.matcher(element);
if (cliticMarker.find() && !hasDigit.matcher(element).find()) {
String strippedElem = cliticMarker.replaceAll("");
if (strippedElem.length() > 0)
element = bwClitics.contains(strippedElem) ? element : strippedElem;
}
} else if (element.length() > 1 && !ATBTreeUtils.reservedWords.contains(element)) {
Matcher rmCliticMarker = segmentationMarker.matcher(element);
element = rmCliticMarker.replaceAll("");
}
return element;
}
public String map(String parent, String element) {
String elem = element.trim();
if (parent != null && parentTagsToEscape.contains(parent))
return elem;
Matcher utf8Encoding = utf8ArabicChart.matcher(elem);
return (utf8Encoding.find()) ? mapUtf8(elem) : mapBuckwalter(elem);
}
public void setup(File path, String... options) {
if (options == null) return;
for (int i = 0; i < options.length; i++) {
final String opt = options[i];
switch (opt) {
case "ATBVocalizedSection":
useATBVocalizedSectionMapping = true;
break;
case "StripSegMarkersInUTF8":
stripSegmentationMarkersInUTF8 = true;
break;
case "StripMorphMarkersInUTF8":
stripMorphemeMarkersInUTF8 = true;
break;
}
}
}
//Whether or not the encoding of this word can be converted to another encoding
//from its current encoding (Buckwalter or UTF-8)
public boolean canChangeEncoding(String parent, String element) {
parent = parent.trim();
element = element.trim();
//Hack for LDC2008E22 idiosyncrasy
//This is NUMERIC_COMMA in the raw trees. We allow conversion of this
//token to UTF-8 since it would appear in this encoding in arbitrary
//UTF-8 text input
if (parent.contains("NUMERIC_COMMA") || (parent.contains("PUNC") && element.equals("r"))) //Numeric comma
return true;
Matcher numMatcher = hasDigit.matcher(element);
return !(numMatcher.find() || parentTagsToEscape.contains(parent));
}
public static void main(String[] args) {
Mapper m = new DefaultLexicalMapper();
System.out.printf("< :-> %s\n", m.map(null, "FNKqq"));
}
}
| sanjithuom/Stanford-corenlp | src/edu/stanford/nlp/international/arabic/pipeline/DefaultLexicalMapper.java | Java | gpl-2.0 | 9,365 |
class Point
def initialize x, y
@x = x
@y = y
end
def to_hash
{ x: @x, y: @y }
end
def offset_y offset
Point.new @x, @y + offset
end
end | elreplicante/coding-dojo | MarsRover/ruby/lib/point.rb | Ruby | gpl-2.0 | 167 |
from jira.client import JIRA
from jira.client import GreenHopper
from optparse import OptionParser
import time
__author__ = 'mattdyer'
#this class manages creating the individual issues that we are parsing from a file
class IssueManager:
## The constructor
# @param self The object pointer
# @param options The option hash
def __init__(self, options):
self.__jiraUser = options.user
self.__jiraPassword = options.password
self.__jiraURL = options.site
self.startSession()
## Create the connection
# @param self Teh object pointer
def startSession(self):
#now make the connection
options = {
'server':self.__jiraURL,
'verify':False
}
self.__jira = JIRA(options, basic_auth=(self.__jiraUser, self.__jiraPassword))
self.__greenhopper = GreenHopper(options, basic_auth=(self.__jiraUser, self.__jiraPassword))
## Kill the jira connection
# @param self The object pointer
def killSession(self):
self.__jira.kill_session()
self.__greenhopper.kill_session()
## Add the epic link to an issue
# @param self The object pointer
# @param issue The issue ID
# @param epic The epic ID
def attachEpic(self, issue, epic):
#attach the epic
self.__greenhopper.add_issues_to_epic(epic, [issue])
## Create an issue set by calling the createIssue and createSubtask methods
# @param self The object pointer
# @param options The option dictionary
# @returns A dictionary of issues that were created
def createIssueSet(self, options):
#dictionary to store jira issues
issues = {}
#set up the description
description = '<h3>User Experience</h3>%s<h3>Acceptance Criteria</h3><ul><li></li></ul>' % (options.description)
#create the parent issue
parentID = self.createIssue(options.story, 'Story', description, options)
issues[parentID] = '%s\t%s\t%s' % (parentID, 'Story', options.story)
#create the tasks for development and testing depending on the product
for specificProduct in options.product.split(';'):
issue1 = self.createIssue('Implementation (%s): %s' % (specificProduct, options.story), 'Implement', '', options)
issues[issue1] = '%s\t%s\t%s' % (issue1, 'Implement', options.story)
issue2 = self.createIssue('Create Unit Tests (%s): %s' % (specificProduct, options.story), 'Unit Test', '', options)
issues[issue2] = '%s\t%s\t%s' % (issue2, 'Unit Test', options.story)
issue3 = self.createIssue('Verification (%s): %s' % (specificProduct, options.story), 'Verification Test', '', options)
issues[issue3] = '%s\t%s\t%s' % (issue3, 'Verification Test', options.story)
#create the links
self.linkIssues(parentID, issue1, 'Develop')
self.linkIssues(parentID, issue2, 'Verify')
self.linkIssues(parentID, issue3, 'Verify')
#print the ids
return(parentID, issues)
## Create a new issue
# @param self The object pointer
# @param summary The summary of the issue
# @param description The description of the issue
# @param issueType The type of the issue
# @param options The option dictionary
# @returns The JIRA issue identifier
def createIssue(self, summary, issueType, description, options):
#create an issue by setting up the dictionary
issueDict = {
#'assignee': {'name':'Unassigned'},
'project': {'key':options.project},
'priority' : {'name':options.priority},
'summary': summary,
'description': description,
'issuetype' : {'name':issueType},
'labels':[
'AddedViaAPI',
'APISetFixVersion'
],
}
#set up software / hardware product type
#if we list more than one product that set the product flag to multiple
productLabel = options.product
if(';' in options.product):
productLabel = 'Multiple'
#see if we are hardware of software
if options.type == 'Hardware':
#hardware product
issueDict['customfield_11200'] = {'value':productLabel}
else:
#software product
issueDict['customfield_11100'] = {'value':productLabel}
#if it is a story type then we want ot add a label for acceptance criteria too
if issueType == 'Story':
issueDict['labels'].append('NeedAcceptanceCriteria')
#add the components if there are any
if(not options.components == ''):
issueDict['components'] = self.addComponents(options.components)
#now create the issue
print issueDict
newIssue = self.__jira.create_issue(fields=issueDict)
#return the id
return(newIssue.key)
## Link two issues
# @param self The object pointer
# @param jiraID1 The JIRA id of the first issue
# @param jiraID2 The JIRA id of the second issue
# @param linkType The type of connect
def linkIssues(self, jiraID1, jiraID2, linkType):
#now link the two issues
print "Linking %s and %s" % (jiraID1, jiraID2)
self.__jira.create_issue_link(type=linkType, inwardIssue=jiraID2, outwardIssue=jiraID1)
## Create an array from a ";"-separated list, used for populating components
# @param self The object pointer
# @param componentString The string to be parsed
# @returns The array of components
def addComponents(self, componentString):
tokens = componentString.split(';')
components = []
#populate the array
for token in tokens:
components.append( {'name':token} )
return(components)
#start here when the script is launched
if (__name__ == '__main__'):
#set up the option parser
parser = OptionParser()
#add the options to parse
#script options
parser.add_option('-a', '--type', dest='type', help='The story type, Software or Hardware')
#task options
parser.add_option('-c', '--components', dest='components', help='The ;-delimited list of components')
parser.add_option('-d', '--product', dest='product', help='The software product to attach the story too')
parser.add_option('-e', '--epic', dest='epic', help='The epic ID')
parser.add_option('-n', '--description', dest='description', help='The story description', default='')
parser.add_option('-r', '--req', dest='requirement', help='The requirement ID')
parser.add_option('-t', '--story', dest='story', help='The story you want to create')
parser.add_option('-v', '--version', dest='version', help='The fix version')
parser.add_option('-x', '--project', dest='project', help='The JIRA project')
parser.add_option('-y', '--priority', dest='priority', help='The priority of the story')
#jira options
parser.add_option('-p', '--password', dest='password', help='The JIRA user password')
parser.add_option('-s', '--site', dest='site', help='The JIRA site URL including the https:// part')
parser.add_option('-u', '--user', dest='user', help='The JIRA user')
(options, args) = parser.parse_args()
#set up the issue manager
manager = IssueManager(options)
#create the issue and implement / test tasks
issueID, issues = manager.createIssueSet(options)
#link to the requirement / epic
manager.linkIssues(issueID, options.requirement, 'Requirement')
manager.attachEpic(issueID, options.epic)
#kill the connection
manager.killSession()
| dyermd/legos | scripts/add_story_to_jira.py | Python | gpl-2.0 | 7,685 |
package com.creakiwi.randroid;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.Switch;
import android.widget.CompoundButton.OnCheckedChangeListener;
public class RandroidServiceController extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_randroid_service_controller);
Switch service_switcher = (Switch) this.findViewById(R.id.status);
/*
* The switch in the activity is used to start or stop the service
* Due to threads, there is a delay between setting the switch to off, and the real stop of the service
*/
service_switcher.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked)
start();
else
stop();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.randroid_service_controller, menu);
return true;
}
/*
* Called when the switch is ON
* Tries to start the service
* Application is killed when n, max, or delay aren't filled
* (I have to handle this bug)
*/
protected void start()
{
int n = Integer.valueOf(((EditText) this.findViewById(R.id.n_picker)).getText().toString());
int max = Integer.valueOf(((EditText) this.findViewById(R.id.max_picker)).getText().toString());
int delay = Integer.valueOf(((EditText) this.findViewById(R.id.delay_picker)).getText().toString());
this.startService(new Intent(this, RandroidNotifier.class));
Intent randroid_service = new Intent(this, RandroidService.class);
randroid_service.putExtra(RandroidService.PICKS, n);
randroid_service.putExtra(RandroidService.MAX, max);
randroid_service.putExtra(RandroidService.DELAY, delay);
this.startService(randroid_service);
}
/*
* Called when the switch is OFF
* Stops the service
*/
protected void stop()
{
stopService(new Intent(this, RandroidService.class));
stopService(new Intent(this, RandroidNotifier.class));
}
}
| alex-ception/Randroid | src/com/creakiwi/randroid/RandroidServiceController.java | Java | gpl-2.0 | 2,311 |
/*
Vaues considerd as False
0 -0 NaN
""
false
null
undefined
*/
const SPENDING_TRESHOLD = 200;
const TAX_RATE = 0.08;
const PTHONE_PRICE;
const ACCESSORY_PRICE = 9.99;
var banl_balance = 303.91;
var amount = 0;
function calculateTax(amount) {
return amount * TAX_RATE;
}
function formatAmount(amount) {
return "$" + amount.toFixed ( 2 );
}
while (amount < banl_balance) {
amount += PTHONE_PRICE;
if (amount < SPENDING_TRESHOLD) {
amount += ACCESSORY_PRICE;
}
}
amount += calculateTax( amount );
debug() | michalhrk/euler_practice | Basic of JavaScript.js | JavaScript | gpl-2.0 | 516 |
Namaste = {};
function namasteConfirmDelete(frm, msg) {
if(!confirm(msg)) return false;
frm.del.value=1;
frm.submit();
}
function namasteEnrollCourse(boxTitle, courseID, studentID, url) {
tb_show(boxTitle,
url + '&course_id=' + courseID +
'&student_id=' + studentID);
} | fawwaz/PPL | wp-content/plugins/namaste-lms/js/common.js | JavaScript | gpl-2.0 | 282 |
// This file is part of Hermes3D
//
// Copyright (c) 2009 hp-FEM group at the University of Nevada, Reno (UNR).
// Email: hpfem-group@unr.edu, home page: http://hpfem.org/.
//
// This file was written by:
// - Pavel Kus
//
// Hermes3D 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.
//
// Hermes3D 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 Hermes3D; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "config.h"
#ifdef WITH_PETSC
#include <petsc.h>
#endif
#include <hermes3d.h>
#include <common/trace.h>
#include <common/timer.h>
#include <common/error.h>
// error should be smaller than this epsilon
#define EPS 10e-10F
// general polynomial function satisfying perfect conductor bc
// exact solution has zero tangential component on the boundary on the domain (-1, 1)^3
// DO NOT TEST on other domains
const double alpha = 1.0;
scalar3 &exact_solution(double x, double y, double z, scalar3 &dx, scalar3 &dy, scalar3 &dz) {
dx[0] = (1 - y*y)*(1 - z*z)*(z - 6*x*x);
dx[1] = 2*(1 - x*x)*(1 - z*z) - 2*x*(1 - z*z)*(y*y*y + 2*x);
dx[2] = -2*x*(1 - y*y)*(z*z - 3*x*y*z) - 3*y*z*(1 - x*x)*(1 - y*y);
dy[0] = -2*y*(1 - z*z)*(1 - 2*x*x*x + x*z);
dy[1] = 3*y*y*(1 - x*x)*(1 - z*z);
dy[2] = -2*y*(1 - x*x)*(z*z - 3*x*y*z) - 3*x*z*(1 - x*x)*(1 - y*y);
dz[0] = x*(1 - y*y)*(1 - z*z) - 2*z*(1 - y*y)*(1 - 2*x*x*x + x*z);
dz[1] = -2*z*(1 - x*x)*(y*y*y + 2*x);
dz[2] = (1 - x*x)*(1 - y*y)*(2*z - 3*x*y);
static scalar3 val;
val[0] = (1-y*y) * (1-z*z) * (x*z - 2*x*x*x + 1);
val[1] = (1-x*x) * (1-z*z) * (y*y*y + 2*x);
val[2] = (1-x*x) * (1-y*y) * (z*z - 3*x*y*z);
return val;
}
template<typename S, typename T>
void exact_sln(S x, S y, S z, T (&val)[3], T (&dx)[3], T (&dy)[3], T (&dz)[3]) {
val[0] = (1-y*y) * (1-z*z) * (x*z - 2*x*x*x + 1);
val[1] = (1-x*x) * (1-z*z) * (y*y*y + 2*x);
val[2] = (1-x*x) * (1-y*y) * (z*z - 3*x*y*z);
dx[0] = (1 - y*y)*(1 - z*z)*(z - 6*x*x);
dx[1] = 2*(1 - x*x)*(1 - z*z) - 2*x*(1 - z*z)*(y*y*y + 2*x);
dx[2] = -2*x*(1 - y*y)*(z*z - 3*x*y*z) - 3*y*z*(1 - x*x)*(1 - y*y);
dy[0] = -2*y*(1 - z*z)*(1 - 2*x*x*x + x*z);
dy[1] = 3*y*y*(1 - x*x)*(1 - z*z);
dy[2] = -2*y*(1 - x*x)*(z*z - 3*x*y*z) - 3*x*z*(1 - x*x)*(1 - y*y);
dz[0] = x*(1 - y*y)*(1 - z*z) - 2*z*(1 - y*y)*(1 - 2*x*x*x + x*z);
dz[1] = -2*z*(1 - x*x)*(y*y*y + 2*x);
dz[2] = (1 - x*x)*(1 - y*y)*(2*z - 3*x*y);
}
template<typename S, typename T>
void f(S x, S y, S z, T (&val)[3]) {
T ev[3], dx[3], dy[3], dz[3];
exact_sln(x, y, z, ev, dx, dy, dz);
T curlpart[3] = {
2*(1 - y*y)*(1 - 2*x*x*x + x*z) + 2*(1 - z*z)*(1 - 2*x*x*x + x*z) - 6*x*y*y*(1 - z*z) - 3*y*(1 - x*x)*(1 - y*y) - 2*x*(1 - y*y)*(2*z - 3*x*y) + 4*x*z*(1 - y*y),
2*(1 - x*x)*(y*y*y + 2*x) + 2*(1 - z*z)*(y*y*y + 2*x) + 8*x*(1 - z*z) - 3*x*(1 - x*x)*(1 - y*y) - 2*y*(1 - x*x)*(2*z - 3*x*y) - 2*y*(1 - z*z)*(z - 6*x*x),
(1 - y*y)*(1 - z*z) + 2*(1 - x*x)*(z*z - 3*x*y*z) + 2*(1 - y*y)*(z*z - 3*x*y*z) - 6*z*y*y*(1 - x*x) - 2*z*(1 - y*y)*(z - 6*x*x) - 12*x*y*z*(1 - x*x) - 12*x*y*z*(1 - y*y)
};
val[0] = curlpart[0] - alpha * ev[0];
val[1] = curlpart[1] - alpha * ev[1];
val[2] = curlpart[2] - alpha * ev[2];
}
EBCType bc_types(int marker) {
return BC_ESSENTIAL;
}
// definition of the forms
template<typename f_t, typename res_t>
res_t bilinear_form(int n, double *wt, fn_t<f_t> *u, fn_t<f_t> *v, geom_t<f_t> *e, user_data_t<res_t> *data) {
return
hcurl_int_curl_u_curl_v<f_t, res_t>(n, wt, u, v, e) -
alpha * hcurl_int_u_v<f_t, res_t>(n, wt, u, v, e);
}
template<typename f_t, typename res_t>
res_t linear_form(int n, double *wt, fn_t<f_t> *u, geom_t<f_t> *e, user_data_t<res_t> *data) {
return hcurl_int_F_v<f_t, res_t>(n, wt, f<f_t, res_t>, u, e);
}
// main ///////////////////////////////////////////////////////////////////////////////////////////
int main(int argc, char **args) {
int res = ERR_SUCCESS;
#ifdef WITH_PETSC
PetscInitialize(&argc, &args, (char *) PETSC_NULL, PETSC_NULL);
#endif
if (argc < 3) die("Not enough parameters");
HcurlShapesetLobattoHex shapeset;
printf("* Loading mesh '%s'\n", args[1]);
Mesh mesh;
Mesh3DReader mesh_loader;
if (!mesh_loader.load(args[1], &mesh)) die("Loading mesh file '%s'\n", args[1]);
printf("* Setting the space up\n");
HcurlSpace space(&mesh, &shapeset);
space.set_bc_types(bc_types);
int o;
sscanf(args[2], "%d", &o);
order3_t order(o, o, o);
printf(" - Setting uniform order to (%d, %d, %d)\n", o, o, o);
space.set_uniform_order(order);
int ndofs = space.assign_dofs();
printf(" - Number of DOFs: %d\n", ndofs);
printf("* Calculating a solution\n");
#if defined WITH_UMFPACK
UMFPackMatrix mat;
UMFPackVector rhs;
UMFPackLinearSolver solver(mat, rhs);
#elif defined WITH_PARDISO
PardisoMatrix mat;
PardisoVector rhs;
PardisoLinearSolver solver(mat, rhs);
#elif defined WITH_PETSC
PetscMatrix mat;
PetscVector rhs;
PetscLinearSolver solver(mat, rhs);
#endif
WeakForm wf(1);
wf.add_biform(0, 0, FORM_CB(bilinear_form), SYM);
wf.add_liform(0, FORM_CB(linear_form));
LinProblem lp(&wf);
lp.set_spaces(1, &space);
// assemble stiffness matrix
Timer assemble_timer("Assembling stiffness matrix");
assemble_timer.start();
lp.assemble(&mat, &rhs);
assemble_timer.stop();
// solve the stiffness matrix
Timer solve_timer("Solving stiffness matrix");
solve_timer.start();
bool solved = solver.solve();
solve_timer.stop();
// mat.dump(stdout, "a");
// rhs.dump(stdout, "b");
if (solved) {
Solution sln(&mesh);
sln.set_fe_solution(&space, solver.get_solution());
printf("* Solution:\n");
// scalar *s = sln.get_solution_vector();
// for (int i = 1; i <= ndofs; i++) {
// printf(" x[% 3d] = " SCALAR_FMT "\n", i, SCALAR(s[i]));
// }
// output the measured values
printf("%s: %s (%lf secs)\n", assemble_timer.get_name(), assemble_timer.get_human_time(), assemble_timer.get_seconds());
printf("%s: %s (%lf secs)\n", solve_timer.get_name(), solve_timer.get_human_time(), solve_timer.get_seconds());
ExactSolution ex_sln(&mesh, exact_solution);
double hcurl_sln_norm = hcurl_norm(&sln);
double hcurl_err_norm = hcurl_error(&sln, &ex_sln);
printf(" - Hcurl solution norm: % le\n", hcurl_sln_norm);
printf(" - Hcurl error norm: % le\n", hcurl_err_norm);
double l2_sln_norm = l2_norm_hcurl(&sln);
double l2_err_norm = l2_error_hcurl(&sln, &ex_sln);
printf(" - L2 solution norm: % le\n", l2_sln_norm);
printf(" - L2 error norm: % le\n", l2_err_norm);
if (hcurl_err_norm > EPS || l2_err_norm > EPS) {
// calculated solution is not enough precise
res = ERR_FAILURE;
}
#if defined OUTPUT_DIR
// output
printf("starting output\n");
const char *of_name = OUTPUT_DIR "/solution.vtk";
FILE *ofile = fopen(of_name, "w");
if (ofile != NULL) {
ExactSolution ex_sln(&mesh, exact_solution);
DiffFilter eh(&sln, &ex_sln);
DiffFilter eh_dx(&sln, &ex_sln, FN_DX, FN_DX);
// DiffFilter eh_dy(mesh, &sln, &ex_sln, FN_DY, FN_DY);
// DiffFilter eh_dz(mesh, &sln, &ex_sln, FN_DZ, FN_DZ);
// GmshOutputEngine output(ofile);
VtkOutputEngine output(ofile);
output.out(&sln, "Uh", FN_VAL);
// output.out(&sln, "Uh_0", FN_VAL_0);
// output.out(&sln, "Uh_1", FN_VAL_1);
// output.out(&sln, "Uh_2", FN_VAL_2);
// output.vector_out(&sln, "Uh_dx", FN_DX);
// output.vector_out(&sln, "Uh_dy", FN_DY);
// output.vector_out(&sln, "Uh_dz", FN_DZ);
// output.scalar_out(&sln, "Uh_dx_0", FN_DX_0);
// output.scalar_out(&sln, "Uh_dx_1", FN_DX_1);
// output.scalar_out(&sln, "Uh_dx_2", FN_DX_2);
// output.out(&sln, "Uh dy", FN_DY_0);
// output.out(&sln, "Uh dz", FN_DZ_0);
// output.vector_out(&sln, "Uh_dx", FN_DX);
// output.vector_out(&sln, "Uh_dy", FN_DY);
// output.vector_out(&sln, "Uh_dz", FN_DZ);
// output.scalar_out(&sln, "Uh_dx_0", FN_DX_0);
// output.scalar_out(&sln, "Uh_dx_1", FN_DX_1);
// output.scalar_out(&sln, "Uh_dx_2", FN_DX_2);
// output.out(&sln, "Uh_dy", FN_DY_0);
// output.out(&sln, "Uh_dz", FN_DZ_0);
// output.out(&eh, "Eh", FN_VAL);
// output.out(&eh_dx, "Eh_dx", FN_VAL);
// output.out(&eh_dy, "Eh_dy");
// output.out(&eh_dz, "Eh_dz");
// output.out(&ex_sln, "U", FN_VAL);
// output.out(&ex_sln, "U_dx", FN_DX);
// output.out(&ex_sln, "U_dy", FN_DY);
// output.out(&ex_sln, "U_dz", FN_DZ);
// output.scalar_out(&ex_sln, "U_0", FN_VAL_0);
// output.scalar_out(&ex_sln, "U_1", FN_VAL_1);
// output.scalar_out(&ex_sln, "U_2", FN_VAL_2);
// output.out(&ex_sln, "U_dy", FN_DY_0);
// output.out(&ex_sln, "U_dz", FN_DZ_0);
fclose(ofile);
}
else {
error("Can not not open '%s' for writing.", of_name);
}
#endif
}
#ifdef WITH_PETSC
mat.free();
rhs.free();
PetscFinalize();
#endif
return res;
}
| certik/hermes3d | tests/calc/hex-hcurl/hex-hcurl.cc | C++ | gpl-2.0 | 9,208 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('dept', '0003_auto_20150518_0845'),
]
operations = [
migrations.AddField(
model_name='department',
name='DeptIntake',
field=models.IntegerField(default=60),
),
]
| bpain2010/kgecweb | dept/migrations/0004_department_deptintake.py | Python | gpl-2.0 | 405 |
# -*- coding: utf-8 -*-
"""
/***************************************************************************
A QGIS plugin
CaigosConnector: Connect CAIGOS-GIS with QGIS
copyright : (C) 2019 by EZUSoft
email : qgis (at) makobo.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
"""
try:
from fnc4all import *
from fnc4CaigosConnector import *
except:
from .fnc4all import *
from .fnc4CaigosConnector import *
def EZU366C2CC3BAD145709B8EEEB611D1D6AA():
return "CAIGOS-Konnektor" + str(myqtVersion)
def EZU5067C1BD7E924D33B7D7B27226119B84():
return "V " + EZUF9FB4AE0A2B44C8B8313441BFB307407()
def EZUDDCC484E3DC3474889FE69ED76A61E8F():
if (os.path.exists(os.path.dirname(__file__) + '/00-debug.txt')):
return True
else:
return False
def EZU11DE7CED39F2439E803B738E6E678716():
s = QSettings( "EZUSoft", EZU366C2CC3BAD145709B8EEEB611D1D6AA() )
s.setValue( "-id-", EZU6F6315D895BC410ABCE5C02C6E0C5F14((EZU366C2CC3BAD145709B8EEEB611D1D6AA() + "ID=%02i%02i%02i%02i%02i%02i") % (time.localtime()[0:6])) )
return s.value( "–id–", "" )
def tr( message):
return message
def EZUAC62A428AD734562A807B0FF8D792A61(intCG = None,sStatus = None):
s = QSettings( "EZUSoft", EZU366C2CC3BAD145709B8EEEB611D1D6AA() )
sVersion = "-"
if not sStatus:
sStatus = " - Onlineversion"
if (s.value( "status","")==''):
sStatus = " - Offlineversion"
else:
if (s.value( "status","")!=b'ok'):
sStatus = " - Demoversion"
if not intCG :
intCG = int(s.value( "cgversion",-1))
if intCG == 0:
sVersion = "11.2"
if intCG == 1:
sVersion = "2016-2019"
return u"CAIGOS Importer für Version " + sVersion + " (PlugIn Version " + EZU5067C1BD7E924D33B7D7B27226119B84() + ")" + sStatus
if __name__ == "__main__":
pass
| EZUSoft/CaigosConnector | fnc4CaigosConnector.py | Python | gpl-2.0 | 2,684 |
package com.utc.api13.commun.dao.interfaces;
import java.util.List;
import com.utc.api13.commun.entities.ADataEntity;
import com.utc.api13.commun.exceptions.DataAccessException;
public interface IGenericDAO<T extends ADataEntity> {
/**
* Renvoie tous les objets existants pour la base associée au generic
*
* @return la liste des objets
* @throws DataAccessException
* s'il y a une erreur d'accès aux données
*/
List<T> findAll() throws DataAccessException;
/**
* Creation d'un objet
*
* @param entity
* objet à créer
* @return l'objet créé
* @throws DataAccessException
* Exception DAO
*/
T save(T entity) throws DataAccessException;
/**
* Vide toutes les données stockées de la classe Entity
*
* @throws DataAccessException
* Exception DAO
*/
void deleteAll() throws DataAccessException;
/**
* Met à jour un entity déjà enregistré
*
* @param entity
* entity à update
* @return entity updaté
* @throws DataAccessException
* exception d'accès aux données
*/
T merge(T entity) throws DataAccessException;
void updateAll(List<T> entities) throws DataAccessException;
}
| bsenechal/API13 | MasterChess/src/main/java/com/utc/api13/commun/dao/interfaces/IGenericDAO.java | Java | gpl-2.0 | 1,343 |
<?php
$eZTranslationCacheCodeDate = 1058863428;
$CacheInfo = array (
'charset' => 'utf-8',
);
$TranslationInfo = array (
'context' => 'design/ezwebin/full/article',
);
$TranslationRoot = array (
'728799cf65f9f2fb9e0f9186e19733ba' =>
array (
'context' => 'design/ezwebin/full/article',
'source' => 'Comments',
'comment' => NULL,
'translation' => '评论',
'key' => '728799cf65f9f2fb9e0f9186e19733ba',
),
'cf18f7eb9acc424592a5059350dad42d' =>
array (
'context' => 'design/ezwebin/full/article',
'source' => 'New comment',
'comment' => NULL,
'translation' => '新建评论',
'key' => 'cf18f7eb9acc424592a5059350dad42d',
),
'fbd99b972ec05fa219baf2107c50f034' =>
array (
'context' => 'design/ezwebin/full/article',
'source' => '%login_link_startLog in%login_link_end or %create_link_startcreate a user account%create_link_end to comment.',
'comment' => NULL,
'translation' => '%login_link_start登录%login_link_end或%create_link_start注册一个新帐号%create_link_end来提交注释。',
'key' => 'fbd99b972ec05fa219baf2107c50f034',
),
'3bd0fc8f7f1f06698040620a8c29eef3' =>
array (
'context' => 'design/ezwebin/full/article',
'source' => 'Tip a friend',
'comment' => NULL,
'translation' => '发送给好友',
'key' => '3bd0fc8f7f1f06698040620a8c29eef3',
),
'd3aaf39acc7d6dbcbaf8dc69ed964220' =>
array (
'context' => 'design/ezwebin/full/article',
'source' => 'Related content',
'comment' => NULL,
'translation' => 'Related content',
'key' => 'd3aaf39acc7d6dbcbaf8dc69ed964220',
),
);
?>
| jim835/qscene_ez | var/ezwebin_site/cache/translation/4a93df08e23ad1642b48a537badbbb37/chi-CN/5c9bf0a23833634f0ccf85e0cd28188b.php | PHP | gpl-2.0 | 1,629 |
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
[assembly: AssemblyTitle("Glacier2 .NET Client Library")]
[assembly: AssemblyDescription("Glacier2 .NET Client Library")]
[assembly: AssemblyCompany("ZeroC, Inc.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyProduct("Ice")]
[assembly: AssemblyCopyright("© 2003-2016 ZeroC, Inc.")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("3.7.60")]
[assembly: AssemblyDelaySign(false)]
[assembly: ComVisible(false)]
| ljx0305/ice | csharp/src/Glacier2/AssemblyInfo.cs | C# | gpl-2.0 | 933 |
#region Copyright (c)2003 Juanjo < http://lphant.sourceforge.net >
/*
* This file is part of eLePhant
* Copyright (C)2003 Juanjo < j_u_a_n_j_o@users.sourceforge.net / http://lphant.sourceforge.net >
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#endregion
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Threading;
using System.Diagnostics;
namespace eLePhant.eDonkey
{
/// <summary>
/// Summary description for CFileFound.
/// </summary>
internal class CFileFound
{
public string Hash;
public string Name;
public uint Size;
public uint Avaibility;
public string Codec;
public uint BitRate;
public string Length;
public bool Complete;
public Hashtable Sources;
public Types.Constants.SearchResultState ResultState;
public StringCollection OtherNames;
public CFileFound(string in_Hash, string in_Name, uint in_Size, uint in_Avaibility, string in_codec,string in_length,uint in_bitrate, bool in_complete, uint in_ip, ushort in_port)
{
this.Hash=in_Hash;
this.Name=in_Name;
this.Size=in_Size;
this.Avaibility=in_Avaibility;
Codec=in_codec;
BitRate=in_bitrate;
Length=in_length;
Complete=in_complete;
this.OtherNames=new StringCollection();
this.OtherNames.Add(Name);
CElement element=CKernel.FilesList[CKernel.StringToHash(in_Hash)];
if (element==null)
ResultState=Types.Constants.SearchResultState.New;
else if (element.File.FileStatus==Protocol.FileState.Complete)
ResultState=Types.Constants.SearchResultState.AlreadyDownloaded;
else
ResultState=Types.Constants.SearchResultState.AlreadyDownloading;
if ((in_ip>Protocol.LowIDLimit)&&(in_port>0)&&(in_port<ushort.MaxValue))
{
Sources=new Hashtable();
Sources.Add(in_ip,in_port);
//Debug.WriteLine(in_ip.ToString()+":"+in_port.ToString());
if ((element!=null)&&(element.File.FileStatus==Protocol.FileState.Ready))
CKernel.ClientsList.AddClientToFile(in_ip,in_port,0,0,element.File.FileHash);
}
}
public void UpdateFile(uint in_Avaibility,string in_Name, string in_codec,string in_length,uint in_bitrate, bool in_complete, uint in_ip, ushort in_port)
{
this.Avaibility+=in_Avaibility;
Complete=Complete||in_complete;
if (!this.OtherNames.Contains(in_Name))
{
this.OtherNames.Add(in_Name);
}
if (((Length==null)||(Length.Length==0))&&(in_length.Length>0))
Length=in_length;
if ((Codec.Length==0)&&(in_codec.Length>0))
Codec=in_codec;
if ((BitRate==0)&&(in_bitrate>0))
BitRate=in_bitrate;
if ((in_ip>Protocol.LowIDLimit)&&(in_port>0)&&(in_port<ushort.MaxValue))
{
if (Sources==null) Sources=new Hashtable();
if (!Sources.Contains(in_ip)) Sources.Add(in_ip,in_port);
//Debug.WriteLine(in_ip.ToString()+":"+in_port.ToString());
CElement element=CKernel.FilesList[CKernel.StringToHash(Hash)];
if ((element!=null)&&(element.File.FileStatus==Protocol.FileState.Ready))
{
CKernel.ClientsList.AddClientToFile(in_ip,in_port,0,0,element.File.FileHash);
}
}
}
public void AddSourcesToFile()
{
if ((Sources==null)||(Sources.Count==0)) return;
CElement element=CKernel.FilesList[CKernel.StringToHash(this.Hash)];
int i;
if ((element!=null)&&(element.File.FileStatus==Protocol.FileState.Ready))
{
stDatosFuente[] sourcesList=new stDatosFuente[Sources.Count];
i=0;
foreach (uint ip in Sources.Keys)
{
sourcesList[i].IP=ip;
sourcesList[i].Port=(ushort)Sources[ip];
i++;
}
CKernel.ClientsList.AddClientsToFile(sourcesList,CKernel.StringToHash(this.Hash));
}
}
public string ToLink()
{
return "ed2k://|file|"+this.Name+"|"+this.Size.ToString()+"|"+this.Hash+"|/";
}
}
internal class CSearcher:Hashtable
{
private int m_ServerIndex;
private MemoryStream m_TCPPacket;
private MemoryStream m_UDPPacket;
private uint m_sources;
private bool m_SearchCanceled;
private bool m_IsClientSearch;
private bool m_Searching;
public void CancelSearch()
{
m_SearchCanceled=true;
}
/// <summary>
/// Constructor used in common client server searchs
/// </summary>
/// <param name="searchString">searchString</param>
/// <param name="matchAnyWords">matchAnyWords</param>
/// <param name="type">type</param>
/// <param name="maxSize">maxSize</param>
/// <param name="minSize">minSize</param>
/// <param name="avaibility">avaibility</param>
public CSearcher(string searchString, bool matchAnyWords, string type, uint maxSize, uint minSize, uint avaibility, string exclude) : base()
{
// buscamos primero en el servidor en el que estamos
m_TCPPacket=new MemoryStream();
m_UDPPacket=new MemoryStream();
m_sources=0;
m_IsClientSearch=false;
m_SearchCanceled=false;
m_Searching=true;
CServerRequestSearch ServerRequestSearchTCP=new CServerRequestSearch(m_TCPPacket, searchString, matchAnyWords, type, maxSize, minSize, avaibility, exclude, false);
CServerRequestSearch ServerRequestSearchUDP=new CServerRequestSearch(m_UDPPacket, searchString, matchAnyWords, type, maxSize, minSize, avaibility, exclude, true);
CKernel.ServersList.ActiveServer.SendTCPSearch(m_TCPPacket,this);
}
/// <summary>
/// Constructor used when the search is a shard file list request
/// </summary>
public CSearcher()
{
m_IsClientSearch=true;
m_Searching=false;
}
public void ExtendSearch()
{
if ((CKernel.ServersList.Count > m_ServerIndex)
&& (CServer)(CKernel.ServersList[m_ServerIndex])!=CKernel.ServersList.ActiveServer)
{
CServer nextServer;
nextServer=(CServer)CKernel.ServersList[m_ServerIndex];
nextServer.SendUDPSearch(m_UDPPacket,this);
}
m_ServerIndex++;
if (m_ServerIndex>=CKernel.ServersList.Count)
{
m_ServerIndex=0;
}
}
public void AddFileFound(byte[] Hash, string name, uint size, uint avaibility, string codec, string length, uint bitrate, bool complete, uint ip, ushort port)
{
try
{
string strHash=CKernel.HashToString(Hash);
m_sources += avaibility;
if (ContainsKey(strHash))
{
CFileFound fileFound=(CFileFound)this[strHash];
fileFound.UpdateFile(avaibility,name,codec,length,bitrate,complete,ip,port);
CKernel.SearchFileModified(fileFound,(int)CKernel.Searchs.GetKey(CKernel.Searchs.IndexOfValue(this)));
}
else
{
CFileFound fileFound=new CFileFound(strHash, name, size, avaibility, codec,length,bitrate,complete,ip,port);
Add(strHash,fileFound);
CKernel.NewFileFound(fileFound,(int)CKernel.Searchs.GetKey(CKernel.Searchs.IndexOfValue(this)));
}
}
catch(Exception e)
{
Debug.WriteLine("Search error");
Debug.WriteLine(e.ToString());
CKernel.SearchEnded((int)CKernel.Searchs.GetKey(CKernel.Searchs.IndexOfValue(this)));
}
}
public void OnTCPSearchEnded()
{
if ((CKernel.Preferences.GetBool("AutoExtendSearch"))
&&(m_sources < Protocol.MaxSearchResults)
&&(!m_IsClientSearch)&&(m_Searching))
{
Debug.Write("Autoextending search\n");
m_ServerIndex=0;
for (uint i=0;i<CKernel.ServersList.Count;i++)
{
if ((m_sources>Protocol.MaxSearchResults)||(m_SearchCanceled)) break;
ExtendSearch();
Thread.Sleep(250);
CKernel.NewSearchProgress((int)(((float)i/(float)CKernel.ServersList.Count)*100.0F),(int)CKernel.Searchs.GetKey(CKernel.Searchs.IndexOfValue(this)));
}
//m_UDPPacket.Close();
//m_UDPPacket=null;
if (m_ServerIndex>=CKernel.ServersList.Count)
{
m_ServerIndex=0;
}
}
// else
// {
// if ((!m_IsClientSearch)&&(m_Searching)&&(CKernel.ServersList.ActiveServer!=null))
// CKernel.ServersList.ActiveServer.QueryMoreResults();
//
// }
m_Searching=false;
if (CKernel.Searchs.IndexOfValue(this)>=0)
CKernel.SearchEnded((int)CKernel.Searchs.GetKey(CKernel.Searchs.IndexOfValue(this)));
}
}
} | knocte/lphant | Source/Kernel/eDonkey/Search.cs | C# | gpl-2.0 | 8,795 |
<?php
/**
* The WordPress version string
*
* @global string $wp_version
*/
$wp_version = '4.1';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
$wp_db_version = 30133;
/**
* Holds the TinyMCE version
*
* @global string $tinymce_version
*/
$tinymce_version = '4107-20141130';
/**
* Holds the required PHP version
*
* @global string $required_php_version
*/
$required_php_version = '5.2.4';
/**
* Holds the required MySQL version
*
* @global string $required_mysql_version
*/
$required_mysql_version = '5.0';
$wp_local_package = 'ca';
| crida/motif-crida | wp-includes/version.php | PHP | gpl-2.0 | 644 |
package com.wang.eggroll.passwordbox.utils;
import static android.app.Activity.RESULT_FIRST_USER;
/**
* Created by eggroll on 19/04/2017.
*/
public class Statics {
public static int CONFIRM_OLD_PASSWORD = 101;
public static int REQUEST_CAMERA_PERMS = 102;
public static int SCAN_REQUEST = 2;
public static int IMAGE_REQUEST = 3;
public static int IMAGE_ANALYZED_SUCCESS = 104;
public static int IMAGE_ANALYZED_FAILED = 105;
public static final int CLEAR_PATTERN_DELAY_MILLI = 2000;
public static final String KEY_NUM_FAILED_ATTEMPTS = "num_failed_attempts";
public static final int RESULT_FORGOT_PASSWORD = RESULT_FIRST_USER;
}
| wcc7023/PasswordBox | app/src/main/java/com/wang/eggroll/passwordbox/utils/Statics.java | Java | gpl-2.0 | 674 |
//------- PRACE S EMS pameti ---------------
#include <stdio.h>
#include <fcntl.h>
#include <io.h>
#include <dos.h>
#include <mem.h>
typedef struct
{
unsigned long length; /* velikost prenasene pameti */
unsigned int sourceH; /* handle pro zdroj (0=konvencni */
unsigned long sourceOff; /* offset zdroje pameti */
unsigned int destH; /* handle pro terc (0=konvencni */
unsigned long destOff; /* offset terce pameti */
} XMOVE;
int get_emem(void); // Fce pro zachazeni s EMS
int alloc_emem(int n); // Alokuje n KB pameti, vraci handle
int dealloc_emem(int h); // Dealokuje EMS (handle)
int move_emem(XMOVE *p); // presune blok z/do EMS
int mem_emem(unsigned *total, unsigned *free);
#define pagesizeEMS 0x4000 // pamet EMS je ze 16k stranek
//int pagesAllocated = 0;
//int totalPages;
char *EmsFrame;
//------ Zda je EMS driver dostupny: ret= 1 - ANO, 0 - NE
int isEMS(void)
{
int fh;
union REGS rg;
if((fh=open("EMMXXXX0",O_RDONLY,&fh)) == -1) return( 0 );
rg.h.ah = 0x44;
rg.h.al = 0x00;
rg.x.bx = fh;
int86(0x21,&rg,&rg);
close(fh);
if(rg.x.cflag) return(0);
if(rg.x.dx & 0x80)
return( 1 );
else
return( 0 );
}
//----- Zda je EMS HW dostupny ret= 1 - ANO, 0 - NE
int checkEMS(void)
{
union REGS rg;
rg.h.ah = 0x40;
int86(0x67,&rg,&rg);
if(rg.h.ah == 0)
return( 1 );
else
return( 0 );
}
//----- Vraci totalni pocet stranek EMS nebo -1 ----
int coretotalEMS(void)
{
union REGS rg;
rg.h.ah = 0x42;
int86(0x67,&rg,&rg);
if(rg.x.cflag) return( -1 );
//if(!pagesAllocated)
// { pagesAllocated = 1;
// totalPages = rg.x.dx;
// }
return(rg.x.bx);
}
//----- Vraci pocet volnych stranek EMS nebo -1 ----
int coreleftEMS(void)
{
union REGS rg;
//if(pagesAllocated) return(totalPages);
rg.h.ah = 0x42;
int86(0x67,&rg,&rg);
if(rg.x.cflag) return( -1 );
//if(!pagesAllocated)
//pagesAllocated = 1;
//totalPages = rg.x.dx;
//return(totalPages);
return(rg.x.dx);
}
//----- Vraci EMS page frame (pointr na EMS) nebo NULL ----
char *pageframeEMS(void)
{
union REGS rg;
rg.h.ah = 0x41;
int86(0x67,&rg,&rg);
if(rg.h.ah != 0)
return( NULL );
else
return(MK_FP(rg.x.bx,0));
}
//----- Alokuje n stranek - vraci handle na blok stranek nebo 0 ----
unsigned mallocEMS(int n)
{
union REGS rg;
if(n > coreleftEMS() ) return( 0 );
rg.h.ah = 0x43;
rg.x.bx = n;
int86(0x67,&rg,&rg);
if(rg.h.ah)
return( 0 );
else
return(rg.x.dx);
}
//----- Dealokuje blok stranek ret = 1-O.K. 0-ERR -----
unsigned freeEMS(unsigned h)
{
union REGS rg;
int i;
for(i=0; i<5; i++)
{ rg.h.ah = 0x45;
rg.x.dx = h;
int86(0x67,&rg,&rg);
if(rg.h.ah == 0) break;
}
if(rg.h.ah == 0)
return( 1 );
else
return( 0 );
}
//----- Mapuje logiclou stranku do fyzicke stranky
int mapEMS(unsigned h, int Ppage, int Lpage)
{
union REGS rg;
if(Ppage < 0 || Ppage > 3) return( 0 );
rg.h.ah = 0x44;
rg.h.al = Ppage;
rg.x.bx = Lpage;
rg.x.dx = h;
int86(0x67,&rg,&rg);
if(rg.h.ah != 0)
return( 0 );
else
return( 1 );
}
// ##### Fce se stejnymi parametry pro EMS jako pro XMS
//----- Zda je EMS dostupna
int get_emem(void)
{
int ist;
ist = checkEMS();
if(ist == 1)
{ ist = isEMS();
if(ist == 1) return( 0x0300 );
}
return( -1 );
}
//----- Allokuje Kb pameti -------
int alloc_emem(int kb)
{
int Pages,hhh;
Pages = kb / 16;
if((Pages * 16) < kb) Pages++;
hhh = mallocEMS(Pages);
if(hhh == 0)
return( -1);
else
return(hhh);
}
//----- dealokuje EMS pres handle
int dealloc_emem(int h)
{
return( freeEMS( h ) );
}
//----- presune blok pameti
// unsigned long length; /* velikost prenasene pameti */
// unsigned int sourceH; /* handle pro zdroj (0=konvencni */
// unsigned long sourceOff; /* offset zdroje pameti */
// unsigned int destH; /* handle pro terc (0=konvencni */
// unsigned long destOff; /* offset terce pameti */
int move_emem(XMOVE *pxm)
{
unsigned char *SrcBuf,*DstBuf;
int ist;
unsigned int SrcOff, DstOff, BegPage, BegOff, FreeByte, CopyLen;
if(pxm->sourceH == 0 && pxm->destH != 0) // Buffer->EMS
{
SrcBuf = (unsigned char *)pxm->sourceOff;// buffer
SrcOff = 0;
BegPage = pxm->destOff / pagesizeEMS; // pocatecni page
BegOff = pxm->destOff % pagesizeEMS; // offset in page
FreeByte= pagesizeEMS - BegOff; // volnych B na page
CopyLen = pxm->length; // celkova delka
Next_page:
if(CopyLen > FreeByte)
{
ist = mapEMS(pxm->destH, 0, BegPage);
if(ist==0) return( 0 );
memcpy(EmsFrame+BegOff, SrcBuf+SrcOff, FreeByte);
CopyLen = CopyLen - FreeByte;
SrcOff += FreeByte;
BegPage++;
BegOff = 0;
FreeByte = pagesizeEMS;
goto Next_page;
}
else
{
ist = mapEMS(pxm->destH, 0, BegPage);
if(ist==0) return( 0 );
memcpy(EmsFrame+BegOff, SrcBuf+SrcOff, CopyLen);
}
}
else if(pxm->sourceH != 0 && pxm->destH == 0) // EMS->Buffer
{
DstBuf = (unsigned char *)pxm->destOff;// buffer
DstOff = 0;
BegPage = pxm->sourceOff / pagesizeEMS; // pocatecni page
BegOff = pxm->sourceOff % pagesizeEMS; // offset in page
FreeByte= pagesizeEMS - BegOff; // volnych B na page
CopyLen = pxm->length; // celkova delka
Next_page2:
if(CopyLen > FreeByte)
{
ist = mapEMS(pxm->sourceH, 0, BegPage);
if(ist==0) return( 0 );
memcpy(DstBuf+DstOff, EmsFrame+BegOff, FreeByte);
CopyLen = CopyLen - FreeByte;
DstOff += FreeByte;
BegPage++;
BegOff = 0;
FreeByte = pagesizeEMS;
goto Next_page2;
}
else
{
ist = mapEMS(pxm->sourceH, 0, BegPage);
if(ist==0) return( 0 );
memcpy(DstBuf+DstOff, EmsFrame+BegOff, CopyLen);
}
}
else // Error
{ return( 0 );
}
return 1;
}
// ----- Vrati pocet volnych a max. KB EMS
int mem_emem(unsigned int *total, unsigned int *freeall)
{
int pom;
pom = coretotalEMS();
if(pom != -1 )
*total = pom * 16;
else
return( 0 );
pom = coreleftEMS();
if(pom != -1)
*freeall = pom * 16;
else
return( 0 );
return( 1 );
}
| kompowiec/Arachne-WWW-browser | LOPIF/EMSMEM.C | C++ | gpl-2.0 | 6,899 |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package edu.cmu.cs.cimds.geogame.client.services;
import java.util.Date;
import com.google.gwt.user.client.rpc.AsyncCallback;
import edu.cmu.cs.cimds.geogame.client.model.dto.CommStruct;
import edu.cmu.cs.cimds.geogame.client.model.dto.GeoGameCommandDTO;
import edu.cmu.cs.cimds.geogame.client.model.dto.MessageDTO;
import edu.cmu.cs.cimds.geogame.client.model.dto.UserDTO;
public interface MessageServiceAsync {
public void sendMessage(UserDTO player, MessageDTO message, AsyncCallback<Void> asyncCallback);
public void sendMessageNew(UserDTO player, MessageDTO message, AsyncCallback<Void> asyncCallback);
public void sendAdminMessage(UserDTO admin, MessageDTO message, AsyncCallback<Void> asyncCallback);
public void getMessages(UserDTO player, Date minTimestamp, boolean needsDBRefresh, AsyncCallback<CommStruct> asyncCallback);
public void getMessagesNew(UserDTO player, Date minTimestamp, boolean needsDBRefresh, AsyncCallback<CommStruct> asyncCallback);
public void sendAdminCommand(UserDTO admin, GeoGameCommandDTO command, AsyncCallback<Void> asyncCallback);
public void getAdminCommand(UserDTO player, AsyncCallback<GeoGameCommandDTO> asyncCallback);
} | grapesmoker/geogame | src/edu/cmu/cs/cimds/geogame/client/services/MessageServiceAsync.java | Java | gpl-2.0 | 1,274 |
/*____________________________________________________________________________
FreeAmp - The Free MP3 Player
Portions Copyright (C) 1999 EMusic.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: Toolbar.cpp,v 1.12 2001/10/17 09:54:53 skx Exp $
____________________________________________________________________________*/
/* system headers */
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <assert.h>
#include <shellapi.h>
#include <stdio.h>
#include <string.h>
#include <string>
using namespace std;
#include "event.h"
#include "eventdata.h"
#include "Toolbar.h"
#include "resource.h"
#include "debug.h"
#define UWM_TRAY WM_USER + 666
HINSTANCE g_hinst = NULL;
extern "C" ToolbarUI *Initialize(FAContext *context)
{
return new ToolbarUI(context);
}
INT
WINAPI
DllMain ( HINSTANCE hInstance,
ULONG ul_reason_being_called,
LPVOID lpReserved)
{
switch (ul_reason_being_called)
{
case DLL_PROCESS_ATTACH:
g_hinst = hInstance;
break;
case DLL_THREAD_ATTACH:
break;
case DLL_THREAD_DETACH:
break;
case DLL_PROCESS_DETACH:
break;
}
return 1;
}
static
LRESULT
WINAPI
MainWndProc(HWND hwnd,
UINT msg,
WPARAM wParam,
LPARAM lParam )
{
LRESULT result = 0;
ToolbarUI* ui = (ToolbarUI*)GetWindowLong(hwnd, GWL_USERDATA);
switch (msg)
{
case WM_CREATE:
{
// When we create the window we pass in a pointer to our
// UserInterface object...
// Tuck away the pointer in a safe place
ui = (ToolbarUI*)((LPCREATESTRUCT)lParam)->lpCreateParams;
assert(ui != NULL);
result = SetWindowLong(hwnd, GWL_USERDATA, (LONG)ui);
break;
}
case UWM_TRAY:
{
ui->TrayNotify(lParam);
break;
}
default:
result = DefWindowProc( hwnd, msg, wParam, lParam );
break;
}
return result;
}
ToolbarUI::
ToolbarUI(FAContext *context):
UserInterface()
{
m_context = context;
m_hWnd = NULL;
m_trayIcon = NULL;
m_state = UIState_Stopped,
*m_trayTooltip = 0x00;
m_uiThread = NULL;
}
ToolbarUI::
~ToolbarUI()
{
delete m_uiThread;
}
Error ToolbarUI::Init(int32 startup_type)
{
assert(this);
m_uiThread = Thread::CreateThread();
m_uiThread->Create(ui_thread_function, this);
return kError_NoErr;
}
void
ToolbarUI::
ui_thread_function(void* arg)
{
ToolbarUI* ui = (ToolbarUI*)arg;
ui->UIThreadFunction();
}
void
ToolbarUI::
UIThreadFunction()
{
WNDCLASS wc;
MSG msg;
memset(&wc, 0x00, sizeof(WNDCLASS));
wc.style = CS_OWNDC|CS_DBLCLKS ;
wc.lpfnWndProc = MainWndProc;
wc.hInstance = g_hinst;
wc.hCursor = LoadCursor( NULL, IDC_ARROW );
wc.hIcon = LoadIcon( g_hinst, MAKEINTRESOURCE(IDI_EXE_ICON) );
wc.hbrBackground = NULL;//(HBRUSH)( COLOR_WINDOW + 1 );
wc.lpszClassName = "ToolbarUI";
m_trayIcon = LoadIcon(g_hinst, MAKEINTRESOURCE(IDI_EXE_ICON));
if( RegisterClass( &wc ) )
{
m_hWnd = CreateWindow( "ToolbarUI",
"ToolbarUI Hidden Window",
WS_POPUP | WS_SYSMENU,
0,
0,
0,
0,
NULL,
NULL,
g_hinst,
this );
SetupToolIcon();
if( m_hWnd )
{
while( GetMessage( &msg, NULL, 0, 0 ) )
{
TranslateMessage( &msg );
DispatchMessage( &msg );
}
}
RemoveTrayIcon();
DestroyWindow(m_hWnd);
m_hWnd = NULL;
}
}
Error
ToolbarUI::
AcceptEvent(Event* event)
{
Error result = kError_UnknownErr;
if (event)
{
result = kError_NoErr;
switch (event->Type())
{
case INFO_Playing:
{
m_state = UIState_Playing;
break;
}
case INFO_Paused:
{
m_state = UIState_Paused;
break;
}
case INFO_Stopped:
{
m_state = UIState_Stopped;
break;
}
case INFO_MediaInfo:
{
MediaInfoEvent *info = (MediaInfoEvent*)event;
char *foo = strrchr(info->m_filename,'\\');
char title[256] = BRANDING" - ";
if (foo)
strcat(title, foo);
else
strcat(title, info->m_filename);
SetTrayTooltip(title);
break;
}
case INFO_PlaylistItemsUpdated:
{
PlaylistItemsUpdatedEvent *pInfo =
(PlaylistItemsUpdatedEvent *)event;
vector<PlaylistItem*>::const_iterator i =
pInfo->Items()->begin();
for(; i != pInfo->Items()->end(); i++)
{
if((*i) == m_context->plm->GetCurrentItem())
{
UpdateMetaData(*i);
break;
}
}
break;
}
case INFO_PlaylistCurrentItemInfo:
{
if (m_context->plm->GetCurrentIndex() != kInvalidIndex)
UpdateMetaData(m_context->plm->GetCurrentItem());
break;
}
case INFO_StreamInfo:
{
StreamInfoEvent *info = (StreamInfoEvent*)event;
char title[256] = BRANDING" - ";
info->GetTitle(title + strlen(title), 256 - strlen(title));
SetTrayTooltip(title);
break;
}
case CMD_Cleanup:
{
if (m_hWnd)
PostMessage(m_hWnd, WM_QUIT, 0, 0);
m_uiThread->Join();
m_context->target->AcceptEvent(new Event(INFO_ReadyToDieUI));
break;
}
case INFO_PrefsChanged:
{
SetupToolIcon();
break;
}
}
}
return result;
}
void ToolbarUI::UpdateMetaData(const PlaylistItem *pItem)
{
string oTitle("");
if (pItem->GetMetaData().Title().length() > 0 ||
pItem->GetMetaData().Artist().length() > 0)
{
oTitle = pItem->GetMetaData().Title();
if (pItem->GetMetaData().Artist().length() > 0)
oTitle += string(" - ") + pItem->GetMetaData().Artist();
}
else
{
string url;
char path[MAX_PATH];
uint32 len = MAX_PATH;
url = pItem->URL();
URLToFilePath(url.c_str(), path, &len);
oTitle = string(path);
}
oTitle = string(BRANDING": ") + oTitle;
SetTrayTooltip((char*)oTitle.c_str());
}
void ToolbarUI::SetupToolIcon(void)
{
bool bShowIcon;
m_context->prefs->GetPrefBoolean(kLiveInTrayPref, &bShowIcon);
if (bShowIcon)
AddTrayIcon();
else
RemoveTrayIcon();
}
void
ToolbarUI::
TrayNotify(int32 notifyMessage)
{
switch(notifyMessage)
{
case WM_LBUTTONDBLCLK:
case WM_LBUTTONUP:
{
Int32PropValue *pProp;
HWND hWnd;
if (IsError(m_context->props->GetProperty("MainWindow",
(PropValue **)&pProp)))
return;
else
hWnd = (HWND)pProp->GetInt32();
ShowWindow(hWnd, SW_RESTORE);
SetForegroundWindow(hWnd);
break;
}
case WM_RBUTTONUP:
{
HMENU menuHandle, popupHandle;
HINSTANCE hinst = (HINSTANCE)GetWindowLong(m_hWnd, GWL_HINSTANCE);
POINT pt;
int32 command;
// need mouse coordinates relative to screen
GetCursorPos(&pt);
// load the menu and retrieve its popup
menuHandle = LoadMenu(hinst, MAKEINTRESOURCE(IDM_TRAY));
popupHandle = GetSubMenu(menuHandle, 0);
if(m_state == UIState_Playing)
{
MENUITEMINFO mii;
memset(&mii, 0x00, sizeof(MENUITEMINFO));
mii.cbSize = sizeof(MENUITEMINFO);
mii.fMask = MIIM_TYPE|MIIM_ID ;
mii.fType = MFT_STRING;
mii.dwTypeData = "Pause";
mii.cch = strlen("Pause");
mii.wID = IDC_PAUSE;
SetMenuItemInfo(popupHandle,
2,
TRUE,
&mii);
}
SetForegroundWindow(m_hWnd);
// display the popup
command = TrackPopupMenu( popupHandle,
TPM_RETURNCMD | TPM_RIGHTBUTTON |
TPM_NONOTIFY,
pt.x,
pt.y,
0,
m_hWnd,
NULL);
SetForegroundWindow(m_hWnd);
switch(command)
{
case IDC_MYMUSIC:
m_context->target->AcceptEvent(
new Event(CMD_ToggleMusicBrowserUI));
break;
case IDC_PLAY:
m_context->target->AcceptEvent(
new Event(CMD_Play));
break;
case IDC_STOP:
m_context->target->AcceptEvent(
new Event(CMD_Stop));
break;
case IDC_PAUSE:
m_context->target->AcceptEvent(
new Event(CMD_Pause));
break;
case IDC_NEXTTRACK:
m_context->target->AcceptEvent(
new Event(CMD_NextMediaPiece));
break;
case IDC_PREVIOUSTRACK:
m_context->target->AcceptEvent(
new Event(CMD_PrevMediaPiece));
break;
case IDC_EXIT:
m_context->target->AcceptEvent(
new Event(CMD_QuitPlayer));
break;
}
break;
}
}
}
void
ToolbarUI::
AddTrayIcon()
{
NOTIFYICONDATA nid;
int rc;
// Fill out NOTIFYICONDATA structure
nid.cbSize = sizeof(NOTIFYICONDATA); // sanitycheck
nid.hWnd = m_hWnd; // window to receive notifications
nid.uID = 1; // application defined identifier for icon
nid.uFlags = NIF_MESSAGE | // uCallbackMessage is valid, use it
NIF_ICON | // hIcon is valid, use it
NIF_TIP; // there is tooltip specified
nid.uCallbackMessage = UWM_TRAY; // that's what we will receive in wndProc
nid.hIcon = m_trayIcon;
strncpy(nid.szTip, m_trayTooltip, 63);
nid.szTip[63] = 0;
rc = Shell_NotifyIcon(NIM_ADD, &nid); // this adds the icon
}
void
ToolbarUI::
RemoveTrayIcon()
{
NOTIFYICONDATA nid;
nid.cbSize = sizeof(NOTIFYICONDATA);
nid.hWnd = m_hWnd;
nid.uID = 1;
nid.uFlags = NIF_ICON;
nid.hIcon = m_trayIcon;
Shell_NotifyIcon(NIM_DELETE, &nid);
}
void
ToolbarUI::
SetTrayTooltip(char *str)
{
NOTIFYICONDATA nid;
strncpy(m_trayTooltip, str, sizeof(m_trayTooltip));
nid.cbSize = sizeof(NOTIFYICONDATA);
nid.hWnd = m_hWnd;
nid.uID = 1;
nid.uFlags = NIF_TIP; // just change tip
strncpy(nid.szTip, m_trayTooltip, 63);
nid.szTip[63] = 0;
Shell_NotifyIcon(NIM_MODIFY, &nid); // now, modify our tooltip
}
| mayhem/freeamp | ui/toolbar/win32/Toolbar.cpp | C++ | gpl-2.0 | 12,708 |
# -*- coding: utf-8 -*-
# Copyright 2018-2021 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Execute processes"""
from .common import PostProcessor
from .. import util, formatter
import subprocess
if util.WINDOWS:
def quote(s):
return '"' + s.replace('"', '\\"') + '"'
else:
from shlex import quote
class ExecPP(PostProcessor):
def __init__(self, job, options):
PostProcessor.__init__(self, job)
if options.get("async", False):
self._exec = self._exec_async
args = options["command"]
if isinstance(args, str):
self.args = args
execute = self.exec_string
else:
self.args = [formatter.parse(arg) for arg in args]
execute = self.exec_list
events = options.get("event")
if events is None:
events = ("after",)
elif isinstance(events, str):
events = events.split(",")
job.register_hooks({event: execute for event in events}, options)
def exec_list(self, pathfmt, status=None):
if status:
return
kwdict = pathfmt.kwdict
kwdict["_directory"] = pathfmt.realdirectory
kwdict["_filename"] = pathfmt.filename
kwdict["_path"] = pathfmt.realpath
args = [arg.format_map(kwdict) for arg in self.args]
self._exec(args, False)
def exec_string(self, pathfmt, status=None):
if status:
return
if status is None and pathfmt.realpath:
args = self.args.replace("{}", quote(pathfmt.realpath))
else:
args = self.args.replace("{}", quote(pathfmt.realdirectory))
self._exec(args, True)
def _exec(self, args, shell):
self.log.debug("Running '%s'", args)
retcode = subprocess.Popen(args, shell=shell).wait()
if retcode:
self.log.warning("'%s' returned with non-zero exit status (%d)",
args, retcode)
def _exec_async(self, args, shell):
self.log.debug("Running '%s'", args)
subprocess.Popen(args, shell=shell)
__postprocessor__ = ExecPP
| mikf/gallery-dl | gallery_dl/postprocessor/exec.py | Python | gpl-2.0 | 2,293 |
<?php
/**
Admin Page Framework v3.5.4b05 by Michael Uno
Generated by PHP Class Files Script Generator <https://github.com/michaeluno/PHP-Class-Files-Script-Generator>
<http://en.michaeluno.jp/admin-page-framework>
Copyright (c) 2013-2015, Michael Uno; Licensed under MIT <http://opensource.org/licenses/MIT>
*/
class WPGitHubButtons_AdminPageFramework_Widget_Factory extends WP_Widget {
public function __construct($oCaller, $sWidgetTitle, array $aArguments = array()) {
$aArguments = $aArguments + array('classname' => 'admin_page_framework_widget', 'description' => '',);
parent::__construct($oCaller->oProp->sClassName, $sWidgetTitle, $aArguments);
$this->oCaller = $oCaller;
}
public function widget($aArguments, $aFormData) {
echo $aArguments['before_widget'];
$_sTitle = apply_filters('widget_title', isset($aFormData['title']) ? $aFormData['title'] : '', $aFormData, $this->id_base);
if ($_sTitle) {
echo $aArguments['before_title'] . $_sTitle . $aArguments['after_title'];
}
$this->oCaller->oUtil->addAndDoActions($this->oCaller, 'do_' . $this->oCaller->oProp->sClassName, $this->oCaller);
echo $this->oCaller->oUtil->addAndApplyFilters($this->oCaller, "content_{$this->oCaller->oProp->sClassName}", $this->oCaller->content('', $aArguments, $aFormData), $aArguments, $aFormData);
echo $aArguments['after_widget'];
}
public function update($aSubmittedFormData, $aSavedFormData) {
return $this->oCaller->oUtil->addAndApplyFilters($this->oCaller, "validation_{$this->oCaller->oProp->sClassName}", call_user_func_array(array($this->oCaller, 'validate'), array($aSubmittedFormData, $aSavedFormData, $this->oCaller)), $aSavedFormData, $this->oCaller);
}
public function form($aFormData) {
$this->oCaller->load($this->oCaller);
$this->oCaller->oUtil->addAndDoActions($this->oCaller, 'load_' . $this->oCaller->oProp->sClassName, $this->oCaller);
$this->oCaller->_registerFormElements($aFormData);
$this->oCaller->oProp->aFieldCallbacks = array('hfID' => array($this, 'get_field_id'), 'hfTagID' => array($this, 'get_field_id'), 'hfName' => array($this, 'get_field_name'),);
$this->oCaller->_printWidgetForm();
$this->oCaller->oForm = new WPGitHubButtons_AdminPageFramework_FormElement($this->oCaller->oProp->sFieldsType, $this->oCaller->oProp->sCapability, $this->oCaller);
}
public function _replyToAddClassSelector($sClassSelectors) {
$sClassSelectors.= ' widefat';
return trim($sClassSelectors);
}
} | michaeluno/wp-github-buttons | include/library/admin-page-framework/factory/AdminPageFramework_Widget/AdminPageFramework_Widget_Factory.php | PHP | gpl-2.0 | 2,610 |
<?php get_header() ?>
<?php
$image = get_field('banner_testimonial','option');
if( !empty($image) ){
$background = $image['url'];
}
?>
<!--<div class="section-banner" <?php /*echo (isset($background)) ? "style='background:url(".$background.")'" : "" */?>>
</div>-->
<div class="page-content">
<div class="container">
<h1 class="head-web">TESTTIMONIAL</h1>
<div class="con-test">
<?php
// the query
$args = array(
'post_type' => 'testimonial',
'posts_per_page' => -1
);
$the_query = new WP_Query( $args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<!-- pagination here -->
<!-- the loop -->
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="row">
<div class="test-item-list">
<div class="col-sm-4">
<div class="thumb-feature" >
<img src="<?php the_post_thumbnail_url() ?>" class="img-responsive bg-user-t" alt="">
<div class="ico-user">
<?php
$image = get_field('user_image');
if( !empty($image) ): ?>
<img src="<?php echo $image['url']; ?>" class="img-responsive img-circle" alt="<?php echo $image['alt']; ?>" />
<?php endif; ?>
</div>
</div>
</div>
<div class="col-sm-7">
<div class="username"><?php the_title();?></div>
<div class="position"><?php echo get_field('position'); ?></div>
<div class="detail">
<?php echo get_the_content() ?>
</div>
</div>
<div class="col-sm-1">
<i class="fa fa-cir fa-angle-down" onclick=""></i>
</div>
<div class="col-sm-12" >
<?php
$images = get_field('trip_gallery');
if( $images ): ?>
<div class="t-gall">
<ul class="list-unstyled">
<?php foreach( $images as $image ): ?>
<li class="col-sm-2">
<img class="img-responsive" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
</div>
</div>
</div>
<?php endwhile; ?>
<!-- end of the loop -->
<!-- pagination here -->
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer() ?>
| silasakk/pht | wp-content/themes/pht/archive-testimonial.php | PHP | gpl-2.0 | 3,700 |
/* $Id: squirrel_class.hpp 20632 2010-08-26 22:01:16Z rubidium $ */
/*
* This file is part of OpenCoaster Tycoon.
* OpenCoaster Tycoon 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, version 2.
* OpenCoaster Tycoon 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 OpenCoaster Tycoon. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file squirrel_class.hpp Defines templates for converting C++ classes to Squirrel classes */
#ifndef SQUIRREL_CLASS_HPP
#define SQUIRREL_CLASS_HPP
#include "squirrel_helper.hpp"
/**
* The template to define classes in Squirrel. It takes care of the creation
* and calling of such classes, to make the AI Layer cleaner while having a
* powerful script as possible AI language.
*/
template <class CL>
class DefSQClass {
private:
const char *classname;
public:
DefSQClass(const char *_classname) :
classname(_classname)
{}
/**
* This defines a method inside a class for Squirrel.
*/
template <typename Func>
void DefSQMethod(Squirrel *engine, Func function_proc, const char *function_name)
{
using namespace SQConvert;
engine->AddMethod(function_name, DefSQNonStaticCallback<CL, Func>, 0, NULL, &function_proc, sizeof(function_proc));
}
/**
* This defines a method inside a class for Squirrel, which has access to the 'engine' (experts only!).
*/
template <typename Func>
void DefSQAdvancedMethod(Squirrel *engine, Func function_proc, const char *function_name)
{
using namespace SQConvert;
engine->AddMethod(function_name, DefSQAdvancedNonStaticCallback<CL, Func>, 0, NULL, &function_proc, sizeof(function_proc));
}
/**
* This defines a method inside a class for Squirrel with defined params.
* @note If you define nparam, make sure that he first param is always 'x',
* which is the 'this' inside the function. This is hidden from the rest
* of the code, but without it calling your function will fail!
*/
template <typename Func>
void DefSQMethod(Squirrel *engine, Func function_proc, const char *function_name, int nparam, const char *params)
{
using namespace SQConvert;
engine->AddMethod(function_name, DefSQNonStaticCallback<CL, Func>, nparam, params, &function_proc, sizeof(function_proc));
}
/**
* This defines a static method inside a class for Squirrel.
*/
template <typename Func>
void DefSQStaticMethod(Squirrel *engine, Func function_proc, const char *function_name)
{
using namespace SQConvert;
engine->AddMethod(function_name, DefSQStaticCallback<CL, Func>, 0, NULL, &function_proc, sizeof(function_proc));
}
/**
* This defines a static method inside a class for Squirrel with defined params.
* @note If you define nparam, make sure that he first param is always 'x',
* which is the 'this' inside the function. This is hidden from the rest
* of the code, but without it calling your function will fail!
*/
template <typename Func>
void DefSQStaticMethod(Squirrel *engine, Func function_proc, const char *function_name, int nparam, const char *params)
{
using namespace SQConvert;
engine->AddMethod(function_name, DefSQStaticCallback<CL, Func>, nparam, params, &function_proc, sizeof(function_proc));
}
template <typename Var>
void DefSQConst(Squirrel *engine, Var value, const char *var_name)
{
engine->AddConst(var_name, value);
}
void PreRegister(Squirrel *engine)
{
engine->AddClassBegin(this->classname);
}
void PreRegister(Squirrel *engine, const char *parent_class)
{
engine->AddClassBegin(this->classname, parent_class);
}
template <typename Func, int Tnparam>
void AddConstructor(Squirrel *engine, const char *params)
{
using namespace SQConvert;
engine->AddMethod("constructor", DefSQConstructorCallback<CL, Func, Tnparam>, Tnparam, params);
}
void PostRegister(Squirrel *engine)
{
engine->AddClassEnd();
}
};
#endif /* SQUIRREL_CLASS_HPP */
| ShaunOfTheLive/OpenCoasterTycoon | src/script/squirrel_class.hpp | C++ | gpl-2.0 | 4,315 |