content
stringlengths
6
1.05M
obf_code
stringlengths
6
1.05M
probability
float64
0
1
obf_dict
stringlengths
0
25.3k
/* * Copyright (C) 2015-2016 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #if ENABLE(B3_JIT) #include "B3StackmapSpecial.h" namespace JSC { namespace B3 { // This is a special that recognizes that there are two uses of Patchpoint: Void and and non-Void. // In the Void case, the syntax of the Air Patch instruction is: // // Patch &patchpoint, args... // // Where "args..." are the lowered arguments to the Patchpoint instruction. In the non-Void case // we will have: // // Patch &patchpoint, result, args... class PatchpointSpecial : public StackmapSpecial { public: PatchpointSpecial(); virtual ~PatchpointSpecial(); protected: void forEachArg(Air::Inst&, const ScopedLambda<Air::Inst::EachArgCallback>&) override; bool isValid(Air::Inst&) override; bool admitsStack(Air::Inst&, unsigned argIndex) override; // NOTE: the generate method will generate the hidden branch and then register a LatePath that // generates the stackmap. Super crazy dude! CCallHelpers::Jump generate(Air::Inst&, CCallHelpers&, Air::GenerationContext&) override; bool isTerminal(Air::Inst&) override; void dumpImpl(PrintStream&) const override; void deepDumpImpl(PrintStream&) const override; }; } } // namespace JSC::B3 #endif // ENABLE(B3_JIT)
/* * Copyright (C) 2015-2016 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #if FUNC_0(B3_JIT) #include "B3StackmapSpecial.h" CLASS_0 JSC { CLASS_0 VAR_0 { // This is a special that recognizes that there are two uses of Patchpoint: Void and and non-Void. // In the Void case, the syntax of the Air Patch instruction is: // // Patch &patchpoint, args... // // Where "args..." are the lowered arguments to the Patchpoint instruction. In the non-Void case // we will have: // // Patch &patchpoint, result, args... class PatchpointSpecial : VAR_1 StackmapSpecial { public: PatchpointSpecial(); virtual ~PatchpointSpecial(); protected: void forEachArg(Air::VAR_2&VAR_3, VAR_4 VAR_5<Air::VAR_2::VAR_6>&) override; bool FUNC_1(Air::VAR_2&) override; bool admitsStack(Air::VAR_2&, unsigned VAR_7) override; // NOTE: the generate method will generate the hidden branch and then register a LatePath that // generates the stackmap. Super crazy dude! CCallHelpers::Jump VAR_8(Air::VAR_2&, CCallHelpers&, Air::VAR_9&) override; bool FUNC_2(Air::VAR_2&) override; void dumpImpl(PrintStream&) const overrideVAR_3; void FUNC_3(PrintStream&) VAR_4 override; }; } } // namespace JSC::B3 #endif // ENABLE(B3_JIT)
0.428584
{'FUNC_0': 'ENABLE', 'CLASS_0': 'namespace', 'VAR_0': 'B3', 'VAR_1': 'public', 'VAR_2': 'Inst', 'VAR_3': '', 'VAR_4': 'const', 'VAR_5': 'ScopedLambda', 'VAR_6': 'EachArgCallback', 'FUNC_1': 'isValid', 'VAR_7': 'argIndex', 'VAR_8': 'generate', 'VAR_9': 'GenerationContext', 'FUNC_2': 'isTerminal', 'FUNC_3': 'deepDumpImpl'}
// // GCDPracticeBarrier.h // ReactiveCocoaPractice // // Created by mengqian on 26/8/2016. // Copyright © 2016 thinktube. All rights reserved. // #import <UIKit/UIKit.h> @interface GCDPracticeBarrier : UIViewController @end
// // GCDPracticeBarrier.h // ReactiveCocoaPractice // // Created by mengqian on 26/8/2016. // Copyright © 2016 thinktube. All rights reserved. // #import <UIKit/UIKit.h> @CLASS_0 VAR_0 : VAR_1 @VAR_2
0.922664
{'CLASS_0': 'interface', 'VAR_0': 'GCDPracticeBarrier', 'VAR_1': 'UIViewController', 'VAR_2': 'end'}
#ifndef LIB_UTILS_C__H #define LIB_UTILS_C__H #include "../_dispatcher.h" //------------------------- //Module Utils //------------------------- extern void Utils__moduleInit(void); extern any Utils_characters(DEFAULT_ARGUMENTS); extern any Utils_member(DEFAULT_ARGUMENTS); extern any Utils_find_if(DEFAULT_ARGUMENTS); extern any Utils_repeat_string(DEFAULT_ARGUMENTS); extern any Utils_push_uniq(DEFAULT_ARGUMENTS); extern any Utils_remove(DEFAULT_ARGUMENTS); extern any Utils_makePredicate(DEFAULT_ARGUMENTS); extern any Utils_isPredicate(DEFAULT_ARGUMENTS); extern any Utils_all(DEFAULT_ARGUMENTS); #endif
#ifndef VAR_0 #define VAR_0 #include "../_dispatcher.h" //------------------------- //Module Utils //------------------------- extern void Utils__moduleInit(void); extern CLASS_0 FUNC_0(DEFAULT_ARGUMENTS); extern CLASS_0 Utils_member(DEFAULT_ARGUMENTS); extern CLASS_0 Utils_find_if(DEFAULT_ARGUMENTS); extern CLASS_0 FUNC_1(DEFAULT_ARGUMENTS); extern CLASS_0 Utils_push_uniq(DEFAULT_ARGUMENTS); extern CLASS_0 FUNC_2(DEFAULT_ARGUMENTS); extern CLASS_0 FUNC_3(DEFAULT_ARGUMENTS); extern CLASS_0 FUNC_4(DEFAULT_ARGUMENTS); extern CLASS_0 Utils_all(DEFAULT_ARGUMENTS); #endif
0.492215
{'VAR_0': 'LIB_UTILS_C__H', 'CLASS_0': 'any', 'FUNC_0': 'Utils_characters', 'FUNC_1': 'Utils_repeat_string', 'FUNC_2': 'Utils_remove', 'FUNC_3': 'Utils_makePredicate', 'FUNC_4': 'Utils_isPredicate'}
// // YFBlurtView.h // BigShow1949 // // Created by zhht01 on 16/1/14. // Copyright © 2016年 BigShowCompany. All rights reserved. // #import <UIKit/UIKit.h> typedef void (^SelectRowAction)(NSIndexPath *); @interface YFBlurtView : UIView { SelectRowAction selectAction; } @property (nonatomic,assign)CGFloat headerImgHeight; @property (nonatomic,assign)CGFloat iconHeight; /** * 图片url */ @property (nonatomic,copy)NSString *imgUrl; @property (nonatomic,copy)NSString *name; - (instancetype)initWithFrame:(CGRect)frame WithHeaderImgHeight:(CGFloat)headerImgHeight iconHeight:(CGFloat)iconHeight selectBlock:(SelectRowAction)block; @end
// // YFBlurtView.h // BigShow1949 // // Created by zhht01 on 16/1/14. // Copyright © 2016年 BigShowCompany. All rights reserved. // #import <UIKit/UIKit.h> typedef void (^SelectRowAction)(NSIndexPath *); @interface YFBlurtView : UIView { SelectRowAction selectAction; } @property (nonatomic,VAR_0)CGFloat headerImgHeight; @property (nonatomic,VAR_0)CGFloat iconHeight; /** * 图片url */ @property (nonatomic,copy)NSString *imgUrl; @property (nonatomic,copy)NSString *name; - (instancetype)initWithFrame:(CGRect)frame WithHeaderImgHeight:(CGFloat)headerImgHeight iconHeight:(CGFloat)iconHeight selectBlock:(SelectRowAction)block; @end
0.036091
{'VAR_0': 'assign'}
// // addSchoolReviewViewController.h // HHSD // // Created by <NAME> on 4/6/17. // Copyright © 2017 <NAME>. All rights reserved. // #import "BaseViewController.h" #import "ImagePickerBar.h" @protocol AddImageViewDelegatedm <NSObject> -(void)addImageViewDidTappedAtAddImage:(BOOL)addImage; @end @class ClubMainAddImageViewMeet; @interface addSchoolReviewViewController : BaseViewController <UITextViewDelegate,AddImageViewDelegatedm> @property (nonatomic, strong) School_Details *mainDetails; @property (nonatomic, copy) NSString *schoolId; @property (nonatomic, strong) School_Details *SID; @property (nonatomic,strong)UIScrollView *scrollView; @property (nonatomic,strong)UIButton *sendButton; @property (nonatomic,strong)UILabel *placeHoldLabel; @property (nonatomic,strong)UILabel *TitlePlaceHoldLabel; @property (nonatomic,strong)UILabel *addressPlaceHoldLabel; @property (nonatomic,strong)UITextView *textView; @property (nonatomic,strong)UILabel *titleView; @property (nonatomic,strong)UITextView *moreView; @property (nonatomic,strong)NSMutableArray *imageArray; @property (nonatomic,strong)ClubMainAddImageViewMeet *addImageView; @property (nonatomic,strong)ImagePickerBar *imagePickerBar; @property (nonatomic, copy) NSString *postBarTitle; @property (nonatomic, strong) NSDictionary *actionDict; @end @interface ClubMainAddImageViewMeet : UIView <UICollectionViewDataSource,UICollectionViewDelegate> @property (nonatomic,strong)UICollectionView *collectionView; @property (nonatomic,strong)NSMutableArray *imageArray; @property (nonatomic,strong)id <AddImageViewDelegatedm> addImageDelegateMeet; -(id)initWithFrame:(CGRect)frame withImageArray:(NSArray *)imageArray; @end @interface AddImageCellNews : UICollectionViewCell @property (nonatomic,strong)UIImageView *imageView; @property (nonatomic,strong)UIButton *deleteButton; -(void)drawCellWithImage:(UIImage *)image; -(void)addDeleteButton:(BOOL)show; @end
// // addSchoolReviewViewController.h // HHSD // // Created by <NAME> on 4/6/17. // Copyright © 2017 <NAME>. All rights reserved. // #import "BaseViewController.h" #import "ImagePickerBar.h" @protocol AddImageViewDelegatedm <VAR_0> -(void)addImageViewDidTappedAtAddImage:(CLASS_0)VAR_2; @CLASS_1 @VAR_3 VAR_4; @interface addSchoolReviewViewController : BaseViewController <UITextViewDelegate,AddImageViewDelegatedm> @property (CLASS_3, CLASS_4) CLASS_5 *mainDetails; @property (VAR_5, VAR_7) CLASS_6 *schoolId; @property (VAR_5, VAR_6) CLASS_5 *VAR_8; @property (VAR_5,VAR_6)CLASS_7 *VAR_9; @property (VAR_5,VAR_6)CLASS_8 *VAR_10; @property (VAR_5,VAR_6)CLASS_9 *placeHoldLabel; @property (VAR_5,VAR_6)CLASS_9 *VAR_11; @property (VAR_5,VAR_6)CLASS_9 *VAR_12; @property (VAR_5,VAR_6)CLASS_10 *VAR_13; @property (VAR_5,VAR_6)CLASS_9 *VAR_14; @property (VAR_5,VAR_6)CLASS_10 *moreView; @property (VAR_5,VAR_6)CLASS_11 *imageArray; @property (VAR_5,VAR_6)CLASS_2 *addImageView; @property (VAR_5,VAR_6)CLASS_12 *VAR_15; @property (VAR_5, VAR_7) CLASS_6 *postBarTitle; @property (VAR_5, VAR_6) CLASS_13 *actionDict; @CLASS_1 @interface ClubMainAddImageViewMeet : UIView <VAR_16,UICollectionViewDelegate> @property (VAR_5,VAR_6)VAR_17 *VAR_18; @property (VAR_5,VAR_6)CLASS_11 *imageArray; @property (VAR_5,VAR_6)id <AddImageViewDelegatedm> VAR_19; -(id)initWithFrame:(CLASS_14)VAR_20 withImageArray:(CLASS_15 *)imageArray; @CLASS_1 @interface AddImageCellNews : UICollectionViewCell @property (VAR_5,VAR_6)UIImageView *imageView; @property (VAR_5,VAR_6)CLASS_8 *deleteButton; -(void)drawCellWithImage:(UIImage *)image; -(void)VAR_21:(VAR_1)VAR_22; @CLASS_1
0.516798
{'VAR_0': 'NSObject', 'CLASS_0': 'BOOL', 'VAR_1': 'BOOL', 'VAR_2': 'addImage', 'CLASS_1': 'end', 'VAR_3': 'class', 'VAR_4': 'ClubMainAddImageViewMeet', 'CLASS_2': 'ClubMainAddImageViewMeet', 'CLASS_3': 'nonatomic', 'VAR_5': 'nonatomic', 'CLASS_4': 'strong', 'VAR_6': 'strong', 'CLASS_5': 'School_Details', 'VAR_7': 'copy', 'CLASS_6': 'NSString', 'VAR_8': 'SID', 'CLASS_7': 'UIScrollView', 'VAR_9': 'scrollView', 'CLASS_8': 'UIButton', 'VAR_10': 'sendButton', 'CLASS_9': 'UILabel', 'VAR_11': 'TitlePlaceHoldLabel', 'VAR_12': 'addressPlaceHoldLabel', 'CLASS_10': 'UITextView', 'VAR_13': 'textView', 'VAR_14': 'titleView', 'CLASS_11': 'NSMutableArray', 'CLASS_12': 'ImagePickerBar', 'VAR_15': 'imagePickerBar', 'CLASS_13': 'NSDictionary', 'VAR_16': 'UICollectionViewDataSource', 'VAR_17': 'UICollectionView', 'VAR_18': 'collectionView', 'VAR_19': 'addImageDelegateMeet', 'CLASS_14': 'CGRect', 'VAR_20': 'frame', 'CLASS_15': 'NSArray', 'VAR_21': 'addDeleteButton', 'VAR_22': 'show'}
#ifdef HAVE_CONFIG_H #include "../../ext_config.h" #endif #include <php.h> #include "../../php_ext.h" #include "../../ext.h" #include <Zend/zend_exceptions.h> #include "kernel/main.h" /** * Phalcon\Paginator\AdapterInterface * * Interface for Phalcon\Paginator adapters */ ZEPHIR_INIT_CLASS(Phalcon_Paginator_AdapterInterface) { ZEPHIR_REGISTER_INTERFACE(Phalcon\\Paginator, AdapterInterface, phalcon, paginator_adapterinterface, phalcon_paginator_adapterinterface_method_entry); return SUCCESS; } /** * Set the current page number */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, setCurrentPage); /** * Returns a slice of the resultset to show in the pagination * * @deprecated will be removed after 4.0 */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, getPaginate); /** * Set current rows limit */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, setLimit); /** * Get current rows limit */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, getLimit);
#ifdef HAVE_CONFIG_H #include "../../ext_config.h" #endif #include <php.h> #include "../../php_ext.h" #include "../../ext.h" #include <IMPORT_0> #include "kernel/main.h" /** * Phalcon\Paginator\AdapterInterface * * Interface for Phalcon\Paginator adapters */ ZEPHIR_INIT_CLASS(Phalcon_Paginator_AdapterInterface) { ZEPHIR_REGISTER_INTERFACE(Phalcon\\Paginator, AdapterInterface, phalcon, paginator_adapterinterface, phalcon_paginator_adapterinterface_method_entry); return SUCCESS; } /** * Set the current page number */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, setCurrentPage); /** * Returns a slice of the resultset to show in the pagination * * @deprecated will be removed after 4.0 */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, getPaginate); /** * Set current rows limit */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, setLimit); /** * Get current rows limit */ ZEPHIR_DOC_METHOD(Phalcon_Paginator_AdapterInterface, VAR_0);
0.07392
{'IMPORT_0': 'Zend/zend_exceptions.h', 'VAR_0': 'getLimit'}
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_ #define MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_ #include <iostream> #include <vector> #include <string> #include <unordered_map> #include <memory> #include "utils/any.h" #include "ir/manager.h" namespace mindspore { namespace pipeline { class ResourceBase { public: ResourceBase() { manager_ = MakeManager(); } virtual ~ResourceBase() = default; FuncGraphManagerPtr manager() { return manager_; } // set a manager defined outside which will not manage the graphs. void set_manager(const FuncGraphManagerPtr &manager) { manager_ = manager; } std::unordered_map<std::string, Any> &results() { return results_; } void SetResult(const std::string &key, const Any &value) { results_[key] = value; } Any GetResult(const std::string &key) { if (results_.count(key) == 0) { MS_LOG(EXCEPTION) << "this key is not in resource list:" << key; } return results_[key]; } bool HasResult(const std::string &key) const { return results_.count(key) != 0; } std::unordered_map<std::string, Any> results_; protected: FuncGraphManagerPtr manager_; }; using ResourceBasePtr = std::shared_ptr<pipeline::ResourceBase>; } // namespace pipeline } // namespace mindspore #endif // MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_ #define MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_ #include <IMPORT_0> #include <IMPORT_1> #include <string> #include <IMPORT_2> #include <memory> #include "utils/any.h" #include "IMPORT_3" CLASS_0 VAR_0 { CLASS_0 pipeline { CLASS_1 VAR_1 { public: FUNC_0() { VAR_2 = FUNC_1(); } CLASS_2 ~FUNC_0() = default; FuncGraphManagerPtr FUNC_2() { return VAR_2; } // set a manager defined outside which will not manage the graphs. void set_manager(const FuncGraphManagerPtr &VAR_3) { VAR_2 = VAR_3; } std::IMPORT_2<VAR_4::string, VAR_5> &results() { return VAR_6; } void SetResult(const CLASS_3::string &key, const CLASS_4 &VAR_7) { VAR_6[key] = VAR_7; } CLASS_4 GetResult(const CLASS_3::string &key) { if (VAR_6.FUNC_3(key) == 0) { FUNC_4(EXCEPTION) << "this key is not in resource list:" << key; } return VAR_6[key]; } bool FUNC_5(const CLASS_3::string &key) VAR_8 { return VAR_6.FUNC_3(key) != 0; } std::IMPORT_2<VAR_4::string, VAR_5> VAR_6; protected: FuncGraphManagerPtr VAR_2; }; CLASS_5 VAR_9 = VAR_4::shared_ptr<pipeline::VAR_1>; } // namespace pipeline } // namespace mindspore #endif // MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_BASE_H_
0.500799
{'IMPORT_0': 'iostream', 'IMPORT_1': 'vector', 'IMPORT_2': 'unordered_map', 'IMPORT_3': 'ir/manager.h', 'CLASS_0': 'namespace', 'VAR_0': 'mindspore', 'CLASS_1': 'class', 'VAR_1': 'ResourceBase', 'FUNC_0': 'ResourceBase', 'VAR_2': 'manager_', 'FUNC_1': 'MakeManager', 'CLASS_2': 'virtual', 'FUNC_2': 'manager', 'VAR_3': 'manager', 'VAR_4': 'std', 'CLASS_3': 'std', 'VAR_5': 'Any', 'CLASS_4': 'Any', 'VAR_6': 'results_', 'VAR_7': 'value', 'FUNC_3': 'count', 'FUNC_4': 'MS_LOG', 'FUNC_5': 'HasResult', 'VAR_8': 'const', 'CLASS_5': 'using', 'VAR_9': 'ResourceBasePtr'}
/* * Copyright 2015 Ludwig Knüpfer * 2015 Christian Mehlis * 2016-2017 Freie Universität Berlin * 2023 Hugues Larrive * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup drivers_dht * @{ * * @file * @brief Device driver implementation for the DHT11, 21 and 22 * temperature and humidity sensor * * @author Ludwig Knüpfer <[email protected]> * @author Christian Mehlis <[email protected]> * @author Hauke Petersen <[email protected]> * @author Hugues Larrive <[email protected]> * * @} */ #include <errno.h> #include <stdint.h> #include <string.h> #include "assert.h" #include "dht.h" #include "dht_params.h" #include "log.h" #include "periph/gpio.h" #include "time_units.h" #include "ztimer.h" #define ENABLE_DEBUG 0 #include "debug.h" /* Every pulse send by the DHT longer than 40µs is interpreted as 1 */ #define READ_THRESHOLD (40U) /* If an expected pulse is not detected within 85µs, something is wrong */ #define SPIN_TIMEOUT (85U) /* The start signal by pulling data low for at least 18 ms for DHT11, at * most 20 ms (AM2301 / DHT22 / DHT21). Then release the bus and the * sensor should respond by pulling data low for 80 µs, then release for * 80µs before start sending data. */ #define START_LOW_TIME (19U * US_PER_MS) #define START_THRESHOLD (75U) /* DHTs have to wait for power 1 or 2 seconds depending on the model */ #define POWER_WAIT_TIMEOUT (2U * US_PER_SEC) enum { BYTEPOS_HUMIDITY_HIGH = 0, BYTEPOS_HUMIDITY_LOW = 1, BYTEPOS_TEMPERATURE_HIGH = 2, BYTEPOS_TEMPERATURE_LOW = 3, BYTEPOS_CHECKSUM = 4, }; struct dht_data { gpio_t pin; gpio_mode_t in_mode; uint8_t data[5]; int8_t bit_pos; uint8_t bit; }; static void _wait_for_level(gpio_t pin, bool expected, uint32_t start) { /* Calls to ztimer_now() can be relatively slow on low end platforms. * Mixing in a busy down-counting loop solves issues e.g. on AVR boards. */ uint8_t pre_timeout = 0; while (((bool)gpio_read(pin) != expected) && (++pre_timeout || ztimer_now(ZTIMER_USEC) < start + SPIN_TIMEOUT)) {} } static int _send_start_signal(dht_t *dev) { uint32_t start; gpio_init(dev->params.pin, GPIO_OUT); gpio_clear(dev->params.pin); ztimer_sleep(ZTIMER_USEC, START_LOW_TIME); /* sync on device */ gpio_set(dev->params.pin); gpio_init(dev->params.pin, dev->params.in_mode); /* check device response (80 µs low then 80 µs high) */ start = ztimer_now(ZTIMER_USEC); _wait_for_level(dev->params.pin, 0, start); if (ztimer_now(ZTIMER_USEC) - start > START_THRESHOLD) { DEBUG_PUTS("[dht] error: response low pulse > START_THRESHOLD"); return -ENODEV; } _wait_for_level(dev->params.pin, 1, start); start = ztimer_now(ZTIMER_USEC); _wait_for_level(dev->params.pin, 0, start); if (ztimer_now(ZTIMER_USEC) - start < START_THRESHOLD) { DEBUG_PUTS("[dht] error: response high pulse < START_THRESHOLD"); return -ENODEV; } return 0; } static void _bit_parse(struct dht_data *arg) { int8_t pos = arg->bit_pos++; if (arg->bit) { arg->data[pos / 8] |= (0x80U >> (pos % 8)); } } static void _busy_wait_read(struct dht_data *arg) { uint32_t start = ztimer_now(ZTIMER_USEC); while (arg->bit_pos != 40) { _wait_for_level(arg->pin, 1, start); start = ztimer_now(ZTIMER_USEC); _wait_for_level(arg->pin, 0, start); arg->bit = (ztimer_now(ZTIMER_USEC) - start > READ_THRESHOLD) ? 1 : 0; _bit_parse(arg); } } static int _validate_checksum(uint8_t *data) { uint8_t sum = 0; for (uint_fast8_t i = 0; i < 4; i++) { sum += data[i]; } if (sum != data[BYTEPOS_CHECKSUM]) { return -EIO; } return 0; } static int _parse_raw_values(dht_t *dev, uint8_t *data) { bool is_negative; switch (dev->params.type) { case DHT11: case DHT11_2022: DEBUG_PUTS("[dht] parse raw values with DHT11 data format"); dev->last_val.humidity = data[BYTEPOS_HUMIDITY_HIGH] * 10 + data[BYTEPOS_HUMIDITY_LOW]; /* MSB for integral temperature byte gives sign, remaining is * abs() of value (beware: this is not two's complement!) */ is_negative = data[BYTEPOS_TEMPERATURE_LOW] & 0x80; data[BYTEPOS_TEMPERATURE_LOW] &= ~0x80; /* 2022-12 aosong.com data sheet uses interprets low bits as * 0.01°C per LSB */ if (dev->params.type == DHT11_2022) { data[BYTEPOS_TEMPERATURE_LOW] /= 10; } if (data[BYTEPOS_TEMPERATURE_LOW] >= 10) { return -ERANGE; } dev->last_val.temperature = data[BYTEPOS_TEMPERATURE_HIGH] * 10 + data[BYTEPOS_TEMPERATURE_LOW]; break; /* AM2301 == DHT21 == DHT22 (same value in enum), * so all are handled here */ case DHT22: DEBUG_PUTS("[dht] parse raw values with DHT22 data format"); dev->last_val.humidity = (int16_t)( (data[BYTEPOS_HUMIDITY_HIGH] << 8) | data[BYTEPOS_HUMIDITY_LOW]); is_negative = data[BYTEPOS_TEMPERATURE_HIGH] & 0x80; data[BYTEPOS_TEMPERATURE_HIGH] &= ~0x80; dev->last_val.temperature = (int16_t)( (data[BYTEPOS_TEMPERATURE_HIGH] << 8) | data[BYTEPOS_TEMPERATURE_LOW]); break; default: return -ENOSYS; /* ENOSYS 38 Function not implemented */ } if (is_negative) { dev->last_val.temperature = -dev->last_val.temperature; } return 0; } int dht_init(dht_t *dev, const dht_params_t *params) { int16_t timeout; DEBUG_PUTS("[dht] dht_init"); /* check parameters and configuration */ assert(dev && params); /* AM2301 == DHT21 == DHT22 (same value in enum) */ assert((params->type == DHT11) || (params->type == DHT11_2022) || (params->type == DHT22)); memset(dev, 0, sizeof(dht_t)); dev->params = *params; /* The 2-second delay mentioned in the datasheet is only required * after a power cycle. */ timeout = POWER_WAIT_TIMEOUT / US_PER_MS; gpio_init(dev->params.pin, GPIO_IN); while (!gpio_read(dev->params.pin) && timeout--) { ztimer_sleep(ZTIMER_USEC, US_PER_MS); } if (timeout < 0) { DEBUG_PUTS("[dht] dht_init: error: Invalid cross-device link"); return -EXDEV; } else { DEBUG("\n[dht] dht_init: power-up duration: %" PRIi16 " ms\n", (int16_t)(POWER_WAIT_TIMEOUT / US_PER_MS - timeout)); } /* The previous test does not ensure the sensor presence in case an * external pull-up resistor is used. */ while (_send_start_signal(dev) == -ENODEV && (timeout -= START_LOW_TIME / US_PER_MS) > 0) {} if (timeout < 0) { DEBUG_PUTS("[dht] dht_init: error: No such device"); return -ENODEV; } else { DEBUG("\n[dht] dht_init: presence check duration: %" PRIi16 " ms\n", (int16_t)(POWER_WAIT_TIMEOUT / US_PER_MS - timeout)); } DEBUG_PUTS("[dht] dht_init: success"); return 0; } int dht_read(dht_t *dev, int16_t *temp, int16_t *hum) { int ret; assert(dev); struct dht_data data = { .pin = dev->params.pin, .in_mode = dev->params.in_mode, .bit_pos = 0, }; if (_send_start_signal(dev) == -ENODEV) { DEBUG_PUTS("[dht] error: No response from device"); return -ENODEV; } /* read the data */ _busy_wait_read(&data); if (_validate_checksum(data.data) == -EIO) { DEBUG("[dht] error: checksum doesn't match\n" "[dht] RAW data: 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x\n", (unsigned)data.data[0], (unsigned)data.data[1], (unsigned)data.data[2], (unsigned)data.data[3], (unsigned)data.data[4]); return -EIO; } if ((ret = _parse_raw_values(dev, data.data)) < 0) { if (ret == -ENOSYS) { DEBUG_PUTS("[dht] error: data format not implemented"); } else if (ret == -ERANGE) { DEBUG_PUTS("[dht] error: invalid temperature low byte"); } return ret; } *hum = dev->last_val.humidity; *temp = dev->last_val.temperature; return 0; }
/* * Copyright 2015 Ludwig Knüpfer * 2015 Christian Mehlis * 2016-2017 Freie Universität Berlin * 2023 Hugues Larrive * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup drivers_dht * @{ * * @file * @brief Device driver implementation for the DHT11, 21 and 22 * temperature and humidity sensor * * @author Ludwig Knüpfer <[email protected]> * @author Christian Mehlis <[email protected]> * @author Hauke Petersen <[email protected]> * @author Hugues Larrive <[email protected]> * * @} */ #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include "IMPORT_3" #include "dht.h" #include "IMPORT_4" #include "IMPORT_5" #include "IMPORT_6" #include "IMPORT_7" #include "IMPORT_8" #define VAR_0 0 #include "IMPORT_9" /* Every pulse send by the DHT longer than 40µs is interpreted as 1 */ #define READ_THRESHOLD (40U) /* If an expected pulse is not detected within 85µs, something is wrong */ #define VAR_1 (85U) /* The start signal by pulling data low for at least 18 ms for DHT11, at * most 20 ms (AM2301 / DHT22 / DHT21). Then release the bus and the * sensor should respond by pulling data low for 80 µs, then release for * 80µs before start sending data. */ #define START_LOW_TIME (19U * US_PER_MS) #define VAR_2 (75U) /* DHTs have to wait for power 1 or 2 seconds depending on the model */ #define VAR_3 (2U * US_PER_SEC) enum { VAR_4 = 0, VAR_5 = 1, VAR_6 = 2, VAR_7 = 3, VAR_8 = 4, }; struct CLASS_0 { CLASS_1 VAR_9; CLASS_2 in_mode; uint8_t data[5]; int8_t bit_pos; uint8_t bit; }; static void FUNC_0(CLASS_1 VAR_9, bool VAR_10, uint32_t VAR_11) { /* Calls to ztimer_now() can be relatively slow on low end platforms. * Mixing in a busy down-counting loop solves issues e.g. on AVR boards. */ uint8_t VAR_12 = 0; while (((bool)FUNC_1(VAR_9) != VAR_10) && (++VAR_12 || ztimer_now(VAR_13) < VAR_11 + VAR_1)) {} } static int _send_start_signal(dht_t *VAR_14) { uint32_t VAR_11; FUNC_2(VAR_14->VAR_15.VAR_9, VAR_16); FUNC_3(VAR_14->VAR_15.VAR_9); ztimer_sleep(VAR_13, START_LOW_TIME); /* sync on device */ FUNC_4(VAR_14->VAR_15.VAR_9); FUNC_2(VAR_14->VAR_15.VAR_9, VAR_14->VAR_15.in_mode); /* check device response (80 µs low then 80 µs high) */ VAR_11 = ztimer_now(VAR_13); FUNC_0(VAR_14->VAR_15.VAR_9, 0, VAR_11); if (ztimer_now(VAR_13) - VAR_11 > VAR_2) { DEBUG_PUTS("[dht] error: response low pulse > START_THRESHOLD"); return -VAR_17; } FUNC_0(VAR_14->VAR_15.VAR_9, 1, VAR_11); VAR_11 = ztimer_now(VAR_13); FUNC_0(VAR_14->VAR_15.VAR_9, 0, VAR_11); if (ztimer_now(VAR_13) - VAR_11 < VAR_2) { DEBUG_PUTS("[dht] error: response high pulse < START_THRESHOLD"); return -VAR_17; } return 0; } static void FUNC_5(struct CLASS_0 *VAR_18) { int8_t VAR_19 = VAR_18->bit_pos++; if (VAR_18->bit) { VAR_18->data[VAR_19 / 8] |= (0x80U >> (VAR_19 % 8)); } } static void FUNC_6(struct CLASS_0 *VAR_18) { uint32_t VAR_11 = ztimer_now(VAR_13); while (VAR_18->bit_pos != 40) { FUNC_0(VAR_18->VAR_9, 1, VAR_11); VAR_11 = ztimer_now(VAR_13); FUNC_0(VAR_18->VAR_9, 0, VAR_11); VAR_18->bit = (ztimer_now(VAR_13) - VAR_11 > READ_THRESHOLD) ? 1 : 0; FUNC_5(VAR_18); } } static int FUNC_7(uint8_t *data) { uint8_t VAR_20 = 0; for (CLASS_3 VAR_21 = 0; VAR_21 < 4; VAR_21++) { VAR_20 += data[VAR_21]; } if (VAR_20 != data[VAR_8]) { return -VAR_22; } return 0; } static int FUNC_8(dht_t *VAR_14, uint8_t *data) { bool VAR_23; switch (VAR_14->VAR_15.type) { case DHT11: case DHT11_2022: DEBUG_PUTS("[dht] parse raw values with DHT11 data format"); VAR_14->VAR_24.VAR_25 = data[VAR_4] * 10 + data[VAR_5]; /* MSB for integral temperature byte gives sign, remaining is * abs() of value (beware: this is not two's complement!) */ VAR_23 = data[VAR_7] & 0x80; data[VAR_7] &= ~0x80; /* 2022-12 aosong.com data sheet uses interprets low bits as * 0.01°C per LSB */ if (VAR_14->VAR_15.type == DHT11_2022) { data[VAR_7] /= 10; } if (data[VAR_7] >= 10) { return -VAR_26; } VAR_14->VAR_24.VAR_27 = data[VAR_6] * 10 + data[VAR_7]; break; /* AM2301 == DHT21 == DHT22 (same value in enum), * so all are handled here */ case VAR_28: DEBUG_PUTS("[dht] parse raw values with DHT22 data format"); VAR_14->VAR_24.VAR_25 = (int16_t)( (data[VAR_4] << 8) | data[VAR_5]); VAR_23 = data[VAR_6] & 0x80; data[VAR_6] &= ~0x80; VAR_14->VAR_24.VAR_27 = (int16_t)( (data[VAR_6] << 8) | data[VAR_7]); break; default: return -VAR_29; /* ENOSYS 38 Function not implemented */ } if (VAR_23) { VAR_14->VAR_24.VAR_27 = -VAR_14->VAR_24.VAR_27; } return 0; } int FUNC_9(dht_t *VAR_14, const CLASS_4 *VAR_15) { int16_t VAR_30; DEBUG_PUTS("[dht] dht_init"); /* check parameters and configuration */ FUNC_10(VAR_14 && VAR_15); /* AM2301 == DHT21 == DHT22 (same value in enum) */ FUNC_10((VAR_15->type == DHT11) || (VAR_15->type == DHT11_2022) || (VAR_15->type == VAR_28)); FUNC_11(VAR_14, 0, sizeof(dht_t)); VAR_14->VAR_15 = *VAR_15; /* The 2-second delay mentioned in the datasheet is only required * after a power cycle. */ VAR_30 = VAR_3 / VAR_31; FUNC_2(VAR_14->VAR_15.VAR_9, VAR_32); while (!FUNC_1(VAR_14->VAR_15.VAR_9) && VAR_30--) { ztimer_sleep(VAR_13, VAR_31); } if (VAR_30 < 0) { DEBUG_PUTS("[dht] dht_init: error: Invalid cross-device link"); return -EXDEV; } else { FUNC_12("\n[dht] dht_init: power-up duration: %" PRIi16 " ms\n", (int16_t)(VAR_3 / VAR_31 - VAR_30)); } /* The previous test does not ensure the sensor presence in case an * external pull-up resistor is used. */ while (_send_start_signal(VAR_14) == -VAR_17 && (VAR_30 -= START_LOW_TIME / VAR_31) > 0) {} if (VAR_30 < 0) { DEBUG_PUTS("[dht] dht_init: error: No such device"); return -VAR_17; } else { FUNC_12("\n[dht] dht_init: presence check duration: %" PRIi16 " ms\n", (int16_t)(VAR_3 / VAR_31 - VAR_30)); } DEBUG_PUTS("[dht] dht_init: success"); return 0; } int FUNC_13(dht_t *VAR_14, int16_t *temp, int16_t *VAR_33) { int VAR_34; FUNC_10(VAR_14); struct CLASS_0 data = { .VAR_9 = VAR_14->VAR_15.VAR_9, .in_mode = VAR_14->VAR_15.in_mode, .bit_pos = 0, }; if (_send_start_signal(VAR_14) == -VAR_17) { DEBUG_PUTS("[dht] error: No response from device"); return -VAR_17; } /* read the data */ FUNC_6(&data); if (FUNC_7(data.data) == -VAR_22) { FUNC_12("[dht] error: checksum doesn't match\n" "[dht] RAW data: 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x\n", (unsigned)data.data[0], (unsigned)data.data[1], (unsigned)data.data[2], (unsigned)data.data[3], (unsigned)data.data[4]); return -VAR_22; } if ((VAR_34 = FUNC_8(VAR_14, data.data)) < 0) { if (VAR_34 == -VAR_29) { DEBUG_PUTS("[dht] error: data format not implemented"); } else if (VAR_34 == -VAR_26) { DEBUG_PUTS("[dht] error: invalid temperature low byte"); } return VAR_34; } *VAR_33 = VAR_14->VAR_24.VAR_25; *temp = VAR_14->VAR_24.VAR_27; return 0; }
0.714127
{'IMPORT_0': 'errno.h', 'IMPORT_1': 'stdint.h', 'IMPORT_2': 'string.h', 'IMPORT_3': 'assert.h', 'IMPORT_4': 'dht_params.h', 'IMPORT_5': 'log.h', 'IMPORT_6': 'periph/gpio.h', 'IMPORT_7': 'time_units.h', 'IMPORT_8': 'ztimer.h', 'VAR_0': 'ENABLE_DEBUG', 'IMPORT_9': 'debug.h', 'VAR_1': 'SPIN_TIMEOUT', 'VAR_2': 'START_THRESHOLD', 'VAR_3': 'POWER_WAIT_TIMEOUT', 'VAR_4': 'BYTEPOS_HUMIDITY_HIGH', 'VAR_5': 'BYTEPOS_HUMIDITY_LOW', 'VAR_6': 'BYTEPOS_TEMPERATURE_HIGH', 'VAR_7': 'BYTEPOS_TEMPERATURE_LOW', 'VAR_8': 'BYTEPOS_CHECKSUM', 'CLASS_0': 'dht_data', 'CLASS_1': 'gpio_t', 'VAR_9': 'pin', 'CLASS_2': 'gpio_mode_t', 'FUNC_0': '_wait_for_level', 'VAR_10': 'expected', 'VAR_11': 'start', 'VAR_12': 'pre_timeout', 'FUNC_1': 'gpio_read', 'VAR_13': 'ZTIMER_USEC', 'VAR_14': 'dev', 'FUNC_2': 'gpio_init', 'VAR_15': 'params', 'VAR_16': 'GPIO_OUT', 'FUNC_3': 'gpio_clear', 'FUNC_4': 'gpio_set', 'VAR_17': 'ENODEV', 'FUNC_5': '_bit_parse', 'VAR_18': 'arg', 'VAR_19': 'pos', 'FUNC_6': '_busy_wait_read', 'FUNC_7': '_validate_checksum', 'VAR_20': 'sum', 'CLASS_3': 'uint_fast8_t', 'VAR_21': 'i', 'VAR_22': 'EIO', 'FUNC_8': '_parse_raw_values', 'VAR_23': 'is_negative', 'VAR_24': 'last_val', 'VAR_25': 'humidity', 'VAR_26': 'ERANGE', 'VAR_27': 'temperature', 'VAR_28': 'DHT22', 'VAR_29': 'ENOSYS', 'FUNC_9': 'dht_init', 'CLASS_4': 'dht_params_t', 'VAR_30': 'timeout', 'FUNC_10': 'assert', 'FUNC_11': 'memset', 'VAR_31': 'US_PER_MS', 'VAR_32': 'GPIO_IN', 'FUNC_12': 'DEBUG', 'FUNC_13': 'dht_read', 'VAR_33': 'hum', 'VAR_34': 'ret'}
// Max number of items in the buffer. void incFront() { tType* end = m_buffer + m_capacity; if_unlikely (++m_front >= end) { m_front = m_buffer; } }
// Max number of items in the buffer. void incFront() { tType* VAR_0 = m_buffer + VAR_1; FUNC_0 (++m_front >= VAR_0) { m_front = m_buffer; } }
0.479294
{'VAR_0': 'end', 'VAR_1': 'm_capacity', 'FUNC_0': 'if_unlikely'}
/*++ Copyright (c) 1996 Microsoft Corporation Module Name: amli.h Abstract: This contains some of the routines to read and understand the AMLI library Author: <NAME> (splante) Environment: NT Kernel Model Driver only --*/ #ifndef _AMLI_H_ #define _AMLI_H_ #define ACPIAmliFreeDataBuffers AMLIFreeDataBuffs #define PACKED_AC0 ((ULONG)'0CA_') #define PACKED_AC1 ((ULONG)'1CA_') #define PACKED_AC2 ((ULONG)'2CA_') #define PACKED_AC3 ((ULONG)'3CA_') #define PACKED_AC4 ((ULONG)'4CA_') #define PACKED_AC5 ((ULONG)'5CA_') #define PACKED_AC6 ((ULONG)'6CA_') #define PACKED_AC7 ((ULONG)'7CA_') #define PACKED_AC8 ((ULONG)'8CA_') #define PACKED_AC9 ((ULONG)'9CA_') #define PACKED_ADR ((ULONG)'RDA_') #define PACKED_AL0 ((ULONG)'0LA_') #define PACKED_AL1 ((ULONG)'1LA_') #define PACKED_AL2 ((ULONG)'2LA_') #define PACKED_AL3 ((ULONG)'3LA_') #define PACKED_AL4 ((ULONG)'4LA_') #define PACKED_AL5 ((ULONG)'5LA_') #define PACKED_AL6 ((ULONG)'6LA_') #define PACKED_AL7 ((ULONG)'7LA_') #define PACKED_AL8 ((ULONG)'8LA_') #define PACKED_AL9 ((ULONG)'9LA_') #define PACKED_BST ((ULONG)'TSB_') #define PACKED_CID ((ULONG)'DIC_') #define PACKED_CRS ((ULONG)'SRC_') #define PACKED_CRT ((ULONG)'TRC_') #define PACKED_DCK ((ULONG)'KCD_') #define PACKED_DDN ((ULONG)'NDD_') #define PACKED_DIS ((ULONG)'SID_') #define PACKED_EJD ((ULONG)'DJE_') #define PACKED_EJ0 ((ULONG)'0JE_') #define PACKED_EJ1 ((ULONG)'1JE_') #define PACKED_EJ2 ((ULONG)'2JE_') #define PACKED_EJ3 ((ULONG)'3JE_') #define PACKED_EJ4 ((ULONG)'4JE_') #define PACKED_EJ5 ((ULONG)'5JE_') #define PACKED_HID ((ULONG)'DIH_') #define PACKED_INI ((ULONG)'INI_') #define PACKED_IRC ((ULONG)'CRI_') #define PACKED_LCK ((ULONG)'KCL_') #define PACKED_LID ((ULONG)'DIL_') #define PACKED_OFF ((ULONG)'FFO_') #define PACKED_ON ((ULONG)'_NO_') #define PACKED_PR0 ((ULONG)'0RP_') #define PACKED_PR1 ((ULONG)'1RP_') #define PACKED_PR2 ((ULONG)'2RP_') #define PACKED_PRS ((ULONG)'SRP_') #define PACKED_PRT ((ULONG)'TRP_') #define PACKED_PRW ((ULONG)'WRP_') #define PACKED_PS0 ((ULONG)'0SP_') #define PACKED_PS1 ((ULONG)'1SP_') #define PACKED_PS2 ((ULONG)'2SP_') #define PACKED_PS3 ((ULONG)'3SP_') #define PACKED_PSC ((ULONG)'CSP_') #define PACKED_PSL ((ULONG)'LSP_') #define PACKED_PSV ((ULONG)'VSP_') #define PACKED_PSW ((ULONG)'WSP_') #define PACKED_PTS ((ULONG)'STP_') #define PACKED_REG ((ULONG)'GER_') #define PACKED_RMV ((ULONG)'VMR_') #define PACKED_S0 ((ULONG)'_0S_') #define PACKED_S0D ((ULONG)'D0S_') #define PACKED_S1 ((ULONG)'_1S_') #define PACKED_S1D ((ULONG)'D1S_') #define PACKED_S2 ((ULONG)'_2S_') #define PACKED_S2D ((ULONG)'D2S_') #define PACKED_S3 ((ULONG)'_3S_') #define PACKED_S3D ((ULONG)'D3S_') #define PACKED_S4 ((ULONG)'_4S_') #define PACKED_S4D ((ULONG)'D4S_') #define PACKED_S5 ((ULONG)'_5S_') #define PACKED_S5D ((ULONG)'D5S_') #define PACKED_SCP ((ULONG)'PCS_') #define PACKED_SI ((ULONG)'_IS_') #define PACKED_SRS ((ULONG)'SRS_') #define PACKED_SST ((ULONG)'TSS_') #define PACKED_STA ((ULONG)'ATS_') #define PACKED_STD ((ULONG)'DTS_') #define PACKED_SUN ((ULONG)'NUS_') #define PACKED_SWD ((ULONG)'DWS_') #define PACKED_TC1 ((ULONG)'1CT_') #define PACKED_TC2 ((ULONG)'2CT_') #define PACKED_TMP ((ULONG)'PMT_') #define PACKED_TSP ((ULONG)'PST_') #define PACKED_UID ((ULONG)'DIU_') #define PACKED_WAK ((ULONG)'KAW_') #define PACKED_BBN ((ULONG)'NBB_') #define STA_STATUS_PRESENT 0x00000001 #define STA_STATUS_ENABLED 0x00000002 #define STA_STATUS_USER_INTERFACE 0x00000004 #define STA_STATUS_WORKING_OK 0x00000008 #define STA_STATUS_DEFAULT ( STA_STATUS_PRESENT | \ STA_STATUS_ENABLED | \ STA_STATUS_USER_INTERFACE | \ STA_STATUS_WORKING_OK) typedef struct { PVOID CompletionRoutine; PVOID Context; } AMLI_COMPLETION_CONTEXT, *PAMLI_COMPLETION_CONTEXT; typedef struct { KEVENT Event; NTSTATUS Status; } AMLISUPP_CONTEXT_PASSIVE, *PAMLISUPP_CONTEXT_PASSIVE; typedef enum _ACPIENUM_CONTROL { ACPIENUM_STOP, ACPIENUM_CONTINUE, ACPIENUM_CONTINUE_NORECURSE } ACPIENUM_CONTROL ; typedef ACPIENUM_CONTROL (*ACPIENUM_CALLBACK)( IN PNSOBJ, IN OUT PVOID, IN ULONG, OUT NTSTATUS * ) ; VOID EXPORT AmlisuppCompletePassive( IN PNSOBJ AcpiObject, IN NTSTATUS Status, IN POBJDATA Result, IN PVOID Context ); VOID ACPIAmliDoubleToName( IN OUT PUCHAR ACPIName, IN ULONG DwordID, IN BOOLEAN ConvertToID ); VOID ACPIAmliDoubleToNameWide( IN OUT PWCHAR ACPIName, IN ULONG DwordID, IN BOOLEAN ConvertToID ); PNSOBJ ACPIAmliGetNamedChild( IN PNSOBJ AcpiObject, IN ULONG ObjectId ); PUCHAR ACPIAmliNameObject( IN PNSOBJ AcpiObject ); VOID EXPORT ACPISimpleEvalComplete( IN PNSOBJ AcpiObject, IN NTSTATUS Status, IN POBJDATA Result OPTIONAL, IN PKEVENT Event ); NTSTATUS ACPIAmliFindObject( IN PUCHAR ObjectName, IN PNSOBJ Scope, OUT PNSOBJ *Object ); NTSTATUS ACPIAmliGetFirstChild( IN PUCHAR ObjectName, OUT PNSOBJ *Object ); NTSTATUS ACPIAmliBuildObjectPathname( IN PNSOBJ ACPIObject, OUT PUCHAR *ConstructedPathName ); #endif
/*++ Copyright (c) 1996 Microsoft Corporation Module Name: amli.h Abstract: This contains some of the routines to read and understand the AMLI library Author: <NAME> (splante) Environment: NT Kernel Model Driver only --*/ #ifndef _AMLI_H_ #define _AMLI_H_ #define ACPIAmliFreeDataBuffers AMLIFreeDataBuffs #define VAR_0 ((ULONG)'0CA_') #define VAR_1 ((ULONG)'1CA_') #define VAR_2 ((ULONG)'2CA_') #define VAR_3 ((ULONG)'3CA_') #define VAR_4 ((ULONG)'4CA_') #define VAR_5 ((ULONG)'5CA_') #define VAR_6 ((ULONG)'6CA_') #define VAR_7 ((ULONG)'7CA_') #define VAR_8 ((ULONG)'8CA_') #define VAR_9 ((ULONG)'9CA_') #define VAR_10 ((ULONG)'RDA_') #define VAR_11 ((ULONG)'0LA_') #define VAR_12 ((ULONG)'1LA_') #define VAR_13 ((ULONG)'2LA_') #define VAR_14 ((ULONG)'3LA_') #define VAR_15 ((ULONG)'4LA_') #define VAR_16 ((ULONG)'5LA_') #define VAR_17 ((ULONG)'6LA_') #define VAR_18 ((ULONG)'7LA_') #define VAR_19 ((ULONG)'8LA_') #define VAR_20 ((ULONG)'9LA_') #define PACKED_BST ((ULONG)'TSB_') #define VAR_21 ((ULONG)'DIC_') #define VAR_22 ((ULONG)'SRC_') #define VAR_23 ((ULONG)'TRC_') #define VAR_24 ((ULONG)'KCD_') #define VAR_25 ((ULONG)'NDD_') #define VAR_26 ((ULONG)'SID_') #define VAR_27 ((ULONG)'DJE_') #define VAR_28 ((ULONG)'0JE_') #define PACKED_EJ1 ((ULONG)'1JE_') #define VAR_29 ((ULONG)'2JE_') #define VAR_30 ((ULONG)'3JE_') #define VAR_31 ((ULONG)'4JE_') #define PACKED_EJ5 ((ULONG)'5JE_') #define VAR_32 ((ULONG)'DIH_') #define VAR_33 ((ULONG)'INI_') #define VAR_34 ((ULONG)'CRI_') #define VAR_35 ((ULONG)'KCL_') #define VAR_36 ((ULONG)'DIL_') #define VAR_37 ((ULONG)'FFO_') #define VAR_38 ((ULONG)'_NO_') #define VAR_39 ((ULONG)'0RP_') #define VAR_40 ((ULONG)'1RP_') #define PACKED_PR2 ((ULONG)'2RP_') #define VAR_41 ((ULONG)'SRP_') #define VAR_42 ((ULONG)'TRP_') #define VAR_43 ((ULONG)'WRP_') #define VAR_44 ((ULONG)'0SP_') #define PACKED_PS1 ((ULONG)'1SP_') #define VAR_45 ((ULONG)'2SP_') #define VAR_46 ((ULONG)'3SP_') #define PACKED_PSC ((ULONG)'CSP_') #define VAR_47 ((ULONG)'LSP_') #define VAR_48 ((ULONG)'VSP_') #define PACKED_PSW ((ULONG)'WSP_') #define VAR_49 ((ULONG)'STP_') #define VAR_50 ((ULONG)'GER_') #define VAR_51 ((ULONG)'VMR_') #define VAR_52 ((ULONG)'_0S_') #define VAR_53 ((ULONG)'D0S_') #define PACKED_S1 ((ULONG)'_1S_') #define VAR_54 ((ULONG)'D1S_') #define VAR_55 ((ULONG)'_2S_') #define VAR_56 ((ULONG)'D2S_') #define VAR_57 ((ULONG)'_3S_') #define VAR_58 ((ULONG)'D3S_') #define VAR_59 ((ULONG)'_4S_') #define VAR_60 ((ULONG)'D4S_') #define VAR_61 ((ULONG)'_5S_') #define VAR_62 ((ULONG)'D5S_') #define VAR_63 ((ULONG)'PCS_') #define VAR_64 ((ULONG)'_IS_') #define VAR_65 ((ULONG)'SRS_') #define VAR_66 ((ULONG)'TSS_') #define VAR_67 ((ULONG)'ATS_') #define VAR_68 ((ULONG)'DTS_') #define VAR_69 ((ULONG)'NUS_') #define VAR_70 ((ULONG)'DWS_') #define VAR_71 ((ULONG)'1CT_') #define VAR_72 ((ULONG)'2CT_') #define VAR_73 ((ULONG)'PMT_') #define VAR_74 ((ULONG)'PST_') #define VAR_75 ((ULONG)'DIU_') #define VAR_76 ((ULONG)'KAW_') #define VAR_77 ((ULONG)'NBB_') #define VAR_78 0x00000001 #define VAR_79 0x00000002 #define VAR_80 0x00000004 #define VAR_81 0x00000008 #define VAR_82 ( STA_STATUS_PRESENT | \ STA_STATUS_ENABLED | \ STA_STATUS_USER_INTERFACE | \ STA_STATUS_WORKING_OK) typedef struct { CLASS_0 VAR_84; CLASS_0 VAR_85; } ID_0, *CLASS_1; typedef struct { CLASS_2 VAR_86; NTSTATUS VAR_87; } ID_1, *CLASS_3; typedef enum CLASS_4 { VAR_88, VAR_89, VAR_90 } ID_2 ; typedef CLASS_5 (*CLASS_6)( CLASS_7 VAR_91, CLASS_7 VAR_92 VAR_83, CLASS_7 VAR_93, CLASS_9 NTSTATUS * ) ; CLASS_10 VAR_94 FUNC_0( CLASS_7 VAR_91 AcpiObject, CLASS_7 NTSTATUS VAR_87, CLASS_7 POBJDATA VAR_95, CLASS_7 VAR_83 VAR_85 ); CLASS_10 FUNC_1( CLASS_7 VAR_92 VAR_96 VAR_97, CLASS_7 VAR_93 VAR_98, CLASS_7 VAR_99 VAR_100 ); CLASS_10 FUNC_2( CLASS_7 VAR_92 VAR_101 VAR_97, CLASS_7 VAR_93 VAR_98, CLASS_7 VAR_99 VAR_100 ); CLASS_8 FUNC_3( CLASS_7 VAR_91 AcpiObject, CLASS_7 VAR_93 VAR_102 ); CLASS_11 FUNC_4( CLASS_7 VAR_91 AcpiObject ); CLASS_10 VAR_94 FUNC_5( CLASS_7 VAR_91 AcpiObject, CLASS_7 NTSTATUS VAR_87, CLASS_7 POBJDATA VAR_95 VAR_103, CLASS_7 VAR_104 VAR_86 ); NTSTATUS FUNC_6( CLASS_7 VAR_96 VAR_105, CLASS_7 VAR_91 VAR_106, CLASS_9 VAR_91 *VAR_107 ); NTSTATUS ACPIAmliGetFirstChild( CLASS_7 VAR_96 VAR_105, CLASS_9 VAR_91 *VAR_107 ); NTSTATUS FUNC_7( CLASS_7 VAR_91 VAR_108, CLASS_9 VAR_96 *VAR_109 ); #endif
0.890745
{'VAR_0': 'PACKED_AC0', 'VAR_1': 'PACKED_AC1', 'VAR_2': 'PACKED_AC2', 'VAR_3': 'PACKED_AC3', 'VAR_4': 'PACKED_AC4', 'VAR_5': 'PACKED_AC5', 'VAR_6': 'PACKED_AC6', 'VAR_7': 'PACKED_AC7', 'VAR_8': 'PACKED_AC8', 'VAR_9': 'PACKED_AC9', 'VAR_10': 'PACKED_ADR', 'VAR_11': 'PACKED_AL0', 'VAR_12': 'PACKED_AL1', 'VAR_13': 'PACKED_AL2', 'VAR_14': 'PACKED_AL3', 'VAR_15': 'PACKED_AL4', 'VAR_16': 'PACKED_AL5', 'VAR_17': 'PACKED_AL6', 'VAR_18': 'PACKED_AL7', 'VAR_19': 'PACKED_AL8', 'VAR_20': 'PACKED_AL9', 'VAR_21': 'PACKED_CID', 'VAR_22': 'PACKED_CRS', 'VAR_23': 'PACKED_CRT', 'VAR_24': 'PACKED_DCK', 'VAR_25': 'PACKED_DDN', 'VAR_26': 'PACKED_DIS', 'VAR_27': 'PACKED_EJD', 'VAR_28': 'PACKED_EJ0', 'VAR_29': 'PACKED_EJ2', 'VAR_30': 'PACKED_EJ3', 'VAR_31': 'PACKED_EJ4', 'VAR_32': 'PACKED_HID', 'VAR_33': 'PACKED_INI', 'VAR_34': 'PACKED_IRC', 'VAR_35': 'PACKED_LCK', 'VAR_36': 'PACKED_LID', 'VAR_37': 'PACKED_OFF', 'VAR_38': 'PACKED_ON', 'VAR_39': 'PACKED_PR0', 'VAR_40': 'PACKED_PR1', 'VAR_41': 'PACKED_PRS', 'VAR_42': 'PACKED_PRT', 'VAR_43': 'PACKED_PRW', 'VAR_44': 'PACKED_PS0', 'VAR_45': 'PACKED_PS2', 'VAR_46': 'PACKED_PS3', 'VAR_47': 'PACKED_PSL', 'VAR_48': 'PACKED_PSV', 'VAR_49': 'PACKED_PTS', 'VAR_50': 'PACKED_REG', 'VAR_51': 'PACKED_RMV', 'VAR_52': 'PACKED_S0', 'VAR_53': 'PACKED_S0D', 'VAR_54': 'PACKED_S1D', 'VAR_55': 'PACKED_S2', 'VAR_56': 'PACKED_S2D', 'VAR_57': 'PACKED_S3', 'VAR_58': 'PACKED_S3D', 'VAR_59': 'PACKED_S4', 'VAR_60': 'PACKED_S4D', 'VAR_61': 'PACKED_S5', 'VAR_62': 'PACKED_S5D', 'VAR_63': 'PACKED_SCP', 'VAR_64': 'PACKED_SI', 'VAR_65': 'PACKED_SRS', 'VAR_66': 'PACKED_SST', 'VAR_67': 'PACKED_STA', 'VAR_68': 'PACKED_STD', 'VAR_69': 'PACKED_SUN', 'VAR_70': 'PACKED_SWD', 'VAR_71': 'PACKED_TC1', 'VAR_72': 'PACKED_TC2', 'VAR_73': 'PACKED_TMP', 'VAR_74': 'PACKED_TSP', 'VAR_75': 'PACKED_UID', 'VAR_76': 'PACKED_WAK', 'VAR_77': 'PACKED_BBN', 'VAR_78': 'STA_STATUS_PRESENT', 'VAR_79': 'STA_STATUS_ENABLED', 'VAR_80': 'STA_STATUS_USER_INTERFACE', 'VAR_81': 'STA_STATUS_WORKING_OK', 'VAR_82': 'STA_STATUS_DEFAULT', 'CLASS_0': 'PVOID', 'VAR_83': 'PVOID', 'VAR_84': 'CompletionRoutine', 'VAR_85': 'Context', 'ID_0': 'AMLI_COMPLETION_CONTEXT', 'CLASS_1': 'PAMLI_COMPLETION_CONTEXT', 'CLASS_2': 'KEVENT', 'VAR_86': 'Event', 'VAR_87': 'Status', 'ID_1': 'AMLISUPP_CONTEXT_PASSIVE', 'CLASS_3': 'PAMLISUPP_CONTEXT_PASSIVE', 'CLASS_4': '_ACPIENUM_CONTROL', 'VAR_88': 'ACPIENUM_STOP', 'VAR_89': 'ACPIENUM_CONTINUE', 'VAR_90': 'ACPIENUM_CONTINUE_NORECURSE', 'ID_2': 'ACPIENUM_CONTROL', 'CLASS_5': 'ACPIENUM_CONTROL', 'CLASS_6': 'ACPIENUM_CALLBACK', 'CLASS_7': 'IN', 'VAR_91': 'PNSOBJ', 'CLASS_8': 'PNSOBJ', 'VAR_92': 'OUT', 'CLASS_9': 'OUT', 'VAR_93': 'ULONG', 'CLASS_10': 'VOID', 'VAR_94': 'EXPORT', 'FUNC_0': 'AmlisuppCompletePassive', 'VAR_95': 'Result', 'FUNC_1': 'ACPIAmliDoubleToName', 'VAR_96': 'PUCHAR', 'CLASS_11': 'PUCHAR', 'VAR_97': 'ACPIName', 'VAR_98': 'DwordID', 'VAR_99': 'BOOLEAN', 'VAR_100': 'ConvertToID', 'FUNC_2': 'ACPIAmliDoubleToNameWide', 'VAR_101': 'PWCHAR', 'FUNC_3': 'ACPIAmliGetNamedChild', 'VAR_102': 'ObjectId', 'FUNC_4': 'ACPIAmliNameObject', 'FUNC_5': 'ACPISimpleEvalComplete', 'VAR_103': 'OPTIONAL', 'VAR_104': 'PKEVENT', 'FUNC_6': 'ACPIAmliFindObject', 'VAR_105': 'ObjectName', 'VAR_106': 'Scope', 'VAR_107': 'Object', 'FUNC_7': 'ACPIAmliBuildObjectPathname', 'VAR_108': 'ACPIObject', 'VAR_109': 'ConstructedPathName'}
/* * MediaTek PCIe host controller driver. * * Copyright (c) 2017 MediaTek Inc. * Author: <NAME> <<EMAIL>> * * 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. */ #include <linux/clk.h> #include <linux/delay.h> #include <linux/kernel.h> #include <linux/of_address.h> #include <linux/of_pci.h> #include <linux/of_platform.h> #include <linux/pci.h> #include <linux/phy/phy.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/reset.h> /* PCIe shared registers */ #define PCIE_SYS_CFG 0x00 #define PCIE_INT_ENABLE 0x0c #define PCIE_CFG_ADDR 0x20 #define PCIE_CFG_DATA 0x24 /* PCIe per port registers */ #define PCIE_BAR0_SETUP 0x10 #define PCIE_CLASS 0x34 #define PCIE_LINK_STATUS 0x50 #define PCIE_PORT_INT_EN(x) BIT(20 + (x)) #define PCIE_PORT_PERST(x) BIT(1 + (x)) #define PCIE_PORT_LINKUP BIT(0) #define PCIE_BAR_MAP_MAX GENMASK(31, 16) #define PCIE_BAR_ENABLE BIT(0) #define PCIE_REVISION_ID BIT(0) #define PCIE_CLASS_CODE (0x60400 << 8) #define PCIE_CONF_REG(regn) (((regn) & GENMASK(7, 2)) | \ ((((regn) >> 8) & GENMASK(3, 0)) << 24)) #define PCIE_CONF_FUN(fun) (((fun) << 8) & GENMASK(10, 8)) #define PCIE_CONF_DEV(dev) (((dev) << 11) & GENMASK(15, 11)) #define PCIE_CONF_BUS(bus) (((bus) << 16) & GENMASK(23, 16)) #define PCIE_CONF_ADDR(regn, fun, dev, bus) \ (PCIE_CONF_REG(regn) | PCIE_CONF_FUN(fun) | \ PCIE_CONF_DEV(dev) | PCIE_CONF_BUS(bus)) /* MediaTek specific configuration registers */ #define PCIE_FTS_NUM 0x70c #define PCIE_FTS_NUM_MASK GENMASK(15, 8) #define PCIE_FTS_NUM_L0(x) ((x) & 0xff << 8) #define PCIE_FC_CREDIT 0x73c #define PCIE_FC_CREDIT_MASK (GENMASK(31, 31) | GENMASK(28, 16)) #define PCIE_FC_CREDIT_VAL(x) ((x) << 16) /** * struct mtk_pcie_port - PCIe port information * @base: IO mapped register base * @list: port list * @pcie: pointer to PCIe host info * @reset: pointer to port reset control * @sys_ck: pointer to bus clock * @phy: pointer to phy control block * @lane: lane count * @index: port index */ struct mtk_pcie_port { void __iomem *base; struct list_head list; struct mtk_pcie *pcie; struct reset_control *reset; struct clk *sys_ck; struct phy *phy; u32 lane; u32 index; }; /** * struct mtk_pcie - PCIe host information * @dev: pointer to PCIe device * @base: IO mapped register base * @free_ck: free-run reference clock * @io: IO resource * @pio: PIO resource * @mem: non-prefetchable memory resource * @busn: bus range * @offset: IO / Memory offset * @ports: pointer to PCIe port information */ struct mtk_pcie { struct device *dev; void __iomem *base; struct clk *free_ck; struct resource io; struct resource pio; struct resource mem; struct resource busn; struct { resource_size_t mem; resource_size_t io; } offset; struct list_head ports; }; static inline bool mtk_pcie_link_up(struct mtk_pcie_port *port) { return !!(readl(port->base + PCIE_LINK_STATUS) & PCIE_PORT_LINKUP); } static void mtk_pcie_subsys_powerdown(struct mtk_pcie *pcie) { struct device *dev = pcie->dev; clk_disable_unprepare(pcie->free_ck); if (dev->pm_domain) { pm_runtime_put_sync(dev); pm_runtime_disable(dev); } } static void mtk_pcie_port_free(struct mtk_pcie_port *port) { struct mtk_pcie *pcie = port->pcie; struct device *dev = pcie->dev; devm_iounmap(dev, port->base); list_del(&port->list); devm_kfree(dev, port); } static void mtk_pcie_put_resources(struct mtk_pcie *pcie) { struct mtk_pcie_port *port, *tmp; list_for_each_entry_safe(port, tmp, &pcie->ports, list) { phy_power_off(port->phy); clk_disable_unprepare(port->sys_ck); mtk_pcie_port_free(port); } mtk_pcie_subsys_powerdown(pcie); } static void __iomem *mtk_pcie_map_bus(struct pci_bus *bus, unsigned int devfn, int where) { struct pci_host_bridge *host = pci_find_host_bridge(bus); struct mtk_pcie *pcie = pci_host_bridge_priv(host); writel(PCIE_CONF_ADDR(where, PCI_FUNC(devfn), PCI_SLOT(devfn), bus->number), pcie->base + PCIE_CFG_ADDR); return pcie->base + PCIE_CFG_DATA + (where & 3); } static struct pci_ops mtk_pcie_ops = { .map_bus = mtk_pcie_map_bus, .read = pci_generic_config_read, .write = pci_generic_config_write, }; static void mtk_pcie_configure_rc(struct mtk_pcie_port *port) { struct mtk_pcie *pcie = port->pcie; u32 func = PCI_FUNC(port->index << 3); u32 slot = PCI_SLOT(port->index << 3); u32 val; /* enable interrupt */ val = readl(pcie->base + PCIE_INT_ENABLE); val |= PCIE_PORT_INT_EN(port->index); writel(val, pcie->base + PCIE_INT_ENABLE); /* map to all DDR region. We need to set it before cfg operation. */ writel(PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE, port->base + PCIE_BAR0_SETUP); /* configure class code and revision ID */ writel(PCIE_CLASS_CODE | PCIE_REVISION_ID, port->base + PCIE_CLASS); /* configure FC credit */ writel(PCIE_CONF_ADDR(PCIE_FC_CREDIT, func, slot, 0), pcie->base + PCIE_CFG_ADDR); val = readl(pcie->base + PCIE_CFG_DATA); val &= ~PCIE_FC_CREDIT_MASK; val |= PCIE_FC_CREDIT_VAL(0x806c); writel(PCIE_CONF_ADDR(PCIE_FC_CREDIT, func, slot, 0), pcie->base + PCIE_CFG_ADDR); writel(val, pcie->base + PCIE_CFG_DATA); /* configure RC FTS number to 250 when it leaves L0s */ writel(PCIE_CONF_ADDR(PCIE_FTS_NUM, func, slot, 0), pcie->base + PCIE_CFG_ADDR); val = readl(pcie->base + PCIE_CFG_DATA); val &= ~PCIE_FTS_NUM_MASK; val |= PCIE_FTS_NUM_L0(0x50); writel(PCIE_CONF_ADDR(PCIE_FTS_NUM, func, slot, 0), pcie->base + PCIE_CFG_ADDR); writel(val, pcie->base + PCIE_CFG_DATA); } static void mtk_pcie_assert_ports(struct mtk_pcie_port *port) { struct mtk_pcie *pcie = port->pcie; u32 val; /* assert port PERST_N */ val = readl(pcie->base + PCIE_SYS_CFG); val |= PCIE_PORT_PERST(port->index); writel(val, pcie->base + PCIE_SYS_CFG); /* de-assert port PERST_N */ val = readl(pcie->base + PCIE_SYS_CFG); val &= ~PCIE_PORT_PERST(port->index); writel(val, pcie->base + PCIE_SYS_CFG); /* PCIe v2.0 need at least 100ms delay to train from Gen1 to Gen2 */ msleep(100); } static void mtk_pcie_enable_ports(struct mtk_pcie_port *port) { struct device *dev = port->pcie->dev; int err; err = clk_prepare_enable(port->sys_ck); if (err) { dev_err(dev, "failed to enable port%d clock\n", port->index); goto err_sys_clk; } reset_control_assert(port->reset); reset_control_deassert(port->reset); err = phy_power_on(port->phy); if (err) { dev_err(dev, "failed to power on port%d phy\n", port->index); goto err_phy_on; } mtk_pcie_assert_ports(port); /* if link up, then setup root port configuration space */ if (mtk_pcie_link_up(port)) { mtk_pcie_configure_rc(port); return; } dev_info(dev, "Port%d link down\n", port->index); phy_power_off(port->phy); err_phy_on: clk_disable_unprepare(port->sys_ck); err_sys_clk: mtk_pcie_port_free(port); } static int mtk_pcie_parse_ports(struct mtk_pcie *pcie, struct device_node *node, int index) { struct mtk_pcie_port *port; struct resource *regs; struct device *dev = pcie->dev; struct platform_device *pdev = to_platform_device(dev); char name[10]; int err; port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL); if (!port) return -ENOMEM; err = of_property_read_u32(node, "num-lanes", &port->lane); if (err) { dev_err(dev, "missing num-lanes property\n"); return err; } regs = platform_get_resource(pdev, IORESOURCE_MEM, index + 1); port->base = devm_ioremap_resource(dev, regs); if (IS_ERR(port->base)) { dev_err(dev, "failed to map port%d base\n", index); return PTR_ERR(port->base); } snprintf(name, sizeof(name), "sys_ck%d", index); port->sys_ck = devm_clk_get(dev, name); if (IS_ERR(port->sys_ck)) { dev_err(dev, "failed to get port%d clock\n", index); return PTR_ERR(port->sys_ck); } snprintf(name, sizeof(name), "pcie-rst%d", index); port->reset = devm_reset_control_get_optional(dev, name); if (PTR_ERR(port->reset) == -EPROBE_DEFER) return PTR_ERR(port->reset); /* some platforms may use default PHY setting */ snprintf(name, sizeof(name), "pcie-phy%d", index); port->phy = devm_phy_optional_get(dev, name); if (IS_ERR(port->phy)) return PTR_ERR(port->phy); port->index = index; port->pcie = pcie; INIT_LIST_HEAD(&port->list); list_add_tail(&port->list, &pcie->ports); return 0; } static int mtk_pcie_subsys_powerup(struct mtk_pcie *pcie) { struct device *dev = pcie->dev; struct platform_device *pdev = to_platform_device(dev); struct resource *regs; int err; /* get shared registers */ regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); pcie->base = devm_ioremap_resource(dev, regs); if (IS_ERR(pcie->base)) { dev_err(dev, "failed to map shared register\n"); return PTR_ERR(pcie->base); } pcie->free_ck = devm_clk_get(dev, "free_ck"); if (IS_ERR(pcie->free_ck)) { if (PTR_ERR(pcie->free_ck) == -EPROBE_DEFER) return -EPROBE_DEFER; pcie->free_ck = NULL; } if (dev->pm_domain) { pm_runtime_enable(dev); pm_runtime_get_sync(dev); } /* enable top level clock */ err = clk_prepare_enable(pcie->free_ck); if (err) { dev_err(dev, "failed to enable free_ck\n"); goto err_free_ck; } return 0; err_free_ck: if (dev->pm_domain) { pm_runtime_put_sync(dev); pm_runtime_disable(dev); } return err; } static int mtk_pcie_setup(struct mtk_pcie *pcie) { struct device *dev = pcie->dev; struct device_node *node = dev->of_node, *child; struct of_pci_range_parser parser; struct of_pci_range range; struct resource res; struct mtk_pcie_port *port, *tmp; int err; if (of_pci_range_parser_init(&parser, node)) { dev_err(dev, "missing \"ranges\" property\n"); return -EINVAL; } for_each_of_pci_range(&parser, &range) { err = of_pci_range_to_resource(&range, node, &res); if (err < 0) return err; switch (res.flags & IORESOURCE_TYPE_BITS) { case IORESOURCE_IO: pcie->offset.io = res.start - range.pci_addr; memcpy(&pcie->pio, &res, sizeof(res)); pcie->pio.name = node->full_name; pcie->io.start = range.cpu_addr; pcie->io.end = range.cpu_addr + range.size - 1; pcie->io.flags = IORESOURCE_MEM; pcie->io.name = "I/O"; memcpy(&res, &pcie->io, sizeof(res)); break; case IORESOURCE_MEM: pcie->offset.mem = res.start - range.pci_addr; memcpy(&pcie->mem, &res, sizeof(res)); pcie->mem.name = "non-prefetchable"; break; } } err = of_pci_parse_bus_range(node, &pcie->busn); if (err < 0) { dev_err(dev, "failed to parse bus ranges property: %d\n", err); pcie->busn.name = node->name; pcie->busn.start = 0; pcie->busn.end = 0xff; pcie->busn.flags = IORESOURCE_BUS; } for_each_available_child_of_node(node, child) { int index; err = of_pci_get_devfn(child); if (err < 0) { dev_err(dev, "failed to parse devfn: %d\n", err); return err; } index = PCI_SLOT(err); err = mtk_pcie_parse_ports(pcie, child, index); if (err) return err; } err = mtk_pcie_subsys_powerup(pcie); if (err) return err; /* enable each port, and then check link status */ list_for_each_entry_safe(port, tmp, &pcie->ports, list) mtk_pcie_enable_ports(port); /* power down PCIe subsys if slots are all empty (link down) */ if (list_empty(&pcie->ports)) mtk_pcie_subsys_powerdown(pcie); return 0; } static int mtk_pcie_request_resources(struct mtk_pcie *pcie) { struct pci_host_bridge *host = pci_host_bridge_from_priv(pcie); struct list_head *windows = &host->windows; struct device *dev = pcie->dev; int err; pci_add_resource_offset(windows, &pcie->pio, pcie->offset.io); pci_add_resource_offset(windows, &pcie->mem, pcie->offset.mem); pci_add_resource(windows, &pcie->busn); err = devm_request_pci_bus_resources(dev, windows); if (err < 0) return err; pci_remap_iospace(&pcie->pio, pcie->io.start); return 0; } static int mtk_pcie_register_host(struct pci_host_bridge *host) { struct mtk_pcie *pcie = pci_host_bridge_priv(host); struct pci_bus *child; int err; host->busnr = pcie->busn.start; host->dev.parent = pcie->dev; host->ops = &mtk_pcie_ops; host->map_irq = of_irq_parse_and_map_pci; host->swizzle_irq = pci_common_swizzle; err = pci_scan_root_bus_bridge(host); if (err < 0) return err; pci_bus_size_bridges(host->bus); pci_bus_assign_resources(host->bus); list_for_each_entry(child, &host->bus->children, node) pcie_bus_configure_settings(child); pci_bus_add_devices(host->bus); return 0; } static int mtk_pcie_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; struct mtk_pcie *pcie; struct pci_host_bridge *host; int err; host = devm_pci_alloc_host_bridge(dev, sizeof(*pcie)); if (!host) return -ENOMEM; pcie = pci_host_bridge_priv(host); pcie->dev = dev; platform_set_drvdata(pdev, pcie); INIT_LIST_HEAD(&pcie->ports); err = mtk_pcie_setup(pcie); if (err) return err; err = mtk_pcie_request_resources(pcie); if (err) goto put_resources; err = mtk_pcie_register_host(host); if (err) goto put_resources; return 0; put_resources: if (!list_empty(&pcie->ports)) mtk_pcie_put_resources(pcie); return err; } static const struct of_device_id mtk_pcie_ids[] = { { .compatible = "mediatek,mt7623-pcie"}, { .compatible = "mediatek,mt2701-pcie"}, {}, }; static struct platform_driver mtk_pcie_driver = { .probe = mtk_pcie_probe, .driver = { .name = "mtk-pcie", .of_match_table = mtk_pcie_ids, .suppress_bind_attrs = true, }, }; builtin_platform_driver(mtk_pcie_driver);
/* * MediaTek PCIe host controller driver. * * Copyright (c) 2017 MediaTek Inc. * Author: <NAME> <<EMAIL>> * * 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. */ #include <linux/clk.h> #include <IMPORT_0> #include <linux/kernel.h> #include <IMPORT_1> #include <linux/of_pci.h> #include <linux/of_platform.h> #include <linux/pci.h> #include <linux/phy/phy.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/reset.h> /* PCIe shared registers */ #define PCIE_SYS_CFG 0x00 #define PCIE_INT_ENABLE 0x0c #define PCIE_CFG_ADDR 0x20 #define PCIE_CFG_DATA 0x24 /* PCIe per port registers */ #define PCIE_BAR0_SETUP 0x10 #define VAR_0 0x34 #define PCIE_LINK_STATUS 0x50 #define PCIE_PORT_INT_EN(x) BIT(20 + (x)) #define PCIE_PORT_PERST(x) BIT(1 + (x)) #define PCIE_PORT_LINKUP BIT(0) #define PCIE_BAR_MAP_MAX GENMASK(31, 16) #define PCIE_BAR_ENABLE BIT(0) #define PCIE_REVISION_ID BIT(0) #define PCIE_CLASS_CODE (0x60400 << 8) #define PCIE_CONF_REG(regn) (((regn) & GENMASK(7, 2)) | \ ((((regn) >> 8) & GENMASK(3, 0)) << 24)) #define PCIE_CONF_FUN(fun) (((fun) << 8) & GENMASK(10, 8)) #define PCIE_CONF_DEV(dev) (((dev) << 11) & GENMASK(15, 11)) #define PCIE_CONF_BUS(bus) (((bus) << 16) & GENMASK(23, 16)) #define PCIE_CONF_ADDR(regn, fun, dev, bus) \ (PCIE_CONF_REG(regn) | PCIE_CONF_FUN(fun) | \ PCIE_CONF_DEV(dev) | PCIE_CONF_BUS(bus)) /* MediaTek specific configuration registers */ #define PCIE_FTS_NUM 0x70c #define PCIE_FTS_NUM_MASK GENMASK(15, 8) #define PCIE_FTS_NUM_L0(x) ((x) & 0xff << 8) #define PCIE_FC_CREDIT 0x73c #define PCIE_FC_CREDIT_MASK (GENMASK(31, 31) | GENMASK(28, 16)) #define PCIE_FC_CREDIT_VAL(x) ((x) << 16) /** * struct mtk_pcie_port - PCIe port information * @base: IO mapped register base * @list: port list * @pcie: pointer to PCIe host info * @reset: pointer to port reset control * @sys_ck: pointer to bus clock * @phy: pointer to phy control block * @lane: lane count * @index: port index */ struct mtk_pcie_port { void __iomem *base; struct list_head list; struct CLASS_0 *VAR_1; struct reset_control *reset; struct clk *sys_ck; struct phy *phy; CLASS_1 VAR_2; CLASS_1 index; }; /** * struct mtk_pcie - PCIe host information * @dev: pointer to PCIe device * @base: IO mapped register base * @free_ck: free-run reference clock * @io: IO resource * @pio: PIO resource * @mem: non-prefetchable memory resource * @busn: bus range * @offset: IO / Memory offset * @ports: pointer to PCIe port information */ struct CLASS_0 { struct device *dev; void __iomem *base; struct clk *free_ck; struct resource VAR_3; struct resource pio; struct resource mem; struct resource busn; struct { resource_size_t mem; resource_size_t VAR_3; } offset; struct list_head ports; }; static inline bool mtk_pcie_link_up(struct mtk_pcie_port *port) { return !!(readl(port->base + PCIE_LINK_STATUS) & PCIE_PORT_LINKUP); } static void mtk_pcie_subsys_powerdown(struct CLASS_0 *VAR_1) { struct device *dev = VAR_1->dev; clk_disable_unprepare(VAR_1->free_ck); if (dev->VAR_4) { pm_runtime_put_sync(dev); pm_runtime_disable(dev); } } static void FUNC_0(struct mtk_pcie_port *port) { struct CLASS_0 *VAR_1 = port->VAR_1; struct device *dev = VAR_1->dev; devm_iounmap(dev, port->base); list_del(&port->list); devm_kfree(dev, port); } static void mtk_pcie_put_resources(struct CLASS_0 *VAR_1) { struct mtk_pcie_port *port, *tmp; list_for_each_entry_safe(port, tmp, &VAR_1->ports, list) { phy_power_off(port->phy); clk_disable_unprepare(port->sys_ck); FUNC_0(port); } mtk_pcie_subsys_powerdown(VAR_1); } static void __iomem *FUNC_1(struct pci_bus *bus, unsigned int devfn, int where) { struct pci_host_bridge *host = pci_find_host_bridge(bus); struct CLASS_0 *VAR_1 = pci_host_bridge_priv(host); writel(PCIE_CONF_ADDR(where, PCI_FUNC(devfn), PCI_SLOT(devfn), bus->number), VAR_1->base + PCIE_CFG_ADDR); return VAR_1->base + PCIE_CFG_DATA + (where & 3); } static struct pci_ops mtk_pcie_ops = { .map_bus = VAR_5, .read = pci_generic_config_read, .write = pci_generic_config_write, }; static void mtk_pcie_configure_rc(struct mtk_pcie_port *port) { struct CLASS_0 *VAR_1 = port->VAR_1; CLASS_1 func = PCI_FUNC(port->index << 3); CLASS_1 slot = PCI_SLOT(port->index << 3); CLASS_1 val; /* enable interrupt */ val = readl(VAR_1->base + PCIE_INT_ENABLE); val |= PCIE_PORT_INT_EN(port->index); writel(val, VAR_1->base + PCIE_INT_ENABLE); /* map to all DDR region. We need to set it before cfg operation. */ writel(PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE, port->base + PCIE_BAR0_SETUP); /* configure class code and revision ID */ writel(PCIE_CLASS_CODE | PCIE_REVISION_ID, port->base + VAR_0); /* configure FC credit */ writel(PCIE_CONF_ADDR(PCIE_FC_CREDIT, func, slot, 0), VAR_1->base + PCIE_CFG_ADDR); val = readl(VAR_1->base + PCIE_CFG_DATA); val &= ~PCIE_FC_CREDIT_MASK; val |= PCIE_FC_CREDIT_VAL(0x806c); writel(PCIE_CONF_ADDR(PCIE_FC_CREDIT, func, slot, 0), VAR_1->base + PCIE_CFG_ADDR); writel(val, VAR_1->base + PCIE_CFG_DATA); /* configure RC FTS number to 250 when it leaves L0s */ writel(PCIE_CONF_ADDR(PCIE_FTS_NUM, func, slot, 0), VAR_1->base + PCIE_CFG_ADDR); val = readl(VAR_1->base + PCIE_CFG_DATA); val &= ~PCIE_FTS_NUM_MASK; val |= PCIE_FTS_NUM_L0(0x50); writel(PCIE_CONF_ADDR(PCIE_FTS_NUM, func, slot, 0), VAR_1->base + PCIE_CFG_ADDR); writel(val, VAR_1->base + PCIE_CFG_DATA); } static void mtk_pcie_assert_ports(struct mtk_pcie_port *port) { struct CLASS_0 *VAR_1 = port->VAR_1; CLASS_1 val; /* assert port PERST_N */ val = readl(VAR_1->base + PCIE_SYS_CFG); val |= PCIE_PORT_PERST(port->index); writel(val, VAR_1->base + PCIE_SYS_CFG); /* de-assert port PERST_N */ val = readl(VAR_1->base + PCIE_SYS_CFG); val &= ~PCIE_PORT_PERST(port->index); writel(val, VAR_1->base + PCIE_SYS_CFG); /* PCIe v2.0 need at least 100ms delay to train from Gen1 to Gen2 */ msleep(100); } static void mtk_pcie_enable_ports(struct mtk_pcie_port *port) { struct device *dev = port->VAR_1->dev; int err; err = FUNC_2(port->sys_ck); if (err) { dev_err(dev, "failed to enable port%d clock\n", port->index); goto err_sys_clk; } reset_control_assert(port->reset); reset_control_deassert(port->reset); err = FUNC_3(port->phy); if (err) { dev_err(dev, "failed to power on port%d phy\n", port->index); goto err_phy_on; } mtk_pcie_assert_ports(port); /* if link up, then setup root port configuration space */ if (mtk_pcie_link_up(port)) { mtk_pcie_configure_rc(port); return; } FUNC_4(dev, "Port%d link down\n", port->index); phy_power_off(port->phy); err_phy_on: clk_disable_unprepare(port->sys_ck); err_sys_clk: FUNC_0(port); } static int mtk_pcie_parse_ports(struct CLASS_0 *VAR_1, struct CLASS_2 *node, int index) { struct mtk_pcie_port *port; struct resource *VAR_6; struct device *dev = VAR_1->dev; struct CLASS_3 *pdev = to_platform_device(dev); char name[10]; int err; port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL); if (!port) return -ENOMEM; err = of_property_read_u32(node, "num-lanes", &port->VAR_2); if (err) { dev_err(dev, "missing num-lanes property\n"); return err; } VAR_6 = platform_get_resource(pdev, IORESOURCE_MEM, index + 1); port->base = FUNC_5(dev, VAR_6); if (IS_ERR(port->base)) { dev_err(dev, "failed to map port%d base\n", index); return PTR_ERR(port->base); } snprintf(name, sizeof(name), "sys_ck%d", index); port->sys_ck = devm_clk_get(dev, name); if (IS_ERR(port->sys_ck)) { dev_err(dev, "failed to get port%d clock\n", index); return PTR_ERR(port->sys_ck); } snprintf(name, sizeof(name), "pcie-rst%d", index); port->reset = devm_reset_control_get_optional(dev, name); if (PTR_ERR(port->reset) == -EPROBE_DEFER) return PTR_ERR(port->reset); /* some platforms may use default PHY setting */ snprintf(name, sizeof(name), "pcie-phy%d", index); port->phy = devm_phy_optional_get(dev, name); if (IS_ERR(port->phy)) return PTR_ERR(port->phy); port->index = index; port->VAR_1 = VAR_1; INIT_LIST_HEAD(&port->list); list_add_tail(&port->list, &VAR_1->ports); return 0; } static int mtk_pcie_subsys_powerup(struct CLASS_0 *VAR_1) { struct device *dev = VAR_1->dev; struct CLASS_3 *pdev = to_platform_device(dev); struct resource *VAR_6; int err; /* get shared registers */ VAR_6 = platform_get_resource(pdev, IORESOURCE_MEM, 0); VAR_1->base = FUNC_5(dev, VAR_6); if (IS_ERR(VAR_1->base)) { dev_err(dev, "failed to map shared register\n"); return PTR_ERR(VAR_1->base); } VAR_1->free_ck = devm_clk_get(dev, "free_ck"); if (IS_ERR(VAR_1->free_ck)) { if (PTR_ERR(VAR_1->free_ck) == -EPROBE_DEFER) return -EPROBE_DEFER; VAR_1->free_ck = NULL; } if (dev->VAR_4) { pm_runtime_enable(dev); pm_runtime_get_sync(dev); } /* enable top level clock */ err = FUNC_2(VAR_1->free_ck); if (err) { dev_err(dev, "failed to enable free_ck\n"); goto err_free_ck; } return 0; err_free_ck: if (dev->VAR_4) { pm_runtime_put_sync(dev); pm_runtime_disable(dev); } return err; } static int mtk_pcie_setup(struct CLASS_0 *VAR_1) { struct device *dev = VAR_1->dev; struct CLASS_2 *node = dev->of_node, *child; struct of_pci_range_parser parser; struct of_pci_range range; struct resource res; struct mtk_pcie_port *port, *tmp; int err; if (of_pci_range_parser_init(&parser, node)) { dev_err(dev, "missing \"ranges\" property\n"); return -EINVAL; } for_each_of_pci_range(&parser, &range) { err = of_pci_range_to_resource(&range, node, &res); if (err < 0) return err; switch (res.flags & IORESOURCE_TYPE_BITS) { case VAR_7: VAR_1->offset.VAR_3 = res.start - range.pci_addr; memcpy(&VAR_1->pio, &res, sizeof(res)); VAR_1->pio.name = node->full_name; VAR_1->VAR_3.start = range.cpu_addr; VAR_1->VAR_3.end = range.cpu_addr + range.size - 1; VAR_1->VAR_3.flags = IORESOURCE_MEM; VAR_1->VAR_3.name = "I/O"; memcpy(&res, &VAR_1->VAR_3, sizeof(res)); break; case IORESOURCE_MEM: VAR_1->offset.mem = res.start - range.pci_addr; memcpy(&VAR_1->mem, &res, sizeof(res)); VAR_1->mem.name = "non-prefetchable"; break; } } err = of_pci_parse_bus_range(node, &VAR_1->busn); if (err < 0) { dev_err(dev, "failed to parse bus ranges property: %d\n", err); VAR_1->busn.name = node->name; VAR_1->busn.start = 0; VAR_1->busn.end = 0xff; VAR_1->busn.flags = IORESOURCE_BUS; } for_each_available_child_of_node(node, child) { int index; err = of_pci_get_devfn(child); if (err < 0) { dev_err(dev, "failed to parse devfn: %d\n", err); return err; } index = PCI_SLOT(err); err = mtk_pcie_parse_ports(VAR_1, child, index); if (err) return err; } err = mtk_pcie_subsys_powerup(VAR_1); if (err) return err; /* enable each port, and then check link status */ list_for_each_entry_safe(port, tmp, &VAR_1->ports, list) mtk_pcie_enable_ports(port); /* power down PCIe subsys if slots are all empty (link down) */ if (list_empty(&VAR_1->ports)) mtk_pcie_subsys_powerdown(VAR_1); return 0; } static int mtk_pcie_request_resources(struct CLASS_0 *VAR_1) { struct pci_host_bridge *host = pci_host_bridge_from_priv(VAR_1); struct list_head *windows = &host->windows; struct device *dev = VAR_1->dev; int err; pci_add_resource_offset(windows, &VAR_1->pio, VAR_1->offset.VAR_3); pci_add_resource_offset(windows, &VAR_1->mem, VAR_1->offset.mem); pci_add_resource(windows, &VAR_1->busn); err = devm_request_pci_bus_resources(dev, windows); if (err < 0) return err; pci_remap_iospace(&VAR_1->pio, VAR_1->VAR_3.start); return 0; } static int FUNC_6(struct pci_host_bridge *host) { struct CLASS_0 *VAR_1 = pci_host_bridge_priv(host); struct pci_bus *child; int err; host->busnr = VAR_1->busn.start; host->dev.parent = VAR_1->dev; host->ops = &mtk_pcie_ops; host->VAR_8 = VAR_9; host->swizzle_irq = pci_common_swizzle; err = pci_scan_root_bus_bridge(host); if (err < 0) return err; FUNC_7(host->bus); pci_bus_assign_resources(host->bus); list_for_each_entry(child, &host->bus->children, node) pcie_bus_configure_settings(child); pci_bus_add_devices(host->bus); return 0; } static int mtk_pcie_probe(struct CLASS_3 *pdev) { struct device *dev = &pdev->dev; struct CLASS_0 *VAR_1; struct pci_host_bridge *host; int err; host = devm_pci_alloc_host_bridge(dev, sizeof(*VAR_1)); if (!host) return -ENOMEM; VAR_1 = pci_host_bridge_priv(host); VAR_1->dev = dev; platform_set_drvdata(pdev, VAR_1); INIT_LIST_HEAD(&VAR_1->ports); err = mtk_pcie_setup(VAR_1); if (err) return err; err = mtk_pcie_request_resources(VAR_1); if (err) goto put_resources; err = FUNC_6(host); if (err) goto put_resources; return 0; put_resources: if (!list_empty(&VAR_1->ports)) mtk_pcie_put_resources(VAR_1); return err; } static const struct CLASS_4 mtk_pcie_ids[] = { { .compatible = "mediatek,mt7623-pcie"}, { .compatible = "mediatek,mt2701-pcie"}, {}, }; static struct platform_driver mtk_pcie_driver = { .probe = mtk_pcie_probe, .driver = { .name = "mtk-pcie", .of_match_table = mtk_pcie_ids, .suppress_bind_attrs = true, }, }; builtin_platform_driver(mtk_pcie_driver);
0.093309
{'IMPORT_0': 'linux/delay.h', 'IMPORT_1': 'linux/of_address.h', 'VAR_0': 'PCIE_CLASS', 'CLASS_0': 'mtk_pcie', 'VAR_1': 'pcie', 'CLASS_1': 'u32', 'VAR_2': 'lane', 'VAR_3': 'io', 'VAR_4': 'pm_domain', 'FUNC_0': 'mtk_pcie_port_free', 'FUNC_1': 'mtk_pcie_map_bus', 'VAR_5': 'mtk_pcie_map_bus', 'FUNC_2': 'clk_prepare_enable', 'FUNC_3': 'phy_power_on', 'FUNC_4': 'dev_info', 'CLASS_2': 'device_node', 'VAR_6': 'regs', 'CLASS_3': 'platform_device', 'FUNC_5': 'devm_ioremap_resource', 'VAR_7': 'IORESOURCE_IO', 'FUNC_6': 'mtk_pcie_register_host', 'VAR_8': 'map_irq', 'VAR_9': 'of_irq_parse_and_map_pci', 'FUNC_7': 'pci_bus_size_bridges', 'CLASS_4': 'of_device_id'}
/* * cbct,def.h * cone-beam CT definitions * Copyright 2008-10-09, Jeff Fessler, University of Michigan */ #ifndef jf_cbct_def_h #define jf_cbct_def_h #include "defs-env.h" // initial version used "double" for scalars #ifndef rscalar #define rscalar float #endif #define crscalar Const rscalar #define Isinf(x) isinf(x) // image geometry typedef struct { int nx; // image dimensions int ny; int nz; rscalar dx; // pixel size (can be negative) rscalar dy; // can be negative to cause flip rscalar dz; // cannot be negative rscalar offset_x; // center offset in pixels (usually 0) rscalar offset_y; rscalar offset_z; byte *mask2; // [nx ny] 2D support mask // 0 or 1 ... nthread } cbct_ig; // cone-beam geometry typedef struct { rscalar dso; // distance from source to isocenter rscalar dsd; // distance from source to detector rscalar dfs; // distance from detector focal point to source // 0 for 3rd-gen CT, infinity for flat detector int ns; // # detector channels per row int nt; // # detector rows (along axial direction) rscalar ds; // horizontal (transaxial) ray spacing rscalar dt; // vertical (axial) ray spacing rscalar offset_s; // channel offset [pixels] rscalar offset_t; // vertical offset on detector [pixels] } cbct_cg; // work space (one for each thread) typedef struct { float *view; // ns*nt } cbct_work; // cbct,mask2.c extern jool cbct_mask_init( byte *mask_int, // [nx ny] out: integers 0 or 1 ... nthread cbyte *mask_bin, // [nx ny] in: binary, possibly null cint nx, cint ny, cint nthread, cjool chat); typedef enum { cbct_back_error, cbct_back_zero, // zero before back-projection cbct_back_inc, // incrementing back-projection (no zeroing first) } cbct_back_init; // cbct,pd1,back.c // #define cbct_pd1_back1_args typedef jool cbct_pd1_back1_type( float *image, // [nz nx ny] <- trick! cint nx, cint ny, cint nz, crscalar dx, crscalar dy, // can be negative to cause flip crscalar dz, crscalar offset_x, // center offset in pixels (usually 0) crscalar offset_y, crscalar offset_z_shift, // offset_z - zshifts[ia] cbyte *mask2, // [nx ny] 2D support mask: 0, 1, ..., nthread cbyte mask_id, // 1 ... nthread crscalar dso, // distance from source to isocenter crscalar dsd, // distance from source to detector crscalar dfs, // distance from focal point to source (0 or inf) cint ns, cint nt, crscalar ds, // horizontal ray spacing crscalar dt, // vertical ray spacing crscalar beta, // source angle [radians] crscalar offset_s, // channel offset [pixels] crscalar offset_t, // vertical offset on detector [pixels] cfloat *proj); // [nt ns] <- trick! projection view at angle beta extern cbct_pd1_back1_type cbct_pd1_back1; extern cbct_pd1_back1_type cbct_nn1_back1; // cbct,pd1,back,t.c extern jool cbct_pd1_back_t( float *image, // [nz nx ny] <- trick! const cbct_ig *ig, const cbct_cg *cg, cbct_work *cw, cint na, // # of views cfloat *proj, // [nt ns na] <- trick! projection views cfloat *beta, // [na] source angles [radians] cfloat *offset_s, // [na] possibly null cfloat *offset_t, // [na] possibly null cfloat *zshifts, // [na] cint nthread, // # of threads cint iblock, // for OS, which block cint nblock, // for OS, #blocks cjool compact, // 0 (for now) cjool is_nn1, cbct_back_init, cfloat scale, cint chat); // cbct,pd1,proj.c typedef jool cbct_pd1_proj1_type( cfloat *image, // [nz, nx, ny] <- trick! cint nx, cint ny, cint nz, crscalar dx, crscalar dy, // can be negative to cause flip crscalar dz, crscalar offset_x, // center offset in pixels (usually 0) crscalar offset_y, crscalar offset_z_shift, // offset_z - zshifts[ia] cbyte *mask2, // [nx ny] 2D support mask: 0, 1, ..., nthread crscalar dso, // distance from source to isocenter crscalar dsd, // distance from source to detector crscalar dfs, // distance from focal point to source (0 or inf) cint ns, cint nt, crscalar ds, // horizontal ray spacing crscalar dt, // vertical ray spacing crscalar beta, // source angle [radians] crscalar offset_s, // channel offset [pixels] crscalar offset_t, // vertical offset on detector [pixels] float *proj); // [nt ns] <- trick! projection view at angle beta extern cbct_pd1_proj1_type cbct_pd1_proj1; extern cbct_pd1_proj1_type cbct_nn1_proj1; // cbct,pd1,proj,t.c extern jool cbct_pd1_proj_t( cfloat *image, // [nz nx ny] <- trick! const cbct_ig *ig, const cbct_cg *cg, cbct_work *cw, cint na, // # of views float *proj, // [nt ns na] <- trick! projection views cfloat *beta, // [na] source angles [radians] cfloat *offset_s, // [na] possibly null cfloat *offset_t, // [na] possibly null cfloat *zshifts, // [na] cint nthread, // # of threads cint iblock, // for OS, which block cint nblock, // for OS, #blocks cjool compact, // 0 (for now) cjool is_nn1, cfloat scale, cint chat); // cbct,work.c extern cbct_work *cbct_work_alloc( const cbct_ig *ig, const cbct_cg *cg, cint nthread); extern jool cbct_work_free(cbct_work *cw, cint nthread); #endif // jf_cbct_def_h
/* * cbct,def.h * cone-beam CT definitions * Copyright 2008-10-09, Jeff Fessler, University of Michigan */ #ifndef VAR_0 #define VAR_0 #include "defs-env.h" // initial version used "double" for scalars #ifndef VAR_1 #define VAR_1 float #endif #define VAR_2 Const rscalar #define FUNC_0(x) isinf(x) // image geometry typedef struct { int VAR_3; // image dimensions int VAR_4; int VAR_5; CLASS_0 dx; // pixel size (can be negative) CLASS_0 VAR_6; // can be negative to cause flip CLASS_0 VAR_7; // cannot be negative CLASS_0 VAR_8; // center offset in pixels (usually 0) CLASS_0 VAR_9; CLASS_0 VAR_10; CLASS_2 *VAR_11; // [nx ny] 2D support mask // 0 or 1 ... nthread } ID_0; // cone-beam geometry typedef struct { CLASS_0 dso; // distance from source to isocenter CLASS_0 dsd; // distance from source to detector CLASS_0 VAR_12; // distance from detector focal point to source // 0 for 3rd-gen CT, infinity for flat detector int VAR_13; // # detector channels per row int nt; // # detector rows (along axial direction) CLASS_0 VAR_14; // horizontal (transaxial) ray spacing CLASS_0 VAR_15; // vertical (axial) ray spacing CLASS_0 VAR_16; // channel offset [pixels] CLASS_0 VAR_17; // vertical offset on detector [pixels] } cbct_cg; // work space (one for each thread) typedef struct { float *VAR_18; // ns*nt } cbct_work; // cbct,mask2.c extern jool FUNC_1( CLASS_2 *VAR_19, // [nx ny] out: integers 0 or 1 ... nthread CLASS_4 *VAR_20, // [nx ny] in: binary, possibly null CLASS_5 VAR_3, CLASS_5 VAR_4, CLASS_5 VAR_21, CLASS_6 VAR_22); typedef enum { VAR_23, VAR_24, // zero before back-projection VAR_25, // incrementing back-projection (no zeroing first) } ID_1; // cbct,pd1,back.c // #define cbct_pd1_back1_args typedef jool cbct_pd1_back1_type( float *VAR_26, // [nz nx ny] <- trick! CLASS_5 VAR_3, CLASS_5 VAR_4, CLASS_5 VAR_5, CLASS_1 dx, CLASS_1 VAR_6, // can be negative to cause flip CLASS_1 VAR_7, CLASS_1 VAR_8, // center offset in pixels (usually 0) CLASS_1 VAR_9, CLASS_1 VAR_27, // offset_z - zshifts[ia] CLASS_4 *VAR_11, // [nx ny] 2D support mask: 0, 1, ..., nthread CLASS_4 mask_id, // 1 ... nthread CLASS_1 dso, // distance from source to isocenter CLASS_1 dsd, // distance from source to detector CLASS_1 VAR_12, // distance from focal point to source (0 or inf) CLASS_5 VAR_13, CLASS_5 nt, CLASS_1 VAR_14, // horizontal ray spacing CLASS_1 VAR_15, // vertical ray spacing CLASS_1 VAR_28, // source angle [radians] CLASS_1 VAR_16, // channel offset [pixels] CLASS_1 VAR_17, // vertical offset on detector [pixels] CLASS_8 *VAR_29); // [nt ns] <- trick! projection view at angle beta extern cbct_pd1_back1_type VAR_30; extern cbct_pd1_back1_type VAR_31; // cbct,pd1,back,t.c extern jool cbct_pd1_back_t( float *VAR_26, // [nz nx ny] <- trick! const CLASS_3 *VAR_32, const cbct_cg *VAR_33, cbct_work *VAR_34, CLASS_5 VAR_35, // # of views CLASS_8 *VAR_29, // [nt ns na] <- trick! projection views CLASS_8 *VAR_28, // [na] source angles [radians] CLASS_8 *VAR_16, // [na] possibly null CLASS_8 *VAR_17, // [na] possibly null CLASS_8 *VAR_36, // [na] CLASS_5 VAR_21, // # of threads CLASS_5 VAR_37, // for OS, which block CLASS_5 VAR_38, // for OS, #blocks CLASS_6 VAR_39, // 0 (for now) CLASS_6 VAR_40, CLASS_7, CLASS_8 VAR_41, CLASS_5 VAR_22); // cbct,pd1,proj.c typedef jool CLASS_9( CLASS_8 *VAR_26, // [nz, nx, ny] <- trick! CLASS_5 VAR_3, CLASS_5 VAR_4, CLASS_5 VAR_5, CLASS_1 dx, CLASS_1 VAR_6, // can be negative to cause flip CLASS_1 VAR_7, CLASS_1 VAR_8, // center offset in pixels (usually 0) CLASS_1 VAR_9, CLASS_1 VAR_27, // offset_z - zshifts[ia] CLASS_4 *VAR_11, // [nx ny] 2D support mask: 0, 1, ..., nthread CLASS_1 dso, // distance from source to isocenter CLASS_1 dsd, // distance from source to detector CLASS_1 VAR_12, // distance from focal point to source (0 or inf) CLASS_5 VAR_13, CLASS_5 nt, CLASS_1 VAR_14, // horizontal ray spacing CLASS_1 VAR_15, // vertical ray spacing CLASS_1 VAR_28, // source angle [radians] CLASS_1 VAR_16, // channel offset [pixels] CLASS_1 VAR_17, // vertical offset on detector [pixels] float *VAR_29); // [nt ns] <- trick! projection view at angle beta extern CLASS_9 VAR_42; extern CLASS_9 cbct_nn1_proj1; // cbct,pd1,proj,t.c extern jool FUNC_2( CLASS_8 *VAR_26, // [nz nx ny] <- trick! const CLASS_3 *VAR_32, const cbct_cg *VAR_33, cbct_work *VAR_34, CLASS_5 VAR_35, // # of views float *VAR_29, // [nt ns na] <- trick! projection views CLASS_8 *VAR_28, // [na] source angles [radians] CLASS_8 *VAR_16, // [na] possibly null CLASS_8 *VAR_17, // [na] possibly null CLASS_8 *VAR_36, // [na] CLASS_5 VAR_21, // # of threads CLASS_5 VAR_37, // for OS, which block CLASS_5 VAR_38, // for OS, #blocks CLASS_6 VAR_39, // 0 (for now) CLASS_6 VAR_40, CLASS_8 VAR_41, CLASS_5 VAR_22); // cbct,work.c extern cbct_work *FUNC_3( const CLASS_3 *VAR_32, const cbct_cg *VAR_33, CLASS_5 VAR_21); extern jool FUNC_4(cbct_work *VAR_34, CLASS_5 VAR_21); #endif // jf_cbct_def_h
0.826721
{'VAR_0': 'jf_cbct_def_h', 'VAR_1': 'rscalar', 'CLASS_0': 'rscalar', 'VAR_2': 'crscalar', 'CLASS_1': 'crscalar', 'FUNC_0': 'Isinf', 'VAR_3': 'nx', 'VAR_4': 'ny', 'VAR_5': 'nz', 'VAR_6': 'dy', 'VAR_7': 'dz', 'VAR_8': 'offset_x', 'VAR_9': 'offset_y', 'VAR_10': 'offset_z', 'CLASS_2': 'byte', 'VAR_11': 'mask2', 'ID_0': 'cbct_ig', 'CLASS_3': 'cbct_ig', 'VAR_12': 'dfs', 'VAR_13': 'ns', 'VAR_14': 'ds', 'VAR_15': 'dt', 'VAR_16': 'offset_s', 'VAR_17': 'offset_t', 'VAR_18': 'view', 'FUNC_1': 'cbct_mask_init', 'VAR_19': 'mask_int', 'CLASS_4': 'cbyte', 'VAR_20': 'mask_bin', 'CLASS_5': 'cint', 'VAR_21': 'nthread', 'CLASS_6': 'cjool', 'VAR_22': 'chat', 'VAR_23': 'cbct_back_error', 'VAR_24': 'cbct_back_zero', 'VAR_25': 'cbct_back_inc', 'ID_1': 'cbct_back_init', 'CLASS_7': 'cbct_back_init', 'VAR_26': 'image', 'VAR_27': 'offset_z_shift', 'VAR_28': 'beta', 'CLASS_8': 'cfloat', 'VAR_29': 'proj', 'VAR_30': 'cbct_pd1_back1', 'VAR_31': 'cbct_nn1_back1', 'VAR_32': 'ig', 'VAR_33': 'cg', 'VAR_34': 'cw', 'VAR_35': 'na', 'VAR_36': 'zshifts', 'VAR_37': 'iblock', 'VAR_38': 'nblock', 'VAR_39': 'compact', 'VAR_40': 'is_nn1', 'VAR_41': 'scale', 'CLASS_9': 'cbct_pd1_proj1_type', 'VAR_42': 'cbct_pd1_proj1', 'FUNC_2': 'cbct_pd1_proj_t', 'FUNC_3': 'cbct_work_alloc', 'FUNC_4': 'cbct_work_free'}
#ifndef Player_h #define Player_h #include"../../PCH.h" #include "../Collidable.h" /* Represents the player */ constexpr auto START_X = SCREEN_WIDTH / 2; constexpr auto START_Y = SCREEN_HEIGHT - TILE_SIZE; constexpr auto MOVESPEED = 5.f; constexpr auto PLAYER_SIZE = TILE_SIZE - 10; static int initX = 0; static int initY = 192; class Player :public Collision { public: Player(); void draw(sf::RenderTarget& target); void update(); void input(); //keypress detection void moving(); //moving if "walking" boolean is true void onCollide(Collision& other) override; void animationRenderer(); void restart(); void deathSoundPlaying(); void setPosition(sf::Vector2f); const sf::Vector2f& getPosition() const; bool isAlive() const; bool isGetScore()const; bool isPassLevel()const; private: sf::RectangleShape m_player; sf::Clock m_clock; sf::Time m_delay = sf::seconds(0.1f); sf::Vector2f origin_pos = { START_X, START_Y }; sf::Vector2f cur_pos = { START_X,START_Y }; float movespeed = MOVESPEED; enum MOVE { UP, DOWN, LEFT, RIGHT }; //enums instead of remember numbers bool moves[4] = { 0,0,0,0 }; bool is_walking = false; float nextspot; //the next tilespot of the map bool is_Alive = true; sf::Texture* player_texture; sf::Texture* explosion; float min_y_get_point; bool m_passed = false; bool m_get_score = false; sf::Sound death_sound; }; #endif
#ifndef Player_h #define Player_h #include"IMPORT_0" #include "IMPORT_1" /* Represents the player */ constexpr auto CLASS_0VAR_1 = VAR_2 / 2; constexpr auto CLASS_1VAR_1 = VAR_4 - VAR_5; constexpr auto CLASS_2VAR_1 = 5.f; constexpr auto CLASS_3VAR_1 = VAR_5 - 10; static int initX = 0; static int VAR_7 = 192; CLASS_4 Player :VAR_8 VAR_9 { public: Player(); void FUNC_0(CLASS_6::VAR_11& VAR_12); void FUNC_1(); void FUNC_2(); //keypress detection void FUNC_3(); //moving if "walking" boolean is true void FUNC_4(CLASS_5& other) VAR_13; void FUNC_5(); void FUNC_6(); void FUNC_7(); void FUNC_8(CLASS_6::VAR_14); const CLASS_6::VAR_14& FUNC_9() const; bool FUNC_10() const; bool FUNC_11()const; bool FUNC_12()const; CLASS_7: VAR_10::VAR_15 VAR_16; CLASS_6::VAR_17 VAR_18; CLASS_6::VAR_19 VAR_20 = VAR_10::FUNC_13(0.1f); CLASS_6::VAR_14 VAR_21 = { VAR_0, VAR_3 }; CLASS_6::VAR_14 VAR_22 = { VAR_0,VAR_3 }; float movespeed = VAR_6; enum CLASS_8 { VAR_23, VAR_24, VAR_25, RIGHT }VAR_1; //enums instead of remember numbers bool VAR_26[4] = { 0,0,0,0 }; bool VAR_27 = false; float VAR_28; //the next tilespot of the map bool VAR_29 = true; CLASS_6::VAR_30* VAR_31; CLASS_6::VAR_30* VAR_32; float VAR_33; bool VAR_34 = false; bool VAR_35 = false; CLASS_6::VAR_36 VAR_37; }; #endif
0.881815
{'IMPORT_0': '../../PCH.h', 'IMPORT_1': '../Collidable.h', 'CLASS_0': 'START_X', 'VAR_0': 'START_X', 'VAR_1': '', 'VAR_2': 'SCREEN_WIDTH', 'CLASS_1': 'START_Y', 'VAR_3': 'START_Y', 'VAR_4': 'SCREEN_HEIGHT', 'VAR_5': 'TILE_SIZE', 'CLASS_2': 'MOVESPEED', 'VAR_6': 'MOVESPEED', 'CLASS_3': 'PLAYER_SIZE', 'VAR_7': 'initY', 'CLASS_4': 'class', 'VAR_8': 'public', 'VAR_9': 'Collision', 'CLASS_5': 'Collision', 'FUNC_0': 'draw', 'CLASS_6': 'sf', 'VAR_10': 'sf', 'VAR_11': 'RenderTarget', 'VAR_12': 'target', 'FUNC_1': 'update', 'FUNC_2': 'input', 'FUNC_3': 'moving', 'FUNC_4': 'onCollide', 'VAR_13': 'override', 'FUNC_5': 'animationRenderer', 'FUNC_6': 'restart', 'FUNC_7': 'deathSoundPlaying', 'FUNC_8': 'setPosition', 'VAR_14': 'Vector2f', 'FUNC_9': 'getPosition', 'FUNC_10': 'isAlive', 'FUNC_11': 'isGetScore', 'FUNC_12': 'isPassLevel', 'CLASS_7': 'private', 'VAR_15': 'RectangleShape', 'VAR_16': 'm_player', 'VAR_17': 'Clock', 'VAR_18': 'm_clock', 'VAR_19': 'Time', 'VAR_20': 'm_delay', 'FUNC_13': 'seconds', 'VAR_21': 'origin_pos', 'VAR_22': 'cur_pos', 'CLASS_8': 'MOVE', 'VAR_23': 'UP', 'VAR_24': 'DOWN', 'VAR_25': 'LEFT', 'VAR_26': 'moves', 'VAR_27': 'is_walking', 'VAR_28': 'nextspot', 'VAR_29': 'is_Alive', 'VAR_30': 'Texture', 'VAR_31': 'player_texture', 'VAR_32': 'explosion', 'VAR_33': 'min_y_get_point', 'VAR_34': 'm_passed', 'VAR_35': 'm_get_score', 'VAR_36': 'Sound', 'VAR_37': 'death_sound'}
#ifndef __OPENVCL_REGISTERALLOCATOR_H__ #define __OPENVCL_REGISTERALLOCATOR_H__ /* * RegisterAllocator.h * * Copyright (C) 2004 <NAME>, <NAME> * * Licensed under the AFL v2.0. See the file LICENSE included with this * distribution for licensing terms. * */ #ifndef __OPENVCL_REGISTER_H__ #include "Register.h" #endif #ifndef __OPENVCL_TOKEN_H__ #include "Token.h" #endif #ifndef __OPENVCL_BranchState_H__ #include "BranchState.h" #endif #include <map> #include <vector> #include <sstream> /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// namespace vcl { /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class RegisterAllocator { public: RegisterAllocator(); ~RegisterAllocator(); void setAvailableFloats( unsigned int floats ); void setAvailableIntegers( unsigned int integers ); bool process( std::list<Token>& tokens ); void releaseAlias( Alias* alias ); Alias* obtainAlias( Alias::Type type ); const Register* floatRegister( unsigned int regNumber ) const; const Register* integerRegister( unsigned int regNumber ) const; const std::string& name(); void setDynamicThreshold( unsigned int threshold ); protected: private: enum State { OUTSIDE, ENTER, CODE, EXIT }; void setState( State state ); State state() const; bool collectLabels( std::list<Token>::iterator start, std::list<Token>::iterator end ); bool processBranchState( BranchState* state, std::list<Token>::iterator end ); bool processCommonDirective( Token& token ); bool processAliases(); bool updateDynamicTracker( const Token* src ); bool setupLocks( std::map< std::string, unsigned int >& inputs, std::map< unsigned int, std::vector<std::string> >& locks, std::map< std::string, Register*>& regs, std::map<std::string, BranchState::State>& aliases, Register* rarray, unsigned int max ); bool releaseLocks( std::map< unsigned int, std::vector<std::string> >& locks, std::map< std::string, Register*>& regs, unsigned int line ); void releaseLocks( std::map< unsigned int, std::vector<std::string> >& locks, std::map< std::string, Register*>& regs ); const Register* allocateRegister( const std::string& name, std::map<std::string,Register*>& regs, std::map < unsigned int, std::vector<std::string> >& locks, std::map<std::string, BranchState::State>& aliases, Register* rarray, unsigned int max ); std::map< std::string, std::list<Token>::iterator > m_labels; std::list< BranchState* > m_states; // void generateReadErrorReport( const Token::Argument& arg, const Token& token ); State m_currState; Register m_floats[32]; Register m_integers[16]; std::string m_name; std::map< const Token*, unsigned int > m_dynamicTracker; unsigned int m_dynamicThreshold; std::map<Alias*,Alias*> m_aliases; }; #include "RegisterAllocator.inl" } #endif
#ifndef VAR_0 #define VAR_0 /* * RegisterAllocator.h * * Copyright (C) 2004 <NAME>, <NAME> * * Licensed under the AFL v2.0. See the file LICENSE included with this * distribution for licensing terms. * */ #ifndef VAR_1 #include "IMPORT_0" #endif #ifndef VAR_2 #include "IMPORT_1" #endif #ifndef VAR_3 #include "IMPORT_2" #endif #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// CLASS_0 VAR_4 { /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// CLASS_1 VAR_5 { public: FUNC_0(); ~FUNC_0(); void FUNC_1( unsigned int VAR_6 ); void FUNC_2( unsigned int VAR_7 ); bool FUNC_3( CLASS_2::VAR_9<VAR_10>& VAR_11 ); void FUNC_4( CLASS_4* VAR_13 ); VAR_12* FUNC_5( VAR_12::VAR_14 VAR_15 ); const CLASS_5* FUNC_6( unsigned int VAR_16 ) VAR_17; const CLASS_5* FUNC_7( unsigned int VAR_16 ) VAR_17; const CLASS_2::VAR_18& FUNC_8(); void FUNC_9( unsigned int VAR_20 ); protected: VAR_21: VAR_22 VAR_23 { VAR_24, VAR_25, VAR_26, VAR_27 }; void FUNC_10( CLASS_6 VAR_28 ); CLASS_6 FUNC_11() const; bool collectLabels( CLASS_2::VAR_9<VAR_10>::VAR_29 VAR_30, CLASS_2::VAR_9<VAR_10>::VAR_29 VAR_31 ); bool FUNC_12( CLASS_7* VAR_28, CLASS_2::VAR_9<VAR_10>::VAR_29 VAR_31 ); bool FUNC_13( CLASS_3& VAR_33 ); bool FUNC_14(); bool FUNC_15( const CLASS_3* VAR_34 ); bool FUNC_16( CLASS_2::IMPORT_3< VAR_8::VAR_18, unsigned int >& inputs, CLASS_2::IMPORT_3< unsigned int, CLASS_2::IMPORT_4<VAR_8::VAR_18> >& VAR_35, CLASS_2::IMPORT_3< VAR_8::VAR_18, CLASS_5*>& VAR_36, CLASS_2::IMPORT_3<VAR_8::VAR_18, CLASS_7::VAR_23>& VAR_37, CLASS_5* rarray, unsigned int VAR_38 ); bool FUNC_17( CLASS_2::IMPORT_3< unsigned int, CLASS_2::IMPORT_4<VAR_8::VAR_18> >& VAR_35, CLASS_2::IMPORT_3< VAR_8::VAR_18, CLASS_5*>& VAR_36, unsigned int VAR_39 ); void FUNC_17( CLASS_2::IMPORT_3< unsigned int, CLASS_2::IMPORT_4<VAR_8::VAR_18> >& VAR_35, CLASS_2::IMPORT_3< VAR_8::VAR_18, CLASS_5*>& VAR_36 ); const CLASS_5* FUNC_18( const CLASS_2::VAR_18& VAR_19, CLASS_2::IMPORT_3<VAR_8::VAR_18,CLASS_5*>& VAR_36, CLASS_2::IMPORT_3 < unsigned int, CLASS_2::IMPORT_4<VAR_8::VAR_18> >& VAR_35, CLASS_2::IMPORT_3<VAR_8::VAR_18, CLASS_7::VAR_23>& VAR_37, CLASS_5* rarray, unsigned int VAR_38 ); CLASS_2::IMPORT_3< VAR_8::VAR_18, VAR_8::VAR_9<VAR_10>::VAR_29 > VAR_40; CLASS_2::VAR_9< VAR_32* > VAR_41; // void generateReadErrorReport( const Token::Argument& arg, const Token& token ); CLASS_6 VAR_42; CLASS_5 VAR_43[32]; CLASS_5 VAR_44[16]; CLASS_2::VAR_18 VAR_45; CLASS_2::IMPORT_3< const VAR_10*, VAR_46 VAR_47 > VAR_48; unsigned int VAR_49; CLASS_2::IMPORT_3<VAR_12*,VAR_12*> VAR_50; }; #include "VAR_5.CLASS_8" } #endif
0.903683
{'VAR_0': '__OPENVCL_REGISTERALLOCATOR_H__', 'VAR_1': '__OPENVCL_REGISTER_H__', 'IMPORT_0': 'Register.h', 'VAR_2': '__OPENVCL_TOKEN_H__', 'IMPORT_1': 'Token.h', 'VAR_3': '__OPENVCL_BranchState_H__', 'IMPORT_2': 'BranchState.h', 'IMPORT_3': 'map', 'IMPORT_4': 'vector', 'IMPORT_5': 'sstream', 'CLASS_0': 'namespace', 'VAR_4': 'vcl', 'CLASS_1': 'class', 'VAR_5': 'RegisterAllocator', 'FUNC_0': 'RegisterAllocator', 'FUNC_1': 'setAvailableFloats', 'VAR_6': 'floats', 'FUNC_2': 'setAvailableIntegers', 'VAR_7': 'integers', 'FUNC_3': 'process', 'CLASS_2': 'std', 'VAR_8': 'std', 'VAR_9': 'list', 'VAR_10': 'Token', 'CLASS_3': 'Token', 'VAR_11': 'tokens', 'FUNC_4': 'releaseAlias', 'CLASS_4': 'Alias', 'VAR_12': 'Alias', 'VAR_13': 'alias', 'FUNC_5': 'obtainAlias', 'VAR_14': 'Type', 'VAR_15': 'type', 'CLASS_5': 'Register', 'FUNC_6': 'floatRegister', 'VAR_16': 'regNumber', 'VAR_17': 'const', 'FUNC_7': 'integerRegister', 'VAR_18': 'string', 'FUNC_8': 'name', 'VAR_19': 'name', 'FUNC_9': 'setDynamicThreshold', 'VAR_20': 'threshold', 'VAR_21': 'private', 'VAR_22': 'enum', 'VAR_23': 'State', 'CLASS_6': 'State', 'VAR_24': 'OUTSIDE', 'VAR_25': 'ENTER', 'VAR_26': 'CODE', 'VAR_27': 'EXIT', 'FUNC_10': 'setState', 'VAR_28': 'state', 'FUNC_11': 'state', 'VAR_29': 'iterator', 'VAR_30': 'start', 'VAR_31': 'end', 'FUNC_12': 'processBranchState', 'CLASS_7': 'BranchState', 'VAR_32': 'BranchState', 'FUNC_13': 'processCommonDirective', 'VAR_33': 'token', 'FUNC_14': 'processAliases', 'FUNC_15': 'updateDynamicTracker', 'VAR_34': 'src', 'FUNC_16': 'setupLocks', 'VAR_35': 'locks', 'VAR_36': 'regs', 'VAR_37': 'aliases', 'VAR_38': 'max', 'FUNC_17': 'releaseLocks', 'VAR_39': 'line', 'FUNC_18': 'allocateRegister', 'VAR_40': 'm_labels', 'VAR_41': 'm_states', 'VAR_42': 'm_currState', 'VAR_43': 'm_floats', 'VAR_44': 'm_integers', 'VAR_45': 'm_name', 'VAR_46': 'unsigned', 'VAR_47': 'int', 'VAR_48': 'm_dynamicTracker', 'VAR_49': 'm_dynamicThreshold', 'VAR_50': 'm_aliases', 'CLASS_8': 'inl'}
/* * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_ #define MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_ #include <vector> #include "absl/types/optional.h" #include "modules/rtp_rtcp/source/rtcp_packet.h" #include "modules/rtp_rtcp/source/rtcp_packet/dlrr.h" #include "modules/rtp_rtcp/source/rtcp_packet/rrtr.h" #include "modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h" namespace webrtc { namespace rtcp { class CommonHeader; // From RFC 3611: RTP Control Protocol Extended Reports (RTCP XR). class ExtendedReports : public RtcpPacket { public: static constexpr uint8_t kPacketType = 207; static constexpr size_t kMaxNumberOfDlrrItems = 50; ExtendedReports(); ExtendedReports(const ExtendedReports& xr); ~ExtendedReports() override; // Parse assumes header is already parsed and validated. bool Parse(const CommonHeader& packet); void SetRrtr(const Rrtr& rrtr); bool AddDlrrItem(const ReceiveTimeInfo& time_info); void SetTargetBitrate(const TargetBitrate& target_bitrate); const absl::optional<Rrtr>& rrtr() const { return rrtr_block_; } const Dlrr& dlrr() const { return dlrr_block_; } const absl::optional<TargetBitrate>& target_bitrate() const { return target_bitrate_; } size_t BlockLength() const override; bool Create(uint8_t* packet, size_t* index, size_t max_length, PacketReadyCallback callback) const override; private: static constexpr size_t kXrBaseLength = 4; size_t RrtrLength() const { return rrtr_block_ ? Rrtr::kLength : 0; } size_t DlrrLength() const { return dlrr_block_.BlockLength(); } size_t TargetBitrateLength() const; void ParseRrtrBlock(const uint8_t* block, uint16_t block_length); void ParseDlrrBlock(const uint8_t* block, uint16_t block_length); void ParseVoipMetricBlock(const uint8_t* block, uint16_t block_length); void ParseTargetBitrateBlock(const uint8_t* block, uint16_t block_length); absl::optional<Rrtr> rrtr_block_; Dlrr dlrr_block_; // Dlrr without items treated same as no dlrr block. absl::optional<TargetBitrate> target_bitrate_; }; } // namespace rtcp } // namespace webrtc #endif // MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_
/* * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_ #define MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_ #include <IMPORT_0> #include "IMPORT_1" #include "IMPORT_2" #include "modules/rtp_rtcp/source/rtcp_packet/dlrr.h" #include "IMPORT_3" #include "IMPORT_4" CLASS_0 VAR_0 { CLASS_0 VAR_1 { CLASS_1 VAR_2; // From RFC 3611: RTP Control Protocol Extended Reports (RTCP XR). CLASS_1 ExtendedReports : VAR_3 VAR_4 { public: VAR_5 constexpr uint8_t VAR_6 = 207; static constexpr size_t VAR_7 = 50; ExtendedReports(); ExtendedReports(const ExtendedReports& xr); ~ExtendedReports() VAR_8; // Parse assumes header is already parsed and validated. bool Parse(const CLASS_2& VAR_9); void SetRrtr(const Rrtr& VAR_10); bool FUNC_1(const ReceiveTimeInfo& VAR_11); void FUNC_2(const CLASS_4& VAR_13); const CLASS_5::optional<Rrtr>& FUNC_0() const { return rrtr_block_; } const CLASS_6& FUNC_4() const { return VAR_14; } const CLASS_5::optional<VAR_12>& FUNC_3() const { return target_bitrate_; } size_t BlockLength() const CLASS_3VAR_15; bool FUNC_5(uint8_t* VAR_9, size_t* VAR_16, size_t VAR_17, CLASS_7 callback) const CLASS_3; VAR_18: static constexpr size_t kXrBaseLength = 4; size_t RrtrLength() VAR_19 { return rrtr_block_ ? Rrtr::VAR_20 : 0; } size_t DlrrLength() VAR_19 { return VAR_14.BlockLength(); } size_t FUNC_6() VAR_19; void FUNC_7(const uint8_t* VAR_21, uint16_t block_length); void FUNC_8(const uint8_t* VAR_21, uint16_t block_length); void FUNC_9(const uint8_t* VAR_21, uint16_t block_length); void FUNC_10(const uint8_t* VAR_21, uint16_t block_length); CLASS_5::optional<Rrtr> rrtr_block_; CLASS_6 VAR_14; // Dlrr without items treated same as no dlrr block. CLASS_5::optional<VAR_12> target_bitrate_; }; } // namespace rtcp } // namespace webrtc #endif // MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_EXTENDED_REPORTS_H_
0.788086
{'IMPORT_0': 'vector', 'IMPORT_1': 'absl/types/optional.h', 'IMPORT_2': 'modules/rtp_rtcp/source/rtcp_packet.h', 'IMPORT_3': 'modules/rtp_rtcp/source/rtcp_packet/rrtr.h', 'IMPORT_4': 'modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h', 'CLASS_0': 'namespace', 'VAR_0': 'webrtc', 'VAR_1': 'rtcp', 'CLASS_1': 'class', 'VAR_2': 'CommonHeader', 'CLASS_2': 'CommonHeader', 'VAR_3': 'public', 'VAR_4': 'RtcpPacket', 'VAR_5': 'static', 'VAR_6': 'kPacketType', 'VAR_7': 'kMaxNumberOfDlrrItems', 'VAR_8': 'override', 'CLASS_3': 'override', 'VAR_9': 'packet', 'VAR_10': 'rrtr', 'FUNC_0': 'rrtr', 'FUNC_1': 'AddDlrrItem', 'VAR_11': 'time_info', 'FUNC_2': 'SetTargetBitrate', 'CLASS_4': 'TargetBitrate', 'VAR_12': 'TargetBitrate', 'VAR_13': 'target_bitrate', 'FUNC_3': 'target_bitrate', 'CLASS_5': 'absl', 'CLASS_6': 'Dlrr', 'FUNC_4': 'dlrr', 'VAR_14': 'dlrr_block_', 'VAR_15': '', 'FUNC_5': 'Create', 'VAR_16': 'index', 'VAR_17': 'max_length', 'CLASS_7': 'PacketReadyCallback', 'VAR_18': 'private', 'VAR_19': 'const', 'VAR_20': 'kLength', 'FUNC_6': 'TargetBitrateLength', 'FUNC_7': 'ParseRrtrBlock', 'VAR_21': 'block', 'FUNC_8': 'ParseDlrrBlock', 'FUNC_9': 'ParseVoipMetricBlock', 'FUNC_10': 'ParseTargetBitrateBlock'}
#ifndef FS_OV #define FS_OV #define OV_EXCLUDE_STATIC_CALLBACKS #include <vorbis/vorbisfile.h> size_t fs_ov_read(void *ptr, size_t size, size_t nmemb, void *datasource); int fs_ov_seek(void *datasource, ogg_int64_t offset, int whence); int fs_ov_close(void *datasource); long fs_ov_tell(void *datasource); #endif
#ifndef VAR_0 #define VAR_0 #define OV_EXCLUDE_STATIC_CALLBACKS #include <IMPORT_0> size_t FUNC_0(void *ptr, size_t size, size_t VAR_1, void *VAR_2); int FUNC_1(void *VAR_2, ogg_int64_t offset, int VAR_3); int FUNC_2(void *VAR_2); long fs_ov_tell(void *VAR_2); #endif
0.705495
{'VAR_0': 'FS_OV', 'IMPORT_0': 'vorbis/vorbisfile.h', 'FUNC_0': 'fs_ov_read', 'VAR_1': 'nmemb', 'VAR_2': 'datasource', 'FUNC_1': 'fs_ov_seek', 'VAR_3': 'whence', 'FUNC_2': 'fs_ov_close'}
/* * Copyright (c) 2016, Freescale Semiconductor, Inc. * Copyright 2016-2017 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /* clang-format off */ /* * TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* !!GlobalInfo product: Pins v3.0 processor: MK28FN2M0Axxx15 package_id: MK28FN2M0AVMI15 mcu_data: ksdk2_0 processor_version: 0.0.8 * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS *********** */ /* clang-format on */ #include "fsl_common.h" #include "fsl_port.h" #include "pin_mux.h" /* clang-format off */ /* * TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* BOARD_InitPins: - options: {callFromInitBoot: 'true', coreID: core0, enableClock: 'true'} - pin_list: - {pin_num: D5, peripheral: FLEXIO0, signal: 'D, 24', pin_signal: PTD8/LLWU_P24/I2C0_SCL/LPUART1_RX/FB_A16/FXIO0_D24} - {pin_num: D4, peripheral: FLEXIO0, signal: 'D, 25', pin_signal: PTD9/I2C0_SDA/LPUART1_TX/FB_A17/FXIO0_D25} * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS *********** */ /* clang-format on */ /* FUNCTION ************************************************************************************************************ * * Function Name : BOARD_InitPins * Description : Configures pin routing and optionally pin electrical features. * * END ****************************************************************************************************************/ void BOARD_InitPins(void) { /* Port D Clock Gate Control: Clock enabled */ CLOCK_EnableClock(kCLOCK_PortD); /* PORTD8 (pin D5) is configured as FXIO0_D24 */ PORT_SetPinMux(PORTD, 8U, kPORT_MuxAlt7); /* PORTD9 (pin D4) is configured as FXIO0_D25 */ PORT_SetPinMux(PORTD, 9U, kPORT_MuxAlt7); } /*********************************************************************************************************************** * EOF **********************************************************************************************************************/
/* * Copyright (c) 2016, Freescale Semiconductor, Inc. * Copyright 2016-2017 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /* clang-format off */ /* * TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* !!GlobalInfo product: Pins v3.0 processor: MK28FN2M0Axxx15 package_id: MK28FN2M0AVMI15 mcu_data: ksdk2_0 processor_version: 0.0.8 * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS *********** */ /* clang-format on */ #include "fsl_common.h" #include IMPORT_0" #include "pin_mux.h" /* clang-format off */ /* * TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* BOARD_InitPins: - options: {callFromInitBoot: 'true', coreID: core0, enableClock: 'true'} - pin_list: - {pin_num: D5, peripheral: FLEXIO0, signal: 'D, 24', pin_signal: PTD8/LLWU_P24/I2C0_SCL/LPUART1_RX/FB_A16/FXIO0_D24} - {pin_num: D4, peripheral: FLEXIO0, signal: 'D, 25', pin_signal: PTD9/I2C0_SDA/LPUART1_TX/FB_A17/FXIO0_D25} * BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS *********** */ /* clang-format on */ /* FUNCTION ************************************************************************************************************ * * Function Name : BOAVAR_0 * Description : Configures pin routing and optionally pin electrical features. * * END ***********************VAR_1****************************************************************************/ void BOARD_InitPins(void) { /* Port D Clock Gate ContrVAR_2bled */ CLOCK_EnableClock(kCLOCK_PortD); /* PORTD8 (pin D5) is configured as FXIO0_D24 */ PORT_SetPinMux(PORTD, 8U, kPORT_MuxAlt7); /* PORTD9 (pin D4) is configured as FXIO0_D25 */ PORT_SetPinMux(PORTD, 9U, kPORT_MuxAlt7); } /*********************************************************************************************************************** * EOF **********************************************************************************************************************/
0.427631
{'IMPORT_0': '"fsl_port.h', 'VAR_0': 'RD_InitPins\r', 'VAR_1': '*************', 'VAR_2': 'ol: Clock ena'}
#include <stdio.h> #include <stdlib.h> #include<stdbool.h> #include<math.h> #include<string.h> #define maxn 1000005 int main () { int n,t,k,d; int sum,sun; while(~scanf("%d%d%d%d",&n,&t,&k,&d)) { sum=sun=0; sum=(n+k-1)/k; sun=d/t; sum=sum-sun; if(sum<=1) printf("NO\n"); else printf("YES\n"); } return 0; }
#include <stdio.h> #include <stdlib.h> #include<stdbool.h> #include<math.h> #include<string.h> #define VAR_0 1000005 int main () { int n,t,k,d; int sum,sun; while(~scanf("%d%d%d%d",&n,&t,&k,&d)) { sum=sun=0; sum=(n+k-1)/k; sun=d/t; sum=sum-sun; if(sum<=1) printf("NO\n"); else printf("YES\n"); } return 0; }
0.09004
{'VAR_0': 'maxn'}
/* * Device driver for regulators in Hi655x IC * * Copyright (c) 2016 Hisilicon. * * Authors: * Chen Feng <[email protected]> * Fei Wang <[email protected]> * * 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. */ #include <linux/bitops.h> #include <linux/device.h> #include <linux/err.h> #include <linux/module.h> #include <linux/io.h> #include <linux/of.h> #include <linux/platform_device.h> #include <linux/regmap.h> #include <linux/regulator/driver.h> #include <linux/regulator/machine.h> #include <linux/regulator/of_regulator.h> #include <linux/mfd/hi655x-pmic.h> struct hi655x_regulator { unsigned int disable_reg; unsigned int status_reg; unsigned int ctrl_regs; unsigned int ctrl_mask; struct regulator_desc rdesc; }; /* LDO7 & LDO10 */ static const unsigned int ldo7_voltages[] = { 1800000, 1850000, 2850000, 2900000, 3000000, 3100000, 3200000, 3300000, }; static const unsigned int ldo19_voltages[] = { 1800000, 1850000, 1900000, 1750000, 2800000, 2850000, 2900000, 3000000, }; static const unsigned int ldo22_voltages[] = { 900000, 1000000, 1050000, 1100000, 1150000, 1175000, 1185000, 1200000, }; enum hi655x_regulator_id { HI655X_LDO0, HI655X_LDO1, HI655X_LDO2, HI655X_LDO3, HI655X_LDO4, HI655X_LDO5, HI655X_LDO6, HI655X_LDO7, HI655X_LDO8, HI655X_LDO9, HI655X_LDO10, HI655X_LDO11, HI655X_LDO12, HI655X_LDO13, HI655X_LDO14, HI655X_LDO15, HI655X_LDO16, HI655X_LDO17, HI655X_LDO18, HI655X_LDO19, HI655X_LDO20, HI655X_LDO21, HI655X_LDO22, }; static int hi655x_is_enabled(struct regulator_dev *rdev) { unsigned int value = 0; struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); regmap_read(rdev->regmap, regulator->status_reg, &value); return (value & BIT(regulator->ctrl_mask)); } static int hi655x_disable(struct regulator_dev *rdev) { int ret = 0; struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); ret = regmap_write(rdev->regmap, regulator->disable_reg, BIT(regulator->ctrl_mask)); return ret; } static const struct regulator_ops hi655x_regulator_ops = { .enable = regulator_enable_regmap, .disable = hi655x_disable, .is_enabled = hi655x_is_enabled, .list_voltage = regulator_list_voltage_table, .get_voltage_sel = regulator_get_voltage_sel_regmap, .set_voltage_sel = regulator_set_voltage_sel_regmap, }; static const struct regulator_ops hi655x_ldo_linear_ops = { .enable = regulator_enable_regmap, .disable = hi655x_disable, .is_enabled = hi655x_is_enabled, .list_voltage = regulator_list_voltage_linear, .get_voltage_sel = regulator_get_voltage_sel_regmap, .set_voltage_sel = regulator_set_voltage_sel_regmap, }; #define HI655X_LDO(_ID, vreg, vmask, ereg, dreg, \ sreg, cmask, vtable) { \ .rdesc = { \ .name = #_ID, \ .of_match = of_match_ptr(#_ID), \ .ops = &hi655x_regulator_ops, \ .regulators_node = of_match_ptr("regulators"), \ .type = REGULATOR_VOLTAGE, \ .id = HI655X_##_ID, \ .owner = THIS_MODULE, \ .n_voltages = ARRAY_SIZE(vtable), \ .volt_table = vtable, \ .vsel_reg = HI655X_BUS_ADDR(vreg), \ .vsel_mask = vmask, \ .enable_reg = HI655X_BUS_ADDR(ereg), \ .enable_mask = BIT(cmask), \ }, \ .disable_reg = HI655X_BUS_ADDR(dreg), \ .status_reg = HI655X_BUS_ADDR(sreg), \ .ctrl_mask = cmask, \ } #define HI655X_LDO_LINEAR(_ID, vreg, vmask, ereg, dreg, \ sreg, cmask, minv, nvolt, vstep) { \ .rdesc = { \ .name = #_ID, \ .of_match = of_match_ptr(#_ID), \ .ops = &hi655x_ldo_linear_ops, \ .regulators_node = of_match_ptr("regulators"), \ .type = REGULATOR_VOLTAGE, \ .id = HI655X_##_ID, \ .owner = THIS_MODULE, \ .min_uV = minv, \ .n_voltages = nvolt, \ .uV_step = vstep, \ .vsel_reg = HI655X_BUS_ADDR(vreg), \ .vsel_mask = vmask, \ .enable_reg = HI655X_BUS_ADDR(ereg), \ .enable_mask = BIT(cmask), \ }, \ .disable_reg = HI655X_BUS_ADDR(dreg), \ .status_reg = HI655X_BUS_ADDR(sreg), \ .ctrl_mask = cmask, \ } static struct hi655x_regulator regulators[] = { HI655X_LDO_LINEAR(LDO2, 0x72, 0x07, 0x29, 0x2a, 0x2b, 0x01, 2500000, 8, 100000), HI655X_LDO(LDO7, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x06, ldo7_voltages), HI655X_LDO(LDO10, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x01, ldo7_voltages), HI655X_LDO_LINEAR(LDO13, 0x7e, 0x07, 0x2c, 0x2d, 0x2e, 0x04, 1600000, 8, 50000), HI655X_LDO_LINEAR(LDO14, 0x7f, 0x07, 0x2c, 0x2d, 0x2e, 0x05, 2500000, 8, 100000), HI655X_LDO_LINEAR(LDO15, 0x80, 0x07, 0x2c, 0x2d, 0x2e, 0x06, 1600000, 8, 50000), HI655X_LDO_LINEAR(LDO17, 0x82, 0x07, 0x2f, 0x30, 0x31, 0x00, 2500000, 8, 100000), HI655X_LDO(LDO19, 0x84, 0x07, 0x2f, 0x30, 0x31, 0x02, ldo19_voltages), HI655X_LDO_LINEAR(LDO21, 0x86, 0x07, 0x2f, 0x30, 0x31, 0x04, 1650000, 8, 50000), HI655X_LDO(LDO22, 0x87, 0x07, 0x2f, 0x30, 0x31, 0x05, ldo22_voltages), }; static int hi655x_regulator_probe(struct platform_device *pdev) { unsigned int i; struct hi655x_regulator *regulator; struct hi655x_pmic *pmic; struct regulator_config config = { }; struct regulator_dev *rdev; pmic = dev_get_drvdata(pdev->dev.parent); if (!pmic) { dev_err(&pdev->dev, "no pmic in the regulator parent node\n"); return -ENODEV; } regulator = devm_kzalloc(&pdev->dev, sizeof(*regulator), GFP_KERNEL); if (!regulator) return -ENOMEM; platform_set_drvdata(pdev, regulator); config.dev = pdev->dev.parent; config.regmap = pmic->regmap; config.driver_data = regulator; for (i = 0; i < ARRAY_SIZE(regulators); i++) { rdev = devm_regulator_register(&pdev->dev, &regulators[i].rdesc, &config); if (IS_ERR(rdev)) { dev_err(&pdev->dev, "failed to register regulator %s\n", regulator->rdesc.name); return PTR_ERR(rdev); } } return 0; } static const struct platform_device_id hi655x_regulator_table[] = { { .name = "hi655x-regulator" }, {}, }; MODULE_DEVICE_TABLE(platform, hi655x_regulator_table); static struct platform_driver hi655x_regulator_driver = { .id_table = hi655x_regulator_table, .driver = { .name = "hi655x-regulator", }, .probe = hi655x_regulator_probe, }; module_platform_driver(hi655x_regulator_driver); MODULE_AUTHOR("Chen Feng <[email protected]>"); MODULE_DESCRIPTION("Hisilicon Hi655x regulator driver"); MODULE_LICENSE("GPL v2");
/* * Device driver for regulators in Hi655x IC * * Copyright (c) 2016 Hisilicon. * * Authors: * Chen Feng <[email protected]> * Fei Wang <[email protected]> * * 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. */ #include <linux/bitops.h> #include <linux/device.h> #include <linux/err.h> #include <linux/module.h> #include <linux/io.h> #include <linux/of.h> #include <linux/platform_device.h> #include <IMPORT_0> #include <linux/regulator/driver.h> #include <linux/regulator/machine.h> #include <linux/regulator/of_regulator.h> #include <linux/mfd/hi655x-pmic.h> struct hi655x_regulator { unsigned int disable_reg; unsigned int status_reg; unsigned int ctrl_regs; unsigned int ctrl_mask; struct regulator_desc rdesc; }; /* LDO7 & LDO10 */ static const unsigned int ldo7_voltages[] = { 1800000, 1850000, 2850000, 2900000, 3000000, 3100000, 3200000, 3300000, }; static const unsigned int ldo19_voltages[] = { 1800000, 1850000, 1900000, 1750000, 2800000, 2850000, 2900000, 3000000, }; static const unsigned int ldo22_voltages[] = { 900000, 1000000, 1050000, 1100000, 1150000, 1175000, 1185000, 1200000, }; enum hi655x_regulator_id { HI655X_LDO0, HI655X_LDO1, HI655X_LDO2, HI655X_LDO3, HI655X_LDO4, VAR_0, HI655X_LDO6, HI655X_LDO7, HI655X_LDO8, VAR_1, HI655X_LDO10, HI655X_LDO11, HI655X_LDO12, HI655X_LDO13, HI655X_LDO14, HI655X_LDO15, HI655X_LDO16, HI655X_LDO17, HI655X_LDO18, HI655X_LDO19, VAR_2, HI655X_LDO21, HI655X_LDO22, }; static int hi655x_is_enabled(struct regulator_dev *rdev) { unsigned int value = 0; struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); regmap_read(rdev->VAR_3, regulator->status_reg, &value); return (value & BIT(regulator->ctrl_mask)); } static int hi655x_disable(struct regulator_dev *rdev) { int ret = 0; struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); ret = regmap_write(rdev->VAR_3, regulator->disable_reg, BIT(regulator->ctrl_mask)); return ret; } static const struct regulator_ops hi655x_regulator_ops = { .enable = regulator_enable_regmap, .disable = hi655x_disable, .is_enabled = hi655x_is_enabled, .list_voltage = regulator_list_voltage_table, .get_voltage_sel = regulator_get_voltage_sel_regmap, .set_voltage_sel = regulator_set_voltage_sel_regmap, }; static const struct regulator_ops hi655x_ldo_linear_ops = { .enable = regulator_enable_regmap, .disable = hi655x_disable, .is_enabled = hi655x_is_enabled, .list_voltage = regulator_list_voltage_linear, .get_voltage_sel = regulator_get_voltage_sel_regmap, .set_voltage_sel = regulator_set_voltage_sel_regmap, }; #define HI655X_LDO(_ID, VAR_4, vmask, ereg, VAR_5, \ sreg, cmask, vtable) { \ .rdesc = { \ .name = #_ID, \ .of_match = of_match_ptr(#_ID), \ .ops = &hi655x_regulator_ops, \ .regulators_node = of_match_ptr("regulators"), \ .type = REGULATOR_VOLTAGE, \ .id = HI655X_##_ID, \ .owner = THIS_MODULE, \ .n_voltages = ARRAY_SIZE(vtable), \ .volt_table = vtable, \ .vsel_reg = HI655X_BUS_ADDR(vreg), \ .vsel_mask = vmask, \ .enable_reg = HI655X_BUS_ADDR(ereg), \ .enable_mask = BIT(cmask), \ }, \ .disable_reg = HI655X_BUS_ADDR(dreg), \ .status_reg = HI655X_BUS_ADDR(sreg), \ .ctrl_mask = cmask, \ } #define HI655X_LDO_LINEAR(_ID, VAR_4, vmask, ereg, VAR_5, \ sreg, cmask, minv, nvolt, vstep) { \ .rdesc = { \ .name = #_ID, \ .of_match = of_match_ptr(#_ID), \ .ops = &hi655x_ldo_linear_ops, \ .regulators_node = of_match_ptr("regulators"), \ .type = REGULATOR_VOLTAGE, \ .id = HI655X_##_ID, \ .owner = THIS_MODULE, \ .min_uV = minv, \ .n_voltages = nvolt, \ .uV_step = vstep, \ .vsel_reg = HI655X_BUS_ADDR(vreg), \ .vsel_mask = vmask, \ .enable_reg = HI655X_BUS_ADDR(ereg), \ .enable_mask = BIT(cmask), \ }, \ .disable_reg = HI655X_BUS_ADDR(dreg), \ .status_reg = HI655X_BUS_ADDR(sreg), \ .ctrl_mask = cmask, \ } static struct hi655x_regulator regulators[] = { HI655X_LDO_LINEAR(LDO2, 0x72, 0x07, 0x29, 0x2a, 0x2b, 0x01, 2500000, 8, 100000), HI655X_LDO(LDO7, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x06, ldo7_voltages), HI655X_LDO(LDO10, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x01, ldo7_voltages), HI655X_LDO_LINEAR(LDO13, 0x7e, 0x07, 0x2c, 0x2d, 0x2e, 0x04, 1600000, 8, 50000), HI655X_LDO_LINEAR(LDO14, 0x7f, 0x07, 0x2c, 0x2d, 0x2e, 0x05, 2500000, 8, 100000), HI655X_LDO_LINEAR(VAR_6, 0x80, 0x07, 0x2c, 0x2d, 0x2e, 0x06, 1600000, 8, 50000), HI655X_LDO_LINEAR(LDO17, 0x82, 0x07, 0x2f, 0x30, 0x31, 0x00, 2500000, 8, 100000), HI655X_LDO(VAR_7, 0x84, 0x07, 0x2f, 0x30, 0x31, 0x02, ldo19_voltages), HI655X_LDO_LINEAR(LDO21, 0x86, 0x07, 0x2f, 0x30, 0x31, 0x04, 1650000, 8, 50000), HI655X_LDO(LDO22, 0x87, 0x07, 0x2f, 0x30, 0x31, 0x05, ldo22_voltages), }; static int hi655x_regulator_probe(struct CLASS_0 *VAR_8) { unsigned int i; struct hi655x_regulator *regulator; struct CLASS_1 *pmic; struct CLASS_2 config = { }; struct regulator_dev *rdev; pmic = FUNC_0(VAR_8->VAR_9.parent); if (!pmic) { dev_err(&VAR_8->VAR_9, "no pmic in the regulator parent node\n"); return -ENODEV; } regulator = devm_kzalloc(&VAR_8->VAR_9, sizeof(*regulator), VAR_10); if (!regulator) return -ENOMEM; platform_set_drvdata(VAR_8, regulator); config.VAR_9 = VAR_8->VAR_9.parent; config.VAR_3 = pmic->VAR_3; config.driver_data = regulator; for (i = 0; i < ARRAY_SIZE(regulators); i++) { rdev = devm_regulator_register(&VAR_8->VAR_9, &regulators[i].rdesc, &config); if (IS_ERR(rdev)) { dev_err(&VAR_8->VAR_9, "failed to register regulator %s\n", regulator->rdesc.name); return PTR_ERR(rdev); } } return 0; } static const struct platform_device_id hi655x_regulator_table[] = { { .name = "hi655x-regulator" }, {}, }; MODULE_DEVICE_TABLE(platform, hi655x_regulator_table); static struct platform_driver hi655x_regulator_driver = { .id_table = hi655x_regulator_table, .VAR_11 = { .name = "hi655x-regulator", }, .probe = hi655x_regulator_probe, }; module_platform_driver(hi655x_regulator_driver); MODULE_AUTHOR("Chen Feng <[email protected]>"); MODULE_DESCRIPTION("Hisilicon Hi655x regulator driver"); MODULE_LICENSE("GPL v2");
0.11161
{'IMPORT_0': 'linux/regmap.h', 'VAR_0': 'HI655X_LDO5', 'VAR_1': 'HI655X_LDO9', 'VAR_2': 'HI655X_LDO20', 'VAR_3': 'regmap', 'VAR_4': 'vreg', 'VAR_5': 'dreg', 'VAR_6': 'LDO15', 'VAR_7': 'LDO19', 'CLASS_0': 'platform_device', 'VAR_8': 'pdev', 'CLASS_1': 'hi655x_pmic', 'CLASS_2': 'regulator_config', 'FUNC_0': 'dev_get_drvdata', 'VAR_9': 'dev', 'VAR_10': 'GFP_KERNEL', 'VAR_11': 'driver'}
/* * This file is part of Libav. * * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> #include "libavutil/common.h" #include "libavutil/mem.h" #include "libavutil/avstring.h" int main(void) { int i; static const char *strings[] = { "''", "", ":", "\\", "'", " '' :", " '' '' :", "foo '' :", "'foo'", "foo ", " ' foo ' ", "foo\\", "foo': blah:blah", "foo\\: blah:blah", "foo\'", "'foo : ' :blahblah", "\\ :blah", " foo", " foo ", " foo \\ ", "foo ':blah", " foo bar : blahblah", "\\f\\o\\o", "'foo : \\ \\ ' : blahblah", "'\\fo\\o:': blahblah", "\\'fo\\o\\:': foo ' :blahblah" }; printf("Testing av_get_token()\n"); for (i = 0; i < FF_ARRAY_ELEMS(strings); i++) { const char *p = strings[i]; char *q; printf("|%s|", p); q = av_get_token(&p, ":"); printf(" -> |%s|", q); printf(" + |%s|\n", p); av_free(q); } return 0; }
/* * This file is part of Libav. * * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> #include "libavutil/common.h" #include "IMPORT_0" #include "IMPORT_1" int FUNC_0(void) { int VAR_0; static const char *strings[] = { "''", "", ":", "\\", "'", " '' :", " '' '' :", "foo '' :", "'foo'", "foo ", " ' foo ' ", "foo\\", "foo': blah:blah", "foo\\: blah:blah", "foo\'", "'foo : ' :blahblah", "\\ :blah", " foo", " foo ", " foo \\ ", "foo ':blah", " foo bar : blahblah", "\\f\\o\\o", "'foo : \\ \\ ' : blahblah", "'\\fo\\o:': blahblah", "\\'fo\\o\\:': foo ' :blahblah" }; FUNC_1("Testing av_get_token()\n"); for (VAR_0 = 0; VAR_0 < FUNC_2(strings); VAR_0++) { const char *VAR_1 = strings[VAR_0]; char *q; FUNC_1("|%s|", VAR_1); q = FUNC_3(&VAR_1, ":"); FUNC_1(" -> |%s|", q); FUNC_1(" + |%s|\n", VAR_1); FUNC_4(q); } return 0; }
0.74057
{'IMPORT_0': 'libavutil/mem.h', 'IMPORT_1': 'libavutil/avstring.h', 'FUNC_0': 'main', 'VAR_0': 'i', 'FUNC_1': 'printf', 'FUNC_2': 'FF_ARRAY_ELEMS', 'VAR_1': 'p', 'FUNC_3': 'av_get_token', 'FUNC_4': 'av_free'}
/** * \brief * Polling function that return success when all links are down. * \see * * dnx_fabric_ctrl_cells_enable_set. */ static shr_error_e dnx_fabric_ctrl_cells_all_links_disable_polling( int unit, uint32 iter_index, int *all_down) { uint32 entry_handle_id; int link_id = 0; uint32 nof_links = dnx_data_fabric.links.nof_links_get(unit); uint32 is_link_active = 0; SHR_FUNC_INIT_VARS(unit); DBAL_FUNC_INIT_VARS(unit); *all_down = TRUE; if (nof_links == 0) { SHR_EXIT(); } SHR_IF_ERR_EXIT(DBAL_HANDLE_ALLOC(unit, DBAL_TABLE_FABRIC_CONTROL_CELLS_LINK_ACTIVE, &entry_handle_id)); SHR_IF_ERR_EXIT(dbal_entry_get(unit, entry_handle_id, DBAL_GET_ALL_FIELDS)); for (link_id = 0; link_id < nof_links; ++link_id) { SHR_IF_ERR_EXIT(dbal_entry_handle_value_field32_get (unit, entry_handle_id, DBAL_FIELD_IS_LINK_ACTIVE, link_id, &is_link_active)); if (is_link_active == TRUE) { *all_down = FALSE; break; } } exit: DBAL_FUNC_FREE_VARS; SHR_FUNC_EXIT; }
/** * \brief * Polling function that return success when all links are down. * \see * * dnx_fabric_ctrl_cells_enable_set. */ static shr_error_e dnx_fabric_ctrl_cells_all_links_disable_polling( int unit, uint32 VAR_0, int *VAR_1) { uint32 VAR_2; int VAR_3 = 0; uint32 VAR_4 = VAR_5.links.FUNC_0(unit); uint32 is_link_active = 0; SHR_FUNC_INIT_VARS(unit); FUNC_1(unit); *VAR_1 = TRUE; if (VAR_4 == 0) { FUNC_2(); } FUNC_3(FUNC_4(unit, DBAL_TABLE_FABRIC_CONTROL_CELLS_LINK_ACTIVE, &VAR_2)); FUNC_3(dbal_entry_get(unit, VAR_2, VAR_6)); for (VAR_3 = 0; VAR_3 < VAR_4; ++VAR_3) { FUNC_3(FUNC_5 (unit, VAR_2, DBAL_FIELD_IS_LINK_ACTIVE, VAR_3, &is_link_active)); if (is_link_active == TRUE) { *VAR_1 = FALSE; break; } } exit: DBAL_FUNC_FREE_VARS; SHR_FUNC_EXIT; }
0.444856
{'VAR_0': 'iter_index', 'VAR_1': 'all_down', 'VAR_2': 'entry_handle_id', 'VAR_3': 'link_id', 'VAR_4': 'nof_links', 'VAR_5': 'dnx_data_fabric', 'FUNC_0': 'nof_links_get', 'FUNC_1': 'DBAL_FUNC_INIT_VARS', 'FUNC_2': 'SHR_EXIT', 'FUNC_3': 'SHR_IF_ERR_EXIT', 'FUNC_4': 'DBAL_HANDLE_ALLOC', 'VAR_6': 'DBAL_GET_ALL_FIELDS', 'FUNC_5': 'dbal_entry_handle_value_field32_get'}
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include <vespa/searchcore/proton/persistenceengine/i_resource_write_filter.h> #include "attribute_usage_stats.h" #include "attribute_usage_filter_config.h" #include <mutex> #include <atomic> namespace proton { /* * Class to filter write operations based on sampled information about * attribute resource usage (e.g. enum store and multivalue mapping). * If resource limit is reached then further writes are denied in * order to prevent entering an unrecoverable state. */ class AttributeUsageFilter : public IResourceWriteFilter { public: using Mutex = std::mutex; using Guard = std::lock_guard<Mutex>; using Config = AttributeUsageFilterConfig; private: mutable Mutex _lock; // protect _attributeStats, _config, _state AttributeUsageStats _attributeStats; Config _config; State _state; std::atomic<bool> _acceptWrite; void recalcState(const Guard &guard); // called with _lock held public: AttributeUsageFilter(); ~AttributeUsageFilter() override; void setAttributeStats(AttributeUsageStats attributeStats_in); AttributeUsageStats getAttributeUsageStats() const; void setConfig(Config config); double getEnumStoreUsedRatio() const; double getMultiValueUsedRatio() const; bool acceptWriteOperation() const override; State getAcceptState() const override; }; } // namespace proton
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include <vespa/searchcore/proton/persistenceengine/i_resource_write_filter.h> #include "IMPORT_0" #include "IMPORT_1" #include <mutex> #include <atomic> CLASS_0 proton { /* * Class to filter write operations based on sampled information about * attribute resource usage (e.g. enum store and multivalue mapping). * If resource limit is reached then further writes are denied in * order to prevent entering an unrecoverable state. */ class AttributeUsageFilter : public IResourceWriteFilter { public: using VAR_0 = std::mutex; using Guard = std::lock_guard<VAR_0>; using VAR_1 = AttributeUsageFilterConfig; private: mutable CLASS_1 _lock; // protect _attributeStats, _config, _state AttributeUsageStats _attributeStats; CLASS_2 _config; CLASS_3 _state; std::atomic<VAR_2> _acceptWrite; void recalcState(const Guard &VAR_3); // called with _lock held public: AttributeUsageFilter(); ~AttributeUsageFilter() VAR_4; void FUNC_0(AttributeUsageStats VAR_5); AttributeUsageStats getAttributeUsageStats() const; void FUNC_1(CLASS_2 config); double getEnumStoreUsedRatio() const; double getMultiValueUsedRatio() const; bool acceptWriteOperation() const VAR_4; CLASS_3 FUNC_2() const VAR_4; }; } // namespace proton
0.285152
{'IMPORT_0': 'attribute_usage_stats.h', 'IMPORT_1': 'attribute_usage_filter_config.h', 'CLASS_0': 'namespace', 'VAR_0': 'Mutex', 'CLASS_1': 'Mutex', 'VAR_1': 'Config', 'CLASS_2': 'Config', 'CLASS_3': 'State', 'VAR_2': 'bool', 'VAR_3': 'guard', 'VAR_4': 'override', 'FUNC_0': 'setAttributeStats', 'VAR_5': 'attributeStats_in', 'FUNC_1': 'setConfig', 'FUNC_2': 'getAcceptState'}
#include<stdio.h> #include<stdlib.h> #include<string.h> int main(){ int loopCounter, word_number, length; char userString[100]; //Words must be within 0 and 100 length = 0; scanf(" %d", &word_number); loopCounter = 0; while(loopCounter < word_number){ scanf(" %s", userString); length = strlen(userString); if(length > 10){ printf("%c%d%c\n", userString[0],(length - 2), userString[length - 1]); } else{ printf("%s\n", userString); } loopCounter++; } return 0; }
#include<stdio.h> #include<stdlib.h> #include<string.h> int main(){ int loopCounter, word_number, length; char userString[100]; //Words must be within 0 and 100 length = 0; scanf(" %d", &word_number); loopCounter = 0; while(loopCounter < word_number){ scanf(" %s", userString); length = strlen(userString); if(length > 10){ printf("%c%d%c\n", userString[0],(length - 2), userString[length - 1]); } else{ printf("%s\n", userString); } loopCounter++; } return 0; }
0.023461
{}
#include<stdio.h> #include<string.h> int main() { int i,n,j,max; char a[6][9]={"jolteon","flareon","umbreon","leafeon","glaceon","sylveon"}; int ret[6]; char b[9]; scanf("%d",&n); scanf("%s",b); for(i=0;i<6;i++){ret[i]=0;} if(strlen(b) == 6) {printf("espeon");} else if(strlen(b) == 8) {printf("vaporeon");} else{ for(j=0;j<6;j++) for(i=0;i<4;i++) { if(a[j][i] != '.') {if(a[j][i] == b[i]){(ret[j])++;} }} max =0; for(j=0;j<6;j++) {if(ret[max]<ret[j]) max =j; } printf("%s",a[max]); } return 0;}
#include<IMPORT_0> #include<IMPORT_1> int FUNC_0() { int VAR_0,VAR_1,VAR_2,VAR_3; char VAR_4[6][9]={"jolteon","flareon","umbreon","leafeon","glaceon","sylveon"}; int VAR_5[6]; char VAR_6[9]; FUNC_1("%d",&VAR_1); FUNC_1("%s",VAR_6); for(VAR_0=0;VAR_0<6;VAR_0++){VAR_5[VAR_0]=0;} if(FUNC_2(VAR_6) == 6) {FUNC_3("espeon");} else if(FUNC_2(VAR_6) == 8) {FUNC_3("vaporeon");} else{ for(VAR_2=0;VAR_2<6;VAR_2++) for(VAR_0=0;VAR_0<4;VAR_0++) { if(VAR_4[VAR_2][VAR_0] != '.') {if(VAR_4[VAR_2][VAR_0] == VAR_6[VAR_0]){(VAR_5[VAR_2])++;} }} VAR_3 =0; for(VAR_2=0;VAR_2<6;VAR_2++) {if(VAR_5[VAR_3]<VAR_5[VAR_2]) VAR_3 =VAR_2; } FUNC_3("%s",VAR_4[VAR_3]); } return 0;}
0.892657
{'IMPORT_0': 'stdio.h', 'IMPORT_1': 'string.h', 'FUNC_0': 'main', 'VAR_0': 'i', 'VAR_1': 'n', 'VAR_2': 'j', 'VAR_3': 'max', 'VAR_4': 'a', 'VAR_5': 'ret', 'VAR_6': 'b', 'FUNC_1': 'scanf', 'FUNC_2': 'strlen', 'FUNC_3': 'printf'}
// // Created by Fussa on 2019/10/29. // Copyright (c) 2019 Fussa. All rights reserved. // #import <Foundation/Foundation.h> @interface NSDictionary (FS) /** * 转换成NSData */ - (NSData *)fs_data; /** *字典转json */ - (NSString *)fs_dictionaryToJson; /** *字典转json */ + (NSString *)fs_dictionaryToJson:(NSDictionary *)dictionary; @end @interface NSMutableDictionary (FS) #pragma mark - 安全操作字典 - (void)fs_setObject:(id)anObject forKey:(id<NSCopying>)aKey; - (void)fs_removeObjectForKey:(id)aKey; @end
// // Created by Fussa on 2019/10/29. // Copyright (c) 2019 Fussa. All rights reserved. // #import <Foundation/Foundation.h> @CLASS_0 NSDictionary (VAR_0) /** * 转换成NSData */ - (CLASS_1 *)VAR_1; /** *字典转json */ - (CLASS_2 *)fs_dictionaryToJson; /** *字典转json */ + (CLASS_2 *)fs_dictionaryToJson:(NSDictionary *)VAR_2; @VAR_3 @CLASS_0 FUNC_0 (VAR_0) #pragma mark - 安全操作字典 - (void)fs_setObject:(VAR_4)CLASS_4 VAR_5:(VAR_4<VAR_6>)VAR_7; - (void)VAR_8:(VAR_4)VAR_7; @CLASS_3
0.696204
{'CLASS_0': 'interface', 'VAR_0': 'FS', 'CLASS_1': 'NSData', 'VAR_1': 'fs_data', 'CLASS_2': 'NSString', 'VAR_2': 'dictionary', 'VAR_3': 'end', 'CLASS_3': 'end', 'FUNC_0': 'NSMutableDictionary', 'VAR_4': 'id', 'CLASS_4': 'anObject', 'VAR_5': 'forKey', 'VAR_6': 'NSCopying', 'VAR_7': 'aKey', 'VAR_8': 'fs_removeObjectForKey'}
/**************************************************************************** **************************************************************************** *** *** This header was automatically generated from a Linux kernel header *** of the same name, to make information necessary for userspace to *** call into the kernel available to libc. It contains only constants, *** structures, and macros generated from the original header, and thus, *** contains no copyrightable information. *** *** To edit the content of this header, modify the corresponding *** source file (e.g. under external/kernel-headers/original/) then *** run bionic/libc/kernel/tools/update_all.py *** *** Any manual change here will be lost the next time this script will *** be run. You've been warned! *** **************************************************************************** ****************************************************************************/ #ifndef _LINUX_VMALLOC_H #define _LINUX_VMALLOC_H #include <linux/spinlock.h> #include <asm/page.h> /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct vm_area_struct; #define VM_IOREMAP 0x00000001 #define VM_ALLOC 0x00000002 #define VM_MAP 0x00000004 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define VM_USERMAP 0x00000008 #define VM_VPAGES 0x00000010 #ifndef IOREMAP_MAX_ORDER #define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #endif struct vm_struct { void *addr; unsigned long size; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ unsigned long flags; struct page **pages; unsigned int nr_pages; unsigned long phys_addr; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct vm_struct *next; }; #endif
/**************************************************************************** **************************************************************************** *** *** This header was automatically generated from a Linux kernel header *** of the same name, to make information necessary for userspace to *** call into the kernel available to libc. It contains only constants, *** structures, and macros generated from the original header, and thus, *** contains no copyrightable information. *** *** To edit the content of this header, modify the corresponding *** source file (e.g. under external/kernel-headers/original/) then *** run bionic/libc/kernel/tools/update_all.py *** *** Any manual change here will be lost the next time this script will *** be run. You've been warned! *** **************************************************************************** ****************************************************************************/ #ifndef _LINUX_VMALLOC_H #define _LINUX_VMALLOC_H #include <linux/spinlock.h> #include <asm/page.h> /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct vm_area_struct; #define VM_IOREMAP 0x00000001 #define VM_ALLOC 0x00000002 #define VM_MAP 0x00000004 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define VM_USERMAP 0x00000008 #define VM_VPAGES 0x00000010 #ifndef IOREMAP_MAX_ORDER #define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #endif struct vm_struct { void *addr; unsigned long size; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ unsigned long flags; struct page **pages; unsigned int nr_pages; unsigned long phys_addr; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct vm_struct *next; }; #endif
0.015231
{}
// // TransactionVC.h // HSEther // // Created by 侯帅 on 2018/6/4. // Copyright © 2018年 com.houshuai. All rights reserved. // #import <UIKit/UIKit.h> @interface TransactionVC : UIViewController @end
// // TransactionVC.h // HSEther // // Created by 侯帅 on 2018/6/4. // Copyright © 2018年 com.houshuai. All rights reserved. // #import <UIKit/UIKit.h> @interface TransactionVC : UIViewController @end
0.719464
{}
/* * Compare buffer against given bytes value */ static bool memcmp_b(const uint8_t *buff, uint8_t value, size_t sz) { size_t i = 0; while (i < sz) { if (buff[i++] != value) { return false; } } return true; }
/* * Compare buffer against given bytes value */ static bool FUNC_0(const uint8_t *buff, uint8_t value, size_t sz) { size_t VAR_0 = 0; while (VAR_0 < sz) { if (buff[VAR_0++] != value) { return false; } } return true; }
0.666494
{'FUNC_0': 'memcmp_b', 'VAR_0': 'i'}
// // ItemLock.h // ThreadSafeClassDesign // // Created by <NAME> on 7/11/2015. // Copyright © 2015 jiakai. All rights reserved. // #import <Foundation/Foundation.h> #import "ItemProtocol.h" @interface ItemLock : NSObject <ItemProtocol> @property(nonatomic, copy) NSArray *subItems; @end
// // ItemLock.h // ThreadSafeClassDesign // // Created by <NAME> on 7/11/2015. // Copyright © 2015 jiakai. All rights reserved. // #import <Foundation/Foundation.h> #import "ItemProtocol.h" @interface VAR_0 : NSObject <VAR_1> @FUNC_0(VAR_2, copy) CLASS_0 *VAR_3; @VAR_4
0.735625
{'VAR_0': 'ItemLock', 'VAR_1': 'ItemProtocol', 'FUNC_0': 'property', 'VAR_2': 'nonatomic', 'CLASS_0': 'NSArray', 'VAR_3': 'subItems', 'VAR_4': 'end'}
/* * Copyright (C) 2020 Apple Inc. All Rights Reserved. * * ExposureNotification is licensed under Apple Inc.’s * Sample Code License Agreement, which is contained in * the LICENSE file distributed with ExposureNotification, * and only to those who accept that license. * */ #pragma once #import <Foundation/Foundation.h> #import <ExposureNotification/ExposureNotification.h> NS_ASSUME_NONNULL_BEGIN @interface ENAdvertisement : NSObject - (instancetype)initWithRPI:(NSData *)rpi encryptedAEM:(NSData *)encryptedAEM timestamp:(CFAbsoluteTime)timestamp scanInterval:(uint16_t)scanInterval avgRSSI:(int8_t)avgRSSI saturated:(BOOL)saturated countryCode:(uint16_t)countryCode counter:(uint8_t)count; @property (nonatomic, strong) NSData *rpi; @property (nonatomic, strong) NSData *encryptedAEM; @property (nonatomic) CFAbsoluteTime timestamp; @property (nonatomic) uint16_t scanInterval; @property (nonatomic) int8_t rssi; @property (nonatomic) bool saturated; @property (nonatomic) uint16_t countryCode; @property (nonatomic) uint8_t counter; @property (nonatomic, strong, nullable) ENTemporaryExposureKey *temporaryExposureKey; @end NS_ASSUME_NONNULL_END
/* * Copyright (C) 2020 Apple Inc. All Rights Reserved. * * ExposureNotification is licensed under Apple Inc.’s * Sample Code License Agreement, which is contained in * the LICENSE file distributed with ExposureNotification, * and only to those who accept that license. * */ #pragma once #import <Foundation/Foundation.h> #import <ExposureNotification/ExposureNotification.h> CLASS_0 @interface ENAdvertisement : VAR_0 - (ID_0)initWithRPI:(NSData *)rpi encryptedAEM:(NSData *)encryptedAEM timestamp:(CFAbsoluteTime)VAR_1 scanInterval:(uint16_t)VAR_2 avgRSSI:(int8_t)avgRSSI saturated:(BOOL)VAR_3 countryCode:(uint16_t)countryCode counter:(uint8_t)VAR_5; @property (VAR_6, VAR_7) NSData *rpi; @property (VAR_6, VAR_7) NSData *encryptedAEM; @property (ID_1) CFAbsoluteTime VAR_1; @property (ID_1) uint16_t VAR_2; @property (ID_1) int8_t rssi; @property (ID_1) VAR_8 VAR_3; @property (ID_1) uint16_t countryCode; @property (ID_1) uint8_t VAR_4; @property (VAR_6, VAR_7, VAR_9) ENTemporaryExposureKey *VAR_10; @end NS_ASSUME_NONNULL_END
0.477355
{'CLASS_0': 'NS_ASSUME_NONNULL_BEGIN', 'VAR_0': 'NSObject', 'ID_0': 'instancetype', 'VAR_1': 'timestamp', 'VAR_2': 'scanInterval', 'VAR_3': 'saturated', 'VAR_4': 'counter', 'VAR_5': 'count', 'VAR_6': 'nonatomic', 'ID_1': 'nonatomic', 'VAR_7': 'strong', 'VAR_8': 'bool', 'VAR_9': 'nullable', 'VAR_10': 'temporaryExposureKey'}
#include "gec_gpio.h" #include "gec_init.h" #include "gec_time.h" #include "stm32f4xx.h" #include "stm32f4xx_conf.h" void car_init() { Gec_GPIO_Init(GPIOG, GPIO_Pin_9, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOA, GPIO_Pin_8, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOA, GPIO_Pin_6, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOE, GPIO_Pin_6, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOB, GPIO_Pin_6, GPIO_MODE_IN_PULLUP); Gec_GPIO_Init(GPIOE, GPIO_Pin_5, GPIO_MODE_IN_PULLUP); } void car_go() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); } void turn_left() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); } void turn_right() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 0); } void car_stop() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 0); } void go_straight(int time) { Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); int i = 2; while (i--) { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); mdelay(250 - time); Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); mdelay(time); } } void go_straight() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); }
#include "gec_gpio.h" #include "gec_init.h" #include "gec_time.h" #include "stm32f4xx.h" #include "stm32f4xx_conf.h" void car_init() { Gec_GPIO_Init(GPIOG, GPIO_Pin_9, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOA, GPIO_Pin_8, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOA, GPIO_Pin_6, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOE, GPIO_Pin_6, GPIO_MODE_OUT_PP); Gec_GPIO_Init(GPIOB, GPIO_Pin_6, GPIO_MODE_IN_PULLUP); Gec_GPIO_Init(GPIOE, GPIO_Pin_5, GPIO_MODE_IN_PULLUP); } void FUNC_0() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); } void turn_left() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); } void FUNC_1() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 0); } void car_stop() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 0); } void FUNC_2(int time) { Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); int i = 2; while (i--) { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); mdelay(250 - time); Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 0); mdelay(time); } } void FUNC_2() { Gec_GPIO_Set_Value(GPIOG, GPIO_Pin_9, 0); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_8, 1); Gec_GPIO_Set_Value(GPIOA, GPIO_Pin_6, 0); Gec_GPIO_Set_Value(GPIOE, GPIO_Pin_6, 1); }
0.077401
{'FUNC_0': 'car_go', 'FUNC_1': 'turn_right', 'FUNC_2': 'go_straight'}
/* * SHA transform algorithm, originally taken from code written by * Peter Gutmann, and placed in the public domain. */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/cryptohash.h> /* The SHA f()-functions. */ #define f1(x,y,z) (z ^ (x & (y ^ z))) /* x ? y : z */ #define f2(x,y,z) (x ^ y ^ z) /* XOR */ #define f3(x,y,z) ((x & y) + (z & (x ^ y))) /* majority */ /* The SHA Mysterious Constants */ #define K1 0x5A827999L /* Rounds 0-19: sqrt(2) * 2^30 */ #define K2 0x6ED9EBA1L /* Rounds 20-39: sqrt(3) * 2^30 */ #define K3 0x8F1BBCDCL /* Rounds 40-59: sqrt(5) * 2^30 */ #define K4 0xCA62C1D6L /* Rounds 60-79: sqrt(10) * 2^30 */ /** * sha_transform - single block SHA1 transform * * @digest: 160 bit digest to update * @data: 512 bits of data to hash * @W: 80 words of workspace (see note) * * This function generates a SHA1 digest for a single 512-bit block. * Be warned, it does not handle padding and message digest, do not * confuse it with the full FIPS 180-1 digest algorithm for variable * length messages. * * Note: If the hash is security sensitive, the caller should be sure * to clear the workspace. This is left to the caller to avoid * unnecessary clears between chained hashing operations. */ void sha_transform(__u32 *digest, const char *in, __u32 *W) { __u32 a, b, c, d, e, t, i; for (i = 0; i < 16; i++) W[i] = be32_to_cpu(((const __be32 *)in)[i]); for (i = 0; i < 64; i++) W[i+16] = rol32(W[i+13] ^ W[i+8] ^ W[i+2] ^ W[i], 1); a = digest[0]; b = digest[1]; c = digest[2]; d = digest[3]; e = digest[4]; for (i = 0; i < 20; i++) { t = f1(b, c, d) + K1 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 40; i ++) { t = f2(b, c, d) + K2 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 60; i ++) { t = f3(b, c, d) + K3 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 80; i ++) { t = f2(b, c, d) + K4 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } digest[0] += a; digest[1] += b; digest[2] += c; digest[3] += d; digest[4] += e; } EXPORT_SYMBOL(sha_transform); /** * sha_init - initialize the vectors for a SHA1 digest * @buf: vector to initialize */ void sha_init(__u32 *buf) { buf[0] = 0x67452301; buf[1] = 0xefcdab89; buf[2] = 0x98badcfe; buf[3] = 0x10325476; buf[4] = 0xc3d2e1f0; }
/* * SHA transform algorithm, originally taken from code written by * Peter Gutmann, and placed in the public domain. */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/cryptohash.h> /* The SHA f()-functions. */ #define f1(x,y,z) (z ^ (x & (y ^ z))) /* x ? y : z */ #define FUNC_0(x,y,z) (x ^ y ^ z) /* XOR */ #define f3(x,y,z) ((x & y) + (z & (x ^ y))) /* majority */ /* The SHA Mysterious Constants */ #define K1 0x5A827999L /* Rounds 0-19: sqrt(2) * 2^30 */ #define K2 0x6ED9EBA1L /* Rounds 20-39: sqrt(3) * 2^30 */ #define K3 0x8F1BBCDCL /* Rounds 40-59: sqrt(5) * 2^30 */ #define K4 0xCA62C1D6L /* Rounds 60-79: sqrt(10) * 2^30 */ /** * sha_transform - single block SHA1 transform * * @digest: 160 bit digest to update * @data: 512 bits of data to hash * @W: 80 words of workspace (see note) * * This function generates a SHA1 digest for a single 512-bit block. * Be warned, it does not handle padding and message digest, do not * confuse it with the full FIPS 180-1 digest algorithm for variable * length messages. * * Note: If the hash is security sensitive, the caller should be sure * to clear the workspace. This is left to the caller to avoid * unnecessary clears between chained hashing operations. */ void FUNC_1(__u32 *digest, const char *in, __u32 *W) { __u32 a, b, c, d, e, t, i; for (i = 0; i < 16; i++) W[i] = be32_to_cpu(((const __be32 *)in)[i]); for (i = 0; i < 64; i++) W[i+16] = rol32(W[i+13] ^ W[i+8] ^ W[i+2] ^ W[i], 1); a = digest[0]; b = digest[1]; c = digest[2]; d = digest[3]; e = digest[4]; for (i = 0; i < 20; i++) { t = f1(b, c, d) + K1 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 40; i ++) { t = FUNC_0(b, c, d) + K2 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 60; i ++) { t = f3(b, c, d) + K3 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } for (; i < 80; i ++) { t = FUNC_0(b, c, d) + K4 + rol32(a, 5) + e + W[i]; e = d; d = c; c = rol32(b, 30); b = a; a = t; } digest[0] += a; digest[1] += b; digest[2] += c; digest[3] += d; digest[4] += e; } EXPORT_SYMBOL(VAR_0); /** * sha_init - initialize the vectors for a SHA1 digest * @buf: vector to initialize */ void FUNC_2(__u32 *VAR_1) { VAR_1[0] = 0x67452301; VAR_1[1] = 0xefcdab89; VAR_1[2] = 0x98badcfe; VAR_1[3] = 0x10325476; VAR_1[4] = 0xc3d2e1f0; }
0.129687
{'FUNC_0': 'f2', 'FUNC_1': 'sha_transform', 'VAR_0': 'sha_transform', 'FUNC_2': 'sha_init', 'VAR_1': 'buf'}
#include <stdio.h> #include <time.h> #include <stdbool.h> #define NONE 0 #define WHITE 1 #define BLACK 2 #define SIZE 8 int board[SIZE][SIZE] = {NONE}; bool turn = true; void setup(void); void print(void); void que(int * line, int * col); void put(int line, int col); void count(void); bool check(int line, int col); bool check_all(void); bool all_none(void); //////////////// main //////////////// int main(){ int line, col; bool my_check = true, old_check = true; // check_allで反転させられるので turn = false; setup(); print(); long now = time(NULL); while ((my_check = check_all()) || all_none()){ if (turn) printf("\n黒のターンです\n"); else printf("\n白のターンです\n"); if (my_check){ que(&line, &col); while (!check(line, col)){ printf("その位置には置けません\n"); que(&line, &col); } put(line, col); print(); }else{ printf("置ける場所がありません\n"); } if (!my_check && !old_check) break; old_check = my_check; } printf("\n試合時間: %ld秒\n", time(NULL) - now); count(); return 0; } //////////////////////////////////////// bool all_none(void){ int i, j; bool check = false; for (i = 0; i < SIZE; i++){ for (j = 0; j < SIZE; j++) if (board[i][j] == NONE) check = true; if (check) break; } if (i == SIZE && j == SIZE) return false; else return true; } void count(void){ int i, j; int black = 0, white = 0; for (i = 0; i < SIZE; i++){ for (j = 0; j < SIZE; j++){ if (board[i][j] == BLACK) black++; else if (board[i][j] == WHITE) white++; } } printf("黒の数: %2d\n白の数: %2d\n", black, white); if (black > white) printf("黒の勝ちです\n"); else if (black < white) printf("白の勝ちです\n"); else printf("引き分けです\n"); } bool check_all(void){ // 置ける  true // 置けない false int i = 0, j = 0; turn = !turn; while (!check(i + 1, j + 1) && j != SIZE){ i++; if (i == SIZE){ i = 0; j++; } } if (j == SIZE) return false; else return true; } void print(void){ int num[SIZE] = {1, 2, 3, 4, 5, 6, 7, 8}; int i, j; printf("\n "); for (i = 0; i < SIZE; i++) printf(" %d ", num[i]); printf("\n -------------------------\n"); for (i = 0; i < SIZE; i++){ printf("%d", num[i]); for (j = 0; j < SIZE; j++){ if (board[i][j] == NONE) printf("| "); else if (board[i][j] == WHITE) printf("|●"); else if (board[i][j] == BLACK) printf("|○"); } printf("|\n -------------------------\n"); } } void que(int * line, int * col){ printf("行: "); scanf("%d", line); printf("列: "); scanf("%d", col); } void setup(void){ printf("黒: ○\n白: ●\n\n"); board[SIZE / 2 - 1][SIZE / 2 - 1] = WHITE; board[SIZE / 2][SIZE / 2] = WHITE; board[SIZE / 2 - 1][SIZE / 2] = BLACK; board[SIZE / 2 ][SIZE / 2 - 1] = BLACK; // print(); } void put(int line, int col){ int i, j; int my, opp; int pos1, pos2; line--; col--; if (turn == true){ my = BLACK, opp = WHITE; board[line][col] = BLACK; }else{ my = WHITE, opp = BLACK; board[line][col] = WHITE; } // 縦 pos1 = -1; pos2 = -1; i = 2; if (line - 1 >= 0 && board[line - 1][col] == opp){ while (line - i >= 0){ if (board[line - i][col] == NONE) break; if (board[line - i][col] == my){ pos1 = i; break; } i++; } i = 2; } if (line + 1 < SIZE && board[line + 1][col] == opp){ while (line + i < SIZE){ if (board[line + i][col] == NONE) break; if (board[line + i][col] == my){ pos2 = i; break; } i++; } i = 2; } if (pos1 != -1){ for (i = 1; i < pos1; i++){ board[line - i][col] = my; } } if (pos2 != -1){ for (i = 1; i < pos2; i++){ board[line + i][col] = my; } } // 横 pos1 = -1; pos2 = -1; i = 2; if (col - 1 >= 0 && board[line][col - 1] == opp){ while (col - i >= 0){ if (board[line][col - i] == NONE) break; if (board[line][col - i] == my){ pos1 = i; break; } i++; } i = 2; } if (col + 1 < SIZE && board[line][col + 1] == opp){ while (col + i < SIZE){ if (board[line][col + i] == NONE) break; if (board[line][col + i] == my){ pos2 = i; break; } i++; } i = 2; } if (pos1 != -1){ for (i = 1; i < pos1; i++){ board[line][col - i] = my; } } if (pos2 != -1){ for (i = 1; i < pos2; i++){ board[line][col + i] = my; } } // 右上がり pos1 = -1; pos2 = -1; i = 2; if (line + 1 < SIZE && col - 1 >= 0 && board[line + 1][col - 1] == opp){ while (line + i < SIZE && col - i >= 0){ if (board[line + i][col - i] == NONE) break; if (board[line + i][col - i] == my){ pos1 = i; break; } i++; } i = 2; } if (line - 1 >= 0 && col + 1 < SIZE && board[line - 1][col + 1] == opp){ while (line - i >= 0 && col + i < SIZE){ if (board[line - i][col + i] == NONE) break; if (board[line - i][col + i] == my){ pos2 = i; break; } i++; } i = 2; } if (pos1 != -1){ for (i = 1; i < pos1; i++){ board[line + i][col - i] = my; } } if (pos2 != -1){ for (i = 1; i < pos2; i++){ board[line - i][col + i] = my; } } // 右下がり pos1 = -1; pos2 = -1; i = 2; if (line - 1 >= 0 && col - 1 >= 0 && board[line - 1][col - 1] == opp){ while (line - i >= 0 && col - i >= 0){ if (board[line - i][col - i] == NONE) break; if (board[line - i][col - i] == my){ pos1 = i; break; } i++; } i = 2; } if (line + 1 < SIZE && col + 1 < SIZE && board[line + 1][col + 1] == opp){ while (line + i < SIZE && col + i < SIZE){ if (board[line + i][col + i] == NONE) break; if (board[line + i][col + i] == my){ pos2 = i; break; } i++; } i = 2; } if (pos1 != -1){ for (i = 1; i < pos1; i++){ board[line - i][col - i] = my; } } if (pos2 != -1){ for (i = 1; i < pos2; i++){ board[line + i][col + i] = my; } } // turn = !turn; // print(); } bool check(int line, int col){ // 置ける  true // 置けない false line--; col--; if (line >= SIZE || col >= SIZE){ // printf("その位置には置けません\n"); return false; } if (board[line][col] != NONE){ // printf("その位置には置けません\n"); return false; } int my, opp; int i = 2; if (turn == true) my = BLACK, opp = WHITE; else my = WHITE, opp = BLACK; // 縦 if (line - 1 >= 0 && board[line - 1][col] == opp){ while (line - i >= 0){ if (board[line - i][col] == NONE) break; if (board[line - i][col] == my) return true; i++; } i = 2; } if (line + 1 < SIZE && board[line + 1][col] == opp){ while (line + i < SIZE){ if (board[line + i][col] == NONE) break; if (board[line + i][col] == my) return true; i++; } i = 2; } // 横 if (col - 1 >= 0 && board[line][col - 1] == opp){ while (col - i >= 0){ if (board[line][col - i] == NONE) break; if (board[line][col - i] == my) return true; i++; } i = 2; } if (col + 1 < SIZE && board[line][col + 1] == opp){ while (col + i < SIZE){ if (board[line][col + i] == NONE) break; if (board[line][col + i] == my) return true; i++; } i = 2; } // 右上がり if (line + 1 < SIZE && col - 1 >= 0 && board[line + 1][col - 1] == opp){ while (line + i < SIZE && col - i >= 0){ if (board[line + i][col - i] == NONE) break; if (board[line + i][col - i] == my) return true; i++; } i = 2; } if (line - 1 >= 0 && col + 1 < SIZE && board[line - 1][col + 1] == opp){ while (line - i >= 0 && col + i < SIZE){ if (board[line - i][col + i] == NONE) break; if (board[line - i][col + i] == my) return true; i++; } i = 2; } // 右下がり if (line - 1 >= 0 && col - 1 >= 0 && board[line - 1][col - 1] == opp){ while (line - i >= 0 && col - i >= 0){ if (board[line - i][col - i] == NONE) break; if (board[line - i][col - i] == my) return true; i++; } i = 2; } if (line + 1 < SIZE && col + 1 < SIZE && board[line + 1][col + 1] == opp){ while (line + i < SIZE && col + i < SIZE){ if (board[line + i][col + i] == NONE) break; if (board[line + i][col + i] == my) return true; i++; } i = 2; } // printf("その位置には置けません\n"); return false; }
#include <IMPORT_0> #include <IMPORT_1> #include <stdbool.h> #define VAR_0 0 #define WHITE 1 #define BLACK 2 #define VAR_1 8 int board[VAR_1][VAR_1] = {VAR_0}; bool turn = true; void FUNC_0(void); void FUNC_1(void); void FUNC_2(int * line, int * VAR_2); void put(int line, int VAR_2); void count(void); bool FUNC_3(int line, int VAR_2); bool FUNC_4(void); bool FUNC_5(void); //////////////// main //////////////// int FUNC_6(){ int line, VAR_2; bool VAR_4 = true, VAR_5 = true; // check_allで反転させられるので turn = false; FUNC_0(); FUNC_1(); long now = FUNC_7(NULL); while ((VAR_4 = FUNC_4()) || FUNC_5()){ if (turn) printf("\n黒のターンです\n"); else printf("\n白のターンです\n"); if (VAR_4){ FUNC_2(&line, &VAR_2); while (!FUNC_3(line, VAR_2)){ printf("その位置には置けません\n"); FUNC_2(&line, &VAR_2); } put(line, VAR_2); FUNC_1(); }else{ printf("置ける場所がありません\n"); } if (!VAR_4 && !VAR_5) break; VAR_5 = VAR_4; } printf("\n試合時間: %ld秒\n", time(NULL) - now); count(); return 0; } //////////////////////////////////////// bool FUNC_5(void){ int VAR_6, j; bool VAR_3 = false; for (VAR_6 = 0; VAR_6 < VAR_1; VAR_6++){ for (j = 0; j < VAR_1; j++) if (board[VAR_6][j] == VAR_0) VAR_3 = true; if (VAR_3) break; } if (VAR_6 == VAR_1 && j == VAR_1) return false; else return true; } void count(void){ int VAR_6, j; int black = 0, VAR_7 = 0; for (VAR_6 = 0; VAR_6 < VAR_1; VAR_6++){ for (j = 0; j < VAR_1; j++){ if (board[VAR_6][j] == BLACK) black++; else if (board[VAR_6][j] == WHITE) VAR_7++; } } printf("黒の数: %2d\n白の数: %2d\n", black, white); if (black > VAR_7) printf("黒の勝ちです\n"); else if (black < VAR_7) printf("白の勝ちです\n"); else printf("引き分けです\n"); } bool FUNC_4(void){ // 置ける  true // 置けない false int VAR_6 = 0, j = 0; turn = !turn; while (!FUNC_3(VAR_6 + 1, j + 1) && j != VAR_1){ VAR_6++; if (VAR_6 == VAR_1){ VAR_6 = 0; j++; } } if (j == VAR_1) return false; else return true; } void FUNC_1(void){ int num[VAR_1] = {1, 2, 3, 4, 5, 6, 7, 8}; int VAR_6, j; printf("\n "); for (VAR_6 = 0; VAR_6 < VAR_1; VAR_6++) printf(" %d ", num[VAR_6]); printf("\n -------------------------\n"); for (VAR_6 = 0; VAR_6 < VAR_1; VAR_6++){ printf("%d", num[VAR_6]); for (j = 0; j < VAR_1; j++){ if (board[VAR_6][j] == VAR_0) printf("| "); else if (board[VAR_6][j] == WHITE) printf("|●"); else if (board[VAR_6][j] == BLACK) printf("|○"); } printf("|\n -------------------------\n"); } } void FUNC_2(int * line, int * VAR_2){ printf("行: "); FUNC_8("%d", line); printf("列: "); FUNC_8("%d", VAR_2); } void FUNC_0(void){ printf("黒: ○\n白: ●\n\n"); board[VAR_1 / 2 - 1][VAR_1 / 2 - 1] = WHITE; board[VAR_1 / 2][VAR_1 / 2] = WHITE; board[VAR_1 / 2 - 1][VAR_1 / 2] = BLACK; board[VAR_1 / 2 ][VAR_1 / 2 - 1] = BLACK; // print(); } void put(int line, int VAR_2){ int VAR_6, j; int VAR_8, VAR_9; int VAR_10, pos2; line--; VAR_2--; if (turn == true){ VAR_8 = BLACK, VAR_9 = WHITE; board[line][VAR_2] = BLACK; }else{ VAR_8 = WHITE, VAR_9 = BLACK; board[line][VAR_2] = WHITE; } // 縦 VAR_10 = -1; pos2 = -1; VAR_6 = 2; if (line - 1 >= 0 && board[line - 1][VAR_2] == VAR_9){ while (line - VAR_6 >= 0){ if (board[line - VAR_6][VAR_2] == VAR_0) break; if (board[line - VAR_6][VAR_2] == VAR_8){ VAR_10 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (line + 1 < VAR_1 && board[line + 1][VAR_2] == VAR_9){ while (line + VAR_6 < VAR_1){ if (board[line + VAR_6][VAR_2] == VAR_0) break; if (board[line + VAR_6][VAR_2] == VAR_8){ pos2 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (VAR_10 != -1){ for (VAR_6 = 1; VAR_6 < VAR_10; VAR_6++){ board[line - VAR_6][VAR_2] = VAR_8; } } if (pos2 != -1){ for (VAR_6 = 1; VAR_6 < pos2; VAR_6++){ board[line + VAR_6][VAR_2] = VAR_8; } } // 横 VAR_10 = -1; pos2 = -1; VAR_6 = 2; if (VAR_2 - 1 >= 0 && board[line][VAR_2 - 1] == VAR_9){ while (VAR_2 - VAR_6 >= 0){ if (board[line][VAR_2 - VAR_6] == VAR_0) break; if (board[line][VAR_2 - VAR_6] == VAR_8){ VAR_10 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (VAR_2 + 1 < VAR_1 && board[line][VAR_2 + 1] == VAR_9){ while (VAR_2 + VAR_6 < VAR_1){ if (board[line][VAR_2 + VAR_6] == VAR_0) break; if (board[line][VAR_2 + VAR_6] == VAR_8){ pos2 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (VAR_10 != -1){ for (VAR_6 = 1; VAR_6 < VAR_10; VAR_6++){ board[line][VAR_2 - VAR_6] = VAR_8; } } if (pos2 != -1){ for (VAR_6 = 1; VAR_6 < pos2; VAR_6++){ board[line][VAR_2 + VAR_6] = VAR_8; } } // 右上がり VAR_10 = -1; pos2 = -1; VAR_6 = 2; if (line + 1 < VAR_1 && VAR_2 - 1 >= 0 && board[line + 1][VAR_2 - 1] == VAR_9){ while (line + VAR_6 < VAR_1 && VAR_2 - VAR_6 >= 0){ if (board[line + VAR_6][VAR_2 - VAR_6] == VAR_0) break; if (board[line + VAR_6][VAR_2 - VAR_6] == VAR_8){ VAR_10 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (line - 1 >= 0 && VAR_2 + 1 < VAR_1 && board[line - 1][VAR_2 + 1] == VAR_9){ while (line - VAR_6 >= 0 && VAR_2 + VAR_6 < VAR_1){ if (board[line - VAR_6][VAR_2 + VAR_6] == VAR_0) break; if (board[line - VAR_6][VAR_2 + VAR_6] == VAR_8){ pos2 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (VAR_10 != -1){ for (VAR_6 = 1; VAR_6 < VAR_10; VAR_6++){ board[line + VAR_6][VAR_2 - VAR_6] = VAR_8; } } if (pos2 != -1){ for (VAR_6 = 1; VAR_6 < pos2; VAR_6++){ board[line - VAR_6][VAR_2 + VAR_6] = VAR_8; } } // 右下がり VAR_10 = -1; pos2 = -1; VAR_6 = 2; if (line - 1 >= 0 && VAR_2 - 1 >= 0 && board[line - 1][VAR_2 - 1] == VAR_9){ while (line - VAR_6 >= 0 && VAR_2 - VAR_6 >= 0){ if (board[line - VAR_6][VAR_2 - VAR_6] == VAR_0) break; if (board[line - VAR_6][VAR_2 - VAR_6] == VAR_8){ VAR_10 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (line + 1 < VAR_1 && VAR_2 + 1 < VAR_1 && board[line + 1][VAR_2 + 1] == VAR_9){ while (line + VAR_6 < VAR_1 && VAR_2 + VAR_6 < VAR_1){ if (board[line + VAR_6][VAR_2 + VAR_6] == VAR_0) break; if (board[line + VAR_6][VAR_2 + VAR_6] == VAR_8){ pos2 = VAR_6; break; } VAR_6++; } VAR_6 = 2; } if (VAR_10 != -1){ for (VAR_6 = 1; VAR_6 < VAR_10; VAR_6++){ board[line - VAR_6][VAR_2 - VAR_6] = VAR_8; } } if (pos2 != -1){ for (VAR_6 = 1; VAR_6 < pos2; VAR_6++){ board[line + VAR_6][VAR_2 + VAR_6] = VAR_8; } } // turn = !turn; // print(); } bool FUNC_3(int line, int VAR_2){ // 置ける  true // 置けない false line--; VAR_2--; if (line >= VAR_1 || VAR_2 >= VAR_1){ // printf("その位置には置けません\n"); return false; } if (board[line][VAR_2] != VAR_0){ // printf("その位置には置けません\n"); return false; } int VAR_8, VAR_9; int VAR_6 = 2; if (turn == true) VAR_8 = BLACK, VAR_9 = WHITE; else VAR_8 = WHITE, VAR_9 = BLACK; // 縦 if (line - 1 >= 0 && board[line - 1][VAR_2] == VAR_9){ while (line - VAR_6 >= 0){ if (board[line - VAR_6][VAR_2] == VAR_0) break; if (board[line - VAR_6][VAR_2] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } if (line + 1 < VAR_1 && board[line + 1][VAR_2] == VAR_9){ while (line + VAR_6 < VAR_1){ if (board[line + VAR_6][VAR_2] == VAR_0) break; if (board[line + VAR_6][VAR_2] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } // 横 if (VAR_2 - 1 >= 0 && board[line][VAR_2 - 1] == VAR_9){ while (VAR_2 - VAR_6 >= 0){ if (board[line][VAR_2 - VAR_6] == VAR_0) break; if (board[line][VAR_2 - VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } if (VAR_2 + 1 < VAR_1 && board[line][VAR_2 + 1] == VAR_9){ while (VAR_2 + VAR_6 < VAR_1){ if (board[line][VAR_2 + VAR_6] == VAR_0) break; if (board[line][VAR_2 + VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } // 右上がり if (line + 1 < VAR_1 && VAR_2 - 1 >= 0 && board[line + 1][VAR_2 - 1] == VAR_9){ while (line + VAR_6 < VAR_1 && VAR_2 - VAR_6 >= 0){ if (board[line + VAR_6][VAR_2 - VAR_6] == VAR_0) break; if (board[line + VAR_6][VAR_2 - VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } if (line - 1 >= 0 && VAR_2 + 1 < VAR_1 && board[line - 1][VAR_2 + 1] == VAR_9){ while (line - VAR_6 >= 0 && VAR_2 + VAR_6 < VAR_1){ if (board[line - VAR_6][VAR_2 + VAR_6] == VAR_0) break; if (board[line - VAR_6][VAR_2 + VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } // 右下がり if (line - 1 >= 0 && VAR_2 - 1 >= 0 && board[line - 1][VAR_2 - 1] == VAR_9){ while (line - VAR_6 >= 0 && VAR_2 - VAR_6 >= 0){ if (board[line - VAR_6][VAR_2 - VAR_6] == VAR_0) break; if (board[line - VAR_6][VAR_2 - VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } if (line + 1 < VAR_1 && VAR_2 + 1 < VAR_1 && board[line + 1][VAR_2 + 1] == VAR_9){ while (line + VAR_6 < VAR_1 && VAR_2 + VAR_6 < VAR_1){ if (board[line + VAR_6][VAR_2 + VAR_6] == VAR_0) break; if (board[line + VAR_6][VAR_2 + VAR_6] == VAR_8) return true; VAR_6++; } VAR_6 = 2; } // printf("その位置には置けません\n"); return false; }
0.569654
{'IMPORT_0': 'stdio.h', 'IMPORT_1': 'time.h', 'VAR_0': 'NONE', 'VAR_1': 'SIZE', 'FUNC_0': 'setup', 'FUNC_1': 'print', 'FUNC_2': 'que', 'VAR_2': 'col', 'FUNC_3': 'check', 'VAR_3': 'check', 'FUNC_4': 'check_all', 'FUNC_5': 'all_none', 'FUNC_6': 'main', 'VAR_4': 'my_check', 'VAR_5': 'old_check', 'FUNC_7': 'time', 'VAR_6': 'i', 'VAR_7': 'white', 'FUNC_8': 'scanf', 'VAR_8': 'my', 'VAR_9': 'opp', 'VAR_10': 'pos1'}
// // AppDelegate+JWLocalNotifiction.h // YuWa // // Created by <NAME> on 16/10/21. // Copyright © 2016年 Shanghai DuRui Information Technology Company. All rights reserved. // #import "AppDelegate.h" @interface AppDelegate (JWLocalNotifiction)<UIAlertViewDelegate> /*其他页面调用范例 //AppDelegate * appDelegate = (AppDelegate*)[UIApplication sharedApplication].delegate; //[appDelegate addLocalPushNotificationWithTime:secs withAlertBody:con]; */ ///本地移除 -(void)removeLocalPushNotification; @end
// // AppDelegate+JWLocalNotifiction.h // YuWa // // Created by <NAME> on 16/10/21. // Copyright © 2016年 Shanghai DuRui Information Technology Company. All rights reserved. // #import "AppDelegate.h" @interface AppDelegate (JWLocalNotifiction)<UIAlertViewDelegate> /*其他页面调用范例 //AppDelegate * appDelegate = (AppDelegate*)[UIApplication sharedApplication].delegate; //[appDelegate addLocalPushNotificationWithTime:secs withAlertBody:con]; */ ///本地移除 -(void)VAR_0; @CLASS_0
0.700636
{'VAR_0': 'removeLocalPushNotification', 'CLASS_0': 'end'}
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_NEARBY_SHARING_NEARBY_SHARE_DEFAULT_DEVICE_NAME_H_ #define CHROME_BROWSER_NEARBY_SHARING_NEARBY_SHARE_DEFAULT_DEVICE_NAME_H_ #include <string> class Profile; // Creates a default device name of the form "<given name>'s <device type>." For // example, "Josh's Chromebook." If a given name cannot be found, returns just // the device type. If the resulting name is too long the user's name will be // truncated, for example "Mi...'s Chromebook." std::string GetNearbyShareDefaultDeviceName(Profile* profile); #endif // CHROME_BROWSER_NEARBY_SHARING_NEARBY_SHARE_DEFAULT_DEVICE_NAME_H_
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef VAR_0 #define VAR_0 #include <IMPORT_0> CLASS_0 VAR_1; // Creates a default device name of the form "<given name>'s <device type>." For // example, "Josh's Chromebook." If a given name cannot be found, returns just // the device type. If the resulting name is too long the user's name will be // truncated, for example "Mi...'s Chromebook." std::IMPORT_0 FUNC_0(VAR_1* profile); #endif // CHROME_BROWSER_NEARBY_SHARING_NEARBY_SHARE_DEFAULT_DEVICE_NAME_H_
0.973331
{'VAR_0': 'CHROME_BROWSER_NEARBY_SHARING_NEARBY_SHARE_DEFAULT_DEVICE_NAME_H_', 'IMPORT_0': 'string', 'CLASS_0': 'class', 'VAR_1': 'Profile', 'FUNC_0': 'GetNearbyShareDefaultDeviceName'}
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_BASE_MIME_UTIL_H__ #define NET_BASE_MIME_UTIL_H__ #include <string> #include <vector> #include "base/files/file_path.h" #include "net/base/net_export.h" namespace net { // Get the mime type (if any) that is associated with the given file extension. // Returns true if a corresponding mime type exists. NET_EXPORT bool GetMimeTypeFromExtension(const base::FilePath::StringType& ext, std::string* mime_type); // Get the mime type (if any) that is associated with the given file extension. // Returns true if a corresponding mime type exists. In this method, // the search for a mime type is constrained to a limited set of // types known to the net library, the OS/registry is not consulted. NET_EXPORT bool GetWellKnownMimeTypeFromExtension( const base::FilePath::StringType& ext, std::string* mime_type); // Get the mime type (if any) that is associated with the given file. Returns // true if a corresponding mime type exists. NET_EXPORT bool GetMimeTypeFromFile(const base::FilePath& file_path, std::string* mime_type); // Get the preferred extension (if any) associated with the given mime type. // Returns true if a corresponding file extension exists. The extension is // returned without a prefixed dot, ex "html". NET_EXPORT bool GetPreferredExtensionForMimeType( const std::string& mime_type, base::FilePath::StringType* extension); // Check to see if a particular MIME type is in our list. NET_EXPORT bool IsSupportedImageMimeType(const std::string& mime_type); NET_EXPORT bool IsSupportedMediaMimeType(const std::string& mime_type); NET_EXPORT bool IsSupportedNonImageMimeType(const std::string& mime_type); NET_EXPORT bool IsUnsupportedTextMimeType(const std::string& mime_type); NET_EXPORT bool IsSupportedJavascriptMimeType(const std::string& mime_type); NET_EXPORT bool IsSupportedCertificateMimeType(const std::string& mime_type); // Convenience function. NET_EXPORT bool IsSupportedMimeType(const std::string& mime_type); // Returns true if this the mime_type_pattern matches a given mime-type. // Checks for absolute matching and wildcards. mime-types should be in // lower case. NET_EXPORT bool MatchesMimeType(const std::string& mime_type_pattern, const std::string& mime_type); // Returns true if the |type_string| is a correctly-formed mime type specifier. // Allows strings of the form x/y[;params], where "x" is a legal mime type name. // Also allows wildcard types -- "x/*", "*/*", and "*". NET_EXPORT bool IsMimeType(const std::string& type_string); // Returns true if and only if all codecs are supported, false otherwise. NET_EXPORT bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs); // Parses a codec string, populating |codecs_out| with the prefix of each codec // in the string |codecs_in|. For example, passed "aaa.b.c,dd.eee", if // |strip| == true |codecs_out| will contain {"aaa", "dd"}, if |strip| == false // |codecs_out| will contain {"aaa.b.c", "dd.eee"}. // See http://www.ietf.org/rfc/rfc4281.txt. NET_EXPORT void ParseCodecString(const std::string& codecs, std::vector<std::string>* codecs_out, bool strip); // Check to see if a particular MIME type is in our list which only supports a // certain subset of codecs. NET_EXPORT bool IsStrictMediaMimeType(const std::string& mime_type); // Check to see if a particular MIME type is in our list which only supports a // certain subset of codecs. Returns true if and only if all codecs are // supported for that specific MIME type, false otherwise. If this returns // false you will still need to check if the media MIME tpyes and codecs are // supported. NET_EXPORT bool IsSupportedStrictMediaMimeType( const std::string& mime_type, const std::vector<std::string>& codecs); // Get the extensions associated with the given mime type. This should be passed // in lower case. There could be multiple extensions for a given mime type, like // "html,htm" for "text/html", or "txt,text,html,..." for "text/*". // Note that we do not erase the existing elements in the the provided vector. // Instead, we append the result to it. NET_EXPORT void GetExtensionsForMimeType( const std::string& mime_type, std::vector<base::FilePath::StringType>* extensions); // Test only methods that return lists of proprietary media types and codecs // that are not supported by all variations of Chromium. // These types and codecs must be blacklisted to ensure consistent layout test // results across all Chromium variations. NET_EXPORT void GetMediaTypesBlacklistedForTests( std::vector<std::string>* types); NET_EXPORT void GetMediaCodecsBlacklistedForTests( std::vector<std::string>* codecs); // Returns the IANA media type contained in |mime_type|, or an empty // string if |mime_type| does not specifify a known media type. // Supported media types are defined at: // http://www.iana.org/assignments/media-types/index.html NET_EXPORT const std::string GetIANAMediaType(const std::string& mime_type); // A list of supported certificate-related mime types. enum CertificateMimeType { #define CERTIFICATE_MIME_TYPE(name, value) CERTIFICATE_MIME_TYPE_ ## name = value, #include "net/base/mime_util_certificate_type_list.h" #undef CERTIFICATE_MIME_TYPE }; NET_EXPORT CertificateMimeType GetCertificateMimeTypeForMimeType( const std::string& mime_type); } // namespace net #endif // NET_BASE_MIME_UTIL_H__
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef VAR_0 #define VAR_0 #include <IMPORT_0> #include <IMPORT_1> #include "base/files/file_path.h" #include "net/base/net_export.h" CLASS_0 net { // Get the mime type (if any) that is associated with the given file extension. // Returns true if a corresponding mime type exists. NET_EXPORT bool GetMimeTypeFromExtension(const CLASS_1::FilePath::StringType& ext, std::IMPORT_0* VAR_2); // Get the mime type (if any) that is associated with the given file extension. // Returns true if a corresponding mime type exists. In this method, // the search for a mime type is constrained to a limited set of // types known to the net library, the OS/registry is not consulted. NET_EXPORT bool GetWellKnownMimeTypeFromExtension( const CLASS_1::FilePath::StringType& ext, std::IMPORT_0* VAR_2); // Get the mime type (if any) that is associated with the given file. Returns // true if a corresponding mime type exists. NET_EXPORT bool FUNC_0(const CLASS_1::FilePath& VAR_3, std::IMPORT_0* VAR_2); // Get the preferred extension (if any) associated with the given mime type. // Returns true if a corresponding file extension exists. The extension is // returned without a prefixed dot, ex "html". NET_EXPORT bool GetPreferredExtensionForMimeType( const std::IMPORT_0& VAR_2, CLASS_1::FilePath::StringType* VAR_4); // Check to see if a particular MIME type is in our list. NET_EXPORT bool IsSupportedImageMimeType(const std::IMPORT_0& VAR_2); NET_EXPORT bool FUNC_1(const std::IMPORT_0& VAR_2); NET_EXPORT bool FUNC_2(const std::IMPORT_0& VAR_2); NET_EXPORT bool IsUnsupportedTextMimeType(const std::IMPORT_0& VAR_2); NET_EXPORT bool FUNC_3(const std::IMPORT_0& VAR_2); NET_EXPORT bool FUNC_4(const std::IMPORT_0& VAR_2); // Convenience function. NET_EXPORT bool FUNC_5(const std::IMPORT_0& VAR_2); // Returns true if this the mime_type_pattern matches a given mime-type. // Checks for absolute matching and wildcards. mime-types should be in // lower case. NET_EXPORT bool FUNC_6(const std::IMPORT_0& mime_type_pattern, const std::IMPORT_0& VAR_2); // Returns true if the |type_string| is a correctly-formed mime type specifier. // Allows strings of the form x/y[;params], where "x" is a legal mime type name. // Also allows wildcard types -- "x/*", "*/*", and "*". NET_EXPORT bool IsMimeType(const std::IMPORT_0& VAR_5); // Returns true if and only if all codecs are supported, false otherwise. NET_EXPORT bool FUNC_7(const std::IMPORT_1<std::IMPORT_0>& VAR_6); // Parses a codec string, populating |codecs_out| with the prefix of each codec // in the string |codecs_in|. For example, passed "aaa.b.c,dd.eee", if // |strip| == true |codecs_out| will contain {"aaa", "dd"}, if |strip| == false // |codecs_out| will contain {"aaa.b.c", "dd.eee"}. // See http://www.ietf.org/rfc/rfc4281.txt. NET_EXPORT void FUNC_8(const std::IMPORT_0& VAR_6, std::IMPORT_1<std::IMPORT_0>* VAR_7, bool strip); // Check to see if a particular MIME type is in our list which only supports a // certain subset of codecs. NET_EXPORT bool FUNC_9(const std::IMPORT_0& VAR_2); // Check to see if a particular MIME type is in our list which only supports a // certain subset of codecs. Returns true if and only if all codecs are // supported for that specific MIME type, false otherwise. If this returns // false you will still need to check if the media MIME tpyes and codecs are // supported. NET_EXPORT bool IsSupportedStrictMediaMimeType( const std::IMPORT_0& VAR_2, const std::IMPORT_1<std::IMPORT_0>& VAR_6); // Get the extensions associated with the given mime type. This should be passed // in lower case. There could be multiple extensions for a given mime type, like // "html,htm" for "text/html", or "txt,text,html,..." for "text/*". // Note that we do not erase the existing elements in the the provided vector. // Instead, we append the result to it. NET_EXPORT void FUNC_10( const std::IMPORT_0& VAR_2, std::IMPORT_1<VAR_1::FilePath::StringType>* VAR_8); // Test only methods that return lists of proprietary media types and codecs // that are not supported by all variations of Chromium. // These types and codecs must be blacklisted to ensure consistent layout test // results across all Chromium variations. NET_EXPORT void GetMediaTypesBlacklistedForTests( std::IMPORT_1<std::IMPORT_0>* VAR_9); NET_EXPORT void FUNC_11( std::IMPORT_1<std::IMPORT_0>* VAR_6); // Returns the IANA media type contained in |mime_type|, or an empty // string if |mime_type| does not specifify a known media type. // Supported media types are defined at: // http://www.iana.org/assignments/media-types/index.html NET_EXPORT const std::IMPORT_0 GetIANAMediaType(const std::IMPORT_0& VAR_2); // A list of supported certificate-related mime types. enum CertificateMimeType { #define CERTIFICATE_MIME_TYPE(name, value) CERTIFICATE_MIME_TYPE_ ## name = value, #include "IMPORT_2" #undef CERTIFICATE_MIME_TYPE }; NET_EXPORT CertificateMimeType GetCertificateMimeTypeForMimeType( const std::IMPORT_0& VAR_2); } // namespace net #endif // NET_BASE_MIME_UTIL_H__
0.462942
{'VAR_0': 'NET_BASE_MIME_UTIL_H__', 'IMPORT_0': 'string', 'IMPORT_1': 'vector', 'CLASS_0': 'namespace', 'CLASS_1': 'base', 'VAR_1': 'base', 'VAR_2': 'mime_type', 'FUNC_0': 'GetMimeTypeFromFile', 'VAR_3': 'file_path', 'VAR_4': 'extension', 'FUNC_1': 'IsSupportedMediaMimeType', 'FUNC_2': 'IsSupportedNonImageMimeType', 'FUNC_3': 'IsSupportedJavascriptMimeType', 'FUNC_4': 'IsSupportedCertificateMimeType', 'FUNC_5': 'IsSupportedMimeType', 'FUNC_6': 'MatchesMimeType', 'VAR_5': 'type_string', 'FUNC_7': 'AreSupportedMediaCodecs', 'VAR_6': 'codecs', 'FUNC_8': 'ParseCodecString', 'VAR_7': 'codecs_out', 'FUNC_9': 'IsStrictMediaMimeType', 'FUNC_10': 'GetExtensionsForMimeType', 'VAR_8': 'extensions', 'VAR_9': 'types', 'FUNC_11': 'GetMediaCodecsBlacklistedForTests', 'IMPORT_2': 'net/base/mime_util_certificate_type_list.h'}
#include <stdio.h> #include <stdlib.h> int main(void) { int variable1=10; int variable2= 5; /* Avant l’échange du contenu des variables */ printf("Variable 1: %d \n", variable1); /*  Variable 1: 10 */ printf("Variable 2: %d \n", variable2); /*  Variable 2: 5 */ /* Echange du contenu des variables */ #ifdef i386 asm volatile ("xchg %0, %1" // ref : https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Extended-Asm : "+r" (variable1) // sup : https://gcc.gnu.org/onlinedocs/gcc/Multi-Alternative.html#Multi-Alternative : "g" (variable2)); #else { int copie = variable1; variable1 = variable2; variable2 = copie; } #endif /* Après l’échange du contenu des variables */ printf("Variable 1: %d \n", variable1); /*  Variable 1: 5 */ printf("Variable 2: %d \n", variable2); /*  Variable 2: 10 */ exit(EXIT_SUCCESS); }
#include <IMPORT_0> #include <stdlib.h> int FUNC_0(void) { int VAR_0=10; int VAR_1= 5; /* Avant l’échange du contenu des variables */ FUNC_1("Variable 1: %d \n", VAR_0); /*  Variable 1: 10 */ FUNC_1("Variable 2: %d \n", VAR_1); /*  Variable 2: 5 */ /* Echange du contenu des variables */ #ifdef i386 asm volatile ("xchg %0, %1" // ref : https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Extended-Asm : "+r" (VAR_0) // sup : https://gcc.gnu.org/onlinedocs/gcc/Multi-Alternative.html#Multi-Alternative : "g" (VAR_1)); #else { int copie = VAR_0; VAR_0 = VAR_1; VAR_1 = copie; } #endif /* Après l’échange du contenu des variables */ FUNC_1("Variable 1: %d \n", VAR_0); /*  Variable 1: 5 */ FUNC_1("Variable 2: %d \n", VAR_1); /*  Variable 2: 10 */ exit(VAR_2); }
0.471659
{'IMPORT_0': 'stdio.h', 'FUNC_0': 'main', 'VAR_0': 'variable1', 'VAR_1': 'variable2', 'FUNC_1': 'printf', 'VAR_2': 'EXIT_SUCCESS'}
// Check that array values are correct depending on type of elements jboolean verify_array(const void *array, jvmtiPrimitiveType type, jint length) { void *expected_array; switch(type) { case JVMTI_PRIMITIVE_TYPE_BOOLEAN: expected_array = (void*)BOOLEAN_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_CHAR: expected_array = (void*)CHAR_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_BYTE: expected_array = (void*)BYTE_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_SHORT: expected_array = (void*)SHORT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_INT: expected_array = (void*)INT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_LONG: expected_array = (void*)LONG_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_FLOAT: expected_array = (void*)FLOAT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_DOUBLE: expected_array = (void*)DOUBLE_ARRAY; break; default: NSK_COMPLAIN0("Unexpected type of array's elements.\n"); return JNI_FALSE; } return memcmp(expected_array,array,length) == 0; }
// Check that array values are correct depending on type of elements jboolean verify_array(const void *array, jvmtiPrimitiveType type, jint length) { void *expected_array; switch(type) { case JVMTI_PRIMITIVE_TYPE_BOOLEAN: expected_array = (void*)BOOLEAN_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_CHAR: expected_array = (void*)CHAR_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_BYTE: expected_array = (void*)BYTE_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_SHORT: expected_array = (void*)SHORT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_INT: expected_array = (void*)INT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_LONG: expected_array = (void*)LONG_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_FLOAT: expected_array = (void*)FLOAT_ARRAY; break; case JVMTI_PRIMITIVE_TYPE_DOUBLE: expected_array = (void*)DOUBLE_ARRAY; break; default: NSK_COMPLAIN0("Unexpected type of array's elements.\n"); return JNI_FALSE; } return memcmp(expected_array,array,length) == 0; }
0.011984
{}
unsigned char __src_osax_payload[] = { 0xcf, 0xfa, 0xed, 0xfe, 0x07, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x28, 0x0b, 0x00, 0x00, 0x85, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x56, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x58, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x74, 0x79, 0x70, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x75, 0x6e, 0x77, 0x69, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x7f, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x58, 0x04, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6e, 0x6c, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x5f, 0x70, 0x74, 0x72, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x67, 0x6f, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6c, 0x61, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x5f, 0x70, 0x74, 0x72, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x82, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x66, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x83, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6e, 0x6c, 0x63, 0x6c, 0x73, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x85, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x73, 0x65, 0x6c, 0x72, 0x65, 0x66, 0x73, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x72, 0x65, 0x66, 0x73, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x86, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x62, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x45, 0x44, 0x49, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x2f, 0x73, 0x72, 0x63, 0x2f, 0x6f, 0x73, 0x61, 0x78, 0x2f, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x90, 0x00, 0x00, 0xc8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x91, 0x00, 0x00, 0xd0, 0x06, 0x00, 0x00, 0xb8, 0x98, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x40, 0x9a, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0xc0, 0xa4, 0x00, 0x00, 0xf0, 0x0a, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xa2, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x7b, 0xe3, 0xb1, 0xc2, 0xe4, 0x91, 0x33, 0xae, 0xb0, 0x5e, 0xf6, 0x9b, 0x27, 0x90, 0xff, 0x32, 0x24, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x0a, 0x00, 0x04, 0x0f, 0x0a, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x61, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x64, 0x01, 0x05, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x75, 0x73, 0x72, 0x2f, 0x6c, 0x69, 0x62, 0x2f, 0x6c, 0x69, 0x62, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x42, 0x2e, 0x64, 0x79, 0x6c, 0x69, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x81, 0x8b, 0x06, 0x00, 0x00, 0x96, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x4b, 0x05, 0x00, 0x00, 0x40, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x81, 0x8b, 0x06, 0x00, 0x00, 0x2c, 0x01, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x43, 0x2f, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x75, 0x73, 0x72, 0x2f, 0x6c, 0x69, 0x62, 0x2f, 0x6c, 0x69, 0x62, 0x6f, 0x62, 0x6a, 0x63, 0x2e, 0x41, 0x2e, 0x64, 0x79, 0x6c, 0x69, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x9a, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x40, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x25, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x26, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x27, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0x78, 0x10, 0x03, 0xb9, 0x00, 0x8f, 0x00, 0x00, 0xb8, 0x00, 0x9a, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0xb8, 0x10, 0x0e, 0x00, 0x00, 0x5d, 0xc3, 0xb8, 0x00, 0x80, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x7f, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x67, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x4f, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x4d, 0x10, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x21, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x2b, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x21, 0x48, 0x83, 0x79, 0x10, 0x03, 0xb9, 0x10, 0xdb, 0x37, 0x00, 0xb8, 0x00, 0xf5, 0x36, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0xb8, 0x00, 0x9b, 0x49, 0x00, 0x48, 0x83, 0x79, 0x10, 0x06, 0x74, 0x02, 0x31, 0xc0, 0x5d, 0xc3, 0xb8, 0x00, 0x00, 0x31, 0x00, 0x5d, 0xc3, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x4d, 0x10, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x1a, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x24, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x1a, 0xb8, 0x00, 0x75, 0x05, 0x00, 0x48, 0x83, 0x79, 0x10, 0x03, 0x7e, 0x0e, 0xeb, 0x0e, 0xb8, 0x00, 0x96, 0x05, 0x00, 0x48, 0x83, 0x79, 0x10, 0x06, 0x74, 0x02, 0x31, 0xc0, 0x5d, 0xc3, 0xb8, 0x00, 0x30, 0x05, 0x00, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x29, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x2c, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x2f, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x86, 0x3e, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x99, 0x3f, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x78, 0x41, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x79, 0x40, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0xff, 0x67, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x25, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x24, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x37, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xe4, 0x44, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xfd, 0x45, 0x00, 0x00, 0xeb, 0x1c, 0x48, 0x8d, 0x05, 0xfc, 0x4c, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x06, 0x47, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xa8, 0x49, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x25, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x24, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x37, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x8d, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xa6, 0x4e, 0x00, 0x00, 0xeb, 0x1c, 0x48, 0x8d, 0x05, 0x0b, 0x53, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xdf, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x2d, 0x52, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x3a, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x1b, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x3e, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x6c, 0x53, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x85, 0x54, 0x00, 0x00, 0xeb, 0x13, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xc7, 0x55, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x33, 0x58, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x06, 0x75, 0x09, 0x48, 0x8d, 0x05, 0xeb, 0x58, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x1c, 0x48, 0x83, 0xf9, 0x0f, 0x74, 0x2a, 0x48, 0x83, 0xf9, 0x0e, 0x75, 0x20, 0x48, 0x83, 0x78, 0x10, 0x03, 0x7e, 0x19, 0x48, 0x8d, 0x05, 0x99, 0x5a, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x06, 0x75, 0x09, 0x48, 0x8d, 0x05, 0x94, 0x5b, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x68, 0x59, 0x00, 0x00, 0x5d, 0xc3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0x90, 0x04, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x87, 0x63, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd8, 0x48, 0x8d, 0x3d, 0x69, 0x66, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x8c, 0x38, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xab, 0x69, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x44, 0x69, 0x00, 0x00, 0xff, 0x15, 0x6e, 0x63, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xb5, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x15, 0x36, 0x69, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc6, 0xe8, 0xe9, 0x38, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xc0, 0xf3, 0x48, 0x83, 0xf8, 0x03, 0x0f, 0x83, 0x9f, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x4a, 0x60, 0x00, 0x00, 0xe8, 0xa4, 0x38, 0x00, 0x00, 0x4c, 0x8b, 0x60, 0x18, 0xc7, 0x85, 0x5c, 0xfb, 0xff, 0xff, 0x00, 0x04, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x5c, 0xfb, 0xff, 0xff, 0xe8, 0x2f, 0x38, 0x00, 0x00, 0x49, 0xc7, 0xc6, 0xff, 0xff, 0xff, 0xff, 0x85, 0xc0, 0x0f, 0x84, 0xc3, 0x01, 0x00, 0x00, 0x4d, 0x01, 0xe6, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x0f, 0x84, 0xf4, 0x01, 0x00, 0x00, 0x48, 0x83, 0xf8, 0x0e, 0x0f, 0x84, 0xfa, 0x01, 0x00, 0x00, 0x48, 0x83, 0xf8, 0x0f, 0x0f, 0x85, 0x12, 0x02, 0x00, 0x00, 0x49, 0x8d, 0xbe, 0x00, 0x80, 0x00, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0xd0, 0x3b, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xe3, 0x3c, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xe9, 0xf1, 0x01, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0xc7, 0x85, 0x70, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xf4, 0x65, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x97, 0x37, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x9c, 0x5b, 0x00, 0x00, 0xe8, 0xf1, 0x37, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xe8, 0x00, 0x00, 0x00, 0x4c, 0x8d, 0x05, 0xb9, 0x5b, 0x00, 0x00, 0x48, 0x8d, 0x9d, 0x60, 0xfb, 0xff, 0xff, 0xbe, 0xff, 0x00, 0x00, 0x00, 0xb9, 0xff, 0x00, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xba, 0x00, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc1, 0x31, 0xc0, 0xe8, 0x82, 0x37, 0x00, 0x00, 0xc6, 0x85, 0x61, 0xff, 0xff, 0xff, 0x01, 0x48, 0x8d, 0xbd, 0x62, 0xff, 0xff, 0xff, 0x4c, 0x8d, 0x05, 0x57, 0x5f, 0x00, 0x00, 0xbe, 0x68, 0x00, 0x00, 0x00, 0xb9, 0x68, 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x49, 0x89, 0xd9, 0x31, 0xc0, 0xe8, 0x54, 0x37, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xe8, 0xf4, 0x37, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x00, 0x00, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x31, 0xd2, 0xe8, 0xcb, 0x37, 0x00, 0x00, 0x89, 0x05, 0xd5, 0x68, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x3a, 0x65, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x60, 0x48, 0x8d, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x89, 0xc7, 0xba, 0x6a, 0x00, 0x00, 0x00, 0xe8, 0x3a, 0x37, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x48, 0x48, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0xbe, 0x80, 0x01, 0x00, 0x00, 0xe8, 0x2a, 0x37, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x33, 0x8b, 0x3d, 0x96, 0x68, 0x00, 0x00, 0xbe, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x34, 0x37, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x1e, 0x48, 0x8d, 0x3d, 0x84, 0x68, 0x00, 0x00, 0x48, 0x8d, 0x15, 0x55, 0x06, 0x00, 0x00, 0x31, 0xf6, 0x31, 0xc9, 0xe8, 0x48, 0x37, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xb5, 0x64, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xeb, 0x2a, 0xe8, 0x9b, 0x36, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x19, 0x48, 0x8b, 0x35, 0x47, 0x67, 0x00, 0x00, 0x48, 0x89, 0xc7, 0xff, 0x15, 0x76, 0x61, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x85, 0xf5, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x3d, 0x66, 0x64, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x69, 0x36, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x48, 0x61, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xd8, 0x0f, 0x85, 0x79, 0x04, 0x00, 0x00, 0x48, 0x81, 0xc4, 0x90, 0x04, 0x00, 0x00, 0x5b, 0x41, 0x5c, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x82, 0x36, 0x00, 0x00, 0x45, 0x31, 0xf6, 0x85, 0xc0, 0x0f, 0x84, 0x2d, 0xfe, 0xff, 0xff, 0x4c, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0x31, 0xdb, 0x66, 0x90, 0x89, 0xdf, 0xe8, 0x59, 0x36, 0x00, 0x00, 0x48, 0x89, 0xc7, 0x4c, 0x89, 0xfe, 0xe8, 0xde, 0x36, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x25, 0x04, 0x00, 0x00, 0xff, 0xc3, 0xe8, 0x4b, 0x36, 0x00, 0x00, 0x39, 0xc3, 0x72, 0xdb, 0xe9, 0xf8, 0xfd, 0xff, 0xff, 0x49, 0x8d, 0xbe, 0x10, 0x0e, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xfe, 0x3c, 0x00, 0x00, 0xeb, 0x27, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0xb8, 0x00, 0x8f, 0x00, 0x00, 0xbf, 0x00, 0x9a, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf8, 0x4c, 0x01, 0xf7, 0x48, 0x8d, 0x35, 0xe6, 0x3b, 0x00, 0x00, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0xfa, 0x03, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x5e, 0x48, 0x89, 0xc3, 0x44, 0x8b, 0x20, 0x48, 0x89, 0xc1, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x42, 0x64, 0x00, 0x00, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0xe8, 0x9c, 0x35, 0x00, 0x00, 0x4a, 0x8b, 0x7c, 0x23, 0x04, 0xff, 0x15, 0x97, 0x60, 0x00, 0x00, 0x48, 0x89, 0x05, 0x18, 0x67, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x28, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x32, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x3c, 0x49, 0x8d, 0xbe, 0x00, 0x60, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x65, 0x3d, 0x00, 0x00, 0xeb, 0x2f, 0x48, 0x8d, 0x3d, 0xd0, 0x63, 0x00, 0x00, 0xe9, 0xb7, 0xfd, 0xff, 0xff, 0x49, 0x8d, 0xbe, 0x00, 0x70, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x35, 0x3f, 0x00, 0x00, 0xeb, 0x13, 0x49, 0x8d, 0xbe, 0x00, 0x70, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x2f, 0x3e, 0x00, 0x00, 0xeb, 0x03, 0x4c, 0x89, 0xf7, 0x4c, 0x89, 0xfe, 0xe8, 0x60, 0x03, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x34, 0x48, 0x89, 0xc3, 0x44, 0x8b, 0x38, 0x48, 0x89, 0xc1, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0xe8, 0x63, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0xe8, 0x05, 0x35, 0x00, 0x00, 0x4a, 0x8b, 0x7c, 0x3b, 0x04, 0xff, 0x15, 0x00, 0x60, 0x00, 0x00, 0x48, 0x89, 0x05, 0x89, 0x66, 0x00, 0x00, 0xeb, 0x19, 0x48, 0xc7, 0x05, 0x7c, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x95, 0x63, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0xd8, 0x34, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x39, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x56, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x23, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x8d, 0x3f, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xa6, 0x40, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x38, 0x49, 0x8d, 0xbe, 0x00, 0x50, 0x33, 0x00, 0x48, 0x8d, 0x35, 0x9a, 0x47, 0x00, 0x00, 0xeb, 0x28, 0x49, 0x8d, 0xbe, 0x00, 0xe5, 0x27, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x9a, 0x41, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x3c, 0x44, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0x95, 0x02, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x60, 0x63, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x3d, 0x34, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0x2a, 0x63, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x2d, 0x34, 0x00, 0x00, 0x48, 0x89, 0x1d, 0xc4, 0x65, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x39, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x56, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x32, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0xe4, 0x47, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xfd, 0x48, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x38, 0x49, 0x8d, 0xbe, 0x00, 0x50, 0x49, 0x00, 0x48, 0x8d, 0x35, 0x57, 0x4d, 0x00, 0x00, 0xeb, 0x28, 0x49, 0x8d, 0xbe, 0x00, 0xfb, 0x37, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x21, 0x4a, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x6f, 0x4c, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0xe3, 0x01, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0xee, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x8b, 0x33, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0xb8, 0x62, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x7b, 0x33, 0x00, 0x00, 0x48, 0x89, 0x1d, 0x1a, 0x65, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x4a, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x3d, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x31, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x71, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x4e, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x4c, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x06, 0x75, 0x10, 0x49, 0x8d, 0xbe, 0x00, 0x9b, 0x49, 0x00, 0x48, 0x8d, 0x35, 0xfb, 0x52, 0x00, 0x00, 0xeb, 0x32, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xeb, 0x2b, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0xb8, 0x10, 0xdb, 0x37, 0x00, 0xbf, 0x00, 0xf5, 0x36, 0x00, 0x48, 0x0f, 0x4f, 0xf8, 0x48, 0x8d, 0x05, 0x96, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x02, 0x52, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0x4c, 0x01, 0xf7, 0xe8, 0x1d, 0x01, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x68, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0xc5, 0x32, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0x32, 0x62, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0xb5, 0x32, 0x00, 0x00, 0x48, 0x89, 0x1d, 0x5c, 0x64, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x1c, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x30, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x44, 0x49, 0x8d, 0xbe, 0x00, 0x30, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x2e, 0x53, 0x00, 0x00, 0xeb, 0x39, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x06, 0x75, 0x2a, 0x49, 0x8d, 0xbe, 0x00, 0x96, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x33, 0x55, 0x00, 0x00, 0xeb, 0x1f, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x7e, 0x10, 0x49, 0x8d, 0xbe, 0x00, 0x75, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x0e, 0x54, 0x00, 0x00, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0x7d, 0x00, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x08, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x25, 0x32, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0xd2, 0x61, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x15, 0x32, 0x00, 0x00, 0x48, 0x89, 0x1d, 0xc4, 0x63, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x02, 0x5a, 0x00, 0x00, 0xe8, 0x8c, 0x32, 0x00, 0x00, 0x48, 0x89, 0x05, 0xb9, 0x63, 0x00, 0x00, 0xe8, 0xa2, 0x31, 0x00, 0x00, 0x89, 0x05, 0xb6, 0x63, 0x00, 0x00, 0xe9, 0x54, 0xfa, 0xff, 0xff, 0x89, 0xdf, 0xe8, 0x20, 0x32, 0x00, 0x00, 0x49, 0x89, 0xc6, 0xe9, 0xd4, 0xf9, 0xff, 0xff, 0xe8, 0x07, 0x32, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x8b, 0x05, 0x98, 0x5c, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x31, 0xc0, 0x48, 0x85, 0xff, 0x0f, 0x84, 0x1e, 0x01, 0x00, 0x00, 0x48, 0x89, 0xf3, 0x48, 0x85, 0xf6, 0x0f, 0x84, 0x12, 0x01, 0x00, 0x00, 0x48, 0x89, 0x7d, 0xc0, 0x48, 0x89, 0xdf, 0xe8, 0x54, 0x32, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x49, 0xff, 0xc7, 0x48, 0xb9, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x4c, 0x89, 0xf8, 0x48, 0xf7, 0xe1, 0x49, 0x89, 0xd5, 0x48, 0x89, 0x65, 0xc8, 0x49, 0xd1, 0xed, 0x49, 0x8d, 0x45, 0x0f, 0x48, 0x83, 0xe0, 0xf0, 0x49, 0x89, 0xe4, 0x49, 0x29, 0xc4, 0x4c, 0x89, 0xe4, 0x49, 0x89, 0xe6, 0x49, 0x29, 0xc6, 0x4c, 0x89, 0xf4, 0x4c, 0x89, 0xe7, 0x4c, 0x89, 0xee, 0xe8, 0x61, 0x31, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x4c, 0x89, 0xee, 0xe8, 0x56, 0x31, 0x00, 0x00, 0x49, 0x83, 0xff, 0x03, 0x72, 0x5d, 0x48, 0xff, 0xc3, 0x31, 0xc0, 0xbe, 0xd0, 0x00, 0x00, 0x00, 0xeb, 0x1b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x88, 0x14, 0x07, 0x48, 0x83, 0xc3, 0x03, 0x48, 0xff, 0xc0, 0x49, 0x39, 0xc5, 0x76, 0x36, 0x0f, 0xb6, 0x4b, 0xff, 0xb2, 0x01, 0x4c, 0x89, 0xf7, 0x80, 0xf9, 0x3f, 0x74, 0xe3, 0x31, 0xd2, 0x80, 0xf9, 0x3a, 0x0f, 0x9d, 0xc2, 0x8d, 0x14, 0xd2, 0x00, 0xca, 0xc0, 0xe2, 0x04, 0x0f, 0xb6, 0x0b, 0x80, 0xf9, 0x3a, 0xbf, 0xc9, 0x00, 0x00, 0x00, 0x0f, 0x4c, 0xfe, 0x00, 0xca, 0x40, 0x00, 0xfa, 0x4c, 0x89, 0xe7, 0xeb, 0xbb, 0x48, 0x8b, 0x75, 0xc0, 0x48, 0x89, 0xf0, 0x49, 0x83, 0xff, 0x03, 0x72, 0x3f, 0x31, 0xc9, 0x41, 0x80, 0x3c, 0x0e, 0x00, 0x74, 0x14, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x48, 0xff, 0xc1, 0x49, 0x39, 0xcd, 0x76, 0x26, 0x41, 0x80, 0x3c, 0x0e, 0x00, 0x75, 0xf1, 0x8a, 0x14, 0x08, 0x41, 0x3a, 0x14, 0x0c, 0x74, 0xe8, 0x48, 0xff, 0xc0, 0x48, 0x89, 0xc1, 0x48, 0x29, 0xf1, 0x48, 0x81, 0xf9, 0xa0, 0x86, 0x02, 0x00, 0x72, 0xc2, 0x31, 0xf6, 0xeb, 0x03, 0x48, 0x89, 0xc6, 0x48, 0x8b, 0x65, 0xc8, 0x48, 0x89, 0xf0, 0x48, 0x8b, 0x0d, 0x61, 0x5b, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xd0, 0x75, 0x0f, 0x48, 0x8d, 0x65, 0xd8, 0x5b, 0x41, 0x5c, 0x41, 0x5d, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x8e, 0x30, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0x98, 0x06, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x5d, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0xb8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x17, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x19, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0x58, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x13, 0x61, 0x00, 0x00, 0x48, 0x89, 0x45, 0xb8, 0x48, 0x8b, 0x05, 0x18, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0xb0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xda, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0x00, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xc4, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0xa8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xce, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0x08, 0xff, 0xff, 0xff, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xa1, 0x5a, 0x00, 0x00, 0xe9, 0xc5, 0x00, 0x00, 0x00, 0x31, 0xc0, 0x48, 0x83, 0x3d, 0x4a, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x95, 0xc0, 0x8d, 0x48, 0x02, 0x48, 0x83, 0x3d, 0x44, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc8, 0x48, 0x83, 0x3d, 0x41, 0x61, 0x00, 0x00, 0x00, 0x8d, 0x41, 0x04, 0x0f, 0x44, 0xc1, 0x8d, 0x48, 0x08, 0x48, 0x83, 0x3d, 0x38, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc8, 0x89, 0xc8, 0x83, 0xc8, 0x10, 0x48, 0x83, 0x3d, 0x30, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc1, 0x89, 0xc3, 0x83, 0xcb, 0x20, 0x48, 0x83, 0x3d, 0x28, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xd8, 0xbe, 0xf4, 0x03, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x4c, 0xf9, 0xff, 0xff, 0xe8, 0x7c, 0x2f, 0x00, 0x00, 0x66, 0xc7, 0x85, 0x44, 0xf9, 0xff, 0xff, 0x31, 0x34, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x31, 0x2e, 0x30, 0x2e, 0x89, 0x9d, 0x47, 0xf9, 0xff, 0xff, 0xc6, 0x85, 0x46, 0xf9, 0xff, 0xff, 0x00, 0xc6, 0x85, 0x4b, 0xf9, 0xff, 0xff, 0x0a, 0xba, 0x0c, 0x00, 0x00, 0x00, 0x8b, 0xbd, 0x54, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0x31, 0xc9, 0xe8, 0xcc, 0x2f, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x8b, 0x9d, 0x54, 0xff, 0xff, 0xff, 0x89, 0xdf, 0xbe, 0x02, 0x00, 0x00, 0x00, 0xe8, 0xbc, 0x2f, 0x00, 0x00, 0x89, 0xdf, 0xe8, 0x5b, 0x2f, 0x00, 0x00, 0x8b, 0x3d, 0xc5, 0x60, 0x00, 0x00, 0x31, 0xf6, 0x31, 0xd2, 0xe8, 0x3a, 0x2f, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0xec, 0xba, 0x00, 0x01, 0x00, 0x00, 0x89, 0x85, 0x54, 0xff, 0xff, 0xff, 0x89, 0xc7, 0x4c, 0x89, 0xee, 0x31, 0xc9, 0xe8, 0x7e, 0x2f, 0x00, 0x00, 0x85, 0xc0, 0x7e, 0xb8, 0x48, 0x98, 0xc6, 0x84, 0x05, 0x40, 0xfd, 0xff, 0xff, 0x00, 0x8a, 0x85, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xeb, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x35, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xa1, 0x2e, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x1a, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x41, 0x89, 0xde, 0x45, 0x29, 0xee, 0x31, 0xff, 0xeb, 0x16, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xde, 0x45, 0x29, 0xee, 0x85, 0xff, 0x0f, 0x88, 0xf7, 0x00, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x21, 0xc8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x45, 0x85, 0xf6, 0x0f, 0x84, 0x11, 0xff, 0xff, 0xff, 0x44, 0x89, 0xf0, 0xb1, 0x68, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x31, 0x56, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x75, 0x21, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xe3, 0x48, 0x39, 0xc2, 0x72, 0x08, 0x84, 0xc9, 0x0f, 0x84, 0x2a, 0xfe, 0xff, 0xff, 0x80, 0xbd, 0x40, 0xfd, 0xff, 0xff, 0x73, 0x0f, 0x85, 0xfc, 0x00, 0x00, 0x00, 0x41, 0x83, 0xfe, 0x02, 0x0f, 0x92, 0xc1, 0x41, 0x83, 0xfe, 0x01, 0x0f, 0x87, 0x8f, 0x00, 0x00, 0x00, 0x31, 0xd2, 0x84, 0xc9, 0x0f, 0x84, 0xe1, 0x00, 0x00, 0x00, 0x84, 0xd2, 0x0f, 0x84, 0xd9, 0x00, 0x00, 0x00, 0x48, 0x83, 0x3d, 0x46, 0x5f, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x98, 0xfe, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x48, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xd4, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x2d, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xb8, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0xb9, 0x08, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x6c, 0x2d, 0x00, 0x00, 0xe9, 0x05, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x41, 0xfd, 0xff, 0xff, 0x70, 0x75, 0x53, 0x41, 0x83, 0xfe, 0x03, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x5b, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x42, 0xfd, 0xff, 0xff, 0x61, 0x75, 0x3d, 0x41, 0x83, 0xfe, 0x04, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x45, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x43, 0xfd, 0xff, 0xff, 0x63, 0x75, 0x27, 0x41, 0x83, 0xfe, 0x05, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x2f, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x44, 0xfd, 0xff, 0xff, 0x65, 0x75, 0x11, 0x41, 0x83, 0xfe, 0x06, 0x0f, 0x92, 0xc1, 0xb2, 0x01, 0x84, 0xc9, 0x0f, 0x85, 0x1f, 0xff, 0xff, 0xff, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xf4, 0x54, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xfa, 0x54, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x7e, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x75, 0x7a, 0x48, 0x83, 0x3d, 0x22, 0x5e, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x74, 0xfd, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x25, 0x5e, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x64, 0xfd, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x17, 0x09, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x61, 0x2c, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xfb, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0xfc, 0x08, 0x00, 0x00, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x7e, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x75, 0x7a, 0x48, 0x83, 0x3d, 0x72, 0x5d, 0x00, 0x00, 0x00, 0x0f, 0x84, 0xc4, 0xfc, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x7d, 0x5d, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xb4, 0xfc, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x69, 0x0b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x2b, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x4d, 0x0b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0x4e, 0x0b, 0x00, 0x00, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xa0, 0x53, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xa4, 0x53, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0xc0, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0xa3, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x83, 0x3d, 0xae, 0x5c, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x00, 0xfc, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xa9, 0x5c, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xf0, 0xfb, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xb1, 0x5c, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xe0, 0xfb, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x50, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x62, 0x0f, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd1, 0x2a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x46, 0x0f, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x3f, 0x0f, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x44, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x2a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x28, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x21, 0x08, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x33, 0x52, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x38, 0x52, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x85, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x6c, 0x84, 0xc9, 0x75, 0x68, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x07, 0x0c, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x29, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xeb, 0x0b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0xba, 0x00, 0x40, 0x00, 0x00, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xe4, 0x0b, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x7a, 0x13, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe1, 0x28, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x5e, 0x13, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x57, 0x13, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xfc, 0x50, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x07, 0x51, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xca, 0x14, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x28, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xae, 0x14, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xa7, 0x14, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x14, 0x15, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x27, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xf8, 0x14, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xf1, 0x14, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xcb, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xd2, 0x4f, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xee, 0x19, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe1, 0x26, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xd2, 0x19, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xcb, 0x19, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x8b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x72, 0x84, 0xc9, 0x75, 0x6e, 0x48, 0x83, 0x3d, 0x0e, 0x58, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x38, 0xf7, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x48, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x91, 0x1c, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x26, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x75, 0x1c, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0x76, 0x1c, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x8b, 0x4e, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x92, 0x4e, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x0f, 0x1b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x25, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xf3, 0x1a, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xec, 0x1a, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0xac, 0x02, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x8f, 0x02, 0x00, 0x00, 0x84, 0xc9, 0x0f, 0x85, 0x87, 0x02, 0x00, 0x00, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xab, 0x1b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x24, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x8f, 0x1b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x88, 0x1b, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xbd, 0x24, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0xe5, 0x1d, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x6c, 0xf5, 0xff, 0xff, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x43, 0x56, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xf7, 0x23, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x3d, 0xf9, 0x55, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xa8, 0xfe, 0xff, 0xff, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x4e, 0x4f, 0x00, 0x00, 0x49, 0x89, 0xce, 0xff, 0xd1, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0x41, 0xff, 0xd6, 0x48, 0x89, 0x5d, 0xc8, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x39, 0xc3, 0x0f, 0x84, 0x4e, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xba, 0x55, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x4c, 0x89, 0x7d, 0xb0, 0x4c, 0x89, 0xfa, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x0b, 0x4f, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x49, 0x89, 0xc6, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x87, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x45, 0x31, 0xed, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x08, 0x4c, 0x89, 0xf7, 0xe8, 0x2d, 0x24, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xe8, 0x48, 0x89, 0xdf, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0xff, 0x15, 0x82, 0x4e, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x0f, 0x84, 0xc8, 0x06, 0x00, 0x00, 0x49, 0xff, 0xc5, 0x4d, 0x39, 0xfd, 0x72, 0xc0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x4f, 0x4e, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x75, 0x83, 0x4c, 0x8b, 0x25, 0x19, 0x4e, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0xe9, 0x55, 0x18, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x4a, 0x23, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x72, 0x1c, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x70, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x9d, 0x70, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x78, 0xff, 0xff, 0xff, 0x48, 0xb9, 0x00, 0x00, 0x00, 0x20, 0x20, 0x00, 0x00, 0x00, 0x48, 0x89, 0x4d, 0x80, 0x8b, 0x3d, 0xb5, 0x54, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x69, 0x22, 0x00, 0x00, 0x48, 0x89, 0x45, 0x88, 0x48, 0x8b, 0x05, 0xba, 0x4d, 0x00, 0x00, 0x48, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x48, 0xf9, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xa8, 0x1c, 0x00, 0x00, 0x48, 0x89, 0x85, 0x50, 0xf9, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xe2, 0x4f, 0x00, 0x00, 0x48, 0x89, 0x85, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x8d, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xf3, 0x22, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xbe, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x98, 0x22, 0x00, 0x00, 0xe9, 0x67, 0xf3, 0xff, 0xff, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x53, 0xf3, 0xff, 0xff, 0x48, 0x89, 0xf2, 0x48, 0x8d, 0x0d, 0x29, 0x4b, 0x00, 0x00, 0x0f, 0xb6, 0x0c, 0x0e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xd8, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x2f, 0xf3, 0xff, 0xff, 0x84, 0xc9, 0x0f, 0x85, 0x27, 0xf3, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x40, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xff, 0x19, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x21, 0x22, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xe3, 0x19, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xdc, 0x19, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x1f, 0x0f, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x97, 0x4c, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0xcb, 0x1f, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x92, 0x13, 0x00, 0x00, 0x41, 0x89, 0xc7, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x80, 0xfe, 0xff, 0xff, 0x0f, 0x29, 0x85, 0x70, 0xfe, 0xff, 0xff, 0x8b, 0x3d, 0x49, 0x53, 0x00, 0x00, 0x89, 0xc6, 0x48, 0x8d, 0x95, 0x70, 0xfe, 0xff, 0xff, 0xe8, 0x03, 0x21, 0x00, 0x00, 0xf2, 0x0f, 0x10, 0x85, 0x70, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x8d, 0x78, 0xfe, 0xff, 0xff, 0x0f, 0x28, 0x15, 0xf4, 0x24, 0x00, 0x00, 0x0f, 0x57, 0xc2, 0x0f, 0x57, 0xca, 0x48, 0x8d, 0xbd, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xb0, 0x20, 0x00, 0x00, 0x8b, 0x3d, 0x0c, 0x53, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0xe8, 0xd1, 0x20, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0x68, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x50, 0xf9, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x48, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x7d, 0x98, 0x4c, 0x8b, 0x4d, 0x90, 0x4c, 0x8b, 0x55, 0x88, 0x4c, 0x8b, 0x5d, 0x80, 0x4c, 0x8b, 0xa5, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x41, 0x55, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0x57, 0x41, 0x51, 0x41, 0x52, 0x41, 0x53, 0x50, 0x41, 0x54, 0xe8, 0x30, 0x20, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x60, 0x84, 0xc0, 0x74, 0x63, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x97, 0x4b, 0x00, 0x00, 0x74, 0x45, 0x4c, 0x89, 0xf3, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xdb, 0x0e, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x20, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xc3, 0x0e, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xf5, 0x31, 0xff, 0xe9, 0xbc, 0x0e, 0x00, 0x00, 0x8b, 0x3d, 0x2d, 0x52, 0x00, 0x00, 0x4c, 0x8b, 0x8d, 0x68, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x50, 0xf9, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x48, 0xf9, 0xff, 0xff, 0xe9, 0x12, 0x12, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x48, 0x20, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x70, 0x19, 0x00, 0x00, 0x8b, 0x3d, 0xda, 0x51, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x48, 0x89, 0xc6, 0xe8, 0x8a, 0x1f, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0xc5, 0x51, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xa9, 0x1f, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x3d, 0x7b, 0x51, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xda, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xd0, 0x4a, 0x00, 0x00, 0x49, 0x89, 0xce, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd6, 0x48, 0x85, 0xc0, 0x48, 0x89, 0x9d, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0x7d, 0xc0, 0x0f, 0x84, 0x82, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc5, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x38, 0x4c, 0x8b, 0x35, 0x66, 0x50, 0x00, 0x00, 0x45, 0x31, 0xe4, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x38, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xd0, 0xe8, 0xdc, 0x1f, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xe0, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xf6, 0x31, 0xc0, 0xff, 0x15, 0x35, 0x4a, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x34, 0x49, 0xff, 0xc4, 0x4d, 0x39, 0xec, 0x72, 0xc7, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xd0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x05, 0x4a, 0x00, 0x00, 0x49, 0x89, 0xc5, 0x48, 0x85, 0xc0, 0x75, 0x88, 0x31, 0xdb, 0x4c, 0x8b, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe8, 0x4c, 0x19, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x05, 0xca, 0x49, 0x00, 0x00, 0x48, 0x89, 0x85, 0x18, 0xff, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x58, 0x1b, 0x00, 0x00, 0x48, 0x89, 0x85, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x22, 0x4c, 0x00, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x38, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xbd, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x5d, 0xc8, 0x48, 0x89, 0x9d, 0x48, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x8b, 0x49, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x18, 0xff, 0xff, 0xff, 0xe8, 0xf1, 0x1e, 0x00, 0x00, 0x48, 0x39, 0x5d, 0xc0, 0x0f, 0x85, 0x15, 0x01, 0x00, 0x00, 0x4c, 0x89, 0x7d, 0xc0, 0x8b, 0x3d, 0x43, 0x50, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0xe8, 0x27, 0x1e, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x48, 0x8b, 0x3d, 0xf8, 0x4f, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x4d, 0x49, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x7b, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x28, 0x4c, 0x8b, 0x25, 0xef, 0x4e, 0x00, 0x00, 0x45, 0x31, 0xf6, 0x0f, 0x1f, 0x40, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x28, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xd0, 0xe8, 0x6c, 0x1e, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xf0, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xe6, 0x31, 0xc0, 0xff, 0x15, 0xc5, 0x48, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x34, 0x49, 0xff, 0xc6, 0x4d, 0x39, 0xfe, 0x72, 0xc7, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xd0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x95, 0x48, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x75, 0x8f, 0x31, 0xdb, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x92, 0x48, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8d, 0x35, 0x62, 0x46, 0x00, 0x00, 0x48, 0x89, 0xc2, 0xe8, 0x15, 0x1e, 0x00, 0x00, 0x4c, 0x8b, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe9, 0xfb, 0x07, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x5a, 0x0f, 0x00, 0x00, 0xba, 0x00, 0x40, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x1f, 0x48, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x21, 0xd0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x54, 0x1b, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xfb, 0x47, 0x00, 0x00, 0x0f, 0x84, 0x05, 0xee, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x44, 0x89, 0x7d, 0xc8, 0x74, 0x44, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x3b, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x01, 0x1d, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x23, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x4d, 0x89, 0xf7, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xe9, 0x1c, 0x08, 0x00, 0x00, 0x48, 0x85, 0xdb, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0x7f, 0x47, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0x0f, 0x84, 0xba, 0x11, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x26, 0x4e, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x18, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x7a, 0x45, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x10, 0x1d, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x18, 0xff, 0xff, 0xff, 0x48, 0x89, 0x45, 0xc0, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xfe, 0x00, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x45, 0xa0, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x24, 0x47, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xbd, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x45, 0x31, 0xe4, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x48, 0x8b, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x48, 0x39, 0x08, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xc0, 0xe8, 0x75, 0x1c, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x34, 0xe0, 0x48, 0xc7, 0x85, 0x18, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8d, 0x35, 0xb2, 0x44, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x5b, 0x1c, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x18, 0xff, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0xff, 0x15, 0xa5, 0x46, 0x00, 0x00, 0x48, 0x3b, 0x45, 0xd0, 0x0f, 0x84, 0xbd, 0x0f, 0x00, 0x00, 0x49, 0xff, 0xc4, 0x4d, 0x39, 0xfc, 0x72, 0x93, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x71, 0x46, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x44, 0x46, 0x00, 0x00, 0x0f, 0x85, 0x54, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x7d, 0xb0, 0xe9, 0x7a, 0x10, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x47, 0x0e, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x19, 0x46, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x41, 0xbd, 0x00, 0x40, 0x00, 0x00, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x77, 0x14, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x3d, 0xe4, 0x45, 0x00, 0x00, 0x74, 0x4e, 0x4c, 0x89, 0xf3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x87, 0x3c, 0x44, 0x21, 0xe8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x30, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x1a, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0xb1, 0x0d, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x6e, 0x45, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xe8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0xd2, 0x13, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x4c, 0x8b, 0x35, 0x3f, 0x45, 0x00, 0x00, 0x74, 0x49, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x86, 0x3c, 0x44, 0x21, 0xe8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x51, 0x1a, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xfb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x29, 0x1a, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x21, 0x17, 0x00, 0x00, 0x89, 0xc3, 0x8b, 0x3d, 0xb9, 0x4b, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xc8, 0xe8, 0x6c, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x71, 0x4b, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0x45, 0xb0, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x4c, 0x8b, 0x3d, 0xc2, 0x44, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x85, 0xc0, 0x89, 0x5d, 0xc0, 0x0f, 0x84, 0x81, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x48, 0x8b, 0x1d, 0x5f, 0x4a, 0x00, 0x00, 0x45, 0x31, 0xed, 0x0f, 0x1f, 0x40, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0xe8, 0xd9, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x3c, 0xe8, 0x4c, 0x89, 0xff, 0x48, 0x89, 0xde, 0x31, 0xc0, 0xff, 0x15, 0x32, 0x44, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x38, 0x49, 0xff, 0xc5, 0x4d, 0x39, 0xf5, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0xff, 0x43, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x89, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xbd, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x7d, 0xb0, 0xe8, 0x44, 0x13, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x8b, 0x3d, 0xab, 0x4a, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xd0, 0xe8, 0x5e, 0x18, 0x00, 0x00, 0x48, 0x89, 0x85, 0xf8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x5c, 0x4a, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xb1, 0x43, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x4c, 0x89, 0xbd, 0x98, 0xfe, 0xff, 0xff, 0x74, 0x7f, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x28, 0x48, 0x8b, 0x1d, 0x4d, 0x49, 0x00, 0x00, 0x45, 0x31, 0xff, 0x66, 0x90, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x28, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0xe8, 0xc9, 0x18, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x24, 0xf8, 0x4c, 0x89, 0xe7, 0x48, 0x89, 0xde, 0x31, 0xc0, 0xff, 0x15, 0x22, 0x43, 0x00, 0x00, 0x48, 0x39, 0x45, 0xd0, 0x74, 0x38, 0x49, 0xff, 0xc7, 0x4d, 0x39, 0xf7, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0xef, 0x42, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x8b, 0x45, 0x31, 0xe4, 0x48, 0x8b, 0x3d, 0x75, 0x49, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xb0, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xe2, 0x4c, 0x8b, 0x35, 0xcc, 0x42, 0x00, 0x00, 0x41, 0xff, 0xd6, 0x41, 0x89, 0xc7, 0x4c, 0x8b, 0xb5, 0xf8, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe8, 0x17, 0x12, 0x00, 0x00, 0x48, 0x89, 0x85, 0xa0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x41, 0x49, 0x00, 0x00, 0x48, 0x8b, 0x0d, 0x5a, 0x49, 0x00, 0x00, 0x48, 0x8b, 0x9d, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xe6, 0x4c, 0x89, 0xf2, 0x49, 0x89, 0xc5, 0xff, 0xd1, 0x4d, 0x89, 0xf4, 0x48, 0x8b, 0x05, 0x6b, 0x42, 0x00, 0x00, 0x48, 0x89, 0x85, 0x18, 0xff, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x29, 0x15, 0x00, 0x00, 0x48, 0x89, 0x85, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xf3, 0x44, 0x00, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x38, 0xff, 0xff, 0xff, 0x44, 0x89, 0xbd, 0x48, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xb5, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x30, 0x42, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x96, 0x17, 0x00, 0x00, 0x83, 0x7d, 0xc0, 0x00, 0x0f, 0x84, 0xb1, 0x01, 0x00, 0x00, 0x8b, 0x3d, 0xec, 0x48, 0x00, 0x00, 0x48, 0x8b, 0x5d, 0xb0, 0x48, 0x89, 0xde, 0xe8, 0xcc, 0x16, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x9a, 0x48, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xda, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xef, 0x41, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x80, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x4c, 0x8b, 0x2d, 0x91, 0x47, 0x00, 0x00, 0x31, 0xdb, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xc0, 0xe8, 0x0c, 0x17, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x3c, 0xd8, 0x4c, 0x89, 0xff, 0x4c, 0x89, 0xee, 0x31, 0xc0, 0xff, 0x15, 0x65, 0x41, 0x00, 0x00, 0x48, 0x39, 0x85, 0x60, 0xff, 0xff, 0xff, 0x74, 0x35, 0x48, 0xff, 0xc3, 0x4c, 0x39, 0xf3, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x32, 0x41, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x8a, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xff, 0x4c, 0x8b, 0x3d, 0x2d, 0x41, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x48, 0x8b, 0xbd, 0x98, 0xfe, 0xff, 0xff, 0x4c, 0x8d, 0x35, 0xf7, 0x3e, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0xe8, 0xa7, 0x16, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x32, 0x47, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x00, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x55, 0xd0, 0x48, 0x8b, 0x05, 0xe8, 0x40, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x15, 0x47, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x87, 0x47, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x59, 0x15, 0x00, 0x00, 0x8b, 0x3d, 0x79, 0x47, 0x00, 0x00, 0x4c, 0x8b, 0xa5, 0xf8, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x48, 0x8b, 0x55, 0xc8, 0xe8, 0x58, 0x15, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0xf0, 0xfe, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x8b, 0xbd, 0xa0, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0xe8, 0x20, 0x16, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x79, 0x40, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xb0, 0xe8, 0xbe, 0x14, 0x00, 0x00, 0x4c, 0x89, 0xe7, 0xe8, 0xb6, 0x14, 0x00, 0x00, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0x32, 0x40, 0x00, 0x00, 0xe9, 0x3d, 0xe6, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x04, 0x09, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x11, 0x40, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x45, 0x13, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xec, 0x3f, 0x00, 0x00, 0x0f, 0x84, 0xf6, 0xe5, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x49, 0x4c, 0x89, 0xf3, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x3f, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x14, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x27, 0x02, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x28, 0x02, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x4d, 0x89, 0xf7, 0x85, 0xff, 0x0f, 0x88, 0xa7, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x69, 0x3f, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x6b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xeb, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x99, 0x11, 0x00, 0x00, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x45, 0x00, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x36, 0x3f, 0x00, 0x00, 0x44, 0x8b, 0x75, 0xc8, 0x74, 0x4c, 0x4c, 0x89, 0xeb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x19, 0xeb, 0x27, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x41, 0x14, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xeb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xeb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x19, 0x14, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x89, 0xde, 0xe8, 0x11, 0x11, 0x00, 0x00, 0xf2, 0x41, 0x0f, 0x2a, 0xc7, 0xf2, 0x0f, 0x2a, 0xc8, 0xf2, 0x0f, 0x11, 0x85, 0x40, 0xf9, 0xff, 0xff, 0xf2, 0x0f, 0x11, 0x8d, 0x48, 0xf9, 0xff, 0xff, 0x8b, 0x3d, 0x92, 0x45, 0x00, 0x00, 0x44, 0x89, 0xf6, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0x7b, 0x13, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xe4, 0x44, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xb8, 0xfe, 0xff, 0xff, 0x44, 0x89, 0xf2, 0x48, 0x8b, 0x05, 0x9b, 0x3e, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0xc8, 0x44, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x3a, 0x45, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x30, 0x13, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x61, 0x3e, 0x00, 0x00, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0xe9, 0x3d, 0xe4, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x6e, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x11, 0x3e, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x45, 0x11, 0x00, 0x00, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xe6, 0x3d, 0x00, 0x00, 0x0f, 0x84, 0xf0, 0xe3, 0xff, 0xff, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x46, 0x4c, 0x89, 0xf3, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xed, 0x04, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x12, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xd5, 0x04, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xe9, 0xce, 0x04, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc7, 0x12, 0x00, 0x00, 0xe9, 0xe4, 0xf0, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xae, 0x12, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x36, 0x11, 0x00, 0x00, 0x8b, 0x3d, 0x40, 0x44, 0x00, 0x00, 0x44, 0x89, 0xfe, 0xe8, 0x48, 0x12, 0x00, 0x00, 0xe9, 0x53, 0xe3, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x8a, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x27, 0x3d, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x5b, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x02, 0x3d, 0x00, 0x00, 0x0f, 0x84, 0x0c, 0xe3, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x4f, 0x4c, 0x89, 0xf3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xba, 0x05, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x01, 0x12, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xa2, 0x05, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0xa3, 0x05, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xf5, 0x85, 0xff, 0x0f, 0x88, 0xee, 0x07, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x63, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xe3, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xee, 0xe8, 0x42, 0x10, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xd0, 0x41, 0x8a, 0x04, 0x24, 0x4c, 0x89, 0xe3, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x44, 0x89, 0x7d, 0xc8, 0x74, 0x44, 0x4c, 0x89, 0xe3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x48, 0x8b, 0x0d, 0x31, 0x3c, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x17, 0xeb, 0x2a, 0x0f, 0x1f, 0x40, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x61, 0x11, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xe5, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xe5, 0x85, 0xff, 0x0f, 0x88, 0x5f, 0x07, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xde, 0x3b, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x41, 0xbf, 0x00, 0x40, 0x00, 0x00, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xe7, 0x44, 0x89, 0xee, 0xe8, 0x9c, 0x0f, 0x00, 0x00, 0x0f, 0x29, 0x85, 0x60, 0xff, 0xff, 0xff, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0xa6, 0x3b, 0x00, 0x00, 0x74, 0x40, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x30, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc1, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0xd4, 0x06, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x3e, 0x3b, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf8, 0x4c, 0x8d, 0x6b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xeb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0x02, 0x0f, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xc0, 0x41, 0x8a, 0x45, 0x00, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x4c, 0x8b, 0x35, 0x0d, 0x3b, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xeb, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x86, 0x3c, 0x44, 0x21, 0xf8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2f, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x21, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x14, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xeb, 0x44, 0x8b, 0x7d, 0xc8, 0xeb, 0x18, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xeb, 0x85, 0xff, 0x44, 0x8b, 0x7d, 0xc8, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x0f, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x89, 0xde, 0xe8, 0x79, 0x0e, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x6d, 0xc0, 0x0f, 0x28, 0xc5, 0xf3, 0x0f, 0x59, 0x05, 0x69, 0x13, 0x00, 0x00, 0xf3, 0x0f, 0x2c, 0xc0, 0x0f, 0x57, 0xc0, 0xf2, 0x0f, 0x2a, 0xc0, 0xf2, 0x0f, 0x10, 0x8d, 0x80, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x95, 0x88, 0xfe, 0xff, 0xff, 0x66, 0x0f, 0x28, 0xd9, 0x66, 0x0f, 0x28, 0xe1, 0xf2, 0x0f, 0x5e, 0xe2, 0xf2, 0x0f, 0x5e, 0xd8, 0xf2, 0x0f, 0x5e, 0xc4, 0xf2, 0x0f, 0x2c, 0xc0, 0x0f, 0x57, 0xc0, 0xf2, 0x0f, 0x5a, 0xc3, 0x0f, 0x57, 0xdb, 0xf2, 0x0f, 0x2a, 0xd8, 0xf2, 0x0f, 0x5e, 0xd3, 0xf2, 0x0f, 0x5a, 0xd2, 0xf3, 0x0f, 0x10, 0x1d, 0x1c, 0x13, 0x00, 0x00, 0xf3, 0x0f, 0x5e, 0xd8, 0xf3, 0x0f, 0x5a, 0xdb, 0xf2, 0x0f, 0x59, 0xd9, 0xf3, 0x0f, 0x10, 0x4d, 0xd0, 0xf3, 0x0f, 0x58, 0xcd, 0xf3, 0x0f, 0x5a, 0xc9, 0xf2, 0x0f, 0x5c, 0xd9, 0xf2, 0x0f, 0x11, 0x5d, 0xd0, 0x0f, 0x28, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x0f, 0x57, 0x0d, 0xd8, 0x12, 0x00, 0x00, 0xf3, 0x0f, 0x5a, 0xc9, 0xf2, 0x0f, 0x11, 0x8d, 0x60, 0xff, 0xff, 0xff, 0xf3, 0x0f, 0x5a, 0xc0, 0x0f, 0x57, 0xc9, 0xf3, 0x0f, 0x5a, 0xca, 0x48, 0x8d, 0xbd, 0xc0, 0xfe, 0xff, 0xff, 0xe8, 0x6d, 0x0e, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0xe8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x95, 0xd8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0xd0, 0xfe, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0xc8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xac, 0x39, 0x00, 0x00, 0x4c, 0x8b, 0x48, 0x28, 0x4c, 0x8b, 0x50, 0x20, 0x4c, 0x8b, 0x58, 0x18, 0x4c, 0x8b, 0x70, 0x10, 0x4c, 0x8b, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8d, 0xbd, 0x18, 0xff, 0xff, 0xff, 0x41, 0x55, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41, 0x53, 0x41, 0x56, 0x50, 0x41, 0x54, 0xe8, 0xfa, 0x0d, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x60, 0x48, 0x8b, 0x85, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x38, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x30, 0xff, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x28, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x18, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xbd, 0x40, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x45, 0xd0, 0xf2, 0x0f, 0x10, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0xe8, 0xc4, 0x0d, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x30, 0x8b, 0x3d, 0x16, 0x40, 0x00, 0x00, 0x4c, 0x8b, 0x8d, 0x68, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x50, 0xfe, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x48, 0xfe, 0xff, 0xff, 0x44, 0x89, 0xfe, 0x41, 0x51, 0x51, 0x52, 0x53, 0x50, 0x41, 0x50, 0xe8, 0x04, 0x0e, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x30, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xda, 0x38, 0x00, 0x00, 0xe9, 0xe5, 0xde, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x19, 0x0e, 0x00, 0x00, 0xe9, 0xad, 0xf0, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0x4d, 0x05, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xaa, 0x38, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0x6a, 0x0c, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xc8, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x76, 0x38, 0x00, 0x00, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x4a, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x0d, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xfb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x59, 0x0d, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0xe1, 0x0b, 0x00, 0x00, 0x0f, 0x28, 0xc8, 0x8b, 0x3d, 0xe8, 0x3e, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xba, 0x01, 0x00, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x45, 0xc8, 0xe8, 0xee, 0x0c, 0x00, 0x00, 0xe9, 0xed, 0xdd, 0xff, 0xff, 0x41, 0xbd, 0x00, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x1b, 0x0d, 0x00, 0x00, 0xe9, 0xbc, 0xf1, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x0c, 0x0d, 0x00, 0x00, 0xe9, 0x52, 0xf2, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x4f, 0x04, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x9d, 0x37, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0xd1, 0x0a, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x78, 0x37, 0x00, 0x00, 0x0f, 0x84, 0x82, 0xdd, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x45, 0x4c, 0x89, 0xf3, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xa4, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x0c, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x8c, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x8d, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x5c, 0x0c, 0x00, 0x00, 0xe9, 0xff, 0xf6, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x43, 0x0c, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x3b, 0x09, 0x00, 0x00, 0x8b, 0x1d, 0xd5, 0x3d, 0x00, 0x00, 0x89, 0xc7, 0xe8, 0x02, 0x0c, 0x00, 0x00, 0x89, 0xdf, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xd8, 0x0b, 0x00, 0x00, 0xe9, 0xdd, 0xdc, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x11, 0x0c, 0x00, 0x00, 0xe9, 0x60, 0xf7, 0xff, 0xff, 0x4d, 0x85, 0xf6, 0x4c, 0x8b, 0x25, 0xb4, 0x36, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0x0f, 0x84, 0xef, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xfb, 0x3c, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0x00, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xee, 0x48, 0x8b, 0x55, 0xd0, 0x4c, 0x8b, 0x3d, 0xae, 0x36, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0xdd, 0x3c, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x4c, 0x8b, 0xa5, 0x10, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x8b, 0x3d, 0xb1, 0x3c, 0x00, 0x00, 0x4c, 0x89, 0xee, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x48, 0x8b, 0x55, 0xc8, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x9a, 0x3c, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xe6, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x4c, 0x8b, 0x7d, 0xb0, 0x49, 0x89, 0xc4, 0x8b, 0x3d, 0x0b, 0x3d, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x31, 0x0b, 0x00, 0x00, 0x8b, 0x3d, 0xfd, 0x3c, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xd0, 0xe8, 0xce, 0x0a, 0x00, 0x00, 0x8b, 0x3d, 0xee, 0x3c, 0x00, 0x00, 0x4c, 0x89, 0xfe, 0x48, 0x8b, 0x55, 0xc8, 0xe8, 0xd4, 0x0a, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x19, 0x36, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8d, 0x35, 0xea, 0x33, 0x00, 0x00, 0x48, 0x89, 0xc2, 0xe8, 0x9d, 0x0b, 0x00, 0x00, 0x4c, 0x89, 0xe7, 0x4c, 0x8b, 0x25, 0xcd, 0x35, 0x00, 0x00, 0x48, 0x8b, 0x05, 0xee, 0x35, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x8b, 0x7d, 0xd0, 0xff, 0xd3, 0x4c, 0x89, 0xff, 0xe8, 0x29, 0x0a, 0x00, 0x00, 0xe9, 0xbe, 0xdb, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf2, 0x0a, 0x00, 0x00, 0xe9, 0x95, 0xf7, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd9, 0x0a, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0xd1, 0x07, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x00, 0x08, 0x00, 0x00, 0x8b, 0x3d, 0x60, 0x3c, 0x00, 0x00, 0xb9, 0x20, 0x00, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x83, 0xf8, 0x01, 0x75, 0x0a, 0xe8, 0x69, 0x0a, 0x00, 0x00, 0xe9, 0x62, 0xdb, 0xff, 0xff, 0xe8, 0xf3, 0x09, 0x00, 0x00, 0xe9, 0x58, 0xdb, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x3a, 0x03, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x2c, 0x35, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x60, 0x08, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x07, 0x35, 0x00, 0x00, 0x0f, 0x84, 0x11, 0xdb, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x44, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x89, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x11, 0x0a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x71, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x72, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xec, 0x09, 0x00, 0x00, 0xe9, 0x79, 0xf7, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xdd, 0x09, 0x00, 0x00, 0xe9, 0x13, 0xf8, 0xff, 0xff, 0x41, 0xbf, 0x00, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc8, 0x09, 0x00, 0x00, 0xe9, 0xa4, 0xf8, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb9, 0x09, 0x00, 0x00, 0xe9, 0x2f, 0xf9, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xa0, 0x09, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x98, 0x07, 0x00, 0x00, 0x89, 0xc3, 0x8b, 0x3d, 0x30, 0x3b, 0x00, 0x00, 0x89, 0xc6, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0xe8, 0xf0, 0x08, 0x00, 0x00, 0x8b, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xd2, 0x08, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x40, 0xf9, 0xff, 0xff, 0x89, 0xde, 0xff, 0x15, 0xf1, 0x3a, 0x00, 0x00, 0xe9, 0x1c, 0xda, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x57, 0x02, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xf0, 0x33, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x24, 0x07, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xcb, 0x33, 0x00, 0x00, 0x0f, 0x84, 0xd5, 0xd9, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x48, 0x4c, 0x89, 0xf3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x44, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd1, 0x08, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x2c, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x2d, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xac, 0x08, 0x00, 0x00, 0xe9, 0xba, 0xfa, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x9d, 0x08, 0x00, 0x00, 0xe9, 0xb4, 0xfb, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x84, 0x08, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x7c, 0x05, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x8b, 0x3d, 0x0b, 0x3a, 0x00, 0x00, 0xb9, 0x20, 0x00, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x83, 0xf8, 0x01, 0x75, 0x07, 0xe8, 0xa8, 0x07, 0x00, 0x00, 0xeb, 0x05, 0xe8, 0x0d, 0x08, 0x00, 0x00, 0x8b, 0x3d, 0xe5, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0xe8, 0xbd, 0x07, 0x00, 0x00, 0xe9, 0xf8, 0xd8, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x42, 0x01, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xcc, 0x32, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x00, 0x06, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xa7, 0x32, 0x00, 0x00, 0x0f, 0x84, 0xb1, 0xd8, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x40, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x19, 0xe9, 0x85, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x07, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x71, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xf3, 0xeb, 0x75, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x89, 0x07, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x81, 0x05, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x39, 0xd8, 0xff, 0xff, 0x89, 0xc3, 0x8b, 0x3d, 0x11, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xb1, 0x06, 0x00, 0x00, 0x8b, 0x3d, 0x01, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xda, 0xb9, 0x01, 0x00, 0x00, 0x00, 0xe8, 0xa2, 0x06, 0x00, 0x00, 0xe9, 0x0d, 0xd8, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x41, 0x07, 0x00, 0x00, 0xe9, 0xc9, 0xfc, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x28, 0x07, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x20, 0x05, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0xd8, 0xd7, 0xff, 0xff, 0x89, 0xc3, 0x8b, 0x3d, 0xb0, 0x38, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xb0, 0x06, 0x00, 0x00, 0x8b, 0x3d, 0xa0, 0x38, 0x00, 0x00, 0x89, 0xde, 0xe8, 0x9d, 0x06, 0x00, 0x00, 0xe9, 0xb4, 0xd7, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe8, 0x06, 0x00, 0x00, 0xe9, 0xac, 0xfd, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd9, 0x06, 0x00, 0x00, 0xe9, 0xc1, 0xfe, 0xff, 0xff, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0x76, 0x31, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0x48, 0xc7, 0x45, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0xd4, 0x06, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x3f, 0x2f, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xd8, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x02, 0x07, 0x00, 0x00, 0x48, 0x8b, 0x45, 0xd8, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x1a, 0x31, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x4b, 0x06, 0x00, 0x00, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x56, 0x41, 0x55, 0x53, 0x50, 0x48, 0x89, 0xfb, 0x48, 0x8b, 0x3d, 0xc4, 0x37, 0x00, 0x00, 0xe8, 0x7f, 0x06, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x00, 0x37, 0x00, 0x00, 0x48, 0x89, 0xc7, 0xff, 0x15, 0xe7, 0x30, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x43, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8b, 0x78, 0x18, 0xe8, 0x33, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x0d, 0x74, 0x37, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x49, 0x89, 0xc5, 0xff, 0xd1, 0x48, 0x8b, 0x43, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8b, 0x78, 0x18, 0x48, 0x83, 0xc4, 0x08, 0x5b, 0x41, 0x5d, 0x41, 0x5e, 0x5d, 0xe9, 0xff, 0x04, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0xf8, 0x00, 0x00, 0x00, 0x48, 0x89, 0xbd, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x6e, 0x30, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x8b, 0x3d, 0x08, 0x37, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x48, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x5c, 0x2e, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x48, 0xff, 0xff, 0xff, 0xe8, 0xf2, 0x05, 0x00, 0x00, 0x48, 0x8b, 0x9d, 0x48, 0xff, 0xff, 0xff, 0x48, 0x85, 0xdb, 0x0f, 0x84, 0x5d, 0x01, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x10, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x85, 0x00, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x0f, 0x29, 0x85, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x35, 0x24, 0x36, 0x00, 0x00, 0x48, 0x8d, 0x95, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x50, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0xff, 0x2f, 0x00, 0x00, 0x48, 0x89, 0x85, 0x38, 0xff, 0xff, 0xff, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x0a, 0x01, 0x00, 0x00, 0x48, 0x89, 0x9d, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xc8, 0x35, 0x00, 0x00, 0x45, 0x31, 0xff, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x48, 0x8b, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x30, 0xff, 0xff, 0xff, 0x48, 0x39, 0x08, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x40, 0xff, 0xff, 0xff, 0xe8, 0x2f, 0x05, 0x00, 0x00, 0x48, 0x8b, 0x85, 0xe8, 0xfe, 0xff, 0xff, 0x4e, 0x8b, 0x2c, 0xf8, 0x48, 0xc7, 0x85, 0x48, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x48, 0x8d, 0x35, 0x6c, 0x2d, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x48, 0xff, 0xff, 0xff, 0xe8, 0x15, 0x05, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x48, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x31, 0xc0, 0xff, 0x15, 0x63, 0x2f, 0x00, 0x00, 0x8b, 0x3d, 0x2d, 0x36, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xe1, 0x03, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0xb5, 0x28, 0xff, 0xff, 0xff, 0xe8, 0x93, 0x03, 0x00, 0x00, 0x89, 0xc3, 0x4c, 0x89, 0xf7, 0xe8, 0x8f, 0x03, 0x00, 0x00, 0x84, 0xdb, 0x75, 0x53, 0x49, 0xff, 0xc7, 0x4c, 0x3b, 0xbd, 0x38, 0xff, 0xff, 0xff, 0x0f, 0x82, 0x65, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x35, 0x19, 0x35, 0x00, 0x00, 0x48, 0x8d, 0x95, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x50, 0xff, 0xff, 0xff, 0xff, 0x15, 0xfd, 0x2e, 0x00, 0x00, 0x41, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x38, 0xff, 0xff, 0xff, 0x48, 0x85, 0xc0, 0x0f, 0x85, 0x10, 0xff, 0xff, 0xff, 0xeb, 0x03, 0x45, 0x31, 0xed, 0x48, 0x8b, 0x05, 0xcb, 0x2e, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xd0, 0x75, 0x15, 0x4c, 0x89, 0xe8, 0x48, 0x81, 0xc4, 0xf8, 0x00, 0x00, 0x00, 0x5b, 0x41, 0x5c, 0x41, 0x5d, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0xf2, 0x03, 0x00, 0x00, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x08, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0xaf, 0x03, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x7f, 0x20, 0xbe, 0x08, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0x99, 0x03, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x4c, 0x8b, 0x0d, 0x15, 0x35, 0x00, 0x00, 0x48, 0x8b, 0x47, 0x20, 0x48, 0x8b, 0x77, 0x28, 0x48, 0x8b, 0x15, 0xee, 0x34, 0x00, 0x00, 0x48, 0x8b, 0x4f, 0x30, 0x48, 0x89, 0xc7, 0x49, 0x89, 0xc8, 0x5d, 0x41, 0xff, 0xe1, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x56, 0x53, 0x49, 0x89, 0xf6, 0x48, 0x89, 0xfb, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x03, 0x00, 0x00, 0x00, 0xe8, 0x37, 0x03, 0x00, 0x00, 0x48, 0x83, 0xc3, 0x28, 0x49, 0x8b, 0x76, 0x28, 0x48, 0x89, 0xdf, 0xba, 0x03, 0x00, 0x00, 0x00, 0x5b, 0x41, 0x5e, 0x5d, 0xe9, 0x1e, 0x03, 0x00, 0x00, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x53, 0x50, 0x48, 0x89, 0xfb, 0x48, 0x8b, 0x7f, 0x28, 0xbe, 0x03, 0x00, 0x00, 0x00, 0xe8, 0x05, 0x03, 0x00, 0x00, 0x48, 0x8b, 0x7b, 0x20, 0xbe, 0x03, 0x00, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x08, 0x5b, 0x5d, 0xe9, 0xf1, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0xa6, 0x2d, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x05, 0x03, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x2b, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x33, 0x03, 0x00, 0x00, 0x8b, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x4c, 0x2d, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x7d, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x05, 0xd5, 0x33, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x4e, 0x33, 0x00, 0x00, 0x8b, 0x4f, 0x30, 0x48, 0x8b, 0x57, 0x20, 0x4c, 0x8b, 0x47, 0x28, 0x48, 0x89, 0xc7, 0x31, 0xc0, 0x5d, 0xff, 0x25, 0x17, 0x2d, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x03, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0x0f, 0x02, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x7f, 0x20, 0xbe, 0x03, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0xf9, 0x01, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0xa6, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x05, 0x02, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x2a, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x33, 0x02, 0x00, 0x00, 0x8b, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x4c, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x7d, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0x16, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x75, 0x01, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0xfd, 0x29, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0xa3, 0x01, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x05, 0xba, 0x2b, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0xeb, 0x00, 0x00, 0x00, 0x90, 0xff, 0x25, 0xca, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xcc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xce, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xda, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xdc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xde, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xea, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xec, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xee, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfa, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfe, 0x2b, 0x00, 0x00, 0xff, 0x25, 0x00, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x02, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x04, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x06, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x08, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x10, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x12, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x14, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x16, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x18, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x20, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x22, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x24, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x26, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x28, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x30, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x32, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x34, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x36, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x38, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x40, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x42, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x44, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x46, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x48, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4e, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x8d, 0x1d, 0xe5, 0x29, 0x00, 0x00, 0x41, 0x53, 0xff, 0x25, 0x25, 0x2a, 0x00, 0x00, 0x90, 0x68, 0xfa, 0x03, 0x00, 0x00, 0xe9, 0xe6, 0xff, 0xff, 0xff, 0x68, 0x17, 0x04, 0x00, 0x00, 0xe9, 0xdc, 0xff, 0xff, 0xff, 0x68, 0x35, 0x04, 0x00, 0x00, 0xe9, 0xd2, 0xff, 0xff, 0xff, 0x68, 0x52, 0x04, 0x00, 0x00, 0xe9, 0xc8, 0xff, 0xff, 0xff, 0x68, 0x62, 0x04, 0x00, 0x00, 0xe9, 0xbe, 0xff, 0xff, 0xff, 0x68, 0x75, 0x04, 0x00, 0x00, 0xe9, 0xb4, 0xff, 0xff, 0xff, 0x68, 0x8c, 0x04, 0x00, 0x00, 0xe9, 0xaa, 0xff, 0xff, 0xff, 0x68, 0xa5, 0x04, 0x00, 0x00, 0xe9, 0xa0, 0xff, 0xff, 0xff, 0x68, 0xc2, 0x04, 0x00, 0x00, 0xe9, 0x96, 0xff, 0xff, 0xff, 0x68, 0xe7, 0x04, 0x00, 0x00, 0xe9, 0x8c, 0xff, 0xff, 0xff, 0x68, 0x01, 0x05, 0x00, 0x00, 0xe9, 0x82, 0xff, 0xff, 0xff, 0x68, 0x10, 0x05, 0x00, 0x00, 0xe9, 0x78, 0xff, 0xff, 0xff, 0x68, 0x1d, 0x05, 0x00, 0x00, 0xe9, 0x6e, 0xff, 0xff, 0xff, 0x68, 0x2b, 0x05, 0x00, 0x00, 0xe9, 0x64, 0xff, 0xff, 0xff, 0x68, 0x39, 0x05, 0x00, 0x00, 0xe9, 0x5a, 0xff, 0xff, 0xff, 0x68, 0x4f, 0x05, 0x00, 0x00, 0xe9, 0x50, 0xff, 0xff, 0xff, 0x68, 0x5e, 0x05, 0x00, 0x00, 0xe9, 0x46, 0xff, 0xff, 0xff, 0x68, 0x73, 0x05, 0x00, 0x00, 0xe9, 0x3c, 0xff, 0xff, 0xff, 0x68, 0x82, 0x05, 0x00, 0x00, 0xe9, 0x32, 0xff, 0xff, 0xff, 0x68, 0x3c, 0x06, 0x00, 0x00, 0xe9, 0x28, 0xff, 0xff, 0xff, 0x68, 0x53, 0x06, 0x00, 0x00, 0xe9, 0x1e, 0xff, 0xff, 0xff, 0x68, 0x60, 0x06, 0x00, 0x00, 0xe9, 0x14, 0xff, 0xff, 0xff, 0x68, 0x6d, 0x06, 0x00, 0x00, 0xe9, 0x0a, 0xff, 0xff, 0xff, 0x68, 0x7e, 0x06, 0x00, 0x00, 0xe9, 0x00, 0xff, 0xff, 0xff, 0x68, 0x8d, 0x06, 0x00, 0x00, 0xe9, 0xf6, 0xfe, 0xff, 0xff, 0x68, 0x9c, 0x06, 0x00, 0x00, 0xe9, 0xec, 0xfe, 0xff, 0xff, 0x68, 0xab, 0x06, 0x00, 0x00, 0xe9, 0xe2, 0xfe, 0xff, 0xff, 0x68, 0xba, 0x06, 0x00, 0x00, 0xe9, 0xd8, 0xfe, 0xff, 0xff, 0x68, 0xd9, 0x03, 0x00, 0x00, 0xe9, 0xce, 0xfe, 0xff, 0xff, 0x68, 0xe7, 0x03, 0x00, 0x00, 0xe9, 0xc4, 0xfe, 0xff, 0xff, 0x68, 0x20, 0x00, 0x00, 0x00, 0xe9, 0xba, 0xfe, 0xff, 0xff, 0x68, 0x3f, 0x00, 0x00, 0x00, 0xe9, 0xb0, 0xfe, 0xff, 0xff, 0x68, 0x68, 0x00, 0x00, 0x00, 0xe9, 0xa6, 0xfe, 0xff, 0xff, 0x68, 0x8a, 0x00, 0x00, 0x00, 0xe9, 0x9c, 0xfe, 0xff, 0xff, 0x68, 0xb2, 0x00, 0x00, 0x00, 0xe9, 0x92, 0xfe, 0xff, 0xff, 0x68, 0xd5, 0x00, 0x00, 0x00, 0xe9, 0x88, 0xfe, 0xff, 0xff, 0x68, 0xff, 0x00, 0x00, 0x00, 0xe9, 0x7e, 0xfe, 0xff, 0xff, 0x68, 0x29, 0x01, 0x00, 0x00, 0xe9, 0x74, 0xfe, 0xff, 0xff, 0x68, 0x44, 0x01, 0x00, 0x00, 0xe9, 0x6a, 0xfe, 0xff, 0xff, 0x68, 0x6a, 0x01, 0x00, 0x00, 0xe9, 0x60, 0xfe, 0xff, 0xff, 0x68, 0x86, 0x01, 0x00, 0x00, 0xe9, 0x56, 0xfe, 0xff, 0xff, 0x68, 0xa1, 0x01, 0x00, 0x00, 0xe9, 0x4c, 0xfe, 0xff, 0xff, 0x68, 0xbb, 0x01, 0x00, 0x00, 0xe9, 0x42, 0xfe, 0xff, 0xff, 0x68, 0xd9, 0x01, 0x00, 0x00, 0xe9, 0x38, 0xfe, 0xff, 0xff, 0x68, 0xef, 0x01, 0x00, 0x00, 0xe9, 0x2e, 0xfe, 0xff, 0xff, 0x68, 0x11, 0x02, 0x00, 0x00, 0xe9, 0x24, 0xfe, 0xff, 0xff, 0x68, 0x2d, 0x02, 0x00, 0x00, 0xe9, 0x1a, 0xfe, 0xff, 0xff, 0x68, 0x56, 0x02, 0x00, 0x00, 0xe9, 0x10, 0xfe, 0xff, 0xff, 0x68, 0x7f, 0x02, 0x00, 0x00, 0xe9, 0x06, 0xfe, 0xff, 0xff, 0x68, 0x9e, 0x02, 0x00, 0x00, 0xe9, 0xfc, 0xfd, 0xff, 0xff, 0x68, 0xcc, 0x02, 0x00, 0x00, 0xe9, 0xf2, 0xfd, 0xff, 0xff, 0x68, 0xef, 0x02, 0x00, 0x00, 0xe9, 0xe8, 0xfd, 0xff, 0xff, 0x68, 0x1e, 0x03, 0x00, 0x00, 0xe9, 0xde, 0xfd, 0xff, 0xff, 0x68, 0x38, 0x03, 0x00, 0x00, 0xe9, 0xd4, 0xfd, 0xff, 0xff, 0x68, 0x52, 0x03, 0x00, 0x00, 0xe9, 0xca, 0xfd, 0xff, 0xff, 0x68, 0x70, 0x03, 0x00, 0x00, 0xe9, 0xc0, 0xfd, 0xff, 0xff, 0x68, 0x89, 0x03, 0x00, 0x00, 0xe9, 0xb6, 0xfd, 0xff, 0xff, 0x68, 0xa7, 0x03, 0x00, 0x00, 0xe9, 0xac, 0xfd, 0xff, 0xff, 0x68, 0xbd, 0x03, 0x00, 0x00, 0xe9, 0xa2, 0xfd, 0xff, 0xff, 0x68, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x98, 0xfd, 0xff, 0xff, 0x68, 0x0f, 0x00, 0x00, 0x00, 0xe9, 0x8e, 0xfd, 0xff, 0xff, 0x68, 0x91, 0x05, 0x00, 0x00, 0xe9, 0x84, 0xfd, 0xff, 0xff, 0x68, 0xa4, 0x05, 0x00, 0x00, 0xe9, 0x7a, 0xfd, 0xff, 0xff, 0x68, 0xc5, 0x05, 0x00, 0x00, 0xe9, 0x70, 0xfd, 0xff, 0xff, 0x68, 0xdb, 0x05, 0x00, 0x00, 0xe9, 0x66, 0xfd, 0xff, 0xff, 0x68, 0xf6, 0x05, 0x00, 0x00, 0xe9, 0x5c, 0xfd, 0xff, 0xff, 0x68, 0x19, 0x06, 0x00, 0x00, 0xe9, 0x52, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x80, 0x3e, 0x00, 0x00, 0x80, 0x3f, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x44, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x42, 0x35, 0x20, 0x34, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x46, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x37, 0x30, 0x20, 0x33, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x45, 0x38, 0x20, 0x46, 0x44, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x44, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x46, 0x20, 0x33, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x45, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x32, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x32, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x42, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x42, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x36, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x32, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x42, 0x44, 0x20, 0x39, 0x34, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x46, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x35, 0x20, 0x34, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x45, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x37, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x32, 0x34, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x42, 0x35, 0x20, 0x45, 0x30, 0x20, 0x46, 0x44, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x42, 0x44, 0x20, 0x42, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x35, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x42, 0x35, 0x20, 0x38, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x39, 0x44, 0x20, 0x43, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x36, 0x37, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x30, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x43, 0x37, 0x20, 0x38, 0x35, 0x20, 0x31, 0x43, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x42, 0x30, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x43, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x41, 0x34, 0x20, 0x34, 0x42, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x31, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x43, 0x37, 0x20, 0x38, 0x35, 0x20, 0x31, 0x43, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x39, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x42, 0x30, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x41, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x45, 0x38, 0x20, 0x39, 0x39, 0x20, 0x36, 0x44, 0x20, 0x34, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x32, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x45, 0x42, 0x20, 0x45, 0x44, 0x20, 0x35, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x41, 0x43, 0x20, 0x39, 0x30, 0x20, 0x35, 0x41, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x42, 0x45, 0x20, 0x31, 0x42, 0x20, 0x35, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x35, 0x43, 0x20, 0x36, 0x44, 0x20, 0x34, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x33, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x33, 0x44, 0x20, 0x41, 0x34, 0x20, 0x31, 0x31, 0x20, 0x34, 0x45, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x35, 0x41, 0x20, 0x38, 0x42, 0x20, 0x31, 0x37, 0x20, 0x30, 0x30, 0x20, 0x38, 0x38, 0x20, 0x30, 0x35, 0x20, 0x35, 0x44, 0x20, 0x32, 0x38, 0x20, 0x35, 0x44, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x31, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x36, 0x41, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x32, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x32, 0x42, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x46, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x46, 0x33, 0x20, 0x34, 0x31, 0x20, 0x46, 0x36, 0x20, 0x43, 0x37, 0x20, 0x30, 0x31, 0x20, 0x34, 0x39, 0x20, 0x30, 0x46, 0x20, 0x34, 0x35, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x32, 0x36, 0x20, 0x31, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x39, 0x42, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x32, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x41, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x37, 0x35, 0x20, 0x35, 0x42, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x37, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x37, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x43, 0x42, 0x20, 0x34, 0x31, 0x20, 0x46, 0x36, 0x20, 0x43, 0x37, 0x20, 0x30, 0x31, 0x20, 0x34, 0x39, 0x20, 0x30, 0x46, 0x20, 0x34, 0x35, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x37, 0x38, 0x20, 0x34, 0x39, 0x20, 0x42, 0x43, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x35, 0x44, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x30, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x44, 0x30, 0x20, 0x37, 0x35, 0x20, 0x33, 0x32, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x38, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x30, 0x33, 0x20, 0x37, 0x39, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x31, 0x42, 0x20, 0x34, 0x43, 0x20, 0x38, 0x35, 0x20, 0x45, 0x33, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x43, 0x45, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x46, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x34, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x45, 0x39, 0x20, 0x42, 0x31, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x38, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x44, 0x34, 0x20, 0x37, 0x38, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x33, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x45, 0x36, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x43, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x36, 0x30, 0x20, 0x31, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x42, 0x42, 0x20, 0x37, 0x38, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x45, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x33, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x45, 0x41, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x33, 0x31, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x45, 0x20, 0x34, 0x30, 0x20, 0x30, 0x46, 0x20, 0x39, 0x34, 0x20, 0x43, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x32, 0x20, 0x45, 0x38, 0x20, 0x44, 0x30, 0x20, 0x46, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x45, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x31, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x41, 0x20, 0x35, 0x44, 0x20, 0x33, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x36, 0x35, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x38, 0x42, 0x20, 0x31, 0x37, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x30, 0x46, 0x20, 0x37, 0x45, 0x20, 0x46, 0x33, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x38, 0x30, 0x20, 0x46, 0x42, 0x20, 0x30, 0x31, 0x20, 0x37, 0x34, 0x20, 0x36, 0x45, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x32, 0x34, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x45, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x37, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x33, 0x31, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x43, 0x20, 0x34, 0x30, 0x20, 0x30, 0x46, 0x20, 0x39, 0x34, 0x20, 0x43, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x32, 0x20, 0x45, 0x38, 0x20, 0x46, 0x34, 0x20, 0x37, 0x45, 0x20, 0x31, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x43, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x32, 0x39, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x46, 0x20, 0x38, 0x42, 0x20, 0x36, 0x43, 0x20, 0x46, 0x34, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x45, 0x38, 0x20, 0x39, 0x32, 0x20, 0x31, 0x34, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x36, 0x46, 0x20, 0x38, 0x45, 0x20, 0x31, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x38, 0x20, 0x34, 0x39, 0x20, 0x32, 0x33, 0x20, 0x34, 0x44, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x39, 0x31, 0x20, 0x38, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x38, 0x38, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x45, 0x38, 0x20, 0x36, 0x41, 0x20, 0x31, 0x34, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x46, 0x36, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x30, 0x31, 0x20, 0x37, 0x34, 0x20, 0x30, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x39, 0x20, 0x45, 0x44, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x42, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x45, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x39, 0x45, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x37, 0x34, 0x20, 0x32, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x35, 0x20, 0x31, 0x36, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x35, 0x20, 0x36, 0x34, 0x20, 0x31, 0x31, 0x20, 0x46, 0x37, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x38, 0x46, 0x20, 0x43, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x39, 0x43, 0x20, 0x31, 0x36, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x45, 0x42, 0x20, 0x32, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x37, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x43, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x33, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x46, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x38, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x45, 0x38, 0x20, 0x46, 0x44, 0x20, 0x37, 0x42, 0x20, 0x46, 0x31, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x33, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x32, 0x33, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x44, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x38, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x46, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x33, 0x46, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x42, 0x38, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x38, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x30, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x34, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x41, 0x41, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x42, 0x36, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x39, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x41, 0x44, 0x20, 0x35, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x38, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x31, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x39, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x45, 0x38, 0x20, 0x46, 0x42, 0x20, 0x38, 0x42, 0x20, 0x45, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x34, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x36, 0x46, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x30, 0x38, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x38, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x39, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x45, 0x35, 0x20, 0x41, 0x36, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x43, 0x20, 0x30, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x44, 0x20, 0x37, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x36, 0x34, 0x20, 0x30, 0x33, 0x20, 0x30, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x33, 0x35, 0x20, 0x38, 0x33, 0x20, 0x38, 0x45, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x42, 0x35, 0x20, 0x46, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x32, 0x20, 0x30, 0x45, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x33, 0x45, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x35, 0x45, 0x20, 0x39, 0x32, 0x20, 0x31, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x32, 0x20, 0x30, 0x45, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x41, 0x20, 0x45, 0x38, 0x20, 0x46, 0x36, 0x20, 0x30, 0x42, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x45, 0x31, 0x20, 0x46, 0x41, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x44, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x45, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x46, 0x38, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x39, 0x34, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x36, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x38, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x46, 0x33, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x44, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x45, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x37, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x39, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x32, 0x34, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x45, 0x20, 0x45, 0x38, 0x20, 0x45, 0x36, 0x20, 0x42, 0x45, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x32, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x44, 0x38, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x39, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x41, 0x38, 0x20, 0x37, 0x35, 0x20, 0x31, 0x41, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x45, 0x38, 0x20, 0x33, 0x46, 0x20, 0x44, 0x38, 0x20, 0x46, 0x32, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x39, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x39, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x45, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x39, 0x37, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x33, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x44, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x44, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x43, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x41, 0x38, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x33, 0x35, 0x20, 0x30, 0x33, 0x20, 0x41, 0x32, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x30, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x32, 0x34, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x45, 0x20, 0x45, 0x38, 0x20, 0x36, 0x35, 0x20, 0x43, 0x43, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x38, 0x39, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x36, 0x45, 0x20, 0x38, 0x35, 0x20, 0x31, 0x36, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x42, 0x35, 0x20, 0x33, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x43, 0x38, 0x20, 0x30, 0x39, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x42, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x31, 0x43, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x45, 0x38, 0x20, 0x37, 0x41, 0x20, 0x46, 0x35, 0x20, 0x46, 0x30, 0x20, 0x46, 0x46, 0x20, 0x45, 0x39, 0x20, 0x36, 0x45, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x44, 0x42, 0x20, 0x37, 0x34, 0x20, 0x34, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x30, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x34, 0x20, 0x30, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x46, 0x42, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x41, 0x38, 0x20, 0x45, 0x38, 0x20, 0x33, 0x31, 0x20, 0x43, 0x44, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x44, 0x45, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x37, 0x35, 0x20, 0x34, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x45, 0x38, 0x20, 0x38, 0x41, 0x20, 0x30, 0x41, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x45, 0x38, 0x20, 0x43, 0x37, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x43, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x43, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x43, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x34, 0x43, 0x20, 0x32, 0x46, 0x20, 0x31, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x31, 0x43, 0x20, 0x30, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x45, 0x38, 0x20, 0x41, 0x44, 0x20, 0x45, 0x42, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x38, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x35, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x45, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x41, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x30, 0x46, 0x20, 0x42, 0x36, 0x20, 0x35, 0x44, 0x20, 0x41, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x35, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x38, 0x20, 0x33, 0x45, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x30, 0x41, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x46, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x41, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x36, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x39, 0x20, 0x33, 0x45, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x43, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x30, 0x46, 0x20, 0x42, 0x36, 0x20, 0x35, 0x44, 0x20, 0x41, 0x46, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x43, 0x36, 0x20, 0x46, 0x45, 0x20, 0x34, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x35, 0x20, 0x38, 0x35, 0x20, 0x45, 0x44, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x31, 0x46, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x46, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x43, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x30, 0x37, 0x20, 0x31, 0x43, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x44, 0x35, 0x20, 0x35, 0x36, 0x20, 0x34, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x36, 0x43, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x45, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x34, 0x30, 0x20, 0x45, 0x30, 0x20, 0x34, 0x43, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x55, 0x53, 0x45, 0x52, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x67, 0x65, 0x74, 0x20, 0x27, 0x65, 0x6e, 0x76, 0x20, 0x55, 0x53, 0x45, 0x52, 0x27, 0x21, 0x20, 0x61, 0x62, 0x6f, 0x72, 0x74, 0x2e, 0x2e, 0x00, 0x2f, 0x74, 0x6d, 0x70, 0x2f, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5f, 0x25, 0x73, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x69, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x6d, 0x61, 0x63, 0x4f, 0x53, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x53, 0x69, 0x65, 0x72, 0x72, 0x61, 0x2c, 0x20, 0x4d, 0x6f, 0x6a, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x6f, 0x63, 0x6b, 0x2e, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x21, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x64, 0x6f, 0x63, 0x6b, 0x2e, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x70, 0x70, 0x6d, 0x21, 0x20, 0x6d, 0x6f, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x64, 0x70, 0x70, 0x6d, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x64, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x61, 0x64, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x74, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x73, 0x65, 0x74, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x44, 0x6f, 0x63, 0x6b, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x25, 0x73, 0x00, 0x68, 0x61, 0x6e, 0x64, 0x73, 0x68, 0x61, 0x6b, 0x65, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x5f, 0x66, 0x61, 0x64, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x74, 0x69, 0x63, 0x6b, 0x79, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x31, 0x2e, 0x30, 0x2e, 0x31, 0x34, 0x00, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x25, 0x6c, 0x6c, 0x64, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x76, 0x38, 0x40, 0x3f, 0x30, 0x00, 0x25, 0x64, 0x00, 0x25, 0x66, 0x00, 0x55, 0x54, 0x46, 0x38, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x66, 0x6f, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x55, 0x49, 0x44, 0x3a, 0x00, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x55, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4c, 0x6f, 0x6e, 0x67, 0x4c, 0x6f, 0x6e, 0x67, 0x3a, 0x00, 0x61, 0x72, 0x72, 0x61, 0x79, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x3a, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x00, 0x73, 0x70, 0x69, 0x64, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x46, 0x6f, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x00, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x57, 0x69, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x3a, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x00, 0x69, 0x6e, 0x69, 0x74, 0x00, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x49, 0x44, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x00, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x74, 0x6f, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x55, 0x49, 0x44, 0x3a, 0x00, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x55, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x3a, 0x00, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x76, 0x31, 0x36, 0x40, 0x30, 0x3a, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x61, 0x01, 0x03, 0x01, 0xd1, 0x58, 0x05, 0x01, 0x10, 0x19, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x3c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x03, 0x00, 0x06, 0x60, 0x0a, 0x00, 0x02, 0x80, 0x35, 0x00, 0x01, 0x10, 0x36, 0x00, 0x05, 0x80, 0x36, 0x00, 0x02, 0x70, 0x38, 0x00, 0x00, 0xe0, 0x38, 0x00, 0x04, 0x20, 0x39, 0x00, 0x03, 0x50, 0x39, 0x00, 0x01, 0xe0, 0x39, 0x00, 0x00, 0x50, 0x3a, 0x00, 0x01, 0x01, 0x00, 0x01, 0x01, 0x21, 0x00, 0x02, 0x01, 0x19, 0x01, 0x03, 0x01, 0x11, 0x0b, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xce, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x54, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x65, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x21, 0x50, 0x60, 0x43, 0x42, 0x53, 0x43, 0x53, 0x43, 0x53, 0x41, 0x53, 0x42, 0x80, 0x10, 0x18, 0x70, 0x08, 0x52, 0x42, 0x53, 0x43, 0x52, 0x47, 0x70, 0x28, 0x5d, 0x47, 0x52, 0x43, 0x51, 0x13, 0x40, 0x5f, 0x5f, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x75, 0x6e, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x51, 0x71, 0x10, 0x90, 0x40, 0x5f, 0x5f, 0x4e, 0x53, 0x43, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x00, 0x90, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x67, 0x75, 0x61, 0x72, 0x64, 0x00, 0x90, 0x40, 0x5f, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x71, 0x00, 0x90, 0x40, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x00, 0x80, 0x18, 0x90, 0x14, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x41, 0x72, 0x72, 0x61, 0x79, 0x00, 0x80, 0xa0, 0x0c, 0x90, 0x40, 0x5f, 0x5f, 0x5f, 0x43, 0x46, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x00, 0x80, 0x98, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0xc0, 0x10, 0x18, 0x90, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x00, 0x80, 0xf0, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x16, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x80, 0xd8, 0x0c, 0x90, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x80, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x17, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x80, 0x40, 0x90, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x80, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x90, 0x40, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x63, 0x68, 0x65, 0x00, 0xb4, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x00, 0x80, 0xf8, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x50, 0x14, 0x40, 0x5f, 0x43, 0x46, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x00, 0x90, 0x00, 0x71, 0x58, 0x14, 0x40, 0x5f, 0x43, 0x46, 0x52, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0x60, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6e, 0x63, 0x61, 0x74, 0x00, 0x90, 0x00, 0x71, 0x68, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x54, 0x6f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0x70, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0x78, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x90, 0x00, 0x71, 0x80, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x00, 0x90, 0x00, 0x71, 0x88, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x90, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x98, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x53, 0x4e, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x73, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x48, 0x69, 0x64, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x47, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x57, 0x69, 0x74, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x42, 0x79, 0x47, 0x65, 0x6f, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x00, 0x90, 0x00, 0x71, 0x80, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x88, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x90, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x90, 0x00, 0x71, 0x98, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x02, 0x16, 0x40, 0x5f, 0x4e, 0x53, 0x4c, 0x6f, 0x67, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x02, 0x16, 0x40, 0x5f, 0x4e, 0x53, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x4e, 0x53, 0x47, 0x65, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x62, 0x7a, 0x65, 0x72, 0x6f, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x72, 0x75, 0x6e, 0x65, 0x00, 0x90, 0x00, 0x71, 0x80, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x6e, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x66, 0x5f, 0x63, 0x68, 0x6b, 0x00, 0x90, 0x00, 0x71, 0x88, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x00, 0x90, 0x00, 0x71, 0x90, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0x98, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x6d, 0x61, 0x64, 0x64, 0x72, 0x5f, 0x73, 0x6c, 0x69, 0x64, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x03, 0x13, 0x40, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x03, 0x13, 0x40, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x03, 0x13, 0x40, 0x5f, 0x63, 0x68, 0x6d, 0x6f, 0x64, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x03, 0x13, 0x40, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x03, 0x13, 0x40, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x03, 0x13, 0x40, 0x5f, 0x67, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x03, 0x13, 0x40, 0x5f, 0x67, 0x65, 0x74, 0x73, 0x65, 0x67, 0x62, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x03, 0x13, 0x40, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x03, 0x13, 0x40, 0x5f, 0x6d, 0x65, 0x6d, 0x63, 0x70, 0x79, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x03, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x03, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x90, 0x00, 0x71, 0x80, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x00, 0x90, 0x00, 0x71, 0x88, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x74, 0x00, 0x90, 0x00, 0x71, 0x90, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0x98, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x04, 0x13, 0x40, 0x5f, 0x70, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x04, 0x13, 0x40, 0x5f, 0x72, 0x65, 0x63, 0x76, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x73, 0x63, 0x61, 0x6e, 0x66, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x74, 0x72, 0x63, 0x6d, 0x70, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x74, 0x72, 0x6c, 0x65, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x04, 0x13, 0x40, 0x5f, 0x75, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x00, 0x05, 0x00, 0x02, 0x67, 0x65, 0x74, 0x5f, 0x00, 0x15, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x00, 0xa9, 0x02, 0x00, 0x05, 0x64, 0x00, 0x59, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xa3, 0x01, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xbd, 0x01, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xd7, 0x01, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x00, 0xf1, 0x01, 0x00, 0x02, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x00, 0x6f, 0x70, 0x70, 0x6d, 0x5f, 0x00, 0x89, 0x01, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x84, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x8b, 0x02, 0x03, 0x00, 0x90, 0x32, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x9e, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x90, 0x02, 0x03, 0x00, 0xe0, 0x32, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xb8, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x95, 0x02, 0x03, 0x00, 0x90, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xd2, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x9a, 0x02, 0x03, 0x00, 0xc0, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xec, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x9f, 0x02, 0x03, 0x00, 0xf0, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x86, 0x02, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0xa4, 0x02, 0x03, 0x00, 0xc0, 0x34, 0x00, 0x03, 0x00, 0x90, 0x35, 0x00, 0x03, 0x00, 0xe0, 0x35, 0x00, 0x03, 0x00, 0x90, 0x36, 0x00, 0x03, 0x00, 0xf0, 0x36, 0x00, 0x03, 0x00, 0xd0, 0x37, 0x00, 0x03, 0x00, 0xb0, 0x38, 0x00, 0x00, 0x02, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0xd3, 0x02, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0xd9, 0x02, 0x04, 0x00, 0xf8, 0x8c, 0x02, 0x00, 0x04, 0x00, 0xa0, 0x8d, 0x02, 0x00, 0x00, 0x90, 0x32, 0x50, 0x30, 0x30, 0x30, 0x50, 0x50, 0x50, 0x30, 0x60, 0x60, 0x60, 0x50, 0xf0, 0x0d, 0xf0, 0x02, 0xb0, 0x53, 0x90, 0x01, 0x70, 0xf0, 0x03, 0x20, 0x20, 0x30, 0x40, 0x30, 0x90, 0x01, 0x30, 0x20, 0x20, 0x90, 0x01, 0x00, 0x00, 0x00, 0x9f, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x70, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xe0, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x90, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x20, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x90, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0xa0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xc0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0xf0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x30, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x60, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xf0, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x20, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x09, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x40, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x09, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x60, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x09, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xf0, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0x68, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0x98, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0xc8, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x09, 0x00, 0x00, 0x0e, 0x0f, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0x09, 0x00, 0x00, 0x0e, 0x10, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x09, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0a, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0x68, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x0a, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0xb0, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xc8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xd0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xd8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xe0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xe8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xf0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xf8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x04, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x08, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0f, 0x15, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0f, 0x15, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x90, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x10, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x90, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x60, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xe0, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xf0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xd0, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xc0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x70, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x01, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x40, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x01, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcb, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x35, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x20, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x70, 0x70, 0x6d, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x70, 0x70, 0x6d, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x43, 0x46, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x00, 0x5f, 0x43, 0x46, 0x52, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6e, 0x63, 0x61, 0x74, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x54, 0x6f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x53, 0x4e, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x48, 0x69, 0x64, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x47, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x57, 0x69, 0x74, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x42, 0x79, 0x47, 0x65, 0x6f, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x00, 0x5f, 0x4e, 0x53, 0x4c, 0x6f, 0x67, 0x00, 0x5f, 0x4e, 0x53, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x41, 0x72, 0x72, 0x61, 0x79, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x00, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x5f, 0x5f, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x75, 0x6e, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x5f, 0x5f, 0x4e, 0x53, 0x43, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x00, 0x5f, 0x5f, 0x4e, 0x53, 0x47, 0x65, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x00, 0x5f, 0x5f, 0x5f, 0x43, 0x46, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x7a, 0x65, 0x72, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x72, 0x75, 0x6e, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x6e, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x66, 0x5f, 0x63, 0x68, 0x6b, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x67, 0x75, 0x61, 0x72, 0x64, 0x00, 0x5f, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x71, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x6d, 0x61, 0x64, 0x64, 0x72, 0x5f, 0x73, 0x6c, 0x69, 0x64, 0x65, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x63, 0x68, 0x65, 0x00, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x5f, 0x63, 0x68, 0x6d, 0x6f, 0x64, 0x00, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x73, 0x65, 0x67, 0x62, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x00, 0x5f, 0x6d, 0x65, 0x6d, 0x63, 0x70, 0x79, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x74, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x5f, 0x70, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x5f, 0x72, 0x65, 0x63, 0x76, 0x00, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x00, 0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x5f, 0x73, 0x73, 0x63, 0x61, 0x6e, 0x66, 0x00, 0x5f, 0x73, 0x74, 0x72, 0x63, 0x6d, 0x70, 0x00, 0x5f, 0x73, 0x74, 0x72, 0x6c, 0x65, 0x6e, 0x00, 0x5f, 0x75, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x00, 0x2b, 0x5b, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x5d, 0x00, 0x5f, 0x68, 0x65, 0x78, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x00, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x69, 0x6e, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x74, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x34, 0x30, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x35, 0x36, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x35, 0x32, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x4e, 0x4f, 0x4e, 0x4c, 0x41, 0x5a, 0x59, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x24, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x53, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x64, 0x70, 0x5f, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x00, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x66, 0x64, 0x00, 0x5f, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x00 }; unsigned int __src_osax_payload_len = 44976;
unsigned char __src_osax_payload[] = { 0xcf, 0xfa, 0xed, 0xfe, 0x07, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x28, 0x0b, 0x00, 0x00, 0x85, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x56, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x58, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x74, 0x79, 0x70, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x75, 0x6e, 0x77, 0x69, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x7f, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x58, 0x04, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6e, 0x6c, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x5f, 0x70, 0x74, 0x72, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x67, 0x6f, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6c, 0x61, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x5f, 0x70, 0x74, 0x72, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x80, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x82, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x63, 0x66, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x83, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6e, 0x6c, 0x63, 0x6c, 0x73, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x85, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x73, 0x65, 0x6c, 0x72, 0x65, 0x66, 0x73, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x85, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x72, 0x65, 0x66, 0x73, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x86, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x62, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x5f, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x45, 0x44, 0x49, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x2f, 0x73, 0x72, 0x63, 0x2f, 0x6f, 0x73, 0x61, 0x78, 0x2f, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x90, 0x00, 0x00, 0xc8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x91, 0x00, 0x00, 0xd0, 0x06, 0x00, 0x00, 0xb8, 0x98, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x40, 0x9a, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0xc0, 0xa4, 0x00, 0x00, 0xf0, 0x0a, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xa2, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x7b, 0xe3, 0xb1, 0xc2, 0xe4, 0x91, 0x33, 0xae, 0xb0, 0x5e, 0xf6, 0x9b, 0x27, 0x90, 0xff, 0x32, 0x24, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x0a, 0x00, 0x04, 0x0f, 0x0a, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x61, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x64, 0x01, 0x05, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x75, 0x73, 0x72, 0x2f, 0x6c, 0x69, 0x62, 0x2f, 0x6c, 0x69, 0x62, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x42, 0x2e, 0x64, 0x79, 0x6c, 0x69, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x81, 0x8b, 0x06, 0x00, 0x00, 0x96, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x4b, 0x05, 0x00, 0x00, 0x40, 0x00, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x41, 0x2f, 0x43, 0x6f, 0x72, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x81, 0x8b, 0x06, 0x00, 0x00, 0x2c, 0x01, 0x2f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x4c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x2f, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x2f, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x43, 0x2f, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x75, 0x73, 0x72, 0x2f, 0x6c, 0x69, 0x62, 0x2f, 0x6c, 0x69, 0x62, 0x6f, 0x62, 0x6a, 0x63, 0x2e, 0x41, 0x2e, 0x64, 0x79, 0x6c, 0x69, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x9a, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x40, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x25, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x26, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x27, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0x78, 0x10, 0x03, 0xb9, 0x00, 0x8f, 0x00, 0x00, 0xb8, 0x00, 0x9a, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0xb8, 0x10, 0x0e, 0x00, 0x00, 0x5d, 0xc3, 0xb8, 0x00, 0x80, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x7f, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x67, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0x4f, 0x3f, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x4d, 0x10, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x21, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x2b, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x21, 0x48, 0x83, 0x79, 0x10, 0x03, 0xb9, 0x10, 0xdb, 0x37, 0x00, 0xb8, 0x00, 0xf5, 0x36, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0xb8, 0x00, 0x9b, 0x49, 0x00, 0x48, 0x83, 0x79, 0x10, 0x06, 0x74, 0x02, 0x31, 0xc0, 0x5d, 0xc3, 0xb8, 0x00, 0x00, 0x31, 0x00, 0x5d, 0xc3, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x4d, 0x10, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x1a, 0x48, 0x83, 0xf8, 0x0f, 0x74, 0x24, 0x48, 0x83, 0xf8, 0x0e, 0x75, 0x1a, 0xb8, 0x00, 0x75, 0x05, 0x00, 0x48, 0x83, 0x79, 0x10, 0x03, 0x7e, 0x0e, 0xeb, 0x0e, 0xb8, 0x00, 0x96, 0x05, 0x00, 0x48, 0x83, 0x79, 0x10, 0x06, 0x74, 0x02, 0x31, 0xc0, 0x5d, 0xc3, 0xb8, 0x00, 0x30, 0x05, 0x00, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x29, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x2c, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x2f, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x86, 0x3e, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x99, 0x3f, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x78, 0x41, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x79, 0x40, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x45, 0x18, 0x48, 0x8d, 0x48, 0xf3, 0x48, 0x83, 0xf9, 0x02, 0x77, 0x0e, 0x48, 0x8d, 0x0d, 0xff, 0x67, 0x00, 0x00, 0x48, 0x8b, 0x44, 0xc1, 0x98, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x25, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x24, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x37, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xe4, 0x44, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xfd, 0x45, 0x00, 0x00, 0xeb, 0x1c, 0x48, 0x8d, 0x05, 0xfc, 0x4c, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x06, 0x47, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xa8, 0x49, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x25, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x24, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x37, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x8d, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0x05, 0xa6, 0x4e, 0x00, 0x00, 0xeb, 0x1c, 0x48, 0x8d, 0x05, 0x0b, 0x53, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xdf, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x2d, 0x52, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x3a, 0x48, 0x83, 0xf9, 0x0e, 0x74, 0x1b, 0x48, 0x83, 0xf9, 0x0f, 0x75, 0x3e, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0x6c, 0x53, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x85, 0x54, 0x00, 0x00, 0xeb, 0x13, 0x48, 0x83, 0x78, 0x10, 0x03, 0x48, 0x8d, 0x0d, 0xc7, 0x55, 0x00, 0x00, 0x48, 0x8d, 0x05, 0x33, 0x58, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xc1, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x06, 0x75, 0x09, 0x48, 0x8d, 0x05, 0xeb, 0x58, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8d, 0x45, 0x10, 0x48, 0x8b, 0x4d, 0x18, 0x48, 0x83, 0xf9, 0x0d, 0x74, 0x1c, 0x48, 0x83, 0xf9, 0x0f, 0x74, 0x2a, 0x48, 0x83, 0xf9, 0x0e, 0x75, 0x20, 0x48, 0x83, 0x78, 0x10, 0x03, 0x7e, 0x19, 0x48, 0x8d, 0x05, 0x99, 0x5a, 0x00, 0x00, 0x5d, 0xc3, 0x48, 0x83, 0x78, 0x10, 0x06, 0x75, 0x09, 0x48, 0x8d, 0x05, 0x94, 0x5b, 0x00, 0x00, 0x5d, 0xc3, 0x31, 0xc0, 0x5d, 0xc3, 0x48, 0x8d, 0x05, 0x68, 0x59, 0x00, 0x00, 0x5d, 0xc3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0x90, 0x04, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x87, 0x63, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd8, 0x48, 0x8d, 0x3d, 0x69, 0x66, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x8c, 0x38, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xab, 0x69, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x44, 0x69, 0x00, 0x00, 0xff, 0x15, 0x6e, 0x63, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xb5, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x15, 0x36, 0x69, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc6, 0xe8, 0xe9, 0x38, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xc0, 0xf3, 0x48, 0x83, 0xf8, 0x03, 0x0f, 0x83, 0x9f, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x4a, 0x60, 0x00, 0x00, 0xe8, 0xa4, 0x38, 0x00, 0x00, 0x4c, 0x8b, 0x60, 0x18, 0xc7, 0x85, 0x5c, 0xfb, 0xff, 0xff, 0x00, 0x04, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x5c, 0xfb, 0xff, 0xff, 0xe8, 0x2f, 0x38, 0x00, 0x00, 0x49, 0xc7, 0xc6, 0xff, 0xff, 0xff, 0xff, 0x85, 0xc0, 0x0f, 0x84, 0xc3, 0x01, 0x00, 0x00, 0x4d, 0x01, 0xe6, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x0f, 0x84, 0xf4, 0x01, 0x00, 0x00, 0x48, 0x83, 0xf8, 0x0e, 0x0f, 0x84, 0xfa, 0x01, 0x00, 0x00, 0x48, 0x83, 0xf8, 0x0f, 0x0f, 0x85, 0x12, 0x02, 0x00, 0x00, 0x49, 0x8d, 0xbe, 0x00, 0x80, 0x00, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0xd0, 0x3b, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xe3, 0x3c, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xe9, 0xf1, 0x01, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0xc7, 0x85, 0x70, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xf4, 0x65, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x97, 0x37, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x9c, 0x5b, 0x00, 0x00, 0xe8, 0xf1, 0x37, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xe8, 0x00, 0x00, 0x00, 0x4c, 0x8d, 0x05, 0xb9, 0x5b, 0x00, 0x00, 0x48, 0x8d, 0x9d, 0x60, 0xfb, 0xff, 0xff, 0xbe, 0xff, 0x00, 0x00, 0x00, 0xb9, 0xff, 0x00, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xba, 0x00, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc1, 0x31, 0xc0, 0xe8, 0x82, 0x37, 0x00, 0x00, 0xc6, 0x85, 0x61, 0xff, 0xff, 0xff, 0x01, 0x48, 0x8d, 0xbd, 0x62, 0xff, 0xff, 0xff, 0x4c, 0x8d, 0x05, 0x57, 0x5f, 0x00, 0x00, 0xbe, 0x68, 0x00, 0x00, 0x00, 0xb9, 0x68, 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x49, 0x89, 0xd9, 0x31, 0xc0, 0xe8, 0x54, 0x37, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xe8, 0xf4, 0x37, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x00, 0x00, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x31, 0xd2, 0xe8, 0xcb, 0x37, 0x00, 0x00, 0x89, 0x05, 0xd5, 0x68, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x3a, 0x65, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x60, 0x48, 0x8d, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x89, 0xc7, 0xba, 0x6a, 0x00, 0x00, 0x00, 0xe8, 0x3a, 0x37, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x48, 0x48, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0xbe, 0x80, 0x01, 0x00, 0x00, 0xe8, 0x2a, 0x37, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x33, 0x8b, 0x3d, 0x96, 0x68, 0x00, 0x00, 0xbe, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x34, 0x37, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0x1e, 0x48, 0x8d, 0x3d, 0x84, 0x68, 0x00, 0x00, 0x48, 0x8d, 0x15, 0x55, 0x06, 0x00, 0x00, 0x31, 0xf6, 0x31, 0xc9, 0xe8, 0x48, 0x37, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xb5, 0x64, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xeb, 0x2a, 0xe8, 0x9b, 0x36, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x19, 0x48, 0x8b, 0x35, 0x47, 0x67, 0x00, 0x00, 0x48, 0x89, 0xc7, 0xff, 0x15, 0x76, 0x61, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x85, 0xf5, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x3d, 0x66, 0x64, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x69, 0x36, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x48, 0x61, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xd8, 0x0f, 0x85, 0x79, 0x04, 0x00, 0x00, 0x48, 0x81, 0xc4, 0x90, 0x04, 0x00, 0x00, 0x5b, 0x41, 0x5c, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x82, 0x36, 0x00, 0x00, 0x45, 0x31, 0xf6, 0x85, 0xc0, 0x0f, 0x84, 0x2d, 0xfe, 0xff, 0xff, 0x4c, 0x8d, 0xbd, 0x60, 0xfb, 0xff, 0xff, 0x31, 0xdb, 0x66, 0x90, 0x89, 0xdf, 0xe8, 0x59, 0x36, 0x00, 0x00, 0x48, 0x89, 0xc7, 0x4c, 0x89, 0xfe, 0xe8, 0xde, 0x36, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x25, 0x04, 0x00, 0x00, 0xff, 0xc3, 0xe8, 0x4b, 0x36, 0x00, 0x00, 0x39, 0xc3, 0x72, 0xdb, 0xe9, 0xf8, 0xfd, 0xff, 0xff, 0x49, 0x8d, 0xbe, 0x10, 0x0e, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xfe, 0x3c, 0x00, 0x00, 0xeb, 0x27, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0xb8, 0x00, 0x8f, 0x00, 0x00, 0xbf, 0x00, 0x9a, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf8, 0x4c, 0x01, 0xf7, 0x48, 0x8d, 0x35, 0xe6, 0x3b, 0x00, 0x00, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0xfa, 0x03, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x5e, 0x48, 0x89, 0xc3, 0x44, 0x8b, 0x20, 0x48, 0x89, 0xc1, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x42, 0x64, 0x00, 0x00, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0xe8, 0x9c, 0x35, 0x00, 0x00, 0x4a, 0x8b, 0x7c, 0x23, 0x04, 0xff, 0x15, 0x97, 0x60, 0x00, 0x00, 0x48, 0x89, 0x05, 0x18, 0x67, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x28, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x32, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x3c, 0x49, 0x8d, 0xbe, 0x00, 0x60, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x65, 0x3d, 0x00, 0x00, 0xeb, 0x2f, 0x48, 0x8d, 0x3d, 0xd0, 0x63, 0x00, 0x00, 0xe9, 0xb7, 0xfd, 0xff, 0xff, 0x49, 0x8d, 0xbe, 0x00, 0x70, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x35, 0x3f, 0x00, 0x00, 0xeb, 0x13, 0x49, 0x8d, 0xbe, 0x00, 0x70, 0x00, 0x00, 0x4c, 0x8d, 0x3d, 0x2f, 0x3e, 0x00, 0x00, 0xeb, 0x03, 0x4c, 0x89, 0xf7, 0x4c, 0x89, 0xfe, 0xe8, 0x60, 0x03, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x74, 0x34, 0x48, 0x89, 0xc3, 0x44, 0x8b, 0x38, 0x48, 0x89, 0xc1, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0xe8, 0x63, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0xe8, 0x05, 0x35, 0x00, 0x00, 0x4a, 0x8b, 0x7c, 0x3b, 0x04, 0xff, 0x15, 0x00, 0x60, 0x00, 0x00, 0x48, 0x89, 0x05, 0x89, 0x66, 0x00, 0x00, 0xeb, 0x19, 0x48, 0xc7, 0x05, 0x7c, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x95, 0x63, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0xd8, 0x34, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x39, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x56, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x23, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x8d, 0x3f, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xa6, 0x40, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x38, 0x49, 0x8d, 0xbe, 0x00, 0x50, 0x33, 0x00, 0x48, 0x8d, 0x35, 0x9a, 0x47, 0x00, 0x00, 0xeb, 0x28, 0x49, 0x8d, 0xbe, 0x00, 0xe5, 0x27, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x9a, 0x41, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x3c, 0x44, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0x95, 0x02, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x60, 0x63, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x3d, 0x34, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0x2a, 0x63, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x2d, 0x34, 0x00, 0x00, 0x48, 0x89, 0x1d, 0xc4, 0x65, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x39, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x56, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x32, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0xe4, 0x47, 0x00, 0x00, 0x48, 0x8d, 0x35, 0xfd, 0x48, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x38, 0x49, 0x8d, 0xbe, 0x00, 0x50, 0x49, 0x00, 0x48, 0x8d, 0x35, 0x57, 0x4d, 0x00, 0x00, 0xeb, 0x28, 0x49, 0x8d, 0xbe, 0x00, 0xfb, 0x37, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x21, 0x4a, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x6f, 0x4c, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0xe3, 0x01, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0xee, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x8b, 0x33, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0xb8, 0x62, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x7b, 0x33, 0x00, 0x00, 0x48, 0x89, 0x1d, 0x1a, 0x65, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x2f, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x4a, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x3d, 0x49, 0x8d, 0xbe, 0x00, 0x00, 0x31, 0x00, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x48, 0x8d, 0x05, 0x71, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x4e, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0xeb, 0x4c, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x06, 0x75, 0x10, 0x49, 0x8d, 0xbe, 0x00, 0x9b, 0x49, 0x00, 0x48, 0x8d, 0x35, 0xfb, 0x52, 0x00, 0x00, 0xeb, 0x32, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xeb, 0x2b, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0xb8, 0x10, 0xdb, 0x37, 0x00, 0xbf, 0x00, 0xf5, 0x36, 0x00, 0x48, 0x0f, 0x4f, 0xf8, 0x48, 0x8d, 0x05, 0x96, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x02, 0x52, 0x00, 0x00, 0x48, 0x0f, 0x4f, 0xf0, 0x4c, 0x01, 0xf7, 0xe8, 0x1d, 0x01, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x68, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0xc5, 0x32, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0x32, 0x62, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0xb5, 0x32, 0x00, 0x00, 0x48, 0x89, 0x1d, 0x5c, 0x64, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x68, 0xff, 0xff, 0xff, 0x48, 0x83, 0xf8, 0x0d, 0x74, 0x1c, 0x48, 0x83, 0xf8, 0x0e, 0x74, 0x30, 0x48, 0x83, 0xf8, 0x0f, 0x75, 0x44, 0x49, 0x8d, 0xbe, 0x00, 0x30, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x2e, 0x53, 0x00, 0x00, 0xeb, 0x39, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x06, 0x75, 0x2a, 0x49, 0x8d, 0xbe, 0x00, 0x96, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x33, 0x55, 0x00, 0x00, 0xeb, 0x1f, 0x48, 0x83, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x03, 0x7e, 0x10, 0x49, 0x8d, 0xbe, 0x00, 0x75, 0x05, 0x00, 0x48, 0x8d, 0x35, 0x0e, 0x54, 0x00, 0x00, 0xeb, 0x05, 0x31, 0xf6, 0x4c, 0x89, 0xf7, 0xe8, 0x7d, 0x00, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x48, 0x85, 0xc0, 0x74, 0x1c, 0x48, 0x89, 0xd9, 0x4c, 0x29, 0xf1, 0x48, 0x8d, 0x3d, 0x08, 0x62, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xda, 0x31, 0xc0, 0xe8, 0x25, 0x32, 0x00, 0x00, 0xeb, 0x0e, 0x48, 0x8d, 0x3d, 0xd2, 0x61, 0x00, 0x00, 0x31, 0xc0, 0xe8, 0x15, 0x32, 0x00, 0x00, 0x48, 0x89, 0x1d, 0xc4, 0x63, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x02, 0x5a, 0x00, 0x00, 0xe8, 0x8c, 0x32, 0x00, 0x00, 0x48, 0x89, 0x05, 0xb9, 0x63, 0x00, 0x00, 0xe8, 0xa2, 0x31, 0x00, 0x00, 0x89, 0x05, 0xb6, 0x63, 0x00, 0x00, 0xe9, 0x54, 0xfa, 0xff, 0xff, 0x89, 0xdf, 0xe8, 0x20, 0x32, 0x00, 0x00, 0x49, 0x89, 0xc6, 0xe9, 0xd4, 0xf9, 0xff, 0xff, 0xe8, 0x07, 0x32, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x8b, 0x05, 0x98, 0x5c, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x31, 0xc0, 0x48, 0x85, 0xff, 0x0f, 0x84, 0x1e, 0x01, 0x00, 0x00, 0x48, 0x89, 0xf3, 0x48, 0x85, 0xf6, 0x0f, 0x84, 0x12, 0x01, 0x00, 0x00, 0x48, 0x89, 0x7d, 0xc0, 0x48, 0x89, 0xdf, 0xe8, 0x54, 0x32, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x49, 0xff, 0xc7, 0x48, 0xb9, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x4c, 0x89, 0xf8, 0x48, 0xf7, 0xe1, 0x49, 0x89, 0xd5, 0x48, 0x89, 0x65, 0xc8, 0x49, 0xd1, 0xed, 0x49, 0x8d, 0x45, 0x0f, 0x48, 0x83, 0xe0, 0xf0, 0x49, 0x89, 0xe4, 0x49, 0x29, 0xc4, 0x4c, 0x89, 0xe4, 0x49, 0x89, 0xe6, 0x49, 0x29, 0xc6, 0x4c, 0x89, 0xf4, 0x4c, 0x89, 0xe7, 0x4c, 0x89, 0xee, 0xe8, 0x61, 0x31, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x4c, 0x89, 0xee, 0xe8, 0x56, 0x31, 0x00, 0x00, 0x49, 0x83, 0xff, 0x03, 0x72, 0x5d, 0x48, 0xff, 0xc3, 0x31, 0xc0, 0xbe, 0xd0, 0x00, 0x00, 0x00, 0xeb, 0x1b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x88, 0x14, 0x07, 0x48, 0x83, 0xc3, 0x03, 0x48, 0xff, 0xc0, 0x49, 0x39, 0xc5, 0x76, 0x36, 0x0f, 0xb6, 0x4b, 0xff, 0xb2, 0x01, 0x4c, 0x89, 0xf7, 0x80, 0xf9, 0x3f, 0x74, 0xe3, 0x31, 0xd2, 0x80, 0xf9, 0x3a, 0x0f, 0x9d, 0xc2, 0x8d, 0x14, 0xd2, 0x00, 0xca, 0xc0, 0xe2, 0x04, 0x0f, 0xb6, 0x0b, 0x80, 0xf9, 0x3a, 0xbf, 0xc9, 0x00, 0x00, 0x00, 0x0f, 0x4c, 0xfe, 0x00, 0xca, 0x40, 0x00, 0xfa, 0x4c, 0x89, 0xe7, 0xeb, 0xbb, 0x48, 0x8b, 0x75, 0xc0, 0x48, 0x89, 0xf0, 0x49, 0x83, 0xff, 0x03, 0x72, 0x3f, 0x31, 0xc9, 0x41, 0x80, 0x3c, 0x0e, 0x00, 0x74, 0x14, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x48, 0xff, 0xc1, 0x49, 0x39, 0xcd, 0x76, 0x26, 0x41, 0x80, 0x3c, 0x0e, 0x00, 0x75, 0xf1, 0x8a, 0x14, 0x08, 0x41, 0x3a, 0x14, 0x0c, 0x74, 0xe8, 0x48, 0xff, 0xc0, 0x48, 0x89, 0xc1, 0x48, 0x29, 0xf1, 0x48, 0x81, 0xf9, 0xa0, 0x86, 0x02, 0x00, 0x72, 0xc2, 0x31, 0xf6, 0xeb, 0x03, 0x48, 0x89, 0xc6, 0x48, 0x8b, 0x65, 0xc8, 0x48, 0x89, 0xf0, 0x48, 0x8b, 0x0d, 0x61, 0x5b, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xd0, 0x75, 0x0f, 0x48, 0x8d, 0x65, 0xd8, 0x5b, 0x41, 0x5c, 0x41, 0x5d, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x8e, 0x30, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0x98, 0x06, 0x00, 0x00, 0x48, 0x8b, 0x05, 0x5d, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0xb8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x17, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x19, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0x58, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x13, 0x61, 0x00, 0x00, 0x48, 0x89, 0x45, 0xb8, 0x48, 0x8b, 0x05, 0x18, 0x61, 0x00, 0x00, 0x48, 0x89, 0x85, 0xb0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xda, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0x00, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xc4, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0xa8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xce, 0x60, 0x00, 0x00, 0x48, 0x89, 0x85, 0x08, 0xff, 0xff, 0xff, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xa1, 0x5a, 0x00, 0x00, 0xe9, 0xc5, 0x00, 0x00, 0x00, 0x31, 0xc0, 0x48, 0x83, 0x3d, 0x4a, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x95, 0xc0, 0x8d, 0x48, 0x02, 0x48, 0x83, 0x3d, 0x44, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc8, 0x48, 0x83, 0x3d, 0x41, 0x61, 0x00, 0x00, 0x00, 0x8d, 0x41, 0x04, 0x0f, 0x44, 0xc1, 0x8d, 0x48, 0x08, 0x48, 0x83, 0x3d, 0x38, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc8, 0x89, 0xc8, 0x83, 0xc8, 0x10, 0x48, 0x83, 0x3d, 0x30, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xc1, 0x89, 0xc3, 0x83, 0xcb, 0x20, 0x48, 0x83, 0x3d, 0x28, 0x61, 0x00, 0x00, 0x00, 0x0f, 0x44, 0xd8, 0xbe, 0xf4, 0x03, 0x00, 0x00, 0x48, 0x8d, 0xbd, 0x4c, 0xf9, 0xff, 0xff, 0xe8, 0x7c, 0x2f, 0x00, 0x00, 0x66, 0xc7, 0x85, 0x44, 0xf9, 0xff, 0xff, 0x31, 0x34, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x31, 0x2e, 0x30, 0x2e, 0x89, 0x9d, 0x47, 0xf9, 0xff, 0xff, 0xc6, 0x85, 0x46, 0xf9, 0xff, 0xff, 0x00, 0xc6, 0x85, 0x4b, 0xf9, 0xff, 0xff, 0x0a, 0xba, 0x0c, 0x00, 0x00, 0x00, 0x8b, 0xbd, 0x54, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0x31, 0xc9, 0xe8, 0xcc, 0x2f, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x8b, 0x9d, 0x54, 0xff, 0xff, 0xff, 0x89, 0xdf, 0xbe, 0x02, 0x00, 0x00, 0x00, 0xe8, 0xbc, 0x2f, 0x00, 0x00, 0x89, 0xdf, 0xe8, 0x5b, 0x2f, 0x00, 0x00, 0x8b, 0x3d, 0xc5, 0x60, 0x00, 0x00, 0x31, 0xf6, 0x31, 0xd2, 0xe8, 0x3a, 0x2f, 0x00, 0x00, 0x83, 0xf8, 0xff, 0x74, 0xec, 0xba, 0x00, 0x01, 0x00, 0x00, 0x89, 0x85, 0x54, 0xff, 0xff, 0xff, 0x89, 0xc7, 0x4c, 0x89, 0xee, 0x31, 0xc9, 0xe8, 0x7e, 0x2f, 0x00, 0x00, 0x85, 0xc0, 0x7e, 0xb8, 0x48, 0x98, 0xc6, 0x84, 0x05, 0x40, 0xfd, 0xff, 0xff, 0x00, 0x8a, 0x85, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xeb, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x35, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xa1, 0x2e, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x1a, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x41, 0x89, 0xde, 0x45, 0x29, 0xee, 0x31, 0xff, 0xeb, 0x16, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xde, 0x45, 0x29, 0xee, 0x85, 0xff, 0x0f, 0x88, 0xf7, 0x00, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x21, 0xc8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x45, 0x85, 0xf6, 0x0f, 0x84, 0x11, 0xff, 0xff, 0xff, 0x44, 0x89, 0xf0, 0xb1, 0x68, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x31, 0x56, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x75, 0x21, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xe3, 0x48, 0x39, 0xc2, 0x72, 0x08, 0x84, 0xc9, 0x0f, 0x84, 0x2a, 0xfe, 0xff, 0xff, 0x80, 0xbd, 0x40, 0xfd, 0xff, 0xff, 0x73, 0x0f, 0x85, 0xfc, 0x00, 0x00, 0x00, 0x41, 0x83, 0xfe, 0x02, 0x0f, 0x92, 0xc1, 0x41, 0x83, 0xfe, 0x01, 0x0f, 0x87, 0x8f, 0x00, 0x00, 0x00, 0x31, 0xd2, 0x84, 0xc9, 0x0f, 0x84, 0xe1, 0x00, 0x00, 0x00, 0x84, 0xd2, 0x0f, 0x84, 0xd9, 0x00, 0x00, 0x00, 0x48, 0x83, 0x3d, 0x46, 0x5f, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x98, 0xfe, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x48, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xd4, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x2d, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xb8, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0xb9, 0x08, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x6c, 0x2d, 0x00, 0x00, 0xe9, 0x05, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x41, 0xfd, 0xff, 0xff, 0x70, 0x75, 0x53, 0x41, 0x83, 0xfe, 0x03, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x5b, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x42, 0xfd, 0xff, 0xff, 0x61, 0x75, 0x3d, 0x41, 0x83, 0xfe, 0x04, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x45, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x43, 0xfd, 0xff, 0xff, 0x63, 0x75, 0x27, 0x41, 0x83, 0xfe, 0x05, 0x0f, 0x92, 0xc1, 0x0f, 0x82, 0x2f, 0xff, 0xff, 0xff, 0x80, 0xbd, 0x44, 0xfd, 0xff, 0xff, 0x65, 0x75, 0x11, 0x41, 0x83, 0xfe, 0x06, 0x0f, 0x92, 0xc1, 0xb2, 0x01, 0x84, 0xc9, 0x0f, 0x85, 0x1f, 0xff, 0xff, 0xff, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xf4, 0x54, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xfa, 0x54, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x7e, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x75, 0x7a, 0x48, 0x83, 0x3d, 0x22, 0x5e, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x74, 0xfd, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x25, 0x5e, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x64, 0xfd, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x17, 0x09, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x61, 0x2c, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xfb, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0xfc, 0x08, 0x00, 0x00, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x7e, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x75, 0x7a, 0x48, 0x83, 0x3d, 0x72, 0x5d, 0x00, 0x00, 0x00, 0x0f, 0x84, 0xc4, 0xfc, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x7d, 0x5d, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xb4, 0xfc, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x69, 0x0b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x2b, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x4d, 0x0b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0x4e, 0x0b, 0x00, 0x00, 0xb1, 0x73, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xa0, 0x53, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xa4, 0x53, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0xc0, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0xa3, 0x00, 0x00, 0x00, 0x84, 0xc9, 0x0f, 0x85, 0x9b, 0x00, 0x00, 0x00, 0x48, 0x83, 0x3d, 0xae, 0x5c, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x00, 0xfc, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xa9, 0x5c, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xf0, 0xfb, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xb1, 0x5c, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xe0, 0xfb, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x50, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x62, 0x0f, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd1, 0x2a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x46, 0x0f, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x3f, 0x0f, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x44, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x2a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x28, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x21, 0x08, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x33, 0x52, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x38, 0x52, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x85, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x6c, 0x84, 0xc9, 0x75, 0x68, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x07, 0x0c, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x29, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xeb, 0x0b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0xba, 0x00, 0x40, 0x00, 0x00, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xe4, 0x0b, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x7a, 0x13, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe1, 0x28, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x5e, 0x13, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x57, 0x13, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xfc, 0x50, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x07, 0x51, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xca, 0x14, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x28, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xae, 0x14, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xa7, 0x14, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x14, 0x15, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x27, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xf8, 0x14, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xf1, 0x14, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0xcb, 0x4f, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0xd2, 0x4f, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x40, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xee, 0x19, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe1, 0x26, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xd2, 0x19, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xcb, 0x19, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x8b, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x72, 0x84, 0xc9, 0x75, 0x6e, 0x48, 0x83, 0x3d, 0x0e, 0x58, 0x00, 0x00, 0x00, 0x0f, 0x84, 0x38, 0xf7, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x48, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x91, 0x1c, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x31, 0x26, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x75, 0x1c, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xfb, 0xe9, 0x76, 0x1c, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x3d, 0x8b, 0x4e, 0x00, 0x00, 0x48, 0x8d, 0x1d, 0x92, 0x4e, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x80, 0x00, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x3e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x72, 0x67, 0x84, 0xc9, 0x75, 0x63, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x4c, 0x4c, 0x89, 0xfb, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0x0f, 0x1b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x91, 0x25, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xf3, 0x1a, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xec, 0x1a, 0x00, 0x00, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0xac, 0x02, 0x00, 0x00, 0x48, 0x89, 0xf2, 0x0f, 0xb6, 0x0c, 0x1e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xdf, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x8f, 0x02, 0x00, 0x00, 0x84, 0xc9, 0x0f, 0x85, 0x87, 0x02, 0x00, 0x00, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x74, 0x44, 0x4c, 0x89, 0xfb, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xab, 0x1b, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x24, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x8f, 0x1b, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0x88, 0x1b, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xbd, 0x24, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0xe5, 0x1d, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x6c, 0xf5, 0xff, 0xff, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x43, 0x56, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xf7, 0x23, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x3d, 0xf9, 0x55, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xa8, 0xfe, 0xff, 0xff, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x4e, 0x4f, 0x00, 0x00, 0x49, 0x89, 0xce, 0xff, 0xd1, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0x41, 0xff, 0xd6, 0x48, 0x89, 0x5d, 0xc8, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x39, 0xc3, 0x0f, 0x84, 0x4e, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xba, 0x55, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x4c, 0x89, 0x7d, 0xb0, 0x4c, 0x89, 0xfa, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x0b, 0x4f, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x49, 0x89, 0xc6, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x87, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x45, 0x31, 0xed, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x08, 0x4c, 0x89, 0xf7, 0xe8, 0x2d, 0x24, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xe8, 0x48, 0x89, 0xdf, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0xff, 0x15, 0x82, 0x4e, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x0f, 0x84, 0xc8, 0x06, 0x00, 0x00, 0x49, 0xff, 0xc5, 0x4d, 0x39, 0xfd, 0x72, 0xc0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x4f, 0x4e, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x75, 0x83, 0x4c, 0x8b, 0x25, 0x19, 0x4e, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0xe9, 0x55, 0x18, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x4a, 0x23, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x72, 0x1c, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x70, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x9d, 0x70, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x78, 0xff, 0xff, 0xff, 0x48, 0xb9, 0x00, 0x00, 0x00, 0x20, 0x20, 0x00, 0x00, 0x00, 0x48, 0x89, 0x4d, 0x80, 0x8b, 0x3d, 0xb5, 0x54, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x69, 0x22, 0x00, 0x00, 0x48, 0x89, 0x45, 0x88, 0x48, 0x8b, 0x05, 0xba, 0x4d, 0x00, 0x00, 0x48, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x48, 0xf9, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xa8, 0x1c, 0x00, 0x00, 0x48, 0x89, 0x85, 0x50, 0xf9, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xe2, 0x4f, 0x00, 0x00, 0x48, 0x89, 0x85, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x8d, 0x4d, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xf3, 0x22, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xbe, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x98, 0x22, 0x00, 0x00, 0xe9, 0x67, 0xf3, 0xff, 0xff, 0xb1, 0x77, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x38, 0x8c, 0x35, 0x3f, 0xfd, 0xff, 0xff, 0x0f, 0x85, 0x53, 0xf3, 0xff, 0xff, 0x48, 0x89, 0xf2, 0x48, 0x8d, 0x0d, 0x29, 0x4b, 0x00, 0x00, 0x0f, 0xb6, 0x0c, 0x0e, 0x48, 0x39, 0xc6, 0x73, 0x08, 0x48, 0x8d, 0x72, 0x01, 0x84, 0xc9, 0x75, 0xd8, 0x48, 0x39, 0xc2, 0x0f, 0x82, 0x2f, 0xf3, 0xff, 0xff, 0x84, 0xc9, 0x0f, 0x85, 0x27, 0xf3, 0xff, 0xff, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xfb, 0x0f, 0x1f, 0x40, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x21, 0xe9, 0xff, 0x19, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x21, 0x22, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xe3, 0x19, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x31, 0xff, 0xe9, 0xdc, 0x19, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x1f, 0x0f, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x97, 0x4c, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0xcb, 0x1f, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x92, 0x13, 0x00, 0x00, 0x41, 0x89, 0xc7, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x80, 0xfe, 0xff, 0xff, 0x0f, 0x29, 0x85, 0x70, 0xfe, 0xff, 0xff, 0x8b, 0x3d, 0x49, 0x53, 0x00, 0x00, 0x89, 0xc6, 0x48, 0x8d, 0x95, 0x70, 0xfe, 0xff, 0xff, 0xe8, 0x03, 0x21, 0x00, 0x00, 0xf2, 0x0f, 0x10, 0x85, 0x70, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x8d, 0x78, 0xfe, 0xff, 0xff, 0x0f, 0x28, 0x15, 0xf4, 0x24, 0x00, 0x00, 0x0f, 0x57, 0xc2, 0x0f, 0x57, 0xca, 0x48, 0x8d, 0xbd, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xb0, 0x20, 0x00, 0x00, 0x8b, 0x3d, 0x0c, 0x53, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0xe8, 0xd1, 0x20, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0x68, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x50, 0xf9, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x48, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x7d, 0x98, 0x4c, 0x8b, 0x4d, 0x90, 0x4c, 0x8b, 0x55, 0x88, 0x4c, 0x8b, 0x5d, 0x80, 0x4c, 0x8b, 0xa5, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x41, 0x55, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0x57, 0x41, 0x51, 0x41, 0x52, 0x41, 0x53, 0x50, 0x41, 0x54, 0xe8, 0x30, 0x20, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x60, 0x84, 0xc0, 0x74, 0x63, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x97, 0x4b, 0x00, 0x00, 0x74, 0x45, 0x4c, 0x89, 0xf3, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xdb, 0x0e, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x20, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xc3, 0x0e, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xf5, 0x31, 0xff, 0xe9, 0xbc, 0x0e, 0x00, 0x00, 0x8b, 0x3d, 0x2d, 0x52, 0x00, 0x00, 0x4c, 0x8b, 0x8d, 0x68, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x50, 0xf9, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x48, 0xf9, 0xff, 0xff, 0xe9, 0x12, 0x12, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x48, 0x20, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x70, 0x19, 0x00, 0x00, 0x8b, 0x3d, 0xda, 0x51, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x48, 0x89, 0xc6, 0xe8, 0x8a, 0x1f, 0x00, 0x00, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0xc5, 0x51, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xa9, 0x1f, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x3d, 0x7b, 0x51, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xda, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xd0, 0x4a, 0x00, 0x00, 0x49, 0x89, 0xce, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd6, 0x48, 0x85, 0xc0, 0x48, 0x89, 0x9d, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0x7d, 0xc0, 0x0f, 0x84, 0x82, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc5, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x38, 0x4c, 0x8b, 0x35, 0x66, 0x50, 0x00, 0x00, 0x45, 0x31, 0xe4, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x38, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xd0, 0xe8, 0xdc, 0x1f, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xe0, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xf6, 0x31, 0xc0, 0xff, 0x15, 0x35, 0x4a, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x34, 0x49, 0xff, 0xc4, 0x4d, 0x39, 0xec, 0x72, 0xc7, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xd0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x05, 0x4a, 0x00, 0x00, 0x49, 0x89, 0xc5, 0x48, 0x85, 0xc0, 0x75, 0x88, 0x31, 0xdb, 0x4c, 0x8b, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe8, 0x4c, 0x19, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x05, 0xca, 0x49, 0x00, 0x00, 0x48, 0x89, 0x85, 0x18, 0xff, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x58, 0x1b, 0x00, 0x00, 0x48, 0x89, 0x85, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x22, 0x4c, 0x00, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x38, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xbd, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x5d, 0xc8, 0x48, 0x89, 0x9d, 0x48, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x8b, 0x49, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x18, 0xff, 0xff, 0xff, 0xe8, 0xf1, 0x1e, 0x00, 0x00, 0x48, 0x39, 0x5d, 0xc0, 0x0f, 0x85, 0x15, 0x01, 0x00, 0x00, 0x4c, 0x89, 0x7d, 0xc0, 0x8b, 0x3d, 0x43, 0x50, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0xe8, 0x27, 0x1e, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x48, 0x8b, 0x3d, 0xf8, 0x4f, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0x4d, 0x49, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x7b, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x28, 0x4c, 0x8b, 0x25, 0xef, 0x4e, 0x00, 0x00, 0x45, 0x31, 0xf6, 0x0f, 0x1f, 0x40, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x28, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xd0, 0xe8, 0x6c, 0x1e, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4a, 0x8b, 0x1c, 0xf0, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xe6, 0x31, 0xc0, 0xff, 0x15, 0xc5, 0x48, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x34, 0x49, 0xff, 0xc6, 0x4d, 0x39, 0xfe, 0x72, 0xc7, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xd0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x95, 0x48, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x75, 0x8f, 0x31, 0xdb, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x92, 0x48, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8d, 0x35, 0x62, 0x46, 0x00, 0x00, 0x48, 0x89, 0xc2, 0xe8, 0x15, 0x1e, 0x00, 0x00, 0x4c, 0x8b, 0xb5, 0x60, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe9, 0xfb, 0x07, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x5a, 0x0f, 0x00, 0x00, 0xba, 0x00, 0x40, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x1f, 0x48, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x21, 0xd0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x54, 0x1b, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xfb, 0x47, 0x00, 0x00, 0x0f, 0x84, 0x05, 0xee, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x44, 0x89, 0x7d, 0xc8, 0x74, 0x44, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x3b, 0x08, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x01, 0x1d, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x23, 0x08, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x4d, 0x89, 0xf7, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xe9, 0x1c, 0x08, 0x00, 0x00, 0x48, 0x85, 0xdb, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0x7f, 0x47, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0x0f, 0x84, 0xba, 0x11, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x26, 0x4e, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x18, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x7a, 0x45, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x10, 0x1d, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x18, 0xff, 0xff, 0xff, 0x48, 0x89, 0x45, 0xc0, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xfe, 0x00, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x45, 0xa0, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x24, 0x47, 0x00, 0x00, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0xbd, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x8b, 0x45, 0x80, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x45, 0x31, 0xe4, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x48, 0x8b, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x48, 0x39, 0x08, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xc0, 0xe8, 0x75, 0x1c, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x34, 0xe0, 0x48, 0xc7, 0x85, 0x18, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8d, 0x35, 0xb2, 0x44, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x5b, 0x1c, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x18, 0xff, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x08, 0xff, 0xff, 0xff, 0x31, 0xc0, 0xff, 0x15, 0xa5, 0x46, 0x00, 0x00, 0x48, 0x3b, 0x45, 0xd0, 0x0f, 0x84, 0xbd, 0x0f, 0x00, 0x00, 0x49, 0xff, 0xc4, 0x4d, 0x39, 0xfc, 0x72, 0x93, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x71, 0x46, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x48, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x44, 0x46, 0x00, 0x00, 0x0f, 0x85, 0x54, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x7d, 0xb0, 0xe9, 0x7a, 0x10, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x47, 0x0e, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x19, 0x46, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x41, 0xbd, 0x00, 0x40, 0x00, 0x00, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x77, 0x14, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc8, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x3d, 0xe4, 0x45, 0x00, 0x00, 0x74, 0x4e, 0x4c, 0x89, 0xf3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x87, 0x3c, 0x44, 0x21, 0xe8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x30, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x1a, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0xb1, 0x0d, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x6e, 0x45, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xe8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0xd2, 0x13, 0x00, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x4c, 0x8b, 0x35, 0x3f, 0x45, 0x00, 0x00, 0x74, 0x49, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x86, 0x3c, 0x44, 0x21, 0xe8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x51, 0x1a, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xfb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x29, 0x1a, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x21, 0x17, 0x00, 0x00, 0x89, 0xc3, 0x8b, 0x3d, 0xb9, 0x4b, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xc8, 0xe8, 0x6c, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x71, 0x4b, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0x45, 0xb0, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x4c, 0x8b, 0x3d, 0xc2, 0x44, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x85, 0xc0, 0x89, 0x5d, 0xc0, 0x0f, 0x84, 0x81, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x48, 0x8b, 0x1d, 0x5f, 0x4a, 0x00, 0x00, 0x45, 0x31, 0xed, 0x0f, 0x1f, 0x40, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0xe8, 0xd9, 0x19, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x3c, 0xe8, 0x4c, 0x89, 0xff, 0x48, 0x89, 0xde, 0x31, 0xc0, 0xff, 0x15, 0x32, 0x44, 0x00, 0x00, 0x48, 0x39, 0x45, 0xc8, 0x74, 0x38, 0x49, 0xff, 0xc5, 0x4d, 0x39, 0xf5, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0xff, 0x43, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x89, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xbd, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x7d, 0xb0, 0xe8, 0x44, 0x13, 0x00, 0x00, 0x49, 0x89, 0xc7, 0x8b, 0x3d, 0xab, 0x4a, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xd0, 0xe8, 0x5e, 0x18, 0x00, 0x00, 0x48, 0x89, 0x85, 0xf8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x5c, 0x4a, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc2, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xb1, 0x43, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x4c, 0x89, 0xbd, 0x98, 0xfe, 0xff, 0xff, 0x74, 0x7f, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x28, 0x48, 0x8b, 0x1d, 0x4d, 0x49, 0x00, 0x00, 0x45, 0x31, 0xff, 0x66, 0x90, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x28, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0xe8, 0xc9, 0x18, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4e, 0x8b, 0x24, 0xf8, 0x4c, 0x89, 0xe7, 0x48, 0x89, 0xde, 0x31, 0xc0, 0xff, 0x15, 0x22, 0x43, 0x00, 0x00, 0x48, 0x39, 0x45, 0xd0, 0x74, 0x38, 0x49, 0xff, 0xc7, 0x4d, 0x39, 0xf7, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0xef, 0x42, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x8b, 0x45, 0x31, 0xe4, 0x48, 0x8b, 0x3d, 0x75, 0x49, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xb0, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xe2, 0x4c, 0x8b, 0x35, 0xcc, 0x42, 0x00, 0x00, 0x41, 0xff, 0xd6, 0x41, 0x89, 0xc7, 0x4c, 0x8b, 0xb5, 0xf8, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xf7, 0xe8, 0x17, 0x12, 0x00, 0x00, 0x48, 0x89, 0x85, 0xa0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x41, 0x49, 0x00, 0x00, 0x48, 0x8b, 0x0d, 0x5a, 0x49, 0x00, 0x00, 0x48, 0x8b, 0x9d, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x89, 0xdf, 0x4c, 0x89, 0xe6, 0x4c, 0x89, 0xf2, 0x49, 0x89, 0xc5, 0xff, 0xd1, 0x4d, 0x89, 0xf4, 0x48, 0x8b, 0x05, 0x6b, 0x42, 0x00, 0x00, 0x48, 0x89, 0x85, 0x18, 0xff, 0xff, 0xff, 0xb8, 0x00, 0x00, 0x00, 0xc2, 0x48, 0x89, 0x85, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0x29, 0x15, 0x00, 0x00, 0x48, 0x89, 0x85, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x05, 0xf3, 0x44, 0x00, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x48, 0x89, 0x9d, 0x38, 0xff, 0xff, 0xff, 0x44, 0x89, 0xbd, 0x48, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xb5, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x30, 0x42, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x18, 0xff, 0xff, 0xff, 0xe8, 0x96, 0x17, 0x00, 0x00, 0x83, 0x7d, 0xc0, 0x00, 0x0f, 0x84, 0xb1, 0x01, 0x00, 0x00, 0x8b, 0x3d, 0xec, 0x48, 0x00, 0x00, 0x48, 0x8b, 0x5d, 0xb0, 0x48, 0x89, 0xde, 0xe8, 0xcc, 0x16, 0x00, 0x00, 0x48, 0x89, 0x85, 0x60, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x9a, 0x48, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x58, 0xff, 0xff, 0xff, 0x48, 0x89, 0xda, 0x31, 0xc0, 0x48, 0x8b, 0x0d, 0xef, 0x41, 0x00, 0x00, 0x48, 0x89, 0xcb, 0xff, 0xd1, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x70, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x45, 0x80, 0x0f, 0x29, 0x45, 0x90, 0x0f, 0x29, 0x45, 0xa0, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0x45, 0xc0, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x80, 0x00, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x8b, 0x20, 0x4c, 0x8b, 0x2d, 0x91, 0x47, 0x00, 0x00, 0x31, 0xdb, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x45, 0x80, 0x4c, 0x39, 0x20, 0x74, 0x09, 0x48, 0x8b, 0x7d, 0xc0, 0xe8, 0x0c, 0x17, 0x00, 0x00, 0x48, 0x8b, 0x85, 0x78, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x3c, 0xd8, 0x4c, 0x89, 0xff, 0x4c, 0x89, 0xee, 0x31, 0xc0, 0xff, 0x15, 0x65, 0x41, 0x00, 0x00, 0x48, 0x39, 0x85, 0x60, 0xff, 0xff, 0xff, 0x74, 0x35, 0x48, 0xff, 0xc3, 0x4c, 0x39, 0xf3, 0x72, 0xc4, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xc0, 0x48, 0x8b, 0x75, 0xb8, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x40, 0xf9, 0xff, 0xff, 0xff, 0x15, 0x32, 0x41, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x85, 0xc0, 0x75, 0x8a, 0x45, 0x31, 0xff, 0x4c, 0x89, 0xff, 0x4c, 0x8b, 0x3d, 0x2d, 0x41, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x48, 0x8b, 0xbd, 0x98, 0xfe, 0xff, 0xff, 0x4c, 0x8d, 0x35, 0xf7, 0x3e, 0x00, 0x00, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0xe8, 0xa7, 0x16, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0x32, 0x47, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x00, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x55, 0xd0, 0x48, 0x8b, 0x05, 0xe8, 0x40, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x15, 0x47, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x87, 0x47, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x59, 0x15, 0x00, 0x00, 0x8b, 0x3d, 0x79, 0x47, 0x00, 0x00, 0x4c, 0x8b, 0xa5, 0xf8, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x48, 0x8b, 0x55, 0xc8, 0xe8, 0x58, 0x15, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0xf0, 0xfe, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x8b, 0xbd, 0xa0, 0xfe, 0xff, 0xff, 0x4c, 0x89, 0xf6, 0x48, 0x89, 0xc2, 0xe8, 0x20, 0x16, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x79, 0x40, 0x00, 0x00, 0x48, 0x8b, 0x7d, 0xb0, 0xe8, 0xbe, 0x14, 0x00, 0x00, 0x4c, 0x89, 0xe7, 0xe8, 0xb6, 0x14, 0x00, 0x00, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0x32, 0x40, 0x00, 0x00, 0xe9, 0x3d, 0xe6, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x04, 0x09, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x11, 0x40, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x45, 0x13, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xec, 0x3f, 0x00, 0x00, 0x0f, 0x84, 0xf6, 0xe5, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x49, 0x4c, 0x89, 0xf3, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x3f, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x14, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x27, 0x02, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x28, 0x02, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x4d, 0x89, 0xf7, 0x85, 0xff, 0x0f, 0x88, 0xa7, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x69, 0x3f, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x6b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xeb, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x99, 0x11, 0x00, 0x00, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x45, 0x00, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x36, 0x3f, 0x00, 0x00, 0x44, 0x8b, 0x75, 0xc8, 0x74, 0x4c, 0x4c, 0x89, 0xeb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x19, 0xeb, 0x27, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x41, 0x14, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xeb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xeb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x19, 0x14, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x89, 0xde, 0xe8, 0x11, 0x11, 0x00, 0x00, 0xf2, 0x41, 0x0f, 0x2a, 0xc7, 0xf2, 0x0f, 0x2a, 0xc8, 0xf2, 0x0f, 0x11, 0x85, 0x40, 0xf9, 0xff, 0xff, 0xf2, 0x0f, 0x11, 0x8d, 0x48, 0xf9, 0xff, 0xff, 0x8b, 0x3d, 0x92, 0x45, 0x00, 0x00, 0x44, 0x89, 0xf6, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0x7b, 0x13, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xe4, 0x44, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0xb8, 0xfe, 0xff, 0xff, 0x44, 0x89, 0xf2, 0x48, 0x8b, 0x05, 0x9b, 0x3e, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0xc8, 0x44, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xb5, 0x10, 0xff, 0xff, 0xff, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0xff, 0xd3, 0x48, 0x89, 0xc3, 0x8b, 0x3d, 0x3a, 0x45, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x30, 0x13, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x61, 0x3e, 0x00, 0x00, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0xe9, 0x3d, 0xe4, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x6e, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x11, 0x3e, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x45, 0x11, 0x00, 0x00, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xe6, 0x3d, 0x00, 0x00, 0x0f, 0x84, 0xf0, 0xe3, 0xff, 0xff, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x46, 0x4c, 0x89, 0xf3, 0x0f, 0x1f, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xed, 0x04, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x12, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xd5, 0x04, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xe9, 0xce, 0x04, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc7, 0x12, 0x00, 0x00, 0xe9, 0xe4, 0xf0, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xae, 0x12, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x36, 0x11, 0x00, 0x00, 0x8b, 0x3d, 0x40, 0x44, 0x00, 0x00, 0x44, 0x89, 0xfe, 0xe8, 0x48, 0x12, 0x00, 0x00, 0xe9, 0x53, 0xe3, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x8a, 0x08, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x27, 0x3d, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x5b, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x02, 0x3d, 0x00, 0x00, 0x0f, 0x84, 0x0c, 0xe3, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x4f, 0x4c, 0x89, 0xf3, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xba, 0x05, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x01, 0x12, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0xa2, 0x05, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0xa3, 0x05, 0x00, 0x00, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xf5, 0x85, 0xff, 0x0f, 0x88, 0xee, 0x07, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x63, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xe3, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xee, 0xe8, 0x42, 0x10, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xd0, 0x41, 0x8a, 0x04, 0x24, 0x4c, 0x89, 0xe3, 0x84, 0xc0, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x44, 0x89, 0x7d, 0xc8, 0x74, 0x44, 0x4c, 0x89, 0xe3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x48, 0x8b, 0x0d, 0x31, 0x3c, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x17, 0xeb, 0x2a, 0x0f, 0x1f, 0x40, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x61, 0x11, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xe5, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdd, 0x45, 0x29, 0xe5, 0x85, 0xff, 0x0f, 0x88, 0x5f, 0x07, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xde, 0x3b, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x41, 0xbf, 0x00, 0x40, 0x00, 0x00, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xe7, 0x44, 0x89, 0xee, 0xe8, 0x9c, 0x0f, 0x00, 0x00, 0x0f, 0x29, 0x85, 0x60, 0xff, 0xff, 0xff, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0xa6, 0x3b, 0x00, 0x00, 0x74, 0x40, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x30, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc1, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x15, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x31, 0xff, 0xeb, 0x11, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0xd4, 0x06, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x3e, 0x3b, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf8, 0x4c, 0x8d, 0x6b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xeb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0x02, 0x0f, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xc0, 0x41, 0x8a, 0x45, 0x00, 0x4c, 0x89, 0xeb, 0x84, 0xc0, 0x4c, 0x8b, 0x35, 0x0d, 0x3b, 0x00, 0x00, 0x74, 0x47, 0x4c, 0x89, 0xeb, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x86, 0x3c, 0x44, 0x21, 0xf8, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2f, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x21, 0x10, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x14, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xeb, 0x44, 0x8b, 0x7d, 0xc8, 0xeb, 0x18, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xeb, 0x85, 0xff, 0x44, 0x8b, 0x7d, 0xc8, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf1, 0x0f, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x89, 0xde, 0xe8, 0x79, 0x0e, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x6d, 0xc0, 0x0f, 0x28, 0xc5, 0xf3, 0x0f, 0x59, 0x05, 0x69, 0x13, 0x00, 0x00, 0xf3, 0x0f, 0x2c, 0xc0, 0x0f, 0x57, 0xc0, 0xf2, 0x0f, 0x2a, 0xc0, 0xf2, 0x0f, 0x10, 0x8d, 0x80, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x95, 0x88, 0xfe, 0xff, 0xff, 0x66, 0x0f, 0x28, 0xd9, 0x66, 0x0f, 0x28, 0xe1, 0xf2, 0x0f, 0x5e, 0xe2, 0xf2, 0x0f, 0x5e, 0xd8, 0xf2, 0x0f, 0x5e, 0xc4, 0xf2, 0x0f, 0x2c, 0xc0, 0x0f, 0x57, 0xc0, 0xf2, 0x0f, 0x5a, 0xc3, 0x0f, 0x57, 0xdb, 0xf2, 0x0f, 0x2a, 0xd8, 0xf2, 0x0f, 0x5e, 0xd3, 0xf2, 0x0f, 0x5a, 0xd2, 0xf3, 0x0f, 0x10, 0x1d, 0x1c, 0x13, 0x00, 0x00, 0xf3, 0x0f, 0x5e, 0xd8, 0xf3, 0x0f, 0x5a, 0xdb, 0xf2, 0x0f, 0x59, 0xd9, 0xf3, 0x0f, 0x10, 0x4d, 0xd0, 0xf3, 0x0f, 0x58, 0xcd, 0xf3, 0x0f, 0x5a, 0xc9, 0xf2, 0x0f, 0x5c, 0xd9, 0xf2, 0x0f, 0x11, 0x5d, 0xd0, 0x0f, 0x28, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x0f, 0x57, 0x0d, 0xd8, 0x12, 0x00, 0x00, 0xf3, 0x0f, 0x5a, 0xc9, 0xf2, 0x0f, 0x11, 0x8d, 0x60, 0xff, 0xff, 0xff, 0xf3, 0x0f, 0x5a, 0xc0, 0x0f, 0x57, 0xc9, 0xf3, 0x0f, 0x5a, 0xca, 0x48, 0x8d, 0xbd, 0xc0, 0xfe, 0xff, 0xff, 0xe8, 0x6d, 0x0e, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0xe8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x95, 0xd8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0xd0, 0xfe, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0xc8, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x05, 0xac, 0x39, 0x00, 0x00, 0x4c, 0x8b, 0x48, 0x28, 0x4c, 0x8b, 0x50, 0x20, 0x4c, 0x8b, 0x58, 0x18, 0x4c, 0x8b, 0x70, 0x10, 0x4c, 0x8b, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8d, 0xbd, 0x18, 0xff, 0xff, 0xff, 0x41, 0x55, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41, 0x53, 0x41, 0x56, 0x50, 0x41, 0x54, 0xe8, 0xfa, 0x0d, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x60, 0x48, 0x8b, 0x85, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x38, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x30, 0xff, 0xff, 0xff, 0x48, 0x8b, 0xb5, 0x28, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x18, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x20, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xbd, 0x40, 0xfe, 0xff, 0xff, 0xf2, 0x0f, 0x10, 0x45, 0xd0, 0xf2, 0x0f, 0x10, 0x8d, 0x60, 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x56, 0x53, 0x41, 0x50, 0xe8, 0xc4, 0x0d, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x30, 0x8b, 0x3d, 0x16, 0x40, 0x00, 0x00, 0x4c, 0x8b, 0x8d, 0x68, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x60, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x95, 0x58, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x9d, 0x50, 0xfe, 0xff, 0xff, 0x4c, 0x8b, 0x85, 0x40, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x85, 0x48, 0xfe, 0xff, 0xff, 0x44, 0x89, 0xfe, 0x41, 0x51, 0x51, 0x52, 0x53, 0x50, 0x41, 0x50, 0xe8, 0x04, 0x0e, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x30, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xda, 0x38, 0x00, 0x00, 0xe9, 0xe5, 0xde, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x19, 0x0e, 0x00, 0x00, 0xe9, 0xad, 0xf0, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xf4, 0x85, 0xff, 0x0f, 0x88, 0x4d, 0x05, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xaa, 0x38, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x4c, 0x8d, 0x7b, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xfb, 0x4c, 0x89, 0xf7, 0x44, 0x89, 0xe6, 0xe8, 0x6a, 0x0c, 0x00, 0x00, 0xf3, 0x0f, 0x11, 0x45, 0xc8, 0x41, 0x8a, 0x07, 0x4c, 0x89, 0xfb, 0x84, 0xc0, 0x4c, 0x8b, 0x25, 0x76, 0x38, 0x00, 0x00, 0x41, 0xbe, 0x00, 0x40, 0x00, 0x00, 0x74, 0x4a, 0x4c, 0x89, 0xfb, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0x44, 0x21, 0xf0, 0x85, 0xc0, 0x74, 0x1d, 0xeb, 0x2b, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x0d, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x10, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xfb, 0xeb, 0x14, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x59, 0x0d, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0xe1, 0x0b, 0x00, 0x00, 0x0f, 0x28, 0xc8, 0x8b, 0x3d, 0xe8, 0x3e, 0x00, 0x00, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xba, 0x01, 0x00, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x45, 0xc8, 0xe8, 0xee, 0x0c, 0x00, 0x00, 0xe9, 0xed, 0xdd, 0xff, 0xff, 0x41, 0xbd, 0x00, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x1b, 0x0d, 0x00, 0x00, 0xe9, 0xbc, 0xf1, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x0c, 0x0d, 0x00, 0x00, 0xe9, 0x52, 0xf2, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x4f, 0x04, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x9d, 0x37, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0xd1, 0x0a, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x78, 0x37, 0x00, 0x00, 0x0f, 0x84, 0x82, 0xdd, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x45, 0x4c, 0x89, 0xf3, 0x66, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0xa4, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x81, 0x0c, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x8c, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x8d, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x5c, 0x0c, 0x00, 0x00, 0xe9, 0xff, 0xf6, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x43, 0x0c, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x3b, 0x09, 0x00, 0x00, 0x8b, 0x1d, 0xd5, 0x3d, 0x00, 0x00, 0x89, 0xc7, 0xe8, 0x02, 0x0c, 0x00, 0x00, 0x89, 0xdf, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xd8, 0x0b, 0x00, 0x00, 0xe9, 0xdd, 0xdc, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x11, 0x0c, 0x00, 0x00, 0xe9, 0x60, 0xf7, 0xff, 0xff, 0x4d, 0x85, 0xf6, 0x4c, 0x8b, 0x25, 0xb4, 0x36, 0x00, 0x00, 0x4c, 0x8b, 0x7d, 0xb0, 0x0f, 0x84, 0xef, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x3d, 0xfb, 0x3c, 0x00, 0x00, 0x4c, 0x8b, 0xad, 0x00, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xee, 0x48, 0x8b, 0x55, 0xd0, 0x4c, 0x8b, 0x3d, 0xae, 0x36, 0x00, 0x00, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x85, 0xc0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0xdd, 0x3c, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x4c, 0x8b, 0xa5, 0x10, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x48, 0x8d, 0x95, 0xc0, 0xfe, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x8b, 0x3d, 0xb1, 0x3c, 0x00, 0x00, 0x4c, 0x89, 0xee, 0x4c, 0x8d, 0xad, 0x40, 0xfd, 0xff, 0xff, 0x48, 0x8b, 0x55, 0xc8, 0x41, 0xff, 0xd7, 0x48, 0x89, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x48, 0x8b, 0x3d, 0x9a, 0x3c, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xe6, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x41, 0xff, 0xd7, 0x4c, 0x8b, 0x7d, 0xb0, 0x49, 0x89, 0xc4, 0x8b, 0x3d, 0x0b, 0x3d, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0x31, 0x0b, 0x00, 0x00, 0x8b, 0x3d, 0xfd, 0x3c, 0x00, 0x00, 0x48, 0x8b, 0x75, 0xd0, 0xe8, 0xce, 0x0a, 0x00, 0x00, 0x8b, 0x3d, 0xee, 0x3c, 0x00, 0x00, 0x4c, 0x89, 0xfe, 0x48, 0x8b, 0x55, 0xc8, 0xe8, 0xd4, 0x0a, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0x19, 0x36, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x48, 0x8d, 0x35, 0xea, 0x33, 0x00, 0x00, 0x48, 0x89, 0xc2, 0xe8, 0x9d, 0x0b, 0x00, 0x00, 0x4c, 0x89, 0xe7, 0x4c, 0x8b, 0x25, 0xcd, 0x35, 0x00, 0x00, 0x48, 0x8b, 0x05, 0xee, 0x35, 0x00, 0x00, 0x48, 0x89, 0xc3, 0xff, 0xd0, 0x48, 0x8b, 0x7d, 0xd0, 0xff, 0xd3, 0x4c, 0x89, 0xff, 0xe8, 0x29, 0x0a, 0x00, 0x00, 0xe9, 0xbe, 0xdb, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xf2, 0x0a, 0x00, 0x00, 0xe9, 0x95, 0xf7, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd9, 0x0a, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0xd1, 0x07, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x00, 0x08, 0x00, 0x00, 0x8b, 0x3d, 0x60, 0x3c, 0x00, 0x00, 0xb9, 0x20, 0x00, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x83, 0xf8, 0x01, 0x75, 0x0a, 0xe8, 0x69, 0x0a, 0x00, 0x00, 0xe9, 0x62, 0xdb, 0xff, 0xff, 0xe8, 0xf3, 0x09, 0x00, 0x00, 0xe9, 0x58, 0xdb, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x3a, 0x03, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0x2c, 0x35, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x60, 0x08, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0x07, 0x35, 0x00, 0x00, 0x0f, 0x84, 0x11, 0xdb, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x44, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x89, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x11, 0x0a, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x71, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x72, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xec, 0x09, 0x00, 0x00, 0xe9, 0x79, 0xf7, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xdd, 0x09, 0x00, 0x00, 0xe9, 0x13, 0xf8, 0xff, 0xff, 0x41, 0xbf, 0x00, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xc8, 0x09, 0x00, 0x00, 0xe9, 0xa4, 0xf8, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb9, 0x09, 0x00, 0x00, 0xe9, 0x2f, 0xf9, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xfb, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xa0, 0x09, 0x00, 0x00, 0x4c, 0x89, 0xff, 0x89, 0xde, 0xe8, 0x98, 0x07, 0x00, 0x00, 0x89, 0xc3, 0x8b, 0x3d, 0x30, 0x3b, 0x00, 0x00, 0x89, 0xc6, 0x48, 0x8d, 0x95, 0x70, 0xff, 0xff, 0xff, 0xe8, 0xf0, 0x08, 0x00, 0x00, 0x8b, 0xbd, 0x70, 0xff, 0xff, 0xff, 0x48, 0x8d, 0xb5, 0x40, 0xf9, 0xff, 0xff, 0xe8, 0xd2, 0x08, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x40, 0xf9, 0xff, 0xff, 0x89, 0xde, 0xff, 0x15, 0xf1, 0x3a, 0x00, 0x00, 0xe9, 0x1c, 0xda, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x57, 0x02, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xf0, 0x33, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x24, 0x07, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xcb, 0x33, 0x00, 0x00, 0x0f, 0x84, 0xd5, 0xd9, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x48, 0x4c, 0x89, 0xf3, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x1d, 0xe9, 0x44, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd1, 0x08, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x85, 0x2c, 0x01, 0x00, 0x00, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc0, 0x44, 0x29, 0xf3, 0xe9, 0x2d, 0x01, 0x00, 0x00, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xac, 0x08, 0x00, 0x00, 0xe9, 0xba, 0xfa, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x9d, 0x08, 0x00, 0x00, 0xe9, 0xb4, 0xfb, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x84, 0x08, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x7c, 0x05, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x40, 0xf9, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x8b, 0x3d, 0x0b, 0x3a, 0x00, 0x00, 0xb9, 0x20, 0x00, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x48, 0x8d, 0x95, 0x40, 0xf9, 0xff, 0xff, 0x83, 0xf8, 0x01, 0x75, 0x07, 0xe8, 0xa8, 0x07, 0x00, 0x00, 0xeb, 0x05, 0xe8, 0x0d, 0x08, 0x00, 0x00, 0x8b, 0x3d, 0xe5, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0xe8, 0xbd, 0x07, 0x00, 0x00, 0xe9, 0xf8, 0xd8, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x41, 0x89, 0xdc, 0x45, 0x29, 0xfc, 0x85, 0xff, 0x0f, 0x88, 0x42, 0x01, 0x00, 0x00, 0x48, 0x0f, 0xbe, 0xc7, 0x48, 0x8b, 0x0d, 0xcc, 0x32, 0x00, 0x00, 0x8b, 0x44, 0x81, 0x3c, 0x44, 0x21, 0xf0, 0x4c, 0x8d, 0x73, 0x01, 0x85, 0xc0, 0x4c, 0x0f, 0x44, 0xf3, 0x4c, 0x89, 0xff, 0x44, 0x89, 0xe6, 0xe8, 0x00, 0x06, 0x00, 0x00, 0x85, 0xc0, 0x4c, 0x8b, 0x25, 0xa7, 0x32, 0x00, 0x00, 0x0f, 0x84, 0xb1, 0xd8, 0xff, 0xff, 0x41, 0x89, 0xc7, 0x41, 0x8a, 0x06, 0x4c, 0x89, 0xf3, 0x84, 0xc0, 0x74, 0x40, 0x4c, 0x89, 0xf3, 0x90, 0x84, 0xc0, 0x78, 0x1c, 0x48, 0x0f, 0xbe, 0xc0, 0x41, 0x8b, 0x44, 0x84, 0x3c, 0xb9, 0x00, 0x40, 0x00, 0x00, 0x21, 0xc8, 0x85, 0xc0, 0x74, 0x19, 0xe9, 0x85, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x0f, 0xbe, 0xf8, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xb1, 0x07, 0x00, 0x00, 0x85, 0xc0, 0x75, 0x71, 0x0f, 0xb6, 0x43, 0x01, 0x48, 0xff, 0xc3, 0x84, 0xc0, 0x75, 0xc4, 0x44, 0x29, 0xf3, 0xeb, 0x75, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x89, 0x07, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x81, 0x05, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0x39, 0xd8, 0xff, 0xff, 0x89, 0xc3, 0x8b, 0x3d, 0x11, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xb1, 0x06, 0x00, 0x00, 0x8b, 0x3d, 0x01, 0x39, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xda, 0xb9, 0x01, 0x00, 0x00, 0x00, 0xe8, 0xa2, 0x06, 0x00, 0x00, 0xe9, 0x0d, 0xd8, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x41, 0x07, 0x00, 0x00, 0xe9, 0xc9, 0xfc, 0xff, 0xff, 0x0f, 0xbe, 0x3b, 0x44, 0x29, 0xf3, 0x85, 0xff, 0x79, 0x0a, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0x28, 0x07, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x89, 0xde, 0xe8, 0x20, 0x05, 0x00, 0x00, 0x85, 0xc0, 0x0f, 0x84, 0xd8, 0xd7, 0xff, 0xff, 0x89, 0xc3, 0x8b, 0x3d, 0xb0, 0x38, 0x00, 0x00, 0x44, 0x89, 0xfe, 0x89, 0xc2, 0xe8, 0xb0, 0x06, 0x00, 0x00, 0x8b, 0x3d, 0xa0, 0x38, 0x00, 0x00, 0x89, 0xde, 0xe8, 0x9d, 0x06, 0x00, 0x00, 0xe9, 0xb4, 0xd7, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xe8, 0x06, 0x00, 0x00, 0xe9, 0xac, 0xfd, 0xff, 0xff, 0xbe, 0x00, 0x40, 0x00, 0x00, 0xe8, 0xd9, 0x06, 0x00, 0x00, 0xe9, 0xc1, 0xfe, 0xff, 0xff, 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0x76, 0x31, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0x48, 0xc7, 0x45, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0xd4, 0x06, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x3f, 0x2f, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xd8, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x02, 0x07, 0x00, 0x00, 0x48, 0x8b, 0x45, 0xd8, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x1a, 0x31, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x4b, 0x06, 0x00, 0x00, 0x90, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x56, 0x41, 0x55, 0x53, 0x50, 0x48, 0x89, 0xfb, 0x48, 0x8b, 0x3d, 0xc4, 0x37, 0x00, 0x00, 0xe8, 0x7f, 0x06, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x00, 0x37, 0x00, 0x00, 0x48, 0x89, 0xc7, 0xff, 0x15, 0xe7, 0x30, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x8b, 0x43, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8b, 0x78, 0x18, 0xe8, 0x33, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x0d, 0x74, 0x37, 0x00, 0x00, 0x4c, 0x89, 0xf7, 0x49, 0x89, 0xc5, 0xff, 0xd1, 0x48, 0x8b, 0x43, 0x20, 0x48, 0x8b, 0x40, 0x08, 0x48, 0x8b, 0x78, 0x18, 0x48, 0x83, 0xc4, 0x08, 0x5b, 0x41, 0x5d, 0x41, 0x5e, 0x5d, 0xe9, 0xff, 0x04, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x41, 0x55, 0x41, 0x54, 0x53, 0x48, 0x81, 0xec, 0xf8, 0x00, 0x00, 0x00, 0x48, 0x89, 0xbd, 0x28, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x05, 0x6e, 0x30, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x45, 0xd0, 0x48, 0x8b, 0x3d, 0x08, 0x37, 0x00, 0x00, 0x48, 0xc7, 0x85, 0x48, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8d, 0x35, 0x5c, 0x2e, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x48, 0xff, 0xff, 0xff, 0xe8, 0xf2, 0x05, 0x00, 0x00, 0x48, 0x8b, 0x9d, 0x48, 0xff, 0xff, 0xff, 0x48, 0x85, 0xdb, 0x0f, 0x84, 0x5d, 0x01, 0x00, 0x00, 0x0f, 0x57, 0xc0, 0x0f, 0x29, 0x85, 0x10, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x85, 0x00, 0xff, 0xff, 0xff, 0x0f, 0x29, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x0f, 0x29, 0x85, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x35, 0x24, 0x36, 0x00, 0x00, 0x48, 0x8d, 0x95, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x50, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x89, 0xdf, 0xff, 0x15, 0xff, 0x2f, 0x00, 0x00, 0x48, 0x89, 0x85, 0x38, 0xff, 0xff, 0xff, 0x48, 0x85, 0xc0, 0x0f, 0x84, 0x0a, 0x01, 0x00, 0x00, 0x48, 0x89, 0x9d, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x00, 0x48, 0x89, 0x85, 0x30, 0xff, 0xff, 0xff, 0x4c, 0x8b, 0x25, 0xc8, 0x35, 0x00, 0x00, 0x45, 0x31, 0xff, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x48, 0x8b, 0x85, 0xf0, 0xfe, 0xff, 0xff, 0x48, 0x8b, 0x8d, 0x30, 0xff, 0xff, 0xff, 0x48, 0x39, 0x08, 0x74, 0x0c, 0x48, 0x8b, 0xbd, 0x40, 0xff, 0xff, 0xff, 0xe8, 0x2f, 0x05, 0x00, 0x00, 0x48, 0x8b, 0x85, 0xe8, 0xfe, 0xff, 0xff, 0x4e, 0x8b, 0x2c, 0xf8, 0x48, 0xc7, 0x85, 0x48, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x89, 0xef, 0x48, 0x8d, 0x35, 0x6c, 0x2d, 0x00, 0x00, 0x48, 0x8d, 0x95, 0x48, 0xff, 0xff, 0xff, 0xe8, 0x15, 0x05, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x48, 0xff, 0xff, 0xff, 0x4c, 0x89, 0xe6, 0x31, 0xc0, 0xff, 0x15, 0x63, 0x2f, 0x00, 0x00, 0x8b, 0x3d, 0x2d, 0x36, 0x00, 0x00, 0x48, 0x89, 0xc6, 0xe8, 0xe1, 0x03, 0x00, 0x00, 0x49, 0x89, 0xc6, 0x48, 0x89, 0xc7, 0x48, 0x8b, 0xb5, 0x28, 0xff, 0xff, 0xff, 0xe8, 0x93, 0x03, 0x00, 0x00, 0x89, 0xc3, 0x4c, 0x89, 0xf7, 0xe8, 0x8f, 0x03, 0x00, 0x00, 0x84, 0xdb, 0x75, 0x53, 0x49, 0xff, 0xc7, 0x4c, 0x3b, 0xbd, 0x38, 0xff, 0xff, 0xff, 0x0f, 0x82, 0x65, 0xff, 0xff, 0xff, 0x41, 0xb8, 0x10, 0x00, 0x00, 0x00, 0x48, 0x8b, 0xbd, 0x40, 0xff, 0xff, 0xff, 0x48, 0x8b, 0x35, 0x19, 0x35, 0x00, 0x00, 0x48, 0x8d, 0x95, 0xe0, 0xfe, 0xff, 0xff, 0x48, 0x8d, 0x8d, 0x50, 0xff, 0xff, 0xff, 0xff, 0x15, 0xfd, 0x2e, 0x00, 0x00, 0x41, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x48, 0x89, 0x85, 0x38, 0xff, 0xff, 0xff, 0x48, 0x85, 0xc0, 0x0f, 0x85, 0x10, 0xff, 0xff, 0xff, 0xeb, 0x03, 0x45, 0x31, 0xed, 0x48, 0x8b, 0x05, 0xcb, 0x2e, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xd0, 0x75, 0x15, 0x4c, 0x89, 0xe8, 0x48, 0x81, 0xc4, 0xf8, 0x00, 0x00, 0x00, 0x5b, 0x41, 0x5c, 0x41, 0x5d, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0xf2, 0x03, 0x00, 0x00, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x08, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0xaf, 0x03, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x7f, 0x20, 0xbe, 0x08, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0x99, 0x03, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x4c, 0x8b, 0x0d, 0x15, 0x35, 0x00, 0x00, 0x48, 0x8b, 0x47, 0x20, 0x48, 0x8b, 0x77, 0x28, 0x48, 0x8b, 0x15, 0xee, 0x34, 0x00, 0x00, 0x48, 0x8b, 0x4f, 0x30, 0x48, 0x89, 0xc7, 0x49, 0x89, 0xc8, 0x5d, 0x41, 0xff, 0xe1, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x56, 0x53, 0x49, 0x89, 0xf6, 0x48, 0x89, 0xfb, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x03, 0x00, 0x00, 0x00, 0xe8, 0x37, 0x03, 0x00, 0x00, 0x48, 0x83, 0xc3, 0x28, 0x49, 0x8b, 0x76, 0x28, 0x48, 0x89, 0xdf, 0xba, 0x03, 0x00, 0x00, 0x00, 0x5b, 0x41, 0x5e, 0x5d, 0xe9, 0x1e, 0x03, 0x00, 0x00, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x53, 0x50, 0x48, 0x89, 0xfb, 0x48, 0x8b, 0x7f, 0x28, 0xbe, 0x03, 0x00, 0x00, 0x00, 0xe8, 0x05, 0x03, 0x00, 0x00, 0x48, 0x8b, 0x7b, 0x20, 0xbe, 0x03, 0x00, 0x00, 0x00, 0x48, 0x83, 0xc4, 0x08, 0x5b, 0x5d, 0xe9, 0xf1, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x44, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0xa6, 0x2d, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x05, 0x03, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x2b, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x33, 0x03, 0x00, 0x00, 0x8b, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x4c, 0x2d, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x7d, 0x02, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x05, 0xd5, 0x33, 0x00, 0x00, 0x48, 0x8b, 0x35, 0x4e, 0x33, 0x00, 0x00, 0x8b, 0x4f, 0x30, 0x48, 0x8b, 0x57, 0x20, 0x4c, 0x8b, 0x47, 0x28, 0x48, 0x89, 0xc7, 0x31, 0xc0, 0x5d, 0xff, 0x25, 0x17, 0x2d, 0x00, 0x00, 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xc7, 0x20, 0x48, 0x8b, 0x76, 0x20, 0xba, 0x03, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0x0f, 0x02, 0x00, 0x00, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x48, 0x8b, 0x7f, 0x20, 0xbe, 0x03, 0x00, 0x00, 0x00, 0x5d, 0xe9, 0xf9, 0x01, 0x00, 0x00, 0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0xa6, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x05, 0x02, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0x8a, 0x2a, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0x33, 0x02, 0x00, 0x00, 0x8b, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x0d, 0x4c, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x3b, 0x4d, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0x7d, 0x01, 0x00, 0x00, 0x0f, 0x1f, 0x00, 0x55, 0x48, 0x89, 0xe5, 0x41, 0x57, 0x41, 0x56, 0x53, 0x48, 0x83, 0xec, 0x18, 0x48, 0x89, 0xf8, 0x49, 0x89, 0xe7, 0x48, 0x8b, 0x0d, 0x16, 0x2c, 0x00, 0x00, 0x48, 0x8b, 0x09, 0x48, 0x89, 0x4d, 0xe0, 0xc7, 0x45, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x4e, 0x01, 0x48, 0x89, 0xe3, 0x48, 0x83, 0xc1, 0x0f, 0x48, 0x83, 0xe1, 0xf0, 0x48, 0x29, 0xcb, 0x48, 0x89, 0xdc, 0x41, 0x89, 0xf6, 0x48, 0x89, 0xdf, 0x48, 0x89, 0xc6, 0x4c, 0x89, 0xf2, 0xe8, 0x75, 0x01, 0x00, 0x00, 0x41, 0xc6, 0x04, 0x1e, 0x00, 0x48, 0x8d, 0x35, 0xfd, 0x29, 0x00, 0x00, 0x48, 0x8d, 0x55, 0xdc, 0x48, 0x89, 0xdf, 0x31, 0xc0, 0xe8, 0xa3, 0x01, 0x00, 0x00, 0xf3, 0x0f, 0x10, 0x45, 0xdc, 0x4c, 0x89, 0xfc, 0x48, 0x8b, 0x05, 0xba, 0x2b, 0x00, 0x00, 0x48, 0x8b, 0x00, 0x48, 0x3b, 0x45, 0xe0, 0x75, 0x0b, 0x48, 0x8d, 0x65, 0xe8, 0x5b, 0x41, 0x5e, 0x41, 0x5f, 0x5d, 0xc3, 0xe8, 0xeb, 0x00, 0x00, 0x00, 0x90, 0xff, 0x25, 0xca, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xcc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xce, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xd8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xda, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xdc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xde, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xe8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xea, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xec, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xee, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf0, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf2, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf4, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf6, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xf8, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfa, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0x25, 0xfe, 0x2b, 0x00, 0x00, 0xff, 0x25, 0x00, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x02, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x04, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x06, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x08, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x0e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x10, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x12, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x14, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x16, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x18, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x1e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x20, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x22, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x24, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x26, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x28, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x2e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x30, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x32, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x34, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x36, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x38, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x3e, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x40, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x42, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x44, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x46, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x48, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4a, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4c, 0x2c, 0x00, 0x00, 0xff, 0x25, 0x4e, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x8d, 0x1d, 0xe5, 0x29, 0x00, 0x00, 0x41, 0x53, 0xff, 0x25, 0x25, 0x2a, 0x00, 0x00, 0x90, 0x68, 0xfa, 0x03, 0x00, 0x00, 0xe9, 0xe6, 0xff, 0xff, 0xff, 0x68, 0x17, 0x04, 0x00, 0x00, 0xe9, 0xdc, 0xff, 0xff, 0xff, 0x68, 0x35, 0x04, 0x00, 0x00, 0xe9, 0xd2, 0xff, 0xff, 0xff, 0x68, 0x52, 0x04, 0x00, 0x00, 0xe9, 0xc8, 0xff, 0xff, 0xff, 0x68, 0x62, 0x04, 0x00, 0x00, 0xe9, 0xbe, 0xff, 0xff, 0xff, 0x68, 0x75, 0x04, 0x00, 0x00, 0xe9, 0xb4, 0xff, 0xff, 0xff, 0x68, 0x8c, 0x04, 0x00, 0x00, 0xe9, 0xaa, 0xff, 0xff, 0xff, 0x68, 0xa5, 0x04, 0x00, 0x00, 0xe9, 0xa0, 0xff, 0xff, 0xff, 0x68, 0xc2, 0x04, 0x00, 0x00, 0xe9, 0x96, 0xff, 0xff, 0xff, 0x68, 0xe7, 0x04, 0x00, 0x00, 0xe9, 0x8c, 0xff, 0xff, 0xff, 0x68, 0x01, 0x05, 0x00, 0x00, 0xe9, 0x82, 0xff, 0xff, 0xff, 0x68, 0x10, 0x05, 0x00, 0x00, 0xe9, 0x78, 0xff, 0xff, 0xff, 0x68, 0x1d, 0x05, 0x00, 0x00, 0xe9, 0x6e, 0xff, 0xff, 0xff, 0x68, 0x2b, 0x05, 0x00, 0x00, 0xe9, 0x64, 0xff, 0xff, 0xff, 0x68, 0x39, 0x05, 0x00, 0x00, 0xe9, 0x5a, 0xff, 0xff, 0xff, 0x68, 0x4f, 0x05, 0x00, 0x00, 0xe9, 0x50, 0xff, 0xff, 0xff, 0x68, 0x5e, 0x05, 0x00, 0x00, 0xe9, 0x46, 0xff, 0xff, 0xff, 0x68, 0x73, 0x05, 0x00, 0x00, 0xe9, 0x3c, 0xff, 0xff, 0xff, 0x68, 0x82, 0x05, 0x00, 0x00, 0xe9, 0x32, 0xff, 0xff, 0xff, 0x68, 0x3c, 0x06, 0x00, 0x00, 0xe9, 0x28, 0xff, 0xff, 0xff, 0x68, 0x53, 0x06, 0x00, 0x00, 0xe9, 0x1e, 0xff, 0xff, 0xff, 0x68, 0x60, 0x06, 0x00, 0x00, 0xe9, 0x14, 0xff, 0xff, 0xff, 0x68, 0x6d, 0x06, 0x00, 0x00, 0xe9, 0x0a, 0xff, 0xff, 0xff, 0x68, 0x7e, 0x06, 0x00, 0x00, 0xe9, 0x00, 0xff, 0xff, 0xff, 0x68, 0x8d, 0x06, 0x00, 0x00, 0xe9, 0xf6, 0xfe, 0xff, 0xff, 0x68, 0x9c, 0x06, 0x00, 0x00, 0xe9, 0xec, 0xfe, 0xff, 0xff, 0x68, 0xab, 0x06, 0x00, 0x00, 0xe9, 0xe2, 0xfe, 0xff, 0xff, 0x68, 0xba, 0x06, 0x00, 0x00, 0xe9, 0xd8, 0xfe, 0xff, 0xff, 0x68, 0xd9, 0x03, 0x00, 0x00, 0xe9, 0xce, 0xfe, 0xff, 0xff, 0x68, 0xe7, 0x03, 0x00, 0x00, 0xe9, 0xc4, 0xfe, 0xff, 0xff, 0x68, 0x20, 0x00, 0x00, 0x00, 0xe9, 0xba, 0xfe, 0xff, 0xff, 0x68, 0x3f, 0x00, 0x00, 0x00, 0xe9, 0xb0, 0xfe, 0xff, 0xff, 0x68, 0x68, 0x00, 0x00, 0x00, 0xe9, 0xa6, 0xfe, 0xff, 0xff, 0x68, 0x8a, 0x00, 0x00, 0x00, 0xe9, 0x9c, 0xfe, 0xff, 0xff, 0x68, 0xb2, 0x00, 0x00, 0x00, 0xe9, 0x92, 0xfe, 0xff, 0xff, 0x68, 0xd5, 0x00, 0x00, 0x00, 0xe9, 0x88, 0xfe, 0xff, 0xff, 0x68, 0xff, 0x00, 0x00, 0x00, 0xe9, 0x7e, 0xfe, 0xff, 0xff, 0x68, 0x29, 0x01, 0x00, 0x00, 0xe9, 0x74, 0xfe, 0xff, 0xff, 0x68, 0x44, 0x01, 0x00, 0x00, 0xe9, 0x6a, 0xfe, 0xff, 0xff, 0x68, 0x6a, 0x01, 0x00, 0x00, 0xe9, 0x60, 0xfe, 0xff, 0xff, 0x68, 0x86, 0x01, 0x00, 0x00, 0xe9, 0x56, 0xfe, 0xff, 0xff, 0x68, 0xa1, 0x01, 0x00, 0x00, 0xe9, 0x4c, 0xfe, 0xff, 0xff, 0x68, 0xbb, 0x01, 0x00, 0x00, 0xe9, 0x42, 0xfe, 0xff, 0xff, 0x68, 0xd9, 0x01, 0x00, 0x00, 0xe9, 0x38, 0xfe, 0xff, 0xff, 0x68, 0xef, 0x01, 0x00, 0x00, 0xe9, 0x2e, 0xfe, 0xff, 0xff, 0x68, 0x11, 0x02, 0x00, 0x00, 0xe9, 0x24, 0xfe, 0xff, 0xff, 0x68, 0x2d, 0x02, 0x00, 0x00, 0xe9, 0x1a, 0xfe, 0xff, 0xff, 0x68, 0x56, 0x02, 0x00, 0x00, 0xe9, 0x10, 0xfe, 0xff, 0xff, 0x68, 0x7f, 0x02, 0x00, 0x00, 0xe9, 0x06, 0xfe, 0xff, 0xff, 0x68, 0x9e, 0x02, 0x00, 0x00, 0xe9, 0xfc, 0xfd, 0xff, 0xff, 0x68, 0xcc, 0x02, 0x00, 0x00, 0xe9, 0xf2, 0xfd, 0xff, 0xff, 0x68, 0xef, 0x02, 0x00, 0x00, 0xe9, 0xe8, 0xfd, 0xff, 0xff, 0x68, 0x1e, 0x03, 0x00, 0x00, 0xe9, 0xde, 0xfd, 0xff, 0xff, 0x68, 0x38, 0x03, 0x00, 0x00, 0xe9, 0xd4, 0xfd, 0xff, 0xff, 0x68, 0x52, 0x03, 0x00, 0x00, 0xe9, 0xca, 0xfd, 0xff, 0xff, 0x68, 0x70, 0x03, 0x00, 0x00, 0xe9, 0xc0, 0xfd, 0xff, 0xff, 0x68, 0x89, 0x03, 0x00, 0x00, 0xe9, 0xb6, 0xfd, 0xff, 0xff, 0x68, 0xa7, 0x03, 0x00, 0x00, 0xe9, 0xac, 0xfd, 0xff, 0xff, 0x68, 0xbd, 0x03, 0x00, 0x00, 0xe9, 0xa2, 0xfd, 0xff, 0xff, 0x68, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x98, 0xfd, 0xff, 0xff, 0x68, 0x0f, 0x00, 0x00, 0x00, 0xe9, 0x8e, 0xfd, 0xff, 0xff, 0x68, 0x91, 0x05, 0x00, 0x00, 0xe9, 0x84, 0xfd, 0xff, 0xff, 0x68, 0xa4, 0x05, 0x00, 0x00, 0xe9, 0x7a, 0xfd, 0xff, 0xff, 0x68, 0xc5, 0x05, 0x00, 0x00, 0xe9, 0x70, 0xfd, 0xff, 0xff, 0x68, 0xdb, 0x05, 0x00, 0x00, 0xe9, 0x66, 0xfd, 0xff, 0xff, 0x68, 0xf6, 0x05, 0x00, 0x00, 0xe9, 0x5c, 0xfd, 0xff, 0xff, 0x68, 0x19, 0x06, 0x00, 0x00, 0xe9, 0x52, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x80, 0x3e, 0x00, 0x00, 0x80, 0x3f, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x44, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x42, 0x35, 0x20, 0x34, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x46, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x37, 0x30, 0x20, 0x33, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x45, 0x38, 0x20, 0x46, 0x44, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x44, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x46, 0x20, 0x33, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x45, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x32, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x32, 0x20, 0x34, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x42, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x42, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x36, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x32, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x42, 0x44, 0x20, 0x39, 0x34, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x34, 0x20, 0x38, 0x39, 0x20, 0x46, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x35, 0x20, 0x34, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x45, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x37, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x32, 0x34, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x42, 0x35, 0x20, 0x45, 0x30, 0x20, 0x46, 0x44, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x42, 0x44, 0x20, 0x42, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x41, 0x20, 0x34, 0x31, 0x20, 0x46, 0x46, 0x20, 0x44, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x35, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x42, 0x35, 0x20, 0x38, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x39, 0x44, 0x20, 0x43, 0x38, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x36, 0x37, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x30, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x43, 0x37, 0x20, 0x38, 0x35, 0x20, 0x31, 0x43, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x42, 0x30, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x43, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x41, 0x34, 0x20, 0x34, 0x42, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x31, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x43, 0x37, 0x20, 0x38, 0x35, 0x20, 0x31, 0x43, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x39, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x42, 0x30, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x41, 0x20, 0x33, 0x43, 0x20, 0x30, 0x30, 0x00, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x45, 0x38, 0x20, 0x39, 0x39, 0x20, 0x36, 0x44, 0x20, 0x34, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x32, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x45, 0x42, 0x20, 0x45, 0x44, 0x20, 0x35, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x41, 0x43, 0x20, 0x39, 0x30, 0x20, 0x35, 0x41, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x31, 0x35, 0x20, 0x42, 0x45, 0x20, 0x31, 0x42, 0x20, 0x35, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x45, 0x38, 0x20, 0x35, 0x43, 0x20, 0x36, 0x44, 0x20, 0x34, 0x41, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x35, 0x20, 0x33, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x33, 0x44, 0x20, 0x41, 0x34, 0x20, 0x31, 0x31, 0x20, 0x34, 0x45, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x35, 0x41, 0x20, 0x38, 0x42, 0x20, 0x31, 0x37, 0x20, 0x30, 0x30, 0x20, 0x38, 0x38, 0x20, 0x30, 0x35, 0x20, 0x35, 0x44, 0x20, 0x32, 0x38, 0x20, 0x35, 0x44, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x31, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x36, 0x41, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x32, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x32, 0x42, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x46, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x46, 0x33, 0x20, 0x34, 0x31, 0x20, 0x46, 0x36, 0x20, 0x43, 0x37, 0x20, 0x30, 0x31, 0x20, 0x34, 0x39, 0x20, 0x30, 0x46, 0x20, 0x34, 0x35, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x32, 0x36, 0x20, 0x31, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x39, 0x42, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x32, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x41, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x37, 0x35, 0x20, 0x35, 0x42, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x37, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x37, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x43, 0x42, 0x20, 0x34, 0x31, 0x20, 0x46, 0x36, 0x20, 0x43, 0x37, 0x20, 0x30, 0x31, 0x20, 0x34, 0x39, 0x20, 0x30, 0x46, 0x20, 0x34, 0x35, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x37, 0x38, 0x20, 0x34, 0x39, 0x20, 0x42, 0x43, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x35, 0x44, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x30, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x44, 0x30, 0x20, 0x37, 0x35, 0x20, 0x33, 0x32, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x38, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x30, 0x33, 0x20, 0x37, 0x39, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x31, 0x42, 0x20, 0x34, 0x43, 0x20, 0x38, 0x35, 0x20, 0x45, 0x33, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x43, 0x45, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x46, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x34, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x45, 0x39, 0x20, 0x42, 0x31, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x38, 0x30, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x44, 0x34, 0x20, 0x37, 0x38, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x33, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x45, 0x36, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x43, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x36, 0x30, 0x20, 0x31, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x42, 0x42, 0x20, 0x37, 0x38, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x45, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x33, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x45, 0x41, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x33, 0x31, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x45, 0x20, 0x34, 0x30, 0x20, 0x30, 0x46, 0x20, 0x39, 0x34, 0x20, 0x43, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x32, 0x20, 0x45, 0x38, 0x20, 0x44, 0x30, 0x20, 0x46, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x45, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x31, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x41, 0x20, 0x35, 0x44, 0x20, 0x33, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x36, 0x35, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x38, 0x42, 0x20, 0x31, 0x37, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x30, 0x46, 0x20, 0x37, 0x45, 0x20, 0x46, 0x33, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x36, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x38, 0x30, 0x20, 0x46, 0x42, 0x20, 0x30, 0x31, 0x20, 0x37, 0x34, 0x20, 0x36, 0x45, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x32, 0x34, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x45, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x37, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x33, 0x31, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x43, 0x20, 0x34, 0x30, 0x20, 0x30, 0x46, 0x20, 0x39, 0x34, 0x20, 0x43, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x32, 0x20, 0x45, 0x38, 0x20, 0x46, 0x34, 0x20, 0x37, 0x45, 0x20, 0x31, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x44, 0x43, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x32, 0x39, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x46, 0x20, 0x38, 0x42, 0x20, 0x36, 0x43, 0x20, 0x46, 0x34, 0x20, 0x32, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x45, 0x38, 0x20, 0x39, 0x32, 0x20, 0x31, 0x34, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x36, 0x46, 0x20, 0x38, 0x45, 0x20, 0x31, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x38, 0x20, 0x34, 0x39, 0x20, 0x32, 0x33, 0x20, 0x34, 0x44, 0x20, 0x30, 0x30, 0x20, 0x46, 0x46, 0x20, 0x39, 0x31, 0x20, 0x38, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x38, 0x38, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x46, 0x20, 0x45, 0x38, 0x20, 0x36, 0x41, 0x20, 0x31, 0x34, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x46, 0x36, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x30, 0x31, 0x20, 0x37, 0x34, 0x20, 0x30, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x39, 0x20, 0x45, 0x44, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x41, 0x42, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x46, 0x46, 0x20, 0x43, 0x45, 0x20, 0x30, 0x46, 0x20, 0x38, 0x30, 0x20, 0x39, 0x45, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x37, 0x34, 0x20, 0x32, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x35, 0x20, 0x31, 0x36, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x35, 0x20, 0x36, 0x34, 0x20, 0x31, 0x31, 0x20, 0x46, 0x37, 0x20, 0x46, 0x46, 0x20, 0x45, 0x38, 0x20, 0x38, 0x46, 0x20, 0x43, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x39, 0x43, 0x20, 0x31, 0x36, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x45, 0x42, 0x20, 0x32, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x37, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x43, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x33, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x39, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x34, 0x39, 0x20, 0x42, 0x46, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x30, 0x20, 0x37, 0x44, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x38, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x45, 0x38, 0x20, 0x46, 0x44, 0x20, 0x37, 0x42, 0x20, 0x46, 0x31, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x33, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x32, 0x33, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x32, 0x31, 0x20, 0x44, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x38, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x46, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x33, 0x46, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x42, 0x38, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x38, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x30, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x34, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x41, 0x41, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x42, 0x36, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x39, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x41, 0x44, 0x20, 0x35, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x38, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x31, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x39, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x38, 0x20, 0x42, 0x42, 0x20, 0x46, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x45, 0x38, 0x20, 0x46, 0x42, 0x20, 0x38, 0x42, 0x20, 0x45, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x34, 0x20, 0x34, 0x38, 0x20, 0x42, 0x38, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x35, 0x20, 0x43, 0x34, 0x20, 0x30, 0x46, 0x20, 0x38, 0x35, 0x20, 0x36, 0x46, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x32, 0x31, 0x20, 0x45, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x33, 0x20, 0x31, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x46, 0x45, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x30, 0x38, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x38, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x39, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x45, 0x35, 0x20, 0x41, 0x36, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x42, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x43, 0x20, 0x30, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x38, 0x44, 0x20, 0x37, 0x30, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x36, 0x34, 0x20, 0x30, 0x33, 0x20, 0x30, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x33, 0x35, 0x20, 0x38, 0x33, 0x20, 0x38, 0x45, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x42, 0x35, 0x20, 0x46, 0x30, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x32, 0x20, 0x30, 0x45, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x42, 0x20, 0x33, 0x45, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x35, 0x45, 0x20, 0x39, 0x32, 0x20, 0x31, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x45, 0x38, 0x20, 0x43, 0x32, 0x20, 0x30, 0x45, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x41, 0x20, 0x45, 0x38, 0x20, 0x46, 0x36, 0x20, 0x30, 0x42, 0x20, 0x30, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x35, 0x20, 0x45, 0x31, 0x20, 0x46, 0x41, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x44, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x45, 0x46, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x46, 0x38, 0x20, 0x30, 0x32, 0x20, 0x30, 0x46, 0x20, 0x38, 0x43, 0x20, 0x39, 0x34, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x37, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x36, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x38, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x46, 0x33, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x43, 0x20, 0x34, 0x39, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x43, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x44, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x45, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x37, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x39, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x34, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x32, 0x34, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x41, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x45, 0x20, 0x45, 0x38, 0x20, 0x45, 0x36, 0x20, 0x42, 0x45, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x32, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x44, 0x38, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x39, 0x20, 0x30, 0x31, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x41, 0x38, 0x20, 0x37, 0x35, 0x20, 0x31, 0x41, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x36, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x45, 0x38, 0x20, 0x33, 0x46, 0x20, 0x44, 0x38, 0x20, 0x46, 0x32, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x39, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x44, 0x20, 0x39, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x43, 0x45, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x39, 0x37, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x38, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x33, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x44, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x44, 0x20, 0x34, 0x39, 0x20, 0x38, 0x33, 0x20, 0x43, 0x35, 0x20, 0x32, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x31, 0x20, 0x45, 0x43, 0x20, 0x41, 0x38, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x37, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x33, 0x35, 0x20, 0x30, 0x33, 0x20, 0x41, 0x32, 0x20, 0x31, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x30, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x32, 0x34, 0x20, 0x30, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x37, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x36, 0x44, 0x20, 0x41, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x45, 0x20, 0x45, 0x38, 0x20, 0x36, 0x35, 0x20, 0x43, 0x43, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x38, 0x39, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x44, 0x20, 0x42, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x31, 0x44, 0x20, 0x36, 0x45, 0x20, 0x38, 0x35, 0x20, 0x31, 0x36, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x42, 0x35, 0x20, 0x33, 0x38, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x46, 0x46, 0x20, 0x33, 0x31, 0x20, 0x44, 0x32, 0x20, 0x33, 0x31, 0x20, 0x43, 0x39, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x43, 0x38, 0x20, 0x30, 0x39, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x30, 0x20, 0x33, 0x42, 0x20, 0x30, 0x31, 0x20, 0x37, 0x35, 0x20, 0x31, 0x43, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x45, 0x38, 0x20, 0x37, 0x41, 0x20, 0x46, 0x35, 0x20, 0x46, 0x30, 0x20, 0x46, 0x46, 0x20, 0x45, 0x39, 0x20, 0x36, 0x45, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x35, 0x44, 0x20, 0x44, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x44, 0x42, 0x20, 0x37, 0x34, 0x20, 0x34, 0x34, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x30, 0x36, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x34, 0x20, 0x30, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x46, 0x42, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x35, 0x20, 0x41, 0x38, 0x20, 0x45, 0x38, 0x20, 0x33, 0x31, 0x20, 0x43, 0x44, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x43, 0x37, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x45, 0x38, 0x20, 0x44, 0x45, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x35, 0x20, 0x46, 0x46, 0x20, 0x37, 0x35, 0x20, 0x34, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x30, 0x20, 0x45, 0x38, 0x20, 0x38, 0x41, 0x20, 0x30, 0x41, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x37, 0x44, 0x20, 0x43, 0x38, 0x20, 0x45, 0x38, 0x20, 0x43, 0x37, 0x20, 0x30, 0x36, 0x20, 0x30, 0x35, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x43, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x38, 0x39, 0x20, 0x46, 0x42, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x42, 0x20, 0x33, 0x43, 0x20, 0x30, 0x33, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x43, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x45, 0x43, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x44, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x34, 0x43, 0x20, 0x32, 0x46, 0x20, 0x31, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x39, 0x20, 0x38, 0x42, 0x20, 0x31, 0x43, 0x20, 0x30, 0x36, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x44, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x45, 0x36, 0x20, 0x45, 0x38, 0x20, 0x41, 0x44, 0x20, 0x45, 0x42, 0x20, 0x46, 0x45, 0x20, 0x46, 0x46, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x35, 0x35, 0x20, 0x43, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x43, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x35, 0x20, 0x43, 0x30, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x38, 0x34, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x35, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x45, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x41, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x3f, 0x3f, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x30, 0x46, 0x20, 0x42, 0x36, 0x20, 0x35, 0x44, 0x20, 0x41, 0x46, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x34, 0x35, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x35, 0x38, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x38, 0x20, 0x33, 0x45, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x38, 0x35, 0x20, 0x46, 0x36, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x30, 0x41, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x46, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x46, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x41, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x31, 0x36, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x3f, 0x3f, 0x20, 0x43, 0x39, 0x20, 0x33, 0x45, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x3f, 0x3f, 0x20, 0x36, 0x43, 0x20, 0x33, 0x37, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x35, 0x39, 0x20, 0x30, 0x46, 0x20, 0x42, 0x36, 0x20, 0x35, 0x44, 0x20, 0x41, 0x46, 0x00, 0x35, 0x35, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x36, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x20, 0x34, 0x31, 0x20, 0x35, 0x34, 0x20, 0x35, 0x33, 0x20, 0x34, 0x38, 0x20, 0x38, 0x33, 0x20, 0x45, 0x43, 0x20, 0x34, 0x38, 0x20, 0x34, 0x31, 0x20, 0x38, 0x39, 0x20, 0x46, 0x35, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x46, 0x45, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x35, 0x20, 0x43, 0x36, 0x20, 0x46, 0x45, 0x20, 0x34, 0x43, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x34, 0x35, 0x20, 0x44, 0x30, 0x20, 0x34, 0x35, 0x20, 0x38, 0x35, 0x20, 0x45, 0x44, 0x20, 0x30, 0x46, 0x20, 0x38, 0x34, 0x20, 0x31, 0x46, 0x20, 0x30, 0x32, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x34, 0x39, 0x20, 0x43, 0x31, 0x20, 0x45, 0x46, 0x20, 0x32, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x44, 0x20, 0x37, 0x35, 0x20, 0x43, 0x46, 0x20, 0x43, 0x36, 0x20, 0x30, 0x36, 0x20, 0x30, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x39, 0x20, 0x46, 0x37, 0x20, 0x45, 0x38, 0x20, 0x30, 0x37, 0x20, 0x31, 0x43, 0x20, 0x30, 0x33, 0x20, 0x30, 0x30, 0x20, 0x34, 0x38, 0x20, 0x38, 0x42, 0x20, 0x33, 0x44, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x34, 0x44, 0x20, 0x30, 0x30, 0x20, 0x42, 0x45, 0x20, 0x30, 0x31, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x30, 0x30, 0x20, 0x45, 0x38, 0x20, 0x44, 0x35, 0x20, 0x35, 0x36, 0x20, 0x34, 0x35, 0x20, 0x30, 0x30, 0x20, 0x38, 0x34, 0x20, 0x43, 0x30, 0x20, 0x37, 0x34, 0x20, 0x36, 0x43, 0x20, 0x34, 0x39, 0x20, 0x38, 0x39, 0x20, 0x45, 0x34, 0x20, 0x34, 0x38, 0x20, 0x38, 0x39, 0x20, 0x45, 0x30, 0x20, 0x34, 0x43, 0x20, 0x38, 0x44, 0x20, 0x34, 0x30, 0x20, 0x45, 0x30, 0x20, 0x34, 0x43, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x55, 0x53, 0x45, 0x52, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x67, 0x65, 0x74, 0x20, 0x27, 0x65, 0x6e, 0x76, 0x20, 0x55, 0x53, 0x45, 0x52, 0x27, 0x21, 0x20, 0x61, 0x62, 0x6f, 0x72, 0x74, 0x2e, 0x2e, 0x00, 0x2f, 0x74, 0x6d, 0x70, 0x2f, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5f, 0x25, 0x73, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x69, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x6d, 0x61, 0x63, 0x4f, 0x53, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x53, 0x69, 0x65, 0x72, 0x72, 0x61, 0x2c, 0x20, 0x4d, 0x6f, 0x6a, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x6f, 0x63, 0x6b, 0x2e, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x21, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x64, 0x6f, 0x63, 0x6b, 0x2e, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x70, 0x70, 0x6d, 0x21, 0x20, 0x6d, 0x6f, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x21, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x64, 0x70, 0x70, 0x6d, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x64, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x61, 0x64, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x74, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x2e, 0x00, 0x5b, 0x79, 0x61, 0x62, 0x61, 0x69, 0x2d, 0x73, 0x61, 0x5d, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x20, 0x73, 0x65, 0x74, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x58, 0x20, 0x28, 0x30, 0x78, 0x25, 0x6c, 0x6c, 0x78, 0x29, 0x00, 0x44, 0x6f, 0x63, 0x6b, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x00, 0x25, 0x73, 0x00, 0x68, 0x61, 0x6e, 0x64, 0x73, 0x68, 0x61, 0x6b, 0x65, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x5f, 0x66, 0x61, 0x64, 0x65, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x74, 0x69, 0x63, 0x6b, 0x79, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x00, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x00, 0x31, 0x2e, 0x30, 0x2e, 0x31, 0x34, 0x00, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x25, 0x6c, 0x6c, 0x64, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x76, 0x38, 0x40, 0x3f, 0x30, 0x00, 0x25, 0x64, 0x00, 0x25, 0x66, 0x00, 0x55, 0x54, 0x46, 0x38, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x66, 0x6f, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x55, 0x49, 0x44, 0x3a, 0x00, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x55, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4c, 0x6f, 0x6e, 0x67, 0x4c, 0x6f, 0x6e, 0x67, 0x3a, 0x00, 0x61, 0x72, 0x72, 0x61, 0x79, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x3a, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x00, 0x73, 0x70, 0x69, 0x64, 0x00, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x46, 0x6f, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x00, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x57, 0x69, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x3a, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x00, 0x69, 0x6e, 0x69, 0x74, 0x00, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x49, 0x44, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x00, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x74, 0x6f, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x55, 0x49, 0x44, 0x3a, 0x00, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x55, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x3a, 0x00, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x76, 0x31, 0x36, 0x40, 0x30, 0x3a, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x61, 0x01, 0x03, 0x01, 0xd1, 0x58, 0x05, 0x01, 0x10, 0x19, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x80, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x3c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x03, 0x00, 0x06, 0x60, 0x0a, 0x00, 0x02, 0x80, 0x35, 0x00, 0x01, 0x10, 0x36, 0x00, 0x05, 0x80, 0x36, 0x00, 0x02, 0x70, 0x38, 0x00, 0x00, 0xe0, 0x38, 0x00, 0x04, 0x20, 0x39, 0x00, 0x03, 0x50, 0x39, 0x00, 0x01, 0xe0, 0x39, 0x00, 0x00, 0x50, 0x3a, 0x00, 0x01, 0x01, 0x00, 0x01, 0x01, 0x21, 0x00, 0x02, 0x01, 0x19, 0x01, 0x03, 0x01, 0x11, 0x0b, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xce, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x54, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x65, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x21, 0x50, 0x60, 0x43, 0x42, 0x53, 0x43, 0x53, 0x43, 0x53, 0x41, 0x53, 0x42, 0x80, 0x10, 0x18, 0x70, 0x08, 0x52, 0x42, 0x53, 0x43, 0x52, 0x47, 0x70, 0x28, 0x5d, 0x47, 0x52, 0x43, 0x51, 0x13, 0x40, 0x5f, 0x5f, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x75, 0x6e, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x51, 0x71, 0x10, 0x90, 0x40, 0x5f, 0x5f, 0x4e, 0x53, 0x43, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x00, 0x90, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x67, 0x75, 0x61, 0x72, 0x64, 0x00, 0x90, 0x40, 0x5f, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x71, 0x00, 0x90, 0x40, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x00, 0x80, 0x18, 0x90, 0x14, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x41, 0x72, 0x72, 0x61, 0x79, 0x00, 0x80, 0xa0, 0x0c, 0x90, 0x40, 0x5f, 0x5f, 0x5f, 0x43, 0x46, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x00, 0x80, 0x98, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0xc0, 0x10, 0x18, 0x90, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x00, 0x80, 0xf0, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x16, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x80, 0xd8, 0x0c, 0x90, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x80, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x17, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x80, 0x40, 0x90, 0x40, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x80, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x90, 0x40, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x63, 0x68, 0x65, 0x00, 0xb4, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x00, 0x80, 0xf8, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x90, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x50, 0x14, 0x40, 0x5f, 0x43, 0x46, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x00, 0x90, 0x00, 0x71, 0x58, 0x14, 0x40, 0x5f, 0x43, 0x46, 0x52, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0x60, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6e, 0x63, 0x61, 0x74, 0x00, 0x90, 0x00, 0x71, 0x68, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x54, 0x6f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0x70, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0x78, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x90, 0x00, 0x71, 0x80, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x00, 0x90, 0x00, 0x71, 0x88, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x90, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x98, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x53, 0x4e, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x73, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x48, 0x69, 0x64, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x47, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x57, 0x69, 0x74, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x01, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x42, 0x79, 0x47, 0x65, 0x6f, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x00, 0x90, 0x00, 0x71, 0x80, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x88, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x90, 0x00, 0x71, 0x90, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x90, 0x00, 0x71, 0x98, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x02, 0x15, 0x40, 0x5f, 0x43, 0x47, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x02, 0x16, 0x40, 0x5f, 0x4e, 0x53, 0x4c, 0x6f, 0x67, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x02, 0x16, 0x40, 0x5f, 0x4e, 0x53, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x4e, 0x53, 0x47, 0x65, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x62, 0x7a, 0x65, 0x72, 0x6f, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x02, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x72, 0x75, 0x6e, 0x65, 0x00, 0x90, 0x00, 0x71, 0x80, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x6e, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x66, 0x5f, 0x63, 0x68, 0x6b, 0x00, 0x90, 0x00, 0x71, 0x88, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x00, 0x90, 0x00, 0x71, 0x90, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0x98, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x6d, 0x61, 0x64, 0x64, 0x72, 0x5f, 0x73, 0x6c, 0x69, 0x64, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x03, 0x13, 0x40, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x03, 0x13, 0x40, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x03, 0x13, 0x40, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x03, 0x13, 0x40, 0x5f, 0x63, 0x68, 0x6d, 0x6f, 0x64, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x03, 0x13, 0x40, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x03, 0x13, 0x40, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x03, 0x13, 0x40, 0x5f, 0x67, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x03, 0x13, 0x40, 0x5f, 0x67, 0x65, 0x74, 0x73, 0x65, 0x67, 0x62, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x03, 0x13, 0x40, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe8, 0x03, 0x13, 0x40, 0x5f, 0x6d, 0x65, 0x6d, 0x63, 0x70, 0x79, 0x00, 0x90, 0x00, 0x71, 0xf0, 0x03, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x00, 0x90, 0x00, 0x71, 0xf8, 0x03, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x90, 0x00, 0x71, 0x80, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x00, 0x90, 0x00, 0x71, 0x88, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x74, 0x00, 0x90, 0x00, 0x71, 0x90, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0x98, 0x04, 0x17, 0x40, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa0, 0x04, 0x13, 0x40, 0x5f, 0x70, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x90, 0x00, 0x71, 0xa8, 0x04, 0x13, 0x40, 0x5f, 0x72, 0x65, 0x63, 0x76, 0x00, 0x90, 0x00, 0x71, 0xb0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x00, 0x90, 0x00, 0x71, 0xb8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xc0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x90, 0x00, 0x71, 0xc8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x73, 0x63, 0x61, 0x6e, 0x66, 0x00, 0x90, 0x00, 0x71, 0xd0, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x74, 0x72, 0x63, 0x6d, 0x70, 0x00, 0x90, 0x00, 0x71, 0xd8, 0x04, 0x13, 0x40, 0x5f, 0x73, 0x74, 0x72, 0x6c, 0x65, 0x6e, 0x00, 0x90, 0x00, 0x71, 0xe0, 0x04, 0x13, 0x40, 0x5f, 0x75, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x00, 0x05, 0x00, 0x02, 0x67, 0x65, 0x74, 0x5f, 0x00, 0x15, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x00, 0xa9, 0x02, 0x00, 0x05, 0x64, 0x00, 0x59, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xa3, 0x01, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xbd, 0x01, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x00, 0xd7, 0x01, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x00, 0xf1, 0x01, 0x00, 0x02, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x00, 0x6f, 0x70, 0x70, 0x6d, 0x5f, 0x00, 0x89, 0x01, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x84, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x8b, 0x02, 0x03, 0x00, 0x90, 0x32, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x9e, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x90, 0x02, 0x03, 0x00, 0xe0, 0x32, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xb8, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x95, 0x02, 0x03, 0x00, 0x90, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xd2, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x9a, 0x02, 0x03, 0x00, 0xc0, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0xec, 0x01, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x9f, 0x02, 0x03, 0x00, 0xf0, 0x33, 0x00, 0x00, 0x02, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x86, 0x02, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0xa4, 0x02, 0x03, 0x00, 0xc0, 0x34, 0x00, 0x03, 0x00, 0x90, 0x35, 0x00, 0x03, 0x00, 0xe0, 0x35, 0x00, 0x03, 0x00, 0x90, 0x36, 0x00, 0x03, 0x00, 0xf0, 0x36, 0x00, 0x03, 0x00, 0xd0, 0x37, 0x00, 0x03, 0x00, 0xb0, 0x38, 0x00, 0x00, 0x02, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0xd3, 0x02, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0xd9, 0x02, 0x04, 0x00, 0xf8, 0x8c, 0x02, 0x00, 0x04, 0x00, 0xa0, 0x8d, 0x02, 0x00, 0x00, 0x90, 0x32, 0x50, 0x30, 0x30, 0x30, 0x50, 0x50, 0x50, 0x30, 0x60, 0x60, 0x60, 0x50, 0xf0, 0x0d, 0xf0, 0x02, 0xb0, 0x53, 0x90, 0x01, 0x70, 0xf0, 0x03, 0x20, 0x20, 0x30, 0x40, 0x30, 0x90, 0x01, 0x30, 0x20, 0x20, 0x90, 0x01, 0x00, 0x00, 0x00, 0x9f, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x70, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xe0, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x90, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x07, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x20, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x90, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0xa0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xc0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0xf0, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x30, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x60, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x08, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xf0, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x08, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x20, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x09, 0x00, 0x00, 0x1e, 0x01, 0x80, 0x00, 0x40, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x09, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x60, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x09, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0xf0, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0x68, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0x98, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x09, 0x00, 0x00, 0x1e, 0x0d, 0x80, 0x00, 0xc8, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x09, 0x00, 0x00, 0x0e, 0x0f, 0x00, 0x00, 0x30, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0x09, 0x00, 0x00, 0x0e, 0x10, 0x00, 0x00, 0x38, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x09, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0x48, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0a, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0x68, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x0a, 0x00, 0x00, 0x0e, 0x12, 0x00, 0x00, 0xb0, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xc8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xd0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xd8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xe0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xe8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xf0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0xf8, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x04, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x0a, 0x00, 0x00, 0x0e, 0x16, 0x00, 0x00, 0x08, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0f, 0x15, 0x00, 0x00, 0xa0, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0f, 0x15, 0x00, 0x00, 0x78, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x90, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x10, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x10, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x90, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x60, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xe0, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xf0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xd0, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0xc0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x70, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x01, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x40, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x01, 0x00, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcb, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x35, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x20, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x70, 0x70, 0x6d, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x70, 0x70, 0x6d, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x5f, 0x43, 0x46, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x00, 0x5f, 0x43, 0x46, 0x52, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6e, 0x63, 0x61, 0x74, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x45, 0x71, 0x75, 0x61, 0x6c, 0x54, 0x6f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x6b, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x43, 0x47, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x41, 0x64, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x6f, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x46, 0x6f, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x53, 0x4e, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x48, 0x69, 0x64, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x47, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x65, 0x74, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x4d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x57, 0x69, 0x74, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x42, 0x79, 0x47, 0x65, 0x6f, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x61, 0x67, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x00, 0x5f, 0x43, 0x47, 0x53, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x43, 0x47, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x00, 0x5f, 0x4e, 0x53, 0x4c, 0x6f, 0x67, 0x00, 0x5f, 0x4e, 0x53, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x41, 0x72, 0x72, 0x61, 0x79, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x5f, 0x4e, 0x53, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x00, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x00, 0x5f, 0x5f, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x5f, 0x5f, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x75, 0x6e, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x00, 0x5f, 0x5f, 0x4e, 0x53, 0x43, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x00, 0x5f, 0x5f, 0x4e, 0x53, 0x47, 0x65, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x00, 0x5f, 0x5f, 0x5f, 0x43, 0x46, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x7a, 0x65, 0x72, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x72, 0x75, 0x6e, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x6e, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x66, 0x5f, 0x63, 0x68, 0x6b, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x63, 0x68, 0x6b, 0x5f, 0x67, 0x75, 0x61, 0x72, 0x64, 0x00, 0x5f, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x71, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x6d, 0x61, 0x64, 0x64, 0x72, 0x5f, 0x73, 0x6c, 0x69, 0x64, 0x65, 0x00, 0x5f, 0x5f, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x5f, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x63, 0x68, 0x65, 0x00, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x5f, 0x63, 0x68, 0x6d, 0x6f, 0x64, 0x00, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x00, 0x5f, 0x67, 0x65, 0x74, 0x73, 0x65, 0x67, 0x62, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x00, 0x5f, 0x6d, 0x65, 0x6d, 0x63, 0x70, 0x79, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x6d, 0x73, 0x67, 0x53, 0x65, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x74, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x63, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x5f, 0x70, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x5f, 0x72, 0x65, 0x63, 0x76, 0x00, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x00, 0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x00, 0x5f, 0x73, 0x73, 0x63, 0x61, 0x6e, 0x66, 0x00, 0x5f, 0x73, 0x74, 0x72, 0x63, 0x6d, 0x70, 0x00, 0x5f, 0x73, 0x74, 0x72, 0x6c, 0x65, 0x6e, 0x00, 0x5f, 0x75, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x64, 0x79, 0x6c, 0x64, 0x5f, 0x73, 0x74, 0x75, 0x62, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x00, 0x2b, 0x5b, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x5d, 0x00, 0x5f, 0x68, 0x65, 0x78, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x00, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x69, 0x6e, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x6f, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x00, 0x5f, 0x5f, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x00, 0x5f, 0x5f, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x74, 0x00, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x6f, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x34, 0x30, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x72, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x35, 0x36, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x34, 0x30, 0x6f, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x5f, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x35, 0x32, 0x5f, 0x65, 0x38, 0x5f, 0x33, 0x32, 0x6f, 0x5f, 0x65, 0x35, 0x5f, 0x76, 0x38, 0x01, 0x3f, 0x30, 0x6c, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x00, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x4e, 0x4f, 0x4e, 0x4c, 0x41, 0x5a, 0x59, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x24, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x24, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x53, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x5f, 0x4f, 0x42, 0x4a, 0x43, 0x5f, 0x43, 0x4c, 0x41, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x5f, 0x24, 0x5f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x00, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x00, 0x5f, 0x64, 0x70, 0x5f, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x00, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x66, 0x70, 0x00, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x00, 0x5f, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x5f, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x63, 0x6b, 0x66, 0x64, 0x00, 0x5f, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x00 }; unsigned int __src_osax_payload_len = 44976;
0
#include <stdio.h> #include <stdlib.h> typedef struct TaskNode { int significance; struct TaskNode* LeftLeaves; struct TaskNode* RightLeaves; struct TaskNode* Root_; } TaskNode; typedef struct TreeNode { struct TaskNode* root; int count; } TreeNode; typedef struct QueueNode { TaskNode* need; struct QueueNode* following; }QueueNode; typedef struct ListNode { QueueNode* first; QueueNode* last; }List; void createlist(List* q) { q->first = NULL; q->last = NULL; }; int push(List* q, TaskNode* n) { QueueNode* newList = (QueueNode*)malloc(sizeof(QueueNode)); newList->need = n; newList->following = NULL; if (q->first) q->last->following = newList; else q->first = newList; q->last = newList; return 0; } void clearlist(List* TmpList) { QueueNode* TmpNode, * nq; TmpNode = TmpList->first; do { nq = TmpNode; TmpNode = TmpNode->following; free(nq); } while (TmpNode); TmpList->first = NULL; TmpList->last = NULL; } void init(TreeNode* TmpTree) { TmpTree->root = NULL; } void clear(TreeNode* tree) { while (tree->root != NULL) RemoveMin(tree->root, tree); } int insert(TreeNode * tree, int value) { TaskNode* TempNode = (TaskNode*)malloc(sizeof(TaskNode)); TempNode->significance = value; if (tree->root == NULL) { TempNode->LeftLeaves = TempNode->RightLeaves = NULL; TempNode->Root_ = NULL; tree->root = TempNode; tree->count = 1; return 0; } if (TempNode->significance == tree->root->significance) return -1; TaskNode * root2 = (TaskNode*)malloc(sizeof(TaskNode)), *root3 = NULL; root2 = tree->root; while (root2 != NULL) { root3 = root2; if (value < root2->significance) root2 = root2->LeftLeaves; else root2 = root2->RightLeaves; } if (TempNode->significance == root3->significance) { return -1; } TempNode->Root_ = root3; TempNode->LeftLeaves = NULL; TempNode->RightLeaves = NULL; if (value < root3->significance) root3->LeftLeaves = TempNode; else root3->RightLeaves = TempNode; tree->count++; return 0; } int RemoveMin(TaskNode * n, TreeNode * TmpTree) { TmpTree->count--; if (TmpTree->count != 1) { while (n->LeftLeaves != NULL) n = n->LeftLeaves; if (n->RightLeaves != NULL) { n->RightLeaves->Root_ = n->Root_; if (n == TmpTree->root) TmpTree->root = n->RightLeaves; else n->Root_->LeftLeaves = n->RightLeaves; } else n->Root_->LeftLeaves = NULL; int value = n->significance; free(n); return value; } else { TmpTree->root = NULL; TmpTree->count = 0; free(TmpTree->root); return 0; } } TaskNode* search(TaskNode * TmpNode, int value) { if ((TmpNode == NULL) || (TmpNode->significance == value)) return TmpNode; if (value < TmpNode->significance) return search(TmpNode->LeftLeaves, value); else return search(TmpNode->RightLeaves, value); } TaskNode * min(TaskNode * root) { TaskNode* TmpNode = root; while (TmpNode->LeftLeaves != NULL) TmpNode = TmpNode->LeftLeaves; return TmpNode; } int findBaseNode(TreeNode * tree, int value, TaskNode * *node) { TaskNode* itNeedAble, * root2; root2 = tree->root; itNeedAble = search(root2, value); if (itNeedAble == NULL) { return 1; } *node = itNeedAble; return 0; } int rotateLeft(TreeNode * tree) { TaskNode* itNeedAble = tree->root->RightLeaves; if (itNeedAble == NULL) return 1; tree->root->RightLeaves = itNeedAble->LeftLeaves; itNeedAble->LeftLeaves = tree->root; itNeedAble->Root_ = tree->root->Root_; tree->root->Root_ = itNeedAble; tree->root = itNeedAble; return 0; } int rotateRight(TreeNode * tree) { TaskNode* itNeedAble = tree->root->LeftLeaves; if (itNeedAble == NULL) return 1; tree->root->LeftLeaves = itNeedAble->RightLeaves; itNeedAble->RightLeaves = tree->root; itNeedAble->Root_ = tree->root->Root_; tree->root->Root_ = itNeedAble; tree->root = itNeedAble; return 0; } void print(TaskNode * node) { if (node) { List list1, list2; List* TmpList1 = &list1; List* TmpList2 = &list2; createlist(TmpList1); createlist(TmpList2); TaskNode* TmpNode = NULL; QueueNode* q = NULL; int c = 0, val = node->significance, j = 0; TaskNode* l = node->LeftLeaves; TaskNode* r = node->RightLeaves; push(TmpList1, node); while (1) { while (TmpList1->first) { if (TmpList1->first) { QueueNode* nodelist_pop; TmpNode = TmpList1->first->need; nodelist_pop = TmpList1->first; TmpList1->first = TmpList1->first->following; if (TmpList1->first == NULL) TmpList1->last = NULL; free(nodelist_pop); } else TmpNode = NULL; if (TmpList1->first == NULL) { if (TmpNode->significance == val && c == 1) printf("_\n"); else printf("%d\n", TmpNode->significance); } else if (TmpNode->significance == val && c == 1) printf("_ "); else printf("%d ", TmpNode->significance); if (TmpNode->LeftLeaves) push(TmpList2, TmpNode->LeftLeaves); else push(TmpList2, node); if (TmpNode->RightLeaves) push(TmpList2, TmpNode->RightLeaves); else push(TmpList2, node); } node->LeftLeaves = node->RightLeaves = NULL; c = 1; q = TmpList2->first; while (TmpList2->first->need->significance == val) { TmpList2->first = TmpList2->first->following; if (TmpList2->first->following == NULL) if (TmpList2->first->need->significance == val) { j = 1; node->LeftLeaves = l; node->RightLeaves = r; clearlist(TmpList2); break; } } TmpList2->first = q; if (j == 1) break; TmpList1->first = TmpList2->first; TmpList1->last = TmpList2->last; TmpList2->first = NULL; TmpList2->last = NULL; } } else printf("-\n"); } void printTree(TreeNode * tree) { print(tree->root); } TaskNode* _Remove(TaskNode * TmpTree, int value) { TaskNode* temp; if (!TmpTree) { return TmpTree; } else if (value < TmpTree->significance) { TmpTree->LeftLeaves = _Remove(TmpTree->LeftLeaves, value); } else if (value > TmpTree->significance) { TmpTree->RightLeaves = _Remove(TmpTree->RightLeaves, value); } else { if (TmpTree->LeftLeaves && TmpTree->RightLeaves) { temp = min(TmpTree->RightLeaves); temp->LeftLeaves = TmpTree->LeftLeaves; temp = TmpTree->RightLeaves; free(TmpTree); return temp; } else if (TmpTree->LeftLeaves == TmpTree->RightLeaves) { free(TmpTree); return NULL; } else { if (!TmpTree->LeftLeaves) temp = TmpTree->RightLeaves; else temp = TmpTree->LeftLeaves; free(TmpTree); return temp; } } return TmpTree; } int Remove(TreeNode * TmpTree, int value) { TaskNode* itNeedAble = _Remove(TmpTree->root, value); if (!itNeedAble) return 1; else { TmpTree->count--; TmpTree->root = itNeedAble; return 0; } } int main() { TreeNode* tree = (TreeNode*)malloc(sizeof(TaskNode)); init(tree); int a[4]; scanf("%d%d%d%d", &a[0], &a[1], &a[2], &a[3]); for (int i = 0; i < 4; i++) insert(tree, a[i]); print(tree->root); scanf("%d%d%d", &a[0], &a[1], &a[2]); for (int i = 0; i < 3; i++) insert(tree, a[i]); print(tree->root); int m; scanf("%d", &m); TaskNode * TreeNode = (TaskNode*)malloc(sizeof(TaskNode)); if (findBaseNode(tree, m, &TreeNode) == 1) printf("-\n"); else { if (TreeNode->Root_ == NULL) printf("_ "); else printf("%d ", TreeNode->Root_->significance); if (TreeNode->LeftLeaves == NULL) printf("_ "); else printf("%d ", TreeNode->LeftLeaves->significance); if (TreeNode->RightLeaves == NULL) printf("_ "); else printf("%d ", TreeNode->RightLeaves->significance); } printf("\n"); scanf("%d", &m); if (findBaseNode(tree, m, &TreeNode) == 1) printf("-\n"); else { if (TreeNode->Root_ == NULL) printf("_ "); else printf("%d ", TreeNode->Root_->significance); if (TreeNode->LeftLeaves == NULL) printf("_ "); else printf("%d ", TreeNode->LeftLeaves->significance); if (TreeNode->RightLeaves == NULL) printf("_ "); else printf("%d ", TreeNode->RightLeaves->significance); } scanf("%d", &m); Remove(tree, m); print(tree->root); while (rotateLeft(tree) == 0); print(tree->root); while (rotateRight(tree) == 0); print(tree->root); printf("%d\n", tree->count); clear(tree); print(tree->root); system("pause"); return 0; }
#include <stdio.h> #include <stdlib.h> typedef struct CLASS_0 { int VAR_1; struct CLASS_0* LeftLeaves; struct CLASS_0* RightLeaves; struct CLASS_0* Root_; } ID_0; typedef struct CLASS_1 { struct CLASS_0* root; int count; } ID_1; typedef struct CLASS_2 { CLASS_0* VAR_4; struct CLASS_2* VAR_5; }ID_2; typedef struct ListNode { CLASS_2* VAR_6; CLASS_2* last; }List; void createlist(List* q) { q->VAR_6 = NULL; q->last = NULL; }; int FUNC_0(List* q, CLASS_0* n) { CLASS_2* newList = (CLASS_2*)malloc(sizeof(VAR_3)); newList->VAR_4 = n; newList->VAR_5 = NULL; if (q->VAR_6) q->last->VAR_5 = newList; else q->VAR_6 = newList; q->last = newList; return 0; } void clearlist(List* TmpList) { CLASS_2* TmpNode, * VAR_7; TmpNode = TmpList->VAR_6; do { VAR_7 = TmpNode; TmpNode = TmpNode->VAR_5; free(VAR_7); } while (TmpNode); TmpList->VAR_6 = NULL; TmpList->last = NULL; } void FUNC_1(CLASS_1* TmpTree) { TmpTree->root = NULL; } void FUNC_2(CLASS_1* VAR_8) { while (VAR_8->root != NULL) FUNC_3(VAR_8->root, VAR_8); } int FUNC_4(CLASS_1 * VAR_8, int VAR_9) { CLASS_0* TempNode = (CLASS_0*)malloc(sizeof(VAR_0)); TempNode->VAR_1 = VAR_9; if (VAR_8->root == NULL) { TempNode->LeftLeaves = TempNode->RightLeaves = NULL; TempNode->Root_ = NULL; VAR_8->root = TempNode; VAR_8->count = 1; return 0; } if (TempNode->VAR_1 == VAR_8->root->VAR_1) return -1; CLASS_0 * root2 = (CLASS_0*)malloc(sizeof(VAR_0)), *VAR_10 = NULL; root2 = VAR_8->root; while (root2 != NULL) { VAR_10 = root2; if (VAR_9 < root2->VAR_1) root2 = root2->LeftLeaves; else root2 = root2->RightLeaves; } if (TempNode->VAR_1 == VAR_10->VAR_1) { return -1; } TempNode->Root_ = VAR_10; TempNode->LeftLeaves = NULL; TempNode->RightLeaves = NULL; if (VAR_9 < VAR_10->VAR_1) VAR_10->LeftLeaves = TempNode; else VAR_10->RightLeaves = TempNode; VAR_8->count++; return 0; } int FUNC_3(CLASS_0 * n, CLASS_1 * TmpTree) { TmpTree->count--; if (TmpTree->count != 1) { while (n->LeftLeaves != NULL) n = n->LeftLeaves; if (n->RightLeaves != NULL) { n->RightLeaves->Root_ = n->Root_; if (n == TmpTree->root) TmpTree->root = n->RightLeaves; else n->Root_->LeftLeaves = n->RightLeaves; } else n->Root_->LeftLeaves = NULL; int VAR_9 = n->VAR_1; free(n); return VAR_9; } else { TmpTree->root = NULL; TmpTree->count = 0; free(TmpTree->root); return 0; } } CLASS_0* FUNC_5(CLASS_0 * TmpNode, int VAR_9) { if ((TmpNode == NULL) || (TmpNode->VAR_1 == VAR_9)) return TmpNode; if (VAR_9 < TmpNode->VAR_1) return FUNC_5(TmpNode->LeftLeaves, VAR_9); else return FUNC_5(TmpNode->RightLeaves, VAR_9); } CLASS_0 * min(CLASS_0 * root) { CLASS_0* TmpNode = root; while (TmpNode->LeftLeaves != NULL) TmpNode = TmpNode->LeftLeaves; return TmpNode; } int findBaseNode(CLASS_1 * VAR_8, int VAR_9, CLASS_0 * *node) { CLASS_0* VAR_11, * root2; root2 = VAR_8->root; VAR_11 = FUNC_5(root2, VAR_9); if (VAR_11 == NULL) { return 1; } *node = VAR_11; return 0; } int rotateLeft(CLASS_1 * VAR_8) { CLASS_0* VAR_11 = VAR_8->root->RightLeaves; if (VAR_11 == NULL) return 1; VAR_8->root->RightLeaves = VAR_11->LeftLeaves; VAR_11->LeftLeaves = VAR_8->root; VAR_11->Root_ = VAR_8->root->Root_; VAR_8->root->Root_ = VAR_11; VAR_8->root = VAR_11; return 0; } int FUNC_6(CLASS_1 * VAR_8) { CLASS_0* VAR_11 = VAR_8->root->LeftLeaves; if (VAR_11 == NULL) return 1; VAR_8->root->LeftLeaves = VAR_11->RightLeaves; VAR_11->RightLeaves = VAR_8->root; VAR_11->Root_ = VAR_8->root->Root_; VAR_8->root->Root_ = VAR_11; VAR_8->root = VAR_11; return 0; } void print(CLASS_0 * node) { if (node) { List list1, list2; List* TmpList1 = &list1; List* VAR_12 = &list2; createlist(TmpList1); createlist(VAR_12); CLASS_0* TmpNode = NULL; CLASS_2* q = NULL; int c = 0, val = node->VAR_1, j = 0; CLASS_0* VAR_13 = node->LeftLeaves; CLASS_0* r = node->RightLeaves; FUNC_0(TmpList1, node); while (1) { while (TmpList1->VAR_6) { if (TmpList1->VAR_6) { CLASS_2* nodelist_pop; TmpNode = TmpList1->VAR_6->VAR_4; nodelist_pop = TmpList1->VAR_6; TmpList1->VAR_6 = TmpList1->VAR_6->VAR_5; if (TmpList1->VAR_6 == NULL) TmpList1->last = NULL; free(nodelist_pop); } else TmpNode = NULL; if (TmpList1->VAR_6 == NULL) { if (TmpNode->VAR_1 == val && c == 1) printf("_\n"); else printf("%d\n", TmpNode->VAR_1); } else if (TmpNode->VAR_1 == val && c == 1) printf("_ "); else printf("%d ", TmpNode->VAR_1); if (TmpNode->LeftLeaves) FUNC_0(VAR_12, TmpNode->LeftLeaves); else FUNC_0(VAR_12, node); if (TmpNode->RightLeaves) FUNC_0(VAR_12, TmpNode->RightLeaves); else FUNC_0(VAR_12, node); } node->LeftLeaves = node->RightLeaves = NULL; c = 1; q = VAR_12->VAR_6; while (VAR_12->VAR_6->VAR_4->VAR_1 == val) { VAR_12->VAR_6 = VAR_12->VAR_6->VAR_5; if (VAR_12->VAR_6->VAR_5 == NULL) if (VAR_12->VAR_6->VAR_4->VAR_1 == val) { j = 1; node->LeftLeaves = VAR_13; node->RightLeaves = r; clearlist(VAR_12); break; } } VAR_12->VAR_6 = q; if (j == 1) break; TmpList1->VAR_6 = VAR_12->VAR_6; TmpList1->last = VAR_12->last; VAR_12->VAR_6 = NULL; VAR_12->last = NULL; } } else printf("-\n"); } void FUNC_7(CLASS_1 * VAR_8) { print(VAR_8->root); } CLASS_0* FUNC_8(CLASS_0 * TmpTree, int VAR_9) { CLASS_0* temp; if (!TmpTree) { return TmpTree; } else if (VAR_9 < TmpTree->VAR_1) { TmpTree->LeftLeaves = FUNC_8(TmpTree->LeftLeaves, VAR_9); } else if (VAR_9 > TmpTree->VAR_1) { TmpTree->RightLeaves = FUNC_8(TmpTree->RightLeaves, VAR_9); } else { if (TmpTree->LeftLeaves && TmpTree->RightLeaves) { temp = min(TmpTree->RightLeaves); temp->LeftLeaves = TmpTree->LeftLeaves; temp = TmpTree->RightLeaves; free(TmpTree); return temp; } else if (TmpTree->LeftLeaves == TmpTree->RightLeaves) { free(TmpTree); return NULL; } else { if (!TmpTree->LeftLeaves) temp = TmpTree->RightLeaves; else temp = TmpTree->LeftLeaves; free(TmpTree); return temp; } } return TmpTree; } int Remove(CLASS_1 * TmpTree, int VAR_9) { CLASS_0* VAR_11 = FUNC_8(TmpTree->root, VAR_9); if (!VAR_11) return 1; else { TmpTree->count--; TmpTree->root = VAR_11; return 0; } } int FUNC_9() { CLASS_1* VAR_8 = (CLASS_1*)malloc(sizeof(VAR_0)); FUNC_1(VAR_8); int a[4]; scanf("%d%d%d%d", &a[0], &a[1], &a[2], &a[3]); for (int i = 0; i < 4; i++) FUNC_4(VAR_8, a[i]); print(VAR_8->root); scanf("%d%d%d", &a[0], &a[1], &a[2]); for (int i = 0; i < 3; i++) FUNC_4(VAR_8, a[i]); print(VAR_8->root); int m; scanf("%d", &m); CLASS_0 * VAR_2 = (CLASS_0*)malloc(sizeof(VAR_0)); if (findBaseNode(VAR_8, m, &VAR_2) == 1) printf("-\n"); else { if (VAR_2->Root_ == NULL) printf("_ "); else printf("%d ", VAR_2->Root_->VAR_1); if (VAR_2->LeftLeaves == NULL) printf("_ "); else printf("%d ", VAR_2->LeftLeaves->VAR_1); if (VAR_2->RightLeaves == NULL) printf("_ "); else printf("%d ", VAR_2->RightLeaves->VAR_1); } printf("\n"); scanf("%d", &m); if (findBaseNode(VAR_8, m, &VAR_2) == 1) printf("-\n"); else { if (VAR_2->Root_ == NULL) printf("_ "); else printf("%d ", VAR_2->Root_->VAR_1); if (VAR_2->LeftLeaves == NULL) printf("_ "); else printf("%d ", VAR_2->LeftLeaves->VAR_1); if (VAR_2->RightLeaves == NULL) printf("_ "); else printf("%d ", VAR_2->RightLeaves->VAR_1); } scanf("%d", &m); Remove(VAR_8, m); print(VAR_8->root); while (rotateLeft(VAR_8) == 0); print(VAR_8->root); while (FUNC_6(VAR_8) == 0); print(VAR_8->root); printf("%d\n", VAR_8->count); FUNC_2(VAR_8); print(VAR_8->root); FUNC_10("pause"); return 0; }
0.43555
{'CLASS_0': 'TaskNode', 'ID_0': 'TaskNode', 'VAR_0': 'TaskNode', 'VAR_1': 'significance', 'CLASS_1': 'TreeNode', 'ID_1': 'TreeNode', 'VAR_2': 'TreeNode', 'CLASS_2': 'QueueNode', 'ID_2': 'QueueNode', 'VAR_3': 'QueueNode', 'VAR_4': 'need', 'VAR_5': 'following', 'VAR_6': 'first', 'FUNC_0': 'push', 'VAR_7': 'nq', 'FUNC_1': 'init', 'FUNC_2': 'clear', 'VAR_8': 'tree', 'FUNC_3': 'RemoveMin', 'FUNC_4': 'insert', 'VAR_9': 'value', 'VAR_10': 'root3', 'FUNC_5': 'search', 'VAR_11': 'itNeedAble', 'FUNC_6': 'rotateRight', 'VAR_12': 'TmpList2', 'VAR_13': 'l', 'FUNC_7': 'printTree', 'FUNC_8': '_Remove', 'FUNC_9': 'main', 'FUNC_10': 'system'}
#ifndef __MARKUP_H #define __MARKUP_H /* TODO: Consolidate ansi.h header into here. */ #include <stddef.h> int ansi_strlen(const char *string); int ansi_strnlen(const char *string, size_t numchars); #endif /* __MARKUP_H */
#ifndef __MARKUP_H #define __MARKUP_H /* TODO: Consolidate ansi.h header into here. */ #include <stddef.h> int ansi_strlen(const char *string); int ansi_strnlen(const char *string, size_t VAR_0); #endif /* __MARKUP_H */
0.19007
{'VAR_0': 'numchars'}
/* NetHack 3.7 vesa.h $NHDT-Date: 1596498276 2020/08/03 23:44:36 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.0 $ */ /* VESA structures from the VESA BIOS Specification, retrieved 15 Jan 2016 * from http://flint.cs.yale.edu/cs422/readings/hardware/vbe3.pdf * Part of rchason vesa port */ #ifndef VESA_H #define VESA_H #include <stdint.h> struct VbeInfoBlock { uint8_t VbeSignature[4]; /* VBE Signature */ uint16_t VbeVersion; /* VBE Version */ uint32_t OemStringPtr; /* VbeFarPtr to OEM String */ uint32_t Capabilities; /* Capabilities of graphics controller */ uint32_t VideoModePtr; /* VbeFarPtr to VideoModeList */ uint16_t TotalMemory; /* Number of 64kb memory blocks */ /* Added for VBE 2.0+ */ uint16_t OemSoftwareRev; /* VBE implementation Software revision */ uint32_t OemVendorNamePtr; /* VbeFarPtr to Vendor Name String */ uint32_t OemProductNamePtr; /* VbeFarPtr to Product Name String */ uint32_t OemProductRevPtr; /* VbeFarPtr to Product Revision String */ uint8_t Reserved[222]; /* Reserved for VBE implementation scratch area */ uint8_t OemData[256]; /* Data Area for OEM Strings */ } __attribute__((packed)); struct ModeInfoBlock { /* Mandatory information for all VBE revisions */ uint16_t ModeAttributes; /* mode attributes */ uint8_t WinAAttributes; /* window A attributes */ uint8_t WinBAttributes; /* window B attributes */ uint16_t WinGranularity; /* window granularity */ uint16_t WinSize; /* window size */ uint16_t WinASegment; /* window A start segment */ uint16_t WinBSegment; /* window B start segment */ uint32_t WinFuncPtr; /* real mode pointer to window function */ uint16_t BytesPerScanLine; /* bytes per scan line */ /* Mandatory information for VBE 1.2 and above */ uint16_t XResolution; /* horizontal resolution in pixels or characters */ uint16_t YResolution; /* vertical resolution in pixels or characters */ uint8_t XCharSize; /* character cell width in pixels */ uint8_t YCharSize; /* character cell height in pixels */ uint8_t NumberOfPlanes; /* number of memory planes */ uint8_t BitsPerPixel; /* bits per pixel */ uint8_t NumberOfBanks; /* number of banks */ uint8_t MemoryModel; /* memory model type */ uint8_t BankSize; /* bank size in KB */ uint8_t NumberOfImagePages; /* number of images */ uint8_t Reserved1; /* reserved for page function */ /* Direct Color fields (required for direct/6 and YUV/7 memory models) */ uint8_t RedMaskSize; /* size of direct color red mask in bits */ uint8_t RedFieldPosition; /* bit position of lsb of red mask */ uint8_t GreenMaskSize; /* size of direct color green mask in bits */ uint8_t GreenFieldPosition; /* bit position of lsb of green mask */ uint8_t BlueMaskSize; /* size of direct color blue mask in bits */ uint8_t BlueFieldPosition; /* bit position of lsb of blue mask */ uint8_t RsvdMaskSize; /* size of direct color reserved mask in bits */ uint8_t RsvdFieldPosition; /* bit position of lsb of reserved mask */ uint8_t DirectColorModeInfo; /* direct color mode attributes */ /* Mandatory information for VBE 2.0 and above */ uint32_t PhysBasePtr; /* physical address for flat memory frame buffer */ uint32_t Reserved2; /* Reserved - always set to 0 */ uint16_t Reserved3; /* Reserved - always set to 0 */ /* Mandatory information for VBE 3.0 and above */ uint16_t LinBytesPerScanLine; /* bytes per scan line for linear modes */ uint8_t BnkNumberOfImagePages; /* number of images for banked modes */ uint8_t LinNumberOfImagePages; /* number of images for linear modes */ uint8_t LinRedMaskSize; /* size of direct color red mask (linear modes) */ uint8_t LinRedFieldPosition; /* bit position of lsb of red mask (linear modes) */ uint8_t LinGreenMaskSize; /* size of direct color green mask (linear modes) */ uint8_t LinGreenFieldPosition; /* bit position of lsb of green mask (linear modes) */ uint8_t LinBlueMaskSize; /* size of direct color blue mask (linear modes) */ uint8_t LinBlueFieldPosition; /* bit position of lsb of blue mask (linear modes) */ uint8_t LinRsvdMaskSize; /* size of direct color reserved mask (linear modes) */ uint8_t LinRsvdFieldPosition; /* bit position of lsb of reserved mask (linear modes) */ uint32_t MaxPixelClock; /* maximum pixel clock (in Hz) for graphics mode */ uint8_t Reserved4[189]; /* remainder of ModeInfoBlock */ } __attribute__((packed)); #endif
/* NetHack 3.7 vesa.h $NHDT-Date: 1596498276 2020/08/03 23:44:36 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.0 $ */ /* VESA structures from the VESA BIOS Specification, retrieved 15 Jan 2016 * from http://flint.cs.yale.edu/cs422/readings/hardware/vbe3.pdf * Part of rchason vesa port */ #ifndef VAR_0 #define VAR_0 #include <stdint.h> struct VbeInfoBlock { uint8_t VbeSignature[4]; /* VBE Signature */ uint16_t VbeVersion; /* VBE Version */ uint32_t OemStringPtr; /* VbeFarPtr to OEM String */ uint32_t VAR_1; /* Capabilities of graphics controller */ uint32_t VideoModePtr; /* VbeFarPtr to VideoModeList */ uint16_t TotalMemory; /* Number of 64kb memory blocks */ /* Added for VBE 2.0+ */ uint16_t OemSoftwareRev; /* VBE implementation Software revision */ uint32_t VAR_2; /* VbeFarPtr to Vendor Name String */ uint32_t OemProductNamePtr; /* VbeFarPtr to Product Name String */ uint32_t OemProductRevPtr; /* VbeFarPtr to Product Revision String */ uint8_t Reserved[222]; /* Reserved for VBE implementation scratch area */ uint8_t OemData[256]; /* Data Area for OEM Strings */ } __attribute__((packed)); struct CLASS_0 { /* Mandatory information for all VBE revisions */ uint16_t ModeAttributes; /* mode attributes */ uint8_t VAR_3; /* window A attributes */ uint8_t VAR_4; /* window B attributes */ uint16_t VAR_5; /* window granularity */ uint16_t WinSize; /* window size */ uint16_t WinASegment; /* window A start segment */ uint16_t WinBSegment; /* window B start segment */ uint32_t VAR_6; /* real mode pointer to window function */ uint16_t BytesPerScanLine; /* bytes per scan line */ /* Mandatory information for VBE 1.2 and above */ uint16_t VAR_7; /* horizontal resolution in pixels or characters */ uint16_t YResolution; /* vertical resolution in pixels or characters */ uint8_t XCharSize; /* character cell width in pixels */ uint8_t YCharSize; /* character cell height in pixels */ uint8_t VAR_8; /* number of memory planes */ uint8_t BitsPerPixel; /* bits per pixel */ uint8_t NumberOfBanks; /* number of banks */ uint8_t VAR_9; /* memory model type */ uint8_t BankSize; /* bank size in KB */ uint8_t NumberOfImagePages; /* number of images */ uint8_t Reserved1; /* reserved for page function */ /* Direct Color fields (required for direct/6 and YUV/7 memory models) */ uint8_t VAR_10; /* size of direct color red mask in bits */ uint8_t VAR_11; /* bit position of lsb of red mask */ uint8_t GreenMaskSize; /* size of direct color green mask in bits */ uint8_t GreenFieldPosition; /* bit position of lsb of green mask */ uint8_t BlueMaskSize; /* size of direct color blue mask in bits */ uint8_t BlueFieldPosition; /* bit position of lsb of blue mask */ uint8_t VAR_12; /* size of direct color reserved mask in bits */ uint8_t RsvdFieldPosition; /* bit position of lsb of reserved mask */ uint8_t DirectColorModeInfo; /* direct color mode attributes */ /* Mandatory information for VBE 2.0 and above */ uint32_t PhysBasePtr; /* physical address for flat memory frame buffer */ uint32_t Reserved2; /* Reserved - always set to 0 */ uint16_t Reserved3; /* Reserved - always set to 0 */ /* Mandatory information for VBE 3.0 and above */ uint16_t LinBytesPerScanLine; /* bytes per scan line for linear modes */ uint8_t VAR_13; /* number of images for banked modes */ uint8_t LinNumberOfImagePages; /* number of images for linear modes */ uint8_t LinRedMaskSize; /* size of direct color red mask (linear modes) */ uint8_t VAR_14; /* bit position of lsb of red mask (linear modes) */ uint8_t LinGreenMaskSize; /* size of direct color green mask (linear modes) */ uint8_t LinGreenFieldPosition; /* bit position of lsb of green mask (linear modes) */ uint8_t VAR_15; /* size of direct color blue mask (linear modes) */ uint8_t LinBlueFieldPosition; /* bit position of lsb of blue mask (linear modes) */ uint8_t LinRsvdMaskSize; /* size of direct color reserved mask (linear modes) */ uint8_t LinRsvdFieldPosition; /* bit position of lsb of reserved mask (linear modes) */ uint32_t MaxPixelClock; /* maximum pixel clock (in Hz) for graphics mode */ uint8_t Reserved4[189]; /* remainder of ModeInfoBlock */ } __attribute__((packed)); #endif
0.303419
{'VAR_0': 'VESA_H', 'VAR_1': 'Capabilities', 'VAR_2': 'OemVendorNamePtr', 'CLASS_0': 'ModeInfoBlock', 'VAR_3': 'WinAAttributes', 'VAR_4': 'WinBAttributes', 'VAR_5': 'WinGranularity', 'VAR_6': 'WinFuncPtr', 'VAR_7': 'XResolution', 'VAR_8': 'NumberOfPlanes', 'VAR_9': 'MemoryModel', 'VAR_10': 'RedMaskSize', 'VAR_11': 'RedFieldPosition', 'VAR_12': 'RsvdMaskSize', 'VAR_13': 'BnkNumberOfImagePages', 'VAR_14': 'LinRedFieldPosition', 'VAR_15': 'LinBlueMaskSize'}
/* * tclUniData.c -- * * Declarations of Unicode character information tables. This file is * automatically generated by the tools/uniParse.tcl script. Do not * modify this file by hand. * * Copyright (c) 1998 by Scriptics Corporation. * All rights reserved. */ /* * A 16-bit Unicode character is split into two parts in order to index * into the following tables. The lower OFFSET_BITS comprise an offset * into a page of characters. The upper bits comprise the page number. */ #define OFFSET_BITS 5 /* * The pageMap is indexed by page number and returns an alternate page number * that identifies a unique page of characters. Many Unicode characters map * to the same alternate page number. */ static const unsigned short pageMap[] = { 0, 32, 64, 96, 0, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, 224, 480, 512, 544, 576, 608, 640, 672, 704, 704, 736, 768, 800, 832, 864, 896, 928, 960, 992, 224, 1024, 224, 1056, 224, 224, 1088, 1120, 1152, 1184, 1216, 1248, 1280, 1312, 1344, 1376, 1408, 1344, 1344, 1440, 1472, 1504, 1536, 1568, 1344, 1344, 1600, 1632, 1664, 1696, 1728, 1760, 1792, 1792, 1824, 1792, 1856, 1888, 1920, 1952, 1984, 2016, 2048, 2080, 2112, 2144, 2176, 2208, 2240, 2272, 2304, 2336, 2368, 2400, 2432, 2464, 2496, 2528, 2560, 2592, 2624, 2656, 2688, 2720, 2752, 2784, 2816, 2848, 2880, 2784, 2912, 2944, 2976, 3008, 3040, 3072, 3104, 3136, 3168, 3200, 1792, 3232, 3264, 3296, 1792, 3328, 3360, 3392, 3424, 3456, 3488, 3520, 1792, 1344, 3552, 3584, 3616, 3648, 3680, 3712, 3744, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 3776, 1344, 3808, 3840, 3872, 1344, 3904, 1344, 3936, 3968, 4000, 1344, 1344, 4032, 4064, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4096, 4128, 1344, 1344, 4160, 4192, 4224, 4256, 4288, 1344, 4320, 4352, 4384, 4416, 1344, 4448, 4480, 1344, 4512, 1344, 4544, 4576, 4608, 4640, 4672, 1344, 4704, 4736, 4768, 4800, 1344, 4832, 4864, 4896, 4928, 1792, 1792, 4960, 4992, 5024, 5056, 5088, 5120, 1344, 5152, 1344, 5184, 5216, 5248, 1792, 1792, 5280, 5312, 5344, 5376, 5408, 5440, 5472, 5408, 704, 5504, 224, 224, 224, 224, 5536, 224, 224, 224, 5568, 5600, 5632, 5664, 5696, 5728, 5760, 5792, 5824, 5856, 5888, 5920, 5952, 5984, 6016, 6048, 6080, 6112, 6144, 6176, 6208, 6240, 6272, 6304, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6368, 6400, 4768, 6432, 6464, 6496, 6528, 6560, 4768, 6592, 6624, 6656, 6688, 6720, 6752, 6784, 4768, 4768, 4768, 4768, 4768, 6816, 6848, 6880, 4768, 4768, 4768, 6912, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 6944, 6976, 4768, 7008, 7040, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 6336, 6336, 6336, 6336, 7072, 6336, 7104, 7136, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 4768, 7168, 7200, 7232, 7264, 7296, 7328, 1792, 7360, 7392, 7424, 7456, 224, 224, 224, 7488, 7520, 7552, 1344, 7584, 7616, 7648, 7648, 704, 7680, 7712, 7744, 1792, 7776, 4768, 4768, 7808, 4768, 4768, 4768, 4768, 4768, 4768, 7840, 7872, 7904, 7936, 3136, 1344, 7968, 4064, 1344, 8000, 8032, 8064, 1344, 1344, 8096, 8128, 4768, 8160, 8192, 8224, 8256, 4768, 8224, 8288, 4768, 8192, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4544, 4768, 4768, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8320, 1792, 8352, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8384, 4768, 8416, 5248, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8448, 8480, 224, 8512, 8544, 1344, 1344, 8576, 8608, 8640, 224, 8672, 8704, 8736, 1792, 8768, 8800, 8832, 1344, 8864, 8896, 8928, 8960, 8992, 1632, 9024, 9056, 9088, 1888, 9120, 9152, 9184, 1344, 9216, 9248, 9280, 1344, 9312, 9344, 9376, 9408, 9440, 9472, 9504, 1792, 1792, 1344, 9536, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9568, 9600, 9632, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9728, 1344, 1344, 9760, 1792, 9792, 9824, 9856, 1344, 1344, 9888, 9920, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9952, 9984, 1344, 10016, 1344, 10048, 10080, 10112, 10144, 10176, 10208, 1344, 1344, 1344, 10240, 10272, 64, 10304, 10336, 10368, 4576, 10400, 10432 #if TCL_UTF_MAX > 3 ,10464, 10496, 10528, 1792, 1344, 1344, 1344, 8128, 10560, 10592, 10624, 10656, 10688, 10720, 10752, 10784, 1792, 1792, 1792, 1792, 9088, 1344, 10816, 10848, 1344, 10880, 10912, 10944, 10976, 1344, 11008, 1792, 11040, 11072, 11104, 1344, 11136, 11168, 1792, 1792, 1344, 11200, 1344, 11232, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 7616, 4544, 10048, 1792, 1792, 1792, 1792, 11264, 11296, 11328, 11360, 4576, 11392, 1792, 1792, 11424, 11456, 1792, 1792, 1344, 11488, 1792, 1792, 11520, 11552, 11584, 11616, 11648, 1792, 11680, 11712, 1344, 11744, 11776, 11808, 11840, 11872, 1792, 1792, 1344, 1344, 11904, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 11936, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 11968, 12000, 12032, 12064, 5088, 12096, 12128, 12160, 12192, 12224, 12256, 12288, 5088, 12320, 12352, 12384, 12416, 12448, 1792, 1792, 1792, 9984, 12480, 12512, 2400, 2304, 12544, 12576, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 12608, 12640, 1792, 1792, 1792, 1792, 1792, 1344, 12672, 12704, 1792, 1344, 12736, 12768, 1792, 1344, 12800, 11168, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 12832, 12864, 12896, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 12928, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12928, 1792, 1792, 1792, 10624, 10624, 10624, 12960, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12992, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12928, 4576, 13024, 1792, 1792, 9984, 13056, 1344, 13088, 13120, 13152, 13184, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 13216, 13248, 13280, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 13312, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 13344, 13376, 13408, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 7840, 4768, 13440, 4768, 13472, 13504, 13536, 13568, 1792, 4768, 4768, 13600, 1792, 1792, 1792, 1792, 1792, 4768, 4768, 13632, 13664, 1792, 1792, 1792, 1792, 13696, 13728, 13760, 13792, 13824, 13856, 13888, 13920, 13952, 13984, 14016, 14048, 14080, 13696, 13728, 14112, 13792, 14144, 14176, 14208, 13920, 14240, 14272, 14304, 14336, 14368, 14400, 14432, 14464, 14496, 14528, 14560, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 14592, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 14624, 14656, 14688, 14720, 14752, 14784, 1792, 14816, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 4768, 14848, 4768, 4768, 7808, 14880, 14912, 7840, 14944, 14976, 4768, 14848, 15008, 1792, 1792, 15040, 15072, 15008, 15104, 1792, 1792, 1792, 1792, 1792, 4768, 15136, 4768, 13568, 4768, 4768, 15168, 15200, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 8192, 4768, 4768, 15232, 7776, 4768, 15264, 4768, 4768, 4768, 4768, 15296, 4768, 4768, 4768, 15328, 15360, 4768, 4768, 4768, 7808, 4768, 4768, 15392, 1792, 14848, 4768, 15424, 4768, 15456, 15488, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 7616, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4032, 1344, 1344, 1344, 1344, 1344, 1344, 11136, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 11136 #endif /* TCL_UTF_MAX > 3 */ }; /* * The groupMap is indexed by combining the alternate page number with * the page offset and returns a group number that identifies a unique * set of character attributes. */ static const unsigned char groupMap[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 4, 3, 3, 3, 5, 6, 3, 7, 3, 8, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 7, 7, 7, 3, 3, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 5, 3, 6, 11, 12, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 5, 7, 6, 7, 1, 2, 3, 4, 4, 4, 4, 14, 3, 11, 14, 15, 16, 7, 17, 14, 11, 14, 7, 18, 18, 11, 19, 3, 3, 11, 18, 15, 20, 18, 18, 18, 3, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 10, 10, 10, 10, 10, 10, 10, 21, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 7, 13, 13, 13, 13, 13, 13, 13, 22, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 25, 26, 23, 24, 23, 24, 23, 24, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 27, 23, 24, 23, 24, 23, 24, 28, 29, 30, 23, 24, 23, 24, 31, 23, 24, 32, 32, 23, 24, 21, 33, 34, 35, 23, 24, 32, 36, 37, 38, 39, 23, 24, 40, 21, 38, 41, 42, 43, 23, 24, 23, 24, 23, 24, 44, 23, 24, 44, 21, 21, 23, 24, 44, 23, 24, 45, 45, 23, 24, 23, 24, 46, 23, 24, 21, 15, 23, 24, 21, 47, 15, 15, 15, 15, 48, 49, 50, 48, 49, 50, 48, 49, 50, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 51, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 48, 49, 50, 23, 24, 52, 53, 23, 24, 23, 24, 23, 24, 23, 24, 54, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 21, 21, 21, 21, 55, 23, 24, 56, 57, 58, 58, 23, 24, 59, 60, 61, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 62, 63, 64, 65, 66, 21, 67, 67, 21, 68, 21, 69, 70, 21, 21, 21, 67, 71, 21, 72, 21, 73, 74, 21, 75, 76, 21, 77, 78, 21, 21, 76, 21, 79, 80, 21, 21, 81, 21, 21, 21, 21, 21, 21, 21, 82, 21, 21, 83, 21, 21, 83, 21, 21, 21, 84, 83, 85, 86, 86, 87, 21, 21, 21, 21, 21, 88, 21, 15, 21, 21, 21, 21, 21, 21, 21, 21, 21, 89, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 11, 11, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 90, 90, 90, 90, 90, 11, 11, 11, 11, 11, 11, 11, 90, 11, 90, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 92, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 23, 24, 23, 24, 90, 11, 23, 24, 0, 0, 90, 42, 42, 42, 3, 93, 0, 0, 0, 0, 11, 11, 94, 3, 95, 95, 95, 0, 96, 0, 97, 97, 21, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 98, 99, 99, 99, 21, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 100, 13, 13, 13, 13, 13, 13, 13, 13, 13, 101, 102, 102, 103, 104, 105, 106, 106, 106, 107, 108, 109, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 110, 111, 112, 113, 114, 115, 7, 23, 24, 116, 23, 24, 21, 54, 54, 54, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 23, 24, 14, 91, 91, 91, 91, 91, 118, 118, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 119, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 120, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 0, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 0, 0, 90, 3, 3, 3, 3, 3, 3, 0, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 21, 0, 3, 8, 0, 0, 14, 14, 4, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 8, 91, 3, 91, 91, 3, 91, 91, 3, 91, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 17, 17, 17, 17, 7, 7, 7, 3, 3, 4, 3, 3, 14, 14, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 17, 0, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 15, 91, 91, 91, 91, 91, 91, 91, 17, 14, 91, 91, 91, 91, 91, 91, 90, 90, 91, 91, 14, 91, 91, 91, 91, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 14, 14, 15, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 17, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, 90, 14, 3, 3, 3, 90, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 90, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, 91, 91, 91, 90, 91, 91, 91, 91, 91, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 91, 123, 123, 15, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 0, 0, 15, 15, 15, 15, 0, 0, 91, 15, 123, 123, 123, 91, 91, 91, 91, 0, 0, 123, 123, 0, 0, 123, 123, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 15, 15, 0, 15, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 4, 4, 18, 18, 18, 18, 18, 18, 14, 4, 0, 0, 0, 0, 0, 91, 91, 123, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 0, 15, 15, 0, 0, 91, 0, 123, 123, 123, 91, 91, 0, 0, 0, 0, 91, 91, 0, 0, 91, 91, 91, 0, 0, 0, 91, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 91, 91, 15, 15, 15, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 123, 123, 91, 91, 91, 91, 91, 0, 91, 91, 123, 0, 123, 123, 91, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 91, 123, 91, 91, 91, 91, 0, 0, 123, 123, 0, 0, 123, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 91, 123, 0, 0, 0, 0, 15, 15, 0, 15, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 14, 15, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 0, 15, 15, 0, 15, 0, 15, 15, 0, 0, 0, 15, 15, 0, 0, 0, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 123, 123, 91, 123, 123, 0, 0, 0, 123, 123, 123, 0, 123, 123, 123, 91, 0, 0, 15, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 14, 14, 14, 14, 14, 14, 4, 14, 0, 0, 0, 0, 0, 91, 123, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 91, 91, 91, 123, 123, 123, 123, 0, 91, 91, 91, 0, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 91, 91, 0, 15, 15, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 14, 0, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 91, 123, 123, 123, 123, 123, 0, 91, 123, 123, 0, 123, 123, 91, 91, 0, 0, 0, 0, 0, 0, 0, 123, 123, 0, 0, 0, 0, 0, 0, 0, 15, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 123, 123, 123, 91, 91, 91, 91, 0, 123, 123, 123, 0, 123, 123, 123, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 15, 15, 15, 15, 15, 15, 0, 0, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 91, 0, 0, 0, 0, 123, 123, 123, 91, 91, 91, 0, 91, 0, 123, 123, 123, 123, 123, 123, 123, 123, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 123, 123, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 15, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 4, 15, 15, 15, 15, 15, 15, 90, 91, 91, 91, 91, 91, 91, 91, 91, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 15, 15, 0, 15, 0, 0, 15, 15, 0, 15, 0, 0, 15, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 0, 15, 0, 0, 15, 15, 0, 15, 15, 15, 15, 91, 15, 15, 91, 91, 91, 91, 91, 91, 0, 91, 91, 15, 0, 0, 15, 15, 15, 15, 15, 0, 90, 0, 91, 91, 91, 91, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 15, 15, 15, 15, 15, 14, 14, 14, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 14, 3, 14, 14, 14, 91, 91, 14, 14, 14, 14, 14, 14, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 91, 14, 91, 14, 91, 5, 6, 5, 6, 123, 123, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 3, 91, 91, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 14, 14, 14, 14, 14, 14, 14, 14, 91, 14, 14, 14, 14, 14, 14, 0, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 14, 3, 3, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 123, 91, 91, 123, 123, 91, 91, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 15, 15, 15, 15, 91, 91, 91, 15, 123, 123, 123, 15, 15, 123, 123, 123, 123, 123, 123, 123, 15, 15, 15, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 91, 91, 123, 123, 123, 123, 123, 123, 91, 15, 123, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 123, 123, 123, 91, 14, 14, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 0, 124, 0, 0, 0, 0, 0, 124, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 3, 3, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 2, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 5, 6, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 3, 125, 125, 125, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 123, 123, 123, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 90, 3, 3, 3, 4, 15, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 91, 91, 91, 17, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 91, 91, 91, 123, 123, 123, 123, 91, 91, 123, 123, 123, 0, 0, 0, 0, 123, 123, 91, 123, 123, 123, 123, 123, 123, 91, 91, 91, 0, 0, 0, 0, 14, 0, 0, 0, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 15, 15, 15, 15, 15, 15, 15, 123, 123, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 123, 123, 91, 0, 0, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 123, 91, 91, 91, 91, 91, 91, 91, 0, 91, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 91, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 90, 3, 3, 3, 3, 3, 3, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 118, 0, 91, 91, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 91, 91, 91, 91, 123, 91, 123, 123, 123, 123, 123, 91, 123, 123, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 91, 91, 91, 91, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 91, 91, 91, 123, 123, 91, 91, 123, 91, 91, 91, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 91, 123, 123, 123, 91, 123, 91, 91, 91, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 15, 15, 15, 15, 123, 123, 123, 123, 123, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 91, 91, 0, 0, 0, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 90, 90, 90, 90, 90, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 3, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 91, 15, 15, 15, 15, 123, 123, 91, 15, 15, 0, 91, 91, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 126, 21, 21, 21, 127, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 21, 21, 21, 128, 21, 21, 129, 21, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 0, 0, 131, 131, 131, 131, 131, 131, 0, 0, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 0, 0, 131, 131, 131, 131, 131, 131, 0, 0, 21, 130, 21, 130, 21, 130, 21, 130, 0, 131, 0, 131, 0, 131, 0, 131, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 132, 132, 133, 133, 133, 133, 134, 134, 135, 135, 136, 136, 137, 137, 0, 0, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 21, 139, 21, 0, 21, 21, 131, 131, 140, 140, 141, 11, 142, 11, 11, 11, 21, 139, 21, 0, 21, 21, 143, 143, 143, 143, 141, 11, 11, 11, 130, 130, 21, 21, 0, 0, 21, 21, 131, 131, 144, 144, 0, 11, 11, 11, 130, 130, 21, 21, 21, 112, 21, 21, 131, 131, 145, 145, 116, 11, 11, 11, 0, 0, 21, 139, 21, 0, 21, 21, 146, 146, 147, 147, 141, 11, 11, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 17, 17, 17, 17, 17, 8, 8, 8, 8, 8, 8, 3, 3, 16, 20, 5, 16, 16, 20, 5, 16, 3, 3, 3, 3, 3, 3, 3, 3, 148, 149, 17, 17, 17, 17, 17, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 16, 20, 3, 3, 3, 3, 12, 12, 3, 3, 3, 7, 5, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 12, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 17, 17, 17, 17, 17, 0, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 90, 0, 0, 18, 18, 18, 18, 18, 18, 7, 7, 7, 5, 6, 90, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 7, 7, 7, 5, 6, 0, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 118, 118, 118, 118, 91, 118, 118, 118, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 106, 14, 14, 14, 14, 106, 14, 14, 21, 106, 106, 106, 21, 21, 106, 106, 106, 21, 14, 106, 14, 14, 7, 106, 106, 106, 106, 106, 14, 14, 14, 14, 14, 14, 106, 14, 150, 14, 106, 14, 151, 152, 106, 106, 14, 21, 106, 106, 153, 106, 21, 15, 15, 15, 15, 21, 14, 14, 21, 21, 106, 106, 7, 7, 7, 7, 7, 106, 21, 21, 21, 21, 14, 7, 14, 14, 154, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 125, 125, 125, 23, 24, 125, 125, 125, 125, 18, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 7, 7, 14, 14, 14, 14, 7, 14, 14, 7, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 14, 14, 7, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 5, 6, 5, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 14, 14, 14, 14, 14, 14, 14, 5, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 0, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 0, 23, 24, 159, 160, 161, 162, 163, 23, 24, 23, 24, 23, 24, 164, 165, 166, 167, 21, 23, 24, 21, 23, 24, 21, 21, 21, 21, 21, 90, 90, 168, 168, 23, 24, 23, 24, 21, 14, 14, 14, 14, 14, 14, 23, 24, 23, 24, 91, 91, 91, 23, 24, 0, 0, 0, 0, 0, 3, 3, 3, 3, 18, 3, 3, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 0, 169, 0, 0, 0, 0, 0, 169, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 90, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 3, 3, 16, 20, 16, 20, 3, 3, 3, 16, 20, 3, 16, 20, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 8, 3, 16, 20, 3, 3, 16, 20, 5, 6, 5, 6, 5, 6, 5, 6, 3, 3, 3, 3, 3, 90, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 8, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 2, 3, 3, 3, 14, 90, 15, 125, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 14, 14, 5, 6, 5, 6, 5, 6, 5, 6, 8, 5, 6, 6, 14, 125, 125, 125, 125, 125, 125, 125, 125, 125, 91, 91, 91, 91, 123, 123, 8, 90, 90, 90, 90, 90, 14, 14, 125, 125, 125, 90, 15, 3, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 11, 11, 90, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 90, 90, 90, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 14, 14, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 15, 91, 118, 118, 118, 3, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 90, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 90, 0, 91, 15, 15, 15, 15, 15, 15, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 91, 91, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 21, 21, 21, 21, 21, 21, 21, 21, 23, 24, 23, 24, 170, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 11, 11, 23, 24, 171, 21, 0, 23, 24, 23, 24, 21, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 172, 173, 174, 175, 0, 0, 176, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 90, 90, 21, 15, 15, 15, 15, 15, 15, 15, 91, 15, 15, 15, 91, 15, 15, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 123, 14, 14, 14, 14, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 14, 14, 4, 14, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 123, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 3, 3, 3, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 91, 91, 91, 91, 123, 123, 91, 123, 123, 123, 123, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 90, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 3, 3, 15, 15, 15, 15, 15, 91, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 123, 123, 91, 91, 123, 123, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 14, 14, 14, 15, 123, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 91, 91, 91, 15, 15, 91, 91, 15, 15, 15, 15, 15, 91, 91, 15, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 90, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 91, 123, 123, 3, 3, 15, 90, 90, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 11, 90, 90, 90, 90, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 123, 123, 91, 123, 123, 91, 123, 123, 3, 123, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 7, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 4, 14, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 5, 6, 3, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 3, 8, 8, 12, 12, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 3, 3, 5, 6, 3, 3, 3, 3, 12, 12, 12, 3, 3, 3, 0, 3, 3, 3, 3, 8, 5, 6, 5, 6, 5, 6, 3, 3, 3, 7, 8, 7, 7, 7, 0, 3, 4, 3, 3, 0, 0, 0, 0, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 17, 0, 3, 3, 3, 4, 3, 3, 3, 5, 6, 3, 7, 3, 8, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 7, 7, 7, 3, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 5, 7, 6, 7, 5, 6, 3, 5, 6, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 90, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 0, 0, 0, 4, 4, 7, 11, 14, 4, 4, 0, 14, 7, 7, 7, 7, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 17, 14, 14, 0, 0 #if TCL_UTF_MAX > 3 ,15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 3, 3, 3, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 125, 15, 15, 15, 15, 15, 15, 15, 15, 125, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 3, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 3, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 0, 0, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 3, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 18, 18, 18, 18, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 15, 15, 15, 91, 91, 91, 0, 91, 91, 0, 0, 0, 0, 0, 91, 91, 91, 91, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 91, 91, 91, 0, 0, 0, 0, 91, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 0, 0, 0, 0, 18, 18, 18, 18, 18, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 123, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 123, 123, 91, 91, 3, 3, 17, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 91, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 3, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 15, 15, 15, 15, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 123, 123, 91, 123, 91, 91, 3, 3, 3, 3, 3, 3, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 123, 123, 123, 123, 0, 0, 123, 123, 0, 0, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 123, 123, 0, 0, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 123, 91, 123, 123, 123, 123, 91, 91, 123, 91, 91, 15, 15, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 0, 0, 123, 123, 123, 123, 91, 91, 123, 91, 91, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 91, 123, 91, 91, 3, 3, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 91, 91, 91, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 14, 14, 14, 14, 90, 90, 90, 90, 3, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 18, 18, 18, 18, 18, 18, 18, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 14, 91, 91, 3, 17, 17, 17, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 123, 123, 91, 91, 91, 14, 14, 14, 123, 123, 123, 123, 123, 123, 17, 17, 17, 17, 17, 17, 17, 17, 91, 91, 91, 91, 91, 91, 91, 91, 14, 14, 91, 91, 91, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 91, 91, 91, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 0, 106, 106, 0, 0, 106, 0, 0, 106, 106, 0, 0, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 0, 21, 0, 21, 21, 21, 21, 21, 21, 21, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 0, 106, 106, 106, 106, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 0, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 0, 106, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 21, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 0, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 0, 15, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 15, 0, 15, 0, 15, 15, 15, 0, 15, 15, 0, 15, 0, 0, 15, 0, 15, 0, 15, 0, 15, 0, 15, 0, 15, 15, 0, 15, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 #endif /* TCL_UTF_MAX > 3 */ }; /* * Each group represents a unique set of character attributes. The attributes * are encoded into a 32-bit value as follows: * * Bits 0-4 Character category: see the constants listed below. * * Bits 5-7 Case delta type: 000 = identity * 010 = add delta for lower * 011 = add delta for lower, add 1 for title * 100 = subtract delta for title/upper * 101 = sub delta for upper, sub 1 for title * 110 = sub delta for upper, add delta for lower * * Bits 8-31 Case delta: delta for case conversions. This should be the * highest field so we can easily sign extend. */ static const int groups[] = { 0, 15, 12, 25, 27, 21, 22, 26, 20, 9, 8257, 28, 19, 8322, 29, 5, 23, 16, 11, -190078, 24, 2, -30846, 321, 386, -50879, 59522, -30911, 76930, -49790, 53825, 52801, 52545, 20289, 51777, 52033, 53057, -24702, 54081, 53569, -41598, 54593, -33150, 54849, 55873, 55617, 56129, -14206, 609, 451, 674, 20354, -24767, -14271, -33215, 2763585, -41663, 2762817, -2768510, -49855, 17729, 18241, -2760318, -2759550, -2760062, 53890, 52866, 52610, 51842, 52098, -10833534, -10832510, 53122, -10823550, -10830718, 53634, 54146, -2750078, -10829950, -2751614, 54658, 54914, -2745982, 55938, -10824062, 17794, 55682, 18306, 56194, -10817918, 4, 6, -21370, 29761, 9793, 9537, 16449, 16193, 9858, 9602, 8066, 16514, 16258, 2113, 16002, 14722, 1, 12162, 13954, 2178, 22146, 20610, -1662, 29826, -15295, 24706, -1727, 20545, 7, 3905, 3970, 12353, 12418, 8, 1859649, 10, -9044862, -976254, 15234, -1949375, -1918, -1983, -18814, -21886, -25470, -32638, -28542, -32126, -1981, -2174, -18879, -2237, 1844610, -21951, -25535, -28607, -32703, -32191, 13, 14, -1924287, -2145983, -2115007, 7233, 7298, 4170, 4234, 6749, 6813, -2750143, -976319, -2746047, 2763650, 2762882, -2759615, -2751679, -2760383, -2760127, -2768575, 1859714, -9044927, -10823615, -10830783, -10833599, -10832575, -10830015, -10817983, -10824127, 18, 17, 10305, 10370 }; #if TCL_UTF_MAX > 3 # define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1fffff) >= 0x2fa20) #else # define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1f0000) != 0) #endif /* * The following constants are used to determine the category of a * Unicode character. */ enum { UNASSIGNED, UPPERCASE_LETTER, LOWERCASE_LETTER, TITLECASE_LETTER, MODIFIER_LETTER, OTHER_LETTER, NON_SPACING_MARK, ENCLOSING_MARK, COMBINING_SPACING_MARK, DECIMAL_DIGIT_NUMBER, LETTER_NUMBER, OTHER_NUMBER, SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, PRIVATE_USE, SURROGATE, CONNECTOR_PUNCTUATION, DASH_PUNCTUATION, OPEN_PUNCTUATION, CLOSE_PUNCTUATION, INITIAL_QUOTE_PUNCTUATION, FINAL_QUOTE_PUNCTUATION, OTHER_PUNCTUATION, MATH_SYMBOL, CURRENCY_SYMBOL, MODIFIER_SYMBOL, OTHER_SYMBOL }; /* * The following macros extract the fields of the character info. The * GetDelta() macro is complicated because we can't rely on the C compiler * to do sign extension on right shifts. */ #define GetCaseType(info) (((info) & 0xe0) >> 5) #define GetCategory(ch) (GetUniCharInfo(ch) & 0x1f) #define GetDelta(info) ((info) >> 8) /* * This macro extracts the information about a character from the * Unicode character tables. */ #define GetUniCharInfo(ch) (groups[groupMap[pageMap[((ch) & 0xffff) >> OFFSET_BITS] | ((ch) & ((1 << OFFSET_BITS)-1))]])
/* * tclUniData.c -- * * Declarations of Unicode character information tables. This file is * automatically generated by the tools/uniParse.tcl script. Do not * modify this file by hand. * * Copyright (c) 1998 by Scriptics Corporation. * All rights reserved. */ /* * A 16-bit Unicode character is split into two parts in order to index * into the following tables. The lower OFFSET_BITS comprise an offset * into a page of characters. The upper bits comprise the page number. */ #define OFFSET_BITS 5 /* * The pageMap is indexed by page number and returns an alternate page number * that identifies a unique page of characters. Many Unicode characters map * to the same alternate page number. */ static const unsigned short pageMap[] = { 0, 32, 64, 96, 0, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, 224, 480, 512, 544, 576, 608, 640, 672, 704, 704, 736, 768, 800, 832, 864, 896, 928, 960, 992, 224, 1024, 224, 1056, 224, 224, 1088, 1120, 1152, 1184, 1216, 1248, 1280, 1312, 1344, 1376, 1408, 1344, 1344, 1440, 1472, 1504, 1536, 1568, 1344, 1344, 1600, 1632, 1664, 1696, 1728, 1760, 1792, 1792, 1824, 1792, 1856, 1888, 1920, 1952, 1984, 2016, 2048, 2080, 2112, 2144, 2176, 2208, 2240, 2272, 2304, 2336, 2368, 2400, 2432, 2464, 2496, 2528, 2560, 2592, 2624, 2656, 2688, 2720, 2752, 2784, 2816, 2848, 2880, 2784, 2912, 2944, 2976, 3008, 3040, 3072, 3104, 3136, 3168, 3200, 1792, 3232, 3264, 3296, 1792, 3328, 3360, 3392, 3424, 3456, 3488, 3520, 1792, 1344, 3552, 3584, 3616, 3648, 3680, 3712, 3744, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 3776, 1344, 3808, 3840, 3872, 1344, 3904, 1344, 3936, 3968, 4000, 1344, 1344, 4032, 4064, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4096, 4128, 1344, 1344, 4160, 4192, 4224, 4256, 4288, 1344, 4320, 4352, 4384, 4416, 1344, 4448, 4480, 1344, 4512, 1344, 4544, 4576, 4608, 4640, 4672, 1344, 4704, 4736, 4768, 4800, 1344, 4832, 4864, 4896, 4928, 1792, 1792, 4960, 4992, 5024, 5056, 5088, 5120, 1344, 5152, 1344, 5184, 5216, 5248, 1792, 1792, 5280, 5312, 5344, 5376, 5408, 5440, 5472, 5408, 704, 5504, 224, 224, 224, 224, 5536, 224, 224, 224, 5568, 5600, 5632, 5664, 5696, 5728, 5760, 5792, 5824, 5856, 5888, 5920, 5952, 5984, 6016, 6048, 6080, 6112, 6144, 6176, 6208, 6240, 6272, 6304, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6368, 6400, 4768, 6432, 6464, 6496, 6528, 6560, 4768, 6592, 6624, 6656, 6688, 6720, 6752, 6784, 4768, 4768, 4768, 4768, 4768, 6816, 6848, 6880, 4768, 4768, 4768, 6912, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 6944, 6976, 4768, 7008, 7040, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 6336, 6336, 6336, 6336, 7072, 6336, 7104, 7136, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 6336, 4768, 7168, 7200, 7232, 7264, 7296, 7328, 1792, 7360, 7392, 7424, 7456, 224, 224, 224, 7488, 7520, 7552, 1344, 7584, 7616, 7648, 7648, 704, 7680, 7712, 7744, 1792, 7776, 4768, 4768, 7808, 4768, 4768, 4768, 4768, 4768, 4768, 7840, 7872, 7904, 7936, 3136, 1344, 7968, 4064, 1344, 8000, 8032, 8064, 1344, 1344, 8096, 8128, 4768, 8160, 8192, 8224, 8256, 4768, 8224, 8288, 4768, 8192, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4544, 4768, 4768, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8320, 1792, 8352, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8384, 4768, 8416, 5248, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 8448, 8480, 224, 8512, 8544, 1344, 1344, 8576, 8608, 8640, 224, 8672, 8704, 8736, 1792, 8768, 8800, 8832, 1344, 8864, 8896, 8928, 8960, 8992, 1632, 9024, 9056, 9088, 1888, 9120, 9152, 9184, 1344, 9216, 9248, 9280, 1344, 9312, 9344, 9376, 9408, 9440, 9472, 9504, 1792, 1792, 1344, 9536, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9568, 9600, 9632, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9664, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9728, 1344, 1344, 9760, 1792, 9792, 9824, 9856, 1344, 1344, 9888, 9920, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 9952, 9984, 1344, 10016, 1344, 10048, 10080, 10112, 10144, 10176, 10208, 1344, 1344, 1344, 10240, 10272, 64, 10304, 10336, 10368, 4576, 10400, 10432 #if TCL_UTF_MAX > 3 ,10464, 10496, 10528, 1792, 1344, 1344, 1344, 8128, 10560, 10592, 10624, 10656, 10688, 10720, 10752, 10784, 1792, 1792, 1792, 1792, 9088, 1344, 10816, 10848, 1344, 10880, 10912, 10944, 10976, 1344, 11008, 1792, 11040, 11072, 11104, 1344, 11136, 11168, 1792, 1792, 1344, 11200, 1344, 11232, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 7616, 4544, 10048, 1792, 1792, 1792, 1792, 11264, 11296, 11328, 11360, 4576, 11392, 1792, 1792, 11424, 11456, 1792, 1792, 1344, 11488, 1792, 1792, 11520, 11552, 11584, 11616, 11648, 1792, 11680, 11712, 1344, 11744, 11776, 11808, 11840, 11872, 1792, 1792, 1344, 1344, 11904, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 11936, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 11968, 12000, 12032, 12064, 5088, 12096, 12128, 12160, 12192, 12224, 12256, 12288, 5088, 12320, 12352, 12384, 12416, 12448, 1792, 1792, 1792, 9984, 12480, 12512, 2400, 2304, 12544, 12576, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 12608, 12640, 1792, 1792, 1792, 1792, 1792, 1344, 12672, 12704, 1792, 1344, 12736, 12768, 1792, 1344, 12800, 11168, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 12832, 12864, 12896, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 12928, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12928, 1792, 1792, 1792, 10624, 10624, 10624, 12960, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12992, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 12928, 4576, 13024, 1792, 1792, 9984, 13056, 1344, 13088, 13120, 13152, 13184, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 13216, 13248, 13280, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 13312, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 13344, 13376, 13408, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 7840, 4768, 13440, 4768, 13472, 13504, 13536, 13568, 1792, 4768, 4768, 13600, 1792, 1792, 1792, 1792, 1792, 4768, 4768, 13632, 13664, 1792, 1792, 1792, 1792, 13696, 13728, 13760, 13792, 13824, 13856, 13888, 13920, 13952, 13984, 14016, 14048, 14080, 13696, 13728, 14112, 13792, 14144, 14176, 14208, 13920, 14240, 14272, 14304, 14336, 14368, 14400, 14432, 14464, 14496, 14528, 14560, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 14592, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 14624, 14656, 14688, 14720, 14752, 14784, 1792, 14816, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 4768, 14848, 4768, 4768, 7808, 14880, 14912, 7840, 14944, 14976, 4768, 14848, 15008, 1792, 1792, 15040, 15072, 15008, 15104, 1792, 1792, 1792, 1792, 1792, 4768, 15136, 4768, 13568, 4768, 4768, 15168, 15200, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 8192, 4768, 4768, 15232, 7776, 4768, 15264, 4768, 4768, 4768, 4768, 15296, 4768, 4768, 4768, 15328, 15360, 4768, 4768, 4768, 7808, 4768, 4768, 15392, 1792, 14848, 4768, 15424, 4768, 15456, 15488, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 7616, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 4032, 1344, 1344, 1344, 1344, 1344, 1344, 11136, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 11136 #endif /* TCL_UTF_MAX > 3 */ }; /* * The groupMap is indexed by combining the alternate page number with * the page offset and returns a group number that identifies a unique * set of character attributes. */ static const unsigned char groupMap[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 4, 3, 3, 3, 5, 6, 3, 7, 3, 8, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 7, 7, 7, 3, 3, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 5, 3, 6, 11, 12, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 5, 7, 6, 7, 1, 2, 3, 4, 4, 4, 4, 14, 3, 11, 14, 15, 16, 7, 17, 14, 11, 14, 7, 18, 18, 11, 19, 3, 3, 11, 18, 15, 20, 18, 18, 18, 3, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 10, 10, 10, 10, 10, 10, 10, 21, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 7, 13, 13, 13, 13, 13, 13, 13, 22, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 25, 26, 23, 24, 23, 24, 23, 24, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 27, 23, 24, 23, 24, 23, 24, 28, 29, 30, 23, 24, 23, 24, 31, 23, 24, 32, 32, 23, 24, 21, 33, 34, 35, 23, 24, 32, 36, 37, 38, 39, 23, 24, 40, 21, 38, 41, 42, 43, 23, 24, 23, 24, 23, 24, 44, 23, 24, 44, 21, 21, 23, 24, 44, 23, 24, 45, 45, 23, 24, 23, 24, 46, 23, 24, 21, 15, 23, 24, 21, 47, 15, 15, 15, 15, 48, 49, 50, 48, 49, 50, 48, 49, 50, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 51, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 48, 49, 50, 23, 24, 52, 53, 23, 24, 23, 24, 23, 24, 23, 24, 54, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 21, 21, 21, 21, 55, 23, 24, 56, 57, 58, 58, 23, 24, 59, 60, 61, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 62, 63, 64, 65, 66, 21, 67, 67, 21, 68, 21, 69, 70, 21, 21, 21, 67, 71, 21, 72, 21, 73, 74, 21, 75, 76, 21, 77, 78, 21, 21, 76, 21, 79, 80, 21, 21, 81, 21, 21, 21, 21, 21, 21, 21, 82, 21, 21, 83, 21, 21, 83, 21, 21, 21, 84, 83, 85, 86, 86, 87, 21, 21, 21, 21, 21, 88, 21, 15, 21, 21, 21, 21, 21, 21, 21, 21, 21, 89, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 11, 11, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 90, 90, 90, 90, 90, 11, 11, 11, 11, 11, 11, 11, 90, 11, 90, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 92, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 23, 24, 23, 24, 90, 11, 23, 24, 0, 0, 90, 42, 42, 42, 3, 93, 0, 0, 0, 0, 11, 11, 94, 3, 95, 95, 95, 0, 96, 0, 97, 97, 21, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 98, 99, 99, 99, 21, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 100, 13, 13, 13, 13, 13, 13, 13, 13, 13, 101, 102, 102, 103, 104, 105, 106, 106, 106, 107, 108, 109, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 110, 111, 112, 113, 114, 115, 7, 23, 24, 116, 23, 24, 21, 54, 54, 54, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 23, 24, 14, 91, 91, 91, 91, 91, 118, 118, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 119, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 120, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 0, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 0, 0, 90, 3, 3, 3, 3, 3, 3, 0, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 21, 0, 3, 8, 0, 0, 14, 14, 4, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 8, 91, 3, 91, 91, 3, 91, 91, 3, 91, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 17, 17, 17, 17, 7, 7, 7, 3, 3, 4, 3, 3, 14, 14, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 17, 0, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 15, 91, 91, 91, 91, 91, 91, 91, 17, 14, 91, 91, 91, 91, 91, 91, 90, 90, 91, 91, 14, 91, 91, 91, 91, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 14, 14, 15, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 17, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, 90, 14, 3, 3, 3, 90, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 90, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, 91, 91, 91, 90, 91, 91, 91, 91, 91, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 91, 123, 123, 15, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 0, 0, 15, 15, 15, 15, 0, 0, 91, 15, 123, 123, 123, 91, 91, 91, 91, 0, 0, 123, 123, 0, 0, 123, 123, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 15, 15, 0, 15, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 4, 4, 18, 18, 18, 18, 18, 18, 14, 4, 0, 0, 0, 0, 0, 91, 91, 123, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 0, 15, 15, 0, 0, 91, 0, 123, 123, 123, 91, 91, 0, 0, 0, 0, 91, 91, 0, 0, 91, 91, 91, 0, 0, 0, 91, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 91, 91, 15, 15, 15, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 123, 123, 91, 91, 91, 91, 91, 0, 91, 91, 123, 0, 123, 123, 91, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 91, 123, 91, 91, 91, 91, 0, 0, 123, 123, 0, 0, 123, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 91, 123, 0, 0, 0, 0, 15, 15, 0, 15, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 14, 15, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 0, 15, 15, 0, 15, 0, 15, 15, 0, 0, 0, 15, 15, 0, 0, 0, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 123, 123, 91, 123, 123, 0, 0, 0, 123, 123, 123, 0, 123, 123, 123, 91, 0, 0, 15, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 14, 14, 14, 14, 14, 14, 4, 14, 0, 0, 0, 0, 0, 91, 123, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 91, 91, 91, 123, 123, 123, 123, 0, 91, 91, 91, 0, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 91, 91, 0, 15, 15, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 14, 0, 91, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 0, 91, 15, 123, 91, 123, 123, 123, 123, 123, 0, 91, 123, 123, 0, 123, 123, 91, 91, 0, 0, 0, 0, 0, 0, 0, 123, 123, 0, 0, 0, 0, 0, 0, 0, 15, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 123, 123, 123, 91, 91, 91, 91, 0, 123, 123, 123, 0, 123, 123, 123, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 15, 15, 15, 15, 15, 15, 0, 0, 123, 123, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 91, 0, 0, 0, 0, 123, 123, 123, 91, 91, 91, 0, 91, 0, 123, 123, 123, 123, 123, 123, 123, 123, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 123, 123, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 15, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 4, 15, 15, 15, 15, 15, 15, 90, 91, 91, 91, 91, 91, 91, 91, 91, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 15, 15, 0, 15, 0, 0, 15, 15, 0, 15, 0, 0, 15, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 0, 15, 0, 0, 15, 15, 0, 15, 15, 15, 15, 91, 15, 15, 91, 91, 91, 91, 91, 91, 0, 91, 91, 15, 0, 0, 15, 15, 15, 15, 15, 0, 90, 0, 91, 91, 91, 91, 91, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 15, 15, 15, 15, 15, 14, 14, 14, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 14, 3, 14, 14, 14, 91, 91, 14, 14, 14, 14, 14, 14, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 91, 14, 91, 14, 91, 5, 6, 5, 6, 123, 123, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 3, 91, 91, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 14, 14, 14, 14, 14, 14, 14, 14, 91, 14, 14, 14, 14, 14, 14, 0, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 14, 3, 3, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 123, 91, 91, 123, 123, 91, 91, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 15, 15, 15, 15, 91, 91, 91, 15, 123, 123, 123, 15, 15, 123, 123, 123, 123, 123, 123, 123, 15, 15, 15, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 91, 91, 123, 123, 123, 123, 123, 123, 91, 15, 123, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 123, 123, 123, 91, 14, 14, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 0, 124, 0, 0, 0, 0, 0, 124, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 3, 3, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 2, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 5, 6, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 3, 125, 125, 125, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 0, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 123, 123, 123, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 90, 3, 3, 3, 4, 15, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 91, 91, 91, 17, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 91, 91, 91, 123, 123, 123, 123, 91, 91, 123, 123, 123, 0, 0, 0, 0, 123, 123, 91, 123, 123, 123, 123, 123, 123, 91, 91, 91, 0, 0, 0, 0, 14, 0, 0, 0, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 15, 15, 15, 15, 15, 15, 15, 123, 123, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 123, 123, 91, 0, 0, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 123, 91, 91, 91, 91, 91, 91, 91, 0, 91, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 123, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 91, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 90, 3, 3, 3, 3, 3, 3, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 118, 0, 91, 91, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 91, 91, 91, 91, 123, 91, 123, 123, 123, 123, 123, 91, 123, 123, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 91, 91, 91, 91, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 91, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 91, 91, 91, 123, 123, 91, 91, 123, 91, 91, 91, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 91, 123, 123, 123, 91, 123, 91, 91, 91, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 15, 15, 15, 15, 123, 123, 123, 123, 123, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 91, 91, 0, 0, 0, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 90, 90, 90, 90, 90, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 3, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 91, 15, 15, 15, 15, 123, 123, 91, 15, 15, 0, 91, 91, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 126, 21, 21, 21, 127, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 90, 90, 90, 90, 90, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 21, 21, 21, 128, 21, 21, 129, 21, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 0, 0, 131, 131, 131, 131, 131, 131, 0, 0, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 0, 0, 131, 131, 131, 131, 131, 131, 0, 0, 21, 130, 21, 130, 21, 130, 21, 130, 0, 131, 0, 131, 0, 131, 0, 131, 130, 130, 130, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, 131, 131, 132, 132, 133, 133, 133, 133, 134, 134, 135, 135, 136, 136, 137, 137, 0, 0, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 130, 130, 130, 130, 130, 130, 138, 138, 138, 138, 138, 138, 138, 138, 130, 130, 21, 139, 21, 0, 21, 21, 131, 131, 140, 140, 141, 11, 142, 11, 11, 11, 21, 139, 21, 0, 21, 21, 143, 143, 143, 143, 141, 11, 11, 11, 130, 130, 21, 21, 0, 0, 21, 21, 131, 131, 144, 144, 0, 11, 11, 11, 130, 130, 21, 21, 21, 112, 21, 21, 131, 131, 145, 145, 116, 11, 11, 11, 0, 0, 21, 139, 21, 0, 21, 21, 146, 146, 147, 147, 141, 11, 11, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 17, 17, 17, 17, 17, 8, 8, 8, 8, 8, 8, 3, 3, 16, 20, 5, 16, 16, 20, 5, 16, 3, 3, 3, 3, 3, 3, 3, 3, 148, 149, 17, 17, 17, 17, 17, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 16, 20, 3, 3, 3, 3, 12, 12, 3, 3, 3, 7, 5, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 12, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 17, 17, 17, 17, 17, 0, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 90, 0, 0, 18, 18, 18, 18, 18, 18, 7, 7, 7, 5, 6, 90, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 7, 7, 7, 5, 6, 0, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 118, 118, 118, 118, 91, 118, 118, 118, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 106, 14, 14, 14, 14, 106, 14, 14, 21, 106, 106, 106, 21, 21, 106, 106, 106, 21, 14, 106, 14, 14, 7, 106, 106, 106, 106, 106, 14, 14, 14, 14, 14, 14, 106, 14, 150, 14, 106, 14, 151, 152, 106, 106, 14, 21, 106, 106, 153, 106, 21, 15, 15, 15, 15, 21, 14, 14, 21, 21, 106, 106, 7, 7, 7, 7, 7, 106, 21, 21, 21, 21, 14, 7, 14, 14, 154, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 125, 125, 125, 23, 24, 125, 125, 125, 125, 18, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 7, 7, 14, 14, 14, 14, 7, 14, 14, 7, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 14, 14, 7, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 5, 6, 5, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 14, 14, 14, 14, 14, 14, 14, 5, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 6, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 7, 7, 7, 7, 7, 7, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 0, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 0, 23, 24, 159, 160, 161, 162, 163, 23, 24, 23, 24, 23, 24, 164, 165, 166, 167, 21, 23, 24, 21, 23, 24, 21, 21, 21, 21, 21, 90, 90, 168, 168, 23, 24, 23, 24, 21, 14, 14, 14, 14, 14, 14, 23, 24, 23, 24, 91, 91, 91, 23, 24, 0, 0, 0, 0, 0, 3, 3, 3, 3, 18, 3, 3, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 0, 169, 0, 0, 0, 0, 0, 169, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 90, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 3, 3, 16, 20, 16, 20, 3, 3, 3, 16, 20, 3, 16, 20, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 8, 3, 16, 20, 3, 3, 16, 20, 5, 6, 5, 6, 5, 6, 5, 6, 3, 3, 3, 3, 3, 90, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 8, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 2, 3, 3, 3, 14, 90, 15, 125, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 14, 14, 5, 6, 5, 6, 5, 6, 5, 6, 8, 5, 6, 6, 14, 125, 125, 125, 125, 125, 125, 125, 125, 125, 91, 91, 91, 91, 123, 123, 8, 90, 90, 90, 90, 90, 14, 14, 125, 125, 125, 90, 15, 3, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 11, 11, 90, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 90, 90, 90, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 14, 14, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 15, 91, 118, 118, 118, 3, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 90, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 90, 0, 91, 15, 15, 15, 15, 15, 15, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 91, 91, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 90, 90, 90, 90, 90, 90, 90, 90, 90, 11, 11, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 21, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 21, 21, 21, 21, 21, 21, 21, 21, 23, 24, 23, 24, 170, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 90, 11, 11, 23, 24, 171, 21, 0, 23, 24, 23, 24, 21, 21, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 23, 24, 172, 173, 174, 175, 0, 0, 176, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 90, 90, 21, 15, 15, 15, 15, 15, 15, 15, 91, 15, 15, 15, 91, 15, 15, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 91, 91, 123, 14, 14, 14, 14, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 14, 14, 4, 14, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 123, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 15, 15, 15, 15, 15, 15, 3, 3, 3, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 91, 91, 91, 91, 123, 123, 91, 123, 123, 123, 123, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 90, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 3, 3, 15, 15, 15, 15, 15, 91, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 123, 123, 91, 91, 123, 123, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 14, 14, 14, 15, 123, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 15, 91, 91, 91, 15, 15, 91, 91, 15, 15, 15, 15, 15, 91, 91, 15, 91, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 90, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 91, 91, 123, 123, 3, 3, 15, 90, 90, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 11, 90, 90, 90, 90, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 123, 123, 91, 123, 123, 91, 123, 123, 3, 123, 91, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 15, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 7, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 15, 0, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 4, 14, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 5, 6, 3, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 3, 8, 8, 12, 12, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 3, 3, 5, 6, 3, 3, 3, 3, 12, 12, 12, 3, 3, 3, 0, 3, 3, 3, 3, 8, 5, 6, 5, 6, 5, 6, 3, 3, 3, 7, 8, 7, 7, 7, 0, 3, 4, 3, 3, 0, 0, 0, 0, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 17, 0, 3, 3, 3, 4, 3, 3, 3, 5, 6, 3, 7, 3, 8, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 7, 7, 7, 3, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 5, 7, 6, 7, 5, 6, 3, 5, 6, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 90, 90, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 0, 0, 0, 4, 4, 7, 11, 14, 4, 4, 0, 14, 7, 7, 7, 7, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 17, 14, 14, 0, 0 #if TCL_UTF_MAX > 3 ,15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 3, 3, 3, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 18, 18, 18, 18, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 125, 15, 15, 15, 15, 15, 15, 15, 15, 125, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 3, 15, 15, 15, 15, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 3, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 0, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 0, 0, 15, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 3, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 14, 14, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 18, 18, 18, 18, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 15, 15, 15, 91, 91, 91, 0, 91, 91, 0, 0, 0, 0, 0, 91, 91, 91, 91, 15, 15, 15, 15, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 91, 91, 91, 0, 0, 0, 0, 91, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 0, 0, 0, 0, 18, 18, 18, 18, 18, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 123, 91, 123, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 123, 123, 91, 91, 3, 3, 17, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 91, 91, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 123, 91, 91, 91, 91, 91, 91, 91, 91, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 3, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 15, 15, 15, 15, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 123, 123, 91, 123, 91, 91, 3, 3, 3, 3, 3, 3, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 91, 123, 123, 123, 123, 0, 0, 123, 123, 0, 0, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 123, 123, 0, 0, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 123, 91, 123, 123, 123, 123, 91, 91, 123, 91, 91, 15, 15, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 0, 0, 123, 123, 123, 123, 91, 91, 123, 91, 91, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 123, 123, 123, 91, 91, 91, 91, 91, 91, 91, 91, 123, 123, 91, 123, 91, 91, 3, 3, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 123, 91, 123, 123, 91, 91, 91, 91, 91, 91, 123, 91, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 91, 91, 91, 91, 91, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 91, 91, 91, 91, 91, 91, 91, 3, 3, 3, 3, 3, 14, 14, 14, 14, 90, 90, 90, 90, 3, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 18, 18, 18, 18, 18, 18, 18, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 91, 91, 91, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 14, 91, 91, 3, 17, 17, 17, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 123, 123, 91, 91, 91, 14, 14, 14, 123, 123, 123, 123, 123, 123, 17, 17, 17, 17, 17, 17, 17, 17, 91, 91, 91, 91, 91, 91, 91, 91, 14, 14, 91, 91, 91, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 91, 91, 91, 91, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 91, 91, 91, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 0, 106, 106, 0, 0, 106, 0, 0, 106, 106, 0, 0, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 0, 21, 0, 21, 21, 21, 21, 21, 21, 21, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 0, 106, 106, 106, 106, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 0, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 0, 106, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 21, 21, 21, 21, 21, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 7, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 7, 21, 21, 21, 21, 21, 21, 106, 21, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 15, 15, 15, 15, 15, 0, 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 91, 91, 91, 91, 91, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 0, 15, 0, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 0, 15, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 15, 0, 15, 0, 15, 15, 15, 0, 15, 15, 0, 15, 0, 0, 15, 0, 15, 0, 15, 0, 15, 0, 15, 0, 15, 15, 0, 15, 0, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 15, 15, 15, 0, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 15, 15, 15, 0, 15, 15, 15, 15, 15, 0, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 #endif /* TCL_UTF_MAX > 3 */ }; /* * Each group represents a unique set of character attributes. The attributes * are encoded into a 32-bit value as follows: * * Bits 0-4 Character category: see the constants listed below. * * Bits 5-7 Case delta type: 000 = identity * 010 = add delta for lower * 011 = add delta for lower, add 1 for title * 100 = subtract delta for title/upper * 101 = sub delta for upper, sub 1 for title * 110 = sub delta for upper, add delta for lower * * Bits 8-31 Case delta: delta for case conversions. This should be the * highest field so we can easily sign extend. */ static const int groups[] = { 0, 15, 12, 25, 27, 21, 22, 26, 20, 9, 8257, 28, 19, 8322, 29, 5, 23, 16, 11, -190078, 24, 2, -30846, 321, 386, -50879, 59522, -30911, 76930, -49790, 53825, 52801, 52545, 20289, 51777, 52033, 53057, -24702, 54081, 53569, -41598, 54593, -33150, 54849, 55873, 55617, 56129, -14206, 609, 451, 674, 20354, -24767, -14271, -33215, 2763585, -41663, 2762817, -2768510, -49855, 17729, 18241, -2760318, -2759550, -2760062, 53890, 52866, 52610, 51842, 52098, -10833534, -10832510, 53122, -10823550, -10830718, 53634, 54146, -2750078, -10829950, -2751614, 54658, 54914, -2745982, 55938, -10824062, 17794, 55682, 18306, 56194, -10817918, 4, 6, -21370, 29761, 9793, 9537, 16449, 16193, 9858, 9602, 8066, 16514, 16258, 2113, 16002, 14722, 1, 12162, 13954, 2178, 22146, 20610, -1662, 29826, -15295, 24706, -1727, 20545, 7, 3905, 3970, 12353, 12418, 8, 1859649, 10, -9044862, -976254, 15234, -1949375, -1918, -1983, -18814, -21886, -25470, -32638, -28542, -32126, -1981, -2174, -18879, -2237, 1844610, -21951, -25535, -28607, -32703, -32191, 13, 14, -1924287, -2145983, -2115007, 7233, 7298, 4170, 4234, 6749, 6813, -2750143, -976319, -2746047, 2763650, 2762882, -2759615, -2751679, -2760383, -2760127, -2768575, 1859714, -9044927, -10823615, -10830783, -10833599, -10832575, -10830015, -10817983, -10824127, 18, 17, 10305, 10370 }; #if TCL_UTF_MAX > 3 # define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1fffff) >= 0x2fa20) #else # define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1f0000) != 0) #endif /* * The following constants are used to determine the category of a * Unicode character. */ enum { UNASSIGNED, UPPERCASE_LETTER, LOWERCASE_LETTER, TITLECASE_LETTER, MODIFIER_LETTER, OTHER_LETTER, NON_SPACING_MARK, ENCLOSING_MARK, COMBINING_SPACING_MARK, DECIMAL_DIGIT_NUMBER, LETTER_NUMBER, OTHER_NUMBER, SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, PRIVATE_USE, SURROGATE, CONNECTOR_PUNCTUATION, DASH_PUNCTUATION, OPEN_PUNCTUATION, CLOSE_PUNCTUATION, INITIAL_QUOTE_PUNCTUATION, FINAL_QUOTE_PUNCTUATION, OTHER_PUNCTUATION, MATH_SYMBOL, CURRENCY_SYMBOL, MODIFIER_SYMBOL, OTHER_SYMBOL }; /* * The following macros extract the fields of the character info. The * GetDelta() macro is complicated because we can't rely on the C compiler * to do sign extension on right shifts. */ #define GetCaseType(info) (((info) & 0xe0) >> 5) #define GetCategory(ch) (GetUniCharInfo(ch) & 0x1f) #define GetDelta(info) ((info) >> 8) /* * This macro extracts the information about a character from the * Unicode character tables. */ #define GetUniCharInfo(ch) (groups[groupMap[pageMap[((ch) & 0xffff) >> OFFSET_BITS] | ((ch) & ((1 << OFFSET_BITS)-1))]])
0
// // FBCarouselViewController.h // FBContainer // // Created by 王磊 on 2020/3/31. // Copyright © 2020 王磊. All rights reserved. // #import "FBConfig.h" @import FBCollection; NS_ASSUME_NONNULL_BEGIN @interface FBCarouselViewController : FBCollectionNoLoadingViewController + (instancetype)createCarousel; @end NS_ASSUME_NONNULL_END
// // FBCarouselViewController.h // FBContainer // // Created by 王磊 on 2020/3/31. // Copyright © 2020 王磊. All rights reserved. // #import "FBConfig.h" @CLASS_0 VAR_0; CLASS_1 @VAR_1 FBCarouselViewController : VAR_2 + (ID_0)createCarousel; @CLASS_2 NS_ASSUME_NONNULL_END
0.841286
{'CLASS_0': 'import', 'VAR_0': 'FBCollection', 'CLASS_1': 'NS_ASSUME_NONNULL_BEGIN', 'VAR_1': 'interface', 'VAR_2': 'FBCollectionNoLoadingViewController', 'ID_0': 'instancetype', 'CLASS_2': 'end'}
//------------------------------------------------------------------------------------------------------------------------------ // <NAME> // <EMAIL> // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------------------ void apply_op(level_type * level, int Ax_id, int x_id, double a, double b){ // y=Ax // exchange the boundary of x in preparation for Ax exchange_boundary(level,x_id,stencil_get_shape()); apply_BCs(level,x_id,stencil_get_shape()); // now do Ax proper... double _timeStart = getTime(); const int ghosts = level->box_ghosts; const int jStride = level->box_jStride; const int kStride = level->box_kStride; const int dim = level->box_dim; const double h2inv = 1.0/(level->h*level->h); int box; PRAGMA_THREAD_ACROSS_BOXES(level,box) for(box=0;box<level->num_my_boxes;box++){ int i,j,k; const double * __restrict__ x = level->my_boxes[box].vectors[ x_id] + ghosts*(1+jStride+kStride); // i.e. [0] = first non ghost zone point double * __restrict__ Ax = level->my_boxes[box].vectors[ Ax_id] + ghosts*(1+jStride+kStride); const double * __restrict__ alpha = level->my_boxes[box].vectors[VECTOR_ALPHA ] + ghosts*(1+jStride+kStride); const double * __restrict__ beta_i = level->my_boxes[box].vectors[VECTOR_BETA_I] + ghosts*(1+jStride+kStride); const double * __restrict__ beta_j = level->my_boxes[box].vectors[VECTOR_BETA_J] + ghosts*(1+jStride+kStride); const double * __restrict__ beta_k = level->my_boxes[box].vectors[VECTOR_BETA_K] + ghosts*(1+jStride+kStride); PRAGMA_THREAD_WITHIN_A_BOX(level,i,j,k) for(k=0;k<dim;k++){ for(j=0;j<dim;j++){ for(i=0;i<dim;i++){ int ijk = i + j*jStride + k*kStride; Ax[ijk] = apply_op_ijk(x); }}} } level->timers.apply_op += (double)(getTime()-_timeStart); } //------------------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------------------ // <NAME> // <EMAIL> // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------------------ void apply_op(level_type * level, int Ax_id, int x_id, double a, double b){ // y=Ax // exchange the boundary of x in preparation for Ax FUNC_0(level,x_id,stencil_get_shape()); apply_BCs(level,x_id,stencil_get_shape()); // now do Ax proper... double _timeStart = getTime(); const int ghosts = level->box_ghosts; const int VAR_0 = level->box_jStride; const int kStride = level->box_kStride; const int dim = level->box_dim; const double h2inv = 1.0/(level->h*level->h); int VAR_1; PRAGMA_THREAD_ACROSS_BOXES(level,VAR_1) for(VAR_1=0;VAR_1<level->num_my_boxes;VAR_1++){ int i,j,VAR_2; const double * __restrict__ x = level->my_boxes[VAR_1].vectors[ x_id] + ghosts*(1+VAR_0+kStride); // i.e. [0] = first non ghost zone point double * __restrict__ VAR_3 = level->my_boxes[VAR_1].vectors[ Ax_id] + ghosts*(1+VAR_0+kStride); const double * __restrict__ VAR_4 = level->my_boxes[VAR_1].vectors[VAR_5 ] + ghosts*(1+VAR_0+kStride); const double * __restrict__ VAR_6 = level->my_boxes[VAR_1].vectors[VECTOR_BETA_I] + ghosts*(1+VAR_0+kStride); const double * __restrict__ beta_j = level->my_boxes[VAR_1].vectors[VECTOR_BETA_J] + ghosts*(1+VAR_0+kStride); const double * __restrict__ beta_k = level->my_boxes[VAR_1].vectors[VAR_7] + ghosts*(1+VAR_0+kStride); FUNC_1(level,i,j,VAR_2) for(VAR_2=0;VAR_2<dim;VAR_2++){ for(j=0;j<dim;j++){ for(i=0;i<dim;i++){ int ijk = i + j*VAR_0 + VAR_2*kStride; VAR_3[ijk] = apply_op_ijk(x); }}} } level->timers.apply_op += (double)(getTime()-_timeStart); } //------------------------------------------------------------------------------------------------------------------------------
0.387153
{'FUNC_0': 'exchange_boundary', 'VAR_0': 'jStride', 'VAR_1': 'box', 'VAR_2': 'k', 'VAR_3': 'Ax', 'VAR_4': 'alpha', 'VAR_5': 'VECTOR_ALPHA', 'VAR_6': 'beta_i', 'VAR_7': 'VECTOR_BETA_K', 'FUNC_1': 'PRAGMA_THREAD_WITHIN_A_BOX'}
/***************************************************************************** * sdla_chdlc.c WANPIPE(tm) Multiprotocol WAN Link Driver. Cisco HDLC module. * * Authors: <NAME> <<EMAIL>> * <NAME> * * Copyright: (c) 1995-1999 Sangoma Technologies Inc. * * 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. * ============================================================================ * Sep 30, 1999 <NAME> Fixed dynamic IP and route setup. * Sep 23, 1999 <NAME> Added SMP support, fixed tracing * Sep 13, 1999 <NAME> Split up Port 0 and 1 into separate devices. * Jun 02, 1999 <NAME> Added support for the S514 adapter. * Oct 30, 1998 <NAME> Added Support for CHDLC API (HDLC STREAMING). * Oct 28, 1998 <NAME> Added Support for Dual Port CHDLC. * Aug 07, 1998 <NAME> Initial version. *****************************************************************************/ #include <linux/module.h> #include <linux/kernel.h> /* printk(), and other useful stuff */ #include <linux/stddef.h> /* offsetof(), etc. */ #include <linux/errno.h> /* return codes */ #include <linux/string.h> /* inline memset(), etc. */ #include <linux/slab.h> /* kmalloc(), kfree() */ #include <linux/wanrouter.h> /* WAN router definitions */ #include <linux/wanpipe.h> /* WANPIPE common user API definitions */ #include <linux/if_arp.h> /* ARPHRD_* defines */ #include <linux/jiffies.h> /* time_after() macro */ #include <linux/inetdevice.h> #include <asm/uaccess.h> #include <linux/in.h> /* sockaddr_in */ #include <linux/inet.h> #include <linux/if.h> #include <asm/byteorder.h> /* htons(), etc. */ #include <linux/sdlapci.h> #include <asm/io.h> #include <linux/sdla_chdlc.h> /* CHDLC firmware API definitions */ /****** Defines & Macros ****************************************************/ /* reasons for enabling the timer interrupt on the adapter */ #define TMR_INT_ENABLED_UDP 0x0001 #define TMR_INT_ENABLED_UPDATE 0x0002 #define CHDLC_DFLT_DATA_LEN 1500 /* default MTU */ #define CHDLC_HDR_LEN 1 #define IFF_POINTTOPOINT 0x10 #define WANPIPE 0x00 #define API 0x01 #define CHDLC_API 0x01 #define PORT(x) (x == 0 ? "PRIMARY" : "SECONDARY" ) /******Data Structures*****************************************************/ /* This structure is placed in the private data area of the device structure. * The card structure used to occupy the private area but now the following * structure will incorporate the card structure along with CHDLC specific data */ typedef struct chdlc_private_area { struct net_device *slave; sdla_t *card; int TracingEnabled; /* For enabling Tracing */ unsigned long curr_trace_addr; /* Used for Tracing */ unsigned long start_trace_addr; unsigned long end_trace_addr; unsigned long base_addr_trace_buffer; unsigned long end_addr_trace_buffer; unsigned short number_trace_elements; unsigned available_buffer_space; unsigned long router_start_time; unsigned char route_status; unsigned char route_removed; unsigned long tick_counter; /* For 5s timeout counter */ unsigned long router_up_time; u32 IP_address; /* IP addressing */ u32 IP_netmask; unsigned char mc; /* Mulitcast support on/off */ unsigned short udp_pkt_lgth; /* udp packet processing */ char udp_pkt_src; char udp_pkt_data[MAX_LGTH_UDP_MGNT_PKT]; unsigned short timer_int_enabled; char update_comms_stats; /* updating comms stats */ //FIXME: add driver stats as per frame relay! } chdlc_private_area_t; /* Route Status options */ #define NO_ROUTE 0x00 #define ADD_ROUTE 0x01 #define ROUTE_ADDED 0x02 #define REMOVE_ROUTE 0x03 /****** Function Prototypes *************************************************/ /* WAN link driver entry points. These are called by the WAN router module. */ static int wpft1_exec (struct sdla *card, void *u_cmd, void *u_data); static int chdlc_read_version (sdla_t* card, char* str); static int chdlc_error (sdla_t *card, int err, CHDLC_MAILBOX_STRUCT *mb); /****** Public Functions ****************************************************/ /*============================================================================ * Cisco HDLC protocol initialization routine. * * This routine is called by the main WANPIPE module during setup. At this * point adapter is completely initialized and firmware is running. * o read firmware version (to make sure it's alive) * o configure adapter * o initialize protocol-specific fields of the adapter data space. * * Return: 0 o.k. * < 0 failure. */ int wpft1_init (sdla_t* card, wandev_conf_t* conf) { unsigned char port_num; int err; union { char str[80]; } u; volatile CHDLC_MAILBOX_STRUCT* mb; CHDLC_MAILBOX_STRUCT* mb1; unsigned long timeout; /* Verify configuration ID */ if (conf->config_id != WANCONFIG_CHDLC) { printk(KERN_INFO "%s: invalid configuration ID %u!\n", card->devname, conf->config_id); return -EINVAL; } /* Use primary port */ card->u.c.comm_port = 0; /* Initialize protocol-specific fields */ if(card->hw.type != SDLA_S514){ card->mbox = (void *) card->hw.dpmbase; }else{ card->mbox = (void *) card->hw.dpmbase + PRI_BASE_ADDR_MB_STRUCT; } mb = mb1 = card->mbox; if (!card->configured){ /* The board will place an 'I' in the return code to indicate that it is ready to accept commands. We expect this to be completed in less than 1 second. */ timeout = jiffies; while (mb->return_code != 'I') /* Wait 1s for board to initialize */ if (time_after(jiffies, timeout + 1*HZ)) break; if (mb->return_code != 'I') { printk(KERN_INFO "%s: Initialization not completed by adapter\n", card->devname); printk(KERN_INFO "Please contact Sangoma representative.\n"); return -EIO; } } /* Read firmware version. Note that when adapter initializes, it * clears the mailbox, so it may appear that the first command was * executed successfully when in fact it was merely erased. To work * around this, we execute the first command twice. */ if (chdlc_read_version(card, u.str)) return -EIO; printk(KERN_INFO "%s: Running FT1 Configuration firmware v%s\n", card->devname, u.str); card->isr = NULL; card->poll = NULL; card->exec = &wpft1_exec; card->wandev.update = NULL; card->wandev.new_if = NULL; card->wandev.del_if = NULL; card->wandev.state = WAN_DUALPORT; card->wandev.udp_port = conf->udp_port; card->wandev.new_if_cnt = 0; /* This is for the ports link state */ card->u.c.state = WAN_DISCONNECTED; /* reset the number of times the 'update()' proc has been called */ card->u.c.update_call_count = 0; card->wandev.ttl = 0x7F; card->wandev.interface = 0; card->wandev.clocking = 0; port_num = card->u.c.comm_port; /* Setup Port Bps */ card->wandev.bps = 0; card->wandev.mtu = MIN_LGTH_CHDLC_DATA_CFG; /* Set up the interrupt status area */ /* Read the CHDLC Configuration and obtain: * Ptr to shared memory infor struct * Use this pointer to calculate the value of card->u.c.flags ! */ mb1->buffer_length = 0; mb1->command = READ_CHDLC_CONFIGURATION; err = sdla_exec(mb1) ? mb1->return_code : CMD_TIMEOUT; if(err != COMMAND_OK) { chdlc_error(card, err, mb1); return -EIO; } if(card->hw.type == SDLA_S514){ card->u.c.flags = (void *)(card->hw.dpmbase + (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)-> ptr_shared_mem_info_struct)); }else{ card->u.c.flags = (void *)(card->hw.dpmbase + (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)-> ptr_shared_mem_info_struct % SDLA_WINDOWSIZE)); } card->wandev.state = WAN_FT1_READY; printk(KERN_INFO "%s: FT1 Config Ready !\n",card->devname); return 0; } static int wpft1_exec(sdla_t *card, void *u_cmd, void *u_data) { CHDLC_MAILBOX_STRUCT* mbox = card->mbox; int len; if (copy_from_user((void*)&mbox->command, u_cmd, sizeof(ft1_exec_cmd_t))){ return -EFAULT; } len = mbox->buffer_length; if (len) { if( copy_from_user((void*)&mbox->data, u_data, len)){ return -EFAULT; } } /* execute command */ if (!sdla_exec(mbox)){ return -EIO; } /* return result */ if( copy_to_user(u_cmd, (void*)&mbox->command, sizeof(ft1_exec_cmd_t))){ return -EFAULT; } len = mbox->buffer_length; if (len && u_data && copy_to_user(u_data, (void*)&mbox->data, len)){ return -EFAULT; } return 0; } /*============================================================================ * Read firmware code version. * Put code version as ASCII string in str. */ static int chdlc_read_version (sdla_t* card, char* str) { CHDLC_MAILBOX_STRUCT* mb = card->mbox; int len; char err; mb->buffer_length = 0; mb->command = READ_CHDLC_CODE_VERSION; err = sdla_exec(mb) ? mb->return_code : CMD_TIMEOUT; if(err != COMMAND_OK) { chdlc_error(card,err,mb); } else if (str) { /* is not null */ len = mb->buffer_length; memcpy(str, mb->data, len); str[len] = '\0'; } return (err); } /*============================================================================ * Firmware error handler. * This routine is called whenever firmware command returns non-zero * return code. * * Return zero if previous command has to be cancelled. */ static int chdlc_error (sdla_t *card, int err, CHDLC_MAILBOX_STRUCT *mb) { unsigned cmd = mb->command; switch (err) { case CMD_TIMEOUT: printk(KERN_ERR "%s: command 0x%02X timed out!\n", card->devname, cmd); break; case S514_BOTH_PORTS_SAME_CLK_MODE: if(cmd == SET_CHDLC_CONFIGURATION) { printk(KERN_INFO "%s: Configure both ports for the same clock source\n", card->devname); break; } default: printk(KERN_INFO "%s: command 0x%02X returned 0x%02X!\n", card->devname, cmd, err); } return 0; } MODULE_LICENSE("GPL");
/***************************************************************************** * sdla_chdlc.c WANPIPE(tm) Multiprotocol WAN Link Driver. Cisco HDLC module. * * Authors: <NAME> <<EMAIL>> * <NAME> * * Copyright: (c) 1995-1999 Sangoma Technologies Inc. * * 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. * ============================================================================ * Sep 30, 1999 <NAME> Fixed dynamic IP and route setup. * Sep 23, 1999 <NAME> Added SMP support, fixed tracing * Sep 13, 1999 <NAME> Split up Port 0 and 1 into separate devices. * Jun 02, 1999 <NAME> Added support for the S514 adapter. * Oct 30, 1998 <NAME> Added Support for CHDLC API (HDLC STREAMING). * Oct 28, 1998 <NAME> Added Support for Dual Port CHDLC. * Aug 07, 1998 <NAME> Initial version. *****************************************************************************/ #include <linux/module.h> #include <IMPORT_0> /* printk(), and other useful stuff */ #include <linux/stddef.h> /* offsetof(), etc. */ #include <IMPORT_1> /* return codes */ #include <linux/string.h> /* inline memset(), etc. */ #include <linux/slab.h> /* kmalloc(), kfree() */ #include <linux/wanrouter.h> /* WAN router definitions */ #include <IMPORT_2> /* WANPIPE common user API definitions */ #include <linux/if_arp.h> /* ARPHRD_* defines */ #include <IMPORT_3> /* time_after() macro */ #include <linux/inetdevice.h> #include <asm/uaccess.h> #include <IMPORT_4> /* sockaddr_in */ #include <linux/inet.h> #include <linux/if.h> #include <asm/byteorder.h> /* htons(), etc. */ #include <linux/sdlapci.h> #include <asm/io.h> #include <linux/sdla_chdlc.h> /* CHDLC firmware API definitions */ /****** Defines & Macros ****************************************************/ /* reasons for enabling the timer interrupt on the adapter */ #define TMR_INT_ENABLED_UDP 0x0001 #define TMR_INT_ENABLED_UPDATE 0x0002 #define CHDLC_DFLT_DATA_LEN 1500 /* default MTU */ #define CHDLC_HDR_LEN 1 #define IFF_POINTTOPOINT 0x10 #define WANPIPE 0x00 #define API 0x01 #define CHDLC_API 0x01 #define FUNC_0(x) (x == 0 ? "PRIMARY" : "SECONDARY" ) /******Data Structures*****************************************************/ /* This structure is placed in the private data area of the device structure. * The card structure used to occupy the private area but now the following * structure will incorporate the card structure along with CHDLC specific data */ typedef struct CLASS_0 { struct net_device *slave; CLASS_1 *card; int VAR_0; /* For enabling Tracing */ unsigned long VAR_1; /* Used for Tracing */ unsigned long VAR_2; unsigned long VAR_3; unsigned long base_addr_trace_buffer; unsigned long end_addr_trace_buffer; unsigned short number_trace_elements; unsigned available_buffer_space; unsigned long router_start_time; unsigned char route_status; unsigned char route_removed; unsigned long tick_counter; /* For 5s timeout counter */ unsigned long VAR_4; u32 VAR_5; /* IP addressing */ u32 IP_netmask; unsigned char VAR_6; /* Mulitcast support on/off */ unsigned short udp_pkt_lgth; /* udp packet processing */ char udp_pkt_src; char udp_pkt_data[MAX_LGTH_UDP_MGNT_PKT]; unsigned short timer_int_enabled; char update_comms_stats; /* updating comms stats */ //FIXME: add driver stats as per frame relay! } chdlc_private_area_t; /* Route Status options */ #define NO_ROUTE 0x00 #define ADD_ROUTE 0x01 #define ROUTE_ADDED 0x02 #define REMOVE_ROUTE 0x03 /****** Function Prototypes *************************************************/ /* WAN link driver entry points. These are called by the WAN router module. */ static int FUNC_1 (struct sdla *card, void *u_cmd, void *VAR_8); static int chdlc_read_version (CLASS_1* card, char* str); static int chdlc_error (CLASS_1 *card, int err, CHDLC_MAILBOX_STRUCT *VAR_9); /****** Public Functions ****************************************************/ /*============================================================================ * Cisco HDLC protocol initialization routine. * * This routine is called by the main WANPIPE module during setup. At this * point adapter is completely initialized and firmware is running. * o read firmware version (to make sure it's alive) * o configure adapter * o initialize protocol-specific fields of the adapter data space. * * Return: 0 o.k. * < 0 failure. */ int FUNC_2 (CLASS_1* card, CLASS_2* conf) { unsigned char VAR_10; int err; union { char str[80]; } VAR_11; volatile CHDLC_MAILBOX_STRUCT* VAR_9; CHDLC_MAILBOX_STRUCT* mb1; unsigned long VAR_12; /* Verify configuration ID */ if (conf->config_id != WANCONFIG_CHDLC) { FUNC_3(VAR_13 "%s: invalid configuration ID %u!\n", card->devname, conf->config_id); return -VAR_14; } /* Use primary port */ card->VAR_11.c.VAR_15 = 0; /* Initialize protocol-specific fields */ if(card->VAR_16.VAR_17 != VAR_18){ card->VAR_19 = (void *) card->VAR_16.VAR_20; }else{ card->VAR_19 = (void *) card->VAR_16.VAR_20 + PRI_BASE_ADDR_MB_STRUCT; } VAR_9 = mb1 = card->VAR_19; if (!card->VAR_21){ /* The board will place an 'I' in the return code to indicate that it is ready to accept commands. We expect this to be completed in less than 1 second. */ VAR_12 = jiffies; while (VAR_9->return_code != 'I') /* Wait 1s for board to initialize */ if (time_after(jiffies, VAR_12 + 1*VAR_22)) break; if (VAR_9->return_code != 'I') { FUNC_3(VAR_13 "%s: Initialization not completed by adapter\n", card->devname); FUNC_3(VAR_13 "Please contact Sangoma representative.\n"); return -EIO; } } /* Read firmware version. Note that when adapter initializes, it * clears the mailbox, so it may appear that the first command was * executed successfully when in fact it was merely erased. To work * around this, we execute the first command twice. */ if (chdlc_read_version(card, VAR_11.str)) return -EIO; FUNC_3(VAR_13 "%s: Running FT1 Configuration firmware v%s\n", card->devname, VAR_11.str); card->isr = NULL; card->poll = NULL; card->VAR_23 = &VAR_7; card->wandev.update = NULL; card->wandev.VAR_24 = NULL; card->wandev.del_if = NULL; card->wandev.VAR_25 = WAN_DUALPORT; card->wandev.VAR_26 = conf->VAR_26; card->wandev.new_if_cnt = 0; /* This is for the ports link state */ card->VAR_11.c.VAR_25 = VAR_27; /* reset the number of times the 'update()' proc has been called */ card->VAR_11.c.VAR_28 = 0; card->wandev.ttl = 0x7F; card->wandev.interface = 0; card->wandev.clocking = 0; VAR_10 = card->VAR_11.c.VAR_15; /* Setup Port Bps */ card->wandev.VAR_29 = 0; card->wandev.VAR_30 = MIN_LGTH_CHDLC_DATA_CFG; /* Set up the interrupt status area */ /* Read the CHDLC Configuration and obtain: * Ptr to shared memory infor struct * Use this pointer to calculate the value of card->u.c.flags ! */ mb1->buffer_length = 0; mb1->command = VAR_31; err = sdla_exec(mb1) ? mb1->return_code : CMD_TIMEOUT; if(err != COMMAND_OK) { chdlc_error(card, err, mb1); return -EIO; } if(card->VAR_16.VAR_17 == VAR_18){ card->VAR_11.c.VAR_32 = (void *)(card->VAR_16.VAR_20 + (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)-> ptr_shared_mem_info_struct)); }else{ card->VAR_11.c.VAR_32 = (void *)(card->VAR_16.VAR_20 + (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)-> ptr_shared_mem_info_struct % SDLA_WINDOWSIZE)); } card->wandev.VAR_25 = WAN_FT1_READY; FUNC_3(VAR_13 "%s: FT1 Config Ready !\n",card->devname); return 0; } static int FUNC_1(CLASS_1 *card, void *u_cmd, void *VAR_8) { CHDLC_MAILBOX_STRUCT* VAR_19 = card->VAR_19; int VAR_33; if (copy_from_user((void*)&VAR_19->command, u_cmd, sizeof(ft1_exec_cmd_t))){ return -VAR_34; } VAR_33 = VAR_19->buffer_length; if (VAR_33) { if( copy_from_user((void*)&VAR_19->data, VAR_8, VAR_33)){ return -VAR_34; } } /* execute command */ if (!sdla_exec(VAR_19)){ return -EIO; } /* return result */ if( FUNC_4(u_cmd, (void*)&VAR_19->command, sizeof(ft1_exec_cmd_t))){ return -VAR_34; } VAR_33 = VAR_19->buffer_length; if (VAR_33 && VAR_8 && FUNC_4(VAR_8, (void*)&VAR_19->data, VAR_33)){ return -VAR_34; } return 0; } /*============================================================================ * Read firmware code version. * Put code version as ASCII string in str. */ static int chdlc_read_version (CLASS_1* card, char* str) { CHDLC_MAILBOX_STRUCT* VAR_9 = card->VAR_19; int VAR_33; char err; VAR_9->buffer_length = 0; VAR_9->command = READ_CHDLC_CODE_VERSION; err = sdla_exec(VAR_9) ? VAR_9->return_code : CMD_TIMEOUT; if(err != COMMAND_OK) { chdlc_error(card,err,VAR_9); } else if (str) { /* is not null */ VAR_33 = VAR_9->buffer_length; FUNC_5(str, VAR_9->data, VAR_33); str[VAR_33] = '\0'; } return (err); } /*============================================================================ * Firmware error handler. * This routine is called whenever firmware command returns non-zero * return code. * * Return zero if previous command has to be cancelled. */ static int chdlc_error (CLASS_1 *card, int err, CHDLC_MAILBOX_STRUCT *VAR_9) { unsigned cmd = VAR_9->command; switch (err) { case CMD_TIMEOUT: FUNC_3(VAR_35 "%s: command 0x%02X timed out!\n", card->devname, cmd); break; case VAR_36: if(cmd == SET_CHDLC_CONFIGURATION) { FUNC_3(VAR_13 "%s: Configure both ports for the same clock source\n", card->devname); break; } default: FUNC_3(VAR_13 "%s: command 0x%02X returned 0x%02X!\n", card->devname, cmd, err); } return 0; } MODULE_LICENSE("GPL");
0.400683
{'IMPORT_0': 'linux/kernel.h', 'IMPORT_1': 'linux/errno.h', 'IMPORT_2': 'linux/wanpipe.h', 'IMPORT_3': 'linux/jiffies.h', 'IMPORT_4': 'linux/in.h', 'FUNC_0': 'PORT', 'CLASS_0': 'chdlc_private_area', 'CLASS_1': 'sdla_t', 'VAR_0': 'TracingEnabled', 'VAR_1': 'curr_trace_addr', 'VAR_2': 'start_trace_addr', 'VAR_3': 'end_trace_addr', 'VAR_4': 'router_up_time', 'VAR_5': 'IP_address', 'VAR_6': 'mc', 'FUNC_1': 'wpft1_exec', 'VAR_7': 'wpft1_exec', 'VAR_8': 'u_data', 'VAR_9': 'mb', 'FUNC_2': 'wpft1_init', 'CLASS_2': 'wandev_conf_t', 'VAR_10': 'port_num', 'VAR_11': 'u', 'VAR_12': 'timeout', 'FUNC_3': 'printk', 'VAR_13': 'KERN_INFO', 'VAR_14': 'EINVAL', 'VAR_15': 'comm_port', 'VAR_16': 'hw', 'VAR_17': 'type', 'VAR_18': 'SDLA_S514', 'VAR_19': 'mbox', 'VAR_20': 'dpmbase', 'VAR_21': 'configured', 'VAR_22': 'HZ', 'VAR_23': 'exec', 'VAR_24': 'new_if', 'VAR_25': 'state', 'VAR_26': 'udp_port', 'VAR_27': 'WAN_DISCONNECTED', 'VAR_28': 'update_call_count', 'VAR_29': 'bps', 'VAR_30': 'mtu', 'VAR_31': 'READ_CHDLC_CONFIGURATION', 'VAR_32': 'flags', 'VAR_33': 'len', 'VAR_34': 'EFAULT', 'FUNC_4': 'copy_to_user', 'FUNC_5': 'memcpy', 'VAR_35': 'KERN_ERR', 'VAR_36': 'S514_BOTH_PORTS_SAME_CLK_MODE'}
#include <stdio.h> #include <stdlib.h> int cmp(int n) { return (n*(n-1))/2; } int main() { int N,M; scanf("%d%d",&N,&M); int num=0; if(N<=1 && M<=1) { num=0; } else if(N<=1 && M>1) { num=cmp(M); } else if(M<=1 && N>1) { num=cmp(N); } else { num=cmp(M)+cmp(N); } printf("%d",num); return 0; }
#include <stdio.h> #include <IMPORT_0> int cmp(int VAR_0) { return (VAR_0*(VAR_0-1))/2; } int main() { int N,M; FUNC_0("%d%d",&N,&M); int VAR_1=0; if(N<=1 && M<=1) { VAR_1=0; } else if(N<=1 && M>1) { VAR_1=cmp(M); } else if(M<=1 && N>1) { VAR_1=cmp(N); } else { VAR_1=cmp(M)+cmp(N); } FUNC_1("%d",VAR_1); return 0; }
0.540673
{'IMPORT_0': 'stdlib.h', 'VAR_0': 'n', 'FUNC_0': 'scanf', 'VAR_1': 'num', 'FUNC_1': 'printf'}
// // SDUserActivity.h // SDUserActivity-Example // // Created by <NAME> on 11/5/14. // Copyright (c) 2014 Set Direction. All rights reserved. // #import <Foundation/Foundation.h> // These constants define keys for well known cases. They should be passwed along with any other keys in the `configurationValues` dictionary. /* A key for the webpage that represents this activity. Value must be of type `NSURL`. */ extern NSString* const kSDUserActivityWebpageURLKey; /* A key for the custom URL that represents this activity to the receiving app. Value must be of type `NSURL`. */ extern NSString* const kSDUserActivityCustomURLKey; /* A key for the title that will be set up for this activity. This can directly be applied to the `SDUserActivity` itself but is provided for convenience. Value must be of type `NSString`. */ extern NSString* const kSDUserActivityTitleKey; @interface SDUserActivity : NSUserActivity /** This method will set up a user activity using the parameters passed and also make it current so that any devices nearby will see the handoff interface to receive the activity. @param activityType The activity type. This is the initilization parameter for the superclass. It must be defined in the `Info.plist` file for the app. @param configurationValues All values to be passed with the activity's user info. This will include the keys for well known cases defined above. @return The user activity object. */ + (SDUserActivity*)userActivityForType:(NSString*)activityType withConfigurationValues:(NSDictionary*)configurationValues; @end
// // SDUserActivity.h // SDUserActivity-Example // // Created by <NAME> on 11/5/14. // Copyright (c) 2014 Set Direction. All rights reserved. // #import <Foundation/Foundation.h> // These constants define keys for well known cases. They should be passwed along with any other keys in the `configurationValues` dictionary. /* A key for the webpage that represents this activity. Value must be of type `NSURL`. */ extern NSString* const kSDUserActivityWebpageURLKey; /* A key for the custom URL that represents this activity to the receiving app. Value must be of type `NSURL`. */ extern NSString* const VAR_0; /* A key for the title that will be set up for this activity. This can directly be applied to the `SDUserActivity` itself but is provided for convenience. Value must be of type `NSString`. */ extern NSString* const kSDUserActivityTitleKey; @interface SDUserActivity : VAR_1 /** This method will set up a user activity using the parameters passed and also make it current so that any devices nearby will see the handoff interface to receive the activity. @param activityType The activity type. This is the initilization parameter for the superclass. It must be defined in the `Info.plist` file for the app. @param configurationValues All values to be passed with the activity's user info. This will include the keys for well known cases defined above. @return The user activity object. */ + (SDUserActivity*)userActivityForType:(NSString*)VAR_2 withConfigurationValues:(VAR_3*)configurationValues; @end
0.421999
{'VAR_0': 'kSDUserActivityCustomURLKey', 'VAR_1': 'NSUserActivity', 'VAR_2': 'activityType', 'VAR_3': 'NSDictionary'}
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef PREFERENCESDIALOG_H #define PREFERENCESDIALOG_H #include <QtWidgets/QDialog> #include "ui_preferencesdialog.h" QT_BEGIN_NAMESPACE class FontPanel; class HelpEngineWrapper; class RegisteredDocsModel; class QFileSystemWatcher; class QSortFilterProxyModel; class PreferencesDialog : public QDialog { Q_OBJECT public: PreferencesDialog(QWidget *parent = 0); ~PreferencesDialog(); void showDialog(); private slots: void updateAttributes(QListWidgetItem *item); void updateFilterMap(); void addFilter(); void removeFilter(); void addDocumentationLocal(); void removeDocumentation(); void applyChanges(); void appFontSettingToggled(bool on); void appFontSettingChanged(int index); void browserFontSettingToggled(bool on); void browserFontSettingChanged(int index); void setBlankPage(); void setCurrentPage(); void setDefaultPage(); signals: void updateBrowserFont(); void updateApplicationFont(); void updateUserInterface(); private: void updateFilterPage(); void updateFontSettingsPage(); void updateOptionsPage(); QList<int> currentRegisteredDocsSelection() const; Ui::PreferencesDialogClass m_ui; QMap<QString, QStringList> m_filterMapBackup; QMap<QString, QStringList> m_filterMap; QStringList m_removedFilters; QStringList m_docsBackup; RegisteredDocsModel *m_registeredDocsModel; QSortFilterProxyModel *m_registereredDocsFilterModel; QStringList m_regDocs; QStringList m_unregDocs; FontPanel *m_appFontPanel; FontPanel *m_browserFontPanel; bool m_appFontChanged; bool m_browserFontChanged; HelpEngineWrapper &helpEngine; const bool m_hideFiltersTab; const bool m_hideDocsTab; bool m_showTabs; }; QT_END_NAMESPACE #endif // SETTINGSDIALOG_H
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef VAR_0 #define VAR_0 #include <QtWidgets/QDialog> #include "IMPORT_0" CLASS_0 VAR_1 VAR_2; CLASS_1 VAR_3; CLASS_1 VAR_4; CLASS_1 VAR_5; CLASS_1 VAR_6; CLASS_1 VAR_7 : VAR_8 VAR_9 { CLASS_5 VAR_8: FUNC_0(CLASS_6 *VAR_10 = 0); ~FUNC_0(); void FUNC_1(); private VAR_11: void updateAttributes(CLASS_7 *item); void FUNC_2(); void addFilter(); void removeFilter(); void FUNC_3(); void removeDocumentation(); void FUNC_4(); void FUNC_5(bool VAR_12); void FUNC_6(int index); void browserFontSettingToggled(bool VAR_12); void browserFontSettingChanged(int index); void setBlankPage(); void FUNC_7(); void FUNC_8(); signals: VAR_13 FUNC_9(); void FUNC_10(); void updateUserInterface(); private: VAR_13 updateFilterPage(); void FUNC_11(); void FUNC_12(); VAR_14<VAR_15> currentRegisteredDocsSelection() const; Ui::VAR_16 VAR_17; QMap<VAR_18, QStringList> VAR_19; QMap<VAR_18, QStringList> VAR_20; QStringList m_removedFilters; QStringList VAR_21; CLASS_3 *m_registeredDocsModel; CLASS_4 *m_registereredDocsFilterModel; QStringList VAR_22; QStringList VAR_23; CLASS_2 *VAR_24; CLASS_2 *m_browserFontPanel; bool VAR_25; bool VAR_26; VAR_3 &VAR_27; const bool VAR_28; const bool m_hideDocsTab; bool VAR_29; }; QT_END_NAMESPACE #endif // SETTINGSDIALOG_H
0.729646
{'VAR_0': 'PREFERENCESDIALOG_H', 'IMPORT_0': 'ui_preferencesdialog.h', 'CLASS_0': 'QT_BEGIN_NAMESPACE', 'VAR_1': 'class', 'CLASS_1': 'class', 'VAR_2': 'FontPanel', 'CLASS_2': 'FontPanel', 'VAR_3': 'HelpEngineWrapper', 'VAR_4': 'RegisteredDocsModel', 'CLASS_3': 'RegisteredDocsModel', 'VAR_5': 'QFileSystemWatcher', 'VAR_6': 'QSortFilterProxyModel', 'CLASS_4': 'QSortFilterProxyModel', 'VAR_7': 'PreferencesDialog', 'FUNC_0': 'PreferencesDialog', 'VAR_8': 'public', 'VAR_9': 'QDialog', 'CLASS_5': 'Q_OBJECT', 'CLASS_6': 'QWidget', 'VAR_10': 'parent', 'FUNC_1': 'showDialog', 'VAR_11': 'slots', 'CLASS_7': 'QListWidgetItem', 'FUNC_2': 'updateFilterMap', 'FUNC_3': 'addDocumentationLocal', 'FUNC_4': 'applyChanges', 'FUNC_5': 'appFontSettingToggled', 'VAR_12': 'on', 'FUNC_6': 'appFontSettingChanged', 'FUNC_7': 'setCurrentPage', 'FUNC_8': 'setDefaultPage', 'VAR_13': 'void', 'FUNC_9': 'updateBrowserFont', 'FUNC_10': 'updateApplicationFont', 'FUNC_11': 'updateFontSettingsPage', 'FUNC_12': 'updateOptionsPage', 'VAR_14': 'QList', 'VAR_15': 'int', 'VAR_16': 'PreferencesDialogClass', 'VAR_17': 'm_ui', 'VAR_18': 'QString', 'VAR_19': 'm_filterMapBackup', 'VAR_20': 'm_filterMap', 'VAR_21': 'm_docsBackup', 'VAR_22': 'm_regDocs', 'VAR_23': 'm_unregDocs', 'VAR_24': 'm_appFontPanel', 'VAR_25': 'm_appFontChanged', 'VAR_26': 'm_browserFontChanged', 'VAR_27': 'helpEngine', 'VAR_28': 'm_hideFiltersTab', 'VAR_29': 'm_showTabs'}
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> #include "binary.h" #include "common/error.h" int binary_parse(const char *path, u16 offset, u8 *buff, size_t bufflen) { int count = offset, ret; int fd = open(path, O_RDONLY); if (fd < 0) { WARN("Could not open file %s", path); return -1; } DEBUG("Starting reading file %s", path); while (count < bufflen) { ret = read(fd, buff + count, (count + 256 >= bufflen) ? bufflen - count : 256); count += ret; DEBUG("bufflen %u count %u offset %u", (unsigned int)(bufflen), (unsigned int)count, offset); if (ret < 0) { WARN("Error while reading file %s", path); return -1; } else if (ret == 0) { DEBUG("Finished reading file %s", path); break; } #ifndef NDEBUG DEBUG("Read %d bytes:", ret); for (int i = 0; i < ret; ++i) { if (!(i % 16)) { fprintf(stderr, "\n"); fprintf(stderr, "0x%04x", count - ret + i); fprintf(stderr, "\t"); } fprintf(stderr, "0x%02x ", *(buff + count - ret + i)); } fprintf(stderr, "\n\n"); #endif } INFO("Read %u bytes from binary file %s", count - offset, path); return count - offset; }
#include <IMPORT_0> #include <stdlib.h> #include <IMPORT_1> #include <unistd.h> #include "binary.h" #include "common/error.h" int binary_parse(const char *path, u16 offset, u8 *buff, size_t VAR_0) { int VAR_1 = offset, ret; int VAR_2 = open(path, O_RDONLY); if (VAR_2 < 0) { WARN("Could not open file %s", path); return -1; } DEBUG("Starting reading file %s", path); while (VAR_1 < VAR_0) { ret = FUNC_0(VAR_2, buff + VAR_1, (VAR_1 + 256 >= VAR_0) ? VAR_0 - VAR_1 : 256); VAR_1 += ret; DEBUG("bufflen %u count %u offset %u", (unsigned int)(VAR_0), (unsigned int)VAR_1, offset); if (ret < 0) { WARN("Error while reading file %s", path); return -1; } else if (ret == 0) { DEBUG("Finished reading file %s", path); break; } #ifndef VAR_3 DEBUG("Read %d bytes:", ret); for (int i = 0; i < ret; ++i) { if (!(i % 16)) { fprintf(stderr, "\n"); fprintf(stderr, "0x%04x", VAR_1 - ret + i); fprintf(stderr, "\t"); } fprintf(stderr, "0x%02x ", *(buff + VAR_1 - ret + i)); } fprintf(stderr, "\n\n"); #endif } INFO("Read %u bytes from binary file %s", VAR_1 - offset, path); return VAR_1 - offset; }
0.23781
{'IMPORT_0': 'stdio.h', 'IMPORT_1': 'fcntl.h', 'VAR_0': 'bufflen', 'VAR_1': 'count', 'VAR_2': 'fd', 'FUNC_0': 'read', 'VAR_3': 'NDEBUG'}
/* * Copyright (c) 2019 <NAME> * * 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. */ /** \mainpage C library for stack, queue, and ring buffers The library provides some functions and structures for working with the most popular buffers, such as the stack, queue, and ring buffer. \par Stack The classic self referential structure Stack buffer includes a data pointer and the "next" pointer. Functions: <pre> \ref sqr_s_push - Adds an element with a new value to the stack. \ref sqr_s_pop - Get the value and delete element from the stack. </pre> \par Queue The classic self referential structure Queue buffer includes the data, "prev" and the "next" pointer. Functions: <pre> \ref sqr_q_push_back - Adds the element with a new value to the queue. \ref sqr_q_pop_front - Get the value and delete element from the queue. </pre> \par Ring buffer The dynamically expandable unordered ring buffer with adjustable size. Functions: <pre> \ref sqr_rdyn_create - Creates a new ring buffer instance. \ref sqr_rdyn_destroy - Clears the ring buffer, delete all elements and frees memory. \ref sqr_rdyn_set - Adds a new element to the ring buffer. Expands the buffer until the number of elements reaches the maximum size. \ref sqr_rdyn_get - Get the value and delete the element from the ring buffer. \ref sqr_rdyn_peek - Get the value and leave the element in the ring buffer. \ref sqr_rdyn_clear - Clears the ring buffer and delete all elements. \ref sqr_rdyn_get_size - Return a maximum size of the buffer. \ref sqr_rdyn_get_real_size - Return a current size of the buffer. </pre> \author <NAME> */ typedef void *STACK_handle; typedef void *QUEUE_handle; typedef void *RING_handle; typedef void *DATA_handle; /** * The stack structure. Includes one data pointer and pointer to the next element. */ typedef struct _STACK { /** Data pointer. */ DATA_handle data; /** Pointer to the next element. */ struct _STACK *next; } STACK; /** * The queue structure. Includes one data pointer and pointer to the next element. */ typedef struct _QUEUE { /** Data pointer. */ DATA_handle data; /** Pointer to the next element. */ struct _QUEUE *next; } QUEUE; /** * A doubly linked list structure used to store data in a ring buffer. * Includes one data pointer and pointers to the previous and next elements. */ typedef struct _DATA_Buffer { /** Data pointer. */ DATA_handle data; /** Pointer to the previous element. */ struct _DATA_Buffer *prev; /** Pointer to the next element. */ struct _DATA_Buffer *next; } DATA_Buffer; /** * The ring buffer structure. * Includes pointers to the head and tail of the buffer and sizes of buffer. */ typedef struct { /** Head pointer. */ DATA_Buffer *head; /** Tail pointer. */ DATA_Buffer *tail; /** The maximum buffer size. */ int size; /** Real (current) buffer size. */ int real_size; } RING_Buffer; #ifndef SQRLIB_H #define SQRLIB_H /** \defgroup stack Stack functions These functions provide methods for working with a stack. @{ */ /** Push an element to the stack. \param[in] val Pointer address to data pushed onto the stack. \param[in] _buf Pointer to the stack. */ void sqr_s_push(DATA_handle val, STACK_handle _buf); /** Pop an element from the stack. \param[in] _buf Pointer address to the stack. \return The data pointer. */ DATA_handle sqr_s_pop(STACK_handle _buf); /** @} end of stack */ /** \defgroup queue Queue functions These functions provide methods for working with a queue. @{ */ /** Pushes a new element to the end of queue \param[in] val Pointer to data pushed onto the queue. \param[in] _buf Pointer to the queue. \param[in] _head Pointer to the head of the queue. */ void sqr_q_push_back(DATA_handle val, QUEUE_handle _buf, QUEUE_handle _head); /** Pop the element from the top of the queue \param[in] _buf Pointer address to the queue. \return The data pointer. */ DATA_handle sqr_q_pop_front(QUEUE_handle _buf); /** @} end of queue */ /** \defgroup ring Ring buffer functions These functions provide methods for working with a ring buffer. @{ */ /** Create a new ring buffer \param[in] buf_size Number of the buffer elements. \return Pointer address to the ring buffer. */ RING_handle sqr_rdyn_create(const int buf_size); /** Destroy the ring buffer \param[in] _buf The pointer address to the ring buffer. Returns NULL if the ring buffer was successfully destroyed. */ void sqr_rdyn_destroy(RING_handle _buf); /** Adds new data to the ring buffer \param[in] _buf Pointer to the rinng buffer. \param[in] value The new value of data. \return 1 if adding is successful and 0 is not. */ int sqr_rdyn_set(RING_handle _buf, DATA_handle value); /** Get the value from the ring buffer \param[in] _buf Pointer to the rinng buffer. \return The data pointer. */ DATA_handle sqr_rdyn_get(RING_handle _buf); /** Get the value from the ring buffer \param[in] _buf Pointer to the rinng buffer. \return The data pointer. */ DATA_handle sqr_rdyn_peek(RING_handle _buf); /** Clear the ring buffer \param[in] _buf Pointer to the rinng buffer. */ void sqr_rdyn_clear(RING_handle _buf); /** Get the size of the buffer \param[in] _buf Pointer to the rinng buffer. \return The buffer size. */ int sqr_rdyn_get_size(RING_handle _buf); /** Get the current size of the buffer \param[in] _buf Pointer to the rinng buffer. \return The current buffer size. */ int sqr_rdyn_get_real_size(RING_handle _buf); /** @} end of ring */ #endif
/* * Copyright (c) 2019 <NAME> * * 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. */ /** \mainpage C library for stack, queue, and ring buffers The library provides some functions and structures for working with the most popular buffers, such as the stack, queue, and ring buffer. \par Stack The classic self referential structure Stack buffer includes a data pointer and the "next" pointer. Functions: <pre> \ref sqr_s_push - Adds an element with a new value to the stack. \ref sqr_s_pop - Get the value and delete element from the stack. </pre> \par Queue The classic self referential structure Queue buffer includes the data, "prev" and the "next" pointer. Functions: <pre> \ref sqr_q_push_back - Adds the element with a new value to the queue. \ref sqr_q_pop_front - Get the value and delete element from the queue. </pre> \par Ring buffer The dynamically expandable unordered ring buffer with adjustable size. Functions: <pre> \ref sqr_rdyn_create - Creates a new ring buffer instance. \ref sqr_rdyn_destroy - Clears the ring buffer, delete all elements and frees memory. \ref sqr_rdyn_set - Adds a new element to the ring buffer. Expands the buffer until the number of elements reaches the maximum size. \ref sqr_rdyn_get - Get the value and delete the element from the ring buffer. \ref sqr_rdyn_peek - Get the value and leave the element in the ring buffer. \ref sqr_rdyn_clear - Clears the ring buffer and delete all elements. \ref sqr_rdyn_get_size - Return a maximum size of the buffer. \ref sqr_rdyn_get_real_size - Return a current size of the buffer. </pre> \author <NAME> */ typedef void *STACK_handle; typedef void *QUEUE_handle; typedef void *RING_handle; typedef void *DATA_handle; /** * The stack structure. Includes one data pointer and pointer to the next element. */ typedef struct _STACK { /** Data pointer. */ DATA_handle data; /** Pointer to the next element. */ struct _STACK *next; } STACK; /** * The queue structure. Includes one data pointer and pointer to the next element. */ typedef struct _QUEUE { /** Data pointer. */ DATA_handle data; /** Pointer to the next element. */ struct _QUEUE *next; } QUEUE; /** * A doubly linked list structure used to store data in a ring buffer. * Includes one data pointer and pointers to the previous and next elements. */ typedef struct _DATA_Buffer { /** Data pointer. */ DATA_handle data; /** Pointer to the previous element. */ struct _DATA_Buffer *prev; /** Pointer to the next element. */ struct _DATA_Buffer *next; } ID_0; /** * The ring buffer structure. * Includes pointers to the head and tail of the buffer and sizes of buffer. */ typedef struct { /** Head pointer. */ CLASS_0 *VAR_0; /** Tail pointer. */ CLASS_0 *tail; /** The maximum buffer size. */ int size; /** Real (current) buffer size. */ int real_size; } RING_Buffer; #ifndef SQRLIB_H #define SQRLIB_H /** \defgroup stack Stack functions These functions provide methods for working with a stack. @{ */ /** Push an element to the stack. \param[in] val Pointer address to data pushed onto the stack. \param[in] _buf Pointer to the stack. */ void sqr_s_push(DATA_handle val, STACK_handle _buf); /** Pop an element from the stack. \param[in] _buf Pointer address to the stack. \return The data pointer. */ DATA_handle sqr_s_pop(STACK_handle _buf); /** @} end of stack */ /** \defgroup queue Queue functions These functions provide methods for working with a queue. @{ */ /** Pushes a new element to the end of queue \param[in] val Pointer to data pushed onto the queue. \param[in] _buf Pointer to the queue. \param[in] _head Pointer to the head of the queue. */ void sqr_q_push_back(DATA_handle val, QUEUE_handle _buf, QUEUE_handle _head); /** Pop the element from the top of the queue \param[in] _buf Pointer address to the queue. \return The data pointer. */ DATA_handle sqr_q_pop_front(QUEUE_handle _buf); /** @} end of queue */ /** \defgroup ring Ring buffer functions These functions provide methods for working with a ring buffer. @{ */ /** Create a new ring buffer \param[in] buf_size Number of the buffer elements. \return Pointer address to the ring buffer. */ RING_handle sqr_rdyn_create(const int VAR_1); /** Destroy the ring buffer \param[in] _buf The pointer address to the ring buffer. Returns NULL if the ring buffer was successfully destroyed. */ void sqr_rdyn_destroy(RING_handle _buf); /** Adds new data to the ring buffer \param[in] _buf Pointer to the rinng buffer. \param[in] value The new value of data. \return 1 if adding is successful and 0 is not. */ int sqr_rdyn_set(RING_handle _buf, DATA_handle value); /** Get the value from the ring buffer \param[in] _buf Pointer to the rinng buffer. \return The data pointer. */ DATA_handle sqr_rdyn_get(RING_handle _buf); /** Get the value from the ring buffer \param[in] _buf Pointer to the rinng buffer. \return The data pointer. */ DATA_handle sqr_rdyn_peek(RING_handle _buf); /** Clear the ring buffer \param[in] _buf Pointer to the rinng buffer. */ void FUNC_0(RING_handle _buf); /** Get the size of the buffer \param[in] _buf Pointer to the rinng buffer. \return The buffer size. */ int sqr_rdyn_get_size(RING_handle _buf); /** Get the current size of the buffer \param[in] _buf Pointer to the rinng buffer. \return The current buffer size. */ int sqr_rdyn_get_real_size(RING_handle _buf); /** @} end of ring */ #endif
0.122619
{'ID_0': 'DATA_Buffer', 'CLASS_0': 'DATA_Buffer', 'VAR_0': 'head', 'VAR_1': 'buf_size', 'FUNC_0': 'sqr_rdyn_clear'}
#ifndef __ARCH_ARM_SRC_STM32L4_CHIP_STM32L4_COMP_H #define __ARCH_ARM_SRC_STM32L4_CHIP_STM32L4_COMP_H /**************************************************************************************************** * Pre-processor Definitions ****************************************************************************************************/ /* Register Offsets *********************************************************************************/ #define STM32L4_COMP_CSR_OFFSET(n) (((n)-1) << 2) #define STM32L4_COMP1_CSR_OFFSET 0x0000 /* Comparator 1 control and status register */ #define STM32L4_COMP2_CSR_OFFSET 0x0004 /* Comparator 2 control and status register */ /* Register Addresses *******************************************************************************/ #define STM32L4_COMP_CSR(n) (STM32L4_COMP_BASE+STM32L4_COMP_CSR_OFFSET(n)) #define STM32L4_COMP1_CSR (STM32L4_COMP_BASE+STM32L4_COMP1_CSR_OFFSET) #define STM32L4_COMP2_CSR (STM32L4_COMP_BASE+STM32L4_COMP2_CSR_OFFSET) /* Register Bitfield Definitions ********************************************************************/ #define COMP_CSR_EN (1 << 0) /* Bit 0: Comparator enable bit */ /* Bit 1: Reserved */ #define COMP_CSR_PWRMODE_SHIFT (2) /* Bits 2-3: Power Mode */ #define COMP_CSR_PWRMODE_MASK (3 << COMP_CSR_PWRMODE_SHIFT) # define COMP_CSR_PWRMODE_HIGH (0 << COMP_CSR_PWRMODE_SHIFT) /* High speed */ # define COMP_CSR_PWRMODE_MEDIUM (1 << COMP_CSR_PWRMODE_SHIFT) /* Medium speed */ # define COMP_CSR_PWRMODE_LOW (3 << COMP_CSR_PWRMODE_SHIFT) /* Ultra low power */ #define COMP_CSR_INMSEL_SHIFT (4) /* Bits 4-6: Input minus selection bits */ #define COMP_CSR_INMSEL_MASK (7 << COMP_CSR_INMSEL_SHIFT) # define COMP_CSR_INMSEL_25PCT (0 << COMP_CSR_INMSEL_SHIFT) /* 1/4 VREFINT */ # define COMP_CSR_INMSEL_50PCT (1 << COMP_CSR_INMSEL_SHIFT) /* 1/2 VREFINT */ # define COMP_CSR_INMSEL_75PCT (2 << COMP_CSR_INMSEL_SHIFT) /* 3/4 VREFINT */ # define COMP_CSR_INMSEL_VREF (3 << COMP_CSR_INMSEL_SHIFT) /* VREFINT */ # define COMP_CSR_INMSEL_DAC1 (4 << COMP_CSR_INMSEL_SHIFT) /* DAC Channel1 */ # define COMP_CSR_INMSEL_DAC2 (5 << COMP_CSR_INMSEL_SHIFT) /* DAC Channel2 */ # define COMP_CSR_INMSEL_PIN1 (6 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 1: COMP1=PB1; COMP2=PB3 */ #if defined(CONFIG_STM32L4_STM32L4X3) # define COMP_CSR_INMSEL_INMESEL (7 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 2: Selected by INMESEL */ #else # define COMP_CSR_INMSEL_PIN2 (7 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 2: COMP1=PC4; COMP2=PB7 */ #endif #define COMP_CSR_INPSEL_SHIFT (7) /* Bits 7-8: Input plus selection bits */ #define COMP_CSR_INPSEL_MASK (3 << COMP_CSR_INPSEL_SHIFT) # define COMP_CSR_INPSEL_PIN1 (0 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 1: COMP1=PC5; COMP2=PB4 */ # define COMP_CSR_INPSEL_PIN2 (1 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 2: COMP1=PB2; COMP2=PB6 */ #if defined(CONFIG_STM32L4_STM32L4X3) #define COMP_CSR_INPSEL_PIN3 (2 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 3: COMP1=PA1; COMP2=PA3 */ #endif #define COMP2_CSR_WINMODE (1 << 9) /* Bit 9: Windows mode selection bit (COMP2 only) */ # define COMP2_CSR_WINMODE_NOCONN (0) /* Comparator 2 input not connected to Comparator 1 */ # define COMP2_CSR_WINMODE_CONN COMP2_CSR_WINMODE /* Comparator 2 input connected to Comparator 1 */ #define COMP_CSR_POLARITY_MASK (1 << 15) /* Bit 15: Polarity selection bit */ # define COMP_CSR_POLARITY_NORMAL (0) # define COMP_CSR_POLARITY_INVERT COMP_CSR_POLARITY_MASK #define COMP_CSR_HYST_SHIFT (16) /* Bits 16-17: Hysteresis selection bits */ #define COMP_CSR_HYST_MASK (3 << COMP_CSR_HYST_SHIFT) # define COMP_CSR_HYST_NONE (0 << COMP_CSR_HYST_SHIFT) /* No hysteresis */ # define COMP_CSR_HYST_LOW (1 << COMP_CSR_HYST_SHIFT) /* Low hysteresis */ # define COMP_CSR_HYST_MEDIUM (2 << COMP_CSR_HYST_SHIFT) /* Medium hysteresis */ # define COMP_CSR_HYST_HIGH (3 << COMP_CSR_HYST_SHIFT) /* High hysteresis */ #define COMP_CSR_BLANK_SHIFT (18) /* Bits 18-20: Blanking source selection bits */ #define COMP_CSR_BLANK_MASK (7 << COMP_CSR_BLANK_SHIFT) # define COMP_CSR_BLANK_NONE (0 << COMP_CSR_BLANK_SHIFT) /* No blanking */ # define COMP1_CSR_BLANK_TIM1OC5 (1 << COMP_CSR_BLANK_SHIFT) /* TIM1 OC5 is blanking source */ # define COMP1_CSR_BLANK_TIM2OC3 (2 << COMP_CSR_BLANK_SHIFT) /* TIM2 OC3 is blanking source */ # define COMP1_CSR_BLANK_TIM3OC3 (4 << COMP_CSR_BLANK_SHIFT) /* TIM3 OC3 is blanking source */ # define COMP2_CSR_BLANK_TIM3OC4 (1 << COMP_CSR_BLANK_SHIFT) /* TIM3 OC4 is blanking source */ # define COMP2_CSR_BLANK_TIM8OC5 (2 << COMP_CSR_BLANK_SHIFT) /* TIM8 OC5 is blanking source */ # define COMP2_CSR_BLANK_TIM15OC1 (4 << COMP_CSR_BLANK_SHIFT) /* TIM15 OC1 is blanking source */ /* Bit 21: Reserved */ #define COMP_CSR_BRGEN (1 << 22) /* Bit 22: Scaler bridge enable */ #define COMP_CSR_SCALEN (1 << 23) /* Bit 23: Voltage scaler enable bit */ /* Bit 24: Reserved */ #if defined(CONFIG_STM32L4_STM32L4X3) # define COMP_CSR_INMESEL_SHIFT (25) /* Bits 25-26: Input minus extended selection bits */ # define COMP_CSR_INMESEL_MASK (3 << COMP_CSR_INMESEL_SHIFT) # define COMP_CSR_INMESEL_PIN2 (0 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 2: COMP1=PC4; COMP2=PB7 */ # define COMP_CSR_INMESEL_PIN3 (1 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 3: COMP1=PA0; COMP2=PA2 */ # define COMP_CSR_INMESEL_PIN4 (2 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 4: COMP1=PA4; COMP2=PA4 */ # define COMP_CSR_INMESEL_PIN5 (3 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 5: COMP1=PA5; COMP2=PA5 */ #endif /* Bits 27-29: Reserved */ #define COMP_CSR_VALUE (1 << 30) /* Bit 30: Comparator output status bit */ #define COMP_CSR_LOCK_MASK (1 << 31) /* Bit 31: CSR register lock bit */ # define COMP_CSR_LOCK_RW (0) # define COMP_CSR_LOCK_RO COMP_CSR_LOCK_MASK #endif /* __ARCH_ARM_SRC_STM32L4_CHIP_STM32L4_COMP_H */
#ifndef VAR_0 #define VAR_0 /**************************************************************************************************** * Pre-processor Definitions ****************************************************************************************************/ /* Register Offsets *********************************************************************************/ #define FUNC_0(VAR_1) (((n)-1) << 2) #define VAR_2 0x0000 /* Comparator 1 control and status register */ #define VAR_3 0x0004 /* Comparator 2 control and status register */ /* Register Addresses *******************************************************************************/ #define FUNC_1(VAR_1) (STM32L4_COMP_BASE+STM32L4_COMP_CSR_OFFSET(n)) #define VAR_4 (STM32L4_COMP_BASE+STM32L4_COMP1_CSR_OFFSET) #define VAR_5 (STM32L4_COMP_BASE+STM32L4_COMP2_CSR_OFFSET) /* Register Bitfield Definitions ********************************************************************/ #define VAR_6 (1 << 0) /* Bit 0: Comparator enable bit */ /* Bit 1: Reserved */ #define VAR_7 (2) /* Bits 2-3: Power Mode */ #define VAR_8 (3 << COMP_CSR_PWRMODE_SHIFT) # define VAR_9 (0 << COMP_CSR_PWRMODE_SHIFT) /* High speed */ # define VAR_10 (1 << COMP_CSR_PWRMODE_SHIFT) /* Medium speed */ # define VAR_11 (3 << COMP_CSR_PWRMODE_SHIFT) /* Ultra low power */ #define VAR_12 (4) /* Bits 4-6: Input minus selection bits */ #define VAR_13 (7 << COMP_CSR_INMSEL_SHIFT) # define VAR_14 (0 << COMP_CSR_INMSEL_SHIFT) /* 1/4 VREFINT */ # define VAR_15 (1 << COMP_CSR_INMSEL_SHIFT) /* 1/2 VREFINT */ # define VAR_16 (2 << COMP_CSR_INMSEL_SHIFT) /* 3/4 VREFINT */ # define VAR_17 (3 << COMP_CSR_INMSEL_SHIFT) /* VREFINT */ # define VAR_18 (4 << COMP_CSR_INMSEL_SHIFT) /* DAC Channel1 */ # define VAR_19 (5 << COMP_CSR_INMSEL_SHIFT) /* DAC Channel2 */ # define VAR_20 (6 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 1: COMP1=PB1; COMP2=PB3 */ #if defined(VAR_21) # define VAR_22 (7 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 2: Selected by INMESEL */ #else # define VAR_23 (7 << COMP_CSR_INMSEL_SHIFT) /* Input minus pin 2: COMP1=PC4; COMP2=PB7 */ #endif #define VAR_24 (7) /* Bits 7-8: Input plus selection bits */ #define VAR_25 (3 << COMP_CSR_INPSEL_SHIFT) # define VAR_26 (0 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 1: COMP1=PC5; COMP2=PB4 */ # define VAR_27 (1 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 2: COMP1=PB2; COMP2=PB6 */ #if defined(VAR_21) #define COMP_CSR_INPSEL_PIN3 (2 << COMP_CSR_INPSEL_SHIFT) /* Input plus pin 3: COMP1=PA1; COMP2=PA3 */ #endif #define VAR_28 (1 << 9) /* Bit 9: Windows mode selection bit (COMP2 only) */ # define VAR_29 (0) /* Comparator 2 input not connected to Comparator 1 */ # define VAR_30 COMP2_CSR_WINMODE /* Comparator 2 input connected to Comparator 1 */ #define VAR_31 (1 << 15) /* Bit 15: Polarity selection bit */ # define VAR_32 (0) # define COMP_CSR_POLARITY_INVERT COMP_CSR_POLARITY_MASK #define VAR_33 (16) /* Bits 16-17: Hysteresis selection bits */ #define VAR_34 (3 << COMP_CSR_HYST_SHIFT) # define VAR_35 (0 << COMP_CSR_HYST_SHIFT) /* No hysteresis */ # define VAR_36 (1 << COMP_CSR_HYST_SHIFT) /* Low hysteresis */ # define VAR_37 (2 << COMP_CSR_HYST_SHIFT) /* Medium hysteresis */ # define VAR_38 (3 << COMP_CSR_HYST_SHIFT) /* High hysteresis */ #define VAR_39 (18) /* Bits 18-20: Blanking source selection bits */ #define VAR_40 (7 << COMP_CSR_BLANK_SHIFT) # define VAR_41 (0 << COMP_CSR_BLANK_SHIFT) /* No blanking */ # define VAR_42 (1 << COMP_CSR_BLANK_SHIFT) /* TIM1 OC5 is blanking source */ # define VAR_43 (2 << COMP_CSR_BLANK_SHIFT) /* TIM2 OC3 is blanking source */ # define VAR_44 (4 << COMP_CSR_BLANK_SHIFT) /* TIM3 OC3 is blanking source */ # define VAR_45 (1 << COMP_CSR_BLANK_SHIFT) /* TIM3 OC4 is blanking source */ # define VAR_46 (2 << COMP_CSR_BLANK_SHIFT) /* TIM8 OC5 is blanking source */ # define VAR_47 (4 << COMP_CSR_BLANK_SHIFT) /* TIM15 OC1 is blanking source */ /* Bit 21: Reserved */ #define VAR_48 (1 << 22) /* Bit 22: Scaler bridge enable */ #define VAR_49 (1 << 23) /* Bit 23: Voltage scaler enable bit */ /* Bit 24: Reserved */ #if defined(VAR_21) # define VAR_50 (25) /* Bits 25-26: Input minus extended selection bits */ # define VAR_51 (3 << COMP_CSR_INMESEL_SHIFT) # define VAR_52 (0 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 2: COMP1=PC4; COMP2=PB7 */ # define VAR_53 (1 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 3: COMP1=PA0; COMP2=PA2 */ # define VAR_54 (2 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 4: COMP1=PA4; COMP2=PA4 */ # define VAR_55 (3 << COMP_CSR_INMESEL_SHIFT) /* Input minus pin 5: COMP1=PA5; COMP2=PA5 */ #endif /* Bits 27-29: Reserved */ #define VAR_56 (1 << 30) /* Bit 30: Comparator output status bit */ #define VAR_57 (1 << 31) /* Bit 31: CSR register lock bit */ # define VAR_58 (0) # define VAR_59 COMP_CSR_LOCK_MASK #endif /* __ARCH_ARM_SRC_STM32L4_CHIP_STM32L4_COMP_H */
0.954073
{'VAR_0': '__ARCH_ARM_SRC_STM32L4_CHIP_STM32L4_COMP_H', 'FUNC_0': 'STM32L4_COMP_CSR_OFFSET', 'VAR_1': 'n', 'VAR_2': 'STM32L4_COMP1_CSR_OFFSET', 'VAR_3': 'STM32L4_COMP2_CSR_OFFSET', 'FUNC_1': 'STM32L4_COMP_CSR', 'VAR_4': 'STM32L4_COMP1_CSR', 'VAR_5': 'STM32L4_COMP2_CSR', 'VAR_6': 'COMP_CSR_EN', 'VAR_7': 'COMP_CSR_PWRMODE_SHIFT', 'VAR_8': 'COMP_CSR_PWRMODE_MASK', 'VAR_9': 'COMP_CSR_PWRMODE_HIGH', 'VAR_10': 'COMP_CSR_PWRMODE_MEDIUM', 'VAR_11': 'COMP_CSR_PWRMODE_LOW', 'VAR_12': 'COMP_CSR_INMSEL_SHIFT', 'VAR_13': 'COMP_CSR_INMSEL_MASK', 'VAR_14': 'COMP_CSR_INMSEL_25PCT', 'VAR_15': 'COMP_CSR_INMSEL_50PCT', 'VAR_16': 'COMP_CSR_INMSEL_75PCT', 'VAR_17': 'COMP_CSR_INMSEL_VREF', 'VAR_18': 'COMP_CSR_INMSEL_DAC1', 'VAR_19': 'COMP_CSR_INMSEL_DAC2', 'VAR_20': 'COMP_CSR_INMSEL_PIN1', 'VAR_21': 'CONFIG_STM32L4_STM32L4X3', 'VAR_22': 'COMP_CSR_INMSEL_INMESEL', 'VAR_23': 'COMP_CSR_INMSEL_PIN2', 'VAR_24': 'COMP_CSR_INPSEL_SHIFT', 'VAR_25': 'COMP_CSR_INPSEL_MASK', 'VAR_26': 'COMP_CSR_INPSEL_PIN1', 'VAR_27': 'COMP_CSR_INPSEL_PIN2', 'VAR_28': 'COMP2_CSR_WINMODE', 'VAR_29': 'COMP2_CSR_WINMODE_NOCONN', 'VAR_30': 'COMP2_CSR_WINMODE_CONN', 'VAR_31': 'COMP_CSR_POLARITY_MASK', 'VAR_32': 'COMP_CSR_POLARITY_NORMAL', 'VAR_33': 'COMP_CSR_HYST_SHIFT', 'VAR_34': 'COMP_CSR_HYST_MASK', 'VAR_35': 'COMP_CSR_HYST_NONE', 'VAR_36': 'COMP_CSR_HYST_LOW', 'VAR_37': 'COMP_CSR_HYST_MEDIUM', 'VAR_38': 'COMP_CSR_HYST_HIGH', 'VAR_39': 'COMP_CSR_BLANK_SHIFT', 'VAR_40': 'COMP_CSR_BLANK_MASK', 'VAR_41': 'COMP_CSR_BLANK_NONE', 'VAR_42': 'COMP1_CSR_BLANK_TIM1OC5', 'VAR_43': 'COMP1_CSR_BLANK_TIM2OC3', 'VAR_44': 'COMP1_CSR_BLANK_TIM3OC3', 'VAR_45': 'COMP2_CSR_BLANK_TIM3OC4', 'VAR_46': 'COMP2_CSR_BLANK_TIM8OC5', 'VAR_47': 'COMP2_CSR_BLANK_TIM15OC1', 'VAR_48': 'COMP_CSR_BRGEN', 'VAR_49': 'COMP_CSR_SCALEN', 'VAR_50': 'COMP_CSR_INMESEL_SHIFT', 'VAR_51': 'COMP_CSR_INMESEL_MASK', 'VAR_52': 'COMP_CSR_INMESEL_PIN2', 'VAR_53': 'COMP_CSR_INMESEL_PIN3', 'VAR_54': 'COMP_CSR_INMESEL_PIN4', 'VAR_55': 'COMP_CSR_INMESEL_PIN5', 'VAR_56': 'COMP_CSR_VALUE', 'VAR_57': 'COMP_CSR_LOCK_MASK', 'VAR_58': 'COMP_CSR_LOCK_RW', 'VAR_59': 'COMP_CSR_LOCK_RO'}
#pragma once #include "RxActor/CommonDefines.h" #include "RxActor/Supervisor.h" #include "RxActor/Export.h" #include "Actor.h" namespace RxActor { typedef Templates::Key2<DomainId, ScopeId> ActorSystemHandle; typedef Templates::ObjectsManager<ActorPath, ActorBasePtr, ActorSystemHandle> ActorScopeManager; typedef std::shared_ptr<ActorScopeManager> ActorScopeManagerPtr; typedef Collection::details::StdMapCollectionType<ActorSystemHandle, ActorScopeManagerPtr> LookupActorManager; class DLL_STATE ActorSystem : public Templates::FactorySingleton<ActorSystem> , protected Templates::ContextDataShared<LookupActorManager> { public: ActorSystem() : Templates::ContextDataShared<LookupActorManager>() { } virtual ~ActorSystem() { } // ------------------------------------------------- // Activation functions. TODO: Which vocabulary makes sense for Actors? // ------------------------------------------------- bool Activate(ActorId handle); bool Deactivate(ActorId handle); bool IsActive(ActorId handle); bool Activate(ActorPath handle); bool Deactivate(ActorPath handle); bool IsActive(ActorPath handle); // ------------------------------------------------- // Create functions // ------------------------------------------------- template <typename T> std::shared_ptr<details::Actor<T>> ActorOf(ChannelHandle handle, Supervisor supervisor, ActorPolicy policy) { ActorScopeManagerPtr manager = this->context()->GetOrCreate( ActorSystemHandle{handle.first(), handle.second()}, [&handle]() { std::shared_ptr<ActorScopeManager> instance = std::make_shared<ActorScopeManager>(ActorSystemHandle{handle.first(), handle.second()}); bool initialized = instance->Initialize(); ASSERT(initialized); return instance; } ); ActorBasePtr actor = manager->GetOrCreate( handle.third(), [&handle, &supervisor, &policy]() { std::shared_ptr<details::Actor<T>> actor = std::make_shared<details::Actor<T>>(handle, ActorId::Create(), supervisor, policy); bool initialized = actor->Initialize(); ASSERT(initialized); return actor; } ); return std::dynamic_pointer_cast<details::Actor<T>>(actor); } // --------------------------------------------- // Print data // --------------------------------------------- std::string ToString() const; friend std::ostream& operator<<(std::ostream& ostr, const ActorSystem& proxy) { ostr << proxy.ToString(); return ostr; } friend std::ostream& operator<<(std::ostream& ostr, const std::shared_ptr<ActorSystem>& proxy) { ostr << proxy->ToString(); return ostr; } }; }
#pragma once #include "IMPORT_0" #include "IMPORT_1" #include "RxActor/Export.h" #include "IMPORT_2" CLASS_0 VAR_0 { typedef Templates::CLASS_1<ID_0, CLASS_2> ID_1; typedef Templates::CLASS_4<ID_2, ID_3, CLASS_3> ID_4; typedef CLASS_8::CLASS_9<CLASS_7> ID_5; typedef CLASS_11::CLASS_12::CLASS_13<ID_1, ID_5> VAR_6; CLASS_14 VAR_7 ActorSystem : public Templates::VAR_9<VAR_8> , VAR_10 Templates::VAR_11<VAR_6> { public: FUNC_0() : Templates::VAR_11<VAR_6>() { } CLASS_15 ~FUNC_0() { } // ------------------------------------------------- // Activation functions. TODO: Which vocabulary makes sense for Actors? // ------------------------------------------------- bool Activate(ActorId VAR_12); bool FUNC_1(ActorId VAR_12); bool FUNC_2(ActorId VAR_12); bool Activate(CLASS_5 VAR_12); bool FUNC_1(CLASS_5 VAR_12); bool FUNC_2(CLASS_5 VAR_12); // ------------------------------------------------- // Create functions // ------------------------------------------------- VAR_13 <VAR_14 VAR_15> VAR_3::VAR_4<VAR_5::VAR_16<VAR_15>> FUNC_3(VAR_17 VAR_12, VAR_18 VAR_19, VAR_20 VAR_21) { CLASS_10 VAR_22 = VAR_23->FUNC_4()->FUNC_5( VAR_1{VAR_12.FUNC_6(), VAR_12.FUNC_7()},VAR_24 [&VAR_12]() { std::VAR_4<VAR_2> VAR_25 = VAR_3::VAR_26<VAR_2>(VAR_1{VAR_12.FUNC_6(), VAR_12.FUNC_7()}); bool VAR_27 = VAR_25->FUNC_8(); FUNC_9(VAR_27); return VAR_25; } ); CLASS_6 VAR_28 = VAR_22->FUNC_5( VAR_12.FUNC_10(), [&VAR_12, &VAR_19, &VAR_21]() { std::VAR_4<VAR_5::VAR_16<VAR_15>> VAR_28 = VAR_3::VAR_26<VAR_5::VAR_16<VAR_15>>(VAR_12, ActorId::FUNC_11(), VAR_19, VAR_21); bool VAR_27 = VAR_28->FUNC_8(); FUNC_9(VAR_27); return VAR_28; } ); return VAR_3::VAR_29<VAR_5::VAR_16<VAR_15>>(VAR_28); } // --------------------------------------------- // Print data // --------------------------------------------- VAR_3::VAR_30 VAR_31() VAR_32; CLASS_16 VAR_3::VAR_33& VAR_34<<(VAR_3::VAR_33& VAR_35, VAR_32 VAR_8& VAR_36) { VAR_35 << VAR_36.FUNC_12(); return VAR_35; } CLASS_16 VAR_3::VAR_33& VAR_34<<(VAR_3::VAR_33& VAR_35, VAR_32 VAR_3::VAR_4<VAR_8>& VAR_36) { VAR_35 << VAR_36->FUNC_12(); return VAR_35; } }; }
0.904006
{'IMPORT_0': 'RxActor/CommonDefines.h', 'IMPORT_1': 'RxActor/Supervisor.h', 'IMPORT_2': 'Actor.h', 'CLASS_0': 'namespace', 'VAR_0': 'RxActor', 'CLASS_1': 'Key2', 'ID_0': 'DomainId', 'CLASS_2': 'ScopeId', 'ID_1': 'ActorSystemHandle', 'CLASS_3': 'ActorSystemHandle', 'VAR_1': 'ActorSystemHandle', 'CLASS_4': 'ObjectsManager', 'ID_2': 'ActorPath', 'CLASS_5': 'ActorPath', 'ID_3': 'ActorBasePtr', 'CLASS_6': 'ActorBasePtr', 'ID_4': 'ActorScopeManager', 'CLASS_7': 'ActorScopeManager', 'VAR_2': 'ActorScopeManager', 'CLASS_8': 'std', 'VAR_3': 'std', 'CLASS_9': 'shared_ptr', 'VAR_4': 'shared_ptr', 'ID_5': 'ActorScopeManagerPtr', 'CLASS_10': 'ActorScopeManagerPtr', 'CLASS_11': 'Collection', 'CLASS_12': 'details', 'VAR_5': 'details', 'CLASS_13': 'StdMapCollectionType', 'VAR_6': 'LookupActorManager', 'CLASS_14': 'class', 'VAR_7': 'DLL_STATE', 'VAR_8': 'ActorSystem', 'FUNC_0': 'ActorSystem', 'VAR_9': 'FactorySingleton', 'VAR_10': 'protected', 'VAR_11': 'ContextDataShared', 'CLASS_15': 'virtual', 'VAR_12': 'handle', 'FUNC_1': 'Deactivate', 'FUNC_2': 'IsActive', 'VAR_13': 'template', 'VAR_14': 'typename', 'VAR_15': 'T', 'VAR_16': 'Actor', 'FUNC_3': 'ActorOf', 'VAR_17': 'ChannelHandle', 'VAR_18': 'Supervisor', 'VAR_19': 'supervisor', 'VAR_20': 'ActorPolicy', 'VAR_21': 'policy', 'VAR_22': 'manager', 'VAR_23': 'this', 'FUNC_4': 'context', 'FUNC_5': 'GetOrCreate', 'FUNC_6': 'first', 'FUNC_7': 'second', 'VAR_24': '', 'VAR_25': 'instance', 'VAR_26': 'make_shared', 'VAR_27': 'initialized', 'FUNC_8': 'Initialize', 'FUNC_9': 'ASSERT', 'VAR_28': 'actor', 'FUNC_10': 'third', 'FUNC_11': 'Create', 'VAR_29': 'dynamic_pointer_cast', 'VAR_30': 'string', 'VAR_31': 'ToString', 'FUNC_12': 'ToString', 'VAR_32': 'const', 'CLASS_16': 'friend', 'VAR_33': 'ostream', 'VAR_34': 'operator', 'VAR_35': 'ostr', 'VAR_36': 'proxy'}
/* ZD1211 USB-WLAN driver for Linux * * Copyright (C) 2005-2007 <NAME> <<EMAIL>> * Copyright (C) 2006-2007 <NAME> <<EMAIL>> * Copyright (C) 2006-2007 <NAME> <<EMAIL>> * * 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 <linux/kernel.h> #include <linux/init.h> #include <linux/firmware.h> #include <linux/device.h> #include <linux/errno.h> #include <linux/slab.h> #include <linux/skbuff.h> #include <linux/usb.h> #include <linux/workqueue.h> #include <linux/module.h> #include <net/mac80211.h> #include <asm/unaligned.h> #include "zd_def.h" #include "zd_mac.h" #include "zd_usb.h" static struct usb_device_id usb_ids[] = { /* ZD1211 */ { USB_DEVICE(0x0105, 0x145f), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3401), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3402), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3407), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3409), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x079b, 0x004a), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0ace, 0x1211), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0ace, 0xa211), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b05, 0x170c), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b3b, 0x1630), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b3b, 0x5630), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0df6, 0x9071), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0df6, 0x9075), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x126f, 0xa006), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x129b, 0x1666), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x13b1, 0x001e), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x1435, 0x0711), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x14ea, 0xab10), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x14ea, 0xab13), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x300a), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x300b), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x3204), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x3207), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x1740, 0x2000), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x6891, 0xa727), .driver_info = DEVICE_ZD1211 }, /* ZD1211B */ { USB_DEVICE(0x0053, 0x5301), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0409, 0x0248), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0411, 0x00da), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0471, 0x1236), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0471, 0x1237), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x050d, 0x705c), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x054c, 0x0257), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x340a), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x340f), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3410), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3412), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3413), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x079b, 0x0062), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x07fa, 0x1196), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0x4505), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe501), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe503), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe506), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0ace, 0x1215), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0ace, 0xb215), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0b05, 0x171b), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0baf, 0x0121), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0cde, 0x001a), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0df6, 0x0036), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x129b, 0x1667), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x13b1, 0x0024), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x157e, 0x300d), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x1582, 0x6003), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x2019, 0x5303), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x2019, 0xed01), .driver_info = DEVICE_ZD1211B }, /* "Driverless" devices that need ejecting */ { USB_DEVICE(0x0ace, 0x2011), .driver_info = DEVICE_INSTALLER }, { USB_DEVICE(0x0ace, 0x20ff), .driver_info = DEVICE_INSTALLER }, {} }; MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("USB driver for devices with the ZD1211 chip."); MODULE_AUTHOR("<NAME>"); MODULE_AUTHOR("<NAME>"); MODULE_VERSION("1.0"); MODULE_DEVICE_TABLE(usb, usb_ids); #define FW_ZD1211_PREFIX "zd1211/zd1211_" #define FW_ZD1211B_PREFIX "zd1211/zd1211b_" static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count); /* USB device initialization */ static void int_urb_complete(struct urb *urb); static int request_fw_file( const struct firmware **fw, const char *name, struct device *device) { int r; dev_dbg_f(device, "fw name %s\n", name); r = request_firmware(fw, name, device); if (r) dev_err(device, "Could not load firmware file %s. Error number %d\n", name, r); return r; } static inline u16 get_bcdDevice(const struct usb_device *udev) { return le16_to_cpu(udev->descriptor.bcdDevice); } enum upload_code_flags { REBOOT = 1, }; /* Ensures that MAX_TRANSFER_SIZE is even. */ #define MAX_TRANSFER_SIZE (USB_MAX_TRANSFER_SIZE & ~1) static int upload_code(struct usb_device *udev, const u8 *data, size_t size, u16 code_offset, int flags) { u8 *p; int r; /* USB request blocks need "kmalloced" buffers. */ p = kmalloc(MAX_TRANSFER_SIZE, GFP_KERNEL); if (!p) { r = -ENOMEM; goto error; } size &= ~1; while (size > 0) { size_t transfer_size = size <= MAX_TRANSFER_SIZE ? size : MAX_TRANSFER_SIZE; dev_dbg_f(&udev->dev, "transfer size %zu\n", transfer_size); memcpy(p, data, transfer_size); r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), USB_REQ_FIRMWARE_DOWNLOAD, USB_DIR_OUT | USB_TYPE_VENDOR, code_offset, 0, p, transfer_size, 1000 /* ms */); if (r < 0) { dev_err(&udev->dev, "USB control request for firmware upload" " failed. Error number %d\n", r); goto error; } transfer_size = r & ~1; size -= transfer_size; data += transfer_size; code_offset += transfer_size/sizeof(u16); } if (flags & REBOOT) { u8 ret; /* Use "DMA-aware" buffer. */ r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), USB_REQ_FIRMWARE_CONFIRM, USB_DIR_IN | USB_TYPE_VENDOR, 0, 0, p, sizeof(ret), 5000 /* ms */); if (r != sizeof(ret)) { dev_err(&udev->dev, "control request firmware confirmation failed." " Return value %d\n", r); if (r >= 0) r = -ENODEV; goto error; } ret = p[0]; if (ret & 0x80) { dev_err(&udev->dev, "Internal error while downloading." " Firmware confirm return value %#04x\n", (unsigned int)ret); r = -ENODEV; goto error; } dev_dbg_f(&udev->dev, "firmware confirm return value %#04x\n", (unsigned int)ret); } r = 0; error: kfree(p); return r; } static u16 get_word(const void *data, u16 offset) { const __le16 *p = data; return le16_to_cpu(p[offset]); } static char *get_fw_name(struct zd_usb *usb, char *buffer, size_t size, const char* postfix) { scnprintf(buffer, size, "%s%s", usb->is_zd1211b ? FW_ZD1211B_PREFIX : FW_ZD1211_PREFIX, postfix); return buffer; } static int handle_version_mismatch(struct zd_usb *usb, const struct firmware *ub_fw) { struct usb_device *udev = zd_usb_to_usbdev(usb); const struct firmware *ur_fw = NULL; int offset; int r = 0; char fw_name[128]; r = request_fw_file(&ur_fw, get_fw_name(usb, fw_name, sizeof(fw_name), "ur"), &udev->dev); if (r) goto error; r = upload_code(udev, ur_fw->data, ur_fw->size, FW_START, REBOOT); if (r) goto error; offset = (E2P_BOOT_CODE_OFFSET * sizeof(u16)); r = upload_code(udev, ub_fw->data + offset, ub_fw->size - offset, E2P_START + E2P_BOOT_CODE_OFFSET, REBOOT); /* At this point, the vendor driver downloads the whole firmware * image, hacks around with version IDs, and uploads it again, * completely overwriting the boot code. We do not do this here as * it is not required on any tested devices, and it is suspected to * cause problems. */ error: release_firmware(ur_fw); return r; } static int upload_firmware(struct zd_usb *usb) { int r; u16 fw_bcdDevice; u16 bcdDevice; struct usb_device *udev = zd_usb_to_usbdev(usb); const struct firmware *ub_fw = NULL; const struct firmware *uph_fw = NULL; char fw_name[128]; bcdDevice = get_bcdDevice(udev); r = request_fw_file(&ub_fw, get_fw_name(usb, fw_name, sizeof(fw_name), "ub"), &udev->dev); if (r) goto error; fw_bcdDevice = get_word(ub_fw->data, E2P_DATA_OFFSET); if (fw_bcdDevice != bcdDevice) { dev_info(&udev->dev, "firmware version %#06x and device bootcode version " "%#06x differ\n", fw_bcdDevice, bcdDevice); if (bcdDevice <= 0x4313) dev_warn(&udev->dev, "device has old bootcode, please " "report success or failure\n"); r = handle_version_mismatch(usb, ub_fw); if (r) goto error; } else { dev_dbg_f(&udev->dev, "firmware device id %#06x is equal to the " "actual device id\n", fw_bcdDevice); } r = request_fw_file(&uph_fw, get_fw_name(usb, fw_name, sizeof(fw_name), "uphr"), &udev->dev); if (r) goto error; r = upload_code(udev, uph_fw->data, uph_fw->size, FW_START, REBOOT); if (r) { dev_err(&udev->dev, "Could not upload firmware code uph. Error number %d\n", r); } /* FALL-THROUGH */ error: release_firmware(ub_fw); release_firmware(uph_fw); return r; } MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ur"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "ur"); MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ub"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "ub"); MODULE_FIRMWARE(FW_ZD1211B_PREFIX "uphr"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "uphr"); /* Read data from device address space using "firmware interface" which does * not require firmware to be loaded. */ int zd_usb_read_fw(struct zd_usb *usb, zd_addr_t addr, u8 *data, u16 len) { int r; struct usb_device *udev = zd_usb_to_usbdev(usb); u8 *buf; /* Use "DMA-aware" buffer. */ buf = kmalloc(len, GFP_KERNEL); if (!buf) return -ENOMEM; r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), USB_REQ_FIRMWARE_READ_DATA, USB_DIR_IN | 0x40, addr, 0, buf, len, 5000); if (r < 0) { dev_err(&udev->dev, "read over firmware interface failed: %d\n", r); goto exit; } else if (r != len) { dev_err(&udev->dev, "incomplete read over firmware interface: %d/%d\n", r, len); r = -EIO; goto exit; } r = 0; memcpy(data, buf, len); exit: kfree(buf); return r; } #define urb_dev(urb) (&(urb)->dev->dev) static inline void handle_regs_int_override(struct urb *urb) { struct zd_usb *usb = urb->context; struct zd_usb_interrupt *intr = &usb->intr; spin_lock(&intr->lock); if (atomic_read(&intr->read_regs_enabled)) { atomic_set(&intr->read_regs_enabled, 0); intr->read_regs_int_overridden = 1; complete(&intr->read_regs.completion); } spin_unlock(&intr->lock); } static inline void handle_regs_int(struct urb *urb) { struct zd_usb *usb = urb->context; struct zd_usb_interrupt *intr = &usb->intr; int len; u16 int_num; ZD_ASSERT(in_interrupt()); spin_lock(&intr->lock); int_num = le16_to_cpu(*(__le16 *)(urb->transfer_buffer+2)); if (int_num == CR_INTERRUPT) { struct zd_mac *mac = zd_hw_mac(zd_usb_to_hw(urb->context)); spin_lock(&mac->lock); memcpy(&mac->intr_buffer, urb->transfer_buffer, USB_MAX_EP_INT_BUFFER); spin_unlock(&mac->lock); schedule_work(&mac->process_intr); } else if (atomic_read(&intr->read_regs_enabled)) { len = urb->actual_length; intr->read_regs.length = urb->actual_length; if (len > sizeof(intr->read_regs.buffer)) len = sizeof(intr->read_regs.buffer); memcpy(intr->read_regs.buffer, urb->transfer_buffer, len); /* Sometimes USB_INT_ID_REGS is not overridden, but comes after * USB_INT_ID_RETRY_FAILED. Read-reg retry then gets this * delayed USB_INT_ID_REGS, but leaves USB_INT_ID_REGS of * retry unhandled. Next read-reg command then might catch * this wrong USB_INT_ID_REGS. Fix by ignoring wrong reads. */ if (!check_read_regs(usb, intr->read_regs.req, intr->read_regs.req_count)) goto out; atomic_set(&intr->read_regs_enabled, 0); intr->read_regs_int_overridden = 0; complete(&intr->read_regs.completion); goto out; } out: spin_unlock(&intr->lock); /* CR_INTERRUPT might override read_reg too. */ if (int_num == CR_INTERRUPT && atomic_read(&intr->read_regs_enabled)) handle_regs_int_override(urb); } static void int_urb_complete(struct urb *urb) { int r; struct usb_int_header *hdr; struct zd_usb *usb; struct zd_usb_interrupt *intr; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); return; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } if (urb->actual_length < sizeof(hdr)) { dev_dbg_f(urb_dev(urb), "error: urb %p to small\n", urb); goto resubmit; } hdr = urb->transfer_buffer; if (hdr->type != USB_INT_TYPE) { dev_dbg_f(urb_dev(urb), "error: urb %p wrong type\n", urb); goto resubmit; } /* USB_INT_ID_RETRY_FAILED triggered by tx-urb submit can override * pending USB_INT_ID_REGS causing read command timeout. */ usb = urb->context; intr = &usb->intr; if (hdr->id != USB_INT_ID_REGS && atomic_read(&intr->read_regs_enabled)) handle_regs_int_override(urb); switch (hdr->id) { case USB_INT_ID_REGS: handle_regs_int(urb); break; case USB_INT_ID_RETRY_FAILED: zd_mac_tx_failed(urb); break; default: dev_dbg_f(urb_dev(urb), "error: urb %p unknown id %x\n", urb, (unsigned int)hdr->id); goto resubmit; } resubmit: r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { dev_dbg_f(urb_dev(urb), "error: resubmit urb %p err code %d\n", urb, r); /* TODO: add worker to reset intr->urb */ } return; } static inline int int_urb_interval(struct usb_device *udev) { switch (udev->speed) { case USB_SPEED_HIGH: return 4; case USB_SPEED_LOW: return 10; case USB_SPEED_FULL: default: return 1; } } static inline int usb_int_enabled(struct zd_usb *usb) { unsigned long flags; struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; spin_lock_irqsave(&intr->lock, flags); urb = intr->urb; spin_unlock_irqrestore(&intr->lock, flags); return urb != NULL; } int zd_usb_enable_int(struct zd_usb *usb) { int r; struct usb_device *udev = zd_usb_to_usbdev(usb); struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; dev_dbg_f(zd_usb_dev(usb), "\n"); urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) { r = -ENOMEM; goto out; } ZD_ASSERT(!irqs_disabled()); spin_lock_irq(&intr->lock); if (intr->urb) { spin_unlock_irq(&intr->lock); r = 0; goto error_free_urb; } intr->urb = urb; spin_unlock_irq(&intr->lock); r = -ENOMEM; intr->buffer = usb_alloc_coherent(udev, USB_MAX_EP_INT_BUFFER, GFP_KERNEL, &intr->buffer_dma); if (!intr->buffer) { dev_dbg_f(zd_usb_dev(usb), "couldn't allocate transfer_buffer\n"); goto error_set_urb_null; } usb_fill_int_urb(urb, udev, usb_rcvintpipe(udev, EP_INT_IN), intr->buffer, USB_MAX_EP_INT_BUFFER, int_urb_complete, usb, intr->interval); urb->transfer_dma = intr->buffer_dma; urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; dev_dbg_f(zd_usb_dev(usb), "submit urb %p\n", intr->urb); r = usb_submit_urb(urb, GFP_KERNEL); if (r) { dev_dbg_f(zd_usb_dev(usb), "Couldn't submit urb. Error number %d\n", r); goto error; } return 0; error: usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, intr->buffer, intr->buffer_dma); error_set_urb_null: spin_lock_irq(&intr->lock); intr->urb = NULL; spin_unlock_irq(&intr->lock); error_free_urb: usb_free_urb(urb); out: return r; } void zd_usb_disable_int(struct zd_usb *usb) { unsigned long flags; struct usb_device *udev = zd_usb_to_usbdev(usb); struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; void *buffer; dma_addr_t buffer_dma; spin_lock_irqsave(&intr->lock, flags); urb = intr->urb; if (!urb) { spin_unlock_irqrestore(&intr->lock, flags); return; } intr->urb = NULL; buffer = intr->buffer; buffer_dma = intr->buffer_dma; intr->buffer = NULL; spin_unlock_irqrestore(&intr->lock, flags); usb_kill_urb(urb); dev_dbg_f(zd_usb_dev(usb), "urb %p killed\n", urb); usb_free_urb(urb); if (buffer) usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, buffer, buffer_dma); } static void handle_rx_packet(struct zd_usb *usb, const u8 *buffer, unsigned int length) { int i; const struct rx_length_info *length_info; if (length < sizeof(struct rx_length_info)) { /* It's not a complete packet anyhow. */ dev_dbg_f(zd_usb_dev(usb), "invalid, small RX packet : %d\n", length); return; } length_info = (struct rx_length_info *) (buffer + length - sizeof(struct rx_length_info)); /* It might be that three frames are merged into a single URB * transaction. We have to check for the length info tag. * * While testing we discovered that length_info might be unaligned, * because if USB transactions are merged, the last packet will not * be padded. Unaligned access might also happen if the length_info * structure is not present. */ if (get_unaligned_le16(&length_info->tag) == RX_LENGTH_INFO_TAG) { unsigned int l, k, n; for (i = 0, l = 0;; i++) { k = get_unaligned_le16(&length_info->length[i]); if (k == 0) return; n = l+k; if (n > length) return; zd_mac_rx(zd_usb_to_hw(usb), buffer+l, k); if (i >= 2) return; l = (n+3) & ~3; } } else { zd_mac_rx(zd_usb_to_hw(usb), buffer, length); } } static void rx_urb_complete(struct urb *urb) { int r; struct zd_usb *usb; struct zd_usb_rx *rx; const u8 *buffer; unsigned int length; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); return; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } buffer = urb->transfer_buffer; length = urb->actual_length; usb = urb->context; rx = &usb->rx; tasklet_schedule(&rx->reset_timer_tasklet); if (length%rx->usb_packet_size > rx->usb_packet_size-4) { /* If there is an old first fragment, we don't care. */ dev_dbg_f(urb_dev(urb), "*** first fragment ***\n"); ZD_ASSERT(length <= ARRAY_SIZE(rx->fragment)); spin_lock(&rx->lock); memcpy(rx->fragment, buffer, length); rx->fragment_length = length; spin_unlock(&rx->lock); goto resubmit; } spin_lock(&rx->lock); if (rx->fragment_length > 0) { /* We are on a second fragment, we believe */ ZD_ASSERT(length + rx->fragment_length <= ARRAY_SIZE(rx->fragment)); dev_dbg_f(urb_dev(urb), "*** second fragment ***\n"); memcpy(rx->fragment+rx->fragment_length, buffer, length); handle_rx_packet(usb, rx->fragment, rx->fragment_length + length); rx->fragment_length = 0; spin_unlock(&rx->lock); } else { spin_unlock(&rx->lock); handle_rx_packet(usb, buffer, length); } resubmit: r = usb_submit_urb(urb, GFP_ATOMIC); if (r) dev_dbg_f(urb_dev(urb), "urb %p resubmit error %d\n", urb, r); } static struct urb *alloc_rx_urb(struct zd_usb *usb) { struct usb_device *udev = zd_usb_to_usbdev(usb); struct urb *urb; void *buffer; urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) return NULL; buffer = usb_alloc_coherent(udev, USB_MAX_RX_SIZE, GFP_KERNEL, &urb->transfer_dma); if (!buffer) { usb_free_urb(urb); return NULL; } usb_fill_bulk_urb(urb, udev, usb_rcvbulkpipe(udev, EP_DATA_IN), buffer, USB_MAX_RX_SIZE, rx_urb_complete, usb); urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; return urb; } static void free_rx_urb(struct urb *urb) { if (!urb) return; usb_free_coherent(urb->dev, urb->transfer_buffer_length, urb->transfer_buffer, urb->transfer_dma); usb_free_urb(urb); } static int __zd_usb_enable_rx(struct zd_usb *usb) { int i, r; struct zd_usb_rx *rx = &usb->rx; struct urb **urbs; dev_dbg_f(zd_usb_dev(usb), "\n"); r = -ENOMEM; urbs = kcalloc(RX_URBS_COUNT, sizeof(struct urb *), GFP_KERNEL); if (!urbs) goto error; for (i = 0; i < RX_URBS_COUNT; i++) { urbs[i] = alloc_rx_urb(usb); if (!urbs[i]) goto error; } ZD_ASSERT(!irqs_disabled()); spin_lock_irq(&rx->lock); if (rx->urbs) { spin_unlock_irq(&rx->lock); r = 0; goto error; } rx->urbs = urbs; rx->urbs_count = RX_URBS_COUNT; spin_unlock_irq(&rx->lock); for (i = 0; i < RX_URBS_COUNT; i++) { r = usb_submit_urb(urbs[i], GFP_KERNEL); if (r) goto error_submit; } return 0; error_submit: for (i = 0; i < RX_URBS_COUNT; i++) { usb_kill_urb(urbs[i]); } spin_lock_irq(&rx->lock); rx->urbs = NULL; rx->urbs_count = 0; spin_unlock_irq(&rx->lock); error: if (urbs) { for (i = 0; i < RX_URBS_COUNT; i++) free_rx_urb(urbs[i]); } return r; } int zd_usb_enable_rx(struct zd_usb *usb) { int r; struct zd_usb_rx *rx = &usb->rx; mutex_lock(&rx->setup_mutex); r = __zd_usb_enable_rx(usb); mutex_unlock(&rx->setup_mutex); zd_usb_reset_rx_idle_timer(usb); return r; } static void __zd_usb_disable_rx(struct zd_usb *usb) { int i; unsigned long flags; struct urb **urbs; unsigned int count; struct zd_usb_rx *rx = &usb->rx; spin_lock_irqsave(&rx->lock, flags); urbs = rx->urbs; count = rx->urbs_count; spin_unlock_irqrestore(&rx->lock, flags); if (!urbs) return; for (i = 0; i < count; i++) { usb_kill_urb(urbs[i]); free_rx_urb(urbs[i]); } kfree(urbs); spin_lock_irqsave(&rx->lock, flags); rx->urbs = NULL; rx->urbs_count = 0; spin_unlock_irqrestore(&rx->lock, flags); } void zd_usb_disable_rx(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; mutex_lock(&rx->setup_mutex); __zd_usb_disable_rx(usb); mutex_unlock(&rx->setup_mutex); tasklet_kill(&rx->reset_timer_tasklet); cancel_delayed_work_sync(&rx->idle_work); } static void zd_usb_reset_rx(struct zd_usb *usb) { bool do_reset; struct zd_usb_rx *rx = &usb->rx; unsigned long flags; mutex_lock(&rx->setup_mutex); spin_lock_irqsave(&rx->lock, flags); do_reset = rx->urbs != NULL; spin_unlock_irqrestore(&rx->lock, flags); if (do_reset) { __zd_usb_disable_rx(usb); __zd_usb_enable_rx(usb); } mutex_unlock(&rx->setup_mutex); if (do_reset) zd_usb_reset_rx_idle_timer(usb); } /** * zd_usb_disable_tx - disable transmission * @usb: the zd1211rw-private USB structure * * Frees all URBs in the free list and marks the transmission as disabled. */ void zd_usb_disable_tx(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; atomic_set(&tx->enabled, 0); /* kill all submitted tx-urbs */ usb_kill_anchored_urbs(&tx->submitted); spin_lock_irqsave(&tx->lock, flags); WARN_ON(!skb_queue_empty(&tx->submitted_skbs)); WARN_ON(tx->submitted_urbs != 0); tx->submitted_urbs = 0; spin_unlock_irqrestore(&tx->lock, flags); /* The stopped state is ignored, relying on ieee80211_wake_queues() * in a potentionally following zd_usb_enable_tx(). */ } /** * zd_usb_enable_tx - enables transmission * @usb: a &struct zd_usb pointer * * This function enables transmission and prepares the &zd_usb_tx data * structure. */ void zd_usb_enable_tx(struct zd_usb *usb) { unsigned long flags; struct zd_usb_tx *tx = &usb->tx; spin_lock_irqsave(&tx->lock, flags); atomic_set(&tx->enabled, 1); tx->submitted_urbs = 0; ieee80211_wake_queues(zd_usb_to_hw(usb)); tx->stopped = 0; spin_unlock_irqrestore(&tx->lock, flags); } static void tx_dec_submitted_urbs(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; spin_lock_irqsave(&tx->lock, flags); --tx->submitted_urbs; if (tx->stopped && tx->submitted_urbs <= ZD_USB_TX_LOW) { ieee80211_wake_queues(zd_usb_to_hw(usb)); tx->stopped = 0; } spin_unlock_irqrestore(&tx->lock, flags); } static void tx_inc_submitted_urbs(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; spin_lock_irqsave(&tx->lock, flags); ++tx->submitted_urbs; if (!tx->stopped && tx->submitted_urbs > ZD_USB_TX_HIGH) { ieee80211_stop_queues(zd_usb_to_hw(usb)); tx->stopped = 1; } spin_unlock_irqrestore(&tx->lock, flags); } /** * tx_urb_complete - completes the execution of an URB * @urb: a URB * * This function is called if the URB has been transferred to a device or an * error has happened. */ static void tx_urb_complete(struct urb *urb) { int r; struct sk_buff *skb; struct ieee80211_tx_info *info; struct zd_usb *usb; struct zd_usb_tx *tx; skb = (struct sk_buff *)urb->context; info = IEEE80211_SKB_CB(skb); /* * grab 'usb' pointer before handing off the skb (since * it might be freed by zd_mac_tx_to_dev or mac80211) */ usb = &zd_hw_mac(info->rate_driver_data[0])->chip.usb; tx = &usb->tx; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); break; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } free_urb: skb_unlink(skb, &usb->tx.submitted_skbs); zd_mac_tx_to_dev(skb, urb->status); usb_free_urb(urb); tx_dec_submitted_urbs(usb); return; resubmit: usb_anchor_urb(urb, &tx->submitted); r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { usb_unanchor_urb(urb); dev_dbg_f(urb_dev(urb), "error resubmit urb %p %d\n", urb, r); goto free_urb; } } /** * zd_usb_tx: initiates transfer of a frame of the device * * @usb: the zd1211rw-private USB structure * @skb: a &struct sk_buff pointer * * This function tranmits a frame to the device. It doesn't wait for * completion. The frame must contain the control set and have all the * control set information available. * * The function returns 0 if the transfer has been successfully initiated. */ int zd_usb_tx(struct zd_usb *usb, struct sk_buff *skb) { int r; struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); struct usb_device *udev = zd_usb_to_usbdev(usb); struct urb *urb; struct zd_usb_tx *tx = &usb->tx; if (!atomic_read(&tx->enabled)) { r = -ENOENT; goto out; } urb = usb_alloc_urb(0, GFP_ATOMIC); if (!urb) { r = -ENOMEM; goto out; } usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, EP_DATA_OUT), skb->data, skb->len, tx_urb_complete, skb); info->rate_driver_data[1] = (void *)jiffies; skb_queue_tail(&tx->submitted_skbs, skb); usb_anchor_urb(urb, &tx->submitted); r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { dev_dbg_f(zd_usb_dev(usb), "error submit urb %p %d\n", urb, r); usb_unanchor_urb(urb); skb_unlink(skb, &tx->submitted_skbs); goto error; } tx_inc_submitted_urbs(usb); return 0; error: usb_free_urb(urb); out: return r; } static bool zd_tx_timeout(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; struct sk_buff_head *q = &tx->submitted_skbs; struct sk_buff *skb, *skbnext; struct ieee80211_tx_info *info; unsigned long flags, trans_start; bool have_timedout = false; spin_lock_irqsave(&q->lock, flags); skb_queue_walk_safe(q, skb, skbnext) { info = IEEE80211_SKB_CB(skb); trans_start = (unsigned long)info->rate_driver_data[1]; if (time_is_before_jiffies(trans_start + ZD_TX_TIMEOUT)) { have_timedout = true; break; } } spin_unlock_irqrestore(&q->lock, flags); return have_timedout; } static void zd_tx_watchdog_handler(struct work_struct *work) { struct zd_usb *usb = container_of(work, struct zd_usb, tx.watchdog_work.work); struct zd_usb_tx *tx = &usb->tx; if (!atomic_read(&tx->enabled) || !tx->watchdog_enabled) goto out; if (!zd_tx_timeout(usb)) goto out; /* TX halted, try reset */ dev_warn(zd_usb_dev(usb), "TX-stall detected, resetting device..."); usb_queue_reset_device(usb->intf); /* reset will stop this worker, don't rearm */ return; out: queue_delayed_work(zd_workqueue, &tx->watchdog_work, ZD_TX_WATCHDOG_INTERVAL); } void zd_tx_watchdog_enable(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; if (!tx->watchdog_enabled) { dev_dbg_f(zd_usb_dev(usb), "\n"); queue_delayed_work(zd_workqueue, &tx->watchdog_work, ZD_TX_WATCHDOG_INTERVAL); tx->watchdog_enabled = 1; } } void zd_tx_watchdog_disable(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; if (tx->watchdog_enabled) { dev_dbg_f(zd_usb_dev(usb), "\n"); tx->watchdog_enabled = 0; cancel_delayed_work_sync(&tx->watchdog_work); } } static void zd_rx_idle_timer_handler(struct work_struct *work) { struct zd_usb *usb = container_of(work, struct zd_usb, rx.idle_work.work); struct zd_mac *mac = zd_usb_to_mac(usb); if (!test_bit(ZD_DEVICE_RUNNING, &mac->flags)) return; dev_dbg_f(zd_usb_dev(usb), "\n"); /* 30 seconds since last rx, reset rx */ zd_usb_reset_rx(usb); } static void zd_usb_reset_rx_idle_timer_tasklet(unsigned long param) { struct zd_usb *usb = (struct zd_usb *)param; zd_usb_reset_rx_idle_timer(usb); } void zd_usb_reset_rx_idle_timer(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; mod_delayed_work(zd_workqueue, &rx->idle_work, ZD_RX_IDLE_INTERVAL); } static inline void init_usb_interrupt(struct zd_usb *usb) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_init(&intr->lock); intr->interval = int_urb_interval(zd_usb_to_usbdev(usb)); init_completion(&intr->read_regs.completion); atomic_set(&intr->read_regs_enabled, 0); intr->read_regs.cr_int_addr = cpu_to_le16((u16)CR_INTERRUPT); } static inline void init_usb_rx(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; spin_lock_init(&rx->lock); mutex_init(&rx->setup_mutex); if (interface_to_usbdev(usb->intf)->speed == USB_SPEED_HIGH) { rx->usb_packet_size = 512; } else { rx->usb_packet_size = 64; } ZD_ASSERT(rx->fragment_length == 0); INIT_DELAYED_WORK(&rx->idle_work, zd_rx_idle_timer_handler); rx->reset_timer_tasklet.func = zd_usb_reset_rx_idle_timer_tasklet; rx->reset_timer_tasklet.data = (unsigned long)usb; } static inline void init_usb_tx(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; spin_lock_init(&tx->lock); atomic_set(&tx->enabled, 0); tx->stopped = 0; skb_queue_head_init(&tx->submitted_skbs); init_usb_anchor(&tx->submitted); tx->submitted_urbs = 0; tx->watchdog_enabled = 0; INIT_DELAYED_WORK(&tx->watchdog_work, zd_tx_watchdog_handler); } void zd_usb_init(struct zd_usb *usb, struct ieee80211_hw *hw, struct usb_interface *intf) { memset(usb, 0, sizeof(*usb)); usb->intf = usb_get_intf(intf); usb_set_intfdata(usb->intf, hw); init_usb_anchor(&usb->submitted_cmds); init_usb_interrupt(usb); init_usb_tx(usb); init_usb_rx(usb); } void zd_usb_clear(struct zd_usb *usb) { usb_set_intfdata(usb->intf, NULL); usb_put_intf(usb->intf); ZD_MEMCLEAR(usb, sizeof(*usb)); /* FIXME: usb_interrupt, usb_tx, usb_rx? */ } static const char *speed(enum usb_device_speed speed) { switch (speed) { case USB_SPEED_LOW: return "low"; case USB_SPEED_FULL: return "full"; case USB_SPEED_HIGH: return "high"; default: return "unknown speed"; } } static int scnprint_id(struct usb_device *udev, char *buffer, size_t size) { return scnprintf(buffer, size, "%04hx:%04hx v%04hx %s", le16_to_cpu(udev->descriptor.idVendor), le16_to_cpu(udev->descriptor.idProduct), get_bcdDevice(udev), speed(udev->speed)); } int zd_usb_scnprint_id(struct zd_usb *usb, char *buffer, size_t size) { struct usb_device *udev = interface_to_usbdev(usb->intf); return scnprint_id(udev, buffer, size); } #ifdef DEBUG static void print_id(struct usb_device *udev) { char buffer[40]; scnprint_id(udev, buffer, sizeof(buffer)); buffer[sizeof(buffer)-1] = 0; dev_dbg_f(&udev->dev, "%s\n", buffer); } #else #define print_id(udev) do { } while (0) #endif static int eject_installer(struct usb_interface *intf) { struct usb_device *udev = interface_to_usbdev(intf); struct usb_host_interface *iface_desc = &intf->altsetting[0]; struct usb_endpoint_descriptor *endpoint; unsigned char *cmd; u8 bulk_out_ep; int r; /* Find bulk out endpoint */ for (r = 1; r >= 0; r--) { endpoint = &iface_desc->endpoint[r].desc; if (usb_endpoint_dir_out(endpoint) && usb_endpoint_xfer_bulk(endpoint)) { bulk_out_ep = endpoint->bEndpointAddress; break; } } if (r == -1) { dev_err(&udev->dev, "zd1211rw: Could not find bulk out endpoint\n"); return -ENODEV; } cmd = kzalloc(31, GFP_KERNEL); if (cmd == NULL) return -ENODEV; /* USB bulk command block */ cmd[0] = 0x55; /* bulk command signature */ cmd[1] = 0x53; /* bulk command signature */ cmd[2] = 0x42; /* bulk command signature */ cmd[3] = 0x43; /* bulk command signature */ cmd[14] = 6; /* command length */ cmd[15] = 0x1b; /* SCSI command: START STOP UNIT */ cmd[19] = 0x2; /* eject disc */ dev_info(&udev->dev, "Ejecting virtual installer media...\n"); r = usb_bulk_msg(udev, usb_sndbulkpipe(udev, bulk_out_ep), cmd, 31, NULL, 2000); kfree(cmd); if (r) return r; /* At this point, the device disconnects and reconnects with the real * ID numbers. */ usb_set_intfdata(intf, NULL); return 0; } int zd_usb_init_hw(struct zd_usb *usb) { int r; struct zd_mac *mac = zd_usb_to_mac(usb); dev_dbg_f(zd_usb_dev(usb), "\n"); r = upload_firmware(usb); if (r) { dev_err(zd_usb_dev(usb), "couldn't load firmware. Error number %d\n", r); return r; } r = usb_reset_configuration(zd_usb_to_usbdev(usb)); if (r) { dev_dbg_f(zd_usb_dev(usb), "couldn't reset configuration. Error number %d\n", r); return r; } r = zd_mac_init_hw(mac->hw); if (r) { dev_dbg_f(zd_usb_dev(usb), "couldn't initialize mac. Error number %d\n", r); return r; } usb->initialized = 1; return 0; } static int probe(struct usb_interface *intf, const struct usb_device_id *id) { int r; struct usb_device *udev = interface_to_usbdev(intf); struct zd_usb *usb; struct ieee80211_hw *hw = NULL; print_id(udev); if (id->driver_info & DEVICE_INSTALLER) return eject_installer(intf); switch (udev->speed) { case USB_SPEED_LOW: case USB_SPEED_FULL: case USB_SPEED_HIGH: break; default: dev_dbg_f(&intf->dev, "Unknown USB speed\n"); r = -ENODEV; goto error; } r = usb_reset_device(udev); if (r) { dev_err(&intf->dev, "couldn't reset usb device. Error number %d\n", r); goto error; } hw = zd_mac_alloc_hw(intf); if (hw == NULL) { r = -ENOMEM; goto error; } usb = &zd_hw_mac(hw)->chip.usb; usb->is_zd1211b = (id->driver_info == DEVICE_ZD1211B) != 0; r = zd_mac_preinit_hw(hw); if (r) { dev_dbg_f(&intf->dev, "couldn't initialize mac. Error number %d\n", r); goto error; } r = ieee80211_register_hw(hw); if (r) { dev_dbg_f(&intf->dev, "couldn't register device. Error number %d\n", r); goto error; } dev_dbg_f(&intf->dev, "successful\n"); dev_info(&intf->dev, "%s\n", wiphy_name(hw->wiphy)); return 0; error: usb_reset_device(interface_to_usbdev(intf)); if (hw) { zd_mac_clear(zd_hw_mac(hw)); ieee80211_free_hw(hw); } return r; } static void disconnect(struct usb_interface *intf) { struct ieee80211_hw *hw = zd_intf_to_hw(intf); struct zd_mac *mac; struct zd_usb *usb; /* Either something really bad happened, or we're just dealing with * a DEVICE_INSTALLER. */ if (hw == NULL) return; mac = zd_hw_mac(hw); usb = &mac->chip.usb; dev_dbg_f(zd_usb_dev(usb), "\n"); ieee80211_unregister_hw(hw); /* Just in case something has gone wrong! */ zd_usb_disable_tx(usb); zd_usb_disable_rx(usb); zd_usb_disable_int(usb); /* If the disconnect has been caused by a removal of the * driver module, the reset allows reloading of the driver. If the * reset will not be executed here, the upload of the firmware in the * probe function caused by the reloading of the driver will fail. */ usb_reset_device(interface_to_usbdev(intf)); zd_mac_clear(mac); ieee80211_free_hw(hw); dev_dbg(&intf->dev, "disconnected\n"); } static void zd_usb_resume(struct zd_usb *usb) { struct zd_mac *mac = zd_usb_to_mac(usb); int r; dev_dbg_f(zd_usb_dev(usb), "\n"); r = zd_op_start(zd_usb_to_hw(usb)); if (r < 0) { dev_warn(zd_usb_dev(usb), "Device resume failed " "with error code %d. Retrying...\n", r); if (usb->was_running) set_bit(ZD_DEVICE_RUNNING, &mac->flags); usb_queue_reset_device(usb->intf); return; } if (mac->type != NL80211_IFTYPE_UNSPECIFIED) { r = zd_restore_settings(mac); if (r < 0) { dev_dbg(zd_usb_dev(usb), "failed to restore settings, %d\n", r); return; } } } static void zd_usb_stop(struct zd_usb *usb) { dev_dbg_f(zd_usb_dev(usb), "\n"); zd_op_stop(zd_usb_to_hw(usb)); zd_usb_disable_tx(usb); zd_usb_disable_rx(usb); zd_usb_disable_int(usb); usb->initialized = 0; } static int pre_reset(struct usb_interface *intf) { struct ieee80211_hw *hw = usb_get_intfdata(intf); struct zd_mac *mac; struct zd_usb *usb; if (!hw || intf->condition != USB_INTERFACE_BOUND) return 0; mac = zd_hw_mac(hw); usb = &mac->chip.usb; usb->was_running = test_bit(ZD_DEVICE_RUNNING, &mac->flags); zd_usb_stop(usb); mutex_lock(&mac->chip.mutex); return 0; } static int post_reset(struct usb_interface *intf) { struct ieee80211_hw *hw = usb_get_intfdata(intf); struct zd_mac *mac; struct zd_usb *usb; if (!hw || intf->condition != USB_INTERFACE_BOUND) return 0; mac = zd_hw_mac(hw); usb = &mac->chip.usb; mutex_unlock(&mac->chip.mutex); if (usb->was_running) zd_usb_resume(usb); return 0; } static struct usb_driver driver = { .name = KBUILD_MODNAME, .id_table = usb_ids, .probe = probe, .disconnect = disconnect, .pre_reset = pre_reset, .post_reset = post_reset, .disable_hub_initiated_lpm = 1, }; struct workqueue_struct *zd_workqueue; static int __init usb_init(void) { int r; pr_debug("%s usb_init()\n", driver.name); zd_workqueue = create_singlethread_workqueue(driver.name); if (zd_workqueue == NULL) { printk(KERN_ERR "%s couldn't create workqueue\n", driver.name); return -ENOMEM; } r = usb_register(&driver); if (r) { destroy_workqueue(zd_workqueue); printk(KERN_ERR "%s usb_register() failed. Error number %d\n", driver.name, r); return r; } pr_debug("%s initialized\n", driver.name); return 0; } static void __exit usb_exit(void) { pr_debug("%s usb_exit()\n", driver.name); usb_deregister(&driver); destroy_workqueue(zd_workqueue); } module_init(usb_init); module_exit(usb_exit); static int zd_ep_regs_out_msg(struct usb_device *udev, void *data, int len, int *actual_length, int timeout) { /* In USB 2.0 mode EP_REGS_OUT endpoint is interrupt type. However in * USB 1.1 mode endpoint is bulk. Select correct type URB by endpoint * descriptor. */ struct usb_host_endpoint *ep; unsigned int pipe; pipe = usb_sndintpipe(udev, EP_REGS_OUT); ep = usb_pipe_endpoint(udev, pipe); if (!ep) return -EINVAL; if (usb_endpoint_xfer_int(&ep->desc)) { return usb_interrupt_msg(udev, pipe, data, len, actual_length, timeout); } else { pipe = usb_sndbulkpipe(udev, EP_REGS_OUT); return usb_bulk_msg(udev, pipe, data, len, actual_length, timeout); } } static int usb_int_regs_length(unsigned int count) { return sizeof(struct usb_int_regs) + count * sizeof(struct reg_data); } static void prepare_read_regs_int(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_irq(&intr->lock); atomic_set(&intr->read_regs_enabled, 1); intr->read_regs.req = req; intr->read_regs.req_count = count; reinit_completion(&intr->read_regs.completion); spin_unlock_irq(&intr->lock); } static void disable_read_regs_int(struct zd_usb *usb) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_irq(&intr->lock); atomic_set(&intr->read_regs_enabled, 0); spin_unlock_irq(&intr->lock); } static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count) { int i; struct zd_usb_interrupt *intr = &usb->intr; struct read_regs_int *rr = &intr->read_regs; struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; /* The created block size seems to be larger than expected. * However results appear to be correct. */ if (rr->length < usb_int_regs_length(count)) { dev_dbg_f(zd_usb_dev(usb), "error: actual length %d less than expected %d\n", rr->length, usb_int_regs_length(count)); return false; } if (rr->length > sizeof(rr->buffer)) { dev_dbg_f(zd_usb_dev(usb), "error: actual length %d exceeds buffer size %zu\n", rr->length, sizeof(rr->buffer)); return false; } for (i = 0; i < count; i++) { struct reg_data *rd = &regs->regs[i]; if (rd->addr != req->addr[i]) { dev_dbg_f(zd_usb_dev(usb), "rd[%d] addr %#06hx expected %#06hx\n", i, le16_to_cpu(rd->addr), le16_to_cpu(req->addr[i])); return false; } } return true; } static int get_results(struct zd_usb *usb, u16 *values, struct usb_req_read_regs *req, unsigned int count, bool *retry) { int r; int i; struct zd_usb_interrupt *intr = &usb->intr; struct read_regs_int *rr = &intr->read_regs; struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; spin_lock_irq(&intr->lock); r = -EIO; /* Read failed because firmware bug? */ *retry = !!intr->read_regs_int_overridden; if (*retry) goto error_unlock; if (!check_read_regs(usb, req, count)) { dev_dbg_f(zd_usb_dev(usb), "error: invalid read regs\n"); goto error_unlock; } for (i = 0; i < count; i++) { struct reg_data *rd = &regs->regs[i]; values[i] = le16_to_cpu(rd->value); } r = 0; error_unlock: spin_unlock_irq(&intr->lock); return r; } int zd_usb_ioread16v(struct zd_usb *usb, u16 *values, const zd_addr_t *addresses, unsigned int count) { int r, i, req_len, actual_req_len, try_count = 0; struct usb_device *udev; struct usb_req_read_regs *req = NULL; unsigned long timeout; bool retry = false; if (count < 1) { dev_dbg_f(zd_usb_dev(usb), "error: count is zero\n"); return -EINVAL; } if (count > USB_MAX_IOREAD16_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: count %u exceeds possible max %u\n", count, USB_MAX_IOREAD16_COUNT); return -EINVAL; } if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } if (!usb_int_enabled(usb)) { dev_dbg_f(zd_usb_dev(usb), "error: usb interrupt not enabled\n"); return -EWOULDBLOCK; } ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); BUILD_BUG_ON(sizeof(struct usb_req_read_regs) + USB_MAX_IOREAD16_COUNT * sizeof(__le16) > sizeof(usb->req_buf)); BUG_ON(sizeof(struct usb_req_read_regs) + count * sizeof(__le16) > sizeof(usb->req_buf)); req_len = sizeof(struct usb_req_read_regs) + count * sizeof(__le16); req = (void *)usb->req_buf; req->id = cpu_to_le16(USB_REQ_READ_REGS); for (i = 0; i < count; i++) req->addr[i] = cpu_to_le16((u16)addresses[i]); retry_read: try_count++; udev = zd_usb_to_usbdev(usb); prepare_read_regs_int(usb, req, count); r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg(). Error number %d\n", r); goto error; } if (req_len != actual_req_len) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()\n" " req_len %d != actual_req_len %d\n", req_len, actual_req_len); r = -EIO; goto error; } timeout = wait_for_completion_timeout(&usb->intr.read_regs.completion, msecs_to_jiffies(50)); if (!timeout) { disable_read_regs_int(usb); dev_dbg_f(zd_usb_dev(usb), "read timed out\n"); r = -ETIMEDOUT; goto error; } r = get_results(usb, values, req, count, &retry); if (retry && try_count < 20) { dev_dbg_f(zd_usb_dev(usb), "read retry, tries so far: %d\n", try_count); goto retry_read; } error: return r; } static void iowrite16v_urb_complete(struct urb *urb) { struct zd_usb *usb = urb->context; if (urb->status && !usb->cmd_error) usb->cmd_error = urb->status; if (!usb->cmd_error && urb->actual_length != urb->transfer_buffer_length) usb->cmd_error = -EIO; } static int zd_submit_waiting_urb(struct zd_usb *usb, bool last) { int r = 0; struct urb *urb = usb->urb_async_waiting; if (!urb) return 0; usb->urb_async_waiting = NULL; if (!last) urb->transfer_flags |= URB_NO_INTERRUPT; usb_anchor_urb(urb, &usb->submitted_cmds); r = usb_submit_urb(urb, GFP_KERNEL); if (r) { usb_unanchor_urb(urb); dev_dbg_f(zd_usb_dev(usb), "error in usb_submit_urb(). Error number %d\n", r); goto error; } /* fall-through with r == 0 */ error: usb_free_urb(urb); return r; } void zd_usb_iowrite16v_async_start(struct zd_usb *usb) { ZD_ASSERT(usb_anchor_empty(&usb->submitted_cmds)); ZD_ASSERT(usb->urb_async_waiting == NULL); ZD_ASSERT(!usb->in_async); ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); usb->in_async = 1; usb->cmd_error = 0; usb->urb_async_waiting = NULL; } int zd_usb_iowrite16v_async_end(struct zd_usb *usb, unsigned int timeout) { int r; ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); ZD_ASSERT(usb->in_async); /* Submit last iowrite16v URB */ r = zd_submit_waiting_urb(usb, true); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_submit_waiting_usb(). " "Error number %d\n", r); usb_kill_anchored_urbs(&usb->submitted_cmds); goto error; } if (timeout) timeout = usb_wait_anchor_empty_timeout(&usb->submitted_cmds, timeout); if (!timeout) { usb_kill_anchored_urbs(&usb->submitted_cmds); if (usb->cmd_error == -ENOENT) { dev_dbg_f(zd_usb_dev(usb), "timed out"); r = -ETIMEDOUT; goto error; } } r = usb->cmd_error; error: usb->in_async = 0; return r; } int zd_usb_iowrite16v_async(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, unsigned int count) { int r; struct usb_device *udev; struct usb_req_write_regs *req = NULL; int i, req_len; struct urb *urb; struct usb_host_endpoint *ep; ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); ZD_ASSERT(usb->in_async); if (count == 0) return 0; if (count > USB_MAX_IOWRITE16_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: count %u exceeds possible max %u\n", count, USB_MAX_IOWRITE16_COUNT); return -EINVAL; } if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } udev = zd_usb_to_usbdev(usb); ep = usb_pipe_endpoint(udev, usb_sndintpipe(udev, EP_REGS_OUT)); if (!ep) return -ENOENT; urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) return -ENOMEM; req_len = sizeof(struct usb_req_write_regs) + count * sizeof(struct reg_data); req = kmalloc(req_len, GFP_KERNEL); if (!req) { r = -ENOMEM; goto error; } req->id = cpu_to_le16(USB_REQ_WRITE_REGS); for (i = 0; i < count; i++) { struct reg_data *rw = &req->reg_writes[i]; rw->addr = cpu_to_le16((u16)ioreqs[i].addr); rw->value = cpu_to_le16(ioreqs[i].value); } /* In USB 2.0 mode endpoint is interrupt type. However in USB 1.1 mode * endpoint is bulk. Select correct type URB by endpoint descriptor. */ if (usb_endpoint_xfer_int(&ep->desc)) usb_fill_int_urb(urb, udev, usb_sndintpipe(udev, EP_REGS_OUT), req, req_len, iowrite16v_urb_complete, usb, ep->desc.bInterval); else usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, EP_REGS_OUT), req, req_len, iowrite16v_urb_complete, usb); urb->transfer_flags |= URB_FREE_BUFFER; /* Submit previous URB */ r = zd_submit_waiting_urb(usb, false); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_submit_waiting_usb(). " "Error number %d\n", r); goto error; } /* Delay submit so that URB_NO_INTERRUPT flag can be set for all URBs * of currect batch except for very last. */ usb->urb_async_waiting = urb; return 0; error: usb_free_urb(urb); return r; } int zd_usb_iowrite16v(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, unsigned int count) { int r; zd_usb_iowrite16v_async_start(usb); r = zd_usb_iowrite16v_async(usb, ioreqs, count); if (r) { zd_usb_iowrite16v_async_end(usb, 0); return r; } return zd_usb_iowrite16v_async_end(usb, 50 /* ms */); } int zd_usb_rfwrite(struct zd_usb *usb, u32 value, u8 bits) { int r; struct usb_device *udev; struct usb_req_rfwrite *req = NULL; int i, req_len, actual_req_len; u16 bit_value_template; if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } if (bits < USB_MIN_RFWRITE_BIT_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: bits %d are smaller than" " USB_MIN_RFWRITE_BIT_COUNT %d\n", bits, USB_MIN_RFWRITE_BIT_COUNT); return -EINVAL; } if (bits > USB_MAX_RFWRITE_BIT_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: bits %d exceed USB_MAX_RFWRITE_BIT_COUNT %d\n", bits, USB_MAX_RFWRITE_BIT_COUNT); return -EINVAL; } #ifdef DEBUG if (value & (~0UL << bits)) { dev_dbg_f(zd_usb_dev(usb), "error: value %#09x has bits >= %d set\n", value, bits); return -EINVAL; } #endif /* DEBUG */ dev_dbg_f(zd_usb_dev(usb), "value %#09x bits %d\n", value, bits); r = zd_usb_ioread16(usb, &bit_value_template, ZD_CR203); if (r) { dev_dbg_f(zd_usb_dev(usb), "error %d: Couldn't read ZD_CR203\n", r); return r; } bit_value_template &= ~(RF_IF_LE|RF_CLK|RF_DATA); ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); BUILD_BUG_ON(sizeof(struct usb_req_rfwrite) + USB_MAX_RFWRITE_BIT_COUNT * sizeof(__le16) > sizeof(usb->req_buf)); BUG_ON(sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16) > sizeof(usb->req_buf)); req_len = sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16); req = (void *)usb->req_buf; req->id = cpu_to_le16(USB_REQ_WRITE_RF); /* 1: 3683a, but not used in ZYDAS driver */ req->value = cpu_to_le16(2); req->bits = cpu_to_le16(bits); for (i = 0; i < bits; i++) { u16 bv = bit_value_template; if (value & (1 << (bits-1-i))) bv |= RF_DATA; req->bit_values[i] = cpu_to_le16(bv); } udev = zd_usb_to_usbdev(usb); r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg(). Error number %d\n", r); goto out; } if (req_len != actual_req_len) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()" " req_len %d != actual_req_len %d\n", req_len, actual_req_len); r = -EIO; goto out; } /* FALL-THROUGH with r == 0 */ out: return r; }
/* ZD1211 USB-WLAN driver for Linux * * Copyright (C) 2005-2007 <NAME> <<EMAIL>> * Copyright (C) 2006-2007 <NAME> <<EMAIL>> * Copyright (C) 2006-2007 <NAME> <<EMAIL>> * * 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 <linux/kernel.h> #include <linux/init.h> #include <linux/firmware.h> #include <linux/device.h> #include <linux/errno.h> #include <linux/slab.h> #include <linux/skbuff.h> #include <linux/usb.h> #include <linux/workqueue.h> #include <linux/module.h> #include <net/mac80211.h> #include <asm/unaligned.h> #include "zd_def.h" #include "zd_mac.h" #include "zd_usb.h" static struct usb_device_id usb_ids[] = { /* ZD1211 */ { USB_DEVICE(0x0105, 0x145f), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3401), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3402), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3407), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0586, 0x3409), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x079b, 0x004a), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0ace, 0x1211), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0ace, 0xa211), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b05, 0x170c), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b3b, 0x1630), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0b3b, 0x5630), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0df6, 0x9071), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x0df6, 0x9075), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x126f, 0xa006), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x129b, 0x1666), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x13b1, 0x001e), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x1435, 0x0711), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x14ea, 0xab10), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x14ea, 0xab13), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x300a), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x300b), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x3204), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x157e, 0x3207), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x1740, 0x2000), .driver_info = DEVICE_ZD1211 }, { USB_DEVICE(0x6891, 0xa727), .driver_info = DEVICE_ZD1211 }, /* ZD1211B */ { USB_DEVICE(0x0053, 0x5301), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0409, 0x0248), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0411, 0x00da), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0471, 0x1236), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0471, 0x1237), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x050d, 0x705c), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x054c, 0x0257), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x340a), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x340f), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3410), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3412), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0586, 0x3413), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x079b, 0x0062), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x07fa, 0x1196), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0x4505), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe501), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe503), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x083a, 0xe506), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0ace, 0x1215), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0ace, 0xb215), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0b05, 0x171b), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0baf, 0x0121), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0cde, 0x001a), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x0df6, 0x0036), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x129b, 0x1667), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x13b1, 0x0024), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x157e, 0x300d), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x1582, 0x6003), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x2019, 0x5303), .driver_info = DEVICE_ZD1211B }, { USB_DEVICE(0x2019, 0xed01), .driver_info = DEVICE_ZD1211B }, /* "Driverless" devices that need ejecting */ { USB_DEVICE(0x0ace, 0x2011), .driver_info = DEVICE_INSTALLER }, { USB_DEVICE(0x0ace, 0x20ff), .driver_info = DEVICE_INSTALLER }, {} }; MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("USB driver for devices with the ZD1211 chip."); MODULE_AUTHOR("<NAME>"); MODULE_AUTHOR("<NAME>"); FUNC_0("1.0"); MODULE_DEVICE_TABLE(usb, usb_ids); #define FW_ZD1211_PREFIX "zd1211/zd1211_" #define FW_ZD1211B_PREFIX "zd1211/zd1211b_" static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count); /* USB device initialization */ static void int_urb_complete(struct urb *urb); static int FUNC_1( const struct firmware **fw, const char *name, struct device *device) { int r; dev_dbg_f(device, "fw name %s\n", name); r = request_firmware(fw, name, device); if (r) dev_err(device, "Could not load firmware file %s. Error number %d\n", name, r); return r; } static inline u16 get_bcdDevice(const struct usb_device *udev) { return le16_to_cpu(udev->descriptor.bcdDevice); } enum upload_code_flags { REBOOT = 1, }; /* Ensures that MAX_TRANSFER_SIZE is even. */ #define MAX_TRANSFER_SIZE (USB_MAX_TRANSFER_SIZE & ~1) static int upload_code(struct usb_device *udev, const u8 *data, size_t size, u16 code_offset, int flags) { u8 *VAR_0; int r; /* USB request blocks need "kmalloced" buffers. */ VAR_0 = FUNC_2(MAX_TRANSFER_SIZE, GFP_KERNEL); if (!VAR_0) { r = -VAR_1; goto error; } size &= ~1; while (size > 0) { size_t transfer_size = size <= MAX_TRANSFER_SIZE ? size : MAX_TRANSFER_SIZE; dev_dbg_f(&udev->VAR_2, "transfer size %zu\n", transfer_size); memcpy(VAR_0, data, transfer_size); r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), USB_REQ_FIRMWARE_DOWNLOAD, USB_DIR_OUT | USB_TYPE_VENDOR, code_offset, 0, VAR_0, transfer_size, 1000 /* ms */); if (r < 0) { dev_err(&udev->VAR_2, "USB control request for firmware upload" " failed. Error number %d\n", r); goto error; } transfer_size = r & ~1; size -= transfer_size; data += transfer_size; code_offset += transfer_size/sizeof(u16); } if (flags & REBOOT) { u8 ret; /* Use "DMA-aware" buffer. */ r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), USB_REQ_FIRMWARE_CONFIRM, USB_DIR_IN | USB_TYPE_VENDOR, 0, 0, VAR_0, sizeof(ret), 5000 /* ms */); if (r != sizeof(ret)) { dev_err(&udev->VAR_2, "control request firmware confirmation failed." " Return value %d\n", r); if (r >= 0) r = -ENODEV; goto error; } ret = VAR_0[0]; if (ret & 0x80) { dev_err(&udev->VAR_2, "Internal error while downloading." " Firmware confirm return value %#04x\n", (unsigned int)ret); r = -ENODEV; goto error; } dev_dbg_f(&udev->VAR_2, "firmware confirm return value %#04x\n", (unsigned int)ret); } r = 0; error: FUNC_3(VAR_0); return r; } static u16 get_word(const void *data, u16 offset) { const __le16 *VAR_0 = data; return le16_to_cpu(VAR_0[offset]); } static char *get_fw_name(struct zd_usb *usb, char *buffer, size_t size, const char* postfix) { scnprintf(buffer, size, "%s%s", usb->is_zd1211b ? FW_ZD1211B_PREFIX : FW_ZD1211_PREFIX, postfix); return buffer; } static int FUNC_4(struct zd_usb *usb, const struct firmware *VAR_3) { struct usb_device *udev = zd_usb_to_usbdev(usb); const struct firmware *ur_fw = NULL; int offset; int r = 0; char fw_name[128]; r = FUNC_1(&ur_fw, get_fw_name(usb, fw_name, sizeof(fw_name), "ur"), &udev->VAR_2); if (r) goto error; r = upload_code(udev, ur_fw->data, ur_fw->size, FW_START, REBOOT); if (r) goto error; offset = (VAR_4 * sizeof(u16)); r = upload_code(udev, VAR_3->data + offset, VAR_3->size - offset, E2P_START + VAR_4, REBOOT); /* At this point, the vendor driver downloads the whole firmware * image, hacks around with version IDs, and uploads it again, * completely overwriting the boot code. We do not do this here as * it is not required on any tested devices, and it is suspected to * cause problems. */ error: release_firmware(ur_fw); return r; } static int FUNC_5(struct zd_usb *usb) { int r; u16 fw_bcdDevice; u16 bcdDevice; struct usb_device *udev = zd_usb_to_usbdev(usb); const struct firmware *VAR_3 = NULL; const struct firmware *uph_fw = NULL; char fw_name[128]; bcdDevice = get_bcdDevice(udev); r = FUNC_1(&VAR_3, get_fw_name(usb, fw_name, sizeof(fw_name), "ub"), &udev->VAR_2); if (r) goto error; fw_bcdDevice = get_word(VAR_3->data, E2P_DATA_OFFSET); if (fw_bcdDevice != bcdDevice) { FUNC_6(&udev->VAR_2, "firmware version %#06x and device bootcode version " "%#06x differ\n", fw_bcdDevice, bcdDevice); if (bcdDevice <= 0x4313) dev_warn(&udev->VAR_2, "device has old bootcode, please " "report success or failure\n"); r = FUNC_4(usb, VAR_3); if (r) goto error; } else { dev_dbg_f(&udev->VAR_2, "firmware device id %#06x is equal to the " "actual device id\n", fw_bcdDevice); } r = FUNC_1(&uph_fw, get_fw_name(usb, fw_name, sizeof(fw_name), "uphr"), &udev->VAR_2); if (r) goto error; r = upload_code(udev, uph_fw->data, uph_fw->size, FW_START, REBOOT); if (r) { dev_err(&udev->VAR_2, "Could not upload firmware code uph. Error number %d\n", r); } /* FALL-THROUGH */ error: release_firmware(VAR_3); release_firmware(uph_fw); return r; } MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ur"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "ur"); MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ub"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "ub"); MODULE_FIRMWARE(FW_ZD1211B_PREFIX "uphr"); MODULE_FIRMWARE(FW_ZD1211_PREFIX "uphr"); /* Read data from device address space using "firmware interface" which does * not require firmware to be loaded. */ int zd_usb_read_fw(struct zd_usb *usb, zd_addr_t addr, u8 *data, u16 len) { int r; struct usb_device *udev = zd_usb_to_usbdev(usb); u8 *buf; /* Use "DMA-aware" buffer. */ buf = FUNC_2(len, GFP_KERNEL); if (!buf) return -VAR_1; r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), USB_REQ_FIRMWARE_READ_DATA, USB_DIR_IN | 0x40, addr, 0, buf, len, 5000); if (r < 0) { dev_err(&udev->VAR_2, "read over firmware interface failed: %d\n", r); goto exit; } else if (r != len) { dev_err(&udev->VAR_2, "incomplete read over firmware interface: %d/%d\n", r, len); r = -VAR_5; goto exit; } r = 0; memcpy(data, buf, len); exit: FUNC_3(buf); return r; } #define urb_dev(urb) (&(urb)->dev->dev) static inline void FUNC_7(struct urb *urb) { struct zd_usb *usb = urb->context; struct zd_usb_interrupt *intr = &usb->intr; FUNC_8(&intr->lock); if (atomic_read(&intr->read_regs_enabled)) { atomic_set(&intr->read_regs_enabled, 0); intr->read_regs_int_overridden = 1; complete(&intr->read_regs.completion); } FUNC_9(&intr->lock); } static inline void handle_regs_int(struct urb *urb) { struct zd_usb *usb = urb->context; struct zd_usb_interrupt *intr = &usb->intr; int len; u16 int_num; FUNC_10(FUNC_11()); FUNC_8(&intr->lock); int_num = le16_to_cpu(*(__le16 *)(urb->transfer_buffer+2)); if (int_num == VAR_6) { struct zd_mac *mac = zd_hw_mac(zd_usb_to_hw(urb->context)); FUNC_8(&mac->lock); memcpy(&mac->intr_buffer, urb->transfer_buffer, USB_MAX_EP_INT_BUFFER); FUNC_9(&mac->lock); schedule_work(&mac->process_intr); } else if (atomic_read(&intr->read_regs_enabled)) { len = urb->actual_length; intr->read_regs.length = urb->actual_length; if (len > sizeof(intr->read_regs.buffer)) len = sizeof(intr->read_regs.buffer); memcpy(intr->read_regs.buffer, urb->transfer_buffer, len); /* Sometimes USB_INT_ID_REGS is not overridden, but comes after * USB_INT_ID_RETRY_FAILED. Read-reg retry then gets this * delayed USB_INT_ID_REGS, but leaves USB_INT_ID_REGS of * retry unhandled. Next read-reg command then might catch * this wrong USB_INT_ID_REGS. Fix by ignoring wrong reads. */ if (!check_read_regs(usb, intr->read_regs.req, intr->read_regs.VAR_7)) goto out; atomic_set(&intr->read_regs_enabled, 0); intr->read_regs_int_overridden = 0; complete(&intr->read_regs.completion); goto out; } out: FUNC_9(&intr->lock); /* CR_INTERRUPT might override read_reg too. */ if (int_num == VAR_6 && atomic_read(&intr->read_regs_enabled)) FUNC_7(urb); } static void int_urb_complete(struct urb *urb) { int r; struct usb_int_header *hdr; struct zd_usb *usb; struct zd_usb_interrupt *intr; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); return; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } if (urb->actual_length < sizeof(hdr)) { dev_dbg_f(urb_dev(urb), "error: urb %p to small\n", urb); goto resubmit; } hdr = urb->transfer_buffer; if (hdr->type != USB_INT_TYPE) { dev_dbg_f(urb_dev(urb), "error: urb %p wrong type\n", urb); goto resubmit; } /* USB_INT_ID_RETRY_FAILED triggered by tx-urb submit can override * pending USB_INT_ID_REGS causing read command timeout. */ usb = urb->context; intr = &usb->intr; if (hdr->id != USB_INT_ID_REGS && atomic_read(&intr->read_regs_enabled)) FUNC_7(urb); switch (hdr->id) { case USB_INT_ID_REGS: handle_regs_int(urb); break; case USB_INT_ID_RETRY_FAILED: zd_mac_tx_failed(urb); break; default: dev_dbg_f(urb_dev(urb), "error: urb %p unknown id %x\n", urb, (unsigned int)hdr->id); goto resubmit; } resubmit: r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { dev_dbg_f(urb_dev(urb), "error: resubmit urb %p err code %d\n", urb, r); /* TODO: add worker to reset intr->urb */ } return; } static inline int int_urb_interval(struct usb_device *udev) { switch (udev->speed) { case USB_SPEED_HIGH: return 4; case VAR_8: return 10; case USB_SPEED_FULL: default: return 1; } } static inline int usb_int_enabled(struct zd_usb *usb) { unsigned long flags; struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; spin_lock_irqsave(&intr->lock, flags); urb = intr->urb; spin_unlock_irqrestore(&intr->lock, flags); return urb != NULL; } int zd_usb_enable_int(struct zd_usb *usb) { int r; struct usb_device *udev = zd_usb_to_usbdev(usb); struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; dev_dbg_f(zd_usb_dev(usb), "\n"); urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) { r = -VAR_1; goto out; } FUNC_10(!irqs_disabled()); spin_lock_irq(&intr->lock); if (intr->urb) { FUNC_12(&intr->lock); r = 0; goto error_free_urb; } intr->urb = urb; FUNC_12(&intr->lock); r = -VAR_1; intr->buffer = usb_alloc_coherent(udev, USB_MAX_EP_INT_BUFFER, GFP_KERNEL, &intr->buffer_dma); if (!intr->buffer) { dev_dbg_f(zd_usb_dev(usb), "couldn't allocate transfer_buffer\n"); goto error_set_urb_null; } usb_fill_int_urb(urb, udev, usb_rcvintpipe(udev, VAR_9), intr->buffer, USB_MAX_EP_INT_BUFFER, int_urb_complete, usb, intr->interval); urb->transfer_dma = intr->buffer_dma; urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; dev_dbg_f(zd_usb_dev(usb), "submit urb %p\n", intr->urb); r = usb_submit_urb(urb, GFP_KERNEL); if (r) { dev_dbg_f(zd_usb_dev(usb), "Couldn't submit urb. Error number %d\n", r); goto error; } return 0; error: usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, intr->buffer, intr->buffer_dma); error_set_urb_null: spin_lock_irq(&intr->lock); intr->urb = NULL; FUNC_12(&intr->lock); error_free_urb: usb_free_urb(urb); out: return r; } void zd_usb_disable_int(struct zd_usb *usb) { unsigned long flags; struct usb_device *udev = zd_usb_to_usbdev(usb); struct zd_usb_interrupt *intr = &usb->intr; struct urb *urb; void *buffer; dma_addr_t buffer_dma; spin_lock_irqsave(&intr->lock, flags); urb = intr->urb; if (!urb) { spin_unlock_irqrestore(&intr->lock, flags); return; } intr->urb = NULL; buffer = intr->buffer; buffer_dma = intr->buffer_dma; intr->buffer = NULL; spin_unlock_irqrestore(&intr->lock, flags); usb_kill_urb(urb); dev_dbg_f(zd_usb_dev(usb), "urb %p killed\n", urb); usb_free_urb(urb); if (buffer) usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, buffer, buffer_dma); } static void handle_rx_packet(struct zd_usb *usb, const u8 *buffer, unsigned int length) { int VAR_10; const struct CLASS_0 *VAR_11; if (length < sizeof(struct CLASS_0)) { /* It's not a complete packet anyhow. */ dev_dbg_f(zd_usb_dev(usb), "invalid, small RX packet : %d\n", length); return; } VAR_11 = (struct CLASS_0 *) (buffer + length - sizeof(struct CLASS_0)); /* It might be that three frames are merged into a single URB * transaction. We have to check for the length info tag. * * While testing we discovered that length_info might be unaligned, * because if USB transactions are merged, the last packet will not * be padded. Unaligned access might also happen if the length_info * structure is not present. */ if (get_unaligned_le16(&VAR_11->tag) == VAR_12) { unsigned int l, VAR_13, n; for (VAR_10 = 0, l = 0;; VAR_10++) { VAR_13 = get_unaligned_le16(&VAR_11->length[VAR_10]); if (VAR_13 == 0) return; n = l+VAR_13; if (n > length) return; zd_mac_rx(zd_usb_to_hw(usb), buffer+l, VAR_13); if (VAR_10 >= 2) return; l = (n+3) & ~3; } } else { zd_mac_rx(zd_usb_to_hw(usb), buffer, length); } } static void FUNC_13(struct urb *urb) { int r; struct zd_usb *usb; struct zd_usb_rx *rx; const u8 *buffer; unsigned int length; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); return; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } buffer = urb->transfer_buffer; length = urb->actual_length; usb = urb->context; rx = &usb->rx; tasklet_schedule(&rx->reset_timer_tasklet); if (length%rx->usb_packet_size > rx->usb_packet_size-4) { /* If there is an old first fragment, we don't care. */ dev_dbg_f(urb_dev(urb), "*** first fragment ***\n"); FUNC_10(length <= ARRAY_SIZE(rx->fragment)); FUNC_8(&rx->lock); memcpy(rx->fragment, buffer, length); rx->fragment_length = length; FUNC_9(&rx->lock); goto resubmit; } FUNC_8(&rx->lock); if (rx->fragment_length > 0) { /* We are on a second fragment, we believe */ FUNC_10(length + rx->fragment_length <= ARRAY_SIZE(rx->fragment)); dev_dbg_f(urb_dev(urb), "*** second fragment ***\n"); memcpy(rx->fragment+rx->fragment_length, buffer, length); handle_rx_packet(usb, rx->fragment, rx->fragment_length + length); rx->fragment_length = 0; FUNC_9(&rx->lock); } else { FUNC_9(&rx->lock); handle_rx_packet(usb, buffer, length); } resubmit: r = usb_submit_urb(urb, GFP_ATOMIC); if (r) dev_dbg_f(urb_dev(urb), "urb %p resubmit error %d\n", urb, r); } static struct urb *alloc_rx_urb(struct zd_usb *usb) { struct usb_device *udev = zd_usb_to_usbdev(usb); struct urb *urb; void *buffer; urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) return NULL; buffer = usb_alloc_coherent(udev, USB_MAX_RX_SIZE, GFP_KERNEL, &urb->transfer_dma); if (!buffer) { usb_free_urb(urb); return NULL; } usb_fill_bulk_urb(urb, udev, FUNC_14(udev, EP_DATA_IN), buffer, USB_MAX_RX_SIZE, VAR_14, usb); urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; return urb; } static void free_rx_urb(struct urb *urb) { if (!urb) return; usb_free_coherent(urb->VAR_2, urb->transfer_buffer_length, urb->transfer_buffer, urb->transfer_dma); usb_free_urb(urb); } static int __zd_usb_enable_rx(struct zd_usb *usb) { int VAR_10, r; struct zd_usb_rx *rx = &usb->rx; struct urb **urbs; dev_dbg_f(zd_usb_dev(usb), "\n"); r = -VAR_1; urbs = kcalloc(RX_URBS_COUNT, sizeof(struct urb *), GFP_KERNEL); if (!urbs) goto error; for (VAR_10 = 0; VAR_10 < RX_URBS_COUNT; VAR_10++) { urbs[VAR_10] = alloc_rx_urb(usb); if (!urbs[VAR_10]) goto error; } FUNC_10(!irqs_disabled()); spin_lock_irq(&rx->lock); if (rx->urbs) { FUNC_12(&rx->lock); r = 0; goto error; } rx->urbs = urbs; rx->urbs_count = RX_URBS_COUNT; FUNC_12(&rx->lock); for (VAR_10 = 0; VAR_10 < RX_URBS_COUNT; VAR_10++) { r = usb_submit_urb(urbs[VAR_10], GFP_KERNEL); if (r) goto error_submit; } return 0; error_submit: for (VAR_10 = 0; VAR_10 < RX_URBS_COUNT; VAR_10++) { usb_kill_urb(urbs[VAR_10]); } spin_lock_irq(&rx->lock); rx->urbs = NULL; rx->urbs_count = 0; FUNC_12(&rx->lock); error: if (urbs) { for (VAR_10 = 0; VAR_10 < RX_URBS_COUNT; VAR_10++) free_rx_urb(urbs[VAR_10]); } return r; } int zd_usb_enable_rx(struct zd_usb *usb) { int r; struct zd_usb_rx *rx = &usb->rx; mutex_lock(&rx->VAR_15); r = __zd_usb_enable_rx(usb); mutex_unlock(&rx->VAR_15); zd_usb_reset_rx_idle_timer(usb); return r; } static void __zd_usb_disable_rx(struct zd_usb *usb) { int VAR_10; unsigned long flags; struct urb **urbs; unsigned int count; struct zd_usb_rx *rx = &usb->rx; spin_lock_irqsave(&rx->lock, flags); urbs = rx->urbs; count = rx->urbs_count; spin_unlock_irqrestore(&rx->lock, flags); if (!urbs) return; for (VAR_10 = 0; VAR_10 < count; VAR_10++) { usb_kill_urb(urbs[VAR_10]); free_rx_urb(urbs[VAR_10]); } FUNC_3(urbs); spin_lock_irqsave(&rx->lock, flags); rx->urbs = NULL; rx->urbs_count = 0; spin_unlock_irqrestore(&rx->lock, flags); } void zd_usb_disable_rx(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; mutex_lock(&rx->VAR_15); __zd_usb_disable_rx(usb); mutex_unlock(&rx->VAR_15); tasklet_kill(&rx->reset_timer_tasklet); cancel_delayed_work_sync(&rx->VAR_16); } static void zd_usb_reset_rx(struct zd_usb *usb) { bool do_reset; struct zd_usb_rx *rx = &usb->rx; unsigned long flags; mutex_lock(&rx->VAR_15); spin_lock_irqsave(&rx->lock, flags); do_reset = rx->urbs != NULL; spin_unlock_irqrestore(&rx->lock, flags); if (do_reset) { __zd_usb_disable_rx(usb); __zd_usb_enable_rx(usb); } mutex_unlock(&rx->VAR_15); if (do_reset) zd_usb_reset_rx_idle_timer(usb); } /** * zd_usb_disable_tx - disable transmission * @usb: the zd1211rw-private USB structure * * Frees all URBs in the free list and marks the transmission as disabled. */ void zd_usb_disable_tx(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; atomic_set(&tx->enabled, 0); /* kill all submitted tx-urbs */ usb_kill_anchored_urbs(&tx->VAR_17); spin_lock_irqsave(&tx->lock, flags); WARN_ON(!skb_queue_empty(&tx->submitted_skbs)); WARN_ON(tx->submitted_urbs != 0); tx->submitted_urbs = 0; spin_unlock_irqrestore(&tx->lock, flags); /* The stopped state is ignored, relying on ieee80211_wake_queues() * in a potentionally following zd_usb_enable_tx(). */ } /** * zd_usb_enable_tx - enables transmission * @usb: a &struct zd_usb pointer * * This function enables transmission and prepares the &zd_usb_tx data * structure. */ void zd_usb_enable_tx(struct zd_usb *usb) { unsigned long flags; struct zd_usb_tx *tx = &usb->tx; spin_lock_irqsave(&tx->lock, flags); atomic_set(&tx->enabled, 1); tx->submitted_urbs = 0; ieee80211_wake_queues(zd_usb_to_hw(usb)); tx->stopped = 0; spin_unlock_irqrestore(&tx->lock, flags); } static void tx_dec_submitted_urbs(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; spin_lock_irqsave(&tx->lock, flags); --tx->submitted_urbs; if (tx->stopped && tx->submitted_urbs <= ZD_USB_TX_LOW) { ieee80211_wake_queues(zd_usb_to_hw(usb)); tx->stopped = 0; } spin_unlock_irqrestore(&tx->lock, flags); } static void tx_inc_submitted_urbs(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; unsigned long flags; spin_lock_irqsave(&tx->lock, flags); ++tx->submitted_urbs; if (!tx->stopped && tx->submitted_urbs > ZD_USB_TX_HIGH) { ieee80211_stop_queues(zd_usb_to_hw(usb)); tx->stopped = 1; } spin_unlock_irqrestore(&tx->lock, flags); } /** * tx_urb_complete - completes the execution of an URB * @urb: a URB * * This function is called if the URB has been transferred to a device or an * error has happened. */ static void tx_urb_complete(struct urb *urb) { int r; struct sk_buff *VAR_18; struct ieee80211_tx_info *info; struct zd_usb *usb; struct zd_usb_tx *tx; VAR_18 = (struct sk_buff *)urb->context; info = IEEE80211_SKB_CB(VAR_18); /* * grab 'usb' pointer before handing off the skb (since * it might be freed by zd_mac_tx_to_dev or mac80211) */ usb = &zd_hw_mac(info->rate_driver_data[0])->chip.usb; tx = &usb->tx; switch (urb->status) { case 0: break; case -ESHUTDOWN: case -EINVAL: case -ENODEV: case -ENOENT: case -ECONNRESET: case -EPIPE: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); break; default: dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); goto resubmit; } free_urb: skb_unlink(VAR_18, &usb->tx.submitted_skbs); zd_mac_tx_to_dev(VAR_18, urb->status); usb_free_urb(urb); tx_dec_submitted_urbs(usb); return; resubmit: usb_anchor_urb(urb, &tx->VAR_17); r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { usb_unanchor_urb(urb); dev_dbg_f(urb_dev(urb), "error resubmit urb %p %d\n", urb, r); goto free_urb; } } /** * zd_usb_tx: initiates transfer of a frame of the device * * @usb: the zd1211rw-private USB structure * @skb: a &struct sk_buff pointer * * This function tranmits a frame to the device. It doesn't wait for * completion. The frame must contain the control set and have all the * control set information available. * * The function returns 0 if the transfer has been successfully initiated. */ int zd_usb_tx(struct zd_usb *usb, struct sk_buff *VAR_18) { int r; struct ieee80211_tx_info *info = IEEE80211_SKB_CB(VAR_18); struct usb_device *udev = zd_usb_to_usbdev(usb); struct urb *urb; struct zd_usb_tx *tx = &usb->tx; if (!atomic_read(&tx->enabled)) { r = -ENOENT; goto out; } urb = usb_alloc_urb(0, GFP_ATOMIC); if (!urb) { r = -VAR_1; goto out; } usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, VAR_19), VAR_18->data, VAR_18->len, tx_urb_complete, VAR_18); info->rate_driver_data[1] = (void *)jiffies; skb_queue_tail(&tx->submitted_skbs, VAR_18); usb_anchor_urb(urb, &tx->VAR_17); r = usb_submit_urb(urb, GFP_ATOMIC); if (r) { dev_dbg_f(zd_usb_dev(usb), "error submit urb %p %d\n", urb, r); usb_unanchor_urb(urb); skb_unlink(VAR_18, &tx->submitted_skbs); goto error; } tx_inc_submitted_urbs(usb); return 0; error: usb_free_urb(urb); out: return r; } static bool zd_tx_timeout(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; struct sk_buff_head *q = &tx->submitted_skbs; struct sk_buff *VAR_18, *skbnext; struct ieee80211_tx_info *info; unsigned long flags, trans_start; bool have_timedout = false; spin_lock_irqsave(&q->lock, flags); skb_queue_walk_safe(q, VAR_18, skbnext) { info = IEEE80211_SKB_CB(VAR_18); trans_start = (unsigned long)info->rate_driver_data[1]; if (FUNC_15(trans_start + ZD_TX_TIMEOUT)) { have_timedout = true; break; } } spin_unlock_irqrestore(&q->lock, flags); return have_timedout; } static void zd_tx_watchdog_handler(struct work_struct *VAR_20) { struct zd_usb *usb = container_of(VAR_20, struct zd_usb, tx.watchdog_work.VAR_20); struct zd_usb_tx *tx = &usb->tx; if (!atomic_read(&tx->enabled) || !tx->watchdog_enabled) goto out; if (!zd_tx_timeout(usb)) goto out; /* TX halted, try reset */ dev_warn(zd_usb_dev(usb), "TX-stall detected, resetting device..."); usb_queue_reset_device(usb->intf); /* reset will stop this worker, don't rearm */ return; out: queue_delayed_work(VAR_21, &tx->watchdog_work, ZD_TX_WATCHDOG_INTERVAL); } void zd_tx_watchdog_enable(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; if (!tx->watchdog_enabled) { dev_dbg_f(zd_usb_dev(usb), "\n"); queue_delayed_work(VAR_21, &tx->watchdog_work, ZD_TX_WATCHDOG_INTERVAL); tx->watchdog_enabled = 1; } } void zd_tx_watchdog_disable(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; if (tx->watchdog_enabled) { dev_dbg_f(zd_usb_dev(usb), "\n"); tx->watchdog_enabled = 0; cancel_delayed_work_sync(&tx->watchdog_work); } } static void zd_rx_idle_timer_handler(struct work_struct *VAR_20) { struct zd_usb *usb = container_of(VAR_20, struct zd_usb, rx.VAR_16.VAR_20); struct zd_mac *mac = zd_usb_to_mac(usb); if (!test_bit(ZD_DEVICE_RUNNING, &mac->flags)) return; dev_dbg_f(zd_usb_dev(usb), "\n"); /* 30 seconds since last rx, reset rx */ zd_usb_reset_rx(usb); } static void zd_usb_reset_rx_idle_timer_tasklet(unsigned long param) { struct zd_usb *usb = (struct zd_usb *)param; zd_usb_reset_rx_idle_timer(usb); } void zd_usb_reset_rx_idle_timer(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; mod_delayed_work(VAR_21, &rx->VAR_16, ZD_RX_IDLE_INTERVAL); } static inline void FUNC_16(struct zd_usb *usb) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_init(&intr->lock); intr->interval = int_urb_interval(zd_usb_to_usbdev(usb)); init_completion(&intr->read_regs.completion); atomic_set(&intr->read_regs_enabled, 0); intr->read_regs.cr_int_addr = cpu_to_le16((u16)VAR_6); } static inline void init_usb_rx(struct zd_usb *usb) { struct zd_usb_rx *rx = &usb->rx; spin_lock_init(&rx->lock); mutex_init(&rx->VAR_15); if (interface_to_usbdev(usb->intf)->speed == USB_SPEED_HIGH) { rx->usb_packet_size = 512; } else { rx->usb_packet_size = 64; } FUNC_10(rx->fragment_length == 0); FUNC_17(&rx->VAR_16, zd_rx_idle_timer_handler); rx->reset_timer_tasklet.func = zd_usb_reset_rx_idle_timer_tasklet; rx->reset_timer_tasklet.data = (unsigned long)usb; } static inline void init_usb_tx(struct zd_usb *usb) { struct zd_usb_tx *tx = &usb->tx; spin_lock_init(&tx->lock); atomic_set(&tx->enabled, 0); tx->stopped = 0; skb_queue_head_init(&tx->submitted_skbs); init_usb_anchor(&tx->VAR_17); tx->submitted_urbs = 0; tx->watchdog_enabled = 0; FUNC_17(&tx->watchdog_work, zd_tx_watchdog_handler); } void zd_usb_init(struct zd_usb *usb, struct ieee80211_hw *hw, struct usb_interface *intf) { memset(usb, 0, sizeof(*usb)); usb->intf = usb_get_intf(intf); usb_set_intfdata(usb->intf, hw); init_usb_anchor(&usb->submitted_cmds); FUNC_16(usb); init_usb_tx(usb); init_usb_rx(usb); } void zd_usb_clear(struct zd_usb *usb) { usb_set_intfdata(usb->intf, NULL); usb_put_intf(usb->intf); ZD_MEMCLEAR(usb, sizeof(*usb)); /* FIXME: usb_interrupt, usb_tx, usb_rx? */ } static const char *speed(enum CLASS_1 speed) { switch (speed) { case VAR_8: return "low"; case USB_SPEED_FULL: return "full"; case USB_SPEED_HIGH: return "high"; default: return "unknown speed"; } } static int scnprint_id(struct usb_device *udev, char *buffer, size_t size) { return scnprintf(buffer, size, "%04hx:%04hx v%04hx %s", le16_to_cpu(udev->descriptor.idVendor), le16_to_cpu(udev->descriptor.idProduct), get_bcdDevice(udev), speed(udev->speed)); } int zd_usb_scnprint_id(struct zd_usb *usb, char *buffer, size_t size) { struct usb_device *udev = interface_to_usbdev(usb->intf); return scnprint_id(udev, buffer, size); } #ifdef DEBUG static void print_id(struct usb_device *udev) { char buffer[40]; scnprint_id(udev, buffer, sizeof(buffer)); buffer[sizeof(buffer)-1] = 0; dev_dbg_f(&udev->VAR_2, "%s\n", buffer); } #else #define print_id(udev) do { } while (0) #endif static int eject_installer(struct usb_interface *intf) { struct usb_device *udev = interface_to_usbdev(intf); struct usb_host_interface *iface_desc = &intf->altsetting[0]; struct usb_endpoint_descriptor *endpoint; unsigned char *cmd; u8 bulk_out_ep; int r; /* Find bulk out endpoint */ for (r = 1; r >= 0; r--) { endpoint = &iface_desc->endpoint[r].desc; if (usb_endpoint_dir_out(endpoint) && usb_endpoint_xfer_bulk(endpoint)) { bulk_out_ep = endpoint->VAR_22; break; } } if (r == -1) { dev_err(&udev->VAR_2, "zd1211rw: Could not find bulk out endpoint\n"); return -ENODEV; } cmd = kzalloc(31, GFP_KERNEL); if (cmd == NULL) return -ENODEV; /* USB bulk command block */ cmd[0] = 0x55; /* bulk command signature */ cmd[1] = 0x53; /* bulk command signature */ cmd[2] = 0x42; /* bulk command signature */ cmd[3] = 0x43; /* bulk command signature */ cmd[14] = 6; /* command length */ cmd[15] = 0x1b; /* SCSI command: START STOP UNIT */ cmd[19] = 0x2; /* eject disc */ FUNC_6(&udev->VAR_2, "Ejecting virtual installer media...\n"); r = usb_bulk_msg(udev, usb_sndbulkpipe(udev, bulk_out_ep), cmd, 31, NULL, 2000); FUNC_3(cmd); if (r) return r; /* At this point, the device disconnects and reconnects with the real * ID numbers. */ usb_set_intfdata(intf, NULL); return 0; } int zd_usb_init_hw(struct zd_usb *usb) { int r; struct zd_mac *mac = zd_usb_to_mac(usb); dev_dbg_f(zd_usb_dev(usb), "\n"); r = FUNC_5(usb); if (r) { dev_err(zd_usb_dev(usb), "couldn't load firmware. Error number %d\n", r); return r; } r = usb_reset_configuration(zd_usb_to_usbdev(usb)); if (r) { dev_dbg_f(zd_usb_dev(usb), "couldn't reset configuration. Error number %d\n", r); return r; } r = zd_mac_init_hw(mac->hw); if (r) { dev_dbg_f(zd_usb_dev(usb), "couldn't initialize mac. Error number %d\n", r); return r; } usb->initialized = 1; return 0; } static int probe(struct usb_interface *intf, const struct usb_device_id *id) { int r; struct usb_device *udev = interface_to_usbdev(intf); struct zd_usb *usb; struct ieee80211_hw *hw = NULL; print_id(udev); if (id->driver_info & DEVICE_INSTALLER) return eject_installer(intf); switch (udev->speed) { case VAR_8: case USB_SPEED_FULL: case USB_SPEED_HIGH: break; default: dev_dbg_f(&intf->VAR_2, "Unknown USB speed\n"); r = -ENODEV; goto error; } r = usb_reset_device(udev); if (r) { dev_err(&intf->VAR_2, "couldn't reset usb device. Error number %d\n", r); goto error; } hw = FUNC_18(intf); if (hw == NULL) { r = -VAR_1; goto error; } usb = &zd_hw_mac(hw)->chip.usb; usb->is_zd1211b = (id->driver_info == DEVICE_ZD1211B) != 0; r = zd_mac_preinit_hw(hw); if (r) { dev_dbg_f(&intf->VAR_2, "couldn't initialize mac. Error number %d\n", r); goto error; } r = ieee80211_register_hw(hw); if (r) { dev_dbg_f(&intf->VAR_2, "couldn't register device. Error number %d\n", r); goto error; } dev_dbg_f(&intf->VAR_2, "successful\n"); FUNC_6(&intf->VAR_2, "%s\n", wiphy_name(hw->wiphy)); return 0; error: usb_reset_device(interface_to_usbdev(intf)); if (hw) { zd_mac_clear(zd_hw_mac(hw)); ieee80211_free_hw(hw); } return r; } static void disconnect(struct usb_interface *intf) { struct ieee80211_hw *hw = zd_intf_to_hw(intf); struct zd_mac *mac; struct zd_usb *usb; /* Either something really bad happened, or we're just dealing with * a DEVICE_INSTALLER. */ if (hw == NULL) return; mac = zd_hw_mac(hw); usb = &mac->chip.usb; dev_dbg_f(zd_usb_dev(usb), "\n"); ieee80211_unregister_hw(hw); /* Just in case something has gone wrong! */ zd_usb_disable_tx(usb); zd_usb_disable_rx(usb); zd_usb_disable_int(usb); /* If the disconnect has been caused by a removal of the * driver module, the reset allows reloading of the driver. If the * reset will not be executed here, the upload of the firmware in the * probe function caused by the reloading of the driver will fail. */ usb_reset_device(interface_to_usbdev(intf)); zd_mac_clear(mac); ieee80211_free_hw(hw); dev_dbg(&intf->VAR_2, "disconnected\n"); } static void zd_usb_resume(struct zd_usb *usb) { struct zd_mac *mac = zd_usb_to_mac(usb); int r; dev_dbg_f(zd_usb_dev(usb), "\n"); r = zd_op_start(zd_usb_to_hw(usb)); if (r < 0) { dev_warn(zd_usb_dev(usb), "Device resume failed " "with error code %d. Retrying...\n", r); if (usb->was_running) set_bit(ZD_DEVICE_RUNNING, &mac->flags); usb_queue_reset_device(usb->intf); return; } if (mac->type != NL80211_IFTYPE_UNSPECIFIED) { r = zd_restore_settings(mac); if (r < 0) { dev_dbg(zd_usb_dev(usb), "failed to restore settings, %d\n", r); return; } } } static void zd_usb_stop(struct zd_usb *usb) { dev_dbg_f(zd_usb_dev(usb), "\n"); zd_op_stop(zd_usb_to_hw(usb)); zd_usb_disable_tx(usb); zd_usb_disable_rx(usb); zd_usb_disable_int(usb); usb->initialized = 0; } static int pre_reset(struct usb_interface *intf) { struct ieee80211_hw *hw = usb_get_intfdata(intf); struct zd_mac *mac; struct zd_usb *usb; if (!hw || intf->condition != USB_INTERFACE_BOUND) return 0; mac = zd_hw_mac(hw); usb = &mac->chip.usb; usb->was_running = test_bit(ZD_DEVICE_RUNNING, &mac->flags); zd_usb_stop(usb); mutex_lock(&mac->chip.mutex); return 0; } static int post_reset(struct usb_interface *intf) { struct ieee80211_hw *hw = usb_get_intfdata(intf); struct zd_mac *mac; struct zd_usb *usb; if (!hw || intf->condition != USB_INTERFACE_BOUND) return 0; mac = zd_hw_mac(hw); usb = &mac->chip.usb; mutex_unlock(&mac->chip.mutex); if (usb->was_running) zd_usb_resume(usb); return 0; } static struct usb_driver VAR_23 = { .name = VAR_24, .id_table = usb_ids, .probe = probe, .disconnect = disconnect, .pre_reset = pre_reset, .post_reset = post_reset, .disable_hub_initiated_lpm = 1, }; struct workqueue_struct *VAR_21; static int __init usb_init(void) { int r; pr_debug("%s usb_init()\n", VAR_23.name); VAR_21 = create_singlethread_workqueue(VAR_23.name); if (VAR_21 == NULL) { printk(KERN_ERR "%s couldn't create workqueue\n", VAR_23.name); return -VAR_1; } r = usb_register(&VAR_23); if (r) { destroy_workqueue(VAR_21); printk(KERN_ERR "%s usb_register() failed. Error number %d\n", VAR_23.name, r); return r; } pr_debug("%s initialized\n", VAR_23.name); return 0; } static void __exit usb_exit(void) { pr_debug("%s usb_exit()\n", VAR_23.name); FUNC_19(&VAR_23); destroy_workqueue(VAR_21); } module_init(usb_init); module_exit(usb_exit); static int zd_ep_regs_out_msg(struct usb_device *udev, void *data, int len, int *actual_length, int timeout) { /* In USB 2.0 mode EP_REGS_OUT endpoint is interrupt type. However in * USB 1.1 mode endpoint is bulk. Select correct type URB by endpoint * descriptor. */ struct usb_host_endpoint *ep; unsigned int pipe; pipe = usb_sndintpipe(udev, VAR_25); ep = usb_pipe_endpoint(udev, pipe); if (!ep) return -EINVAL; if (usb_endpoint_xfer_int(&ep->desc)) { return FUNC_20(udev, pipe, data, len, actual_length, timeout); } else { pipe = usb_sndbulkpipe(udev, VAR_25); return usb_bulk_msg(udev, pipe, data, len, actual_length, timeout); } } static int usb_int_regs_length(unsigned int count) { return sizeof(struct usb_int_regs) + count * sizeof(struct reg_data); } static void prepare_read_regs_int(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_irq(&intr->lock); atomic_set(&intr->read_regs_enabled, 1); intr->read_regs.req = req; intr->read_regs.VAR_7 = count; reinit_completion(&intr->read_regs.completion); FUNC_12(&intr->lock); } static void disable_read_regs_int(struct zd_usb *usb) { struct zd_usb_interrupt *intr = &usb->intr; spin_lock_irq(&intr->lock); atomic_set(&intr->read_regs_enabled, 0); FUNC_12(&intr->lock); } static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, unsigned int count) { int VAR_10; struct zd_usb_interrupt *intr = &usb->intr; struct read_regs_int *rr = &intr->read_regs; struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; /* The created block size seems to be larger than expected. * However results appear to be correct. */ if (rr->length < usb_int_regs_length(count)) { dev_dbg_f(zd_usb_dev(usb), "error: actual length %d less than expected %d\n", rr->length, usb_int_regs_length(count)); return false; } if (rr->length > sizeof(rr->buffer)) { dev_dbg_f(zd_usb_dev(usb), "error: actual length %d exceeds buffer size %zu\n", rr->length, sizeof(rr->buffer)); return false; } for (VAR_10 = 0; VAR_10 < count; VAR_10++) { struct reg_data *rd = &regs->regs[VAR_10]; if (rd->addr != req->addr[VAR_10]) { dev_dbg_f(zd_usb_dev(usb), "rd[%d] addr %#06hx expected %#06hx\n", VAR_10, le16_to_cpu(rd->addr), le16_to_cpu(req->addr[VAR_10])); return false; } } return true; } static int get_results(struct zd_usb *usb, u16 *VAR_26, struct usb_req_read_regs *req, unsigned int count, bool *retry) { int r; int VAR_10; struct zd_usb_interrupt *intr = &usb->intr; struct read_regs_int *rr = &intr->read_regs; struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; spin_lock_irq(&intr->lock); r = -VAR_5; /* Read failed because firmware bug? */ *retry = !!intr->read_regs_int_overridden; if (*retry) goto error_unlock; if (!check_read_regs(usb, req, count)) { dev_dbg_f(zd_usb_dev(usb), "error: invalid read regs\n"); goto error_unlock; } for (VAR_10 = 0; VAR_10 < count; VAR_10++) { struct reg_data *rd = &regs->regs[VAR_10]; VAR_26[VAR_10] = le16_to_cpu(rd->value); } r = 0; error_unlock: FUNC_12(&intr->lock); return r; } int zd_usb_ioread16v(struct zd_usb *usb, u16 *VAR_26, const zd_addr_t *addresses, unsigned int count) { int r, VAR_10, req_len, actual_req_len, try_count = 0; struct usb_device *udev; struct usb_req_read_regs *req = NULL; unsigned long timeout; bool retry = false; if (count < 1) { dev_dbg_f(zd_usb_dev(usb), "error: count is zero\n"); return -EINVAL; } if (count > VAR_27) { dev_dbg_f(zd_usb_dev(usb), "error: count %u exceeds possible max %u\n", count, VAR_27); return -EINVAL; } if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } if (!usb_int_enabled(usb)) { dev_dbg_f(zd_usb_dev(usb), "error: usb interrupt not enabled\n"); return -EWOULDBLOCK; } FUNC_10(mutex_is_locked(&FUNC_21(usb)->mutex)); BUILD_BUG_ON(sizeof(struct usb_req_read_regs) + VAR_27 * sizeof(__le16) > sizeof(usb->req_buf)); BUG_ON(sizeof(struct usb_req_read_regs) + count * sizeof(__le16) > sizeof(usb->req_buf)); req_len = sizeof(struct usb_req_read_regs) + count * sizeof(__le16); req = (void *)usb->req_buf; req->id = cpu_to_le16(VAR_28); for (VAR_10 = 0; VAR_10 < count; VAR_10++) req->addr[VAR_10] = cpu_to_le16((u16)addresses[VAR_10]); retry_read: try_count++; udev = zd_usb_to_usbdev(usb); prepare_read_regs_int(usb, req, count); r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg(). Error number %d\n", r); goto error; } if (req_len != actual_req_len) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()\n" " req_len %d != actual_req_len %d\n", req_len, actual_req_len); r = -VAR_5; goto error; } timeout = FUNC_22(&usb->intr.read_regs.completion, msecs_to_jiffies(50)); if (!timeout) { disable_read_regs_int(usb); dev_dbg_f(zd_usb_dev(usb), "read timed out\n"); r = -ETIMEDOUT; goto error; } r = get_results(usb, VAR_26, req, count, &retry); if (retry && try_count < 20) { dev_dbg_f(zd_usb_dev(usb), "read retry, tries so far: %d\n", try_count); goto retry_read; } error: return r; } static void iowrite16v_urb_complete(struct urb *urb) { struct zd_usb *usb = urb->context; if (urb->status && !usb->VAR_29) usb->VAR_29 = urb->status; if (!usb->VAR_29 && urb->actual_length != urb->transfer_buffer_length) usb->VAR_29 = -VAR_5; } static int zd_submit_waiting_urb(struct zd_usb *usb, bool last) { int r = 0; struct urb *urb = usb->urb_async_waiting; if (!urb) return 0; usb->urb_async_waiting = NULL; if (!last) urb->transfer_flags |= URB_NO_INTERRUPT; usb_anchor_urb(urb, &usb->submitted_cmds); r = usb_submit_urb(urb, GFP_KERNEL); if (r) { usb_unanchor_urb(urb); dev_dbg_f(zd_usb_dev(usb), "error in usb_submit_urb(). Error number %d\n", r); goto error; } /* fall-through with r == 0 */ error: usb_free_urb(urb); return r; } void zd_usb_iowrite16v_async_start(struct zd_usb *usb) { FUNC_10(usb_anchor_empty(&usb->submitted_cmds)); FUNC_10(usb->urb_async_waiting == NULL); FUNC_10(!usb->in_async); FUNC_10(mutex_is_locked(&FUNC_21(usb)->mutex)); usb->in_async = 1; usb->VAR_29 = 0; usb->urb_async_waiting = NULL; } int zd_usb_iowrite16v_async_end(struct zd_usb *usb, unsigned int timeout) { int r; FUNC_10(mutex_is_locked(&FUNC_21(usb)->mutex)); FUNC_10(usb->in_async); /* Submit last iowrite16v URB */ r = zd_submit_waiting_urb(usb, true); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_submit_waiting_usb(). " "Error number %d\n", r); usb_kill_anchored_urbs(&usb->submitted_cmds); goto error; } if (timeout) timeout = usb_wait_anchor_empty_timeout(&usb->submitted_cmds, timeout); if (!timeout) { usb_kill_anchored_urbs(&usb->submitted_cmds); if (usb->VAR_29 == -ENOENT) { dev_dbg_f(zd_usb_dev(usb), "timed out"); r = -ETIMEDOUT; goto error; } } r = usb->VAR_29; error: usb->in_async = 0; return r; } int zd_usb_iowrite16v_async(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, unsigned int count) { int r; struct usb_device *udev; struct CLASS_2 *req = NULL; int VAR_10, req_len; struct urb *urb; struct usb_host_endpoint *ep; FUNC_10(mutex_is_locked(&FUNC_21(usb)->mutex)); FUNC_10(usb->in_async); if (count == 0) return 0; if (count > USB_MAX_IOWRITE16_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: count %u exceeds possible max %u\n", count, USB_MAX_IOWRITE16_COUNT); return -EINVAL; } if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } udev = zd_usb_to_usbdev(usb); ep = usb_pipe_endpoint(udev, usb_sndintpipe(udev, VAR_25)); if (!ep) return -ENOENT; urb = usb_alloc_urb(0, GFP_KERNEL); if (!urb) return -VAR_1; req_len = sizeof(struct CLASS_2) + count * sizeof(struct reg_data); req = FUNC_2(req_len, GFP_KERNEL); if (!req) { r = -VAR_1; goto error; } req->id = cpu_to_le16(USB_REQ_WRITE_REGS); for (VAR_10 = 0; VAR_10 < count; VAR_10++) { struct reg_data *rw = &req->reg_writes[VAR_10]; rw->addr = cpu_to_le16((u16)ioreqs[VAR_10].addr); rw->value = cpu_to_le16(ioreqs[VAR_10].value); } /* In USB 2.0 mode endpoint is interrupt type. However in USB 1.1 mode * endpoint is bulk. Select correct type URB by endpoint descriptor. */ if (usb_endpoint_xfer_int(&ep->desc)) usb_fill_int_urb(urb, udev, usb_sndintpipe(udev, VAR_25), req, req_len, iowrite16v_urb_complete, usb, ep->desc.VAR_30); else usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, VAR_25), req, req_len, iowrite16v_urb_complete, usb); urb->transfer_flags |= VAR_31; /* Submit previous URB */ r = zd_submit_waiting_urb(usb, false); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_submit_waiting_usb(). " "Error number %d\n", r); goto error; } /* Delay submit so that URB_NO_INTERRUPT flag can be set for all URBs * of currect batch except for very last. */ usb->urb_async_waiting = urb; return 0; error: usb_free_urb(urb); return r; } int zd_usb_iowrite16v(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, unsigned int count) { int r; zd_usb_iowrite16v_async_start(usb); r = zd_usb_iowrite16v_async(usb, ioreqs, count); if (r) { zd_usb_iowrite16v_async_end(usb, 0); return r; } return zd_usb_iowrite16v_async_end(usb, 50 /* ms */); } int zd_usb_rfwrite(struct zd_usb *usb, u32 value, u8 bits) { int r; struct usb_device *udev; struct usb_req_rfwrite *req = NULL; int VAR_10, req_len, actual_req_len; u16 bit_value_template; if (in_atomic()) { dev_dbg_f(zd_usb_dev(usb), "error: io in atomic context not supported\n"); return -EWOULDBLOCK; } if (bits < USB_MIN_RFWRITE_BIT_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: bits %d are smaller than" " USB_MIN_RFWRITE_BIT_COUNT %d\n", bits, USB_MIN_RFWRITE_BIT_COUNT); return -EINVAL; } if (bits > USB_MAX_RFWRITE_BIT_COUNT) { dev_dbg_f(zd_usb_dev(usb), "error: bits %d exceed USB_MAX_RFWRITE_BIT_COUNT %d\n", bits, USB_MAX_RFWRITE_BIT_COUNT); return -EINVAL; } #ifdef DEBUG if (value & (~0UL << bits)) { dev_dbg_f(zd_usb_dev(usb), "error: value %#09x has bits >= %d set\n", value, bits); return -EINVAL; } #endif /* DEBUG */ dev_dbg_f(zd_usb_dev(usb), "value %#09x bits %d\n", value, bits); r = FUNC_23(usb, &bit_value_template, ZD_CR203); if (r) { dev_dbg_f(zd_usb_dev(usb), "error %d: Couldn't read ZD_CR203\n", r); return r; } bit_value_template &= ~(RF_IF_LE|RF_CLK|VAR_32); FUNC_10(mutex_is_locked(&FUNC_21(usb)->mutex)); BUILD_BUG_ON(sizeof(struct usb_req_rfwrite) + USB_MAX_RFWRITE_BIT_COUNT * sizeof(__le16) > sizeof(usb->req_buf)); BUG_ON(sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16) > sizeof(usb->req_buf)); req_len = sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16); req = (void *)usb->req_buf; req->id = cpu_to_le16(USB_REQ_WRITE_RF); /* 1: 3683a, but not used in ZYDAS driver */ req->value = cpu_to_le16(2); req->bits = cpu_to_le16(bits); for (VAR_10 = 0; VAR_10 < bits; VAR_10++) { u16 bv = bit_value_template; if (value & (1 << (bits-1-VAR_10))) bv |= VAR_32; req->bit_values[VAR_10] = cpu_to_le16(bv); } udev = zd_usb_to_usbdev(usb); r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); if (r) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg(). Error number %d\n", r); goto out; } if (req_len != actual_req_len) { dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()" " req_len %d != actual_req_len %d\n", req_len, actual_req_len); r = -VAR_5; goto out; } /* FALL-THROUGH with r == 0 */ out: return r; }
0.126866
{'FUNC_0': 'MODULE_VERSION', 'FUNC_1': 'request_fw_file', 'VAR_0': 'p', 'FUNC_2': 'kmalloc', 'VAR_1': 'ENOMEM', 'VAR_2': 'dev', 'FUNC_3': 'kfree', 'FUNC_4': 'handle_version_mismatch', 'VAR_3': 'ub_fw', 'VAR_4': 'E2P_BOOT_CODE_OFFSET', 'FUNC_5': 'upload_firmware', 'FUNC_6': 'dev_info', 'VAR_5': 'EIO', 'FUNC_7': 'handle_regs_int_override', 'FUNC_8': 'spin_lock', 'FUNC_9': 'spin_unlock', 'FUNC_10': 'ZD_ASSERT', 'FUNC_11': 'in_interrupt', 'VAR_6': 'CR_INTERRUPT', 'VAR_7': 'req_count', 'VAR_8': 'USB_SPEED_LOW', 'FUNC_12': 'spin_unlock_irq', 'VAR_9': 'EP_INT_IN', 'VAR_10': 'i', 'CLASS_0': 'rx_length_info', 'VAR_11': 'length_info', 'VAR_12': 'RX_LENGTH_INFO_TAG', 'VAR_13': 'k', 'FUNC_13': 'rx_urb_complete', 'VAR_14': 'rx_urb_complete', 'FUNC_14': 'usb_rcvbulkpipe', 'VAR_15': 'setup_mutex', 'VAR_16': 'idle_work', 'VAR_17': 'submitted', 'VAR_18': 'skb', 'VAR_19': 'EP_DATA_OUT', 'FUNC_15': 'time_is_before_jiffies', 'VAR_20': 'work', 'VAR_21': 'zd_workqueue', 'FUNC_16': 'init_usb_interrupt', 'FUNC_17': 'INIT_DELAYED_WORK', 'CLASS_1': 'usb_device_speed', 'VAR_22': 'bEndpointAddress', 'FUNC_18': 'zd_mac_alloc_hw', 'VAR_23': 'driver', 'VAR_24': 'KBUILD_MODNAME', 'FUNC_19': 'usb_deregister', 'VAR_25': 'EP_REGS_OUT', 'FUNC_20': 'usb_interrupt_msg', 'VAR_26': 'values', 'VAR_27': 'USB_MAX_IOREAD16_COUNT', 'FUNC_21': 'zd_usb_to_chip', 'VAR_28': 'USB_REQ_READ_REGS', 'FUNC_22': 'wait_for_completion_timeout', 'VAR_29': 'cmd_error', 'CLASS_2': 'usb_req_write_regs', 'VAR_30': 'bInterval', 'VAR_31': 'URB_FREE_BUFFER', 'FUNC_23': 'zd_usb_ioread16', 'VAR_32': 'RF_DATA'}
// // UIImage+HMCategory.h // CommonTools-OC // // Created by 心诚 on 2021/7/8. // Copyright © 2021 Apple Inc. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UIImage (HMCategory) /// 图片水印 /// @param content 水印内容 /// @param contentRect 内容位置 /// @param attrs 内容属性 /// @param contentImage 水印图片 /// @param imageRect 图片位置 - (nullable UIImage *)watermarkWithContent:(nullable NSString *)content contentRect:(CGRect)contentRect withAttributes:(nullable NSDictionary<NSAttributedStringKey, id> *)attrs contentImage:(nullable UIImage *)contentImage imageRect:(CGRect)imageRect; /// 图片裁剪(圆形) /// @param image 待裁剪的图片 /// @param border 边框 /// @param borderColor 边框颜色 + (nullable UIImage *)imageWithClipImage:(nullable UIImage *)image border:(CGFloat)border borderColor:(nullable UIColor *)borderColor; /// 控件截屏 /// @param targetView 待截屏的控件 + (nullable UIImage *)imageWithCaputure:(nullable UIView *)targetView; @end @interface UIImage (QRCode) /*! 生成二维码 @param urlString 需要生成的二维码内容 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString; /*! 生成高清的二维码 @param urlString 需要生成的二维码内容 @param size 需要生成二维码的尺寸 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString size:(CGFloat)size; /*! 生成带logo的二维码 @param urlString 需要生成的二维码内容 @param size 需要生成二维码的尺寸 @param imageName log0名称 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString size:(CGFloat)size imageName:(nullable NSString *)imageName; @end NS_ASSUME_NONNULL_END
// // UIImage+HMCategory.h // CommonTools-OC // // Created by 心诚 on 2021/7/8. // Copyright © 2021 Apple Inc. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UIImage (HMCategory) /// 图片水印 /// @param content 水印内容 /// @param contentRect 内容位置 /// @param attrs 内容属性 /// @param contentImage 水印图片 /// @param imageRect 图片位置 - (nullable UIImage *)watermarkWithContent:(nullable NSString *)content contentRect:(CGRect)contentRect withAttributes:(nullable NSDictionary<NSAttributedStringKey, VAR_0> *)attrs contentImage:(nullable UIImage *)contentImage VAR_1:(CGRect)VAR_1; /// 图片裁剪(圆形) /// @param image 待裁剪的图片 /// @param border 边框 /// @param borderColor 边框颜色 + (nullable UIImage *)imageWithClipImage:(nullable UIImage *)image border:(CGFloat)border borderColor:(nullable UIColor *)VAR_2; /// 控件截屏 /// @param targetView 待截屏的控件 + (nullable UIImage *)imageWithCaputure:(nullable UIView *)targetView; @end @interface UIImage (QRCode) /*! 生成二维码 @param urlString 需要生成的二维码内容 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString; /*! 生成高清的二维码 @param urlString 需要生成的二维码内容 @param size 需要生成二维码的尺寸 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString size:(CGFloat)size; /*! 生成带logo的二维码 @param urlString 需要生成的二维码内容 @param size 需要生成二维码的尺寸 @param imageName log0名称 */ + (nullable UIImage *)createQRCodeWithUrlString:(nullable NSString *)urlString size:(CGFloat)size imageName:(nullable NSString *)imageName; @end NS_ASSUME_NONNULL_END
0.131229
{'VAR_0': 'id', 'VAR_1': 'imageRect', 'VAR_2': 'borderColor'}
#include "../machine/toypop.c" #include "../vidhrdw/toypop.c" /**************************************** TOYPOP 1986 Namco driver by <NAME> (<EMAIL>) TOYPOP uses a 6809 main CPU, another 6809 for the sound and a 68000 to create the background image. Libble Rabble should run on the same board ****************************************/ #include "driver.h" #include "sound/namco.h" #include "vidhrdw/generic.h" // machine\toypop.c void toypop_init_machine(void); READ_HANDLER( toypop_cycle_r ); int toypop_interrupt(void); WRITE_HANDLER( toypop_interrupt_enable_w ); WRITE_HANDLER( toypop_interrupt_disable_w ); extern unsigned char *toypop_sharedram_1, *toypop_sharedram_2, *toypop_customio, *toypop_speedup; READ_HANDLER( toypop_sharedram_1_r ); WRITE_HANDLER( toypop_sharedram_1_w ); READ_HANDLER( toypop_sharedram_2_r ); WRITE_HANDLER( toypop_sharedram_2_w ); WRITE_HANDLER( toypop_cpu_reset_w ); READ_HANDLER( toypop_customio_r ); // vidhrdw\toypop.c extern unsigned char *bg_image; int toypop_vh_start(void); void toypop_vh_stop(void); READ_HANDLER( toypop_background_r ); WRITE_HANDLER( toypop_background_w ); WRITE_HANDLER( toypop_flipscreen_w ); void toypop_vh_screenrefresh(struct osd_bitmap *bitmap,int full_refresh); void toypop_vh_convert_color_prom(unsigned char *palette, unsigned short *colortable,const unsigned char *color_prom); static struct MemoryReadAddress toypop_readmem_I_6809[] = { { 0x2800, 0x2fff, MRA_RAM }, /* shared RAM with the 68000 CPU */ { 0x6000, 0x602f, toypop_customio_r }, /* custom I/O chip interface */ { 0x6840, 0x6bff, MRA_RAM }, /* shared RAM with the sound CPU */ { 0x8000, 0xffff, MRA_ROM }, /* ROM code */ { 0x0000, 0x7fff, MRA_RAM }, /* RAM everywhere else */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_I_6809[] = { { 0x0000, 0x03ff, videoram_w, &videoram, &videoram_size }, /* video RAM */ { 0x0400, 0x07ff, colorram_w, &colorram }, /* color RAM */ { 0x0800, 0x0f7f, MWA_RAM }, /* general RAM, area 1 */ { 0x0f80, 0x0fff, MWA_RAM, &spriteram, &spriteram_size }, /* sprite RAM, area 1 */ { 0x1000, 0x177f, MWA_RAM }, /* general RAM, area 2 */ { 0x1780, 0x17ff, MWA_RAM, &spriteram_2 }, /* sprite RAM, area 2 */ { 0x1800, 0x1f7f, MWA_RAM }, /* general RAM, area 3 */ { 0x1f80, 0x1fff, MWA_RAM, &spriteram_3 }, /* sprite RAM, area 3 */ { 0x2800, 0x2fff, MWA_RAM, &toypop_sharedram_2 }, /* shared RAM with the 68000 CPU */ { 0x6000, 0x602f, MWA_RAM, &toypop_customio }, /* custom I/O chip interface */ { 0x6840, 0x6bff, MWA_RAM, &toypop_sharedram_1 }, /* shared RAM with the sound CPU */ { 0x7000, 0x7000, MWA_RAM }, /* watchdog timer ??? */ // any of these four addresses could be the sound CPU reset // (at the start the program writes on all four) // { 0x8000, 0x8000, MWA_NOP }, /* ??? */ // { 0x8800, 0x8800, MWA_NOP }, /* ??? */ // { 0x9000, 0x9000, MWA_NOP }, /* ??? */ { 0x9800, 0x9800, toypop_cpu_reset_w }, /* sound CPU reset ??? */ { 0xa000, 0xa001, MWA_NOP }, /* background image palette ??? */ { 0x8000, 0xffff, MWA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryReadAddress toypop_readmem_II_6809[] = { { 0x0040, 0x03ff, toypop_sharedram_1_r }, /* shared RAM with the main CPU */ { 0xe000, 0xffff, MRA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_II_6809[] = { { 0x0000, 0x003f, mappy_sound_w, &namco_soundregs }, /* sound control registers */ { 0x0040, 0x03ff, toypop_sharedram_1_w }, /* shared RAM with the main CPU */ { 0x4000, 0x4000, MWA_RAM }, /* interrupt enable ??? */ { 0x6000, 0x6000, MWA_RAM }, /* watchdog ??? */ { 0xe000, 0xffff, MWA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryReadAddress toypop_readmem_68k[] = { { 0x000000, 0x007fff, MRA_ROM }, /* ROM code */ { 0x080000, 0x080001, toypop_cycle_r }, /* speed hack */ { 0x080000, 0x0bffff, MRA_BANK1 }, /* RAM */ { 0x100000, 0x100fff, toypop_sharedram_2_r }, /* shared RAM with the main CPU */ { 0x190000, 0x1901ff, MRA_BANK2 }, /* RAM */ { 0x190200, 0x19fdff, toypop_background_r }, /* RAM containing the background image */ { 0x19FE00, 0x1dffff, MRA_BANK3 }, /* RAM */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_68k[] = { { 0x000000, 0x007fff, MWA_ROM }, /* ROM code */ { 0x080000, 0x0bffff, MWA_BANK1, &toypop_speedup }, /* RAM */ { 0x100000, 0x100fff, toypop_sharedram_2_w }, /* shared RAM with the main CPU */ { 0x18fffc, 0x18ffff, toypop_flipscreen_w }, /* flip mode */ { 0x190000, 0x1901ff, MWA_BANK2 }, /* RAM */ { 0x190200, 0x19fdff, toypop_background_w, &bg_image }, /* RAM containing the background image */ { 0x19FE00, 0x1dffff, MWA_BANK3 }, /* RAM */ { 0x300000, 0x300001, toypop_interrupt_enable_w }, /* interrupt enable */ { 0x380000, 0x380001, toypop_interrupt_disable_w }, /* interrupt disable */ { -1 } /* end of table */ }; ////////////////////////////////////////////////////////////////////////////////// INPUT_PORTS_START( toypop ) // FAKE /* The player inputs and the dipswitches are not memory mapped, they are handled by an I/O chip (I guess). */ /* These fake input ports are read by toypop_customio_r() */ PORT_START // IN0 PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_COIN1) PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_COIN2) PORT_BIT(0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY ) PORT_BIT(0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY ) PORT_BIT(0x40, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN | IPF_4WAY ) PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY ) PORT_BIT(0x0c, IP_ACTIVE_HIGH, IPT_UNKNOWN) PORT_START // IN1 PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x10, IP_ACTIVE_HIGH, IPT_BUTTON1) PORT_BIT(0x20, IP_ACTIVE_HIGH, IPT_BUTTON1 | IPF_PLAYER2) PORT_BIT(0x40, IP_ACTIVE_HIGH, IPT_START1) PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_START2) PORT_START // DSW0 PORT_DIPNAME(0x03, 0x00, DEF_STR( Coin_A ) ) PORT_DIPSETTING( 0x03, DEF_STR( 3C_1C ) ) PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x01, DEF_STR( 1C_2C ) ) PORT_DIPNAME(0x04, 0x00, DEF_STR( Flip_Screen ) ) PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) PORT_DIPSETTING( 0x04, DEF_STR( On ) ) PORT_BITX(0x08, IP_ACTIVE_HIGH, IPT_SERVICE | IPF_TOGGLE, DEF_STR( Service_Mode ), KEYCODE_F2, IP_JOY_NONE ) PORT_DIPSETTING(0x00, DEF_STR( Off ) ) PORT_DIPSETTING(0x08, DEF_STR( On ) ) PORT_DIPNAME(0x10, 0x00, "Freeze" ) PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) PORT_DIPSETTING( 0x10, DEF_STR( On ) ) PORT_DIPNAME(0x20, 0x00, "Level Select" ) PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) PORT_DIPSETTING( 0x20, DEF_STR( On ) ) PORT_DIPNAME(0x40, 0x00, "2p play" ) PORT_DIPSETTING( 0x00, "2 Credits" ) PORT_DIPSETTING( 0x40, "1 Credit" ) PORT_DIPNAME(0x80, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_START // DSW1 PORT_DIPNAME(0x01, 0x00, "Entering" ) // ??? PORT_DIPSETTING( 0x01, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_DIPNAME(0x06, 0x00, DEF_STR( Difficulty ) ) PORT_DIPSETTING( 0x02, "Easy" ) PORT_DIPSETTING( 0x00, "Normal" ) PORT_DIPSETTING( 0x04, "Hard" ) PORT_DIPSETTING( 0x06, "Very hard" ) PORT_DIPNAME(0x08, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPSETTING( 0x00, "Every 15000 points" ) PORT_DIPSETTING( 0x08, "Every 20000 points" ) PORT_DIPNAME(0x30, 0x00, DEF_STR( Lives ) ) PORT_DIPSETTING( 0x10, "1" ) PORT_DIPSETTING( 0x20, "2" ) PORT_DIPSETTING( 0x00, "3" ) PORT_DIPSETTING( 0x30, "5" ) PORT_DIPNAME(0xc0, 0x00, DEF_STR( Coin_B ) ) PORT_DIPSETTING( 0xc0, DEF_STR( 3C_1C ) ) PORT_DIPSETTING( 0x80, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x40, DEF_STR( 1C_2C ) ) INPUT_PORTS_END /////////////////////////////////////////////////////////////////////////////////// static struct GfxLayout toypop_charlayout = { 8,8, /* 8*8 characters */ 512, /* 512 characters */ 2, /* 2 bits per pixel */ { 0, 4 }, /* the two bitplanes for 4 pixels are packed into one byte */ { 8*8+0, 8*8+1, 8*8+2, 8*8+3, 0, 1, 2, 3 }, /* bits are packed in groups of four */ { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 }, /* v offset */ 16*8 /* every char takes 16 bytes */ }; static struct GfxLayout toypop_spritelayout = { 16,16, /* 16*16 sprites */ 256, /* 256 sprites */ 2, /* 2 bits per pixel */ { 0, 4 }, /* the two bitplanes for 4 pixels are packed into one byte */ { 0, 1, 2, 3, 8*8, 8*8+1, 8*8+2, 8*8+3, 16*8+0, 16*8+1, 16*8+2, 16*8+3, 24*8+0, 24*8+1, 24*8+2, 24*8+3 }, { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8, 32 * 8, 33 * 8, 34 * 8, 35 * 8, 36 * 8, 37 * 8, 38 * 8, 39 * 8 }, 64*8 /* every sprite takes 64 bytes */ }; static struct GfxDecodeInfo toypop_gfxdecodeinfo[] = { { REGION_GFX1, 0, &toypop_charlayout, 0, 128 }, { REGION_GFX2, 0, &toypop_spritelayout, 64*4, 256 }, { -1 } /* end of array */ }; ///////////////////////////////////////////////////////////////////////////////////// static struct namco_interface namco_interface = { 23920, /* sample rate (approximate value) */ 8, /* number of voices */ 100, /* playback volume */ REGION_SOUND1 /* memory region */ }; static struct MachineDriver machine_driver_toypop = { /* basic machine hardware */ { { CPU_M6809, 1600000, /* 1.6 Mhz (?) */ toypop_readmem_I_6809,toypop_writemem_I_6809,0,0, interrupt,1 }, { CPU_M6809 | CPU_AUDIO_CPU, 1600000, /* 1.6 Mhz (?) */ toypop_readmem_II_6809,toypop_writemem_II_6809,0,0, interrupt,1 }, { CPU_M68000, 8000000, /* 8 Mhz (?) */ toypop_readmem_68k,toypop_writemem_68k,0,0, toypop_interrupt,1 } }, 60, DEFAULT_60HZ_VBLANK_DURATION, /* frames per second, vblank duration */ 100, /* 100 CPU slices per frame - an high value to ensure proper */ /* synchronization of the CPUs */ toypop_init_machine, /* video hardware */ 18*16, 14*16, { 0*16, 18*16-1, 0*16, 14*16-1 }, toypop_gfxdecodeinfo, 256,256+256, toypop_vh_convert_color_prom, VIDEO_TYPE_RASTER, 0, toypop_vh_start, toypop_vh_stop, toypop_vh_screenrefresh, /* sound hardware */ 0,0,0,0, { { SOUND_NAMCO, &namco_interface } } }; ROM_START( liblrabl ) ROM_REGION( 0x10000, REGION_CPU1 ) /* 64k for the first CPU */ ROM_LOAD( "5b.rom", 0x8000, 0x4000, 0xda7a93c2 ) ROM_LOAD( "5c.rom", 0xc000, 0x4000, 0x6cae25dc ) ROM_REGION( 0x10000, REGION_CPU2 ) /* 64k for the second CPU */ ROM_LOAD( "2c.rom", 0xe000, 0x2000, 0x7c09e50a ) ROM_REGION( 0x8000, REGION_CPU3 ) /* 32k for the third CPU */ ROM_LOAD_EVEN( "8c.rom", 0x0000, 0x4000, 0xa00cd959 ) ROM_LOAD_ODD( "10c.rom", 0x0000, 0x4000, 0x09ce209b ) /* temporary space for graphics (disposed after conversion) */ ROM_REGION( 0x2000, REGION_GFX1 | REGIONFLAG_DISPOSE ) ROM_LOAD( "5p.rom", 0x0000, 0x2000, 0x3b4937f0 ) /* characters */ ROM_REGION( 0x4000, REGION_GFX2 | REGIONFLAG_DISPOSE ) ROM_LOAD( "9t.rom", 0x0000, 0x4000, 0xa88e24ca ) /* sprites */ ROM_REGION( 0x0600, REGION_PROMS ) /* color proms */ ROM_LOAD( "lr1-3.1r", 0x0000, 0x0100, 0xf3ec0d07 ) // palette: red component ROM_LOAD( "lr1-2.1s", 0x0100, 0x0100, 0x2ae4f702 ) // palette: green component ROM_LOAD( "lr1-1.1t", 0x0200, 0x0100, 0x7601f208 ) // palette: blue component ROM_LOAD( "lr1-5.5l", 0x0300, 0x0100, 0x940f5397 ) /* characters */ ROM_LOAD( "lr1-6.2p", 0x0400, 0x0200, 0xa6b7f850 ) /* sprites */ ROM_REGION( 0x0100, REGION_SOUND1 ) /* sound prom */ ROM_LOAD( "lr1-4.3d", 0x0000, 0x0100, 0x16a9166a ) ROM_END ROM_START( toypop ) ROM_REGION( 0x10000, REGION_CPU1 ) /* 64k for the first CPU */ ROM_LOAD( "tp1-2.5b", 0x8000, 0x4000, 0x87469620 ) ROM_LOAD( "tp1-1.5c", 0xc000, 0x4000, 0xdee2fd6e ) ROM_REGION( 0x10000, REGION_CPU2 ) /* 64k for the second CPU */ ROM_LOAD( "tp1-3.2c", 0xe000, 0x2000, 0x5f3bf6e2 ) ROM_REGION( 0x8000, REGION_CPU3 ) /* 32k for the third CPU */ ROM_LOAD_EVEN( "tp1-4.8c", 0x0000, 0x4000, 0x76997db3 ) ROM_LOAD_ODD( "tp1-5.10c", 0x0000, 0x4000, 0x37de8786 ) /* temporary space for graphics (disposed after conversion) */ ROM_REGION( 0x2000, REGION_GFX1 | REGIONFLAG_DISPOSE ) ROM_LOAD( "tp1-7.5p", 0x0000, 0x2000, 0x95076f9e ) /* characters */ ROM_REGION( 0x4000, REGION_GFX2 | REGIONFLAG_DISPOSE ) ROM_LOAD( "tp1-6.9t", 0x0000, 0x4000, 0x481ffeaf ) /* sprites */ ROM_REGION( 0x0600, REGION_PROMS ) /* color proms */ ROM_LOAD( "tp1-3.1r", 0x0000, 0x0100, 0xcfce2fa5 ) // palette: red component ROM_LOAD( "tp1-2.1s", 0x0100, 0x0100, 0xaeaf039d ) // palette: green component ROM_LOAD( "tp1-1.1t", 0x0200, 0x0100, 0x08e7cde3 ) // palette: blue component ROM_LOAD( "tp1-4.5l", 0x0300, 0x0100, 0x74138973 ) /* characters */ ROM_LOAD( "tp1-5.2p", 0x0400, 0x0200, 0x4d77fa5a ) /* sprites */ ROM_REGION( 0x0100, REGION_SOUND1 ) /* sound prom */ ROM_LOAD( "lr1-4.3d", 0x0000, 0x0100, 0x16a9166a ) ROM_END GAMEX(1983, liblrabl, 0, toypop, toypop, 0, ROT0, "Namco", "Libble Rabble", GAME_NOT_WORKING ) GAME( 1986, toypop, 0, toypop, toypop, 0, ROT0, "Namco", "Toypop" )
#include "../machine/toypop.c" #include "../vidhrdw/toypop.c" /**************************************** TOYPOP 1986 Namco driver by <NAME> (<EMAIL>) TOYPOP uses a 6809 main CPU, another 6809 for the sound and a 68000 to create the background image. Libble Rabble should run on the same board ****************************************/ #include "driver.h" #include "sound/namco.h" #include "vidhrdw/generic.h" // machine\toypop.c void toypop_init_machine(void); READ_HANDLER( toypop_cycle_r ); int toypop_interrupt(void); WRITE_HANDLER( VAR_0 ); WRITE_HANDLER( VAR_1 ); extern unsigned char *toypop_sharedram_1, *toypop_sharedram_2, *toypop_customio, *VAR_2; READ_HANDLER( VAR_3 ); WRITE_HANDLER( toypop_sharedram_1_w ); READ_HANDLER( toypop_sharedram_2_r ); WRITE_HANDLER( toypop_sharedram_2_w ); WRITE_HANDLER( VAR_4 ); READ_HANDLER( toypop_customio_r ); // vidhrdw\toypop.c extern unsigned char *bg_image; int toypop_vh_start(void); void toypop_vh_stop(void); READ_HANDLER( VAR_5 ); WRITE_HANDLER( toypop_background_w ); WRITE_HANDLER( toypop_flipscreen_w ); void toypop_vh_screenrefresh(struct osd_bitmap *bitmap,int full_refresh); void toypop_vh_convert_color_prom(unsigned char *palette, unsigned short *colortable,const unsigned char *color_prom); static struct MemoryReadAddress toypop_readmem_I_6809[] = { { 0x2800, 0x2fff, MRA_RAM }, /* shared RAM with the 68000 CPU */ { 0x6000, 0x602f, toypop_customio_r }, /* custom I/O chip interface */ { 0x6840, 0x6bff, MRA_RAM }, /* shared RAM with the sound CPU */ { 0x8000, 0xffff, MRA_ROM }, /* ROM code */ { 0x0000, 0x7fff, MRA_RAM }, /* RAM everywhere else */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_I_6809[] = { { 0x0000, 0x03ff, VAR_6, &videoram, &videoram_size }, /* video RAM */ { 0x0400, 0x07ff, colorram_w, &colorram }, /* color RAM */ { 0x0800, 0x0f7f, MWA_RAM }, /* general RAM, area 1 */ { 0x0f80, 0x0fff, MWA_RAM, &spriteram, &spriteram_size }, /* sprite RAM, area 1 */ { 0x1000, 0x177f, MWA_RAM }, /* general RAM, area 2 */ { 0x1780, 0x17ff, MWA_RAM, &spriteram_2 }, /* sprite RAM, area 2 */ { 0x1800, 0x1f7f, MWA_RAM }, /* general RAM, area 3 */ { 0x1f80, 0x1fff, MWA_RAM, &spriteram_3 }, /* sprite RAM, area 3 */ { 0x2800, 0x2fff, MWA_RAM, &toypop_sharedram_2 }, /* shared RAM with the 68000 CPU */ { 0x6000, 0x602f, MWA_RAM, &toypop_customio }, /* custom I/O chip interface */ { 0x6840, 0x6bff, MWA_RAM, &toypop_sharedram_1 }, /* shared RAM with the sound CPU */ { 0x7000, 0x7000, MWA_RAM }, /* watchdog timer ??? */ // any of these four addresses could be the sound CPU reset // (at the start the program writes on all four) // { 0x8000, 0x8000, MWA_NOP }, /* ??? */ // { 0x8800, 0x8800, MWA_NOP }, /* ??? */ // { 0x9000, 0x9000, MWA_NOP }, /* ??? */ { 0x9800, 0x9800, VAR_4 }, /* sound CPU reset ??? */ { 0xa000, 0xa001, VAR_7 }, /* background image palette ??? */ { 0x8000, 0xffff, MWA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryReadAddress VAR_8[] = { { 0x0040, 0x03ff, VAR_3 }, /* shared RAM with the main CPU */ { 0xe000, 0xffff, MRA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_II_6809[] = { { 0x0000, 0x003f, VAR_9, &VAR_10 }, /* sound control registers */ { 0x0040, 0x03ff, toypop_sharedram_1_w }, /* shared RAM with the main CPU */ { 0x4000, 0x4000, MWA_RAM }, /* interrupt enable ??? */ { 0x6000, 0x6000, MWA_RAM }, /* watchdog ??? */ { 0xe000, 0xffff, MWA_ROM }, /* ROM code */ { -1 } /* end of table */ }; static struct MemoryReadAddress toypop_readmem_68k[] = { { 0x000000, 0x007fff, MRA_ROM }, /* ROM code */ { 0x080000, 0x080001, toypop_cycle_r }, /* speed hack */ { 0x080000, 0x0bffff, MRA_BANK1 }, /* RAM */ { 0x100000, 0x100fff, toypop_sharedram_2_r }, /* shared RAM with the main CPU */ { 0x190000, 0x1901ff, MRA_BANK2 }, /* RAM */ { 0x190200, 0x19fdff, VAR_5 }, /* RAM containing the background image */ { 0x19FE00, 0x1dffff, MRA_BANK3 }, /* RAM */ { -1 } /* end of table */ }; static struct MemoryWriteAddress toypop_writemem_68k[] = { { 0x000000, 0x007fff, MWA_ROM }, /* ROM code */ { 0x080000, 0x0bffff, MWA_BANK1, &VAR_2 }, /* RAM */ { 0x100000, 0x100fff, toypop_sharedram_2_w }, /* shared RAM with the main CPU */ { 0x18fffc, 0x18ffff, toypop_flipscreen_w }, /* flip mode */ { 0x190000, 0x1901ff, MWA_BANK2 }, /* RAM */ { 0x190200, 0x19fdff, toypop_background_w, &bg_image }, /* RAM containing the background image */ { 0x19FE00, 0x1dffff, MWA_BANK3 }, /* RAM */ { 0x300000, 0x300001, VAR_0 }, /* interrupt enable */ { 0x380000, 0x380001, VAR_1 }, /* interrupt disable */ { -1 } /* end of table */ }; ////////////////////////////////////////////////////////////////////////////////// INPUT_PORTS_START( toypop ) // FAKE /* The player inputs and the dipswitches are not memory mapped, they are handled by an I/O chip (I guess). */ /* These fake input ports are read by toypop_customio_r() */ PORT_START // IN0 PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_COIN1) PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_COIN2) PORT_BIT(0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY ) PORT_BIT(0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY ) PORT_BIT(0x40, IP_ACTIVE_HIGH, VAR_11 | IPF_4WAY ) PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY ) PORT_BIT(0x0c, IP_ACTIVE_HIGH, IPT_UNKNOWN) PORT_START // IN1 PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x04, IP_ACTIVE_HIGH, VAR_11 | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY | IPF_PLAYER2) PORT_BIT(0x10, IP_ACTIVE_HIGH, IPT_BUTTON1) PORT_BIT(0x20, IP_ACTIVE_HIGH, IPT_BUTTON1 | IPF_PLAYER2) PORT_BIT(0x40, IP_ACTIVE_HIGH, IPT_START1) PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_START2) PORT_START // DSW0 PORT_DIPNAME(0x03, 0x00, CLASS_0( Coin_A ) ) FUNC_1( 0x03, FUNC_0( 3C_1C ) ) FUNC_1( 0x02, FUNC_0( 2C_1C ) ) FUNC_1( 0x00, FUNC_0( 1C_1C ) ) FUNC_1( 0x01, FUNC_0( 1C_2C ) ) PORT_DIPNAME(0x04, 0x00, FUNC_0( Flip_Screen ) ) FUNC_1( 0x00, FUNC_0( Off ) ) FUNC_1( 0x04, FUNC_0( On ) ) PORT_BITX(0x08, IP_ACTIVE_HIGH, IPT_SERVICE | IPF_TOGGLE, FUNC_0( Service_Mode ), KEYCODE_F2, IP_JOY_NONE ) FUNC_1(0x00, FUNC_0( Off ) ) FUNC_1(0x08, FUNC_0( On ) ) PORT_DIPNAME(0x10, 0x00, "Freeze" ) FUNC_1( 0x00, FUNC_0( Off ) ) FUNC_1( 0x10, FUNC_0( On ) ) PORT_DIPNAME(0x20, 0x00, "Level Select" ) FUNC_1( 0x00, FUNC_0( Off ) ) FUNC_1( 0x20, FUNC_0( On ) ) PORT_DIPNAME(0x40, 0x00, "2p play" ) FUNC_1( 0x00, "2 Credits" ) FUNC_1( 0x40, "1 Credit" ) PORT_DIPNAME(0x80, 0x00, FUNC_0( Demo_Sounds ) ) FUNC_1( 0x80, FUNC_0( Off ) ) FUNC_1( 0x00, FUNC_0( On ) ) PORT_START // DSW1 PORT_DIPNAME(0x01, 0x00, "Entering" ) // ??? VAR_13( 0x01, CLASS_0( Off ) ) FUNC_1( 0x00, CLASS_0( On ) ) PORT_DIPNAME(0x06, 0x00, CLASS_0( Difficulty ) ) FUNC_1( 0x02, "Easy" ) VAR_13( 0x00, "Normal" ) FUNC_1( 0x04, "Hard" ) VAR_13( 0x06, "Very ID_0" ) PORT_DIPNAME(0x08, 0x00, CLASS_0( CLASS_1 ) ) VAR_13( 0x00, "Every 15000 points" ) FUNC_1( 0x08, "Every 20000 points" ) PORT_DIPNAME(0x30, 0x00, CLASS_0( Lives ) ) FUNC_1( 0x10, "1" ) VAR_13( 0x20, "2" ) VAR_13( 0x00, "3" ) VAR_13( 0x30, "5" ) PORT_DIPNAME(0xc0, 0x00, CLASS_0( Coin_B ) ) VAR_13( 0xc0, VAR_12( 3C_1C ) ) VAR_13( 0x80, VAR_12( 2C_1C ) ) VAR_13( 0x00, VAR_12( 1C_1C ) ) VAR_13( 0x40, VAR_12( 1C_2C ) ) INPUT_PORTS_END /////////////////////////////////////////////////////////////////////////////////// static struct GfxLayout VAR_14 = { 8,8, /* 8*8 characters */ 512, /* 512 characters */ 2, /* 2 bits per pixel */ { 0, 4 }, /* the two bitplanes for 4 pixels are packed into one byte */ { 8*8+0, 8*8+1, 8*8+2, 8*8+3, 0, 1, 2, 3 }, /* bits are packed in groups of four */ { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 }, /* v offset */ 16*8 /* every char takes 16 bytes */ }; static struct GfxLayout toypop_spritelayout = { 16,16, /* 16*16 sprites */ 256, /* 256 sprites */ 2, /* 2 bits per pixel */ { 0, 4 }, /* the two bitplanes for 4 pixels are packed into one byte */ { 0, 1, 2, 3, 8*8, 8*8+1, 8*8+2, 8*8+3, 16*8+0, 16*8+1, 16*8+2, 16*8+3, 24*8+0, 24*8+1, 24*8+2, 24*8+3 }, { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8, 32 * 8, 33 * 8, 34 * 8, 35 * 8, 36 * 8, 37 * 8, 38 * 8, 39 * 8 }, 64*8 /* every sprite takes 64 bytes */ }; static struct GfxDecodeInfo VAR_15[] = { { REGION_GFX1, 0, &VAR_14, 0, 128 }, { REGION_GFX2, 0, &toypop_spritelayout, 64*4, 256 }, { -1 } /* end of array */ }; ///////////////////////////////////////////////////////////////////////////////////// static struct namco_interface namco_interface = { 23920, /* sample rate (approximate value) */ 8, /* number of voices */ 100, /* playback volume */ REGION_SOUND1 /* memory region */ }; static struct MachineDriver machine_driver_toypop = { /* basic machine hardware */ { { CPU_M6809, 1600000, /* 1.6 Mhz (?) */ toypop_readmem_I_6809,toypop_writemem_I_6809,0,0, interrupt,1 }, { CPU_M6809 | VAR_16, 1600000, /* 1.6 Mhz (?) */ VAR_8,toypop_writemem_II_6809,0,0, interrupt,1 }, { CPU_M68000, 8000000, /* 8 Mhz (?) */ toypop_readmem_68k,toypop_writemem_68k,0,0, toypop_interrupt,1 } }, 60, DEFAULT_60HZ_VBLANK_DURATION, /* frames per second, vblank duration */ 100, /* 100 CPU slices per frame - an high value to ensure proper */ /* synchronization of the CPUs */ toypop_init_machine, /* video hardware */ 18*16, 14*16, { 0*16, 18*16-1, 0*16, 14*16-1 }, VAR_15, 256,256+256, toypop_vh_convert_color_prom, VIDEO_TYPE_RASTER, 0, toypop_vh_start, toypop_vh_stop, toypop_vh_screenrefresh, /* sound hardware */ 0,0,0,0, { { SOUND_NAMCO, &namco_interface } } }; ROM_START( liblrabl ) ROM_REGION( 0x10000, REGION_CPU1 ) /* 64k for the first CPU */ ROM_LOAD( "5b.rom", 0x8000, 0x4000, 0xda7a93c2 ) ROM_LOAD( "5c.rom", 0xc000, 0x4000, 0x6cae25dc ) ROM_REGION( 0x10000, REGION_CPU2 ) /* 64k for the second CPU */ ROM_LOAD( "2c.rom", 0xe000, 0x2000, 0x7c09e50a ) ROM_REGION( 0x8000, REGION_CPU3 ) /* 32k for the third CPU */ ROM_LOAD_EVEN( "8c.rom", 0x0000, 0x4000, 0xa00cd959 ) ROM_LOAD_ODD( "10c.rom", 0x0000, 0x4000, 0x09ce209b ) /* temporary space for graphics (disposed after conversion) */ ROM_REGION( 0x2000, REGION_GFX1 | REGIONFLAG_DISPOSE ) ROM_LOAD( "5p.rom", 0x0000, 0x2000, 0x3b4937f0 ) /* characters */ ROM_REGION( 0x4000, REGION_GFX2 | REGIONFLAG_DISPOSE ) ROM_LOAD( "9t.rom", 0x0000, 0x4000, 0xa88e24ca ) /* sprites */ ROM_REGION( 0x0600, VAR_17 ) /* color proms */ ROM_LOAD( "lr1-3.1r", 0x0000, 0x0100, 0xf3ec0d07 ) // palette: red component ROM_LOAD( "lr1-2.1s", 0x0100, 0x0100, 0x2ae4f702 ) // palette: green component ROM_LOAD( "lr1-1.1t", 0x0200, 0x0100, 0x7601f208 ) // palette: blue component ROM_LOAD( "lr1-5.5l", 0x0300, 0x0100, 0x940f5397 ) /* characters */ ROM_LOAD( "lr1-6.2p", 0x0400, 0x0200, 0xa6b7f850 ) /* sprites */ ROM_REGION( 0x0100, REGION_SOUND1 ) /* sound prom */ ROM_LOAD( "lr1-4.3d", 0x0000, 0x0100, 0x16a9166a ) ROM_END ROM_START( toypop ) ROM_REGION( 0x10000, REGION_CPU1 ) /* 64k for the first CPU */ ROM_LOAD( "tp1-2.5b", 0x8000, 0x4000, 0x87469620 ) ROM_LOAD( "tp1-1.5c", 0xc000, 0x4000, 0xdee2fd6e ) ROM_REGION( 0x10000, REGION_CPU2 ) /* 64k for the second CPU */ ROM_LOAD( "tp1-3.2c", 0xe000, 0x2000, 0x5f3bf6e2 ) ROM_REGION( 0x8000, REGION_CPU3 ) /* 32k for the third CPU */ ROM_LOAD_EVEN( "tp1-4.8c", 0x0000, 0x4000, 0x76997db3 ) ROM_LOAD_ODD( "tp1-5.10c", 0x0000, 0x4000, 0x37de8786 ) /* temporary space for graphics (disposed after conversion) */ ROM_REGION( 0x2000, REGION_GFX1 | REGIONFLAG_DISPOSE ) ROM_LOAD( "tp1-7.5p", 0x0000, 0x2000, 0x95076f9e ) /* characters */ ROM_REGION( 0x4000, REGION_GFX2 | REGIONFLAG_DISPOSE ) ROM_LOAD( "tp1-6.9t", 0x0000, 0x4000, 0x481ffeaf ) /* sprites */ ROM_REGION( 0x0600, VAR_17 ) /* color proms */ ROM_LOAD( "tp1-3.1r", 0x0000, 0x0100, 0xcfce2fa5 ) // palette: red component ROM_LOAD( "tp1-2.1s", 0x0100, 0x0100, 0xaeaf039d ) // palette: green component ROM_LOAD( "tp1-1.1t", 0x0200, 0x0100, 0x08e7cde3 ) // palette: blue component ROM_LOAD( "tp1-4.5l", 0x0300, 0x0100, 0x74138973 ) /* characters */ ROM_LOAD( "tp1-5.2p", 0x0400, 0x0200, 0x4d77fa5a ) /* sprites */ ROM_REGION( 0x0100, REGION_SOUND1 ) /* sound prom */ ROM_LOAD( "lr1-4.3d", 0x0000, 0x0100, 0x16a9166a ) ROM_END GAMEX(1983, liblrabl, 0, toypop, toypop, 0, ROT0, "Namco", "Libble Rabble", GAME_NOT_WORKING ) GAME( 1986, toypop, 0, toypop, toypop, 0, ROT0, "Namco", "Toypop" )
0.183194
{'VAR_0': 'toypop_interrupt_enable_w', 'VAR_1': 'toypop_interrupt_disable_w', 'VAR_2': 'toypop_speedup', 'VAR_3': 'toypop_sharedram_1_r', 'VAR_4': 'toypop_cpu_reset_w', 'VAR_5': 'toypop_background_r', 'VAR_6': 'videoram_w', 'VAR_7': 'MWA_NOP', 'VAR_8': 'toypop_readmem_II_6809', 'VAR_9': 'mappy_sound_w', 'VAR_10': 'namco_soundregs', 'VAR_11': 'IPT_JOYSTICK_DOWN', 'CLASS_0': 'DEF_STR', 'FUNC_0': 'DEF_STR', 'VAR_12': 'DEF_STR', 'FUNC_1': 'PORT_DIPSETTING', 'VAR_13': 'PORT_DIPSETTING', 'ID_0': 'hard', 'CLASS_1': 'Bonus_Life', 'VAR_14': 'toypop_charlayout', 'VAR_15': 'toypop_gfxdecodeinfo', 'VAR_16': 'CPU_AUDIO_CPU', 'VAR_17': 'REGION_PROMS'}
#pragma once #include <memory> #include "Elysian/Core/Platform.h" #include "Elysian/Core/Logging.h" #include "Elysian/Core/Assert.h" #include "Elysian/Core/Application.h" namespace Elysian { template <typename T> void initialize() { Logging::initialize(); ELYSIAN_INTERNAL_INFO("Initializing Version {}.{}.{}", ELYSIAN_VERSION_MAJOR, ELYSIAN_VERSION_MINOR, ELYSIAN_VERSION_PATCH); std::unique_ptr<T> app = std::make_unique<T>(); } }
#pragma once #include <memory> #include "Elysian/Core/Platform.h" #include "Elysian/Core/Logging.h" #include "Elysian/Core/Assert.h" #include "IMPORT_0" CLASS_0 Elysian { template <typename T> void initialize() { Logging::initialize(); ELYSIAN_INTERNAL_INFO("Initializing Version {}.{}.{}", ELYSIAN_VERSION_MAJOR, ELYSIAN_VERSION_MINOR, VAR_0); std::unique_ptr<T> app = std::make_unique<T>(); } }
0.116721
{'IMPORT_0': 'Elysian/Core/Application.h', 'CLASS_0': 'namespace', 'VAR_0': 'ELYSIAN_VERSION_PATCH'}
/* * gpioc3.c * Este archivo va en contiki/platform/zoul/dev * Created on: Nov 6, 2018 * Author: user */ /* * Copyright (c) 2012, Texas Instruments Incorporated - http://www.ti.com/ * Copyright (c) 2015, Zolertia - http://www.zolertia.com * Copyright (c) 2015, University of Bristol - http://www.bristol.ac.uk * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ /*---------------------------------------------------------------------------*/ /** * \addtogroup zoul-gpio-sensor * @{ * * \file * */ /*---------------------------------------------------------------------------*/ #include "contiki.h" #include "dev/nvic.h" #include "dev/ioc.h" #include "dev/gpio.h" #include "dev/gpioc3.h" #include "sys/timer.h" #include "sys/ctimer.h" #include "sys/process.h" #include <stdint.h> #include <string.h> /*---------------------------------------------------------------------------*/ #define GPIO_USER_PORT_BASE GPIO_PORT_TO_BASE(GPIO_USER_PORT) #define GPIO_USER_PIN_MASK GPIO_PIN_MASK(GPIO_USER_PIN) /*---------------------------------------------------------------------------*/ #define DEBOUNCE_DURATION_GPIO (CLOCK_SECOND >> 4) static struct timer debouncetimergpio; /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /** * \brief Returns the pin level */ static int value(int type) { return GPIO_READ_PIN(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); } /*---------------------------------------------------------------------------*/ /** * \brief Callback registered with the GPIO module. Gets fired with a * pin generates an interrupt * \param port The port number that generated the interrupt * \param pin The pin number that generated the interrupt. This is the pin * absolute number (i.e. 0, 1, ..., 7), not a mask */ static void gpio_user_callback(uint8_t port, uint8_t pin) { if(!timer_expired(&debouncetimergpio)) { return; } else { timer_set(&debouncetimergpio, DEBOUNCE_DURATION_GPIO); sensors_changed(&gpio_sensor); } } /*---------------------------------------------------------------------------*/ /** * \brief Init function * \param type SENSORS_ACTIVE: Activate / Deactivate the sensor (value == 1 * or 0 respectively) * * \param value Depends on the value of the type argument * \return Depends on the value of the type argument */ static int config_user(int type, int value) { switch(type) { case SENSORS_HW_INIT: /* Software controlled */ GPIO_SOFTWARE_CONTROL(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); /* Set pin to input */ GPIO_SET_INPUT(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); /* Enable edge detection */ GPIO_DETECT_EDGE(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); /* Both Edges */ GPIO_TRIGGER_BOTH_EDGES(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); //Flancos?? ioc_set_over(GPIO_USER_PORT, GPIO_USER_PIN, IOC_OVERRIDE_PUE); //PUE = Pull up Enable gpio_register_callback(gpio_user_callback, GPIO_USER_PORT, GPIO_USER_PIN); break; case SENSORS_ACTIVE: if(value) { GPIO_ENABLE_INTERRUPT(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); NVIC_EnableIRQ(GPIO_USER_VECTOR); } else { GPIO_DISABLE_INTERRUPT(GPIO_USER_PORT_BASE, GPIO_USER_PIN_MASK); NVIC_DisableIRQ(GPIO_USER_VECTOR); } return value; break; default: break; } return 1; } /*---------------------------------------------------------------------------*/ SENSORS_SENSOR(gpio_sensor, GPIO_SENSOR, value, config_user, NULL); /*---------------------------------------------------------------------------*/ /** @} */
/* * gpioc3.c * Este archivo va en contiki/platform/zoul/dev * Created on: Nov 6, 2018 * Author: user */ /* * Copyright (c) 2012, Texas Instruments Incorporated - http://www.ti.com/ * Copyright (c) 2015, Zolertia - http://www.zolertia.com * Copyright (c) 2015, University of Bristol - http://www.bristol.ac.uk * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ /*---------------------------------------------------------------------------*/ /** * \addtogroup zoul-gpio-sensor * @{ * * \file * */ /*---------------------------------------------------------------------------*/ #include "contiki.h" #include "dev/nvic.h" #include "dev/ioc.h" #include "dev/gpio.h" #include "dev/gpioc3.h" #include "sys/timer.h" #include "sys/ctimer.h" #include "sys/process.h" #include <stdint.h> #include <IMPORT_0> /*---------------------------------------------------------------------------*/ #define GPIO_USER_PORT_BASE GPIO_PORT_TO_BASE(GPIO_USER_PORT) #define VAR_0 GPIO_PIN_MASK(GPIO_USER_PIN) /*---------------------------------------------------------------------------*/ #define VAR_1 (CLOCK_SECOND >> 4) static struct CLASS_0 debouncetimergpio; /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /** * \brief Returns the pin level */ static int value(int VAR_2) { return FUNC_0(GPIO_USER_PORT_BASE, VAR_0); } /*---------------------------------------------------------------------------*/ /** * \brief Callback registered with the GPIO module. Gets fired with a * pin generates an interrupt * \param port The port number that generated the interrupt * \param pin The pin number that generated the interrupt. This is the pin * absolute number (i.e. 0, 1, ..., 7), not a mask */ static void gpio_user_callback(uint8_t port, uint8_t pin) { if(!timer_expired(&debouncetimergpio)) { return; } else { timer_set(&debouncetimergpio, VAR_1); sensors_changed(&gpio_sensor); } } /*---------------------------------------------------------------------------*/ /** * \brief Init function * \param type SENSORS_ACTIVE: Activate / Deactivate the sensor (value == 1 * or 0 respectively) * * \param value Depends on the value of the type argument * \return Depends on the value of the type argument */ static int config_user(int VAR_2, int value) { switch(VAR_2) { case SENSORS_HW_INIT: /* Software controlled */ FUNC_1(GPIO_USER_PORT_BASE, VAR_0); /* Set pin to input */ GPIO_SET_INPUT(GPIO_USER_PORT_BASE, VAR_0); /* Enable edge detection */ FUNC_2(GPIO_USER_PORT_BASE, VAR_0); /* Both Edges */ GPIO_TRIGGER_BOTH_EDGES(GPIO_USER_PORT_BASE, VAR_0); //Flancos?? ioc_set_over(VAR_3, GPIO_USER_PIN, VAR_4); //PUE = Pull up Enable gpio_register_callback(gpio_user_callback, VAR_3, GPIO_USER_PIN); break; case SENSORS_ACTIVE: if(value) { FUNC_3(GPIO_USER_PORT_BASE, VAR_0); FUNC_4(VAR_5); } else { GPIO_DISABLE_INTERRUPT(GPIO_USER_PORT_BASE, VAR_0); NVIC_DisableIRQ(VAR_5); } return value; break; default: break; } return 1; } /*---------------------------------------------------------------------------*/ SENSORS_SENSOR(gpio_sensor, GPIO_SENSOR, value, config_user, NULL); /*---------------------------------------------------------------------------*/ /** @} */
0.322419
{'IMPORT_0': 'string.h', 'VAR_0': 'GPIO_USER_PIN_MASK', 'VAR_1': 'DEBOUNCE_DURATION_GPIO', 'CLASS_0': 'timer', 'VAR_2': 'type', 'FUNC_0': 'GPIO_READ_PIN', 'FUNC_1': 'GPIO_SOFTWARE_CONTROL', 'FUNC_2': 'GPIO_DETECT_EDGE', 'VAR_3': 'GPIO_USER_PORT', 'VAR_4': 'IOC_OVERRIDE_PUE', 'FUNC_3': 'GPIO_ENABLE_INTERRUPT', 'FUNC_4': 'NVIC_EnableIRQ', 'VAR_5': 'GPIO_USER_VECTOR'}
/* * Copyright 2019 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: <NAME> <<EMAIL>> * */ #include "umr.h" void umr_apply_callbacks(struct umr_asic *asic, struct umr_memory_access_funcs *mems, struct umr_register_access_funcs *regs) { int n; n = 0; while (asic->config.xgmi.nodes[n].asic) { asic->config.xgmi.nodes[n].asic->mem_funcs = *mems; asic->config.xgmi.nodes[n++].asic->reg_funcs = *regs; } asic->config.xgmi.callbacks_applied = 1; }
/* * Copyright 2019 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: <NAME> <<EMAIL>> * */ #include "IMPORT_0" void FUNC_0(struct CLASS_0 *VAR_0, struct CLASS_1 *VAR_1, struct CLASS_2 *VAR_2) { int VAR_3; VAR_3 = 0; while (VAR_0->VAR_4.VAR_5.VAR_6[VAR_3].VAR_0) { VAR_0->VAR_4.VAR_5.VAR_6[VAR_3].VAR_0->VAR_7 = *VAR_1; VAR_0->VAR_4.VAR_5.VAR_6[VAR_3++].VAR_0->VAR_8 = *VAR_2; } VAR_0->VAR_4.VAR_5.VAR_9 = 1; }
0.881248
{'IMPORT_0': 'umr.h', 'FUNC_0': 'umr_apply_callbacks', 'CLASS_0': 'umr_asic', 'VAR_0': 'asic', 'CLASS_1': 'umr_memory_access_funcs', 'VAR_1': 'mems', 'CLASS_2': 'umr_register_access_funcs', 'VAR_2': 'regs', 'VAR_3': 'n', 'VAR_4': 'config', 'VAR_5': 'xgmi', 'VAR_6': 'nodes', 'VAR_7': 'mem_funcs', 'VAR_8': 'reg_funcs', 'VAR_9': 'callbacks_applied'}
/* * hbi.c -- Host Bus Interface Implementation * * Copyright 2016 Microsemi Inc. */ #include "typedefs.h" #include "chip.h" #include "ssl.h" #include "hbi.h" #include "hbi_prv.h" #include "vproc_dbg.h" /* Each device and user correlation is depicted like this: ----------- ------------ ------------ | | | | | | |instance0 | | instance 1|.......|instance n | | | | | | | |----------- ------------ ----------- /|\ /|\ /|\ | | | \|/ \|/ \|/ -- --------------------------------------------- | Device | | | ----------------------------------------------- */ /*specific to each user on device */ struct vproc_inst { struct vproc_dev *pDev; /* pointer to device user is using */ bool inuse; /* flag indicate if current item in list free or occupied */ }; struct hbi_drv_priv { struct vproc_dev dev_list[VPROC_MAX_NUM_DEVS]; /* maximum number of devices supported by HBI driver */ struct vproc_inst inst_list[HBI_MAX_INSTANCES]; /* maximum number of users supported by HBI driver (for multiple apps support of single or multiple devices) */ hbi_init_cfg_t cfg; bool bInitialized; /* flag to indicate if driver is initialised or not */ uint32_t num_opened_dev; /* number of currently opened devices */ uint32_t num_instances; /* number of current users of driver */ uint32_t init_count; }; static struct hbi_drv_priv hbi_priv; #define CHK_IF_INITED(val) \ if( val != TRUE){ \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "Driver not intialised\n"); \ return HBI_STATUS_NOT_INIT; \ } /* Since handle is an index to inst_list array free slot which can be greater than or less than num_cur_instances. */ #define CHK_VALID_HANDLE(handle) \ if((handle >= HBI_MAX_INSTANCES) || \ (hbi_priv.inst_list[handle].inuse == FALSE)) { \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR,"Invalid Handle\n"); \ return HBI_STATUS_BAD_HANDLE; \ } #define CHK_NULL_ARG(arg) \ if( arg == NULL){ \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR,"NULL parameter passed\n"); \ return HBI_STATUS_INVALID_ARG; \ } #define HBI_INST_INVALID_ID -1 hbi_status_t HBI_init(hbi_init_cfg_t *pCfg) { hbi_status_t status = HBI_STATUS_SUCCESS; ssl_status_t ssl_status; if(hbi_priv.bInitialized) { HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER) hbi_priv.init_count++; HBI_UNLOCK(hbi_priv.cfg.lock); VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"HBI already initialized\n"); return HBI_STATUS_SUCCESS; } VPROC_DBG_SET_LVL(DEBUG_LEVEL); SSL_memset(&hbi_priv,0,sizeof(struct hbi_drv_priv)); ssl_status = SSL_init(NULL); CHK_SSL_STATUS(ssl_status); if(pCfg!=NULL) hbi_priv.cfg.lock = pCfg->lock; hbi_priv.bInitialized = TRUE; hbi_priv.init_count++; VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"HBI initialized %d, opened count %d\n", hbi_priv.bInitialized, hbi_priv.init_count); return status; } hbi_status_t HBI_open(hbi_handle_t *pHandle, hbi_dev_cfg_t *pDevCfg) { ssl_status_t ssl_status; ssl_dev_cfg_t ssl_devcfg; int i; struct vproc_dev *pDev; struct vproc_inst *pInst; hbi_status_t status=HBI_STATUS_SUCCESS; uint8_t inst_index; uint8_t dev_index; VPROC_DBG_PRINT(VPROC_DBG_LVL_FUNC,"Enter ...\n"); #ifdef INIT_TERM_AUTO status = HBI_init(NULL); if (status != HBI_STATUS_SUCCESS) { return status; } #endif CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pHandle); CHK_NULL_ARG(pDevCfg); /* check if instance limit been reached */ if(hbi_priv.num_instances >= HBI_MAX_INSTANCES) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "Number of instance limit reached on driver\n"); return HBI_STATUS_RESOURCE_ERR; } HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); /* find out free slot to store user info */ for(i=0;i<HBI_MAX_INSTANCES;i++) { if(hbi_priv.inst_list[i].inuse == FALSE) break; } pInst = &(hbi_priv.inst_list[i]); inst_index = i; VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"inst_index %d\n",i); /* check if unit already opened */ for(i=0;i<VPROC_MAX_NUM_DEVS;i++) { if((hbi_priv.dev_list[i].dev_cfg.deviceId == pDevCfg->deviceId) && (hbi_priv.dev_list[i].port_handle != (ssl_port_handle_t)NULL)) { VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"Unit already opened\n"); pDev = &(hbi_priv.dev_list[i]); HBI_LOCK(pDev->port_lock,SSL_WAIT_FOREVER); /* check if any more users can be opened on device */ if(pDev->num_cur_instances >= HBI_MAX_INST_PER_DEV) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "device is already opened." \ "No more users can be opened on device\n"); HBI_UNLOCK(pDev->port_lock); HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_RESOURCE_ERR; } HBI_UNLOCK(pDev->port_lock); break; } } if(i >= VPROC_MAX_NUM_DEVS) { /* if device isn't already opened, check if there's room to open a new device */ if(hbi_priv.num_opened_dev >= VPROC_MAX_NUM_DEVS) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "Maximum limit reached.Cannot open new device\n"); HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_RESOURCE_ERR; } /* find free device slot */ for(i=0;i<VPROC_MAX_NUM_DEVS;i++) { if(hbi_priv.dev_list[i].inuse == FALSE) break; } pDev = &(hbi_priv.dev_list[i]); dev_index = i; VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"dev_index %d\n",i); /* open an HBI to new device */ SSL_memset(&ssl_devcfg,0,sizeof(ssl_dev_cfg_t)); ssl_devcfg.bus_num = pDevCfg->bus_num; ssl_devcfg.dev_addr = pDevCfg->dev_addr; ssl_devcfg.deviceId = pDevCfg->deviceId; if(pDevCfg->pDevName != NULL) { ssl_devcfg.pDevName = pDevCfg->pDevName; } ssl_status = SSL_port_open(&(pDev->port_handle),&ssl_devcfg); if(ssl_status != SSL_STATUS_OK) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "SSL_port_open failed.Err 0x%x\n", ssl_status); HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_INTERNAL_ERR; } if(pDevCfg->dev_lock) pDev->port_lock = pDevCfg->dev_lock; SSL_memcpy(&(pDev->dev_cfg),pDevCfg,sizeof(hbi_dev_cfg_t)); hbi_priv.num_opened_dev++; hbi_priv.dev_list[dev_index].inuse = TRUE; /* Call device specific open function */ status = internal_hbi_open(pDev,pDevCfg); } /* update device info */ pDev->instances[pDev->num_cur_instances] = inst_index; pDev->num_cur_instances++; /* update user */ pInst->pDev = pDev; pInst->inuse = TRUE; /*update driver global information */ hbi_priv.num_instances++; *pHandle = (hbi_handle_t) inst_index; HBI_UNLOCK(hbi_priv.cfg.lock); return status; } hbi_status_t HBI_close(hbi_handle_t handle) { ssl_status_t ssl_status; hbi_status_t status = HBI_STATUS_SUCCESS; hbi_handle_t inst_index = handle; struct vproc_inst *pInst; struct vproc_dev *pDev; int i; VPROC_DBG_PRINT(VPROC_DBG_LVL_FUNC,"Enter (handle 0x%x)\n",handle); CHK_IF_INITED(hbi_priv.bInitialized); CHK_VALID_HANDLE(inst_index); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pInst = &(hbi_priv.inst_list[inst_index]); pDev = pInst->pDev; /* check if this is the only user of device, then close the device */ if(pDev->num_cur_instances == 1) { VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"Close the device now\n"); HBI_LOCK(pDev->port_lock,SSL_WAIT_FOREVER); ssl_status = SSL_port_close(pDev->port_handle); HBI_UNLOCK(pDev->port_lock); if(ssl_status != SSL_STATUS_OK) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR,"SSL_port_close failed.Err 0x%x\n",ssl_status); HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_INTERNAL_ERR; } pDev->port_handle = 0; pDev->dev_cfg.pDevName = NULL; pDev->inuse = FALSE; hbi_priv.num_opened_dev--; } pInst->pDev = NULL; pInst->inuse = FALSE; for(i=0;i<pDev->num_cur_instances;i++) { if(inst_index == pDev->instances[i]) { VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO, "Mark current user invalid on device\n"); pDev->instances[i] = HBI_INST_INVALID_ID; break; } } pDev->num_cur_instances--; hbi_priv.num_instances--; HBI_UNLOCK(hbi_priv.cfg.lock); #ifdef INIT_TERM_AUTO status = HBI_term(); if(status != HBI_STATUS_SUCCESS) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "driver term error\n"); return status; } #endif return status; } hbi_status_t HBI_term(void) { ssl_status_t ssl_status; if(hbi_priv.bInitialized == FALSE) { VPROC_DBG_PRINT(VPROC_DBG_LVL_INFO,"HBI driver not intiatialised\n"); return HBI_STATUS_SUCCESS; } HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); /* if there're multiple user of driver, just decrement count and return */ if(hbi_priv.init_count>1) { hbi_priv.init_count--; HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_SUCCESS; } /* check if there's any user still using it */ if(hbi_priv.num_instances || hbi_priv.num_opened_dev) { VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "driver in use. please free up all resouces\n"); HBI_UNLOCK(hbi_priv.cfg.lock); return HBI_STATUS_INVALID_STATE; } ssl_status = SSL_term(); HBI_UNLOCK(hbi_priv.cfg.lock); CHK_SSL_STATUS(ssl_status); hbi_priv.init_count--; hbi_priv.bInitialized=FALSE; return HBI_STATUS_SUCCESS; } hbi_status_t HBI_read(hbi_handle_t handle, reg_addr_t reg, user_buffer_t *pOutput, size_t length) { hbi_handle_t inst_index = handle; struct vproc_dev *pDev; hbi_status_t status; CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pOutput); CHK_VALID_HANDLE(inst_index); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[inst_index].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); status = internal_hbi_read(pDev,reg,pOutput,length); return status; } hbi_status_t HBI_write(hbi_handle_t handle, reg_addr_t reg, user_buffer_t *pInput, size_t length) { hbi_status_t status = HBI_STATUS_SUCCESS; hbi_handle_t inst_index = handle; struct vproc_dev *pDev; CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pInput); CHK_VALID_HANDLE(inst_index); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[inst_index].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); status = internal_hbi_write(pDev,reg,pInput,length); return status; } hbi_status_t HBI_set_command(hbi_handle_t handle,hbi_cmd_t cmd,void *pCmdArgs) { hbi_status_t status=HBI_STATUS_SUCCESS; hbi_handle_t inst_indx = handle; struct vproc_dev *pDev; CHK_IF_INITED(hbi_priv.bInitialized); CHK_VALID_HANDLE(inst_indx); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[inst_indx].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); status = internal_hbi_set_command(pDev,cmd,pCmdArgs); return status; } hbi_status_t HBI_reset(hbi_handle_t handle, hbi_rst_mode_t mode) { hbi_status_t status = HBI_STATUS_SUCCESS; hbi_handle_t inst_indx = handle; struct vproc_dev *pDev; CHK_IF_INITED(hbi_priv.bInitialized); CHK_VALID_HANDLE(inst_indx); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[inst_indx].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); status = internal_hbi_reset(pDev,mode); return status; } hbi_status_t HBI_sleep(hbi_handle_t handle) { hbi_status_t status; struct vproc_dev *pDev; int val; CHK_IF_INITED(hbi_priv.bInitialized); CHK_VALID_HANDLE(handle); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[handle].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); val = 1; status = internal_hbi_set_attrib(pDev,HBI_ATTRIB_SLEEP,&val); return status; } hbi_status_t HBI_wake(hbi_handle_t handle) { hbi_status_t status; struct vproc_dev *pDev; int val=0; CHK_IF_INITED(hbi_priv.bInitialized); CHK_VALID_HANDLE(handle); HBI_LOCK(hbi_priv.cfg.lock,SSL_WAIT_FOREVER); pDev = hbi_priv.inst_list[handle].pDev; HBI_UNLOCK(hbi_priv.cfg.lock); val=0; status = internal_hbi_set_attrib(pDev,HBI_ATTRIB_SLEEP,&val); return status; } hbi_status_t HBI_get_header(hbi_data_t *pImg, hbi_img_hdr_t *pHdr) { hbi_status_t status; status = internal_hbi_get_hdr(pImg,pHdr); return status; }
/* * hbi.c -- Host Bus Interface Implementation * * Copyright 2016 Microsemi Inc. */ #include "typedefs.h" #include "chip.h" #include "IMPORT_0" #include "hbi.h" #include "hbi_prv.h" #include "vproc_dbg.h" /* Each device and user correlation is depicted like this: ----------- ------------ ------------ | | | | | | |instance0 | | instance 1|.......|instance n | | | | | | | |----------- ------------ ----------- /|\ /|\ /|\ | | | \|/ \|/ \|/ -- --------------------------------------------- | Device | | | ----------------------------------------------- */ /*specific to each user on device */ struct vproc_inst { struct vproc_dev *VAR_0; /* pointer to device user is using */ bool inuse; /* flag indicate if current item in list free or occupied */ }; struct hbi_drv_priv { struct vproc_dev dev_list[VAR_1]; /* maximum number of devices supported by HBI driver */ struct vproc_inst inst_list[HBI_MAX_INSTANCES]; /* maximum number of users supported by HBI driver (for multiple apps support of single or multiple devices) */ hbi_init_cfg_t cfg; bool bInitialized; /* flag to indicate if driver is initialised or not */ uint32_t num_opened_dev; /* number of currently opened devices */ uint32_t num_instances; /* number of current users of driver */ uint32_t init_count; }; static struct hbi_drv_priv hbi_priv; #define CHK_IF_INITED(VAR_2) \ if( val != TRUE){ \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR, "Driver not intialised\n"); \ return HBI_STATUS_NOT_INIT; \ } /* Since handle is an index to inst_list array free slot which can be greater than or less than num_cur_instances. */ #define FUNC_0(handle) \ if((handle >= HBI_MAX_INSTANCES) || \ (hbi_priv.inst_list[handle].inuse == FALSE)) { \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR,"Invalid Handle\n"); \ return HBI_STATUS_BAD_HANDLE; \ } #define CHK_NULL_ARG(VAR_3) \ if( arg == NULL){ \ VPROC_DBG_PRINT(VPROC_DBG_LVL_ERR,"NULL parameter passed\n"); \ return HBI_STATUS_INVALID_ARG; \ } #define HBI_INST_INVALID_ID -1 CLASS_0 HBI_init(hbi_init_cfg_t *pCfg) { CLASS_0 status = HBI_STATUS_SUCCESS; ssl_status_t ssl_status; if(hbi_priv.bInitialized) { FUNC_1(hbi_priv.cfg.VAR_4,VAR_5) hbi_priv.init_count++; HBI_UNLOCK(hbi_priv.cfg.VAR_4); FUNC_2(VPROC_DBG_LVL_INFO,"HBI already initialized\n"); return HBI_STATUS_SUCCESS; } VPROC_DBG_SET_LVL(VAR_6); SSL_memset(&hbi_priv,0,sizeof(struct hbi_drv_priv)); ssl_status = FUNC_3(NULL); FUNC_4(ssl_status); if(pCfg!=NULL) hbi_priv.cfg.VAR_4 = pCfg->VAR_4; hbi_priv.bInitialized = TRUE; hbi_priv.init_count++; FUNC_2(VPROC_DBG_LVL_INFO,"HBI initialized %d, opened count %d\n", hbi_priv.bInitialized, hbi_priv.init_count); return status; } CLASS_0 HBI_open(hbi_handle_t *pHandle, hbi_dev_cfg_t *VAR_7) { ssl_status_t ssl_status; CLASS_1 ssl_devcfg; int i; struct vproc_dev *VAR_0; struct vproc_inst *pInst; CLASS_0 status=HBI_STATUS_SUCCESS; uint8_t inst_index; uint8_t dev_index; FUNC_2(VPROC_DBG_LVL_FUNC,"Enter ...\n"); #ifdef VAR_9 status = HBI_init(NULL); if (status != HBI_STATUS_SUCCESS) { return status; } #endif CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pHandle); CHK_NULL_ARG(VAR_7); /* check if instance limit been reached */ if(hbi_priv.num_instances >= HBI_MAX_INSTANCES) { FUNC_2(VPROC_DBG_LVL_ERR, "Number of instance limit reached on driver\n"); return HBI_STATUS_RESOURCE_ERR; } FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); /* find out free slot to store user info */ for(i=0;i<HBI_MAX_INSTANCES;i++) { if(hbi_priv.inst_list[i].inuse == FALSE) break; } pInst = &(hbi_priv.inst_list[i]); inst_index = i; FUNC_2(VPROC_DBG_LVL_INFO,"inst_index %d\n",i); /* check if unit already opened */ for(i=0;i<VAR_1;i++) { if((hbi_priv.dev_list[i].VAR_10.VAR_11 == VAR_7->VAR_11) && (hbi_priv.dev_list[i].port_handle != (ssl_port_handle_t)NULL)) { FUNC_2(VPROC_DBG_LVL_INFO,"Unit already opened\n"); VAR_0 = &(hbi_priv.dev_list[i]); FUNC_1(VAR_0->VAR_12,VAR_5); /* check if any more users can be opened on device */ if(VAR_0->VAR_13 >= VAR_14) { FUNC_2(VPROC_DBG_LVL_ERR, "device is already opened." \ "No more users can be opened on device\n"); HBI_UNLOCK(VAR_0->VAR_12); HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_RESOURCE_ERR; } HBI_UNLOCK(VAR_0->VAR_12); break; } } if(i >= VAR_1) { /* if device isn't already opened, check if there's room to open a new device */ if(hbi_priv.num_opened_dev >= VAR_1) { FUNC_2(VPROC_DBG_LVL_ERR, "Maximum limit reached.Cannot open new device\n"); HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_RESOURCE_ERR; } /* find free device slot */ for(i=0;i<VAR_1;i++) { if(hbi_priv.dev_list[i].inuse == FALSE) break; } VAR_0 = &(hbi_priv.dev_list[i]); dev_index = i; FUNC_2(VPROC_DBG_LVL_INFO,"dev_index %d\n",i); /* open an HBI to new device */ SSL_memset(&ssl_devcfg,0,sizeof(VAR_8)); ssl_devcfg.bus_num = VAR_7->bus_num; ssl_devcfg.dev_addr = VAR_7->dev_addr; ssl_devcfg.VAR_11 = VAR_7->VAR_11; if(VAR_7->pDevName != NULL) { ssl_devcfg.pDevName = VAR_7->pDevName; } ssl_status = SSL_port_open(&(VAR_0->port_handle),&ssl_devcfg); if(ssl_status != SSL_STATUS_OK) { FUNC_2(VPROC_DBG_LVL_ERR, "SSL_port_open failed.Err 0x%x\n", ssl_status); HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_INTERNAL_ERR; } if(VAR_7->VAR_15) VAR_0->VAR_12 = VAR_7->VAR_15; SSL_memcpy(&(VAR_0->VAR_10),VAR_7,sizeof(hbi_dev_cfg_t)); hbi_priv.num_opened_dev++; hbi_priv.dev_list[dev_index].inuse = TRUE; /* Call device specific open function */ status = internal_hbi_open(VAR_0,VAR_7); } /* update device info */ VAR_0->instances[VAR_0->VAR_13] = inst_index; VAR_0->VAR_13++; /* update user */ pInst->VAR_0 = VAR_0; pInst->inuse = TRUE; /*update driver global information */ hbi_priv.num_instances++; *pHandle = (hbi_handle_t) inst_index; HBI_UNLOCK(hbi_priv.cfg.VAR_4); return status; } CLASS_0 FUNC_5(hbi_handle_t handle) { ssl_status_t ssl_status; CLASS_0 status = HBI_STATUS_SUCCESS; hbi_handle_t inst_index = handle; struct vproc_inst *pInst; struct vproc_dev *VAR_0; int i; FUNC_2(VPROC_DBG_LVL_FUNC,"Enter (handle 0x%x)\n",handle); CHK_IF_INITED(hbi_priv.bInitialized); FUNC_0(inst_index); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); pInst = &(hbi_priv.inst_list[inst_index]); VAR_0 = pInst->VAR_0; /* check if this is the only user of device, then close the device */ if(VAR_0->VAR_13 == 1) { FUNC_2(VPROC_DBG_LVL_INFO,"Close the device now\n"); FUNC_1(VAR_0->VAR_12,VAR_5); ssl_status = SSL_port_close(VAR_0->port_handle); HBI_UNLOCK(VAR_0->VAR_12); if(ssl_status != SSL_STATUS_OK) { FUNC_2(VPROC_DBG_LVL_ERR,"SSL_port_close failed.Err 0x%x\n",ssl_status); HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_INTERNAL_ERR; } VAR_0->port_handle = 0; VAR_0->VAR_10.pDevName = NULL; VAR_0->inuse = FALSE; hbi_priv.num_opened_dev--; } pInst->VAR_0 = NULL; pInst->inuse = FALSE; for(i=0;i<VAR_0->VAR_13;i++) { if(inst_index == VAR_0->instances[i]) { FUNC_2(VPROC_DBG_LVL_INFO, "Mark current user invalid on device\n"); VAR_0->instances[i] = HBI_INST_INVALID_ID; break; } } VAR_0->VAR_13--; hbi_priv.num_instances--; HBI_UNLOCK(hbi_priv.cfg.VAR_4); #ifdef VAR_9 status = HBI_term(); if(status != HBI_STATUS_SUCCESS) { FUNC_2(VPROC_DBG_LVL_ERR, "driver term error\n"); return status; } #endif return status; } CLASS_0 HBI_term(void) { ssl_status_t ssl_status; if(hbi_priv.bInitialized == FALSE) { FUNC_2(VPROC_DBG_LVL_INFO,"HBI driver not intiatialised\n"); return HBI_STATUS_SUCCESS; } FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); /* if there're multiple user of driver, just decrement count and return */ if(hbi_priv.init_count>1) { hbi_priv.init_count--; HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_SUCCESS; } /* check if there's any user still using it */ if(hbi_priv.num_instances || hbi_priv.num_opened_dev) { FUNC_2(VPROC_DBG_LVL_ERR, "driver in use. please free up all resouces\n"); HBI_UNLOCK(hbi_priv.cfg.VAR_4); return HBI_STATUS_INVALID_STATE; } ssl_status = SSL_term(); HBI_UNLOCK(hbi_priv.cfg.VAR_4); FUNC_4(ssl_status); hbi_priv.init_count--; hbi_priv.bInitialized=FALSE; return HBI_STATUS_SUCCESS; } CLASS_0 HBI_read(hbi_handle_t handle, reg_addr_t VAR_16, user_buffer_t *pOutput, size_t length) { hbi_handle_t inst_index = handle; struct vproc_dev *VAR_0; CLASS_0 status; CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pOutput); FUNC_0(inst_index); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[inst_index].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); status = internal_hbi_read(VAR_0,VAR_16,pOutput,length); return status; } CLASS_0 HBI_write(hbi_handle_t handle, reg_addr_t VAR_16, user_buffer_t *pInput, size_t length) { CLASS_0 status = HBI_STATUS_SUCCESS; hbi_handle_t inst_index = handle; struct vproc_dev *VAR_0; CHK_IF_INITED(hbi_priv.bInitialized); CHK_NULL_ARG(pInput); FUNC_0(inst_index); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[inst_index].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); status = internal_hbi_write(VAR_0,VAR_16,pInput,length); return status; } CLASS_0 HBI_set_command(hbi_handle_t handle,hbi_cmd_t cmd,void *pCmdArgs) { CLASS_0 status=HBI_STATUS_SUCCESS; hbi_handle_t inst_indx = handle; struct vproc_dev *VAR_0; CHK_IF_INITED(hbi_priv.bInitialized); FUNC_0(inst_indx); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[inst_indx].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); status = internal_hbi_set_command(VAR_0,cmd,pCmdArgs); return status; } CLASS_0 HBI_reset(hbi_handle_t handle, hbi_rst_mode_t mode) { CLASS_0 status = HBI_STATUS_SUCCESS; hbi_handle_t inst_indx = handle; struct vproc_dev *VAR_0; CHK_IF_INITED(hbi_priv.bInitialized); FUNC_0(inst_indx); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[inst_indx].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); status = internal_hbi_reset(VAR_0,mode); return status; } CLASS_0 FUNC_6(hbi_handle_t handle) { CLASS_0 status; struct vproc_dev *VAR_0; int VAR_2; CHK_IF_INITED(hbi_priv.bInitialized); FUNC_0(handle); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[handle].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); VAR_2 = 1; status = FUNC_7(VAR_0,HBI_ATTRIB_SLEEP,&VAR_2); return status; } CLASS_0 FUNC_8(hbi_handle_t handle) { CLASS_0 status; struct vproc_dev *VAR_0; int VAR_2=0; CHK_IF_INITED(hbi_priv.bInitialized); FUNC_0(handle); FUNC_1(hbi_priv.cfg.VAR_4,VAR_5); VAR_0 = hbi_priv.inst_list[handle].VAR_0; HBI_UNLOCK(hbi_priv.cfg.VAR_4); VAR_2=0; status = FUNC_7(VAR_0,HBI_ATTRIB_SLEEP,&VAR_2); return status; } CLASS_0 FUNC_9(hbi_data_t *pImg, hbi_img_hdr_t *pHdr) { CLASS_0 status; status = internal_hbi_get_hdr(pImg,pHdr); return status; }
0.363122
{'IMPORT_0': 'ssl.h', 'VAR_0': 'pDev', 'VAR_1': 'VPROC_MAX_NUM_DEVS', 'VAR_2': 'val', 'FUNC_0': 'CHK_VALID_HANDLE', 'VAR_3': 'arg', 'CLASS_0': 'hbi_status_t', 'FUNC_1': 'HBI_LOCK', 'VAR_4': 'lock', 'VAR_5': 'SSL_WAIT_FOREVER', 'FUNC_2': 'VPROC_DBG_PRINT', 'VAR_6': 'DEBUG_LEVEL', 'FUNC_3': 'SSL_init', 'FUNC_4': 'CHK_SSL_STATUS', 'VAR_7': 'pDevCfg', 'CLASS_1': 'ssl_dev_cfg_t', 'VAR_8': 'ssl_dev_cfg_t', 'VAR_9': 'INIT_TERM_AUTO', 'VAR_10': 'dev_cfg', 'VAR_11': 'deviceId', 'VAR_12': 'port_lock', 'VAR_13': 'num_cur_instances', 'VAR_14': 'HBI_MAX_INST_PER_DEV', 'VAR_15': 'dev_lock', 'FUNC_5': 'HBI_close', 'VAR_16': 'reg', 'FUNC_6': 'HBI_sleep', 'FUNC_7': 'internal_hbi_set_attrib', 'FUNC_8': 'HBI_wake', 'FUNC_9': 'HBI_get_header'}
/* * Copyright 2017-2019 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "GLCommandBufferPool.h" #include "GLOtherCommandBuffer.h" #include <DeepSea/Core/Containers/ResizeableArray.h> #include <DeepSea/Core/Memory/Allocator.h> #include <DeepSea/Core/Assert.h> #include <string.h> typedef struct dsGLCommandBufferPool { dsCommandBufferPool commandBufferPool; uint32_t createdCount; uint32_t maxCommandBuffers; } dsGLCommandBufferPool; dsCommandBufferPool* dsGLCommandBufferPool_create(dsRenderer* renderer, dsAllocator* allocator, dsCommandBufferUsage usage) { DS_ASSERT(renderer); DS_ASSERT(allocator); dsGLCommandBufferPool* pool = DS_ALLOCATE_OBJECT(allocator, dsGLCommandBufferPool); if (!pool) return NULL; dsCommandBufferPool* basePool = (dsCommandBufferPool*)pool; basePool->renderer = renderer; basePool->allocator = dsAllocator_keepPointer(allocator); basePool->commandBuffers = NULL; basePool->count = 0; basePool->usage = usage; pool->createdCount = 0; pool->maxCommandBuffers = 0; return basePool; } bool dsGLCommandBufferPool_createCommandBuffers(dsRenderer* renderer, dsCommandBufferPool* pool, uint32_t count) { DS_ASSERT(renderer); DS_ASSERT(pool); dsGLCommandBufferPool* glPool = (dsGLCommandBufferPool*)pool; if (!DS_RESIZEABLE_ARRAY_ADD(pool->allocator, pool->commandBuffers, pool->count, glPool->maxCommandBuffers, count)) { return false; } for (; glPool->createdCount < pool->count; ++glPool->createdCount) { dsGLOtherCommandBuffer* commandBuffer = dsGLOtherCommandBuffer_create(renderer, pool->allocator, pool->usage); if (!commandBuffer) { pool->count -= count; return false; } pool->commandBuffers[glPool->createdCount] = (dsCommandBuffer*)commandBuffer; } return true; } bool dsGLCommandBufferPool_reset(dsRenderer* renderer, dsCommandBufferPool* pool) { DS_UNUSED(renderer); DS_ASSERT(pool); for (uint32_t i = 0; i < pool->count; ++i) dsGLOtherCommandBuffer_reset(pool->commandBuffers[i]); pool->count = 0; return true; } bool dsGLCommandBufferPool_destroy(dsRenderer* renderer, dsCommandBufferPool* pool) { DS_UNUSED(renderer); DS_ASSERT(pool); dsGLCommandBufferPool* glPool = (dsGLCommandBufferPool*)pool; for (uint32_t i = 0; i < glPool->createdCount; ++i) dsGLOtherCommandBuffer_destroy((dsGLOtherCommandBuffer*)pool->commandBuffers[i]); DS_VERIFY(dsAllocator_free(pool->allocator, pool->commandBuffers)); DS_VERIFY(dsAllocator_free(pool->allocator, pool)); return true; }
/* * Copyright 2017-2019 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "GLCommandBufferPool.h" #include "GLOtherCommandBuffer.h" #include <IMPORT_0> #include <IMPORT_1> #include <DeepSea/Core/Assert.h> #include <string.h> typedef struct dsGLCommandBufferPool { dsCommandBufferPool VAR_0; uint32_t VAR_1; uint32_t VAR_2; } dsGLCommandBufferPool; dsCommandBufferPool* FUNC_0(CLASS_0* VAR_3, CLASS_1* allocator, CLASS_2 VAR_4) { DS_ASSERT(VAR_3); DS_ASSERT(allocator); dsGLCommandBufferPool* pool = FUNC_1(allocator, dsGLCommandBufferPool); if (!pool) return NULL; dsCommandBufferPool* basePool = (dsCommandBufferPool*)pool; basePool->VAR_3 = VAR_3; basePool->allocator = dsAllocator_keepPointer(allocator); basePool->VAR_5 = NULL; basePool->count = 0; basePool->VAR_4 = VAR_4; pool->VAR_1 = 0; pool->VAR_2 = 0; return basePool; } bool dsGLCommandBufferPool_createCommandBuffers(CLASS_0* VAR_3, dsCommandBufferPool* pool, uint32_t count) { DS_ASSERT(VAR_3); DS_ASSERT(pool); dsGLCommandBufferPool* VAR_6 = (dsGLCommandBufferPool*)pool; if (!DS_RESIZEABLE_ARRAY_ADD(pool->allocator, pool->VAR_5, pool->count, VAR_6->VAR_2, count)) { return false; } for (; VAR_6->VAR_1 < pool->count; ++VAR_6->VAR_1) { dsGLOtherCommandBuffer* VAR_7 = dsGLOtherCommandBuffer_create(VAR_3, pool->allocator, pool->VAR_4); if (!VAR_7) { pool->count -= count; return false; } pool->VAR_5[VAR_6->VAR_1] = (CLASS_3*)VAR_7; } return true; } bool FUNC_2(CLASS_0* VAR_3, dsCommandBufferPool* pool) { DS_UNUSED(VAR_3); DS_ASSERT(pool); for (uint32_t i = 0; i < pool->count; ++i) dsGLOtherCommandBuffer_reset(pool->VAR_5[i]); pool->count = 0; return true; } bool FUNC_3(CLASS_0* VAR_3, dsCommandBufferPool* pool) { DS_UNUSED(VAR_3); DS_ASSERT(pool); dsGLCommandBufferPool* VAR_6 = (dsGLCommandBufferPool*)pool; for (uint32_t i = 0; i < VAR_6->VAR_1; ++i) FUNC_4((dsGLOtherCommandBuffer*)pool->VAR_5[i]); DS_VERIFY(FUNC_5(pool->allocator, pool->VAR_5)); DS_VERIFY(FUNC_5(pool->allocator, pool)); return true; }
0.463443
{'IMPORT_0': 'DeepSea/Core/Containers/ResizeableArray.h', 'IMPORT_1': 'DeepSea/Core/Memory/Allocator.h', 'VAR_0': 'commandBufferPool', 'VAR_1': 'createdCount', 'VAR_2': 'maxCommandBuffers', 'FUNC_0': 'dsGLCommandBufferPool_create', 'CLASS_0': 'dsRenderer', 'VAR_3': 'renderer', 'CLASS_1': 'dsAllocator', 'CLASS_2': 'dsCommandBufferUsage', 'VAR_4': 'usage', 'FUNC_1': 'DS_ALLOCATE_OBJECT', 'VAR_5': 'commandBuffers', 'VAR_6': 'glPool', 'VAR_7': 'commandBuffer', 'CLASS_3': 'dsCommandBuffer', 'FUNC_2': 'dsGLCommandBufferPool_reset', 'FUNC_3': 'dsGLCommandBufferPool_destroy', 'FUNC_4': 'dsGLOtherCommandBuffer_destroy', 'FUNC_5': 'dsAllocator_free'}
#include <common.h> #include <stddef.h> #include <stdint.h> #include <system.h> typedef u32 (*event_func)(u8 *); u32 (*event_table[])() = { [MAP_KEYBOARD] = NULL, [MAP_MOUSE] = NULL }; u32 event_map(u32 id, u8 *function) { if (id >= sizeof(event_map) / sizeof(*event_map)) return -1; event_table[id] = (u32)function; return 0; } u32 event_trigger(u32 id, u8 *data) { assert(id < sizeof(event_map) / sizeof(*event_map)); event_func location = (event_func)event_table[id]; if (!location) { warn("Event %d not mapped!", id); return -1; } location(data); return 0; }
#include <IMPORT_0> #include <stddef.h> #include <IMPORT_1> #include <IMPORT_2> typedef CLASS_0 (*CLASS_1)(CLASS_2 *); CLASS_0 (*VAR_0[])() = { [VAR_1] = NULL, [VAR_2] = NULL }; CLASS_0 event_map(CLASS_0 VAR_3, CLASS_2 *VAR_4) { if (VAR_3 >= sizeof(event_map) / sizeof(*event_map)) return -1; VAR_0[VAR_3] = (ID_0)VAR_4; return 0; } CLASS_0 FUNC_0(CLASS_0 VAR_3, CLASS_2 *VAR_5) { FUNC_1(VAR_3 < sizeof(event_map) / sizeof(*event_map)); CLASS_1 VAR_6 = (ID_1)VAR_0[VAR_3]; if (!VAR_6) { FUNC_3("Event %d not mapped!", VAR_3); return -1; } FUNC_2(VAR_5); return 0; }
0.819356
{'IMPORT_0': 'common.h', 'IMPORT_1': 'stdint.h', 'IMPORT_2': 'system.h', 'CLASS_0': 'u32', 'ID_0': 'u32', 'CLASS_1': 'event_func', 'ID_1': 'event_func', 'CLASS_2': 'u8', 'VAR_0': 'event_table', 'VAR_1': 'MAP_KEYBOARD', 'VAR_2': 'MAP_MOUSE', 'VAR_3': 'id', 'VAR_4': 'function', 'FUNC_0': 'event_trigger', 'VAR_5': 'data', 'FUNC_1': 'assert', 'VAR_6': 'location', 'FUNC_2': 'location', 'FUNC_3': 'warn'}
/* pass 1 to disable ctrlc() checking, 0 to enable. * returns previous state */ int disable_ctrlc(int disable) { int prev = ctrlc_disabled; ctrlc_disabled = disable; return prev; }
/* pass 1 to disable ctrlc() checking, 0 to enable. * returns previous state */ int FUNC_0(int VAR_0) { int VAR_1 = VAR_2; VAR_2 = VAR_0; return VAR_1; }
0.83236
{'FUNC_0': 'disable_ctrlc', 'VAR_0': 'disable', 'VAR_1': 'prev', 'VAR_2': 'ctrlc_disabled'}
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2017 Marvell International Ltd. * Copyright(c) 2017 Semihalf. * All rights reserved. */ #ifndef _RTE_MRVL_COMPAT_H_ #define _RTE_MRVL_COMPAT_H_ /* Unluckily, container_of is defined by both DPDK and MUSDK, * we'll declare only one version. * * Note that it is not used in this PMD anyway. */ #ifdef container_of #undef container_of #endif #include "env/mv_autogen_comp_flags.h" #include "drivers/mv_sam.h" #include "drivers/mv_sam_cio.h" #include "drivers/mv_sam_session.h" #endif /* _RTE_MRVL_COMPAT_H_ */
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2017 Marvell International Ltd. * Copyright(c) 2017 Semihalf. * All rights reserved. */ #ifndef _RTE_MRVL_COMPAT_H_ #define _RTE_MRVL_COMPAT_H_ /* Unluckily, container_of is defined by both DPDK and MUSDK, * we'll declare only one version. * * Note that it is not used in this PMD anyway. */ #ifdef container_of #undef container_of #endif #include "env/mv_autogen_comp_flags.h" #include "drivers/mv_sam.h" #include "drivers/mv_sam_cio.h" #include "drivers/mv_sam_session.h" #endif /* _RTE_MRVL_COMPAT_H_ */
0.121469
{}
/* * Copyright (C) 2011 <NAME> * * 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, 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. * */ #include "sbsat.h" enum { MITOSIS_FLAG_NUMBER, MAX_FLAG_NUMBER }; uintmax_t bdd_flag_numbers[MAX_FLAG_NUMBER] = {0}; uintmax_t increment_and_return_bdd_flag_number(int bdd_flag) { bdd_flag_numbers[bdd_flag]++; if (bdd_flag_numbers[bdd_flag] == INT_MAX) { bdd_flag_numbers[bdd_flag] = 0; } return bdd_flag_numbers[bdd_flag]; } //Should really write my own qsort rather than use this. SEAN!!! int bddperm_compfunc (const void *x, const void *y) { uintmax_t pp, qq; pp = *(const uintmax_t *) x; qq = *(const uintmax_t *) y; if (BM_main->dd->perm[pp] < BM_main->dd->perm[qq]) return -1; if (pp == qq) #ifndef FORCE_STABLE_QSORT return 0; #else { if (x < y) return -1; else if (x > y) return 1; else return 0; } #endif return 1; } void _BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f); //Populate a list with variables occurring in BDD f. void BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f) { *length=0; _BDD_Support(length, max, tempint, Cudd_Regular(f)); for (uintmax_t i = 0; i < *length; i++) { // clear the flag sym_reset_flag((*tempint)[i]); } ddClearFlag(Cudd_Regular(f)); } //Populate a list with variables occurring in BDD f and g (with f occuring first). void BDD_Support2(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f, DdNode *g) { *length=0; _BDD_Support(length, max, tempint, Cudd_Regular(f)); _BDD_Support(length, max, tempint, Cudd_Regular(g)); for (uintmax_t i = 0; i < *length; i++) { // clear the flag sym_reset_flag((*tempint)[i]); } ddClearFlag(Cudd_Regular(f)); ddClearFlag(Cudd_Regular(g)); } void _BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f) { if (cuddIsConstant(f) || Cudd_IsComplement(f->next)) return; /* Mark as visited. */ f->next = Cudd_Not(f->next); if (sym_is_flag(f->index) == 0) { if (*length >= *max) { *tempint = (uintmax_t*)sbsat_recalloc(*(void**)tempint, *max, *max+100, sizeof(uintmax_t), 9, "tempint"); *max += 100; } (*tempint)[*length] = f->index; sym_set_flag(f->index); (*length)++; } _BDD_Support (length, max, tempint, cuddT(f)); _BDD_Support (length, max, tempint, Cudd_Regular(cuddE(f))); } uintmax_t _highest_var_in_BDD(DdNode *f) { if (cuddIsConstant(f) || Cudd_IsComplement(f->next)) return 0; /* Mark as visited. */ f->next = Cudd_Not(f->next); uintmax_t max1 = _highest_var_in_BDD(cuddT(f)); uintmax_t max2 = _highest_var_in_BDD(Cudd_Regular(cuddE(f))); uintmax_t max3 = f->index; if(max1 > max2) { if(max1 > max3) return max1; return max3; } else if(max3 > max2) { return max3; } else return max2; } uintmax_t highest_var_in_BDD(DdNode *f) { uintmax_t max = _highest_var_in_BDD(Cudd_Regular(f)); ddClearFlag(Cudd_Regular(f)); return max; } DdNode *Mitosis_Recur(DdManager *dd, DdNode *f, uint32_t *map, DdNode *unique) { DdNode *F = Cudd_Regular(f); DdNode *res; if (cuddIsConstant(F)) return f; if (F->ref > 1 && (res = cuddCacheLookup2(dd, (DdNode* (*)(DdManager*, DdNode*, DdNode*))Mitosis_Recur, f, unique)) != NULL) { return(res); } /* Split and recur on children of this node. */ DdNode *T = Mitosis_Recur(dd, cuddT(F), map, unique); if (T == NULL) return(NULL); cuddRef(T); DdNode *E = Mitosis_Recur(dd, cuddE(F), map, unique); if (E == NULL) { Cudd_IterDerefBdd(dd, T); return(NULL); } cuddRef(E); /* Move variable that should be in this position to this position ** by retrieving the single var BDD for that variable, and calling ** cuddBddIteRecur with the T and E we just created. */ uint32_t index = map[F->index]; res = cuddBddIteRecur(dd, dd->vars[index], T, E); if (res == NULL) { Cudd_IterDerefBdd(dd, T); Cudd_IterDerefBdd(dd, E); return(NULL); } cuddRef(res); Cudd_IterDerefBdd(dd, T); Cudd_IterDerefBdd(dd, E); cuddDeref(res); if (F->ref > 1) cuddCacheInsert2(dd, (DdNode* (*)(DdManager*, DdNode*, DdNode*)) Mitosis_Recur, f, unique, Cudd_NotCond(res, F != f)); return(Cudd_NotCond(res, F != f)); } DdNode *Mitosis(DdManager *dd, DdNode *f, uint32_t *map) { DdNode *unique = (DdNode *)increment_and_return_bdd_flag_number(MITOSIS_FLAG_NUMBER); return Mitosis_Recur(dd, f, map, unique); } DdNode *_clone_BDD(DdManager *dd, DdManager *dd_old, DdNode *f, st_table *table) { if (f == DD_ONE(dd_old)) return DD_ONE(dd); if (f == Cudd_Not(DD_ONE(dd_old))) return Cudd_Not(DD_ONE(dd)); DdNode *F = Cudd_Regular(f); DdNode *T, *E; DdNode *cached; if(st_lookup(table, f, &cached)) { return cached; } T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } DdNode *r = _clone_BDD(dd, dd_old, T, table); Cudd_Ref(r); DdNode *e = _clone_BDD(dd, dd_old, E, table); Cudd_Ref(e); DdNode *ret = Cudd_bddIte(dd, Cudd_bddIthVar(dd, F->index), r, e); Cudd_Ref(ret); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); if(st_add_direct(table, (char *)f, (char *)ret) == ST_OUT_OF_MEM) { assert(0); exit(0); } cuddDeref(ret); return ret; } DdNode *clone_BDD(DdManager *dd, DdManager *dd_old, DdNode *f) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); st_table *table; table = st_init_table(st_ptrcmp,st_ptrhash); if (table == NULL) { return NULL; } DdNode *ret = _clone_BDD(dd, dd_old, f, table); st_free_table(table); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); return ret; } DdNode *build_and_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = DD_ONE(dd); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); clause = Cudd_bddAnd(dd, tmp_lit, bTemp = clause); cuddRef(clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_or_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = Cudd_Not(DD_ONE(dd)); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); clause = Cudd_bddOr(dd, tmp_lit, bTemp = clause); cuddRef(clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_xor_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *xor_clause = Cudd_Not(DD_ONE(dd)); cuddRef(xor_clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); xor_clause = Cudd_bddXor(dd, tmp_lit, bTemp = xor_clause); cuddRef(xor_clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(xor_clause); return xor_clause; } DdNode *build_and_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *cube = DD_ONE(dd); cuddRef(cube); for(intmax_t y = length-1; y >=0; y--) { if(imaxabs(variables[y]) == equal_var) continue; tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); bTemp = Cudd_bddAnd(dd, tmp_lit, cube); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, cube); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, cube); cube = bTemp; } tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var>0); bTemp = Cudd_bddXor(dd, tmp_lit, cube); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, cube); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, cube); cube = bTemp; Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(cube); return cube; } DdNode *build_or_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = Cudd_Not(DD_ONE(dd)); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { if(imaxabs(variables[y]) == equal_var) continue; tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); bTemp = Cudd_bddOr(dd, tmp_lit, clause); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, clause); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, clause); clause = bTemp; } tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var>0); bTemp = Cudd_bddXor(dd, tmp_lit, clause); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, clause); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, clause); clause = bTemp; Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_ite_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t v1, intmax_t v2, intmax_t v3) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *v1_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v1)), v1<0); DdNode *v2_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v2)), v2<0); DdNode *v3_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v3)), v3<0); DdNode *ite_equals = Cudd_bddIte(dd, v1_dd, v2_dd, v3_dd); cuddRef(ite_equals); tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var<0); ite_equals = Cudd_Not(Cudd_bddXor(dd, tmp_lit, bTemp = ite_equals)); cuddRef(ite_equals); Cudd_IterDerefBdd(dd, bTemp); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(ite_equals); return ite_equals; } DdNode *build_majv_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t v1, intmax_t v2, intmax_t v3) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *v1_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v1)), v1<0); DdNode *v2_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v2)), v2<0); DdNode *v3_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v3)), v3<0); DdNode *or_bdd = Cudd_bddOr(dd, v2_dd, v3_dd); cuddRef(or_bdd); DdNode *and_bdd = Cudd_bddAnd(dd, v2_dd, v3_dd); cuddRef(and_bdd); DdNode *majv_equals = Cudd_bddIte(dd, v1_dd, or_bdd, and_bdd); cuddRef(majv_equals); Cudd_IterDerefBdd(dd, or_bdd); Cudd_IterDerefBdd(dd, and_bdd); tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var<0); majv_equals = Cudd_Not(Cudd_bddXor(dd, tmp_lit, bTemp = majv_equals)); cuddRef(majv_equals); Cudd_IterDerefBdd(dd, bTemp); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(majv_equals); return majv_equals; } DdNode *build_cardinality_BDD(DdManager *dd, uintmax_t min, uintmax_t max, uintmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); uintmax_t i; intmax_t j; DdNode *bTemp, *result; if(max < min) return Cudd_Not(DD_ONE(dd)); Cudd_AutodynDisable(dd); //It is a good idea to sort 'variables' according to dd->perm before building a cardinality BDD. //for(i = 1; ((uintmax_t) i) < length; i++) assert(dd->perm[variables[i-1]] < dd->perm[variables[i]]); DdNode **arr = (DdNode **)sbsat_calloc(length+1, sizeof(DdNode*), 9, "create_cardinality_BDD"); arr[0] = Cudd_NotCond(DD_ONE(dd), (0 >= min)==0); cuddRef(arr[0]); for(i = 1; i <= length; i++) { DdNode *prev_node = Cudd_NotCond(DD_ONE(dd), (i >= min && i <= max)==0); cuddRef(prev_node); if(prev_node != arr[0]) { arr[0] = Cudd_bddIte(dd, Cudd_bddIthVar(dd, variables[length-1]), prev_node, bTemp = arr[0]); cuddRef(arr[0]); Cudd_IterDerefBdd(dd, bTemp); } for(j = 1; j < (intmax_t) i; j++) { if(arr[j] != arr[j-1]) { arr[j] = Cudd_bddIte(dd, Cudd_bddIthVar(dd, variables[(length-1)-j]), arr[j-1], bTemp = arr[j]); cuddRef(arr[j]); Cudd_IterDerefBdd(dd, bTemp); } } for(j = i; j > 0; j--) arr[j] = arr[j-1]; arr[0] = prev_node; } result = arr[length]; for(i = 0; i < length; i++) { Cudd_IterDerefBdd(dd, arr[i]); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); free(arr); Cudd_Deref(result); return result; } /****************************************************************************************************/ uintmax_t add_and_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_and_BDD(BM->dd, variables, length)); } uintmax_t add_or_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_or_BDD(BM->dd, variables, length)); } uintmax_t add_xor_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_xor_BDD(BM->dd, variables, length)); } uintmax_t add_and_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_and_equals_BDD(BM->dd, equal_var, variables, length)); } uintmax_t add_or_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_or_equals_BDD(BM->dd, equal_var, variables, length)); } uintmax_t add_ite_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t v1, intmax_t v2, intmax_t v3) { return add_BDD_to_manager(BM, build_ite_equals_BDD(BM->dd, equal_var, v1, v2, v3)); } uintmax_t add_majv_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t v1, intmax_t v2, intmax_t v3) { return add_BDD_to_manager(BM, build_majv_equals_BDD(BM->dd, equal_var, v1, v2, v3)); } uintmax_t add_cardinality_BDD(BDDManager *BM, uintmax_t min, uintmax_t max, uintmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_cardinality_BDD(BM->dd, min, max, variables, length)); } DdNode *precache_conjunctive_BDD_overlap(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { DdNode *precache_cube = Cudd_ReadOne(BM->dd); Cudd_Ref(precache_cube); uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { uintmax_t bdd_var = BM->Support[bdd0].pList[bdd0_i]; if(bdd_var >= BM->ExQuantProtectedVars.nLength || BM->ExQuantProtectedVars.pList[bdd_var] == 0) { if(BM->VarBDDMap[bdd_var].nLength <= var_limit) { DdNode *bTemp = Cudd_bddAnd(BM->dd, Cudd_bddIthVar(BM->dd, bdd_var), precache_cube); Cudd_Ref(bTemp); Cudd_IterDerefBdd(BM->dd, precache_cube); precache_cube = bTemp; } } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd0_i++; } else { bdd1_i++; } } return precache_cube; } uintmax_t compute_BDD_overlap(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { uintmax_t overlap = 0; uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { if(BM->VarBDDMap[BM->Support[bdd0].pList[bdd0_i]].nLength > var_limit) { overlap++; } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd0_i++; } else { bdd1_i++; } } return overlap; } uintmax_t compute_BDD_union(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { uintmax_t bdd_union = 0; uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { if(BM->VarBDDMap[BM->Support[bdd0].pList[bdd0_i]].nLength > var_limit) { bdd_union++; } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd_union++; bdd0_i++; } else { bdd_union++; bdd1_i++; } } bdd_union += BM->Support[bdd0].nLength - bdd0_i; bdd_union += BM->Support[bdd1].nLength - bdd1_i; return bdd_union; } DdNode *Cudd_bddRestrictLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddRestrict(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } DdNode *Cudd_bddNPAndLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddNPAnd(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } DdNode *Cudd_bddLICompactionLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddLICompaction(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } //Super slow for large lists. DdNode *quadratic_bdd(BDDManager *BM, uintmax_t_list vars) { //xor(and(c1, x1), and(c2, x2), and(c3, x3), and(c4, x4), cT) intmax_t i; DdNode *quadratic = Cudd_bddIthVar(BM->dd, BM->nHighestVarInABDD+1); Cudd_Ref(quadratic); for(i = vars.nLength-1; i >= 0; i--) { DdNode *conjunct = Cudd_bddAnd(BM->dd, Cudd_bddIthVar(BM->dd, BM->nHighestVarInABDD+1+i), Cudd_bddIthVar(BM->dd, vars.pList[i])); Cudd_Ref(conjunct); DdNode *bTemp = Cudd_bddXor(BM->dd, quadratic, conjunct); Cudd_Ref(bTemp); Cudd_IterDerefBdd(BM->dd, conjunct); Cudd_IterDerefBdd(BM->dd, quadratic); quadratic = bTemp; } Cudd_Deref(quadratic); return quadratic; } //Assuming vars is sorted based on the current bdd variable ordering DdNode *_find_all_linear_factors(DdManager *dd, DdNode *f, DdNode *vars, uintmax_t outvar) { DdNode *one, *F, *T, *E, *r, *e, *bTemp, *vars_next, *ret; one = DD_ONE(dd); if(f == one) return Cudd_Not(Cudd_bddIthVar(dd, outvar)); if(f == Cudd_Not(one)) return Cudd_Not(one); assert(!Cudd_IsConstant(f)); F = Cudd_Regular(f); T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } // if(T == one && E != Cudd_Not(one)) return one; //SEAN!!! Correct??? // if(E == one && T != Cudd_Not(one)) return one; //SEAN!!! Correct??? ret = cuddCacheLookup2(dd, (DdNode* (*)(DdManager *, DdNode *, DdNode *))_find_all_linear_factors, f, vars); if(ret != NULL) { return ret; } assert(vars->index == F->index); uintmax_t back_length = 0; vars_next = cuddT(vars); while(vars_next->index != Cudd_Regular(T)->index) { back_length++; vars_next = cuddT(vars_next); } r = _find_all_linear_factors(dd, T, vars_next, outvar); if(r == NULL) return NULL; //reorder or gc happened assert(r != one); Cudd_Ref(r); if(r != Cudd_Not(one)) { vars_next = cuddT(vars); uintmax_t i; for(i = 0; i < back_length; i++) { bTemp = Cudd_bddOr(dd, r, Cudd_bddIthVar(dd, vars_next->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, r); r = bTemp; vars_next = cuddT(vars_next); } } //if(T == Cudd_Not(E)) { //optimization //SEAN!!! There is some optimization I could make here. Just hard to figure out what it should be. //} back_length = 0; vars_next = cuddT(vars); while(vars_next->index != Cudd_Regular(E)->index) { back_length++; vars_next = cuddT(vars_next); } e = _find_all_linear_factors(dd, E, vars_next, outvar); if(e == NULL) return NULL; //reorder or gc happened assert(e != one); Cudd_Ref(e); if(e != Cudd_Not(one)) { vars_next = cuddT(vars); uintmax_t i; for(i = 0; i < back_length; i++) { bTemp = Cudd_bddOr(dd, e, Cudd_bddIthVar(dd, vars_next->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, e); e = bTemp; vars_next = cuddT(vars_next); } } DdNode *rt, *re, *et, *ee, *reet, *rtee; re = Cudd_Cofactor(dd, r, Cudd_Not(Cudd_bddIthVar(dd, outvar))); Cudd_Ref(re); assert((r == Cudd_Not(one)) || (re != r)); et = Cudd_Cofactor(dd, e, Cudd_bddIthVar(dd, outvar)); Cudd_Ref(et); assert((e == Cudd_Not(one)) || (et != e)); reet = Cudd_bddOr(dd, re, et); if(reet == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, et); return NULL; } Cudd_Ref(reet); Cudd_IterDerefBdd(dd, re); Cudd_IterDerefBdd(dd, et); rt = Cudd_Cofactor(dd, r, Cudd_bddIthVar(dd, outvar)); if(rt == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(rt); ee = Cudd_Cofactor(dd, e, Cudd_Not(Cudd_bddIthVar(dd, outvar))); if(ee == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(ee); bTemp = Cudd_bddOr(dd, r, e); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); e = bTemp; rtee = Cudd_bddOr(dd, rt, ee); if(rtee == NULL) { Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(rtee); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); r = Cudd_bddIte(dd, Cudd_bddIthVar(dd, outvar), reet, rtee); if(r == NULL) { Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, rtee); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(r); Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, rtee); ret = Cudd_bddIte(dd, Cudd_bddIthVar(dd, F->index), r, e); if(ret == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(ret); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); cuddCacheInsert2(dd, (DdNode* (*)(DdManager *, DdNode *, DdNode *))_find_all_linear_factors, f, vars, ret); Cudd_Deref(ret); return ret; } DdNode *find_all_linear_factors(DdManager *dd, DdNode *f, intmax_t_list *support, uintmax_t outvar) { if(Cudd_IsConstant(f)) return DD_ONE(dd); DdNode *conj = build_and_BDD(dd, support->pList, support->nLength); Cudd_Ref(conj); Cudd_AutodynDisable(dd); //NECESSARY! DdNode *factors; do { assert(Cudd_Regular(f)->index == conj->index); factors = _find_all_linear_factors(dd, f, conj, outvar); } while (factors == NULL); Cudd_Ref(factors); Cudd_IterDerefBdd(dd, conj); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); if(factors != DD_ONE(dd)) { //Remove the True factor conj = DD_ONE(dd); cuddRef(conj); for(uintmax_t i = 0; i < support->nLength; i++) { DdNode *bTemp = Cudd_bddAnd(dd, Cudd_Not(Cudd_bddIthVar(dd, support->pList[i])), conj); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, conj); conj = bTemp; } DdNode *conj_ext = Cudd_bddAnd(dd, Cudd_bddIthVar(dd, outvar), conj); Cudd_Ref(conj_ext); Cudd_IterDerefBdd(dd, conj); DdNode *bTemp = Cudd_bddOr(dd, factors, conj_ext); Cudd_Ref(bTemp); assert(factors != bTemp); Cudd_IterDerefBdd(dd, factors); Cudd_IterDerefBdd(dd, conj_ext); factors = bTemp; } Cudd_Deref(factors); return factors; } DdNode *create_first_factor(DdManager *dd, DdNode *lin_factors, uintmax_t outvar) { Cudd_AutodynDisable(dd); DdNode *factor = Cudd_Not(DD_ONE(dd)); Cudd_Ref(factor); DdNode *LF = Cudd_Regular(lin_factors); uint8_t neg = LF != lin_factors; while(!Cudd_IsConstant(LF)) { if(LF->index == outvar) { //LS is the 'T' coefficient, try to choose 'else' case first if(Cudd_IsConstant(cuddE(LF))) { //Go away from constant if(Cudd_IsConstant(cuddT(LF))) { //Both constant, choose the False node if(cuddE(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { //Choose the 'else' case first LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } else { //Choose the 'then' case - this is the last possible factor because 'T' is a factor of everything assert(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)); factor = Cudd_Not(factor); //XOR the factor w/ 'T' LF = cuddT(LF); } } else { //'else' is constant. 'then' is not constant. Choose 'then' factor = Cudd_Not(factor); //XOR the factor w/ 'T' LF = cuddT(LF); } } else { //'else' is not constant, choose 'else' LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); LF = Cudd_Regular(LF); } } else { //LF is not the 'T' coefficient, try to choose 'then' case first if(Cudd_IsConstant(cuddT(LF))) { //'then' case is constant, choose the 'else' case if(Cudd_IsConstant(cuddE(LF))) { //Both constant, choose the False node if(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { //Choose the 'then' case first //XOR the factor w/ LF->index; DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; LF = cuddT(LF); } else { //Choose the 'else' case last assert(cuddE(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)); LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } } else { //'then' is constant. 'else' is not constant. Choose 'else' LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } } else { //'then' is not constant. Choose 'then' //XOR the factor w/ LF->index; DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; LF = cuddT(LF); } } } /* if(!Cudd_IsConstant(cuddE(LF))) { LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); LF = Cudd_Regular(LF); } else { if(LF->index == outvar) { if(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { factor = Cudd_Not(factor); } } else { //Var is in the factor DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; } LF = cuddT(LF); } */ //} Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(factor); return factor; } DdNode *better_gcf(BDDManager *BM, DdNode *f, DdNode *c) { uintmax_t length; BDD_Support2(&length, &(BM->uTempList.nLength_max), &(BM->uTempList.pList), c, f); Cudd_AutodynDisable(BM->dd); for(uintmax_t i = 0 ; i < length; i++) { uint32_t_list_add(&BM->uTempList32, BM->uTempList.pList[i], BM->dd->perm[(length-1)-i]); } DdNode *drop_c = Cudd_bddPermute(BM->dd, c, (int *)BM->uTempList32.pList); Cudd_Ref(drop_c); DdNode *drop_f = Cudd_bddPermute(BM->dd, f, (int *)BM->uTempList32.pList); Cudd_Ref(drop_f); DdNode *drop_res = Cudd_bddConstrain(BM->dd, drop_f, drop_c); Cudd_Ref(drop_res); for(uintmax_t i = 0 ; i < length; i++) { uint32_t_list_add(&BM->uTempList32, BM->dd->perm[(length-1)-i], BM->uTempList.pList[i]); } Cudd_AutodynEnable(BM->dd, CUDD_REORDER_SAME); DdNode *res = Cudd_bddPermute(BM->dd, drop_res, (int *)BM->uTempList32.pList); Cudd_Ref(res); Cudd_IterDerefBdd(BM->dd, drop_res); Cudd_IterDerefBdd(BM->dd, drop_f); Cudd_IterDerefBdd(BM->dd, drop_c); Cudd_Deref(res); return res; } DdNode *XORXORsRecur(DdManager * dd, DdNode * f, DdNode * g) { DdNode *fv, *G, *gv; DdNode *one, *zero, *r, *t, *e; unsigned int topf, topg, index; one = DD_ONE(dd); zero = Cudd_Not(one); /* Terminal cases. */ if (f == g) return(zero); if (f == Cudd_Not(g)) return(one); if (f > g) { /* Try to increase cache efficiency and simplify tests. */ DdNode *tmp = f; f = g; g = tmp; } if (g == zero) return(f); if (g == one) return(Cudd_Not(f)); if (Cudd_IsComplement(f)) { f = Cudd_Not(f); g = Cudd_Not(g); } /* Now the first argument is regular. */ if (f == one) return(Cudd_Not(g)); /* At this point f and g are not constant. */ /* Check cache. */ //r = cuddCacheLookup2(dd, XORXORsRecur, f, g); //if (r != NULL) return(r); /* Here we can skip the use of cuddI, because the operands are known ** to be non-constant. */ topf = dd->perm[f->index]; G = Cudd_Regular(g); topg = dd->perm[G->index]; /* Compute cofactors. */ if (topf <= topg) { index = f->index; fv = cuddT(f); } else { index = G->index; fv = f; } if (topg <= topf) { gv = cuddT(G); if (Cudd_IsComplement(g)) { gv = Cudd_Not(gv); } } else { gv = g; } t = XORXORsRecur(dd, fv, gv); if (t == NULL) return(NULL); cuddRef(t); if(topf == topg) { r = t; } else { e = Cudd_Not(t); cuddRef(e); if (Cudd_IsComplement(t)) { r = cuddUniqueInter(dd,(int)index,Cudd_Not(t),Cudd_Not(e)); if (r == NULL) { Cudd_IterDerefBdd(dd, t); Cudd_IterDerefBdd(dd, e); return(NULL); } r = Cudd_Not(r); } else { r = cuddUniqueInter(dd,(int)index,t,e); if (r == NULL) { Cudd_IterDerefBdd(dd, t); Cudd_IterDerefBdd(dd, e); return(NULL); } } cuddDeref(e); } cuddDeref(t); //cuddCacheInsert2(dd, XORXORsRecur, f, g, r); return(r); } DdNode *XORXORs(DdManager * dd, DdNode * f, DdNode * g) { Cudd_AutodynDisable(dd); DdNode *res = XORXORsRecur(dd,f,g); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); return res; } DdNode *safe_assign0(DdManager *dd, DdNode *f, DdNode *v) { DdNode *one, *res, *F, *Fv, *Fnv; one = DD_ONE(dd); if(Cudd_IsConstant(f)) return one; /* Check cache. */ res = cuddCacheLookup2(dd, safe_assign0, f, v); if (res != NULL) return res; F = Cudd_Regular(f); unsigned int topf = dd->perm[F->index]; unsigned int topv = dd->perm[v->index]; if(topf == topv) { Fv = cuddT(F); Fnv = cuddE(F); if(Cudd_IsComplement(f)) { Fv = Cudd_Not(Fv); Fnv = Cudd_Not(Fnv); } //maybe leq here DdNode *r = Cudd_bddIteConstant(dd, Fv, Cudd_Not(Fnv), Cudd_Not(one)); DdNode *e = Cudd_bddIteConstant(dd, Cudd_Not(Fv), Fnv, Cudd_Not(one)); if(r == Cudd_Not(one)) { if(e == Cudd_Not(one)) { assert(0); res = one; } else { res = Cudd_Not(v); } } else if(e == Cudd_Not(one)) { res = v; } else { res = Cudd_Not(one); } cuddCacheInsert2(dd, safe_assign0, f, v, res); return res; } Fv = cuddT(F); Fnv = cuddE(F); if(Cudd_IsComplement(f)) { Fv = Cudd_Not(Fv); Fnv = Cudd_Not(Fnv); } DdNode *r = safe_assign0(dd, Fv, v); if(r == Cudd_Not(one)) res = Cudd_Not(one); else res = Cudd_bddAnd(dd, r, safe_assign0(dd, Fnv, v)); cuddCacheInsert2(dd, safe_assign0, f, v, res); return res; } DdNode *set_variable(DdManager *dd, DdNode *pCurrentBDD, uintmax_t var, uint8_t polarity) { DdNode *bTemp = Cudd_Cofactor(dd, pCurrentBDD, Cudd_NotCond(Cudd_bddIthVar(dd, var), 1-polarity)); if(bTemp == NULL) { assert(0); } return bTemp; } mpz_t *_count_true_paths(DdManager *dd, DdNode *f, uintmax_t_list *support, uintmax_t level, st_table *table) { mpz_t *ret; //check the hash table ret = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*ret); if(f == DD_ONE(dd)) { mpz_setbit(*ret, support->nLength - level); return ret; } if(f == Cudd_Not(DD_ONE(dd))) { return ret; } DdNode *F = Cudd_Regular(f); DdNode *T, *E; uintmax_t misses = level; while(F->index != support->pList[level]) level++; assert(level < support->nLength); mpz_t *dummy; if(st_lookup(table, f, &dummy)) { mpz_set(*ret, *dummy); mpz_mul_2exp(*ret, *ret, level-misses); return ret; } T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } mpz_t *r = _count_true_paths(dd, T, support, level+1, table); mpz_t *e = _count_true_paths(dd, E, support, level+1, table); mpz_add(*ret, *r, *e); mpz_clear(*r); mpz_clear(*e); free(r); free(e); //Store result to hash table mpz_t *hash_value = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init_set(*hash_value, *ret); if(st_add_direct(table, (char *)f, (char *)hash_value) == ST_OUT_OF_MEM) { mpz_clear(*hash_value); free(hash_value); } mpz_mul_2exp(*ret, *ret, level-misses); /* printBDD(dd, f); char *count = mpz_get_str(NULL, 10, *ret); fprintf(stdout, "Number of paths to true is %s (%ju %ju %ju)\n", count, support->nLength, level, misses); free(count); */ return ret; } enum st_retval count_true_paths_Stfree(char * key, char * value, char * arg) { mpz_t *d; d = (mpz_t *)value; mpz_clear(*d); free(d); return(ST_CONTINUE); } mpz_t *count_true_paths(BDDManager *BM, DdNode *f, uintmax_t_list *support) { uintmax_t_list_copy(&BM->uTempList, support); qsort(BM->uTempList.pList, BM->uTempList.nLength, sizeof(uintmax_t), bddperm_compfunc); st_table *table; table = st_init_table(st_ptrcmp,st_ptrhash); if (table == NULL) { return NULL; } mpz_t *num =_count_true_paths(BM->dd, f, &BM->uTempList, 0, table); ddClearFlag(Cudd_Regular(f)); st_foreach(table, count_true_paths_Stfree, NULL); //Free the mpz_t objects left in the CUDD hash table st_free_table(table); return num; } mpz_t *count_BDD_solutions(BDDManager *BM) { //First, reset command line flags that affect clustering int old_pairwise_bdd_reduction = pairwise_bdd_reduction; int old_bdd_cluster_limit = bdd_cluster_limit; uint8_t old_apply_BDD_inferences = apply_BDD_inferences; uint8_t old_apply_BDD_equivalences = apply_BDD_equivalences; pairwise_bdd_reduction = PAIRWISE_BDD_REDUCTION_NONE; bdd_cluster_limit = -1; apply_BDD_inferences = 0; apply_BDD_equivalences = 0; //Cluster until each variable occurs in only one BDD. uint8_t ret = VE(BM, CHeuristics[5], -1); if((ret != NO_ERROR) && (ret != SAT) && (ret != CLUSTER_LIMIT)) { if(ret == UNSAT) { mpz_t *count = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*count); return count; //zero count } else { //fprintf(stderr, "||%ju||\n", ret); return NULL; } } //find_all_early_quantification_vars(BM); //just in case //perform_early_quantification(BM); //Turn the command line flags back to user preferences pairwise_bdd_reduction = old_pairwise_bdd_reduction; bdd_cluster_limit = old_bdd_cluster_limit; apply_BDD_inferences = old_apply_BDD_inferences; apply_BDD_equivalences = old_apply_BDD_equivalences; //Calculate the number of missing 'protected' variables uintmax_t missing_vars_count = 0; DdNode *orig_bdd = NULL; if(BM->ExQuantProtectVars && early_quantify_BDD_vars) { if(apply_BDD_equivalences) { fprintf(stderr, "Warning: Equivalence reasoning can cause an incorrect number of solutions to be produced\n"); } for(uintmax_t i = 1; i < BM->ExQuantProtectedVars.nLength; i++) { if(BM->ExQuantProtectedVars.pList[i] == 1 && BM->VarBDDMap[i].nLength == 0) { //Variable is protected and has been removed somehow intmax_t equiv = get_equiv(BM->EQManager, i); if(equiv == i) { //Has not been set and is missing, double the solution count missing_vars_count++; } else if(equiv == BM->EQManager->True) { //Do nothing } else if(equiv == BM->EQManager->False) { //Do nothing } else { //Variable has been set equal to some other variable if(BM->ExQuantProtectedVars.pList[imaxabs(equiv)] == 1) { //Variable is equal to some other protected variable //What to do? } else { //Variable is equal to a not protected variable //??? } } } else if(BM->ExQuantProtectedVars.pList[i] == 0) { assert(BM->VarBDDMap[i].nLength == 0); } } } //fprintf(stderr, "||%ju||", missing_vars_count); //2^missing_vars_count mpz_t *count = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*count); mpz_setbit(*count, missing_vars_count); //Calculate the number of solutions of all the remaining BDDs, //multiplying the counts together for(uintmax_t i = 0; i < BM->nNumBDDs; i++) { for(uintmax_t j = 0; j < BM->Support[i].nLength; j++) { //Assert that every variable remaining occurs in only one BDD assert(BM->VarBDDMap[BM->Support[i].pList[j]].nLength == 1); } mpz_t *count_i = count_true_paths(BM, BM->BDDList[i], &BM->Support[i]); mpz_mul(*count, *count, *count_i); mpz_clear(*count_i); free(count_i); } return count; }
/* * Copyright (C) 2011 <NAME> * * 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, 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. * */ #include "sbsat.h" enum { MITOSIS_FLAG_NUMBER, MAX_FLAG_NUMBER }; uintmax_t bdd_flag_numbers[MAX_FLAG_NUMBER] = {0}; uintmax_t increment_and_return_bdd_flag_number(int bdd_flag) { bdd_flag_numbers[bdd_flag]++; if (bdd_flag_numbers[bdd_flag] == INT_MAX) { bdd_flag_numbers[bdd_flag] = 0; } return bdd_flag_numbers[bdd_flag]; } //Should really write my own qsort rather than use this. SEAN!!! int bddperm_compfunc (const void *x, const void *y) { uintmax_t pp, qq; pp = *(const uintmax_t *) x; qq = *(const uintmax_t *) y; if (BM_main->dd->perm[pp] < BM_main->dd->perm[qq]) return -1; if (pp == qq) #ifndef FORCE_STABLE_QSORT return 0; #else { if (x < y) return -1; else if (x > y) return 1; else return 0; } #endif return 1; } void _BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f); //Populate a list with variables occurring in BDD f. void BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f) { *length=0; _BDD_Support(length, max, tempint, Cudd_Regular(f)); for (uintmax_t i = 0; i < *length; i++) { // clear the flag sym_reset_flag((*tempint)[i]); } ddClearFlag(Cudd_Regular(f)); } //Populate a list with variables occurring in BDD f and g (with f occuring first). void BDD_Support2(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f, DdNode *g) { *length=0; _BDD_Support(length, max, tempint, Cudd_Regular(f)); _BDD_Support(length, max, tempint, Cudd_Regular(g)); for (uintmax_t i = 0; i < *length; i++) { // clear the flag sym_reset_flag((*tempint)[i]); } ddClearFlag(Cudd_Regular(f)); ddClearFlag(Cudd_Regular(g)); } void _BDD_Support(uintmax_t *length, uintmax_t *max, uintmax_t **tempint, DdNode *f) { if (cuddIsConstant(f) || Cudd_IsComplement(f->next)) return; /* Mark as visited. */ f->next = Cudd_Not(f->next); if (sym_is_flag(f->index) == 0) { if (*length >= *max) { *tempint = (uintmax_t*)sbsat_recalloc(*(void**)tempint, *max, *max+100, sizeof(uintmax_t), 9, "tempint"); *max += 100; } (*tempint)[*length] = f->index; sym_set_flag(f->index); (*length)++; } _BDD_Support (length, max, tempint, cuddT(f)); _BDD_Support (length, max, tempint, Cudd_Regular(cuddE(f))); } uintmax_t _highest_var_in_BDD(DdNode *f) { if (cuddIsConstant(f) || Cudd_IsComplement(f->next)) return 0; /* Mark as visited. */ f->next = Cudd_Not(f->next); uintmax_t max1 = _highest_var_in_BDD(cuddT(f)); uintmax_t max2 = _highest_var_in_BDD(Cudd_Regular(cuddE(f))); uintmax_t max3 = f->index; if(max1 > max2) { if(max1 > max3) return max1; return max3; } else if(max3 > max2) { return max3; } else return max2; } uintmax_t highest_var_in_BDD(DdNode *f) { uintmax_t max = _highest_var_in_BDD(Cudd_Regular(f)); ddClearFlag(Cudd_Regular(f)); return max; } DdNode *Mitosis_Recur(DdManager *dd, DdNode *f, uint32_t *map, DdNode *unique) { DdNode *F = Cudd_Regular(f); DdNode *res; if (cuddIsConstant(F)) return f; if (F->ref > 1 && (res = cuddCacheLookup2(dd, (DdNode* (*)(DdManager*, DdNode*, DdNode*))Mitosis_Recur, f, unique)) != NULL) { return(res); } /* Split and recur on children of this node. */ DdNode *T = Mitosis_Recur(dd, cuddT(F), map, unique); if (T == NULL) return(NULL); cuddRef(T); DdNode *E = Mitosis_Recur(dd, cuddE(F), map, unique); if (E == NULL) { Cudd_IterDerefBdd(dd, T); return(NULL); } cuddRef(E); /* Move variable that should be in this position to this position ** by retrieving the single var BDD for that variable, and calling ** cuddBddIteRecur with the T and E we just created. */ uint32_t index = map[F->index]; res = cuddBddIteRecur(dd, dd->vars[index], T, E); if (res == NULL) { Cudd_IterDerefBdd(dd, T); Cudd_IterDerefBdd(dd, E); return(NULL); } cuddRef(res); Cudd_IterDerefBdd(dd, T); Cudd_IterDerefBdd(dd, E); cuddDeref(res); if (F->ref > 1) cuddCacheInsert2(dd, (DdNode* (*)(DdManager*, DdNode*, DdNode*)) Mitosis_Recur, f, unique, Cudd_NotCond(res, F != f)); return(Cudd_NotCond(res, F != f)); } DdNode *Mitosis(DdManager *dd, DdNode *f, uint32_t *map) { DdNode *unique = (DdNode *)increment_and_return_bdd_flag_number(MITOSIS_FLAG_NUMBER); return Mitosis_Recur(dd, f, map, unique); } DdNode *_clone_BDD(DdManager *dd, DdManager *dd_old, DdNode *f, st_table *table) { if (f == DD_ONE(dd_old)) return DD_ONE(dd); if (f == Cudd_Not(DD_ONE(dd_old))) return Cudd_Not(DD_ONE(dd)); DdNode *F = Cudd_Regular(f); DdNode *T, *E; DdNode *cached; if(st_lookup(table, f, &cached)) { return cached; } T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } DdNode *r = _clone_BDD(dd, dd_old, T, table); Cudd_Ref(r); DdNode *e = _clone_BDD(dd, dd_old, E, table); Cudd_Ref(e); DdNode *ret = Cudd_bddIte(dd, Cudd_bddIthVar(dd, F->index), r, e); Cudd_Ref(ret); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); if(st_add_direct(table, (char *)f, (char *)ret) == ST_OUT_OF_MEM) { assert(0); exit(0); } cuddDeref(ret); return ret; } DdNode *clone_BDD(DdManager *dd, DdManager *dd_old, DdNode *f) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); st_table *table; table = st_init_table(st_ptrcmp,st_ptrhash); if (table == NULL) { return NULL; } DdNode *ret = _clone_BDD(dd, dd_old, f, table); st_free_table(table); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); return ret; } DdNode *build_and_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = DD_ONE(dd); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); clause = Cudd_bddAnd(dd, tmp_lit, bTemp = clause); cuddRef(clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_or_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = Cudd_Not(DD_ONE(dd)); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); clause = Cudd_bddOr(dd, tmp_lit, bTemp = clause); cuddRef(clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_xor_BDD(DdManager *dd, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *xor_clause = Cudd_Not(DD_ONE(dd)); cuddRef(xor_clause); for(intmax_t y = length-1; y >=0; y--) { tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); xor_clause = Cudd_bddXor(dd, tmp_lit, bTemp = xor_clause); cuddRef(xor_clause); Cudd_IterDerefBdd(dd, bTemp); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(xor_clause); return xor_clause; } DdNode *build_and_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *cube = DD_ONE(dd); cuddRef(cube); for(intmax_t y = length-1; y >=0; y--) { if(imaxabs(variables[y]) == equal_var) continue; tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); bTemp = Cudd_bddAnd(dd, tmp_lit, cube); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, cube); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, cube); cube = bTemp; } tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var>0); bTemp = Cudd_bddXor(dd, tmp_lit, cube); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, cube); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, cube); cube = bTemp; Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(cube); return cube; } DdNode *build_or_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *clause = Cudd_Not(DD_ONE(dd)); cuddRef(clause); for(intmax_t y = length-1; y >=0; y--) { if(imaxabs(variables[y]) == equal_var) continue; tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(variables[y])), variables[y]<0); bTemp = Cudd_bddOr(dd, tmp_lit, clause); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, clause); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, clause); clause = bTemp; } tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var>0); bTemp = Cudd_bddXor(dd, tmp_lit, clause); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, clause); return NULL; } cuddRef(bTemp); Cudd_IterDerefBdd(dd, clause); clause = bTemp; Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(clause); return clause; } DdNode *build_ite_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t v1, intmax_t VAR_0, intmax_t v3) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *v1_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v1)), v1<0); DdNode *v2_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(VAR_0)), VAR_0<0); DdNode *v3_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v3)), v3<0); DdNode *ite_equals = Cudd_bddIte(dd, v1_dd, v2_dd, v3_dd); cuddRef(ite_equals); tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var<0); ite_equals = Cudd_Not(Cudd_bddXor(dd, tmp_lit, bTemp = ite_equals)); cuddRef(ite_equals); Cudd_IterDerefBdd(dd, bTemp); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(ite_equals); return ite_equals; } DdNode *build_majv_equals_BDD(DdManager *dd, intmax_t equal_var, intmax_t v1, intmax_t VAR_0, intmax_t v3) { if(sbsat_turn_off_bdds) return DD_ONE(dd); Cudd_AutodynDisable(dd); DdNode *tmp_lit; DdNode *bTemp; DdNode *v1_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v1)), v1<0); DdNode *v2_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(VAR_0)), VAR_0<0); DdNode *v3_dd = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(v3)), v3<0); DdNode *or_bdd = Cudd_bddOr(dd, v2_dd, v3_dd); cuddRef(or_bdd); DdNode *and_bdd = Cudd_bddAnd(dd, v2_dd, v3_dd); cuddRef(and_bdd); DdNode *majv_equals = Cudd_bddIte(dd, v1_dd, or_bdd, and_bdd); cuddRef(majv_equals); Cudd_IterDerefBdd(dd, or_bdd); Cudd_IterDerefBdd(dd, and_bdd); tmp_lit = Cudd_NotCond(Cudd_bddIthVar(dd, imaxabs(equal_var)), equal_var<0); majv_equals = Cudd_Not(Cudd_bddXor(dd, tmp_lit, bTemp = majv_equals)); cuddRef(majv_equals); Cudd_IterDerefBdd(dd, bTemp); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(majv_equals); return majv_equals; } DdNode *build_cardinality_BDD(DdManager *dd, uintmax_t min, uintmax_t max, uintmax_t *variables, uintmax_t length) { if(sbsat_turn_off_bdds) return DD_ONE(dd); uintmax_t i; intmax_t j; DdNode *bTemp, *result; if(max < min) return Cudd_Not(DD_ONE(dd)); Cudd_AutodynDisable(dd); //It is a good idea to sort 'variables' according to dd->perm before building a cardinality BDD. //for(i = 1; ((uintmax_t) i) < length; i++) assert(dd->perm[variables[i-1]] < dd->perm[variables[i]]); DdNode **arr = (DdNode **)sbsat_calloc(length+1, sizeof(DdNode*), 9, "create_cardinality_BDD"); arr[0] = Cudd_NotCond(DD_ONE(dd), (0 >= min)==0); cuddRef(arr[0]); for(i = 1; i <= length; i++) { DdNode *prev_node = Cudd_NotCond(DD_ONE(dd), (i >= min && i <= max)==0); cuddRef(prev_node); if(prev_node != arr[0]) { arr[0] = Cudd_bddIte(dd, Cudd_bddIthVar(dd, variables[length-1]), prev_node, bTemp = arr[0]); cuddRef(arr[0]); Cudd_IterDerefBdd(dd, bTemp); } for(j = 1; j < (intmax_t) i; j++) { if(arr[j] != arr[j-1]) { arr[j] = Cudd_bddIte(dd, Cudd_bddIthVar(dd, variables[(length-1)-j]), arr[j-1], bTemp = arr[j]); cuddRef(arr[j]); Cudd_IterDerefBdd(dd, bTemp); } } for(j = i; j > 0; j--) arr[j] = arr[j-1]; arr[0] = prev_node; } result = arr[length]; for(i = 0; i < length; i++) { Cudd_IterDerefBdd(dd, arr[i]); } Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); free(arr); Cudd_Deref(result); return result; } /****************************************************************************************************/ uintmax_t add_and_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_and_BDD(BM->dd, variables, length)); } uintmax_t add_or_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_or_BDD(BM->dd, variables, length)); } uintmax_t add_xor_BDD(BDDManager *BM, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_xor_BDD(BM->dd, variables, length)); } uintmax_t add_and_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_and_equals_BDD(BM->dd, equal_var, variables, length)); } uintmax_t add_or_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_or_equals_BDD(BM->dd, equal_var, variables, length)); } uintmax_t add_ite_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t v1, intmax_t VAR_0, intmax_t v3) { return add_BDD_to_manager(BM, build_ite_equals_BDD(BM->dd, equal_var, v1, VAR_0, v3)); } uintmax_t add_majv_equals_BDD(BDDManager *BM, intmax_t equal_var, intmax_t v1, intmax_t VAR_0, intmax_t v3) { return add_BDD_to_manager(BM, build_majv_equals_BDD(BM->dd, equal_var, v1, VAR_0, v3)); } uintmax_t add_cardinality_BDD(BDDManager *BM, uintmax_t min, uintmax_t max, uintmax_t *variables, uintmax_t length) { return add_BDD_to_manager(BM, build_cardinality_BDD(BM->dd, min, max, variables, length)); } DdNode *precache_conjunctive_BDD_overlap(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { DdNode *precache_cube = Cudd_ReadOne(BM->dd); Cudd_Ref(precache_cube); uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { uintmax_t bdd_var = BM->Support[bdd0].pList[bdd0_i]; if(bdd_var >= BM->ExQuantProtectedVars.nLength || BM->ExQuantProtectedVars.pList[bdd_var] == 0) { if(BM->VarBDDMap[bdd_var].nLength <= var_limit) { DdNode *bTemp = Cudd_bddAnd(BM->dd, Cudd_bddIthVar(BM->dd, bdd_var), precache_cube); Cudd_Ref(bTemp); Cudd_IterDerefBdd(BM->dd, precache_cube); precache_cube = bTemp; } } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd0_i++; } else { bdd1_i++; } } return precache_cube; } uintmax_t compute_BDD_overlap(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { uintmax_t overlap = 0; uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { if(BM->VarBDDMap[BM->Support[bdd0].pList[bdd0_i]].nLength > var_limit) { overlap++; } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd0_i++; } else { bdd1_i++; } } return overlap; } uintmax_t compute_BDD_union(BDDManager *BM, uintmax_t bdd0, uintmax_t bdd1, uintmax_t var_limit) { uintmax_t bdd_union = 0; uintmax_t bdd0_i = 0; uintmax_t bdd1_i = 0; while(bdd0_i < BM->Support[bdd0].nLength && bdd1_i < BM->Support[bdd1].nLength) { if(BM->Support[bdd0].pList[bdd0_i] == BM->Support[bdd1].pList[bdd1_i]) { if(BM->VarBDDMap[BM->Support[bdd0].pList[bdd0_i]].nLength > var_limit) { bdd_union++; } bdd0_i++; bdd1_i++; } else if(BM->Support[bdd0].pList[bdd0_i] <= BM->Support[bdd1].pList[bdd1_i]) { bdd_union++; bdd0_i++; } else { bdd_union++; bdd1_i++; } } bdd_union += BM->Support[bdd0].nLength - bdd0_i; bdd_union += BM->Support[bdd1].nLength - bdd1_i; return bdd_union; } DdNode *Cudd_bddRestrictLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddRestrict(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } DdNode *Cudd_bddNPAndLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddNPAnd(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } DdNode *Cudd_bddLICompactionLimit(DdManager *manager, DdNode *f, DdNode *c, unsigned int limit) { DdNode *res; unsigned int saveLimit = manager->maxLive; manager->maxLive = (manager->keys - manager->dead) + (manager->keysZ - manager->deadZ) + limit; do { manager->reordered = 0; res = Cudd_bddLICompaction(manager, f, c); } while (manager->reordered == 1); manager->maxLive = saveLimit; return(res); } //Super slow for large lists. DdNode *quadratic_bdd(BDDManager *BM, uintmax_t_list vars) { //xor(and(c1, x1), and(c2, x2), and(c3, x3), and(c4, x4), cT) intmax_t i; DdNode *quadratic = Cudd_bddIthVar(BM->dd, BM->nHighestVarInABDD+1); Cudd_Ref(quadratic); for(i = vars.nLength-1; i >= 0; i--) { DdNode *conjunct = Cudd_bddAnd(BM->dd, Cudd_bddIthVar(BM->dd, BM->nHighestVarInABDD+1+i), Cudd_bddIthVar(BM->dd, vars.pList[i])); Cudd_Ref(conjunct); DdNode *bTemp = Cudd_bddXor(BM->dd, quadratic, conjunct); Cudd_Ref(bTemp); Cudd_IterDerefBdd(BM->dd, conjunct); Cudd_IterDerefBdd(BM->dd, quadratic); quadratic = bTemp; } Cudd_Deref(quadratic); return quadratic; } //Assuming vars is sorted based on the current bdd variable ordering DdNode *_find_all_linear_factors(DdManager *dd, DdNode *f, DdNode *vars, uintmax_t outvar) { DdNode *one, *F, *T, *E, *r, *e, *bTemp, *vars_next, *ret; one = DD_ONE(dd); if(f == one) return Cudd_Not(Cudd_bddIthVar(dd, outvar)); if(f == Cudd_Not(one)) return Cudd_Not(one); assert(!Cudd_IsConstant(f)); F = Cudd_Regular(f); T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } // if(T == one && E != Cudd_Not(one)) return one; //SEAN!!! Correct??? // if(E == one && T != Cudd_Not(one)) return one; //SEAN!!! Correct??? ret = cuddCacheLookup2(dd, (DdNode* (*)(DdManager *, DdNode *, DdNode *))_find_all_linear_factors, f, vars); if(ret != NULL) { return ret; } assert(vars->index == F->index); uintmax_t back_length = 0; vars_next = cuddT(vars); while(vars_next->index != Cudd_Regular(T)->index) { back_length++; vars_next = cuddT(vars_next); } r = _find_all_linear_factors(dd, T, vars_next, outvar); if(r == NULL) return NULL; //reorder or gc happened assert(r != one); Cudd_Ref(r); if(r != Cudd_Not(one)) { vars_next = cuddT(vars); uintmax_t i; for(i = 0; i < back_length; i++) { bTemp = Cudd_bddOr(dd, r, Cudd_bddIthVar(dd, vars_next->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, r); r = bTemp; vars_next = cuddT(vars_next); } } //if(T == Cudd_Not(E)) { //optimization //SEAN!!! There is some optimization I could make here. Just hard to figure out what it should be. //} back_length = 0; vars_next = cuddT(vars); while(vars_next->index != Cudd_Regular(E)->index) { back_length++; vars_next = cuddT(vars_next); } e = _find_all_linear_factors(dd, E, vars_next, outvar); if(e == NULL) return NULL; //reorder or gc happened assert(e != one); Cudd_Ref(e); if(e != Cudd_Not(one)) { vars_next = cuddT(vars); uintmax_t i; for(i = 0; i < back_length; i++) { bTemp = Cudd_bddOr(dd, e, Cudd_bddIthVar(dd, vars_next->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, e); e = bTemp; vars_next = cuddT(vars_next); } } DdNode *rt, *re, *et, *ee, *reet, *rtee; re = Cudd_Cofactor(dd, r, Cudd_Not(Cudd_bddIthVar(dd, outvar))); Cudd_Ref(re); assert((r == Cudd_Not(one)) || (re != r)); et = Cudd_Cofactor(dd, e, Cudd_bddIthVar(dd, outvar)); Cudd_Ref(et); assert((e == Cudd_Not(one)) || (et != e)); reet = Cudd_bddOr(dd, re, et); if(reet == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, et); return NULL; } Cudd_Ref(reet); Cudd_IterDerefBdd(dd, re); Cudd_IterDerefBdd(dd, et); rt = Cudd_Cofactor(dd, r, Cudd_bddIthVar(dd, outvar)); if(rt == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(rt); ee = Cudd_Cofactor(dd, e, Cudd_Not(Cudd_bddIthVar(dd, outvar))); if(ee == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(ee); bTemp = Cudd_bddOr(dd, r, e); if(bTemp == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); Cudd_IterDerefBdd(dd, reet); return NULL; } Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); e = bTemp; rtee = Cudd_bddOr(dd, rt, ee); if(rtee == NULL) { Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(rtee); Cudd_IterDerefBdd(dd, rt); Cudd_IterDerefBdd(dd, ee); r = Cudd_bddIte(dd, Cudd_bddIthVar(dd, outvar), reet, rtee); if(r == NULL) { Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, rtee); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(r); Cudd_IterDerefBdd(dd, reet); Cudd_IterDerefBdd(dd, rtee); ret = Cudd_bddIte(dd, Cudd_bddIthVar(dd, F->index), r, e); if(ret == NULL) { Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); return NULL; } Cudd_Ref(ret); Cudd_IterDerefBdd(dd, r); Cudd_IterDerefBdd(dd, e); cuddCacheInsert2(dd, (DdNode* (*)(DdManager *, DdNode *, DdNode *))_find_all_linear_factors, f, vars, ret); Cudd_Deref(ret); return ret; } DdNode *find_all_linear_factors(DdManager *dd, DdNode *f, intmax_t_list *support, uintmax_t outvar) { if(Cudd_IsConstant(f)) return DD_ONE(dd); DdNode *conj = build_and_BDD(dd, support->pList, support->nLength); Cudd_Ref(conj); Cudd_AutodynDisable(dd); //NECESSARY! DdNode *factors; do { assert(Cudd_Regular(f)->index == conj->index); factors = _find_all_linear_factors(dd, f, conj, outvar); } while (factors == NULL); Cudd_Ref(factors); Cudd_IterDerefBdd(dd, conj); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); if(factors != DD_ONE(dd)) { //Remove the True factor conj = DD_ONE(dd); cuddRef(conj); for(uintmax_t i = 0; i < support->nLength; i++) { DdNode *bTemp = Cudd_bddAnd(dd, Cudd_Not(Cudd_bddIthVar(dd, support->pList[i])), conj); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, conj); conj = bTemp; } DdNode *conj_ext = Cudd_bddAnd(dd, Cudd_bddIthVar(dd, outvar), conj); Cudd_Ref(conj_ext); Cudd_IterDerefBdd(dd, conj); DdNode *bTemp = Cudd_bddOr(dd, factors, conj_ext); Cudd_Ref(bTemp); assert(factors != bTemp); Cudd_IterDerefBdd(dd, factors); Cudd_IterDerefBdd(dd, conj_ext); factors = bTemp; } Cudd_Deref(factors); return factors; } DdNode *create_first_factor(DdManager *dd, DdNode *lin_factors, uintmax_t outvar) { Cudd_AutodynDisable(dd); DdNode *factor = Cudd_Not(DD_ONE(dd)); Cudd_Ref(factor); DdNode *LF = Cudd_Regular(lin_factors); uint8_t neg = LF != lin_factors; while(!Cudd_IsConstant(LF)) { if(LF->index == outvar) { //LS is the 'T' coefficient, try to choose 'else' case first if(Cudd_IsConstant(cuddE(LF))) { //Go away from constant if(Cudd_IsConstant(cuddT(LF))) { //Both constant, choose the False node if(cuddE(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { //Choose the 'else' case first LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } else { //Choose the 'then' case - this is the last possible factor because 'T' is a factor of everything assert(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)); factor = Cudd_Not(factor); //XOR the factor w/ 'T' LF = cuddT(LF); } } else { //'else' is constant. 'then' is not constant. Choose 'then' factor = Cudd_Not(factor); //XOR the factor w/ 'T' LF = cuddT(LF); } } else { //'else' is not constant, choose 'else' LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); LF = Cudd_Regular(LF); } } else { //LF is not the 'T' coefficient, try to choose 'then' case first if(Cudd_IsConstant(cuddT(LF))) { //'then' case is constant, choose the 'else' case if(Cudd_IsConstant(cuddE(LF))) { //Both constant, choose the False node if(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { //Choose the 'then' case first //XOR the factor w/ LF->index; DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; LF = cuddT(LF); } else { //Choose the 'else' case last assert(cuddE(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)); LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } } else { //'then' is constant. 'else' is not constant. Choose 'else' LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); //Not really necessary since we are at the bottom of the BDD LF = Cudd_Regular(LF); } } else { //'then' is not constant. Choose 'then' //XOR the factor w/ LF->index; DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; LF = cuddT(LF); } } } /* if(!Cudd_IsConstant(cuddE(LF))) { LF = cuddE(LF); neg = neg ^ Cudd_IsComplement(LF); LF = Cudd_Regular(LF); } else { if(LF->index == outvar) { if(cuddT(LF) == Cudd_NotCond(DD_ONE(dd), neg==0)) { factor = Cudd_Not(factor); } } else { //Var is in the factor DdNode *bTemp = Cudd_bddXor(dd, factor, Cudd_bddIthVar(dd, LF->index)); Cudd_Ref(bTemp); Cudd_IterDerefBdd(dd, factor); factor = bTemp; } LF = cuddT(LF); } */ //} Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); cuddDeref(factor); return factor; } DdNode *better_gcf(BDDManager *BM, DdNode *f, DdNode *c) { uintmax_t length; BDD_Support2(&length, &(BM->uTempList.nLength_max), &(BM->uTempList.pList), c, f); Cudd_AutodynDisable(BM->dd); for(uintmax_t i = 0 ; i < length; i++) { uint32_t_list_add(&BM->uTempList32, BM->uTempList.pList[i], BM->dd->perm[(length-1)-i]); } DdNode *drop_c = Cudd_bddPermute(BM->dd, c, (int *)BM->uTempList32.pList); Cudd_Ref(drop_c); DdNode *drop_f = Cudd_bddPermute(BM->dd, f, (int *)BM->uTempList32.pList); Cudd_Ref(drop_f); DdNode *drop_res = Cudd_bddConstrain(BM->dd, drop_f, drop_c); Cudd_Ref(drop_res); for(uintmax_t i = 0 ; i < length; i++) { uint32_t_list_add(&BM->uTempList32, BM->dd->perm[(length-1)-i], BM->uTempList.pList[i]); } Cudd_AutodynEnable(BM->dd, CUDD_REORDER_SAME); DdNode *res = Cudd_bddPermute(BM->dd, drop_res, (int *)BM->uTempList32.pList); Cudd_Ref(res); Cudd_IterDerefBdd(BM->dd, drop_res); Cudd_IterDerefBdd(BM->dd, drop_f); Cudd_IterDerefBdd(BM->dd, drop_c); Cudd_Deref(res); return res; } DdNode *XORXORsRecur(DdManager * dd, DdNode * f, DdNode * g) { DdNode *fv, *G, *gv; DdNode *one, *zero, *r, *t, *e; unsigned int topf, topg, index; one = DD_ONE(dd); zero = Cudd_Not(one); /* Terminal cases. */ if (f == g) return(zero); if (f == Cudd_Not(g)) return(one); if (f > g) { /* Try to increase cache efficiency and simplify tests. */ DdNode *tmp = f; f = g; g = tmp; } if (g == zero) return(f); if (g == one) return(Cudd_Not(f)); if (Cudd_IsComplement(f)) { f = Cudd_Not(f); g = Cudd_Not(g); } /* Now the first argument is regular. */ if (f == one) return(Cudd_Not(g)); /* At this point f and g are not constant. */ /* Check cache. */ //r = cuddCacheLookup2(dd, XORXORsRecur, f, g); //if (r != NULL) return(r); /* Here we can skip the use of cuddI, because the operands are known ** to be non-constant. */ topf = dd->perm[f->index]; G = Cudd_Regular(g); topg = dd->perm[G->index]; /* Compute cofactors. */ if (topf <= topg) { index = f->index; fv = cuddT(f); } else { index = G->index; fv = f; } if (topg <= topf) { gv = cuddT(G); if (Cudd_IsComplement(g)) { gv = Cudd_Not(gv); } } else { gv = g; } t = XORXORsRecur(dd, fv, gv); if (t == NULL) return(NULL); cuddRef(t); if(topf == topg) { r = t; } else { e = Cudd_Not(t); cuddRef(e); if (Cudd_IsComplement(t)) { r = cuddUniqueInter(dd,(int)index,Cudd_Not(t),Cudd_Not(e)); if (r == NULL) { Cudd_IterDerefBdd(dd, t); Cudd_IterDerefBdd(dd, e); return(NULL); } r = Cudd_Not(r); } else { r = cuddUniqueInter(dd,(int)index,t,e); if (r == NULL) { Cudd_IterDerefBdd(dd, t); Cudd_IterDerefBdd(dd, e); return(NULL); } } cuddDeref(e); } cuddDeref(t); //cuddCacheInsert2(dd, XORXORsRecur, f, g, r); return(r); } DdNode *XORXORs(DdManager * dd, DdNode * f, DdNode * g) { Cudd_AutodynDisable(dd); DdNode *res = XORXORsRecur(dd,f,g); Cudd_AutodynEnable(dd, CUDD_REORDER_SAME); return res; } DdNode *safe_assign0(DdManager *dd, DdNode *f, DdNode *v) { DdNode *one, *res, *F, *Fv, *Fnv; one = DD_ONE(dd); if(Cudd_IsConstant(f)) return one; /* Check cache. */ res = cuddCacheLookup2(dd, safe_assign0, f, v); if (res != NULL) return res; F = Cudd_Regular(f); unsigned int topf = dd->perm[F->index]; unsigned int topv = dd->perm[v->index]; if(topf == topv) { Fv = cuddT(F); Fnv = cuddE(F); if(Cudd_IsComplement(f)) { Fv = Cudd_Not(Fv); Fnv = Cudd_Not(Fnv); } //maybe leq here DdNode *r = Cudd_bddIteConstant(dd, Fv, Cudd_Not(Fnv), Cudd_Not(one)); DdNode *e = Cudd_bddIteConstant(dd, Cudd_Not(Fv), Fnv, Cudd_Not(one)); if(r == Cudd_Not(one)) { if(e == Cudd_Not(one)) { assert(0); res = one; } else { res = Cudd_Not(v); } } else if(e == Cudd_Not(one)) { res = v; } else { res = Cudd_Not(one); } cuddCacheInsert2(dd, safe_assign0, f, v, res); return res; } Fv = cuddT(F); Fnv = cuddE(F); if(Cudd_IsComplement(f)) { Fv = Cudd_Not(Fv); Fnv = Cudd_Not(Fnv); } DdNode *r = safe_assign0(dd, Fv, v); if(r == Cudd_Not(one)) res = Cudd_Not(one); else res = Cudd_bddAnd(dd, r, safe_assign0(dd, Fnv, v)); cuddCacheInsert2(dd, safe_assign0, f, v, res); return res; } DdNode *set_variable(DdManager *dd, DdNode *pCurrentBDD, uintmax_t var, uint8_t polarity) { DdNode *bTemp = Cudd_Cofactor(dd, pCurrentBDD, Cudd_NotCond(Cudd_bddIthVar(dd, var), 1-polarity)); if(bTemp == NULL) { assert(0); } return bTemp; } mpz_t *_count_true_paths(DdManager *dd, DdNode *f, uintmax_t_list *support, uintmax_t level, st_table *table) { mpz_t *ret; //check the hash table ret = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*ret); if(f == DD_ONE(dd)) { mpz_setbit(*ret, support->nLength - level); return ret; } if(f == Cudd_Not(DD_ONE(dd))) { return ret; } DdNode *F = Cudd_Regular(f); DdNode *T, *E; uintmax_t misses = level; while(F->index != support->pList[level]) level++; assert(level < support->nLength); mpz_t *dummy; if(st_lookup(table, f, &dummy)) { mpz_set(*ret, *dummy); mpz_mul_2exp(*ret, *ret, level-misses); return ret; } T = cuddT(F); E = cuddE(F); if(Cudd_IsComplement(f)) { T = Cudd_Not(T); E = Cudd_Not(E); } mpz_t *r = _count_true_paths(dd, T, support, level+1, table); mpz_t *e = _count_true_paths(dd, E, support, level+1, table); mpz_add(*ret, *r, *e); mpz_clear(*r); mpz_clear(*e); free(r); free(e); //Store result to hash table mpz_t *hash_value = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init_set(*hash_value, *ret); if(st_add_direct(table, (char *)f, (char *)hash_value) == ST_OUT_OF_MEM) { mpz_clear(*hash_value); free(hash_value); } mpz_mul_2exp(*ret, *ret, level-misses); /* printBDD(dd, f); char *count = mpz_get_str(NULL, 10, *ret); fprintf(stdout, "Number of paths to true is %s (%ju %ju %ju)\n", count, support->nLength, level, misses); free(count); */ return ret; } enum st_retval count_true_paths_Stfree(char * key, char * value, char * arg) { mpz_t *d; d = (mpz_t *)value; mpz_clear(*d); free(d); return(ST_CONTINUE); } mpz_t *count_true_paths(BDDManager *BM, DdNode *f, uintmax_t_list *support) { uintmax_t_list_copy(&BM->uTempList, support); qsort(BM->uTempList.pList, BM->uTempList.nLength, sizeof(uintmax_t), bddperm_compfunc); st_table *table; table = st_init_table(st_ptrcmp,st_ptrhash); if (table == NULL) { return NULL; } mpz_t *num =_count_true_paths(BM->dd, f, &BM->uTempList, 0, table); ddClearFlag(Cudd_Regular(f)); st_foreach(table, count_true_paths_Stfree, NULL); //Free the mpz_t objects left in the CUDD hash table st_free_table(table); return num; } mpz_t *count_BDD_solutions(BDDManager *BM) { //First, reset command line flags that affect clustering int old_pairwise_bdd_reduction = pairwise_bdd_reduction; int old_bdd_cluster_limit = bdd_cluster_limit; uint8_t old_apply_BDD_inferences = apply_BDD_inferences; uint8_t old_apply_BDD_equivalences = apply_BDD_equivalences; pairwise_bdd_reduction = PAIRWISE_BDD_REDUCTION_NONE; bdd_cluster_limit = -1; apply_BDD_inferences = 0; apply_BDD_equivalences = 0; //Cluster until each variable occurs in only one BDD. uint8_t ret = VE(BM, CHeuristics[5], -1); if((ret != NO_ERROR) && (ret != SAT) && (ret != CLUSTER_LIMIT)) { if(ret == UNSAT) { mpz_t *count = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*count); return count; //zero count } else { //fprintf(stderr, "||%ju||\n", ret); return NULL; } } //find_all_early_quantification_vars(BM); //just in case //perform_early_quantification(BM); //Turn the command line flags back to user preferences pairwise_bdd_reduction = old_pairwise_bdd_reduction; bdd_cluster_limit = old_bdd_cluster_limit; apply_BDD_inferences = old_apply_BDD_inferences; apply_BDD_equivalences = old_apply_BDD_equivalences; //Calculate the number of missing 'protected' variables uintmax_t missing_vars_count = 0; DdNode *orig_bdd = NULL; if(BM->ExQuantProtectVars && early_quantify_BDD_vars) { if(apply_BDD_equivalences) { fprintf(stderr, "Warning: Equivalence reasoning can cause an incorrect number of solutions to be produced\n"); } for(uintmax_t i = 1; i < BM->ExQuantProtectedVars.nLength; i++) { if(BM->ExQuantProtectedVars.pList[i] == 1 && BM->VarBDDMap[i].nLength == 0) { //Variable is protected and has been removed somehow intmax_t equiv = get_equiv(BM->EQManager, i); if(equiv == i) { //Has not been set and is missing, double the solution count missing_vars_count++; } else if(equiv == BM->EQManager->True) { //Do nothing } else if(equiv == BM->EQManager->False) { //Do nothing } else { //Variable has been set equal to some other variable if(BM->ExQuantProtectedVars.pList[imaxabs(equiv)] == 1) { //Variable is equal to some other protected variable //What to do? } else { //Variable is equal to a not protected variable //??? } } } else if(BM->ExQuantProtectedVars.pList[i] == 0) { assert(BM->VarBDDMap[i].nLength == 0); } } } //fprintf(stderr, "||%ju||", missing_vars_count); //2^missing_vars_count mpz_t *count = (mpz_t *)malloc(sizeof(mpz_t)); mpz_init(*count); mpz_setbit(*count, missing_vars_count); //Calculate the number of solutions of all the remaining BDDs, //multiplying the counts together for(uintmax_t i = 0; i < BM->nNumBDDs; i++) { for(uintmax_t j = 0; j < BM->Support[i].nLength; j++) { //Assert that every variable remaining occurs in only one BDD assert(BM->VarBDDMap[BM->Support[i].pList[j]].nLength == 1); } mpz_t *count_i = count_true_paths(BM, BM->BDDList[i], &BM->Support[i]); mpz_mul(*count, *count, *count_i); mpz_clear(*count_i); free(count_i); } return count; }
0.004131
{'VAR_0': 'v2'}
#include<stdio.h> #include<stdlib.h> #define O 1000000000 void N(int B[500001],int left,int right); void M(int C[500001],int left,int mid,int right); int count; int main(){ int A[500001]; int a,i; scanf("%d",&a); for(i=0;i<a;i++){ scanf("%d",&A[i]); } N(A,0,a); for(i=0;i<a;i++){ printf("%d",A[i]); if(i<a-1)printf(" "); } printf("\n"); printf("%d\n",count); return 0; } void N(int B[],int left,int right){ int i,mid; if(left+1<right){ mid=(left+right)/2; N(B,left,mid); N(B,mid,right); M(B,left,mid,right); } } void M(int C[],int left,int mid,int right){ int a,b,i,j,k; int *L,*R; a=mid-left; b=right-mid; L=(int *)malloc(sizeof(int)*(a+1)); R=(int *)malloc(sizeof(int)*(b+1)); for(i=0;i<=a-1;i++){ L[i]=C[left+i]; } for(j=0;j<=b-1;j++){ R[j]=C[mid+j]; } L[a]=O; R[b]=O; i=0; j=0; for(k=left;k<=right-1;k++){ if(L[i]<=R[j]){ C[k]=L[i]; i++; count++; } else{ C[k]=R[j]; j++; count++; } } free(L); free(R); }
#include<IMPORT_0> #include<IMPORT_1> #define VAR_0 1000000000 void FUNC_0(int VAR_1[500001],int VAR_2,int VAR_3); void FUNC_1(int VAR_4[500001],int VAR_2,int VAR_5,int VAR_3); int VAR_6; int FUNC_2(){ int VAR_7[500001]; int a,VAR_8; FUNC_3("%d",&a); for(VAR_8=0;VAR_8<a;VAR_8++){ FUNC_3("%d",&VAR_7[VAR_8]); } FUNC_0(VAR_7,0,a); for(VAR_8=0;VAR_8<a;VAR_8++){ FUNC_4("%d",VAR_7[VAR_8]); if(VAR_8<a-1)FUNC_4(" "); } FUNC_4("\n"); FUNC_4("%d\n",VAR_6); return 0; } void FUNC_0(int VAR_1[],int VAR_2,int VAR_3){ int VAR_8,VAR_5; if(VAR_2+1<VAR_3){ VAR_5=(VAR_2+VAR_3)/2; FUNC_0(VAR_1,VAR_2,VAR_5); FUNC_0(VAR_1,VAR_5,VAR_3); FUNC_1(VAR_1,VAR_2,VAR_5,VAR_3); } } void FUNC_1(int VAR_4[],int VAR_2,int VAR_5,int VAR_3){ int a,b,VAR_8,VAR_9,VAR_10; int *VAR_11,*VAR_12; a=VAR_5-VAR_2; b=VAR_3-VAR_5; VAR_11=(int *)malloc(sizeof(int)*(a+1)); VAR_12=(int *)malloc(sizeof(int)*(b+1)); for(VAR_8=0;VAR_8<=a-1;VAR_8++){ VAR_11[VAR_8]=VAR_4[VAR_2+VAR_8]; } for(VAR_9=0;VAR_9<=b-1;VAR_9++){ VAR_12[VAR_9]=VAR_4[VAR_5+VAR_9]; } VAR_11[a]=VAR_0; VAR_12[b]=VAR_0; VAR_8=0; VAR_9=0; for(VAR_10=VAR_2;VAR_10<=VAR_3-1;VAR_10++){ if(VAR_11[VAR_8]<=VAR_12[VAR_9]){ VAR_4[VAR_10]=VAR_11[VAR_8]; VAR_8++; VAR_6++; } else{ VAR_4[VAR_10]=VAR_12[VAR_9]; VAR_9++; VAR_6++; } } FUNC_5(VAR_11); FUNC_5(VAR_12); }
0.934405
{'IMPORT_0': 'stdio.h', 'IMPORT_1': 'stdlib.h', 'VAR_0': 'O', 'FUNC_0': 'N', 'VAR_1': 'B', 'VAR_2': 'left', 'VAR_3': 'right', 'FUNC_1': 'M', 'VAR_4': 'C', 'VAR_5': 'mid', 'VAR_6': 'count', 'FUNC_2': 'main', 'VAR_7': 'A', 'VAR_8': 'i', 'FUNC_3': 'scanf', 'FUNC_4': 'printf', 'VAR_9': 'j', 'VAR_10': 'k', 'VAR_11': 'L', 'VAR_12': 'R', 'FUNC_5': 'free'}
#include "ini_manage.h" bool ini_start(const char* filename) { init_content(); error_msg = NULL; w_flag = REPLACE; memcpy(gfilename,filename,sizeof(gfilename)); if(load(gfilename) == false) { error_msg = "initial parse file error"; return false; }; return true; } ////////////////////////////////////////////////////////////////////////// // ini end // [10/19/2005] void _ini_end(REPLACE_FLAG flag) { if(flag == REPLACE) save(); clear(); } ////////////////////////////////////////////////////////////////////////// // ini end void ini_end() { _ini_end(REPLACE); } ////////////////////////////////////////////////////////////////////////// // load // [10/18/2005] bool load(const char *filename) { FILE *in_stream; char buffer[255]; char comments[1024]; char current_section[255]; char key[255]; char value[255]; char *pdest; int index; strcpy(comments,""); strcpy(current_section,""); error_msg = NULL; if( (in_stream = fopen( filename, "r" )) != NULL ) { while(fgets(buffer,sizeof(buffer),in_stream) != NULL) { trim(buffer); switch(buffer[0]) { case '[' : // section; pdest = strrchr(buffer,']'); if (pdest == NULL) { fclose(in_stream); error_msg = "parse ini error"; return false; } index = pdest - buffer; memcpy(current_section,buffer + 1,index - 1); current_section[index - 1] = '\0'; add_section(current_section,comments); strcpy(comments,""); break; case '#' : // comment case ';' : if(strlen(comments) > 0) strcat(comments,"\n"); strcat(comments,buffer); break; default : // find content pdest = strrchr(buffer,'='); if (pdest == NULL) { fclose(in_stream); error_msg = "parse ini error"; return false; } index = pdest - buffer; memcpy(key,buffer,index); key[index] = '\0'; memcpy(value,buffer + index + 1,strlen(buffer)-index); if(strcmp(current_section,"") == 0) { fclose(in_stream); error_msg = "parse ini error"; return false; } else { _append(current_section,key,value,comments); strcpy(comments,""); } break; } } fclose(in_stream); } else { error_msg = "open file error"; return false; } return true; } ////////////////////////////////////////////////////////////////////////// // _save // [10/18/2005] bool _save(const char *filename) { FILE *stream; struct section *sec = ini_content->first; struct record *rec; error_msg = NULL; if( (stream = fopen(filename, "w" )) == NULL ) { error_msg = "open file error"; return false; } while (sec != NULL) { if(strlen(sec->comments) != 0) { fprintf(stream,"%s\n",sec->comments); } fprintf(stream,"[%s]\n",sec->name); // print section content rec = sec->data_first; while(rec != NULL) { if(strlen(rec->comments) != 0) { fprintf(stream,"%s\n",rec->comments); } fprintf(stream,"%s=%s\n",rec->key,rec->value); rec = rec->next; } sec = sec->next; } fclose(stream); return true; } ////////////////////////////////////////////////////////////////////////// // save to default file // [10/18/2005] bool save() { return _save(gfilename); } ////////////////////////////////////////////////////////////////////////// // save as (for users) // [10/19/2005] bool save_as(const char *filename) { return _save(filename); } ////////////////////////////////////////////////////////////////////////// // get value // [10/19/2005] char *ini_get_value(const char *sec,const char *key) { struct record *result = get_record(get_section(sec),key); if(result != NULL) return result->value; else return ""; } ////////////////////////////////////////////////////////////////////////// // [10/19/2005] char *_get_value(const char *sec,const char *key, char *comment) { struct record *result = get_record(get_section(sec),key); if(result != NULL) { strcpy(comment,result->comments); return result->value; } else { strcpy(comment,""); return ""; } } ////////////////////////////////////////////////////////////////////////// // set value if exitst will be replace // [10/20/2005] bool ini_set_value(const char *sec,const char *key, const char *value) { return _set_value(sec,key,value,"",REPLACE); } ////////////////////////////////////////////////////////////////////////// // [10/20/2005] bool _set_value(const char *sec,const char *key, const char *value,const char *comment,REPLACE_FLAG flag) { w_flag = flag; error_msg = NULL; _append(sec,key,value,comment); if(error_msg == NULL) return false; else return true; } ////////////////////////////////////////////////////////////////////////// // get last error // [10/20/2005] char *get_last_error() { return error_msg; } /************************************************************************/ /* helper function section */ /************************************************************************/ ////////////////////////////////////////////////////////////////////////// // init list of ini file // [10/18/2005] void init_content() { ini_content = (content *)malloc(sizeof(content)); if(ini_content == NULL) { error_msg = "cannot malloc memory !"; return; } ini_content->section_size = 0; ini_content->first = NULL; ini_content->last = NULL; } ////////////////////////////////////////////////////////////////////////// // add section // [10/18/2005] void add_section(const char *sec,const char *comment) { struct section *temp; temp = get_section(sec); error_msg = NULL; if(temp == NULL) { temp = (struct section *)malloc(sizeof(struct section)); if(temp == NULL) { error_msg = "cannot malloc memory !"; return; } // for section name strcpy(temp->name,sec); if((comment[0] != '#' || comment[0] != ';') && (strlen(comment) > 0)) sprintf(temp->comments,"#%s",comment); else strcpy(temp->comments,comment); // for data link temp->data_first = NULL; temp->data_last = NULL; temp->next = NULL; temp->data_size = 0; // increment section size ini_content->section_size++; // for content link if (ini_content->first == NULL) { ini_content->first = temp; ini_content->last = temp; } else { ini_content->last->next = temp; ini_content->last = temp; } } else if(w_flag == REPLACE) { strcpy(temp->name,sec); if((comment[0] != '#' || comment[0] != ';') && (strlen(comment) > 0)) sprintf(temp->comments,"#%s",comment); else strcpy(temp->comments,comment); } } ////////////////////////////////////////////////////////////////////////// // append list // [10/18/2005] void _append(const char *sec,const char *key,const char *value,const char *comment) { struct section *tmp_sec; struct record *temp; // find section tmp_sec = get_section(sec); if(tmp_sec != NULL) { temp = get_record(tmp_sec,key); if(temp == NULL) { temp = (struct record *)malloc(sizeof(struct record)); if(temp == NULL) { error_msg = "cannot malloc memory !"; return; } temp->next = NULL; if((comment[0] != '#' || comment[0] != ';') && (strlen(comment) > 0)) sprintf(temp->comments,"#%s",comment); else strcpy(temp->comments,comment); strcpy(temp->key,key); strcpy(temp->value,value); tmp_sec->data_size++; if (tmp_sec->data_first == NULL) { tmp_sec->data_first = temp; tmp_sec->data_last = temp; } else { tmp_sec->data_last->next = temp; tmp_sec->data_last = temp; } } else if(w_flag == REPLACE) { if((comment[0] != '#' || comment[0] != ';') && (strlen(comment) > 0)) sprintf(temp->comments,"#%s",comment); else strcpy(temp->comments,comment); strcpy(temp->key,key); strcpy(temp->value,value); } } else { add_section(sec,""); _append(sec,key,value,comment); } } ////////////////////////////////////////////////////////////////////////// // search and get section // [10/18/2005] struct section *get_section(const char *sec) { bool found = false; struct section *esection = ini_content->first; while (esection != NULL) { if(strcmp(esection->name,sec) == 0) { found = true; break; } esection = esection->next; } if(found == true) return esection; else return NULL; }; ////////////////////////////////////////////////////////////////////////// // search and get record struct record *get_record(struct section *sec,const char *key) { bool found = false; struct record *tmp; tmp = sec->data_first; while(tmp != NULL) { if(strcmp(key,tmp->key) == 0) { found = true; break; } tmp = tmp->next; } if(found == true) { return tmp; } else { return NULL; } }; ////////////////////////////////////////////////////////////////////////// // remove list //return num of remove 0 nothing to remove 1 is success // [10/18/2005] int _remove(const char *sec,const char *key) { struct section *temp_sec = get_section(sec); struct record *tmp,*tmp2; int remove = 0; if(temp_sec == NULL) return 0; tmp = temp_sec->data_first; if(tmp == NULL) return 0; if(strcmp(key,tmp->key) == 0) { temp_sec->data_first = tmp->next; temp_sec->data_size--; free(tmp); return 1; } while(tmp != NULL) { if(tmp->next != NULL) { if(strcmp(key,tmp->next->key) == 0) { tmp2 = tmp->next; tmp->next = tmp->next->next; temp_sec->data_size--; free(tmp2); remove = 1; break; } } tmp = tmp->next; } return remove; } ////////////////////////////////////////////////////////////////////////// // remove all record // [10/18/2005] int remove_all(const char *sec) { struct section *temp_sec = get_section(sec); struct record *tmp; int remove = 0; if(temp_sec == NULL) return 0; tmp = temp_sec->data_first; while(tmp != NULL) { temp_sec->data_first = tmp->next; temp_sec->data_size--; free(tmp); remove++; tmp = temp_sec->data_first; } return remove; } ////////////////////////////////////////////////////////////////////////// // remove selection record int remove_sel(const char *sec,char *key) { return _remove(sec,key); } ////////////////////////////////////////////////////////////////////////// // remove all record // [10/18/2005] int _remove_all(struct section *sec) { struct record *tmp; int remove = 0; if(sec == NULL) return 0; tmp = sec->data_first; while(tmp != NULL) { sec->data_first = tmp->next; sec->data_size--; free(tmp); remove++; tmp = sec->data_first; } return remove; } ////////////////////////////////////////////////////////////////////////// // remove section // [10/18/2005] int remove_section(char *sec) { struct section *esection = ini_content->first,*temp; int remove = 0; if(esection == NULL) return 0; if(strcmp(sec,esection->name) == 0) { _remove_all(esection); ini_content->first = esection->next; ini_content->section_size--; free(esection); return 1; } while (esection != NULL) { if(strcmp(esection->next->name,sec) == 0) { _remove_all(esection->next); temp = esection->next; esection->next = esection->next->next; ini_content->section_size--; free(temp); break; } esection = esection->next; } return remove; } ////////////////////////////////////////////////////////////////////////// // clear all content // [10/18/2005] void clear() { struct section *tmp; if(ini_content == NULL) return; tmp = ini_content->first; while(tmp != NULL) { ini_content->first = tmp->next; ini_content->section_size--; free(tmp); tmp = ini_content->first; } } ////////////////////////////////////////////////////////////////////////// // print all content // [10/18/2005] void print_content() { struct section *sec = ini_content->first; while (sec != NULL) { if(strlen(sec->comments) != 0) { printf("%s\n",sec->comments); } printf("[%s]\n",sec->name); _print_allrecord(sec->data_first); sec = sec->next; } printf("\n"); } ////////////////////////////////////////////////////////////////////////// // print all record in section // [10/18/2005] void _print_allrecord(struct record *sec) { struct record *temp = sec; while(temp != NULL) { if(strlen(temp->comments) != 0) { printf("%s\n",temp->comments); } printf("%s=%s\n",temp->key,temp->value); temp = temp->next; } } ////////////////////////////////////////////////////////////////////////// // get size of content (number of section // [10/18/2005] int content_size() { return ini_content->section_size; } ////////////////////////////////////////////////////////////////////////// // get size of selection section // [10/18/2005] int section_size(char *sec) { struct section *temp = get_section(sec); return temp->data_size; } ////////////////////////////////////////////////////////////////////////// // trime ' ' \n\t\r // [10/19/2005] void trim(char *buffer) { if(buffer[strlen(buffer)-1] == '\n') buffer[strlen(buffer)-1] = '\0'; //char temp[1024]; //if(buffer[0] ) }
#include "IMPORT_0" bool FUNC_0(const char* VAR_0) { init_content(); VAR_1 = NULL; w_flag = VAR_2; FUNC_1(VAR_3,VAR_0,sizeof(VAR_3)); if(FUNC_2(VAR_3) == false) { VAR_1 = "initial parse file error"; return false; }; return true; } ////////////////////////////////////////////////////////////////////////// // ini end // [10/19/2005] void FUNC_3(CLASS_0 VAR_4) { if(VAR_4 == VAR_2) FUNC_4(); clear(); } ////////////////////////////////////////////////////////////////////////// // ini end void ini_end() { FUNC_3(VAR_2); } ////////////////////////////////////////////////////////////////////////// // load // [10/18/2005] bool FUNC_2(const char *VAR_0) { CLASS_1 *VAR_5; char VAR_6[255]; char comments[1024]; char current_section[255]; char VAR_7[255]; char value[255]; char *VAR_8; int VAR_9; strcpy(comments,""); strcpy(current_section,""); VAR_1 = NULL; if( (VAR_5 = fopen( VAR_0, "r" )) != NULL ) { while(FUNC_5(VAR_6,sizeof(VAR_6),VAR_5) != NULL) { trim(VAR_6); switch(VAR_6[0]) { case '[' : // section; VAR_8 = FUNC_6(VAR_6,']'); if (VAR_8 == NULL) { FUNC_7(VAR_5); VAR_1 = "parse ini error"; return false; } VAR_9 = VAR_8 - VAR_6; FUNC_1(current_section,VAR_6 + 1,VAR_9 - 1); current_section[VAR_9 - 1] = '\0'; FUNC_8(current_section,comments); strcpy(comments,""); break; case '#' : // comment case ';' : if(FUNC_9(comments) > 0) FUNC_10(comments,"\n"); FUNC_10(comments,VAR_6); break; default : // find content VAR_8 = FUNC_6(VAR_6,'='); if (VAR_8 == NULL) { FUNC_7(VAR_5); VAR_1 = "parse ini error"; return false; } VAR_9 = VAR_8 - VAR_6; FUNC_1(VAR_7,VAR_6,VAR_9); VAR_7[VAR_9] = '\0'; FUNC_1(value,VAR_6 + VAR_9 + 1,FUNC_9(VAR_6)-VAR_9); if(FUNC_11(current_section,"") == 0) { FUNC_7(VAR_5); VAR_1 = "parse ini error"; return false; } else { _append(current_section,VAR_7,value,comments); strcpy(comments,""); } break; } } FUNC_7(VAR_5); } else { VAR_1 = "open file error"; return false; } return true; } ////////////////////////////////////////////////////////////////////////// // _save // [10/18/2005] bool FUNC_12(const char *VAR_0) { CLASS_1 *VAR_10; struct CLASS_2 *VAR_11 = VAR_12->VAR_13; struct CLASS_3 *VAR_14; VAR_1 = NULL; if( (VAR_10 = fopen(VAR_0, "w" )) == NULL ) { VAR_1 = "open file error"; return false; } while (VAR_11 != NULL) { if(FUNC_9(VAR_11->comments) != 0) { FUNC_13(VAR_10,"%s\n",VAR_11->comments); } FUNC_13(VAR_10,"[%s]\n",VAR_11->name); // print section content VAR_14 = VAR_11->VAR_15; while(VAR_14 != NULL) { if(FUNC_9(VAR_14->comments) != 0) { FUNC_13(VAR_10,"%s\n",VAR_14->comments); } FUNC_13(VAR_10,"%s=%s\n",VAR_14->VAR_7,VAR_14->value); VAR_14 = VAR_14->next; } VAR_11 = VAR_11->next; } FUNC_7(VAR_10); return true; } ////////////////////////////////////////////////////////////////////////// // save to default file // [10/18/2005] bool FUNC_4() { return FUNC_12(VAR_3); } ////////////////////////////////////////////////////////////////////////// // save as (for users) // [10/19/2005] bool save_as(const char *VAR_0) { return FUNC_12(VAR_0); } ////////////////////////////////////////////////////////////////////////// // get value // [10/19/2005] char *ini_get_value(const char *VAR_11,const char *VAR_7) { struct CLASS_3 *VAR_16 = FUNC_14(FUNC_15(VAR_11),VAR_7); if(VAR_16 != NULL) return VAR_16->value; else return ""; } ////////////////////////////////////////////////////////////////////////// // [10/19/2005] char *FUNC_16(const char *VAR_11,const char *VAR_7, char *VAR_17) { struct CLASS_3 *VAR_16 = FUNC_14(FUNC_15(VAR_11),VAR_7); if(VAR_16 != NULL) { strcpy(VAR_17,VAR_16->comments); return VAR_16->value; } else { strcpy(VAR_17,""); return ""; } } ////////////////////////////////////////////////////////////////////////// // set value if exitst will be replace // [10/20/2005] bool ini_set_value(const char *VAR_11,const char *VAR_7, const char *value) { return FUNC_17(VAR_11,VAR_7,value,"",VAR_2); } ////////////////////////////////////////////////////////////////////////// // [10/20/2005] bool FUNC_17(const char *VAR_11,const char *VAR_7, const char *value,const char *VAR_17,CLASS_0 VAR_4) { w_flag = VAR_4; VAR_1 = NULL; _append(VAR_11,VAR_7,value,VAR_17); if(VAR_1 == NULL) return false; else return true; } ////////////////////////////////////////////////////////////////////////// // get last error // [10/20/2005] char *FUNC_18() { return VAR_1; } /************************************************************************/ /* helper function section */ /************************************************************************/ ////////////////////////////////////////////////////////////////////////// // init list of ini file // [10/18/2005] void init_content() { VAR_12 = (CLASS_4 *)FUNC_19(sizeof(VAR_18)); if(VAR_12 == NULL) { VAR_1 = "cannot malloc memory !"; return; } VAR_12->VAR_19 = 0; VAR_12->VAR_13 = NULL; VAR_12->VAR_20 = NULL; } ////////////////////////////////////////////////////////////////////////// // add section // [10/18/2005] void FUNC_8(const char *VAR_11,const char *VAR_17) { struct CLASS_2 *VAR_21; VAR_21 = FUNC_15(VAR_11); VAR_1 = NULL; if(VAR_21 == NULL) { VAR_21 = (struct CLASS_2 *)FUNC_19(sizeof(struct CLASS_2)); if(VAR_21 == NULL) { VAR_1 = "cannot malloc memory !"; return; } // for section name strcpy(VAR_21->name,VAR_11); if((VAR_17[0] != '#' || VAR_17[0] != ';') && (FUNC_9(VAR_17) > 0)) FUNC_21(VAR_21->comments,"#%s",VAR_17); else strcpy(VAR_21->comments,VAR_17); // for data link VAR_21->VAR_15 = NULL; VAR_21->data_last = NULL; VAR_21->next = NULL; VAR_21->data_size = 0; // increment section size VAR_12->VAR_19++; // for content link if (VAR_12->VAR_13 == NULL) { VAR_12->VAR_13 = VAR_21; VAR_12->VAR_20 = VAR_21; } else { VAR_12->VAR_20->next = VAR_21; VAR_12->VAR_20 = VAR_21; } } else if(w_flag == VAR_2) { strcpy(VAR_21->name,VAR_11); if((VAR_17[0] != '#' || VAR_17[0] != ';') && (FUNC_9(VAR_17) > 0)) FUNC_21(VAR_21->comments,"#%s",VAR_17); else strcpy(VAR_21->comments,VAR_17); } } ////////////////////////////////////////////////////////////////////////// // append list // [10/18/2005] void _append(const char *VAR_11,const char *VAR_7,const char *value,const char *VAR_17) { struct CLASS_2 *VAR_22; struct CLASS_3 *VAR_21; // find section VAR_22 = FUNC_15(VAR_11); if(VAR_22 != NULL) { VAR_21 = FUNC_14(VAR_22,VAR_7); if(VAR_21 == NULL) { VAR_21 = (struct CLASS_3 *)FUNC_19(sizeof(struct CLASS_3)); if(VAR_21 == NULL) { VAR_1 = "cannot malloc memory !"; return; } VAR_21->next = NULL; if((VAR_17[0] != '#' || VAR_17[0] != ';') && (FUNC_9(VAR_17) > 0)) FUNC_21(VAR_21->comments,"#%s",VAR_17); else strcpy(VAR_21->comments,VAR_17); strcpy(VAR_21->VAR_7,VAR_7); strcpy(VAR_21->value,value); VAR_22->data_size++; if (VAR_22->VAR_15 == NULL) { VAR_22->VAR_15 = VAR_21; VAR_22->data_last = VAR_21; } else { VAR_22->data_last->next = VAR_21; VAR_22->data_last = VAR_21; } } else if(w_flag == VAR_2) { if((VAR_17[0] != '#' || VAR_17[0] != ';') && (FUNC_9(VAR_17) > 0)) FUNC_21(VAR_21->comments,"#%s",VAR_17); else strcpy(VAR_21->comments,VAR_17); strcpy(VAR_21->VAR_7,VAR_7); strcpy(VAR_21->value,value); } } else { FUNC_8(VAR_11,""); _append(VAR_11,VAR_7,value,VAR_17); } } ////////////////////////////////////////////////////////////////////////// // search and get section // [10/18/2005] struct CLASS_2 *FUNC_15(const char *VAR_11) { bool found = false; struct CLASS_2 *VAR_23 = VAR_12->VAR_13; while (VAR_23 != NULL) { if(FUNC_11(VAR_23->name,VAR_11) == 0) { found = true; break; } VAR_23 = VAR_23->next; } if(found == true) return VAR_23; else return NULL; }VAR_24; ////////////////////////////////////////////////////////////////////////// // search and get record struct CLASS_3 *FUNC_14(struct CLASS_2 *VAR_11,const char *VAR_7) { bool found = false; struct CLASS_3 *tmp; tmp = VAR_11->VAR_15; while(tmp != NULL) { if(FUNC_11(VAR_7,tmp->VAR_7) == 0) { found = true; break; } tmp = tmp->next; } if(found == true) { return tmp; } else { return NULL; } }VAR_24; ////////////////////////////////////////////////////////////////////////// // remove list //return num of remove 0 nothing to remove 1 is success // [10/18/2005] int FUNC_22(const char *VAR_11,const char *VAR_7) { struct CLASS_2 *VAR_25 = FUNC_15(VAR_11); struct CLASS_3 *tmp,*VAR_26; int VAR_27 = 0; if(VAR_25 == NULL) return 0; tmp = VAR_25->VAR_15; if(tmp == NULL) return 0; if(FUNC_11(VAR_7,tmp->VAR_7) == 0) { VAR_25->VAR_15 = tmp->next; VAR_25->data_size--; FUNC_23(tmp); return 1; } while(tmp != NULL) { if(tmp->next != NULL) { if(FUNC_11(VAR_7,tmp->next->VAR_7) == 0) { VAR_26 = tmp->next; tmp->next = tmp->next->next; VAR_25->data_size--; FUNC_23(VAR_26); VAR_27 = 1; break; } } tmp = tmp->next; } return VAR_27; } ////////////////////////////////////////////////////////////////////////// // remove all record // [10/18/2005] int FUNC_24(const char *VAR_11) { struct CLASS_2 *VAR_25 = FUNC_15(VAR_11); struct CLASS_3 *tmp; int VAR_27 = 0; if(VAR_25 == NULL) return 0; tmp = VAR_25->VAR_15; while(tmp != NULL) { VAR_25->VAR_15 = tmp->next; VAR_25->data_size--; FUNC_23(tmp); VAR_27++; tmp = VAR_25->VAR_15; } return VAR_27; } ////////////////////////////////////////////////////////////////////////// // remove selection record int FUNC_25(const char *VAR_11,char *VAR_7) { return FUNC_22(VAR_11,VAR_7); } ////////////////////////////////////////////////////////////////////////// // remove all record // [10/18/2005] int FUNC_26(struct CLASS_2 *VAR_11) { struct CLASS_3 *tmp; int VAR_27 = 0; if(VAR_11 == NULL) return 0; tmp = VAR_11->VAR_15; while(tmp != NULL) { VAR_11->VAR_15 = tmp->next; VAR_11->data_size--; FUNC_23(tmp); VAR_27++; tmp = VAR_11->VAR_15; } return VAR_27; } ////////////////////////////////////////////////////////////////////////// // remove section // [10/18/2005] int FUNC_27(char *VAR_11) { struct CLASS_2 *VAR_23 = VAR_12->VAR_13,*VAR_21; int VAR_27 = 0; if(VAR_23 == NULL) return 0; if(FUNC_11(VAR_11,VAR_23->name) == 0) { FUNC_26(VAR_23); VAR_12->VAR_13 = VAR_23->next; VAR_12->VAR_19--; FUNC_23(VAR_23); return 1; } while (VAR_23 != NULL) { if(FUNC_11(VAR_23->next->name,VAR_11) == 0) { FUNC_26(VAR_23->next); VAR_21 = VAR_23->next; VAR_23->next = VAR_23->next->next; VAR_12->VAR_19--; FUNC_23(VAR_21); break; } VAR_23 = VAR_23->next; } return VAR_27; } ////////////////////////////////////////////////////////////////////////// // clear all content // [10/18/2005] void clear() { struct CLASS_2 *tmp; if(VAR_12 == NULL) return; tmp = VAR_12->VAR_13; while(tmp != NULL) { VAR_12->VAR_13 = tmp->next; VAR_12->VAR_19--; FUNC_23(tmp); tmp = VAR_12->VAR_13; } } ////////////////////////////////////////////////////////////////////////// // print all content // [10/18/2005] void FUNC_28() { struct CLASS_2 *VAR_11 = VAR_12->VAR_13; while (VAR_11 != NULL) { if(FUNC_9(VAR_11->comments) != 0) { FUNC_29("%s\n",VAR_11->comments); } FUNC_29("[%s]\n",VAR_11->name); FUNC_30(VAR_11->VAR_15); VAR_11 = VAR_11->next; } FUNC_29("\n"); } ////////////////////////////////////////////////////////////////////////// // print all record in section // [10/18/2005] void FUNC_30(struct CLASS_3 *VAR_11) { struct CLASS_3 *VAR_21 = VAR_11; while(VAR_21 != NULL) { if(FUNC_9(VAR_21->comments) != 0) { FUNC_29("%s\n",VAR_21->comments); } FUNC_29("%s=%s\n",VAR_21->VAR_7,VAR_21->value); VAR_21 = VAR_21->next; } } ////////////////////////////////////////////////////////////////////////// // get size of content (number of section // [10/18/2005] int FUNC_31() { return VAR_12->VAR_19; } ////////////////////////////////////////////////////////////////////////// // get size of selection section // [10/18/2005] int FUNC_20(char *VAR_11) { struct CLASS_2 *VAR_21 = FUNC_15(VAR_11); return VAR_21->data_size; } ////////////////////////////////////////////////////////////////////////// // trime ' ' \n\t\r // [10/19/2005] void trim(char *VAR_6) { if(VAR_6[FUNC_9(VAR_6)-1] == '\n') VAR_6[FUNC_9(VAR_6)-1] = '\0'; //char temp[1024]; //if(buffer[0] ) }
0.761826
{'IMPORT_0': 'ini_manage.h', 'FUNC_0': 'ini_start', 'VAR_0': 'filename', 'VAR_1': 'error_msg', 'VAR_2': 'REPLACE', 'FUNC_1': 'memcpy', 'VAR_3': 'gfilename', 'FUNC_2': 'load', 'FUNC_3': '_ini_end', 'CLASS_0': 'REPLACE_FLAG', 'VAR_4': 'flag', 'FUNC_4': 'save', 'CLASS_1': 'FILE', 'VAR_5': 'in_stream', 'VAR_6': 'buffer', 'VAR_7': 'key', 'VAR_8': 'pdest', 'VAR_9': 'index', 'FUNC_5': 'fgets', 'FUNC_6': 'strrchr', 'FUNC_7': 'fclose', 'FUNC_8': 'add_section', 'FUNC_9': 'strlen', 'FUNC_10': 'strcat', 'FUNC_11': 'strcmp', 'FUNC_12': '_save', 'VAR_10': 'stream', 'CLASS_2': 'section', 'VAR_11': 'sec', 'VAR_12': 'ini_content', 'VAR_13': 'first', 'CLASS_3': 'record', 'VAR_14': 'rec', 'FUNC_13': 'fprintf', 'VAR_15': 'data_first', 'VAR_16': 'result', 'FUNC_14': 'get_record', 'FUNC_15': 'get_section', 'FUNC_16': '_get_value', 'VAR_17': 'comment', 'FUNC_17': '_set_value', 'FUNC_18': 'get_last_error', 'CLASS_4': 'content', 'VAR_18': 'content', 'FUNC_19': 'malloc', 'VAR_19': 'section_size', 'FUNC_20': 'section_size', 'VAR_20': 'last', 'VAR_21': 'temp', 'FUNC_21': 'sprintf', 'VAR_22': 'tmp_sec', 'VAR_23': 'esection', 'VAR_24': '', 'FUNC_22': '_remove', 'VAR_25': 'temp_sec', 'VAR_26': 'tmp2', 'VAR_27': 'remove', 'FUNC_23': 'free', 'FUNC_24': 'remove_all', 'FUNC_25': 'remove_sel', 'FUNC_26': '_remove_all', 'FUNC_27': 'remove_section', 'FUNC_28': 'print_content', 'FUNC_29': 'printf', 'FUNC_30': '_print_allrecord', 'FUNC_31': 'content_size'}
/*- *----------------------------------------------------------------------- * Cache_InvalidateAll -- * Invalidate all the entries in the given cache. * * Results: * None. * * Side Effects: * The destroyProc is called for each element in the cache, if a * destroyProc was given. * *----------------------------------------------------------------------- */ void Cache_InvalidateAll(Cache cache, Boolean destroy) { register CachePtr c = (CachePtr)cache; assert(VALIDTPTR(cache,TAG_CACHE)); if (destroy) { Lst_ForEach(c->list, CacheDestroyEntry, (LstClientData)cache); } Lst_Destroy(c->list, NOFREE); Hash_DeleteTable(&c->table); Hash_InitTable(&c->table, 0, c->keyType, 0); c->list = Lst_Init(FALSE); c->num = 0; }
/*- *----------------------------------------------------------------------- * Cache_InvalidateAll -- * Invalidate all the entries in the given cache. * * Results: * None. * * Side Effects: * The destroyProc is called for each element in the cache, if a * destroyProc was given. * *----------------------------------------------------------------------- */ void FUNC_0(CLASS_0 VAR_0, CLASS_1 VAR_1) { register CachePtr VAR_2 = (CachePtr)VAR_0; assert(FUNC_1(VAR_0,VAR_3)); if (VAR_1) { FUNC_2(VAR_2->VAR_4, VAR_5, (ID_0)VAR_0); } FUNC_3(VAR_2->VAR_4, NOFREE); FUNC_4(&VAR_2->VAR_6); FUNC_5(&VAR_2->VAR_6, 0, VAR_2->VAR_7, 0); VAR_2->VAR_4 = Lst_Init(FALSE); VAR_2->num = 0; }
0.92353
{'FUNC_0': 'Cache_InvalidateAll', 'CLASS_0': 'Cache', 'VAR_0': 'cache', 'CLASS_1': 'Boolean', 'VAR_1': 'destroy', 'VAR_2': 'c', 'FUNC_1': 'VALIDTPTR', 'VAR_3': 'TAG_CACHE', 'FUNC_2': 'Lst_ForEach', 'VAR_4': 'list', 'VAR_5': 'CacheDestroyEntry', 'ID_0': 'LstClientData', 'FUNC_3': 'Lst_Destroy', 'FUNC_4': 'Hash_DeleteTable', 'VAR_6': 'table', 'FUNC_5': 'Hash_InitTable', 'VAR_7': 'keyType'}
/**/ /* Pragmas for regex.library */ /**/ /*pragma libcall RegexBase dispatch 1e 0*/ #pragma libcall RegexBase regcomp 24 09803 #pragma libcall RegexBase regerror 2a 102904 #pragma libcall RegexBase regexec 30 3210905 #pragma libcall RegexBase regfree 36 801
/**/ /* Pragmas for regex.library */ /**/ /*pragma libcall RegexBase dispatch 1e 0*/ #pragma libcall RegexBase regcomp 24 09803 #pragma libcall RegexBase regerror 2a 102904 #pragma libcall RegexBase regexec 30 3210905 #pragma libcall RegexBase regfree 36 801
0.086776
{}
/* This function acts like NEXT_INSN, but is aware of three-insn bundles and skips all subsequent parallel instructions if INSN is the start of such a group. */ static rtx find_next_insn_start (rtx insn) { if (GET_MODE (insn) == SImode) { while (GET_MODE (insn) != QImode) insn = NEXT_INSN (insn); } return NEXT_INSN (insn); }
/* This function acts like NEXT_INSN, but is aware of three-insn bundles and skips all subsequent parallel instructions if INSN is the start of such a group. */ static rtx FUNC_0 (rtx insn) { if (FUNC_1 (insn) == SImode) { while (FUNC_1 (insn) != QImode) insn = FUNC_2 (insn); } return FUNC_2 (insn); }
0.646173
{'FUNC_0': 'find_next_insn_start', 'FUNC_1': 'GET_MODE', 'FUNC_2': 'NEXT_INSN'}
/* Fill in NULL procedures in a forwarding device procedure record. */ /* We don't fill in: open_device, close_device, or the lowest-level */ /* drawing operations. */ void gx_device_forward_fill_in_procs(register gx_device_forward * dev) { gx_device_set_procs((gx_device *) dev); fill_dev_proc(dev, get_initial_matrix, gx_forward_get_initial_matrix); fill_dev_proc(dev, sync_output, gx_forward_sync_output); fill_dev_proc(dev, output_page, gx_forward_output_page); fill_dev_proc(dev, map_rgb_color, gx_forward_map_rgb_color); fill_dev_proc(dev, map_color_rgb, gx_forward_map_color_rgb); fill_dev_proc(dev, get_bits, gx_forward_get_bits); fill_dev_proc(dev, get_params, gx_forward_get_params); fill_dev_proc(dev, put_params, gx_forward_put_params); fill_dev_proc(dev, map_cmyk_color, gx_forward_map_cmyk_color); fill_dev_proc(dev, get_xfont_procs, gx_forward_get_xfont_procs); fill_dev_proc(dev, get_xfont_device, gx_forward_get_xfont_device); fill_dev_proc(dev, map_rgb_alpha_color, gx_forward_map_rgb_alpha_color); fill_dev_proc(dev, get_page_device, gx_forward_get_page_device); fill_dev_proc(dev, get_band, gx_forward_get_band); fill_dev_proc(dev, copy_rop, gx_forward_copy_rop); fill_dev_proc(dev, fill_path, gx_forward_fill_path); fill_dev_proc(dev, stroke_path, gx_forward_stroke_path); fill_dev_proc(dev, fill_mask, gx_forward_fill_mask); fill_dev_proc(dev, fill_trapezoid, gx_forward_fill_trapezoid); fill_dev_proc(dev, fill_parallelogram, gx_forward_fill_parallelogram); fill_dev_proc(dev, fill_triangle, gx_forward_fill_triangle); fill_dev_proc(dev, draw_thin_line, gx_forward_draw_thin_line); fill_dev_proc(dev, begin_image, gx_forward_begin_image); fill_dev_proc(dev, strip_copy_rop, gx_forward_strip_copy_rop); fill_dev_proc(dev, get_clipping_box, gx_forward_get_clipping_box); fill_dev_proc(dev, begin_typed_image, gx_forward_begin_typed_image); fill_dev_proc(dev, get_bits_rectangle, gx_forward_get_bits_rectangle); fill_dev_proc(dev, map_color_rgb_alpha, gx_forward_map_color_rgb_alpha); fill_dev_proc(dev, create_compositor, gx_no_create_compositor); fill_dev_proc(dev, get_hardware_params, gx_forward_get_hardware_params); fill_dev_proc(dev, text_begin, gx_forward_text_begin); fill_dev_proc(dev, get_color_mapping_procs, gx_forward_get_color_mapping_procs); fill_dev_proc(dev, get_color_comp_index, gx_forward_get_color_comp_index); fill_dev_proc(dev, encode_color, gx_forward_encode_color); fill_dev_proc(dev, decode_color, gx_forward_decode_color); fill_dev_proc(dev, dev_spec_op, gx_forward_dev_spec_op); fill_dev_proc(dev, fill_rectangle_hl_color, gx_forward_fill_rectangle_hl_color); fill_dev_proc(dev, include_color_space, gx_forward_include_color_space); fill_dev_proc(dev, fill_linear_color_scanline, gx_forward_fill_linear_color_scanline); fill_dev_proc(dev, fill_linear_color_trapezoid, gx_forward_fill_linear_color_trapezoid); fill_dev_proc(dev, fill_linear_color_triangle, gx_forward_fill_linear_color_triangle); fill_dev_proc(dev, update_spot_equivalent_colors, gx_forward_update_spot_equivalent_colors); fill_dev_proc(dev, ret_devn_params, gx_forward_ret_devn_params); fill_dev_proc(dev, fillpage, gx_forward_fillpage); fill_dev_proc(dev, put_image, gx_forward_put_image); fill_dev_proc(dev, get_profile, gx_forward_get_profile); fill_dev_proc(dev, set_graphics_type_tag, gx_forward_set_graphics_type_tag); fill_dev_proc(dev, strip_copy_rop2, gx_forward_strip_copy_rop2); fill_dev_proc(dev, strip_tile_rect_devn, gx_forward_strip_tile_rect_devn); fill_dev_proc(dev, strip_tile_rect_devn, gx_forward_strip_tile_rect_devn); fill_dev_proc(dev, transform_pixel_region, gx_forward_transform_pixel_region); fill_dev_proc(dev, fill_stroke_path, gx_forward_fill_stroke_path); gx_device_fill_in_procs((gx_device *) dev); }
/* Fill in NULL procedures in a forwarding device procedure record. */ /* We don't fill in: open_device, close_device, or the lowest-level */ /* drawing operations. */ void FUNC_0(register CLASS_0 * dev) { FUNC_1((CLASS_1 *) dev); FUNC_2(dev, VAR_0, VAR_1); FUNC_2(dev, VAR_2, VAR_3); FUNC_2(dev, VAR_4, VAR_5); FUNC_2(dev, VAR_6, VAR_7); FUNC_2(dev, VAR_8, VAR_9); FUNC_2(dev, VAR_10, VAR_11); FUNC_2(dev, VAR_12, VAR_13); FUNC_2(dev, VAR_14, VAR_15); FUNC_2(dev, VAR_16, VAR_17); FUNC_2(dev, VAR_18, VAR_19); FUNC_2(dev, VAR_20, gx_forward_get_xfont_device); FUNC_2(dev, VAR_21, VAR_22); FUNC_2(dev, VAR_23, VAR_24); FUNC_2(dev, VAR_25, VAR_26); FUNC_2(dev, copy_rop, VAR_27); FUNC_2(dev, fill_path, VAR_28); FUNC_2(dev, VAR_29, VAR_30); FUNC_2(dev, VAR_31, VAR_32); FUNC_2(dev, VAR_33, gx_forward_fill_trapezoid); FUNC_2(dev, VAR_34, VAR_35); FUNC_2(dev, VAR_36, VAR_37); FUNC_2(dev, VAR_38, VAR_39); FUNC_2(dev, VAR_40, VAR_41); FUNC_2(dev, VAR_42, VAR_43); FUNC_2(dev, VAR_44, gx_forward_get_clipping_box); FUNC_2(dev, begin_typed_image, VAR_45); FUNC_2(dev, get_bits_rectangle, VAR_46); FUNC_2(dev, VAR_47, VAR_48); FUNC_2(dev, VAR_49, gx_no_create_compositor); FUNC_2(dev, get_hardware_params, VAR_50); FUNC_2(dev, VAR_51, VAR_52); FUNC_2(dev, VAR_53, VAR_54); FUNC_2(dev, VAR_55, VAR_56); FUNC_2(dev, VAR_57, VAR_58); FUNC_2(dev, VAR_59, VAR_60); FUNC_2(dev, VAR_61, VAR_62); FUNC_2(dev, VAR_63, VAR_64); FUNC_2(dev, VAR_65, VAR_66); FUNC_2(dev, VAR_67, VAR_68); FUNC_2(dev, VAR_69, VAR_70); FUNC_2(dev, VAR_71, VAR_72); FUNC_2(dev, VAR_73, VAR_74); FUNC_2(dev, VAR_75, VAR_76); FUNC_2(dev, VAR_77, VAR_78); FUNC_2(dev, VAR_79, VAR_80); FUNC_2(dev, VAR_81, VAR_82); FUNC_2(dev, VAR_83, VAR_84); FUNC_2(dev, VAR_85, VAR_86); FUNC_2(dev, VAR_87, VAR_88); FUNC_2(dev, VAR_87, VAR_88); FUNC_2(dev, VAR_89, VAR_90); FUNC_2(dev, VAR_91, gx_forward_fill_stroke_path); gx_device_fill_in_procs((CLASS_1 *) dev); }
0.809804
{'FUNC_0': 'gx_device_forward_fill_in_procs', 'CLASS_0': 'gx_device_forward', 'FUNC_1': 'gx_device_set_procs', 'CLASS_1': 'gx_device', 'FUNC_2': 'fill_dev_proc', 'VAR_0': 'get_initial_matrix', 'VAR_1': 'gx_forward_get_initial_matrix', 'VAR_2': 'sync_output', 'VAR_3': 'gx_forward_sync_output', 'VAR_4': 'output_page', 'VAR_5': 'gx_forward_output_page', 'VAR_6': 'map_rgb_color', 'VAR_7': 'gx_forward_map_rgb_color', 'VAR_8': 'map_color_rgb', 'VAR_9': 'gx_forward_map_color_rgb', 'VAR_10': 'get_bits', 'VAR_11': 'gx_forward_get_bits', 'VAR_12': 'get_params', 'VAR_13': 'gx_forward_get_params', 'VAR_14': 'put_params', 'VAR_15': 'gx_forward_put_params', 'VAR_16': 'map_cmyk_color', 'VAR_17': 'gx_forward_map_cmyk_color', 'VAR_18': 'get_xfont_procs', 'VAR_19': 'gx_forward_get_xfont_procs', 'VAR_20': 'get_xfont_device', 'VAR_21': 'map_rgb_alpha_color', 'VAR_22': 'gx_forward_map_rgb_alpha_color', 'VAR_23': 'get_page_device', 'VAR_24': 'gx_forward_get_page_device', 'VAR_25': 'get_band', 'VAR_26': 'gx_forward_get_band', 'VAR_27': 'gx_forward_copy_rop', 'VAR_28': 'gx_forward_fill_path', 'VAR_29': 'stroke_path', 'VAR_30': 'gx_forward_stroke_path', 'VAR_31': 'fill_mask', 'VAR_32': 'gx_forward_fill_mask', 'VAR_33': 'fill_trapezoid', 'VAR_34': 'fill_parallelogram', 'VAR_35': 'gx_forward_fill_parallelogram', 'VAR_36': 'fill_triangle', 'VAR_37': 'gx_forward_fill_triangle', 'VAR_38': 'draw_thin_line', 'VAR_39': 'gx_forward_draw_thin_line', 'VAR_40': 'begin_image', 'VAR_41': 'gx_forward_begin_image', 'VAR_42': 'strip_copy_rop', 'VAR_43': 'gx_forward_strip_copy_rop', 'VAR_44': 'get_clipping_box', 'VAR_45': 'gx_forward_begin_typed_image', 'VAR_46': 'gx_forward_get_bits_rectangle', 'VAR_47': 'map_color_rgb_alpha', 'VAR_48': 'gx_forward_map_color_rgb_alpha', 'VAR_49': 'create_compositor', 'VAR_50': 'gx_forward_get_hardware_params', 'VAR_51': 'text_begin', 'VAR_52': 'gx_forward_text_begin', 'VAR_53': 'get_color_mapping_procs', 'VAR_54': 'gx_forward_get_color_mapping_procs', 'VAR_55': 'get_color_comp_index', 'VAR_56': 'gx_forward_get_color_comp_index', 'VAR_57': 'encode_color', 'VAR_58': 'gx_forward_encode_color', 'VAR_59': 'decode_color', 'VAR_60': 'gx_forward_decode_color', 'VAR_61': 'dev_spec_op', 'VAR_62': 'gx_forward_dev_spec_op', 'VAR_63': 'fill_rectangle_hl_color', 'VAR_64': 'gx_forward_fill_rectangle_hl_color', 'VAR_65': 'include_color_space', 'VAR_66': 'gx_forward_include_color_space', 'VAR_67': 'fill_linear_color_scanline', 'VAR_68': 'gx_forward_fill_linear_color_scanline', 'VAR_69': 'fill_linear_color_trapezoid', 'VAR_70': 'gx_forward_fill_linear_color_trapezoid', 'VAR_71': 'fill_linear_color_triangle', 'VAR_72': 'gx_forward_fill_linear_color_triangle', 'VAR_73': 'update_spot_equivalent_colors', 'VAR_74': 'gx_forward_update_spot_equivalent_colors', 'VAR_75': 'ret_devn_params', 'VAR_76': 'gx_forward_ret_devn_params', 'VAR_77': 'fillpage', 'VAR_78': 'gx_forward_fillpage', 'VAR_79': 'put_image', 'VAR_80': 'gx_forward_put_image', 'VAR_81': 'get_profile', 'VAR_82': 'gx_forward_get_profile', 'VAR_83': 'set_graphics_type_tag', 'VAR_84': 'gx_forward_set_graphics_type_tag', 'VAR_85': 'strip_copy_rop2', 'VAR_86': 'gx_forward_strip_copy_rop2', 'VAR_87': 'strip_tile_rect_devn', 'VAR_88': 'gx_forward_strip_tile_rect_devn', 'VAR_89': 'transform_pixel_region', 'VAR_90': 'gx_forward_transform_pixel_region', 'VAR_91': 'fill_stroke_path'}
ISR(INT0_vect); ISR(INT1_vect); ISR(TIMER0_OVF_vect); ISR(USART_RXC_vect);
ISR(INT0_vect); ISR(INT1_vect); ISR(TIMER0_OVF_vect); ISR(VAR_0);
0.24764
{'VAR_0': 'USART_RXC_vect'}
#import <Foundation/Foundation.h> #import <oonimkall/Oonimkall.h> @interface OONIURLInfo : NSObject @property (nonatomic, strong) NSString *url; @property (nonatomic, strong) NSString *category_code; @property (nonatomic, strong) NSString *country_code; - (id) initWithURLInfo:(OonimkallURLInfo*)urlInfo; @end
#import <Foundation/Foundation.h> #import <oonimkall/Oonimkall.h> @interface OONIURLInfo : NSObject @property (nonatomic, strong) NSString *url; @property (nonatomic, strong) NSString *category_code; @property (nonatomic, strong) NSString *country_code; - (id) initWithURLInfo:(OonimkallURLInfo*)urlInfo; @end
0.012088
{}
// See: // See the type for the argument in the function out8. // gramado/kernel/bottom/hal/arch/x86/portsx86.c int serial_init_port ( uint16_t port ){ int PortBase=0; PortBase = (int) port; if ( PortBase != COM1_PORT && PortBase != COM2_PORT && PortBase != COM3_PORT && PortBase != COM4_PORT ) { return -1; } out8 (PortBase + 1, 0x00); out8 (PortBase + LCR, 0x80); out8 (PortBase + 0, 0x03); out8 (PortBase + 1, 0x00); ========= out8 (PortBase + LCR, 0x03); out8 (PortBase + FCR, 0xC7); out8 (PortBase + MCR, 0x0B); return 0; }
// See: // See the type for the argument in the function out8. // gramado/kernel/bottom/hal/arch/x86/portsx86.c int FUNC_0 ( uint16_t port ){ int VAR_0=0; VAR_0 = (int) port; if ( VAR_0 != VAR_1 && VAR_0 != COM2_PORT && VAR_0 != COM3_PORT && VAR_0 != COM4_PORT ) { return -1; } FUNC_1 (VAR_0 + 1, 0x00); FUNC_1 (VAR_0 + LCR, 0x80); FUNC_1 (VAR_0 + 0, 0x03); FUNC_1 (VAR_0 + 1, 0x00); ========= FUNC_1 (VAR_0 + LCR, 0x03); FUNC_1 (VAR_0 + VAR_2, 0xC7); FUNC_1 (VAR_0 + MCR, 0x0B); return 0; }
0.466038
{'FUNC_0': 'serial_init_port', 'VAR_0': 'PortBase', 'VAR_1': 'COM1_PORT', 'FUNC_1': 'out8', 'VAR_2': 'FCR'}
#pragma once #include <memory> template<class T> struct BasicAllocator { typedef T value_type; typedef value_type* pointer; BasicAllocator() : _allocatedObjects(new int()) { } BasicAllocator(const BasicAllocator&) = default; BasicAllocator(BasicAllocator&&) = default; template<class U> BasicAllocator(const BasicAllocator<U>& other) : _allocatedObjects(other._allocatedObjects) { } BasicAllocator& operator=(const BasicAllocator&) = default; BasicAllocator& operator=(BasicAllocator&&) = default; pointer allocate(std::size_t n) { auto ptr = reinterpret_cast<pointer>(::operator new(n * sizeof(T))); (*_allocatedObjects)++; return ptr; } void deallocate(pointer p, std::size_t) { ::operator delete(p); (*_allocatedObjects)--; } int GetCount() { return *_allocatedObjects; } std::shared_ptr<int> _allocatedObjects; }; template <class T, class U> bool operator==(const BasicAllocator<T>&, const BasicAllocator<U>&) { return true; } template <class T, class U> bool operator!=(const BasicAllocator<T>&, const BasicAllocator<U>&) { return false; }
#pragma once #include <IMPORT_0> VAR_0<VAR_1 VAR_2> VAR_3 BasicAllocator { typedef CLASS_0 value_type; typedef value_type* CLASS_1; BasicAllocator() : VAR_5(CLASS_2 int()) { } BasicAllocator(const BasicAllocator&)VAR_6 = VAR_7; BasicAllocator(BasicAllocator&&VAR_6) = VAR_7; VAR_0<VAR_1 VAR_8> BasicAllocator(VAR_9 BasicAllocator<VAR_8>& VAR_10) : FUNC_0(VAR_10.VAR_5) { } BasicAllocator& VAR_11=(const BasicAllocator&) = default; BasicAllocator& VAR_11=(BasicAllocator&&VAR_6) = VAR_7; CLASS_1 FUNC_2(std::size_t VAR_12) { auto CLASS_4VAR_6 = VAR_14<VAR_4>(::VAR_11 FUNC_1(VAR_12 * sizeof(VAR_2))); (*VAR_5)++; return VAR_13; } void FUNC_3(CLASS_1 VAR_15, std::size_t) { ::CLASS_3 FUNC_4(CLASS_5); (*VAR_5)--; } int FUNC_5() { return *VAR_5; } std::shared_ptr<VAR_16> VAR_5; }; VAR_0 <VAR_1 VAR_2, VAR_1 VAR_8> VAR_17 VAR_11==(const BasicAllocator<VAR_2>&, const BasicAllocator<VAR_8>&) { return true; } VAR_0 <VAR_1 VAR_2, VAR_1 VAR_8> VAR_17 VAR_11!=(const BasicAllocator<VAR_2>&, const BasicAllocator<VAR_8>&) { return false; }
0.853851
{'IMPORT_0': 'memory', 'VAR_0': 'template', 'VAR_1': 'class', 'VAR_2': 'T', 'CLASS_0': 'T', 'VAR_3': 'struct', 'CLASS_1': 'pointer', 'VAR_4': 'pointer', 'VAR_5': '_allocatedObjects', 'FUNC_0': '_allocatedObjects', 'CLASS_2': 'new', 'FUNC_1': 'new', 'VAR_6': '', 'VAR_7': 'default', 'VAR_8': 'U', 'VAR_9': 'const', 'VAR_10': 'other', 'VAR_11': 'operator', 'CLASS_3': 'operator', 'FUNC_2': 'allocate', 'VAR_12': 'n', 'CLASS_4': 'ptr', 'VAR_13': 'ptr', 'VAR_14': 'reinterpret_cast', 'FUNC_3': 'deallocate', 'VAR_15': 'p', 'CLASS_5': 'p', 'FUNC_4': 'delete', 'FUNC_5': 'GetCount', 'VAR_16': 'int', 'VAR_17': 'bool'}
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef DISPLAYITEMCLIPCHAIN_H_ #define DISPLAYITEMCLIPCHAIN_H_ #include "mozilla/Assertions.h" #include "DisplayItemClip.h" #include "nsString.h" class nsIScrollableFrame; namespace mozilla { struct ActiveScrolledRoot; /** * A DisplayItemClipChain is a linked list of DisplayItemClips where each clip * is associated with an active scrolled root that describes what the clip * moves with. * We use a chain instead of just one intersected clip due to async scrolling: * A clip that moves along with a display item can be fused to the item's * contents when drawing the layer contents, but all other clips in the chain * need to be kept separate so that they can be applied at composition time, * after any async scroll offsets have been applied. * The clip chain is created during display list construction by the builder's * DisplayListClipState. * The clip chain order is determined by the active scrolled root order. * For every DisplayItemClipChain object |clipChain|, the following holds: * !clipChain->mParent || * ActiveScrolledRoot::IsAncestor(clipChain->mParent->mASR, clipChain->mASR). * The clip chain can skip over active scrolled roots. That just means that * there is no clip that moves with the skipped ASR in this chain. */ struct DisplayItemClipChain { /** * Get the display item clip in this chain that moves with aASR, or nullptr * if no such clip exists. aClipChain can be null. */ static const DisplayItemClip* ClipForASR( const DisplayItemClipChain* aClipChain, const ActiveScrolledRoot* aASR); static bool Equal(const DisplayItemClipChain* aClip1, const DisplayItemClipChain* aClip2); /** * Hash function that returns the same value for any two clips A and B * where Equal(A, B) is true. */ static uint32_t Hash(const DisplayItemClipChain* aClip); static nsCString ToString(const DisplayItemClipChain* aClipChain); bool HasRoundedCorners() const; void AddRef() { mRefCount++; } void Release() { MOZ_ASSERT(mRefCount > 0); mRefCount--; } DisplayItemClipChain(const DisplayItemClip& aClip, const ActiveScrolledRoot* aASR, const DisplayItemClipChain* aParent, DisplayItemClipChain* aNextClipChainToDestroy) : mClip(aClip), mASR(aASR), mParent(aParent), mNextClipChainToDestroy(aNextClipChainToDestroy) #ifdef DEBUG , mOnStack(true) #endif { } DisplayItemClipChain() : mASR(nullptr), mNextClipChainToDestroy(nullptr) #ifdef DEBUG , mOnStack(true) #endif { } DisplayItemClip mClip; const ActiveScrolledRoot* mASR; RefPtr<const DisplayItemClipChain> mParent; uint32_t mRefCount = 0; DisplayItemClipChain* mNextClipChainToDestroy; #ifdef DEBUG bool mOnStack; #endif }; struct DisplayItemClipChainHasher { typedef const DisplayItemClipChain* Key; std::size_t operator()(const Key& aKey) const { return DisplayItemClipChain::Hash(aKey); } }; struct DisplayItemClipChainEqualer { typedef const DisplayItemClipChain* Key; bool operator()(const Key& lhs, const Key& rhs) const { return DisplayItemClipChain::Equal(lhs, rhs); } }; } // namespace mozilla #endif /* DISPLAYITEMCLIPCHAIN_H_ */
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef VAR_0 #define VAR_0 #include "IMPORT_0" #include "DisplayItemClip.h" #include "nsString.h" CLASS_0 VAR_1; CLASS_1 mozilla { struct CLASS_2; /** * A DisplayItemClipChain is a linked list of DisplayItemClips where each clip * is associated with an active scrolled root that describes what the clip * moves with. * We use a chain instead of just one intersected clip due to async scrolling: * A clip that moves along with a display item can be fused to the item's * contents when drawing the layer contents, but all other clips in the chain * need to be kept separate so that they can be applied at composition time, * after any async scroll offsets have been applied. * The clip chain is created during display list construction by the builder's * DisplayListClipState. * The clip chain order is determined by the active scrolled root order. * For every DisplayItemClipChain object |clipChain|, the following holds: * !clipChain->mParent || * ActiveScrolledRoot::IsAncestor(clipChain->mParent->mASR, clipChain->mASR). * The clip chain can skip over active scrolled roots. That just means that * there is no clip that moves with the skipped ASR in this chain. */ struct CLASS_3 { /** * Get the display item clip in this chain that moves with aASR, or nullptr * if no such clip exists. aClipChain can be null. */ static const DisplayItemClip* VAR_4( const CLASS_3* VAR_5, const CLASS_2* aASR); static bool VAR_6(const CLASS_3* aClip1, const CLASS_3* VAR_7); /** * Hash function that returns the same value for any two clips A and B * where Equal(A, B) is true. */ static uint32_t VAR_8(const CLASS_3* VAR_9); static CLASS_4 VAR_10(const CLASS_3* VAR_5); bool VAR_11() const; void VAR_12() { VAR_13++; } VAR_14 Release() { FUNC_3(VAR_13 > 0); VAR_13--; } VAR_3(const DisplayItemClip& VAR_9, const VAR_2* aASR, const VAR_3* aParent, VAR_3* aNextClipChainToDestroy) : FUNC_4(VAR_9), FUNC_5(aASR), mParent(aParent), FUNC_6(aNextClipChainToDestroy) #ifdef VAR_18 , mOnStack(ID_0) #endif { } FUNC_0() : FUNC_5(nullptr), FUNC_6(nullptr) #ifdef VAR_18 , mOnStack(true) #endif { } DisplayItemClip VAR_15; const CLASS_2* VAR_16; RefPtr<const VAR_3> mParent; uint32_t VAR_13 = 0; CLASS_3* VAR_17; #ifdef VAR_18 bool mOnStack; #endif }; struct CLASS_5 { CLASS_6 const VAR_3* VAR_19; std::size_t VAR_20()(const CLASS_7& VAR_21) const { return VAR_3::FUNC_2(VAR_21); } }; struct CLASS_8 { CLASS_6 const VAR_3* VAR_19; bool VAR_20()(const CLASS_7& lhs, const CLASS_7& rhs) const { return VAR_3::FUNC_1(lhs, rhs); } }; } // namespace mozilla #endif /* DISPLAYITEMCLIPCHAIN_H_ */
0.5573
{'VAR_0': 'DISPLAYITEMCLIPCHAIN_H_', 'IMPORT_0': 'mozilla/Assertions.h', 'CLASS_0': 'class', 'VAR_1': 'nsIScrollableFrame', 'CLASS_1': 'namespace', 'CLASS_2': 'ActiveScrolledRoot', 'VAR_2': 'ActiveScrolledRoot', 'CLASS_3': 'DisplayItemClipChain', 'VAR_3': 'DisplayItemClipChain', 'FUNC_0': 'DisplayItemClipChain', 'VAR_4': 'ClipForASR', 'VAR_5': 'aClipChain', 'VAR_6': 'Equal', 'FUNC_1': 'Equal', 'VAR_7': 'aClip2', 'VAR_8': 'Hash', 'FUNC_2': 'Hash', 'VAR_9': 'aClip', 'CLASS_4': 'nsCString', 'VAR_10': 'ToString', 'VAR_11': 'HasRoundedCorners', 'VAR_12': 'AddRef', 'VAR_13': 'mRefCount', 'VAR_14': 'void', 'FUNC_3': 'MOZ_ASSERT', 'FUNC_4': 'mClip', 'VAR_15': 'mClip', 'FUNC_5': 'mASR', 'VAR_16': 'mASR', 'FUNC_6': 'mNextClipChainToDestroy', 'VAR_17': 'mNextClipChainToDestroy', 'VAR_18': 'DEBUG', 'ID_0': 'true', 'CLASS_5': 'DisplayItemClipChainHasher', 'CLASS_6': 'typedef', 'VAR_19': 'Key', 'CLASS_7': 'Key', 'VAR_20': 'operator', 'VAR_21': 'aKey', 'CLASS_8': 'DisplayItemClipChainEqualer'}
#ifndef ENGINE_H #define ENGINE_H #include "core/helpers/utils.h" #include <QObject> #include <QTimer> #include <chrono> /** * @brief The Engine class defines an engine that is responsible to trigger all non-GUI actions * that have to be done regulary (i.e. block logic and data output). * It generates different signals with a specified FPS rate. * * It is independent from the GUI. Actions that affect the GUI should be triggered by QTimer. */ class Engine : public QObject { Q_OBJECT public: /** * @brief Engine creates an engine instance * @param fps the amount of frames per second to generate * @param parent QObject parent */ explicit Engine(QObject* parent = 0, int fps = 50); signals: /** * @brief updateBlocks is emitted every frame when the block logic should update its values * @param timeSinceLastFrame is the time in seconds since the last call of this signal */ void updateBlocks(double timeSinceLastFrame); /** * @brief updateOutput is emitted every frame after the blocks have been updated * and the output (i.e. ArtNet, sACN) should be updated * @param timeSinceLastFrame is the time in seconds since the last call of this signal */ void updateOutput(double timeSinceLastFrame); public slots: /** * @brief start starts the engine, signals will then be emitted every frame */ void start(); /** * @brief stop stops the engine, no more signals will be emitted */ void stop(); private slots: /** * @brief tick is the internal function called every frame * and emits the signals in the correct order */ void tick(); private: /** * @brief m_timer is the timer that triggers the tick() function */ QTimer m_timer; /** * @brief m_fps is the amount of frames per second to be generated */ int m_fps; /** * @brief m_lastFrameTime is the time of the last generated frame */ HighResTime::time_point_t m_lastFrameTime; }; #endif // ENGINE_H
#ifndef ENGINE_H #define ENGINE_H #include "core/helpers/utils.h" #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> /** * @brief The Engine class defines an engine that is responsible to trigger all non-GUI actions * that have to be done regulary (i.e. block logic and data output). * It generates different signals with a specified FPS rate. * * It is independent from the GUI. Actions that affect the GUI should be triggered by QTimer. */ CLASS_0 Engine : VAR_0 IMPORT_0 { CLASS_2 VAR_0: /** * @brief Engine creates an engine instance * @param fps the amount of frames per second to generate * @param parent QObject parent */ VAR_1 Engine(IMPORT_0* parent = 0, VAR_2 fps = 50); signals: /** * @brief updateBlocks is emitted every frame when the block logic should update its values * @param timeSinceLastFrame is the time in seconds since the last call of this signal */ void FUNC_0(VAR_3 VAR_4); /** * @brief updateOutput is emitted every frame after the blocks have been updated * and the output (i.e. ArtNet, sACN) should be updated * @param timeSinceLastFrame is the time in seconds since the last call of this signal */ void FUNC_1(double VAR_4); CLASS_1 VAR_5: /** * @brief start starts the engine, signals will then be emitted every frame */ void FUNC_2(); /** * @brief stop stops the engine, no more signals will be emitted */ void FUNC_3(); private VAR_5: /** * @brief tick is the internal function called every frame * and emits the signals in the correct order */ void FUNC_4(); private: /** * @brief m_timer is the timer that triggers the tick() function */ IMPORT_1 VAR_6; /** * @brief m_fps is the amount of frames per second to be generated */ int VAR_7; /** * @brief m_lastFrameTime is the time of the last generated frame */ HighResTime::VAR_8 VAR_9; }; #endif // ENGINE_H
0.735866
{'IMPORT_0': 'QObject', 'IMPORT_1': 'QTimer', 'IMPORT_2': 'chrono', 'CLASS_0': 'class', 'VAR_0': 'public', 'CLASS_1': 'public', 'CLASS_2': 'Q_OBJECT', 'VAR_1': 'explicit', 'VAR_2': 'int', 'FUNC_0': 'updateBlocks', 'VAR_3': 'double', 'VAR_4': 'timeSinceLastFrame', 'FUNC_1': 'updateOutput', 'VAR_5': 'slots', 'FUNC_2': 'start', 'FUNC_3': 'stop', 'FUNC_4': 'tick', 'VAR_6': 'm_timer', 'VAR_7': 'm_fps', 'VAR_8': 'time_point_t', 'VAR_9': 'm_lastFrameTime'}
/********************************************************************* * Display temperature (from rear controller) *********************************************************************/ static void display_temp(int temp100) { int dd; if ( temp100 > 0 ) dd = temp100 % 100; else dd = (-temp100) % 100; std_printf("Temperature: +%d.%02d C\n> ",temp100/100,dd); }
/********************************************************************* * Display temperature (from rear controller) *********************************************************************/ static void display_temp(int VAR_0) { int VAR_1; if ( VAR_0 > 0 ) VAR_1 = VAR_0 % 100; else VAR_1 = (-VAR_0) % 100; FUNC_0("Temperature: +%d.%02d C\n> ",VAR_0/100,VAR_1); }
0.672635
{'VAR_0': 'temp100', 'VAR_1': 'dd', 'FUNC_0': 'std_printf'}
/* * Copyright (c) 2018, Mellanox Technologies. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "mlx4.h" #define BAD_ACCESS 0xBADACCE5 #define HEALTH_BUFFER_SIZE 0x40 #define CR_ENABLE_BIT swab32(BIT(6)) #define CR_ENABLE_BIT_OFFSET 0xF3F04 #define MAX_NUM_OF_DUMPS_TO_STORE (8) static const char *region_cr_space_str = "cr-space"; static const char *region_fw_health_str = "fw-health"; /* Set to true in case cr enable bit was set to true before crdump */ static bool crdump_enbale_bit_set; static void crdump_enable_crspace_access(struct mlx4_dev *dev, u8 __iomem *cr_space) { /* Get current enable bit value */ crdump_enbale_bit_set = readl(cr_space + CR_ENABLE_BIT_OFFSET) & CR_ENABLE_BIT; /* Enable FW CR filter (set bit6 to 0) */ if (crdump_enbale_bit_set) writel(readl(cr_space + CR_ENABLE_BIT_OFFSET) & ~CR_ENABLE_BIT, cr_space + CR_ENABLE_BIT_OFFSET); /* Enable block volatile crspace accesses */ writel(swab32(1), cr_space + dev->caps.health_buffer_addrs + HEALTH_BUFFER_SIZE); } static void crdump_disable_crspace_access(struct mlx4_dev *dev, u8 __iomem *cr_space) { /* Disable block volatile crspace accesses */ writel(0, cr_space + dev->caps.health_buffer_addrs + HEALTH_BUFFER_SIZE); /* Restore FW CR filter value (set bit6 to original value) */ if (crdump_enbale_bit_set) writel(readl(cr_space + CR_ENABLE_BIT_OFFSET) | CR_ENABLE_BIT, cr_space + CR_ENABLE_BIT_OFFSET); } static void mlx4_crdump_collect_crspace(struct mlx4_dev *dev, u8 __iomem *cr_space, u32 id) { struct mlx4_fw_crdump *crdump = &dev->persist->crdump; struct pci_dev *pdev = dev->persist->pdev; unsigned long cr_res_size; u8 *crspace_data; int offset; int err; if (!crdump->region_crspace) { mlx4_err(dev, "crdump: cr-space region is NULL\n"); return; } /* Try to collect CR space */ cr_res_size = pci_resource_len(pdev, 0); crspace_data = kvmalloc(cr_res_size, GFP_KERNEL); if (crspace_data) { for (offset = 0; offset < cr_res_size; offset += 4) *(u32 *)(crspace_data + offset) = readl(cr_space + offset); err = devlink_region_snapshot_create(crdump->region_crspace, crspace_data, id, &kvfree); if (err) { kvfree(crspace_data); mlx4_warn(dev, "crdump: devlink create %s snapshot id %d err %d\n", region_cr_space_str, id, err); } else { mlx4_info(dev, "crdump: added snapshot %d to devlink region %s\n", id, region_cr_space_str); } } else { mlx4_err(dev, "crdump: Failed to allocate crspace buffer\n"); } } static void mlx4_crdump_collect_fw_health(struct mlx4_dev *dev, u8 __iomem *cr_space, u32 id) { struct mlx4_fw_crdump *crdump = &dev->persist->crdump; u8 *health_data; int offset; int err; if (!crdump->region_fw_health) { mlx4_err(dev, "crdump: fw-health region is NULL\n"); return; } /* Try to collect health buffer */ health_data = kvmalloc(HEALTH_BUFFER_SIZE, GFP_KERNEL); if (health_data) { u8 __iomem *health_buf_start = cr_space + dev->caps.health_buffer_addrs; for (offset = 0; offset < HEALTH_BUFFER_SIZE; offset += 4) *(u32 *)(health_data + offset) = readl(health_buf_start + offset); err = devlink_region_snapshot_create(crdump->region_fw_health, health_data, id, &kvfree); if (err) { kvfree(health_data); mlx4_warn(dev, "crdump: devlink create %s snapshot id %d err %d\n", region_fw_health_str, id, err); } else { mlx4_info(dev, "crdump: added snapshot %d to devlink region %s\n", id, region_fw_health_str); } } else { mlx4_err(dev, "crdump: Failed to allocate health buffer\n"); } } int mlx4_crdump_collect(struct mlx4_dev *dev) { struct devlink *devlink = priv_to_devlink(mlx4_priv(dev)); struct mlx4_fw_crdump *crdump = &dev->persist->crdump; struct pci_dev *pdev = dev->persist->pdev; unsigned long cr_res_size; u8 __iomem *cr_space; u32 id; if (!dev->caps.health_buffer_addrs) { mlx4_info(dev, "crdump: FW doesn't support health buffer access, skipping\n"); return 0; } if (!crdump->snapshot_enable) { mlx4_info(dev, "crdump: devlink snapshot disabled, skipping\n"); return 0; } cr_res_size = pci_resource_len(pdev, 0); cr_space = ioremap(pci_resource_start(pdev, 0), cr_res_size); if (!cr_space) { mlx4_err(dev, "crdump: Failed to map pci cr region\n"); return -ENODEV; } crdump_enable_crspace_access(dev, cr_space); /* Get the available snapshot ID for the dumps */ id = devlink_region_shapshot_id_get(devlink); /* Try to capture dumps */ mlx4_crdump_collect_crspace(dev, cr_space, id); mlx4_crdump_collect_fw_health(dev, cr_space, id); crdump_disable_crspace_access(dev, cr_space); iounmap(cr_space); return 0; } int mlx4_crdump_init(struct mlx4_dev *dev) { struct devlink *devlink = priv_to_devlink(mlx4_priv(dev)); struct mlx4_fw_crdump *crdump = &dev->persist->crdump; struct pci_dev *pdev = dev->persist->pdev; crdump->snapshot_enable = false; /* Create cr-space region */ crdump->region_crspace = devlink_region_create(devlink, region_cr_space_str, MAX_NUM_OF_DUMPS_TO_STORE, pci_resource_len(pdev, 0)); if (IS_ERR(crdump->region_crspace)) mlx4_warn(dev, "crdump: create devlink region %s err %ld\n", region_cr_space_str, PTR_ERR(crdump->region_crspace)); /* Create fw-health region */ crdump->region_fw_health = devlink_region_create(devlink, region_fw_health_str, MAX_NUM_OF_DUMPS_TO_STORE, HEALTH_BUFFER_SIZE); if (IS_ERR(crdump->region_fw_health)) mlx4_warn(dev, "crdump: create devlink region %s err %ld\n", region_fw_health_str, PTR_ERR(crdump->region_fw_health)); return 0; } void mlx4_crdump_end(struct mlx4_dev *dev) { struct mlx4_fw_crdump *crdump = &dev->persist->crdump; devlink_region_destroy(crdump->region_fw_health); devlink_region_destroy(crdump->region_crspace); }
/* * Copyright (c) 2018, Mellanox Technologies. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "IMPORT_0" #define VAR_0 0xBADACCE5 #define HEALTH_BUFFER_SIZE 0x40 #define VAR_1 swab32(BIT(6)) #define CR_ENABLE_BIT_OFFSET 0xF3F04 #define MAX_NUM_OF_DUMPS_TO_STORE (8) static const char *VAR_2 = "cr-space"; static const char *VAR_3 = "fw-health"; /* Set to true in case cr enable bit was set to true before crdump */ static bool crdump_enbale_bit_set; static void crdump_enable_crspace_access(struct mlx4_dev *dev, u8 __iomem *VAR_4) { /* Get current enable bit value */ crdump_enbale_bit_set = readl(VAR_4 + CR_ENABLE_BIT_OFFSET) & VAR_1; /* Enable FW CR filter (set bit6 to 0) */ if (crdump_enbale_bit_set) writel(readl(VAR_4 + CR_ENABLE_BIT_OFFSET) & ~VAR_1, VAR_4 + CR_ENABLE_BIT_OFFSET); /* Enable block volatile crspace accesses */ writel(swab32(1), VAR_4 + dev->caps.VAR_5 + HEALTH_BUFFER_SIZE); } static void crdump_disable_crspace_access(struct mlx4_dev *dev, u8 __iomem *VAR_4) { /* Disable block volatile crspace accesses */ writel(0, VAR_4 + dev->caps.VAR_5 + HEALTH_BUFFER_SIZE); /* Restore FW CR filter value (set bit6 to original value) */ if (crdump_enbale_bit_set) writel(readl(VAR_4 + CR_ENABLE_BIT_OFFSET) | VAR_1, VAR_4 + CR_ENABLE_BIT_OFFSET); } static void FUNC_0(struct mlx4_dev *dev, u8 __iomem *VAR_4, CLASS_0 VAR_6) { struct CLASS_1 *crdump = &dev->VAR_7->crdump; struct CLASS_2 *VAR_8 = dev->VAR_7->VAR_8; unsigned long cr_res_size; u8 *crspace_data; int offset; int VAR_9; if (!crdump->region_crspace) { mlx4_err(dev, "crdump: cr-space region is NULL\n"); return; } /* Try to collect CR space */ cr_res_size = pci_resource_len(VAR_8, 0); crspace_data = FUNC_1(cr_res_size, VAR_10); if (crspace_data) { for (offset = 0; offset < cr_res_size; offset += 4) *(CLASS_0 *)(crspace_data + offset) = readl(VAR_4 + offset); VAR_9 = devlink_region_snapshot_create(crdump->region_crspace, crspace_data, VAR_6, &VAR_11); if (VAR_9) { FUNC_2(crspace_data); FUNC_3(dev, "crdump: devlink create %s snapshot id %d err %d\n", VAR_2, VAR_6, VAR_9); } else { FUNC_4(dev, "crdump: added snapshot %d to devlink region %s\n", VAR_6, VAR_2); } } else { mlx4_err(dev, "crdump: Failed to allocate crspace buffer\n"); } } static void mlx4_crdump_collect_fw_health(struct mlx4_dev *dev, u8 __iomem *VAR_4, CLASS_0 VAR_6) { struct CLASS_1 *crdump = &dev->VAR_7->crdump; u8 *health_data; int offset; int VAR_9; if (!crdump->region_fw_health) { mlx4_err(dev, "crdump: fw-health region is NULL\n"); return; } /* Try to collect health buffer */ health_data = FUNC_1(HEALTH_BUFFER_SIZE, VAR_10); if (health_data) { u8 __iomem *VAR_12 = VAR_4 + dev->caps.VAR_5; for (offset = 0; offset < HEALTH_BUFFER_SIZE; offset += 4) *(CLASS_0 *)(health_data + offset) = readl(VAR_12 + offset); VAR_9 = devlink_region_snapshot_create(crdump->region_fw_health, health_data, VAR_6, &VAR_11); if (VAR_9) { FUNC_2(health_data); FUNC_3(dev, "crdump: devlink create %s snapshot id %d err %d\n", VAR_3, VAR_6, VAR_9); } else { FUNC_4(dev, "crdump: added snapshot %d to devlink region %s\n", VAR_6, VAR_3); } } else { mlx4_err(dev, "crdump: Failed to allocate health buffer\n"); } } int FUNC_5(struct mlx4_dev *dev) { struct devlink *devlink = FUNC_6(mlx4_priv(dev)); struct CLASS_1 *crdump = &dev->VAR_7->crdump; struct CLASS_2 *VAR_8 = dev->VAR_7->VAR_8; unsigned long cr_res_size; u8 __iomem *VAR_4; CLASS_0 VAR_6; if (!dev->caps.VAR_5) { FUNC_4(dev, "crdump: FW doesn't support health buffer access, skipping\n"); return 0; } if (!crdump->VAR_13) { FUNC_4(dev, "crdump: devlink snapshot disabled, skipping\n"); return 0; } cr_res_size = pci_resource_len(VAR_8, 0); VAR_4 = FUNC_7(pci_resource_start(VAR_8, 0), cr_res_size); if (!VAR_4) { mlx4_err(dev, "crdump: Failed to map pci cr region\n"); return -ENODEV; } crdump_enable_crspace_access(dev, VAR_4); /* Get the available snapshot ID for the dumps */ VAR_6 = FUNC_8(devlink); /* Try to capture dumps */ FUNC_0(dev, VAR_4, VAR_6); mlx4_crdump_collect_fw_health(dev, VAR_4, VAR_6); crdump_disable_crspace_access(dev, VAR_4); FUNC_9(VAR_4); return 0; } int FUNC_10(struct mlx4_dev *dev) { struct devlink *devlink = FUNC_6(mlx4_priv(dev)); struct CLASS_1 *crdump = &dev->VAR_7->crdump; struct CLASS_2 *VAR_8 = dev->VAR_7->VAR_8; crdump->VAR_13 = false; /* Create cr-space region */ crdump->region_crspace = devlink_region_create(devlink, VAR_2, MAX_NUM_OF_DUMPS_TO_STORE, pci_resource_len(VAR_8, 0)); if (IS_ERR(crdump->region_crspace)) FUNC_3(dev, "crdump: create devlink region %s err %ld\n", VAR_2, PTR_ERR(crdump->region_crspace)); /* Create fw-health region */ crdump->region_fw_health = devlink_region_create(devlink, VAR_3, MAX_NUM_OF_DUMPS_TO_STORE, HEALTH_BUFFER_SIZE); if (IS_ERR(crdump->region_fw_health)) FUNC_3(dev, "crdump: create devlink region %s err %ld\n", VAR_3, PTR_ERR(crdump->region_fw_health)); return 0; } void mlx4_crdump_end(struct mlx4_dev *dev) { struct CLASS_1 *crdump = &dev->VAR_7->crdump; devlink_region_destroy(crdump->region_fw_health); devlink_region_destroy(crdump->region_crspace); }
0.321995
{'IMPORT_0': 'mlx4.h', 'VAR_0': 'BAD_ACCESS', 'VAR_1': 'CR_ENABLE_BIT', 'VAR_2': 'region_cr_space_str', 'VAR_3': 'region_fw_health_str', 'VAR_4': 'cr_space', 'VAR_5': 'health_buffer_addrs', 'FUNC_0': 'mlx4_crdump_collect_crspace', 'CLASS_0': 'u32', 'VAR_6': 'id', 'CLASS_1': 'mlx4_fw_crdump', 'VAR_7': 'persist', 'CLASS_2': 'pci_dev', 'VAR_8': 'pdev', 'VAR_9': 'err', 'FUNC_1': 'kvmalloc', 'VAR_10': 'GFP_KERNEL', 'VAR_11': 'kvfree', 'FUNC_2': 'kvfree', 'FUNC_3': 'mlx4_warn', 'FUNC_4': 'mlx4_info', 'VAR_12': 'health_buf_start', 'FUNC_5': 'mlx4_crdump_collect', 'FUNC_6': 'priv_to_devlink', 'VAR_13': 'snapshot_enable', 'FUNC_7': 'ioremap', 'FUNC_8': 'devlink_region_shapshot_id_get', 'FUNC_9': 'iounmap', 'FUNC_10': 'mlx4_crdump_init'}
// -*- mode: C++; c-file-style: "cc-mode" -*- //============================================================================= // // Code available from: https://verilator.org // // Copyright 2012-2021 by <NAME>. This program is free software; you // can redistribute it and/or modify it under the terms of either the GNU // Lesser General Public License Version 3 or the Perl Artistic License // Version 2.0. // SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 // //============================================================================= /// /// \file /// \brief Verilated general profiling header /// /// This file is not part of the Verilated public-facing API. /// It is only for internal use by Verilated library routines. /// //============================================================================= #ifndef VERILATOR_VERILATED_PROFILER_H_ #define VERILATOR_VERILATED_PROFILER_H_ #include "verilatedos.h" #include "verilated.h" // for VerilatedMutex and clang annotations // Profile record, private class used only by this header class VerilatedProfilerRec final { std::string m_name; // Hashed name of mtask/etc size_t m_counterNumber = 0; // Which counter has data public: // METHODS VerilatedProfilerRec(size_t counterNumber, const std::string& name) : m_name{name} , m_counterNumber{counterNumber} {} VerilatedProfilerRec() = default; size_t counterNumber() const { return m_counterNumber; } std::string name() const { return m_name; } }; // Create some number of bucketed profilers template <std::size_t T_Entries> class VerilatedProfiler final { // Counters are stored packed, all together, versus in VerilatedProfilerRec to // reduce cache effects std::array<vluint64_t, T_Entries> m_counters{}; // Time spent on this record std::deque<VerilatedProfilerRec> m_records; // Record information public: // METHODS VerilatedProfiler() = default; ~VerilatedProfiler() = default; void write(const char* modelp, const std::string& filename) VL_MT_SAFE; void addCounter(size_t counter, const std::string& name) { VL_DEBUG_IF(assert(counter < T_Entries);); m_records.emplace_back(VerilatedProfilerRec{counter, name}); } void startCounter(size_t counter) { vluint64_t val; VL_RDTSC(val); // -= so when we add end time in stopCounter, we already subtracted // out, without needing to hold another temporary m_counters[counter] -= val; } void stopCounter(size_t counter) { vluint64_t val; VL_RDTSC(val); m_counters[counter] += val; } }; template <std::size_t T_Entries> void VerilatedProfiler<T_Entries>::write(const char* modelp, const std::string& filename) VL_MT_SAFE { static VerilatedMutex s_mutex; const VerilatedLockGuard lock{s_mutex}; // On the first call we create the file. On later calls we append. // So when we have multiple models in an executable, possibly even // running on different threads, each will have a different symtab so // each will collect is own data correctly. However when each is // destroid we need to get all the data, not keep overwriting and only // get the last model's data. static bool s_firstCall = true; VL_DEBUG_IF(VL_DBG_MSGF("+prof+vlt+file writing to '%s'\n", filename.c_str());); FILE* fp = nullptr; if (!s_firstCall) fp = std::fopen(filename.c_str(), "a"); if (VL_UNLIKELY(!fp)) fp = std::fopen(filename.c_str(), "w"); // firstCall, or doesn't exist yet if (VL_UNLIKELY(!fp)) { VL_FATAL_MT(filename.c_str(), 0, "", "+prof+vlt+file file not writable"); // cppcheck-suppress resourceLeak // bug, doesn't realize fp is nullptr return; // LCOV_EXCL_LINE } s_firstCall = false; // TODO Perhaps merge with verilated_coverage output format, so can // have a common merging and reporting tool, etc. fprintf(fp, "// Verilated model profile-guided optimization data dump file\n"); fprintf(fp, "`verilator_config\n"); for (const auto& it : m_records) { const std::string& name = it.name(); fprintf(fp, "profile_data -model \"%s\" -mtask \"%s\" -cost 64'd%" VL_PRI64 "u\n", modelp, name.c_str(), m_counters[it.counterNumber()]); } std::fclose(fp); } #endif
// -*- mode: C++; c-file-style: "cc-mode" -*- //============================================================================= // // Code available from: https://verilator.org // // Copyright 2012-2021 by <NAME>. This program is free software; you // can redistribute it and/or modify it under the terms of either the GNU // Lesser General Public License Version 3 or the Perl Artistic License // Version 2.0. // SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 // //============================================================================= /// /// \file /// \brief Verilated general profiling header /// /// This file is not part of the Verilated public-facing API. /// It is only for internal use by Verilated library routines. /// //============================================================================= #ifndef VAR_0 #define VAR_0 #include "verilatedos.h" #include "IMPORT_0" // for VerilatedMutex and clang annotations // Profile record, private class used only by this header class VAR_1 VAR_2 { std::VAR_4 VAR_5; // Hashed name of mtask/etc size_t VAR_6 = 0; // Which counter has data public: // METHODS FUNC_0(VAR_7 VAR_8, VAR_9 VAR_3::VAR_4& VAR_10) : VAR_5{VAR_10} , VAR_6{CLASS_1} {} FUNC_0() = VAR_11; size_t FUNC_1() const { return VAR_6; } std::VAR_4 FUNC_2() VAR_9 { return VAR_5; } }; // Create some number of bucketed profilers VAR_12 <VAR_3::size_t VAR_13> class CLASS_2 VAR_2 { // Counters are stored packed, all together, versus in VerilatedProfilerRec to // reduce cache effects std::VAR_15<VAR_16, VAR_13> m_counters{}; // Time spent on this record std::VAR_17<VAR_1> VAR_18; // Record information public: // METHODS FUNC_3() = VAR_11; ~FUNC_3() = VAR_11; void FUNC_4(const char* VAR_19, const CLASS_0::VAR_4& filename) VAR_20; void FUNC_5(size_t VAR_21, const CLASS_0::VAR_4& VAR_10) { FUNC_6(assert(VAR_21 < VAR_13);); VAR_18.emplace_back(VAR_1{VAR_21, VAR_10}); } void FUNC_7(size_t VAR_21) { CLASS_3 VAR_22; FUNC_8(VAR_22); // -= so when we add end time in stopCounter, we already subtracted // out, without needing to hold another temporary m_counters[VAR_21] -= VAR_22; } void FUNC_9(size_t VAR_21) { CLASS_3 VAR_22; FUNC_8(VAR_22); m_counters[VAR_21] += VAR_22; } }; VAR_12 <VAR_3::size_t VAR_13> void VAR_14<VAR_13>::FUNC_4(const char* VAR_19, const CLASS_0::VAR_4& filename) VAR_20 { static CLASS_4 VAR_23; const CLASS_6 VAR_24{CLASS_5}; // On the first call we create the file. On later calls we append. // So when we have multiple models in an executable, possibly even // running on different threads, each will have a different symtab so // each will collect is own data correctly. However when each is // destroid we need to get all the data, not keep overwriting and only // get the last model's data. static bool VAR_25 = true; FUNC_6(FUNC_10("+prof+vlt+file writing to '%s'\n", filename.FUNC_11());); CLASS_7* VAR_26 = nullptr; if (!VAR_25) VAR_26 = VAR_3::fopen(filename.FUNC_11(), "a"); if (FUNC_12(!VAR_26)) VAR_26 = VAR_3::fopen(filename.FUNC_11(), "w"); // firstCall, or doesn't exist yet if (FUNC_12(!VAR_26)) { FUNC_13(filename.FUNC_11(), 0, "", "+prof+vlt+file file not writable"); // cppcheck-suppress resourceLeak // bug, doesn't realize fp is nullptr return; // LCOV_EXCL_LINE } VAR_25 = false; // TODO Perhaps merge with verilated_coverage output format, so can // have a common merging and reporting tool, etc. FUNC_14(VAR_26, "// Verilated model profile-guided optimization data dump file\n"); FUNC_14(VAR_26, "`verilator_config\n"); for (const auto& CLASS_8 : VAR_18) { const VAR_3::VAR_4& VAR_10 = VAR_27.FUNC_2(); FUNC_14(VAR_26, "profile_data -model \"%s\" -mtask \"%s\" -cost 64'd%" VAR_28 "u\n", VAR_19, VAR_10.FUNC_11(), m_counters[VAR_27.FUNC_1()]); } VAR_3::FUNC_15(VAR_26); } #endif
0.81168
{'VAR_0': 'VERILATOR_VERILATED_PROFILER_H_', 'IMPORT_0': 'verilated.h', 'VAR_1': 'VerilatedProfilerRec', 'FUNC_0': 'VerilatedProfilerRec', 'VAR_2': 'final', 'VAR_3': 'std', 'CLASS_0': 'std', 'VAR_4': 'string', 'VAR_5': 'm_name', 'VAR_6': 'm_counterNumber', 'VAR_7': 'size_t', 'VAR_8': 'counterNumber', 'CLASS_1': 'counterNumber', 'FUNC_1': 'counterNumber', 'VAR_9': 'const', 'VAR_10': 'name', 'FUNC_2': 'name', 'VAR_11': 'default', 'VAR_12': 'template', 'VAR_13': 'T_Entries', 'CLASS_2': 'VerilatedProfiler', 'FUNC_3': 'VerilatedProfiler', 'VAR_14': 'VerilatedProfiler', 'VAR_15': 'array', 'VAR_16': 'vluint64_t', 'CLASS_3': 'vluint64_t', 'VAR_17': 'deque', 'VAR_18': 'm_records', 'FUNC_4': 'write', 'VAR_19': 'modelp', 'VAR_20': 'VL_MT_SAFE', 'FUNC_5': 'addCounter', 'VAR_21': 'counter', 'FUNC_6': 'VL_DEBUG_IF', 'FUNC_7': 'startCounter', 'VAR_22': 'val', 'FUNC_8': 'VL_RDTSC', 'FUNC_9': 'stopCounter', 'CLASS_4': 'VerilatedMutex', 'VAR_23': 's_mutex', 'CLASS_5': 's_mutex', 'CLASS_6': 'VerilatedLockGuard', 'VAR_24': 'lock', 'VAR_25': 's_firstCall', 'FUNC_10': 'VL_DBG_MSGF', 'FUNC_11': 'c_str', 'CLASS_7': 'FILE', 'VAR_26': 'fp', 'FUNC_12': 'VL_UNLIKELY', 'FUNC_13': 'VL_FATAL_MT', 'FUNC_14': 'fprintf', 'CLASS_8': 'it', 'VAR_27': 'it', 'VAR_28': 'VL_PRI64', 'FUNC_15': 'fclose'}
#ifndef __UART_H__ #define __UART_H__ void uart_init(void); void uart_putc(uint8_t data); uint8_t uart_getc(void); #endif
#ifndef __UART_H__ #define __UART_H__ void FUNC_0(void); void FUNC_1(uint8_t VAR_0); uint8_t FUNC_2(void); #endif
0.891048
{'FUNC_0': 'uart_init', 'FUNC_1': 'uart_putc', 'VAR_0': 'data', 'FUNC_2': 'uart_getc'}
/* * This is the routine that sends the received data to the kernel AX.25. * 'cmd' is the KISS command. For AX.25 data, it is zero. */ static void sp_bump(struct sixpack *sp, char cmd) { struct sk_buff *skb; int count; unsigned char *ptr; count = sp->rcount + 1; sp->dev->stats.rx_bytes += count; if ((skb = dev_alloc_skb(count)) == NULL) goto out_mem; ptr = skb_put(skb, count); *ptr++ = cmd; memcpy(ptr, sp->cooked_buf + 1, count); skb->protocol = ax25_type_trans(skb, sp->dev); netif_rx(skb); sp->dev->stats.rx_packets++; return; out_mem: sp->dev->stats.rx_dropped++; }
/* * This is the routine that sends the received data to the kernel AX.25. * 'cmd' is the KISS command. For AX.25 data, it is zero. */ static void FUNC_0(struct CLASS_0 *VAR_0, char VAR_1) { struct CLASS_1 *VAR_2; int VAR_3; unsigned char *VAR_4; VAR_3 = VAR_0->VAR_5 + 1; VAR_0->VAR_6->VAR_7.VAR_8 += VAR_3; if ((VAR_2 = FUNC_1(VAR_3)) == NULL) goto out_mem; VAR_4 = FUNC_2(VAR_2, VAR_3); *VAR_4++ = VAR_1; FUNC_3(VAR_4, VAR_0->VAR_9 + 1, VAR_3); VAR_2->VAR_10 = FUNC_4(VAR_2, VAR_0->VAR_6); FUNC_5(VAR_2); VAR_0->VAR_6->VAR_7.VAR_11++; return; out_mem: VAR_0->VAR_6->VAR_7.VAR_12++; }
0.963114
{'FUNC_0': 'sp_bump', 'CLASS_0': 'sixpack', 'VAR_0': 'sp', 'VAR_1': 'cmd', 'CLASS_1': 'sk_buff', 'VAR_2': 'skb', 'VAR_3': 'count', 'VAR_4': 'ptr', 'VAR_5': 'rcount', 'VAR_6': 'dev', 'VAR_7': 'stats', 'VAR_8': 'rx_bytes', 'FUNC_1': 'dev_alloc_skb', 'FUNC_2': 'skb_put', 'FUNC_3': 'memcpy', 'VAR_9': 'cooked_buf', 'VAR_10': 'protocol', 'FUNC_4': 'ax25_type_trans', 'FUNC_5': 'netif_rx', 'VAR_11': 'rx_packets', 'VAR_12': 'rx_dropped'}
/* * ________________________________________________________________________________________________________ * Copyright (c) 2015-2015 InvenSense Inc. All rights reserved. * * This software, related documentation and any modifications thereto (collectively “Software”) is subject * to InvenSense and its licensors' intellectual property rights under U.S. and international copyright * and other intellectual property rights laws. * * InvenSense and its licensors retain all intellectual property and proprietary rights in and to the Software * and any use, reproduction, disclosure or distribution of the Software without an express license agreement * from InvenSense is strictly prohibited. * * EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, THE SOFTWARE IS * PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. * EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, IN NO EVENT SHALL * INVENSENSE BE LIABLE FOR ANY DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THE SOFTWARE. * ________________________________________________________________________________________________________ */ #include "Icm20948Transport.h" #include "Icm20948Serif.h" #include "Icm20948.h" struct inv_icm20948 * icm20948_instance; int inv_icm20948_read_reg(struct inv_icm20948 * s, uint8_t reg, uint8_t * buf, uint32_t len) { return inv_icm20948_serif_read_reg(&s->serif, reg, buf, len); } int inv_icm20948_write_reg(struct inv_icm20948 * s, uint8_t reg, const uint8_t * buf, uint32_t len) { return inv_icm20948_serif_write_reg(&s->serif, reg, buf, len); } void inv_icm20948_sleep_100us(unsigned long nHowMany100MicroSecondsToSleep) // time in 100 us { inv_icm20948_sleep_us(nHowMany100MicroSecondsToSleep * 100); } long inv_icm20948_get_tick_count(void) { return (long)inv_icm20948_get_time_us(); } /* driver transport function */ #include "Icm20948Defs.h" #include "Icm20948DataBaseDriver.h" #include "Icm20948DataBaseControl.h" void inv_icm20948_transport_init(struct inv_icm20948 * s) { s->lastBank = 0x7E; s->lLastBankSelected = 0xFF; } static uint8_t check_reg_access_lp_disable(struct inv_icm20948 * s, unsigned short reg) { switch(reg){ case REG_LP_CONFIG: /** (BANK_0 | 0x05) */ case REG_PWR_MGMT_1: /** (BANK_0 | 0x06) */ case REG_PWR_MGMT_2: /** (BANK_0 | 0x07) */ case REG_INT_PIN_CFG: /** (BANK_0 | 0x0F) */ case REG_INT_ENABLE: /** (BANK_0 | 0x10) */ case REG_FIFO_COUNT_H: /** (BANK_0 | 0x70) */ case REG_FIFO_COUNT_L: /** (BANK_0 | 0x71) */ case REG_FIFO_R_W: /** (BANK_0 | 0x72) */ return inv_icm20948_ctrl_get_batch_mode_status(s); case REG_FIFO_CFG: /** (BANK_0 | 0x76) */ case REG_MEM_BANK_SEL: /** (BANK_0 | 0x7E) */ case REG_BANK_SEL: /** 0x7F */ case REG_INT_STATUS: /** (BANK_0 | 0x19) */ case REG_DMP_INT_STATUS: /** (BANK_0 | 0x18) */ return 0; break; default: break; } return 1; } /** * @brief Set up the register bank register for accessing registers in 20630. * @param[in] register bank number * @return 0 if successful. */ static int inv_set_bank(struct inv_icm20948 * s, unsigned char bank) { int result; //if bank reg was set before, just return if(bank==s->lastBank) return 0; else s->lastBank = bank; result = inv_icm20948_read_reg(s, REG_BANK_SEL, &s->reg, 1); if (result) return result; s->reg &= 0xce; s->reg |= (bank << 4); result = inv_icm20948_write_reg(s, REG_BANK_SEL, &s->reg, 1); return result; } /* the following functions are used for configuring the secondary devices */ /** * @brief Write data to a register on MEMs. * @param[in] Register address * @param[in] Length of data * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_write_mems_reg(struct inv_icm20948 * s, uint16_t reg, unsigned int length, const unsigned char *data) { int result = 0; unsigned int bytesWrite = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char power_state = inv_icm20948_get_chip_power_state(s); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(s, CHIP_AWAKE, 1); if(check_reg_access_lp_disable(s, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(s, reg >> 7); while (bytesWrite<length) { int thisLen = min(INV_MAX_SERIAL_WRITE, length-bytesWrite); result |= inv_icm20948_write_reg(s, regOnly+bytesWrite,&data[bytesWrite], thisLen); if (result) return result; bytesWrite += thisLen; } if (check_reg_access_lp_disable(s, reg)) { //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 1); } return result; } /** * @brief Write single byte of data to a register on MEMs. * @param[in] Register address * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_write_single_mems_reg(struct inv_icm20948 * s, uint16_t reg, const unsigned char data) { int result = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char power_state = inv_icm20948_get_chip_power_state(s); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(s, CHIP_AWAKE, 1); if(check_reg_access_lp_disable(s, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(s, reg >> 7); result |= inv_icm20948_write_reg(s, regOnly, &data, 1); if(check_reg_access_lp_disable(s, reg)) //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 1); return result; } /** * @brief Read data from a register on MEMs. * @param[in] Register address * @param[in] Length of data * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_read_mems_reg(struct inv_icm20948 * s, uint16_t reg, unsigned int length, unsigned char *data) { int result = 0; unsigned int bytesRead = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char i, dat[INV_MAX_SERIAL_READ]; unsigned char power_state = inv_icm20948_get_chip_power_state(s); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(s, CHIP_AWAKE, 1); if(check_reg_access_lp_disable(s, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(s, reg >> 7); while (bytesRead<length) { int thisLen = min(INV_MAX_SERIAL_READ, length-bytesRead); if(s->base_state.serial_interface == SERIAL_INTERFACE_SPI) { result |= inv_icm20948_read_reg(s, regOnly+bytesRead, &dat[bytesRead], thisLen); } else { result |= inv_icm20948_read_reg(s, regOnly+bytesRead, &data[bytesRead],thisLen); } if (result) return result; bytesRead += thisLen; } if(s->base_state.serial_interface == SERIAL_INTERFACE_SPI) { for (i=0; i< length; i++) { *data= dat[i]; data++; } } if(check_reg_access_lp_disable(s, reg)) // Check if register needs LP_EN to be enabled result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 1); //Enable LP_EN return result; } /** * @brief Read data from a register in DMP memory * @param[in] DMP memory address * @param[in] number of byte to be read * @param[in] input data from the register * @return 0 if successful. */ int inv_icm20948_read_mems(struct inv_icm20948 * s, unsigned short reg, unsigned int length, unsigned char *data) { int result=0; unsigned int bytesWritten = 0; unsigned int thisLen; unsigned char i, dat[INV_MAX_SERIAL_READ] = {0}; unsigned char power_state = inv_icm20948_get_chip_power_state(s); unsigned char lBankSelected; unsigned char lStartAddrSelected; if(!data) return -1; if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(s, CHIP_AWAKE, 1); if(check_reg_access_lp_disable(s, reg)) result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 0); result |= inv_set_bank(s, 0); lBankSelected = (reg >> 8); if (lBankSelected != s->lLastBankSelected) { result |= inv_icm20948_write_reg(s, REG_MEM_BANK_SEL, &lBankSelected, 1); if (result) return result; s->lLastBankSelected = lBankSelected; } while (bytesWritten < length) { lStartAddrSelected = (reg & 0xff); /* Sets the starting read or write address for the selected memory, inside of the selected page (see MEM_SEL Register). Contents are changed after read or write of the selected memory. This register must be written prior to each access to initialize the register to the proper starting address. The address will auto increment during burst transactions. Two consecutive bursts without re-initializing the start address would skip one address. */ result |= inv_icm20948_write_reg(s, REG_MEM_START_ADDR, &lStartAddrSelected, 1); if (result) return result; thisLen = min(INV_MAX_SERIAL_READ, length-bytesWritten); /* Write data */ if(s->base_state.serial_interface == SERIAL_INTERFACE_SPI) { result |= inv_icm20948_read_reg(s, REG_MEM_R_W, &dat[bytesWritten], thisLen); } else { result |= inv_icm20948_read_reg(s, REG_MEM_R_W, &data[bytesWritten], thisLen); } if (result) return result; bytesWritten += thisLen; reg += thisLen; } if(s->base_state.serial_interface == SERIAL_INTERFACE_SPI) { for (i=0; i< length; i++) { *data= dat[i]; data++; } } //Enable LP_EN if we disabled it at begining of this function. if(check_reg_access_lp_disable(s, reg)) result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 1); return result; } /** * @brief Write data to a register in DMP memory * @param[in] DMP memory address * @param[in] number of byte to be written * @param[out] output data from the register * @return 0 if successful. */ int inv_icm20948_write_mems(struct inv_icm20948 * s, unsigned short reg, unsigned int length, const unsigned char *data) { int result=0; unsigned int bytesWritten = 0; unsigned int thisLen; unsigned char lBankSelected; unsigned char lStartAddrSelected; unsigned char power_state = inv_icm20948_get_chip_power_state(s); if(!data) return -1; if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(s, CHIP_AWAKE, 1); result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 0); result |= inv_set_bank(s, 0); lBankSelected = (reg >> 8); if (lBankSelected != s->lLastBankSelected) { result |= inv_icm20948_write_reg(s, REG_MEM_BANK_SEL, &lBankSelected, 1); if (result) return result; s->lLastBankSelected = lBankSelected; } while (bytesWritten < length) { lStartAddrSelected = (reg & 0xff); /* Sets the starting read or write address for the selected memory, inside of the selected page (see MEM_SEL Register). Contents are changed after read or write of the selected memory. This register must be written prior to each access to initialize the register to the proper starting address. The address will auto increment during burst transactions. Two consecutive bursts without re-initializing the start address would skip one address. */ result |= inv_icm20948_write_reg(s, REG_MEM_START_ADDR, &lStartAddrSelected, 1); if (result) return result; thisLen = min(INV_MAX_SERIAL_WRITE, length-bytesWritten); /* Write data */ result |= inv_icm20948_write_reg(s, REG_MEM_R_W, &data[bytesWritten], thisLen); if (result) return result; bytesWritten += thisLen; reg += thisLen; } //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(s, CHIP_LP_ENABLE, 1); return result; } /** * @brief Write single byte of data to a register on MEMs with no power control * @param[in] Register address * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_write_single_mems_reg_core(struct inv_icm20948 * s, uint16_t reg, const uint8_t data) { int result = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); result |= inv_set_bank(s, reg >> 7); result |= inv_icm20948_write_reg(s, regOnly, &data, 1); return result; }
/* * ________________________________________________________________________________________________________ * Copyright (c) 2015-2015 InvenSense Inc. All rights reserved. * * This software, related documentation and any modifications thereto (collectively “Software”) is subject * to InvenSense and its licensors' intellectual property rights under U.S. and international copyright * and other intellectual property rights laws. * * InvenSense and its licensors retain all intellectual property and proprietary rights in and to the Software * and any use, reproduction, disclosure or distribution of the Software without an express license agreement * from InvenSense is strictly prohibited. * * EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, THE SOFTWARE IS * PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. * EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, IN NO EVENT SHALL * INVENSENSE BE LIABLE FOR ANY DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THE SOFTWARE. * ________________________________________________________________________________________________________ */ #include "Icm20948Transport.h" #include "Icm20948Serif.h" #include "IMPORT_0" struct inv_icm20948 * icm20948_instance; int inv_icm20948_read_reg(struct inv_icm20948 * VAR_0, uint8_t reg, uint8_t * buf, uint32_t VAR_1) { return inv_icm20948_serif_read_reg(&VAR_0->serif, reg, buf, VAR_1); } int inv_icm20948_write_reg(struct inv_icm20948 * VAR_0, uint8_t reg, const uint8_t * buf, uint32_t VAR_1) { return FUNC_0(&VAR_0->serif, reg, buf, VAR_1); } void FUNC_1(unsigned long VAR_2) // time in 100 us { inv_icm20948_sleep_us(VAR_2 * 100); } long inv_icm20948_get_tick_count(void) { return (long)FUNC_2(); } /* driver transport function */ #include "IMPORT_1" #include "IMPORT_2" #include "IMPORT_3" void inv_icm20948_transport_init(struct inv_icm20948 * VAR_0) { VAR_0->lastBank = 0x7E; VAR_0->VAR_3 = 0xFF; } static uint8_t FUNC_3(struct inv_icm20948 * VAR_0, unsigned short reg) { switch(reg){ case REG_LP_CONFIG: /** (BANK_0 | 0x05) */ case REG_PWR_MGMT_1: /** (BANK_0 | 0x06) */ case REG_PWR_MGMT_2: /** (BANK_0 | 0x07) */ case REG_INT_PIN_CFG: /** (BANK_0 | 0x0F) */ case VAR_4: /** (BANK_0 | 0x10) */ case VAR_5: /** (BANK_0 | 0x70) */ case REG_FIFO_COUNT_L: /** (BANK_0 | 0x71) */ case REG_FIFO_R_W: /** (BANK_0 | 0x72) */ return FUNC_4(VAR_0); case VAR_6: /** (BANK_0 | 0x76) */ case REG_MEM_BANK_SEL: /** (BANK_0 | 0x7E) */ case REG_BANK_SEL: /** 0x7F */ case VAR_7: /** (BANK_0 | 0x19) */ case REG_DMP_INT_STATUS: /** (BANK_0 | 0x18) */ return 0; break; default: break; } return 1; } /** * @brief Set up the register bank register for accessing registers in 20630. * @param[in] register bank number * @return 0 if successful. */ static int inv_set_bank(struct inv_icm20948 * VAR_0, unsigned char bank) { int result; //if bank reg was set before, just return if(bank==VAR_0->lastBank) return 0; else VAR_0->lastBank = bank; result = inv_icm20948_read_reg(VAR_0, REG_BANK_SEL, &VAR_0->reg, 1); if (result) return result; VAR_0->reg &= 0xce; VAR_0->reg |= (bank << 4); result = inv_icm20948_write_reg(VAR_0, REG_BANK_SEL, &VAR_0->reg, 1); return result; } /* the following functions are used for configuring the secondary devices */ /** * @brief Write data to a register on MEMs. * @param[in] Register address * @param[in] Length of data * @param[in] Data to be written * @return 0 if successful. */ int FUNC_5(struct inv_icm20948 * VAR_0, uint16_t reg, unsigned int length, const unsigned char *data) { int result = 0; unsigned int VAR_8 = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char power_state = inv_icm20948_get_chip_power_state(VAR_0); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(VAR_0, CHIP_AWAKE, 1); if(FUNC_3(VAR_0, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(VAR_0, reg >> 7); while (VAR_8<length) { int thisLen = FUNC_6(INV_MAX_SERIAL_WRITE, length-VAR_8); result |= inv_icm20948_write_reg(VAR_0, regOnly+VAR_8,&data[VAR_8], thisLen); if (result) return result; VAR_8 += thisLen; } if (FUNC_3(VAR_0, reg)) { //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 1); } return result; } /** * @brief Write single byte of data to a register on MEMs. * @param[in] Register address * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_write_single_mems_reg(struct inv_icm20948 * VAR_0, uint16_t reg, const unsigned char data) { int result = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char power_state = inv_icm20948_get_chip_power_state(VAR_0); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(VAR_0, CHIP_AWAKE, 1); if(FUNC_3(VAR_0, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(VAR_0, reg >> 7); result |= inv_icm20948_write_reg(VAR_0, regOnly, &data, 1); if(FUNC_3(VAR_0, reg)) //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 1); return result; } /** * @brief Read data from a register on MEMs. * @param[in] Register address * @param[in] Length of data * @param[in] Data to be written * @return 0 if successful. */ int FUNC_7(struct inv_icm20948 * VAR_0, uint16_t reg, unsigned int length, unsigned char *data) { int result = 0; unsigned int bytesRead = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); unsigned char i, VAR_9[INV_MAX_SERIAL_READ]; unsigned char power_state = inv_icm20948_get_chip_power_state(VAR_0); if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(VAR_0, CHIP_AWAKE, 1); if(FUNC_3(VAR_0, reg)) // Check if register needs LP_EN to be disabled result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 0); //Disable LP_EN result |= inv_set_bank(VAR_0, reg >> 7); while (bytesRead<length) { int thisLen = FUNC_6(INV_MAX_SERIAL_READ, length-bytesRead); if(VAR_0->VAR_10.VAR_11 == SERIAL_INTERFACE_SPI) { result |= inv_icm20948_read_reg(VAR_0, regOnly+bytesRead, &VAR_9[bytesRead], thisLen); } else { result |= inv_icm20948_read_reg(VAR_0, regOnly+bytesRead, &data[bytesRead],thisLen); } if (result) return result; bytesRead += thisLen; } if(VAR_0->VAR_10.VAR_11 == SERIAL_INTERFACE_SPI) { for (i=0; i< length; i++) { *data= VAR_9[i]; data++; } } if(FUNC_3(VAR_0, reg)) // Check if register needs LP_EN to be enabled result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 1); //Enable LP_EN return result; } /** * @brief Read data from a register in DMP memory * @param[in] DMP memory address * @param[in] number of byte to be read * @param[in] input data from the register * @return 0 if successful. */ int inv_icm20948_read_mems(struct inv_icm20948 * VAR_0, unsigned short reg, unsigned int length, unsigned char *data) { int result=0; unsigned int bytesWritten = 0; unsigned int thisLen; unsigned char i, VAR_9[INV_MAX_SERIAL_READ] = {0}; unsigned char power_state = inv_icm20948_get_chip_power_state(VAR_0); unsigned char VAR_12; unsigned char lStartAddrSelected; if(!data) return -1; if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(VAR_0, CHIP_AWAKE, 1); if(FUNC_3(VAR_0, reg)) result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 0); result |= inv_set_bank(VAR_0, 0); VAR_12 = (reg >> 8); if (VAR_12 != VAR_0->VAR_3) { result |= inv_icm20948_write_reg(VAR_0, REG_MEM_BANK_SEL, &VAR_12, 1); if (result) return result; VAR_0->VAR_3 = VAR_12; } while (bytesWritten < length) { lStartAddrSelected = (reg & 0xff); /* Sets the starting read or write address for the selected memory, inside of the selected page (see MEM_SEL Register). Contents are changed after read or write of the selected memory. This register must be written prior to each access to initialize the register to the proper starting address. The address will auto increment during burst transactions. Two consecutive bursts without re-initializing the start address would skip one address. */ result |= inv_icm20948_write_reg(VAR_0, REG_MEM_START_ADDR, &lStartAddrSelected, 1); if (result) return result; thisLen = FUNC_6(INV_MAX_SERIAL_READ, length-bytesWritten); /* Write data */ if(VAR_0->VAR_10.VAR_11 == SERIAL_INTERFACE_SPI) { result |= inv_icm20948_read_reg(VAR_0, VAR_13, &VAR_9[bytesWritten], thisLen); } else { result |= inv_icm20948_read_reg(VAR_0, VAR_13, &data[bytesWritten], thisLen); } if (result) return result; bytesWritten += thisLen; reg += thisLen; } if(VAR_0->VAR_10.VAR_11 == SERIAL_INTERFACE_SPI) { for (i=0; i< length; i++) { *data= VAR_9[i]; data++; } } //Enable LP_EN if we disabled it at begining of this function. if(FUNC_3(VAR_0, reg)) result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 1); return result; } /** * @brief Write data to a register in DMP memory * @param[in] DMP memory address * @param[in] number of byte to be written * @param[out] output data from the register * @return 0 if successful. */ int FUNC_8(struct inv_icm20948 * VAR_0, unsigned short reg, unsigned int length, const unsigned char *data) { int result=0; unsigned int bytesWritten = 0; unsigned int thisLen; unsigned char VAR_12; unsigned char lStartAddrSelected; unsigned char power_state = inv_icm20948_get_chip_power_state(VAR_0); if(!data) return -1; if((power_state & CHIP_AWAKE) == 0) // Wake up chip since it is asleep result = inv_icm20948_set_chip_power_state(VAR_0, CHIP_AWAKE, 1); result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 0); result |= inv_set_bank(VAR_0, 0); VAR_12 = (reg >> 8); if (VAR_12 != VAR_0->VAR_3) { result |= inv_icm20948_write_reg(VAR_0, REG_MEM_BANK_SEL, &VAR_12, 1); if (result) return result; VAR_0->VAR_3 = VAR_12; } while (bytesWritten < length) { lStartAddrSelected = (reg & 0xff); /* Sets the starting read or write address for the selected memory, inside of the selected page (see MEM_SEL Register). Contents are changed after read or write of the selected memory. This register must be written prior to each access to initialize the register to the proper starting address. The address will auto increment during burst transactions. Two consecutive bursts without re-initializing the start address would skip one address. */ result |= inv_icm20948_write_reg(VAR_0, REG_MEM_START_ADDR, &lStartAddrSelected, 1); if (result) return result; thisLen = FUNC_6(INV_MAX_SERIAL_WRITE, length-bytesWritten); /* Write data */ result |= inv_icm20948_write_reg(VAR_0, VAR_13, &data[bytesWritten], thisLen); if (result) return result; bytesWritten += thisLen; reg += thisLen; } //Enable LP_EN since we disabled it at begining of this function. result |= inv_icm20948_set_chip_power_state(VAR_0, CHIP_LP_ENABLE, 1); return result; } /** * @brief Write single byte of data to a register on MEMs with no power control * @param[in] Register address * @param[in] Data to be written * @return 0 if successful. */ int inv_icm20948_write_single_mems_reg_core(struct inv_icm20948 * VAR_0, uint16_t reg, const uint8_t data) { int result = 0; unsigned char regOnly = (unsigned char)(reg & 0x7F); result |= inv_set_bank(VAR_0, reg >> 7); result |= inv_icm20948_write_reg(VAR_0, regOnly, &data, 1); return result; }
0.342624
{'IMPORT_0': 'Icm20948.h', 'VAR_0': 's', 'VAR_1': 'len', 'FUNC_0': 'inv_icm20948_serif_write_reg', 'FUNC_1': 'inv_icm20948_sleep_100us', 'VAR_2': 'nHowMany100MicroSecondsToSleep', 'FUNC_2': 'inv_icm20948_get_time_us', 'IMPORT_1': 'Icm20948Defs.h', 'IMPORT_2': 'Icm20948DataBaseDriver.h', 'IMPORT_3': 'Icm20948DataBaseControl.h', 'VAR_3': 'lLastBankSelected', 'FUNC_3': 'check_reg_access_lp_disable', 'VAR_4': 'REG_INT_ENABLE', 'VAR_5': 'REG_FIFO_COUNT_H', 'FUNC_4': 'inv_icm20948_ctrl_get_batch_mode_status', 'VAR_6': 'REG_FIFO_CFG', 'VAR_7': 'REG_INT_STATUS', 'FUNC_5': 'inv_icm20948_write_mems_reg', 'VAR_8': 'bytesWrite', 'FUNC_6': 'min', 'FUNC_7': 'inv_icm20948_read_mems_reg', 'VAR_9': 'dat', 'VAR_10': 'base_state', 'VAR_11': 'serial_interface', 'VAR_12': 'lBankSelected', 'VAR_13': 'REG_MEM_R_W', 'FUNC_8': 'inv_icm20948_write_mems'}
version https://git-lfs.github.com/spec/v1 oid sha256:b9d46772f2ae22e8d03feed02b190b8aa7c5ac3fdddf966f678ce86ddbc58f01 size 1004
version VAR_0://git-lfs.github.com/spec/v1 oid sha256:b9d46772f2ae22e8d03feed02b190b8aa7c5ac3fdddf966f678ce86ddbc58f01 size 1004
0.222781
{'VAR_0': 'https'}
// HAHAHAHAHAH #ifdef NDEBUG #undef NDEBUG #warning "Nobody ain't taking my asserions away!" #endif #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <termios.h> #include <assert.h> #include <signal.h> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" int alive = 1; int serialfd = -1; const int bright[8] = {0, 1, 8, 16, 32, 64, 128, 255}; /* * Serial setup routine */ int init_serial( const char *fname ) { int fd = open( fname, O_RDWR | O_NOCTTY | O_SYNC ); assert( fd != -1 ); struct termios tty; memset( &tty, 0, sizeof tty ); assert( tcgetattr( fd, &tty ) == 0 ); //cfsetospeed( &tty, B9600 ); //cfsetispeed( &tty, B9600 ); cfsetospeed( &tty, B19200 ); cfsetispeed( &tty, B19200 ); tty.c_cflag = ( tty.c_cflag & ~CSIZE ) | CS8; tty.c_iflag &= ~IGNBRK; tty.c_lflag = 0; tty.c_oflag = 0; tty.c_cc[VMIN] = 0; tty.c_cc[VTIME] = 5; tty.c_iflag &= ~( IXON | IXOFF | IXANY ); tty.c_cflag |= ( CLOCAL | CREAD ); tty.c_cflag &= ~( PARENB | PARODD ); //tty.c_cflag |= parity; tty.c_cflag &= ~CSTOPB; tty.c_cflag &= ~CRTSCTS; assert( tcsetattr( fd, TCSANOW, &tty ) == 0 ); return fd; } /* * Send LED color data */ void led( unsigned char r, unsigned char g, unsigned char b ) { unsigned char data[3]; data[0] = r / 2; data[1] = g / 2; data[2] = b / 2; write( serialfd, data, 3 ); } /* * Send display control command */ #define DISP_CBK 0 //Move cursor back #define DISP_CLS 1 //Clear display #define DISP_BCL 2 //Buffer control #define DISP_BCL_ON 19 //Double buffering ON #define DISP_BCL_OFF 3 //Double buffering OFF #define DISP_BSW 3 //Buffer swap void dispcmd( int cmd ) { unsigned char cmdb = 0x80 | ( cmd & 0x7f ); write( serialfd, &cmdb, 1 ); } /* * Display data */ #define DISP_SIZE 4 struct rgb { unsigned char r, g, b; } __attribute__( ( packed ) ); struct rgb disp[DISP_SIZE][DISP_SIZE] = {{{0}}}; /* * Display data transmission function */ void dispflush( ) { dispcmd( DISP_CBK ); static unsigned char data[DISP_SIZE * DISP_SIZE * 3]; memcpy( data, disp, sizeof data ); int i; for ( i = 0; i < sizeof data; i++ ) data[i] /= 2; write( serialfd, data, sizeof data ); dispcmd( DISP_BSW ); } /* * Exit signal handler */ void sighndl( int signum ) { fprintf( stderr, "SIGINT received\n" ); close( serialfd ); exit( 0 ); } int main( int argc, const char *argv[] ) { if ( argc < 3 ) { perror( "Usage: ./muxd <serial> <image> [delay]\n" ); exit( EXIT_FAILURE ); } float frame_delay = 500.0; if ( argc >= 4 ) assert( sscanf( argv[3], "%f", &frame_delay ) ); assert( frame_delay >= 30.0 && frame_delay < 1000.0 ); //Init serial serialfd = init_serial( argv[1] ); //Init signal handler signal( SIGINT, sighndl ); //Read PNG file int image_width, image_height, image_bpp, frame_count; unsigned char *image_data = stbi_load( argv[2], &image_width, &image_height, &image_bpp, 3 ); // force 3 bytes per pixel assert( image_width == 4 && image_height % 4 == 0 && "bad dimensions..." ); assert( image_data && "stbi_load() failed" ); frame_count = image_height / 4; //Reset the display dispcmd( DISP_BCL_ON ); dispcmd( DISP_CBK ); dispcmd( DISP_CLS ); //Main animation loop while ( alive ) { for ( int i = 0; i < frame_count; i++ ) { memcpy( disp, image_data + i * 16 * 3, 16 * 3 ); dispflush( ); // Frame delay struct timespec delay = { .tv_sec = 0, .tv_nsec = 1e6 * frame_delay }; nanosleep( &delay, NULL ); } } // Free image data stbi_image_free( image_data ); return 0; }
// HAHAHAHAHAH #ifdef NDEBUG #undef NDEBUG #warning "Nobody ain't taking my asserions away!" #endif #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <termios.h> #include <assert.h> #include <signal.h> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" int alive = 1; int serialfd = -1; const int bright[8] = {0, 1, 8, 16, 32, 64, 128, 255}; /* * Serial setup routine */ int init_serial( const char *VAR_0 ) { int fd = open( VAR_0, O_RDWR | O_NOCTTY | O_SYNC ); assert( fd != -1 ); struct CLASS_0 VAR_1; memset( &VAR_1, 0, sizeof VAR_1 ); assert( tcgetattr( fd, &VAR_1 ) == 0 ); //cfsetospeed( &tty, B9600 ); //cfsetispeed( &tty, B9600 ); FUNC_0( &VAR_1, B19200 ); cfsetispeed( &VAR_1, B19200 ); VAR_1.c_cflag = ( VAR_1.c_cflag & ~CSIZE ) | VAR_2; VAR_1.c_iflag &= ~IGNBRK; VAR_1.c_lflag = 0; VAR_1.c_oflag = 0; VAR_1.c_cc[VMIN] = 0; VAR_1.c_cc[VTIME] = 5; VAR_1.c_iflag &= ~( IXON | IXOFF | IXANY ); VAR_1.c_cflag |= ( CLOCAL | CREAD ); VAR_1.c_cflag &= ~( PARENB | PARODD ); //tty.c_cflag |= parity; VAR_1.c_cflag &= ~CSTOPB; VAR_1.c_cflag &= ~CRTSCTS; assert( tcsetattr( fd, TCSANOW, &VAR_1 ) == 0 ); return fd; } /* * Send LED color data */ void led( unsigned char r, unsigned char g, unsigned char b ) { unsigned char data[3]; data[0] = r / 2; data[1] = g / 2; data[2] = b / 2; write( serialfd, data, 3 ); } /* * Send display control command */ #define DISP_CBK 0 //Move cursor back #define DISP_CLS 1 //Clear display #define DISP_BCL 2 //Buffer control #define DISP_BCL_ON 19 //Double buffering ON #define DISP_BCL_OFF 3 //Double buffering OFF #define DISP_BSW 3 //Buffer swap void dispcmd( int cmd ) { unsigned char cmdb = 0x80 | ( cmd & 0x7f ); write( serialfd, &cmdb, 1 ); } /* * Display data */ #define DISP_SIZE 4 struct rgb { unsigned char r, g, b; } __attribute__( ( packed ) ); struct rgb disp[DISP_SIZE][DISP_SIZE] = {{{0}}}; /* * Display data transmission function */ void dispflush( ) { dispcmd( DISP_CBK ); static unsigned char data[DISP_SIZE * DISP_SIZE * 3]; memcpy( data, disp, sizeof data ); int i; for ( i = 0; i < sizeof data; i++ ) data[i] /= 2; write( serialfd, data, sizeof data ); dispcmd( DISP_BSW ); } /* * Exit signal handler */ void FUNC_1( int signum ) { fprintf( stderr, "SIGINT received\n" ); close( serialfd ); exit( 0 ); } int main( int VAR_4, const char *argv[] ) { if ( VAR_4 < 3 ) { perror( "Usage: ./muxd <serial> <image> [delay]\n" ); exit( EXIT_FAILURE ); } float frame_delay = 500.0; if ( VAR_4 >= 4 ) assert( sscanf( argv[3], "%f", &frame_delay ) ); assert( frame_delay >= 30.0 && frame_delay < 1000.0 ); //Init serial serialfd = init_serial( argv[1] ); //Init signal handler signal( SIGINT, VAR_3 ); //Read PNG file int image_width, image_height, image_bpp, frame_count; unsigned char *image_data = stbi_load( argv[2], &image_width, &image_height, &image_bpp, 3 ); // force 3 bytes per pixel assert( image_width == 4 && image_height % 4 == 0 && "bad dimensions..." ); assert( image_data && "stbi_load() failed" ); frame_count = image_height / 4; //Reset the display dispcmd( DISP_BCL_ON ); dispcmd( DISP_CBK ); dispcmd( DISP_CLS ); //Main animation loop while ( alive ) { for ( int i = 0; i < frame_count; i++ ) { memcpy( disp, image_data + i * 16 * 3, 16 * 3 ); dispflush( ); // Frame delay struct CLASS_1 VAR_5 = { .VAR_6 = 0, .VAR_7 = 1e6 * frame_delay }; nanosleep( &VAR_5, NULL ); } } // Free image data stbi_image_free( image_data ); return 0; }
0.158465
{'VAR_0': 'fname', 'CLASS_0': 'termios', 'VAR_1': 'tty', 'FUNC_0': 'cfsetospeed', 'VAR_2': 'CS8', 'FUNC_1': 'sighndl', 'VAR_3': 'sighndl', 'VAR_4': 'argc', 'CLASS_1': 'timespec', 'VAR_5': 'delay', 'VAR_6': 'tv_sec', 'VAR_7': 'tv_nsec'}
#include "transmit-line-code-layer.h" /** * Public method declarations */ void LRP_TransmitLineCodeLayer_handler(LRPTransmitSessionProvider *const sessionProvider, LRPLineCode4B5B *const lineCode4B5B, unsigned char *const data) { if (LRP_TransmitLineCodeLayer_isReadyToStartTransmitting(sessionProvider)) { LRP_TransmitLineCodeLayer_startTransmitting(sessionProvider, lineCode4B5B, data); return; } if (LRP_LinkLayer_isStatusOK((LRPSessionProvider *) sessionProvider)) { if (LRP_TransmitLinkLayer_isUnwrittenDataInBuffer(sessionProvider)) { if (LRP_4B5B_isBufferOfEncodedBitsReadyToAddTheNextByteToEncode(lineCode4B5B)) { const unsigned char bufferData = LRP_TransmitLinkLayer_handler(sessionProvider); LRP_4B5B_encodeDataByteAndAddItToBufferOfEncodedBits(lineCode4B5B, &bufferData); } *data = LRP_4B5B_readAnEncodedByteFromBufferOfEncodedBits(lineCode4B5B); return; } else { if (LRP_4B5B_isThereRemainingBitsInBufferOfEncodedBits(lineCode4B5B)) { *data = LRP_4B5B_readAnRemainingBitsFromBufferOfEncodedBits(lineCode4B5B); return; } LRP_TransmitLinkLayer_endTransmitting(sessionProvider); *data = LINE_CODE_4B5B_STOP_DELIMITER_BYTE; } } } void LRP_TransmitLineCodeLayer_startTransmitting( LRPTransmitSessionProvider *const sessionProvider, LRPLineCode4B5B *const lineCode4B5B, unsigned char *const data) { LRP_TransmitLinkLayer_startTransmitting(sessionProvider); LRP_4B5B_reset(lineCode4B5B); *data = LINE_CODE_4B5B_START_DELIMITER_BYTE; } unsigned char LRP_TransmitLineCodeLayer_isReadyToStartTransmitting( const LRPTransmitSessionProvider *const sessionProvider) { if (LRP_TransmitLinkLayer_isReadyToTransmit(sessionProvider)) { if (!LRP_LinkLayer_isStatusError( (LRPSessionProvider *) sessionProvider)) { return 1; } } return 0; }
#include "IMPORT_0" /** * Public method declarations */ void FUNC_0(CLASS_0 *const VAR_0, CLASS_1 *const VAR_1, unsigned char *const VAR_2) { if (FUNC_1(VAR_0)) { FUNC_2(VAR_0, VAR_1, VAR_2); return; } if (FUNC_3((CLASS_2 *) VAR_0)) { if (FUNC_4(VAR_0)) { if (FUNC_5(VAR_1)) { const unsigned char VAR_3 = FUNC_6(VAR_0); FUNC_7(VAR_1, &VAR_3); } *VAR_2 = FUNC_8(VAR_1); return; } else { if (FUNC_9(VAR_1)) { *VAR_2 = FUNC_10(VAR_1); return; } FUNC_11(VAR_0); *VAR_2 = VAR_4; } } } void FUNC_2( CLASS_0 *const VAR_0, CLASS_1 *const VAR_1, unsigned char *const VAR_2) { FUNC_12(VAR_0); FUNC_13(VAR_1); *VAR_2 = VAR_5; } unsigned char FUNC_1( const CLASS_0 *const VAR_0) { if (FUNC_14(VAR_0)) { if (!FUNC_15( (CLASS_2 *) VAR_0)) { return 1; } } return 0; }
0.988823
{'IMPORT_0': 'transmit-line-code-layer.h', 'FUNC_0': 'LRP_TransmitLineCodeLayer_handler', 'CLASS_0': 'LRPTransmitSessionProvider', 'VAR_0': 'sessionProvider', 'CLASS_1': 'LRPLineCode4B5B', 'VAR_1': 'lineCode4B5B', 'VAR_2': 'data', 'FUNC_1': 'LRP_TransmitLineCodeLayer_isReadyToStartTransmitting', 'FUNC_2': 'LRP_TransmitLineCodeLayer_startTransmitting', 'FUNC_3': 'LRP_LinkLayer_isStatusOK', 'CLASS_2': 'LRPSessionProvider', 'FUNC_4': 'LRP_TransmitLinkLayer_isUnwrittenDataInBuffer', 'FUNC_5': 'LRP_4B5B_isBufferOfEncodedBitsReadyToAddTheNextByteToEncode', 'VAR_3': 'bufferData', 'FUNC_6': 'LRP_TransmitLinkLayer_handler', 'FUNC_7': 'LRP_4B5B_encodeDataByteAndAddItToBufferOfEncodedBits', 'FUNC_8': 'LRP_4B5B_readAnEncodedByteFromBufferOfEncodedBits', 'FUNC_9': 'LRP_4B5B_isThereRemainingBitsInBufferOfEncodedBits', 'FUNC_10': 'LRP_4B5B_readAnRemainingBitsFromBufferOfEncodedBits', 'FUNC_11': 'LRP_TransmitLinkLayer_endTransmitting', 'VAR_4': 'LINE_CODE_4B5B_STOP_DELIMITER_BYTE', 'FUNC_12': 'LRP_TransmitLinkLayer_startTransmitting', 'FUNC_13': 'LRP_4B5B_reset', 'VAR_5': 'LINE_CODE_4B5B_START_DELIMITER_BYTE', 'FUNC_14': 'LRP_TransmitLinkLayer_isReadyToTransmit', 'FUNC_15': 'LRP_LinkLayer_isStatusError'}
// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QWidget> #include <QPainter> #include <QMouseEvent> #include <QDebug> class StaticWidget : public QWidget { Q_OBJECT public: int hue; bool pressed; StaticWidget(QWidget *parent = nullptr) :QWidget(parent) { setAttribute(Qt::WA_StaticContents); setAttribute(Qt::WA_OpaquePaintEvent); hue = 200; pressed = false; } // Update 4 rects in a checkerboard pattern, using either // a QRegion or separate rects (see the useRegion switch) void updatePattern(QPoint pos) { const int rectSize = 10; QRect rect(pos.x() - rectSize, pos.y() - rectSize, rectSize *2, rectSize * 2); QList<QRect> updateRects; updateRects.append(rect.translated(rectSize * 2, rectSize * 2)); updateRects.append(rect.translated(rectSize * 2, -rectSize * 2)); updateRects.append(rect.translated(-rectSize * 2, rectSize * 2)); updateRects.append(rect.translated(-rectSize * 2, -rectSize * 2)); bool useRegion = false; if (useRegion) { QRegion region; region.setRects(updateRects.data(), 4); update(region); } else { foreach (QRect rect, updateRects) update(rect); } } void resizeEvent(QResizeEvent *) { // qDebug() << "static widget resize from" << e->oldSize() << "to" << e->size(); } void mousePressEvent(QMouseEvent *event) { // qDebug() << "mousePress at" << event->pos(); pressed = true; updatePattern(event->pos()); } void mouseReleaseEvent(QMouseEvent *) { pressed = false; } void mouseMoveEvent(QMouseEvent *event) { if (pressed) updatePattern(event->pos()); } void paintEvent(QPaintEvent *e) { QPainter p(this); static int color = 200; color = (color + 41) % 205 + 50; // color = ((color + 45) %150) + 100; qDebug() << "static widget repaint" << e->rect(); if (pressed) p.fillRect(e->rect(), QColor::fromHsv(100, 255, color)); else p.fillRect(e->rect(), QColor::fromHsv(hue, 255, color)); p.setPen(QPen(QColor(Qt::white))); for (int y = e->rect().top(); y <= e->rect().bottom() + 1; ++y) { if (y % 20 == 0) p.drawLine(e->rect().left(), y, e->rect().right(), y); } for (int x = e->rect().left(); x <= e->rect().right() +1 ; ++x) { if (x % 20 == 0) p.drawLine(x, e->rect().top(), x, e->rect().bottom()); } } };
// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QWidget> #include <QPainter> #include <QMouseEvent> #include <QDebug> CLASS_0 StaticWidget : public QWidget { Q_OBJECT public: int hue; bool pressed; StaticWidget(QWidget *parent = nullptr) :QWidget(parent) { setAttribute(Qt::WA_StaticContents); setAttribute(Qt::WA_OpaquePaintEvent); hue = 200; pressed = false; } // Update 4 rects in a checkerboard pattern, using either // a QRegion or separate rects (see the useRegion switch) void updatePattern(QPoint pos) { const int rectSize = 10; QRect rect(pos.x() - rectSize, pos.y() - rectSize, rectSize *2, rectSize * 2); QList<QRect> updateRects; updateRects.append(rect.translated(rectSize * 2, rectSize * 2)); updateRects.append(rect.translated(rectSize * 2, -rectSize * 2)); updateRects.append(rect.translated(-rectSize * 2, rectSize * 2)); updateRects.append(rect.translated(-rectSize * 2, -rectSize * 2)); bool useRegion = false; if (useRegion) { QRegion region; region.setRects(updateRects.data(), 4); update(region); } else { foreach (QRect rect, updateRects) update(rect); } } void resizeEvent(QResizeEvent *) { // qDebug() << "static widget resize from" << e->oldSize() << "to" << e->size(); } void mousePressEvent(QMouseEvent *event) { // qDebug() << "mousePress at" << event->pos(); pressed = true; updatePattern(event->pos()); } void mouseReleaseEvent(QMouseEvent *) { pressed = false; } void mouseMoveEvent(QMouseEvent *event) { if (pressed) updatePattern(event->pos()); } void paintEvent(QPaintEvent *e) { QPainter FUNC_0(this); static int color = 200; color = (color + 41) % 205 + 50; // color = ((color + 45) %150) + 100; qDebug() << "static widget repaint" << e->rect(); if (pressed) VAR_0.fillRect(e->rect(), QColor::fromHsv(100, 255, color)); else VAR_0.fillRect(e->rect(), QColor::fromHsv(hue, 255, color)); VAR_0.setPen(QPen(QColor(Qt::VAR_1))); for (int y = e->rect().top(); y <= e->rect().bottom() + 1; ++y) { if (y % 20 == 0) VAR_0.drawLine(e->rect().left(), y, e->rect().right(), y); } for (int x = e->rect().left(); x <= e->rect().right() +1 ; ++x) { if (x % 20 == 0) VAR_0.drawLine(x, e->rect().top(), x, e->rect().bottom()); } } };
0.095627
{'CLASS_0': 'class', 'FUNC_0': 'p', 'VAR_0': 'p', 'VAR_1': 'white'}
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_ #define SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_ #pragma once #include "base/file_path.h" #include "sync/syncable/directory_backing_store.h" namespace syncable { // This is the concrete class that provides a useful implementation of // DirectoryBackingStore. class OnDiskDirectoryBackingStore : public DirectoryBackingStore { public: OnDiskDirectoryBackingStore(const std::string& dir_name, const FilePath& backing_filepath); virtual DirOpenResult Load( MetahandlesIndex* entry_bucket, Directory::KernelLoadInfo* kernel_load_info) OVERRIDE; private: FilePath backing_filepath_; }; } // namespace syncable #endif // SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef VAR_0 #define VAR_0 #pragma once #include "IMPORT_0" #include "IMPORT_1" CLASS_0 VAR_1 { // This is the concrete class that provides a useful implementation of // DirectoryBackingStore. class VAR_2 : VAR_3 VAR_4 { public: FUNC_0(VAR_5 VAR_6::VAR_7& VAR_8, VAR_5 VAR_9& backing_filepath); CLASS_1 VAR_10 FUNC_1( VAR_11* VAR_12, VAR_13::KernelLoadInfo* VAR_14) VAR_15; private: VAR_9 VAR_16; }; } // namespace syncable #endif // SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_
0.856369
{'VAR_0': 'SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_', 'IMPORT_0': 'base/file_path.h', 'IMPORT_1': 'sync/syncable/directory_backing_store.h', 'CLASS_0': 'namespace', 'VAR_1': 'syncable', 'VAR_2': 'OnDiskDirectoryBackingStore', 'FUNC_0': 'OnDiskDirectoryBackingStore', 'VAR_3': 'public', 'VAR_4': 'DirectoryBackingStore', 'VAR_5': 'const', 'VAR_6': 'std', 'VAR_7': 'string', 'VAR_8': 'dir_name', 'VAR_9': 'FilePath', 'CLASS_1': 'virtual', 'VAR_10': 'DirOpenResult', 'FUNC_1': 'Load', 'VAR_11': 'MetahandlesIndex', 'VAR_12': 'entry_bucket', 'VAR_13': 'Directory', 'VAR_14': 'kernel_load_info', 'VAR_15': 'OVERRIDE', 'VAR_16': 'backing_filepath_'}
/*- * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * <NAME>. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 * $FreeBSD: src/sys/i386/isa/intr_machdep.c,v 1.29.2.5 2001/10/14 06:54:27 luigi Exp $ * $DragonFly: src/sys/platform/pc32/isa/intr_machdep.c,v 1.48 2008/08/02 01:14:43 dillon Exp $ */ /* * This file contains an aggregated module marked: * Copyright (c) 1997, <NAME> <<EMAIL>> * All rights reserved. * See the notice for details. */ #include "opt_auto_eoi.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/machintr.h> #include <sys/interrupt.h> #include <sys/thread2.h> #include <bus/isa/isareg.h> #include <cpu/cpufunc.h> #include <machine/intr_machdep.h> #include <machine_base/icu/icu.h> #include <machine_base/icu/icu_var.h> #include <machine_base/apic/ioapic.h> static void icu_init(void); static void icu_init(void) { #ifdef AUTO_EOI_1 int auto_eoi = 2; /* auto EOI, 8086 mode */ #else int auto_eoi = 0; /* 8086 mode */ #endif if (ioapic_enable) auto_eoi = 2; /* auto EOI, 8086 mode */ /* * Program master */ outb(IO_ICU1, 0x11); /* reset; program device, four bytes */ outb(IO_ICU1 + ICU_IMR_OFFSET, IDT_OFFSET); /* starting at this vector index */ outb(IO_ICU1 + ICU_IMR_OFFSET, 1 << ICU_IRQ_SLAVE); /* slave on line 2 */ outb(IO_ICU1 + ICU_IMR_OFFSET, auto_eoi | 1); /* 8086 mode */ outb(IO_ICU1 + ICU_IMR_OFFSET, 0xff); /* leave interrupts masked */ outb(IO_ICU1, 0x0a); /* default to IRR on read */ outb(IO_ICU1, 0xc0 | (3 - 1)); /* pri order 3-7, 0-2 (com2 first) */ /* * Program slave */ outb(IO_ICU2, 0x11); /* reset; program device, four bytes */ outb(IO_ICU2 + ICU_IMR_OFFSET, IDT_OFFSET + 8); /* staring at this vector index */ outb(IO_ICU2 + ICU_IMR_OFFSET, ICU_IRQ_SLAVE); #ifdef AUTO_EOI_2 outb(IO_ICU2 + ICU_IMR_OFFSET, 2 | 1); /* auto EOI, 8086 mode */ #else outb(IO_ICU2 + ICU_IMR_OFFSET, 1); /* 8086 mode */ #endif outb(IO_ICU2 + ICU_IMR_OFFSET, 0xff); /* leave interrupts masked */ outb(IO_ICU2, 0x0a); /* default to IRR on read */ } void icu_definit(void) { register_t ef; KKASSERT(MachIntrABI.type == MACHINTR_ICU); ef = read_rflags(); cpu_disable_intr(); /* Leave interrupts masked */ outb(IO_ICU1 + ICU_IMR_OFFSET, 0xff); outb(IO_ICU2 + ICU_IMR_OFFSET, 0xff); MachIntrABI.setdefault(); icu_init(); write_rflags(ef); } /* * ICU reinitialize when ICU configuration has lost. */ void icu_reinit(void) { #ifdef foo int i; icu_init(); for (i = 0; i < MAX_HARDINTS; ++i) { if (count_registered_ints(i)) machintr_intr_enable(i); } #else icu_init(); #endif } /* * Return a bitmap of the current interrupt requests. This is 8259-specific * and is only suitable for use at probe time. */ intrmask_t icu_irq_pending(void) { u_char irr1; u_char irr2; irr1 = inb(IO_ICU1); irr2 = inb(IO_ICU2); return ((irr2 << 8) | irr1); } int icu_ioapic_extint(int irq, int vec) { uint8_t mask; /* * Only first 8 interrupt is supported. * Don't allow setup for the slave link. */ if (irq >= 8 || irq == 2) return EOPNOTSUPP; mask = ~(1 << irq); /* * Re-initialize master 8259: * reset; prog 4 bytes, single ICU, edge triggered */ outb(IO_ICU1, 0x13); outb(IO_ICU1 + 1, vec); /* start vector (unused) */ outb(IO_ICU1 + 1, 0x00); /* ignore slave */ outb(IO_ICU1 + 1, 0x03); /* auto EOI, 8086 */ outb(IO_ICU1 + 1, mask); return 0; } void icu_reinit_noioapic(void) { register_t ef; KKASSERT(MachIntrABI.type == MACHINTR_ICU); KKASSERT(ioapic_enable == 0); crit_enter(); ef = read_rflags(); cpu_disable_intr(); /* Leave interrupts masked */ outb(IO_ICU1 + ICU_IMR_OFFSET, 0xff); outb(IO_ICU2 + ICU_IMR_OFFSET, 0xff); icu_init(); MachIntrABI.stabilize(); write_rflags(ef); MachIntrABI.cleanup(); crit_exit(); }
/*- * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * <NAME>. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 * $FreeBSD: src/sys/i386/isa/intr_machdep.c,v 1.29.2.5 2001/10/14 06:54:27 luigi Exp $ * $DragonFly: src/sys/platform/pc32/isa/intr_machdep.c,v 1.48 2008/08/02 01:14:43 dillon Exp $ */ /* * This file contains an aggregated module marked: * Copyright (c) 1997, <NAME> <<EMAIL>> * All rights reserved. * See the notice for details. */ #include "IMPORT_0" #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> #include <bus/isa/isareg.h> #include <IMPORT_6> #include <IMPORT_7> #include <IMPORT_8> #include <IMPORT_9> #include <IMPORT_10> static void FUNC_0(void); static void FUNC_0(void) { #ifdef VAR_0 int VAR_1 = 2; /* auto EOI, 8086 mode */ #else int VAR_1 = 0; /* 8086 mode */ #endif if (VAR_2) VAR_1 = 2; /* auto EOI, 8086 mode */ /* * Program master */ outb(VAR_3, 0x11); /* reset; program device, four bytes */ outb(VAR_3 + ICU_IMR_OFFSET, VAR_4); /* starting at this vector index */ outb(VAR_3 + ICU_IMR_OFFSET, 1 << ICU_IRQ_SLAVE); /* slave on line 2 */ outb(VAR_3 + ICU_IMR_OFFSET, VAR_1 | 1); /* 8086 mode */ outb(VAR_3 + ICU_IMR_OFFSET, 0xff); /* leave interrupts masked */ outb(VAR_3, 0x0a); /* default to IRR on read */ outb(VAR_3, 0xc0 | (3 - 1)); /* pri order 3-7, 0-2 (com2 first) */ /* * Program slave */ outb(VAR_5, 0x11); /* reset; program device, four bytes */ outb(VAR_5 + ICU_IMR_OFFSET, VAR_4 + 8); /* staring at this vector index */ outb(VAR_5 + ICU_IMR_OFFSET, ICU_IRQ_SLAVE); #ifdef VAR_6 outb(VAR_5 + ICU_IMR_OFFSET, 2 | 1); /* auto EOI, 8086 mode */ #else outb(VAR_5 + ICU_IMR_OFFSET, 1); /* 8086 mode */ #endif outb(VAR_5 + ICU_IMR_OFFSET, 0xff); /* leave interrupts masked */ outb(VAR_5, 0x0a); /* default to IRR on read */ } void icu_definit(void) { CLASS_0 VAR_7; FUNC_1(MachIntrABI.VAR_8 == VAR_9); VAR_7 = FUNC_2(); FUNC_3(); /* Leave interrupts masked */ outb(VAR_3 + ICU_IMR_OFFSET, 0xff); outb(VAR_5 + ICU_IMR_OFFSET, 0xff); MachIntrABI.FUNC_4(); FUNC_0(); FUNC_5(VAR_7); } /* * ICU reinitialize when ICU configuration has lost. */ void FUNC_6(void) { #ifdef VAR_10 int VAR_11; FUNC_0(); for (VAR_11 = 0; VAR_11 < VAR_12; ++VAR_11) { if (FUNC_7(VAR_11)) FUNC_8(VAR_11); } #else FUNC_0(); #endif } /* * Return a bitmap of the current interrupt requests. This is 8259-specific * and is only suitable for use at probe time. */ CLASS_1 FUNC_9(void) { CLASS_2 VAR_13; CLASS_2 VAR_14; VAR_13 = inb(VAR_3); VAR_14 = inb(VAR_5); return ((VAR_14 << 8) | VAR_13); } int FUNC_10(int VAR_15, int VAR_16) { uint8_t VAR_17; /* * Only first 8 interrupt is supported. * Don't allow setup for the slave link. */ if (VAR_15 >= 8 || VAR_15 == 2) return VAR_18; VAR_17 = ~(1 << VAR_15); /* * Re-initialize master 8259: * reset; prog 4 bytes, single ICU, edge triggered */ outb(VAR_3, 0x13); outb(VAR_3 + 1, VAR_16); /* start vector (unused) */ outb(VAR_3 + 1, 0x00); /* ignore slave */ outb(VAR_3 + 1, 0x03); /* auto EOI, 8086 */ outb(VAR_3 + 1, VAR_17); return 0; } void icu_reinit_noioapic(void) { CLASS_0 VAR_7; FUNC_1(MachIntrABI.VAR_8 == VAR_9); FUNC_1(VAR_2 == 0); FUNC_11(); VAR_7 = FUNC_2(); FUNC_3(); /* Leave interrupts masked */ outb(VAR_3 + ICU_IMR_OFFSET, 0xff); outb(VAR_5 + ICU_IMR_OFFSET, 0xff); FUNC_0(); MachIntrABI.FUNC_12(); FUNC_5(VAR_7); MachIntrABI.cleanup(); crit_exit(); }
0.807274
{'IMPORT_0': 'opt_auto_eoi.h', 'IMPORT_1': 'sys/param.h', 'IMPORT_2': 'sys/systm.h', 'IMPORT_3': 'sys/machintr.h', 'IMPORT_4': 'sys/interrupt.h', 'IMPORT_5': 'sys/thread2.h', 'IMPORT_6': 'cpu/cpufunc.h', 'IMPORT_7': 'machine/intr_machdep.h', 'IMPORT_8': 'machine_base/icu/icu.h', 'IMPORT_9': 'machine_base/icu/icu_var.h', 'IMPORT_10': 'machine_base/apic/ioapic.h', 'FUNC_0': 'icu_init', 'VAR_0': 'AUTO_EOI_1', 'VAR_1': 'auto_eoi', 'VAR_2': 'ioapic_enable', 'VAR_3': 'IO_ICU1', 'VAR_4': 'IDT_OFFSET', 'VAR_5': 'IO_ICU2', 'VAR_6': 'AUTO_EOI_2', 'CLASS_0': 'register_t', 'VAR_7': 'ef', 'FUNC_1': 'KKASSERT', 'VAR_8': 'type', 'VAR_9': 'MACHINTR_ICU', 'FUNC_2': 'read_rflags', 'FUNC_3': 'cpu_disable_intr', 'FUNC_4': 'setdefault', 'FUNC_5': 'write_rflags', 'FUNC_6': 'icu_reinit', 'VAR_10': 'foo', 'VAR_11': 'i', 'VAR_12': 'MAX_HARDINTS', 'FUNC_7': 'count_registered_ints', 'FUNC_8': 'machintr_intr_enable', 'CLASS_1': 'intrmask_t', 'FUNC_9': 'icu_irq_pending', 'CLASS_2': 'u_char', 'VAR_13': 'irr1', 'VAR_14': 'irr2', 'FUNC_10': 'icu_ioapic_extint', 'VAR_15': 'irq', 'VAR_16': 'vec', 'VAR_17': 'mask', 'VAR_18': 'EOPNOTSUPP', 'FUNC_11': 'crit_enter', 'FUNC_12': 'stabilize'}
/****************************************************************************** * drivers/wireless/spirit/lib/spirit_management.c * The management layer for SPIRIT1 library. * * Copyright(c) 2015 STMicroelectronics * Author: VMA division - AMS * Version 3.2.2 08-July-2015 * * Adapted for NuttX by: * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ******************************************************************************/ /****************************************************************************** * Included Files ******************************************************************************/ #include <sys/types.h> #include <assert.h> #include <errno.h> #include "spirit_commands.h" #include "spirit_spi.h" #include "spirit_radio.h" #include "spirit_calibration.h" #include "spirit_management.h" /****************************************************************************** * Pre-processor Definitions ******************************************************************************/ #define COMMUNICATION_STATE_TX 0 #define COMMUNICATION_STATE_RX 1 #define COMMUNICATION_STATE_NONE 2 /****************************************************************************** * Private Data ******************************************************************************/ /* Factor is: B/2 used in the formula for SYNTH word calculation */ static const uint8_t g_vectc_bhalf[4] = { (HIGH_BAND_FACTOR / 2), (MIDDLE_BAND_FACTOR / 2), (LOW_BAND_FACTOR / 2), (VERY_LOW_BAND_FACTOR / 2) }; /* BS value to write in the SYNT0 register according to the selected band */ static const uint8_t g_vectc_bandreg[4] = { SYNT0_BS_6, SYNT0_BS_12, SYNT0_BS_16, SYNT0_BS_32 }; /* BS value to write in the SYNT0 register according to the selected band */ /****************************************************************************** * Private Functions ******************************************************************************/ /****************************************************************************** * Name: spirit_management_set_basefrequency * * Description: * spirit_management_set_basefrequency function only used in * spirit_managment_wavco_calibration. * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * fbase - the base carrier frequency expressed in Hz as unsigned word. * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ static int spirit_management_set_basefrequency(FAR struct spirit_library_s *spirit, uint32_t fbase) { int32_t foffset; uint32_t synthword; uint32_t chspace; uint32_t fc; uint8_t band = 0; uint8_t anaregs[4]; uint8_t wcp; uint8_t chnum; uint8_t refdiv; /* Check the parameter */ DEBUGASSERT(IS_FREQUENCY_BAND(fbase)); /* Search the operating band */ if (IS_FREQUENCY_BAND_HIGH(fbase)) { band = HIGH_BAND; } else if (IS_FREQUENCY_BAND_MIDDLE(fbase)) { band = MIDDLE_BAND; } else if (IS_FREQUENCY_BAND_LOW(fbase)) { band = LOW_BAND; } else if (IS_FREQUENCY_BAND_VERY_LOW(fbase)) { band = VERY_LOW_BAND; } foffset = spirit_radio_get_foffset(spirit); chspace = spirit_radio_get_chspace(spirit); chnum = spirit_radio_get_channel(spirit); /* Calculates the channel center frequency */ fc = fbase + foffset + chspace * chnum; /* Reads the reference divider */ refdiv = (uint8_t)spirit_radio_get_refdiv(spirit) + 1; switch (band) { case VERY_LOW_BAND: if (fc < 161281250) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case LOW_BAND: if (fc < 322562500) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case MIDDLE_BAND: if (fc < 430083334) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case HIGH_BAND: if (fc < 860166667) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } } /* Search the VCO charge pump word and set the corresponding register */ wcp = spirit_radio_search_wcp(spirit, fc); synthword = (uint32_t) (fbase * ((double)(FBASE_DIVIDER * refdiv * g_vectc_bhalf[band]) / spirit->xtal_frequency)); /* Build the array of registers values for the analog part */ anaregs[0] = (uint8_t)(((synthword >> 21) & 0x0000001f) | (wcp << 5)); anaregs[1] = (uint8_t)((synthword >> 13) & 0x000000ff); anaregs[2] = (uint8_t)((synthword >> 5) & 0x000000ff); anaregs[3] = (uint8_t)(((synthword & 0x0000001f) << 3) | g_vectc_bandreg[band]); /* Configures the needed Analog Radio registers */ return spirit_reg_write(spirit, SYNT3_BASE, anaregs, 4); } /****************************************************************************** * Public Functions ******************************************************************************/ /****************************************************************************** * Name: spirit_managment_wavco_calibration * * Description: * Perform VCO calbration WA. * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ uint8_t spirit_managment_wavco_calibration(FAR struct spirit_library_s *spirit) { uint32_t basefreq; uint8_t vco_rxword; uint8_t vco_txword; uint8_t tmp; bool restore = false; bool standby = false; int ret; /* Enable the reference divider if the XTAL is between 48 and 52 MHz */ if (spirit->xtal_frequency > DOUBLE_XTAL_THR) { if (spirit_radio_get_refdiv(spirit) == S_DISABLE) { restore = true; basefreq = spirit_radio_get_basefrequency(spirit); ret = spirit_radio_set_refdiv(spirit, S_ENABLE); ret = spirit_management_set_basefrequency(spirit, basefreq); if (ret < 0) { return ret; } } } basefreq = spirit_radio_get_basefrequency(spirit); /* Increase the VCO current */ tmp = 0x19; ret = spirit_reg_write(spirit, 0xa1, &tmp, 1); if (ret < 0) { return ret; } ret = spirit_calib_enable_vco(spirit, S_ENABLE); if (ret < 0) { return ret; } ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == MC_STATE_STANDBY) { standby = true; ret = spirit_command(spirit, CMD_READY); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_READY); } ret = spirit_command(spirit, CMD_LOCKTX); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_LOCK); vco_txword = spirit_calib_get_vcocal(spirit); ret = spirit_command(spirit, CMD_READY); if (ret < 0) { return ret; } ret = spirit_waitstatus(spirit, MC_STATE_READY, 5000); if (ret < 0) { return ret; } ret = spirit_command(spirit, CMD_LOCKRX); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_LOCK); vco_rxword = spirit_calib_get_vcocal(spirit); ret = spirit_command(spirit, CMD_READY); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return 1; } } while (spirit->u.state.MC_STATE != MC_STATE_READY); if (standby) { ret = spirit_command(spirit, CMD_STANDBY); if (ret < 0) { return ret; } } ret = spirit_calib_enable_vco(spirit, S_DISABLE); if (ret < 0) { return ret; } /* Disable the reference divider if the XTAL is between 48 and 52 MHz */ if (restore) { ret = spirit_radio_set_refdiv(spirit, S_DISABLE); if (ret < 0) { return ret; } ret = spirit_management_set_basefrequency(spirit, basefreq); if (ret < 0) { return ret; } } /* Restore the VCO current */ tmp = 0x11; ret = spirit_reg_write(spirit, 0xa1, &tmp, 1); if (ret < 0) { return ret; } spirit_calib_set_vcotxcal(spirit, vco_txword); spirit_calib_set_vcorxcal(spirit, vco_rxword); return OK; } /****************************************************************************** * Name: spirit_management_txstrobe * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int spirit_management_txstrobe(FAR struct spirit_library_s *spirit) { if (spirit->commstate != COMMUNICATION_STATE_TX) { uint8_t tmp; int ret; /* To achive the max output power */ if (spirit->commfrequency >= 150000000 && spirit->commfrequency <= 470000000) { /* Optimal setting for Tx mode only */ ret = spirit_radio_set_outputload(spirit, LOAD_3_6_PF); } else { /* Optimal setting for Tx mode only */ ret = spirit_radio_set_outputload(spirit, LOAD_0_PF); } if (ret < 0) { return ret; } /* Enable VCO_L buffer */ tmp = 0x11; ret = spirit_reg_write(spirit, 0xa9, &tmp, 1); if (ret < 0) { return ret; } /* Set SMPS switching frequency */ tmp = 0x20; ret = spirit_reg_write(spirit, PM_CONFIG1_BASE, &tmp, 1); if (ret < 0) { return ret; } spirit->commstate = COMMUNICATION_STATE_TX; } return OK; } /****************************************************************************** * Name: spirit_management_rxstrobe * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int spirit_management_rxstrobe(FAR struct spirit_library_s *spirit) { uint8_t tmp; int ret; if (spirit->commstate != COMMUNICATION_STATE_RX) { /* Set SMPS switching frequency */ tmp = 0x98; ret = spirit_reg_write(spirit, PM_CONFIG1_BASE, &tmp, 1); if (ret < 0) { return ret; } /* Set the correct CWC parameter */ ret = spirit_radio_set_outputload(spirit, LOAD_0_PF); if (ret < 0) { return ret; } spirit->commstate = COMMUNICATION_STATE_RX; } return OK; } /****************************************************************************** * Name: spirit_management_waextracurrent * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int spirit_management_waextracurrent(FAR struct spirit_library_s *spirit) { uint8_t tmp; int ret; tmp = 0xca; ret = spirit_reg_write(spirit, 0xb2, &tmp, 1); if (ret < 0) { return ret; } tmp = 0x04; ret = spirit_reg_write(spirit, 0xa8, &tmp, 1); if (ret < 0) { return ret; } /* Just a read to lose a few more microseconds */ ret = spirit_reg_read(spirit, 0xa8, &tmp, 1); if (ret < 0) { return ret; } tmp = 0x00; ret = spirit_reg_write(spirit, 0xa8, &tmp, 1); return ret; } /****************************************************************************** * Name: spirit_management_initcommstate * * Description: * Initialize communication state * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * frequency - Desired communication frequency * * Returned Value: * None * ******************************************************************************/ void spirit_management_initcommstate(FAR struct spirit_library_s *spirit, uint32_t frequency) { spirit->commstate = COMMUNICATION_STATE_NONE; spirit->commfrequency = frequency; }
/****************************************************************************** * drivers/wireless/spirit/lib/spirit_management.c * The management layer for SPIRIT1 library. * * Copyright(c) 2015 STMicroelectronics * Author: VMA division - AMS * Version 3.2.2 08-July-2015 * * Adapted for NuttX by: * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ******************************************************************************/ /****************************************************************************** * Included Files ******************************************************************************/ #include <sys/types.h> #include <assert.h> #include <errno.h> #include "spirit_commands.h" #include "spirit_spi.h" #include "spirit_radio.h" #include "IMPORT_0" #include "IMPORT_1" /****************************************************************************** * Pre-processor Definitions ******************************************************************************/ #define COMMUNICATION_STATE_TX 0 #define COMMUNICATION_STATE_RX 1 #define COMMUNICATION_STATE_NONE 2 /****************************************************************************** * Private Data ******************************************************************************/ /* Factor is: B/2 used in the formula for SYNTH word calculation */ static const uint8_t g_vectc_bhalf[4] = { (HIGH_BAND_FACTOR / 2), (MIDDLE_BAND_FACTOR / 2), (LOW_BAND_FACTOR / 2), (VERY_LOW_BAND_FACTOR / 2) }; /* BS value to write in the SYNT0 register according to the selected band */ static const uint8_t g_vectc_bandreg[4] = { SYNT0_BS_6, SYNT0_BS_12, SYNT0_BS_16, SYNT0_BS_32 }; /* BS value to write in the SYNT0 register according to the selected band */ /****************************************************************************** * Private Functions ******************************************************************************/ /****************************************************************************** * Name: spirit_management_set_basefrequency * * Description: * spirit_management_set_basefrequency function only used in * spirit_managment_wavco_calibration. * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * fbase - the base carrier frequency expressed in Hz as unsigned word. * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ static int spirit_management_set_basefrequency(FAR struct spirit_library_s *spirit, uint32_t fbase) { int32_t VAR_0; uint32_t synthword; uint32_t chspace; uint32_t VAR_1; uint8_t VAR_2 = 0; uint8_t VAR_3[4]; uint8_t wcp; uint8_t chnum; uint8_t refdiv; /* Check the parameter */ DEBUGASSERT(IS_FREQUENCY_BAND(fbase)); /* Search the operating band */ if (IS_FREQUENCY_BAND_HIGH(fbase)) { VAR_2 = HIGH_BAND; } else if (IS_FREQUENCY_BAND_MIDDLE(fbase)) { VAR_2 = MIDDLE_BAND; } else if (IS_FREQUENCY_BAND_LOW(fbase)) { VAR_2 = LOW_BAND; } else if (IS_FREQUENCY_BAND_VERY_LOW(fbase)) { VAR_2 = VAR_4; } VAR_0 = spirit_radio_get_foffset(spirit); chspace = spirit_radio_get_chspace(spirit); chnum = spirit_radio_get_channel(spirit); /* Calculates the channel center frequency */ VAR_1 = fbase + VAR_0 + chspace * chnum; /* Reads the reference divider */ refdiv = (uint8_t)spirit_radio_get_refdiv(spirit) + 1; switch (VAR_2) { case VAR_4: if (VAR_1 < 161281250) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case LOW_BAND: if (VAR_1 < 322562500) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case MIDDLE_BAND: if (VAR_1 < 430083334) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } break; case HIGH_BAND: if (VAR_1 < 860166667) { spirit_calib_select_vco(spirit, VCO_L); } else { spirit_calib_select_vco(spirit, VCO_H); } } /* Search the VCO charge pump word and set the corresponding register */ wcp = spirit_radio_search_wcp(spirit, VAR_1); synthword = (uint32_t) (fbase * ((double)(FBASE_DIVIDER * refdiv * g_vectc_bhalf[VAR_2]) / spirit->VAR_5)); /* Build the array of registers values for the analog part */ VAR_3[0] = (uint8_t)(((synthword >> 21) & 0x0000001f) | (wcp << 5)); VAR_3[1] = (uint8_t)((synthword >> 13) & 0x000000ff); VAR_3[2] = (uint8_t)((synthword >> 5) & 0x000000ff); VAR_3[3] = (uint8_t)(((synthword & 0x0000001f) << 3) | g_vectc_bandreg[VAR_2]); /* Configures the needed Analog Radio registers */ return spirit_reg_write(spirit, VAR_6, VAR_3, 4); } /****************************************************************************** * Public Functions ******************************************************************************/ /****************************************************************************** * Name: spirit_managment_wavco_calibration * * Description: * Perform VCO calbration WA. * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ uint8_t spirit_managment_wavco_calibration(FAR struct spirit_library_s *spirit) { uint32_t basefreq; uint8_t VAR_7; uint8_t VAR_8; uint8_t tmp; bool restore = false; bool standby = false; int ret; /* Enable the reference divider if the XTAL is between 48 and 52 MHz */ if (spirit->VAR_5 > DOUBLE_XTAL_THR) { if (spirit_radio_get_refdiv(spirit) == S_DISABLE) { restore = true; basefreq = spirit_radio_get_basefrequency(spirit); ret = spirit_radio_set_refdiv(spirit, S_ENABLE); ret = spirit_management_set_basefrequency(spirit, basefreq); if (ret < 0) { return ret; } } } basefreq = spirit_radio_get_basefrequency(spirit); /* Increase the VCO current */ tmp = 0x19; ret = spirit_reg_write(spirit, 0xa1, &tmp, 1); if (ret < 0) { return ret; } ret = spirit_calib_enable_vco(spirit, S_ENABLE); if (ret < 0) { return ret; } ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == MC_STATE_STANDBY) { standby = true; ret = FUNC_0(spirit, CMD_READY); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_READY); } ret = FUNC_0(spirit, VAR_9); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_LOCK); VAR_8 = spirit_calib_get_vcocal(spirit); ret = FUNC_0(spirit, CMD_READY); if (ret < 0) { return ret; } ret = spirit_waitstatus(spirit, MC_STATE_READY, 5000); if (ret < 0) { return ret; } ret = FUNC_0(spirit, CMD_LOCKRX); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return -EIO; } } while (spirit->u.state.MC_STATE != MC_STATE_LOCK); VAR_7 = spirit_calib_get_vcocal(spirit); ret = FUNC_0(spirit, CMD_READY); if (ret < 0) { return ret; } do { ret = spirit_update_status(spirit); if (ret < 0) { return ret; } if (spirit->u.state.MC_STATE == 0x13) { return 1; } } while (spirit->u.state.MC_STATE != MC_STATE_READY); if (standby) { ret = FUNC_0(spirit, CMD_STANDBY); if (ret < 0) { return ret; } } ret = spirit_calib_enable_vco(spirit, S_DISABLE); if (ret < 0) { return ret; } /* Disable the reference divider if the XTAL is between 48 and 52 MHz */ if (restore) { ret = spirit_radio_set_refdiv(spirit, S_DISABLE); if (ret < 0) { return ret; } ret = spirit_management_set_basefrequency(spirit, basefreq); if (ret < 0) { return ret; } } /* Restore the VCO current */ tmp = 0x11; ret = spirit_reg_write(spirit, 0xa1, &tmp, 1); if (ret < 0) { return ret; } spirit_calib_set_vcotxcal(spirit, VAR_8); spirit_calib_set_vcorxcal(spirit, VAR_7); return OK; } /****************************************************************************** * Name: spirit_management_txstrobe * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int FUNC_1(FAR struct spirit_library_s *spirit) { if (spirit->commstate != COMMUNICATION_STATE_TX) { uint8_t tmp; int ret; /* To achive the max output power */ if (spirit->VAR_10 >= 150000000 && spirit->VAR_10 <= 470000000) { /* Optimal setting for Tx mode only */ ret = FUNC_2(spirit, LOAD_3_6_PF); } else { /* Optimal setting for Tx mode only */ ret = FUNC_2(spirit, LOAD_0_PF); } if (ret < 0) { return ret; } /* Enable VCO_L buffer */ tmp = 0x11; ret = spirit_reg_write(spirit, 0xa9, &tmp, 1); if (ret < 0) { return ret; } /* Set SMPS switching frequency */ tmp = 0x20; ret = spirit_reg_write(spirit, PM_CONFIG1_BASE, &tmp, 1); if (ret < 0) { return ret; } spirit->commstate = COMMUNICATION_STATE_TX; } return OK; } /****************************************************************************** * Name: spirit_management_rxstrobe * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int spirit_management_rxstrobe(FAR struct spirit_library_s *spirit) { uint8_t tmp; int ret; if (spirit->commstate != COMMUNICATION_STATE_RX) { /* Set SMPS switching frequency */ tmp = 0x98; ret = spirit_reg_write(spirit, PM_CONFIG1_BASE, &tmp, 1); if (ret < 0) { return ret; } /* Set the correct CWC parameter */ ret = FUNC_2(spirit, LOAD_0_PF); if (ret < 0) { return ret; } spirit->commstate = COMMUNICATION_STATE_RX; } return OK; } /****************************************************************************** * Name: spirit_management_waextracurrent * * Description: * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * * Returned Value: * Zero (OK) is returned on success; A negated errno value is returned on * any failure. * ******************************************************************************/ int spirit_management_waextracurrent(FAR struct spirit_library_s *spirit) { uint8_t tmp; int ret; tmp = 0xca; ret = spirit_reg_write(spirit, 0xb2, &tmp, 1); if (ret < 0) { return ret; } tmp = 0x04; ret = spirit_reg_write(spirit, 0xa8, &tmp, 1); if (ret < 0) { return ret; } /* Just a read to lose a few more microseconds */ ret = FUNC_3(spirit, 0xa8, &tmp, 1); if (ret < 0) { return ret; } tmp = 0x00; ret = spirit_reg_write(spirit, 0xa8, &tmp, 1); return ret; } /****************************************************************************** * Name: spirit_management_initcommstate * * Description: * Initialize communication state * * Input Parameters: * spirit - Reference to a Spirit library state structure instance * frequency - Desired communication frequency * * Returned Value: * None * ******************************************************************************/ void spirit_management_initcommstate(FAR struct spirit_library_s *spirit, uint32_t frequency) { spirit->commstate = COMMUNICATION_STATE_NONE; spirit->VAR_10 = frequency; }
0.187523
{'IMPORT_0': 'spirit_calibration.h', 'IMPORT_1': 'spirit_management.h', 'VAR_0': 'foffset', 'VAR_1': 'fc', 'VAR_2': 'band', 'VAR_3': 'anaregs', 'VAR_4': 'VERY_LOW_BAND', 'VAR_5': 'xtal_frequency', 'VAR_6': 'SYNT3_BASE', 'VAR_7': 'vco_rxword', 'VAR_8': 'vco_txword', 'FUNC_0': 'spirit_command', 'VAR_9': 'CMD_LOCKTX', 'FUNC_1': 'spirit_management_txstrobe', 'VAR_10': 'commfrequency', 'FUNC_2': 'spirit_radio_set_outputload', 'FUNC_3': 'spirit_reg_read'}
/* ** Author: <NAME>, <EMAIL> ** Date: 15 December 1997 ** File: viterbi.c ** Purpose: Viterbi algorithm for computing the maximum likelihood ** state sequence and probablity of observing a sequence ** given the model. ** Organization: University of Maryland ** ** $Id: viterbi.c,v 1.1 1999/05/06 05:25:37 kanungo Exp kanungo $ */ #include <math.h> #include "hmm.h" #include "nrutil.h" static char rcsid[] = "$Id: viterbi.c,v 1.1 1999/05/06 05:25:37 kanungo Exp kanungo $"; #define VITHUGE 100000000000.0 void Viterbi(HMM *phmm, int T, int *O, double **delta, int **psi, int *q, double *pprob) { int i, j; /* state indices */ int t; /* time index */ int maxvalind; double maxval, val; /* 1. Initialization */ for (i = 1; i <= phmm->N; i++) { delta[1][i] = phmm->pi[i] * (phmm->B[i][O[1]]); psi[1][i] = 0; } /* 2. Recursion */ for (t = 2; t <= T; t++) { for (j = 1; j <= phmm->N; j++) { maxval = 0.0; maxvalind = 1; for (i = 1; i <= phmm->N; i++) { val = delta[t-1][i]*(phmm->A[i][j]); if (val > maxval) { maxval = val; maxvalind = i; } } delta[t][j] = maxval*(phmm->B[j][O[t]]); psi[t][j] = maxvalind; } } /* 3. Termination */ *pprob = 0.0; q[T] = 1; for (i = 1; i <= phmm->N; i++) { if (delta[T][i] > *pprob) { *pprob = delta[T][i]; q[T] = i; } } /* 4. Path (state sequence) backtracking */ for (t = T - 1; t >= 1; t--) q[t] = psi[t+1][q[t+1]]; } void ViterbiLog(HMM *phmm, int T, int *O, double **delta, int **psi, int *q, double *pprob) { int i, j; /* state indices */ int t; /* time index */ int maxvalind; double maxval, val; double **biot; /* 0. Preprocessing */ for (i = 1; i <= phmm->N; i++) phmm->pi[i] = log(phmm->pi[i]); for (i = 1; i <= phmm->N; i++) for (j = 1; j <= phmm->N; j++) { phmm->A[i][j] = log(phmm->A[i][j]); } biot = dmatrix(1, phmm->N, 1, T); for (i = 1; i <= phmm->N; i++) for (t = 1; t <= T; t++) { biot[i][t] = log(phmm->B[i][O[t]]); } /* 1. Initialization */ for (i = 1; i <= phmm->N; i++) { delta[1][i] = phmm->pi[i] + biot[i][1]; psi[1][i] = 0; } /* 2. Recursion */ for (t = 2; t <= T; t++) { for (j = 1; j <= phmm->N; j++) { maxval = -VITHUGE; maxvalind = 1; for (i = 1; i <= phmm->N; i++) { val = delta[t-1][i] + (phmm->A[i][j]); if (val > maxval) { maxval = val; maxvalind = i; } } delta[t][j] = maxval + biot[j][t]; psi[t][j] = maxvalind; } } /* 3. Termination */ *pprob = -VITHUGE; q[T] = 1; for (i = 1; i <= phmm->N; i++) { if (delta[T][i] > *pprob) { *pprob = delta[T][i]; q[T] = i; } } /* 4. Path (state sequence) backtracking */ for (t = T - 1; t >= 1; t--) q[t] = psi[t+1][q[t+1]]; }
/* ** Author: <NAME>, <EMAIL> ** Date: 15 December 1997 ** File: viterbi.c ** Purpose: Viterbi algorithm for computing the maximum likelihood ** state sequence and probablity of observing a sequence ** given the model. ** Organization: University of Maryland ** ** $Id: viterbi.c,v 1.1 1999/05/06 05:25:37 kanungo Exp kanungo $ */ #include <math.h> #include "IMPORT_0" #include "IMPORT_1" static char rcsid[] = "$Id: viterbi.c,v 1.1 1999/05/06 05:25:37 kanungo Exp kanungo $"; #define VAR_0 100000000000.0 void FUNC_0(HMM *VAR_1, int VAR_2, int *VAR_3, double **VAR_4, int **VAR_5, int *q, double *pprob) { int i, j; /* state indices */ int VAR_6; /* time index */ int maxvalind; double VAR_7, VAR_8; /* 1. Initialization */ for (i = 1; i <= VAR_1->VAR_9; i++) { VAR_4[1][i] = VAR_1->VAR_10[i] * (VAR_1->VAR_11[i][VAR_3[1]]); VAR_5[1][i] = 0; } /* 2. Recursion */ for (VAR_6 = 2; VAR_6 <= VAR_2; VAR_6++) { for (j = 1; j <= VAR_1->VAR_9; j++) { VAR_7 = 0.0; maxvalind = 1; for (i = 1; i <= VAR_1->VAR_9; i++) { VAR_8 = VAR_4[VAR_6-1][i]*(VAR_1->A[i][j]); if (VAR_8 > VAR_7) { VAR_7 = VAR_8; maxvalind = i; } } VAR_4[VAR_6][j] = VAR_7*(VAR_1->VAR_11[j][VAR_3[VAR_6]]); VAR_5[VAR_6][j] = maxvalind; } } /* 3. Termination */ *pprob = 0.0; q[VAR_2] = 1; for (i = 1; i <= VAR_1->VAR_9; i++) { if (VAR_4[VAR_2][i] > *pprob) { *pprob = VAR_4[VAR_2][i]; q[VAR_2] = i; } } /* 4. Path (state sequence) backtracking */ for (VAR_6 = VAR_2 - 1; VAR_6 >= 1; VAR_6--) q[VAR_6] = VAR_5[VAR_6+1][q[VAR_6+1]]; } void FUNC_1(HMM *VAR_1, int VAR_2, int *VAR_3, double **VAR_4, int **VAR_5, int *q, double *pprob) { int i, j; /* state indices */ int VAR_6; /* time index */ int maxvalind; double VAR_7, VAR_8; double **biot; /* 0. Preprocessing */ for (i = 1; i <= VAR_1->VAR_9; i++) VAR_1->VAR_10[i] = FUNC_2(VAR_1->VAR_10[i]); for (i = 1; i <= VAR_1->VAR_9; i++) for (j = 1; j <= VAR_1->VAR_9; j++) { VAR_1->A[i][j] = FUNC_2(VAR_1->A[i][j]); } biot = FUNC_3(1, VAR_1->VAR_9, 1, VAR_2); for (i = 1; i <= VAR_1->VAR_9; i++) for (VAR_6 = 1; VAR_6 <= VAR_2; VAR_6++) { biot[i][VAR_6] = FUNC_2(VAR_1->VAR_11[i][VAR_3[VAR_6]]); } /* 1. Initialization */ for (i = 1; i <= VAR_1->VAR_9; i++) { VAR_4[1][i] = VAR_1->VAR_10[i] + biot[i][1]; VAR_5[1][i] = 0; } /* 2. Recursion */ for (VAR_6 = 2; VAR_6 <= VAR_2; VAR_6++) { for (j = 1; j <= VAR_1->VAR_9; j++) { VAR_7 = -VAR_0; maxvalind = 1; for (i = 1; i <= VAR_1->VAR_9; i++) { VAR_8 = VAR_4[VAR_6-1][i] + (VAR_1->A[i][j]); if (VAR_8 > VAR_7) { VAR_7 = VAR_8; maxvalind = i; } } VAR_4[VAR_6][j] = VAR_7 + biot[j][VAR_6]; VAR_5[VAR_6][j] = maxvalind; } } /* 3. Termination */ *pprob = -VAR_0; q[VAR_2] = 1; for (i = 1; i <= VAR_1->VAR_9; i++) { if (VAR_4[VAR_2][i] > *pprob) { *pprob = VAR_4[VAR_2][i]; q[VAR_2] = i; } } /* 4. Path (state sequence) backtracking */ for (VAR_6 = VAR_2 - 1; VAR_6 >= 1; VAR_6--) q[VAR_6] = VAR_5[VAR_6+1][q[VAR_6+1]]; }
0.688583
{'IMPORT_0': 'hmm.h', 'IMPORT_1': 'nrutil.h', 'VAR_0': 'VITHUGE', 'FUNC_0': 'Viterbi', 'VAR_1': 'phmm', 'VAR_2': 'T', 'VAR_3': 'O', 'VAR_4': 'delta', 'VAR_5': 'psi', 'VAR_6': 't', 'VAR_7': 'maxval', 'VAR_8': 'val', 'VAR_9': 'N', 'VAR_10': 'pi', 'VAR_11': 'B', 'FUNC_1': 'ViterbiLog', 'FUNC_2': 'log', 'FUNC_3': 'dmatrix'}
#include <axe/iter.h> #include <axe/box.h> void ax_iter_swap(const ax_iter *it1, const ax_iter *it2) { ax_box *box = (ax_box *)it1->owner; const ax_stuff_trait *tr = ax_box_elem_tr(box); tr->swap(ax_iter_get(it1), ax_iter_get(it2), tr->size); } ax_citer ax_citer_npos(const ax_citer *it) { static int dummy; return (ax_citer) { .owner = it->owner, .tr = it->tr, .point = &dummy }; }
#include <axe/iter.h> #include <axe/box.h> void ax_iter_swap(const ax_iter *it1, const ax_iter *it2) { ax_box *box = (ax_box *)it1->owner; const ax_stuff_trait *tr = ax_box_elem_tr(box); tr->swap(ax_iter_get(it1), ax_iter_get(it2), tr->size); } ax_citer ax_citer_npos(const ax_citer *it) { static int dummy; return (ax_citer) { .owner = it->owner, .tr = it->tr, .point = &dummy }; }
0.000903
{}
/*************************************************************************** M.A.M.E.32 - Multiple Arcade Machine Emulator for Win32 Win32 Portions Copyright (C) 1997-2003 <NAME> and <NAME> This file is part of MAME32, and may only be used, modified and distributed under the terms of the MAME license, in "readme.txt". By continuing to use, modify or distribute this file you indicate that you have read the license and understand and accept it fully. ***************************************************************************/ /*************************************************************************** dialogs.c Dialog box procedures go here ***************************************************************************/ #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <windowsx.h> #include <shellapi.h> #include <commctrl.h> #include <string.h> #include "Bitmask.h" #include "TreeView.h" #include "M32Util.h" #include "resource.h" #include "Directories.h" #include "options.h" #include "Splitters.h" #include "help.h" #include "audit32.h" #include "Screenshot.h" #include "MAME32.h" #include "Properties.h" #include "dialogs.h" #ifdef _MSC_VER #include "msc.h" #endif #define FILTERTEXT_LEN 256 static char g_FilterText[FILTERTEXT_LEN]; #define NUM_EXCLUSIONS 9 /* Pairs of filters that exclude each other */ DWORD filterExclusion[NUM_EXCLUSIONS] = { IDC_FILTER_CLONES, IDC_FILTER_ORIGINALS, IDC_FILTER_NONWORKING, IDC_FILTER_WORKING, IDC_FILTER_UNAVAILABLE, IDC_FILTER_AVAILABLE, IDC_FILTER_RASTER, IDC_FILTER_VECTOR }; static void DisableFilterControls(HWND hWnd, LPFOLDERDATA lpFilterRecord, LPFILTER_ITEM lpFilterItem, DWORD dwFlags); static void EnableFilterExclusions(HWND hWnd, DWORD dwCtrlID); static DWORD ValidateFilters(LPFOLDERDATA lpFilterRecord, DWORD dwFlags); /***************************************************************************/ const char * GetFilterText(void) { return g_FilterText; } INT_PTR CALLBACK ResetDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { BOOL resetFilters = FALSE; BOOL resetGames = FALSE; BOOL resetUI = FALSE; BOOL resetDefaults = FALSE; switch (Msg) { case WM_INITDIALOG: return TRUE; case WM_HELP: /* User clicked the ? from the upper right on a control */ HelpFunction(((LPHELPINFO)lParam)->hItemHandle, MAME32CONTEXTHELP, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, MAME32CONTEXTHELP, HH_TP_HELP_CONTEXTMENU, GetHelpIDs()); break; case WM_COMMAND : switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDOK : resetFilters = Button_GetCheck(GetDlgItem(hDlg, IDC_RESET_FILTERS)); resetGames = Button_GetCheck(GetDlgItem(hDlg, IDC_RESET_GAMES)); resetDefaults = Button_GetCheck(GetDlgItem(hDlg, IDC_RESET_DEFAULT)); resetUI = Button_GetCheck(GetDlgItem(hDlg, IDC_RESET_UI)); if (resetFilters || resetGames || resetUI || resetDefaults) { char temp[200]; strcpy(temp, MAME32NAME " will now reset the selected\n"); strcat(temp, "items to the original, installation\n"); strcat(temp, "settings then exit.\n\n"); strcat(temp, "The new settings will take effect\n"); strcat(temp, "the next time " MAME32NAME " is run.\n\n"); strcat(temp, "Do you wish to continue?"); if (MessageBox(hDlg, temp, "Restore Settings", IDOK) == IDOK) { if (resetFilters) ResetFilters(); if (resetUI) ResetGUI(); if (resetDefaults) ResetGameDefaults(); if (resetGames) ResetAllGameOptions(); EndDialog(hDlg, 1); return TRUE; } } /* Fall through if no options were selected * or the user hit cancel in the popup dialog. */ case IDCANCEL : EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK InterfaceDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { char pcscreenshot[100]; switch (Msg) { case WM_INITDIALOG: Button_SetCheck(GetDlgItem(hDlg,IDC_START_GAME_CHECK),GetGameCheck()); Button_SetCheck(GetDlgItem(hDlg,IDC_JOY_GUI),GetJoyGUI()); Button_SetCheck(GetDlgItem(hDlg,IDC_BROADCAST),GetBroadcast()); Button_SetCheck(GetDlgItem(hDlg,IDC_RANDOM_BG),GetRandomBackground()); Button_SetCheck(GetDlgItem(hDlg,IDC_SKIP_DISCLAIMER),GetSkipDisclaimer()); Button_SetCheck(GetDlgItem(hDlg,IDC_SKIP_GAME_INFO),GetSkipGameInfo()); Button_SetCheck(GetDlgItem(hDlg,IDC_HIGH_PRIORITY),GetHighPriority()); Button_SetCheck(GetDlgItem(hDlg,IDC_HIDE_MOUSE),GetHideMouseOnStartup()); _itoa( GetCycleScreenshot(), pcscreenshot, 10); Edit_SetText(GetDlgItem(hDlg, IDC_CYCLETIMESEC), pcscreenshot); if( GetCycleScreenshot() <= 0 ) { Button_SetCheck(GetDlgItem(hDlg,IDC_CYCLE_SCREENSHOT),FALSE); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIME), FALSE); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIMESEC), FALSE); } else { Button_SetCheck(GetDlgItem(hDlg,IDC_CYCLE_SCREENSHOT),TRUE); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIME), TRUE); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIMESEC), TRUE); } Button_SetCheck(GetDlgItem(hDlg,IDC_STRETCH_SCREENSHOT_LARGER), GetStretchScreenShotLarger()); return TRUE; case WM_HELP: /* User clicked the ? from the upper right on a control */ HelpFunction(((LPHELPINFO)lParam)->hItemHandle, MAME32CONTEXTHELP, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, MAME32CONTEXTHELP, HH_TP_HELP_CONTEXTMENU, GetHelpIDs()); break; case WM_COMMAND : switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDC_CYCLE_SCREENSHOT: { BOOL bCheck = Button_GetCheck(GetDlgItem(hDlg, IDC_CYCLE_SCREENSHOT)); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIME), bCheck); EnableWindow(GetDlgItem(hDlg, IDC_CYCLETIMESEC), bCheck); return TRUE; } case IDOK : { BOOL checked; SetGameCheck(Button_GetCheck(GetDlgItem(hDlg, IDC_START_GAME_CHECK))); SetJoyGUI(Button_GetCheck(GetDlgItem(hDlg, IDC_JOY_GUI))); SetBroadcast(Button_GetCheck(GetDlgItem(hDlg, IDC_BROADCAST))); SetRandomBackground(Button_GetCheck(GetDlgItem(hDlg, IDC_RANDOM_BG))); SetSkipDisclaimer(Button_GetCheck(GetDlgItem(hDlg, IDC_SKIP_DISCLAIMER))); SetSkipGameInfo(Button_GetCheck(GetDlgItem(hDlg, IDC_SKIP_GAME_INFO))); SetHighPriority(Button_GetCheck(GetDlgItem(hDlg, IDC_HIGH_PRIORITY))); SetHideMouseOnStartup(Button_GetCheck(GetDlgItem(hDlg,IDC_HIDE_MOUSE))); if (Button_GetCheck(GetDlgItem(hDlg,IDC_CYCLE_SCREENSHOT))) { Edit_GetText(GetDlgItem(hDlg, IDC_CYCLETIMESEC),pcscreenshot,sizeof(pcscreenshot)); SetCycleScreenshot(atoi(pcscreenshot)); } else { SetCycleScreenshot(0); } checked = Button_GetCheck(GetDlgItem(hDlg,IDC_STRETCH_SCREENSHOT_LARGER)); if (checked != GetStretchScreenShotLarger()) { SetStretchScreenShotLarger(checked); UpdateScreenShot(); } EndDialog(hDlg, 0); return TRUE; } case IDCANCEL : EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK FilterDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { static DWORD dwFilters; static LPFOLDERDATA lpFilterRecord; int i; switch (Msg) { case WM_INITDIALOG: { LPTREEFOLDER folder = GetCurrentFolder(); LPFILTER_ITEM g_lpFilterList = GetFilterList(); dwFilters = 0; if (folder != NULL) { char tmp[80]; Edit_SetText(GetDlgItem(hDlg, IDC_FILTER_EDIT), g_FilterText); Edit_SetSel(GetDlgItem(hDlg, IDC_FILTER_EDIT), 0, -1); // Display current folder name in dialog titlebar snprintf(tmp,sizeof(tmp),"Filters for %s Folder",folder->m_lpTitle); SetWindowText(hDlg, tmp); // Mask out non filter flags dwFilters = folder->m_dwFlags & F_MASK; // Find the matching filter record if it exists lpFilterRecord = FindFilter(folder->m_nFolderId); // initialize and disable appropriate controls for (i = 0; g_lpFilterList[i].m_dwFilterType; i++) { DisableFilterControls(hDlg, lpFilterRecord, &g_lpFilterList[i], dwFilters); } } SetFocus(GetDlgItem(hDlg, IDC_FILTER_EDIT)); return FALSE; } case WM_HELP: // User clicked the ? from the upper right on a control HelpFunction(((LPHELPINFO)lParam)->hItemHandle, MAME32CONTEXTHELP, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, MAME32CONTEXTHELP, HH_TP_HELP_CONTEXTMENU, GetHelpIDs()); break; case WM_COMMAND: { WORD wID = GET_WM_COMMAND_ID(wParam, lParam); WORD wNotifyCode = GET_WM_COMMAND_CMD(wParam, lParam); LPTREEFOLDER folder = GetCurrentFolder(); LPFILTER_ITEM g_lpFilterList = GetFilterList(); switch (wID) { case IDOK: dwFilters = 0; Edit_GetText(GetDlgItem(hDlg, IDC_FILTER_EDIT), g_FilterText, FILTERTEXT_LEN); // see which buttons are checked for (i = 0; g_lpFilterList[i].m_dwFilterType; i++) { if (Button_GetCheck(GetDlgItem(hDlg, g_lpFilterList[i].m_dwCtrlID))) dwFilters |= g_lpFilterList[i].m_dwFilterType; } // Mask out invalid filters dwFilters = ValidateFilters(lpFilterRecord, dwFilters); // Keep non filter flags folder->m_dwFlags &= ~F_MASK; // put in the set filters folder->m_dwFlags |= dwFilters; EndDialog(hDlg, 1); return TRUE; case IDCANCEL: EndDialog(hDlg, 0); return TRUE; default: // Handle unchecking mutually exclusive filters if (wNotifyCode == BN_CLICKED) EnableFilterExclusions(hDlg, wID); } } break; } return 0; } INT_PTR CALLBACK AboutDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { switch (Msg) { case WM_INITDIALOG: { HBITMAP hBmp; hBmp = (HBITMAP)LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDB_ABOUTS), IMAGE_BITMAP, 0, 0, LR_SHARED); SendMessage(GetDlgItem(hDlg, IDC_ABOUT), STM_SETIMAGE, (WPARAM)IMAGE_BITMAP, (LPARAM)hBmp); char tmp[80]; #if defined(__LP64__) || defined(_WIN64) snprintf(tmp,sizeof(tmp), "%s (x64)", GetVersionString()); #else snprintf(tmp,sizeof(tmp), "%s", GetVersionString()); #endif Static_SetText(GetDlgItem(hDlg, IDC_VERSION), tmp); } return 1; case WM_COMMAND: EndDialog(hDlg, 0); return 1; } return 0; } INT_PTR CALLBACK AddCustomFileDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { static LPTREEFOLDER default_selection = NULL; static int driver_index; switch (Msg) { case WM_INITDIALOG: { TREEFOLDER **folders; int num_folders; int i; TVINSERTSTRUCT tvis; TVITEM tvi; BOOL first_entry = TRUE; HIMAGELIST treeview_icons = GetTreeViewIconList(); HIMAGELIST hList; // current game passed in using DialogBoxParam() driver_index = (int)lParam; hList = TreeView_SetImageList(GetDlgItem(hDlg,IDC_CUSTOM_TREE), treeview_icons, LVSIL_NORMAL); GetFolders(&folders,&num_folders); // should add "New..." // insert custom folders into our tree view for (i=0;i<num_folders;i++) { if (folders[i]->m_dwFlags & F_CUSTOM) { HTREEITEM hti; int jj; if (folders[i]->m_nParent == -1) { tvis.hParent = TVI_ROOT; tvis.hInsertAfter = TVI_SORT; tvi.mask = TVIF_TEXT | TVIF_PARAM | TVIF_IMAGE | TVIF_SELECTEDIMAGE; tvi.pszText = folders[i]->m_lpTitle; tvi.lParam = (LPARAM)folders[i]; tvi.iImage = GetTreeViewIconIndex(folders[i]->m_nIconId); tvi.iSelectedImage = 0; #if defined(__GNUC__) /* bug in commctrl.h */ tvis.item = tvi; #else tvis.DUMMYUNIONNAME.item = tvi; #endif hti = TreeView_InsertItem(GetDlgItem(hDlg,IDC_CUSTOM_TREE),&tvis); /* look for children of this custom folder */ for (jj=0;jj<num_folders;jj++) { if (folders[jj]->m_nParent == i) { HTREEITEM hti_child; tvis.hParent = hti; tvis.hInsertAfter = TVI_SORT; tvi.mask = TVIF_TEXT | TVIF_PARAM | TVIF_IMAGE | TVIF_SELECTEDIMAGE; tvi.pszText = folders[jj]->m_lpTitle; tvi.lParam = (LPARAM)folders[jj]; tvi.iImage = GetTreeViewIconIndex(folders[jj]->m_nIconId); tvi.iSelectedImage = 0; #if defined(__GNUC__) /* bug in commctrl.h */ tvis.item = tvi; #else tvis.DUMMYUNIONNAME.item = tvi; #endif hti_child = TreeView_InsertItem(GetDlgItem(hDlg,IDC_CUSTOM_TREE),&tvis); if (folders[jj] == default_selection) TreeView_SelectItem(GetDlgItem(hDlg,IDC_CUSTOM_TREE),hti_child); } } /*TreeView_Expand(GetDlgItem(hDlg,IDC_CUSTOM_TREE),hti,TVE_EXPAND);*/ if (first_entry || folders[i] == default_selection) { TreeView_SelectItem(GetDlgItem(hDlg,IDC_CUSTOM_TREE),hti); first_entry = FALSE; } } } } SetWindowText(GetDlgItem(hDlg,IDC_CUSTOMFILE_GAME), ModifyThe(drivers[driver_index]->description)); return TRUE; } case WM_COMMAND: switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDOK: { TVITEM tvi; tvi.hItem = TreeView_GetSelection(GetDlgItem(hDlg,IDC_CUSTOM_TREE)); tvi.mask = TVIF_PARAM; if (TreeView_GetItem(GetDlgItem(hDlg,IDC_CUSTOM_TREE),&tvi) == TRUE) { /* should look for New... */ default_selection = (LPTREEFOLDER)tvi.lParam; /* start here next time */ AddToCustomFolder((LPTREEFOLDER)tvi.lParam,driver_index); } EndDialog(hDlg, 0); return TRUE; break; } case IDCANCEL: EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK DirectXDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { HWND hEdit; const char *directx_help = MAME32NAME " requires DirectX version 3 or later, which is a set of operating\r\n" "system extensions by Microsoft for Windows 9x, NT and 2000.\r\n\r\n" "Visit Microsoft's DirectX web page at http://www.microsoft.com/directx\r\n" "download DirectX, install it, and then run " MAME32NAME " again.\r\n"; switch (Msg) { case WM_INITDIALOG: hEdit = GetDlgItem(hDlg, IDC_DIRECTX_HELP); Edit_SetSel(hEdit, Edit_GetTextLength(hEdit), Edit_GetTextLength(hEdit)); Edit_ReplaceSel(hEdit, directx_help); return 1; case WM_COMMAND: if (LOWORD(wParam) == IDB_WEB_PAGE) ShellExecute(GetMainWindow(), NULL, "http://www.microsoft.com/directx", NULL, NULL, SW_SHOWNORMAL); if (LOWORD(wParam) == IDCANCEL || LOWORD(wParam) == IDB_WEB_PAGE) EndDialog(hDlg, 0); return 1; } return 0; } /*************************************************************************** private functions ***************************************************************************/ static void DisableFilterControls(HWND hWnd, LPFOLDERDATA lpFilterRecord, LPFILTER_ITEM lpFilterItem, DWORD dwFlags) { HWND hWndCtrl = GetDlgItem(hWnd, lpFilterItem->m_dwCtrlID); DWORD dwFilterType = lpFilterItem->m_dwFilterType; /* Check the appropriate control */ if (dwFilterType & dwFlags) Button_SetCheck(hWndCtrl, MF_CHECKED); /* No special rules for this folder? */ if (!lpFilterRecord) return; /* If this is an excluded filter */ if (lpFilterRecord->m_dwUnset & dwFilterType) { /* uncheck it and disable the control */ Button_SetCheck(hWndCtrl, MF_UNCHECKED); EnableWindow(hWndCtrl, FALSE); } /* If this is an implied filter, check it and disable the control */ if (lpFilterRecord->m_dwSet & dwFilterType) { Button_SetCheck(hWndCtrl, MF_CHECKED); EnableWindow(hWndCtrl, FALSE); } } // Handle disabling mutually exclusive controls static void EnableFilterExclusions(HWND hWnd, DWORD dwCtrlID) { int i; DWORD id; for (i = 0; i < NUM_EXCLUSIONS; i++) { // is this control in the list? if (filterExclusion[i] == dwCtrlID) { // found the control id break; } } // if the control was found if (i < NUM_EXCLUSIONS) { // find the opposing control id if (i % 2) id = filterExclusion[i - 1]; else id = filterExclusion[i + 1]; // Uncheck the other control Button_SetCheck(GetDlgItem(hWnd, id), MF_UNCHECKED); } } // Validate filter setting, mask out inappropriate filters for this folder static DWORD ValidateFilters(LPFOLDERDATA lpFilterRecord, DWORD dwFlags) { DWORD dwFilters; if (lpFilterRecord != (LPFOLDERDATA)0) { // Mask out implied and excluded filters dwFilters = lpFilterRecord->m_dwSet | lpFilterRecord->m_dwUnset; return dwFlags & ~dwFilters; } // No special cases - all filters apply return dwFlags; }
/*************************************************************************** M.A.M.E.32 - Multiple Arcade Machine Emulator for Win32 Win32 Portions Copyright (C) 1997-2003 <NAME> and <NAME> This file is part of MAME32, and may only be used, modified and distributed under the terms of the MAME license, in "readme.txt". By continuing to use, modify or distribute this file you indicate that you have read the license and understand and accept it fully. ***************************************************************************/ /*************************************************************************** dialogs.c Dialog box procedures go here ***************************************************************************/ #define WIN32_LEAN_AND_MEAN #include <IMPORT_0> #include <windowsx.h> #include <shellapi.h> #include <commctrl.h> #include <string.h> #include "IMPORT_1" #include "TreeView.h" #include "M32Util.h" #include "resource.h" #include "IMPORT_2" #include "options.h" #include "Splitters.h" #include "help.h" #include "IMPORT_3" #include "Screenshot.h" #include "MAME32.h" #include "Properties.h" #include "dialogs.h" #ifdef _MSC_VER #include "IMPORT_4" #endif #define FILTERTEXT_LEN 256 static char g_FilterText[FILTERTEXT_LEN]; #define VAR_0 9 /* Pairs of filters that exclude each other */ DWORD VAR_1[VAR_0] = { IDC_FILTER_CLONES, VAR_2, IDC_FILTER_NONWORKING, IDC_FILTER_WORKING, IDC_FILTER_UNAVAILABLE, IDC_FILTER_AVAILABLE, IDC_FILTER_RASTER, IDC_FILTER_VECTOR }; static void DisableFilterControls(HWND hWnd, LPFOLDERDATA lpFilterRecord, LPFILTER_ITEM lpFilterItem, DWORD dwFlags); static void EnableFilterExclusions(HWND hWnd, DWORD dwCtrlID); static DWORD ValidateFilters(LPFOLDERDATA lpFilterRecord, DWORD dwFlags); /***************************************************************************/ const char * GetFilterText(void) { return g_FilterText; } INT_PTR CALLBACK ResetDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { CLASS_0 resetFilters = FALSE; CLASS_0 resetGames = FALSE; CLASS_0 resetUI = FALSE; CLASS_0 resetDefaults = FALSE; switch (Msg) { case VAR_3: return TRUE; case VAR_4: /* User clicked the ? from the upper right on a control */ HelpFunction(((LPHELPINFO)lParam)->hItemHandle, VAR_5, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, VAR_5, VAR_6, GetHelpIDs()); break; case WM_COMMAND : switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDOK : resetFilters = FUNC_0(FUNC_1(hDlg, IDC_RESET_FILTERS)); resetGames = FUNC_0(FUNC_1(hDlg, IDC_RESET_GAMES)); resetDefaults = FUNC_0(FUNC_1(hDlg, VAR_7)); resetUI = FUNC_0(FUNC_1(hDlg, IDC_RESET_UI)); if (resetFilters || resetGames || resetUI || resetDefaults) { char temp[200]; strcpy(temp, MAME32NAME " will now reset the selected\n"); strcat(temp, "items to the original, installation\n"); strcat(temp, "settings then exit.\n\n"); strcat(temp, "The new settings will take effect\n"); strcat(temp, "the next time " MAME32NAME " is run.\n\n"); strcat(temp, "Do you wish to continue?"); if (FUNC_2(hDlg, temp, "Restore Settings", IDOK) == IDOK) { if (resetFilters) ResetFilters(); if (resetUI) ResetGUI(); if (resetDefaults) ResetGameDefaults(); if (resetGames) FUNC_3(); EndDialog(hDlg, 1); return TRUE; } } /* Fall through if no options were selected * or the user hit cancel in the popup dialog. */ case IDCANCEL : EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK InterfaceDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { char pcscreenshot[100]; switch (Msg) { case VAR_3: Button_SetCheck(FUNC_1(hDlg,VAR_8),GetGameCheck()); Button_SetCheck(FUNC_1(hDlg,IDC_JOY_GUI),GetJoyGUI()); Button_SetCheck(FUNC_1(hDlg,IDC_BROADCAST),GetBroadcast()); Button_SetCheck(FUNC_1(hDlg,VAR_9),GetRandomBackground()); Button_SetCheck(FUNC_1(hDlg,IDC_SKIP_DISCLAIMER),GetSkipDisclaimer()); Button_SetCheck(FUNC_1(hDlg,IDC_SKIP_GAME_INFO),FUNC_4()); Button_SetCheck(FUNC_1(hDlg,IDC_HIGH_PRIORITY),GetHighPriority()); Button_SetCheck(FUNC_1(hDlg,IDC_HIDE_MOUSE),FUNC_5()); _itoa( FUNC_6(), pcscreenshot, 10); Edit_SetText(FUNC_1(hDlg, IDC_CYCLETIMESEC), pcscreenshot); if( FUNC_6() <= 0 ) { Button_SetCheck(FUNC_1(hDlg,IDC_CYCLE_SCREENSHOT),FALSE); EnableWindow(FUNC_1(hDlg, VAR_10), FALSE); EnableWindow(FUNC_1(hDlg, IDC_CYCLETIMESEC), FALSE); } else { Button_SetCheck(FUNC_1(hDlg,IDC_CYCLE_SCREENSHOT),TRUE); EnableWindow(FUNC_1(hDlg, VAR_10), TRUE); EnableWindow(FUNC_1(hDlg, IDC_CYCLETIMESEC), TRUE); } Button_SetCheck(FUNC_1(hDlg,IDC_STRETCH_SCREENSHOT_LARGER), FUNC_7()); return TRUE; case VAR_4: /* User clicked the ? from the upper right on a control */ HelpFunction(((LPHELPINFO)lParam)->hItemHandle, VAR_5, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, VAR_5, VAR_6, GetHelpIDs()); break; case WM_COMMAND : switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDC_CYCLE_SCREENSHOT: { CLASS_0 bCheck = FUNC_0(FUNC_1(hDlg, IDC_CYCLE_SCREENSHOT)); EnableWindow(FUNC_1(hDlg, VAR_10), bCheck); EnableWindow(FUNC_1(hDlg, IDC_CYCLETIMESEC), bCheck); return TRUE; } case IDOK : { CLASS_0 checked; FUNC_8(FUNC_0(FUNC_1(hDlg, VAR_8))); SetJoyGUI(FUNC_0(FUNC_1(hDlg, IDC_JOY_GUI))); SetBroadcast(FUNC_0(FUNC_1(hDlg, IDC_BROADCAST))); FUNC_9(FUNC_0(FUNC_1(hDlg, VAR_9))); SetSkipDisclaimer(FUNC_0(FUNC_1(hDlg, IDC_SKIP_DISCLAIMER))); SetSkipGameInfo(FUNC_0(FUNC_1(hDlg, IDC_SKIP_GAME_INFO))); SetHighPriority(FUNC_0(FUNC_1(hDlg, IDC_HIGH_PRIORITY))); SetHideMouseOnStartup(FUNC_0(FUNC_1(hDlg,IDC_HIDE_MOUSE))); if (FUNC_0(FUNC_1(hDlg,IDC_CYCLE_SCREENSHOT))) { Edit_GetText(FUNC_1(hDlg, IDC_CYCLETIMESEC),pcscreenshot,sizeof(pcscreenshot)); SetCycleScreenshot(atoi(pcscreenshot)); } else { SetCycleScreenshot(0); } checked = FUNC_0(FUNC_1(hDlg,IDC_STRETCH_SCREENSHOT_LARGER)); if (checked != FUNC_7()) { SetStretchScreenShotLarger(checked); UpdateScreenShot(); } EndDialog(hDlg, 0); return TRUE; } case IDCANCEL : EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK FUNC_10(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { static DWORD dwFilters; static LPFOLDERDATA lpFilterRecord; int i; switch (Msg) { case VAR_3: { LPTREEFOLDER folder = FUNC_11(); LPFILTER_ITEM VAR_11 = GetFilterList(); dwFilters = 0; if (folder != NULL) { char VAR_12[80]; Edit_SetText(FUNC_1(hDlg, IDC_FILTER_EDIT), g_FilterText); Edit_SetSel(FUNC_1(hDlg, IDC_FILTER_EDIT), 0, -1); // Display current folder name in dialog titlebar snprintf(VAR_12,sizeof(VAR_12),"Filters for %s Folder",folder->m_lpTitle); SetWindowText(hDlg, VAR_12); // Mask out non filter flags dwFilters = folder->m_dwFlags & F_MASK; // Find the matching filter record if it exists lpFilterRecord = FindFilter(folder->m_nFolderId); // initialize and disable appropriate controls for (i = 0; VAR_11[i].VAR_13; i++) { DisableFilterControls(hDlg, lpFilterRecord, &VAR_11[i], dwFilters); } } SetFocus(FUNC_1(hDlg, IDC_FILTER_EDIT)); return FALSE; } case VAR_4: // User clicked the ? from the upper right on a control HelpFunction(((LPHELPINFO)lParam)->hItemHandle, VAR_5, HH_TP_HELP_WM_HELP, GetHelpIDs()); break; case WM_CONTEXTMENU: HelpFunction((HWND)wParam, VAR_5, VAR_6, GetHelpIDs()); break; case WM_COMMAND: { WORD VAR_14 = GET_WM_COMMAND_ID(wParam, lParam); WORD wNotifyCode = GET_WM_COMMAND_CMD(wParam, lParam); LPTREEFOLDER folder = FUNC_11(); LPFILTER_ITEM VAR_11 = GetFilterList(); switch (VAR_14) { case IDOK: dwFilters = 0; Edit_GetText(FUNC_1(hDlg, IDC_FILTER_EDIT), g_FilterText, FILTERTEXT_LEN); // see which buttons are checked for (i = 0; VAR_11[i].VAR_13; i++) { if (FUNC_0(FUNC_1(hDlg, VAR_11[i].m_dwCtrlID))) dwFilters |= VAR_11[i].VAR_13; } // Mask out invalid filters dwFilters = ValidateFilters(lpFilterRecord, dwFilters); // Keep non filter flags folder->m_dwFlags &= ~F_MASK; // put in the set filters folder->m_dwFlags |= dwFilters; EndDialog(hDlg, 1); return TRUE; case IDCANCEL: EndDialog(hDlg, 0); return TRUE; default: // Handle unchecking mutually exclusive filters if (wNotifyCode == BN_CLICKED) EnableFilterExclusions(hDlg, VAR_14); } } break; } return 0; } INT_PTR CALLBACK AboutDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { switch (Msg) { case VAR_3: { CLASS_1 hBmp; hBmp = (ID_0)LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDB_ABOUTS), IMAGE_BITMAP, 0, 0, VAR_15); FUNC_12(FUNC_1(hDlg, IDC_ABOUT), STM_SETIMAGE, (WPARAM)IMAGE_BITMAP, (LPARAM)hBmp); char VAR_12[80]; #if defined(__LP64__) || defined(_WIN64) snprintf(VAR_12,sizeof(VAR_12), "%s (x64)", GetVersionString()); #else snprintf(VAR_12,sizeof(VAR_12), "%s", GetVersionString()); #endif Static_SetText(FUNC_1(hDlg, IDC_VERSION), VAR_12); } return 1; case WM_COMMAND: EndDialog(hDlg, 0); return 1; } return 0; } INT_PTR CALLBACK AddCustomFileDialogProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { static LPTREEFOLDER default_selection = NULL; static int VAR_16; switch (Msg) { case VAR_3: { TREEFOLDER **folders; int num_folders; int i; TVINSERTSTRUCT VAR_17; TVITEM tvi; CLASS_0 first_entry = TRUE; HIMAGELIST treeview_icons = GetTreeViewIconList(); HIMAGELIST hList; // current game passed in using DialogBoxParam() VAR_16 = (int)lParam; hList = TreeView_SetImageList(FUNC_1(hDlg,IDC_CUSTOM_TREE), treeview_icons, VAR_18); FUNC_13(&folders,&num_folders); // should add "New..." // insert custom folders into our tree view for (i=0;i<num_folders;i++) { if (folders[i]->m_dwFlags & F_CUSTOM) { HTREEITEM hti; int jj; if (folders[i]->m_nParent == -1) { VAR_17.hParent = TVI_ROOT; VAR_17.hInsertAfter = TVI_SORT; tvi.mask = TVIF_TEXT | VAR_19 | TVIF_IMAGE | TVIF_SELECTEDIMAGE; tvi.VAR_20 = folders[i]->m_lpTitle; tvi.lParam = (LPARAM)folders[i]; tvi.iImage = GetTreeViewIconIndex(folders[i]->m_nIconId); tvi.iSelectedImage = 0; #if defined(__GNUC__) /* bug in commctrl.h */ VAR_17.item = tvi; #else VAR_17.VAR_21.item = tvi; #endif hti = TreeView_InsertItem(FUNC_1(hDlg,IDC_CUSTOM_TREE),&VAR_17); /* look for children of this custom folder */ for (jj=0;jj<num_folders;jj++) { if (folders[jj]->m_nParent == i) { HTREEITEM hti_child; VAR_17.hParent = hti; VAR_17.hInsertAfter = TVI_SORT; tvi.mask = TVIF_TEXT | VAR_19 | TVIF_IMAGE | TVIF_SELECTEDIMAGE; tvi.VAR_20 = folders[jj]->m_lpTitle; tvi.lParam = (LPARAM)folders[jj]; tvi.iImage = GetTreeViewIconIndex(folders[jj]->m_nIconId); tvi.iSelectedImage = 0; #if defined(__GNUC__) /* bug in commctrl.h */ VAR_17.item = tvi; #else VAR_17.VAR_21.item = tvi; #endif hti_child = TreeView_InsertItem(FUNC_1(hDlg,IDC_CUSTOM_TREE),&VAR_17); if (folders[jj] == default_selection) FUNC_14(FUNC_1(hDlg,IDC_CUSTOM_TREE),hti_child); } } /*TreeView_Expand(GetDlgItem(hDlg,IDC_CUSTOM_TREE),hti,TVE_EXPAND);*/ if (first_entry || folders[i] == default_selection) { FUNC_14(FUNC_1(hDlg,IDC_CUSTOM_TREE),hti); first_entry = FALSE; } } } } SetWindowText(FUNC_1(hDlg,IDC_CUSTOMFILE_GAME), ModifyThe(drivers[VAR_16]->VAR_22)); return TRUE; } case WM_COMMAND: switch (GET_WM_COMMAND_ID(wParam, lParam)) { case IDOK: { TVITEM tvi; tvi.hItem = TreeView_GetSelection(FUNC_1(hDlg,IDC_CUSTOM_TREE)); tvi.mask = VAR_19; if (TreeView_GetItem(FUNC_1(hDlg,IDC_CUSTOM_TREE),&tvi) == TRUE) { /* should look for New... */ default_selection = (LPTREEFOLDER)tvi.lParam; /* start here next time */ AddToCustomFolder((LPTREEFOLDER)tvi.lParam,VAR_16); } EndDialog(hDlg, 0); return TRUE; break; } case IDCANCEL: EndDialog(hDlg, 0); return TRUE; } break; } return 0; } INT_PTR CALLBACK FUNC_15(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) { HWND hEdit; const char *directx_help = MAME32NAME " requires DirectX version 3 or later, which is a set of operating\r\n" "system extensions by Microsoft for Windows 9x, NT and 2000.\r\n\r\n" "Visit Microsoft's DirectX web page at http://www.microsoft.com/directx\r\n" "download DirectX, install it, and then run " MAME32NAME " again.\r\n"; switch (Msg) { case VAR_3: hEdit = FUNC_1(hDlg, IDC_DIRECTX_HELP); Edit_SetSel(hEdit, Edit_GetTextLength(hEdit), Edit_GetTextLength(hEdit)); FUNC_16(hEdit, directx_help); return 1; case WM_COMMAND: if (LOWORD(wParam) == IDB_WEB_PAGE) ShellExecute(FUNC_17(), NULL, "http://www.microsoft.com/directx", NULL, NULL, SW_SHOWNORMAL); if (LOWORD(wParam) == IDCANCEL || LOWORD(wParam) == IDB_WEB_PAGE) EndDialog(hDlg, 0); return 1; } return 0; } /*************************************************************************** private functions ***************************************************************************/ static void DisableFilterControls(HWND hWnd, LPFOLDERDATA lpFilterRecord, LPFILTER_ITEM lpFilterItem, DWORD dwFlags) { HWND hWndCtrl = FUNC_1(hWnd, lpFilterItem->m_dwCtrlID); DWORD dwFilterType = lpFilterItem->VAR_13; /* Check the appropriate control */ if (dwFilterType & dwFlags) Button_SetCheck(hWndCtrl, MF_CHECKED); /* No special rules for this folder? */ if (!lpFilterRecord) return; /* If this is an excluded filter */ if (lpFilterRecord->m_dwUnset & dwFilterType) { /* uncheck it and disable the control */ Button_SetCheck(hWndCtrl, MF_UNCHECKED); EnableWindow(hWndCtrl, FALSE); } /* If this is an implied filter, check it and disable the control */ if (lpFilterRecord->m_dwSet & dwFilterType) { Button_SetCheck(hWndCtrl, MF_CHECKED); EnableWindow(hWndCtrl, FALSE); } } // Handle disabling mutually exclusive controls static void EnableFilterExclusions(HWND hWnd, DWORD dwCtrlID) { int i; DWORD id; for (i = 0; i < VAR_0; i++) { // is this control in the list? if (VAR_1[i] == dwCtrlID) { // found the control id break; } } // if the control was found if (i < VAR_0) { // find the opposing control id if (i % 2) id = VAR_1[i - 1]; else id = VAR_1[i + 1]; // Uncheck the other control Button_SetCheck(FUNC_1(hWnd, id), MF_UNCHECKED); } } // Validate filter setting, mask out inappropriate filters for this folder static DWORD ValidateFilters(LPFOLDERDATA lpFilterRecord, DWORD dwFlags) { DWORD dwFilters; if (lpFilterRecord != (LPFOLDERDATA)0) { // Mask out implied and excluded filters dwFilters = lpFilterRecord->m_dwSet | lpFilterRecord->m_dwUnset; return dwFlags & ~dwFilters; } // No special cases - all filters apply return dwFlags; }
0.202956
{'IMPORT_0': 'windows.h', 'IMPORT_1': 'Bitmask.h', 'IMPORT_2': 'Directories.h', 'IMPORT_3': 'audit32.h', 'IMPORT_4': 'msc.h', 'VAR_0': 'NUM_EXCLUSIONS', 'VAR_1': 'filterExclusion', 'VAR_2': 'IDC_FILTER_ORIGINALS', 'CLASS_0': 'BOOL', 'VAR_3': 'WM_INITDIALOG', 'VAR_4': 'WM_HELP', 'VAR_5': 'MAME32CONTEXTHELP', 'VAR_6': 'HH_TP_HELP_CONTEXTMENU', 'FUNC_0': 'Button_GetCheck', 'FUNC_1': 'GetDlgItem', 'VAR_7': 'IDC_RESET_DEFAULT', 'FUNC_2': 'MessageBox', 'FUNC_3': 'ResetAllGameOptions', 'VAR_8': 'IDC_START_GAME_CHECK', 'VAR_9': 'IDC_RANDOM_BG', 'FUNC_4': 'GetSkipGameInfo', 'FUNC_5': 'GetHideMouseOnStartup', 'FUNC_6': 'GetCycleScreenshot', 'VAR_10': 'IDC_CYCLETIME', 'FUNC_7': 'GetStretchScreenShotLarger', 'FUNC_8': 'SetGameCheck', 'FUNC_9': 'SetRandomBackground', 'FUNC_10': 'FilterDialogProc', 'FUNC_11': 'GetCurrentFolder', 'VAR_11': 'g_lpFilterList', 'VAR_12': 'tmp', 'VAR_13': 'm_dwFilterType', 'VAR_14': 'wID', 'CLASS_1': 'HBITMAP', 'ID_0': 'HBITMAP', 'VAR_15': 'LR_SHARED', 'FUNC_12': 'SendMessage', 'VAR_16': 'driver_index', 'VAR_17': 'tvis', 'VAR_18': 'LVSIL_NORMAL', 'FUNC_13': 'GetFolders', 'VAR_19': 'TVIF_PARAM', 'VAR_20': 'pszText', 'VAR_21': 'DUMMYUNIONNAME', 'FUNC_14': 'TreeView_SelectItem', 'VAR_22': 'description', 'FUNC_15': 'DirectXDialogProc', 'FUNC_16': 'Edit_ReplaceSel', 'FUNC_17': 'GetMainWindow'}
/* Generated by RuntimeBrowser Image: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation */ @interface _CFXPreferencesHandle : NSObject { struct os_unfair_lock_s { unsigned int _os_unfair_lock_opaque; } lock; unsigned int overrideEUID; _CFXPreferences * prefs; } - (id)copyPrefs; - (void)dealloc; - (id)init; - (void)setEUIDOverride:(unsigned int)arg1; @end
/* Generated by RuntimeBrowser Image: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation */ @interface _CFXPreferencesHandle : NSObject { struct CLASS_0 { unsigned int _os_unfair_lock_opaque; } VAR_0; unsigned int overrideEUID; CLASS_1 * VAR_1; } - (id)VAR_2; - (void)dealloc; - (id)VAR_3; - (void)setEUIDOverride:(unsigned int)VAR_4; @end
0.560525
{'CLASS_0': 'os_unfair_lock_s', 'VAR_0': 'lock', 'CLASS_1': '_CFXPreferences', 'VAR_1': 'prefs', 'VAR_2': 'copyPrefs', 'VAR_3': 'init', 'VAR_4': 'arg1'}
// Copyright <NAME> #pragma once #include "GHUtils/GHController.h" #include "GHPointerChangeTracker.h" #include <vector> class GHTransform; class GHInputState; class GHTimeVal; class GHInputObjectMover : public GHController { public: enum Command { OM_FORWARD=0, OM_BACK, OM_UP, OM_DOWN, OM_LEFT, OM_RIGHT, OM_TURNLEFT, OM_TURNRIGHT, OM_TURNUP, OM_TURNDOWN, OM_TILTLEFT, OM_TILTRIGHT, OM_MOUSEROTATE, OM_MOUSEONLYVERTICAL, // to prevent left/right from mouse input. OM_SPRINT, OM_SLOW, OM_PRINTTRANSFORM, OM_MAX, }; public: GHInputObjectMover(GHTransform& target, const GHInputState& inputState, const GHTimeVal& timeVal); virtual void update(void); virtual void onActivate(void); virtual void onDeactivate(void) {} void addCommand(int key, Command command, bool isGamepad=false); void setMoveSpeed(float val) { mMoveSpeed = val; } void setRotSpeed(float val) { mRotSpeed = val; } void addJoystickMoveIndex(unsigned int joyId); void addJoystickRotateIndex(unsigned int joyId); void setFrameOfReference(const GHTransform* frameOfReference) { mFrameOfReference = frameOfReference; } void setLinearBounds(const GHPoint3& minBounds, const GHPoint3& maxBounds); private: void restrictToBounds(GHPoint3& point); private: float checkCommand(Command command) const; typedef std::vector<unsigned int> JoystickIdList; void applyJoysticks(const JoystickIdList& joyIds, GHPoint3& outDir); private: GHTransform& mTarget; const GHTransform* mFrameOfReference; const GHInputState& mInputState; const GHTimeVal& mTimeVal; GHPointerChangeTracker mPointerTracker; GHPoint3 mCamRot; float mMoveSpeed; float mRotSpeed; std::vector<int> mCommandKeys[OM_MAX]; std::vector<int> mGamepadCommandKeys[OM_MAX]; JoystickIdList mMovementJoyIds; JoystickIdList mRotateJoyIds; GHPoint3 mMinBounds; GHPoint3 mMaxBounds; bool mHasBounds{ false }; };
// Copyright <NAME> #pragma once #include "GHUtils/GHController.h" #include "IMPORT_0" #include <IMPORT_1> CLASS_0 GHTransform; CLASS_0 VAR_0; CLASS_0 VAR_1; CLASS_0 VAR_2 : public VAR_3 { public: VAR_4 Command { VAR_5=0, VAR_6, OM_UP, VAR_7, OM_LEFT, VAR_8, VAR_9, VAR_10, VAR_11, VAR_12, VAR_13, OM_TILTRIGHT, OM_MOUSEROTATE, VAR_14, // to prevent left/right from mouse input. VAR_15, VAR_16, VAR_17, OM_MAX, }; public: FUNC_0(GHTransform& VAR_18, const VAR_0& VAR_19, const VAR_1& timeVal); CLASS_3 VAR_20 update(void); CLASS_3 VAR_20 onActivate(void); CLASS_3 VAR_20 FUNC_1(void) {} void FUNC_2(int VAR_21, Command VAR_22, bool isGamepad=false); void FUNC_3(float val) { mMoveSpeed = val; } void setRotSpeed(float val) { VAR_23 = val; } void FUNC_4(unsigned int VAR_24); void FUNC_5(unsigned int VAR_24); void FUNC_6(const GHTransform* frameOfReference) { mFrameOfReference = frameOfReference; } void setLinearBounds(const GHPoint3& VAR_25, const GHPoint3& maxBounds); private: VAR_20 restrictToBounds(GHPoint3& VAR_26); private: VAR_27 checkCommand(Command VAR_22) const; typedef CLASS_4::IMPORT_1<unsigned VAR_28> ID_0; void applyJoysticks(const CLASS_5& VAR_29, GHPoint3& VAR_30); private: GHTransform& mTarget; const GHTransform* mFrameOfReference; const CLASS_1& VAR_31; const CLASS_2& mTimeVal; GHPointerChangeTracker VAR_32; GHPoint3 VAR_33; float mMoveSpeed; float VAR_23; std::IMPORT_1<VAR_28> mCommandKeys[OM_MAX]; std::IMPORT_1<VAR_28> mGamepadCommandKeys[OM_MAX]; CLASS_5 VAR_34; CLASS_5 mRotateJoyIds; GHPoint3 mMinBounds; GHPoint3 VAR_35; bool VAR_36{ false }; };
0.662923
{'IMPORT_0': 'GHPointerChangeTracker.h', 'IMPORT_1': 'vector', 'CLASS_0': 'class', 'VAR_0': 'GHInputState', 'CLASS_1': 'GHInputState', 'VAR_1': 'GHTimeVal', 'CLASS_2': 'GHTimeVal', 'VAR_2': 'GHInputObjectMover', 'FUNC_0': 'GHInputObjectMover', 'VAR_3': 'GHController', 'VAR_4': 'enum', 'VAR_5': 'OM_FORWARD', 'VAR_6': 'OM_BACK', 'VAR_7': 'OM_DOWN', 'VAR_8': 'OM_RIGHT', 'VAR_9': 'OM_TURNLEFT', 'VAR_10': 'OM_TURNRIGHT', 'VAR_11': 'OM_TURNUP', 'VAR_12': 'OM_TURNDOWN', 'VAR_13': 'OM_TILTLEFT', 'VAR_14': 'OM_MOUSEONLYVERTICAL', 'VAR_15': 'OM_SPRINT', 'VAR_16': 'OM_SLOW', 'VAR_17': 'OM_PRINTTRANSFORM', 'VAR_18': 'target', 'VAR_19': 'inputState', 'CLASS_3': 'virtual', 'VAR_20': 'void', 'FUNC_1': 'onDeactivate', 'FUNC_2': 'addCommand', 'VAR_21': 'key', 'VAR_22': 'command', 'FUNC_3': 'setMoveSpeed', 'VAR_23': 'mRotSpeed', 'FUNC_4': 'addJoystickMoveIndex', 'VAR_24': 'joyId', 'FUNC_5': 'addJoystickRotateIndex', 'FUNC_6': 'setFrameOfReference', 'VAR_25': 'minBounds', 'VAR_26': 'point', 'VAR_27': 'float', 'CLASS_4': 'std', 'VAR_28': 'int', 'ID_0': 'JoystickIdList', 'CLASS_5': 'JoystickIdList', 'VAR_29': 'joyIds', 'VAR_30': 'outDir', 'VAR_31': 'mInputState', 'VAR_32': 'mPointerTracker', 'VAR_33': 'mCamRot', 'VAR_34': 'mMovementJoyIds', 'VAR_35': 'mMaxBounds', 'VAR_36': 'mHasBounds'}
// // BNDCommand.h // BIND // // Created by <NAME> on 02/04/2015. // Copyright (c) 2015 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> @protocol BNDCommand <NSObject> - (void)execute; @end
// // BNDCommand.h // BIND // // Created by <NAME> on 02/04/2015. // Copyright (c) 2015 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> @protocol BNDCommand <NSObject> - (void)execute; @end
0.063713
{}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Compute Population Center with all events /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void ID2Center_all(double **data_in, int file_Len, int num_dm, int num_clust, int *cluster_ID, double **population_center) { int i = 0; int j = 0; int ID = 0; int *size_c; size_c = (int *) malloc(sizeof(int) * num_clust); memset(size_c, 0, sizeof(int) * num_clust); for (i = 0; i < num_clust; i++) for (j = 0; j < num_dm; j++) population_center[i][j] = 0; for (i = 0; i < file_Len; i++) { ID = cluster_ID[i]; if (ID == -1) { fprintf(stderr, "Incorrect file format or input parameters (resulting in incorrect population IDs)\n"); abort(); } for (j = 0; j < num_dm; j++) population_center[ID][j] = population_center[ID][j] + data_in[i][j]; size_c[ID]++; } for (i = 0; i < num_clust; i++) { for (j = 0; j < num_dm; j++) if (size_c[i] != 0) population_center[i][j] = (population_center[i][j] / (double) (size_c[i])); else population_center[i][j] = 0; } free(size_c); }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Compute Population Center with all events /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void FUNC_0(double **VAR_0, int file_Len, int VAR_1, int VAR_2, int *VAR_3, double **population_center) { int VAR_4 = 0; int j = 0; int VAR_5 = 0; int *size_c; size_c = (int *) malloc(sizeof(int) * VAR_2); memset(size_c, 0, sizeof(int) * VAR_2); for (VAR_4 = 0; VAR_4 < VAR_2; VAR_4++) for (j = 0; j < VAR_1; j++) population_center[VAR_4][j] = 0; for (VAR_4 = 0; VAR_4 < file_Len; VAR_4++) { VAR_5 = VAR_3[VAR_4]; if (VAR_5 == -1) { FUNC_1(stderr, "Incorrect file format or input parameters (resulting in incorrect population IDs)\n"); FUNC_2(); } for (j = 0; j < VAR_1; j++) population_center[VAR_5][j] = population_center[VAR_5][j] + VAR_0[VAR_4][j]; size_c[VAR_5]++; } for (VAR_4 = 0; VAR_4 < VAR_2; VAR_4++) { for (j = 0; j < VAR_1; j++) if (size_c[VAR_4] != 0) population_center[VAR_4][j] = (population_center[VAR_4][j] / (double) (size_c[VAR_4])); else population_center[VAR_4][j] = 0; } FUNC_3(size_c); }
0.572137
{'FUNC_0': 'ID2Center_all', 'VAR_0': 'data_in', 'VAR_1': 'num_dm', 'VAR_2': 'num_clust', 'VAR_3': 'cluster_ID', 'VAR_4': 'i', 'VAR_5': 'ID', 'FUNC_1': 'fprintf', 'FUNC_2': 'abort', 'FUNC_3': 'free'}
#pragma once #include <memory> #include "storage_manager.h" #include "device_auth.h" namespace msa { class StorageManager; class LoginManager { private: StorageManager* const storageManager; std::mutex deviceAuthMutex; DeviceAuth deviceAuth; bool hasReadDeviceAuth = false; public: LoginManager(StorageManager* storageManager) : storageManager(storageManager) {} StorageManager* getStorageManager() const { return storageManager; } DeviceAuth const& requestDeviceAuth(); }; }
#pragma once #include <memory> #include "storage_manager.h" #include "device_auth.h" CLASS_0 msa { class StorageManager; class LoginManager { private: StorageManager* const storageManager; std::mutex deviceAuthMutex; DeviceAuth deviceAuth; bool VAR_0 = false; public: LoginManager(StorageManager* storageManager) : storageManager(storageManager) {} StorageManager* getStorageManager() const { return storageManager; } DeviceAuth const& requestDeviceAuth(); }; }
0.220037
{'CLASS_0': 'namespace', 'VAR_0': 'hasReadDeviceAuth'}
#pragma once #include <stdint.h> #include "constants.h" const uint16_t minThrottle = 0; const uint16_t maxThrottle = 1024; const float lift = 0; struct Motor { uint8_t id; uint16_t i_throttle; float f_v_lift[3]; void (*throttleing)(); };
#pragma once #include <IMPORT_0> #include "IMPORT_1" const uint16_t VAR_0 = 0; const uint16_t maxThrottle = 1024; const float VAR_1 = 0; struct CLASS_0 { uint8_t VAR_2; uint16_t VAR_3; float VAR_4[3]; void (*FUNC_0)(); };
0.906552
{'IMPORT_0': 'stdint.h', 'IMPORT_1': 'constants.h', 'VAR_0': 'minThrottle', 'VAR_1': 'lift', 'CLASS_0': 'Motor', 'VAR_2': 'id', 'VAR_3': 'i_throttle', 'VAR_4': 'f_v_lift', 'FUNC_0': 'throttleing'}
#ifndef BINQSUPPORT_H #define BINQSUPPORT_H //#include "rose.h" SgAsmExpressionPtrList& getOperands(SgAsmInstruction* insn); class BinQSupport { public: BinQSupport(){}; ~BinQSupport(); SgNode* disassembleFile(std::string tsv_directory, std::string& sourceFile); static rose_addr_t evaluateMemoryExpression(SgAsmX86Instruction* destInst, SgAsmMemoryReferenceExpression* mem); static std::string resolveValue(SgAsmValueExpression* leftVal); static bool memoryExpressionContainsRegister(X86RegisterClass cl, int registerNumber, SgAsmMemoryReferenceExpression* mem); static SgAsmInstruction* getNextStmt(SgAsmInstruction* inst); static rose_addr_t checkIfValidAddress(rose_addr_t next_addr, SgAsmInstruction* inst); static SgAsmInstruction* getPrevStmt(SgAsmInstruction* inst); // this one is not precise because it only gives you one edge // along the CFG up. Unfortunately, the get_predecessors algo from // Jeremiah doesnt work on IDA yet static SgAsmX86Instruction* checkIfValidPredecessor(rose_addr_t next_addr, SgAsmInstruction* inst); private: std::string relativePathPrefix; std::string ToUpper(std::string myString); }; //class BinQGUI #endif
#ifndef VAR_0 #define VAR_0 //#include "rose.h" SgAsmExpressionPtrList& FUNC_0(VAR_1* VAR_2); CLASS_1 VAR_3 { public: FUNC_1(){}; ~FUNC_1(); SgNode* FUNC_2(VAR_4::VAR_5 VAR_6, VAR_4::VAR_5& VAR_7); static rose_addr_t FUNC_3(CLASS_3* VAR_8, SgAsmMemoryReferenceExpression* VAR_9); static CLASS_2::VAR_5 FUNC_4(CLASS_4* VAR_10); static bool memoryExpressionContainsRegister(X86RegisterClass VAR_11, int registerNumber, SgAsmMemoryReferenceExpression* VAR_9); static CLASS_0* FUNC_5(CLASS_0* inst); static rose_addr_t FUNC_6(rose_addr_t VAR_12, CLASS_0* inst); static CLASS_0* FUNC_7(CLASS_0* inst); // this one is not precise because it only gives you one edge // along the CFG up. Unfortunately, the get_predecessors algo from // Jeremiah doesnt work on IDA yet static CLASS_3* FUNC_8(rose_addr_t VAR_12, CLASS_0* inst); private: std::VAR_5 relativePathPrefix; std::VAR_5 ToUpper(VAR_4::VAR_5 VAR_13); }; //class BinQGUI #endif
0.750436
{'VAR_0': 'BINQSUPPORT_H', 'FUNC_0': 'getOperands', 'VAR_1': 'SgAsmInstruction', 'CLASS_0': 'SgAsmInstruction', 'VAR_2': 'insn', 'CLASS_1': 'class', 'VAR_3': 'BinQSupport', 'FUNC_1': 'BinQSupport', 'FUNC_2': 'disassembleFile', 'VAR_4': 'std', 'CLASS_2': 'std', 'VAR_5': 'string', 'VAR_6': 'tsv_directory', 'VAR_7': 'sourceFile', 'FUNC_3': 'evaluateMemoryExpression', 'CLASS_3': 'SgAsmX86Instruction', 'VAR_8': 'destInst', 'VAR_9': 'mem', 'FUNC_4': 'resolveValue', 'CLASS_4': 'SgAsmValueExpression', 'VAR_10': 'leftVal', 'VAR_11': 'cl', 'FUNC_5': 'getNextStmt', 'FUNC_6': 'checkIfValidAddress', 'VAR_12': 'next_addr', 'FUNC_7': 'getPrevStmt', 'FUNC_8': 'checkIfValidPredecessor', 'VAR_13': 'myString'}