Hardware components | ||||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
Software apps and online services | ||||||
| ||||||
| ||||||
| ||||||
| ||||||
| ||||||
Hand tools and fabrication machines | ||||||
| ||||||
| ||||||
| ||||||
|
Imagine a chef is cooking something while preparing salad or making dough, now he/she might need to adjust the heating on the stove. This is a scenario where voice controlled stove/oven can be very useful for a cook/chef. In any situation where user's both hand are busy doing something is the best scenario to utilize voice control applications.
Unfortunately existing solutions are connected solutions, one of those Alexa or Google cloud connected oven thingies. But, why let them know what you cook or when you cook ? Also, user needs to setup wifi connection for the device and download another app ! This is a big NO for many users.
Here is my solution: Edge AI Voice Controlled Stove, realized with Picovoice.ai generated voice recognition model and PSoC 6 MCU. Works out of the box !
This is not an "Internet of Things" but an "Internet OFF Things", so it's still an IoT (pun intended).
Features- Voice controlled Ignition/Flame activation
- Voice controlled flame/heating adjustment
- Voice controlled cooking/burner timer setup
- Interactive Voice Feedback UI for confirmation
- Voice controlled Power off
- Edge AI voice recognition, no cloud connectivity
- Natural Language multi-commands operation
These hardware are used to built this project :
PSoC™ 6 62S2 Wi-Fi BT Pioneer Kit (CY8CKIT-062S2-43012)
This is the development board for PSoC™ 62 dual core MCU CY8C624ABZI-S2D44 (150-MHz Arm Cortex-M4 and 100-MHz Arm Cortex-M0+ cores) with 2MB of Flash. It is powerful enough to run voice recognition AI without internet connectivity
IoT sense expansion kit (CY8CKIT-028-SENSE)
The IoT sense expansion kit is an add-on (shield) board that can be used with the Pioneer Kit, this board has analog/digital microphone for audio input and audio codec for audio output, which is required for this project
Voice Playback Module
My original goal was to use the IoT sense kit's audio codec for playing Voice UI messages and 2MB flash on PSoC6 to store the wave files. Unfortunately, I was unable to use the I2S Audio demo code provided in Modustoolbox. That's why I decided to use a project I made last year which can store up to 1000 separate audio messages in mp3 format up to 40 minutes long.
Here is the project in details : Countdown Voice Timer & Fire Starter
It was made using Fermion Voice Recorder/Playback Module, DFRobot Beetle Board & 3 Watts Enclosed Speaker.
I have changed the original firmware (attached below), so this module can receive serial messages sent from PSoC 6 and playback appropriate audio messages accordingly.
Power SupplyModule
This module consists of an LM7809 Linear Voltage Regulator and DC-DC Buck Converter module that can output 5 volts. I have used the 9 Vdc output to power the PSoC6 Pioneer. The 5 Vdc from the Buck Converter is used to supply adequate power to the servo motors and the Voice Playback module.
Metal Gear Servo Motors
There are two metal gear servo motors used for this project. One of the servo motor controls the (fuel) gas flow valve by partially opening is as needed. This servo motor can fully close the valve whenever the burner needs to be turned off. The other servo motor pulls the lever of peizo-igniter to generate spark for starting a flame.
Portable Gas Stove
The portable gas stove is a tiny single burner stove with build-in peizo igniter fire starter and a gas flow adjustment valve. I have picked this stove for ease of prototyping since it's easy to bring the whole setup near my computer for developing the firmware with a tiny stove. Of course, this project can be scaled for larger, multi-burner stove setup.
Hardware Build
Just like any quick and low budget prototyping, I have assembled the hardware with super glue, hot glue, cable tie and jumper wires. Main goal was to cut down cost, time and effort.
All the pieces are connected according to this schematic :
One of the servo motor is superglued to the gas adjustment valve like this :
The other servo motor is threaded to the peizo ignition spark generator lever like this :-
This is how the Serial TX line is hacked out without modifying the Dev kit:-
All the parts are fastened with cable tie on a piece of hardboard. Jumper wires are used to interconnect all the hardware pieces.
Modustoolbox
To program the PSoC6 Pioneer Kit, please download and install the Modustoolbox(MTB) SDK. I have used MTB version 2.4, any version prior to version 2.1 of MTB should be avoided for this project.
Modustoolbox download link : https://www.infineon.com/cms/en/design-support/tools/sdk/modustoolbox-software/
You might face some difficulties with MTB after installation. Make sure to add path to tools for MTB to work properly.
Following installation guide from Infenion explains this setup process :-Modustoolbox Installation Guide
Once the Modustoolbox(MTB) is installed, let's get started with the voice recognition demo first.
Run MTB and click on New Application from Quick Start menu:
Make sure your Internet connection is active, as this process will download the example application demo from Github
Select the appropriate platform (PSoC 6) and correct board (CY8CKIT-062S2-43012) from Board Support Package menu
Next. select the Voice template application and check the demo project Picovoice E2E Voice Recognition Demo and click create
Now, open the main.c file inside the Picovoice E2E Voice Recognition Demo code. Find the line that accepts Picovoice Access Key, we will come back here later
Keep the MTB running in the background and open your web browser app, it's time for Picovoice.
Picovoice
Picovoice is one of the most intuitive way to build a voice recognition model and implement on different platforms. Simply put, you just need to type wake words and speech to intent words, then build the platform specific voice recognition model. Once the model is generated, download and implement the voice recognition model in your embedded development project.
Following steps will explain the process :
Step 0: Go to https://console.picovoice.ai/, create a new account and login. This page will appear
Step 1: Access Key and UUID (Unique Identifier)
First click on "Show AccessKey" and it will provide an unique string, copy this string and save it on a text file. This Access Key will be required in the code.
The Access Key looks something like this (this is a dummy string) :
XIn8zpxLsfsdfsadVmTTiPxze+v1A3ESyCdfsdfsdhXXrWwOKS0orK1VtQK6kg==
This string must go between " " and end with ; like this inside the code:-
static const char* ACCESS_KEY = "XIn8zpxLsfsdfsadVmTTiPxze+v1A3ESyCdfsdfsdhXXrWwOKS0orK1VtQK6kg==";
To make voice recognition models, one more information is needed, that is the device UUID ( In this case the UUID of the PSoC 6 (mcu) Pioneer Kit ).
Copy the Access Key string and Paste/Insert into the MTB demo code that was previously opened like this :
Now, select the demo project and click on the build button (hammer icon).
While, the build process is going on (it will take some time), connect the PSoC6 Pioneer Kit (+ IoT Sense Kit connected on it) to computer with an USB cable.
Once the build is completed, flash the code by clicking the Green Play icon, make sure to select the right programmer
Picovoice_E2E_Voice_Recognition_Program (KitProg3_MiniProg4)
Now, open a serial terminal application like Putty or TeraTerm, select the right serial port (eg. COM5) with 115200 baud rate
Then say, loudly "Hey Pico"
You should get a response on serial monitor with an UUID of your PSoC6 Pioneer Kit, something like this (hexadecimal number) :
This UUID will be needed to make voice recognition models in Picovoice Console.
Now. let's go back to Picovoice console.
Step 2: Wake Word
Picovoice wake word is a special trigger word which will activate the device. I am going to use the word : Hey Stove as a wake word, because this is a voice controlled stove.
Go to Porcupine option on Picovoice console (https://console.picovoice.ai/ppn)
- Type Phrase: Hey Stove
- Select Language: English
- Select Platform: ARM Cortex-M
- Select Board: PSoC6
- Type the UUID/Unique Identifier from before: (hexadecimal number)
Next, click Train Wake Word, with in few seconds your wake word trained model will be ready. Download the trained model
You will get a downloaded zipped folder, unzip it and open the pv_porcupine_params.h file with any text editor (notepad). This is the wake word model, a large array of hexadecimal numbers.
More on this will be explained later.
Step 3: Speech to Intent Model
The wake word "Hey Stove" will activate the device but it won't perform any stove action. I want to turn on the stove, turn off the stove, change gas/flame, set cooking timer etc. I have intentions to do certain tasks with my stove. This is where the speech-to-intent engine is needed.
Picovoice Rhino Speech-to-Intent engine can extract multiple spoken commands, which can be used to perform different operations.
Go to Rhino option on Picovoice console (https://console.picovoice.ai/rhn)
Type name: Voice Controlled Stove
Select Template: Empty
Then click Create Context, this will take you to a new page where the actual speech-to-intent model 'coding' is done.
Here is a quick overview of Intents, Slots and Macros for Picovoice:-
Intents
Intents are certain actions that you want to perform with voice control. Think of them as verbs used in grammar. Intents have expressions, which closely follows English grammar for sentences with a verb.
Intent Expressions= Action (do something) + Subject/Object (about something)
This voice control stove has 4 separate intent:
- StartBurner : To start a fire on the stove's burner
- StopBurner : To stop the fire
- SetFlame : To change the flame by adjusting gas
- SetTimer : To set a cooking timer to turn off the fire when time elapsed
Each intent has it's own expression which you must type. An expression should be like this :
(polite word) @Macro(i.e. Verb/Action) (article words) $Slot(i.e. Noun/Variables)
Please Start the Burner
Can you Set Timer to Five Minutes?
It may seem a little confusing at first, but you will get it eventually (don't worry)
Slots
Slots are the variables in an intent. Slots can hold multiple elements representing different variables or different names for one variable
Think of it as the subject/object in English grammar on which the action needs to be performed.
For example, if we want to set a cooking timer, the time will be different depending on the command.
- Set timer to one minute
- Set timer to three minutes
- Set timer to five minutes
Slots = Variables in actions (usually)
Speech to Intent engine can extract these differences.
Slot will have $ symbol before them when when used inside an expression
Picovoice has some built-in slots, like pv.Percent which can directly extract a percent value from user's intent.
Macros
Macros are exactly used for different words with same meaning (intent). It is equivalent to Synonyms in English Grammar.
Macros will have @ symbol before them when used inside an expression
Macros = Synonyms for verbs
For example: Start can be said as turn on/power up/enable/activate any of these words.
So, how do you put everything together?
First, think of allthe possible ways a human can say the 'same thing' which represents a specific intent. Then list all the verbs/nouns in Macros, list all the variables in Slots and create an expression for the intent like this :
(please) @Start (the) $Flame:Flame
The Voice Recognition model will work better if it can detect wide variety of human phrases with same intention. Properly listed Macro elements and better expressions are the key to success.
Please read this to get a better understanding : https://picovoice.ai/docs/tips/syntax-cheat-sheet/
Step 4: Training the Model
Once all the Intents, Slots, Macros are done, click on "Train" on the bottom right corner:
Select as follows:
- Model Platform: ARM Cortex-M
- Board Type: PSoC6
- Unique Identifier (UUID) : That Hexadecimal Number
Then click Train "Voice Controlled Stove" for ARM Cortex-M
Go to https://console.picovoice.ai/rhn and download the speech to intent model.
Unzip the downloaded file.
Then, open the Voice-Controlled-Stove_en_cortexm_v2_1_0.h
There is this large array of hex numbers inside the file, this is the speech to intent model.
Step 5: Editing main.c and param.h in Modustoolbox
Now, go back to Modustoolbox. Copy the main.c code attached here.
Replace the entire original demo code from the main.c of Picovoice E2E Voice Recognition Demo
Next, edit the param.h by including the wake word model's array and speech to intent model's array. Both models (wake word + speech to intent) are combined together into param.h.
I have attached the modified param.h below. Copy it's content and replace the original contents of param.h to avoid any confusion.
If you want to understand how the code works, please read it. There are tons of comments in the code explaining most of the things
Finally, click the hammer icon to build and green play button icon to flash the firmware into PSoC6 mcu, as explained before (see step 1).
Preparing Audio Files for Voice PlaybackStep1: I have used https://ttsreader.com/ text-to-speech service to make the audio feedbacks.
Step 2: While the speech was playing, I have recorded the sound with Audacity . Select Windows WASPAPI and Source as Headphone/Speaker, then click the Record icon to capture audio playback in your computer.
Step 3: After recording, the audios are segmented into multiple mp3 files. To separate each segment of the audio (sound for every number), select that part with mouse, then use shortcut Ctrl+C (copy), Ctrl+N (new), Ctrl+V (paste) that audio segment. Repeat this step for each audio voice segment.
Step 4: Go to Files > Export as MP3, select 48 kbps quality and rename as FILE0000.MP3, FILE0001.MP3, FILE0002.MP3 up to FILE0100.MP3
(all the audio files are attached below, you can skip step 1-4, just download and copy the files according to step 5)
Step 5: Voice module is connected to computer with a USB C cable, 16 MB Flash Drive appeared. It will require formatting (FAT) when using for the first time. Next, all the mp3 files are copied to a DF_REC directory inside the voice module's flash drive.
You can put maximum of 1000 MP3 files with total audio length of 40 minutes @ 48kbps. Higher sampling frequency song/audio voice will work but the audio length will be less due to larger file size
How the audio playback works ?
PSoC6 mcu's serial TX and Beetle board mcu's serial RX are connected for half duplex serial communication. PSoC6 mcu simply send's printf("some number"), which is transmitted to Beetle board's mcu. Depending on the number that was received from PSoC6 mcu, Beetle board mcu will send command to the Voice Playback Module to play the mp3 file representing that number.
For example: printf("040") command will play 0040.mp3 file. Check this project of mine, which explains this in full details :
https://www.hackster.io/PSoC_Rocks/countdown-voice-timer-fire-starter-ff58f8
Device OperationTo understand the device operation, let's have a look at all the PSoC6 Application Resources (PSoC6 mcu internal hardware)
Application Resources
Depending on the voice commands from user, some of these resources will activate certain modules to control servos, enable timer, send printf messages to voice playback module etc.
- Two PWM modules will generate 50 Hz PWM signals. By adjusting the duty cycles of these signals, both servo motors are controlled.
- LPTIMER will measure time elapsed when cooking timer function is active
- UART TX will send printf() messages to Beetle board to play mp3 files
- GPIO will drive Green LED on PSoC6 Pioneer Kit board when wake word is detected. Blue LED will glow when speech to intent is detected.
Here are some example voice commands and hardware interactions:
Of course, these are not the only voice commands. For example:
"Hey Stove, turn on the burner" can also be said as :
"Hey Stove, start the fire"
"Hey Stove, turn on the flame"
"Hey Stove, activate the burner"
Gas/Flame adjustment constrains
Gas or Flame can be adjusted with any value between 10% to 100%, in step of 5%. Which means, 10%, 15%, 20%, 25%,....... 100%
Here are some valid voice commands examples :
"Hey Stove, change gas to 40%"
"Hey Stove, increase flame to 65%"
"Hey Stove, reduce gas to 25%"
For any values which is not divisible by 5 will have a default gas valve setting of 30%
Timer setting constrains
Cooking duration timer can be : 1 minute, 2 minutes, 3 minutes, 5 minutes, 10 minutes, 15 minutes, 20 minutes, 25 minutes, 30 minutes only
Of course, more or less options can be added by editing the main.c code.
Here are some valid timer setting voice commands:
"Hey Stove, set timer to 1 minute"
"Hey Stove, change timer to 5 minutes"
Existing timer setting can be overridden with new timer setting commands. For any value of minutes which is not listed above, default timer setting is one minute.
I have made this project with a limited budget (around 50$ of extra hardware) + PSoC6 Pioneer Kit which is provided by Infineon and Picovoice developer account which is provided by Picovoice for free. But if anyone wants to turn this into a product, more features may be added.
Here are few ideas for additional features:
- Flame and Gas sensors for safety
- Temperature Sensor for closed loop controlled heating
- Built in cooking profiles with multi stage heating
- Spillage detection on stove's surroundings
- Overcook protection/food anti-burn protection
- Multi burners cooking operation
Flame sensor will protect against failed ignition and turn off the gas after few retries, gas sensor will notify user if there is gas leakage in absence of flame or there is no gas available.
Built in cooking profiles can take care of temperature adjustments for cooking different foods. User will say something like this : "Hey Stove, hard boil my eggs" or "Hey Stove, I want extra crispy French fry !"
Spillage detection will automatically adjust heating to avoid/reduce spillage of boiling milk or soup.
Same with overcook protection, no more burnt cooking. Some sensors like Acrylamide sensor may be needed. Multi burner cooking will allow chefs to cook lots of dishes at once.
All these features will have voice control and voice feedback as usual. My demo project is just the starting point for anyone willing to turn this into a real world product.
main
C/C++//// Please check licensing Info at the end of void main ////
// Necessary Header files //
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "cy_rgb_led.h"
#include "cy_pdl.h"
#include "cyhal.h"
#include "cycfg.h"
#include "cybsp.h"
#include "pv_audio_rec.h"
#include "pv_keywords.h"
#include "pv_picovoice.h"
#include "pv_psoc6.h"
#define MEMORY_BUFFER_SIZE (70 * 1024)
// Please Create an account in Picovoice.ai and get your own unique access_key and replace the
// following string with Your ACCCESS_KEY
// This is a dummy access_key, paste your access kye in this format: "Access_Key";
static const char* ACCESS_KEY ="XIn8zpxLMYGVmTTiPxze+v1A3ESyChXXrWwOKUGoFS0orK1VtQK6kg==";
static int8_t memory_buffer[MEMORY_BUFFER_SIZE] __attribute__((aligned(16)));
// Change these values slightly if you need more sensitivity,
// But increasing sensitivity will reduce selectivity, Range : 0.0f - 1.0f
static const float PORCUPINE_SENSITIVITY = 0.75f;
static const float RHINO_SENSITIVITY = 0.5f;
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// PWM Frequency = 50Hz //
#define PWM_FREQUENCY (50u)
// PWM Output Pins for servo control //
#define PWM_PIN_VALVE_CTRL P0_3
#define PWM_PIN_PEIZO_CTRL P1_3
// PWM Duty-cycle = 10% //
float PEIZO_CTRL_PWM_DUTY_CYCLE = 10.0f;
float VALVE_CTRL_PWM_DUTY_CYCLE = 10.0f;
///////////////////////////////////////////////////////
cyhal_pwm_t pwm_servo_signal_peizo_ctrl;
cyhal_pwm_t pwm_servo_signal_valve_ctrl;
///////////////////////////////////////////////////////
float servo_last_position = 0.0f; // 0 position of servo
///LowPower Timer will be used for Cooking Timer purpose///
cyhal_lptimer_t lptimer_obj;
cyhal_lptimer_info_t lptimer_obj_info;
uint32_t timer_start_cnt = 0; // lp timer count for starting cooking timer
uint32_t timer_stop_cnt = 0; // lp timer count for stopping cooking timer
uint32_t timer_duration = 0; // in minute(s)
timer_en = 0; // cooking timer active/inactive flag
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
//This function will take an angle (0-180) and
//drive one of the servo to that position
void set_servo_position (float angle)
{
// Initialize the PWM //
__enable_irq();
cyhal_pwm_init(&pwm_servo_signal_valve_ctrl, PWM_PIN_VALVE_CTRL, NULL);
//Set the PWM output frequency and duty cycle */
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_valve_ctrl, VALVE_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
// Start the PWM //
cyhal_pwm_start(&pwm_servo_signal_valve_ctrl);
float angle_difference = angle - servo_last_position;
///////////////////////////////////////////////////////////////////
// for cw servo rotation (ccw valve opening more - more gas flow)
if (angle_difference>0.0f)
{
// (scaling: 180.0 degrees / 10.0 % duty = 18.0)
float steps = angle_difference/18.0f;
float position_reference = servo_last_position/18.0f;
while(VALVE_CTRL_PWM_DUTY_CYCLE >= 10.0f - steps - position_reference)
{
VALVE_CTRL_PWM_DUTY_CYCLE = VALVE_CTRL_PWM_DUTY_CYCLE - 0.05;
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_valve_ctrl, VALVE_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
Cy_SysLib_Delay(25);
// duty cycle limit
//if (PWM_DUTY_CYCLE > 10.0f) PWM_DUTY_CYCLE = 10.0f;
// if (PWM_DUTY_CYCLE < 0.0f) PWM_DUTY_CYCLE = 0.0f;
}
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
// for ccw servo rotation (cw valve closing more - less gas flow)
if (angle_difference<=0.0f)
{
float steps = angle_difference/18.0f;
float position_reference = servo_last_position/18.0f;
while(VALVE_CTRL_PWM_DUTY_CYCLE <= 10.0f - steps - position_reference)
{
VALVE_CTRL_PWM_DUTY_CYCLE = VALVE_CTRL_PWM_DUTY_CYCLE + 0.05;
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_valve_ctrl, VALVE_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
Cy_SysLib_Delay(25);
//if (PWM_DUTY_CYCLE > 10.0f) PWM_DUTY_CYCLE = 10.0f;
//if (PWM_DUTY_CYCLE < 0.0f) PWM_DUTY_CYCLE = 0.0f;
}
}
///////////////////////////////////////////////////////////////////////////
servo_last_position = angle;
// some delay may be needed
// turn off pwm signal //
cyhal_pwm_free(&pwm_servo_signal_valve_ctrl);
}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
//This function controls the other servo motor to activate the peizo ignition lever
void operate_servo_peizo_ignition (void)
{
// Initialize the PWM //
__enable_irq();
cyhal_pwm_init(&pwm_servo_signal_peizo_ctrl, PWM_PIN_PEIZO_CTRL, NULL);
// Set the PWM output frequency and duty cycle */
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_peizo_ctrl, PEIZO_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
// Start the PWM //
cyhal_pwm_start(&pwm_servo_signal_peizo_ctrl);
// move servo motor 1 to pull the lever of peizo igniter spark generator
while(PEIZO_CTRL_PWM_DUTY_CYCLE >= 0.0f)
{
PEIZO_CTRL_PWM_DUTY_CYCLE = PEIZO_CTRL_PWM_DUTY_CYCLE - 0.1;
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_peizo_ctrl, PEIZO_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
Cy_SysLib_Delay(25);
}
while(PEIZO_CTRL_PWM_DUTY_CYCLE <=10.0f)
{
PEIZO_CTRL_PWM_DUTY_CYCLE = PEIZO_CTRL_PWM_DUTY_CYCLE + 0.1;
cyhal_pwm_set_duty_cycle(&pwm_servo_signal_peizo_ctrl, PEIZO_CTRL_PWM_DUTY_CYCLE, PWM_FREQUENCY);
Cy_SysLib_Delay(25);
}
PEIZO_CTRL_PWM_DUTY_CYCLE = 10.0f;
// turn of pwm signal
cyhal_pwm_free(&pwm_servo_signal_peizo_ctrl);
}
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// convert percent value from string to integer, in step of 5, range: 10-100
// for example this string "forty percent" will return 40,
int get_percent (char *pv_value)
{
int i = 30; //default value for wrong input
if (!(strcmp(pv_value, "ten percent")))
{i = 10;}
if (!(strcmp(pv_value, "fifteen percent")))
{i = 15;}
if (!(strcmp(pv_value, "twenty percent")))
{i = 20;}
if (!(strcmp(pv_value, "twenty five percent")))
{i = 25;}
if (!(strcmp(pv_value, "thirty percent")))
{i = 30;}
if (!(strcmp(pv_value, "thirty five percent")))
{i = 35;}
if (!(strcmp(pv_value, "forty percent")))
{i = 40;}
if (!(strcmp(pv_value, "forty five percent")))
{i = 45;}
if (!(strcmp(pv_value, "fifty percent")))
{i = 50;}
if (!(strcmp(pv_value, "fifty five percent")))
{i = 55;}
if (!(strcmp(pv_value, "sixty percent")))
{i = 60;}
if (!(strcmp(pv_value, "sixty five percent")))
{i = 65;}
if (!(strcmp(pv_value, "seventy percent")))
{i = 70;}
if (!(strcmp(pv_value, "seventy five percent")))
{i = 75;}
if (!(strcmp(pv_value, "eighty percent")))
{i = 80;}
if (!(strcmp(pv_value, "eighty five percent")))
{i = 85;}
if (!(strcmp(pv_value, "ninety percent")))
{i = 90;}
if (!(strcmp(pv_value, "ninety five percent")))
{i = 95;}
if (!(strcmp(pv_value, "hundred percent")))
{i = 100;}
return i;
}
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
///// Convert Voice Command for Cooking Timer into integer //////
// Valid timer setting are 1,2,3,5,10,15,20,25,30 minutes only //
int get_timer_duration (char *minutes)
{
int m = 1;
if (!(strcmp(minutes, "One Minute")))
{m = 1;}
if (!(strcmp(minutes, "Two Minutes")))
{m = 2;}
if (!(strcmp(minutes, "Three Minutes")))
{m = 3;}
if (!(strcmp(minutes, "Five Minutes")))
{m = 5;}
if (!(strcmp(minutes, "Ten Minutes")))
{m = 10;}
if (!(strcmp(minutes, "Fifteen Minutes")))
{m = 15;}
if (!(strcmp(minutes, "Twenty Minutes")))
{m = 20;}
if (!(strcmp(minutes, "Twenty Five Minutes")))
{m = 25;}
if (!(strcmp(minutes, "Thirty Minutes")))
{m = 30;}
return m;
}
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
void check_if_timer_expired(void)
{
cyhal_lptimer_get_info(&lptimer_obj, &lptimer_obj_info);
uint32_t timeout_val = timer_start_cnt + timer_duration*60*(unsigned long)lptimer_obj_info.frequency_hz;
timer_stop_cnt = cyhal_lptimer_read(&lptimer_obj);
if(timer_stop_cnt>timeout_val)
{
// duration of cooking timer has elapsed
// Turn off the stove/flame/gas
set_servo_position(0.0f); // Fully Close Gas Valve
// acknowledge shutdown cmd with voice playback
printf("006"); printf("\r\n");
timer_en = 0;
cyhal_lptimer_free(&lptimer_obj);
}
}
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
// glows on board green LED when wake word "Hey Stove" is said
static void wake_word_callback(void)
{
cy_rgb_led_on(CY_RGB_LED_COLOR_GREEN, CY_RGB_LED_MAX_BRIGHTNESS);
}
// This is the core function to extract Intent from Inference //
// I have added my own code by modifying the original function //
// Original code provided by Picovoice //
/////////////////// Important note /////////////////////
/* printf() is used to send voice playback commands from
PSoC6 to Beetle over half duplex UART line,
after receiving each command a specific file on
voice playback module is selected by Bettle board
for playing appropriate mp3 file
This is how the Interactive Voice UI works !
*/
/////////////////////////////////////////////////////////
static void inference_callback(pv_inference_t *inference)
{
cy_rgb_led_on(CY_RGB_LED_COLOR_BLUE, CY_RGB_LED_MAX_BRIGHTNESS);
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
if (!(inference->is_understood))
{
// "Intent not understood please say again" - msg playback
printf("014"); printf("\r\n");
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
// if there is a valid intent
if (inference->is_understood)
{
// identify the intent and execute necessary hardware actions
//////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////
if(!(strcmp(inference->intent, "StartBurner")))
{
// " All right" - msg playback
printf("002"); printf("\r\n");
// Turn on the stove/open gas valve + ignite fire
set_servo_position(10.0f); // Partially Open Gas Valve
Cy_SysLib_Delay(200);
operate_servo_peizo_ignition(); // Ignite fire with Spark
Cy_SysLib_Delay(500);
// Voice Playback //
// Flame sensing/ gas sensing here (later) //
// "Flame Ignition Successful" - msg playback
printf("003"); printf("\r\n");
Cy_SysLib_Delay(900);
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
if (!(strcmp(inference->intent,"StopBurner")))
{
// Turn off the stove/flame/gas
set_servo_position(0.0f); // Fully Close Gas Valve
// "Turning off Now" msg playback
printf("006"); printf("\r\n");
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
if(!(strcmp(inference->intent, "SetTimer")))
{
timer_duration = get_timer_duration(inference->values[0]);
//printf("%d",timer_duration);
timer_en = 1; // timer enable indication flag
cyhal_lptimer_init(&lptimer_obj); // start low power timer
timer_start_cnt = cyhal_lptimer_read(&lptimer_obj);
// "Timer has been set" -msg playback
printf("007"); printf("\r\n");
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
if (!(strcmp(inference->intent, "SetFlame")))
{
// Increase/decrease gas flow to adjust flame
int gas_valve = get_percent(inference->values[1]);
// scaling: half of (180 degree/100 percent) = 0.9f
float valve_pos = gas_valve*0.9f;
set_servo_position(valve_pos);
// convert integer to string (for gas/flame level)
char num2str[2];
char padding[3]="0";
sprintf(num2str, "%d", gas_valve);
strcat(padding,num2str);
// Voice msg playback confirms user's input for flame/gas adjustment
printf("004"); printf("\r\n");
Cy_SysLib_Delay(2400);
printf("%s",padding); printf("\r\n");
Cy_SysLib_Delay(2500);
printf("005"); printf("\r\n");
Cy_SysLib_Delay(900);
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
}
}
for (int32_t i = 0; i < 10; i++) {
if (cy_rgb_led_get_brightness() == 0) {
cy_rgb_led_set_brightness(CY_RGB_LED_MAX_BRIGHTNESS);
} else {
cy_rgb_led_set_brightness(0);
}
Cy_SysLib_Delay(30);
}
cy_rgb_led_off();
pv_inference_delete(inference);
}
/*static void error_handler(void) {
while(true);
}*/
///////////////////// VOID MAIN ///////////////////
///////////////////////////////////////////////////
int main(void) {
// necessary initializations for picovoice to work properly
pv_board_init();
pv_message_init();
// Use the following code if you need to know the UUID of your Board //
// UUID will be needed every time you create a new AI model on picovoice.ai //
/*
const uint8_t *board_uuid = pv_get_uuid();
printf("UUID: ");
for (uint32_t i = 0; i < pv_get_uuid_size(); i++) {
printf(" %.2x", board_uuid[i]);
}
printf("\r\n");
*/
// Initialize audio and start listening for user voice input //
pv_audio_rec_init();
pv_audio_rec_start();
pv_picovoice_t *handle = NULL;
pv_picovoice_init(ACCESS_KEY,
MEMORY_BUFFER_SIZE,
memory_buffer,
sizeof(KEYWORD_ARRAY),
KEYWORD_ARRAY,
PORCUPINE_SENSITIVITY,
wake_word_callback,
sizeof(CONTEXT_ARRAY),
CONTEXT_ARRAY,
RHINO_SENSITIVITY,
true,
inference_callback,
&handle);
// keep listening and if there is something meaningful,
// process it with picovoice AI engine
while (true) {
const int16_t *buffer = pv_audio_rec_get_new_buffer();
if (buffer) {
pv_picovoice_process(handle, buffer);
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
if (timer_en == 1)
{
// while cooking timer is running, check if the timer has timed out
check_if_timer_expired();
}
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
}
// should never reach here, just in case
pv_board_deinit();
pv_audio_rec_deinit();
pv_picovoice_delete(handle);
}
//////////////////////// END_OF_MAIN ////////////////////////
///////////////////////Licensing Info////////////////////////
/////////////////////////////////////////////////////////////
////////////////// For Picovoice Code ///////////////////////
/*
Copyright 2021 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
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.
*/
////////////////// For Infenion/Cypress Code ////////////////
/*******************************************************************************
* Copyright 2020-2021, Cypress Semiconductor Corporation (an Infineon company) or
* an affiliate of Cypress Semiconductor Corporation. All rights reserved.
*
* This software, including source code, documentation and related
* materials ("Software") is owned by Cypress Semiconductor Corporation
* or one of its affiliates ("Cypress") and is protected by and subject to
* worldwide patent protection (United States and foreign),
* United States copyright laws and international treaty provisions.
* Therefore, you may use this Software only as provided in the license
* agreement accompanying the software package from which you
* obtained this Software ("EULA").
* If no EULA applies, Cypress hereby grants you a personal, non-exclusive,
* non-transferable license to copy, modify, and compile the Software
* source code solely for use in connection with Cypress's
* integrated circuit products. Any reproduction, modification, translation,
* compilation, or representation of this Software except as specified
* above is prohibited without the express written permission of Cypress.
*
* Disclaimer: THIS SOFTWARE IS PROVIDED AS-IS, WITH NO WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, NONINFRINGEMENT, IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress
* reserves the right to make changes to the Software without notice. Cypress
* does not assume any liability arising out of the application or use of the
* Software or any product or circuit described in the Software. Cypress does
* not authorize its products for use in any products where a malfunction or
* failure of the Cypress product may reasonably be expected to result in
* significant property damage, injury or death ("High Risk Product"). By
* including Cypress's product in a High Risk Product, the manufacturer
* of such system or application assumes all risk of such use and in doing
* so agrees to indemnify Cypress against all liability.
*******************************************************************************/
////////////////// For my code //////////////////////////////
/* Most of my codes are inserted with in double slash lines
*
*
*/
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
////////////// (probably my codes, mostly !) //////////////////
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
/////////// Do whatever you want with my part of codes ////////
/////////// No credit needed for my code ////////
// but please follow Picovoice and Infenion terms of License //
///////////////////////////////////////////////////////////////
//////////////////// End of Magic Spells //////////////////////
#include "U8glib.h"
#include <DFRobot_DF1101S.h>
#include <SoftwareSerial.h>
SoftwareSerial df1101sSerial(10, 11); // RX = 10 TX = 11
SoftwareSerial PSoC6Serial(9, A1); // RX = 9 TX = A1
U8GLIB_SSD1306_128X32 u8g(U8G_I2C_OPT_NONE); // SCL = 2 SDA = 3
DFRobot_DF1101S df1101s;
#define BUTTON_DEC A2
//#define BUTTON_INC 1 // Button disabled for serial port purpose (won't worry !)
#define BUTTON_SEL A0
//#define OUTPUT_PIN1 0 // Output disabled for serial port usage
#define OUTPUT_PIN2 A1
#define OUTPUT_PIN3 9
#define BLUE_LED 13
/////////////////////////
// record more mp3 and add more defines like this
// if device needs to say something through speaker
//////////////////////////////////////////////////
int number_index = 3;
int volume = 30;
long last_millis;
void setup(void)
{
u8g.setRot90(); // change oled display orientation
// set GPIOs for buttons and LED
pinMode(BUTTON_DEC, INPUT_PULLUP);
//pinMode(BUTTON_INC, INPUT_PULLUP);
pinMode(BUTTON_SEL, INPUT_PULLUP);
pinMode(BLUE_LED, OUTPUT);
// Output pins for controlling something
//pinMode(OUTPUT_PIN1, OUTPUT); digitalWrite(OUTPUT_PIN1,LOW);
pinMode(OUTPUT_PIN2, OUTPUT); digitalWrite(OUTPUT_PIN2,LOW);
// welcome message
update_display_message_0();
delay(500);
// init soft serial to communicate with voice playback moduel
df1101sSerial.begin(115200);
delay(100);
while(!df1101s.begin(df1101sSerial))
{
// update_display_message_1();
df1101s.setPrompt(false);
}
//Set initial volume to 10
df1101s.setVol(volume);
// set playback mode
df1101s.switchFunction(df1101s.MUSIC);
// fast blink LED on pin 13
for(int i = 0; i<10; i++)
{debounce_blinky();}
// init soft serial to half duplex to rcv cmd from PSoC6
PSoC6Serial.begin(115200);
// adjust volume with buttons
// BUTTON_SEL for selecting shown value
// BUTTON_INC for increasing shown value
// BUTTON_DEC for decreasing shown value
for(int i = 0; i<10; i++)
{debounce_blinky();}
// set mp3 playback as single cycle
df1101s.setPlayMode(df1101s.SINGLECYCLE);
}
void loop()
{
while(true)
{
if (PSoC6Serial.available())
{
char incoming_cmd[3]= "000";
PSoC6Serial.readBytes(incoming_cmd, 3);
int playback_index = atoi(incoming_cmd);
df1101s.playSpecFile(incoming_cmd);
// Serial.print(incoming_cmd);
}
}
// control fire starter circuit
//trigger_event();
} // end of loop
///////////////////////////////////
///control and display functions///
///////////////////////////////////
void update_display_message_0(void)
{
u8g.firstPage();
do {
u8g.setFont(u8g_font_6x12);
u8g.drawStr( 0, 10, "say");
u8g.drawStr( 0, 25, "wake");
u8g.drawStr( 0, 40, "word");
u8g.drawStr( 0, 55, "====");
u8g.drawStr( 0, 70, "HEY");
u8g.drawStr( 0, 85, "stove");
} while( u8g.nextPage() );
}
void debounce_blinky(void)
{
digitalWrite(BLUE_LED,HIGH);
delay(25);
digitalWrite(BLUE_LED,LOW);
delay(25);
}
/*
Copyright 2021-2022 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
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 PV_PARAMS_H
#define PV_PARAMS_H
#include <stdint.h>
#if defined(__PV_LANGUAGE_ENGLISH__)
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// wake-word = Hey Stove
// Copy the wake word model generated at picovoice.ai and replaced the existing array
static const uint8_t KEYWORD_ARRAY[] = {
0x95, 0xc3, 0xad, 0xe7, 0x3c, 0x8b, 0x4f, 0x21, 0x7f, 0x91, 0x83, 0x2c, 0xbd, 0x52, 0xfb, 0xaa, 0x00, 0x8e,
0xa1, 0xb1, 0x02, 0x0b, 0xad, 0x44, 0x31, 0xb9, 0xe8, 0x64, 0x6b, 0x88, 0x21, 0x42, 0x63, 0x7b, 0xa4, 0x6f,
0xff, 0x1e, 0xdd, 0x4d, 0x77, 0x07, 0x0d, 0xfe, 0xe0, 0xac, 0x05, 0xc9, 0x57, 0x54, 0xb9, 0x34, 0x2e, 0x19,
0x92, 0x33, 0x99, 0xa3, 0xec, 0xed, 0xa6, 0xc6, 0xed, 0x8a, 0xd8, 0x1f, 0xba, 0xe9, 0x3c, 0xc0, 0x56, 0x7a,
0x48, 0x76, 0x22, 0x12, 0xc9, 0xee, 0xb5, 0xa1, 0xa4, 0x43, 0x9e, 0xda, 0xe9, 0xce, 0xb8, 0x7a, 0xbf, 0x09,
0x1e, 0x05, 0xe4, 0x21, 0xc5, 0x16, 0x4e, 0x37, 0xfa, 0x29, 0x8b, 0x6a, 0x7e, 0x3c, 0x56, 0x9e, 0x2c, 0x01,
0xf9, 0x4f, 0xe3, 0x91, 0x5b, 0x14, 0x1a, 0xf2, 0x00, 0xc8, 0xaf, 0xcd, 0xae, 0xf6, 0x22, 0x1f, 0xb4, 0x50,
0x41, 0x71, 0xf6, 0x60, 0x05, 0x4e, 0xa7, 0x80, 0x2f, 0x53, 0x76, 0xd4, 0x41, 0xdb, 0x1d, 0xf4, 0x7f, 0xbb,
0x58, 0x72, 0xfa, 0x48, 0xcb, 0x12, 0x52, 0x12, 0xcf, 0xf6, 0x71, 0x84, 0x76, 0x1f, 0xa5, 0xfc, 0x9f, 0xe6,
0x2f, 0xfb, 0x35, 0xea, 0x24, 0x9a, 0x4a, 0x64, 0x0e, 0x0b, 0x8e, 0xf2, 0x46, 0xeb, 0xd5, 0xfc, 0x6d, 0x29,
0x1a, 0xfb, 0x31, 0x89, 0xe8, 0x13, 0xd3, 0x1b, 0xce, 0x61, 0x1e, 0xb7, 0x84, 0xe5, 0x36, 0x7a, 0x74, 0x28,
0xdb, 0x6f, 0xbc, 0xd7, 0x3b, 0xd1, 0x87, 0x2a, 0xcd, 0x87, 0x05, 0x44, 0xb4, 0x07, 0x69, 0x2f, 0xae, 0xde,
0xfd, 0xd3, 0x0b, 0x72, 0xbe, 0x53, 0x45, 0x26, 0x3a, 0x88, 0x3c, 0xf1, 0x75, 0x62, 0x1f, 0x7d, 0xec, 0x54,
0x7c, 0x1d, 0xe4, 0x5a, 0x01, 0x34, 0x10, 0x79, 0xe4, 0x4a, 0x94, 0x00, 0x31, 0xc7, 0xcd, 0xb9, 0xce, 0x29,
0x25, 0xe2, 0x17, 0x86, 0x37, 0xd7, 0x52, 0x84, 0x21, 0xbf, 0x48, 0xe8, 0xf1, 0xba, 0xa1, 0x63, 0x3c, 0x3c,
0xb9, 0xe7, 0x25, 0x95, 0xb6, 0x08, 0x95, 0x12, 0xa0, 0xf2, 0x76, 0xf7, 0xfd, 0x1f, 0xc9, 0x6a, 0x0c, 0x5e,
0x2d, 0xbc, 0x59, 0x30, 0x5e, 0xdb, 0x16, 0xb0, 0x91, 0xc8, 0xa4, 0xbe, 0x7f, 0x99, 0x13, 0x7a, 0x9c, 0x06,
0x81, 0x35, 0xb0, 0xe9, 0xe5, 0x42, 0x0c, 0x57, 0xbc, 0x36, 0x52, 0xb3, 0xbb, 0x9e, 0xba, 0x8f, 0xdf, 0x7d,
0x3c, 0xda, 0xb9, 0x43, 0x2b, 0x81, 0xf7, 0xd3, 0x67, 0x8d, 0xe1, 0x45, 0x45, 0x7a, 0x5a, 0xed, 0xf4, 0x10,
0x6c, 0x22, 0x05, 0xa8, 0xd5, 0x27, 0x17, 0x73, 0x87, 0x5a, 0x5a, 0x29, 0x3a, 0xdb, 0x6c, 0x7b, 0xad, 0xee,
0xaf, 0x08, 0x6e, 0x5e, 0x4a, 0xb3, 0x91, 0x77, 0xc9, 0x1c, 0xc2, 0x01, 0x30, 0xd0, 0x86, 0x15, 0x0d, 0x7c,
0x0b, 0x50, 0xfc, 0x28, 0xdf, 0x16, 0xbc, 0x4a, 0xc4, 0xad, 0xa2, 0x51, 0x51, 0xe7, 0xa9, 0xe2, 0x4f, 0x20,
0xa1, 0xec, 0xee, 0xab, 0xb3, 0x5d, 0xbc, 0x71, 0x30, 0x9e, 0x3c, 0x68, 0x27, 0xbf, 0xa7, 0x87, 0x34, 0x7b,
0xf9, 0xef, 0xff, 0x98, 0x0b, 0x48, 0xc3, 0xf3, 0xf6, 0x42, 0xe9, 0x87, 0x2e, 0x2a, 0x39, 0x46, 0xac, 0x8e,
0xc0, 0x83, 0xad, 0xb5, 0x74, 0x4b, 0xba, 0xdf, 0xc7, 0x33, 0x70, 0xe9, 0xac, 0xc4, 0xd5, 0x05, 0x8a, 0x6e,
0xbc, 0x26, 0xa4, 0xf2, 0x86, 0xfc, 0x95, 0xbe, 0x34, 0xeb, 0x7b, 0xb4, 0x48, 0x10, 0x48, 0xe2, 0x22, 0x74,
0x1c, 0x05, 0xbb, 0xc9, 0xd4, 0x01, 0x4b, 0x53, 0xc6, 0x27, 0x7b, 0xfd, 0x54, 0x99, 0x1c, 0x10, 0xf6, 0x3d,
0x3f, 0x2c, 0x81, 0x5a, 0x24, 0xf9, 0x4d, 0x07, 0x21, 0x78, 0xad, 0x88, 0xb1, 0xfb
};
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// context = Voice Controlled Stove
// Copy the context model generated at picovoice.ai and replaced the existing array
static const uint8_t CONTEXT_ARRAY[] = {
0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x31, 0x2e, 0x30, 0x08, 0x00, 0x00, 0x00, 0xdc, 0x40, 0x96, 0x13,
0x3b, 0x23, 0xbf, 0xef, 0xd1, 0x1a, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x33, 0x65, 0x30, 0x62, 0x31, 0x39,
0x32, 0x37, 0x2d, 0x34, 0x32, 0x64, 0x66, 0x2d, 0x34, 0x33, 0x39, 0x63, 0x2d, 0x38, 0x32, 0x65, 0x34, 0x2d,
0x34, 0x31, 0x31, 0x33, 0x64, 0x36, 0x32, 0x30, 0x64, 0x62, 0x37, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x22, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x3a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x2d, 0x20, 0x28, 0x70, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x29, 0x20, 0x40, 0x53, 0x74, 0x61,
0x72, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x3a, 0x46, 0x6c,
0x61, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x42, 0x75, 0x72, 0x6e, 0x65, 0x72,
0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x27, 0x40, 0x53, 0x74, 0x6f, 0x70, 0x20, 0x28, 0x74, 0x68,
0x65, 0x29, 0x20, 0x24, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x3a, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x27, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x53, 0x65, 0x74, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d,
0x20, 0x27, 0x40, 0x53, 0x65, 0x74, 0x20, 0x24, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x3a, 0x46, 0x6c, 0x61, 0x6d,
0x65, 0x20, 0x28, 0x74, 0x6f, 0x29, 0x20, 0x28, 0x24, 0x70, 0x76, 0x2e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x3a, 0x70, 0x76, 0x2e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x29, 0x27, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x53, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x27,
0x40, 0x53, 0x65, 0x74, 0x20, 0x28, 0x74, 0x69, 0x6d, 0x65, 0x72, 0x2c, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2c,
0x20, 0x74, 0x6f, 0x29, 0x20, 0x28, 0x24, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x29, 0x20,
0x28, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x2c, 0x20, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x29, 0x27,
0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x46, 0x6c, 0x61, 0x6d,
0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x46, 0x69, 0x72, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x47, 0x61, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x48, 0x65, 0x61, 0x74, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x53,
0x74, 0x6f, 0x76, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x42, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x4f, 0x6e,
0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x77, 0x6f,
0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x68, 0x72,
0x65, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x46,
0x69, 0x76, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
0x54, 0x65, 0x6e, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
0x46, 0x69, 0x66, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x2d, 0x20, 0x54, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x46, 0x69, 0x76, 0x65,
0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x68, 0x69,
0x72, 0x74, 0x79, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x6d, 0x61, 0x63, 0x72,
0x6f, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x2d, 0x20, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x41, 0x63,
0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x46, 0x69, 0x72, 0x65, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x49, 0x67, 0x6e, 0x69, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d,
0x20, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6f, 0x77, 0x65, 0x72,
0x20, 0x55, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x75, 0x72, 0x6e, 0x20, 0x4f, 0x6e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x44, 0x69,
0x73, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x45, 0x6e, 0x64, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x2d, 0x20, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x45,
0x78, 0x74, 0x69, 0x6e, 0x67, 0x75, 0x69, 0x73, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x53, 0x68,
0x75, 0x74, 0x20, 0x4f, 0x66, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x43, 0x75, 0x74, 0x20, 0x4f,
0x66, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x44, 0x6f, 0x77,
0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x4f, 0x66, 0x66, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x54, 0x75, 0x72, 0x6e, 0x20, 0x4f, 0x66, 0x66, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x53, 0x65, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x61, 0x73, 0x65, 0x0a, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
0x25, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x43, 0x00,
0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00,
0x70, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x00, 0x90, 0x00,
0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00,
0xbb, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0xe5, 0x00,
0x00, 0x00, 0xf3, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00,
0x27, 0x01, 0x00, 0x00, 0x33, 0x01, 0x00, 0x00, 0x41, 0x01, 0x00, 0x00, 0x52, 0x01, 0x00, 0x00, 0x67, 0x01,
0x00, 0x00, 0x7b, 0x01, 0x00, 0x00, 0x8f, 0x01, 0x00, 0x00, 0xa3, 0x01, 0x00, 0x00, 0xb6, 0x01, 0x00, 0x00,
0xc5, 0x01, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0xed, 0x01, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x15, 0x02,
0x00, 0x00, 0x24, 0x02, 0x00, 0x00, 0x34, 0x02, 0x00, 0x00, 0x48, 0x02, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00,
0x6e, 0x02, 0x00, 0x00, 0x81, 0x02, 0x00, 0x00, 0x93, 0x02, 0x00, 0x00, 0xa1, 0x02, 0x00, 0x00, 0xb5, 0x02,
0x00, 0x00, 0xc7, 0x02, 0x00, 0x00, 0xdb, 0x02, 0x00, 0x00, 0xed, 0x02, 0x00, 0x00, 0xfa, 0x02, 0x00, 0x00,
0x0e, 0x03, 0x00, 0x00, 0x21, 0x03, 0x00, 0x00, 0x34, 0x03, 0x00, 0x00, 0x47, 0x03, 0x00, 0x00, 0x59, 0x03,
0x00, 0x00, 0x67, 0x03, 0x00, 0x00, 0x7b, 0x03, 0x00, 0x00, 0x8d, 0x03, 0x00, 0x00, 0xa1, 0x03, 0x00, 0x00,
0xb3, 0x03, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xd1, 0x03, 0x00, 0x00, 0xe1, 0x03, 0x00, 0x00, 0xe8, 0x03,
0x00, 0x00, 0xf0, 0x03, 0x00, 0x00, 0xfd, 0x03, 0x00, 0x00, 0x0e, 0x04, 0x00, 0x00, 0x23, 0x04, 0x00, 0x00,
0x37, 0x04, 0x00, 0x00, 0x4b, 0x04, 0x00, 0x00, 0x5f, 0x04, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x81, 0x04,
0x00, 0x00, 0x96, 0x04, 0x00, 0x00, 0xa9, 0x04, 0x00, 0x00, 0xbe, 0x04, 0x00, 0x00, 0xd1, 0x04, 0x00, 0x00,
0xe5, 0x04, 0x00, 0x00, 0xf1, 0x04, 0x00, 0x00, 0xf8, 0x04, 0x00, 0x00, 0x06, 0x05, 0x00, 0x00, 0x18, 0x05,
0x00, 0x00, 0x2e, 0x05, 0x00, 0x00, 0x43, 0x05, 0x00, 0x00, 0x58, 0x05, 0x00, 0x00, 0x6d, 0x05, 0x00, 0x00,
0x81, 0x05, 0x00, 0x00, 0x91, 0x05, 0x00, 0x00, 0xa7, 0x05, 0x00, 0x00, 0xbb, 0x05, 0x00, 0x00, 0xd1, 0x05,
0x00, 0x00, 0xe5, 0x05, 0x00, 0x00, 0xf1, 0x05, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x15, 0x06, 0x00, 0x00,
0x28, 0x06, 0x00, 0x00, 0x3b, 0x06, 0x00, 0x00, 0x4e, 0x06, 0x00, 0x00, 0x60, 0x06, 0x00, 0x00, 0x6e, 0x06,
0x00, 0x00, 0x82, 0x06, 0x00, 0x00, 0x94, 0x06, 0x00, 0x00, 0xa8, 0x06, 0x00, 0x00, 0xba, 0x06, 0x00, 0x00,
0xc6, 0x06, 0x00, 0x00, 0xca, 0x06, 0x00, 0x00, 0xdb, 0x06, 0x00, 0x00, 0xf0, 0x06, 0x00, 0x00, 0x04, 0x07,
0x00, 0x00, 0x18, 0x07, 0x00, 0x00, 0x2c, 0x07, 0x00, 0x00, 0x3f, 0x07, 0x00, 0x00, 0x4e, 0x07, 0x00, 0x00,
0x63, 0x07, 0x00, 0x00, 0x76, 0x07, 0x00, 0x00, 0x8b, 0x07, 0x00, 0x00, 0x9e, 0x07, 0x00, 0x00, 0xac, 0x07,
0x00, 0x00, 0xb1, 0x07, 0x00, 0x00, 0xb7, 0x07, 0x00, 0x00, 0xba, 0x07, 0x00, 0x00, 0xc9, 0x07, 0x00, 0x00,
0xde, 0x07, 0x00, 0x00, 0xf2, 0x07, 0x00, 0x00, 0x06, 0x08, 0x00, 0x00, 0x1a, 0x08, 0x00, 0x00, 0x2d, 0x08,
0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x51, 0x08, 0x00, 0x00, 0x64, 0x08, 0x00, 0x00, 0x79, 0x08, 0x00, 0x00,
0x8c, 0x08, 0x00, 0x00, 0x98, 0x08, 0x00, 0x00, 0xa5, 0x08, 0x00, 0x00, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61,
0x74, 0x65, 0x00, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x00, 0x42, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x00, 0x43, 0x68,
0x61, 0x6e, 0x67, 0x65, 0x00, 0x43, 0x75, 0x74, 0x20, 0x4f, 0x66, 0x66, 0x00, 0x44, 0x69, 0x73, 0x61, 0x62,
0x6c, 0x65, 0x00, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x45, 0x6e, 0x64, 0x00, 0x45, 0x78, 0x74, 0x69,
0x6e, 0x67, 0x75, 0x69, 0x73, 0x68, 0x00, 0x46, 0x69, 0x66, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x4d, 0x69, 0x6e,
0x75, 0x74, 0x65, 0x73, 0x00, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x00, 0x46, 0x69, 0x72, 0x65, 0x00, 0x46,
0x69, 0x76, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x00, 0x47, 0x61, 0x73, 0x00, 0x48, 0x65,
0x61, 0x74, 0x00, 0x49, 0x67, 0x6e, 0x69, 0x74, 0x65, 0x00, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x61, 0x73, 0x65,
0x00, 0x4f, 0x6e, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x00, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x00,
0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x44, 0x6f, 0x77, 0x6e, 0x00, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x4f,
0x66, 0x66, 0x00, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x55, 0x70, 0x00, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65,
0x00, 0x53, 0x68, 0x75, 0x74, 0x20, 0x4f, 0x66, 0x66, 0x00, 0x53, 0x74, 0x6f, 0x76, 0x65, 0x00, 0x54, 0x65,
0x6e, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x00, 0x54, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x4d,
0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x00, 0x54, 0x68, 0x72, 0x65, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74,
0x65, 0x73, 0x00, 0x54, 0x75, 0x72, 0x6e, 0x20, 0x4f, 0x66, 0x66, 0x00, 0x54, 0x75, 0x72, 0x6e, 0x20, 0x4f,
0x6e, 0x00, 0x54, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x46, 0x69, 0x76, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x75,
0x74, 0x65, 0x73, 0x00, 0x54, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73,
0x00, 0x54, 0x77, 0x6f, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74,
0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74, 0x65, 0x65, 0x6e, 0x20,
0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67,
0x68, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20,
0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74,
0x79, 0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67,
0x68, 0x74, 0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65,
0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67,
0x68, 0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
0x00, 0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x65, 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x65, 0x6c, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x69, 0x66, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x6f, 0x72, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x66, 0x6f, 0x75, 0x72, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x68,
0x75, 0x6e, 0x64, 0x72, 0x65, 0x64, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6d, 0x69, 0x6e,
0x75, 0x74, 0x65, 0x00, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70,
0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74,
0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74, 0x79, 0x20, 0x66, 0x69,
0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74, 0x79, 0x20,
0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74,
0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e,
0x65, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69,
0x6e, 0x65, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74,
0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e, 0x69,
0x6e, 0x65, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x6e,
0x69, 0x6e, 0x65, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x6e, 0x69, 0x6e, 0x65, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x6f, 0x6e, 0x65, 0x20, 0x68, 0x75, 0x6e, 0x64, 0x72, 0x65, 0x64, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x70,
0x6c, 0x65, 0x61, 0x73, 0x65, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x66, 0x69, 0x76, 0x65,
0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x66,
0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74,
0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70,
0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f,
0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72,
0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x73, 0x69, 0x78, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x74, 0x68, 0x65, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x65, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x65,
0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x66, 0x69, 0x76, 0x65, 0x20,
0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x66, 0x6f, 0x75,
0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x6e,
0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79,
0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74,
0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x73,
0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72, 0x74,
0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x68, 0x69, 0x72,
0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74,
0x68, 0x69, 0x72, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x69, 0x6d, 0x65,
0x00, 0x74, 0x69, 0x6d, 0x65, 0x72, 0x00, 0x74, 0x6f, 0x00, 0x74, 0x77, 0x65, 0x6c, 0x76, 0x65, 0x20, 0x70,
0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x65, 0x69, 0x67, 0x68,
0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x66,
0x69, 0x76, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e, 0x74, 0x79,
0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e,
0x74, 0x79, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77,
0x65, 0x6e, 0x74, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74,
0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e,
0x74, 0x79, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x74,
0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x73, 0x69, 0x78, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00,
0x74, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
0x6e, 0x74, 0x00, 0x74, 0x77, 0x65, 0x6e, 0x74, 0x79, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x00, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x7a, 0x65,
0x72, 0x6f, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00,
0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00,
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00,
0x26, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2d, 0x00,
0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x30, 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,
0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0x00, 0x42, 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, 0x50, 0x00, 0x00, 0x00,
0x51, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x55, 0x00,
0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00,
0x5f, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x63, 0x00,
0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00,
0x69, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x74, 0x00,
0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x85, 0x00,
0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00,
0x8f, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x93, 0x00,
0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00,
0x99, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x9d, 0x00,
0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00,
0xa6, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0xb0, 0x00,
0x00, 0x00, 0xb2, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00,
0xb8, 0x00, 0x00, 0x00, 0xb9, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, 0x00, 0xbf, 0x00,
0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00,
0xcb, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x00, 0xd3, 0x00,
0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x20, 0x00,
0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00,
0x45, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x59, 0x00,
0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00,
0x72, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x95, 0x00,
0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00,
0xb2, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0xc6, 0x00,
0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00,
0xf0, 0x00, 0x00, 0x00, 0xf5, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x0e, 0x01,
0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x28, 0x01, 0x00, 0x00, 0x33, 0x01, 0x00, 0x00, 0x3b, 0x01, 0x00, 0x00,
0x43, 0x01, 0x00, 0x00, 0x4d, 0x01, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x70, 0x01,
0x00, 0x00, 0x7c, 0x01, 0x00, 0x00, 0x88, 0x01, 0x00, 0x00, 0x95, 0x01, 0x00, 0x00, 0x9e, 0x01, 0x00, 0x00,
0xac, 0x01, 0x00, 0x00, 0xb9, 0x01, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0xdc, 0x01,
0x00, 0x00, 0xe8, 0x01, 0x00, 0x00, 0xf4, 0x01, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x0f, 0x02, 0x00, 0x00,
0x1d, 0x02, 0x00, 0x00, 0x2b, 0x02, 0x00, 0x00, 0x39, 0x02, 0x00, 0x00, 0x48, 0x02, 0x00, 0x00, 0x53, 0x02,
0x00, 0x00, 0x63, 0x02, 0x00, 0x00, 0x72, 0x02, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x8d, 0x02, 0x00, 0x00,
0x96, 0x02, 0x00, 0x00, 0xa3, 0x02, 0x00, 0x00, 0xb1, 0x02, 0x00, 0x00, 0xbf, 0x02, 0x00, 0x00, 0xcd, 0x02,
0x00, 0x00, 0xdb, 0x02, 0x00, 0x00, 0xea, 0x02, 0x00, 0x00, 0xf5, 0x02, 0x00, 0x00, 0x05, 0x03, 0x00, 0x00,
0x14, 0x03, 0x00, 0x00, 0x22, 0x03, 0x00, 0x00, 0x2f, 0x03, 0x00, 0x00, 0x38, 0x03, 0x00, 0x00, 0x44, 0x03,
0x00, 0x00, 0x51, 0x03, 0x00, 0x00, 0x5e, 0x03, 0x00, 0x00, 0x69, 0x03, 0x00, 0x00, 0x75, 0x03, 0x00, 0x00,
0x7a, 0x03, 0x00, 0x00, 0x7f, 0x03, 0x00, 0x00, 0x85, 0x03, 0x00, 0x00, 0x8b, 0x03, 0x00, 0x00, 0x94, 0x03,
0x00, 0x00, 0xa0, 0x03, 0x00, 0x00, 0xad, 0x03, 0x00, 0x00, 0xbb, 0x03, 0x00, 0x00, 0xc9, 0x03, 0x00, 0x00,
0xd7, 0x03, 0x00, 0x00, 0xe5, 0x03, 0x00, 0x00, 0xf4, 0x03, 0x00, 0x00, 0xff, 0x03, 0x00, 0x00, 0x0f, 0x04,
0x00, 0x00, 0x1e, 0x04, 0x00, 0x00, 0x2c, 0x04, 0x00, 0x00, 0x39, 0x04, 0x00, 0x00, 0x49, 0x04, 0x00, 0x00,
0x59, 0x04, 0x00, 0x00, 0x67, 0x04, 0x00, 0x00, 0x76, 0x04, 0x00, 0x00, 0x87, 0x04, 0x00, 0x00, 0x98, 0x04,
0x00, 0x00, 0xa7, 0x04, 0x00, 0x00, 0xb7, 0x04, 0x00, 0x00, 0xc0, 0x04, 0x00, 0x00, 0xca, 0x04, 0x00, 0x00,
0xce, 0x04, 0x00, 0x00, 0xd9, 0x04, 0x00, 0x00, 0xe7, 0x04, 0x00, 0x00, 0xf6, 0x04, 0x00, 0x00, 0x04, 0x05,
0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x23, 0x05, 0x00, 0x00, 0x33, 0x05, 0x00, 0x00, 0x42, 0x05, 0x00, 0x00,
0x52, 0x05, 0x00, 0x00, 0x61, 0x05, 0x00, 0x00, 0x71, 0x05, 0x00, 0x00, 0x82, 0x05, 0x00, 0x00, 0x91, 0x05,
0x00, 0x00, 0xa1, 0x05, 0x00, 0x00, 0xae, 0x05, 0x00, 0x00, 0xba, 0x05, 0x00, 0x00, 0xcc, 0x05, 0x00, 0x00,
0xdd, 0x05, 0x00, 0x00, 0xee, 0x05, 0x00, 0x00, 0xfe, 0x05, 0x00, 0x00, 0x0e, 0x06, 0x00, 0x00, 0x1d, 0x06,
0x00, 0x00, 0x2c, 0x06, 0x00, 0x00, 0x3a, 0x06, 0x00, 0x00, 0x44, 0x06, 0x00, 0x00, 0x51, 0x06, 0x00, 0x00,
0x5f, 0x06, 0x00, 0x00, 0x6e, 0x06, 0x00, 0x00, 0x7d, 0x06, 0x00, 0x00, 0x8c, 0x06, 0x00, 0x00, 0x9b, 0x06,
0x00, 0x00, 0xab, 0x06, 0x00, 0x00, 0xb7, 0x06, 0x00, 0x00, 0xc8, 0x06, 0x00, 0x00, 0xd8, 0x06, 0x00, 0x00,
0xe7, 0x06, 0x00, 0x00, 0xf5, 0x06, 0x00, 0x00, 0xfe, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x02, 0x07,
0x00, 0x00, 0x0d, 0x07, 0x00, 0x00, 0x19, 0x07, 0x00, 0x00, 0x25, 0x07, 0x00, 0x00, 0x32, 0x07, 0x00, 0x00,
0x3f, 0x07, 0x00, 0x00, 0x4c, 0x07, 0x00, 0x00, 0x59, 0x07, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x73, 0x07,
0x00, 0x00, 0x80, 0x07, 0x00, 0x00, 0x8e, 0x07, 0x00, 0x00, 0x9b, 0x07, 0x00, 0x00, 0xa9, 0x07, 0x00, 0x00,
0xb3, 0x07, 0x00, 0x00, 0xbd, 0x07, 0x00, 0x00, 0xcc, 0x07, 0x00, 0x00, 0xdb, 0x07, 0x00, 0x00, 0xe9, 0x07,
0x00, 0x00, 0xf7, 0x07, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x11, 0x08, 0x00, 0x00, 0x1d, 0x08, 0x00, 0x00,
0x29, 0x08, 0x00, 0x00, 0x32, 0x08, 0x00, 0x00, 0x35, 0x08, 0x00, 0x00, 0x39, 0x08, 0x00, 0x00, 0x3b, 0x08,
0x00, 0x00, 0x3d, 0x08, 0x00, 0x00, 0x3f, 0x08, 0x00, 0x00, 0x4a, 0x08, 0x00, 0x00, 0x58, 0x08, 0x00, 0x00,
0x65, 0x08, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x82, 0x08, 0x00, 0x00, 0x91, 0x08, 0x00, 0x00, 0x9f, 0x08,
0x00, 0x00, 0xae, 0x08, 0x00, 0x00, 0xbc, 0x08, 0x00, 0x00, 0xcb, 0x08, 0x00, 0x00, 0xdb, 0x08, 0x00, 0x00,
0xe9, 0x08, 0x00, 0x00, 0xf8, 0x08, 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x0f, 0x09, 0x00, 0x00, 0x20, 0x09,
0x00, 0x00, 0x30, 0x09, 0x00, 0x00, 0x40, 0x09, 0x00, 0x00, 0x4f, 0x09, 0x00, 0x00, 0x5e, 0x09, 0x00, 0x00,
0x6c, 0x09, 0x00, 0x00, 0x7a, 0x09, 0x00, 0x00, 0x87, 0x09, 0x00, 0x00, 0x8f, 0x09, 0x00, 0x00, 0x99, 0x09,
0x00, 0x00, 0xa3, 0x09, 0x00, 0x00, 0x02, 0x14, 0x1f, 0x03, 0x23, 0x0d, 0x1f, 0x07, 0x11, 0x0f, 0x11, 0x17,
0x07, 0x0c, 0x17, 0x0c, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x03, 0x1f, 0x04, 0x0e, 0x09, 0x11, 0x1d, 0x0d, 0x07,
0x03, 0x15, 0x0b, 0x17, 0x0d, 0x07, 0x03, 0x15, 0x11, 0x17, 0x0d, 0x07, 0x03, 0x15, 0x0b, 0x17, 0x09, 0x11,
0x14, 0x1d, 0x1f, 0x11, 0x18, 0x0f, 0x24, 0x11, 0x1e, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x17, 0x16, 0x11, 0x17,
0x03, 0x1f, 0x1d, 0x0e, 0x11, 0x17, 0x11, 0x1e, 0x0e, 0x06, 0x0c, 0x0e, 0x06, 0x1c, 0x0e, 0x06, 0x23, 0x16,
0x11, 0x17, 0x03, 0x1f, 0x1d, 0x0f, 0x02, 0x1d, 0x10, 0x12, 0x1f, 0x11, 0x0f, 0x17, 0x06, 0x1f, 0x11, 0x17,
0x14, 0x1c, 0x12, 0x1d, 0x24, 0x03, 0x17, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x24, 0x03, 0x17, 0x16, 0x06, 0x17,
0x22, 0x1f, 0x24, 0x03, 0x17, 0x16, 0x06, 0x17, 0x25, 0x22, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x16, 0x11, 0x17,
0x03, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x16, 0x06, 0x17, 0x22, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x16, 0x06, 0x17,
0x25, 0x22, 0x1f, 0x1b, 0x05, 0x0c, 0x1b, 0x05, 0x0c, 0x09, 0x05, 0x17, 0x1b, 0x05, 0x0c, 0x04, 0x0e, 0x1b,
0x05, 0x0c, 0x03, 0x1b, 0x1c, 0x03, 0x09, 0x22, 0x1d, 0x1c, 0x11, 0x09, 0x22, 0x1d, 0x1c, 0x12, 0x09, 0x22,
0x1d, 0x1e, 0x03, 0x1f, 0x04, 0x0e, 0x1d, 0x1f, 0x19, 0x23, 0x1f, 0x0b, 0x17, 0x16, 0x11, 0x17, 0x03, 0x1f,
0x1d, 0x20, 0x0c, 0x09, 0x12, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x20, 0x0c, 0x1f, 0x12, 0x16, 0x11, 0x17,
0x03, 0x1f, 0x1d, 0x20, 0x1c, 0x12, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x1f, 0x0c, 0x17, 0x04, 0x0e, 0x1f,
0x0c, 0x17, 0x01, 0x17, 0x1f, 0x0c, 0x17, 0x04, 0x17, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x0e, 0x06, 0x23,
0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x0e, 0x06, 0x23, 0x16, 0x11, 0x17, 0x03,
0x1f, 0x1d, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x1f, 0x24, 0x0b, 0x17,
0x12, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x1f, 0x22, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x0d, 0x1f, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12,
0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x17,
0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12,
0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12,
0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0d, 0x1f, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x11, 0x15, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x12, 0x15, 0x0b, 0x23,
0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e,
0x1f, 0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x0e, 0x04,
0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e,
0x11, 0x0e, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f,
0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0e, 0x11, 0x0e, 0x1f, 0x12, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x11,
0x0e, 0x1f, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c,
0x1f, 0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x0e, 0x04,
0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e,
0x04, 0x1c, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f,
0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04,
0x1c, 0x1f, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x0e, 0x04, 0x1c, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x03, 0x17, 0x09,
0x1c, 0x03, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x03, 0x17, 0x09, 0x1c, 0x11, 0x09, 0x1b, 0x0c,
0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x03, 0x17, 0x0c, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x03, 0x17,
0x09, 0x0c, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x16, 0x06, 0x17, 0x22,
0x1f, 0x16, 0x06, 0x17, 0x25, 0x22, 0x1f, 0x16, 0x11, 0x17, 0x03, 0x1f, 0x1d, 0x17, 0x06, 0x17, 0x1b, 0x0c,
0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06,
0x17, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x0e, 0x06,
0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17,
0x06, 0x17, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12,
0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17,
0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06,
0x17, 0x1f, 0x12, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x17, 0x06, 0x17, 0x1f, 0x12, 0x1f,
0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x24, 0x03, 0x17, 0x10, 0x03, 0x17, 0x09, 0x1c, 0x03, 0x09, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x24, 0x03, 0x17, 0x10, 0x03, 0x17, 0x09, 0x1c, 0x11, 0x09, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x24, 0x03, 0x17, 0x10, 0x03, 0x17, 0x0c, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x24,
0x03, 0x17, 0x10, 0x03, 0x17, 0x09, 0x0c, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x24, 0x03, 0x17,
0x10, 0x03, 0x17, 0x09, 0x1c, 0x03, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x10,
0x03, 0x17, 0x09, 0x1c, 0x11, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x10, 0x03,
0x17, 0x0c, 0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x24, 0x03, 0x17, 0x10, 0x03, 0x17, 0x09, 0x0c,
0x09, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x10, 0x24,
0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1b, 0x15, 0x12, 0x26, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17,
0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b,
0x23, 0x03, 0x17, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f,
0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x0e, 0x06,
0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f,
0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23,
0x03, 0x17, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17,
0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12,
0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x10, 0x24, 0x03,
0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03,
0x17, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03,
0x17, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17,
0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12,
0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x20,
0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x20, 0x1c, 0x12, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1f, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11,
0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d,
0x11, 0x14, 0x1d, 0x1f, 0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d,
0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x17,
0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x24, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14,
0x1d, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d,
0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12,
0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1d, 0x11, 0x14, 0x1d, 0x1f, 0x12, 0x1f, 0x22, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x0b, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x0a, 0x03, 0x0a, 0x12,
0x20, 0x0c, 0x1f, 0x12, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x0d, 0x1f, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20,
0x0c, 0x09, 0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x0e, 0x06,
0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09,
0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f,
0x20, 0x0c, 0x09, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12,
0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f,
0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c,
0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17,
0x1f, 0x20, 0x0c, 0x09, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f,
0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x09, 0x12, 0x20, 0x1c, 0x12,
0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17,
0x1f, 0x20, 0x0c, 0x09, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x0c, 0x1f, 0x12, 0x1f,
0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x06,
0x16, 0x1f, 0x06, 0x16, 0x0c, 0x1f, 0x22, 0x1f, 0x11, 0x1f, 0x03, 0x1f, 0x24, 0x0b, 0x15, 0x23, 0x1b, 0x0c,
0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f,
0x1f, 0x24, 0x0b, 0x17, 0x12, 0x0d, 0x1f, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f,
0x12, 0x0e, 0x06, 0x23, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x0e, 0x06, 0x23,
0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x0e, 0x04, 0x1c, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f,
0x24, 0x0b, 0x17, 0x1f, 0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17,
0x12, 0x17, 0x06, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x24, 0x03,
0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17,
0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x10, 0x24, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24,
0x0b, 0x17, 0x1f, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x1b, 0x0c, 0x1d,
0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x1d, 0x0b, 0x23, 0x03, 0x17, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f,
0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24,
0x0b, 0x17, 0x12, 0x1d, 0x11, 0x14, 0x1d, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f,
0x12, 0x20, 0x1c, 0x12, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x20, 0x1c, 0x12,
0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x1f, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b,
0x17, 0x1f, 0x1f, 0x24, 0x0b, 0x17, 0x12, 0x1f, 0x22, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x1f, 0x22, 0x1b,
0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x26, 0x11, 0x1c, 0x19, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x26, 0x12, 0x1c,
0x19, 0x1b, 0x0c, 0x1d, 0x0b, 0x17, 0x1f, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00,
0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00,
0x78, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x8d, 0x00,
0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
0x12, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x56, 0x00,
0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00,
0x64, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x70, 0x00,
0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00,
0x2e, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x4a, 0x00,
0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00,
0x84, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x82, 0x00,
0x00, 0x00, 0x85, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x79, 0x00,
0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00,
0x43, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00,
0x33, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x30, 0x00,
0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00,
0x6b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x68, 0x00,
0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00,
0x69, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x62, 0x00,
0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00,
0x5a, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x2c, 0x00,
0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00,
0x29, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x4f, 0x00,
0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00,
0x52, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x55, 0x00,
0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00,
0x0c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x1e, 0x00,
0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
0x03, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x07, 0x00,
0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x7e, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00,
0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00,
0x46, 0x6c, 0x61, 0x6d, 0x65, 0x00, 0x70, 0x76, 0x2e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x54,
0x69, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x06, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x46, 0x6c, 0x61, 0x6d, 0x65, 0x00, 0x70, 0x76, 0x2e, 0x50,
0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x00, 0x54, 0x69, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x12, 0x00,
0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x53, 0x65, 0x74, 0x46, 0x6c, 0x61, 0x6d, 0x65,
0x00, 0x53, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x72, 0x00, 0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x75, 0x72,
0x6e, 0x65, 0x72, 0x00, 0x53, 0x74, 0x6f, 0x70, 0x42, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x00, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00,
0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00,
0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
0x4c, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x02, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xcc, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00,
0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0xf4, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x84, 0x01,
0x00, 0x00, 0xa8, 0x01, 0x00, 0x00, 0xb8, 0x01, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x38, 0x01,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0x00, 0x60, 0x01,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x98, 0x01, 0x00, 0x00, 0x84, 0x01,
0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00,
0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, 0x00, 0x00, 0x0a, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0xf4, 0x01, 0x00, 0x00,
0xb8, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x01,
0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xb8, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
#endif // __PV_LANGUAGE_ENGLISH__
#if defined(__PV_LANGUAGE_GERMAN__)
// wake-word = hey computer
static const uint8_t KEYWORD_ARRAY[] = {
0x13, 0x7c, 0x17, 0x90, 0xfe, 0x0c, 0xde, 0xcc, 0xd9, 0x35, 0xf0, 0xfb, 0x70, 0x70, 0xc3, 0xe0, 0x47, 0xfc,
0xe1, 0xa4, 0x02, 0x0d, 0xdc, 0x45, 0x07, 0x75, 0x67, 0xbe, 0x7c, 0x7e, 0x1a, 0x12, 0xd2, 0xce, 0x30, 0x34,
0x7c, 0x06, 0x58, 0x68, 0x62, 0x55, 0xbc, 0xb2, 0xae, 0xa8, 0x69, 0xcb, 0x22, 0x45, 0x5d, 0x80, 0x72, 0xa1,
0x87, 0x68, 0xcc, 0x95, 0xb6, 0xbe, 0x9a, 0x7d, 0x6b, 0x9c, 0x55, 0x68, 0x04, 0x20, 0x4c, 0x38, 0xb1, 0x65,
0xb1, 0xd9, 0xd8, 0x60, 0x46, 0xdc, 0x19, 0x06, 0xd4, 0xb2, 0x67, 0xbc, 0xbc, 0x7f, 0x20, 0x4d, 0xcf, 0xdb,
0x10, 0xae, 0x25, 0x72, 0xec, 0x4b, 0x2f, 0xce, 0xd5, 0x59, 0xcd, 0x2e, 0xe6, 0x0f, 0xad, 0x56, 0xb5, 0x62,
0x02, 0x62, 0x15, 0x0c, 0xf8, 0x6f, 0x0e, 0xed, 0x61, 0x2e, 0x7c, 0x30, 0xf4, 0x67, 0x99, 0xf2, 0x81, 0x52,
0x19, 0x6c, 0xa5, 0xc3, 0x49, 0x0d, 0x01, 0x0d, 0xe4, 0x1c, 0x54, 0x0e, 0xd6, 0x8a, 0x89, 0xff, 0x22, 0xf1,
0xda, 0x7a, 0x10, 0x74, 0x7a, 0xb2, 0x02, 0x1b, 0x98, 0xa9, 0x93, 0x96, 0x3b, 0xec, 0x32, 0xe3, 0x85, 0x34,
0x16, 0xe8, 0x95, 0xe5, 0x33, 0x04, 0x7d, 0x7f, 0xcd, 0xc6, 0xe9, 0xdb, 0xa2, 0xcc, 0xa9, 0xd0, 0xe7, 0x86,
0xa4, 0x2d, 0x42, 0x9e, 0x65, 0x6b, 0xc1, 0xaf, 0x8a, 0x68, 0x12, 0x35, 0x39, 0xb6, 0xea, 0xd4, 0xb7, 0x8d,
0x26, 0xe2, 0x6a, 0x7a, 0x51, 0x3f, 0x3e, 0x15, 0xe8, 0x72, 0x91, 0x3a, 0x39, 0x00, 0xb5, 0xf1, 0xf3, 0x5d,
0xe1, 0xd9, 0xd4, 0x09, 0xbf, 0x9c, 0xef, 0x25, 0xd5, 0x92, 0xe7, 0xd9, 0x0d, 0x4f, 0x89, 0x3c, 0x51, 0x5c,
0x2a, 0xa0, 0xd3, 0x75, 0x40, 0x95, 0x85, 0xfb, 0x61, 0x8b, 0xb4, 0xc0, 0x5c, 0xaa, 0x14, 0x74, 0x55, 0xa7,
0xf5, 0xd8, 0xa2, 0x72, 0x6f, 0x14, 0x53, 0xf5, 0xaf, 0x8a, 0xa8, 0xae, 0xd2, 0x77, 0xfb, 0x91, 0x57, 0x3a,
0xe9, 0x48, 0x8a, 0x42, 0x82, 0xfa, 0x49, 0x3f, 0x43, 0x55, 0x99, 0x32, 0x2a, 0x4c, 0xf8, 0x02, 0xea, 0x2b,
0xfc, 0xc9, 0x56, 0x64, 0x31, 0x1f, 0xf5, 0xc3, 0x5e, 0xe5, 0x88, 0x7d, 0x77, 0x06, 0xa3, 0x9c, 0x39, 0xa9,
0x9c, 0xf4, 0x35, 0x67, 0xb8, 0x93, 0x61, 0xa2, 0xec, 0x53, 0xb7, 0x37, 0x45, 0xff, 0xf0, 0xe7, 0xc8, 0xef,
0x1d, 0x58, 0x96, 0xc8, 0xa1, 0x0f, 0x74, 0xf1, 0xb4, 0x86, 0xd6, 0xe3, 0x4a, 0x08, 0xf4, 0x86, 0x31, 0xed,
0xdf, 0xa7, 0x99, 0x73, 0x0d, 0xec, 0x3c, 0x11, 0xfd, 0x6d, 0x32, 0x7c, 0x69, 0x0a, 0xd9, 0xb3, 0x65, 0xcb,
0xd2, 0x87, 0xc8, 0xf8, 0x83, 0x25, 0xb3, 0xed, 0xd6, 0x63, 0xf1, 0x87, 0xfe, 0x06, 0xf0, 0x14, 0xcc, 0x87,
0x68, 0xd7, 0xbd, 0xdf, 0x81, 0x89, 0xc9, 0x7b, 0x21, 0xf0, 0x90, 0x87, 0xe3, 0x2c, 0x72, 0xb0, 0x07, 0x47,
0xab, 0xc9, 0xa3, 0xb8, 0x5d, 0xbe, 0x96, 0x66, 0x83, 0xf6, 0xc1, 0x8e, 0x60, 0x11, 0x7e, 0x76, 0x9c, 0xa0,
0x28, 0x2e, 0xd7, 0x0e, 0x63, 0x46, 0x54, 0x4f, 0xde, 0xad, 0x27, 0x7a, 0xd8, 0xf0, 0xc8, 0xb5, 0x97, 0xf9,
0x39, 0x57, 0x46, 0x0f, 0xbf, 0xdb, 0xc2, 0xe1, 0xa3, 0x40, 0xad, 0xfe, 0xff, 0x30, 0x2b, 0xd0, 0x09, 0xdd,
0x13, 0xa6, 0x03, 0x83, 0xae, 0x65, 0x69, 0x6f, 0x4f, 0xb6, 0x68, 0xaa, 0xfc, 0x32, 0xc6, 0xff, 0x0a, 0xb5,
0xe0, 0x03, 0x77, 0x7d, 0x63, 0x35, 0xdd, 0xcd, 0x61, 0x08, 0x68, 0xb3, 0x80, 0x79, 0x5d, 0x2b, 0x1c, 0x87,
0x4c, 0xe7, 0x85, 0x90, 0x0e, 0x55, 0x81, 0xd6, 0x23, 0x4e, 0x75, 0x63, 0xb5, 0x48, 0x5a, 0x90, 0x27, 0xc5,
0x1f, 0xc4, 0x71, 0x08, 0x10, 0x44, 0xbc, 0xe2, 0x9d, 0xad, 0x62, 0xd2, 0x22, 0x23, 0x28, 0x35, 0x84, 0x92,
0x51, 0xa2, 0x21, 0x7c, 0xe2, 0x43, 0xb4, 0xc7, 0x1b, 0x4e, 0x23, 0x14, 0x40, 0xf5, 0xec, 0x11, 0x87, 0x9f,
0x9a, 0x60, 0x55, 0xbf, 0xb0, 0x38, 0xef, 0xd6, 0x41, 0x09, 0x8d, 0xaa, 0x6b, 0xcc, 0x2a, 0x12
};
// context = beleuchtung
static const uint8_t CONTEXT_ARRAY[] = {
0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x31, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x1a, 0x00, 0x00,
0x09, 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x66, 0xc3, 0xa4, 0x72, 0x62, 0x65, 0x2c, 0x20, 0xc3,
0xa4, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x2c, 0x20, 0x6d, 0x61, 0x63, 0x68, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c,
0x6c, 0x65, 0x2c, 0x20, 0x64, 0x69, 0x65, 0x2c, 0x20, 0x64, 0x61, 0x73, 0x29, 0x20, 0x5b, 0x4c, 0x69, 0x63,
0x68, 0x74, 0x2c, 0x20, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x5d, 0x20, 0x28, 0x7a, 0x75, 0x2c, 0x20,
0x69, 0x6e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b,
0x66, 0xc3, 0xa4, 0x72, 0x62, 0x65, 0x2c, 0x20, 0xc3, 0xa4, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x2c, 0x20, 0x6d,
0x61, 0x63, 0x68, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x65, 0x2c, 0x20, 0x64, 0x69, 0x65, 0x2c, 0x20,
0x64, 0x61, 0x73, 0x29, 0x20, 0x28, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x2c, 0x20, 0x4c, 0x69, 0x63, 0x68, 0x74,
0x65, 0x72, 0x29, 0x20, 0x28, 0x69, 0x6d, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24,
0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
0x28, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x2c, 0x20, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x29, 0x20, 0x28,
0x7a, 0x75, 0x2c, 0x20, 0x69, 0x6e, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c,
0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74,
0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x28, 0x4d, 0x61, 0x63, 0x68, 0x65, 0x29,
0x20, 0x28, 0x61, 0x6c, 0x6c, 0x65, 0x2c, 0x20, 0x64, 0x69, 0x65, 0x2c, 0x20, 0x64, 0x61, 0x73, 0x29, 0x20,
0x5b, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x2c, 0x20, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x5d, 0x20, 0x24,
0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x28, 0x4d, 0x61, 0x63, 0x68, 0x65, 0x29, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x65, 0x2c, 0x20, 0x64,
0x69, 0x65, 0x2c, 0x20, 0x64, 0x61, 0x73, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x2c, 0x20,
0x4c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74,
0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x28, 0x4d, 0x61, 0x63, 0x68, 0x65,
0x29, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x65, 0x2c, 0x20, 0x64, 0x69, 0x65, 0x2c, 0x20, 0x64, 0x61, 0x73, 0x29,
0x20, 0x5b, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x2c, 0x20, 0x4c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x5d, 0x20,
0x69, 0x6d, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65,
0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x62,
0x6c, 0x61, 0x75, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x67, 0x72, 0xc3, 0xbc, 0x6e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x2d, 0x20, 0x70, 0x69, 0x6e, 0x6b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
0x6c, 0x69, 0x6c, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x72, 0x6f, 0x74, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x77, 0x65, 0x69, 0xc3, 0x9f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x2d, 0x20, 0x67, 0x65, 0x6c, 0x62, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x61, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x61, 0x75, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x42, 0x61, 0x64, 0x65, 0x7a, 0x69, 0x6d, 0x6d,
0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x53, 0x63, 0x68, 0x6c, 0x61, 0x66, 0x7a,
0x69, 0x6d, 0x6d, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x4b, 0x69, 0x6e, 0x64,
0x65, 0x72, 0x7a, 0x69, 0x6d, 0x6d, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x46,
0x6c, 0x75, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x4b, 0xc3, 0xbc, 0x63, 0x68, 0x65,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x57, 0x6f, 0x68, 0x6e, 0x7a, 0x69, 0x6d, 0x6d, 0x65,
0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x53, 0x70, 0x65, 0x69, 0x73, 0x65, 0x6b, 0x61,
0x6d, 0x6d, 0x65, 0x72, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
0x10, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x3e, 0x00,
0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00,
0x5a, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6e, 0x00,
0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
0x88, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x9f, 0x00,
0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00,
0x42, 0x61, 0x64, 0x65, 0x7a, 0x69, 0x6d, 0x6d, 0x65, 0x72, 0x00, 0x46, 0x6c, 0x75, 0x72, 0x00, 0x4b, 0x69,
0x6e, 0x64, 0x65, 0x72, 0x7a, 0x69, 0x6d, 0x6d, 0x65, 0x72, 0x00, 0x4b, 0xc3, 0xbc, 0x63, 0x68, 0x65, 0x00,
0x53, 0x63, 0x68, 0x6c, 0x61, 0x66, 0x7a, 0x69, 0x6d, 0x6d, 0x65, 0x72, 0x00, 0x53, 0x70, 0x65, 0x69, 0x73,
0x65, 0x6b, 0x61, 0x6d, 0x6d, 0x65, 0x72, 0x00, 0x57, 0x6f, 0x68, 0x6e, 0x7a, 0x69, 0x6d, 0x6d, 0x65, 0x72,
0x00, 0x61, 0x6c, 0x6c, 0x65, 0x00, 0x61, 0x6e, 0x00, 0x61, 0x75, 0x73, 0x00, 0x62, 0x6c, 0x61, 0x75, 0x00,
0x64, 0x61, 0x73, 0x00, 0x64, 0x69, 0x65, 0x00, 0x66, 0xc3, 0xa4, 0x72, 0x62, 0x65, 0x00, 0x67, 0x65, 0x6c,
0x62, 0x00, 0x67, 0x72, 0xc3, 0xbc, 0x6e, 0x00, 0x69, 0x6d, 0x00, 0x69, 0x6e, 0x00, 0x6c, 0x69, 0x63, 0x68,
0x74, 0x00, 0x6c, 0x69, 0x63, 0x68, 0x74, 0x65, 0x72, 0x00, 0x6c, 0x69, 0x6c, 0x61, 0x00, 0x6d, 0x61, 0x63,
0x68, 0x65, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x69, 0x6e, 0x6b, 0x00, 0x72, 0x6f, 0x74,
0x00, 0x77, 0x65, 0x69, 0xc3, 0x9f, 0x00, 0x7a, 0x75, 0x00, 0xc3, 0xa4, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
0x12, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00,
0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00,
0x31, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x3b, 0x00,
0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00,
0x4d, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x5a, 0x00,
0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00,
0x6f, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x05, 0x01,
0x06, 0x29, 0x33, 0x2d, 0x10, 0x26, 0x08, 0x0e, 0x1b, 0x18, 0x0d, 0x2d, 0x12, 0x06, 0x26, 0x33, 0x2d, 0x10,
0x26, 0x0d, 0x30, 0x21, 0x29, 0x2e, 0x0e, 0x01, 0x08, 0x33, 0x2d, 0x10, 0x26, 0x2e, 0x16, 0x02, 0x20, 0x29,
0x0d, 0x01, 0x10, 0x26, 0x1c, 0x14, 0x12, 0x33, 0x2d, 0x10, 0x26, 0x01, 0x0e, 0x29, 0x01, 0x12, 0x03, 0x19,
0x05, 0x0e, 0x03, 0x06, 0x01, 0x19, 0x06, 0x0b, 0x08, 0x2a, 0x18, 0x05, 0x29, 0x09, 0x2a, 0x0e, 0x16, 0x09,
0x18, 0x1f, 0x12, 0x2d, 0x10, 0x2d, 0x12, 0x0e, 0x2d, 0x21, 0x1a, 0x0e, 0x2d, 0x21, 0x1a, 0x26, 0x0e, 0x0b,
0x0e, 0x01, 0x10, 0x01, 0x1e, 0x29, 0x14, 0x18, 0x01, 0x24, 0x31, 0x29, 0x16, 0x2d, 0x24, 0x0d, 0x18, 0x14,
0x1a, 0x1c, 0x02, 0x19, 0x33, 0x1b, 0x2a, 0x12, 0x06, 0x29, 0x18, 0x29, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x14, 0x00,
0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00,
0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
0x07, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00,
0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
0x13, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00,
0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00,
0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x63, 0x6f,
0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00,
0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00,
0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x18, 0x00,
0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68, 0x61, 0x6e,
0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x38, 0x06, 0x00, 0x00,
0x9c, 0x07, 0x00, 0x00, 0x4c, 0x08, 0x00, 0x00, 0xac, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00,
0xec, 0x04, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xb0, 0x02, 0x00, 0x00,
0x44, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x07, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x30, 0x01,
0x00, 0x00, 0x54, 0x01, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x02, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x05, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x44, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0xcc, 0x01, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00,
0x64, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x98, 0x01,
0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0xac, 0x01, 0x00, 0x00, 0x98, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
0x00, 0x00, 0xe0, 0x01, 0x00, 0x00, 0xcc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
0x14, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00,
0x00, 0x00, 0x30, 0x02, 0x00, 0x00, 0x7c, 0x02, 0x00, 0x00, 0xa0, 0x02, 0x00, 0x00, 0x14, 0x02, 0x00, 0x00,
0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x48, 0x02, 0x00, 0x00, 0x6c, 0x02,
0x00, 0x00, 0x30, 0x02, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
0x5c, 0x02, 0x00, 0x00, 0x48, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x30, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x14, 0x02, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x90, 0x02,
0x00, 0x00, 0x7c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x14, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0xcc, 0x02, 0x00, 0x00,
0x18, 0x03, 0x00, 0x00, 0x3c, 0x03, 0x00, 0x00, 0xb0, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe4, 0x02, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xcc, 0x02, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf8, 0x02, 0x00, 0x00, 0xe4, 0x02,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x02, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x02, 0x00, 0x00, 0x05, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x03, 0x00, 0x00, 0x18, 0x03, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x02, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x6c, 0x03, 0x00, 0x00, 0x90, 0x03, 0x00, 0x00, 0xa0, 0x03,
0x00, 0x00, 0x50, 0x04, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0x00, 0x6c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
0x00, 0x00, 0xb4, 0x03, 0x00, 0x00, 0xa0, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x03, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0xb4, 0x03,
0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00,
0x0c, 0x04, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0xb4, 0x03, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
0x30, 0x04, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0xb4, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x4c, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x6c, 0x04,
0x00, 0x00, 0xb8, 0x04, 0x00, 0x00, 0xdc, 0x04, 0x00, 0x00, 0x50, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x84, 0x04, 0x00, 0x00, 0xa8, 0x04, 0x00, 0x00, 0x6c, 0x04,
0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x98, 0x04, 0x00, 0x00,
0x84, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x04,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x04, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xcc, 0x04, 0x00, 0x00, 0xb8, 0x04,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x04, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x07, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x1c, 0x05, 0x00, 0x00, 0x68, 0x05,
0x00, 0x00, 0x8c, 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x02, 0x00, 0x00, 0x00, 0x34, 0x05, 0x00, 0x00, 0x58, 0x05, 0x00, 0x00, 0x1c, 0x05, 0x00, 0x00, 0x05, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x34, 0x05, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x05, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x05, 0x00, 0x00, 0x68, 0x05, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0xb8, 0x05, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00,
0x9c, 0x05, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x05,
0x00, 0x00, 0xf4, 0x05, 0x00, 0x00, 0xb8, 0x05, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0xe4, 0x05, 0x00, 0x00, 0xd0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
0x00, 0x00, 0x18, 0x06, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00,
0x54, 0x06, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x64, 0x07, 0x00, 0x00, 0x38, 0x06, 0x00, 0x00, 0x03, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x06, 0x00, 0x00, 0xcc, 0x06, 0x00, 0x00,
0x54, 0x06, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x84, 0x06,
0x00, 0x00, 0x94, 0x06, 0x00, 0x00, 0x6c, 0x06, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x6c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
0x00, 0x00, 0xa8, 0x06, 0x00, 0x00, 0x94, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0xbc, 0x06, 0x00, 0x00, 0xa8, 0x06, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0x01, 0x00, 0x00, 0x00, 0xe0, 0x06, 0x00, 0x00, 0xcc, 0x06, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x06, 0x00, 0x00, 0xe0, 0x06, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x06, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x07, 0x00, 0x00, 0x2c, 0x07, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x07, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x07, 0x00, 0x00, 0x2c, 0x07, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x07, 0x00, 0x00, 0x40, 0x07,
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x06, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x78, 0x07, 0x00, 0x00, 0x64, 0x07,
0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x8c, 0x07, 0x00, 0x00,
0x78, 0x07, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb4, 0x07, 0x00, 0x00,
0x14, 0x08, 0x00, 0x00, 0x9c, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
0x00, 0x00, 0xcc, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0xb4, 0x07, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x07, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x02, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x08, 0x00, 0x00, 0x14, 0x08, 0x00, 0x00, 0x06, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x28, 0x08, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00,
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x64, 0x08, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00,
0x4c, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x08,
0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x08, 0x00, 0x00,
0x74, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x9c, 0x08,
0x00, 0x00, 0x88, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x08,
0x00, 0x00, 0xac, 0x08, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00
};
#endif // __PV_LANGUAGE_GERMAN__
#if defined(__PV_LANGUAGE_SPANISH__)
// wake-word = hola computadora
static const uint8_t KEYWORD_ARRAY[] = {
0x39, 0xdf, 0xe0, 0x14, 0x43, 0xd6, 0xf2, 0xcb, 0xdd, 0xc9, 0x5a, 0xb5, 0xa5, 0x4f, 0xe3, 0x48, 0x53, 0x3a,
0x4c, 0x29, 0xb3, 0x25, 0x39, 0x71, 0x0c, 0xe9, 0xa1, 0x6a, 0xce, 0x35, 0x1a, 0x37, 0x40, 0x47, 0x48, 0x23,
0x42, 0xa6, 0x06, 0x92, 0x10, 0x0b, 0x5b, 0xf2, 0xf8, 0x82, 0xd4, 0x2d, 0x55, 0x8a, 0x02, 0x35, 0x24, 0x58,
0xed, 0x57, 0xed, 0xda, 0x59, 0xaf, 0x8a, 0x76, 0x5f, 0x4f, 0x1c, 0xda, 0x1a, 0xb5, 0x60, 0x12, 0x03, 0x14,
0xa5, 0xd5, 0xe2, 0x8a, 0x95, 0x9d, 0x50, 0x2e, 0xa1, 0x3f, 0xbb, 0x41, 0xf1, 0xdf, 0x19, 0x44, 0x4c, 0x59,
0x3b, 0x7b, 0xe2, 0x08, 0x64, 0xa9, 0xd5, 0x68, 0xd9, 0x0a, 0x41, 0x17, 0xbc, 0x1b, 0xa4, 0xa0, 0xf9, 0x4e,
0x20, 0x15, 0x11, 0xa2, 0x44, 0xe2, 0x17, 0xf2, 0xb1, 0xf4, 0x1c, 0xd8, 0xea, 0xc1, 0x7e, 0xc3, 0x6e, 0x80,
0x42, 0x3c, 0x98, 0x6b, 0xfb, 0x6f, 0xcc, 0x51, 0x11, 0x4e, 0xd9, 0x40, 0x17, 0xdd, 0xef, 0xf3, 0x0b, 0x67,
0xd6, 0xdb, 0x4e, 0x59, 0x72, 0xbe, 0x9b, 0xec, 0x78, 0x71, 0x2f, 0x58, 0x66, 0x1a, 0xa8, 0x56, 0x43, 0x04,
0xe2, 0x48, 0xd2, 0x58, 0x55, 0x25, 0x65, 0xce, 0xd2, 0xeb, 0x32, 0x64, 0xc4, 0x17, 0x8c, 0x1b, 0xd1, 0x28,
0x4b, 0xdc, 0x3d, 0x1b, 0xb2, 0xfc, 0xa1, 0x2a, 0xbd, 0x1e, 0xaa, 0x4f, 0x7d, 0x65, 0xf3, 0x69, 0xcf, 0xd9,
0x8c, 0x8a, 0x30, 0x7e, 0x8e, 0x4a, 0x76, 0x72, 0xd6, 0xc0, 0x92, 0xb5, 0xfa, 0x80, 0xc2, 0xee, 0x79, 0xa8,
0xf0, 0x86, 0xd0, 0x1f, 0x45, 0x01, 0xd3, 0x35, 0xf2, 0x63, 0x38, 0xc1, 0x81, 0x01, 0x56, 0x91, 0xb1, 0x5a,
0x15, 0xc2, 0x2c, 0x86, 0xe1, 0x61, 0x2b, 0x30, 0x6c, 0xe0, 0xd8, 0x70, 0x58, 0x06, 0x9f, 0xc0, 0x1e, 0x8d,
0xc0, 0xbf, 0x15, 0x51, 0x16, 0xd2, 0xc2, 0x1b, 0x3a, 0x81, 0xf7, 0x0b, 0xbf, 0x75, 0xf6, 0xab, 0x11, 0x77,
0x6d, 0x65, 0x5c, 0xaa, 0x94, 0x72, 0x70, 0x2c, 0x24, 0xfc, 0xa1, 0xa3, 0x11, 0x47, 0x93, 0x4e, 0x54, 0xf8,
0x08, 0x55, 0x66, 0xaa, 0x01, 0xc9, 0x91, 0xfe, 0xda, 0xbe, 0x89, 0xe1, 0xe3, 0xcd, 0x43, 0xb7, 0xca, 0x41,
0x24, 0x6f, 0x9c, 0x27, 0x18, 0xe1, 0xd9, 0x86, 0xc4, 0xb6, 0xdb, 0xc8, 0x10, 0xf0, 0x6a, 0x52, 0x71, 0xf4,
0x72, 0xeb, 0x03, 0x53, 0xe2, 0xe3, 0xc0, 0x7b, 0xbb, 0x92, 0xb9, 0xa0, 0xdb, 0xf6, 0x53, 0x31, 0x85, 0xfd,
0xc3, 0xaf, 0x5f, 0x7d, 0x9a, 0xd6, 0xad, 0x11, 0xbc, 0x97, 0xcf, 0x48, 0x3c, 0x66, 0xd8, 0xf0, 0xce, 0x53,
0x96, 0xa6, 0x22, 0x9c, 0x77, 0x01, 0x01, 0xd4, 0xfb, 0xd8, 0x9c, 0x3a, 0x2e, 0x1e, 0x9b, 0x61, 0x44, 0x9d,
0xa1, 0x92, 0x5d, 0xd7, 0x97, 0x9d, 0xa5, 0x62, 0x13, 0xcd, 0x19, 0x9d, 0xbf, 0x55, 0x69, 0x26, 0xcb, 0x2c,
0xe3, 0x12, 0x11, 0x7e, 0x98, 0xfd, 0x01, 0x9e, 0x87, 0x16, 0x7b, 0x82, 0x11, 0xb2, 0x4d, 0xcd, 0x90, 0xdd,
0xad, 0x24, 0xd3, 0xcb, 0x58, 0xe6, 0xf5, 0x6f, 0x3f, 0xff, 0x38, 0xb3, 0xaa, 0x06, 0xf1, 0x1c, 0xed, 0x27,
0x13, 0x81, 0x78, 0x23, 0x8a, 0x68, 0xdc, 0xba, 0xed, 0x81, 0x61, 0x5f, 0xd5, 0xa8, 0xb9, 0x79, 0x0e, 0x27,
0xab, 0x85, 0xe9, 0x49, 0xe3, 0x1f, 0xf2, 0xa1, 0xe3, 0xb8, 0x78, 0x97, 0x71, 0x7f, 0xcc, 0x71, 0xe4, 0x65,
0xd5, 0x9b, 0xe8, 0xdf, 0xad, 0xf9, 0x70, 0x52, 0x4b, 0xd3, 0xe0, 0xd2, 0x65, 0xd4, 0x95, 0x1a, 0x11, 0x69,
0x62, 0x9f, 0x04, 0x36, 0x10, 0xd9, 0x0e, 0xec, 0xce, 0x2d, 0x51, 0x0f, 0xb3, 0x12, 0x31, 0x0c, 0x4e, 0x12,
0x2a, 0x3b, 0xf6, 0xaa, 0xa7, 0x2b, 0x79, 0x97, 0x7b, 0x01, 0x58, 0xf6, 0x14, 0x7f, 0xd1, 0xe9, 0x03, 0x0c,
0xd5, 0x51, 0x8f, 0xce, 0xcf, 0xbd, 0x27, 0x6b, 0x0b, 0xd8, 0x23, 0x62, 0x9c, 0x62, 0x2b, 0xcd, 0xef, 0x98,
0xbb, 0xc1, 0x1a, 0xb2, 0x22, 0x52, 0x67, 0xd9, 0x68, 0x36, 0xc0, 0xf4, 0xd6, 0xa5, 0xfe, 0x1f, 0x33, 0x99,
0x0e, 0xad, 0x7f, 0x0e, 0xf7, 0x56, 0x40, 0x8f, 0x5b, 0x08, 0xa1, 0x38, 0x26, 0xb3, 0xef, 0x10, 0x9c, 0x18,
0x37, 0xe6, 0x4f, 0xc8, 0xb3, 0x0b, 0x9f, 0x7d, 0x8d, 0x49, 0xd4, 0x3c, 0x56, 0xf9, 0xff, 0x51, 0xaf, 0xad,
0x4c, 0x25, 0x61, 0x87, 0xd1, 0x3f, 0xb7, 0x55, 0x10, 0x22, 0xb5, 0xcd, 0x82, 0xee, 0x83, 0xe9, 0x60, 0x19,
0x32, 0xea, 0x33, 0x33, 0x2d, 0xa0, 0x59, 0x92, 0xde, 0x45, 0xab, 0xe4, 0x53, 0xe1, 0x46, 0xd5, 0x7b, 0x18,
0xaf, 0xf9, 0xa2, 0x29, 0xef, 0x13, 0x33, 0xc6, 0x28, 0xe5, 0xd5, 0x6c, 0xed, 0x7e, 0x36, 0xc5, 0xc6, 0x92,
0xcc, 0xd1, 0xb1, 0x35, 0xd8, 0x52, 0x49, 0xad
};
// context = iluminación_inteligente
static const uint8_t CONTEXT_ARRAY[] = {
0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x31, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x1a, 0x00, 0x00,
0x09, 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x0c, 0x00, 0x00, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x68, 0x61, 0x7a, 0x20, 0x71, 0x75, 0x65, 0x20, 0x6c, 0x61, 0x73,
0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x20, 0x73, 0x65, 0x61, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x63, 0x61, 0x6d,
0x62, 0x69, 0x61, 0x20, 0x6c, 0x61, 0x73, 0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x20, 0x61, 0x20, 0x24, 0x63,
0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
0x20, 0x68, 0x61, 0x7a, 0x20, 0x71, 0x75, 0x65, 0x20, 0x5b, 0x6c, 0x61, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x5d,
0x20, 0x5b, 0x6c, 0x75, 0x7a, 0x2c, 0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x5d, 0x20, 0x5b, 0x64, 0x65, 0x6c,
0x2c, 0x20, 0x64, 0x65, 0x20, 0x6c, 0x61, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x65, 0x6c, 0x2c, 0x20, 0x65, 0x6e,
0x20, 0x6c, 0x61, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x73, 0x65, 0x61,
0x2c, 0x20, 0x73, 0x65, 0x61, 0x6e, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c,
0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x63, 0x61, 0x6d, 0x62, 0x69, 0x61, 0x20,
0x5b, 0x6c, 0x61, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x5d, 0x20, 0x5b, 0x6c, 0x75, 0x7a, 0x2c, 0x20, 0x6c, 0x75,
0x63, 0x65, 0x73, 0x5d, 0x20, 0x5b, 0x64, 0x65, 0x6c, 0x2c, 0x20, 0x64, 0x65, 0x20, 0x6c, 0x61, 0x2c, 0x20,
0x65, 0x6e, 0x20, 0x65, 0x6c, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x6c, 0x61, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x68, 0x61, 0x7a, 0x20, 0x71, 0x75, 0x65, 0x20,
0x5b, 0x73, 0x65, 0x61, 0x2c, 0x20, 0x73, 0x65, 0x61, 0x6e, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x6c, 0x61, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x5d, 0x20, 0x5b,
0x6c, 0x75, 0x7a, 0x2c, 0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x5d, 0x20, 0x5b, 0x64, 0x65, 0x6c, 0x2c, 0x20,
0x64, 0x65, 0x20, 0x6c, 0x61, 0x2c, 0x20, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x65, 0x6c, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x6c, 0x61, 0x5d, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x63, 0x61, 0x6d, 0x62, 0x69, 0x61, 0x20, 0x61, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a,
0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x6c, 0x61, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x5d, 0x20, 0x5b, 0x6c,
0x75, 0x7a, 0x2c, 0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x5d, 0x20, 0x5b, 0x64, 0x65, 0x6c, 0x2c, 0x20, 0x64,
0x65, 0x20, 0x6c, 0x61, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x65, 0x6c, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x6c, 0x61,
0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61,
0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x2d, 0x20, 0x24, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x20, 0x28, 0x74, 0x6f, 0x64, 0x61, 0x73, 0x29, 0x20, 0x6c, 0x61, 0x73, 0x20, 0x6c, 0x75, 0x63, 0x65,
0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x24, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a,
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x61, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x29, 0x20, 0x5b,
0x6c, 0x75, 0x7a, 0x2c, 0x20, 0x6c, 0x75, 0x63, 0x65, 0x73, 0x5d, 0x20, 0x5b, 0x64, 0x65, 0x6c, 0x2c, 0x20,
0x64, 0x65, 0x20, 0x6c, 0x61, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x65, 0x6c, 0x2c, 0x20, 0x65, 0x6e, 0x20, 0x6c,
0x61, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74,
0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x2d, 0x20, 0x61, 0x7a, 0x75, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x76,
0x65, 0x72, 0x64, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x72, 0x6f, 0x73, 0x61, 0x64,
0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x6d, 0x6f, 0x72, 0x61, 0x64, 0x6f, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x72, 0x6f, 0x6a, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x20, 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x61,
0x6d, 0x61, 0x72, 0x69, 0x6c, 0x6c, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x62, 0x61, 0xc3, 0xb1, 0x6f, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x61, 0x72, 0x6d, 0x61, 0x72, 0x69, 0x6f, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x63, 0x6f, 0x63, 0x69, 0x6e, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x2d, 0x20, 0x73, 0x61, 0x6c, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x64, 0x65,
0x73, 0x70, 0x65, 0x6e, 0x73, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x64, 0x6f, 0x72,
0x6d, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x68, 0x61,
0x62, 0x69, 0x74, 0x61, 0x63, 0x69, 0xc3, 0xb3, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
0x70, 0x61, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x6e, 0x64, 0x61,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x61, 0x70, 0x61, 0x67, 0x61, 0x00, 0x00, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
0x19, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x32, 0x00,
0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00,
0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x78, 0x00,
0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
0x8d, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xa5, 0x00,
0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00,
0xc0, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x61, 0x00, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x6c, 0x6c, 0x6f,
0x00, 0x61, 0x70, 0x61, 0x67, 0x61, 0x00, 0x61, 0x72, 0x6d, 0x61, 0x72, 0x69, 0x6f, 0x00, 0x61, 0x7a, 0x75,
0x6c, 0x00, 0x62, 0x61, 0xc3, 0xb1, 0x6f, 0x00, 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x6f, 0x00, 0x63, 0x61, 0x6d,
0x62, 0x69, 0x61, 0x00, 0x63, 0x6f, 0x63, 0x69, 0x6e, 0x61, 0x00, 0x64, 0x65, 0x20, 0x6c, 0x61, 0x00, 0x64,
0x65, 0x6c, 0x00, 0x64, 0x65, 0x73, 0x70, 0x65, 0x6e, 0x73, 0x61, 0x00, 0x64, 0x6f, 0x72, 0x6d, 0x69, 0x74,
0x6f, 0x72, 0x69, 0x6f, 0x00, 0x65, 0x6e, 0x20, 0x65, 0x6c, 0x00, 0x65, 0x6e, 0x20, 0x6c, 0x61, 0x00, 0x65,
0x6e, 0x63, 0x69, 0x65, 0x6e, 0x64, 0x61, 0x00, 0x68, 0x61, 0x62, 0x69, 0x74, 0x61, 0x63, 0x69, 0xc3, 0xb3,
0x6e, 0x00, 0x68, 0x61, 0x7a, 0x00, 0x6c, 0x61, 0x00, 0x6c, 0x61, 0x73, 0x00, 0x6c, 0x75, 0x63, 0x65, 0x73,
0x00, 0x6c, 0x75, 0x7a, 0x00, 0x6d, 0x6f, 0x72, 0x61, 0x64, 0x6f, 0x00, 0x70, 0x61, 0x73, 0x69, 0x6c, 0x6c,
0x6f, 0x00, 0x71, 0x75, 0x65, 0x00, 0x72, 0x6f, 0x6a, 0x6f, 0x00, 0x72, 0x6f, 0x73, 0x61, 0x64, 0x6f, 0x00,
0x73, 0x61, 0x6c, 0x61, 0x00, 0x73, 0x65, 0x61, 0x00, 0x73, 0x65, 0x61, 0x6e, 0x00, 0x74, 0x6f, 0x64, 0x61,
0x73, 0x00, 0x76, 0x65, 0x72, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00,
0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
0x18, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x2e, 0x00,
0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00,
0x4b, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x62, 0x00,
0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00,
0x75, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x87, 0x00,
0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00,
0x9c, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0b, 0x01, 0x1b, 0x07, 0x1c, 0x0d, 0x01, 0x0e, 0x01, 0x18, 0x01, 0x01,
0x1b, 0x0b, 0x01, 0x1b, 0x08, 0x0d, 0x01, 0x20, 0x12, 0x0a, 0x02, 0x01, 0x1a, 0x0d, 0x02, 0x0a, 0x01, 0x17,
0x09, 0x0d, 0x09, 0x01, 0x0b, 0x02, 0x08, 0x01, 0x09, 0x0d, 0x20, 0x07, 0x0c, 0x01, 0x03, 0x04, 0x0a, 0x01,
0x03, 0x04, 0x0a, 0x03, 0x04, 0x10, 0x0e, 0x04, 0x0c, 0x10, 0x01, 0x03, 0x0d, 0x1b, 0x0b, 0x07, 0x11, 0x0d,
0x1b, 0x08, 0x0d, 0x04, 0x0c, 0x04, 0x0a, 0x04, 0x0c, 0x0a, 0x01, 0x04, 0x0c, 0x20, 0x08, 0x04, 0x0c, 0x03,
0x01, 0x01, 0x1f, 0x07, 0x11, 0x01, 0x20, 0x08, 0x0d, 0x0c, 0x01, 0x20, 0x0a, 0x01, 0x0a, 0x01, 0x10, 0x0a,
0x12, 0x20, 0x04, 0x10, 0x0a, 0x12, 0x20, 0x0b, 0x0d, 0x1b, 0x01, 0x16, 0x0d, 0x0e, 0x01, 0x10, 0x07, 0x1c,
0x0d, 0x09, 0x04, 0x0f, 0x0d, 0x14, 0x0d, 0x0f, 0x0d, 0x10, 0x01, 0x16, 0x0d, 0x10, 0x01, 0x0a, 0x01, 0x10,
0x04, 0x01, 0x10, 0x04, 0x01, 0x0c, 0x11, 0x0d, 0x16, 0x01, 0x10, 0x02, 0x04, 0x1b, 0x16, 0x04, 0x0f, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
0x15, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00,
0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
0x21, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x02, 0x00,
0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
0x19, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, 0x00,
0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x10, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x00,
0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
0x15, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0d, 0x00,
0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
...
This file has been truncated, please download it to see its full contents.
Comments