balbekova пре 7 година
родитељ
комит
bf6815ef56
43 измењених фајлова са 7153 додато и 0 уклоњено
  1. 252 0
      service_hw/Commands/bt_6701_commands.c
  2. 25 0
      service_hw/Commands/bt_6701_commands.h
  3. 291 0
      service_hw/Commands/commands_api.c
  4. 93 0
      service_hw/Commands/commands_api.h
  5. 233 0
      service_hw/Ethernet/lwipopts.h
  6. 146 0
      service_hw/Ethernet/netconf.c
  7. 55 0
      service_hw/Ethernet/netconf.h
  8. 173 0
      service_hw/Ethernet/sntp.c
  9. 39 0
      service_hw/Ethernet/sntp.h
  10. 178 0
      service_hw/HTTP_Server/fs.c
  11. 101 0
      service_hw/HTTP_Server/fs.h
  12. BIN
      service_hw/HTTP_Server/fs/favicon.ico
  13. 0 0
      service_hw/HTTP_Server/fs/index.html
  14. 0 0
      service_hw/HTTP_Server/fs/info.html
  15. BIN
      service_hw/HTTP_Server/fs/main.css
  16. BIN
      service_hw/HTTP_Server/fs/main.js
  17. BIN
      service_hw/HTTP_Server/fs/rotek.png
  18. 0 0
      service_hw/HTTP_Server/fs/settings.html
  19. 0 0
      service_hw/HTTP_Server/fs/snmp.html
  20. 3921 0
      service_hw/HTTP_Server/fsdata.c
  21. 56 0
      service_hw/HTTP_Server/fsdata.h
  22. 122 0
      service_hw/HTTP_Server/http_server.c
  23. 14 0
      service_hw/HTTP_Server/http_server.h
  24. BIN
      service_hw/HTTP_Server/makefsdata.exe
  25. 7 0
      service_hw/HTTP_Server/readme.txt
  26. 70 0
      service_hw/Hardware/hw_init.c
  27. 24 0
      service_hw/Hardware/hw_init.h
  28. 125 0
      service_hw/Makefile
  29. 92 0
      service_hw/Ports/ports.c
  30. 35 0
      service_hw/Ports/ports.h
  31. 57 0
      service_hw/Settings/bt_6701_settings.c
  32. 34 0
      service_hw/Settings/bt_6701_settings.h
  33. 23 0
      service_hw/User/config_service.h
  34. 76 0
      service_hw/User/init_task.c
  35. 25 0
      service_hw/User/init_task.h
  36. 49 0
      service_hw/User/main.c
  37. 63 0
      service_hw/User/main.h
  38. 229 0
      service_hw/User/stm32f4xx_it.c
  39. 74 0
      service_hw/User/stm32f4xx_it.h
  40. 187 0
      service_hw/buttons/buttons.c
  41. 94 0
      service_hw/buttons/buttons.h
  42. 109 0
      service_hw/leds/led.c
  43. 81 0
      service_hw/leds/led.h

+ 252 - 0
service_hw/Commands/bt_6701_commands.c

@@ -0,0 +1,252 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  bt_6701_commands
+ * @file    bt_6701_commands.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   bt_6701_commands
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "bt_6701_commands.h"
+#include "commands_api.h"
+#include "common_config.h"
+#include "gpio.h"
+#include "board_bt6702.h"
+#include "buttons.h"
+#include "led.h"
+#include "netconf.h"
+#include "stm32f4x7_eth_bsp.h"
+#include "http_server.h"
+#include "rtc.h"
+#include "sntp.h"
+#include "d_inouts.h"
+#include "config_service.h"
+#include "ports.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+#include "lwip/opt.h"
+#include "lwip/api.h"
+#include "lwip/sys.h"
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+#include <string.h>
+
+
+extern uint8_t DefCounter;
+extern BUTTON_NO_FIX_t defButton;
+
+// -------------------------------------------------------------------------- //
+//                              __weak функции
+
+/**
+  * @brief  
+  */
+void TestProcessing(void)
+{
+  
+    vTaskDelay(200);
+}
+
+/**
+  * @brief  
+  */
+void Test_U232(void)
+{
+    // Подготавливаем буферы приема и счетчики байт
+    memset(recvBufRS232, 0, RS232_MAX_REC_LEN);
+    indexRS232 = 0;
+    
+    // Отправляем символы в RS232
+    for (uint16_t i = 0; i < 1023; i++)
+        RS232_SendByte('A');
+  
+    vTaskDelay(10);
+    
+  
+    for (uint16_t i = 0; i < 1023; i++)
+    {
+        if (recvBufRS232[i] != 'A') {
+            printf("U232 FAIL\r\n");
+            TEST_SetTest(TEST_WAIT);
+            return;
+        }
+          
+    }  
+    
+    printf("U232 OK\r\n");
+    TEST_SetTest(TEST_WAIT);
+}
+
+/**
+  * @brief  
+  */
+void Test_DRY(void)
+{
+    uint8_t inputState;
+    
+    inputState = get_state_din_outs(DIN1);
+    
+    set_state_douts(DOUT1, 1);
+    
+    vTaskDelay(10);
+        
+    if (get_state_din_outs(DIN1) == inputState) {
+        printf("DRY FAIL\r\n");
+        TEST_SetTest(TEST_WAIT);
+        return;
+    }  
+
+    set_state_douts(DOUT1, 0);
+    
+    vTaskDelay(10);
+    
+    if (get_state_din_outs(DIN1) != inputState) {
+        printf("DRY FAIL\r\n");
+        TEST_SetTest(TEST_WAIT);
+        return;
+    }  
+    
+    inputState = get_state_din_outs(DIN1);
+
+	set_state_douts(DOUT2, 1);
+
+	vTaskDelay(10);
+
+	if (get_state_din_outs(DIN1) == inputState) {
+		printf("DRY FAIL\r\n");
+		TEST_SetTest(TEST_WAIT);
+		return;
+	}
+
+	set_state_douts(DOUT2, 0);
+
+	vTaskDelay(10);
+
+	if (get_state_din_outs(DIN1) != inputState) {
+		printf("DRY FAIL\r\n");
+		TEST_SetTest(TEST_WAIT);
+		return;
+	}
+
+	vTaskDelay(10);
+
+    printf("DRY OK\r\n");
+    TEST_SetTest(TEST_WAIT);
+}
+
+/**
+  * @brief  
+  */
+void vTest_DEF(void *params)
+{
+    static uint32_t timeout = 0;
+    
+    for (;;)
+    {
+        if (timeout++ > BUTTON_TIMEOUT) {
+            timeout = 0;
+            DefCounter = 0;
+            LED_Off(LED_INIT_R);
+			LED_Off(LED_MAJOR_R);
+			LED_Off(LED_MINOR_R);
+            printf("DEF FAIL\r\n");
+            TEST_SetTest(TEST_WAIT);
+            ifTest_DEF = false;
+            vTaskDelete(NULL);
+        }  
+	
+        BUTTON_NoFixHandler(&defButton);
+	
+        if (DefCounter == 3)
+        {
+            timeout = 0;
+            DefCounter = 0;
+            printf("DEF OK\r\n");
+	  
+            /* Завершение теста T0 */
+            /* Устанавливаем статус T0READY, сохраняем статус во флеш */
+            COM_SetTestState(T0READY);
+	  	    
+            TEST_SetTest(TEST_WAIT);
+            ifTest_DEF = false;
+            vTaskDelete(NULL);
+        }
+
+        vTaskDelay(10);  
+    }
+    
+}
+
+/**
+  * @brief  
+  */
+void Test_Ethernet(void)
+{
+    static bool ethernetInit = false;
+  
+    if (ethernetInit == false)
+    {
+        ethernetInit = true;
+        ETH_BSP_Config();
+        LwIP_Init();
+        sys_thread_new("HTTP", vTaskTcpServer, NULL, 4*configMINIMAL_STACK_SIZE, tskIDLE_PRIORITY);
+    }
+   
+	TEST_SetTest(TEST_WAIT);
+}
+
+/**
+  * @brief  
+  */
+void Test_Serno(void)
+{
+	macWaiting = true;
+	macIsInstalled = false;
+	
+    // Устанавливаем статус тестирования "T1OK"
+    COM_SetTestState(T0OK); 
+    
+    // Отправляем udp пакет с информацией
+    //COM_TestSerno();  
+	  
+	// Пауза. В это время должен прийти GET запрос с MAC адресом. 
+	//vTaskDelay(8000);
+	//macWaiting = false;
+	  
+	//if (!macIsInstalled)
+	//	printf("SERNO FAIL\r\n");
+  
+    for (uint8_t i = 0; i < 4; i++)
+    {
+        // Отправляем udp пакет с информацией
+        COM_TestSerno();  
+        // Пауза. В это время должен прийти GET запрос с MAC адресом. 
+        vTaskDelay(8000);
+        
+        if (macIsInstalled)
+            break;
+    } 
+    
+    if (!macIsInstalled)
+		printf("SERNO FAIL\r\n");
+    
+    TEST_SetTest(TEST_WAIT);
+}
+
+
+// -------------------------------------------------------------------------- //
+
+
+/********************************* (C) РОТЕК **********************************/

+ 25 - 0
service_hw/Commands/bt_6701_commands.h

@@ -0,0 +1,25 @@
+/******************************* (C) LiteMesh **********************************
+ * @module  bt_6701_commands
+ * @file    bt_6701_commands.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   bt_6701_commands
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef __BT_6701_COMMANDS_H
+#define __BT_6701_COMMANDS_H
+
+
+/**
+  * @brief
+  */
+void Test_U232(void);
+
+#endif /* #ifndef __BT_6701_COMMANDS_H */
+
+/****************************** (C) LiteMesh ***************** end of file ****/

+ 291 - 0
service_hw/Commands/commands_api.c

@@ -0,0 +1,291 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  commands_api
+ * @file    commands_api.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   commands_api
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "commands_api.h"
+#include "settings_api.h"
+#include "buttons.h"
+#include "led.h"
+#include "parameters.h"
+#include "bt_6701_settings.h"
+#include "bt_6701_commands.h"
+#include "netconf.h"
+#include "stm32f4x7_eth.h"
+#include "http_server.h"
+#include "config_service.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+#include "lwip/opt.h"
+#include "lwip/api.h"
+#include "lwip/sys.h"
+
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+
+#define UDP_PORT 49049
+
+TESTING_STATE_t TESTING_STATE = TEST_IDLE;
+
+static TEST_t testState = TEST_WAIT;
+
+
+bool ifTest_DEF = false;
+bool macWaiting = false;
+bool macIsInstalled = false;
+bool fUpdatable = false;
+bool fDefPressed = false;
+
+#define MSG_LEN   300
+char msg[MSG_LEN];
+
+extern char STM_ID[33];
+
+/**
+  * @brief  
+  */
+void vTestCommands(void *params)
+{
+    for (;;)
+    {
+        if (fUpdatable) {
+            //COM_TestEthernet();
+            Test_Ethernet();
+            vTaskDelay(4000);
+
+            /* Стартует таск для опроса кнопки DEF */
+            //xTaskCreate(vBootloaderButton, "DEF_Bootloader", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
+            xTaskCreate(vTaskButtons, "DEF_Waiting", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
+          //  xTaskCreate(vTaskLedBlink, "LED_Blink", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
+            
+            while (!fDefPressed) {}
+
+            //sSettings.bootParams.loadMode = 1;
+            SetLoadMode();
+            COM_TestSerno();
+            COM_SetTestState(T2READY);
+            vTaskDelay(1000);
+            NVIC_SystemReset();
+
+            while (1) {};
+        }
+      
+        switch (testState)
+        {
+            case TEST_WAIT :
+            break;
+              
+            case TEST_U232U485 :
+                Test_U232();
+            break;
+          
+            case TEST_DRY :
+                Test_DRY();
+            break;
+
+            case TEST_DEF :
+                
+                if (!ifTest_DEF) {
+                    ifTest_DEF = true;
+                    xTaskCreate(vTest_DEF, "DEF_Test", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
+                }
+            break;
+
+            case TEST_ETHERNET :
+                Test_Ethernet();
+            break;
+            
+            case TEST_SERNO :
+                Test_Serno();
+            break;
+            
+            
+            default :
+            break;
+        }
+        
+        vTaskDelay(200);
+      //TestProcessing();
+    }
+}
+
+/**
+  * @brief  
+  */
+void TEST_SetTest(TEST_t state)
+{
+    // Изменяем стейт только в том случае если контроллер находится в режиме ожидания
+    if (testState == TEST_WAIT)
+        testState = state;
+    
+    // На TEST_WAIT можно изменить всегда
+    if (state == TEST_WAIT)
+        testState = state;
+}
+
+/**
+  * @brief  Считать статут тестирования (T0, T1, etc)
+  */
+void COM_ReadTestState(void)
+{
+  if (strncmp(SETTINGS_GetTestState(), "T0READY", 5) == 0) {
+	TESTING_STATE = T0READY;
+	printf("T0READY\r\n");
+  }
+  else if (strncmp(SETTINGS_GetTestState(), "T0OK", 5) == 0)
+	TESTING_STATE = T0OK;
+  else if (strncmp(SETTINGS_GetTestState(), "T1OK", 5) == 0) {
+	TESTING_STATE = T1OK;
+// TODO Если осуществлять поддержку старых версий UCN нужно учесть этот флаг
+    fUpdatable = true;
+  }
+  else if (strncmp(SETTINGS_GetTestState(), "T2READY", 8) == 0) {
+	TESTING_STATE = T2READY;
+  }
+  else
+	TESTING_STATE = TEST_IDLE;
+}
+
+/**
+  * @brief  Сохранение Serno и отправка сообщения на сервер
+  */
+void COM_TestSerno(void)
+{
+  struct netconn *conn;
+  struct netbuf *buf;
+  char *data;
+  err_t err;
+  char str[20] = {0};
+  uint8_t len;
+
+  /* Сохраняем настройки чтобы перезаписать новый Serno */
+  SETTINGS_Save();
+
+  /* Отправляем сообщение на сервер по UDP */
+  memset(msg, 0, MSG_LEN);
+
+  conn = netconn_new( NETCONN_UDP );
+
+  if (conn!= NULL)
+  {
+    err = netconn_bind(conn, IP_ADDR_ANY, UDP_PORT);
+
+    if (err == ERR_OK)
+    {
+      netconn_connect(conn, IP_ADDR_BROADCAST, UDP_PORT);
+
+      memset(str, 0, 20);
+      GetModelStr(str, &len);
+	  //strcpy(msg, sSettings.sSnmp.sysName);
+      strcpy(msg, str);
+	  strcat(msg, ";");
+
+	  memset(str, 0, 20);
+	  GetSerialNumberStr(str, &len);
+	  //strcat(msg, sSettings.sInfo.serialNumber);
+      strcat(msg, str);
+	  strcat(msg, ";");
+
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+
+	  strcat(msg, VERSION_TEST);
+	  strcat(msg, ";");
+
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+
+      strcat(msg, STM_ID);
+
+      strcat(msg, ";");
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+
+	  if (TESTING_STATE == T0OK)
+	    strcat(msg, "T0OK");
+	  else if (TESTING_STATE == T1OK)
+	    strcat(msg, "T1OK");
+	  else if (TESTING_STATE == T0READY)
+	    strcat(msg, "T0READY");
+	  else if (TESTING_STATE == T2READY)
+	    strcat(msg, "T2READY");
+
+	  strcat(msg, ";");
+      /* empty column (format reqs)*/
+      strcat(msg, ";");
+
+	  buf = netbuf_new();
+      data = netbuf_alloc(buf, strlen(msg));
+      memcpy(data, msg, strlen(msg));
+      netconn_send(conn, buf);
+      netbuf_delete(buf);
+	}
+	else
+      netconn_delete(conn);
+  }
+}
+
+/**
+  * @brief  Установить статут тестирования (T0, T1, etc)
+  */
+void COM_SetTestState(TESTING_STATE_t status)
+{
+  switch (status)
+  {
+    case T0READY :
+	  //memset(sSettings.sFlags.testState, 0, 16);
+	  //strncpy(sSettings.sFlags.testState, "T0READY", 7);
+      memset(SETTINGS_GetTestState(), 0, 16);
+	  strncpy(SETTINGS_GetTestState(), "T0READY", 7);
+      TESTING_STATE = T0READY;
+	break;
+
+    case T0OK :
+	  //memset(sSettings.sFlags.testState, 0, 16);
+	  //strncpy(sSettings.sFlags.testState, "T0OK", 4);
+      memset(SETTINGS_GetTestState(), 0, 16);
+	  strncpy(SETTINGS_GetTestState(), "T0OK", 4);
+      TESTING_STATE = T0OK;
+	break;
+
+	case T1OK :
+	  //memset(sSettings.sFlags.testState, 0, 16);
+	  //strncpy(sSettings.sFlags.testState, "T1OK", 4);
+      memset(SETTINGS_GetTestState(), 0, 16);
+	  strncpy(SETTINGS_GetTestState(), "T1OK", 4);
+      TESTING_STATE = T1OK;
+	break;
+
+	case T2READY :
+	  //memset(sSettings.sFlags.testState, 0, 16);
+	  //strncpy(sSettings.sFlags.testState, "T2READY", 7);
+      memset(SETTINGS_GetTestState(), 0, 16);
+	  strncpy(SETTINGS_GetTestState(), "T2READY", 7);
+      TESTING_STATE = T2READY;
+	break;
+  }
+
+  SETTINGS_Save();
+}
+
+/********************************* (C) РОТЕК **********************************/

+ 93 - 0
service_hw/Commands/commands_api.h

@@ -0,0 +1,93 @@
+/******************************* (C) LiteMesh **********************************
+ * @module  commands_api
+ * @file    commands_api.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   commands_api
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef __COMMANDS_API_H
+#define __COMMANDS_API_H
+
+#include <stdbool.h>
+
+/**
+  * @brief  Для нового теста добавляем имя
+  */
+typedef enum
+{
+    TEST_WAIT = 0,
+    TEST_U232U485,
+    TEST_DRY,
+    TEST_U232F,
+    TEST_DEF,
+    TEST_ETHERNET,
+    TEST_SERNO,
+    
+    
+} TEST_t;
+
+typedef enum
+{
+  TEST_IDLE = 0,
+  T0READY,
+  T0OK,
+  T1OK,
+  T2OK,
+  T2READY,
+
+} TESTING_STATE_t;
+
+/**
+  * @brief  
+  */
+void TestProcessing(void);
+
+void Test_U232U485(void);
+void Test_DRY(void);
+void Test_U232F(void);
+void vTest_DEF(void *params);
+void Test_Ethernet(void);
+void Test_Serno(void);
+
+
+/**
+  * @brief  
+  */
+void vTestCommands(void *params);
+
+/**
+  * @brief  
+  */
+void TEST_SetTest(TEST_t state);
+
+
+extern bool ifTest_DEF;
+extern bool macWaiting;
+extern bool macIsInstalled;
+extern bool fUpdatable;
+extern bool fDefPressed;
+
+/**
+  * @brief  Считать статут тестирования (T0, T1, etc)
+  */
+void COM_ReadTestState(void);
+
+/**
+  * @brief  Сохранение Serno и отправка сообщения на сервер
+  */
+void COM_TestSerno(void);
+
+/**
+  * @brief  Установить статут тестирования (T0, T1, etc)
+  */
+void COM_SetTestState(TESTING_STATE_t status);
+
+#endif /* #ifndef __COMMANDS_API_H */
+
+/****************************** (C) LiteMesh ***************** end of file ****/

+ 233 - 0
service_hw/Ethernet/lwipopts.h

@@ -0,0 +1,233 @@
+/**
+  ******************************************************************************
+  * @file    lwipopts.h
+  * @author  MCD Application Team
+  * @version V1.0.0
+  * @date    31-October-2011
+  * @brief   lwIP Options Configuration.
+  *          This file is based on Utilities\lwip_v1.3.2\src\include\lwip\opt.h 
+  *          and contains the lwIP configuration for the STM32F4x7 demonstration.
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
+  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
+  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
+  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  *
+  * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
+  ******************************************************************************
+  */
+
+#ifndef __LWIPOPTS_H__
+#define __LWIPOPTS_H__
+
+/**
+ * SYS_LIGHTWEIGHT_PROT==1: if you want inter-task protection for certain
+ * critical regions during buffer allocation, deallocation and memory
+ * allocation and deallocation.
+ */
+#define SYS_LIGHTWEIGHT_PROT    0
+
+#define ETHARP_TRUST_IP_MAC     0
+#define IP_REASSEMBLY           0
+#define IP_FRAG                 0
+#define ARP_QUEUEING            0
+
+/**
+ * NO_SYS==1: Provides VERY minimal functionality. Otherwise,
+ * use lwIP facilities.
+ */
+#define NO_SYS                  0
+
+/* ---------- Memory options ---------- */
+/* MEM_ALIGNMENT: should be set to the alignment of the CPU for which
+   lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2
+   byte alignment -> define MEM_ALIGNMENT to 2. */
+#define MEM_ALIGNMENT           4
+
+/* MEM_SIZE: the size of the heap memory. If the application will send
+a lot of data that needs to be copied, this should be set high. */
+#define MEM_SIZE                (5*1024)
+//#define MEM_SIZE                (10*1024)
+
+/* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application
+   sends a lot of data out of ROM (or other static memory), this
+   should be set high. */
+//#define MEMP_NUM_PBUF           100
+#define MEMP_NUM_PBUF           40
+/* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
+   per active UDP "connection". */
+#define MEMP_NUM_UDP_PCB        6
+/* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
+   connections. */
+#define MEMP_NUM_TCP_PCB        10
+/* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
+   connections. */
+#define MEMP_NUM_TCP_PCB_LISTEN 5
+//#define MEMP_NUM_TCP_PCB_LISTEN 15
+/* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
+   segments. */
+#define MEMP_NUM_TCP_SEG        20
+//#define MEMP_NUM_TCP_SEG        100	 
+/* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
+   timeouts. */
+#define MEMP_NUM_SYS_TIMEOUT    10
+//#define MEMP_NUM_SYS_TIMEOUT    100
+
+/* ---------- Pbuf options ---------- */
+/* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
+#define PBUF_POOL_SIZE          12
+//#define PBUF_POOL_SIZE          25
+
+/* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */
+//#define PBUF_POOL_BUFSIZE       512
+#define PBUF_POOL_BUFSIZE       3024
+
+
+/* ---------- TCP options ---------- */
+#define LWIP_TCP                1
+#define TCP_TTL                 255
+
+/* Controls if TCP should queue segments that arrive out of
+   order. Define to 0 if your device is low on memory. */
+#define TCP_QUEUE_OOSEQ         0
+
+/* TCP Maximum segment size. */
+#define TCP_MSS                 (1500 - 40)	  /* TCP_MSS = (Ethernet MTU - IP header size - TCP header size) */
+
+/* TCP sender buffer space (bytes). */
+//#define TCP_SND_BUF             (5*TCP_MSS)
+#define TCP_SND_BUF             (16*TCP_MSS)
+
+/*  TCP_SND_QUEUELEN: TCP sender buffer space (pbufs). This must be at least
+  as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. */
+//20 
+#define TCP_SND_QUEUELEN        (2* TCP_SND_BUF/TCP_MSS)
+//#define TCP_SND_QUEUELEN        (4* TCP_SND_BUF/TCP_MSS)
+
+/* TCP receive window. */
+#define TCP_WND                 (2*TCP_MSS)
+
+
+/* ---------- ICMP options ---------- */
+#define LWIP_ICMP                       1
+//#define ICMP_TTL			128
+
+/* ---------- DHCP options ---------- */
+/* Define LWIP_DHCP to 1 if you want DHCP configuration of
+   interfaces. DHCP is not implemented in lwIP 0.5.1, however, so
+   turning this on does currently not work. */
+#define LWIP_DHCP               1
+
+
+// ---------- SNMP options ----------
+#define LWIP_SNMP                       0
+#define SNMP_TRAP_DESTINATIONS          0
+#define SNMP_PRIVATE_MIB                0
+#define SNMP_SAFE_REQUESTS              0
+     
+
+/* ---------- UDP options ---------- */
+#define LWIP_UDP                1
+#define UDP_TTL                 255
+
+
+/* ---------- Statistics options ---------- */
+#define LWIP_STATS 0
+#define LWIP_PROVIDE_ERRNO 1
+
+
+/*
+   --------------------------------------
+   ---------- Checksum options ----------
+   --------------------------------------
+*/
+
+/* 
+The STM32F4x7 allows computing and verifying the IP, UDP, TCP and ICMP checksums by hardware:
+ - To use this feature let the following define uncommented.
+ - To disable it and process by CPU comment the  the checksum.
+*/
+#define CHECKSUM_BY_HARDWARE 
+
+
+#ifdef CHECKSUM_BY_HARDWARE
+  /* CHECKSUM_GEN_IP==0: Generate checksums by hardware for outgoing IP packets.*/
+  #define CHECKSUM_GEN_IP                 0
+  /* CHECKSUM_GEN_UDP==0: Generate checksums by hardware for outgoing UDP packets.*/
+  #define CHECKSUM_GEN_UDP                0
+  /* CHECKSUM_GEN_TCP==0: Generate checksums by hardware for outgoing TCP packets.*/
+  #define CHECKSUM_GEN_TCP                0 
+  /* CHECKSUM_CHECK_IP==0: Check checksums by hardware for incoming IP packets.*/
+  #define CHECKSUM_CHECK_IP               0
+  /* CHECKSUM_CHECK_UDP==0: Check checksums by hardware for incoming UDP packets.*/
+  #define CHECKSUM_CHECK_UDP              0
+  /* CHECKSUM_CHECK_TCP==0: Check checksums by hardware for incoming TCP packets.*/
+  #define CHECKSUM_CHECK_TCP              0
+#else
+  /* CHECKSUM_GEN_IP==1: Generate checksums in software for outgoing IP packets.*/
+  #define CHECKSUM_GEN_IP                 1
+  /* CHECKSUM_GEN_UDP==1: Generate checksums in software for outgoing UDP packets.*/
+  #define CHECKSUM_GEN_UDP                1
+  /* CHECKSUM_GEN_TCP==1: Generate checksums in software for outgoing TCP packets.*/
+  #define CHECKSUM_GEN_TCP                1
+  /* CHECKSUM_CHECK_IP==1: Check checksums in software for incoming IP packets.*/
+  #define CHECKSUM_CHECK_IP               1
+  /* CHECKSUM_CHECK_UDP==1: Check checksums in software for incoming UDP packets.*/
+  #define CHECKSUM_CHECK_UDP              1
+  /* CHECKSUM_CHECK_TCP==1: Check checksums in software for incoming TCP packets.*/
+  #define CHECKSUM_CHECK_TCP              1
+#endif
+
+
+/*
+   ----------------------------------------------
+   ---------- Sequential layer options ----------
+   ----------------------------------------------
+*/
+/**
+ * LWIP_NETCONN==1: Enable Netconn API (require to use api_lib.c)
+ */
+#define LWIP_NETCONN                    1
+
+/*
+   ------------------------------------
+   ---------- Socket options ----------
+   ------------------------------------
+*/
+/**
+ * LWIP_SOCKET==1: Enable Socket API (require to use sockets.c)
+ */
+#define LWIP_SOCKET                     0
+
+/*
+   -----------------------------------
+   ---------- DEBUG options ----------
+   -----------------------------------
+*/
+
+//#define LWIP_DEBUG                      0
+
+
+/*
+   ---------------------------------
+   ---------- OS options ----------
+   ---------------------------------
+*/
+
+#define TCPIP_THREAD_STACKSIZE          1000
+#define TCPIP_MBOX_SIZE                 5
+#define DEFAULT_UDP_RECVMBOX_SIZE       2000
+#define DEFAULT_TCP_RECVMBOX_SIZE       2000
+#define DEFAULT_ACCEPTMBOX_SIZE         2000
+#define DEFAULT_THREAD_STACKSIZE        500
+#define TCPIP_THREAD_PRIO               (configMAX_PRIORITIES - 2)
+
+
+
+#endif /* __LWIPOPTS_H__ */
+
+/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/

+ 146 - 0
service_hw/Ethernet/netconf.c

@@ -0,0 +1,146 @@
+
+#include "lwip/mem.h"
+#include "lwip/memp.h"
+#include "lwip/dhcp.h"
+#include "ethernetif.h"
+#include "common_config.h"
+#include "netconf.h"
+#include "tcpip.h"
+#include "main.h"
+#include "settings_api.h"
+#include "parameters.h"
+#include "stm32f4x7_eth.h"
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+#include <string.h>
+
+
+#define MAX_DHCP_TRIES 3
+
+#define TIME_COUNTER_10_MIN   600
+#define TIME_COUNTER_1_MIN    60
+
+/**
+  * @brief  Network interface structure
+  */
+struct netif xnetif; 
+
+/**
+  * @brief  Задача получения сетевый параметров по DHCP протоколу
+  */
+TaskHandle_t xHandleDHCP = NULL;
+
+
+void LwIP_Init(void)
+{
+  struct ip_addr ipaddr;
+  struct ip_addr netmask;
+  struct ip_addr gw;
+  uint16_t reg = 0;
+  
+  tcpip_init( NULL, NULL );	
+  
+  ipaddr.addr = 0;
+  netmask.addr = 0;
+  gw.addr = 0;
+	
+  netif_add(&xnetif, &ipaddr, &netmask, &gw, NULL, &ethernetif_init, &tcpip_input);
+  netif_set_default(&xnetif);
+  netif_set_up(&xnetif); 
+    	  
+  /* Проверяем наличие линка */
+  reg = ETH_ReadPHYRegister(0, 1);
+
+  if (reg & 4) 
+    xTaskCreate(LwIP_DHCP_task, "DHCPClient", configMINIMAL_STACK_SIZE * 2, NULL,
+                tskIDLE_PRIORITY + 2, &xHandleDHCP);
+}
+
+/**
+  * @brief  LwIP_DHCP_Process_Handle
+  * @param  None
+  * @retval None
+  */
+void LwIP_DHCP_task(void * pvParameters)
+{
+  struct ip_addr ipaddr;
+  struct ip_addr netmask;
+  struct ip_addr gw;
+  uint8_t DHCP_state;  
+  DHCP_state = DHCP_START;
+
+  for (;;)
+  {
+    switch (DHCP_state)
+    {
+      case DHCP_START:
+      {
+        dhcp_start(&xnetif);
+        DHCP_state = DHCP_WAIT_ADDRESS;
+        //PRINT_USART("\n\rLooking for DHCP server please wait...\n\r");
+      }
+      break;
+
+      case DHCP_WAIT_ADDRESS:
+      {
+        /* Read the new IP address */
+        ipaddr = xnetif.ip_addr;
+        netmask = xnetif.netmask;
+        gw = xnetif.gw;
+        	
+		
+		
+        if (ipaddr.addr != 0) 
+        {
+          DHCP_state = DHCP_ADDRESS_ASSIGNED;	
+          dhcp_stop(&xnetif);
+          
+		  PRINT_USART("Parameters assigned by a DHCP server:\n\r     IP:   ");
+          PRINT_USART(ipaddr_ntoa(&ipaddr));
+		  
+		  PRINT_USART("\n\r");
+          
+		  PRINT_USART("Netmask:   ");
+		  PRINT_USART(ipaddr_ntoa(&netmask));
+		  PRINT_USART("\n\r");
+		  
+		  PRINT_USART("Gateway:   ");
+		  PRINT_USART(ipaddr_ntoa(&gw));
+		  PRINT_USART("\n\r");
+          
+		  printf("ETH OK\r\n");
+		  
+          vTaskDelete(xHandleDHCP);
+        }
+        else
+        {
+          /* DHCP timeout */
+          if (xnetif.dhcp->tries > MAX_DHCP_TRIES)
+          {
+            DHCP_state = DHCP_TIMEOUT;
+
+            /* Stop DHCP */
+            dhcp_stop(&xnetif);
+			
+			/* Сообщение о неудачной попытке получить IP */
+			printf("ETH FAIL\r\n");
+			
+			vTaskDelete(xHandleDHCP);
+          }
+        }
+      }
+      break;
+
+      default: break;
+    }
+
+    vTaskDelay(250);
+  }   
+}
+
+/*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/

+ 55 - 0
service_hw/Ethernet/netconf.h

@@ -0,0 +1,55 @@
+/**
+  ******************************************************************************
+  * @file    netconf.h
+  * @author  MCD Application Team
+  * @version V1.0.0
+  * @date    31-October-2011 
+  * @brief   This file contains all the functions prototypes for the netconf.c 
+  *          file.
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
+  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
+  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
+  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  *
+  * <h2><center>&copy; Portions COPYRIGHT 2011 STMicroelectronics</center></h2>
+  ******************************************************************************
+  */
+
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef __NETCONF_H
+#define __NETCONF_H
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+   
+#include "stm32f4xx.h"    
+#include <stdbool.h>
+   
+typedef enum 
+{ 
+  DHCP_START=0,
+  DHCP_WAIT_ADDRESS,
+  DHCP_ADDRESS_ASSIGNED,
+  DHCP_TIMEOUT
+} 
+DHCP_State_TypeDef;
+
+void LwIP_Init(void);
+
+void LwIP_DHCP_task(void * pvParameters);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __NETCONF_H */
+
+
+/*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/

+ 173 - 0
service_hw/Ethernet/sntp.c

@@ -0,0 +1,173 @@
+#include "sntp.h"
+#include "rtc.h"
+#include "settings_api.h"
+
+#include <string.h>
+#include <time.h>
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+
+#define SENDFAIL_TIMEOUT 5000 /* 5 seconds */
+#define SENT_TIMEOUT 60000 /* 1 minute */
+#define BADREPLY_TIMEOUT 60000 /* 1 minute */
+#define VALID_TIMEOUT (8 * 3600000) /* 8 hours */
+
+/* number of seconds between 1900 and 1970 */
+#define DIFF_SEC_1900_1970         (2208988800UL)
+
+struct sntp_packet
+{
+  uint8_t status;
+  uint8_t stratum;
+  uint8_t ppoll;
+  uint8_t precision;
+  uint32_t distance;
+  uint32_t dispersion;
+  uint32_t refid;
+  uint64_t reftime;
+  uint64_t org;
+  uint64_t rec;
+  uint64_t xmt;
+};
+
+static unsigned int timeout;
+static struct udp_pcb* upcb;
+static struct ip_addr server;
+static int port = 123;
+
+extern bool ntpResult;
+extern uint32_t SNTP_Time;
+
+/**
+  * @brief  Отладочный таск. Выводим время в консоль.
+  * @retval 
+  */
+void vTaskSntp(void *arg)
+{
+  TM_RTC_t data;
+  
+  for (;;)
+  {
+    vTaskDelay(1000);
+	TM_RTC_GetDateTime(&data, TM_RTC_Format_BIN);
+	printf("%d.%d.%d %d:%d:%d \n\r", data.date,data.month,data.year,data.hours,data.minutes,data.seconds);
+  }
+}
+
+static void recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, 
+				 struct ip_addr *addr, u16_t port)
+{
+  time_t t;
+  //struct tm *time;
+  //struct tm *ptrTime = &time;
+  
+  if (p->len == sizeof(struct sntp_packet))
+  {
+    int i;
+    struct sntp_packet aligned;
+    //myassert(p->len == p->tot_len); /* don't accept chained pbuf */
+    memcpy(&aligned, p->payload, sizeof(aligned));
+    i = (aligned.status >> 3) & 7;
+    
+	if ((i < 1) || (i > 4)) /* SNTP version 1..4 */
+      goto out;
+
+    i = aligned.status & 7;
+
+	if ((i != 4) && (i != 5)) /* mode 4 or 5: server or broadcast */
+      goto out;
+
+	if (aligned.xmt == 0)
+      goto out;
+	
+	t = (ntohl(aligned.xmt) - 2208988800);
+	
+	TM_RTC_SetDataTimeUnix((uint32_t)t);
+	
+	//time = __localtime32(&t);
+	
+	SNTP_Time = t;
+	ntpResult = true;
+	
+	//printf("%s\r\n", asctime(time));
+
+	timeout = VALID_TIMEOUT;
+    
+  }
+  out:
+    pbuf_free(p);
+}
+
+void SNTP_Enable(bool enable)
+{
+  if (enable)
+  {
+    if (upcb == 0)
+    {
+      err_t ret;
+      upcb = udp_new();
+      if (upcb != 0)
+	  {
+		ret = udp_bind(upcb, IP_ADDR_ANY, port);
+
+	    if (ret != ERR_OK)
+        {
+          udp_remove(upcb);
+          upcb = 0;
+        }
+        else
+        {
+          udp_recv(upcb, recv, 0);
+        }
+        timeout = 0;
+	  }
+    }
+  }
+  else if (upcb != 0)
+  {
+    udp_remove(upcb);
+    upcb = 0;
+  }
+}
+
+bool SNTP_IsEnabled(void)
+{
+  return upcb != 0;
+}
+
+void SNTP_SetServerAddr(char *addr)
+{
+  server.addr = ipaddr_addr(addr);
+}
+
+int sntp_getserverport(void)
+{
+  return port;
+}
+
+static void send_request(void)
+{
+  struct sntp_packet packet;
+  struct pbuf* psend;
+  memset(&packet, 0, sizeof(packet));
+  packet.status = (3 << 3) /* SNTP vesion 3 */ | (3 << 0); /* Mode: client */
+  psend = pbuf_alloc(PBUF_RAW, sizeof(packet), PBUF_REF);
+  
+  if (psend != 0)
+  {
+    psend->payload = &packet;
+    timeout = (udp_sendto(upcb, psend, &server, port) == ERR_OK) ? SENT_TIMEOUT : SENDFAIL_TIMEOUT;
+    pbuf_free(psend);
+  }
+}
+
+void SNTP_Poll(void)
+{
+  if (upcb)
+    send_request();
+}

+ 39 - 0
service_hw/Ethernet/sntp.h

@@ -0,0 +1,39 @@
+#ifndef __SNTP_H__
+#define __SNTP_H__
+
+#include "lwip/udp.h"
+#include "lwip/def.h"
+#include "lwip/timers.h"
+#include "lwip/udp.h"
+#include "lwip/dns.h"
+#include "lwip/ip_addr.h"
+#include "lwip/pbuf.h"
+
+#include "stdbool.h"
+
+void vTaskSntp(void *arg);
+
+void SNTP_Enable(bool enable);
+
+bool SNTP_IsEnabled(void);
+
+void SNTP_SetServerAddr(char *addr);
+int sntp_getserverport(void);
+void SNTP_Poll(void);
+
+
+
+/*
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void sntp_init(void);
+void sntp_stop(void);
+
+#ifdef __cplusplus
+}
+#endif
+*/
+
+#endif /* __SNTP_H__ */

+ 178 - 0
service_hw/HTTP_Server/fs.c

@@ -0,0 +1,178 @@
+/**
+ * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
+ * All rights reserved. 
+ * 
+ * Redistribution and use in source and binary forms, with or without modification, 
+ * are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice,
+ *    this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission. 
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
+ * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
+ * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
+ * OF SUCH DAMAGE.
+ *
+ * This file is part of the lwIP TCP/IP stack.
+ * 
+ * Author: Adam Dunkels <adam@sics.se>
+ *
+ **/
+#include "lwip/opt.h"
+#include "lwip/def.h"
+#include "fs.h"
+#include "fsdata.h"
+#include <string.h>
+
+/** Set this to 1 to include "fsdata_custom.c" instead of "fsdata.c" for the
+ * file system (to prevent changing the file included in CVS) */
+#ifndef HTTPD_USE_CUSTUM_FSDATA
+#define HTTPD_USE_CUSTUM_FSDATA 0
+#endif
+
+#if HTTPD_USE_CUSTUM_FSDATA
+#include "fsdata_custom.c"
+#else /* HTTPD_USE_CUSTUM_FSDATA */
+#include "fsdata.c"
+#endif /* HTTPD_USE_CUSTUM_FSDATA */
+
+/*-----------------------------------------------------------------------------------*/
+/* Define the number of open files that we can support. */
+#ifndef LWIP_MAX_OPEN_FILES
+#define LWIP_MAX_OPEN_FILES     10
+#endif
+
+/* Define the file system memory allocation structure. */
+struct fs_table {
+  struct fs_file file;
+  u8_t inuse;
+};
+
+/* Allocate file system memory */
+struct fs_table fs_memory[LWIP_MAX_OPEN_FILES];
+
+#if LWIP_HTTPD_CUSTOM_FILES
+int fs_open_custom(struct fs_file *file, const char *name);
+void fs_close_custom(struct fs_file *file);
+#endif /* LWIP_HTTPD_CUSTOM_FILES */
+
+
+/*-----------------------------------------------------------------------------------*/
+static struct fs_file *
+fs_malloc(void)
+{
+  int i;
+  for(i = 0; i < LWIP_MAX_OPEN_FILES; i++) {
+    if(fs_memory[i].inuse == 0) {
+      fs_memory[i].inuse = 1;
+      return(&fs_memory[i].file);
+    }
+  }
+  return(NULL);
+}
+
+/*-----------------------------------------------------------------------------------*/
+static void
+fs_free(struct fs_file *file)
+{
+  int i;
+  for(i = 0; i < LWIP_MAX_OPEN_FILES; i++) {
+    if(&fs_memory[i].file == file) {
+      fs_memory[i].inuse = 0;
+      break;
+    }
+  }
+  return;
+}
+
+/*-----------------------------------------------------------------------------------*/
+struct fs_file *
+fs_open(const char *name)
+{
+  struct fs_file *file;
+  const struct fsdata_file *f;
+
+  file = fs_malloc();
+  if(file == NULL) {
+    return NULL;
+  }
+
+#if LWIP_HTTPD_CUSTOM_FILES
+  if(fs_open_custom(file, name)) {
+    file->is_custom_file = 1;
+    return file;
+  }
+  file->is_custom_file = 0;
+#endif /* LWIP_HTTPD_CUSTOM_FILES */
+
+  for(f = FS_ROOT; f != NULL; f = f->next) {
+    if (!strcmp(name, (char *)f->name)) {
+      file->data = (const char *)f->data;
+      file->len = f->len;
+      file->index = f->len;
+      file->pextension = NULL;
+      file->http_header_included = f->http_header_included;
+#if HTTPD_PRECALCULATED_CHECKSUM
+      file->chksum_count = f->chksum_count;
+      file->chksum = f->chksum;
+#endif /* HTTPD_PRECALCULATED_CHECKSUM */
+#if LWIP_HTTPD_FILE_STATE
+      file->state = fs_state_init(file, name);
+#endif /* #if LWIP_HTTPD_FILE_STATE */
+      return file;
+    }
+  }
+  fs_free(file);
+  return NULL;
+}
+
+/*-----------------------------------------------------------------------------------*/
+void
+fs_close(struct fs_file *file)
+{
+#if LWIP_HTTPD_CUSTOM_FILES
+  if (file->is_custom_file) {
+    fs_close_custom(file);
+  }
+#endif /* LWIP_HTTPD_CUSTOM_FILES */
+#if LWIP_HTTPD_FILE_STATE
+  fs_state_free(file, file->state);
+#endif /* #if LWIP_HTTPD_FILE_STATE */
+  fs_free(file);
+}
+/*-----------------------------------------------------------------------------------*/
+int
+fs_read(struct fs_file *file, char *buffer, int count)
+{
+  int read;
+
+  if(file->index == file->len) {
+    return -1;
+  }
+
+  read = file->len - file->index;
+  if(read > count) {
+    read = count;
+  }
+
+  MEMCPY(buffer, (file->data + file->index), read);
+  file->index += read;
+
+  return(read);
+}
+/*-----------------------------------------------------------------------------------*/
+int fs_bytes_left(struct fs_file *file)
+{
+  return file->len - file->index;
+}

+ 101 - 0
service_hw/HTTP_Server/fs.h

@@ -0,0 +1,101 @@
+/**
+ * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
+ * All rights reserved. 
+ * 
+ * Redistribution and use in source and binary forms, with or without modification, 
+ * are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice,
+ *    this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission. 
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
+ * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
+ * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
+ * OF SUCH DAMAGE.
+ *
+ * This file is part of the lwIP TCP/IP stack.
+ * 
+ * Author: Adam Dunkels <adam@sics.se>
+ *
+ **/
+#ifndef __FS_H__
+#define __FS_H__
+
+#include "lwip/opt.h"
+
+/** Set this to 1 and provide the functions:
+ * - "int fs_open_custom(struct fs_file *file, const char *name)"
+ *    Called first for every opened file to allow opening files
+ *    that are not included in fsdata(_custom).c
+ * - "void fs_close_custom(struct fs_file *file)"
+ *    Called to free resources allocated by fs_open_custom().
+ */
+#ifndef LWIP_HTTPD_CUSTOM_FILES
+#define LWIP_HTTPD_CUSTOM_FILES       0
+#endif
+
+/** Set this to 1 to include an application state argument per file
+ * that is opened. This allows to keep a state per connection/file.
+ */
+#ifndef LWIP_HTTPD_FILE_STATE
+#define LWIP_HTTPD_FILE_STATE         0
+#endif
+
+/** HTTPD_PRECALCULATED_CHECKSUM==1: include precompiled checksums for
+ * predefined (MSS-sized) chunks of the files to prevent having to calculate
+ * the checksums at runtime. */
+#ifndef HTTPD_PRECALCULATED_CHECKSUM
+#define HTTPD_PRECALCULATED_CHECKSUM  0
+#endif
+
+#if HTTPD_PRECALCULATED_CHECKSUM
+struct fsdata_chksum {
+  u32_t offset;
+  u16_t chksum;
+  u16_t len;
+};
+#endif /* HTTPD_PRECALCULATED_CHECKSUM */
+
+struct fs_file {
+  const char *data;
+  int len;
+  int index;
+  void *pextension;
+#if HTTPD_PRECALCULATED_CHECKSUM
+  const struct fsdata_chksum *chksum;
+  u16_t chksum_count;
+#endif /* HTTPD_PRECALCULATED_CHECKSUM */
+  u8_t http_header_included;
+#if LWIP_HTTPD_CUSTOM_FILES
+  u8_t is_custom_file;
+#endif /* LWIP_HTTPD_CUSTOM_FILES */
+#if LWIP_HTTPD_FILE_STATE
+  void *state;
+#endif /* LWIP_HTTPD_FILE_STATE */
+};
+
+struct fs_file *fs_open(const char *name);
+void fs_close(struct fs_file *file);
+int fs_read(struct fs_file *file, char *buffer, int count);
+int fs_bytes_left(struct fs_file *file);
+struct fs_file *fs_open(const char *name);
+
+#if LWIP_HTTPD_FILE_STATE
+/** This user-defined function is called when a file is opened. */
+void *fs_state_init(struct fs_file *file, const char *name);
+/** This user-defined function is called when a file is closed. */
+void fs_state_free(struct fs_file *file, void *state);
+#endif /* #if LWIP_HTTPD_FILE_STATE */
+
+#endif /* __FS_H__ */

BIN
service_hw/HTTP_Server/fs/favicon.ico


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
service_hw/HTTP_Server/fs/index.html


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
service_hw/HTTP_Server/fs/info.html


BIN
service_hw/HTTP_Server/fs/main.css


BIN
service_hw/HTTP_Server/fs/main.js


BIN
service_hw/HTTP_Server/fs/rotek.png


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
service_hw/HTTP_Server/fs/settings.html


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
service_hw/HTTP_Server/fs/snmp.html


+ 3921 - 0
service_hw/HTTP_Server/fsdata.c

@@ -0,0 +1,3921 @@
+#include "lwip/def.h"
+#include "fsdata.h"
+
+
+#define file_NULL (struct fsdata_file *) NULL
+
+
+static const unsigned int dummy_align__favicon_ico = 0;
+static const unsigned char data__favicon_ico[] = {
+/* /favicon.ico (13 chars) */
+0x2f,0x66,0x61,0x76,0x69,0x63,0x6f,0x6e,0x2e,0x69,0x63,0x6f,0x00,0x00,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: image/x-icon
+
+" (30 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d,
+0x61,0x67,0x65,0x2f,0x78,0x2d,0x69,0x63,0x6f,0x6e,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (1150 bytes) */
+0x00,0x00,0x01,0x00,0x01,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x68,0x04,
+0x00,0x00,0x16,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,
+0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x04,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xd2,0xd2,0xd2,0xff,0xd2,0xd2,
+0xd2,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0x8d,0x8d,0x8d,0xff,0x84,0x84,0x84,0xff,0x89,0x89,0x89,0xff,0x89,0x89,
+0x89,0xff,0x84,0x84,0x84,0xff,0x8d,0x8d,0x8d,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xa4,0xa4,0xa4,0xff,0x84,0x84,
+0x84,0xff,0xae,0xae,0xae,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xae,0xae,0xae,0xff,0x84,0x84,0x84,0xff,0xa4,0xa4,
+0xa4,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0x81,0x81,0x81,0xff,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xa0,0xa0,0xa0,0xff,0x9a,0x9a,0x9a,0xff,0xff,0xff,
+0xff,0x01,0xc7,0xc7,0xc7,0xff,0x8f,0x8f,0x8f,0xff,0x85,0x85,0x85,0xff,0x85,0x85,
+0x85,0xff,0x8f,0x8f,0x8f,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0x01,0xd5,0xd5,
+0xd5,0xff,0xff,0xff,0xff,0x01,0x77,0x77,0x77,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xd5,0xd5,0xd5,0xff,0x84,0x84,0x84,0xff,0xff,0xff,0xff,0x01,0xa8,0xa8,
+0xa8,0xff,0x8c,0x8c,0x8c,0xff,0xbb,0xbb,0xbb,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xba,0xba,0xba,0xff,0xaf,0xaf,0xaf,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0x65,0x64,0x5b,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0x98,0x98,0x98,0xff,0xb0,0xb0,0xb0,0xff,0xd5,0xd5,0xd5,0xff,0x84,0x84,
+0x84,0xff,0xda,0xda,0xda,0xff,0x95,0x95,0x95,0xff,0x84,0x84,0x84,0xff,0x9d,0x9d,
+0x9d,0xff,0xd7,0xd7,0xd7,0xff,0xff,0xff,0xff,0x01,0x98,0x98,0x97,0xff,0x7b,0x7a,
+0x73,0xff,0xdb,0xce,0x79,0xff,0xd2,0xc0,0x55,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0x93,0x93,0x93,0xff,0xff,0xff,0xff,0x01,0xa4,0xa4,0xa4,0xff,0xbe,0xbe,
+0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xd1,0xd1,0xd1,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xb5,0xb4,0xae,0xff,0x5f,0x5f,0x5d,0xff,0x9d,0x97,0x6b,0xff,0xd2,0xc0,
+0x55,0xff,0xff,0xff,0xff,0x01,0xc9,0xb5,0x35,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,0x01,0xf1,0xf1,0xf1,0xff,0xff,0xff,
+0xff,0x01,0xd5,0xd5,0xd5,0xff,0xd0,0xcf,0xce,0xff,0x85,0x85,0x85,0xff,0x60,0x60,
+0x60,0xff,0x94,0x91,0x85,0xff,0xca,0xb5,0x37,0xff,0xff,0xff,0xff,0x01,0xcc,0xb9,
+0x41,0xff,0xff,0xff,0xff,0x01,0xc9,0xb4,0x33,0xff,0xff,0xff,0xff,0x01,0x62,0x62,
+0x62,0xff,0x5e,0x5d,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5e,0x5d,0x5c,0xff,0x61,0x61,
+0x60,0xff,0x67,0x65,0x5b,0xff,0x86,0x84,0x7b,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xca,0xb5,0x37,0xff,0xff,0xff,0xff,0x01,0xcc,0xb9,
+0x41,0xff,0xff,0xff,0xff,0x01,0xc9,0xb4,0x33,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xc9,0xb5,0x35,0xff,0xff,0xff,0xff,0x01,0xd2,0xc0,0x55,0xff,0xff,0xff,
+0xff,0x01,0xd4,0xc4,0x5e,0xff,0xd4,0xc3,0x5c,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xd4,0xc3,0x5c,0xff,0xd4,0xc4,0x5e,0xff,0xdb,0xce,0x79,0xff,0xd2,0xc0,
+0x55,0xff,0xff,0xff,0xff,0x01,0xc9,0xb5,0x35,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xd1,0xc0,0x54,0xff,0xdc,0xcf,0x7d,0xff,0xff,0xff,0xff,0x01,0xc9,0xb4,
+0x33,0xff,0xff,0xff,0xff,0x01,0xd0,0xbe,0x50,0xff,0xc9,0xb4,0x33,0xff,0xc9,0xb4,
+0x33,0xff,0xd2,0xc0,0x55,0xff,0xff,0xff,0xff,0x01,0xc9,0xb4,0x33,0xff,0xff,0xff,
+0xff,0x01,0xdb,0xce,0x79,0xff,0xd2,0xc0,0x55,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xc9,0xb4,0x33,0xff,0xff,0xff,0xff,0x01,0xd9,0xca,
+0x6f,0xff,0xcc,0xb9,0x41,0xff,0xe1,0xd6,0x8f,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xe0,0xd5,0x8c,0xff,0xcc,0xb9,0x40,0xff,0xdb,0xce,0x79,0xff,0xff,0xff,
+0xff,0x01,0xc9,0xb4,0x33,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xd5,0xc5,0x62,0xff,0xd2,0xc1,0x58,0xff,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xce,0xbb,0x46,0xff,0xc9,0xb5,0x35,0xff,0xc9,0xb5,
+0x35,0xff,0xce,0xbb,0x46,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xd2,0xc0,
+0x55,0xff,0xd5,0xc5,0x62,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xd7,0xc8,0x69,0xff,0xc9,0xb4,
+0x33,0xff,0xdb,0xce,0x79,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xdb,0xce,0x79,0xff,0xc9,0xb4,0x33,0xff,0xd7,0xc8,
+0x69,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x0d,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xcd,0xb9,0x42,0xff,0xc9,0xb4,0x33,0xff,0xcb,0xb7,0x3b,0xff,0xcb,0xb7,
+0x3b,0xff,0xc9,0xb4,0x33,0xff,0xcd,0xb9,0x42,0xff,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xeb,0xe4,0xb5,0xff,0xeb,0xe4,
+0xb5,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,
+0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0x00,0x00,
+0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,
+0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,
+0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,
+0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,};
+
+static const unsigned int dummy_align__history_html = 1;
+static const unsigned char data__history_html[] = {
+/* /history.html (14 chars) */
+0x2f,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,0x00,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/html
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (1883 bytes) */
+0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
+0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x22,0x3e,0x3c,0x68,0x65,
+0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,
+0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,
+0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x58,0x2d,0x55,0x41,0x2d,
+0x43,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,
+0x65,0x6e,0x74,0x3d,0x22,0x49,0x45,0x3d,0x65,0x64,0x67,0x65,0x22,0x3e,0x3c,0x6d,
+0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,
+0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,
+0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,
+0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x75,0x73,0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x61,0x62,0x6c,0x65,0x3d,0x30,0x22,
+0x3e,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,0xbd,
+0xd0,0xb0,0xd0,0xbb,0x20,0xd1,0x81,0xd0,0xbe,0xd0,0xb1,0xd1,0x8b,0xd1,0x82,0xd0,
+0xb8,0xd0,0xb9,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x3c,0x6c,0x69,0x6e,0x6b,
+0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,
+0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,
+0x22,0x3e,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,
+0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,
+0x72,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
+0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x66,0x69,0x78,0x65,0x64,0x2d,0x74,0x6f,
+0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,
+0x61,0x76,0x62,0x61,0x72,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,
+0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,
+0x6f,0x67,0x6f,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x6e,0x75,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,
+0x3c,0x2f,0x61,0x3e,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,
+0x61,0x76,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x6e,0x61,0x76,0x22,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,
+0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,
+0x80,0xd1,0x8b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,
+0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,
+0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,
+0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,
+0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,
+0x73,0x6e,0x6d,0x70,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0xa3,0xd0,0xb2,0xd0,
+0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,
+0x8f,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,
+0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x66,0x6f,0x2e,0x68,0x74,0x6d,0x6c,
+0x22,0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,
+0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,
+0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x69,0x73,0x74,
+0x6f,0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,
+0xbd,0xd0,0xb0,0xd0,0xbb,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,
+0x69,0x3e,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x6f,0x63,0x6b,0x62,0x6f,
+0x78,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x2f,0x75,0x6c,
+0x3e,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x3c,0x68,0x31,0x3e,0xd0,0x96,0xd1,
+0x83,0xd1,0x80,0xd0,0xbd,0xd0,0xb0,0xd0,0xbb,0x20,0xd1,0x81,0xd0,0xbe,0xd0,0xb1,
+0xd1,0x8b,0xd1,0x82,0xd0,0xb8,0xd0,0xb9,0x3c,0x2f,0x68,0x31,0x3e,0x3c,0x74,0x61,
+0x62,0x6c,0x65,0x20,0x69,0x64,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x72,0x61,0x70,
+0x70,0x65,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x3c,0x74,0x68,
+0x65,0x61,0x64,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x70,0x68,0x22,0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,
+0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x3e,0xd0,0xa1,0xd0,0xbe,0xd0,
+0xb1,0xd1,0x8b,0xd1,0x82,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,
+0x68,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x3e,0xd0,0x97,0xd0,
+0xbd,0xd0,0xb0,0xd1,0x87,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x74,
+0x68,0x3e,0x3c,0x74,0x68,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,
+0x3e,0xd0,0x92,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x3c,0x2f,0x74,0x68,0x3e,
+0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x62,
+0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x5f,
+0x64,0x61,0x74,0x61,0x22,0x3e,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,
+0x74,0x61,0x62,0x6c,0x65,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,
+0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,
+0x3d,0x22,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x3c,0x62,
+0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,
+0x20,0x62,0x74,0x6e,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x20,0x6f,0x6e,
+0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x67,0x65,0x74,0x50,0x61,0x67,0x65,0x28,0x31,
+0x29,0x22,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,
+0x64,0x64,0x65,0x6e,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x7c,0x26,0x6c,0x61,
+0x71,0x75,0x6f,0x3b,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x62,0x75,0x74,
+0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x64,0x65,0x66,0x61,
+0x75,0x6c,0x74,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x70,0x72,
+0x65,0x76,0x50,0x61,0x67,0x65,0x28,0x29,0x22,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,
+0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x74,0x72,0x75,
+0x65,0x22,0x3e,0x26,0x6c,0x61,0x72,0x72,0x3b,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x20,0xd0,0x9d,0xd0,0xb0,0xd0,0xb7,0xd0,0xb0,0xd0,0xb4,0x3c,0x2f,0x62,0x75,0x74,
+0x74,0x6f,0x6e,0x3e,0x20,0xd0,0xa1,0xd1,0x82,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0xd0,
+0xb8,0xd1,0x86,0xd0,0xb0,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,
+0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x70,0x61,0x67,0x65,0x22,0x3e,0x30,0x3c,0x2f,
+0x73,0x70,0x61,0x6e,0x3e,0x20,0xd0,0xb8,0xd0,0xb7,0x20,0x3c,0x73,0x70,0x61,0x6e,
+0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x67,0x65,0x6c,0x69,0x6d,0x69,0x74,0x22,0x3e,
+0x30,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,
+0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,
+0x3d,0x22,0x6e,0x65,0x78,0x74,0x50,0x61,0x67,0x65,0x28,0x29,0x22,0x3e,0xd0,0x92,
+0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb4,0x20,0x3c,0x73,0x70,0x61,0x6e,
+0x20,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x74,0x72,
+0x75,0x65,0x22,0x3e,0x26,0x72,0x61,0x72,0x72,0x3b,0x3c,0x2f,0x73,0x70,0x61,0x6e,
+0x3e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,
+0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,0x62,0x74,
+0x6e,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,
+0x63,0x6b,0x3d,0x22,0x67,0x65,0x74,0x50,0x61,0x67,0x65,0x28,0x70,0x61,0x72,0x73,
+0x65,0x49,0x6e,0x74,0x28,0x24,0x28,0x26,0x71,0x75,0x6f,0x74,0x3b,0x70,0x61,0x67,
+0x65,0x6c,0x69,0x6d,0x69,0x74,0x26,0x71,0x75,0x6f,0x74,0x3b,0x29,0x2e,0x74,0x65,
+0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x29,0x22,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x20,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,
+0x74,0x72,0x75,0x65,0x22,0x3e,0x26,0x72,0x61,0x71,0x75,0x6f,0x3b,0x7c,0x3c,0x2f,
+0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,
+0x64,0x69,0x76,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,
+0x64,0x69,0x76,0x3e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x73,0x63,0x72,0x69,
+0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,
+0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x6d,
+0x61,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,
+0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,
+0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x3e,
+0x67,0x65,0x74,0x50,0x61,0x67,0x65,0x28,0x31,0x29,0x3b,0x3c,0x2f,0x73,0x63,0x72,
+0x69,0x70,0x74,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,};
+
+static const unsigned int dummy_align__index_html = 2;
+static const unsigned char data__index_html[] = {
+/* /index.html (12 chars) */
+0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/html
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (3595 bytes) */
+0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
+0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x22,0x3e,0x3c,0x68,0x65,
+0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,
+0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,
+0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x58,0x2d,0x55,0x41,0x2d,
+0x43,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,
+0x65,0x6e,0x74,0x3d,0x22,0x49,0x45,0x3d,0x65,0x64,0x67,0x65,0x22,0x3e,0x3c,0x6d,
+0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,
+0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,
+0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,
+0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x75,0x73,0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x61,0x62,0x6c,0x65,0x3d,0x30,0x22,
+0x3e,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,
+0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x74,0x69,0x74,0x6c,
+0x65,0x3e,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x6d,0x61,
+0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,
+0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x3e,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,
+0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,
+0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x66,
+0x69,0x78,0x65,0x64,0x2d,0x74,0x6f,0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x68,0x65,0x61,
+0x64,0x65,0x72,0x22,0x3e,0x3c,0x64,0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,
+0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x6f,0x22,0x3e,0x3c,0x2f,0x61,0x3e,
+0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,
+0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x6e,0x75,
+0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x75,0x6c,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,
+0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x22,0x3e,0x3c,
+0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,
+0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,
+0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,
+0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,
+0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,
+0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x9d,
+0xd0,0xb0,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,0xba,0xd0,0xb8,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,
+0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x3e,0xd0,0xa3,0xd0,0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,0xd0,0xbb,0xd0,
+0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,
+0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x66,
+0x6f,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,
+0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,
+0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,
+0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,0xbd,0xd0,0xb0,0xd0,0xbb,0x3c,0x2f,0x61,0x3e,
+0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,
+0x63,0x6c,0x6f,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x30,0x30,0x3a,0x30,0x30,0x3a,
+0x30,0x30,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x2f,0x75,0x6c,0x3e,
+0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,
+0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x3c,0x68,0x31,0x3e,0xd0,0x9f,0xd0,0xb0,
+0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,
+0x68,0x31,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,
+0x6f,0x6e,0x74,0x2d,0x32,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x20,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x64,
+0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,
+0x67,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x50,0x6f,0x77,0x65,0x72,0x22,0x3e,0xd0,
+0x98,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,0xd0,0xbd,0xd0,0xb8,0xd0,0xba,0x20,
+0xd0,0xbf,0xd0,0xb8,0xd1,0x82,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,
+0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x3c,0x74,0x61,0x62,
+0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,0x20,
+0x74,0x62,0x2d,0x73,0x74,0x61,0x74,0x22,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,
+0x3e,0xd0,0x92,0xd1,0x85,0xd0,0xbe,0xd0,0xb4,0xd0,0xbd,0xd0,0xbe,0xd0,0xb5,0x20,
+0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd0,0xb5,0x20,0x28,0x7e,0x32,0x32,0x30,0x26,0x6e,0x62,0x73,0x70,0x3b,
+0xd0,0x92,0x29,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,
+0x6e,0x20,0x69,0x64,0x3d,0x22,0x41,0x43,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,
+0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,
+0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,
+0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0xd0,0xb2,0xd1,
+0x8b,0xd1,0x85,0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x70,0x70,0x73,0x76,
+0x6f,0x6c,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9f,
+0xd0,0xbe,0xd1,0x82,0xd1,0x80,0xd0,0xb5,0xd0,0xb1,0xd0,0xbb,0xd1,0x8f,0xd0,0xb5,
+0xd0,0xbc,0xd1,0x8b,0xd0,0xb9,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,
+0x70,0x70,0x73,0x63,0x75,0x72,0x72,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x3c,0x74,0x64,
+0x3e,0xd0,0xa3,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,
+0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xba,0xd0,0xbe,0xd0,0xbc,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x70,0x70,0x73,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,
+0x65,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x20,
+0x70,0x61,0x6e,0x65,0x6c,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x3c,
+0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,
+0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x4c,
+0x6f,0x61,0x64,0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,
+0xb7,0xd0,0xba,0xd0,0xb0,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,
+0x79,0x22,0x3e,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x62,0x2d,0x73,0x74,0x61,0x74,0x22,0x3e,
+0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,
+0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6c,
+0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,
+0x64,0x3e,0xd0,0xa2,0xd0,0xbe,0xd0,0xba,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,
+0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x63,
+0x75,0x72,0x72,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9f,0xd0,
+0xbe,0xd0,0xb4,0xd0,0xba,0xd0,0xbb,0xd1,0x8e,0xd1,0x87,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,
+0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x6b,0x65,0x79,0x22,0x3e,
+0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,
+0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x70,0x61,0x6e,0x65,0x6c,0x20,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x64,0x65,0x66,
+0x61,0x75,0x6c,0x74,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,
+0x3e,0xd0,0xa1,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x8f,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb5,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x22,
+0x3e,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,
+0x61,0x62,0x6c,0x65,0x20,0x74,0x62,0x2d,0x73,0x74,0x61,0x74,0x22,0x3e,0x3c,0x74,
+0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa2,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,0xb5,
+0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd0,0xb0,0x20,0xd0,0xb2,0x20,
+0xd1,0x88,0xd0,0xba,0xd0,0xb0,0xd1,0x84,0xd1,0x83,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x65,0x78,0x74,
+0x74,0x65,0x6d,0x70,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,
+0xa0,0xd0,0xb5,0xd0,0xb6,0xd0,0xb8,0xd0,0xbc,0x20,0xd1,0x80,0xd0,0xb0,0xd0,0xb1,
+0xd0,0xbe,0xd1,0x82,0xd1,0x8b,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,
+0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6d,0x6f,0x64,0x65,0x22,0x3e,0x3c,
+0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,
+0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x94,0xd0,0xb2,0xd0,0xb5,0xd1,0x80,
+0xd1,0x8c,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,
+0x20,0x69,0x64,0x3d,0x22,0x64,0x6f,0x6f,0x72,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,
+0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x3c,
+0x74,0x64,0x3e,0xd0,0x98,0xd0,0xbd,0xd0,0xb4,0xd0,0xb8,0xd0,0xba,0xd0,0xb0,0xd1,
+0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xb0,0xd0,0xb2,0xd0,0xb0,0xd1,0x80,0xd0,0xb8,
+0xd0,0xb9,0xd0,0xbd,0xd1,0x8b,0xd1,0x85,0x20,0xd1,0x81,0xd0,0xb8,0xd1,0x82,0xd1,
+0x83,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd0,0xb9,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x61,0x6c,0x61,0x72,
+0x6d,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x3c,0x2f,0x64,0x69,
+0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x2d,0x32,
+0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,
+0x6e,0x65,0x6c,0x20,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,
+0x74,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,
+0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x20,0x69,0x64,
+0x3d,0x22,0x73,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x22,0x3e,0xd0,0x90,0xd0,0xba,
+0xd0,0xba,0xd1,0x83,0xd0,0xbc,0xd1,0x83,0xd0,0xbb,0xd1,0x8f,0xd1,0x82,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbd,0xd1,0x8b,0xd0,0xb5,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,0x82,0xd0,
+0xb0,0xd1,0x80,0xd0,0xb5,0xd0,0xb8,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,
+0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,
+0x6f,0x64,0x79,0x22,0x3e,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x62,0x2d,0x73,0x74,0x61,0x74,
+0x22,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa2,0xd0,0xb5,0xd0,0xbc,
+0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd0,0xb0,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,
+0x64,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x22,0x3e,0x3c,0x2f,0x73,0x70,
+0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,
+0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,
+0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x76,
+0x6f,0x6c,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,0x69,0x64,0x3d,0x22,0x72,0x6f,
+0x77,0x2d,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x31,0x22,0x3e,0x3c,0x74,0x64,0x3e,
+0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0x31,0xd0,0xbc,0x20,0xd1,0x8d,
+0xd0,0xbb,0xd0,0xb5,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd1,0x82,0xd0,0xb5,0x3c,0x2f,
+0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,
+0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x31,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,
+0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,
+0x69,0x64,0x3d,0x22,0x72,0x6f,0x77,0x2d,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x32,
+0x22,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,
+0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0x20,
+0x32,0xd0,0xbc,0x20,0xd1,0x8d,0xd0,0xbb,0xd0,0xb5,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,
+0xd1,0x82,0xd0,0xb5,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x32,0x22,
+0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x74,0x72,0x20,0x69,0x64,0x3d,0x22,0x72,0x6f,0x77,0x2d,0x62,0x61,
+0x74,0x76,0x6f,0x6c,0x74,0x33,0x22,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,
+0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,
+0x20,0xd0,0xbd,0xd0,0xb0,0x20,0x33,0xd0,0xbc,0x20,0xd1,0x8d,0xd0,0xbb,0xd0,0xb5,
+0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd1,0x82,0xd0,0xb5,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,
+0x76,0x6f,0x6c,0x74,0x33,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,
+0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,0x69,0x64,0x3d,0x22,
+0x72,0x6f,0x77,0x2d,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x34,0x22,0x3e,0x3c,0x74,
+0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0x34,0xd0,0xbc,0x20,
+0xd1,0x8d,0xd0,0xbb,0xd0,0xb5,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd1,0x82,0xd0,0xb5,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,
+0x64,0x3d,0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x34,0x22,0x3e,0x3c,0x2f,0x73,
+0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,
+0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa2,0xd0,0xbe,0xd0,0xba,0x20,0xd0,0xb7,0xd0,
+0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x63,
+0x75,0x72,0x72,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa1,
+0xd0,0xb8,0xd0,0xbc,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd0,0xb8,0xd1,0x8f,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,
+0x64,0x3d,0x22,0x62,0x61,0x74,0x73,0x79,0x6d,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,
+0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x3c,
+0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,0xba,0xd0,
+0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,
+0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x74,0x6f,0x73,0x75,0x70,0x6b,0x65,0x79,0x22,
+0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,
+0x76,0x3e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,
+0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,
+0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x6d,0x61,0x69,
+0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,
+0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,
+0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x3e,0x64,0x61,
+0x74,0x61,0x46,0x61,0x64,0x65,0x49,0x6e,0x28,0x29,0x2c,0x70,0x61,0x72,0x61,0x6d,
+0x73,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x3b,0x3c,0x2f,0x73,0x63,0x72,
+0x69,0x70,0x74,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,};
+
+static const unsigned int dummy_align__info_html = 3;
+static const unsigned char data__info_html[] = {
+/* /info.html (11 chars) */
+0x2f,0x69,0x6e,0x66,0x6f,0x2e,0x68,0x74,0x6d,0x6c,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/html
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (2487 bytes) */
+0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
+0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x22,0x3e,0x3c,0x68,0x65,
+0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,
+0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,
+0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x58,0x2d,0x55,0x41,0x2d,
+0x43,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,
+0x65,0x6e,0x74,0x3d,0x22,0x49,0x45,0x3d,0x65,0x64,0x67,0x65,0x22,0x3e,0x3c,0x6d,
+0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,
+0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,
+0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,
+0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x75,0x73,0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x61,0x62,0x6c,0x65,0x3d,0x30,0x22,
+0x3e,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x74,0x69,
+0x74,0x6c,0x65,0x3e,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,
+0x6d,0x61,0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,
+0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x3e,0x3c,0x2f,0x68,0x65,0x61,
+0x64,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x20,0x6e,0x61,0x76,0x62,0x61,
+0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,
+0x2d,0x66,0x69,0x78,0x65,0x64,0x2d,0x74,0x6f,0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x68,
+0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x3c,0x64,0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,
+0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x6f,0x22,0x3e,0x3c,0x2f,
+0x61,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x61,
+0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,
+0x6e,0x75,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x75,0x6c,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x6e,0x61,0x76,0x62,
+0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x22,
+0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,
+0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,
+0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x61,0x3e,
+0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,
+0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,
+0xba,0xd0,0xb8,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,
+0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x68,0x74,
+0x6d,0x6c,0x22,0x3e,0xd0,0xa3,0xd0,0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,
+0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,
+0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,
+0x69,0x6e,0x66,0x6f,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,
+0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,
+0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,
+0x65,0x66,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,
+0x22,0x3e,0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,0xbd,0xd0,0xb0,0xd0,0xbb,0x3c,0x2f,
+0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x69,0x64,
+0x3d,0x22,0x63,0x6c,0x6f,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x2f,0x61,0x3e,
+0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x2f,0x75,0x6c,0x3e,0x3c,0x2f,0x6e,0x61,0x76,0x3e,
+0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x72,0x61,0x70,
+0x70,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,
+0x22,0x3e,0x3c,0x68,0x31,0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,0xd0,0xbe,0xd1,0x80,
+0xd0,0xbc,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x68,0x31,0x3e,0x3c,
+0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,
+0x6e,0x2d,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x2f,0x75,0x6c,0x3e,0x3c,0x74,0x61,0x62,
+0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,0x20,
+0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,
+0x74,0x62,0x2d,0x69,0x6e,0x66,0x6f,0x22,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x2d,0x62,0x6f,0x72,
+0x64,0x65,0x72,0x22,0x3e,0xd0,0x92,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,
+0xd1,0x80,0xd0,0xb0,0xd0,0xb1,0xd0,0xbe,0xd1,0x82,0xd1,0x8b,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x6f,0x6e,0x65,
+0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x75,0x70,0x74,
+0x69,0x6d,0x65,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,
+0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9c,0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,0xd0,
+0xbb,0xd1,0x8c,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,
+0x6d,0x6f,0x64,0x65,0x6c,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,
+0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x94,0xd0,0xb0,0xd1,0x82,0xd0,
+0xb0,0x20,0xd0,0xbf,0xd1,0x80,0xd0,0xbe,0xd0,0xb8,0xd0,0xb7,0xd0,0xb2,0xd0,0xbe,
+0xd0,0xb4,0xd1,0x81,0xd1,0x82,0xd0,0xb2,0xd0,0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x70,0x72,0x6f,0x64,0x61,0x74,0x65,0x22,0x3e,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,
+0x64,0x3e,0xd0,0x92,0xd0,0xb5,0xd1,0x80,0xd1,0x81,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,
+0x9f,0xd0,0x9e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,
+0x66,0x77,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0x4d,0x41,0x43,
+0x20,0xd0,0xb0,0xd0,0xb4,0xd1,0x80,0xd0,0xb5,0xd1,0x81,0xd1,0x81,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6d,0x61,0x63,0x61,0x64,0x64,
+0x72,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,
+0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa1,0xd0,0xb5,0xd1,0x80,0xd0,0xb8,0xd0,0xb9,0xd0,
+0xbd,0xd1,0x8b,0xd0,0xb9,0x20,0xd0,0xbd,0xd0,0xbe,0xd0,0xbc,0xd0,0xb5,0xd1,0x80,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x72,
+0x6e,0x6f,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x66,
+0x6f,0x72,0x6d,0x20,0x69,0x64,0x3d,0x22,0x53,0x4e,0x4d,0x50,0x69,0x6e,0x66,0x6f,
+0x22,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x69,0x6e,0x66,0x6f,0x2e,0x63,
+0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,
+0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x92,0xd0,0xbb,0xd0,0xb0,0xd0,
+0xb4,0xd0,0xb5,0xd0,0xbb,0xd0,0xb5,0xd1,0x86,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,
+0x65,0x78,0x74,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x6f,0x77,0x6e,0x65,0x72,
+0x22,0x20,0x69,0x64,0x3d,0x22,0x6f,0x77,0x6e,0x65,0x72,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,
+0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x3e,0xd0,0x9c,0xd0,0xb5,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd0,0xbf,
+0xd0,0xbe,0xd0,0xbb,0xd0,0xbe,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,
+0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x6e,0x61,0x6d,0x65,
+0x3d,0x22,0x73,0x79,0x73,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,
+0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x3e,0xd0,0x9a,0xd0,0xbe,0xd0,0xbc,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,
+0xd1,0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb8,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,
+0x74,0x65,0x78,0x74,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x63,0x6f,0x6d,0x6d,
+0x65,0x6e,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,
+0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,
+0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,
+0x3d,0x22,0x31,0x30,0x30,0x22,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,
+0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,
+0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,
+0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,
+0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x49,0x6e,0x66,0x6f,
+0x28,0x29,0x2c,0x21,0x31,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,
+0x6e,0x20,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x22,0x3e,0xd0,
+0xa1,0xd0,0xbe,0xd1,0x85,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,
+0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x2e,
+0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,0x73,0x63,
+0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,
+0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x3e,0x67,0x65,0x74,0x4a,
+0x53,0x4f,0x4e,0x28,0x22,0x69,0x6e,0x66,0x6f,0x2e,0x63,0x67,0x69,0x22,0x2c,0x66,
+0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x24,0x28,0x22,0x75,0x70,
+0x74,0x69,0x6d,0x65,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,
+0x3d,0x6e,0x2e,0x75,0x70,0x74,0x69,0x6d,0x65,0x2c,0x24,0x28,0x22,0x6d,0x6f,0x64,
+0x65,0x6c,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x6e,
+0x2e,0x6d,0x6f,0x64,0x65,0x6c,0x2c,0x24,0x28,0x22,0x70,0x72,0x6f,0x64,0x61,0x74,
+0x65,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x6e,0x2e,
+0x70,0x72,0x6f,0x64,0x61,0x74,0x65,0x2c,0x24,0x28,0x22,0x66,0x77,0x76,0x65,0x72,
+0x73,0x69,0x6f,0x6e,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,
+0x3d,0x6e,0x2e,0x66,0x77,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x24,0x28,0x22,
+0x6d,0x61,0x63,0x61,0x64,0x64,0x72,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,
+0x54,0x4d,0x4c,0x3d,0x6e,0x2e,0x6d,0x61,0x63,0x61,0x64,0x64,0x72,0x2c,0x24,0x28,
+0x22,0x73,0x65,0x72,0x6e,0x6f,0x22,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,
+0x4d,0x4c,0x3d,0x6e,0x2e,0x73,0x65,0x72,0x6e,0x6f,0x2c,0x24,0x28,0x22,0x6f,0x77,
+0x6e,0x65,0x72,0x22,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x6e,0x2e,0x6f,0x77,
+0x6e,0x65,0x72,0x2c,0x24,0x28,0x22,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x22,
+0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x6e,0x2e,0x73,0x79,0x73,0x4c,0x6f,0x63,
+0x61,0x74,0x69,0x6f,0x6e,0x2c,0x24,0x28,0x22,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,
+0x22,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x6e,0x2e,0x63,0x6f,0x6d,0x6d,0x65,
+0x6e,0x74,0x2c,0x75,0x74,0x63,0x50,0x61,0x72,0x61,0x6d,0x3d,0x6e,0x2e,0x75,0x74,
+0x63,0x2c,0x6e,0x65,0x74,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x5f,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x64,0x3d,0x6e,0x2e,0x6e,0x65,0x74,0x73,0x65,0x74,0x74,0x69,
+0x6e,0x67,0x73,0x5f,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x7d,0x2c,0x66,0x75,0x6e,
+0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,
+0xd0,0x9d,0xd0,0xb5,0x20,0xd1,0x83,0xd0,0xb4,0xd0,0xb0,0xd0,0xbb,0xd0,0xbe,0xd1,
+0x81,0xd1,0x8c,0x20,0xd0,0xbf,0xd0,0xbe,0xd0,0xbb,0xd1,0x83,0xd1,0x87,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x20,0xd0,0xb4,0xd0,0xb0,0xd0,0xbd,0xd0,0xbd,0xd1,0x8b,0xd0,
+0xb5,0x2e,0x22,0x29,0x7d,0x29,0x3b,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,
+0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,};
+
+static const unsigned int dummy_align__main_css = 4;
+static const unsigned char data__main_css[] = {
+/* /main.css (10 chars) */
+0x2f,0x6d,0x61,0x69,0x6e,0x2e,0x63,0x73,0x73,0x00,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/css
+Content-Encoding: gzip
+
+" (50 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x63,0x73,0x73,0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,
+0x45,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3a,0x20,0x67,0x7a,0x69,0x70,0x0d,0x0a,
+0x0d,0x0a,
+/* raw file data (6182 bytes) */
+0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x0b,0xd5,0x3c,0xd9,0x8e,0xe3,0x48,
+0x72,0xbf,0xc2,0x9d,0x42,0x1b,0xdd,0xd3,0xa4,0x46,0x67,0x1d,0x14,0xa6,0x60,0xcf,
+0x78,0x0d,0x2c,0xb0,0x03,0xec,0xc3,0xce,0x53,0xbb,0x1e,0x28,0x32,0x55,0xa2,0x9b,
+0x22,0x05,0x92,0xaa,0xae,0x1e,0x59,0xff,0xee,0x88,0x8c,0x88,0x3c,0x78,0x48,0x5a,
+0xdb,0x30,0x60,0xd4,0x1c,0x62,0x66,0x64,0x66,0xdc,0x19,0x19,0x19,0xe4,0x4f,0x3f,
+0xfe,0x29,0x28,0xab,0x7a,0x9f,0x14,0xf9,0x1f,0x6a,0x92,0x36,0x4d,0xf0,0xb6,0x98,
+0x4c,0x27,0xf3,0xe0,0x3f,0x83,0xdf,0xfe,0xf2,0xf7,0xe0,0xaf,0x79,0xaa,0xca,0x46,
+0xc1,0xd3,0x6b,0xde,0x4e,0xf2,0xea,0x27,0x03,0x1b,0xfc,0xf8,0xd3,0xa4,0xa8,0x5e,
+0xab,0x30,0xa9,0xdb,0x3c,0x2d,0x54,0x98,0x34,0x79,0xa6,0xc2,0x4c,0xb5,0x49,0x5e,
+0x34,0xe1,0x36,0x7f,0x4d,0x93,0x43,0x9b,0x57,0x25,0xfe,0x3c,0xd6,0x2a,0xdc,0x56,
+0x55,0xab,0xea,0x70,0xa7,0x92,0x0c,0xff,0xf7,0x5a,0x57,0xc7,0x43,0xb8,0x4f,0xf2,
+0x32,0xdc,0xab,0xf2,0x18,0x96,0xc9,0x5b,0xd8,0xa8,0x54,0x8f,0x68,0x8e,0xfb,0x7d,
+0x52,0x7f,0x3f,0x65,0x79,0x73,0x28,0x92,0xef,0xf1,0xa6,0xa8,0xd2,0xaf,0xe7,0x49,
+0x73,0xc8,0xcb,0x4d,0xf5,0xfe,0x5b,0x52,0x7f,0x0d,0xb3,0x6d,0x79,0xda,0x56,0x65,
+0x1b,0x35,0xed,0xf7,0x42,0xc5,0x79,0x0b,0x04,0xa4,0x04,0xf2,0x4b,0xf5,0x1e,0x6a,
+0x58,0xf8,0x11,0xe4,0xe5,0xe1,0xd8,0x86,0xfa,0xbf,0x5f,0xda,0xef,0x07,0xf5,0x73,
+0xa3,0x92,0x3a,0xdd,0xbd,0x9c,0xa2,0x6f,0x6a,0xf3,0x35,0x6f,0xa3,0xe4,0x70,0x80,
+0x96,0xa4,0x4c,0x55,0x5c,0x56,0xa5,0x3a,0x4f,0x00,0x91,0x4d,0x52,0x87,0xcd,0x71,
+0x03,0xff,0x1e,0x4e,0x87,0xaa,0xc9,0x11,0xa9,0xb8,0x56,0x45,0xd2,0xe6,0x6f,0xea,
+0x2c,0x74,0xb5,0xbb,0x53,0xab,0xde,0x61,0x86,0x22,0x7f,0x2d,0xe3,0x42,0x6d,0xdb,
+0xf3,0x5d,0x8a,0x98,0x02,0x8e,0x61,0xf3,0xf6,0x0a,0xf3,0xb5,0x1f,0xe3,0x1a,0xc8,
+0xfe,0x74,0xaa,0xde,0x54,0xbd,0x2d,0xaa,0x6f,0xf1,0x2e,0xcf,0x32,0x55,0x9e,0x27,
+0x09,0x50,0xfa,0xa6,0xc2,0xc9,0xa6,0x2d,0x27,0xdb,0x2a,0x3d,0x36,0xfa,0x67,0xec,
+0xfc,0xdc,0xe1,0x98,0x10,0xd1,0x79,0x2e,0xf2,0xe7,0x44,0xba,0xcc,0xb3,0xee,0x27,
+0x0c,0x32,0x95,0x56,0x35,0x20,0x07,0x58,0x1a,0x1a,0xc2,0x63,0x31,0x69,0x93,0x0d,
+0x80,0x37,0xa7,0x22,0x6f,0x84,0x51,0xba,0x3f,0xdf,0xbf,0x86,0x85,0x7a,0x55,0x65,
+0x76,0xda,0x54,0x35,0x88,0x23,0x9e,0x9e,0xe9,0x39,0x6c,0xb3,0x10,0xe8,0x3a,0x24,
+0x59,0x96,0x97,0xaf,0xd0,0xbc,0x6b,0xf7,0x05,0x31,0x7a,0x9b,0xec,0xf3,0xe2,0x7b,
+0xdc,0x24,0x65,0x13,0x35,0xaa,0xce,0xb7,0x6b,0x61,0xa1,0xe6,0x42,0x03,0xfa,0x13,
+0x25,0xd9,0x7f,0x1c,0x9b,0x36,0x9e,0x4d,0xa7,0x1f,0xd6,0xd1,0xbe,0x89,0x06,0x7b,
+0xce,0x9b,0x2a,0xfb,0x7e,0x02,0x01,0xbf,0xe6,0x65,0x3c,0x5d,0x6f,0x92,0xf4,0x2b,
+0x2a,0x43,0x99,0x45,0x69,0x55,0x54,0x75,0x7c,0xf7,0xe7,0xc7,0x3f,0xff,0xf2,0x6f,
+0xb3,0x35,0x3f,0x2d,0x16,0x8b,0xb5,0xb0,0x2f,0x82,0xf5,0xd3,0xba,0x2a,0x8a,0x73,
+0x72,0xcc,0xf2,0x2a,0x4c,0x93,0xf2,0x2d,0x69,0xc2,0x43,0x5d,0xbd,0xd6,0xaa,0x69,
+0xc2,0x37,0x50,0xc1,0xca,0xa8,0x4d,0x5e,0x16,0x79,0xa9,0x22,0xad,0x3d,0x6b,0x60,
+0x26,0xe8,0x69,0x52,0xb0,0xb8,0x36,0x49,0xa3,0xb0,0x97,0x26,0xd2,0xa2,0xfa,0x92,
+0x82,0x3e,0xc1,0xe4,0xcd,0xcb,0x27,0x33,0x05,0xb2,0x6b,0xbd,0x53,0xf9,0xeb,0xae,
+0x05,0x66,0x7c,0x21,0xe9,0xbd,0x84,0xad,0xda,0x83,0x62,0xb6,0xca,0x83,0x3b,0x27,
+0xa7,0x1e,0x2d,0x2d,0x68,0x56,0x73,0x48,0x6a,0x55,0xb6,0xe7,0x24,0x66,0xa1,0x27,
+0x31,0xc9,0xae,0x3a,0xb6,0x88,0x02,0x4c,0x9c,0x6c,0x36,0xf5,0x97,0x36,0x6f,0x0b,
+0xf5,0xc2,0x12,0x89,0x36,0x55,0xdb,0x56,0xfb,0x78,0x76,0x78,0x0f,0x32,0xf8,0xa9,
+0xb2,0xf3,0x26,0xac,0x0e,0x2d,0x99,0x4d,0x03,0x78,0x96,0xaf,0x24,0x97,0x6f,0x84,
+0xdd,0xc3,0x14,0x84,0x35,0x13,0xb6,0x4e,0xee,0x1f,0xd4,0x3e,0x98,0xae,0xc9,0x44,
+0x40,0x34,0xf1,0x5c,0xed,0xcf,0xc0,0xf3,0xaf,0x27,0x66,0xeb,0x74,0xea,0xb2,0x3e,
+0xbe,0xdb,0x6e,0xa7,0xe7,0x06,0xdc,0x00,0x4b,0x1b,0xc5,0x19,0x3f,0x4e,0x3f,0x9c,
+0xc5,0x0e,0xec,0x4c,0x0f,0xab,0x0f,0x6b,0xcd,0x58,0xe1,0xcb,0x28,0x6f,0xd1,0x7e,
+0xda,0xea,0x10,0x47,0x93,0x15,0xac,0x0e,0x33,0x01,0x71,0x9a,0xaa,0x68,0x32,0xc7,
+0x16,0xf2,0x0c,0x82,0xf3,0x0c,0x30,0x5e,0x4e,0x0f,0xef,0xe7,0x5d,0x7d,0x32,0x53,
+0x8b,0x8e,0x81,0x4d,0x45,0x80,0x13,0x2a,0x25,0x8a,0x09,0xf8,0x09,0x1c,0x7a,0x07,
+0x25,0xab,0xfe,0xc0,0x1f,0x43,0x7d,0xc3,0xcd,0xe7,0x03,0xf8,0x22,0xd4,0x4b,0x10,
+0x4a,0x62,0xed,0x32,0x39,0xb6,0xd5,0x39,0xad,0xc0,0x83,0x7d,0xdd,0x64,0xa0,0x50,
+0x2a,0x6c,0x92,0xfd,0xc1,0xd3,0xfc,0x7d,0x55,0x56,0x20,0xcb,0x54,0x85,0xe6,0x97,
+0xc3,0x5f,0xc0,0xfe,0xbc,0x39,0x02,0x75,0x65,0x48,0x3e,0xc7,0x0a,0x4b,0x15,0xe0,
+0xd7,0xec,0x9a,0x46,0xf3,0x91,0xa5,0x71,0x5e,0xee,0xc0,0x98,0x5a,0xd6,0x76,0x7e,
+0x3a,0xa3,0x5f,0xd0,0x1e,0x21,0x02,0x4e,0x7f,0x0d,0x27,0xdf,0x6a,0xf4,0x53,0x75,
+0x00,0x12,0xd6,0x82,0x60,0xa1,0x2f,0x41,0xe8,0xb4,0xa8,0xa5,0xe4,0x2d,0x6f,0xf2,
+0x4d,0xa1,0x04,0x19,0x50,0x73,0x58,0x9d,0xfc,0x84,0xd6,0xc6,0x2d,0x78,0x7b,0x72,
+0x13,0x8c,0x2e,0x9a,0x38,0xf9,0x49,0xf2,0x90,0xd4,0xfc,0x42,0x64,0x50,0x13,0x18,
+0x97,0x6a,0xbd,0x16,0x10,0xe6,0x3e,0x6f,0x07,0xdd,0x28,0x8d,0x5f,0xa7,0xc7,0xba,
+0x01,0x6b,0x3e,0x54,0x39,0x88,0xab,0x66,0x74,0xbe,0x80,0x4b,0x4f,0x00,0xbb,0xec,
+0x25,0x74,0x96,0x35,0x8d,0x27,0x1e,0x94,0xa9,0x6d,0x72,0x2c,0x5a,0x1e,0x14,0xc7,
+0x5a,0xcc,0xda,0x37,0x46,0x79,0x59,0x82,0x5b,0xd4,0x2c,0xee,0xb7,0x5b,0xc7,0xb5,
+0x36,0x8e,0x4d,0x83,0x82,0x0b,0x04,0x4f,0xc0,0x5a,0x45,0x7b,0xd8,0xd9,0xd9,0x14,
+0xd2,0x9d,0xd2,0x6e,0xdb,0x23,0xb1,0x4e,0xc0,0xc5,0x58,0x0a,0x1d,0x75,0xa2,0xb9,
+0x07,0x15,0xd0,0xe9,0x1a,0x1e,0x60,0x5d,0xab,0xb3,0x7e,0x79,0xdc,0x6f,0x54,0xfd,
+0x02,0x04,0xf1,0xae,0xa4,0xa9,0x8c,0x70,0xc3,0x8b,0x58,0x4a,0x97,0xa0,0xc1,0x91,
+0xa8,0xda,0x85,0x16,0xfb,0xd1,0x5a,0xed,0x8c,0xec,0x6e,0x7e,0x0e,0x8a,0xff,0x33,
+0xab,0x32,0x7b,0x81,0xb3,0x9d,0xa2,0x91,0x6d,0x73,0x55,0x64,0x2e,0xa7,0x19,0x03,
+0x4b,0x29,0x35,0x44,0xe0,0xc9,0x53,0x55,0x0c,0x10,0x3b,0x36,0xc0,0xee,0x79,0xa3,
+0x5b,0xb9,0x5e,0x1c,0x14,0xd7,0x68,0xc5,0x64,0x01,0x5e,0x27,0x98,0xdc,0xa3,0xf3,
+0x09,0x26,0x0f,0xf0,0xdf,0xb5,0x18,0x63,0x30,0x3f,0xbc,0x8b,0xce,0xa0,0xcf,0x6d,
+0xaa,0x22,0xcf,0x82,0x26,0x2f,0x60,0xdf,0xd0,0xd6,0x18,0x69,0xcf,0x1b,0xc9,0x36,
+0xf2,0x8c,0x16,0x4a,0x6d,0x71,0xb2,0xc5,0xc0,0xc6,0x36,0x0c,0x02,0x6d,0x14,0x18,
+0x1e,0x6d,0xf8,0x51,0x5b,0x55,0x05,0xc4,0x18,0xee,0x40,0x69,0x12,0x30,0x88,0xa8,
+0x92,0x7a,0x9b,0xbf,0x0b,0x8c,0x79,0x36,0x00,0xe0,0x3c,0x20,0x78,0x02,0xb9,0x6f,
+0x8b,0x63,0x9e,0x19,0xb8,0x4e,0x73,0x0f,0xbc,0x07,0x18,0x0b,0x48,0x56,0x44,0xbb,
+0xaa,0xce,0xff,0xc0,0x19,0x8a,0x20,0x33,0x53,0xf6,0xda,0x65,0x00,0x7a,0x12,0x77,
+0x08,0x04,0x32,0xd0,0xa0,0xf9,0x24,0xab,0x5c,0x02,0x91,0x69,0xf6,0x55,0x06,0xdb,
+0x32,0x85,0x87,0x32,0xce,0x6b,0x13,0x40,0x88,0x65,0xa4,0x1f,0x7f,0x3a,0xcd,0xc0,
+0x4c,0x0c,0x1e,0x8a,0xe4,0xd0,0x28,0x07,0xc4,0x6b,0xee,0x80,0x53,0x1c,0xda,0x01,
+0xe6,0x46,0x1f,0xd4,0x87,0x31,0xcb,0x1e,0x92,0x57,0x08,0x9c,0x58,0xf6,0xf4,0x20,
+0xe3,0x0e,0x49,0x89,0xba,0x0c,0x61,0x8e,0xed,0x37,0x2d,0x02,0x54,0x43,0x34,0xc8,
+0xa3,0xf1,0x27,0x35,0x9b,0x80,0x02,0x42,0xb7,0x42,0xc1,0xa6,0xa0,0xb7,0xba,0xf8,
+0x87,0xe0,0x87,0x73,0x96,0xbf,0x3d,0xeb,0x88,0xfb,0xf4,0x2d,0xcf,0xda,0x5d,0x3c,
+0x5f,0xae,0x40,0x65,0xd9,0xa5,0x3d,0xe2,0x6f,0xd6,0xe5,0x19,0xee,0xa1,0x04,0x69,
+0xe3,0x91,0xf8,0x58,0x17,0x1f,0x6b,0x88,0xc0,0xbf,0x4e,0x0e,0xe5,0xeb,0xa7,0x20,
+0x82,0x01,0x41,0x34,0xc3,0xff,0x96,0x55,0x54,0x2b,0x08,0x82,0xdb,0x35,0x4d,0xac,
+0xa3,0x37,0x9e,0x17,0x1d,0x88,0x1b,0xa1,0xe9,0xb0,0x20,0xc5,0x70,0xec,0x3c,0xc1,
+0x68,0x22,0xda,0x24,0x59,0x48,0xbf,0xaa,0xaf,0x06,0x79,0x8a,0xb8,0x78,0xb6,0xa5,
+0xc5,0x72,0x86,0xbf,0x09,0xcb,0xa8,0xd6,0x31,0x15,0xe2,0x2a,0x2d,0x18,0x29,0xa0,
+0x15,0x42,0x9c,0x9c,0xb4,0x14,0x4f,0x9b,0x99,0xc7,0x09,0x99,0x06,0xd1,0xc3,0xc2,
+0xa3,0xc2,0xc2,0x62,0x54,0xa0,0xe2,0xd9,0x03,0xcc,0x1a,0x3c,0x3e,0x20,0x57,0x04,
+0x67,0x27,0x52,0xeb,0x71,0x66,0x76,0x8f,0xac,0xf9,0x07,0x26,0x05,0x65,0x04,0x4d,
+0x3b,0xed,0xc1,0x59,0x33,0xdb,0x80,0x85,0x96,0x2e,0x8e,0x79,0xe6,0x5a,0x2c,0x04,
+0x1b,0xf1,0x06,0xe7,0xa0,0x21,0xc1,0xef,0x76,0xbb,0x05,0x3f,0x04,0x01,0xcd,0x2e,
+0xc9,0x40,0x2d,0xa6,0x01,0x7a,0x23,0x14,0x53,0xfd,0xba,0x49,0x3e,0x4e,0x43,0xfc,
+0x9b,0xcc,0x3f,0xc9,0x39,0x45,0x66,0x0a,0xf8,0xdc,0x12,0x6d,0x20,0xe2,0xcc,0x24,
+0xc8,0x5b,0x2c,0x1e,0x92,0xcd,0xc3,0x65,0x58,0xe7,0x60,0x81,0xf6,0xc2,0x98,0xf9,
+0xf3,0x71,0xc0,0xca,0xa1,0xe3,0x36,0x99,0xcd,0xe6,0x0f,0xae,0x5a,0x50,0x87,0x1b,
+0xec,0x0a,0x3a,0xdd,0xe9,0x70,0x53,0x10,0xec,0x1e,0x1e,0xc6,0x51,0x03,0x3e,0xe9,
+0x63,0x8f,0xb7,0x71,0x43,0x8c,0xc5,0x71,0xd2,0x1d,0x51,0xe6,0xc6,0x5f,0x20,0xb5,
+0xb5,0x3e,0x6f,0xd8,0x9d,0xc1,0x9e,0x86,0x90,0x32,0x32,0xee,0x93,0xab,0x5e,0x2c,
+0x0d,0xf8,0x1f,0x37,0x6b,0xad,0x14,0x43,0x9a,0x1a,0xc6,0x11,0x36,0x23,0x43,0x09,
+0x4f,0xde,0xd7,0xc1,0xb7,0x1f,0xe0,0xfc,0x03,0xb8,0x48,0x83,0x04,0xf2,0x22,0xfe,
+0x13,0x1b,0x00,0xb7,0x4f,0xd7,0x72,0xca,0xa5,0xe3,0xca,0x79,0xa2,0xbd,0x47,0x88,
+0x87,0xb7,0x42,0x75,0x80,0x8d,0x0e,0xc1,0x9a,0xf6,0x68,0xd8,0x3f,0xa3,0x9a,0x39,
+0xf9,0xe4,0x6c,0xb8,0xa9,0x19,0x64,0xc3,0xc0,0x23,0x06,0x95,0x29,0x1c,0x85,0xd6,
+0x85,0x82,0x33,0x06,0xc6,0x10,0x49,0x8a,0x31,0xf6,0x64,0x0a,0xe7,0x05,0x21,0x21,
+0x5e,0xa2,0x01,0x91,0x5b,0x91,0x99,0xf8,0x00,0x2b,0xa2,0x5c,0xce,0x97,0xdb,0xd5,
+0x92,0x37,0x50,0xf0,0x7c,0x3a,0xca,0x07,0x6b,0xe7,0x7d,0xf4,0x6e,0x3a,0x4b,0x66,
+0x1b,0xd5,0x9f,0x30,0x58,0x3c,0x82,0x59,0x12,0xa9,0x1c,0x3a,0x09,0x0a,0x70,0x3c,
+0xd1,0x67,0x53,0xeb,0xd8,0x1b,0x05,0x27,0x29,0x38,0x75,0x5d,0xd6,0x3c,0x3e,0x9e,
+0xcb,0xa6,0xaf,0x05,0x02,0x8b,0xc8,0xda,0x82,0x1c,0x36,0xb1,0x3e,0x6b,0x3d,0x24,
+0x1c,0x1c,0x0f,0xb8,0x4f,0xde,0x23,0xfb,0x78,0x26,0x79,0x3c,0xb7,0xe8,0xd5,0x9f,
+0xdb,0xfa,0x19,0x0e,0xca,0xbd,0xa6,0x9d,0x69,0xc2,0xdd,0xac,0x03,0x65,0x9a,0x2c,
+0x14,0x6a,0x64,0x07,0xca,0x34,0xd9,0x43,0x38,0x62,0xea,0x86,0xaf,0xb3,0xc9,0x72,
+0xfe,0xb8,0x7a,0x98,0x2d,0x17,0xdd,0x83,0x17,0xe8,0x9e,0x30,0x4d,0xab,0xa1,0xe5,
+0x7f,0x96,0x65,0x86,0x02,0x67,0x09,0x89,0x66,0xe4,0x50,0xac,0xe5,0x26,0x53,0x88,
+0xdf,0x1a,0x9c,0x85,0xb9,0xfc,0xb9,0xe5,0xd9,0xe2,0x6d,0x5e,0x43,0x92,0x21,0xdd,
+0xe5,0x05,0x90,0x64,0x78,0x73,0x19,0xcc,0x70,0x02,0x04,0xa1,0xc3,0x86,0xab,0xd3,
+0x5d,0x86,0x33,0xf3,0x69,0xac,0x7c,0x94,0x6a,0xff,0xd1,0x60,0x78,0x1d,0x74,0x77,
+0x62,0x45,0x44,0x9e,0x82,0x4f,0xd0,0x9a,0x42,0x8a,0xf0,0x59,0xab,0x83,0xdb,0x8f,
+0x96,0x42,0xb1,0xe3,0x9d,0xe5,0x79,0xc0,0xc6,0xec,0xec,0x4c,0xe2,0x4a,0xb7,0x5b,
+0x9e,0x10,0xd4,0xbc,0x84,0xcc,0x50,0xa3,0x80,0x7d,0x3d,0x1d,0x1b,0xec,0x14,0x6a,
+0xdd,0x4e,0xa3,0x64,0x42,0xdf,0x60,0xe7,0xd0,0x48,0xa3,0x15,0x43,0x23,0x4d,0xa7,
+0xd5,0x4a,0xd8,0x92,0x04,0x73,0x62,0x8f,0x32,0x03,0xe5,0x79,0x88,0x90,0x81,0x3e,
+0x83,0x8d,0xed,0xeb,0x93,0x31,0xd0,0x37,0x30,0xce,0xe0,0x39,0x80,0x8b,0xe9,0x13,
+0x79,0xea,0xdc,0x4a,0x4f,0x56,0xe0,0x1f,0x30,0x23,0x86,0x62,0x30,0x23,0x6e,0x99,
+0x8d,0xfd,0x0a,0xbb,0x0c,0x50,0x03,0xe1,0x0e,0xe4,0x6a,0xf2,0x83,0x23,0xd5,0xb8,
+0x6c,0x77,0x51,0xb5,0x8d,0x30,0x1b,0xf9,0xb1,0xca,0xb2,0x4f,0x43,0x41,0xc0,0xd3,
+0x16,0xfe,0x64,0x06,0x9d,0x2d,0x32,0xcc,0xe4,0xbd,0x78,0x40,0x97,0x56,0x5b,0xf8,
+0xe3,0x41,0x06,0x1c,0x8c,0x71,0x72,0x10,0x56,0x39,0x34,0xed,0xa0,0x75,0x68,0xe5,
+0xc7,0x2d,0xfc,0x89,0x67,0xfc,0x97,0x5f,0x7f,0x59,0xfc,0x3a,0x1d,0xde,0x1c,0xc6,
+0xb6,0x12,0xf2,0xe6,0x01,0x28,0xf8,0x97,0xb4,0x48,0x9a,0xe6,0xc7,0x9f,0xe1,0x67,
+0xf4,0x62,0x37,0xa9,0xa6,0x85,0x54,0x65,0x6a,0xb6,0x28,0x6d,0x4e,0xa0,0xa6,0xc5,
+0x71,0x5f,0x72,0xec,0xa7,0x93,0x94,0xba,0x3d,0x68,0x33,0x6f,0x96,0x90,0x5b,0x77,
+0x5e,0xeb,0xb5,0xb9,0x55,0x51,0xb8,0x33,0xbb,0x16,0x4c,0xee,0x17,0x79,0xa1,0xe9,
+0xa1,0x5c,0x2e,0xe4,0xbc,0x31,0x65,0x21,0x70,0x46,0x0f,0x34,0xcf,0x3a,0xf9,0x17,
+0x8a,0x39,0x9c,0x1c,0x30,0xed,0xdf,0x43,0xac,0xd5,0x91,0x9d,0x4e,0xb7,0xda,0x13,
+0xa6,0x13,0x33,0x99,0x33,0xf4,0xd5,0xf0,0x6f,0xb6,0xfa,0x04,0x4e,0xfa,0x4a,0x8c,
+0x08,0x40,0x1c,0x4b,0x44,0x3a,0xb3,0x18,0x12,0x62,0x70,0x86,0xc0,0x6c,0x30,0xe5,
+0x11,0xa5,0x89,0x0e,0x2c,0x20,0x03,0x7d,0x82,0x72,0x41,0x3a,0x01,0x08,0xb8,0x3f,
+0x82,0x45,0x9e,0x40,0xa0,0x20,0xbb,0xac,0x0e,0x79,0x02,0x3c,0x4e,0x74,0x76,0x8f,
+0x61,0x4a,0x61,0x25,0x4c,0xf4,0xfe,0xb7,0xd4,0xcb,0x47,0xe0,0x79,0x92,0xd5,0xd5,
+0x01,0x22,0xe5,0x32,0x30,0xbf,0x60,0xcb,0x7f,0x7d,0x85,0x1b,0x09,0x86,0x74,0xa9,
+0x27,0x56,0x3c,0x4f,0x74,0xa6,0xd3,0x03,0xe0,0xb6,0xe7,0xc4,0x6f,0xed,0x3c,0x0e,
+0x8c,0xd3,0x4d,0xcf,0x09,0x47,0x42,0x26,0x81,0x47,0x6c,0xd2,0x6b,0x0b,0x0f,0xf5,
+0xfe,0xd1,0x09,0x59,0x85,0x9f,0xe8,0xf1,0x54,0x3d,0xc4,0xce,0x5e,0x7a,0x1c,0x0d,
+0x14,0x4c,0x94,0xfc,0x14,0xc5,0x9b,0x9d,0x4d,0x47,0xaf,0xed,0x4a,0x31,0x70,0x84,
+0x1e,0xe5,0x90,0xbd,0x36,0xca,0x30,0x2e,0xf9,0xde,0x18,0xd9,0xe6,0x38,0x28,0x82,
+0x35,0x4d,0x88,0x86,0xa9,0xb2,0x63,0x83,0x9b,0x63,0x6f,0x69,0x77,0xdb,0xed,0x4d,
+0xe9,0x76,0xde,0x80,0x92,0x0b,0x7e,0x71,0x2e,0x41,0x95,0x38,0x6e,0x39,0x15,0xe1,
+0x2d,0x4d,0xc4,0xd8,0xc2,0xa9,0xd1,0x61,0x22,0x1d,0x48,0x9d,0xbe,0x21,0x5a,0xc0,
+0x9f,0x71,0x8c,0xd3,0x5f,0xde,0xf6,0xdd,0x42,0x89,0x85,0xbe,0x34,0x93,0xd0,0x61,
+0xce,0x0a,0x4c,0x0a,0x3d,0xf7,0x50,0x16,0x72,0xb8,0xbb,0x43,0xac,0x21,0x88,0x64,
+0xce,0x16,0xfc,0x99,0xad,0x64,0xc8,0xf8,0xfb,0xa8,0x39,0x51,0x9e,0xe0,0x06,0x3c,
+0xf6,0xd8,0x6a,0x94,0x02,0x3b,0xf4,0x79,0x4a,0x98,0x0a,0xea,0x61,0x7d,0x8f,0xac,
+0x4b,0x8a,0x2f,0x46,0x67,0x90,0xb2,0x80,0x37,0x23,0x41,0x7a,0x29,0x3a,0xc8,0x31,
+0xd7,0xa8,0x2c,0xf4,0x46,0x62,0x7a,0x69,0x13,0x82,0x34,0xf7,0xa1,0x2a,0x1b,0xb8,
+0x98,0x7b,0xe6,0x88,0xad,0x73,0x56,0xfb,0x53,0xbe,0x3f,0x54,0x75,0x9b,0xc0,0x6d,
+0x8e,0x68,0x7a,0xd7,0x80,0x68,0x83,0x92,0x3b,0x42,0x81,0xba,0xd0,0x0a,0xc9,0x97,
+0xce,0xaa,0x41,0xf7,0x08,0xc3,0xb9,0x12,0xf4,0xae,0x72,0xaa,0x44,0xd9,0xc6,0xe8,
+0x6f,0x3b,0x88,0x60,0xe8,0xf8,0x99,0x90,0x37,0xc4,0x11,0x8a,0x4e,0x8f,0xb3,0xa4,
+0x01,0xd2,0x18,0x8a,0x50,0x10,0xd6,0xef,0x71,0x86,0xb8,0x40,0x8e,0x12,0xf4,0xc2,
+0x29,0x76,0x05,0x7a,0x62,0x0a,0x47,0x5c,0xfb,0x85,0x8d,0xd7,0x7d,0x84,0x8d,0xde,
+0x5f,0xf0,0x86,0x11,0x12,0xc8,0x69,0x1f,0x28,0x72,0x67,0xc9,0x39,0xf8,0x8a,0xfb,
+0xed,0x18,0x91,0xf1,0x56,0xb4,0x17,0x76,0xa0,0xe8,0xa4,0x4d,0x9c,0xd3,0x7b,0x65,
+0x40,0xa2,0xec,0x80,0x19,0x65,0x67,0x9f,0x02,0x47,0x5e,0x16,0x08,0xcd,0xca,0xa3,
+0x98,0x65,0x32,0x18,0xdd,0x92,0x15,0x9d,0x07,0xa9,0xb3,0x14,0xb8,0xb1,0x7a,0x96,
+0xde,0xc1,0x95,0x67,0x15,0x58,0x11,0xc8,0x90,0x09,0x33,0x53,0x07,0xd7,0xe8,0x8f,
+0xb3,0x9a,0x22,0xeb,0x23,0xaa,0x76,0x0f,0xa7,0x33,0x4d,0x9f,0x2b,0x9c,0xbd,0x75,
+0x07,0x89,0x3c,0xfc,0x95,0xc9,0xda,0xbb,0x0b,0x0b,0x3d,0xa8,0x76,0x32,0x07,0x4b,
+0x6b,0x78,0x6d,0x93,0x3e,0x33,0x19,0x02,0x0c,0x27,0xf4,0x81,0x8b,0x90,0x63,0x80,
+0x67,0x76,0x6e,0x12,0xad,0xf8,0x71,0xc7,0x40,0x08,0xad,0xb7,0x56,0x91,0xe0,0xf0,
+0x24,0x5d,0xe4,0x65,0x0d,0x17,0x79,0x74,0x7d,0xbc,0xd6,0x55,0xa4,0x82,0x09,0xe4,
+0x50,0x5f,0x95,0x64,0x52,0x30,0x86,0xdf,0xae,0xfa,0x29,0x0e,0xc8,0x78,0x2d,0x46,
+0x10,0x1b,0x66,0xea,0x10,0x5e,0xbc,0x31,0x38,0xa8,0x99,0x8a,0x05,0x59,0xff,0x61,
+0xf9,0xb0,0x7a,0x7c,0xe2,0x54,0xf0,0x3d,0xba,0x9c,0x0a,0x73,0x42,0xed,0x77,0xb8,
+0xaa,0xd7,0xc1,0x2a,0x55,0x43,0xc0,0x45,0x71,0x30,0x59,0x34,0x81,0x82,0xe4,0x11,
+0xdc,0xc9,0x45,0x70,0x05,0x75,0x96,0x5b,0x4a,0x4e,0x50,0x3f,0xdd,0xdb,0x24,0x28,
+0xe4,0x31,0x31,0x95,0xac,0x23,0x44,0x03,0x87,0xb7,0x99,0x63,0xa7,0x08,0x39,0x81,
+0x10,0x3a,0x66,0x88,0xa4,0x27,0x47,0xc3,0xeb,0x5b,0x82,0x62,0xbe,0x4c,0x95,0xb9,
+0x20,0xd5,0x09,0xb7,0xfc,0x7c,0xee,0x33,0x57,0xad,0xd2,0xeb,0x1c,0xa4,0xc4,0xdf,
+0x70,0x5a,0x91,0x6e,0xf3,0x99,0x6f,0x70,0x60,0x3c,0x4f,0x54,0x06,0x05,0x25,0xfa,
+0xe6,0xb6,0x49,0xde,0x60,0xc6,0xb6,0x74,0xf0,0x04,0x16,0x4c,0x85,0xaa,0xb9,0xc2,
+0xbf,0xf3,0x04,0xf3,0xfb,0xd1,0x3c,0xa4,0xff,0x2f,0x9c,0xfc,0xa2,0xf1,0xf3,0xe4,
+0xfa,0xc9,0x1b,0x11,0x34,0x73,0x77,0xf9,0xf0,0x81,0xc7,0x2f,0xb8,0x65,0xb1,0x98,
+0x2c,0xa0,0x8d,0x6a,0x14,0x4c,0x2e,0x5e,0x57,0x30,0x18,0x11,0x5a,0x1c,0xd9,0xce,
+0x3c,0xe3,0x9e,0x67,0xf0,0xb7,0x66,0xcf,0xc3,0x1e,0x0d,0x4e,0xb2,0x7c,0x76,0xd2,
+0xa8,0x40,0x89,0x8d,0x21,0x8d,0x4a,0x47,0x5c,0x0b,0x1d,0x99,0xe0,0x7c,0x87,0x25,
+0x3e,0x51,0x0e,0x04,0xf8,0x78,0xd1,0x96,0xbd,0x42,0x3d,0xf1,0x32,0xe7,0x94,0xa3,
+0xd5,0x0b,0x3a,0x96,0x10,0x73,0x1a,0x11,0x2a,0x29,0xf4,0x91,0xd8,0x99,0xd5,0x9a,
+0x72,0x7c,0xb7,0x5c,0x2e,0xe1,0xe8,0xb6,0x81,0xca,0xa0,0x04,0x72,0x70,0x68,0x96,
+0x74,0xc8,0x8b,0x6d,0xcc,0x25,0x1c,0x5b,0x7e,0x70,0x8f,0x6f,0xe6,0xd8,0xb7,0x01,
+0x8d,0xde,0x56,0x57,0xc7,0x9e,0xff,0x79,0x0f,0x12,0x4f,0x82,0xaa,0x2c,0xbe,0x07,
+0x87,0x1a,0xee,0xb9,0x4f,0x9c,0xf6,0xe6,0x4a,0x8f,0xe7,0x63,0xa1,0xb3,0xb4,0x90,
+0x7d,0x86,0x9f,0x1e,0xe9,0x67,0x6f,0x30,0x14,0xb5,0x28,0x55,0x06,0x90,0xb9,0x0f,
+0x3e,0x9a,0xbc,0x63,0x10,0x3f,0xdc,0x43,0xee,0xef,0xd3,0x49,0x2e,0xfd,0xe9,0x36,
+0x63,0x02,0x95,0x1d,0x43,0x0c,0x75,0xab,0x5d,0x6c,0x21,0x12,0x53,0xda,0xb9,0xc7,
+0x11,0x4e,0x8a,0x3e,0xc2,0xa5,0x83,0xe4,0xba,0xaf,0xa3,0xbe,0x36,0x25,0x51,0xc9,
+0x06,0xd2,0x27,0x70,0xf7,0x2c,0xda,0xea,0x55,0xf3,0x60,0x49,0x09,0x5e,0x65,0xe8,
+0x03,0x2f,0xf8,0x11,0x49,0x8b,0x71,0x2a,0xd8,0x2a,0xf6,0x1a,0xf7,0x18,0xed,0x2b,
+0x44,0x1d,0x3e,0xac,0xff,0x00,0x09,0x64,0xea,0x1d,0x2b,0x89,0x04,0xb1,0x88,0x52,
+0xcf,0x86,0xa1,0x45,0xde,0x3f,0xb2,0x3b,0xa7,0xfc,0x35,0x1f,0x53,0xb0,0x14,0xc9,
+0xde,0xb9,0x73,0x39,0x95,0x11,0x85,0xc7,0x34,0x16,0x1e,0xe5,0xf3,0x6d,0xbd,0xcb,
+0x0c,0xab,0x57,0xfa,0x73,0xc0,0x91,0x4f,0xe6,0xc5,0xca,0x15,0xc2,0x53,0x8f,0x95,
+0xdc,0xb8,0xab,0x94,0xea,0x01,0xff,0x84,0xdf,0x5e,0xba,0x5c,0xbb,0x13,0x33,0xbf,
+0x9d,0x0b,0xb4,0x86,0xf4,0xdc,0xd5,0x1d,0x4e,0xe8,0xb3,0x0b,0x63,0xe9,0x3e,0x41,
+0x45,0x8e,0xe0,0x32,0x0d,0x74,0xb1,0x8d,0x53,0x41,0x92,0x25,0x25,0xdc,0x54,0xba,
+0x15,0x67,0x11,0x35,0x49,0x3d,0x92,0xbe,0xb9,0xe6,0xcd,0xce,0x07,0xa3,0x32,0x0c,
+0x0f,0x0e,0x2d,0xc3,0x03,0xc2,0x06,0x0f,0x02,0x2c,0x01,0xc2,0xe6,0xef,0x1e,0x10,
+0xb7,0x79,0x70,0xcd,0x31,0x4d,0xa1,0x68,0xcb,0x83,0xe3,0x36,0x0f,0xee,0x5b,0x52,
+0x97,0x10,0x11,0x79,0x70,0xdc,0x66,0xe0,0xaa,0x83,0x2a,0x6d,0x2a,0x80,0x13,0x00,
+0x44,0x97,0xa6,0x3e,0x9c,0x5c,0x80,0x20,0x2a,0x2f,0x81,0x20,0x8d,0x97,0xfa,0x99,
+0xbc,0x4b,0x20,0x4c,0xd9,0x25,0x10,0x26,0xaa,0x53,0xbc,0xe8,0x6c,0x21,0x11,0x30,
+0xf6,0x55,0xea,0x14,0x69,0x9f,0x81,0x0a,0x91,0x5f,0xa0,0xdc,0xb0,0x48,0x36,0xca,
+0x3a,0x18,0x4f,0xab,0xd9,0x49,0x59,0xbf,0x12,0x3f,0xe0,0x76,0xf2,0xe9,0xd4,0xdd,
+0x7d,0x06,0x0d,0x46,0xeb,0x91,0x51,0x74,0xbc,0x19,0x9d,0xe1,0x8e,0xd0,0x39,0x17,
+0x39,0x49,0x8d,0xc9,0x13,0x18,0x8b,0x7f,0x5d,0x71,0x0f,0x2d,0xbd,0xec,0xda,0xfa,
+0xdb,0x0e,0x12,0x11,0xfa,0xc2,0x09,0x29,0x42,0x85,0xee,0x5e,0x67,0xec,0xa1,0x56,
+0x12,0x2e,0xc1,0x75,0x21,0x61,0x75,0x4c,0x77,0x11,0xee,0xb8,0x50,0xe3,0xb8,0x4f,
+0xca,0xfc,0x70,0xc4,0x6a,0xcc,0xaa,0x04,0xe7,0x31,0xd6,0xe3,0x17,0x20,0x99,0xec,
+0xda,0x11,0x8a,0x17,0xa1,0x80,0x11,0xab,0xa2,0xc8,0xf2,0x74,0x71,0xd1,0x40,0x6b,
+0x13,0xf5,0x1a,0x7b,0x0d,0xec,0xde,0xec,0x1e,0xe8,0xe6,0xf3,0xfc,0x8d,0x14,0x1c,
+0x84,0x94,0x19,0xb1,0xb8,0xe4,0x2c,0x67,0x8e,0x03,0x20,0x52,0xd6,0xf2,0x89,0x2d,
+0x04,0xe5,0x16,0xb9,0xa6,0x45,0x18,0xdb,0xc9,0x06,0xd0,0x6f,0x71,0xc0,0xe9,0xe7,
+0x49,0xaa,0x0d,0xa9,0x9a,0x30,0x68,0x77,0x79,0xb9,0x96,0x36,0x29,0x3b,0xa2,0x12,
+0x2b,0xd8,0xc9,0x5e,0x29,0x7c,0xa5,0xa0,0x4d,0x07,0x81,0x54,0xab,0x08,0x89,0xeb,
+0x2d,0x54,0xd4,0xc4,0x91,0x4e,0x70,0x77,0x70,0x71,0xd0,0xa2,0x02,0x47,0x8e,0x33,
+0x75,0xe4,0x6a,0x69,0xa3,0x4a,0x57,0x8e,0x9e,0xac,0x8f,0x74,0x94,0xdb,0xe0,0x35,
+0x35,0x52,0x73,0xd2,0x9d,0x39,0x5c,0x92,0xb4,0xc1,0x34,0xc0,0x5b,0x7f,0xdc,0x57,
+0xdc,0x8b,0xf1,0xd9,0xdc,0x4f,0x8d,0x5e,0x83,0xd5,0xea,0x3d,0x91,0xfa,0x33,0x8d,
+0xd9,0x17,0x79,0x7a,0x81,0xca,0x65,0xa8,0x5e,0x82,0xc5,0x6c,0x13,0x04,0xeb,0x10,
+0xd4,0x71,0x4d,0x5b,0xa4,0xde,0x20,0x51,0xdc,0x90,0x16,0xb1,0xb6,0x41,0xcd,0x2f,
+0x5c,0xa6,0x41,0xa5,0xaf,0xca,0xd6,0xdb,0xbc,0x80,0x9c,0x5e,0x9c,0x14,0x87,0x5d,
+0xf2,0x91,0x43,0xb0,0x9f,0xef,0x01,0x41,0x61,0xb7,0x43,0x94,0x0e,0xd3,0xba,0xcf,
+0x12,0xb6,0x4d,0xee,0x21,0xad,0x0f,0x0b,0x4b,0x4c,0xca,0x31,0x27,0x1e,0x09,0x9c,
+0xf0,0x48,0x4e,0x1c,0x76,0xdb,0x95,0x96,0x34,0x85,0xd2,0x68,0x67,0xbc,0xe7,0x4a,
+0xc5,0xf1,0x5b,0xe9,0xc9,0x32,0xc6,0xbb,0x3a,0x43,0x1d,0xbd,0x32,0x60,0x5a,0xd8,
+0x97,0x1c,0x1b,0x2f,0x71,0x19,0x6d,0x75,0x8f,0x7f,0x12,0x7d,0xb2,0xea,0x24,0x19,
+0xfe,0xf9,0xc8,0x8b,0x7c,0xa8,0xe2,0x4a,0xd0,0x97,0xd6,0x41,0xda,0x4c,0x67,0x9f,
+0x48,0x23,0xfc,0x21,0x6a,0x6d,0xe7,0xa5,0x81,0x4c,0xbf,0xc3,0x25,0xab,0x30,0x1e,
+0x92,0xb6,0x79,0x08,0x4b,0xa7,0xb7,0xbf,0x9a,0xed,0x1c,0xc2,0xd3,0xe9,0xbd,0x38,
+0x94,0x30,0x1d,0x51,0x6b,0x91,0xe7,0x98,0xda,0x4b,0xbf,0xe0,0x7e,0x65,0x1a,0xf6,
+0x49,0x57,0xa0,0x84,0x9a,0x6b,0x60,0x44,0xd6,0x35,0x28,0x72,0x3b,0x8e,0x4f,0x61,
+0x35,0xba,0x6e,0x12,0xdd,0x53,0x38,0x86,0xae,0xbd,0xcc,0xbb,0x38,0xb2,0x88,0xf7,
+0x7b,0x51,0x68,0x3d,0xfd,0x00,0x34,0x16,0xdf,0x74,0x14,0x7a,0x91,0x51,0x45,0x0e,
+0x2a,0xcb,0x85,0x40,0xc9,0x71,0xe8,0x02,0x26,0x9c,0xd2,0x86,0x2c,0xf1,0x94,0x23,
+0x6d,0x69,0xba,0x6a,0x8d,0x37,0x21,0x3f,0x07,0x63,0x4c,0x20,0x0d,0xe1,0x25,0x58,
+0xe6,0xbf,0xae,0x1e,0x1f,0xe1,0x70,0xe5,0x22,0x2f,0xa6,0x45,0x8a,0x2e,0x24,0x49,
+0xab,0xe8,0xca,0xe0,0x90,0x01,0x22,0xad,0xc1,0x71,0xad,0xfc,0xe0,0x40,0xd7,0x09,
+0x75,0x57,0xa4,0x90,0xd9,0xc3,0xc6,0x5a,0xc7,0x48,0xf3,0x10,0x96,0x76,0xd0,0x00,
+0x9a,0xb6,0x73,0x48,0x2a,0x4e,0x6f,0x5f,0x3e,0x4e,0xe7,0x65,0x6b,0x64,0xc2,0x46,
+0xad,0x51,0x08,0x67,0x46,0x8d,0x99,0x86,0x80,0x5d,0x36,0x20,0x86,0x12,0x6a,0xae,
+0x4c,0xc6,0xfc,0xbf,0x06,0x35,0x66,0x8d,0x5c,0xbb,0xe5,0xeb,0xd6,0x80,0x61,0x74,
+0x6c,0x52,0x86,0xf5,0x0c,0x0d,0xcc,0x8f,0x74,0x92,0x63,0xec,0xcb,0x66,0xb9,0x4a,
+0x37,0x8f,0xab,0xb4,0xa3,0xd9,0xcb,0x34,0x51,0x4b,0xde,0x24,0x2f,0x9c,0x4b,0x5c,
+0x55,0x18,0x3a,0xaa,0x48,0x9b,0x23,0x76,0x69,0xba,0x6a,0x96,0x0c,0x78,0x19,0xf9,
+0xe5,0xf2,0x29,0x5b,0x9a,0x3a,0x2b,0x89,0xaf,0x9e,0x1e,0x97,0x0b,0xa8,0x16,0x40,
+0xb3,0xe4,0x59,0x8c,0x1d,0x91,0xc6,0x77,0x5b,0x3d,0x85,0xef,0x75,0xf6,0xb1,0x37,
+0xd3,0x89,0x82,0x0c,0xae,0xe5,0x9a,0x65,0x77,0x52,0xd7,0x2c,0xb9,0xcf,0x5a,0x82,
+0x87,0xa4,0x6d,0x1e,0xc2,0xd2,0xe9,0xed,0xa3,0x69,0x3b,0x87,0xf0,0x74,0x7a,0x2f,
+0x0e,0xbd,0x6c,0x96,0x8c,0xfc,0xa8,0x59,0x0a,0xe1,0x57,0xcc,0x52,0xc0,0x08,0x93,
+0x31,0x4b,0x62,0x28,0xa1,0xe6,0x1a,0xd8,0x6d,0x93,0x8d,0x99,0xe5,0xad,0x86,0xd1,
+0x31,0x4b,0x19,0x36,0x6e,0x96,0x78,0x7a,0xbe,0xac,0xd6,0xab,0x4d,0x3a,0xcd,0xa0,
+0xae,0xcf,0xdb,0x6d,0x96,0xf7,0x9b,0xc7,0x2c,0x21,0xb5,0x1e,0xcc,0x3a,0xb8,0xd6,
+0xd8,0xcb,0x42,0xe8,0x06,0x47,0xce,0xfa,0xf9,0xaa,0x11,0x22,0xd4,0x65,0x54,0x17,
+0xb3,0xcd,0x34,0xeb,0x6d,0x8c,0xf7,0x4f,0xc9,0x86,0xdd,0x07,0x4e,0x61,0xec,0x85,
+0x34,0xdb,0x6b,0xf2,0xb4,0xda,0xef,0xe9,0xa0,0x6b,0x66,0x11,0xf9,0x6b,0xab,0xf3,
+0x86,0xb8,0x26,0xe7,0x77,0x30,0xa9,0xe8,0x13,0xb0,0xc3,0x2a,0xbf,0x45,0xc9,0xb6,
+0xf5,0x70,0x72,0xba,0x3a,0x48,0xd9,0x9e,0x1e,0x56,0x4e,0xd7,0xf8,0xa0,0xcb,0xd6,
+0x85,0xa8,0x8e,0x9a,0x96,0x26,0xf0,0x8a,0x5d,0x69,0x18,0x5a,0x7d,0xcc,0x5a,0x10,
+0x44,0x70,0xbf,0x08,0x73,0xc3,0x34,0xa3,0xb6,0x74,0x8b,0x42,0x77,0x0d,0x89,0xc7,
+0x8c,0x1b,0x12,0x27,0x88,0x2e,0x2b,0xe8,0x76,0x9a,0x64,0xcb,0xae,0x2d,0x29,0x95,
+0xcc,0x17,0xf7,0x64,0x4b,0x17,0xf2,0x69,0x13,0x47,0x6e,0xdd,0x14,0x1b,0x6a,0x92,
+0xb4,0x0d,0x80,0x5d,0x35,0xad,0x9b,0x90,0x57,0xe9,0xd3,0xc3,0x4c,0xb2,0xc6,0x72,
+0x7c,0xcd,0x56,0x8f,0xab,0xd9,0xdc,0x47,0x5e,0x02,0x4c,0xd2,0x66,0x21,0x49,0x5a,
+0x3d,0x7d,0xee,0x75,0xf6,0xb1,0x1f,0xb6,0xb4,0xee,0x40,0xd7,0xd8,0x7a,0x7d,0x8e,
+0xbd,0x71,0x9f,0x35,0x07,0x0f,0x49,0xdb,0x3c,0x84,0xa5,0xd3,0xdb,0x47,0xd3,0x76,
+0x8a,0xfe,0x6a,0x8f,0xd0,0x5b,0x6f,0x00,0x51,0x67,0xe8,0x65,0x0b,0xe4,0xc9,0x46,
+0x8d,0x50,0x08,0xbf,0x62,0x87,0x02,0x46,0x44,0x8c,0x99,0x19,0x43,0x09,0x35,0xd7,
+0xc0,0x6e,0x9b,0x6c,0xcc,0x26,0x6f,0x35,0x8c,0x8e,0x59,0xca,0xb0,0x71,0xb3,0xa4,
+0x6c,0xfa,0x65,0xab,0xcc,0x9e,0x56,0x8b,0x65,0x4f,0xb1,0x97,0x8b,0xed,0x82,0x77,
+0xb8,0xd1,0x2c,0xbd,0x6b,0x93,0x43,0x79,0x7b,0x9d,0xdf,0x76,0x25,0xce,0x40,0x57,
+0x0d,0xf2,0x16,0xb4,0xd3,0xa7,0xc5,0x74,0xde,0x0d,0x96,0x93,0x74,0xfe,0x34,0x97,
+0x8c,0x14,0x5d,0x2e,0x88,0xe1,0x91,0xa6,0x33,0x2d,0xd2,0xe8,0xe9,0x79,0xb7,0xcf,
+0xd1,0xf2,0x4e,0x97,0x68,0x85,0xd6,0xf1,0x6e,0xdf,0x85,0x61,0x8e,0x25,0xd2,0x28,
+0xab,0xfb,0x2e,0x7a,0xb6,0x75,0x00,0x3f,0xa7,0xb3,0xb7,0x92,0xed,0x1b,0xc0,0xd0,
+0xe9,0xbc,0x34,0xf0,0xb2,0x0d,0x12,0xda,0xa3,0x26,0xc8,0xbc,0xb8,0x62,0x81,0x0c,
+0x45,0x58,0x8c,0x59,0x16,0x01,0x09,0x1d,0x57,0xa0,0x6e,0x9a,0x6a,0xcc,0xfa,0x6e,
+0x34,0x80,0x8e,0xf1,0xc9,0xa8,0x71,0xe3,0x83,0xab,0x06,0xf3,0x4e,0xbb,0x9c,0x10,
+0x29,0x8c,0xb4,0x45,0x89,0xb8,0x75,0x21,0x1c,0x89,0x1f,0x7f,0x79,0x22,0xc7,0x06,
+0x61,0x81,0x56,0x36,0x6c,0xb0,0x82,0x1c,0x95,0x03,0x82,0xb9,0xb7,0x33,0x74,0x1c,
+0x73,0x6f,0x00,0x6e,0x4c,0xf4,0xd2,0xd6,0x86,0xd3,0x59,0x0c,0x7b,0x08,0xb9,0x26,
+0xae,0x31,0x66,0x4e,0xbb,0x31,0xb3,0xb3,0xb6,0x9d,0x73,0x64,0x20,0x1f,0x1e,0x55,
+0x3a,0x5d,0xcd,0x12,0xba,0x9f,0x71,0xde,0x9c,0x82,0xcf,0x31,0xa8,0x1a,0x96,0xb9,
+0xf2,0xb2,0x4d,0x82,0xfc,0x72,0x3e,0x35,0x11,0x14,0x79,0x90,0xd0,0xbd,0xac,0x33,
+0x99,0xae,0xe7,0x1e,0xe0,0x6c,0x17,0x33,0xcb,0x73,0x3e,0x2e,0x8e,0x29,0xa4,0xa6,
+0xff,0xb2,0x3a,0x3a,0x2c,0x62,0x4a,0xe1,0x35,0x9f,0x1e,0x99,0x1a,0x33,0xba,0x3c,
+0x43,0x62,0xcd,0xfb,0x7b,0x50,0x70,0x32,0xdb,0xcd,0x72,0xc5,0x17,0xac,0xee,0x2b,
+0x91,0xf8,0xdb,0x7c,0x68,0xc4,0x56,0x9e,0xcb,0xe7,0x41,0xe4,0x22,0x56,0xde,0x33,
+0x82,0x1b,0x0a,0x03,0x4d,0x6f,0xd9,0x9f,0xc0,0x2f,0xda,0xcf,0x9a,0x0c,0xdc,0x8c,
+0xc9,0x55,0xae,0xb9,0x6d,0x73,0xee,0xa2,0xf1,0x0d,0x4a,0x0f,0x53,0xfb,0x32,0x10,
+0x93,0xb9,0x5a,0x0d,0x55,0x0f,0xd9,0x0c,0xa8,0x5b,0xf1,0x01,0x17,0x03,0x43,0x97,
+0x11,0x72,0x6b,0x82,0xd7,0x5a,0xf8,0xaf,0x7b,0xc3,0x32,0x7d,0x18,0xbe,0x61,0x19,
+0x83,0x35,0xc4,0xff,0x2b,0xd4,0x68,0x9b,0xab,0xcd,0xdf,0x0f,0xde,0x8b,0x7d,0xf8,
+0xb2,0x19,0xde,0x82,0x41,0x89,0x91,0xfd,0xa2,0x0a,0x95,0x63,0x0c,0x5f,0x0a,0x9a,
+0x59,0x89,0xa5,0xa4,0x48,0x27,0xff,0xfc,0x78,0x7f,0x9f,0x6c,0xd5,0xd3,0x6d,0x77,
+0x49,0x63,0xd8,0x87,0x50,0xb4,0x13,0x40,0x11,0x06,0xb1,0x60,0x36,0x9d,0x87,0xb3,
+0x87,0x55,0x38,0x5f,0x2c,0xc2,0xc9,0xbd,0x57,0x83,0x7f,0x8d,0x65,0x17,0x27,0xea,
+0x50,0x63,0xcd,0xc0,0xf1,0x2e,0x50,0x4e,0x31,0xc5,0x3f,0x03,0xdb,0xe5,0x67,0xbf,
+0x2a,0xc3,0xd7,0x33,0xba,0xde,0x45,0x4e,0x73,0xa9,0x0d,0xfe,0x24,0x8e,0xc1,0xeb,
+0x7e,0xf4,0x4e,0x3c,0xbf,0x0d,0xa3,0xa6,0xf8,0xe7,0x24,0xc0,0x61,0x71,0x2a,0x3a,
+0xef,0xdc,0xa9,0xba,0xef,0x42,0xe0,0x07,0x48,0xcc,0x0d,0x67,0xa0,0x6d,0x0a,0x0a,
+0x9b,0xf8,0xc3,0x0a,0x70,0x06,0x45,0xad,0x0d,0x27,0xe8,0x94,0x2b,0xe9,0xd5,0x0f,
+0xdc,0xd5,0xfd,0xae,0x85,0xb1,0x23,0x5d,0xe9,0x8a,0x37,0xd6,0x9d,0x2f,0x4a,0x74,
+0xef,0xa0,0x0d,0x63,0xf8,0x5b,0x16,0x12,0x7d,0xbc,0x7c,0x86,0x37,0x0a,0xad,0xe6,
+0x0d,0xf6,0x6a,0x90,0x01,0x66,0xcb,0x92,0xfa,0x3b,0x0a,0xf2,0x4d,0x21,0x64,0x7c,
+0xe0,0xcd,0xf9,0xfb,0x41,0x3f,0x77,0x0c,0x9b,0xef,0xd3,0x2d,0xc3,0xf1,0x13,0x21,
+0x32,0x09,0x18,0x00,0x55,0xc0,0xf8,0x02,0x3d,0x69,0x6a,0xb9,0x0d,0xae,0x03,0x7f,
+0xc3,0x2f,0xb6,0xf4,0x25,0xdb,0xb7,0x12,0xf1,0x19,0x93,0x85,0xb3,0xde,0x64,0x05,
+0x97,0xf1,0xe7,0x2f,0xf0,0x4d,0x1b,0xf5,0x33,0x7f,0xd5,0x43,0xbe,0xb0,0x21,0x9f,
+0xe5,0x80,0xb7,0xca,0xb1,0x5a,0x18,0xbf,0x92,0x40,0x77,0xfa,0xb1,0x2e,0x40,0xe1,
+0xea,0x99,0xe5,0x14,0x66,0xdb,0x43,0x79,0x9f,0xad,0x0d,0xc0,0xf7,0xd0,0x71,0x04,
+0xd6,0x59,0x1a,0x82,0xf5,0xed,0xa5,0xfe,0x44,0x41,0x0c,0x25,0x86,0x3b,0x91,0x5d,
+0xef,0xad,0x10,0xd7,0xf7,0x70,0x45,0x4c,0xff,0x96,0x85,0x5c,0xd5,0x0d,0x85,0x7c,
+0x88,0x09,0x05,0x41,0x7f,0x03,0x64,0x9c,0x5d,0xc8,0xe0,0x45,0x2f,0xa2,0xcb,0xd7,
+0x83,0xe4,0xe3,0x4b,0x0e,0x05,0xf4,0x06,0x3e,0x84,0xee,0xfc,0x9e,0xfd,0x3f,0x95,
+0x9b,0xe6,0xb0,0xfe,0x61,0xad,0x3f,0xa2,0x92,0x17,0x58,0xf6,0xc8,0x5f,0x6c,0xf2,
+0x17,0x3b,0x49,0x81,0xd2,0xfc,0xec,0x7c,0x67,0x89,0x39,0x88,0x3e,0x23,0x02,0x8f,
+0x62,0xd8,0x00,0x2f,0x71,0xa3,0xfe,0x3a,0x4c,0xb4,0x83,0x60,0xc7,0x34,0xe8,0x92,
+0x91,0x98,0xe2,0xa7,0x85,0x33,0x37,0x6d,0xac,0x03,0xcc,0x72,0x5f,0x06,0x19,0x60,
+0xaf,0xe8,0x05,0x22,0x40,0xef,0xe7,0x18,0x24,0x11,0x45,0xc0,0x14,0x3e,0x12,0x64,
+0x5e,0xb8,0x67,0x14,0x75,0xb5,0x98,0xd1,0x3a,0xb3,0xb3,0xa1,0x87,0x86,0x31,0x5d,
+0xac,0x62,0xdc,0x6a,0x1d,0xee,0x6b,0x54,0x63,0xe4,0x20,0x7c,0xb5,0x48,0x4e,0x45,
+0x8f,0xf7,0xf8,0xd7,0x1b,0x3a,0x16,0x2d,0x62,0x4a,0xdf,0xe3,0x51,0x90,0xb0,0xa8,
+0xff,0x9e,0x6c,0x06,0x17,0x74,0xba,0x3b,0x4b,0x4b,0x54,0x38,0x14,0x43,0x4a,0xca,
+0xb1,0x5f,0x6d,0x7c,0xab,0x16,0x1a,0x69,0xcd,0xa4,0xa2,0xcf,0xad,0xb4,0xa1,0x02,
+0x3e,0x4b,0x89,0x11,0xb5,0x0e,0x3c,0x1c,0x45,0x34,0x1d,0xa4,0xb2,0xec,0x97,0xb5,
+0x5d,0x91,0xc0,0x24,0x9e,0xd0,0xaf,0x61,0xf3,0x40,0xb4,0x5a,0x47,0xa9,0x80,0x63,
+0x77,0x6f,0xf0,0x26,0x5a,0xa6,0x2b,0x63,0x60,0xc0,0xbb,0x99,0x55,0x4f,0xe4,0xe9,
+0xc2,0x02,0x35,0xd2,0xea,0x53,0xac,0xf7,0xf8,0xf9,0x62,0x15,0xde,0x3f,0xe1,0x3f,
+0x93,0x47,0xdc,0xde,0x3a,0x2f,0xab,0x75,0x60,0x66,0x9f,0xd6,0x1c,0x73,0xa0,0xb8,
+0xe0,0x9c,0x0a,0x5f,0xff,0x40,0x4b,0x02,0x7f,0x63,0x16,0x76,0x4b,0x91,0x8c,0x3d,
+0xfc,0xaf,0x07,0x36,0x56,0xb4,0xb6,0x42,0xaa,0x8f,0xfe,0xdd,0xff,0x49,0xb8,0xe3,
+0xb2,0xe1,0xff,0x7d,0x5c,0xe2,0x11,0x43,0x9f,0x61,0x82,0xd0,0x35,0x55,0xbb,0xaa,
+0x80,0xf3,0x81,0x18,0xf7,0xd3,0x13,0x84,0x59,0x5c,0x25,0x3e,0xf3,0x15,0x01,0xc6,
+0x34,0xb0,0xc3,0xc3,0x47,0xf8,0xa2,0xe1,0x81,0x1d,0x70,0xe7,0x0b,0x48,0xff,0xc0,
+0x18,0x58,0x43,0xbd,0xc3,0x8e,0x94,0x39,0x7b,0x38,0x67,0x0f,0x9d,0x23,0x91,0x68,
+0x04,0x6c,0xaf,0x2e,0x5d,0x5f,0x4c,0xa4,0x10,0xfa,0xed,0xf0,0x81,0xb0,0x0c,0x6b,
+0x7b,0x87,0x0b,0x81,0xdc,0x29,0xfa,0xcb,0xde,0x29,0xa5,0xc6,0x78,0xe2,0x2c,0x38,
+0x74,0xc0,0xf1,0x26,0xee,0x97,0x15,0x9d,0x71,0xf3,0xc7,0x8f,0x97,0x79,0xc8,0x7a,
+0x5f,0x7c,0xe2,0x92,0x3f,0xb7,0xaa,0x58,0x4e,0xa2,0xb8,0x99,0x67,0xea,0x0d,0x3e,
+0xeb,0x18,0x1d,0xf2,0x77,0xf8,0x4a,0x8d,0xfe,0x6e,0x60,0x3c,0xfd,0x74,0xd2,0x42,
+0xa2,0xcf,0x7d,0x81,0x03,0x51,0x2f,0xde,0xf4,0xa1,0xd3,0xdb,0xe6,0xfb,0x0b,0xbd,
+0x38,0x16,0x21,0x22,0xf8,0x12,0x62,0x52,0x8c,0xcf,0x02,0xdf,0x50,0x6b,0x77,0x7e,
+0xb7,0x77,0x24,0x58,0xe0,0xab,0x34,0x36,0xa0,0xe4,0xc8,0xd1,0xc6,0x42,0x66,0x57,
+0xf2,0xa3,0x5c,0x76,0x96,0x7a,0xab,0x42,0x0f,0x37,0xe0,0x3c,0x4d,0x50,0xea,0x85,
+0xa1,0xf4,0xe0,0x7e,0xc4,0x85,0x8b,0xee,0x39,0x82,0xe5,0xb8,0x51,0x7f,0x43,0x52,
+0xa2,0xda,0x97,0x5e,0x80,0x3b,0x02,0x45,0x51,0xaf,0xc3,0x43,0xdd,0x00,0xc3,0xdd,
+0x08,0xd8,0x1d,0x4b,0xfd,0x96,0x5a,0x53,0x69,0xed,0xd0,0x07,0x0c,0xfa,0xf7,0x27,
+0x21,0x50,0xc7,0x8d,0x91,0x8f,0xf2,0x67,0x43,0x29,0x2f,0xf4,0x99,0xd6,0xe3,0x48,
+0x4f,0xbf,0x36,0x85,0xdf,0x01,0xb2,0x5c,0xe6,0x58,0xdc,0xc7,0xcb,0x62,0xd1,0xe3,
+0xb9,0xe7,0xdd,0x3b,0x1f,0x93,0xa0,0xea,0xcd,0xde,0xdc,0x16,0xa9,0xc1,0xc5,0x18,
+0x45,0xee,0x73,0x31,0x9d,0x7a,0xa4,0xd2,0xd7,0x48,0x44,0x10,0x0c,0x6e,0xd2,0xf8,
+0x56,0x2e,0xa6,0xc9,0x13,0x76,0x1f,0x5e,0x33,0xbc,0x0b,0x3c,0x64,0x9d,0xb2,0x24,
+0xcf,0x77,0x09,0x44,0x08,0x1c,0x82,0xd1,0xeb,0x5d,0x98,0xc3,0x55,0x8c,0xa1,0x04,
+0x94,0xa3,0x4b,0x82,0xd1,0xa0,0x9b,0x72,0xe0,0x48,0xa7,0x5c,0x4b,0x36,0x23,0x0d,
+0xe1,0x83,0xbd,0x8e,0xbf,0xea,0x4d,0x37,0x38,0x92,0x56,0xb2,0xc3,0xe4,0xd0,0xe1,
+0x14,0x47,0xfa,0x2e,0x58,0xbf,0xab,0x91,0xa7,0xae,0xf5,0xa1,0xfd,0x4b,0xc0,0xa0,
+0x35,0x15,0xbe,0xdf,0x64,0x9e,0x39,0x5c,0xc3,0x26,0xdf,0xc0,0xa7,0xf0,0xe6,0x03,
+0x1a,0xec,0xef,0x07,0xf4,0x43,0x7f,0x83,0xcf,0x0f,0x84,0x77,0x29,0x7c,0x5b,0xb4,
+0xc5,0x37,0xc4,0x07,0x14,0xd9,0x84,0x44,0x10,0x92,0x38,0xd1,0x90,0xdc,0x3c,0xdd,
+0x1c,0x04,0x9a,0x23,0x86,0x3e,0x29,0xde,0xc1,0x57,0xf0,0x8a,0xef,0x50,0x64,0xdc,
+0xb6,0x50,0x4a,0x0b,0x28,0x88,0xc7,0xad,0x2b,0xa8,0x09,0xc5,0x23,0x0b,0xbc,0x08,
+0x63,0x03,0x37,0x21,0x8b,0x8f,0x5e,0xee,0xa1,0x7a,0x05,0x87,0xea,0xde,0x6c,0xe3,
+0x14,0x0e,0xaf,0x24,0x1e,0x52,0x07,0x81,0xfd,0xa3,0x23,0x71,0x90,0xdf,0xd0,0x02,
+0xfe,0x21,0xbb,0x22,0xac,0xc7,0x3e,0x79,0x03,0xcd,0x79,0x00,0xbe,0x4a,0x07,0xc5,
+0xad,0x94,0xae,0xa1,0xe3,0xaa,0x73,0xb2,0x91,0xe4,0x82,0xce,0x98,0xd9,0xf0,0x92,
+0x19,0xea,0x26,0x92,0x20,0xc0,0x94,0x43,0x14,0x00,0xcf,0x78,0x61,0x2d,0x27,0x9c,
+0x7b,0x09,0xef,0x6d,0x48,0x00,0x8a,0xf1,0x22,0xa7,0x26,0xf8,0x36,0xc6,0x8e,0x9c,
+0xf7,0x24,0x7e,0xc2,0xe1,0x0b,0x18,0x4e,0x1c,0x5e,0xe8,0x6f,0x71,0x0d,0x4c,0xc5,
+0x85,0x0b,0x76,0xaa,0x45,0x97,0xd5,0xce,0xb6,0x0e,0x19,0x90,0xd4,0xbc,0xbe,0x85,
+0x75,0x80,0x83,0x32,0xb5,0x04,0xc3,0x1b,0x36,0x4f,0xf7,0x6e,0x78,0x7c,0x07,0x1f,
+0x79,0x83,0xaf,0xa5,0xb5,0x6f,0x55,0xd1,0xce,0x42,0xf7,0x69,0xee,0x3d,0x2d,0xbc,
+0xa7,0xe5,0x49,0xc7,0x2f,0xf6,0x9d,0xbb,0x99,0xff,0xca,0xdd,0x7f,0x01,0xd1,0x9f,
+0xee,0x7b,0xbf,0x59,0x00,0x00,};
+
+static const unsigned int dummy_align__main_js = 5;
+static const unsigned char data__main_js[] = {
+/* /main.js (9 chars) */
+0x2f,0x6d,0x61,0x69,0x6e,0x2e,0x6a,0x73,0x00,0x00,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: application/x-javascript
+Content-Encoding: gzip
+
+" (66 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x61,0x70,
+0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x78,0x2d,0x6a,0x61,0x76,0x61,
+0x73,0x63,0x72,0x69,0x70,0x74,0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,
+0x45,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3a,0x20,0x67,0x7a,0x69,0x70,0x0d,0x0a,
+0x0d,0x0a,
+/* raw file data (10745 bytes) */
+0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x0b,0xc5,0x7d,0x7b,0x73,0x1c,0x37,
+0x92,0xe7,0x57,0x69,0x95,0xbd,0x54,0xb7,0xbb,0xd8,0x6c,0x52,0x92,0x1f,0x6c,0x16,
+0x3b,0x24,0xca,0x0f,0xed,0x5a,0xb6,0xce,0xa2,0xed,0xdd,0x93,0x38,0x8a,0x7a,0xf5,
+0x43,0xec,0x97,0xbb,0x8b,0x92,0x38,0x12,0x23,0x3c,0xe3,0x9d,0x47,0xc4,0xec,0x8d,
+0x67,0x7d,0x17,0x77,0x17,0x17,0xb7,0xbb,0x71,0xff,0xdc,0xdf,0xb2,0xd7,0x9e,0x91,
+0xed,0xb1,0x26,0xe2,0x3e,0x41,0xf3,0x1b,0xdd,0xef,0x97,0x00,0xaa,0x50,0xd5,0xd5,
+0x7c,0xc8,0xde,0xdd,0xb0,0xc5,0xae,0x02,0x12,0x40,0x22,0x91,0x48,0x64,0x26,0x12,
+0xa8,0xce,0xc1,0x28,0x4c,0xfa,0xe3,0x51,0xe5,0xe5,0xaa,0x5f,0x7b,0x3c,0x8d,0x93,
+0x83,0xe9,0xa8,0x12,0x8d,0xc3,0x83,0x61,0x3c,0x4a,0x1a,0xdd,0x38,0x79,0x73,0x10,
+0xf3,0xf1,0xda,0xe1,0x8d,0x08,0x10,0x47,0x1d,0x03,0x8f,0xac,0x9d,0xf1,0x78,0xbf,
+0x1f,0xb3,0x9c,0x73,0x30,0x8b,0x2b,0xb3,0x64,0xda,0x0f,0x13,0xa7,0xd5,0x19,0x4f,
+0xab,0x0f,0xfc,0x69,0x25,0xf0,0xd2,0x7a,0x42,0x81,0x74,0x43,0x2f,0x68,0xcc,0x26,
+0x83,0x7e,0x52,0x75,0x5a,0x15,0xa7,0xe6,0x46,0x5e,0xb3,0x15,0x6d,0x85,0x8d,0x41,
+0x3c,0xea,0x26,0xbd,0x56,0x54,0xaf,0xd7,0x1e,0xb3,0x64,0xec,0x85,0x77,0xa2,0x3d,
+0x03,0xea,0x39,0xb5,0x56,0xbf,0x53,0x8d,0xef,0x34,0xf7,0x3c,0xcf,0xaf,0x69,0x1c,
+0x0f,0x46,0xf1,0x2c,0xf4,0x27,0x31,0xd2,0xd7,0xf7,0x6a,0x47,0x2a,0xd5,0x71,0x32,
+0x04,0x67,0x19,0x82,0x6e,0xe0,0x86,0xaa,0xe6,0xc8,0xf3,0xeb,0x8e,0xe7,0xd4,0x75,
+0xd9,0x40,0x6a,0x0e,0xb7,0x9b,0xa6,0xdd,0x51,0xfc,0xb0,0x72,0xdd,0x4f,0xe2,0x56,
+0xdc,0x40,0xf9,0xdd,0xfe,0x10,0xf5,0x93,0x0a,0xf2,0x54,0xab,0x5f,0x7a,0xb5,0xd9,
+0x7c,0x25,0x7c,0x65,0x3d,0xbe,0x44,0xe4,0xa3,0x3a,0xba,0x11,0x3f,0x9a,0xf4,0xa7,
+0xf1,0x8c,0x75,0x36,0x92,0xf1,0xdb,0x37,0x77,0x6f,0x83,0x0c,0xa3,0x6e,0xb5,0x76,
+0x54,0xe8,0xbd,0x17,0x65,0xb8,0x45,0xf1,0x20,0x4e,0xe2,0x8c,0x7e,0x45,0x50,0x22,
+0x99,0x55,0xbd,0xdb,0x3b,0x70,0x2b,0xcd,0xf5,0xca,0x5f,0xfb,0xa3,0xca,0xfa,0x1b,
+0xaf,0x35,0x2b,0xcd,0xe6,0x26,0xff,0x5f,0xaf,0xa0,0xb9,0x96,0xd5,0xe5,0x8e,0x1f,
+0xc5,0x37,0x46,0x33,0x8e,0x88,0xdf,0x98,0x25,0x87,0x83,0xb8,0x31,0x9e,0xf8,0x61,
+0x3f,0x39,0xf4,0x9a,0x6e,0x3a,0x72,0x41,0x55,0xf5,0x36,0xf4,0x26,0xfe,0x74,0x16,
+0xbf,0x35,0x18,0xfb,0x49,0xb5,0x00,0x5f,0x6b,0x55,0xc3,0xba,0xd7,0x68,0x5e,0xaa,
+0x6d,0xaf,0x5f,0xf0,0x2e,0x34,0x57,0x56,0x8a,0x10,0x5e,0xe8,0x4e,0xe3,0x4f,0x0e,
+0xe2,0x59,0x72,0x75,0xd4,0x1f,0xfa,0xe4,0xa1,0xb7,0xa6,0x3e,0xe8,0x15,0xd4,0x6a,
+0x47,0xe8,0x7d,0xda,0x5c,0xe4,0x27,0xfe,0x5b,0x82,0x18,0xda,0x35,0xbc,0xe1,0x7b,
+0x77,0xfc,0xd0,0x9d,0x4c,0x66,0x0f,0xc6,0x83,0x84,0xbf,0xe1,0xc1,0x74,0xea,0x06,
+0x7e,0x92,0xc4,0xc3,0x09,0x7f,0x25,0x5d,0xff,0xae,0x9b,0x84,0x0d,0xf3,0x70,0xc9,
+0x3c,0x5c,0xe6,0x83,0x29,0x3b,0x3b,0x1c,0xf2,0x35,0x19,0xcf,0x0e,0x26,0xfb,0xf1,
+0xa1,0x8b,0x8e,0x45,0x52,0x0f,0x1f,0x04,0x28,0x7e,0xa4,0x1a,0x18,0x8e,0xa3,0xd8,
+0x8d,0xc6,0xe3,0xa9,0x3b,0xbb,0x35,0x7e,0x18,0xe3,0xe7,0x5d,0x80,0xb8,0xb3,0x6b,
+0x44,0x60,0x7a,0xb8,0xe7,0x06,0xe0,0xcc,0x60,0xcb,0x37,0x9c,0x19,0x80,0x33,0x53,
+0xe2,0xde,0x09,0xc0,0x6f,0x69,0xf7,0xc2,0x5e,0x1c,0xee,0xdf,0x4e,0xc0,0x33,0xec,
+0x9e,0x99,0x1d,0x3e,0xc7,0x40,0x4d,0x02,0x7f,0xe0,0x4f,0x87,0x8d,0x04,0x4d,0xef,
+0x8c,0x47,0x09,0xa6,0x12,0xa6,0x81,0x10,0xfe,0xc6,0x28,0xa9,0xa6,0xf3,0xc1,0xa9,
+0x35,0xa6,0xf1,0x83,0x18,0xe3,0x51,0xad,0x35,0xee,0x8f,0xfb,0xa3,0xaa,0x83,0x09,
+0xb2,0x41,0x36,0xab,0x86,0x2b,0xeb,0x5b,0x5b,0x7e,0x6d,0x7b,0xdb,0x6f,0x99,0x09,
+0x7a,0xa4,0xea,0x76,0x5e,0x7a,0xeb,0xad,0x2b,0xcd,0x2b,0x4d,0x07,0x75,0xe2,0xb9,
+0x79,0xf5,0xfa,0xe5,0x37,0x1d,0x14,0x71,0x5e,0xba,0x74,0x69,0x67,0xa7,0x89,0xf4,
+0x98,0x23,0xef,0xad,0xbb,0x5d,0x6f,0xc3,0xed,0x79,0x97,0xdc,0xbe,0x77,0xd9,0xbd,
+0xef,0x5d,0x71,0xf7,0xbd,0x57,0xdd,0x81,0xf7,0x9a,0x3b,0xf4,0x5e,0x77,0x47,0xde,
+0x1b,0xee,0xd8,0x5b,0x6f,0xba,0x13,0x6f,0x7d,0xdd,0xfd,0xc4,0x5b,0xdf,0x68,0xad,
+0x7b,0x1e,0x07,0x05,0x08,0x4f,0xc7,0x03,0x1b,0xf9,0x95,0x15,0x64,0xf9,0xd5,0xb8,
+0xd6,0xf6,0x43,0xcd,0x62,0xe1,0x78,0x30,0x9e,0x7a,0xc1,0xe6,0x69,0x65,0x3a,0x0b,
+0x65,0xc2,0x93,0xca,0x34,0x3d,0xd5,0xd0,0xca,0x8a,0x7a,0xea,0xd4,0xc8,0x84,0xf9,
+0x46,0xa3,0x9a,0x7b,0x5a,0xab,0xdd,0x5a,0x5b,0xb3,0x59,0x0e,0xdd,0x33,0x34,0xdd,
+0x65,0x83,0x65,0x65,0xcf,0xd0,0xea,0x27,0xd2,0x2a,0x79,0x2e,0xd7,0xea,0xe9,0x44,
+0xea,0x95,0x17,0x3c,0x03,0xba,0x3d,0xa0,0xab,0x28,0xf5,0x89,0x46,0x7c,0xa1,0x79,
+0x85,0x38,0x67,0x03,0xa6,0x47,0xc9,0xa8,0xf6,0x6b,0x6d,0x33,0x67,0x16,0xd1,0x2e,
+0x2d,0xa6,0x1a,0xec,0xb3,0xc1,0xd2,0x92,0xa7,0xb5,0x78,0x5f,0xb5,0xb8,0x80,0xa9,
+0x10,0xea,0x84,0x16,0xef,0x9b,0x16,0x17,0x4a,0xa2,0x45,0x67,0xfe,0xcf,0xf3,0x2f,
+0x8f,0x3f,0x3d,0xfe,0xdd,0xfc,0xab,0xca,0xfc,0xfb,0xf9,0xb3,0xf9,0x0f,0xf8,0xf7,
+0xcc,0xf1,0x3c,0x3d,0xfd,0xed,0x9e,0xb7,0x4d,0x9a,0x12,0x97,0x8a,0x97,0x9d,0x97,
+0x5e,0xbb,0xc2,0xff,0x9c,0x4d,0xd5,0xbf,0xfd,0x5a,0xbb,0x5a,0x06,0x17,0xb9,0x26,
+0xd5,0x9a,0xde,0x75,0xcf,0xa9,0xfc,0xbf,0xa7,0x3b,0x4e,0x8d,0xcc,0xed,0x57,0xf7,
+0x89,0xa9,0x01,0xb3,0x1b,0x09,0x4e,0x2c,0x8c,0x4e,0xfc,0xe3,0xf1,0x67,0xc7,0x7f,
+0x3f,0xff,0xe6,0xf8,0xd3,0xf9,0x0f,0xe8,0xca,0xb7,0xc0,0x9f,0x62,0xcb,0x46,0xfe,
+0xc9,0x13,0x67,0xfe,0x2f,0xc8,0x7f,0x0e,0xb8,0x67,0xe8,0xe9,0xd3,0xf9,0x77,0xc7,
+0xbf,0xc4,0xd3,0x77,0xf3,0xa7,0x95,0xe3,0x5f,0x1c,0x7f,0x36,0xff,0xfe,0xf8,0x1f,
+0x90,0xf5,0x14,0x89,0x4f,0x8f,0x7f,0xad,0x89,0x50,0xac,0xa4,0x2d,0x09,0x36,0x66,
+0xd1,0x26,0xaa,0x9d,0x3f,0x63,0x29,0x21,0xdd,0x37,0x15,0xb4,0xf0,0xcb,0x0a,0xab,
+0x47,0x03,0x9f,0xcd,0xff,0x2c,0x35,0x7f,0x8e,0xfc,0xe7,0x6c,0x7c,0xfe,0xd5,0x12,
+0xd4,0xfe,0x71,0xfe,0xcd,0xfc,0x4f,0xe7,0x2b,0xb6,0x88,0x4c,0x00,0x64,0xfe,0xaf,
+0xf4,0x09,0x23,0x79,0xfc,0x1b,0xd0,0xe3,0x17,0x40,0xe3,0x59,0x29,0x3d,0x16,0x4b,
+0x87,0x9b,0x0b,0xbd,0xa3,0x6c,0xbc,0xe4,0x50,0x6e,0xf8,0xd5,0x41,0xad,0xcd,0x55,
+0xa0,0xc0,0xec,0x6a,0xd0,0x07,0x1c,0xb8,0x85,0xdc,0xe5,0xec,0x75,0xc1,0xe3,0xda,
+0x83,0xe5,0xab,0x30,0x42,0xc9,0xf4,0x20,0x76,0xd2,0xcc,0x9d,0x64,0x3a,0xd8,0xe1,
+0x92,0x11,0x47,0x2b,0x2b,0x4e,0xc7,0x1f,0xcc,0xca,0x33,0xdb,0x0a,0x89,0x21,0x90,
+0x70,0xa4,0x06,0xcf,0x54,0x6f,0xd5,0xd0,0xae,0x9a,0x26,0x73,0xc3,0x27,0x8b,0x60,
+0x01,0x91,0x02,0x57,0xbe,0x48,0xbd,0xc1,0xc9,0xf5,0x96,0xe2,0xa2,0x89,0x6d,0xd0,
+0x2c,0x9d,0x26,0x26,0xd3,0xee,0x43,0x3a,0x03,0xd5,0x38,0x8d,0x6a,0x6d,0x40,0x71,
+0x2d,0x2f,0x1d,0xaa,0x11,0x87,0xaa,0x0c,0x40,0x89,0x1f,0xbf,0x3a,0x96,0xf2,0x0b,
+0xb2,0x22,0xd0,0xf3,0x7b,0xac,0xcb,0x2f,0x00,0xa8,0xf2,0xe5,0x2b,0x61,0xbb,0xaa,
+0x74,0x87,0x46,0x7f,0x34,0x8a,0xa7,0xef,0xec,0xde,0x7c,0xd7,0xbb,0xb8,0x35,0x9b,
+0x40,0x47,0x0b,0x07,0xfe,0x0c,0x0a,0xe1,0xd0,0x9f,0xee,0xaf,0x8e,0xf7,0x9d,0xed,
+0xad,0x35,0x26,0x6f,0x57,0xe6,0xff,0x13,0x93,0x92,0x93,0xe6,0x37,0x32,0xad,0xbe,
+0xab,0xcc,0xff,0x92,0xcd,0xb2,0xe3,0xcf,0x2f,0x6a,0x65,0x24,0xd7,0xc5,0xa8,0x26,
+0x38,0xa6,0x0a,0x43,0x39,0x2e,0xc4,0xff,0x2c,0xd8,0x04,0x7e,0xf4,0xe3,0xd0,0x09,
+0xdc,0xc2,0x0a,0xec,0xbc,0x14,0xc7,0xb1,0x63,0x34,0xb9,0x1c,0xea,0x59,0xd6,0x02,
+0x5d,0x55,0x96,0x2c,0xde,0x25,0x42,0x1e,0x94,0x7d,0x17,0x6b,0xd4,0x39,0x08,0xfb,
+0x4f,0x90,0x4d,0xff,0x0a,0x89,0xff,0xd9,0xfc,0x4f,0x14,0x7e,0xa0,0xa4,0x54,0x60,
+0x73,0x54,0x91,0x90,0x25,0xed,0x0a,0x15,0x4f,0x6f,0x39,0x4f,0xc4,0x33,0x34,0x1d,
+0xa4,0x9a,0x68,0x19,0x7d,0x88,0xc8,0x49,0x04,0xe2,0xf4,0xd0,0x1a,0xad,0x2d,0x59,
+0x40,0xa4,0x6b,0x4a,0x5b,0x3d,0x07,0x9d,0xfe,0x50,0x2a,0xc1,0xb9,0xbc,0x40,0xc6,
+0x7f,0xa9,0x17,0x8a,0x4f,0x21,0xb6,0x9f,0x81,0x84,0xa6,0xfa,0x17,0xa1,0xa2,0x29,
+0x7b,0xe2,0xdc,0xc8,0x13,0xf2,0x47,0xe3,0x16,0xc8,0xca,0x8f,0x09,0xf6,0x1d,0xd6,
+0xbd,0xdf,0x73,0xa9,0xc0,0x34,0x7b,0x8a,0xb5,0x09,0x14,0x84,0x69,0x60,0x13,0x8f,
+0x0b,0xe7,0x1f,0xe6,0x5f,0xa1,0xc3,0x9f,0x62,0x06,0x7e,0x5e,0x0a,0x23,0xc2,0x95,
+0xe5,0xec,0xfe,0x67,0x72,0xe9,0xe5,0xaa,0x33,0x1d,0x3f,0x5c,0x45,0xdd,0x14,0x4b,
+0xeb,0xd0,0xdf,0x65,0xda,0xbf,0x07,0x13,0xc8,0x73,0x7a,0xfd,0x28,0x8a,0x47,0x8e,
+0x9b,0x07,0xda,0x38,0x0b,0xd0,0xa5,0xb3,0x00,0x5d,0x2e,0x05,0xd2,0x1a,0xc7,0x04,
+0xda,0x8a,0xee,0xb2,0x8d,0x7a,0x58,0xc0,0xa6,0x80,0xf2,0x29,0xc8,0x16,0xb3,0x0b,
+0x68,0x16,0xb3,0x0b,0x08,0x42,0x19,0x52,0xeb,0xd9,0x44,0x4b,0xda,0x22,0x5d,0x23,
+0xcb,0xa2,0xa2,0x28,0x0d,0xa7,0x31,0x2d,0xaa,0xd4,0x88,0xca,0x0c,0x64,0xc9,0xb8,
+0xae,0x1d,0x14,0xb0,0x38,0xbb,0xf4,0x4e,0x54,0x6b,0x30,0x80,0x0a,0x30,0xda,0x71,
+0x51,0x75,0xa2,0xfe,0x03,0x78,0x10,0x68,0x79,0x86,0xd6,0x54,0xf1,0x5b,0x61,0xa3,
+0xd3,0x9f,0xce,0x92,0x9d,0x5e,0x7f,0x10,0xb5,0x6a,0x41,0xc3,0x9f,0x4c,0xe2,0x51,
+0x24,0xaf,0x80,0xcc,0xf2,0x6a,0xc6,0xea,0x0a,0x32,0xab,0x8f,0xc6,0xe0,0xfb,0x07,
+0x30,0x9b,0x17,0x2d,0xed,0xf5,0xbc,0xa5,0x0d,0x57,0xc8,0x60,0x15,0x96,0xf4,0x95,
+0xda,0x56,0xb3,0x6d,0xac,0xec,0xa8,0x0f,0x37,0x88,0x7f,0xe8,0x39,0xa3,0xf1,0x28,
+0x76,0x36,0x97,0x19,0xd2,0x39,0x3b,0x5a,0xd9,0x9f,0x55,0xdf,0x0d,0x16,0xdb,0x6c,
+0xba,0xc5,0x9a,0x03,0xb0,0x78,0x30,0x18,0x87,0xfb,0x4e,0x86,0x4e,0xa8,0x0d,0xff,
+0xe0,0x64,0xc3,0x3f,0xa0,0xe1,0x7f,0x65,0xb9,0xe1,0x1f,0x2c,0x31,0xfc,0xc3,0x82,
+0xe1,0x3f,0x8a,0x13,0xf8,0x50,0x12,0x38,0x43,0x66,0xf7,0xc2,0x9e,0x3f,0xea,0xc6,
+0x20,0x2e,0x34,0x1f,0x60,0x01,0x77,0x8e,0xd1,0x6a,0x4a,0xa0,0x56,0x56,0x2e,0xd8,
+0xa9,0xf1,0xa3,0x38,0x3c,0x48,0xe2,0xa8,0xf6,0xb8,0x2c,0x15,0xce,0x89,0x16,0x8d,
+0x61,0xdf,0xb3,0xf8,0xe6,0xe2,0x16,0x06,0xbd,0xd2,0x87,0x21,0x8c,0x41,0x1d,0x1c,
+0xae,0x1a,0x3c,0xb0,0xf8,0x4d,0xb6,0xe7,0x5f,0xc8,0xf2,0xfb,0x67,0xa3,0xdd,0xba,
+0x95,0xf9,0xd7,0x90,0x18,0x9f,0x63,0x39,0xa6,0x38,0x98,0xff,0x59,0x04,0x07,0x6c,
+0x06,0x24,0x41,0xd9,0xfc,0x06,0x12,0xe5,0x9b,0xf9,0x57,0xc7,0xbf,0x3b,0xfe,0x55,
+0x85,0x02,0x85,0x6b,0xb8,0xa8,0xbd,0xdf,0xcc,0xb1,0x82,0xff,0x80,0xbc,0xe7,0xb0,
+0x36,0x7e,0x85,0xbf,0x5f,0x4b,0xe1,0xe7,0x15,0x94,0x04,0xe8,0x5f,0x98,0x82,0xb2,
+0x5f,0x89,0x0a,0x8f,0x3c,0x14,0xfb,0x87,0x06,0x94,0x00,0xa9,0x04,0xd2,0x09,0x5a,
+0x35,0x11,0x81,0xe0,0xc5,0xba,0xf5,0x35,0x94,0xfd,0x5f,0xb2,0x39,0x18,0x2e,0xd0,
+0x10,0x7e,0x4b,0x1c,0x8e,0x7f,0x57,0x81,0x05,0xc3,0xe6,0xb5,0x30,0x83,0x15,0x53,
+0x59,0x6f,0x56,0x80,0x21,0x6c,0x1a,0x16,0x68,0x6c,0xad,0x4d,0xb6,0xb7,0xfc,0x4a,
+0x6f,0x1a,0x77,0x3c,0x07,0xe6,0x3a,0xb8,0x76,0xd8,0x08,0xbb,0x7d,0xc7,0x28,0x21,
+0x41,0x32,0xaa,0xe0,0xdf,0x6a,0x44,0xfa,0x4f,0x9d,0x6d,0x28,0xf6,0x25,0x68,0x6d,
+0xad,0xf9,0xd0,0x52,0x40,0xb3,0xed,0x8b,0xb5,0x56,0x3a,0x8f,0x82,0x71,0x74,0x88,
+0x19,0x33,0x8b,0xa7,0xc9,0xb5,0x18,0xf3,0x07,0xf3,0x11,0x4e,0x13,0xed,0x1a,0x94,
+0xcc,0x90,0x73,0xe7,0x3d,0x58,0x25,0x33,0x38,0xe7,0x6a,0xae,0x66,0x51,0x48,0xbd,
+0x02,0xd9,0xc1,0x19,0xd9,0xdc,0x99,0x4c,0xc7,0x9d,0xfe,0xc0,0x17,0xb7,0xe3,0x09,
+0x8c,0x51,0x06,0x06,0xce,0xc8,0x25,0x67,0xac,0x51,0x9a,0x7c,0x0a,0x6f,0x44,0xf1,
+0x83,0x7e,0x18,0xaf,0xda,0x45,0x85,0x41,0xde,0x29,0x1b,0x53,0xf2,0xc6,0x73,0xd0,
+0xfd,0x4f,0x32,0xa0,0xd4,0xe3,0x30,0x72,0x92,0x58,0x34,0xbe,0x8e,0x3f,0xab,0x60,
+0x6c,0x0c,0x97,0x7c,0x2b,0x3a,0x1f,0x96,0x9a,0xfc,0x58,0xd9,0x8d,0xfe,0xc7,0x0c,
+0x18,0xbc,0xa6,0xd6,0x80,0x95,0xd1,0x22,0x37,0x6a,0x18,0xff,0xe1,0x47,0xfe,0xa0,
+0x0f,0x77,0x1e,0x5c,0x7d,0x5a,0x92,0xf8,0x1e,0xc6,0x5a,0x1b,0xb7,0xf7,0x86,0xfd,
+0x11,0x5c,0x56,0x41,0x2e,0xc9,0x7f,0x84,0xa4,0x90,0x49,0x90,0xdb,0xd1,0xbd,0x70,
+0x3c,0x1c,0x1e,0x8c,0xe0,0x8f,0x44,0x6a,0xc4,0xd4,0x87,0xd3,0x7e,0x12,0xe7,0x92,
+0x63,0x26,0x0f,0xfd,0x91,0x0f,0x76,0xbd,0x71,0x0b,0x70,0x1d,0xaf,0x8a,0x14,0x2c,
+0x68,0xf0,0xf6,0xe2,0x15,0xcf,0x34,0xb2,0x50,0x13,0xde,0x6a,0xf0,0x6b,0x21,0xa1,
+0x3f,0xf1,0xa3,0x68,0x8a,0xcc,0x1e,0xdf,0xba,0x0f,0xf1,0xd4,0x57,0xd5,0xcc,0xf6,
+0xf1,0x7c,0x9f,0xcf,0xa3,0x64,0x02,0x46,0x7e,0xd0,0x67,0x1d,0xfb,0x64,0x0c,0xed,
+0x4a,0x43,0x56,0xd4,0x0b,0x91,0xda,0x10,0x4f,0x5e,0x1c,0x3d,0x79,0x52,0xd5,0xfd,
+0x8c,0x6f,0xdc,0x62,0xbd,0xf1,0x6c,0x56,0xed,0xba,0x4e,0xe5,0xc6,0xad,0x55,0x88,
+0x8c,0xaf,0xc1,0x07,0xb0,0x41,0x4b,0x87,0xd8,0xa9,0xa1,0x30,0x2a,0x5f,0xaf,0xb9,
+0x8b,0x55,0xf4,0x16,0xab,0xf8,0x2d,0x15,0x15,0x70,0xd4,0xd3,0x13,0x0b,0xf6,0xe1,
+0x0b,0x78,0x5a,0x99,0xff,0x6f,0x8a,0x1e,0x6a,0xb7,0x46,0xb4,0x28,0xd1,0xf4,0x2c,
+0x2b,0x2b,0xc4,0x41,0x3f,0xb3,0xbe,0xc0,0x2c,0x58,0x44,0xe4,0x3e,0x10,0x11,0xb9,
+0xf6,0xa9,0x92,0x4d,0x7c,0xa1,0x3c,0xf9,0x95,0x70,0x38,0x7d,0x25,0xc0,0x48,0xb9,
+0x0b,0x20,0x7f,0xd8,0x5d,0x2d,0x12,0x8b,0x4d,0x25,0x53,0x7f,0x32,0x3b,0xa5,0xb1,
+0x18,0x8d,0xcd,0xff,0x8f,0x88,0x40,0x11,0x84,0x95,0xdb,0xef,0xdd,0xbc,0x55,0x40,
+0x19,0x63,0xcb,0x21,0xbd,0x17,0xc2,0x36,0x2e,0xad,0x6e,0x17,0xb9,0xf1,0xd4,0xc7,
+0xde,0x04,0xdc,0xcb,0x1a,0x18,0xdc,0x66,0xec,0xd1,0x7b,0x43,0xff,0xd1,0x22,0xe5,
+0x6f,0xf6,0x47,0x37,0xfd,0x47,0x36,0xfc,0xbd,0x5e,0x7f,0x96,0xb8,0x64,0x25,0x69,
+0x0e,0x35,0x48,0x8a,0xe3,0x5e,0x74,0xe6,0xff,0x15,0xf2,0x99,0x93,0x9a,0xee,0x16,
+0x78,0x2d,0xf8,0x46,0xe1,0xfe,0x6c,0xfe,0x47,0x11,0xf1,0xdf,0x56,0x68,0x5f,0xa8,
+0x15,0xe3,0xf8,0xd7,0x10,0xcc,0x04,0x05,0x59,0xfe,0x22,0x05,0xe0,0x60,0xc1,0x8c,
+0x87,0xc3,0xc9,0xb9,0x78,0x3a,0x1e,0xfe,0xa3,0x22,0x1e,0x3a,0x65,0x39,0x1e,0x42,
+0x39,0x2c,0x31,0x5c,0x6c,0xce,0x8f,0x49,0xc6,0x8c,0x57,0x07,0x13,0xac,0xc3,0xd8,
+0xda,0xc1,0x46,0x4d,0x35,0x74,0x9d,0x0f,0x30,0x27,0x2b,0x3b,0xd9,0x9c,0x5c,0xe0,
+0xde,0x5c,0x81,0xc8,0x75,0x3e,0xe6,0x74,0x3d,0xb1,0x84,0x3d,0x54,0x54,0x55,0x16,
+0xaa,0xd4,0xc3,0x62,0x09,0x0d,0x4d,0x8e,0x62,0xca,0x72,0x72,0xfc,0x94,0xc3,0x92,
+0xb6,0x9a,0x0e,0x4b,0x31,0x65,0x39,0x1e,0x3f,0x6e,0x58,0x52,0x11,0x91,0x31,0x2a,
+0x2d,0x09,0xc8,0x3d,0x4a,0x52,0x61,0x53,0xeb,0x5d,0xb0,0xa0,0xad,0x89,0x25,0xe7,
+0xf8,0x73,0x70,0x25,0x8d,0x9b,0x67,0xa2,0x44,0x80,0x15,0x6d,0x8b,0x87,0xf6,0xcc,
+0x89,0x6c,0x68,0xd5,0x9a,0x71,0x62,0x31,0x71,0x79,0xaf,0xa1,0x02,0xe5,0x91,0xa0,
+0xe6,0x04,0xff,0xe0,0xf9,0x90,0x80,0x42,0x38,0x45,0x4f,0xd9,0xac,0x74,0xd5,0x7a,
+0x5f,0xde,0x55,0xca,0x25,0xf6,0xfe,0x6b,0x48,0x4c,0xab,0x8b,0x1d,0x23,0xba,0x2d,
+0x71,0xa7,0x89,0xca,0x89,0xce,0xa5,0xe2,0xde,0xfe,0xbd,0xe0,0xa0,0xe3,0xa6,0x4b,
+0x87,0x7a,0x97,0x96,0xfe,0x17,0x90,0xff,0x2f,0xc7,0x7f,0xcf,0x55,0x5c,0x84,0x1e,
+0x15,0x2f,0x68,0x62,0x7a,0x7e,0x43,0x61,0xfb,0x0e,0xeb,0xbe,0xcc,0x74,0x64,0xfc,
+0xc2,0x92,0x8c,0xa2,0xb8,0xa1,0x98,0x78,0x68,0x09,0x53,0x11,0xd9,0xf1,0x47,0x0c,
+0x0b,0x54,0x48,0x1b,0x41,0x23,0x83,0x17,0x91,0x0a,0x0f,0xc3,0x01,0x44,0xa4,0x85,
+0xa6,0xa4,0xfc,0x48,0xc4,0xa4,0x1f,0xe0,0x09,0xf4,0xc8,0x38,0x4c,0x4f,0x40,0x2f,
+0x93,0x0f,0x1a,0x3f,0x7a,0x24,0x38,0x30,0x8a,0x0f,0xed,0xb7,0xe5,0x43,0x73,0x3e,
+0x06,0xb0,0xeb,0xd4,0x3c,0xb8,0x90,0x24,0x6d,0x2d,0x11,0xcb,0x05,0x0e,0x3c,0xff,
+0x34,0x80,0x1b,0x4d,0xf5,0x4e,0x3f,0x48,0x63,0x58,0x61,0xe1,0xdf,0xe6,0x62,0x48,
+0xdb,0x00,0xbe,0x73,0x0c,0x38,0x1c,0xef,0xe4,0x85,0xe7,0xf3,0xef,0x4e,0x18,0x50,
+0x5d,0x89,0xee,0x89,0xfd,0xb6,0xbc,0x13,0x6c,0xa2,0xd0,0x18,0x5a,0xf9,0xd7,0xf9,
+0x73,0xdd,0x5c,0x9e,0xc5,0xf7,0x33,0xf5,0xd9,0x30,0x53,0xa6,0x9c,0x88,0x49,0x48,
+0x1b,0x68,0xb9,0x0d,0x3c,0xe8,0xc3,0x04,0xd6,0x1a,0x8f,0x6d,0x05,0x3b,0xf3,0x7f,
+0x82,0x24,0xa1,0x1a,0xfb,0x14,0xca,0x00,0xf6,0x10,0xd8,0x69,0xe0,0x40,0x15,0x80,
+0xd3,0x6c,0xfe,0x83,0x53,0x0f,0xea,0xce,0x05,0xc7,0x5d,0xfb,0x59,0x75,0xe3,0xca,
+0x9d,0xe6,0xea,0x95,0xbd,0x27,0x1b,0xf8,0xb9,0xbc,0x87,0x3f,0x6f,0xec,0x3d,0xb9,
+0xd3,0x5c,0xdf,0x6b,0xcb,0xa3,0xfc,0x69,0xd7,0xee,0x36,0xfe,0x63,0xe0,0x5e,0x5e,
+0x83,0x83,0x67,0xc6,0x8d,0xec,0x07,0xfe,0xe0,0x00,0xfb,0x93,0x17,0x9a,0x9b,0x54,
+0x1c,0xf1,0xa6,0x75,0xd6,0xd5,0x60,0x0c,0x6d,0x34,0x6f,0xe6,0xd7,0x5c,0x28,0x6b,
+0x8b,0xb4,0x2d,0xae,0x62,0xb2,0x95,0xfb,0x22,0xd4,0xfd,0x82,0xd2,0x81,0x2b,0xf7,
+0xf1,0xe7,0x14,0x93,0x96,0x0e,0xc1,0x2d,0x9a,0x52,0x1d,0x82,0xd6,0xe8,0x73,0xcc,
+0x5d,0x2a,0x1e,0xd4,0xf5,0x44,0xa8,0xd0,0xfc,0xfc,0x2d,0x64,0x0f,0x4c,0xc8,0x54,
+0x2d,0x81,0x8f,0xeb,0xf7,0x18,0x98,0xf7,0x0e,0x86,0x41,0x3c,0x4d,0xfb,0xbd,0xa5,
+0xdf,0x83,0x9f,0x82,0x0e,0x5a,0x20,0x80,0xc1,0xb2,0x00,0x8a,0xd4,0x02,0x54,0x3e,
+0x9a,0xd4,0xcd,0x42,0x16,0xc3,0x76,0xb3,0x8f,0x90,0x03,0x5a,0x08,0xb3,0xc6,0xb0,
+0x8f,0xc0,0x80,0x83,0x21,0x14,0x78,0x2b,0xcd,0x7f,0x24,0x69,0x54,0xdb,0x03,0xaa,
+0xdc,0x96,0xfd,0xa8,0x10,0x86,0x0e,0x9f,0x29,0xe7,0xf1,0x76,0xb7,0x5d,0xb5,0x1d,
+0xc1,0xce,0xfc,0x7f,0x90,0x2c,0xa9,0x3d,0xfc,0x4d,0xc5,0xa9,0x87,0x75,0xa8,0x98,
+0x50,0x8d,0x68,0x17,0x3f,0xe7,0xca,0xc8,0xbd,0xaa,0x2f,0x41,0x30,0x8b,0x58,0x84,
+0x8b,0x69,0x3b,0x9c,0xc8,0x0e,0x70,0xf7,0xa3,0xf5,0xf5,0xda,0x66,0x77,0xbb,0xf3,
+0x63,0xdb,0x55,0x23,0xc6,0x76,0x3b,0x67,0x6f,0x97,0x7d,0x77,0x7b,0x8b,0xfc,0x98,
+0xd3,0xc3,0xce,0x38,0xdd,0x61,0x60,0xad,0xfd,0x8c,0x93,0xd2,0x5f,0xfd,0xf9,0xd5,
+0xd5,0xff,0xbc,0x57,0x7f,0x79,0xad,0x5c,0x02,0xd0,0x23,0xf0,0x3d,0xc8,0x27,0x33,
+0xdd,0x26,0x22,0x44,0x21,0x9d,0x1a,0x5c,0xdf,0xfe,0xa8,0x79,0x4f,0x44,0x21,0x85,
+0x04,0x16,0x45,0xee,0xad,0x72,0x6b,0x91,0xb6,0x83,0xda,0x93,0xa3,0x13,0x19,0xbe,
+0x8c,0xef,0xe8,0x2d,0x81,0x17,0xa4,0xc2,0x75,0x08,0x2b,0x2b,0x15,0x63,0x37,0xfa,
+0x09,0xa6,0xa7,0x58,0x68,0xef,0x27,0x3d,0xb2,0xbb,0x38,0x91,0x2e,0x61,0x13,0x0f,
+0x81,0x3a,0x83,0x38,0x84,0x7f,0xe8,0xc6,0x28,0x8a,0x1f,0x99,0xa8,0x8b,0x65,0x5c,
+0xda,0x1f,0x4d,0x0e,0x12,0xc8,0xc2,0xa0,0x91,0x1c,0x4e,0xe0,0xa9,0xe5,0x8e,0x94,
+0xe3,0x06,0xb6,0xf3,0x96,0x96,0xee,0xaa,0x0e,0x7d,0x60,0x16,0xdd,0x48,0xb0,0xaa,
+0x56,0x51,0x94,0xaf,0x22,0x5e,0xbc,0xd4,0x9c,0xfc,0x88,0xd2,0x06,0xc9,0xca,0xd5,
+0x8a,0x3d,0x9f,0x6e,0x7f,0xf4,0x6e,0xdc,0x49,0x3c,0x67,0xbd,0x39,0x79,0xe4,0xc0,
+0x31,0x87,0xbd,0x1b,0xb8,0x28,0xe9,0x25,0xc9,0x3b,0x53,0xb0,0x97,0xd2,0x18,0xa1,
+0xf9,0xdb,0xfd,0x60,0x00,0x27,0x59,0xed,0x28,0xc6,0x66,0x60,0x05,0xae,0x31,0x65,
+0xad,0x4a,0x7b,0x35,0x13,0xaa,0x63,0xa7,0xb5,0x72,0x75,0x4e,0xe3,0xe1,0xf8,0x41,
+0xac,0xdd,0x96,0xb6,0x9f,0x65,0x76,0x10,0x0c,0xfb,0xc9,0x5b,0xe8,0xcd,0x0c,0xe6,
+0xba,0x76,0x0e,0x55,0x9d,0xf9,0x17,0x34,0x5f,0x3e,0xd3,0x7e,0x29,0xe5,0x66,0x3a,
+0xfe,0x0d,0x07,0xb6,0x42,0x2f,0x16,0x07,0x14,0xff,0x30,0x94,0x94,0x3c,0xc6,0x1b,
+0x26,0xce,0x2b,0xce,0xb2,0xcc,0xfd,0xf5,0x2d,0xc6,0xf9,0x59,0xdb,0xa1,0x43,0xd7,
+0x46,0x2e,0x7d,0x35,0xd6,0xb6,0x91,0x07,0x77,0x2e,0xed,0x69,0xda,0xd9,0xe0,0x5a,
+0x4a,0xb9,0x45,0xf7,0x42,0x9b,0x95,0x32,0x91,0x6e,0x6a,0xd5,0x13,0x38,0x79,0x6d,
+0x07,0x60,0xde,0xa5,0x58,0xdb,0x04,0xfc,0xc2,0xe4,0x56,0x83,0x92,0x7a,0x5b,0x95,
+0x43,0xd4,0x92,0xf7,0xb3,0xd1,0x70,0x72,0x5b,0xc8,0x94,0xb9,0x9a,0x19,0x08,0xd7,
+0x60,0xcb,0x0d,0xe5,0xa2,0x32,0x93,0x86,0x0a,0xca,0xdf,0xde,0x7c,0xf7,0xfa,0x38,
+0xac,0x62,0x45,0x6c,0x3b,0x75,0x01,0x1c,0xc1,0xdf,0x2f,0x11,0x65,0xf2,0x26,0xbc,
+0xe1,0x3a,0x6f,0xbf,0xb9,0x9b,0xb9,0x5d,0x41,0x7b,0x36,0x83,0x34,0x44,0x45,0x71,
+0xbd,0xc9,0xa6,0xb7,0x55,0xa5,0x2d,0x62,0x5b,0x91,0xf7,0xb0,0x3f,0x8a,0xc6,0x0f,
+0x1b,0x68,0xef,0x9d,0x24,0x99,0x7c,0xa0,0x02,0xad,0xda,0x8c,0x4e,0xcb,0x27,0x6d,
+0x32,0xe9,0x2a,0x5c,0x69,0x0f,0xe2,0xbf,0x7d,0x3f,0xb8,0x8f,0x79,0x50,0x75,0x6e,
+0xf6,0xc3,0xe9,0x78,0x36,0xee,0x24,0x52,0x7c,0x77,0x17,0xe6,0x36,0x66,0xdf,0x18,
+0xce,0xed,0x2a,0x58,0xce,0xbd,0xd0,0xac,0x89,0xc3,0x34,0x6e,0x21,0x71,0x44,0xb7,
+0xcc,0xe1,0x8c,0xe1,0x4b,0x8a,0x9e,0x9e,0x09,0x61,0x02,0xda,0x97,0x3d,0x2f,0x42,
+0x54,0x12,0x00,0x24,0xbe,0x09,0x23,0x1b,0x23,0x81,0xc0,0x07,0x33,0x77,0xa3,0x09,
+0x8f,0x7e,0xdc,0xae,0x4e,0x1e,0x46,0x37,0x66,0x3b,0xe3,0xe9,0x14,0x6d,0x0b,0xf8,
+0x6c,0x02,0xe1,0x1f,0xef,0x82,0xb1,0x5d,0xc7,0x54,0x86,0x0d,0x16,0x4e,0xb7,0x71,
+0xa7,0x12,0xae,0xac,0x84,0x5c,0x82,0x07,0x87,0xd5,0xa8,0x56,0xdb,0x04,0x57,0xce,
+0xc6,0x08,0x53,0x1b,0x8c,0xbb,0x55,0xe7,0xcd,0xe9,0x74,0x0c,0x2f,0x4e,0xed,0x08,
+0xe8,0xce,0xe0,0x8a,0xb7,0xa3,0xc8,0x64,0xea,0xdf,0xfa,0xf8,0xba,0x71,0x3c,0x29,
+0x3f,0x13,0x1a,0x07,0x7b,0x28,0xaa,0x87,0x8b,0xe2,0x2e,0x54,0x32,0x27,0x50,0x41,
+0x26,0x7a,0xf0,0x1c,0xa9,0x0a,0x25,0xe9,0x76,0x6b,0x4f,0xb0,0x55,0xfb,0x70,0x3c,
+0xc5,0x14,0xaf,0x07,0xae,0x73,0xeb,0xfd,0xdb,0xf9,0x91,0xf3,0xb3,0x50,0xad,0x04,
+0xde,0x03,0x50,0x23,0xeb,0x9e,0x6c,0x5f,0xfa,0xc2,0xa8,0x52,0xe5,0x87,0x13,0xf8,
+0xc6,0xe2,0x5b,0xa8,0x90,0x2c,0x2b,0xd1,0x77,0x29,0xe7,0x89,0x9f,0x9f,0xeb,0x40,
+0x38,0x3e,0x18,0x25,0x18,0x5a,0xb8,0xca,0x8a,0x30,0xda,0x5d,0x9f,0x42,0x54,0x41,
+0x1f,0x7f,0x00,0xe7,0x2b,0xe6,0xec,0xbf,0x60,0xe2,0xd1,0xff,0x08,0xd1,0x6b,0xe9,
+0x66,0xb2,0xec,0x2d,0x6a,0x6f,0x0e,0xf8,0x4c,0xf6,0x5b,0x02,0x1d,0xbf,0xd6,0x36,
+0xd5,0x7c,0xc1,0x59,0x0f,0x91,0x6e,0x66,0x78,0x56,0x2b,0x76,0x68,0x0c,0xd0,0x79,
+0xdb,0x32,0x83,0x5c,0xc9,0x30,0x4f,0xf7,0x6d,0xae,0xb4,0xe0,0x7a,0x47,0xa0,0x1b,
+0x3c,0x6f,0xfe,0xa0,0x6a,0x20,0x31,0x88,0x5a,0x17,0x45,0x14,0x46,0xb0,0xb2,0xe2,
+0x23,0xd4,0xeb,0x42,0x13,0xb1,0x47,0xa1,0x38,0x17,0x41,0x65,0xce,0x8c,0x2a,0x38,
+0x95,0x31,0x34,0x04,0xb8,0x40,0x00,0x30,0xa0,0x9e,0x17,0x29,0xa4,0x72,0x7c,0xaf,
+0x81,0xc3,0x83,0x6d,0xe4,0x07,0xab,0xab,0x29,0x91,0x57,0xe1,0xe8,0x80,0x62,0x04,
+0x3a,0x67,0x9b,0x90,0x08,0x61,0x38,0x72,0x19,0xbd,0x99,0xcd,0x41,0x3a,0xff,0x4c,
+0xf8,0x1e,0xc6,0x27,0xef,0x0b,0x94,0xc1,0x35,0xde,0x45,0xf0,0x64,0x72,0x35,0x41,
+0x74,0x67,0x80,0xdd,0x08,0x6e,0x2b,0xcd,0xfc,0x60,0x10,0x47,0x8e,0x9b,0x3d,0x8a,
+0x07,0x8e,0xfe,0xc7,0xb3,0xc2,0x0e,0x7d,0x7a,0x28,0xcf,0x02,0x5d,0x13,0x6d,0x36,
+0xc5,0x45,0x49,0xfd,0x32,0x74,0x32,0x1c,0x4e,0x81,0xd1,0x6d,0x9f,0x00,0x65,0x91,
+0x49,0x24,0x25,0xe6,0xa4,0x45,0xaa,0x82,0xfb,0xaf,0x0d,0xea,0x59,0x7e,0x5b,0x0c,
+0x22,0xd7,0xa5,0x52,0x0c,0x29,0xab,0x6d,0xd0,0x33,0x10,0x36,0x1b,0x30,0xac,0xbc,
+0x16,0x12,0x39,0x77,0xa7,0x0c,0x57,0xba,0x32,0x83,0xae,0x27,0xe0,0x40,0x3e,0x01,
+0xa8,0x5a,0x65,0x57,0x56,0xec,0xb7,0x93,0x8a,0xa9,0x61,0xb0,0xdb,0x38,0x03,0xf2,
+0x27,0xb5,0x75,0x86,0xe2,0xd6,0x30,0xd0,0x51,0x00,0x87,0x9d,0x4d,0x01,0xe3,0x3b,
+0x40,0x77,0x45,0x0c,0xc5,0x91,0x90,0xc1,0x24,0x6b,0x4f,0x47,0x51,0xd7,0x3e,0x85,
+0x32,0x56,0x69,0xe5,0x90,0x38,0x47,0x79,0x45,0x22,0xab,0x06,0x78,0x5e,0x04,0x39,
+0x5b,0xd7,0x3f,0x43,0xb7,0x49,0x35,0xab,0x96,0x72,0x3c,0xce,0x50,0x8f,0x45,0x3e,
+0xed,0xfa,0xb5,0xf8,0xc7,0x38,0x83,0xf3,0xbe,0x67,0xa1,0xa0,0xc9,0x82,0x1d,0x23,
+0x96,0xfd,0x42,0x1f,0x4e,0xa1,0x61,0x5a,0xde,0xf8,0x77,0xcf,0x41,0x43,0xf6,0x3d,
+0x2d,0xcf,0x7d,0x95,0x93,0x78,0x32,0x07,0xcc,0x1d,0x97,0x93,0x80,0xd5,0xe8,0x58,
+0x75,0x97,0xf7,0xed,0x0c,0x74,0x2d,0x34,0xfb,0xd3,0xd4,0x23,0x7d,0x3d,0x7f,0xe3,
+0xe8,0xf3,0x19,0x0a,0x59,0x9c,0x80,0x1d,0xc8,0xc1,0x2e,0x26,0xd3,0x07,0xdc,0x17,
+0xa5,0xf2,0x07,0x8d,0x4f,0x9f,0x5a,0xa0,0x26,0x87,0x3d,0xab,0xd5,0x8d,0x66,0xeb,
+0xb5,0xe6,0xb6,0x17,0xb6,0x42,0x44,0x7f,0xc3,0xa8,0x5d,0x1a,0x60,0xa0,0x0c,0x5e,
+0xac,0x41,0x78,0xd0,0x2a,0x6e,0x28,0xcf,0x34,0x2e,0x10,0x27,0x9f,0x0f,0x2d,0x00,
+0x90,0x85,0x47,0x7f,0xd4,0x19,0x7f,0x94,0xba,0x28,0x8c,0x76,0xc3,0x0d,0x2b,0xe8,
+0x08,0xb2,0x7a,0x29,0xed,0x46,0xb6,0xd5,0xcc,0xb2,0x87,0xde,0x1a,0x9d,0x07,0x80,
+0xf0,0x6f,0x32,0x06,0x22,0x4d,0x8c,0x2c,0x03,0x5a,0x57,0x1d,0xdb,0x06,0xe4,0x06,
+0xb6,0x71,0x61,0x05,0xd0,0x7a,0xa3,0x75,0x47,0xdb,0xef,0xf8,0xd7,0xb2,0x25,0x83,
+0x92,0xd6,0xd6,0x55,0xbe,0x0c,0xb4,0x23,0x6c,0x41,0x61,0xe7,0x8b,0x96,0x82,0x6c,
+0x6e,0x7f,0x8f,0xdf,0xd4,0x0f,0x7d,0x6a,0x79,0x6c,0x37,0xcc,0xe1,0x6a,0x85,0x8d,
+0x2e,0xfb,0xeb,0xa8,0x45,0x82,0x6f,0x10,0x97,0xcb,0x3d,0x02,0xd5,0xb2,0x75,0x42,
+0x62,0x19,0xe2,0x08,0x7e,0x38,0xdd,0xd3,0x55,0x30,0x7d,0xef,0x56,0x68,0xfc,0x0e,
+0x8d,0x22,0x9f,0xf7,0x7f,0xfd,0xfb,0x5a,0xbf,0xe8,0xeb,0x05,0xff,0x85,0x5c,0x53,
+0xca,0x06,0xba,0x01,0x76,0x01,0x93,0xfc,0x24,0xc6,0x1c,0xf7,0xf9,0x54,0xac,0x83,
+0xec,0x25,0x1c,0x7f,0xae,0x8c,0xb9,0x22,0x47,0x72,0x5d,0xe7,0xa6,0x1d,0xd3,0x39,
+0xcd,0x94,0xb9,0xf4,0x62,0xf6,0x16,0x4e,0xd2,0xfc,0xf5,0xed,0xf7,0xdf,0x63,0x10,
+0x4b,0xea,0x50,0xfa,0xb7,0xb3,0x76,0x94,0x1d,0x26,0x16,0x0f,0x0d,0xa0,0xd1,0x49,
+0xb6,0x8e,0x84,0x90,0xb8,0x71,0x6b,0xd1,0xe6,0xf1,0x0b,0x36,0x0f,0x34,0xfe,0xd8,
+0x63,0x2f,0x68,0xd8,0xe3,0xb8,0x06,0x4d,0x24,0xdb,0x28,0x08,0x70,0x38,0x02,0x86,
+0x0d,0x84,0x48,0xa9,0x21,0xc3,0x73,0x53,0x6f,0xdf,0xa0,0xc4,0x61,0x93,0x20,0x83,
+0x66,0x4b,0x6c,0x90,0x43,0x82,0x49,0x28,0x00,0x9c,0x1a,0x50,0x75,0x43,0xef,0xdc,
+0xa3,0x0c,0x37,0x8c,0x0a,0x1f,0x81,0x0f,0xdb,0x78,0xbf,0xe0,0x42,0xa4,0x2f,0xf7,
+0x2b,0x4c,0xbd,0xaf,0x33,0x37,0x4d,0x99,0x21,0x8f,0xf0,0xb9,0x69,0x1c,0x8c,0xc7,
+0x3f,0x12,0x09,0xbd,0x27,0xca,0x4d,0xd4,0x2c,0x28,0x53,0xa1,0x53,0x12,0x16,0xf1,
+0x1c,0x4c,0x87,0x86,0x0f,0xc4,0x76,0xfa,0x71,0xbd,0x47,0x0f,0xbf,0x84,0x87,0x02,
+0xf1,0xe8,0xa6,0xf7,0xf4,0x60,0x30,0x96,0xe6,0x19,0x92,0x10,0xb8,0x5e,0xba,0x67,
+0x2f,0xed,0x87,0x88,0x98,0xfb,0xc9,0x6d,0xee,0x40,0xd9,0xdc,0x36,0x17,0xc2,0x4d,
+0x24,0x76,0x2d,0x8d,0xf0,0xcd,0x07,0xe3,0x7e,0x54,0x69,0x66,0x8a,0x2d,0xd8,0xc9,
+0x1f,0xce,0x3e,0x88,0x3b,0xe0,0x84,0x1e,0x26,0xb9,0x99,0x2c,0x0e,0x1f,0x66,0xe3,
+0x91,0x50,0x27,0x8d,0xe6,0x22,0x07,0x61,0x66,0x5e,0xc5,0x41,0x03,0xcb,0xc0,0xf1,
+0x1b,0x57,0x77,0xb8,0x2e,0x63,0x0f,0x82,0x3b,0x38,0x85,0x3c,0x9d,0x5a,0x77,0x56,
+0x46,0xc1,0x6c,0xd2,0x9a,0x7f,0x21,0x61,0x7b,0x48,0x65,0xfc,0xe9,0x22,0x2c,0x53,
+0x53,0xd8,0x3f,0xa4,0xb0,0xea,0x50,0x50,0x09,0xb8,0xca,0x30,0xbb,0xf2,0x56,0x9c,
+0x3a,0x9c,0x74,0x46,0xe1,0xa0,0x9e,0x85,0xa0,0x1f,0x09,0x80,0xb7,0x14,0x88,0x42,
+0x6d,0x1a,0x5a,0x03,0x94,0xf4,0x04,0x00,0x4c,0x4d,0xb1,0x53,0x3d,0xd1,0xa9,0x74,
+0x19,0x65,0x36,0x9f,0xb4,0x4d,0xe0,0xf5,0x72,0xe8,0x8d,0x72,0xe8,0x8d,0x72,0x68,
+0xc6,0x3d,0x96,0xd4,0x7d,0xa9,0x1c,0x9a,0x61,0x90,0x25,0xd0,0x97,0x17,0xa1,0x4b,
+0x46,0x00,0xbd,0x29,0x19,0x01,0xa4,0x22,0x78,0x72,0xb1,0x5e,0x24,0x1a,0x7a,0xea,
+0x68,0xe1,0x45,0x18,0x13,0x47,0x4c,0x40,0xb3,0xdf,0x56,0x80,0x32,0xc9,0x05,0x0c,
+0x99,0x5c,0x82,0xa2,0x49,0x4e,0xa1,0x15,0x97,0x30,0x19,0x27,0x8c,0x4a,0xaa,0xe6,
+0xb1,0x3c,0x34,0x0e,0xbd,0x88,0x9a,0x7d,0x01,0x40,0xa7,0x12,0x80,0xa7,0x36,0x0a,
+0xb9,0x4c,0x62,0x96,0x9c,0xa7,0x2b,0xe4,0x49,0x1a,0x33,0x79,0x5e,0xa3,0x90,0x27,
+0xc7,0xfc,0x0e,0x92,0xf0,0x16,0xa7,0x17,0x38,0x11,0x8f,0x65,0x7e,0x44,0xe4,0x94,
+0x78,0x17,0x5d,0x61,0x55,0x6d,0x2f,0xb8,0x10,0xd0,0x3c,0x08,0x3a,0x46,0xe0,0x67,
+0x6e,0xb2,0x2a,0x97,0x42,0x6e,0x6a,0x1a,0x67,0x0a,0xb6,0xd7,0xe8,0x6c,0xe5,0x56,
+0x1a,0xf4,0x25,0x68,0x4f,0xf0,0xdf,0x30,0x32,0xf0,0x7b,0xc8,0xc2,0xdf,0x18,0x39,
+0x25,0x1b,0x6d,0xb2,0xd9,0xf8,0x4d,0x03,0x6a,0xe4,0xf2,0x66,0xae,0xd0,0x75,0x61,
+0x69,0x8f,0x6f,0x63,0x31,0x61,0x90,0x67,0xaa,0x37,0x9a,0xf3,0xab,0x70,0x8f,0xf9,
+0xd6,0xb9,0xd5,0x57,0xe3,0xcb,0xaf,0xa4,0xef,0x3f,0x47,0xcc,0xe9,0xfb,0x9d,0x0e,
+0x5a,0xa9,0xd6,0xea,0xcc,0x91,0x75,0x4c,0x1d,0x03,0x35,0x74,0xaa,0xbd,0xf2,0x6a,
+0xb3,0xe5,0x7b,0xa6,0x3a,0xec,0xd5,0x88,0xcf,0x30,0x54,0xb5,0xbe,0x33,0x3e,0x98,
+0xc2,0xa7,0x0c,0x35,0x4b,0x2a,0xbd,0xd9,0x1f,0xc1,0x23,0xc2,0x04,0x6e,0xff,0x40,
+0x5a,0xdd,0x8e,0xb1,0x74,0x45,0x4c,0xe0,0xde,0x0f,0x12,0xae,0xcb,0xf1,0x48,0x04,
+0x6b,0x29,0x78,0x08,0x0a,0x08,0x38,0xb8,0xb1,0x91,0xf5,0xd6,0xc1,0x60,0xf0,0x77,
+0xb1,0x3f,0xc5,0xfb,0x1b,0x50,0xb6,0x65,0xe1,0x73,0x9a,0xd8,0xd5,0xa9,0xb9,0x78,
+0xc7,0x21,0x19,0xe8,0x86,0x7c,0xc7,0xde,0x0c,0xde,0x3b,0x78,0x47,0xa4,0x23,0xde,
+0x3b,0xf2,0xde,0xc5,0x7b,0x57,0xde,0xbb,0xf2,0x1e,0xe3,0x1d,0x5e,0x7d,0xe4,0xc7,
+0x35,0x57,0x09,0x58,0xb8,0x8e,0x4c,0xaf,0x90,0x09,0x1e,0x09,0x49,0x31,0xb5,0x17,
+0xa8,0xbc,0x74,0xe6,0x8c,0xac,0xb3,0x2e,0x32,0xce,0xca,0xcf,0xe6,0xae,0xa3,0xcf,
+0xdc,0x36,0x31,0x3e,0xf9,0x3a,0x2c,0x18,0xd9,0x8b,0xda,0x04,0xae,0x75,0x07,0x7f,
+0xe3,0x4c,0xb4,0xa3,0x9f,0xb7,0x10,0xd8,0xa1,0x65,0x36,0x27,0x12,0x14,0xf6,0x09,
+0x52,0x6c,0x5e,0xbd,0xc0,0x65,0x1f,0x90,0xa2,0x21,0x21,0x84,0x7c,0x96,0x8c,0xa7,
+0x87,0xda,0x49,0xd9,0x45,0xa7,0xea,0x7e,0xc6,0x61,0xa9,0x1a,0xec,0xf0,0xb8,0x67,
+0x00,0x55,0xa4,0x1b,0xb7,0x88,0x57,0x79,0xd5,0x9e,0x4f,0xa4,0x09,0x34,0xe8,0x63,
+0x4f,0xc0,0x6e,0x55,0x17,0x9e,0xa5,0xc7,0xb6,0xb1,0x05,0x81,0x13,0xe0,0x35,0x1c,
+0xff,0x75,0xb6,0x92,0xe9,0xf6,0x56,0x12,0x6d,0xa3,0x47,0x77,0xe2,0xbd,0x46,0xef,
+0x9e,0x70,0x7d,0xdd,0xd9,0x5a,0x43,0x62,0x2e,0x03,0x47,0x57,0x47,0x90,0xc6,0x8b,
+0x19,0x62,0xa7,0x94,0x65,0xd0,0x57,0x9a,0x60,0x32,0x99,0xbc,0x35,0xb4,0xe5,0xb0,
+0x0b,0xba,0xe3,0xf7,0x00,0xe0,0xe7,0x10,0x0d,0x5d,0x33,0x8e,0xc0,0x19,0x8f,0x47,
+0x19,0x39,0xd4,0x5a,0x98,0xd0,0x1f,0x87,0x22,0x65,0x5e,0x57,0xb8,0x20,0xc5,0x44,
+0xca,0x46,0xeb,0xe2,0x56,0x6f,0x7d,0x7b,0xfe,0xdf,0x19,0xb8,0xc5,0x7d,0x8d,0xf9,
+0xf7,0x8c,0x83,0x63,0x28,0x2f,0x36,0x0e,0xa1,0x31,0x7c,0xbb,0xb5,0x86,0x7c,0x89,
+0x23,0xd6,0xe7,0x79,0x70,0x86,0x27,0x1e,0x54,0xe4,0xef,0x6a,0x14,0x77,0xfc,0x03,
+0xac,0xaf,0x8b,0x00,0xab,0x3d,0x38,0xcc,0xb1,0x9d,0x83,0x50,0xdb,0x7f,0x16,0xd5,
+0xe3,0x4b,0xec,0x93,0x3c,0x55,0xc1,0xb5,0x5b,0x13,0x1c,0x92,0xc7,0xa9,0x6c,0xb5,
+0xed,0xb4,0x0a,0xb3,0xaf,0x3b,0xda,0xac,0x84,0xc0,0x2c,0x9e,0xb6,0x50,0xe0,0xbf,
+0x01,0x8d,0x1f,0x94,0x1c,0x90,0x90,0x1a,0x88,0x0b,0x04,0xf9,0x8a,0xc9,0xf5,0x15,
+0x9e,0x7e,0x6f,0x02,0x7e,0x55,0xa4,0xae,0x2d,0x08,0xb8,0x8f,0x24,0x1c,0xa6,0xd4,
+0x4a,0xcb,0x6d,0xbd,0xc0,0x14,0xd6,0x19,0x2c,0x4c,0xc1,0x2d,0x99,0xfc,0x3c,0x8a,
+0x5c,0x60,0x10,0x1b,0x0c,0xf3,0xc6,0xaf,0xf3,0x10,0x71,0xca,0xc6,0x96,0x0c,0x9a,
+0xe0,0xdc,0xf2,0x8b,0x34,0x8d,0x73,0xe5,0x54,0x73,0xfd,0xd5,0x65,0x15,0xd3,0x4b,
+0xce,0x95,0x64,0xe7,0xf6,0x47,0x90,0x6f,0x7c,0x32,0x1e,0x7c,0x6b,0x6e,0xc0,0xfb,
+0x5a,0xdc,0x6d,0x11,0x55,0xde,0xd6,0xd0,0x17,0x3d,0xf7,0x2d,0xce,0xb1,0xdd,0x31,
+0x6a,0xde,0x19,0x8f,0x70,0xea,0x1a,0x33,0x0d,0x1b,0xe8,0x9c,0x1f,0xd4,0xcc,0x6c,
+0xc2,0x96,0x01,0x22,0xac,0x4d,0x1b,0xa1,0xce,0x58,0xf6,0x5c,0x70,0xbc,0x4f,0x6f,
+0x6f,0xf8,0x6d,0xcb,0x32,0xf0,0xe1,0x53,0xc7,0xec,0x74,0x1c,0x5e,0x5f,0xa0,0xcb,
+0x60,0xec,0xb3,0x1b,0x12,0x3a,0x9c,0x6a,0x21,0x43,0xa7,0xe3,0xba,0xd7,0xc1,0x6d,
+0x02,0x4e,0x2b,0xf6,0x70,0xf3,0xc0,0x00,0x61,0xc9,0xd5,0xa6,0xbb,0x0a,0x63,0x3c,
+0xaa,0x7b,0x98,0x22,0x77,0xa7,0x77,0x47,0x38,0xe7,0xaf,0x5d,0x14,0x5d,0x1c,0x4e,
+0xef,0x66,0xd7,0x26,0x74,0xb3,0x6b,0x13,0x16,0xeb,0xee,0xee,0x29,0x5c,0x7b,0xde,
+0x08,0x82,0xd6,0xc3,0xc5,0x0a,0xdd,0xbd,0x3b,0x9d,0xbd,0xb6,0xe3,0x6c,0x5e,0x74,
+0x2e,0xd6,0xf5,0x6b,0x1d,0xcf,0x2d,0xe0,0xd0,0x23,0x0e,0x47,0x19,0x06,0xd8,0x98,
+0x91,0xab,0x19,0x8a,0x98,0x30,0x7e,0x1f,0x7b,0x3a,0x5e,0x64,0x6e,0x63,0x10,0x51,
+0x6b,0xd6,0xbc,0xd3,0xd9,0x18,0x1b,0xb0,0x1c,0xa5,0x7e,0xba,0xc0,0x20,0x46,0xb7,
+0x9f,0x2d,0x14,0x75,0xe7,0x9e,0x53,0x97,0xf7,0x9b,0x6a,0xa9,0xc8,0x12,0xf4,0xd2,
+0xa3,0x73,0xcd,0xc2,0x43,0x02,0x0f,0x67,0x7d,0x39,0x40,0x2f,0xd1,0xc9,0xaa,0xd3,
+0xfb,0x46,0xa7,0x97,0xcd,0xaf,0x5a,0x6b,0xbf,0x91,0x6e,0x0b,0x4b,0xe0,0x71,0xd5,
+0x99,0xc5,0x13,0xcf,0x15,0xea,0x72,0x81,0xb1,0xf2,0xb1,0x08,0xf0,0x28,0xbe,0x9d,
+0xc4,0x60,0x73,0x06,0x4b,0xfa,0xa3,0x08,0x16,0xb1,0x0f,0xdf,0xf6,0xcc,0x01,0xbb,
+0xb8,0xf7,0xeb,0x4e,0x23,0x9c,0xe1,0x8c,0x09,0x80,0x75,0x31,0xd9,0xca,0x15,0x1e,
+0x19,0x78,0x0e,0x05,0xd9,0x26,0xb7,0xbc,0xfa,0x6a,0x7b,0x63,0x0d,0xc0,0x2d,0xc6,
+0xbb,0x61,0x05,0xc6,0xd2,0xd4,0x59,0x7d,0xdd,0xc5,0x62,0xa1,0x2e,0xb3,0x00,0x12,
+0xc3,0xa5,0x7e,0x26,0x88,0xc3,0xd6,0xb0,0x21,0x5b,0x1e,0x03,0x57,0x9f,0x4b,0xf2,
+0x9c,0x07,0xfd,0x59,0x3f,0xe8,0xe3,0x52,0x8d,0xc3,0x4d,0x73,0xec,0x68,0x88,0x7e,
+0xaa,0xb9,0xe3,0x19,0xe4,0x0a,0x81,0xfb,0x40,0x27,0x3d,0xeb,0x32,0x44,0x9b,0x40,
+0xbc,0x4f,0x35,0xa2,0x00,0xa6,0x3c,0x9c,0x6a,0x6f,0x79,0x68,0xef,0x2d,0xe7,0x88,
+0x2d,0x1d,0xf5,0x0d,0xad,0x47,0xfe,0x83,0x7e,0xd7,0xc7,0x8c,0x6a,0xe0,0x52,0x90,
+0xe9,0xd5,0x2e,0xa4,0x9b,0x68,0x23,0xd8,0xd1,0x8c,0x1f,0xbd,0x0f,0xc6,0xb9,0x79,
+0xfb,0xc6,0x9b,0xb8,0xfd,0x43,0xdb,0xbd,0xab,0x90,0x03,0x38,0xac,0x52,0x52,0xaa,
+0x81,0x5b,0x25,0xc2,0x5e,0x75,0x6d,0x77,0xda,0xc7,0x61,0xaa,0xa4,0xf1,0xca,0xf4,
+0xc1,0xdd,0xcd,0xf5,0xf5,0xbb,0x8d,0x35,0x09,0xee,0xb1,0x37,0x52,0x41,0x49,0x39,
+0x67,0x22,0x9b,0xac,0x99,0xe1,0x64,0x92,0x17,0x2d,0x27,0xf0,0x4b,0xde,0x03,0x68,
+0x54,0x52,0x1d,0xc5,0xbe,0x2c,0x53,0xe2,0xd9,0x0b,0x99,0xd0,0xc8,0xa9,0xcc,0x96,
+0x97,0x4c,0x33,0xa5,0x24,0x64,0xac,0x56,0x72,0x15,0xb4,0xf6,0x16,0xfa,0x0d,0x2b,
+0xd5,0x1c,0x0b,0x27,0x84,0xf8,0x54,0x65,0x92,0xdc,0x9e,0xf4,0x47,0xd7,0xc6,0x8f,
+0x72,0xe5,0x95,0xc7,0xd5,0x05,0xf9,0x11,0x82,0xb0,0x99,0xab,0x44,0xb2,0x5c,0xd4,
+0xc0,0x68,0x9b,0xcd,0xa6,0x8b,0x08,0x69,0x79,0xba,0xe2,0x46,0x71,0x88,0xeb,0x3a,
+0x06,0xb3,0xcd,0x0d,0x77,0x96,0xc4,0x93,0xcd,0x46,0x73,0xdd,0xe5,0x26,0xf6,0xa6,
+0x8d,0x99,0xaa,0x19,0xbb,0xd5,0x36,0xc2,0xe2,0x59,0x96,0xb6,0xa0,0xc6,0xa5,0x08,
+0xfb,0x8f,0x32,0x84,0xb5,0xa3,0x7b,0x09,0xc2,0xc6,0x0d,0x5e,0x82,0xb0,0x09,0xbe,
+0x7d,0x41,0x84,0x4d,0xcd,0x0a,0x61,0x43,0xf2,0xbc,0x4b,0x1f,0x38,0xdb,0x19,0xc6,
+0x4a,0x35,0xaa,0x3d,0x3a,0x6a,0xb2,0x81,0x04,0x94,0x08,0xd3,0x51,0x2b,0xd5,0x94,
+0x59,0x32,0x32,0x16,0x64,0x71,0x64,0x8a,0x59,0xe7,0x1c,0x99,0x62,0x71,0x27,0xdf,
+0x51,0x0c,0x6e,0x19,0xc2,0x18,0x99,0xb4,0x60,0xe9,0xc8,0x14,0x73,0x9d,0x6c,0x64,
+0x8a,0x59,0x2f,0x8a,0x70,0x7e,0x64,0xe8,0x80,0xb3,0x0f,0x7b,0xa4,0x44,0xce,0x67,
+0x90,0xeb,0x16,0x0e,0x86,0xa4,0xb0,0x85,0x1c,0x02,0x17,0x76,0x22,0x31,0xd4,0x92,
+0xe2,0x16,0x36,0x2d,0x09,0x6a,0x6f,0x3b,0x9a,0x21,0x4e,0xd3,0x48,0x2f,0x7a,0x0a,
+0xa0,0x07,0x70,0x8c,0xf3,0x7c,0x9c,0xcf,0xcb,0xd3,0xca,0x2a,0x94,0x52,0xea,0xf2,
+0x46,0x3a,0xeb,0x2e,0xbf,0xae,0xe6,0x9a,0x99,0x69,0x85,0xaa,0x30,0x9a,0xf9,0x14,
+0x61,0x9f,0x93,0x5a,0x2f,0xe1,0x2f,0x0b,0x05,0xc9,0x4d,0xf1,0xc8,0xd0,0xd8,0x68,
+0x9e,0x30,0xfb,0x4b,0x30,0xc8,0xd8,0x4c,0x8e,0xde,0xa4,0x23,0x00,0x50,0x24,0x10,
+0x67,0x2b,0x6a,0x7b,0x01,0x5d,0x2b,0x2f,0x4f,0x2c,0x2b,0x23,0x45,0x72,0x3d,0xa5,
+0xd5,0xa5,0x0c,0xc7,0x4b,0x46,0x42,0x35,0xaf,0x68,0x11,0x95,0x6f,0x52,0xe3,0x67,
+0xf6,0x08,0x31,0x07,0xb4,0x63,0x89,0x0c,0x00,0x89,0xcc,0xc0,0x6f,0x97,0x0f,0xd6,
+0x8e,0xa9,0xbc,0x33,0x43,0xed,0x8b,0xe6,0xb1,0x36,0x85,0x4c,0x74,0x78,0x2a,0x59,
+0xf3,0x19,0x29,0xd6,0x99,0x5c,0xc5,0xe5,0x39,0x22,0x4d,0xcd,0x08,0xe7,0x0b,0x10,
+0x51,0x2b,0x45,0x76,0x32,0x97,0xb6,0xac,0x03,0xc0,0xcb,0xda,0x96,0xac,0xf3,0xb5,
+0xae,0x6a,0x4b,0xe5,0x85,0x72,0x1d,0x65,0x64,0x02,0x41,0xb5,0xe3,0x28,0x8d,0x2c,
+0x30,0xb3,0x42,0x25,0x70,0xce,0x48,0x40,0x83,0x49,0xee,0x3e,0x54,0xd3,0x48,0xe2,
+0x16,0x4c,0x22,0x43,0x09,0x98,0x9c,0x8f,0x9e,0xc0,0x30,0x30,0xc1,0xe5,0x1f,0x23,
+0x67,0xa9,0xc6,0x93,0x55,0x17,0xe7,0x97,0x9d,0x63,0x31,0x8c,0x9d,0x9c,0x76,0xdd,
+0x9a,0x5b,0x57,0x5e,0xcd,0x53,0xde,0x86,0x27,0xdd,0xed,0xf7,0x92,0x79,0xb5,0x90,
+0xbd,0xa4,0xe9,0x17,0x9a,0x53,0x8b,0x95,0x03,0x21,0x1d,0x1e,0x9e,0x1f,0x7f,0x9d,
+0x68,0x35,0xae,0x53,0xd2,0x2e,0x67,0xbc,0x66,0xad,0xe1,0xeb,0x7a,0x86,0x18,0xb6,
+0x33,0xd5,0x64,0xcd,0x94,0x74,0x59,0x03,0x49,0xce,0x62,0x83,0xf9,0x8e,0x66,0xad,
+0xae,0x67,0xf3,0x72,0x49,0xab,0xaa,0x42,0x34,0x0d,0x4f,0x9a,0x39,0x6c,0x77,0xa1,
+0x70,0xf4,0x2e,0x0d,0x06,0x6c,0xea,0x60,0x40,0xc4,0xf6,0x9c,0x01,0x7a,0xfd,0x5c,
+0xd0,0x1b,0x1a,0x5a,0x19,0x01,0xf6,0x35,0x74,0x58,0x67,0x92,0x38,0x8d,0x58,0xfe,
+0xf1,0xb1,0xa0,0xca,0x7f,0xb4,0x18,0xf4,0x89,0xa9,0x90,0x92,0x00,0x62,0x49,0x6d,
+0x10,0xcf,0x18,0x01,0x69,0x82,0x55,0x3d,0x98,0x1e,0x2a,0x6c,0x55,0x7c,0x4e,0x4b,
+0xa0,0xcd,0xfc,0x4a,0xb3,0x39,0xc9,0xd2,0x17,0xd4,0x0c,0xeb,0x1d,0xaa,0x71,0x59,
+0x6c,0x69,0x01,0xd0,0x0e,0x34,0x75,0xd3,0x1a,0x3e,0xa2,0xe6,0x88,0x69,0x9a,0x26,
+0x2c,0x89,0x6f,0x55,0xa1,0xa9,0x29,0xd4,0x62,0xb1,0x42,0x6b,0x0a,0xef,0x3c,0x3c,
+0x7d,0x3b,0xf0,0xda,0x58,0x9a,0x0a,0xde,0xd8,0x1f,0xdc,0x96,0x02,0x21,0xc4,0x6b,
+0x08,0x87,0xf4,0xde,0x98,0x3e,0xdb,0xc9,0xba,0xdb,0xc8,0xcd,0x44,0x17,0x6a,0x67,
+0x47,0x8c,0x60,0x49,0x7d,0x43,0xe7,0xf5,0xf0,0xda,0x27,0x71,0xcd,0x71,0x64,0x90,
+0xe4,0xbd,0x38,0x8e,0x6e,0x59,0x27,0x95,0xf3,0xde,0x26,0x63,0xea,0xbe,0x80,0x7b,
+0xd7,0xf6,0x2e,0xa4,0x81,0xa1,0x96,0xcd,0x82,0x58,0xd1,0x45,0x7b,0x05,0x64,0xba,
+0x46,0x33,0x63,0x7a,0xf8,0x91,0xd2,0x4f,0xde,0x43,0x80,0xaa,0x45,0xac,0xc5,0x4c,
+0x92,0x2c,0x9f,0x7a,0x95,0x17,0xd1,0x2d,0x2d,0x23,0xb9,0x56,0xa1,0xdb,0x7d,0x44,
+0x15,0x24,0xd3,0xc3,0xf2,0x86,0xec,0xdc,0x92,0x42,0x4b,0x9a,0x32,0xa5,0x8a,0x6d,
+0xc1,0x09,0xc3,0x7b,0xe6,0x76,0xd4,0x25,0x01,0x8b,0x28,0xe6,0xf3,0xad,0xf6,0x50,
+0x02,0xa7,0xc8,0xf2,0xd9,0x25,0xc5,0x4b,0xa0,0xec,0x4a,0x94,0xcf,0xb4,0xbc,0xa3,
+0x3b,0x59,0xe6,0x62,0x91,0x25,0xdd,0xd4,0x65,0x8a,0xbd,0xdc,0x85,0x26,0xa2,0x4f,
+0xb1,0x96,0xb7,0x55,0x00,0xb0,0xda,0xb3,0x72,0x96,0xb4,0x59,0x84,0x60,0xe1,0xeb,
+0xd8,0x0c,0x29,0xb4,0x64,0x92,0x4c,0x76,0xb1,0x36,0xe6,0xa7,0x78,0xbf,0x8b,0xb5,
+0xba,0x9c,0xdd,0x0a,0x39,0xac,0xcd,0x4a,0x2a,0x56,0x5a,0xcc,0x32,0xe0,0x16,0x6d,
+0xad,0x41,0x23,0xb4,0x95,0x53,0x00,0x2e,0xab,0xbb,0x48,0x6f,0xa9,0x61,0x19,0x4b,
+0x2d,0x66,0xb2,0x05,0x8b,0x7c,0x05,0x8a,0x15,0x72,0x0a,0xc0,0x45,0x74,0x2c,0xe8,
+0x94,0x8c,0xb7,0x6e,0xdd,0xc6,0x55,0x21,0xe5,0x84,0x5c,0xc8,0x63,0xfd,0xb9,0xc4,
+0x62,0x0b,0x8b,0x99,0x59,0x11,0x9b,0x10,0x16,0x45,0x55,0x11,0x3b,0x73,0xa1,0x48,
+0xa1,0xd3,0xb9,0x12,0xcc,0xd3,0x05,0x96,0xce,0x34,0x14,0xc8,0xe7,0xb1,0xc0,0x0e,
+0xb7,0x79,0x37,0x36,0x9a,0x1f,0x5d,0xdd,0x29,0xd4,0x5f,0xc8,0x29,0x00,0x17,0xbb,
+0x6c,0x41,0xa7,0x44,0xbd,0x2e,0x77,0x37,0x7c,0x80,0x13,0x5f,0xb8,0x97,0x22,0x0d,
+0x02,0x87,0xdc,0xce,0x67,0xb0,0x66,0x93,0xc2,0xd0,0x86,0x52,0x50,0x95,0x41,0xd0,
+0x9b,0xd8,0x63,0x5c,0x94,0x42,0x56,0x2a,0x81,0xb4,0x54,0xd5,0x3b,0x81,0x16,0x9d,
+0xf3,0x19,0x04,0x7d,0xeb,0xe3,0x8f,0x70,0xa5,0x27,0x3c,0x92,0x2a,0x36,0xdc,0x82,
+0x2d,0xe4,0x94,0x00,0xdb,0x9d,0x2a,0x40,0x47,0x16,0x1a,0xf6,0x1a,0x65,0xd5,0xaf,
+0x71,0xb1,0x73,0xb3,0xed,0x93,0x73,0x2e,0x91,0xff,0x26,0x4b,0x9f,0x71,0x68,0xc9,
+0x69,0x26,0x87,0x77,0x07,0x63,0xcf,0x24,0x3d,0x26,0x20,0x3b,0x03,0x99,0x23,0x14,
+0x1b,0x0f,0x5a,0x6b,0xd3,0xf7,0x10,0xc3,0x9e,0x62,0x38,0xbe,0x56,0xac,0xbc,0xa0,
+0x1d,0x6c,0x3e,0x3e,0x72,0xb1,0xb5,0x87,0xe8,0x7b,0x5e,0xc1,0xe4,0xc0,0xb1,0x6e,
+0x43,0x20,0xc4,0xcc,0x7e,0xb5,0x8f,0xfb,0xcc,0x94,0x67,0x0d,0xee,0x5b,0x60,0x11,
+0x4f,0x4e,0x2b,0x49,0x18,0x0f,0x8e,0x79,0xc7,0x38,0xd2,0x4e,0x2b,0x60,0xe0,0x3c,
+0x7d,0xee,0x42,0xef,0xa1,0xea,0xfe,0xcc,0xae,0x1d,0xee,0xfa,0x5d,0xa2,0x8c,0x6b,
+0x2c,0xf4,0xd9,0x24,0x5e,0x95,0x64,0x2e,0x45,0x6e,0x2b,0xbc,0x25,0x2b,0xa3,0x47,
+0xe1,0xe8,0x9d,0x2e,0xa8,0x68,0x02,0xa7,0xa7,0xe8,0x67,0x72,0x1c,0x06,0x57,0x0f,
+0x16,0x28,0xd1,0xce,0xd1,0x41,0x94,0xad,0xcd,0xa6,0x26,0x27,0x8a,0x2a,0x4c,0xe8,
+0x10,0x3c,0xb9,0x20,0x21,0x36,0x79,0x45,0xad,0x9f,0x3b,0x50,0x29,0x95,0x0b,0x3a,
+0x88,0x81,0xb2,0x51,0xe7,0x2e,0x47,0x01,0xbf,0x45,0x44,0xca,0x70,0xcb,0x6a,0x54,
+0x9a,0x61,0x4d,0x6d,0x1d,0xe0,0xf6,0x65,0x73,0x13,0x4d,0x81,0x18,0xbc,0x6b,0x0f,
+0xde,0xe5,0x28,0x87,0xd7,0xc9,0xc0,0x3c,0x1f,0x93,0x6d,0x0c,0x3a,0x75,0x9e,0xda,
+0xb2,0x3d,0xe4,0x91,0x3e,0x31,0x73,0x5a,0x9b,0x71,0xbe,0xd4,0x89,0x08,0x62,0xb3,
+0xdc,0x6e,0x73,0xb5,0xd8,0x26,0xf6,0xaf,0xfd,0x8c,0x4d,0x79,0x7d,0xa3,0x53,0xcf,
+0x51,0x2c,0xe5,0x75,0x20,0x9f,0x3e,0x7b,0xe5,0x20,0x75,0xe7,0x43,0x9c,0x5d,0x8b,
+0xcf,0x00,0x77,0x9d,0x47,0x53,0xd4,0x40,0xe1,0xee,0x93,0x37,0xb9,0xad,0xfb,0x2e,
+0x76,0xa2,0x63,0xc4,0xa2,0x5a,0xc3,0xe9,0x22,0x40,0x03,0xde,0xfd,0x87,0xbd,0x38,
+0x1e,0x68,0x68,0xe8,0x6e,0xd1,0x20,0xbe,0xc9,0xe4,0x8f,0x99,0xec,0xde,0xd9,0xe3,
+0x5e,0xda,0x19,0xaa,0xba,0xfe,0xfe,0x4d,0x29,0x76,0x1b,0xc7,0x96,0x06,0x3f,0xbe,
+0x3a,0x84,0x98,0xc8,0xf9,0x1a,0xd5,0xb2,0x42,0xeb,0x6f,0xe2,0x43,0x76,0xec,0xec,
+0x38,0xa1,0x12,0xec,0x6b,0xe2,0x24,0x4f,0xa1,0x96,0x5b,0x4c,0x3c,0x57,0x35,0x07,
+0x20,0xbc,0x0c,0x0a,0x56,0xaa,0xc9,0x32,0x72,0xe0,0x6a,0x0d,0x21,0xa8,0x85,0xf8,
+0x2c,0xf1,0xa7,0x89,0x7b,0xe7,0x02,0xef,0x55,0x92,0xf2,0x0b,0xc3,0x61,0x0a,0x9d,
+0xab,0x05,0xc4,0xae,0x9c,0x01,0x1f,0x5c,0x49,0xb0,0x0c,0x1f,0x5e,0x1b,0x54,0x8e,
+0x8f,0x29,0x74,0x26,0x7c,0x0c,0x70,0x01,0x1f,0xb9,0xd7,0xda,0x97,0x0b,0x83,0x18,
+0xd9,0x66,0xee,0x95,0xa4,0x17,0x01,0x6e,0x0b,0x3a,0x8e,0x54,0x62,0x08,0xb5,0x5c,
+0x27,0xf2,0x51,0x27,0x2a,0x9d,0xcf,0xa4,0xab,0x37,0x64,0x05,0x7e,0xf2,0xc9,0x01,
+0x36,0xdb,0x71,0x0d,0x3a,0xea,0xc9,0xde,0x54,0x16,0xcd,0xce,0x01,0x0f,0x6c,0xaa,
+0x3c,0xf3,0xaa,0x33,0xa1,0xb3,0x9b,0x0c,0x3c,0xaa,0x44,0xa2,0xa1,0x13,0x35,0x46,
+0xa8,0x93,0x4f,0xeb,0x56,0x2a,0x82,0xd0,0x8c,0x57,0x77,0xc3,0x4a,0x46,0xb4,0x99,
+0x49,0xbe,0x64,0x25,0x23,0xac,0xcc,0x24,0x5f,0xb6,0x92,0x11,0x3f,0xc6,0x64,0xd3,
+0x5b,0xfd,0xa8,0x12,0xe1,0xb7,0xd3,0x90,0xe2,0xd4,0x23,0x9c,0x89,0xef,0xd2,0xe9,
+0xe6,0x15,0xf0,0x03,0xed,0x76,0x63,0x8e,0x79,0xd6,0xc9,0xa6,0x72,0x26,0x6b,0x5a,
+0xf2,0x11,0x33,0xc0,0x00,0xe3,0x11,0xb0,0x7a,0xc7,0x87,0x89,0xfa,0x11,0x89,0x0c,
+0xca,0x62,0x0a,0x7f,0xf1,0xea,0xd3,0xc4,0xe4,0xbb,0x3c,0x20,0x41,0x5d,0x4a,0xca,
+0x14,0xf5,0xc4,0xa4,0x77,0x51,0xbb,0xa4,0xf0,0x81,0x09,0xd7,0x94,0x65,0x2b,0x69,
+0xfa,0x19,0xc9,0x8c,0xdb,0x62,0x12,0x7f,0xf1,0xca,0xee,0xd1,0x95,0x9b,0xdd,0x9f,
+0x5b,0x16,0xc5,0x95,0x4b,0x33,0xb7,0x83,0x21,0xaa,0x3d,0x77,0x0c,0xad,0x24,0xce,
+0x4b,0x54,0x4c,0x77,0xbd,0xa9,0xd7,0xe8,0x32,0x9f,0x80,0x9b,0x4b,0x5c,0x56,0x77,
+0x0e,0x08,0x9e,0xee,0x91,0xb9,0xf5,0x4e,0x62,0xc4,0x5a,0xdc,0xf5,0xb6,0x4f,0x4c,
+0xa6,0x3a,0x59,0x0e,0xc1,0xb7,0x75,0x58,0x97,0x94,0x71,0xb5,0xa6,0xd4,0x40,0xd5,
+0xc9,0x98,0x71,0x06,0xdc,0x28,0x97,0x25,0xde,0x5b,0x3c,0x50,0x67,0xc5,0x72,0xc9,
+0x2c,0x95,0xb5,0x58,0xaf,0x9c,0x47,0x25,0x55,0xe9,0x25,0x3f,0xab,0x09,0xa1,0x34,
+0x56,0x41,0x2e,0xf3,0x9e,0xbf,0xa4,0x60,0x01,0x07,0x94,0x74,0xf4,0x06,0x5e,0x51,
+0x77,0x60,0x9c,0x87,0x77,0xd3,0x4f,0x7a,0xd8,0xd3,0x7d,0x94,0xd7,0xc4,0x74,0x09,
+0x17,0xe1,0xd2,0x10,0x3a,0x6a,0x9b,0xf2,0x84,0xe2,0xb8,0x18,0x5f,0xd0,0xd3,0x9a,
+0x1f,0xeb,0x93,0x0b,0x05,0x50,0x5c,0x88,0x8b,0x8b,0xfb,0xb7,0xfd,0xb6,0xb3,0x8a,
+0x00,0x2c,0x07,0x01,0x6c,0xd2,0xa6,0x1f,0xf0,0x93,0x08,0x92,0x1d,0xaa,0x94,0xc9,
+0xf8,0x61,0x15,0x2e,0xfb,0x5c,0x4d,0x46,0x4f,0x43,0x50,0x8c,0x02,0x9a,0xe2,0xa8,
+0x66,0x54,0xf5,0x5f,0x09,0xd5,0xe5,0x91,0x1c,0x3a,0x5c,0xc6,0xef,0xaf,0xfa,0x7f,
+0x15,0xd6,0xd6,0x42,0xc4,0xba,0x39,0x08,0xc9,0xfa,0xab,0x10,0x9f,0x8a,0x50,0x41,
+0x12,0x5b,0xa5,0xd5,0xb5,0x6a,0x00,0x64,0x3c,0x1a,0x63,0x14,0x2c,0xca,0x8a,0xe6,
+0xe5,0x05,0x88,0x15,0xcb,0x77,0xc8,0xa0,0xb1,0xdd,0x6c,0x3b,0x0d,0x14,0x13,0x25,
+0x8b,0x27,0x0c,0x27,0xdc,0x6e,0x91,0x05,0x39,0x25,0x8f,0x52,0xb4,0x1e,0xc3,0x4b,
+0x83,0xdd,0x82,0x69,0xa5,0x23,0x3e,0x65,0x01,0x41,0x24,0x98,0xf0,0x1e,0xfc,0xbb,
+0xc1,0x41,0x80,0xb0,0xa8,0xd9,0x26,0x22,0x15,0x42,0x7f,0x14,0xc6,0x03,0x46,0x49,
+0xe1,0x0d,0x7e,0x28,0xc4,0x23,0x60,0x83,0xbd,0xab,0xfc,0xa4,0x9d,0x05,0xed,0x86,
+0x8b,0x3f,0x4e,0xe5,0xf2,0x07,0x0a,0x55,0x07,0xea,0x4a,0x3f,0x29,0xd4,0x8e,0x4a,
+0x19,0x30,0x63,0xf5,0x2b,0x87,0x69,0xb5,0x83,0xa0,0x81,0x12,0xae,0x2b,0xae,0x65,
+0x16,0xfb,0xf1,0x64,0x80,0x8b,0x8b,0xd5,0xad,0x8f,0x29,0x74,0x18,0x37,0xe7,0x43,
+0x85,0x4f,0x63,0x0c,0x62,0xe2,0x84,0x43,0x3a,0xd4,0xb7,0x70,0x92,0xb8,0xeb,0xde,
+0xf1,0xf7,0x1a,0xe1,0x78,0x84,0x0e,0xf1,0x58,0xb1,0x1b,0x13,0x18,0x13,0x46,0xe0,
+0xae,0xab,0x58,0x2d,0x5c,0xbe,0x99,0x4f,0xa8,0x22,0x3c,0x07,0xb1,0xfb,0xfc,0xe2,
+0x89,0xe2,0x64,0x5e,0x05,0x42,0x3a,0x76,0x45,0x8b,0x42,0x78,0x62,0x11,0x4d,0x54,
+0x51,0x4c,0xc2,0x91,0xea,0x0e,0xef,0x10,0x41,0x55,0x10,0x50,0xbe,0x1e,0x21,0x9c,
+0xde,0x19,0xf1,0x40,0x31,0xba,0x5f,0xd2,0xfb,0xa2,0xaa,0x64,0xf5,0xbe,0xf6,0x38,
+0xd5,0x54,0x79,0xfa,0xfc,0x81,0x71,0x56,0xc3,0x30,0xa2,0xbd,0x23,0x03,0xce,0xc9,
+0xd4,0x10,0xd5,0xeb,0x7a,0x8c,0xbd,0x4a,0xa5,0x34,0x8b,0xba,0x80,0x73,0x15,0x76,
+0xce,0xb6,0xa0,0x15,0xc5,0x89,0xdf,0x1f,0xac,0xac,0x48,0x05,0x19,0x98,0x4a,0xde,
+0x82,0x25,0xa3,0x33,0xc6,0x13,0x84,0x7f,0x14,0x69,0x74,0x36,0xa2,0x2d,0xed,0xa3,
+0xd6,0xbb,0x72,0x1d,0xbc,0xf4,0x3a,0x2f,0x6d,0xc0,0x9a,0xb2,0x83,0x35,0xa3,0x80,
+0x16,0x15,0xc6,0xcb,0x30,0x7f,0x96,0xe6,0x63,0x84,0x4e,0x6a,0x4c,0xd4,0xb3,0x5c,
+0x6b,0x1c,0xcf,0x00,0x57,0x63,0xc2,0x05,0xc8,0xf6,0x38,0x75,0x7c,0x74,0xca,0xbc,
+0x63,0xd8,0x34,0x26,0x2d,0x5a,0x5d,0x08,0x44,0xc1,0x38,0x0e,0x12,0xe0,0xcd,0x27,
+0x46,0x10,0xe8,0x47,0xf8,0x42,0x7d,0x79,0xac,0x5e,0xbe,0x22,0x01,0x2b,0xcb,0x45,
+0xdd,0x85,0xfc,0x84,0xd6,0x02,0x6e,0xab,0x59,0xe3,0x55,0x09,0x97,0x5f,0x95,0x03,
+0xcd,0x42,0x73,0x23,0xc3,0xb2,0x29,0xff,0xe4,0x49,0xb0,0xed,0x5d,0x7e,0x7d,0x65,
+0xe5,0xca,0x6b,0xdb,0x44,0xe6,0xc5,0x98,0xb8,0x94,0x46,0x32,0xf2,0x16,0x69,0x18,
+0xc4,0x96,0xf1,0x14,0x63,0x26,0xe5,0x34,0x33,0xae,0x8d,0xa5,0x06,0x44,0xb5,0x4c,
+0x1b,0x8e,0xc6,0x74,0x56,0x47,0x34,0x6e,0xd3,0xfc,0x0d,0xf2,0x86,0x1a,0x4d,0xe2,
+0xcd,0xd5,0x5c,0x97,0x98,0xa4,0x18,0x4b,0xd7,0x06,0x56,0xc5,0x7d,0xb7,0x57,0x9a,
+0x5a,0xe8,0xaa,0xca,0x70,0xc2,0xbd,0x6c,0x38,0xa9,0x29,0x67,0x98,0x62,0x55,0x29,
+0x60,0x04,0x32,0xea,0x73,0xe0,0xb8,0x3c,0xcb,0x9f,0xee,0x2a,0x7c,0x15,0xd5,0x35,
+0x28,0xd4,0x07,0x28,0x75,0xb8,0xab,0x4e,0xb0,0x32,0x89,0x65,0x8d,0x29,0x4c,0xec,
+0xe6,0xc8,0x32,0x3a,0x80,0x52,0x05,0x45,0x5b,0x64,0x12,0xa9,0x8d,0x8f,0x06,0xc1,
+0xc9,0x80,0x53,0x4c,0x1c,0x50,0x1f,0x76,0xbd,0x9e,0x42,0xc6,0xf0,0xf6,0x95,0xa1,
+0x96,0x11,0x4c,0x03,0x68,0x34,0x14,0x29,0xd2,0xd5,0x10,0xbb,0xf2,0xf2,0xdc,0x19,
+0x40,0xd1,0xa9,0x36,0xde,0x78,0xc5,0x46,0x59,0x60,0xd3,0xa5,0x8d,0x39,0x2d,0x3b,
+0xdb,0xc4,0x5c,0x61,0x15,0x37,0x54,0xb0,0x54,0x02,0x44,0xc9,0xca,0xb1,0x1a,0xdc,
+0xa3,0xb0,0x38,0x16,0xb5,0x23,0x59,0x10,0xaf,0xff,0xdd,0x7b,0xf7,0x3e,0x7e,0xf3,
+0x9a,0xa7,0x7f,0x9f,0x3c,0x79,0x7c,0xd4,0xd2,0xcf,0x0d,0x91,0xf5,0xde,0x63,0x88,
+0xbc,0xcd,0x4c,0x2a,0x15,0x8c,0xc2,0x76,0xda,0x9e,0x9c,0xe9,0x72,0x71,0x4b,0x2f,
+0x4c,0x73,0x9c,0x72,0x5b,0xa7,0x0d,0x5d,0x00,0x86,0xb0,0x84,0x6c,0xaf,0x1d,0x6d,
+0xe6,0x0b,0xf1,0x3e,0xe3,0x12,0xe1,0x19,0x02,0x6d,0x15,0x80,0x96,0x35,0xaf,0xde,
+0x05,0x31,0x63,0x96,0x9e,0x88,0x41,0x09,0xfc,0x09,0x48,0x50,0x26,0x16,0x24,0x38,
+0x91,0x80,0x81,0xda,0x4f,0x2c,0x9c,0xd3,0xdb,0x0b,0x7c,0x0f,0xb2,0x64,0x53,0xf3,
+0xa2,0xac,0x35,0xe8,0x34,0xec,0x36,0xe8,0x67,0x32,0x77,0xd5,0x23,0xa4,0xd9,0x6c,
+0x1a,0x6a,0x7f,0xcf,0xa2,0x88,0x2d,0x99,0xe5,0x36,0x37,0xea,0x8b,0x12,0x8a,0x2b,
+0x15,0xef,0x11,0x61,0x5d,0x9c,0x2b,0xb7,0xa6,0x88,0x60,0x47,0xc8,0x1d,0xfc,0x8c,
+0x52,0x59,0x21,0xcd,0xae,0x0d,0x32,0x4d,0x74,0x80,0x6b,0xa2,0x14,0xe0,0xa0,0x28,
+0x2b,0x39,0x62,0x60,0xef,0xae,0xa0,0x9d,0xeb,0x25,0x4e,0xbe,0x3d,0xbc,0x27,0xb4,
+0x6e,0x08,0x09,0x8c,0x12,0xc5,0xb3,0x05,0xaa,0x6b,0xe6,0x48,0x25,0x63,0xf8,0x1a,
+0x23,0xc8,0xd7,0x5d,0xa8,0xa7,0x98,0x14,0x81,0x44,0x95,0x9b,0xad,0x49,0x28,0xef,
+0xd0,0x02,0x0c,0x57,0xa9,0xaf,0x5e,0x79,0x8f,0xc1,0xb3,0x56,0x6b,0x66,0xd9,0xc7,
+0x92,0x29,0xba,0x4c,0xd7,0xed,0xb5,0x1c,0x7d,0x83,0x43,0xea,0x15,0xe4,0xe9,0x80,
+0xae,0x28,0x39,0x3c,0x50,0xe0,0x76,0x79,0xe6,0x97,0x7c,0x5f,0xed,0x52,0x25,0x96,
+0xa7,0x5a,0x7d,0xe3,0x32,0xbe,0xd0,0xf5,0x6a,0x93,0xff,0xcb,0x77,0xba,0x7a,0x5e,
+0x37,0xff,0x61,0x2e,0x2b,0xc8,0x51,0x7d,0x97,0xcc,0x7c,0x13,0x6c,0x14,0xa2,0x07,
+0x1f,0x7e,0x70,0x83,0xe1,0x22,0x38,0x23,0x01,0xe5,0x27,0xa8,0xd5,0xab,0xbd,0x76,
+0xee,0x2b,0x5f,0x3d,0x2a,0x64,0xf5,0x6a,0xc4,0x54,0xa8,0x64,0x3d,0xc4,0xe5,0xe3,
+0x7b,0x29,0x4c,0x8a,0x99,0x14,0x8d,0x87,0x3e,0x22,0x87,0xb4,0xe2,0x56,0xaf,0x76,
+0x98,0x38,0xc3,0x05,0xd6,0x53,0xdc,0xf3,0x0d,0x30,0xa1,0xb5,0xd5,0x6f,0xeb,0xe0,
+0x71,0xee,0x0a,0x73,0xf9,0x60,0x9a,0xfe,0x02,0xda,0x5a,0xeb,0xee,0x6c,0x0d,0xe7,
+0x1b,0xf8,0xb9,0x34,0x7e,0x18,0x4d,0x3e,0x94,0x06,0x6d,0x32,0x90,0xcf,0xa4,0xb9,
+0xb2,0x70,0x41,0x35,0x50,0xe1,0x95,0xf2,0x7d,0xb3,0x9a,0x89,0xcb,0xc5,0xd2,0xb2,
+0xd0,0x27,0x1d,0x5f,0x6c,0x3e,0x6e,0x55,0xc7,0xe7,0xb5,0xb4,0x06,0x0b,0x41,0xa3,
+0xd9,0x8d,0xc1,0xc2,0xb8,0x86,0x25,0x1e,0x58,0xa8,0xaa,0x33,0x9b,0x60,0x09,0x35,
+0x82,0x24,0xb9,0x12,0x81,0xa9,0x70,0xc8,0x91,0xb3,0x1a,0x58,0x24,0xc2,0x57,0x5c,
+0x48,0xa2,0x30,0x47,0xa2,0x50,0x12,0x2d,0xea,0xea,0x0f,0x9d,0xad,0xe2,0x43,0x67,
+0xab,0x85,0xcf,0x9c,0x81,0x72,0x19,0x0b,0x7d,0x98,0xf4,0x07,0xe0,0x74,0xc3,0x51,
+0x7c,0x85,0x98,0x3a,0x90,0xab,0xe0,0x73,0x08,0x2b,0x5e,0x0a,0xd5,0xe5,0xef,0x0c,
+0xb6,0x0e,0x70,0xcf,0x7b,0xcf,0x9f,0xbd,0xff,0x70,0xc4,0x49,0x83,0xc0,0xef,0xc3,
+0x6a,0x08,0x29,0x7e,0xc1,0xbf,0x13,0xee,0x51,0x98,0xe3,0xc7,0x0b,0xf0,0x07,0xe3,
+0xf4,0xb2,0x55,0x53,0x3a,0xe3,0xd3,0xae,0xa2,0xf3,0x7a,0x46,0x9b,0x2f,0xe3,0x61,
+0x26,0x19,0x84,0x76,0x61,0x71,0xd8,0xb3,0xce,0x88,0xbb,0x8a,0xcf,0x30,0x70,0x11,
+0xe0,0x70,0x93,0x29,0x32,0xce,0x78,0x98,0x21,0x7d,0x51,0x72,0x3a,0x90,0xdb,0xb6,
+0x11,0x4f,0x01,0xe3,0x3a,0x68,0x58,0x6f,0x4f,0x9e,0x98,0xaa,0x10,0x11,0xaf,0x85,
+0xfa,0x78,0x74,0x4f,0x54,0x45,0xcc,0x08,0x00,0x5b,0x6f,0x4b,0x80,0xa9,0xc5,0x2b,
+0x40,0x3e,0x15,0x80,0x20,0x1f,0xc6,0x83,0x3b,0xbc,0xf3,0x6a,0x4f,0x34,0x4e,0x48,
+0x18,0x42,0xe1,0x3b,0x65,0x7d,0xc8,0xed,0x54,0x16,0x01,0xc8,0x43,0xfb,0xd4,0x16,
+0xb5,0x4d,0xea,0x3d,0xa6,0xef,0x00,0x73,0x66,0x53,0xb1,0x8e,0x8f,0xbb,0xeb,0xb3,
+0xf3,0x19,0x6a,0x1c,0x7c,0xb3,0xca,0x34,0x38,0x62,0x08,0x0a,0x36,0xf4,0x12,0x19,
+0x03,0xf6,0x37,0xef,0x8a,0x32,0xe0,0x77,0x93,0x40,0x82,0x52,0x1f,0x57,0x43,0x5c,
+0x8d,0x5c,0x4a,0x8f,0x83,0x49,0x36,0x42,0x7a,0xa0,0x61,0x94,0xdd,0xd9,0xa3,0xa1,
+0x15,0x71,0x94,0xaf,0xe1,0x03,0x0d,0x08,0x41,0xbe,0x7d,0x30,0x99,0x8c,0x71,0x8b,
+0x0e,0xee,0xd2,0x32,0x11,0xf4,0x1d,0xce,0x24,0x0f,0x12,0x4f,0x3e,0x73,0x38,0x43,
+0x40,0x7c,0xab,0x83,0x28,0xfa,0x10,0x71,0xdc,0x33,0x46,0xa4,0x48,0x8c,0xe1,0x6d,
+0x1e,0xd5,0xb8,0x0d,0x5f,0x66,0x52,0x95,0x0c,0x98,0x15,0x00,0xc4,0x7d,0x00,0x38,
+0xcf,0x1f,0x45,0x5a,0x05,0x71,0xc5,0x9d,0x92,0xbb,0xed,0xc9,0x34,0x02,0xcd,0xa0,
+0x15,0xc3,0x30,0x69,0xf9,0xa8,0x9a,0x27,0xa9,0x22,0x7c,0xab,0xd0,0x07,0x6b,0x91,
+0x95,0x17,0xd0,0xb3,0xfb,0xa2,0xe9,0xbc,0x84,0xd9,0x56,0x56,0x4a,0x32,0xb2,0x7d,
+0x04,0x7c,0x30,0x08,0x76,0x6b,0xdc,0xe9,0x8f,0xb0,0xd9,0x95,0x1e,0x4c,0x48,0x05,
+0x01,0xb8,0x3c,0x2d,0x5e,0x5c,0x9f,0x9f,0x3c,0xc9,0xb2,0x32,0x63,0xc6,0x44,0x5b,
+0xbb,0xe4,0x84,0x0c,0x4d,0xfd,0x45,0xc5,0x18,0xf6,0x0f,0x84,0xb5,0xdb,0x77,0xef,
+0xbb,0xfb,0x2e,0xe2,0xd2,0xdd,0x11,0x3e,0x26,0x07,0x97,0x34,0xf8,0x28,0xdc,0xc3,
+0x27,0xe5,0x22,0x91,0xcd,0xb4,0xc1,0x71,0xa4,0xeb,0x13,0x2c,0x1d,0x98,0x3a,0x1f,
+0x7e,0xf0,0x6e,0x32,0x7e,0xc7,0xc7,0x31,0x57,0x73,0xa5,0x01,0x22,0xdb,0x55,0x96,
+0x98,0x62,0x6f,0x4d,0xc7,0xc3,0xff,0x74,0x80,0x68,0x07,0xfd,0x31,0x45,0x94,0x1c,
+0x5b,0xb3,0x04,0x7d,0x18,0xb0,0x09,0xee,0x2f,0x2a,0x5e,0x41,0xdd,0xbc,0xf3,0x7b,
+0xd8,0x1e,0x6e,0x0e,0xda,0x03,0xe1,0xc1,0xf4,0x40,0xd3,0x94,0xe3,0xe0,0x4d,0xee,
+0x4c,0xf7,0x5a,0x53,0x8c,0x04,0xb8,0x03,0x27,0xc6,0x1c,0xdc,0xf4,0x87,0x3f,0xfa,
+0x7c,0x5a,0x86,0x0f,0xdc,0xee,0x23,0x85,0x88,0xa0,0x87,0xd7,0x98,0xac,0xd4,0x5b,
+0x59,0xf9,0xc4,0x93,0xd3,0x67,0x58,0x7f,0xe8,0xb9,0x8f,0x3c,0x5c,0x3b,0x78,0x0f,
+0xc7,0x14,0x20,0x97,0x61,0x40,0xd3,0x04,0xef,0xa1,0xdc,0xcb,0xb0,0xa6,0xb5,0x59,
+0x3d,0xc3,0x0c,0xbd,0x0f,0x29,0x75,0xdf,0x03,0x08,0xca,0xfb,0xac,0x67,0x87,0x1b,
+0x54,0x55,0x38,0x3f,0x95,0x75,0x07,0xbe,0xe6,0x05,0x6a,0x56,0x16,0x6e,0x09,0x57,
+0x59,0xb7,0x70,0xda,0x48,0x2e,0x57,0x1b,0x37,0xf4,0xcc,0xf2,0xf6,0x59,0x93,0x62,
+0x3e,0xd4,0x20,0x11,0xfb,0x16,0xe3,0xc9,0x46,0x9a,0xe6,0x9c,0x54,0x4a,0x60,0x90,
+0x70,0x97,0x56,0x6f,0xfc,0x70,0x87,0xf1,0xfd,0x71,0x84,0x5b,0x9f,0x09,0x77,0x74,
+0x04,0x9b,0x99,0xdf,0x6b,0xe8,0x83,0x94,0x0c,0x00,0x7a,0x19,0x9f,0x7b,0x94,0xee,
+0xf4,0xc5,0x4a,0x51,0x5d,0xc1,0x73,0xbb,0xba,0xbf,0xb2,0xb2,0x8f,0x23,0x74,0x00,
+0xc4,0x9c,0x82,0x40,0xda,0x51,0xd3,0x1c,0x15,0xed,0x53,0xff,0x00,0x0b,0x95,0xf5,
+0xc9,0xce,0x29,0x74,0x09,0x23,0x69,0x3a,0xd4,0xaf,0x6d,0x5e,0x40,0xfd,0xf7,0x29,
+0x79,0xb3,0x9a,0x2c,0x6c,0xee,0xc3,0x27,0x64,0x51,0xca,0xae,0x95,0x50,0x59,0xb6,
+0xa2,0x96,0x55,0x35,0xb2,0xc6,0x14,0x86,0x22,0xbd,0xd4,0xaa,0x4b,0x21,0x92,0xb1,
+0xaf,0x39,0xc3,0x43,0x5f,0x83,0x10,0x20,0x90,0x6f,0x81,0x5e,0x88,0x6b,0x49,0x0f,
+0x72,0xa3,0xc2,0x09,0x2b,0x17,0x92,0x55,0x9d,0xf7,0xc6,0x15,0x18,0x13,0xbc,0x63,
+0xa3,0x32,0xa4,0xc7,0x04,0x3b,0x95,0x95,0x04,0x95,0xc5,0x09,0x3e,0x31,0x51,0xe9,
+0xd0,0x4d,0xd4,0x80,0x83,0x04,0x8c,0xb5,0xb0,0xb7,0x27,0xb4,0x51,0x7b,0x6a,0x28,
+0x81,0x43,0x0e,0xd8,0x51,0x70,0x0e,0xb0,0xc9,0x01,0xc6,0xb2,0xb7,0xf9,0x4a,0x1b,
+0xd5,0x25,0x2a,0xf8,0x40,0x65,0xac,0x9a,0xe1,0x12,0x86,0xeb,0x0f,0x75,0xeb,0x6c,
+0xd4,0x88,0x0a,0xa8,0x02,0x08,0xa9,0xcb,0x56,0xa5,0x4c,0x1e,0xc0,0x19,0x4b,0xb5,
+0xc3,0x62,0x82,0x8c,0x08,0xf0,0x62,0xa5,0x0a,0x17,0x0f,0x20,0x91,0xa1,0x63,0xcc,
+0x0c,0x35,0x7d,0x21,0x15,0x7b,0xf6,0xea,0x03,0x9e,0x21,0x38,0xf6,0x9b,0x6c,0x46,
+0xe8,0xb8,0x3d,0x33,0xa0,0x39,0x86,0x50,0x93,0x21,0x37,0x7e,0x2d,0x4e,0x93,0xc2,
+0x48,0x83,0x10,0x39,0x8e,0xd7,0xb3,0xa7,0xcf,0x75,0xb2,0x30,0x0e,0x56,0x17,0x2a,
+0x50,0x63,0x2f,0x26,0x15,0x08,0xb9,0x48,0x4e,0xe4,0x55,0x30,0xad,0xc6,0x61,0x1f,
+0x6b,0x60,0x54,0x79,0xd8,0x4f,0x7a,0xa4,0x50,0xa3,0x22,0x5e,0x5d,0x3e,0x56,0x38,
+0x85,0x2b,0xd8,0xa1,0x52,0xc0,0x7d,0x8e,0x97,0x59,0xcd,0x52,0xec,0x3d,0xf4,0x3c,
+0x27,0x64,0x78,0x0b,0x9d,0xf9,0xc8,0x6d,0x87,0x23,0xd6,0xb3,0x97,0x57,0x43,0x0d,
+0x2a,0xa5,0x81,0x56,0x90,0x21,0xa7,0xc2,0x05,0x2f,0x93,0xdc,0xf9,0xe7,0x5a,0x24,
+0xcb,0xe8,0x9f,0xdd,0x82,0xa1,0x58,0x50,0x8d,0x00,0x6a,0xd1,0x73,0x92,0x67,0x64,
+0xf5,0x19,0x1c,0x11,0x1c,0xd8,0xf2,0xc9,0x4f,0x07,0x3b,0x33,0x95,0x2a,0x6a,0x32,
+0x1c,0xa9,0xb3,0xcb,0x4a,0x3e,0x66,0x4d,0xc2,0x95,0x26,0x3e,0x11,0xe1,0xfb,0x50,
+0x94,0x38,0x07,0x3a,0xdd,0x2e,0xf8,0x59,0xf1,0x30,0x3c,0x6f,0x11,0x0f,0xa1,0xa9,
+0xef,0xf4,0xba,0x48,0x34,0x0b,0x1a,0x57,0xcd,0xc8,0xac,0x95,0xa2,0x7f,0xf2,0x6d,
+0x51,0xff,0xdc,0xc4,0x95,0x0e,0x86,0x2f,0x8d,0xfe,0xc9,0x2f,0x9d,0xca,0xb1,0xb6,
+0x52,0xb5,0xd3,0x8c,0x85,0xd2,0x1d,0x52,0xaa,0x5b,0x58,0x43,0x68,0x09,0xde,0x9c,
+0xad,0x22,0xb7,0xcb,0x50,0x87,0xed,0x10,0x79,0x9d,0x32,0xd4,0x79,0x64,0x2e,0xc2,
+0xd1,0xb7,0x16,0x0f,0xcb,0x01,0x75,0xce,0x3d,0xbe,0xdb,0x6a,0x33,0xd1,0x7e,0xcc,
+0x44,0xda,0x03,0x38,0xbf,0x8b,0x0f,0x34,0x62,0x22,0xa8,0x6f,0xb1,0x92,0x0c,0x01,
+0xa2,0x47,0xf7,0x8f,0xe8,0x5a,0x8c,0x39,0x57,0x70,0x68,0x4b,0xc3,0xe9,0x9b,0x3b,
+0x31,0x66,0xaa,0x1c,0xbe,0x2c,0x84,0x2e,0x60,0xe7,0x42,0x93,0x15,0xb3,0x86,0x1d,
+0x73,0x1d,0xdc,0x53,0x77,0x84,0xd5,0xff,0x34,0xcd,0xc8,0xd2,0x74,0x7c,0x17,0x4b,
+0x4b,0x7f,0x68,0x11,0x42,0xee,0x3d,0x55,0xcb,0x62,0xa6,0x7d,0xe1,0xbc,0x43,0x7f,
+0x68,0x68,0xce,0xd3,0x0f,0xfd,0x21,0xce,0x53,0x2b,0xdf,0xd7,0xda,0xcf,0xee,0xce,
+0xea,0x4f,0xf0,0xef,0xe5,0xb5,0xae,0x11,0x17,0xe4,0x2a,0x7c,0x80,0x08,0xa7,0x0c,
+0x03,0x57,0x8c,0x92,0x11,0x62,0x7c,0xb0,0x43,0xf6,0xf3,0x58,0xd5,0x9c,0xb5,0x67,
+0xc4,0xa4,0xb7,0x76,0x77,0x86,0x3a,0xec,0x2a,0xa4,0x95,0x80,0x97,0x4d,0xa9,0xaa,
+0x70,0xc3,0x0f,0x8e,0x75,0x89,0x6a,0x23,0x62,0x2f,0xab,0x44,0x96,0x26,0x62,0x13,
+0x8a,0xf1,0xf6,0x41,0xdc,0x7d,0xf3,0xd1,0xa4,0xea,0xdc,0xbd,0x1b,0xc8,0x9d,0xb3,
+0xfc,0x75,0x9d,0xdc,0x0d,0xd5,0xfa,0x2a,0xe7,0xd0,0xc4,0x73,0xa4,0x3a,0x88,0x59,
+0x6f,0xb2,0xca,0x65,0x0e,0x59,0x2b,0x28,0xdf,0x31,0x46,0xf6,0x95,0xae,0x9a,0x22,
+0x56,0x12,0xae,0x0c,0xe6,0x11,0x73,0x60,0x6b,0xcd,0xa0,0x42,0x9d,0x16,0x38,0x66,
+0x67,0x81,0x42,0x76,0xfd,0x05,0x0a,0xa8,0xd5,0x46,0x5b,0x07,0x90,0xc3,0xe9,0x1a,
+0x90,0xd5,0x2f,0xbe,0x12,0x19,0x49,0xdc,0xf2,0xd2,0x0e,0x53,0xff,0x06,0xa4,0x47,
+0x4e,0x84,0xa7,0x45,0xcd,0xd8,0x2e,0xcb,0xa7,0x69,0x0e,0xa3,0x1b,0xde,0xbb,0x57,
+0xb2,0xe3,0xa5,0x11,0x94,0x61,0xf0,0x30,0x57,0xb2,0x1c,0xc9,0xc1,0xa6,0x29,0xc9,
+0xa1,0x01,0x15,0xea,0x34,0xe1,0x28,0x01,0x3f,0xae,0xd2,0x6c,0x75,0xcc,0xac,0xe1,
+0x97,0x47,0x71,0xbf,0x36,0xdf,0xb3,0x38,0x02,0x28,0x2f,0x51,0x63,0x72,0x00,0x45,
+0x8e,0xe9,0xd9,0x72,0x24,0x66,0x6e,0x99,0x2a,0x97,0xa3,0x41,0xed,0x31,0x70,0x46,
+0xe8,0x4e,0xe1,0x56,0x47,0x61,0x5c,0x38,0x8a,0xb8,0xa2,0xf2,0xc6,0x14,0x7f,0x1a,
+0x42,0x7f,0x32,0x4f,0xe9,0x94,0xe5,0xc9,0x41,0x6c,0xfb,0x3c,0x96,0xaf,0x8a,0x0b,
+0x90,0x16,0x31,0xeb,0xb8,0xa5,0x48,0x49,0xaf,0x15,0x4b,0x7a,0xe1,0x4b,0xc8,0xb0,
+0x9e,0xe3,0x3d,0x9c,0x73,0x15,0x11,0x00,0x0d,0x8e,0x87,0xda,0x35,0x24,0x3e,0x32,
+0xee,0x46,0x58,0x42,0xe5,0xee,0x9d,0x88,0x9f,0x14,0x37,0x12,0x0c,0xcf,0xd9,0xd7,
+0xc5,0xe9,0x29,0x49,0x95,0x45,0xab,0x2f,0x70,0x61,0xd9,0xbe,0x20,0xa3,0xd5,0xea,
+0x29,0x08,0xee,0xc4,0x07,0x9a,0x60,0xe0,0xc0,0x8c,0x32,0xa7,0x20,0x5f,0x62,0x83,
+0x1e,0xfb,0x10,0xb6,0x8d,0x6c,0xc4,0x0e,0x4d,0x6d,0x33,0x30,0x93,0x34,0x12,0x22,
+0x52,0x0d,0x3d,0x73,0x43,0xd8,0xf3,0xd2,0x68,0xcb,0x84,0x00,0xd5,0xe0,0x24,0x50,
+0x8f,0x29,0x6d,0xe8,0x8d,0x71,0x0b,0x06,0x8e,0xd5,0x80,0x11,0xb4,0x40,0x96,0x97,
+0x6e,0xae,0xb7,0x2f,0x3a,0x95,0x61,0x1c,0xf5,0x7d,0x44,0xac,0x23,0xd2,0x06,0x5f,
+0xb5,0xab,0xac,0x6d,0xdf,0x1d,0x5d,0xc4,0xf1,0x61,0xf9,0xcd,0x3e,0x17,0x25,0x75,
+0x56,0x2f,0xde,0x1d,0x6d,0x0d,0xfa,0xa3,0xfd,0x0a,0x2e,0xf1,0x44,0x11,0xda,0x50,
+0x33,0xda,0x50,0x8e,0xfe,0x48,0xd5,0x45,0x48,0x4d,0x3a,0xd5,0x32,0x0c,0x3e,0x38,
+0xc0,0x7e,0x54,0xaa,0xb1,0x5a,0xb2,0xc2,0x20,0x50,0x68,0x7f,0xfb,0xe2,0xa6,0x83,
+0xab,0x02,0x52,0x53,0x25,0x6b,0x57,0x5a,0xab,0x70,0x8b,0x54,0x9d,0xb0,0xc7,0x49,
+0xdb,0x19,0x0f,0x39,0x53,0x50,0xe3,0x23,0x9c,0xc4,0x65,0xdb,0x88,0xe0,0xd6,0xff,
+0x07,0xfe,0x7d,0x52,0xfb,0xfa,0x7e,0x00,0x00,};
+
+static const unsigned int dummy_align__rotek_png = 6;
+static const unsigned char data__rotek_png[] = {
+/* /rotek.png (11 chars) */
+0x2f,0x72,0x6f,0x74,0x65,0x6b,0x2e,0x70,0x6e,0x67,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: image/png
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d,
+0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (5322 bytes) */
+0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
+0x00,0x00,0x01,0x57,0x00,0x00,0x00,0xae,0x08,0x06,0x00,0x00,0x00,0x82,0xdb,0x4e,
+0x7d,0x00,0x00,0x14,0x91,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0x7d,0xac,0x34,
+0x57,0x59,0xc0,0xef,0x95,0x0f,0xb1,0xd1,0x30,0x25,0x96,0x28,0xa2,0x8c,0xa6,0xa9,
+0x49,0x11,0x5c,0x45,0x2d,0x48,0x69,0xc6,0x35,0x6a,0xe2,0x47,0xd9,0x28,0xa0,0xd8,
+0x02,0x53,0x5a,0x88,0x2f,0x18,0x59,0xd3,0x18,0x25,0x96,0x64,0xa8,0x26,0x8d,0x26,
+0xb8,0xda,0xd8,0x17,0x25,0x92,0xf1,0xa3,0x42,0x62,0x82,0x2b,0x01,0xac,0x26,0xd0,
+0xfd,0xc7,0x44,0xfe,0x00,0x36,0x18,0x25,0x44,0xa2,0x9b,0x60,0x34,0x44,0xd1,0x41,
+0x4a,0x89,0x60,0xe9,0xf5,0x9c,0x9b,0xb3,0x3a,0x0e,0xb3,0x33,0xe7,0x3c,0xe7,0x9c,
+0x99,0xb9,0x7b,0x7f,0x7f,0xfc,0x42,0xb9,0xf7,0xee,0xbc,0xfb,0x35,0xbf,0x79,0xe6,
+0x79,0x9e,0xf3,0x9c,0x93,0xb3,0xb3,0xb3,0x13,0x00,0x00,0x08,0x0b,0x6f,0x02,0x00,
+0x00,0x72,0x05,0x00,0x40,0xae,0x00,0x00,0xc8,0x15,0x00,0x00,0x90,0x2b,0x00,0x00,
+0x72,0x05,0x00,0x40,0xae,0x00,0x00,0x80,0x5c,0x01,0x00,0x90,0x2b,0x00,0x00,0x72,
+0x05,0x00,0x00,0xe4,0x0a,0x00,0x80,0x5c,0x01,0x00,0x90,0x2b,0x00,0x00,0x20,0x57,
+0x00,0x00,0xe4,0x0a,0x00,0x80,0x5c,0x01,0x00,0x00,0xb9,0x02,0x00,0x20,0x57,0x00,
+0x00,0xe4,0x0a,0x00,0x00,0xc8,0x15,0x00,0x00,0xb9,0x02,0x00,0x20,0x57,0x00,0x00,
+0x40,0xae,0x00,0x00,0xc8,0x15,0x00,0x00,0xb9,0x02,0x00,0x00,0x72,0x05,0x00,0x40,
+0xae,0x00,0x00,0xc8,0x15,0x00,0x00,0x90,0x2b,0x00,0x00,0x72,0x05,0x00,0x40,0xae,
+0x00,0x00,0xc8,0x35,0x3c,0xf3,0x17,0xbf,0xe4,0x20,0xa7,0x7f,0xf0,0xf0,0x31,0x90,
+0x28,0xb2,0x1a,0x45,0x8d,0xfa,0xcf,0xd3,0x23,0x79,0xbd,0xa3,0x71,0xed,0x5b,0x1e,
+0xec,0xfc,0x3e,0x01,0x68,0x90,0xeb,0xc5,0x94,0xeb,0x4c,0xb1,0x54,0x94,0x8a,0xad,
+0xe2,0x4c,0x80,0x7e,0xdc,0xda,0x1c,0x27,0x43,0x9a,0xc8,0x15,0x90,0xeb,0x65,0x94,
+0xab,0x8e,0x4a,0x73,0x23,0xc3,0x4a,0x28,0xd3,0x3e,0x2a,0x73,0xfc,0xdc,0xfc,0x7b,
+0x88,0x14,0xb9,0x02,0x72,0x3d,0x5a,0xb9,0x66,0x26,0x3a,0x3d,0x1b,0x01,0x2d,0xda,
+0x05,0x32,0x45,0xae,0x80,0x5c,0x8f,0x49,0xae,0x3a,0x7a,0xdc,0x8d,0x24,0xd5,0x26,
+0x3b,0xa2,0x59,0xe4,0x0a,0xc8,0xf5,0xa2,0xcb,0x75,0x4a,0x52,0x6d,0x4b,0x1b,0x2c,
+0x91,0x2b,0x72,0x05,0xe4,0x7a,0x91,0xe4,0x9a,0x79,0x14,0xa6,0xba,0xd8,0x44,0x8a,
+0x64,0x33,0xe4,0x8a,0x3c,0x00,0xb9,0x4e,0x59,0xae,0xfa,0x56,0x7b,0xe5,0x21,0xba,
+0xad,0x79,0xfc,0xbe,0xe2,0x9f,0x58,0xb6,0x6b,0xe5,0xe6,0x71,0x5b,0xcf,0x9c,0x6c,
+0x82,0x5c,0x01,0x90,0xeb,0xd4,0xe4,0x3a,0x13,0xa4,0x00,0x2a,0x53,0xe0,0x5a,0x04,
+0x14,0x5b,0x62,0x8e,0x57,0x0a,0x3a,0x11,0xaa,0xcb,0x58,0xf4,0x42,0xae,0x80,0x5c,
+0xa7,0x2b,0xd7,0xa5,0xe0,0xf6,0x7e,0xa8,0xa2,0x52,0x2e,0x48,0x27,0xac,0x90,0x2b,
+0x00,0x72,0x1d,0x5b,0xae,0xa5,0xa3,0x54,0xc7,0xca,0x6f,0xa6,0x82,0xe7,0x9a,0x20,
+0x57,0x00,0xe4,0x3a,0xb4,0x5c,0x13,0x87,0x1c,0xe7,0x66,0x42,0x45,0xa3,0xd4,0x21,
+0x92,0xdd,0x5e,0x06,0xc1,0x22,0x57,0x40,0xae,0xd3,0x91,0xab,0xad,0x58,0x7d,0xdb,
+0x9d,0xd2,0xc6,0x1c,0x81,0x2c,0xe0,0x5c,0x81,0x85,0x65,0x4e,0x76,0x7b,0xec,0xf3,
+0x0b,0x90,0x2b,0x20,0xd7,0x69,0xc8,0xd5,0x56,0xac,0x1b,0x81,0x94,0x16,0x26,0xdf,
+0xb9,0x11,0xe4,0x70,0x57,0x82,0xc2,0x58,0x62,0xba,0x04,0x2e,0x75,0x04,0x8b,0x5c,
+0x01,0xb9,0x8e,0x2f,0x57,0x5b,0xb1,0x16,0x8e,0x42,0x5d,0x9f,0x86,0x5f,0xea,0x9a,
+0x3b,0x16,0xbd,0x2e,0xad,0x60,0x91,0x2b,0x20,0x57,0x4b,0xb9,0x46,0x14,0xec,0x3a,
+0x50,0x2b,0x53,0x62,0xd2,0x05,0xb1,0x57,0x6f,0x55,0x46,0xf4,0x36,0x52,0x9c,0x59,
+0xa4,0x09,0xb6,0xc8,0x15,0x90,0x2b,0x72,0x0d,0xcd,0xca,0x42,0x64,0xb3,0x89,0x2e,
+0x89,0xad,0x2c,0xa3,0x69,0x1b,0xc1,0x96,0xc8,0x15,0x90,0x2b,0x72,0x0d,0xc5,0x22,
+0x80,0x58,0x67,0x91,0x96,0xaf,0x86,0x5e,0xea,0x6a,0x23,0xd8,0x1c,0xb9,0x02,0x72,
+0x45,0xae,0x21,0xf2,0xac,0x95,0xa7,0x58,0x97,0xa7,0xd3,0x1a,0xda,0x52,0x78,0x0a,
+0xb6,0x3a,0xa6,0x0e,0x02,0xe4,0x0a,0xc8,0xd5,0x41,0xae,0x01,0x05,0xdb,0x97,0x67,
+0xcd,0x7a,0xc4,0x5c,0x0a,0x0b,0x52,0x45,0xcf,0x7c,0x81,0xfd,0x5c,0x81,0xa5,0x70,
+0xe8,0x76,0xdf,0x22,0x81,0x3e,0xc1,0x6e,0x90,0x2b,0x20,0x57,0xe4,0x1a,0x2b,0x1d,
+0xb0,0x0c,0xb4,0xc8,0xa0,0xbe,0x24,0xd6,0xf7,0xf9,0xba,0x74,0x1e,0xf4,0x75,0x00,
+0xe4,0x1e,0xaf,0x1f,0xb9,0x02,0x72,0x45,0xae,0x07,0xe5,0xb8,0xeb,0x89,0x2e,0x43,
+0x88,0xb5,0x8c,0x70,0x8b,0xed,0xb2,0xd4,0xb5,0x4f,0xb0,0xab,0x9e,0xf4,0x40,0x82,
+0x5c,0x01,0xb9,0x5e,0x32,0xb9,0x7a,0x0a,0xb6,0xe8,0x29,0x0c,0x25,0x9e,0x62,0xdd,
+0x0e,0xb0,0x24,0xd6,0x76,0xa9,0x6b,0x9f,0x60,0xb7,0xc7,0xdc,0x3d,0x80,0x5c,0x01,
+0xb9,0x0e,0x27,0xd7,0xbe,0x22,0x56,0xe6,0x91,0xa3,0x75,0x5d,0x64,0x30,0xd4,0xd4,
+0xae,0x6d,0x4f,0xfe,0xb5,0xeb,0xb1,0x29,0x72,0x05,0xe4,0x7a,0xc9,0xe4,0x2a,0x14,
+0x6c,0x21,0x4c,0x07,0x14,0x11,0xe6,0xa5,0x26,0x81,0xe6,0x0a,0xf8,0xf6,0xb0,0xae,
+0x8e,0x35,0x7a,0x45,0xae,0x80,0x5c,0x87,0x91,0x6b,0x5f,0xd4,0x9a,0x76,0x6c,0xed,
+0x12,0x62,0x91,0xc1,0xbe,0x90,0x64,0x33,0xec,0xda,0x75,0xfb,0x6c,0x1b,0xc1,0x2e,
+0x02,0xbf,0x2f,0xc8,0x15,0x90,0xeb,0xb1,0xca,0xd5,0x51,0xb0,0xb9,0xe0,0x76,0xbe,
+0xaf,0xf8,0x65,0x23,0xd6,0xc4,0x1c,0xbf,0x3a,0x8d,0xbb,0xd4,0xd5,0xa6,0x87,0x35,
+0x11,0x44,0xe6,0x21,0x52,0x1d,0xfb,0xa1,0x35,0xa1,0x58,0x99,0xe7,0x55,0x74,0x45,
+0xfb,0x3d,0x72,0x4d,0x14,0x99,0xa2,0x50,0xac,0x14,0x1b,0x08,0x4e,0xde,0x78,0xcf,
+0x97,0x8e,0x8f,0xb7,0xf5,0x80,0xcf,0xe7,0x97,0x22,0x57,0x7f,0xc1,0xee,0x04,0xd1,
+0x59,0x5f,0x3a,0x20,0xb3,0x68,0xa1,0x92,0x4a,0x55,0x32,0xe6,0xb0,0x4f,0xb0,0xa5,
+0x20,0x7a,0xdd,0x05,0x90,0xeb,0x50,0xab,0xd4,0x56,0xf5,0xcf,0xb2,0x45,0xae,0x89,
+0x39,0xc1,0xb7,0x8a,0x33,0x88,0xce,0xb2,0xf1,0xfe,0x6f,0x1c,0x1e,0x6b,0x2b,0xd7,
+0x52,0xf8,0xdc,0x2a,0xc5,0x8c,0xc8,0xd5,0x5f,0xae,0x33,0x81,0x70,0x52,0xcf,0x5e,
+0xd8,0x32,0x92,0x44,0xfa,0x16,0x09,0xe4,0xc2,0x22,0x55,0x21,0x48,0x29,0xf8,0xbe,
+0xf7,0xb1,0xd0,0xef,0x7d,0x52,0x93,0x6b,0xea,0x71,0x12,0x82,0x9c,0xac,0x71,0xae,
+0x56,0x0e,0x8f,0x5d,0x45,0x14,0xeb,0x6e,0x2f,0x56,0xe4,0xea,0x2f,0xd8,0xae,0xa2,
+0xcd,0x4c,0xb0,0xcd,0xcb,0x26,0xe0,0x22,0x03,0xe9,0x6e,0xb2,0x89,0xb0,0xb3,0x41,
+0x72,0x31,0xf1,0x29,0x6c,0x2d,0x4e,0x47,0x9a,0xb7,0xa0,0xe4,0x9a,0x99,0x93,0x14,
+0xd1,0x8d,0x43,0xfd,0x1c,0x4d,0x3d,0xa3,0xde,0xe6,0x1d,0x88,0xf4,0xee,0x63,0x6b,
+0x1e,0x4f,0xce,0x35,0x90,0x60,0x77,0x8e,0x6d,0x4a,0x89,0x70,0xfd,0xfd,0x10,0x62,
+0xb5,0x11,0xac,0xb4,0x48,0xb5,0xee,0x78,0xcd,0x31,0xfa,0x8a,0xa3,0xf2,0x55,0x6f,
+0x7d,0xf7,0xd9,0x2d,0x2f,0xb9,0x0d,0xc9,0x8d,0xc3,0xae,0x71,0x7e,0x66,0x9e,0x51,
+0x6f,0x08,0xb1,0xae,0x9b,0x62,0x45,0xae,0x7e,0x72,0x4d,0x05,0xb7,0xf6,0x4b,0x61,
+0x81,0xc7,0x76,0x89,0xea,0xbe,0x13,0x20,0x6d,0x79,0xae,0x0b,0xc7,0x55,0x58,0x92,
+0x1e,0xd8,0x95,0x20,0xa5,0x20,0x5d,0x18,0xb1,0x3e,0x1d,0x71,0x98,0xcd,0xb7,0xfc,
+0xd2,0xaf,0x21,0xba,0x71,0x68,0xe6,0x4c,0x0b,0xc7,0xc7,0x27,0x81,0xc5,0x5a,0xd2,
+0x2d,0xe0,0xd9,0x56,0xe1,0x28,0x99,0xd4,0x31,0xd2,0xed,0xaa,0xb8,0x2f,0x4f,0xc3,
+0x2e,0x89,0x4d,0x2c,0x66,0xcd,0xf6,0x6d,0x97,0xbd,0x73,0x8c,0x44,0x93,0x08,0x5d,
+0x03,0xbb,0x31,0xe5,0xfa,0xa4,0xdf,0x7b,0x08,0xd1,0x8d,0x43,0xe1,0x91,0x1f,0xdd,
+0xb5,0x9c,0xdb,0x33,0xc7,0x9c,0xad,0x6d,0x8a,0x01,0xb9,0x7a,0x08,0xb6,0x74,0xac,
+0x82,0xcf,0x04,0x22,0x4b,0x2d,0xda,0xa0,0xa4,0x45,0xa1,0xcc,0xa2,0xe3,0x60,0x16,
+0xb0,0x48,0xb5,0x09,0x3c,0x2d,0x6b,0xf4,0x51,0x8c,0xdf,0x79,0xd7,0x1b,0x90,0xdd,
+0xf0,0x2c,0x1a,0xe7,0xe5,0xd6,0x23,0xea,0xf5,0x11,0x6b,0x4e,0x9f,0x6b,0x40,0xb9,
+0x36,0x04,0xbb,0xeb,0x2b,0xd2,0x34,0xfe,0xbe,0x10,0x44,0xba,0x65,0xa0,0x45,0x06,
+0xa1,0xc7,0x04,0x26,0x82,0x22,0x55,0xd7,0xeb,0x97,0x5c,0x18,0x90,0xeb,0xe5,0x64,
+0xd6,0x38,0x27,0xa5,0x51,0x6f,0x26,0x14,0x6b,0xd5,0xf2,0x1c,0x90,0x6b,0x28,0xb9,
+0x5e,0xf3,0xc0,0xfa,0xa4,0x6f,0xea,0xfe,0x0b,0x7e,0xfa,0xd5,0x4d,0x21,0x6f,0xfa,
+0xf2,0x9b,0x0d,0x19,0xf7,0xb5,0x6c,0x85,0x1a,0xe2,0xd2,0x27,0xd8,0x99,0x63,0xce,
+0x73,0x27,0x10,0xa2,0xeb,0x45,0x22,0x17,0xb4,0x99,0x75,0x11,0x4b,0xae,0xf5,0xa6,
+0xf2,0x1d,0x62,0x0c,0xde,0x29,0x30,0x13,0x46,0x9b,0x79,0x88,0x56,0x2b,0xe4,0x1a,
+0x5e,0xae,0xa9,0x92,0xeb,0x52,0xb5,0xe3,0x9c,0x69,0xda,0x44,0xa1,0xff,0xae,0x2e,
+0x57,0x75,0x12,0x9e,0xf4,0xe5,0x1c,0x6f,0x7a,0xc5,0x6b,0x5d,0x22,0xdd,0xd0,0x83,
+0x5c,0x96,0x82,0x48,0xb4,0x4b,0x70,0x89,0x63,0xb4,0x9b,0x45,0xee,0x14,0x08,0x35,
+0xac,0xc6,0x46,0xae,0x95,0x89,0x90,0xda,0x0a,0x27,0x99,0x87,0x64,0x33,0x4b,0x0a,
+0x41,0xde,0x30,0x73,0xc0,0xb5,0x8a,0x9e,0x05,0xa6,0xfe,0x7e,0x2e,0x04,0x51,0xaf,
+0x54,0xac,0xdb,0x03,0x9f,0x29,0x72,0xed,0x78,0x13,0xea,0x5f,0xca,0xc2,0x7c,0x21,
+0xf6,0xd1,0x86,0x34,0x1f,0x73,0xa6,0xe4,0x5a,0xed,0x8f,0xa3,0x4e,0xc2,0x8d,0xae,
+0x2e,0x7f,0xe3,0x9b,0x7e,0xf3,0x5c,0xc8,0xba,0x95,0xa7,0x2e,0x16,0xfd,0x3c,0xf6,
+0x72,0xad,0x09,0xd6,0xa9,0xf8,0xf5,0x6d,0xaf,0xfb,0xc5,0x93,0x17,0xbd,0xf4,0xf6,
+0x93,0xef,0x7d,0xf9,0x1d,0x27,0xea,0xdf,0x3a,0x79,0xd1,0xcb,0x5e,0x71,0x7e,0xcc,
+0x00,0x05,0xa2,0x4a,0xd0,0x2d,0x71,0x48,0x96,0x55,0xa0,0x8b,0xc5,0xc6,0x31,0x6a,
+0x8d,0x71,0xdc,0xb3,0xef,0x79,0xe5,0xcf,0xb4,0x9d,0x80,0x69,0xcf,0x49,0x97,0x08,
+0x05,0x9b,0x59,0x9e,0xd4,0x85,0x47,0x24,0x78,0x62,0xf1,0xdc,0x7d,0x8a,0x4f,0xa1,
+0x29,0x04,0xcf,0x27,0x58,0xab,0x15,0x72,0xfd,0x3f,0xb9,0xa6,0xe6,0xaa,0xb5,0xf2,
+0x15,0x67,0x28,0xf4,0xc9,0xa9,0x24,0xa8,0x9f,0x4b,0xa1,0x44,0x98,0xef,0x6f,0x39,
+0x7a,0xc4,0x55,0x34,0x85,0xfa,0x5d,0x77,0xfc,0xec,0x41,0xb9,0xaa,0x7e,0xcc,0x93,
+0x17,0xfe,0x54,0x7e,0xfe,0x33,0x8f,0x5b,0xed,0x59,0x20,0x59,0x6e,0x02,0xc9,0xd5,
+0x65,0xe9,0x6f,0x19,0x4b,0xae,0x1e,0x91,0x4d,0x16,0xba,0x32,0x5d,0x63,0xed,0x59,
+0x3d,0x0f,0xf9,0xbc,0xb3,0xc8,0x72,0xdd,0x0c,0x70,0x9e,0x96,0x0c,0x6e,0xe9,0x97,
+0x6b,0x71,0x51,0xf2,0x4a,0x4a,0x92,0x5b,0x1d,0xe9,0x5e,0x77,0xdf,0xdb,0xcf,0x5b,
+0x7e,0xda,0x8a,0x5f,0x5a,0xa2,0xae,0x72,0xed,0x59,0x10,0x91,0x08,0xfa,0x76,0x5d,
+0x65,0xb9,0x16,0x8c,0x65,0x74,0x79,0x9e,0xbe,0xe2,0xb6,0x6e,0xef,0xd2,0x9f,0x8d,
+0xa4,0xc8,0x21,0xac,0x72,0xbb,0x44,0x81,0x3b,0xc7,0x88,0x2c,0x66,0xa4,0x98,0x44,
+0x96,0x6b,0xec,0x3c,0x76,0x3e,0x67,0x2a,0xd6,0x71,0xc9,0xb5,0x2d,0xc2,0xbd,0xe1,
+0xee,0x7b,0xcf,0x4f,0x68,0x2d,0x97,0xe7,0xdf,0x7e,0x97,0x58,0xae,0x3d,0x11,0xec,
+0x36,0x90,0x2c,0x37,0x8e,0xb9,0xd2,0x4d,0xc4,0x4e,0x81,0x2c,0xc6,0x71,0x6f,0xfc,
+0xb9,0x7b,0x24,0x51,0xa5,0xef,0x2d,0xad,0xcd,0x71,0x63,0xde,0xb6,0x97,0x91,0xf2,
+0xc4,0x5d,0x24,0x81,0x5e,0xab,0x6b,0x47,0x40,0x3e,0x67,0xe4,0xa0,0xb5,0x5c,0x97,
+0xc7,0x52,0x31,0x55,0x72,0xdd,0x2a,0x89,0x16,0x4a,0xa8,0x33,0x89,0x5c,0xf5,0xef,
+0x1c,0x5b,0xbf,0x42,0xc9,0x32,0x84,0x5c,0x5d,0x0b,0x4f,0xa1,0xe6,0xd6,0xfe,0x2f,
+0x5f,0x73,0xff,0x9f,0xf8,0xdc,0x5a,0x4b,0x8b,0x31,0x45,0x84,0xdb,0xf6,0xc5,0x04,
+0x6f,0xc3,0x9b,0xa4,0x01,0x53,0x2b,0x21,0x87,0xbb,0x20,0xd7,0x9a,0x5c,0x67,0xb5,
+0x42,0xd5,0xaa,0x56,0xc0,0x2a,0x84,0x57,0xd4,0xfa,0xe3,0xcb,0x10,0x45,0x30,0x61,
+0x0a,0x61,0xa7,0xe4,0xba,0xda,0x8b,0xd6,0x56,0xae,0x07,0x52,0x04,0xc5,0x05,0x90,
+0x6b,0x29,0x88,0x5c,0x0f,0xb1,0x94,0x2c,0xa3,0x6d,0x14,0xb2,0x96,0xc2,0x93,0x2f,
+0x8b,0x20,0x57,0xd7,0x4a,0xb8,0x6b,0x2a,0x63,0xec,0xd6,0xab,0xe6,0x0c,0xd7,0x98,
+0x91,0x6b,0x82,0x5c,0x07,0x6e,0xc5,0x72,0x20,0x35,0x27,0x90,0xfe,0xc2,0x17,0xa6,
+0x70,0xb5,0x8d,0x2d,0x5a,0x1d,0xd1,0x2a,0x81,0xa6,0x47,0x2c,0xd7,0xcd,0x98,0x0b,
+0x07,0x1a,0xe9,0x80,0x33,0x8b,0xee,0x80,0x21,0xe5,0xba,0x9a,0xc7,0xeb,0x14,0x98,
+0x8d,0x20,0xd6,0x4d,0xc0,0xd7,0x7a,0x36,0x1f,0xb8,0xd3,0x01,0xb9,0x0e,0xc4,0x5e,
+0x68,0xb5,0x2f,0x6a,0xae,0xa4,0x77,0xde,0xb9,0x10,0x63,0xc2,0x92,0x96,0xb9,0xee,
+0x40,0xe8,0x92,0x6b,0x8b,0x60,0x37,0x8e,0x05,0xa7,0x31,0xe4,0x3a,0x25,0xb1,0x6e,
+0x3d,0xbe,0x13,0xae,0x51,0xe6,0x32,0xf0,0x6d,0xfb,0x26,0x72,0x1a,0x23,0xf6,0xed,
+0x79,0xec,0x14,0x85,0x77,0xf4,0x8a,0x5c,0xc7,0x91,0xeb,0x39,0x5a,0x7a,0xfa,0x7f,
+0xb5,0x00,0x6b,0x0d,0xce,0x65,0xc8,0x2a,0xa8,0x3a,0x76,0xa5,0x25,0xae,0xa3,0xd9,
+0x36,0xb9,0x5a,0x2e,0xe9,0x75,0x6d,0xad,0x5a,0x3b,0xce,0xbf,0xb5,0x95,0x6b,0x3a,
+0x86,0x54,0x75,0x8e,0xb5,0xa5,0xa7,0xd5,0x37,0x37,0x57,0xcc,0xc3,0xb7,0x35,0xb9,
+0xa4,0xa4,0xca,0xc8,0xcf,0x37,0xc6,0x8e,0x03,0xd2,0xd7,0x3a,0x4a,0xee,0x15,0xb9,
+0xfa,0xdd,0xf2,0x7b,0x1d,0xa7,0x21,0xd7,0xb6,0x7f,0xe3,0x5c,0xb6,0x5a,0x90,0xa1,
+0x7a,0xf6,0x94,0x5c,0xb3,0x03,0x72,0x9d,0xf5,0x2d,0xe9,0x0d,0xd0,0x5d,0xb0,0xf1,
+0xec,0x45,0x1d,0x74,0x40,0xb6,0x6e,0x83,0x6b,0x89,0x56,0x43,0xe4,0x5b,0x25,0x91,
+0x57,0x5f,0x14,0x15,0xbb,0xc1,0x7f,0x3d,0x82,0x5c,0xb3,0x8e,0xf3,0x6f,0xec,0x82,
+0x1a,0x72,0x8d,0x24,0xd7,0xa2,0x63,0x1d,0x79,0xf0,0xa8,0x77,0x1f,0xd9,0xea,0x7c,
+0x6a,0x88,0xbc,0xad,0xc9,0xff,0x66,0x0d,0xb9,0xae,0x04,0x83,0x65,0x62,0xf7,0xc5,
+0x8e,0x3e,0x20,0x5b,0xaf,0xa6,0x3b,0x10,0xb5,0xfa,0x36,0xc9,0xbb,0x5c,0x30,0x77,
+0xf3,0xf1,0x1b,0xfc,0xc7,0x98,0x8d,0x90,0x8c,0xd0,0x29,0xc0,0x22,0x82,0x91,0xe5,
+0x9a,0x39,0x16,0x09,0x12,0x23,0xde,0xb2,0xd6,0x9d,0x90,0x38,0xca,0xf5,0xbc,0x13,
+0xc0,0xdc,0xda,0xa7,0x2f,0xb8,0xed,0xce,0xa5,0x91,0xa4,0x6f,0xc1,0x20,0x13,0x6e,
+0x24,0x98,0x09,0x7a,0x4b,0x25,0xfb,0x86,0x8d,0x3e,0x20,0x5b,0x47,0xb0,0x07,0x04,
+0x2b,0x95,0xeb,0x22,0xc2,0x09,0x1e,0xbb,0xc1,0x7f,0xec,0x1d,0x07,0xc6,0x4c,0x51,
+0xa4,0xc8,0x75,0x38,0xb9,0xce,0x04,0x11,0x41,0x75,0xe0,0x0b,0x64,0x7d,0x7b,0x56,
+0x93,0xeb,0x89,0x92,0xeb,0x79,0xee,0x74,0x2f,0x5a,0x9f,0x88,0xf6,0xbb,0x5f,0x75,
+0xa5,0xd2,0x79,0x45,0x47,0xf1,0xb9,0x8e,0x10,0x4c,0x03,0x34,0xfa,0x6f,0xc7,0x2a,
+0x66,0x35,0x7a,0x5b,0x7d,0xe5,0xea,0xda,0x8c,0xbf,0x08,0x7c,0xcc,0x2a,0x72,0x67,
+0x83,0xeb,0x30,0x98,0x36,0x66,0x11,0x36,0x10,0xdc,0x0a,0x23,0xf0,0x12,0xb9,0x0e,
+0x5b,0xd0,0x72,0xcd,0xc3,0xad,0x03,0x7d,0xd1,0xcf,0xa9,0xc9,0xf5,0xfc,0xbf,0x6b,
+0xb9,0xa8,0x42,0x7a,0x0b,0xa7,0xf3,0x8b,0x8d,0xa1,0x32,0x5d,0x4d,0xf8,0x5b,0xc7,
+0xe2,0x54,0xee,0xd9,0xe8,0x3f,0xfa,0x80,0x6c,0x75,0x71,0x0b,0xb1,0x3c,0xd2,0x35,
+0x5f,0x58,0x45,0xc8,0xe1,0xba,0xa6,0xaf,0x62,0xf7,0xcf,0xba,0xb2,0x15,0x8a,0x35,
+0xf1,0x98,0x8a,0x95,0x22,0xd7,0xe1,0xe4,0xba,0x71,0x5c,0xaf,0x9d,0x0b,0x22,0x93,
+0xa5,0x39,0xde,0xb2,0xeb,0xc3,0xad,0xc9,0xf5,0xff,0xdd,0x7a,0xde,0xfc,0xb2,0x57,
+0x8a,0x8a,0x10,0x7a,0xae,0x81,0x99,0x69,0xb0,0xda,0x0f,0x88,0x69,0x74,0x15,0xcc,
+0x04,0x6b,0xf9,0x57,0x8e,0x69,0x07,0xdf,0x65,0xaf,0x8b,0x8e,0xe3,0x14,0x8e,0xc3,
+0x5f,0xce,0x79,0xee,0x95,0x5f,0x08,0x51,0x4d,0x5e,0x47,0x8a,0x9a,0x62,0x56,0xc1,
+0x63,0xf6,0xcf,0x86,0x0c,0x6c,0x6c,0xdf,0xc3,0x41,0xa2,0x57,0xe4,0x2a,0x67,0xe5,
+0x18,0x69,0x24,0xc2,0x48,0x62,0xd7,0x48,0x23,0xac,0x6c,0x23,0x03,0x25,0xd7,0x7a,
+0x34,0xeb,0xd4,0x71,0xa0,0xa3,0x34,0x15,0xc9,0x16,0x7a,0xd5,0x57,0x8b,0x5c,0x4b,
+0xc1,0x04,0xad,0x9d,0xe7,0xd0,0x16,0xd7,0x01,0xd9,0x33,0x8b,0x25,0xaf,0xbe,0x9b,
+0x12,0x56,0x91,0x23,0x40,0xdb,0x88,0x49,0x3a,0x34,0xfa,0x64,0x02,0x51,0x71,0xc8,
+0x94,0x9c,0xad,0x14,0x8b,0x21,0xa2,0x57,0xe4,0x2a,0x67,0x21,0xc8,0xbb,0xae,0x05,
+0x1f,0xdc,0xac,0x23,0xe1,0xdf,0x29,0x5a,0x23,0xd7,0xe6,0xc9,0xed,0x74,0xd5,0xd6,
+0x13,0xba,0xf4,0xd2,0xda,0x9a,0x5c,0xbb,0x72,0xa7,0xbb,0x80,0x3b,0xe5,0x0e,0x31,
+0x20,0x7b,0xed,0x29,0x57,0x97,0x96,0x26,0xc9,0x7e,0x4d,0xe5,0x3c,0x4e,0x81,0xcc,
+0x35,0x57,0x5c,0xcd,0x07,0xa8,0xae,0x47,0x7a,0xad,0xb3,0x03,0x81,0x4e,0x15,0x3b,
+0x7a,0x45,0xae,0x72,0x12,0xc1,0x6d,0x57,0x2e,0xbc,0xe2,0xf7,0x45,0x3c,0xfb,0xc2,
+0x98,0xd5,0x95,0x55,0x15,0xb0,0x16,0x2e,0xd1,0x88,0x59,0x41,0x56,0x98,0xdc,0x68,
+0x19,0x78,0x4b,0xf1,0xf4,0x74,0xbc,0x01,0xd9,0x4e,0xc2,0xee,0xd8,0xd6,0xa5,0x2f,
+0x12,0x5c,0x46,0x8e,0x94,0xa6,0x34,0x20,0x7b,0xca,0xdb,0xc2,0x84,0x58,0x3e,0x9b,
+0x21,0xd7,0x61,0x56,0x68,0x6d,0x04,0x45,0x88,0x9d,0xb0,0x2a,0x5c,0x3a,0xdc,0x96,
+0xe5,0x3d,0x72,0xad,0x57,0x81,0x37,0x0e,0x51,0xec,0xae,0xa3,0xab,0xa0,0x6b,0x7b,
+0xf0,0x9d,0x67,0xbe,0x35,0xd6,0x80,0xec,0xec,0x34,0xdc,0x9e,0x59,0x65,0xe3,0xc4,
+0x9b,0x49,0xee,0x14,0x84,0x4d,0xfe,0x53,0x1a,0x90,0x3d,0x25,0xb6,0x01,0x0b,0x8b,
+0xce,0x69,0x0f,0xe4,0xea,0xc7,0x52,0x90,0xd7,0xca,0x3d,0xd6,0x33,0xbb,0x44,0x28,
+0x95,0xb9,0x3a,0xa7,0x1d,0x72,0x15,0x49,0x56,0x6f,0x57,0xe3,0x50,0xc8,0xca,0x04,
+0x5b,0x8a,0xfb,0x76,0x0a,0x14,0x31,0xe4,0x1a,0x63,0x06,0x84,0x40,0x0a,0xbe,0xd5,
+0xf3,0xd8,0x03,0xb2,0xa7,0x44,0xdf,0x6b,0x2d,0x63,0x46,0xaf,0xc8,0x35,0x5e,0x6a,
+0x60,0x23,0x8c,0x5e,0xd7,0x16,0x39,0xa7,0x4a,0xf0,0x25,0xcb,0x2c,0xa3,0x14,0xab,
+0x48,0x4b,0x47,0x71,0xb5,0x5d,0x12,0xba,0xa2,0xd6,0xf2,0x34,0xcc,0xae,0xaf,0x31,
+0x06,0x64,0x3b,0x2d,0xa7,0x1d,0x48,0x08,0x95,0xa0,0xed,0x27,0xe6,0xb2,0xd7,0x8b,
+0x2c,0xd7,0x62,0x1e,0xb6,0x38,0xe6,0x14,0xbd,0x22,0x57,0x7f,0xd6,0x82,0x2b,0x5c,
+0x5f,0x52,0x7e,0x65,0x21,0xf5,0x52,0x18,0x11,0xd9,0x54,0x8a,0x73,0x1b,0x81,0xeb,
+0x48,0xce,0xec,0x80,0xbb,0xdc,0x6f,0x0d,0x3e,0xb7,0xdf,0x1e,0x7c,0xeb,0xb8,0x6f,
+0x56,0xe8,0x01,0xd9,0x4e,0x39,0x57,0x7d,0x21,0x19,0x48,0xac,0xb3,0xc8,0xb7,0xed,
+0xae,0x03,0xb2,0xf3,0x0b,0x2c,0xd7,0x6c,0x1e,0xb6,0x13,0xc2,0xe9,0xd8,0xc8,0x35,
+0xee,0x52,0xd8,0x8d,0x47,0x9e,0xcc,0x46,0x82,0xa9,0x91,0xac,0x6b,0x24,0xbb,0xb3,
+0x1c,0x04,0x62,0x15,0xb5,0xe8,0xa9,0x5b,0xba,0x65,0xab,0x45,0xae,0xa5,0x60,0x18,
+0x8c,0xef,0xea,0xac,0x2a,0xc6,0x16,0xdd,0xfa,0x22,0x32,0x41,0xb1,0x0e,0xd1,0xe0,
+0x9f,0x5e,0x60,0xb9,0xa6,0x11,0x73,0xca,0x1b,0xe4,0x3a,0xcc,0xc8,0xc1,0x9d,0xe0,
+0x0a,0x67,0xd3,0x0e,0xe2,0x72,0x0b,0xb7,0x98,0x1f,0xde,0xd9,0xb6,0xaa,0xed,0xc0,
+0xb0,0x70,0x5c,0x57,0x9e,0xda,0x5c,0xdd,0x75,0xcb,0xd6,0xfe,0xb8,0x16,0x7d,0xa4,
+0x95,0xa3,0x58,0x5d,0xfa,0x5c,0x5d,0x66,0xc3,0xae,0x27,0x22,0xd7,0x9d,0xc7,0xaa,
+0xa6,0x98,0x9d,0x02,0x63,0x6e,0xef,0x12,0xb3,0x53,0x20,0xd4,0x50,0x9a,0x0c,0xb9,
+0xc6,0x97,0x6b,0x2e,0xac,0xce,0xda,0x5c,0x35,0xcb,0x79,0xfc,0x5d,0x34,0x6d,0xe5,
+0x5d,0xf5,0xcd,0x8e,0xd5,0x92,0x78,0xd6,0x3d,0xbf,0xd1,0xd7,0x3a,0x55,0x08,0xe4,
+0x6a,0xdb,0x8e,0xb5,0x3a,0x8d,0xb0,0xab,0x41,0x44,0xb9,0xae,0x3d,0x3f,0xdf,0x21,
+0x1a,0xfc,0x25,0x3d,0xba,0x63,0xb3,0x19,0x20,0xf5,0xb1,0x41,0xae,0xc3,0x0c,0xcb,
+0xde,0x09,0x23,0xd0,0xdc,0x32,0x57,0x3a,0x9b,0x80,0x60,0x13,0x8b,0xfe,0xc0,0x4a,
+0xc9,0x75,0xdd,0x13,0xb5,0x26,0x42,0xb9,0x26,0x16,0xd1,0x66,0x1e,0x43,0xae,0x07,
+0x06,0xb7,0xf8,0x46,0xab,0x8b,0x00,0x9f,0xc9,0x50,0x0d,0xfe,0xb3,0x91,0xc6,0x0e,
+0x0e,0x35,0xe8,0xba,0x0a,0x1d,0xbd,0x22,0xd7,0x61,0x72,0xaf,0x7d,0xb9,0x2e,0xdb,
+0x86,0xe6,0x22,0x62,0x14,0x5b,0xcf,0xb1,0xae,0x7b,0xf2,0x55,0xbd,0x5d,0x05,0x5f,
+0x7f,0xef,0x55,0xdf,0x15,0x59,0x7d,0x2d,0x54,0xe5,0x81,0x3c,0x6c,0x76,0x1a,0x69,
+0x3f,0xae,0x40,0xd1,0xdb,0x6e,0x1e,0x60,0xdb,0xe6,0x81,0x3a,0x05,0xda,0xbe,0x23,
+0x4b,0x13,0xb1,0x4d,0x5d,0xb4,0xcb,0xf9,0x30,0x5d,0x11,0x3b,0xe4,0x3a,0x4c,0x64,
+0xb7,0xf1,0x28,0x22,0xd9,0x56,0xff,0xab,0xc0,0x92,0x4d,0x3a,0x66,0x0f,0x74,0xfd,
+0x3b,0xbd,0x51,0xec,0x0d,0x77,0xdf,0xeb,0xdb,0x21,0x30,0x29,0x6a,0x72,0xd9,0x0a,
+0x4e,0xc0,0x55,0x88,0xdd,0x2b,0xe0,0xe2,0x80,0x5c,0xc3,0x6f,0xff,0x52,0x79,0xf4,
+0xb0,0x2e,0x05,0xf9,0xba,0x5c,0x28,0xda,0x85,0x65,0xa7,0x41,0xdf,0xed,0x6b,0x67,
+0x2e,0x56,0x8f,0x31,0x14,0x46,0x95,0x53,0x94,0x6b,0xf3,0xe2,0x92,0x99,0xcf,0xac,
+0x38,0x40,0x36,0x91,0x7c,0x39,0x20,0xd7,0xa3,0xd8,0xa0,0xb0,0xf0,0xcc,0x7b,0x2d,
+0x84,0xb7,0x9f,0xdb,0xda,0x4e,0x07,0x8b,0x96,0xe1,0xc3,0x45,0xad,0x9b,0x40,0x72,
+0xfb,0x33,0xeb,0x89,0x7e,0x37,0x3d,0x82,0x5d,0xcd,0xdb,0x77,0x9c,0xbd,0xa8,0x72,
+0x05,0x40,0xae,0x23,0xec,0xfe,0xda,0x27,0xb0,0xdc,0x22,0x02,0xde,0x4e,0x24,0x77,
+0xe5,0x52,0x4c,0x3b,0x78,0x61,0x79,0xfe,0xed,0x77,0x35,0x5b,0xb5,0x90,0x2b,0x20,
+0x57,0xe4,0x2a,0xca,0x63,0x56,0x73,0xff,0x45,0x02,0xc5,0x7c,0xdc,0x16,0x18,0x49,
+0x01,0x24,0xeb,0x78,0xce,0xe7,0x82,0x45,0xae,0x80,0x5c,0x91,0x6b,0xcc,0xee,0x01,
+0x5b,0x79,0xa5,0x1e,0x03,0x26,0x7c,0x76,0xbc,0x4c,0x2d,0x9f,0x9b,0x53,0xe4,0xad,
+0x17,0x1b,0x78,0xb4,0x62,0x21,0x57,0x40,0xae,0xc8,0xd5,0xba,0x87,0xd5,0xb6,0xf7,
+0x30,0x35,0x39,0xd3,0x58,0x91,0x6c,0xe5,0x20,0xd5,0x7a,0x77,0xc3,0xa1,0x45,0x0e,
+0x5d,0xf3,0x0f,0x9c,0xfa,0x2d,0x91,0x2b,0x20,0x57,0xe4,0x2a,0xed,0x9f,0xdb,0x3a,
+0x4e,0x42,0xca,0x4d,0xa7,0x40,0x08,0xd1,0xba,0x76,0x1c,0xb4,0x15,0xaf,0xba,0xf2,
+0xb2,0xc5,0xb1,0x08,0x16,0x61,0x00,0x72,0x9d,0x96,0x5c,0x6d,0x7b,0x58,0x2b,0x41,
+0xe3,0xf3,0x7e,0xe5,0xcc,0xd2,0xfc,0x1b,0x5d,0xcd,0xdd,0xfb,0xf9,0x02,0x65,0xad,
+0x4d,0x28,0xe4,0x12,0xd8,0x4a,0x30,0xc3,0xf6,0x42,0x09,0x16,0x61,0x00,0x72,0x9d,
+0x9e,0x5c,0x5d,0x77,0x12,0x48,0x27,0xf6,0x45,0x49,0xe7,0xf6,0xd3,0xee,0x73,0xc7,
+0xf5,0xe9,0xf9,0x45,0x11,0x2c,0xc2,0x00,0xe4,0x3a,0x4d,0xb9,0xba,0x0e,0x88,0x58,
+0x4d,0xa0,0x01,0x3d,0x71,0xec,0x58,0x58,0x59,0x44,0xd9,0x95,0xef,0x8c,0x51,0xe4,
+0x0a,0xc8,0x15,0xb9,0x8a,0x07,0x51,0xcf,0x7b,0xb6,0x6a,0x19,0x20,0x52,0x75,0x6d,
+0x03,0xcb,0x1d,0x8e,0xbd,0x0d,0x31,0xcb,0x14,0xb9,0x02,0x72,0x45,0xae,0x6d,0x11,
+0x9c,0xeb,0x22,0x81,0x75,0xe0,0x81,0x1f,0x5d,0x4b,0x62,0x63,0xcf,0x22,0x4d,0x5a,
+0x5e,0xff,0x4e,0x12,0xa9,0x23,0x57,0x40,0xae,0xc8,0x55,0x32,0xbe,0xef,0x50,0x34,
+0xbb,0x17,0xed,0x2c,0x40,0x84,0x9a,0xcf,0x65,0xbb,0x19,0xf8,0xce,0x22,0x6d,0x13,
+0xac,0x74,0xde,0x28,0x72,0x05,0xe4,0x8a,0x5c,0xe5,0x9b,0x02,0xf6,0x74,0x01,0xac,
+0x3a,0xe6,0x0a,0x64,0xe6,0xe7,0xf5,0xf9,0x02,0x3e,0x6d,0x5c,0xa1,0x66,0x91,0xb6,
+0x09,0x76,0xe5,0x73,0x4c,0xe4,0x0a,0xc8,0x15,0xb9,0x4e,0x6d,0xa9,0xeb,0x18,0xe3,
+0x0e,0x0f,0x09,0x76,0x11,0xe3,0x3d,0x46,0xae,0x80,0x5c,0x2f,0xa7,0x5c,0x25,0xd5,
+0xf9,0x29,0x2e,0x89,0x0d,0x21,0xd8,0x2a,0x46,0xa7,0x04,0x72,0x05,0xe4,0x7a,0x79,
+0xe5,0xda,0x94,0xec,0x6e,0x22,0x91,0xea,0x10,0xdd,0x0a,0xf5,0x36,0xad,0x92,0xc8,
+0x15,0x90,0x2b,0x72,0x8d,0xcd,0xc2,0xa1,0x81,0x3f,0xe4,0xa6,0x79,0xf9,0x08,0xaf,
+0x75,0xe6,0x9b,0x73,0x45,0xae,0x80,0x5c,0x91,0xab,0x24,0x9a,0xdd,0xb7,0x4a,0x85,
+0x8e,0x68,0x77,0xe6,0xb8,0xf9,0xfc,0x88,0x27,0xe7,0x23,0x57,0x40,0xae,0xc8,0xd5,
+0x56,0xb6,0xfb,0x1d,0x06,0xfa,0xe6,0x0a,0xd4,0x25,0xba,0x31,0x91,0xe9,0xbe,0xb3,
+0x20,0xbd,0x2c,0x5f,0x76,0xe4,0x0a,0xc8,0x15,0x00,0x00,0x90,0x2b,0x00,0x00,0x72,
+0x05,0x00,0x40,0xae,0x00,0x00,0x80,0x5c,0x01,0x00,0x90,0x2b,0x00,0x00,0x72,0x05,
+0x00,0x00,0xe4,0x0a,0x00,0x80,0x5c,0x01,0x00,0x90,0x2b,0x00,0x00,0x20,0x57,0x00,
+0x00,0xe4,0x0a,0x00,0x80,0x5c,0x01,0x00,0x00,0xb9,0x02,0x00,0x20,0x57,0x00,0x00,
+0xe4,0x0a,0x00,0x00,0xc8,0x15,0x00,0x00,0xb9,0x02,0x00,0x20,0x57,0x00,0x00,0x40,
+0xae,0x00,0x00,0xc8,0x15,0x00,0x00,0xb9,0x02,0x00,0x00,0x72,0x05,0x00,0x40,0xae,
+0x00,0x00,0xc8,0x15,0x00,0x00,0x90,0x2b,0x00,0x00,0x72,0x05,0x00,0x40,0xae,0x00,
+0x00,0xc8,0x75,0x5c,0x16,0x8b,0x71,0xe0,0xc3,0x07,0x80,0x98,0x72,0x7d,0xde,0x87,
+0x86,0x05,0xb9,0x02,0x00,0x72,0x0d,0xcb,0x15,0x0f,0xb9,0x3e,0x49,0x71,0xab,0xe2,
+0x77,0x14,0x1f,0x52,0x7c,0x5a,0xf1,0xb8,0xe2,0x11,0xc5,0x3f,0x28,0xde,0xa5,0x78,
+0xbd,0xe2,0xe9,0xc8,0x15,0x00,0x2e,0x93,0x5c,0x6f,0x53,0x54,0x02,0xb9,0x3e,0x51,
+0x71,0xa7,0xe2,0x9f,0x15,0x67,0x16,0x7c,0x51,0xf1,0x80,0xe2,0x6b,0x91,0x2b,0x00,
+0x1c,0xbb,0x5c,0xe7,0x8a,0x2f,0x28,0x3e,0xef,0x28,0xd7,0x6f,0x57,0xfc,0xad,0xa5,
+0x54,0x9b,0x7c,0x56,0xf1,0x5a,0xe4,0x0a,0x00,0xc7,0x2a,0xd7,0xe7,0x28,0x3e,0xa3,
+0x38,0x33,0xd8,0xca,0xf5,0x47,0x15,0x9f,0x6b,0x08,0xf3,0x4b,0x8a,0x0f,0x28,0xde,
+0xa8,0xf8,0x31,0xc5,0xcd,0x8a,0x1f,0x54,0x5c,0x51,0xbc,0xc3,0xa4,0x08,0x9a,0x92,
+0xfd,0x6d,0xc5,0x57,0x20,0x57,0x00,0x38,0x26,0xb9,0x5e,0xa7,0xf8,0x44,0x4d,0xac,
+0xb6,0x72,0x9d,0x2b,0xbe,0xd0,0x90,0xe4,0x7b,0x15,0x37,0xf6,0xdc,0xea,0x3f,0x55,
+0xf1,0x26,0xc5,0xe7,0x1b,0x8f,0xbd,0x8a,0x5c,0x01,0xe0,0x58,0xe4,0xfa,0x14,0xc5,
+0x07,0x1b,0x62,0xfd,0x92,0x85,0x5c,0xbf,0x49,0xf1,0xef,0x8d,0x1c,0xea,0x5d,0x0e,
+0x5d,0x00,0xcf,0x54,0x7c,0xb2,0x25,0x82,0xbd,0x03,0xb9,0x02,0xc0,0x45,0x97,0xeb,
+0xa9,0xe2,0xc1,0x86,0x58,0x35,0xff,0x6a,0x21,0xd7,0xf7,0xd6,0x84,0xa8,0xa3,0xd7,
+0x1f,0x70,0x10,0xeb,0x75,0x8a,0xbf,0x3f,0x90,0x83,0xfd,0x4f,0xc5,0x33,0x90,0x2b,
+0x00,0x5c,0x64,0xb9,0xfe,0x4a,0x8b,0x58,0x75,0x41,0xeb,0x87,0x7a,0xe4,0x3a,0x6f,
+0x08,0xf1,0xe7,0x1d,0xc4,0xaa,0x53,0x02,0x1f,0x6d,0x3c,0xfe,0x6d,0x8d,0xbc,0xed,
+0x5b,0x91,0x2b,0x00,0x5c,0x54,0xb9,0xea,0x96,0xab,0xc7,0x1b,0x62,0x7d,0xdc,0xfc,
+0xbc,0x6f,0x11,0xc1,0x7b,0x6a,0x22,0xfc,0xf0,0xc1,0x42,0xd4,0x97,0x73,0x8d,0xe2,
+0xaf,0x1b,0x62,0xbd,0xdf,0xfc,0xee,0x97,0x6b,0x3f,0xd3,0xb9,0xd8,0x6b,0x91,0x2b,
+0x00,0x5c,0x34,0xb9,0xde,0x6c,0x22,0xd4,0x66,0xd4,0x7a,0xc5,0x62,0x85,0xd6,0xd3,
+0x14,0xff,0x5d,0x13,0xe1,0x4f,0x58,0x8a,0xf5,0xc9,0x8a,0xf7,0x37,0xc4,0xfa,0xfb,
+0x8a,0x53,0xf3,0xfb,0xa4,0xd1,0x45,0x70,0x27,0x72,0x05,0x80,0x8b,0x24,0xd7,0xeb,
+0x4d,0x4e,0xb5,0x29,0xd6,0x37,0x5b,0x2e,0x7f,0xfd,0xf1,0x46,0x7e,0xf4,0xc9,0x16,
+0x62,0x7d,0x82,0xe2,0xcf,0x1a,0x62,0x7d,0x97,0xf9,0x79,0xfd,0xef,0xfe,0xb8,0xf6,
+0xfb,0x77,0x20,0x57,0x00,0x18,0x5a,0xae,0xb7,0xd4,0x6f,0xdf,0x1d,0x78,0xaa,0xe2,
+0x63,0x2d,0x62,0xbd,0xea,0x30,0x5b,0xe0,0xcd,0x35,0x01,0xfe,0x85,0x85,0x58,0x75,
+0x64,0xfa,0x60,0x43,0xac,0x7f,0x79,0x40,0xca,0xaf,0xa9,0xfd,0xcd,0xdf,0x21,0x57,
+0x00,0x18,0x4a,0xae,0x5f,0xa9,0xf8,0x75,0xd3,0x2a,0xf5,0xa8,0xe2,0x46,0x07,0xb1,
+0x3e,0x41,0xf1,0x81,0x16,0xb1,0xbe,0xdb,0xfc,0xce,0x56,0xae,0x6f,0x6f,0xc9,0x97,
+0x76,0x71,0xb5,0x21,0xd6,0xbf,0x32,0xb9,0xd7,0xb6,0xbf,0xbd,0xa5,0x11,0x15,0x23,
+0x57,0x00,0x18,0x44,0xae,0x0f,0x37,0xc4,0xf8,0x51,0x23,0x5c,0x1b,0xb9,0x5e,0x6d,
+0x11,0xab,0xee,0x6f,0xbd,0xc6,0x71,0x2a,0x56,0xfd,0xd6,0xfd,0xbe,0x1e,0xb1,0xde,
+0xd7,0x10,0xeb,0x47,0x4c,0xb7,0xc0,0xa1,0xbf,0x7f,0x4e,0xe3,0xef,0x91,0x2b,0x00,
+0x0c,0x22,0xd7,0xbc,0x45,0x90,0xbf,0x65,0x21,0xd6,0x37,0xb4,0x3c,0xee,0x13,0x66,
+0x65,0x96,0xeb,0xc8,0xc1,0x7a,0xe4,0xfa,0xbb,0x1d,0xa2,0x7c,0x63,0x43,0x94,0x1f,
+0x33,0xfd,0xad,0x5d,0x32,0xce,0x1a,0x33,0x07,0x90,0x2b,0x00,0x0c,0x22,0x57,0xdd,
+0xf4,0xff,0xfe,0x96,0xf6,0xa9,0x1f,0xee,0x90,0xe4,0xad,0x8a,0xc7,0x5a,0x16,0x09,
+0x5c,0x2f,0x9c,0xe7,0x5a,0xcf,0xb9,0x3e,0x74,0x40,0x92,0xaf,0x6b,0x88,0xf5,0x1f,
+0xcd,0x8a,0xac,0xbe,0x14,0xc2,0xab,0xc9,0xb9,0x02,0xc0,0x58,0x05,0xad,0x6f,0x56,
+0x7c,0xb6,0x21,0xcb,0x4f,0x29,0xbe,0xce,0x62,0x18,0xcb,0x99,0xc9,0xd5,0xde,0xe4,
+0x31,0x2c,0xbb,0xde,0x2d,0xf0,0x19,0x33,0xbf,0xb5,0x2e,0xc8,0xdb,0xcd,0xfc,0xd6,
+0xfd,0xdf,0xe8,0x11,0x84,0xd7,0x5b,0xb6,0x6b,0xfd,0x61,0xed,0x71,0xef,0x44,0xae,
+0x00,0x30,0x74,0xb7,0xc0,0x6b,0x5a,0x6e,0xf3,0x1f,0x32,0x91,0xed,0xfe,0x6f,0x9e,
+0xae,0xf8,0xa7,0xc6,0xdf,0x3c,0x66,0x22,0x59,0x9f,0x9d,0x08,0xba,0xfa,0x5c,0x5f,
+0xac,0x78,0xac,0xf6,0xbb,0x7f,0x33,0x79,0x54,0x1b,0xb1,0x7e,0xb5,0x29,0x62,0xd1,
+0xe7,0x0a,0x00,0xa3,0xc9,0x55,0x4b,0xf4,0xcf,0x5b,0x04,0xbb,0x34,0xbf,0xbf,0xa6,
+0x65,0x18,0xcb,0x97,0x2d,0x12,0xf0,0xd8,0xe6,0xa5,0x6d,0x85,0xd6,0xf7,0x37,0x26,
+0x64,0xe9,0xa8,0xf6,0x26,0x87,0x65,0xb1,0xcd,0x15,0x5a,0x4f,0x43,0xae,0x00,0x30,
+0xc6,0x22,0x82,0x67,0x28,0xfe,0xa3,0x21,0xcf,0xff,0x52,0x7c,0x87,0xe2,0x9d,0x2d,
+0x62,0xbd,0x3f,0xe0,0x1e,0x5a,0xf3,0x96,0xd9,0x00,0x8f,0xd6,0xfe,0xbf,0xfe,0xef,
+0xef,0x73,0x10,0xeb,0xb7,0x36,0x56,0x67,0x31,0x5b,0x00,0x00,0x46,0x5d,0xa1,0xf5,
+0xf2,0x16,0x89,0x3e,0xe2,0xd2,0xcb,0xea,0xb1,0x41,0xe1,0xfb,0x0e,0x4c,0xb5,0xd2,
+0xd1,0xeb,0x8f,0x38,0x88,0x55,0xef,0xa5,0xf5,0xf1,0x46,0x7f,0xeb,0x37,0x20,0x57,
+0x00,0x18,0x7b,0xf9,0x6b,0x5b,0x94,0x5a,0x67,0xdb,0xd5,0xcb,0xea,0x21,0xd7,0x67,
+0x35,0xe6,0xb9,0xee,0x77,0x20,0xf8,0x49,0x07,0xb1,0x3e,0xdb,0x6c,0x5a,0x78,0xd6,
+0x9a,0x6b,0x45,0xae,0x00,0x30,0xa2,0x5c,0xaf,0x55,0x7c,0xf2,0x80,0x58,0x75,0x41,
+0xeb,0x99,0x11,0xb7,0xd6,0x6e,0xdb,0x89,0x60,0xad,0xb8,0xc1,0xa2,0x78,0xf5,0xab,
+0xec,0x44,0x00,0x00,0x53,0x1f,0xdc,0x32,0x6f,0x19,0x1f,0xf8,0x88,0x69,0xc5,0x3a,
+0x89,0x28,0xd7,0xfd,0x1e,0x5a,0x8f,0xb6,0x44,0xb0,0x0f,0x2b,0xee,0x31,0xbf,0x7f,
+0xa1,0xd9,0x4b,0x4b,0xef,0xa1,0xf5,0x47,0xa6,0xd8,0xd5,0x4c,0x27,0x3c,0xc0,0x1e,
+0x5a,0x00,0x30,0xc5,0xa9,0x58,0x6f,0x91,0xb6,0x5c,0x79,0xca,0x55,0x33,0xf3,0xd8,
+0xfd,0xf5,0x11,0x76,0x7f,0x05,0x80,0x29,0xcb,0x55,0xcf,0x18,0xf8,0x1b,0x23,0xd7,
+0xbb,0x43,0x8c,0x27,0x74,0x90,0xab,0xe6,0x89,0x46,0x92,0xff,0x62,0x29,0xd5,0x2f,
+0x9a,0x68,0xf5,0xba,0xde,0xdc,0x2c,0x1f,0x3e,0x00,0x8c,0x28,0x57,0xcd,0x73,0x0f,
+0x8d,0x0f,0x1c,0x40,0xae,0xf5,0xa1,0xd8,0xb7,0x9a,0xb9,0x03,0x7a,0x50,0xcb,0xa7,
+0x8d,0x4c,0x3f,0x67,0x96,0xc1,0xfe,0xa9,0xe2,0xf5,0xa6,0x4b,0xc0,0xee,0x98,0x7c,
+0xf8,0x00,0x10,0x91,0xff,0x01,0x3d,0x29,0xe8,0x0f,0x0e,0x31,0xa0,0xb3,0x00,0x00,
+0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,};
+
+static const unsigned int dummy_align__settings_html = 7;
+static const unsigned char data__settings_html[] = {
+/* /settings.html (15 chars) */
+0x2f,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/html
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (13192 bytes) */
+0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
+0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x22,0x3e,0x3c,0x68,0x65,
+0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,
+0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,
+0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x58,0x2d,0x55,0x41,0x2d,
+0x43,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,
+0x65,0x6e,0x74,0x3d,0x22,0x49,0x45,0x3d,0x65,0x64,0x67,0x65,0x22,0x3e,0x3c,0x6d,
+0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,
+0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,
+0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,
+0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x75,0x73,0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x61,0x62,0x6c,0x65,0x3d,0x30,0x22,
+0x3e,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,
+0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x69,0x74,0x6c,
+0x65,0x3e,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x6d,0x61,
+0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,
+0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x3e,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,
+0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,
+0x6f,0x75,0x6e,0x74,0x2d,0x77,0x72,0x61,0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,
+0x69,0x64,0x3d,0x22,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x22,0x3e,0x3c,
+0x70,0x3e,0xd0,0x9a,0xd0,0xbe,0xd0,0xbd,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,
+0xd0,0xbb,0xd0,0xb5,0xd1,0x80,0x20,0xd0,0xb1,0xd1,0x83,0xd0,0xb4,0xd0,0xb5,0xd1,
+0x82,0x20,0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb0,0xd0,0xb3,
+0xd1,0x80,0xd1,0x83,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0x20,0xd1,0x87,0xd0,0xb5,0xd1,
+0x80,0xd0,0xb5,0xd0,0xb7,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,
+0x63,0x6f,0x75,0x6e,0x74,0x2d,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3e,0x35,0x3c,
+0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0xd1,0x81,0xd0,0xb5,0xd0,0xba,0xd1,0x83,0xd0,
+0xbd,0xd0,0xb4,0x2e,0x3c,0x2f,0x70,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x55,0x70,0x64,0x61,
+0x74,0x65,0x50,0x61,0x73,0x73,0x22,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,
+0x74,0x69,0x6f,0x6e,0x3d,0x22,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,
+0x70,0x6f,0x73,0x74,0x22,0x3e,0x3c,0x70,0x3e,0xd0,0x92,0xd0,0xb2,0xd0,0xb5,0xd0,
+0xb4,0xd0,0xb8,0xd1,0x82,0xd0,0xb5,0x20,0xd0,0xbf,0xd0,0xb0,0xd1,0x80,0xd0,0xbe,
+0xd0,0xbb,0xd1,0x8c,0x20,0xd0,0xb4,0xd0,0xbb,0xd1,0x8f,0x20,0xd0,0xb2,0xd1,0x85,
+0xd0,0xbe,0xd0,0xb4,0xd0,0xb0,0x20,0xd0,0xb2,0x20,0xd1,0x80,0xd0,0xb5,0xd0,0xb6,
+0xd0,0xb8,0xd0,0xbc,0x20,0xd0,0xbe,0xd0,0xb1,0xd0,0xbd,0xd0,0xbe,0xd0,0xb2,0xd0,
+0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbf,0xd1,0x80,0xd0,0xbe,
+0xd1,0x88,0xd0,0xb8,0xd0,0xb2,0xd0,0xba,0xd0,0xb8,0x2e,0x3c,0x2f,0x70,0x3e,0x3c,
+0x69,0x6e,0x70,0x75,0x74,0x20,0x69,0x64,0x3d,0x22,0x70,0x77,0x64,0x22,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,
+0x6f,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,
+0x22,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,0xd1,0x8c,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x22,0x20,0x73,0x69,0x7a,
+0x65,0x3d,0x22,0x32,0x30,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,
+0x3d,0x22,0x31,0x36,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x70,0x61,0x73,0x73,
+0x77,0x6f,0x72,0x64,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,
+0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,
+0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x6f,0x73,0x65,0x2d,0x70,0x61,0x73,
+0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,0x62,0x74,
+0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0xd0,0x9e,0xd1,0x82,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,0xb0,0x22,0x3e,0x20,
+0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75,0x62,
+0x6d,0x69,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,
+0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x22,0x20,0x6f,0x6e,0x63,
+0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x68,0x65,
+0x63,0x6b,0x50,0x57,0x44,0x28,0x29,0x2c,0x21,0x31,0x22,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0xd0,0x9e,0xd1,0x82,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,0xb2,0xd0,
+0xb8,0xd1,0x82,0xd1,0x8c,0x22,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,
+0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x6e,0x61,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x20,0x6e,0x61,0x76,
+0x62,0x61,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x6e,0x61,0x76,0x62,
+0x61,0x72,0x2d,0x66,0x69,0x78,0x65,0x64,0x2d,0x74,0x6f,0x70,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,
+0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x3c,0x64,0x69,0x76,0x3e,0x3c,0x61,
+0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,
+0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x6f,0x22,0x3e,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x6d,0x65,0x6e,0x75,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,
+0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x6e,0x61,
+0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,
+0x76,0x22,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,
+0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x9f,0xd0,0xb0,
+0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,
+0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,
+0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,
+0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,
+0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,
+0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,
+0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x68,
+0x74,0x6d,0x6c,0x22,0x3e,0xd0,0xa3,0xd0,0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,
+0xbc,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,0x3c,
+0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,
+0x22,0x69,0x6e,0x66,0x6f,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x98,0xd0,0xbd,
+0xd1,0x84,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,
+0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x68,0x74,
+0x6d,0x6c,0x22,0x3e,0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,0xbd,0xd0,0xb0,0xd0,0xbb,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,
+0x69,0x64,0x3d,0x22,0x63,0x6c,0x6f,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x30,0x30,
+0x3a,0x30,0x30,0x3a,0x30,0x30,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,
+0x2f,0x75,0x6c,0x3e,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x3c,0x68,0x31,0x3e,
+0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,0xba,
+0xd0,0xb8,0x3c,0x2f,0x68,0x31,0x3e,0x3c,0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x76,
+0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x6f,0x78,0x22,0x3e,0x3c,
+0x2f,0x75,0x6c,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x69,0x64,0x3d,0x22,0x66,0x6f,
+0x72,0x6d,0x31,0x22,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x65,0x74,
+0x74,0x69,0x6e,0x67,0x73,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,
+0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,
+0x22,0x74,0x61,0x62,0x73,0x65,0x74,0x31,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x74,0x61,0x62,0x73,0x65,0x74,0x22,0x3e,0x3c,0x6e,0x61,0x76,0x3e,0x3c,0x75,
+0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x6e,0x61,0x76,0x73,
+0x22,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,
+0x74,0x65,0x6d,0x70,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x74,
+0x69,0x76,0x65,0x54,0x61,0x62,0x22,0x3e,0xd0,0xa2,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,
+0xd0,0xb5,0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd0,0xb0,0x3c,0x2f,
+0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,
+0x65,0x66,0x3d,0x22,0x23,0x61,0x63,0x62,0x22,0x3e,0xd0,0x90,0xd0,0xba,0xd0,0xba,
+0xd1,0x83,0xd0,0xbc,0xd1,0x83,0xd0,0xbb,0xd1,0x8f,0xd1,0x82,0xd0,0xbe,0xd1,0x80,
+0xd1,0x8b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,
+0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x6c,0x6f,0x61,0x64,0x22,0x3e,0xd0,
+0x9d,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,0xd0,0xb0,0x3c,
+0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,
+0x72,0x65,0x66,0x3d,0x22,0x23,0x61,0x63,0x70,0x22,0x3e,0xd0,0x9f,0xd0,0xb8,0xd1,
+0x82,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,
+0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,
+0x73,0x6e,0x6d,0x70,0x74,0x22,0x3e,0x53,0x4e,0x4d,0x50,0x3c,0x2f,0x61,0x3e,0x3c,
+0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,
+0x22,0x23,0x6e,0x65,0x74,0x77,0x22,0x3e,0xd0,0xa1,0xd0,0xb5,0xd1,0x82,0xd0,0xb5,
+0xd0,0xb2,0xd1,0x8b,0xd0,0xb5,0x20,0xd0,0xbf,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,
+0xbc,0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,
+0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,
+0x6e,0x74,0x70,0x74,0x22,0x3e,0xd0,0x92,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x2f,0x75,0x6c,0x3e,0x3c,0x2f,
+0x6e,0x61,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x74,0x65,0x6d,
+0x70,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x70,0x61,0x6e,
+0x65,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,
+0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,0xd0,0x9a,0xd0,0xbe,0xd0,0xbd,0xd1,
+0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,0xd1,0x8c,0x20,0xd1,0x82,0xd0,0xb5,0xd0,0xbc,
+0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd1,0x8b,
+0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x2d,0x32,
+0x22,0x3e,0x3c,0x62,0x3e,0xd0,0x92,0x20,0xd1,0x88,0xd0,0xba,0xd0,0xb0,0xd1,0x84,
+0xd1,0x83,0x3c,0x2f,0x62,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x3c,0x6c,
+0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,
+0x70,0x5f,0x6d,0x69,0x6e,0x22,0x3e,0xd0,0x9d,0xd0,0xb8,0xd0,0xb6,0xd0,0xbd,0xd1,
+0x8f,0xd1,0x8f,0x20,0xd0,0xb3,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd1,0x86,
+0xd0,0xb0,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,
+0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,
+0x69,0x64,0x3d,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x22,
+0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,
+0x69,0x6e,0x22,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x3e,0xc2,0xb0,0x43,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,
+0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x22,0x3e,0xd0,
+0x93,0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,
+0xb8,0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,
+0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,
+0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,
+0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,
+0x75,0x70,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,
+0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x3e,0xd0,0x92,0xd0,
+0xb5,0xd1,0x80,0xd1,0x85,0xd0,0xbd,0xd1,0x8f,0xd1,0x8f,0x20,0xd0,0xb3,0xd1,0x80,
+0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd1,0x86,0xd0,0xb0,0x3c,0x2f,0x6c,0x61,0x62,0x65,
+0x6c,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,
+0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x65,0x78,0x74,0x74,
+0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x65,
+0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x3e,0xc2,0xb0,0x43,0x3c,0x2f,
+0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,
+0x66,0x6f,0x72,0x3d,0x22,0x22,0x3e,0xd0,0x93,0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,
+0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb8,0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,
+0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,
+0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,
+0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x63,0x6f,0x6e,0x74,0x2d,0x32,0x22,0x3e,0x3c,0x62,0x3e,0xd0,0x9d,0xd0,
+0xb0,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb5,0xd1,0x8f,
+0xd1,0x85,0x3c,0x2f,0x62,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,
+0x6f,0x78,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x69,0x6e,0x70,0x75,
+0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,
+0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,
+0x63,0x74,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,
+0x70,0x5f,0x63,0x74,0x72,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,
+0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x53,0x74,0x61,0x74,0x65,0x28,0x29,
+0x22,0x3e,0x20,0xd0,0x92,0xd0,0xba,0xd0,0xbb,0xd1,0x8e,0xd1,0x87,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x64,0x69,0x76,
+0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x74,
+0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x22,0x3e,0xd0,0x9d,0xd0,0xb8,0xd0,0xb6,
+0xd0,0xbd,0xd1,0x8f,0xd1,0x8f,0x20,0xd0,0xb3,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0xd0,
+0xb8,0xd1,0x86,0xd0,0xb0,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,
+0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,
+0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,
+0x69,0x6e,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,
+0x70,0x5f,0x6d,0x69,0x6e,0x22,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,
+0x3c,0x73,0x70,0x61,0x6e,0x3e,0xc2,0xb0,0x43,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,
+0x22,0x3e,0xd0,0x93,0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,
+0xd0,0xb7,0xd0,0xb8,0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,
+0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x74,
+0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,0x2f,
+0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,
+0x72,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x3e,
+0xd0,0x92,0xd0,0xb5,0xd1,0x80,0xd1,0x85,0xd0,0xbd,0xd1,0x8f,0xd1,0x8f,0x20,0xd0,
+0xb3,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd1,0x86,0xd0,0xb0,0x3c,0x2f,0x6c,
+0x61,0x62,0x65,0x6c,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,
+0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,
+0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x22,0x3e,0x3c,
+0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x3e,0xc2,0xb0,
+0x43,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,
+0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x22,0x3e,0xd0,0x93,0xd0,0xb8,0xd1,0x81,
+0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb8,0xd1,0x81,0x3c,0x2f,
+0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,
+0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x5f,
+0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x2f,0x64,
+0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x73,0x6e,
+0x6d,0x70,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x70,
+0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,
+0x53,0x4e,0x4d,0x50,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,
+0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x72,0x65,
+0x61,0x64,0x5f,0x63,0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x22,0x3e,0x52,0x65,
+0x61,0x64,0x20,0x43,0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x3c,0x2f,0x6c,0x61,
+0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,
+0x69,0x64,0x3d,0x22,0x72,0x65,0x61,0x64,0x5f,0x63,0x6f,0x6d,0x6d,0x75,0x6e,0x69,
+0x74,0x79,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x72,0x65,0x61,0x64,0x5f,0x63,
+0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,
+0x67,0x74,0x68,0x3d,0x22,0x31,0x35,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,
+0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x77,0x72,0x69,0x74,0x65,0x5f,0x63,
+0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x22,0x3e,0x57,0x72,0x69,0x74,0x65,0x20,
+0x43,0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,
+0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,
+0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,
+0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x69,0x64,0x3d,
+0x22,0x77,0x72,0x69,0x74,0x65,0x5f,0x63,0x6f,0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,
+0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x77,0x72,0x69,0x74,0x65,0x5f,0x63,0x6f,
+0x6d,0x6d,0x75,0x6e,0x69,0x74,0x79,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,
+0x74,0x68,0x3d,0x22,0x31,0x35,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x64,0x69,0x76,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,
+0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,
+0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,
+0x6e,0x61,0x6d,0x65,0x3d,0x22,0x74,0x72,0x61,0x70,0x73,0x22,0x20,0x69,0x64,0x3d,
+0x22,0x74,0x72,0x61,0x70,0x73,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x65,0x28,
+0x29,0x22,0x3e,0x20,0xd0,0x9e,0xd1,0x82,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,0xb2,
+0xd0,0xba,0xd0,0xb0,0x20,0xd1,0x83,0xd0,0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,
+0xbc,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb9,0x3c,0x2f,0x6c,0x61,0x62,
+0x65,0x6c,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,
+0x66,0x6f,0x72,0x3d,0x22,0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x49,0x50,0x22,0x3e,
+0xd0,0xa1,0xd0,0xb5,0xd1,0x80,0xd0,0xb2,0xd0,0xb5,0xd1,0x80,0x3c,0x2f,0x6c,0x61,
+0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,
+0x69,0x64,0x3d,0x22,0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x49,0x50,0x22,0x20,0x6e,
+0x61,0x6d,0x65,0x3d,0x22,0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x49,0x50,0x22,0x3e,
+0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x62,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x70,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,
+0x68,0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,0xd0,0x90,0xd0,0xba,0xd0,0xba,0xd1,
+0x83,0xd0,0xbc,0xd1,0x83,0xd0,0xbb,0xd1,0x8f,0xd1,0x82,0xd0,0xbe,0xd1,0x80,0xd0,
+0xbd,0xd1,0x8b,0xd0,0xb5,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,0x82,0xd0,0xb0,0xd1,0x80,
+0xd0,0xb5,0xd0,0xb8,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,
+0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,
+0x6e,0x74,0x2d,0x32,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,
+0x3d,0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,
+0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbe,0xd1,0x82,0xd0,0xba,0xd0,0xbb,0xd1,
+0x8e,0xd1,0x87,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x6c,0x61,0x62,
+0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,
+0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x22,
+0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,0x6b,
+0x22,0x3e,0xd0,0x92,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,
+0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x74,0x76,0x6f,
+0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,
+0xd0,0x93,0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,
+0xd0,0xb8,0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,
+0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,
+0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,
+0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,0x6b,0x22,0x3e,
+0xd0,0x92,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,
+0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x74,0x63,0x68,0x61,0x72,
+0x67,0x65,0x5f,0x76,0x6f,0x6c,0x74,0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,
+0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xb7,
+0xd0,0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,0xb0,0x3c,0x2f,0x6c,0x61,0x62,0x65,
+0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,
+0x62,0x61,0x74,0x63,0x68,0x61,0x72,0x67,0x65,0x5f,0x76,0x6f,0x6c,0x74,0x22,0x3e,
+0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,0x6b,0x22,
+0x3e,0xd0,0x92,0x20,0x2f,0x20,0xd1,0x8f,0xd1,0x87,0xd0,0xb5,0xd0,0xb9,0xd0,0xba,
+0xd1,0x83,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,
+0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x74,0x63,0x61,0x70,0x22,
+0x3e,0xd0,0x95,0xd0,0xbc,0xd0,0xba,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd1,0x8c,0x20,
+0xd0,0xbe,0xd0,0xb4,0xd0,0xbd,0xd0,0xbe,0xd0,0xb9,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,
+0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb5,0xd0,0xb8,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,
+0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x63,0x61,
+0x70,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x62,0x61,0x74,0x63,0x61,0x70,0x22,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x37,0x22,0x3e,0x37,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x39,0x22,0x3e,0x39,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x31,0x32,0x22,0x3e,0x31,0x32,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,
+0x3c,0x73,0x70,0x61,0x6e,0x3e,0xd0,0x90,0xc2,0xb7,0xd1,0x87,0x3c,0x2f,0x73,0x70,
+0x61,0x6e,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,
+0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,
+0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,
+0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x62,0x61,0x74,
+0x73,0x79,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x74,0x73,0x79,0x6d,0x22,
+0x3e,0x20,0xd0,0x9a,0xd0,0xbe,0xd0,0xbd,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,
+0xd1,0x8c,0x20,0xd1,0x81,0xd0,0xb8,0xd0,0xbc,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,
+0x80,0xd0,0xb8,0xd0,0xb8,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,0x82,0xd0,0xb0,0xd1,0x80,
+0xd0,0xb5,0xd0,0xb9,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x64,0x69,
+0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x2d,0x32,0x22,0x3e,0x3c,0x62,0x3e,0xd0,
+0xa2,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0x2e,0x20,0xd0,0xba,0xd0,0xbe,0xd0,0xbc,0xd0,
+0xbf,0xd0,0xb5,0xd0,0xbd,0xd1,0x81,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x3c,
+0x2f,0x62,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,
+0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,
+0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,
+0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x74,0x65,0x6d,
+0x70,0x63,0x6f,0x6d,0x70,0x22,0x20,0x69,0x64,0x3d,0x22,0x74,0x65,0x6d,0x70,0x63,
+0x6f,0x6d,0x70,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x74,
+0x65,0x6d,0x70,0x43,0x6f,0x6d,0x70,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x22,0x3e,
+0x20,0xd0,0x92,0xd0,0xba,0xd0,0xbb,0xd1,0x8e,0xd1,0x87,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x74,0x65,0x6d,0x70,0x63,
+0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x62,0x75,0x66,0x22,0x3e,0xd0,0x92,0x20,0xd0,0xb1,
+0xd1,0x83,0xd1,0x84,0xd0,0xb5,0xd1,0x80,0xd0,0xbd,0xd0,0xbe,0xd0,0xbc,0x20,0xd1,
+0x80,0xd0,0xb5,0xd0,0xb6,0xd0,0xb8,0xd0,0xbc,0xd0,0xb5,0x3c,0x2f,0x6c,0x61,0x62,
+0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,
+0x22,0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x62,0x75,0x66,0x22,
+0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,0x6b,
+0x22,0x3e,0xd0,0xbc,0xd0,0x92,0x20,0x2f,0x20,0xd1,0x8f,0xd1,0x87,0xd0,0xb5,0xd0,
+0xb9,0xd0,0xba,0xd1,0x83,0x20,0x2f,0x20,0xc2,0xb0,0x43,0x3c,0x2f,0x73,0x70,0x61,
+0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,
+0x3d,0x22,0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x63,0x79,0x63,
+0x6c,0x65,0x22,0x3e,0xd0,0x92,0x20,0xd1,0x86,0xd0,0xb8,0xd0,0xba,0xd0,0xbb,0xd0,
+0xb8,0xd1,0x87,0xd0,0xb5,0xd1,0x81,0xd0,0xba,0xd0,0xbe,0xd0,0xbc,0x20,0xd1,0x80,
+0xd0,0xb5,0xd0,0xb6,0xd0,0xb8,0xd0,0xbc,0xd0,0xb5,0x3c,0x2f,0x6c,0x61,0x62,0x65,
+0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,
+0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x63,0x79,0x63,0x6c,0x65,
+0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,
+0x6b,0x22,0x3e,0xd0,0xbc,0xd0,0x92,0x20,0x2f,0x20,0xd1,0x8f,0xd1,0x87,0xd0,0xb5,
+0xd0,0xb9,0xd0,0xba,0xd1,0x83,0x20,0x2f,0x20,0xc2,0xb0,0x43,0x3c,0x2f,0x73,0x70,
+0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,
+0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,
+0x3d,0x22,0x6e,0x65,0x74,0x77,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,
+0x61,0x62,0x70,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,0x64,0x69,0x6e,
+0x67,0x22,0x3e,0xd0,0xa1,0xd0,0xb5,0xd1,0x82,0xd0,0xb5,0xd0,0xb2,0xd1,0x8b,0xd0,
+0xb5,0x20,0xd0,0xbf,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,
+0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,
+0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x68,
+0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,
+0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,
+0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x64,0x68,0x63,0x70,
+0x22,0x20,0x69,0x64,0x3d,0x22,0x64,0x68,0x63,0x70,0x22,0x20,0x6f,0x6e,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x3d,0x22,0x64,0x68,0x63,0x70,0x53,0x74,0x61,0x74,0x65,0x28,
+0x29,0x22,0x3e,0x20,0xd0,0x9f,0xd0,0xbe,0xd0,0xbb,0xd1,0x83,0xd1,0x87,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x20,0x49,0x50,0x2d,0xd0,0xb0,0xd0,0xb4,0xd1,0x80,0xd0,0xb5,
+0xd1,0x81,0x20,0xd0,0xb0,0xd0,0xb2,0xd1,0x82,0xd0,0xbe,0xd0,0xbc,0xd0,0xb0,0xd1,
+0x82,0xd0,0xb8,0xd1,0x87,0xd0,0xb5,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x6c,
+0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x69,0x70,0x61,0x64,0x64,
+0x72,0x22,0x3e,0x49,0x50,0x2d,0xd0,0xb0,0xd0,0xb4,0xd1,0x80,0xd0,0xb5,0xd1,0x81,
+0x20,0xd1,0x83,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd1,0x81,0xd1,
+0x82,0xd0,0xb2,0xd0,0xb0,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,
+0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,
+0x78,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x61,
+0x64,0x64,0x72,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x69,0x70,0x61,0x64,0x64,
+0x72,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,
+0x72,0x3d,0x22,0x67,0x77,0x22,0x3e,0x49,0x50,0x2d,0xd0,0xb0,0xd0,0xb4,0xd1,0x80,
+0xd0,0xb5,0xd1,0x81,0x20,0xd1,0x88,0xd0,0xbb,0xd1,0x8e,0xd0,0xb7,0xd0,0xb0,0x3c,
+0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,0x6e,0x70,0x75,
+0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,
+0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x67,0x77,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,
+0x22,0x67,0x77,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,
+0x66,0x6f,0x72,0x3d,0x22,0x6d,0x61,0x73,0x6b,0x22,0x3e,0xd0,0x9c,0xd0,0xb0,0xd1,
+0x81,0xd0,0xba,0xd0,0xb0,0x20,0xd0,0xbf,0xd0,0xbe,0xd0,0xb4,0xd1,0x81,0xd0,0xb5,
+0xd1,0x82,0xd0,0xb8,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,
+0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,
+0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,
+0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6d,0x61,0x73,0x6b,
+0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x6d,0x61,0x73,0x6b,0x22,0x3e,0x3c,0x62,
+0x72,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x70,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,0x69,
+0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,
+0x65,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,
+0xd1,0x83,0xd0,0xb7,0xd0,0xba,0xd0,0xb0,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,
+0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,
+0x62,0x6f,0x64,0x79,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,
+0x3d,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,0x6d,0x69,0x6e,0x22,0x3e,
+0xd0,0x9d,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbe,0xd1,0x82,0xd0,0xba,0xd0,0xbb,0xd1,0x8e,0xd1,
+0x87,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,
+0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6c,
+0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,0x6d,0x69,0x6e,0x22,0x3e,0x3c,0x2f,0x73,
+0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,0x78,0x4d,0x61,0x72,0x6b,0x22,0x3e,0xd0,0x92,
+0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,
+0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,
+0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0xd0,0x93,0xd0,0xb8,0xd1,0x81,
+0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb8,0xd1,0x81,0x3c,0x2f,
+0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,
+0x69,0x64,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,0x6d,0x69,0x6e,
+0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,
+0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,
+0x6f,0x78,0x4d,0x61,0x72,0x6b,0x22,0x3e,0xd0,0x92,0x3c,0x2f,0x73,0x70,0x61,0x6e,
+0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,
+0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x70,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x74,0x61,0x62,0x70,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,
+0x64,0x69,0x6e,0x67,0x22,0x3e,0xd0,0x98,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xba,0x20,0xd0,0xbf,0xd0,0xb8,0xd1,0x82,0xd0,0xb0,0xd0,
+0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,
+0x79,0x22,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x70,
+0x70,0x73,0x5f,0x6d,0x69,0x6e,0x22,0x3e,0xd0,0x9c,0xd0,0xb0,0xd0,0xba,0xd1,0x81,
+0xd0,0xb8,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd1,0x8c,0xd0,0xbd,0xd1,0x8b,0xd0,0xb9,
+0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,
+0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x70,0x70,0x73,
+0x5f,0x6d,0x69,0x6e,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,
+0x78,0x4d,0x61,0x72,0x6b,0x22,0x3e,0xd0,0x90,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,
+0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x3e,0xd0,0x93,
+0xd0,0xb8,0xd1,0x81,0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb8,
+0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,
+0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x5f,
+0x68,0x69,0x73,0x74,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x3c,0x73,0x70,
+0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x62,0x6f,
+0x78,0x4d,0x61,0x72,0x6b,0x22,0x3e,0xd0,0x90,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,
+0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,
+0x20,0x69,0x64,0x3d,0x22,0x6e,0x74,0x70,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x74,0x61,0x62,0x70,0x61,0x6e,0x65,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x68,0x65,0x61,
+0x64,0x69,0x6e,0x67,0x22,0x3e,0xd0,0xa1,0xd0,0xb8,0xd0,0xbd,0xd1,0x85,0xd1,0x80,
+0xd0,0xbe,0xd0,0xbd,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,
+0x20,0xd0,0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x70,0x61,0x6e,0x65,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x3c,0x6c,0x61,
+0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x75,0x74,0x63,0x22,0x3e,0xd0,0xa7,
+0xd0,0xb0,0xd1,0x81,0xd0,0xbe,0xd0,0xb2,0xd0,0xbe,0xd0,0xb9,0x20,0xd0,0xbf,0xd0,
+0xbe,0xd1,0x8f,0xd1,0x81,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x6e,0x61,
+0x6d,0x65,0x3d,0x22,0x75,0x74,0x63,0x22,0x20,0x69,0x64,0x3d,0x22,0x75,0x74,0x63,
+0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,
+0x74,0x68,0x3a,0x39,0x30,0x25,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x31,0x32,0x2e,0x30,0x22,0x3e,0x28,0x47,
+0x4d,0x54,0x20,0x2d,0x31,0x32,0x3a,0x30,0x30,0x29,0x20,0xd0,0xad,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb2,0xd0,0xb5,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0x2c,0x20,0xd0,0x9a,0xd0,
+0xb2,0xd0,0xb0,0xd0,0xb4,0xd0,0xb6,0xd0,0xb0,0xd0,0xbb,0xd0,0xb5,0xd0,0xb9,0xd0,
+0xbd,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x31,0x31,0x2e,0x30,0x22,0x3e,
+0x28,0x47,0x4d,0x54,0x20,0x2d,0x31,0x31,0x3a,0x30,0x30,0x29,0x20,0xd0,0x9e,0xd1,
+0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb2,0x20,0xd0,0x9c,0xd0,0xb8,0xd0,0xb4,
+0xd1,0x83,0xd1,0x8d,0xd0,0xb9,0x2c,0x20,0xd0,0xa1,0xd0,0xb0,0xd0,0xbc,0xd0,0xbe,
+0xd0,0xb0,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x31,0x30,0x2e,0x30,0x22,
+0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x31,0x30,0x3a,0x30,0x30,0x29,0x20,0xd0,0x93,
+0xd0,0xb0,0xd0,0xb2,0xd0,0xb0,0xd0,0xb9,0xd0,0xb8,0x3c,0x2f,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,
+0x3d,0x22,0x2d,0x39,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x39,0x3a,
+0x30,0x30,0x29,0x20,0xd0,0x90,0xd0,0xbb,0xd1,0x8f,0xd1,0x81,0xd0,0xba,0xd0,0xb0,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x38,0x2e,0x30,0x22,0x3e,0x28,0x47,
+0x4d,0x54,0x20,0x2d,0x38,0x3a,0x30,0x30,0x29,0x20,0xd0,0xa2,0xd0,0xb8,0xd1,0x85,
+0xd0,0xbe,0xd0,0xbe,0xd0,0xba,0xd0,0xb5,0xd0,0xb0,0xd0,0xbd,0xd1,0x81,0xd0,0xba,
+0xd0,0xbe,0xd0,0xb5,0x20,0xd0,0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,
+0x28,0xd0,0xa1,0xd0,0xa8,0xd0,0x90,0x20,0xd0,0xb8,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,
+0xbd,0xd0,0xb0,0xd0,0xb4,0xd0,0xb0,0x29,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x2d,0x37,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x37,0x3a,0x30,0x30,
+0x29,0x20,0xd0,0x93,0xd0,0xbe,0xd1,0x80,0xd0,0xbd,0xd0,0xbe,0xd0,0xb5,0x20,0xd0,
+0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,0x28,0xd0,0xa1,0xd0,0xa8,0xd0,
+0x90,0x20,0xd0,0xb8,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbd,0xd0,0xb0,0xd0,0xb4,0xd0,
+0xb0,0x29,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x36,0x2e,0x30,0x22,0x3e,
+0x28,0x47,0x4d,0x54,0x20,0x2d,0x36,0x3a,0x30,0x30,0x29,0x20,0xd0,0xa6,0xd0,0xb5,
+0xd0,0xbd,0xd1,0x82,0xd1,0x80,0xd0,0xb0,0xd0,0xbb,0xd1,0x8c,0xd0,0xbd,0xd0,0xbe,
+0xd0,0xb5,0x20,0xd0,0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,0x28,0xd0,
+0xa1,0xd0,0xa8,0xd0,0x90,0x20,0xd0,0xb8,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbd,0xd0,
+0xb0,0xd0,0xb4,0xd0,0xb0,0x29,0x2c,0x20,0xd0,0x9c,0xd0,0xb5,0xd1,0x85,0xd0,0xb8,
+0xd0,0xba,0xd0,0xbe,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x35,0x2e,0x30,
+0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x35,0x3a,0x30,0x30,0x29,0x20,0xd0,0x92,
+0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,0xd0,0xbd,0xd0,0xbe,0xd0,0xb5,
+0x20,0xd0,0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,0x28,0xd0,0xa1,0xd0,
+0xa8,0xd0,0x90,0x20,0xd0,0xb8,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbd,0xd0,0xb0,0xd0,
+0xb4,0xd0,0xb0,0x29,0x2c,0x20,0xd0,0x91,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0xd1,0x82,
+0xd0,0xb0,0x2c,0x20,0xd0,0x9b,0xd0,0xb8,0xd0,0xbc,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,
+0x75,0x65,0x3d,0x22,0x2d,0x34,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,
+0x34,0x3a,0x30,0x30,0x29,0x20,0xd0,0x90,0xd1,0x82,0xd0,0xbb,0xd0,0xb0,0xd0,0xbd,
+0xd1,0x82,0xd0,0xb8,0xd1,0x87,0xd0,0xb5,0xd1,0x81,0xd0,0xba,0xd0,0xbe,0xd0,0xb5,
+0x20,0xd0,0xb2,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,0x20,0x28,0xd0,0x9a,0xd0,
+0xb0,0xd0,0xbd,0xd0,0xb0,0xd0,0xb4,0xd0,0xb0,0x29,0x2c,0x20,0xd0,0x9a,0xd0,0xb0,
+0xd1,0x80,0xd0,0xb0,0xd0,0xba,0xd0,0xb0,0xd1,0x81,0x2c,0x20,0xd0,0x9b,0xd0,0xb0,
+0x2d,0xd0,0x9f,0xd0,0xb0,0xd1,0x81,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,
+0x33,0x2e,0x35,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x33,0x3a,0x33,0x30,0x29,
+0x20,0xd0,0x9d,0xd1,0x8c,0xd1,0x8e,0xd1,0x84,0xd0,0xb0,0xd1,0x83,0xd0,0xbd,0xd0,
+0xb4,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb4,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x2d,0x33,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x33,0x3a,0x30,
+0x30,0x29,0x20,0xd0,0x91,0xd1,0x80,0xd0,0xb0,0xd0,0xb7,0xd0,0xb8,0xd0,0xbb,0xd0,
+0xb8,0xd1,0x8f,0x2c,0x20,0xd0,0x91,0xd1,0x83,0xd1,0x8d,0xd0,0xbd,0xd0,0xbe,0xd1,
+0x81,0x2d,0xd0,0x90,0xd0,0xb9,0xd1,0x80,0xd0,0xb5,0xd1,0x81,0x2c,0x20,0xd0,0x94,
+0xd0,0xb6,0xd0,0xbe,0xd1,0x80,0xd0,0xb4,0xd0,0xb6,0xd1,0x82,0xd0,0xb0,0xd1,0x83,
+0xd0,0xbd,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2d,0x32,0x2e,0x30,0x22,0x3e,
+0x28,0x47,0x4d,0x54,0x20,0x2d,0x32,0x3a,0x30,0x30,0x29,0x20,0xd0,0xa1,0xd1,0x80,
+0xd0,0xb5,0xd0,0xb4,0xd0,0xb8,0xd0,0xbd,0xd0,0xbd,0xd0,0xbe,0x2d,0xd0,0x90,0xd1,
+0x82,0xd0,0xbb,0xd0,0xb0,0xd0,0xbd,0xd1,0x82,0xd0,0xb8,0xd1,0x87,0xd0,0xb5,0xd1,
+0x81,0xd0,0xba,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x2d,0x31,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2d,0x31,0x3a,0x30,
+0x30,0x20,0xd1,0x87,0xd0,0xb0,0xd1,0x81,0x29,0x20,0xd0,0x90,0xd0,0xb7,0xd0,0xbe,
+0xd1,0x80,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbe,0xd1,0x81,0xd1,
+0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb2,0xd0,0xb0,0x2c,0x20,0xd0,0xbe,0xd1,0x81,0xd1,
+0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb2,0xd0,0xb0,0x20,0xd0,0x97,0xd0,0xb5,0xd0,0xbb,
+0xd0,0xb5,0xd0,0xbd,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0x20,0xd0,0x9c,0xd1,0x8b,0xd1,
+0x81,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x30,0x2e,0x30,0x22,0x3e,
+0x28,0x47,0x4d,0x54,0x29,0x20,0xd0,0x92,0xd1,0x80,0xd0,0xb5,0xd0,0xbc,0xd1,0x8f,
+0x20,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd0,0xb0,0xd0,0xb4,0xd0,0xbd,0xd0,0xbe,0xd0,
+0xb9,0x20,0xd0,0x95,0xd0,0xb2,0xd1,0x80,0xd0,0xbe,0xd0,0xbf,0xd0,0xb5,0x2c,0x20,
+0xd0,0x9b,0xd0,0xbe,0xd0,0xbd,0xd0,0xb4,0xd0,0xbe,0xd0,0xbd,0x2c,0x20,0xd0,0x9b,
+0xd0,0xb8,0xd1,0x81,0xd1,0x81,0xd0,0xb0,0xd0,0xb1,0xd0,0xbe,0xd0,0xbd,0x2c,0x20,
+0xd0,0x9a,0xd0,0xb0,0xd1,0x81,0xd0,0xb0,0xd0,0xb1,0xd0,0xbb,0xd0,0xb0,0xd0,0xbd,
+0xd0,0xba,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x31,0x2e,0x30,0x22,
+0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x31,0x3a,0x30,0x30,0x20,0xd1,0x87,0xd0,0xb0,
+0xd1,0x81,0x29,0x20,0xd0,0x91,0xd1,0x80,0xd1,0x8e,0xd1,0x81,0xd1,0x81,0xd0,0xb5,
+0xd0,0xbb,0xd1,0x8c,0x2c,0x20,0xd0,0x9a,0xd0,0xbe,0xd0,0xbf,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb3,0xd0,0xb0,0xd0,0xb3,0xd0,0xb5,0xd0,0xbd,0x2c,0x20,0xd0,0x9c,0xd0,0xb0,
+0xd0,0xb4,0xd1,0x80,0xd0,0xb8,0xd0,0xb4,0x2c,0x20,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,
+0xd0,0xb8,0xd0,0xb6,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x32,0x2e,0x30,0x22,
+0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x32,0x3a,0x30,0x30,0x29,0x20,0xd0,0x9a,0xd0,
+0xb8,0xd0,0xb5,0xd0,0xb2,0x2c,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,
+0xbd,0xd0,0xb8,0xd0,0xbd,0xd0,0xb3,0xd1,0x80,0xd0,0xb0,0xd0,0xb4,0x2c,0x20,0xd0,
+0xae,0xd0,0xb6,0xd0,0xbd,0xd0,0xb0,0xd1,0x8f,0x20,0xd0,0x90,0xd1,0x84,0xd1,0x80,
+0xd0,0xb8,0xd0,0xba,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,0x2e,
+0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x33,0x3a,0x30,0x30,0x29,0x20,0xd0,
+0x91,0xd0,0xb0,0xd0,0xb3,0xd0,0xb4,0xd0,0xb0,0xd0,0xb4,0x2c,0x20,0xd0,0xad,0xd1,
+0x80,0x2d,0xd0,0xa0,0xd0,0xb8,0xd1,0x8f,0xd0,0xb4,0x2c,0x20,0xd0,0x9c,0xd0,0xbe,
+0xd1,0x81,0xd0,0xba,0xd0,0xb2,0xd0,0xb0,0x2c,0x20,0xd0,0xa1,0xd0,0xb0,0xd0,0xbd,
+0xd0,0xba,0xd1,0x82,0x2d,0xd0,0x9f,0xd0,0xb5,0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,
+0xb1,0xd1,0x83,0xd1,0x80,0xd0,0xb3,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,
+0x2e,0x35,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x33,0x3a,0x33,0x30,0x29,0x20,
+0xd0,0xa2,0xd0,0xb5,0xd0,0xb3,0xd0,0xb5,0xd1,0x80,0xd0,0xb0,0xd0,0xbd,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x34,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,
+0x2b,0x34,0x3a,0x30,0x30,0x29,0x20,0xd0,0x90,0xd0,0xb1,0xd1,0x83,0x2d,0xd0,0x94,
+0xd0,0xb0,0xd0,0xb1,0xd0,0xb8,0x2c,0x20,0xd0,0x9c,0xd1,0x83,0xd1,0x81,0xd0,0xba,
+0xd0,0xb0,0xd1,0x82,0x2c,0x20,0xd0,0x91,0xd0,0xb0,0xd0,0xba,0xd1,0x83,0x2c,0x20,
+0xd0,0xa2,0xd0,0xb1,0xd0,0xb8,0xd0,0xbb,0xd0,0xb8,0xd1,0x81,0xd0,0xb8,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x34,0x2e,0x35,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,
+0x2b,0x34,0x3a,0x33,0x30,0x29,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xb1,0xd1,0x83,0xd0,
+0xbb,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x35,0x2e,0x30,0x22,0x3e,0x28,0x47,
+0x4d,0x54,0x20,0x2b,0x35,0x3a,0x30,0x30,0x29,0x20,0xd0,0x95,0xd0,0xba,0xd0,0xb0,
+0xd1,0x82,0xd0,0xb5,0xd1,0x80,0xd0,0xb8,0xd0,0xbd,0xd0,0xb1,0xd1,0x83,0xd1,0x80,
+0xd0,0xb3,0x2c,0x20,0xd0,0x98,0xd1,0x81,0xd0,0xbb,0xd0,0xb0,0xd0,0xbc,0xd0,0xb0,
+0xd0,0xb1,0xd0,0xb0,0xd0,0xb4,0x2c,0x20,0xd0,0x9a,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,
+0xd1,0x87,0xd0,0xb8,0x2c,0x20,0xd0,0xa2,0xd0,0xb0,0xd1,0x88,0xd0,0xba,0xd0,0xb5,
+0xd0,0xbd,0xd1,0x82,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x35,0x2e,0x35,0x22,
+0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x35,0x3a,0x33,0x30,0x29,0x20,0xd0,0x91,0xd0,
+0xbe,0xd0,0xbc,0xd0,0xb1,0xd0,0xb5,0xd0,0xb9,0x2c,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,
+0xbb,0xd1,0x8c,0xd0,0xba,0xd1,0x83,0xd1,0x82,0xd1,0x82,0xd0,0xb0,0x2c,0x20,0xd0,
+0x9c,0xd0,0xb0,0xd0,0xb4,0xd1,0x80,0xd0,0xb0,0xd1,0x81,0x2c,0x20,0xd0,0x9d,0xd1,
+0x8c,0xd1,0x8e,0x2d,0xd0,0x94,0xd0,0xb5,0xd0,0xbb,0xd0,0xb8,0x3c,0x2f,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,
+0x75,0x65,0x3d,0x22,0x35,0x2e,0x37,0x35,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,
+0x35,0x3a,0x34,0x35,0x29,0x20,0xd0,0x9a,0xd0,0xb0,0xd1,0x82,0xd0,0xbc,0xd0,0xb0,
+0xd0,0xbd,0xd0,0xb4,0xd1,0x83,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x36,0x2e,
+0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x36,0x3a,0x30,0x30,0x29,0x20,0xd0,
+0x90,0xd0,0xbb,0xd0,0xbc,0xd0,0xb0,0xd1,0x82,0xd1,0x8b,0x2c,0x20,0xd0,0x94,0xd0,
+0xb0,0xd0,0xba,0xd0,0xba,0xd0,0xb5,0x2c,0x20,0xd0,0x9a,0xd0,0xbe,0xd0,0xbb,0xd0,
+0xbe,0xd0,0xbc,0xd0,0xb1,0xd0,0xbe,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x37,
+0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x37,0x3a,0x30,0x30,0x29,0x20,
+0xd0,0x91,0xd0,0xb0,0xd0,0xbd,0xd0,0xb3,0xd0,0xba,0xd0,0xbe,0xd0,0xba,0x2c,0x20,
+0xd0,0xa5,0xd0,0xb0,0xd0,0xbd,0xd0,0xbe,0xd0,0xb9,0x2c,0x20,0xd0,0x94,0xd0,0xb6,
+0xd0,0xb0,0xd0,0xba,0xd0,0xb0,0xd1,0x80,0xd1,0x82,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,
+0x75,0x65,0x3d,0x22,0x38,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x38,
+0x3a,0x30,0x30,0x29,0x20,0xd0,0x9f,0xd0,0xb5,0xd0,0xba,0xd0,0xb8,0xd0,0xbd,0x2c,
+0x20,0xd0,0x9f,0xd0,0xb5,0xd1,0x80,0xd1,0x82,0x2c,0x20,0xd0,0xa1,0xd0,0xb8,0xd0,
+0xbd,0xd0,0xb3,0xd0,0xb0,0xd0,0xbf,0xd1,0x83,0xd1,0x80,0x2c,0x20,0xd0,0x93,0xd0,
+0xbe,0xd0,0xbd,0xd0,0xba,0xd0,0xbe,0xd0,0xbd,0xd0,0xb3,0x3c,0x2f,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x39,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x39,0x3a,
+0x30,0x30,0x29,0x20,0xd0,0xa2,0xd0,0xbe,0xd0,0xba,0xd0,0xb8,0xd0,0xbe,0x2c,0x20,
+0xd0,0xa1,0xd0,0xb5,0xd1,0x83,0xd0,0xbb,0x2c,0x20,0xd0,0x9e,0xd1,0x81,0xd0,0xb0,
+0xd0,0xba,0xd0,0xb0,0x2c,0x20,0xd0,0xa1,0xd0,0xb0,0xd0,0xbf,0xd0,0xbf,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbe,0x2c,0x20,0xd0,0xaf,0xd0,0xba,0xd1,0x83,0xd1,0x82,0xd1,0x81,
+0xd0,0xba,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x39,0x2e,0x35,0x22,0x3e,0x28,
+0x47,0x4d,0x54,0x20,0x2b,0x39,0x3a,0x33,0x30,0x29,0x20,0xd0,0x90,0xd0,0xb4,0xd0,
+0xb5,0xd0,0xbb,0xd0,0xb0,0xd0,0xb8,0xd0,0xb4,0xd0,0xb0,0x2c,0x20,0xd0,0x94,0xd0,
+0xb0,0xd1,0x80,0xd0,0xb2,0xd0,0xb8,0xd0,0xbd,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x31,0x30,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x31,0x30,0x3a,
+0x30,0x30,0x29,0x20,0xd0,0x92,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,
+0xd0,0xbd,0xd0,0xb0,0xd1,0x8f,0x20,0xd0,0x90,0xd0,0xb2,0xd1,0x81,0xd1,0x82,0xd1,
+0x80,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd1,0x8f,0x2c,0x20,0xd0,0x93,0xd1,0x83,0xd0,
+0xb0,0xd0,0xbc,0x2c,0x20,0xd0,0x92,0xd0,0xbb,0xd0,0xb0,0xd0,0xb4,0xd0,0xb8,0xd0,
+0xb2,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0x3c,0x2f,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x31,0x31,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x31,
+0x31,0x3a,0x30,0x30,0x29,0x20,0xd0,0x9c,0xd0,0xb0,0xd0,0xb3,0xd0,0xb0,0xd0,0xb4,
+0xd0,0xb0,0xd0,0xbd,0x2c,0x20,0xd0,0xa1,0xd0,0xbe,0xd0,0xbb,0xd0,0xbe,0xd0,0xbc,
+0xd0,0xbe,0xd0,0xbd,0xd0,0xbe,0xd0,0xb2,0xd1,0x8b,0x20,0xd0,0xbe,0xd1,0x81,0xd1,
+0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb2,0xd0,0xb0,0x2c,0x20,0xd0,0x9d,0xd0,0xbe,0xd0,
+0xb2,0xd0,0xb0,0xd1,0x8f,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbb,0xd0,0xb5,0xd0,0xb4,
+0xd0,0xbe,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x31,0x32,0x2e,0x30,0x22,0x3e,0x28,0x47,0x4d,0x54,0x20,0x2b,0x31,0x32,0x3a,0x30,
+0x30,0x29,0x20,0xd0,0x9e,0xd0,0xba,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb4,0x2c,
+0x20,0xd0,0x92,0xd0,0xb5,0xd0,0xbb,0xd0,0xbb,0xd0,0xb8,0xd0,0xbd,0xd0,0xb3,0xd1,
+0x82,0xd0,0xbe,0xd0,0xbd,0x2c,0x20,0xd0,0xa4,0xd0,0xb8,0xd0,0xb4,0xd0,0xb6,0xd0,
+0xb8,0x2c,0x20,0xd0,0x9a,0xd0,0xb0,0xd0,0xbc,0xd1,0x87,0xd0,0xb0,0xd1,0x82,0xd0,
+0xba,0xd0,0xb0,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3e,0x3c,
+0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,
+0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,
+0x65,0x3d,0x22,0x6e,0x74,0x70,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x74,0x70,0x22,
+0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x6e,0x74,0x70,0x53,0x74,
+0x61,0x74,0x65,0x28,0x29,0x22,0x3e,0x20,0xd0,0x90,0xd0,0xba,0xd1,0x82,0xd0,0xb8,
+0xd0,0xb2,0xd0,0xb8,0xd1,0x80,0xd0,0xbe,0xd0,0xb2,0xd0,0xb0,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x6c,
+0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6e,0x74,0x70,0x73,0x65,0x72,
+0x76,0x69,0x70,0x22,0x3e,0xd0,0xa1,0xd0,0xb5,0xd1,0x80,0xd0,0xb2,0xd0,0xb5,0xd1,
+0x80,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,
+0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,
+0x6e,0x74,0x70,0x73,0x65,0x72,0x76,0x69,0x70,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,
+0x74,0x70,0x73,0x65,0x72,0x76,0x69,0x70,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,
+0x67,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x4f,0x74,0x68,0x65,0x72,0x28,0x74,
+0x68,0x69,0x73,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,
+0x6c,0x75,0x65,0x3d,0x22,0x39,0x31,0x2e,0x32,0x32,0x36,0x2e,0x31,0x33,0x36,0x2e,
+0x31,0x33,0x36,0x22,0x3e,0x6e,0x74,0x70,0x31,0x2e,0x73,0x74,0x72,0x61,0x74,0x75,
+0x6d,0x32,0x2e,0x72,0x75,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x38,0x38,0x2e,
+0x31,0x34,0x37,0x2e,0x32,0x35,0x34,0x2e,0x32,0x33,0x32,0x22,0x3e,0x6e,0x74,0x70,
+0x32,0x2e,0x73,0x74,0x72,0x61,0x74,0x75,0x6d,0x32,0x2e,0x72,0x75,0x3c,0x2f,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,
+0x6c,0x75,0x65,0x3d,0x22,0x38,0x38,0x2e,0x31,0x34,0x37,0x2e,0x32,0x35,0x34,0x2e,
+0x32,0x33,0x35,0x22,0x3e,0x6e,0x74,0x70,0x33,0x2e,0x73,0x74,0x72,0x61,0x74,0x75,
+0x6d,0x32,0x2e,0x72,0x75,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x6f,0x74,0x68,
+0x65,0x72,0x22,0x3e,0xd0,0x94,0xd1,0x80,0xd1,0x83,0xd0,0xb3,0xd0,0xbe,0xd0,0xb9,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x6c,0x61,0x62,0x65,0x6c,
+0x20,0x66,0x6f,0x72,0x3d,0x22,0x6c,0x61,0x73,0x74,0x73,0x79,0x6e,0x63,0x74,0x69,
+0x6d,0x65,0x22,0x3e,0xd0,0x9f,0xd0,0xbe,0xd1,0x81,0xd0,0xbb,0xd0,0xb5,0xd0,0xb4,
+0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x81,0xd0,0xb8,0xd0,0xbd,0xd1,0x85,0xd1,
+0x80,0xd0,0xbe,0xd0,0xbd,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,
+0x8f,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x3c,0x69,0x6e,
+0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,
+0x72,0x6f,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6c,0x61,0x73,0x74,0x73,0x79,0x6e,
+0x63,0x74,0x69,0x6d,0x65,0x22,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3d,
+0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x3c,0x62,0x72,0x3e,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,
+0x3e,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,
+0x3a,0x31,0x30,0x30,0x25,0x22,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,
+0x61,0x72,0x79,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,
+0x74,0x75,0x72,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x46,0x6f,0x72,0x6d,0x73,
+0x28,0x29,0x2c,0x21,0x31,0x22,0x3e,0xd0,0x9f,0xd1,0x80,0xd0,0xb8,0xd0,0xbc,0xd0,
+0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,
+0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,
+0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x22,0x20,
+0x69,0x64,0x3d,0x22,0x64,0x65,0x76,0x2d,0x72,0x65,0x73,0x65,0x74,0x22,0x3e,0xd0,
+0xa1,0xd0,0xb1,0xd1,0x80,0xd0,0xbe,0xd1,0x81,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,
+0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,
+0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x64,0x65,0x76,0x2d,0x72,0x65,0x62,0x6f,0x6f,0x74,0x22,
+0x3e,0xd0,0x9f,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,0xb7,0xd0,0xb0,0xd0,0xb3,0xd1,
+0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,0xd0,0xb0,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,
+0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,
+0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x64,0x65,0x76,0x2d,0x75,0x70,0x64,0x61,0x74,0x65,0x22,
+0x3e,0xd0,0x9e,0xd0,0xb1,0xd0,0xbd,0xd0,0xbe,0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,
+0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbf,0xd1,0x80,0xd0,0xbe,0xd1,0x88,0xd0,0xb8,
+0xd0,0xb2,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,
+0x2f,0x70,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,
+0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x2e,
+0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,0x73,0x63,
+0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,
+0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x3e,0x76,0x61,0x72,0x20,
+0x6e,0x74,0x70,0x73,0x65,0x72,0x76,0x69,0x70,0x56,0x61,0x6c,0x75,0x65,0x2c,0x65,
+0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x3d,
+0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x65,0x78,0x74,
+0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x2c,0x7b,
+0x6e,0x61,0x6d,0x65,0x3a,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,
+0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x7d,0x29,0x2c,0x65,0x78,0x74,0x74,0x65,0x6d,
+0x70,0x5f,0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,
+0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,
+0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,0x74,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,
+0x22,0x65,0x78,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,
+0x74,0x22,0x7d,0x29,0x2c,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,
+0x5f,0x68,0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,
+0x78,0x28,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x5f,0x68,
+0x69,0x73,0x74,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x61,0x74,0x74,
+0x65,0x6d,0x70,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x7d,0x29,0x2c,
+0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,0x74,
+0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x62,0x61,
+0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,0x61,0x78,0x5f,0x68,0x69,0x73,0x74,0x22,0x2c,
+0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x61,0x74,0x74,0x65,0x6d,0x70,0x5f,0x6d,
+0x61,0x78,0x5f,0x68,0x69,0x73,0x74,0x22,0x7d,0x29,0x2c,0x62,0x61,0x74,0x76,0x6f,
+0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,
+0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,
+0x65,0x5f,0x6d,0x69,0x6e,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x61,
+0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x22,0x7d,0x29,0x2c,
+0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x5f,0x68,
+0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,
+0x22,0x62,0x61,0x74,0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x5f,
+0x68,0x69,0x73,0x74,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x61,0x74,
+0x76,0x6f,0x6c,0x74,0x61,0x67,0x65,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,
+0x22,0x7d,0x29,0x2c,0x62,0x61,0x74,0x63,0x68,0x61,0x72,0x67,0x65,0x5f,0x76,0x6f,
+0x6c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,
+0x62,0x61,0x74,0x63,0x68,0x61,0x72,0x67,0x65,0x5f,0x76,0x6f,0x6c,0x74,0x22,0x2c,
+0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x61,0x74,0x63,0x68,0x61,0x72,0x67,0x65,
+0x5f,0x76,0x6f,0x6c,0x74,0x22,0x7d,0x29,0x2c,0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,
+0x70,0x5f,0x6b,0x5f,0x62,0x75,0x66,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,
+0x42,0x6f,0x78,0x28,0x22,0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,
+0x62,0x75,0x66,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x65,0x6d,0x70,
+0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x62,0x75,0x66,0x22,0x7d,0x29,0x2c,0x74,0x65,
+0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x63,0x79,0x63,0x6c,0x65,0x3d,0x6e,
+0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x74,0x65,0x6d,0x70,
+0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,0x63,0x79,0x63,0x6c,0x65,0x22,0x2c,0x7b,0x6e,
+0x61,0x6d,0x65,0x3a,0x22,0x74,0x65,0x6d,0x70,0x63,0x6f,0x6d,0x70,0x5f,0x6b,0x5f,
+0x63,0x79,0x63,0x6c,0x65,0x22,0x7d,0x29,0x2c,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,
+0x74,0x5f,0x6d,0x69,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,
+0x78,0x28,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,0x6d,0x69,0x6e,0x22,
+0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,
+0x5f,0x6d,0x69,0x6e,0x22,0x7d,0x29,0x2c,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,
+0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,
+0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,
+0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,
+0x22,0x6c,0x6f,0x61,0x64,0x76,0x6f,0x6c,0x74,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,
+0x73,0x74,0x22,0x7d,0x29,0x2c,0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x3d,0x6e,0x65,
+0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,0x70,0x70,0x73,0x5f,0x6d,
+0x69,0x6e,0x22,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x70,0x70,0x73,0x5f,0x6d,
+0x69,0x6e,0x22,0x7d,0x29,0x2c,0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,
+0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x70,0x69,0x6e,0x42,0x6f,0x78,0x28,0x22,
+0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,0x74,0x22,0x2c,0x7b,0x6e,
+0x61,0x6d,0x65,0x3a,0x22,0x70,0x70,0x73,0x5f,0x6d,0x69,0x6e,0x5f,0x68,0x69,0x73,
+0x74,0x22,0x7d,0x29,0x3b,0x44,0x59,0x4e,0x5f,0x57,0x45,0x42,0x2e,0x54,0x61,0x62,
+0x73,0x2e,0x73,0x65,0x74,0x75,0x70,0x28,0x7b,0x69,0x64,0x3a,0x22,0x74,0x61,0x62,
+0x73,0x65,0x74,0x31,0x22,0x2c,0x75,0x73,0x65,0x43,0x6f,0x6f,0x6b,0x69,0x65,0x73,
+0x3a,0x21,0x30,0x7d,0x29,0x2c,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x47,0x45,
+0x54,0x28,0x29,0x2c,0x24,0x28,0x22,0x64,0x65,0x76,0x2d,0x75,0x70,0x64,0x61,0x74,
+0x65,0x22,0x29,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,
+0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x24,0x28,0x22,0x63,0x6f,0x75,0x6e,0x74,0x2d,
+0x77,0x72,0x61,0x70,0x22,0x29,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,
+0x70,0x6c,0x61,0x79,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x2c,0x24,0x28,0x22,
+0x63,0x68,0x65,0x63,0x6b,0x55,0x70,0x64,0x61,0x74,0x65,0x50,0x61,0x73,0x73,0x22,
+0x29,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,
+0x22,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x7d,0x2c,0x24,0x28,0x22,0x63,0x6c,0x6f,0x73,
+0x65,0x2d,0x70,0x61,0x73,0x73,0x22,0x29,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,
+0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x24,0x28,0x22,0x63,
+0x6f,0x75,0x6e,0x74,0x2d,0x77,0x72,0x61,0x70,0x22,0x29,0x2e,0x73,0x74,0x79,0x6c,
+0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,
+0x2c,0x24,0x28,0x22,0x63,0x68,0x65,0x63,0x6b,0x55,0x70,0x64,0x61,0x74,0x65,0x50,
+0x61,0x73,0x73,0x22,0x29,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,
+0x6c,0x61,0x79,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x7d,0x2c,0x24,0x28,0x22,0x64,
+0x65,0x76,0x2d,0x72,0x65,0x73,0x65,0x74,0x22,0x29,0x2e,0x6f,0x6e,0x63,0x6c,0x69,
+0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,
+0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x29,0x7b,0x77,0x69,0x6e,0x64,0x6f,
+0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,
+0x22,0x2f,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x7d,0x31,0x3d,0x3d,0x67,0x65,0x74,0x43,0x47,0x49,0x28,0x22,0x72,0x65,0x73,0x65,
+0x74,0x2e,0x63,0x67,0x69,0x22,0x29,0x26,0x26,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,
+0x6f,0x75,0x74,0x28,0x74,0x2c,0x31,0x65,0x33,0x29,0x7d,0x2c,0x24,0x28,0x22,0x64,
+0x65,0x76,0x2d,0x72,0x65,0x62,0x6f,0x6f,0x74,0x22,0x29,0x2e,0x6f,0x6e,0x63,0x6c,
+0x69,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,
+0x3d,0x22,0x72,0x65,0x62,0x6f,0x6f,0x74,0x2e,0x63,0x67,0x69,0x22,0x2c,0x31,0x3d,
+0x3d,0x67,0x65,0x74,0x43,0x47,0x49,0x28,0x61,0x29,0x26,0x26,0x28,0x24,0x28,0x22,
+0x63,0x6f,0x75,0x6e,0x74,0x2d,0x77,0x72,0x61,0x70,0x22,0x29,0x2e,0x73,0x74,0x79,
+0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x22,0x62,0x6c,0x6f,0x63,
+0x6b,0x22,0x2c,0x24,0x28,0x22,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x22,
+0x29,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,
+0x22,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x2c,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,
+0x6e,0x28,0x21,0x30,0x29,0x29,0x7d,0x3b,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,
+0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,};
+
+static const unsigned int dummy_align__snmp_html = 8;
+static const unsigned char data__snmp_html[] = {
+/* /snmp.html (11 chars) */
+0x2f,0x73,0x6e,0x6d,0x70,0x2e,0x68,0x74,0x6d,0x6c,0x00,0x00,
+
+/* HTTP header */
+/* "HTTP/1.0 200 OK
+" (17 bytes) */
+0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d,
+0x0a,
+/* "Server: lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip)
+" (63 bytes) */
+0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x31,0x2e,0x33,
+0x2e,0x31,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61,0x6e,
+0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f,0x70,
+0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a,
+/* "Content-type: text/html
+
+" (27 bytes) */
+0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x65,
+0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a,
+/* raw file data (13344 bytes) */
+0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
+0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x22,0x3e,0x3c,0x68,0x65,
+0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,
+0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,
+0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x58,0x2d,0x55,0x41,0x2d,
+0x43,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,
+0x65,0x6e,0x74,0x3d,0x22,0x49,0x45,0x3d,0x65,0x64,0x67,0x65,0x22,0x3e,0x3c,0x6d,
+0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,
+0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,
+0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,
+0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2c,
+0x75,0x73,0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x61,0x62,0x6c,0x65,0x3d,0x30,0x22,
+0x3e,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0x53,0x4e,0x4d,0x50,0x20,0xd1,0x83,0xd0,
+0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd1,0x8f,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x3c,0x6c,0x69,0x6e,0x6b,
+0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,
+0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,
+0x22,0x3e,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,
+0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x62,0x61,
+0x72,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
+0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x66,0x69,0x78,0x65,0x64,0x2d,0x74,0x6f,
+0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,
+0x61,0x76,0x62,0x61,0x72,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x3c,0x64,
+0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,
+0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,
+0x6f,0x67,0x6f,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,
+0x2f,0x64,0x69,0x76,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x6e,0x75,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,
+0x3c,0x2f,0x61,0x3e,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,
+0x61,0x76,0x20,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x6e,0x61,0x76,0x22,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,
+0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x3e,0xd0,0x9f,0xd0,0xb0,0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xb5,0xd1,0x82,0xd1,
+0x80,0xd1,0x8b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,
+0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,
+0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,
+0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,
+0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,
+0x73,0x6e,0x6d,0x70,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0xd0,0xa3,0xd0,0xb2,0xd0,0xb5,
+0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,
+0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,
+0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x66,0x6f,0x2e,0x68,0x74,0x6d,0x6c,0x22,
+0x3e,0xd0,0x98,0xd0,0xbd,0xd1,0x84,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd1,
+0x86,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,
+0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,
+0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0xd0,0x96,0xd1,0x83,0xd1,0x80,0xd0,
+0xbd,0xd0,0xb0,0xd0,0xbb,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x6c,
+0x69,0x3e,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x6f,0x63,0x6b,0x62,0x6f,
+0x78,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x3c,0x2f,0x75,0x6c,
+0x3e,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x3c,0x68,0x31,0x3e,0x53,0x4e,0x4d,
+0x50,0x20,0xd1,0x83,0xd0,0xb2,0xd0,0xb5,0xd0,0xb4,0xd0,0xbe,0xd0,0xbc,0xd0,0xbb,
+0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x68,0x31,0x3e,0x3c,0x74,0x61,
+0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x61,0x62,0x6c,0x65,
+0x20,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
+0x22,0x3e,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x3e,0xd0,0x9e,0xd0,0xbf,
+0xd0,0xb8,0xd1,0x81,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x3c,0x2f,0x74,0x68,
+0x3e,0x3c,0x74,0x68,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x3e,
+0xd0,0x9e,0xd1,0x82,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,0xb2,0xd0,0xba,0xd0,0xb0,
+0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x68,0x65,0x61,
+0x64,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x70,0x68,0x22,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x32,0x22,
+0x3e,0xd0,0x90,0xd0,0xba,0xd0,0xba,0xd1,0x83,0xd0,0xbc,0xd1,0x83,0xd0,0xbb,0xd1,
+0x8f,0xd1,0x82,0xd0,0xbe,0xd1,0x80,0xd0,0xbd,0xd1,0x8b,0xd0,0xb5,0x20,0xd0,0xb1,
+0xd0,0xb0,0xd1,0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb5,0xd0,0xb8,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,
+0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,
+0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,
+0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,0xb0,
+0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,
+0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,
+0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,
+0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,
+0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x56,0x6f,0x6c,0x74,0x61,0x67,
+0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,
+0x72,0x79,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,
+0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,
+0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,
+0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,
+0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,
+0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,
+0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,
+0x97,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,
+0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0xd0,0x90,0xd0,0x9a,
+0xd0,0x91,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,
+0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,
+0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,
+0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,
+0x74,0x74,0x65,0x72,0x79,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x41,0x6c,0x61,0x72,
+0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x56,0x6f,
+0x6c,0x74,0x61,0x67,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,
+0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,
+0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,
+0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,
+0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,
+0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,
+0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,
+0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x81,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,
+0x8f,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x81,0xd0,0xb8,0xd0,0xbc,0xd0,0xbc,
+0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd0,0xb8,0xd0,0xb8,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,
+0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb5,0xd0,0xb9,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,
+0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,
+0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,
+0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x53,0x69,0x6d,0x6d,
+0x65,0x74,0x72,0x79,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,
+0x74,0x74,0x65,0x72,0x79,0x53,0x69,0x6d,0x6d,0x65,0x74,0x72,0x79,0x4e,0x6f,0x72,
+0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,
+0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,
+0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,
+0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,
+0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,
+0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,
+0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,
+0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,
+0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,
+0x74,0x64,0x3e,0xd0,0x9e,0xd1,0x82,0xd1,0x81,0xd1,0x83,0xd1,0x82,0xd1,0x81,0xd1,
+0x82,0xd0,0xb2,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x81,0xd0,0xb8,0xd0,0xbc,0xd0,0xbc,
+0xd0,0xb5,0xd1,0x82,0xd1,0x80,0xd0,0xb8,0xd0,0xb8,0x20,0xd0,0xb1,0xd0,0xb0,0xd1,
+0x82,0xd0,0xb0,0xd1,0x80,0xd0,0xb5,0xd0,0xb9,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,
+0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,
+0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,
+0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x53,0x69,0x6d,0x6d,
+0x65,0x74,0x72,0x79,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,
+0x61,0x74,0x74,0x65,0x72,0x79,0x53,0x69,0x6d,0x6d,0x65,0x74,0x72,0x79,0x41,0x6c,
+0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,
+0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,
+0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,
+0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,
+0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,
+0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,
+0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,
+0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,
+0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x98,0xd0,0xb7,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x81,0xd0,0xbe,0xd1,0x81,0xd1,0x82,
+0xd0,0xbe,0xd1,0x8f,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xba,0xd0,0xbb,0xd1,
+0x8e,0xd1,0x87,0xd0,0xb0,0x20,0x22,0xd0,0xa3,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,
+0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbf,0xd0,0xb8,
+0xd1,0x82,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0xd0,0xbc,0x20,0xd0,0xba,0xd0,
+0xbe,0xd0,0xbd,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,0xd0,0xbb,0xd0,0xb5,0xd1,
+0x80,0xd0,0xb0,0x20,0xd0,0xbe,0xd1,0x82,0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,0x22,
+0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,
+0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,
+0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,
+0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,
+0x65,0x72,0x79,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,
+0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x43,0x6f,
+0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,
+0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,
+0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,
+0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,
+0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x98,
+0xd0,0xb7,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,
+0x20,0xd1,0x81,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x8f,0xd0,0xbd,0xd0,
+0xb8,0xd1,0x8f,0x20,0xd0,0xba,0xd0,0xbb,0xd1,0x8e,0xd1,0x87,0xd0,0xb0,0x20,0x22,
+0xd0,0xa3,0xd0,0xbf,0xd1,0x80,0xd0,0xb0,0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xb7,0xd0,0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,
+0xbe,0xd0,0xbc,0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,0x22,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,
+0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x43,0x68,
+0x61,0x72,0x67,0x65,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,
+0x65,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x43,
+0x68,0x61,0x72,0x67,0x65,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,
+0x67,0x65,0x64,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,
+0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,
+0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,
+0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,
+0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,
+0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,
+0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,
+0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,
+0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,
+0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,
+0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x82,
+0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,
+0xd1,0x80,0xd1,0x8b,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,
+0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,
+0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,
+0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,
+0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,
+0x74,0x65,0x72,0x79,0x54,0x65,0x6d,0x70,0x65,0x72,0x61,0x74,0x75,0x72,0x65,0x4e,
+0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,
+0x54,0x65,0x6d,0x70,0x65,0x72,0x61,0x74,0x75,0x72,0x65,0x4e,0x6f,0x72,0x6d,0x22,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,
+0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,
+0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,
+0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,
+0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,
+0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,
+0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,
+0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,
+0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,
+0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,
+0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xb2,0xd1,0x8b,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb5,0x2f,0xd0,0xb7,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb6,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x82,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,
+0xb5,0xd1,0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd1,0x8b,0x20,0xd0,0xbd,
+0xd0,0xb0,0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,
+0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,
+0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,
+0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x54,0x65,0x6d,
+0x70,0x65,0x72,0x61,0x74,0x75,0x72,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x54,0x65,0x6d,0x70,0x65,0x72,
+0x61,0x74,0x75,0x72,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,
+0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,
+0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,
+0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,
+0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,
+0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,
+0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,
+0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,
+0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,
+0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0xd0,0xb0,0x20,0xd0,0xb7,
+0xd0,0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,0xb0,0x20,0xd0,0x90,0xd0,0x9a,0xd0,
+0x91,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,
+0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,
+0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,
+0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,
+0x74,0x74,0x65,0x72,0x79,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x72,0x6d,
+0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x43,0x75,0x72,
+0x72,0x65,0x6e,0x74,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,
+0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,
+0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,
+0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,
+0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xb2,
+0xd1,0x8b,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x82,0xd0,
+0xbe,0xd0,0xba,0xd0,0xb0,0x20,0xd0,0xb7,0xd0,0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,
+0xd0,0xb0,0x20,0xd0,0x90,0xd0,0x9a,0xd0,0x91,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,
+0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,
+0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,
+0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x43,0x75,0x72,
+0x72,0x65,0x6e,0x74,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,
+0x61,0x74,0x74,0x65,0x72,0x79,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x6c,0x61,
+0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,
+0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,
+0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,
+0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,
+0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x20,0x63,
+0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x32,0x22,0x3e,0xd0,0x94,0xd0,0xb0,0xd1,
+0x82,0xd1,0x87,0xd0,0xb8,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,
+0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,
+0xba,0xd1,0x80,0xd1,0x8b,0xd1,0x82,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xb4,0xd0,0xb2,
+0xd0,0xb5,0xd1,0x80,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,
+0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,
+0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,
+0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,
+0x3d,0x22,0x44,0x6f,0x6f,0x72,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x44,0x6f,0x6f,0x72,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,
+0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,
+0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,
+0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,
+0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x92,0xd1,0x81,0xd0,0xba,
+0xd1,0x80,0xd1,0x8b,0xd1,0x82,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xb4,0xd0,0xb2,0xd0,
+0xb5,0xd1,0x80,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,
+0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,
+0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,
+0x22,0x44,0x6f,0x6f,0x72,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x44,0x6f,0x6f,0x72,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,
+0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,
+0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,
+0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,
+0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,
+0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,
+0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x70,0x68,0x22,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x32,
+0x22,0x3e,0xd0,0x9d,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,
+0xd0,0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,
+0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,
+0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,
+0x8f,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,
+0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,
+0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,
+0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,
+0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x4c,0x6f,
+0x61,0x64,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x4c,0x6f,0x61,0x64,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x4e,0x6f,
+0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,
+0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,
+0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,
+0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,
+0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb6,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,
+0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,0xb0,
+0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,
+0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,
+0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x4c,0x6f,0x61,0x64,0x56,0x6f,0x6c,0x74,
+0x61,0x67,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x4c,0x6f,
+0x61,0x64,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,
+0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,
+0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,
+0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,
+0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,
+0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,
+0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,
+0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,
+0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,
+0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,
+0xd0,0x9d,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,
+0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0xd0,
+0xb0,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,
+0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,
+0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,
+0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,
+0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x4c,0x6f,
+0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,
+0x64,0x3d,0x22,0x4c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4e,0x6f,
+0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,
+0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,
+0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,
+0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,
+0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,
+0x3c,0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xb2,0xd1,0x8b,0xd1,0x88,0xd0,0xb5,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x2f,0xd0,0xb7,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,
+0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,
+0xd0,0xb0,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,
+0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,
+0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,
+0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x4c,
+0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x6c,0x61,0x72,0x6d,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x4c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,
+0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,
+0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,
+0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,
+0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,
+0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,
+0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,
+0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,
+0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,
+0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x98,0xd0,0xb7,0xd0,0xbc,0xd0,0xb5,0xd0,
+0xbd,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x81,0xd0,0xbe,0xd1,0x81,
+0xd1,0x82,0xd0,0xbe,0xd1,0x8f,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xba,0xd0,
+0xbb,0xd1,0x8e,0xd1,0x87,0xd0,0xb0,0x20,0xc2,0xab,0xd0,0xa3,0xd0,0xbf,0xd1,0x80,
+0xd0,0xb0,0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,
+0xbd,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb7,0xd0,0xba,0xd0,0xbe,0xd0,
+0xb9,0xc2,0xbb,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,
+0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,
+0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x4c,
+0x6f,0x61,0x64,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,
+0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x4c,0x6f,0x61,0x64,0x43,0x6f,0x6e,0x74,0x72,
+0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,
+0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,
+0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,
+0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,
+0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,
+0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,
+0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x70,0x68,0x22,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x32,
+0x22,0x3e,0xd0,0xa2,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb0,
+0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd0,0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,0xd1,0x80,
+0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,
+0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x82,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,0xb5,0xd1,
+0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd1,0x8b,0x20,0xd0,0xb7,0xd0,0xb0,
+0x20,0xd0,0xb1,0xd0,0xbe,0xd1,0x80,0xd1,0x82,0xd0,0xbe,0xd0,0xbc,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,
+0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,
+0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,
+0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x54,0x65,0x6d,0x70,0x65,0x72,0x61,
+0x74,0x75,0x72,0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x54,0x65,
+0x6d,0x70,0x65,0x72,0x61,0x74,0x75,0x72,0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,
+0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,
+0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,
+0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,
+0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,
+0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,
+0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,
+0x97,0xd0,0xb0,0xd0,0xb2,0xd1,0x8b,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,
+0xb5,0x2f,0xd0,0xb7,0xd0,0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x82,0xd0,0xb5,0xd0,0xbc,0xd0,0xbf,0xd0,0xb5,0xd1,
+0x80,0xd0,0xb0,0xd1,0x82,0xd1,0x83,0xd1,0x80,0xd1,0x8b,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,
+0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x54,0x65,0x6d,0x70,0x65,0x72,0x61,0x74,0x75,
+0x72,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x54,0x65,0x6d,
+0x70,0x65,0x72,0x61,0x74,0x75,0x72,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,
+0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,
+0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,
+0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,
+0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,
+0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,
+0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,
+0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,
+0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,
+0x6e,0x3d,0x22,0x32,0x22,0x3e,0xd0,0x98,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x87,
+0xd0,0xbd,0xd0,0xb8,0xd0,0xba,0x20,0xd0,0xbf,0xd0,0xb8,0xd1,0x82,0xd0,0xb0,0xd0,
+0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,
+0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xbe,0xd1,0x80,0xd0,0xbc,0xd0,
+0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,0x86,0xd0,0xb8,0xd1,0x8f,0x20,
+0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,
+0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,0xb0,0x20,0xd0,0xb2,0xd1,0x8b,0xd1,0x85,
+0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,0x20,0xd0,0x98,0xd0,0x98,0xd0,0x9f,0x3c,0x2f,0x74,
+0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,
+0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,
+0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,
+0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x50,0x50,0x53,0x4f,0x75,0x74,0x56,
+0x6f,0x6c,0x74,0x61,0x67,0x65,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,
+0x50,0x50,0x53,0x4f,0x75,0x74,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x4e,0x6f,0x72,
+0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,
+0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,
+0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,
+0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,
+0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,
+0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,
+0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,
+0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,
+0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,
+0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,
+0x74,0x64,0x3e,0xd0,0x9e,0xd1,0x82,0xd1,0x81,0xd1,0x83,0xd1,0x82,0xd1,0x81,0xd1,
+0x82,0xd0,0xb2,0xd0,0xb8,0xd0,0xb5,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,
+0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbd,0xd0,
+0xb0,0x20,0xd0,0xb2,0xd1,0x8b,0xd1,0x85,0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,0x20,0xd0,
+0x98,0xd0,0x98,0xd0,0x9f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,
+0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,
+0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,
+0x22,0x50,0x50,0x53,0x4f,0x75,0x74,0x56,0x6f,0x6c,0x74,0x61,0x67,0x65,0x41,0x6c,
+0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x50,0x50,0x53,0x4f,0x75,0x74,0x56,
+0x6f,0x6c,0x74,0x61,0x67,0x65,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,
+0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,
+0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,
+0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,
+0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,
+0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,
+0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,
+0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0xd0,0xb0,0x20,0xd0,
+0xbd,0xd0,0xb0,0x20,0xd0,0xb2,0xd1,0x8b,0xd1,0x85,0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,
+0x20,0xd0,0x98,0xd0,0x98,0xd0,0x9f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,
+0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,
+0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,
+0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,
+0x65,0x3d,0x22,0x50,0x50,0x53,0x4f,0x75,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,
+0x4e,0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x50,0x50,0x53,0x4f,0x75,0x74,
+0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,
+0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,
+0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,
+0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,
+0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,
+0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9f,0xd1,
+0x80,0xd0,0xb5,0xd0,0xb2,0xd1,0x8b,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,
+0xb5,0x20,0xd1,0x82,0xd0,0xbe,0xd0,0xba,0xd0,0xb0,0x20,0xd0,0xbd,0xd0,0xb0,0x20,
+0xd0,0xb2,0xd1,0x8b,0xd1,0x85,0xd0,0xbe,0xd0,0xb4,0xd0,0xb5,0x20,0xd0,0x98,0xd0,
+0x98,0xd0,0x9f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,
+0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,
+0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x50,
+0x50,0x53,0x4f,0x75,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x6c,0x61,0x72,
+0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x50,0x50,0x53,0x4f,0x75,0x74,0x43,0x75,0x72,
+0x72,0x65,0x6e,0x74,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,
+0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,
+0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,
+0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,
+0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,
+0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,
+0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x98,0xd0,0xb7,0xd0,
+0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x20,0xd1,0x81,
+0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,0xd1,0x8f,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,
+0x20,0xd0,0x98,0xd0,0x98,0xd0,0x9f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,
+0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,
+0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,
+0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,
+0x65,0x3d,0x22,0x50,0x50,0x53,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,
+0x6e,0x67,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x50,0x50,0x53,0x43,0x6f,0x6e,
+0x74,0x72,0x6f,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x22,0x20,0x63,0x6c,0x61,
+0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,
+0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,
+0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,
+0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,
+0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,
+0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,
+0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,
+0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,
+0xbe,0xd1,0x80,0xd0,0xbc,0xd0,0xb0,0xd0,0xbb,0xd0,0xb8,0xd0,0xb7,0xd0,0xb0,0xd1,
+0x86,0xd0,0xb8,0xd1,0x8f,0x20,0xd1,0x81,0xd0,0xbe,0xd1,0x81,0xd1,0x82,0xd0,0xbe,
+0xd1,0x8f,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xb2,0xd1,0x85,0xd0,0xbe,0xd0,
+0xb4,0xd0,0xbd,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0x20,0xd0,0xbd,0xd0,0xb0,0xd0,0xbf,
+0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0x28,
+0x7e,0x32,0x32,0x30,0x56,0x41,0x43,0x29,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,
+0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,
+0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,
+0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,
+0x6d,0x65,0x3d,0x22,0x43,0x68,0x65,0x63,0x6b,0x32,0x32,0x30,0x56,0x41,0x43,0x4e,
+0x6f,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x43,0x68,0x65,0x63,0x6b,0x32,0x32,
+0x30,0x56,0x41,0x43,0x4e,0x6f,0x72,0x6d,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,
+0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,
+0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,
+0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,
+0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,
+0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,
+0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,
+0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xb2,
+0xd1,0x8b,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x2f,0xd0,0xb7,0xd0,
+0xb0,0xd0,0xbd,0xd0,0xb8,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,0xb5,0x2f,
+0xd0,0xbe,0xd0,0xb1,0xd1,0x80,0xd1,0x8b,0xd0,0xb2,0x20,0xd0,0xb2,0xd1,0x85,0xd0,
+0xbe,0xd0,0xb4,0xd0,0xbd,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0x20,0xd0,0xbd,0xd0,0xb0,
+0xd0,0xbf,0xd1,0x80,0xd1,0x8f,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,
+0x20,0x28,0x7e,0x32,0x32,0x30,0x56,0x41,0x43,0x29,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,
+0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,
+0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,
+0x6e,0x61,0x6d,0x65,0x3d,0x22,0x43,0x68,0x65,0x63,0x6b,0x32,0x32,0x30,0x56,0x41,
+0x43,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x69,0x64,0x3d,0x22,0x43,0x68,0x65,0x63,
+0x6b,0x32,0x32,0x30,0x56,0x41,0x43,0x41,0x6c,0x61,0x72,0x6d,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,
+0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,
+0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,
+0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,
+0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x70,0x68,0x22,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,
+0x3d,0x22,0x32,0x22,0x3e,0xd0,0x9e,0xd0,0xb1,0xd1,0x89,0xd0,0xb8,0xd0,0xb5,0x3c,
+0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,
+0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,0xd0,
+0xba,0xd0,0xb8,0x20,0xd1,0x83,0xd1,0x81,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xb9,
+0xd1,0x81,0xd1,0x82,0xd0,0xb2,0xd0,0xb0,0x20,0xd0,0xb1,0xd1,0x8b,0xd0,0xbb,0xd0,
+0xb8,0x20,0xd1,0x81,0xd0,0xb1,0xd1,0x80,0xd0,0xbe,0xd1,0x88,0xd0,0xb5,0xd0,0xbd,
+0xd1,0x8b,0x20,0x28,0x53,0x4e,0x4d,0x50,0x29,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,
+0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,
+0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,
+0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,
+0x61,0x6d,0x65,0x3d,0x22,0x44,0x65,0x76,0x69,0x63,0x65,0x52,0x65,0x73,0x74,0x6f,
+0x72,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x44,0x65,0x76,0x69,0x63,0x65,0x52,
+0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,
+0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,
+0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,
+0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,
+0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,
+0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,
+0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,
+0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,
+0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,
+0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,
+0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,
+0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa3,0xd1,0x81,0xd1,0x82,0xd1,
+0x80,0xd0,0xbe,0xd0,0xb9,0xd1,0x81,0xd1,0x82,0xd0,0xb2,0xd0,0xbe,0x20,0xd0,0xb1,
+0xd1,0x8b,0xd0,0xbb,0xd0,0xbe,0x20,0xd0,0xbf,0xd0,0xb5,0xd1,0x80,0xd0,0xb5,0xd0,
+0xb7,0xd0,0xb0,0xd0,0xb3,0xd1,0x80,0xd1,0x83,0xd0,0xb6,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xbe,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,
+0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,
+0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,
+0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x44,0x65,0x76,
+0x69,0x63,0x65,0x52,0x65,0x62,0x6f,0x6f,0x74,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,
+0x22,0x44,0x65,0x76,0x69,0x63,0x65,0x52,0x65,0x62,0x6f,0x6f,0x74,0x65,0x64,0x22,
+0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,
+0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,
+0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,
+0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,
+0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,
+0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,
+0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,
+0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,
+0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,
+0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,
+0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,
+0x3e,0xd0,0x98,0xd0,0xb7,0xd0,0xbc,0xd0,0xb5,0xd0,0xbd,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb5,0x20,0xd1,0x80,0xd0,0xb5,0xd0,0xb6,0xd0,0xb8,0xd0,0xbc,0xd0,0xb0,
+0x20,0xd1,0x80,0xd0,0xb0,0xd0,0xb1,0xd0,0xbe,0xd1,0x82,0xd1,0x8b,0x20,0xd0,0xba,
+0xd0,0xbe,0xd0,0xbd,0xd1,0x82,0xd1,0x80,0xd0,0xbe,0xd0,0xbb,0xd0,0xbb,0xd0,0xb5,
+0xd1,0x80,0xd0,0xb0,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,
+0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,
+0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,
+0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,
+0x4d,0x6f,0x64,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,
+0x22,0x4d,0x6f,0x64,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,
+0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,
+0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,
+0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,
+0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa2,
+0xd0,0xb0,0xd0,0xb9,0xd0,0xbc,0xd0,0xb0,0xd1,0x83,0xd1,0x82,0x20,0xd0,0xb7,0xd0,
+0xb0,0xd1,0x80,0xd1,0x8f,0xd0,0xb4,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,
+0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,
+0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,
+0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,
+0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x54,0x69,
+0x6d,0x65,0x6f,0x75,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,
+0x72,0x79,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,
+0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,
+0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,
+0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,
+0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,
+0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,
+0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,
+0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,
+0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,
+0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,
+0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9d,0xd0,0xb0,0xd1,
+0x87,0xd0,0xb0,0xd0,0xbb,0xd0,0xbe,0x20,0xd0,0xbe,0xd0,0xb1,0xd0,0xbd,0xd0,0xbe,
+0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x20,0xd0,0xbf,0xd1,
+0x80,0xd0,0xbe,0xd0,0xb3,0xd1,0x80,0xd0,0xb0,0xd0,0xbc,0xd0,0xbc,0xd0,0xbd,0xd0,
+0xbe,0xd0,0xb3,0xd0,0xbe,0x20,0xd0,0xbe,0xd0,0xb1,0xd0,0xb5,0xd1,0x81,0xd0,0xbf,
+0xd0,0xb5,0xd1,0x87,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd1,0x8f,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,
+0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,
+0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,
+0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x57,0x56,0x65,0x72,0x73,0x69,0x6f,
+0x6e,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x46,0x57,0x56,
+0x65,0x72,0x73,0x69,0x6f,0x6e,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x20,0x63,0x6c,
+0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,
+0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,
+0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,
+0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,
+0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,
+0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,
+0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,
+0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,
+0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,
+0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,
+0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0xa3,
+0xd1,0x81,0xd0,0xbf,0xd0,0xb5,0xd1,0x88,0xd0,0xbd,0xd0,0xbe,0xd0,0xb5,0x20,0xd0,
+0xbe,0xd0,0xb1,0xd0,0xbd,0xd0,0xbe,0xd0,0xb2,0xd0,0xbb,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd0,0xb5,0x20,0xd0,0xbf,0xd1,0x80,0xd0,0xbe,0xd0,0xb3,0xd1,0x80,0xd0,0xb0,
+0xd0,0xbc,0xd0,0xbc,0xd0,0xbd,0xd0,0xbe,0xd0,0xb3,0xd0,0xbe,0x20,0xd0,0xbe,0xd0,
+0xb1,0xd0,0xb5,0xd1,0x81,0xd0,0xbf,0xd0,0xb5,0xd1,0x87,0xd0,0xb5,0xd0,0xbd,0xd0,
+0xb8,0xd1,0x8f,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,
+0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,
+0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,
+0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x46,
+0x57,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x55,0x70,0x64,0x61,0x74,0x65,0x64,0x22,
+0x20,0x69,0x64,0x3d,0x22,0x46,0x57,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x55,0x70,
+0x64,0x61,0x74,0x65,0x64,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,
+0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,
+0x2d,0x73,0x6d,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,
+0x6e,0x6d,0x70,0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,
+0x64,0x29,0x22,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,
+0x80,0xd0,0xb5,0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,
+0x69,0x6f,0x6e,0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,
+0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,
+0xd1,0x80,0xd0,0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,
+0x74,0x69,0x6f,0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,
+0x66,0x6f,0x72,0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,
+0x74,0x72,0x3e,0x3c,0x74,0x64,0x3e,0xd0,0x9f,0xd0,0xbe,0xd0,0xb4,0xd1,0x82,0xd0,
+0xb2,0xd0,0xb5,0xd1,0x80,0xd0,0xb6,0xd0,0xb4,0xd0,0xb5,0xd0,0xbd,0xd0,0xb8,0xd0,
+0xb5,0x20,0xd0,0xbf,0xd1,0x80,0xd0,0xbe,0xd1,0x84,0xd0,0xb8,0xd0,0xbb,0xd0,0xb0,
+0xd0,0xba,0xd1,0x82,0xd0,0xb8,0xd0,0xba,0xd0,0xb8,0x3c,0x2f,0x74,0x64,0x3e,0x3c,
+0x74,0x64,0x3e,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,
+0x22,0x73,0x6e,0x6d,0x70,0x2e,0x63,0x67,0x69,0x22,0x20,0x6d,0x65,0x74,0x68,0x6f,
+0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x3e,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,
+0x6e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x61,0x74,0x74,0x65,0x72,0x79,0x50,0x72,0x6f,
+0x66,0x69,0x6c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,
+0x61,0x74,0x74,0x65,0x72,0x79,0x50,0x72,0x6f,0x66,0x69,0x6c,0x61,0x63,0x74,0x69,
+0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,
+0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x6d,
+0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x73,0x6e,0x6d,0x70,
+0x53,0x75,0x62,0x6d,0x69,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x64,0x29,0x22,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x74,0x72,0x75,0x65,0x22,0x3e,0xd0,0xa0,0xd0,0xb0,0xd0,0xb7,0xd1,0x80,0xd0,0xb5,
+0xd1,0x88,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,
+0x3e,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,
+0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0xd0,0x97,0xd0,0xb0,0xd0,0xbf,0xd1,0x80,0xd0,
+0xb5,0xd1,0x82,0xd0,0xb8,0xd1,0x82,0xd1,0x8c,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,
+0x6e,0x3e,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x3c,0x2f,0x66,0x6f,0x72,
+0x6d,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x61,
+0x62,0x6c,0x65,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x62,0x6f,0x64,0x79,
+0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,
+0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,
+0x73,0x72,0x63,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,
+0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,
+0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,
+0x72,0x69,0x70,0x74,0x22,0x3e,0x73,0x6e,0x6d,0x70,0x47,0x45,0x54,0x28,0x29,0x3b,
+0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,
+};
+
+
+
+const struct fsdata_file file__favicon_ico[] = { {
+file_NULL,
+data__favicon_ico,
+data__favicon_ico + 16,
+sizeof(data__favicon_ico) - 16,
+1,
+}};
+
+const struct fsdata_file file__history_html[] = { {
+file__favicon_ico,
+data__history_html,
+data__history_html + 16,
+sizeof(data__history_html) - 16,
+1,
+}};
+
+const struct fsdata_file file__index_html[] = { {
+file__history_html,
+data__index_html,
+data__index_html + 12,
+sizeof(data__index_html) - 12,
+1,
+}};
+
+const struct fsdata_file file__info_html[] = { {
+file__index_html,
+data__info_html,
+data__info_html + 12,
+sizeof(data__info_html) - 12,
+1,
+}};
+
+const struct fsdata_file file__main_css[] = { {
+file__info_html,
+data__main_css,
+data__main_css + 12,
+sizeof(data__main_css) - 12,
+1,
+}};
+
+const struct fsdata_file file__main_js[] = { {
+file__main_css,
+data__main_js,
+data__main_js + 12,
+sizeof(data__main_js) - 12,
+1,
+}};
+
+const struct fsdata_file file__rotek_png[] = { {
+file__main_js,
+data__rotek_png,
+data__rotek_png + 12,
+sizeof(data__rotek_png) - 12,
+1,
+}};
+
+const struct fsdata_file file__settings_html[] = { {
+file__rotek_png,
+data__settings_html,
+data__settings_html + 16,
+sizeof(data__settings_html) - 16,
+1,
+}};
+
+const struct fsdata_file file__snmp_html[] = { {
+file__settings_html,
+data__snmp_html,
+data__snmp_html + 12,
+sizeof(data__snmp_html) - 12,
+1,
+}};
+
+#define FS_ROOT file__snmp_html
+#define FS_NUMFILES 9
+

+ 56 - 0
service_hw/HTTP_Server/fsdata.h

@@ -0,0 +1,56 @@
+/**
+ * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
+ * All rights reserved. 
+ * 
+ * Redistribution and use in source and binary forms, with or without modification, 
+ * are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice,
+ *    this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission. 
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
+ * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
+ * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
+ * OF SUCH DAMAGE.
+ *
+ * This file is part of the lwIP TCP/IP stack.
+ * 
+ * Author: Adam Dunkels <adam@sics.se>
+ *
+ **/
+#ifndef __FSDATA_H__
+#define __FSDATA_H__
+
+#include "lwip/opt.h"
+
+struct fsdata_file {
+  const struct fsdata_file *next;
+  const unsigned char *name;
+  const unsigned char *data;
+  int len;
+  u8_t http_header_included;
+#if HTTPD_PRECALCULATED_CHECKSUM
+  u16_t chksum_count;
+  const struct fsdata_chksum *chksum;
+#endif /* HTTPD_PRECALCULATED_CHECKSUM */
+};
+
+struct fsdata_file_noconst {
+  struct fsdata_file *next;
+  char *name;
+  char *data;
+  int len;
+};
+
+#endif /* __FSDATA_H__ */

+ 122 - 0
service_hw/HTTP_Server/http_server.c

@@ -0,0 +1,122 @@
+#include "lwip/opt.h"
+#include "lwip/arch.h"
+#include "lwip/api.h"
+#include "lwip/tcp.h"
+
+#include "http_server.h"
+#include "settings_api.h"
+#include "common_config.h"
+#include "commands_api.h"
+#include "bt_6701_settings.h"
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+#include <string.h>
+#include <stdlib.h>
+
+/**
+  * @brief  Обработчик http запросов
+  */
+void TCP_ServerServe(struct netconn *conn)
+{
+  struct netbuf *inbuf;
+  char* buf;
+  u16_t buflen;
+  char value[20];
+  uint8_t valueLen;  
+  
+  netconn_recv(conn, &inbuf);
+  
+  if (inbuf != NULL)
+  {
+    if (netconn_err(conn) == ERR_OK) 
+    {
+      netbuf_data(inbuf, (void**)&buf, &buflen);
+      
+      if (strncmp((char const *)buf, "GET /setMac.cgi", 15) == 0)
+      {
+		memset(value, 0, 20);
+        GetParamValue(buf, "mac=", value, &valueLen);  
+		
+		/* Проверяем флаг ожидания MAC адреса */
+		if (macWaiting) {
+		  SETTINGS_SetMac(value);
+		  COM_SetTestState(T1OK);
+		  netconn_write(conn, "HTTP/1.0 200 OK\r\nContent-Type:text/html\r\n\r\nTrue", 47, NETCONN_NOCOPY);
+		  macIsInstalled = true;
+		  printf("SERNO OK\r\n");
+		}
+		else
+		  netconn_write(conn, "HTTP/1.0 200 OK\r\nContent-Type:text/html\r\n\r\nFalse", 48, NETCONN_NOCOPY);
+		  
+		//file = fs_open("/STM32F4x7_files/ST.gif"); 
+        //netconn_write(conn, (const unsigned char*)(file->data), (size_t)file->len, NETCONN_NOCOPY);
+        //fs_close(file);
+      }   
+    }
+  }
+  netconn_close(conn);
+  netbuf_delete(inbuf);
+}
+
+/**
+  * @brief  TCP сервер
+  */
+void vTaskTcpServer(void *param)
+{
+  struct netconn *conn, *newconn;
+  err_t err;
+  
+  conn = netconn_new(NETCONN_TCP);
+  
+  if (conn!= NULL)
+  {
+    err = netconn_bind(conn, NULL, 80);
+    
+	if (err == ERR_OK) {
+      netconn_listen(conn);
+      while(1) {
+        netconn_accept(conn, &newconn);
+        TCP_ServerServe(newconn);
+        netconn_delete(newconn);
+      }
+    }
+  }
+}
+
+/**
+  * @brief  Поиск значения по имени параметра
+  * @retval None
+  */
+uint8_t GetParamValue(char *inStr, char *paramName, char *paramValue, uint8_t *paramLen)
+{
+  char *beginValue = 0;
+  char *endValue = 0;
+  int  len = 0;
+  char *strPtr = 0;
+  
+  strPtr = strstr(inStr, paramName);
+  
+  if (strPtr != 0)
+  {
+    beginValue = strpbrk(strPtr,"=");
+    endValue = strpbrk(strPtr,"&");
+    if (endValue == 0)
+      endValue = strpbrk(strPtr," ");
+    len = endValue - beginValue - 1;
+    strncpy(paramValue, beginValue + 1, len);
+    *endValue = '0';
+    *beginValue = '0';
+	*paramLen = len;
+	return 1;
+  }
+  else
+  {	
+	*paramLen = 0;
+	return 0;
+  }
+}

+ 14 - 0
service_hw/HTTP_Server/http_server.h

@@ -0,0 +1,14 @@
+#include "lwip/opt.h"
+#include "lwip/arch.h"
+#include "lwip/api.h"
+
+/**
+  * @brief  TCP сервер
+  */
+void vTaskTcpServer (void *param);
+
+/**
+  * @brief  Поиск значения по имени параметра
+  * @retval None
+  */
+uint8_t GetParamValue(char *inStr, char *paramName, char *paramValue, uint8_t *paramLen);

BIN
service_hw/HTTP_Server/makefsdata.exe


+ 7 - 0
service_hw/HTTP_Server/readme.txt

@@ -0,0 +1,7 @@
+В дайнной прошивке используется веб-сервер из примеров lwip.
+Весь веб контент необходимо положить в папку ./fs и запустить утилиту makefsdata.exe.
+Утилита переводит файлы в hex формат. Результат попадает в файл fsdata.c. Подключить его можно без изменений.
+
+ВНИМАНИЕ: 
+Исходные файлы утилиты makefsdata лежат в папке $PROJDIR/utils/makefsdata 
+Исходные файлы веб-интерфейса лежат в папке $PROJDIR/web-interface

+ 70 - 0
service_hw/Hardware/hw_init.c

@@ -0,0 +1,70 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  hw_init
+ * @file    hw_init.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   hw_init
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "hw_init.h"
+#include "wdg.h"
+#include "usart.h"
+#include "settings_api.h"
+#include "buttons.h"
+#include "commands_api.h"
+#include "led.h"
+#include "rtc.h"
+#include "gpio.h"
+#include "spi_flash.h"
+#include "stm32_uid.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+char STM_ID[33];
+
+/**
+  * @brief  Инициализация необходимых модулей
+  */
+void BT_6702_Init(void)
+{
+	uint8_t len;
+
+	gpio_init();
+	WDG_Init();
+	spi_flash_init();
+   
+	InitUSART();
+  
+    SETTINGS_Load();
+    
+    COM_ReadTestState();
+    
+    memset(STM_ID, 0, 33);
+    GetSTM32IDStr(STM_ID, &len);    // Уникальный ID чипа
+    
+    BUTTON_Init();  // Кнопки
+    LED_Init();
+    
+    TM_RTC_Init(TM_RTC_ClockSource_External);
+
+    // Создает таски для выполнения команд тестера 
+    xTaskCreate(vTestCommands, "TestProcessing", 2*configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
+  
+    printf("Hello world\r\n");
+}
+
+
+/********************************* (C) РОТЕК **********************************/    

+ 24 - 0
service_hw/Hardware/hw_init.h

@@ -0,0 +1,24 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  hw_init
+ * @file    hw_init.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   hw_init
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef __HW_INIT_H
+#define __HW_INIT_H
+
+
+void BT_6702_Init(void);
+
+
+
+#endif /* #ifndef __HW_INIT_H */
+
+/********************************* (C) РОТЕК **********************************/

+ 125 - 0
service_hw/Makefile

@@ -0,0 +1,125 @@
+TARGET := stm32$(HARDWARE)service
+
+
+#ifeq ($(DEBUG), 1)
+	CFLAGS += -DDEBUG -g
+#endif
+
+ifeq ($(MAC),)
+	#Print default MAC
+	MAC = $(shell awk '/\#define DEVICE_MAC/{print $$3}' ./modules/settings_api.h )
+else
+    #Set device MAC
+	CFLAGS += -DDEVICE_MAC='"$(MAC)"'
+endif
+
+ifeq ($(FLASH_ERASE), 1)
+    	CFLAGS += -DFLASH_ERASE
+endif
+
+CFLAGS += -DBT6702_SERVICE
+
+CFLAGS += -DPRINTF_$(shell echo $(PRINTF) | tr a-z A-Z)
+
+INCLUDES = -I../config
+INCLUDES += -I../stm32/stm32f4xx_spl/inc 
+INCLUDES += -I../stm32/system
+INCLUDES += -I../peripheral_modules/inc
+INCLUDES += -I../thirdparty/TinyStdio
+INCLUDES += -IUser
+INCLUDES += -IHardware
+INCLUDES += -ICommands
+INCLUDES += -IPorts
+INCLUDES += -ISettings
+INCLUDES += -I.
+
+CSRC = $(wildcard ../stm32/stm32f4xx_spl/src/*.c)
+CSRC += $(wildcard ../stm32/system/*.c)
+CSRC += $(wildcard ../peripheral_modules/src/*.c)
+CSRC += $(wildcard ../thirdparty/TinyStdio/*.c)
+CSRC += $(wildcard User/*.c)
+CSRC += $(wildcard Hardware/*.c)
+CSRC += $(wildcard Commands/*.c)
+CSRC += $(wildcard Ports/*.c)
+CSRC += $(wildcard Settings/*.c)
+CSRC += $(wildcard *.c)
+
+INCLUDES += -Ileds
+INCLUDES += -Ibuttons
+INCLUDES += -I../modules/jumper
+INCLUDES += -I../modules/d_inouts
+INCLUDES += -I../modules/common/ring_buf.h
+INCLUDES += -I../modules
+CSRC += $(wildcard leds/*.c)
+CSRC += $(wildcard buttons/*.c)
+CSRC += $(wildcard ../modules/jumper/*.c)
+CSRC += $(wildcard ../modules/d_inouts/*.c)
+CSRC += $(wildcard ../modules/common/ring_buf.c)
+CSRC += $(wildcard ../modules/*.c)
+
+CFLAGS += -DOS_FREERTOS
+CFLAGS += -DHARDWARE_$(shell echo $(HARDWARE) | tr a-z A-Z)
+
+#FreeRTOS
+LDSCRIPT := ../modules/startup/stm32_flash.ld
+
+INCLUDES +=  -I../thirdparty/FreeRTOS/include -I../thirdparty/FreeRTOS/portable/GCC/ARM_CM3
+CSRC += $(wildcard ../thirdparty/FreeRTOS/*.c ../thirdparty/FreeRTOS/portable/GCC/ARM_CM3/*.c)
+ASMSRC = ../modules/startup/startup_stm32f4xx.s
+
+# MemMang
+CSRC += $(wildcard ../thirdparty/FreeRTOS/portable/MemMang/heap_4.c)
+	
+	
+	# LwIP + Web #	
+    INCLUDES += -IHTTP_Server
+    INCLUDES += -I../thirdparty/lwip/src/include
+    INCLUDES += -I../thirdparty/lwip/src/include/netif
+    INCLUDES += -I../thirdparty/lwip/src/include/lwip
+    INCLUDES += -I../thirdparty/lwip/src/include/ipv4
+    INCLUDES += -I../thirdparty/lwip/src/netif/ppp
+    INCLUDES += -I../thirdparty/lwip/port
+    INCLUDES += -I../thirdparty/lwip/port/FreeRTOS
+    INCLUDES += -IEthernet
+ # INCLUDES += -I../stm32/stm32f4x7_ethernet 
+ 	INCLUDES += -I../modules/STM32F4x7_ETH_Driver
+    CSRC += $(wildcard HTTP_Server/http_server.c)
+    CSRC += $(wildcard HTTP_Server/trap_params.c)
+    CSRC += $(wildcard HTTP_Server/web_params_api.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/api/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/core/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/core/ipv4/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/core/snmp/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/netif/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/src/netif/ppp/*.c)
+    CSRC += $(wildcard ../thirdparty/lwip/port/FreeRTOS/*.c)
+    CSRC += $(wildcard Ethernet/*.c)
+  #  CSRC += $(wildcard ../stm32/stm32f4x7_ethernet/*.c)
+  	CSRC += $(wildcard ../modules/STM32F4x7_ETH_Driver/*.c)
+    
+CSRC += $(wildcard ../stm32/system/syscalls/syscalls.c)
+    
+    
+CFLAGS += -DUSE_STDPERIPH_DRIVER -DSTM32F40_41xxx -DLOG_ENABLE
+
+BUILDDIR = ../build/bt6702_service/$(TARGET)
+
+FW_FLASH_START = $(shell awk '/USER_FLASH_FIRST_PAGE_ADDRESS/{print $$3}' ../config/common_config.h )
+FW_FLASH_CRC = $(shell awk '/USER_FLASH_CRC_ADDRESS/{print $$3}' ../config/common_config.h )
+
+FW_NAME = BT_6702xx_service
+
+-include ../Makefile.inc.stm32
+
+prebuild:
+	@echo "Hardware version: $(HARDWARE)"
+	
+postbuild: $(BUILDDIR)/$(TARGET).bin
+	@echo "FW start address: $(FW_FLASH_START)"
+	@echo "FW CRC address: $(FW_FLASH_CRC)"
+	@echo "Copying to: $(OUTPUTDIR)/$(FW_NAME).bin"
+	@cp $(BUILDDIR)/$(TARGET).bin $(OUTPUTDIR)/$(FW_NAME).bin
+	@$(BUILDDIR)/../../tools/cortex_crc $(OUTPUTDIR)/$(FW_NAME).bin $(FW_FLASH_START) $(FW_FLASH_CRC)
+	
+	

+ 92 - 0
service_hw/Ports/ports.c

@@ -0,0 +1,92 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  buttons_api
+ * @file    buttons_api.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   buttons_api
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "ports.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+char        recvBufRS232[RS232_MAX_REC_LEN];     // Входной буфер для RS232
+uint16_t    indexRS232;
+
+/**
+  * @brief  
+  */
+void RS232_Init(void)
+{
+    GPIO_InitTypeDef  GPIO_InitStructure;
+    USART_InitTypeDef USART_InitStructure;
+    NVIC_InitTypeDef  NVIC_InitStructure;
+    
+    RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE);
+    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
+  
+    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9;
+    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
+    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
+    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
+    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
+    GPIO_Init(GPIOD, &GPIO_InitStructure);
+  
+    GPIO_PinAFConfig(GPIOD, GPIO_PinSource8, GPIO_AF_USART3);
+    GPIO_PinAFConfig(GPIOD, GPIO_PinSource9, GPIO_AF_USART3);  
+  
+    NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn;
+    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0x00;
+    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
+    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
+    NVIC_Init(&NVIC_InitStructure);
+  
+    NVIC_SetPriority (USART3_IRQn, 5); 
+  
+    USART_InitStructure.USART_BaudRate = 115200;
+    USART_InitStructure.USART_WordLength = USART_WordLength_8b;
+    USART_InitStructure.USART_StopBits = USART_StopBits_1;
+    USART_InitStructure.USART_Parity = USART_Parity_No;
+    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
+    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
+    USART_Init(RS232_PORT, &USART_InitStructure);
+
+    USART_Cmd(RS232_PORT, ENABLE);      
+      
+    USART_ITConfig(RS232_PORT, USART_IT_RXNE, ENABLE);
+    USART_ITConfig(RS232_PORT, USART_IT_TXE, DISABLE);
+}
+
+/**
+  * @brief  RS232
+  */
+/*void USART3_IRQHandler(void)
+{
+    char byte;
+    
+    if(USART_GetITStatus(RS232_PORT, USART_IT_RXNE) != RESET)
+    {
+        byte = (uint8_t)(RS232_PORT->DR & (uint16_t)0x01FF);
+        
+        recvBufRS232[indexRS232++] = byte;
+    
+        // Защита от выхода за границу отведенного буфера
+        if (indexRS232 == (RS232_MAX_REC_LEN - 1))
+            indexRS232 = 0;
+    }
+}*/
+
+void RS232_SendByte(char byte)
+{
+    while(USART_GetFlagStatus(RS232_PORT, USART_FLAG_TXE) == RESET) {}
+    RS232_PORT->DR = (byte & (uint16_t)0x01FF);
+}
+
+
+/********************************* (C) РОТЕК **********************************/

+ 35 - 0
service_hw/Ports/ports.h

@@ -0,0 +1,35 @@
+/******************************* (C) LiteMesh **********************************
+ * @module  buttons_api
+ * @file    buttons_api.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   buttons_api
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef __PORTS_H
+#define __PORTS_H
+
+#include <stdbool.h>
+
+#define RS232_PORT       USART3
+
+#define RS232_MAX_REC_LEN   1500
+
+/**
+  * @brief  
+  */
+void RS232_Init(void);
+
+void RS232_SendByte(char byte);
+
+extern char        recvBufRS232[];     // Входной буфер для RS232
+extern uint16_t    indexRS232;
+
+#endif /* #ifndef __PORTS_H */
+
+/****************************** (C) LiteMesh ***************** end of file ****/

+ 57 - 0
service_hw/Settings/bt_6701_settings.c

@@ -0,0 +1,57 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  bt_6701_settings
+ * @file    bt_6701_settings.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   bt_6701_settings
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "common_config.h"
+#include "bt_6701_settings.h"
+#include "settings_api.h"
+#include "common_config.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+#include <string.h>
+#include <stdlib.h>
+
+
+/**
+  * @brief  Общая структура настроек
+  */
+extern SETTINGS_t sSettings;
+
+char * SETTINGS_GetTestState(void)
+{
+    return sSettings.sFlags.testState;
+}
+
+/**
+  * @brief  Устанавливает Serno, но не сохраняет новые настройки во флеш
+  */
+void SETTINGS_SetSerno(char *serno)
+{
+    strcpy(sSettings.sInfo.serialNumber, serno);
+}
+
+/**
+  * @brief  Устанавливает mac, но не сохраняет новые настройки во флеш
+  */
+void SETTINGS_SetMac(char *mac)
+{
+    strcpy(sSettings.sInfo.mac, mac);
+}
+
+
+
+
+
+
+/********************************* (C) РОТЕК **********************************/    

+ 34 - 0
service_hw/Settings/bt_6701_settings.h

@@ -0,0 +1,34 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  bt_6701_settings
+ * @file    bt_6701_settings.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   bt_6701_settings
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef __BT_6701_SETTINGS_H
+#define __BT_6701_SETTINGS_H
+
+#include <stdbool.h>
+
+
+char * SETTINGS_GetTestState(void);
+
+/**
+  * @brief  Установить параметры обновления ПО по умолчанию
+  */
+void BT_6701_SetBootParamsDef(void);
+
+/**
+  * @brief  Устанавливает mac, но не сохраняет новые настройки во флеш
+  */
+void SETTINGS_SetMac(char *mac);
+
+#endif /* #ifndef __BT_6701_SETTINGS_H */
+
+/********************************* (C) РОТЕК **********************************/

+ 23 - 0
service_hw/User/config_service.h

@@ -0,0 +1,23 @@
+/*
+ * config_service.h
+ *
+ *  Created on: 23.06.2017
+ *      Author: balbekova
+ */
+
+#ifndef CONFIG_SERVICE_H_
+#define CONFIG_SERVICE_H_
+
+
+/**
+  * @brief  Timeout для теста кнопок
+  */
+#define BUTTON_TIMEOUT         1000 // Вызов таска 100 Гц, 500 = 5 секунд
+
+/**
+  * @brief  Версия прошивки
+  */
+#define VERSION_TEST                         "1.0_TEST"
+
+
+#endif /* CONFIG_SERVICE_H_ */

+ 76 - 0
service_hw/User/init_task.c

@@ -0,0 +1,76 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  init_task
+ * @file    init_task.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   Инициализация всех задач.
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+  
+#include "init_task.h"
+#include "common_config.h"  
+#include "hw_init.h"
+#include "netconf.h"
+#include "main.h"
+#include "wdg.h"
+#include "usart.h"
+//#include "led.h"
+//#include "buttons.h"
+#include "settings_api.h"
+#include "rtc.h"
+
+#include "FreeRTOS.h"
+#include "task.h" 
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+static void vTaskDebug(void *pvParameters);
+
+/**
+  * @brief  Разовая синхронизация времени при старте контроллера
+  */
+TaskHandle_t xHandleSntpOnceSinhro = NULL;
+
+/**
+  * @brief  Задача инициализации. Запускает основные задачи девайса и умирает.
+  * @retval 
+  */
+void InitTask( void *params)
+{
+    BT_6702_Init();
+    
+    SETTINGS_ResetBootTry();
+
+    vTaskDelete(NULL);
+    taskYIELD();
+    
+}
+
+
+
+
+static void vTaskDebug(void *pvParameters) 
+{
+  char msg[700];
+  for(;;)
+  {
+    vTaskList(msg);
+	printf(msg);
+	printf("\n\r");
+	
+	vTaskDelay(1000);
+  }
+}
+
+
+
+
+/********************************* (C) РОТЕК **********************************/

+ 25 - 0
service_hw/User/init_task.h

@@ -0,0 +1,25 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  init_task
+ * @file    init_task.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   Инициализация всех задач.
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef INIT_TASK_H
+#define INIT_TASK_H
+
+/**
+  * @brief  Задача инициализации. Запускает основные задачи девайса и умирает.
+  */
+void InitTask( void *params);
+
+
+#endif /* #ifndef INIT_TASK_H */
+
+/********************************* (C) РОТЕК **********************************/

+ 49 - 0
service_hw/User/main.c

@@ -0,0 +1,49 @@
+#include "stm32f4xx.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+#include "main.h"
+#include "init_task.h"
+#include "common_config.h"
+
+/* Размещение стека FreeRTOS в CCRAM */
+#if defined ( __ICCARM__ )
+#pragma location = ".sram"
+uint8_t ucHeap[ configTOTAL_HEAP_SIZE ];
+#else
+uint8_t ucHeap[ configTOTAL_HEAP_SIZE ] __attribute__ ((section (".mb1text")));
+/* Секция размещения СRC прошивки */
+uint32_t crc __attribute__ ((section (".crc"))) = 0xAABBCCDD;
+/* Секция размещения HW ревизии платы */
+char hw_rev[HW_REV_LEN] __attribute__ ((section (".hw_rev"))) = HW_REV;
+#endif
+
+
+int main()
+{
+
+  TIM_Cmd(TIM13, DISABLE);
+  TIM_ClearITPendingBit(TIM13, TIM_IT_Update);
+
+	__disable_irq();
+	NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x20000);
+	NVIC_SetPriorityGrouping(0);
+	NVIC_PriorityGroupConfig( NVIC_PriorityGroup_4 );
+	__enable_irq();
+
+	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_CRC, ENABLE);
+
+	/* Clear flash error flags if were set */
+	FLASH_ClearFlag(FLASH_FLAG_PGPERR);
+	FLASH_ClearFlag(FLASH_FLAG_PGSERR);
+  
+  xTaskCreate( InitTask, "InitTask", 500, NULL, tskIDLE_PRIORITY, NULL);
+  
+  vTaskStartScheduler();
+  
+  return 0;
+
+}
+
+

+ 63 - 0
service_hw/User/main.h

@@ -0,0 +1,63 @@
+/**
+  ******************************************************************************
+  * @file    main.h
+  * @author  MCD Application Team
+  * @version V1.0.0
+  * @date    31-October-2011
+  * @brief   This file contains all the functions prototypes for the main.c 
+  *          file.
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
+  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
+  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
+  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  *
+  * <h2><center>&copy; Portions COPYRIGHT 2011 STMicroelectronics</center></h2>
+  ******************************************************************************
+  */
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef __MAIN_H
+#define __MAIN_H
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+
+/* Includes ------------------------------------------------------------------*/
+#include "stm32f4xx.h"
+#include "stm32f4x7_eth_bsp.h"
+
+
+/* MII and RMII mode selection, for STM324xG-EVAL Board(MB786) RevB ***********/
+#define RMII_MODE
+
+#ifdef USART_DEBUG_ENABLE
+#define PRINT_USART(x) printf(x) 
+#else 
+#define PRINT_USART(x)
+#endif
+
+#define tn_task_sleep(x) vTaskDelay(x)
+   
+#define DBG if (1)   
+   
+/* Exported macro ------------------------------------------------------------*/
+/* Exported functions ------------------------------------------------------- */  
+void Time_Update(void);
+void Delay(uint32_t nCount);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __MAIN_H */
+
+
+/*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/
+
+

+ 229 - 0
service_hw/User/stm32f4xx_it.c

@@ -0,0 +1,229 @@
+/**
+  ******************************************************************************
+  * @file    stm32f4xx_it.c 
+  * @author  MCD Application Team
+  * @version V1.0.0
+  * @date    31-October-2011
+  * @brief   Main Interrupt Service Routines.
+  *          This file provides template for all exceptions handler and 
+  *          peripherals interrupt service routine.
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
+  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
+  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
+  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  *
+  * <h2><center>&copy; Portions COPYRIGHT 2011 STMicroelectronics</center></h2>
+  ******************************************************************************
+  */
+/**
+  ******************************************************************************
+  * <h2><center>&copy; Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.</center></h2>
+  * @file    stm32f4xx_it.c
+  * @author  CMP Team
+  * @version V1.0.0
+  * @date    28-December-2012
+  * @brief   Main Interrupt Service Routines.
+  *          This file provides template for all exceptions handler and 
+  *          peripherals interrupt service routine.  
+  *          Modified to support the STM32F4DISCOVERY, STM32F4DIS-BB and
+  *          STM32F4DIS-LCD modules. 
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, Embest SHALL NOT BE HELD LIABLE FOR ANY DIRECT, INDIRECT
+  * OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE CONTENT
+  * OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING INFORMATION
+  * CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  ******************************************************************************
+  */
+/* Includes ------------------------------------------------------------------*/
+#include "stm32f4xx_it.h"
+#include "main.h"
+#include "stm32f4x7_eth.h"
+
+/* Scheduler includes */
+#include "FreeRTOS.h"
+#include "task.h"
+#include "queue.h"
+#include "semphr.h"
+
+extern SemaphoreHandle_t s_xSemaphore;
+
+/* lwip includes */
+#include "lwip/sys.h"
+
+#ifdef PRINTF_STDLIB
+#include <stdio.h>
+#endif
+#ifdef PRINTF_CUSTOM
+#include "tinystdio.h"
+#endif
+
+/* Private typedef -----------------------------------------------------------*/
+/* Private define ------------------------------------------------------------*/
+/* Private macro -------------------------------------------------------------*/
+/* Private variables ---------------------------------------------------------*/
+extern SemaphoreHandle_t s_xSemaphore;
+/* Private function prototypes -----------------------------------------------*/
+extern void xPortSysTickHandler(void); 
+/* Private functions ---------------------------------------------------------*/
+
+/******************************************************************************/
+/*            Cortex-M4 Processor Exceptions Handlers                         */
+/******************************************************************************/
+
+/**
+  * @brief   This function handles NMI exception.
+  * @param  None
+  * @retval None
+  */
+void NMI_Handler(void)
+{
+  /* Сбросить флаг системы контроля CSS */ 
+  if (RCC->CIR & RCC_CIR_CSSF) RCC->CIR |= RCC_CIR_CSSC;
+	
+  printf("NMI exception\r\n");
+  NVIC_SystemReset();
+  
+}
+
+/**
+  * @brief  This function handles Hard Fault exception.
+  * @param  None
+  * @retval None
+  */
+void HardFault_Handler(void)
+{
+  printf("Hardfault\r\n");
+  //NVIC_SystemReset();
+  /* Go to infinite loop when Hard Fault exception occurs */
+  while (1)
+  {
+  }
+}
+
+/**
+  * @brief  This function handles Memory Manage exception.
+  * @param  None
+  * @retval None
+  */
+void MemManage_Handler(void)
+{
+  /* Go to infinite loop when Memory Manage exception occurs */
+  while (1)
+  {
+  }
+}
+
+/**
+  * @brief  This function handles Bus Fault exception.
+  * @param  None
+  * @retval None
+  */
+void BusFault_Handler(void)
+{
+  /* Go to infinite loop when Bus Fault exception occurs */
+  while (1)
+  {
+  }
+}
+
+/**
+  * @brief  This function handles Usage Fault exception.
+  * @param  None
+  * @retval None
+  */
+void UsageFault_Handler(void)
+{
+  /* Go to infinite loop when Usage Fault exception occurs */
+  while (1)
+  {
+  }
+}
+
+/**
+  * @brief  This function handles Debug Monitor exception.
+  * @param  None
+  * @retval None
+  */
+void DebugMon_Handler(void)
+{
+}
+
+/**
+  * @brief  This function handles ethernet DMA interrupt request.
+  * @param  None
+  * @retval None
+  */
+void ETH_IRQHandler(void)
+{
+#if 1 
+  portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
+
+  /* Frame received */
+  if ( ETH_GetDMAFlagStatus(ETH_DMA_FLAG_R) == SET) 
+  {
+    /* Give the semaphore to wakeup LwIP task */
+    xSemaphoreGiveFromISR( s_xSemaphore, &xHigherPriorityTaskWoken );   
+  }
+	
+  /* Clear the interrupt flags. */
+  /* Clear the Eth DMA Rx IT pending bits */
+  ETH_DMAClearITPendingBit(ETH_DMA_IT_R);
+  ETH_DMAClearITPendingBit(ETH_DMA_IT_NIS);
+	
+  // Switch tasks if necessary. */	
+  if( xHigherPriorityTaskWoken != pdFALSE )
+  {
+    portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );
+  }
+#endif
+}
+
+/**
+  * @brief  This function handles SDIO global interrupt request.
+  * @param  None
+  * @retval None
+  */
+void SDIO_IRQHandler(void)
+{
+  /* Process All SDIO Interrupt Sources */
+  //SD_ProcessIRQSrc();
+}
+
+/**
+  * @brief  This function handles DMA2 Stream3 or DMA2 Stream6 global interrupts
+  *         requests.
+  * @param  None
+  * @retval None
+  */
+void SD_SDIO_DMA_IRQHANDLER(void)
+{
+  /* Process DMA2 Stream3 or DMA2 Stream6 Interrupt Sources */
+  //SD_ProcessDMAIRQ();
+}
+
+/******************************************************************************/
+/*                 STM32F4xx Peripherals Interrupt Handlers                   */
+/*  Add here the Interrupt Handler for the used peripheral(s) (PPP), for the  */
+/*  available peripheral interrupt handler's name please refer to the startup */
+/*  file (startup_stm32f4xx.s).                                               */
+/******************************************************************************/
+/**
+  * @brief  This function handles PPP interrupt request.
+  * @param  None
+  * @retval None
+  */
+/*void PPP_IRQHandler(void)
+{
+}*/
+
+
+/*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/

+ 74 - 0
service_hw/User/stm32f4xx_it.h

@@ -0,0 +1,74 @@
+/*
+  ******************************************************************************
+  * @file    stm32f4xx_it.h 
+  * @author  MCD Application Team
+  * @version V1.0.0
+  * @date    31-October-2011
+  * @brief   This file contains the headers of the interrupt handlers.
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
+  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
+  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
+  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  *
+  * <h2><center>&copy; Portions COPYRIGHT 2011 STMicroelectronics</center></h2>
+  ******************************************************************************
+  */ 
+/**
+  ******************************************************************************
+  * <h2><center>&copy; Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.</center></h2>
+  * @file    stm32f4xx_it.h
+  * @author  CMP Team
+  * @version V1.0.0
+  * @date    28-December-2012
+  * @brief   This file contains the headers of the interrupt handlers.     
+  *          Modified to support the STM32F4DISCOVERY, STM32F4DIS-BB and
+  *          STM32F4DIS-LCD modules. 
+  ******************************************************************************
+  * @attention
+  *
+  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
+  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
+  * TIME. AS A RESULT, Embest SHALL NOT BE HELD LIABLE FOR ANY DIRECT, INDIRECT
+  * OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE CONTENT
+  * OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING INFORMATION
+  * CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
+  ******************************************************************************
+  */
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef __STM32F4xx_IT_H
+#define __STM32F4xx_IT_H
+
+#ifdef __cplusplus
+ extern "C" {
+#endif 
+
+/* Includes ------------------------------------------------------------------*/
+#include "stm32f4xx.h"
+
+/* Exported types ------------------------------------------------------------*/
+/* Exported constants --------------------------------------------------------*/
+/* Exported macro ------------------------------------------------------------*/
+/* Exported functions ------------------------------------------------------- */
+
+void NMI_Handler(void);
+void HardFault_Handler(void);
+void MemManage_Handler(void);
+void BusFault_Handler(void);
+void UsageFault_Handler(void);
+void SVC_Handler(void);
+void DebugMon_Handler(void);
+void PendSV_Handler(void);
+void SysTick_Handler(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __STM32F4xx_IT_H */
+
+/*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/

+ 187 - 0
service_hw/buttons/buttons.c

@@ -0,0 +1,187 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  buttons
+ * @file    buttons.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   buttons
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+#include "stm32f4xx.h"  
+#include "buttons.h"
+#include "led.h"
+#include "settings_api.h"
+#include "commands_api.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+BUTTON_NO_FIX_t defButton;
+
+uint8_t DefCounter = 0;
+
+/**
+  * @brief  
+  * @retval 
+  */
+void BUTTON_Init(void) 
+{
+  defButton.id_pin			  = KEY_DEF;
+  defButton.timeDelay         = 5;
+  defButton.pressHandler      = BUTTON_DEF_UpHandler;
+  defButton.unpressHandler    = BUTTON_DEF_DownHandler;
+  defButton.counterActivation = 0;
+  defButton.timeActivation    = 40;
+  defButton.fActivation       = false;
+    
+  defButton.stateOld     = BUTTON_GetState(&defButton);
+	
+}
+
+/**
+  * @brief   Возвращает сотояние ключа
+  */
+BUTTON_STATE_t BUTTON_GetState(BUTTON_NO_FIX_t *button)
+{
+  return (BUTTON_STATE_t)gpio_get(button->id_pin);
+}
+
+/**
+  * @brief  Обработчик кнопки без фиксации. В обработчике реализована защита
+  *         от дребезга с помощью задержки. Защита срабатывает при нажатии 
+  *         и при отпускании.
+  * @param *button: указатель на структуру типа BUTTON_NO_FIX
+  * @retval нет
+  */
+void BUTTON_NoFixHandler(BUTTON_NO_FIX_t *button)
+{
+  uint8_t temp;
+  
+  if (button->stateNew != BUT_NO_DEFINE)
+  {  
+    temp = gpio_get(button->id_pin);
+    
+    if (temp == 0)  // определяем текущее (новое) состояние кнопки        
+      button->stateNew = BUT_ON;
+    else
+      button->stateNew = BUT_OFF;
+  
+    if (button->stateNew != button->stateOld)  // зафиксирован факт нажатия/отжатия
+      button->stateNew = BUT_NO_DEFINE;  // переводим кнопку в неопределенное состояние
+  }
+  else
+  {
+    button->counterDelay++;             // запускаем счетчик на задержку
+    
+    if (button->counterDelay > button->timeDelay)  // задержка закончилась
+    {
+      button->counterDelay = 0;
+
+      temp = gpio_get(button->id_pin);
+   	  
+      button->counterActivation = 0;
+		
+      if (temp == 0)  // определяем текущее (новое) состояние кнопки        
+      {  
+        button->stateNew = BUT_ON;
+        button->unpressHandler();
+      }  
+      else
+      {  
+        button->stateNew = BUT_OFF;
+        button->pressHandler();
+      }
+	  	
+    }
+  }
+  
+  button->stateOld = button->stateNew;
+
+}
+
+
+/**
+  * @brief  Обработчик кнопки без фиксации. Кнопка срабатывает через определеное
+            время нажатия.
+  * @param *button: указатель на структуру типа BUTTON_NO_FIX
+  * @retval нет
+  */
+void BUTTON_DellayHandler(BUTTON_NO_FIX_t *button)
+{
+  /* Кнопка нажата. Ведем отсчет времени удержания */
+  if (gpio_get(button->id_pin) == 0)  // определяем текущее (новое) состояние кнопки
+  {  
+	button->counterActivation++;
+	button->fActivation = false;
+	
+	/* Кнопка нажата более необходимого времени - начинаем чаще мигать диодом */
+	if (button->counterActivation > button->timeActivation)
+	  LED_SetStatusLedFreq(100);
+  }
+  /* Кнопку отжата. Если до этого она была нажата нужное время - вызываем хендлер */
+  else
+  {
+	if ((button->counterActivation > button->timeActivation) 
+	     && button->fActivation == false)
+	{  
+	  button->fActivation = true;
+	  LED_SetStatusLedFreq(1000);
+	  button->unpressHandler();
+	}  
+	else
+	  button->counterActivation = 0;
+  }		
+
+}
+
+/**
+  * @brief  Опрос кнопок
+  */
+void vTaskButtons(void *pvParameters) 
+{
+  for (;;) 
+  {
+	BUTTON_DellayHandler(&defButton);
+	
+    vTaskDelay(100);  //20
+  }
+}
+
+/**
+  * @brief  Хендлер кнопки DEFAULT.
+  */
+void BUTTON_DEF_UpHandler(void)
+{
+    DefCounter++;
+
+    LED_Off(LED_INIT_R);
+	LED_Off(LED_MAJOR_R);
+	LED_Off(LED_MINOR_R);
+}
+
+
+/**
+  * @brief  Хендлер кнопки DEFAULT. Сброс всех настроек, сохранение и перезагрузка
+  */
+void BUTTON_DEF_DownHandler(void)
+{
+	LED_On(LED_INIT_R);
+	LED_On(LED_MAJOR_R);
+	LED_On(LED_MINOR_R);
+
+    fDefPressed = true;
+}
+
+/**
+  * @brief  Хендлер кнопки SET. Переход в bootloader
+  */
+void BUTTON_SET_DownHandler(void)
+{
+  //HTTP_StartResetTask(true);
+}
+
+
+/********************************* (C) РОТЕК **********************************/

+ 94 - 0
service_hw/buttons/buttons.h

@@ -0,0 +1,94 @@
+/******************************* (C) LiteMesh **********************************
+ * @module  buttons
+ * @file    buttons.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   buttons
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef BUTTONS_H
+#define BUTTONS_H
+
+#include <stdbool.h>
+#include "gpio.h"
+
+/**
+  * Статус кнопки
+  */
+typedef enum 
+{  
+  BUT_ON = 0,
+  BUT_OFF,
+  BUT_NO_DEFINE,
+  
+} BUTTON_STATE_t;
+
+/**
+  * @brief  Структура параметров объекта Button
+  */
+typedef struct 
+{  
+  gpio_t 			id_pin;
+  uint16_t          timeDelay;      // Время задержки антидребезга (время измеряется
+                                    // во временных интервалах с которыми вызывается
+                                    // обработчик кнопки
+  uint16_t          counterDelay;   // Счетчик антидребезга
+  BUTTON_STATE_t    stateOld;       // Прошлое состояние кнопки
+  BUTTON_STATE_t    stateNew;       // Текущее состояние кнопки
+  void              (*pressHandler)();   // Обработчик нажатия кнопки
+  void              (*unpressHandler)(); // Обработчик отпускания кнопки
+  uint8_t           ID;             // уникальный идентификатор (можно не использовать)
+  uint32_t          counterActivation;
+  uint16_t          timeActivation;
+  bool              fActivation;
+} BUTTON_NO_FIX_t; 
+
+/**
+  * @brief  
+  */
+void BUTTON_Init(void);
+   
+/**
+  * @brief   Возвращает сотояние ключа
+  * @retval  1 - линия разомкнута
+  *          0 - линия замкнута
+  */
+BUTTON_STATE_t BUTTON_GetState(BUTTON_NO_FIX_t *button);
+
+/**
+  * @brief  Обработчик кнопки без фиксации. В обработчике реализована защита
+  *         от дребезга с помощью задержки. Защита срабатывает при нажатии 
+  *         и при отпускании.
+  * @param *button: указатель на структуру типа BUTTON_NO_FIX
+  * @retval нет
+  */
+void BUTTON_NoFixHandler(BUTTON_NO_FIX_t *button);
+
+/**
+  * @brief  Опрос кнопок
+  */
+void vTaskButtons(void *pvParameters);
+
+/**
+  * @brief
+  */
+void BUTTON_DEF_UpHandler(void);
+
+/**
+  * @brief  Хендлер кнопки DEFAULT
+  */
+void BUTTON_DEF_DownHandler(void);
+
+/**
+  * @brief  Хендлер кнопки SET
+  */
+void BUTTON_SET_DownHandler(void);
+
+#endif /* #ifndef BUTTONS_H */
+
+/****************************** (C) LiteMesh ***************** end of file ****/

+ 109 - 0
service_hw/leds/led.c

@@ -0,0 +1,109 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  led
+ * @file    led.c
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   Template
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+#include "led.h"
+
+#include "FreeRTOS.h"
+#include "task.h"
+
+
+uint16_t statusLedFreq = 1000; // Определяет частоту мигания STATUS LED
+
+
+LED_STATE_t sLedInt = {GREEN, TOGGLE_OFF};
+LED_STATE_t ledIntTemporary = {GREEN, TOGGLE_OFF};
+
+
+/**
+  * @brief  
+  * @retval 
+  */
+void LED_Init(void)
+{
+  LED_Off(LED_INIT_R);
+  LED_Off(LED_INIT_G);
+  LED_Off(LED_MAJOR_R);
+  LED_Off(LED_MINOR_G);
+  LED_Off(LED_MINOR_R);
+}
+
+/**
+  * @brief  
+  */
+void LED_AddStateInt(COLOR_t color, TOGGLE_t toggle)
+{
+  
+  //sLedInt.toggle = toggle;
+  
+  if ((sLedInt.color == GREEN) && (toggle == TOGGLE_ON))
+	sLedInt.toggle = toggle;
+  
+  switch (color)
+  {
+	/* Зеленый не перебивает никакой цвет */
+    case GREEN :
+	  
+	break;
+	
+	/* Красный перебивает все цвета и останавливет мигание*/
+	case RED :
+	  sLedInt.color = RED;
+	  sLedInt.toggle = TOGGLE_OFF;
+	break;
+	
+	/* Желтый перебивает только зеленый и останавливает мигание*/
+	case YELLOW :
+	  if (sLedInt.color != RED)
+	  {	
+		sLedInt.color = YELLOW;
+		sLedInt.toggle = TOGGLE_OFF;
+	  }
+	break;
+	
+    default :
+	break;
+  }
+  
+}
+
+/**
+  * @brief  
+  */
+void LED_On(gpio_t pin)
+{
+	gpio_set(pin, 1);
+}
+
+/**
+  * @brief  
+  */
+void LED_Off(gpio_t pin)
+{
+	gpio_set(pin, 0);
+}
+
+/**
+  * @brief  Изменить состояние LED 
+  */
+void LED_Toggle(gpio_t pin)
+{
+	gpio_invert_output(pin);
+}
+
+/**
+  * @brief  
+  */
+void LED_SetStatusLedFreq(uint16_t freq)
+{
+  statusLedFreq = freq;
+}
+
+/********************************* (C) РОТЕК **********************************/

+ 81 - 0
service_hw/leds/led.h

@@ -0,0 +1,81 @@
+/********************************* (C) РОТЕК ***********************************
+ * @module  led
+ * @file    led.h
+ * @version 1.0.0
+ * @date    XX.XX.XXXX
+ * $brief   led
+ *******************************************************************************
+ * @history     Version  Author         Comment
+ * XX.XX.XXXX   1.0.0    Telenkov D.A.  First release.
+ *******************************************************************************
+ */
+
+/* Define to prevent recursive  ----------------------------------------------*/
+#ifndef LED_H
+#define LED_H
+   
+#include "stm32f4xx.h"
+#include "gpio.h"
+
+typedef enum
+{
+  GREEN_STATUS,
+  RED_STATUS,
+  
+} LED_NAMES_t;
+
+typedef enum
+{
+  GREEN = 0,
+  RED,
+  YELLOW,
+  
+} COLOR_t;
+
+typedef enum
+{
+  TOGGLE_ON = 0,
+  TOGGLE_OFF,
+  
+} TOGGLE_t;
+
+typedef struct
+{
+  COLOR_t     color;
+  TOGGLE_t    toggle;
+  
+} LED_STATE_t;
+
+/**
+  * @brief  
+  */
+void LED_Init(void);
+
+/**
+  * @brief  Задача простой мигалки
+  */
+void vTaskLedBlink(void *pvParameters);
+
+/**
+  * @brief  
+  */
+void LED_On(gpio_t pin);
+
+/**
+  * @brief  
+  */
+void LED_Off(gpio_t pin);
+
+/**
+  * @brief  Изменить состояние LED 
+  */
+void LED_Toggle(gpio_t pin);
+
+/**
+  * @brief  
+  */
+void LED_SetStatusLedFreq(uint16_t freq);
+
+#endif /* #ifndef LED_H */
+
+/********************************* (C) РОТЕК **********************************/

Неке датотеке нису приказане због велике количине промена