From a335710f5d120d05e7e96ac8936954bf8166cf07 Mon Sep 17 00:00:00 2001 From: asingularity Date: Fri, 30 Sep 2022 11:06:30 -0700 Subject: [PATCH 1/5] in progress kibbles detect threshold --- library.properties | 8 ++-- src/config-manager.cpp | 21 +++++++++-- src/config-manager.h | 7 +++- src/html-manager.h | 84 +++++++++++++++++++++--------------------- 4 files changed, 69 insertions(+), 51 deletions(-) diff --git a/library.properties b/library.properties index 9273ef4..7f276f9 100644 --- a/library.properties +++ b/library.properties @@ -1,11 +1,11 @@ -name=hackerpet_plus -version=0.1.108 +name=hackerpet_plus_dev +version=0.1.73 license=AGPL author=Csaba Petre maintainer=Csaba Petre -sentence=(Alpha Version!) Long-term cloud-less firmware! +sentence=(Dev Version!) Long-term cloud-less firmware! category=Other url=http://hackerpet.com repository=https://github.com/CleverPet/hackerpet_plus/ architectures=particle-photon -dependencies.hackerpet=0.2.6 +dependencies.hackerpet=0.2.6 \ No newline at end of file diff --git a/src/config-manager.cpp b/src/config-manager.cpp index 737865c..97f7da9 100644 --- a/src/config-manager.cpp +++ b/src/config-manager.cpp @@ -91,6 +91,8 @@ bool ConfigManager::Initialize() EEPROM.get(_KIBBLES_LIMIT_ADDRESS, _kibbles_limit); + EEPROM.get(_FOODTREAT_THRESH_ADDRESS, _foodtreat_detect_thresh); + _last_hub_mode = _hub_mode; } @@ -143,11 +145,15 @@ bool ConfigManager::Initialize() _kibbles_limit = 0; EEPROM.put(_KIBBLES_LIMIT_ADDRESS, _kibbles_limit); + _foodtreat_detect_thresh = 60; // 40 for empty dish fix + EEPROM.put(_FOODTREAT_THRESH_ADDRESS, _foodtreat_detect_thresh); } // to force initialization to a valid _hub_state in Run() _hub_state = _HUB_STATE_INIT; + _hub->SetFoodTreatDetectThresh(_foodtreat_detect_thresh); + mgschwan_mdns = new MDNS; return true; @@ -823,9 +829,18 @@ bool ConfigManager::_process_set_max_kibbles_req(String req_str) bool ConfigManager::_process_set_kibbles_thresh_req(String req_str) { - // TODO is there abranch where we have eeprom etc. stuff for this already coded? - // yes: - // https://github.com/CleverPet/hackerpet_plus/pull/7/files + // TODO FINISH + + // TODO NEEDS TESTING + String thresh_str = req_str.substring(req_str.indexOf("kibbles_thresh\"") + 16); + int index_stop = thresh_str.indexOf("}"); // TODO is this correct? + thresh_str = thresh_str.substring(0, index_stop); + + int thresh = thresh_str.toInt(); + + _foodtreat_detect_thresh = thresh; + + _hub->SetFoodTreatDetectThresh(_foodtreat_detect_thresh); return true; } diff --git a/src/config-manager.h b/src/config-manager.h index e49575b..fe9a6e4 100644 --- a/src/config-manager.h +++ b/src/config-manager.h @@ -63,11 +63,12 @@ class ConfigManager const int _SCHED_WEEKEND_FROM_ADDRESS = 260; const int _SCHED_WEEKEND_TO_ADDRESS = 360; const int _KIBBLES_LIMIT_ADDRESS = 460; - + const int _FOODTREAT_THRESH_ADDRESS = 560; + // ***************** const other ***************** // we can change this number to force an eeprom "reset" to defaults; and to avoid undefined state when adding new variables - const int _EVER_STORED_CHECK_VALUE = 12357; // EVER_STORED_CHECK_VALUE = 12346; + const int _EVER_STORED_CHECK_VALUE = 12358; // EVER_STORED_CHECK_VALUE = 12346; const int _HUB_MODE_STAY_OFF = 0; const int _HUB_MODE_STAY_ON = 1; @@ -102,6 +103,8 @@ class ConfigManager int _kibbles_limit; int _kibbles_eaten_today; + int _foodtreat_detect_thresh; + int _last_day; unsigned long _last_mdns_reconnect_attempt; diff --git a/src/html-manager.h b/src/html-manager.h index c657ddb..c96d4fc 100644 --- a/src/html-manager.h +++ b/src/html-manager.h @@ -3,48 +3,48 @@ #include "Particle.h" -const int len_html_piece = 763; -const int len_last_piece = 782; +const int len_html_piece = 783; +const int len_last_piece = 789; -static const char bin2c_html_piece_0_tmp[763] = {'<','!','D','O','C','T','Y','P','E',' ','h','t','m','l','>',012,'<','h','t','m','l',' ','l','a','n','g','=','"','e','n','"','>',012,'<','h','e','a','d','>',012,'<','m','e','t','a',' ','c','h','a','r','s','e','t','=','"','U','T','F','-','8','"',' ','/','>',012,'<','l','i','n','k',' ','r','e','l','=','"','i','c','o','n','"',' ','t','y','p','e','=','"','i','m','a','g','e','/','s','v','g','+','x','m','l','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','t','C','G','f','v','g','7','x','/','c','l','e','v','e','r','p','e','t','-','l','o','g','o','.','p','n','g','"',' ','/','>',012,'<','m','e','t','a',' ','n','a','m','e','=','"','v','i','e','w','p','o','r','t','"',' ','c','o','n','t','e','n','t','=','"','w','i','d','t','h','=','d','e','v','i','c','e','-','w','i','d','t','h',',',' ','i','n','i','t','i','a','l','-','s','c','a','l','e','=','1','.','0','"',' ','/','>',012,'<','t','i','t','l','e','>','C','l','e','v','e','r',' ','P','e','t','<','/','t','i','t','l','e','>',012,'<','!','-','-',' ','<','s','c','r','i','p','t',' ','t','y','p','e','=','"','m','o','d','u','l','e','"',' ','c','r','o','s','s','o','r','i','g','i','n',' ','s','r','c','=','"','/','a','s','s','e','t','s','/','i','n','d','e','x','.','4','2','f','e','4','9','3','7','.','j','s','"','>','<','/','s','c','r','i','p','t','>',' ','-','-','>',012,'<','s','c','r','i','p','t','>',012,'c','o','n','s','t',' ','s','=','f','u','n','c','t','i','o','n','(',')','{','c','o','n','s','t',' ','t','=','d','o','c','u','m','e','n','t','.','c','r','e','a','t','e','E','l','e','m','e','n','t','(','"','l','i','n','k','"',')','.','r','e','l','L','i','s','t',';','i','f','(','t','&','&','t','.','s','u','p','p','o','r','t','s','&','&','t','.','s','u','p','p','o','r','t','s','(','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',')',')','r','e','t','u','r','n',';','f','o','r','(','c','o','n','s','t',' ','e',' ','o','f',' ','d','o','c','u','m','e','n','t','.','q','u','e','r','y','S','e','l','e','c','t','o','r','A','l','l','(',047,'l','i','n','k','[','r','e','l','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',']',047,')',')','n','(','e',')',';','n','e','w',' ','M','u','t','a','t','i','o','n','O','b','s','e','r','v','e','r','(','e','=','>','{','f','o','r','(','c','o','n','s','t',' ','r',' ','o','f',' ','e',')','i','f','(','r','.','t','y','p','e','=','=','=','"','c','h','i','l','d','L','i','s','t','"',')','f','o','r','(','c','o','n','s','t',' ','o',' ','o','f',' ','r','.','a','d','d','e','d','N','o','d','e','s',')','o','.','t','a','g','N','a','m','e','=','=','=','"','L','I','N','K','"','&','&','o','.','r','e','l','=','=','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"','&','&','n','(','o',')','}',')','.','o','b','s','e','r','v','e','(','d','o','c','u','m','e','n','t',',','{','c','h','i','l','d','L','i','s','t',':','!','0',',','s','u','b','t','r','e','e',':','!','0','}',')',';','f','u','n','c','t','i','o','n',' ','i','(','e',')','{','c','o','n','s','t',' ','r','=','{','}',}; -static const char bin2c_html_piece_1_tmp[763] = {';','r','e','t','u','r','n',' ','e','.','i','n','t','e','g','r','i','t','y','&','&','(','r','.','i','n','t','e','g','r','i','t','y','=','e','.','i','n','t','e','g','r','i','t','y',')',',','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y','&','&','(','r','.','r','e','f','e','r','r','e','r','P','o','l','i','c','y','=','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y',')',',','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','u','s','e','-','c','r','e','d','e','n','t','i','a','l','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','i','n','c','l','u','d','e','"',':','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','a','n','o','n','y','m','o','u','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','o','m','i','t','"',':','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','s','a','m','e','-','o','r','i','g','i','n','"',',','r','}','f','u','n','c','t','i','o','n',' ','n','(','e',')','{','i','f','(','e','.','e','p',')','r','e','t','u','r','n',';','e','.','e','p','=','!','0',';','c','o','n','s','t',' ','r','=','i','(','e',')',';','f','e','t','c','h','(','e','.','h','r','e','f',',','r',')','}','}',';','s','(',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s','(',')',' ','{',' ',012,'v','a','r',' ','x','h','t','t','p',' ','=',' ','n','e','w',' ','X','M','L','H','t','t','p','R','e','q','u','e','s','t','(',')',';',012,'v','a','r',' ','s','t','a','t','u','s','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"',')',';',' ',' ','/','/',' ','h','u','b',' ','s','t','a','t','e',' ','a','l','s','o',' ','h','e','r','e','?','?',012,'v','a','r',' ','t','i','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',')',';',012,'v','a','r',' ','k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"',')',';',012,'v','a','r',' ','t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','t','h','e','-','t','i','m','e','z','o','n','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,'v','a','r',' ','d','s','t','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h',}; -static const char bin2c_html_piece_2_tmp[763] = {'t','s','a','v','i','n','g','"',')',';',' ','/','/',' ','b','u','t','t','o','n','.',' ','n','e','w',' ',' ',';',' ','a','r','i','a','-','c','h','e','c','k','e','d',':',' ','"','t','r','u','e','"',' ','o','r',' ','"','f','a','l','s','e','"',012,'v','a','r',' ','m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',')',';',' ',' ','/','/',' ','t','y','p','e',':',' ','r','a','d','i','o',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','1',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',')',';',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','2',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',')',';',012,012,'x','h','t','t','p','.','o','p','e','n','(','"','G','E','T','"',',',' ','"','/','l','o','c','a','l','-','a','p','i','"',',',' ','t','r','u','e',')',';',012,'x','h','t','t','p','.','s','e','n','d','(',')',';',012,'x','h','t','t','p','.','o','n','l','o','a','d',' ','=',' ','f','u','n','c','t','i','o','n',' ','(',')',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'D','O','N','E',047,',',' ','x','h','t','t','p','.','r','e','a','d','y','S','t','a','t','e',')',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'v','a','r',' ','d','a','t','a',' ','=',' ','J','S','O','N','.','p','a','r','s','e','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'s','t','a','t','u','s','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','s','t','a','t','u','s',' ','+',' ','"','<','b','r','>','"',' ','+',' ','d','a','t','a','.','h','u','b','_','s','t','a','t','e',';',012,'t','i','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e',';',012,'k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','k','i','b','b','l','e','s','_','e','a','t','e','n','_','t','o','d','a','y',';',012,'t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t',}; -static const char bin2c_html_piece_3_tmp[763] = {'i','m','e','z','o','n','e',';',012,012,'/','/',' ','i','f',' ','h','i','d','d','e','n',' ','(','n','o','t',' ','c','u','r','r','e','n','t','l','y',' ','e','d','i','t','i','n','g','!',')','!',012,'/','/',' ','i','f',' ','n','o','t',' ','h','i','d','d','e','n',',',' ','s','h','o','u','l','d',' ','n','o','t',' ','o','v','e','r','w','r','i','t','e',' ','v','a','l','u','e',' ','b','e','i','n','g',' ','e','d','i','t','e','d',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')',012,'{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','t','o',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','t','o',';',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','0',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','1',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','1','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','1',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','2',')',012,'{',012,'s','c','h','e','d','u','l','e',}; -static const char bin2c_html_piece_4_tmp[763] = {'_','e','l','e','m','_','2','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','2',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',' ',' ',' ',012,'}',012,'}',012,012,'i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',')',';',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','1',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','0',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','1','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','0',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','1',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','0','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,012,'m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','m','a','x','_','k','i','b','b','l','e','s',';',012,'f','o','r','(','l','e','t',' ','i','=','0',';',' ','i',' ','<',' ','1','2',';',' ','i','+','+',')',' ',' ',' ','/','/',' ','T','O','D','O',' ','I','S',' ','T','H','I','S',' ','R','I','G','H','T',' ','N','U','M',' ','G','A','M','E','S',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','g','a','m','e','-','s','t','a','t','u','s','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'v','a','r',' ','g','a','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','g','a','m','e','-','"',' ','+',' ','i','.',}; -static const char bin2c_html_piece_5_tmp[763] = {'t','o','S','t','r','i','n','g','(',')',')',';',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','p','l','a','y','i','n','g',')','=','=','i',')',' ',' ','/','/',' ','p','l','a','y','i','n','g',' ','s','a','m','e',' ','g','a','m','e',' ','o','v','e','r','r','i','d','e','s',' ','t','h','e',' ','e','l','e','m','e','n','t',' ','i','f',' ','a','l','s','o',' ','q','u','e','u','e','d',' ','s','a','m','e',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','p','l','a','y','i','n','g',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','p','l','a','y','i','n','g','"',';',012,'}',012,'e','l','s','e',012,'{',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','q','u','e','u','e','d',')','=','=','i',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','q','u','e','u','e','d',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','q','u','e','u','e','d','"',';',012,'}',012,'e','l','s','e',012,'{',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','"',';',012,'}',012,'}',012,'}',012,'}',';',012,'}',012,012,'s','e','t','I','n','t','e','r','v','a','l','(','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s',',',' ','2','0','0','0',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','l','i','n','k',' ','r','e','l','=','"','s','t','y','l','e','s','h','e','e','t','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','d','r','i','v','e','.','g','o','o','g','l','e','.','c','o','m','/','u','c','?','e','x','p','o','r','t','=','d','o','w','n','l','o','a','d','&','i','d','=','1','a','d','S','M','J','J','C','F','e','d','m','6','n','b','l','1','T','M','n','R','c','x','u','L','R','Q','K','9','f','Y','F','b','"','>',012,'<','/','h','e','a','d','>',012,'<','b','o','d','y',' ','c','l','a','s','s','=','"','p','a','g','e','-','b','g','"','>',012,'<','n','a','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','s','t','i','c','k','y',' ','t','o','p','-','0',' ','z','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','b','e','t','w','e','e','n',' ','h','-','1','6','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','m','g',' ','s','r','c','=','"','h','t','t','p','s',}; -static const char bin2c_html_piece_6_tmp[763] = {':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','1','t','F','X','G','N','V','M','/','l','o','g','o','-','d','8','e','b','c','7','a','d','.','p','n','g','"',' ','c','l','a','s','s','=','"','h','-','1','0','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','s','m',':','m','l','-','6',' ','s','m',':','f','l','e','x',' ','s','m',':','s','p','a','c','e','-','x','-','8','"','>',012,'<','a',' ','h','r','e','f','=','"','#','"',' ','c','l','a','s','s','=','"','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','i','n','l','i','n','e','-','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','p','x','-','1',' ','p','t','-','1',' ','b','o','r','d','e','r','-','b','-','2',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m','"','>',' ','D','a','s','h','b','o','a','r','d',' ','<','/','a','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','n','a','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','g','r','i','d',' ','g','r','i','d','-','c','o','l','s','-','1',' ','g','a','p','-','4',' ','s','m',':','g','r','i','d','-','c','o','l','s','-','2',' ','m','b','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','y','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','4',' ','w','-','1','4',' ','m','d',':','h','-','2','0',' ','m','d',':','w','-','2','0',' ','m','x','-','a','u','t','o',' ','t','e','x','t','-','g','r','e','e','n','-','4','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','5','.','6','3','6',' ',}; -static const char bin2c_html_piece_7_tmp[763] = {'1','8','.','3','6','4','a','9',' ','9',' ','0',' ','0','1','0','-','1','2','.','7','2','8','m','1','2','.','7','2','8',' ','0','a','9',' ','9',' ','0',' ','0','1','0',' ','1','2','.','7','2','8','m','-','9','.','9','-','2','.','8','2','9','a','5',' ','5',' ','0',' ','0','1','0','-','7','.','0','7','m','7','.','0','7','2',' ','0','a','5',' ','5',' ','0',' ','0','1','0',' ','7','.','0','7','M','1','3',' ','1','2','a','1',' ','1',' ','0',' ','1','1','-','2',' ','0',' ','1',' ','1',' ','0',' ','0','1','2',' ','0','z','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','p',' ','c','l','a','s','s','=','"',' ','m','d',':','t','e','x','t','-','2','x','l','"',' ','i','d','=','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"','>',012,'Y','o','u',' ','h','u','b',' ','s','t','a','t','u','s',' ','i','s',' ','a','c','t','i','v','e',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','p',' ','c','l','a','s','s','=','"','t','e','x','t','-','4','x','l',' ','m','d',':','t','e','x','t','-','7','x','l',' ','f','o','n','t','-','b','o','l','d','"',' ','i','d','=','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"','>','3','0','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','t','-','2',' ','m','d',':','t','e','x','t','-','2','x','l','"','>',012,'K','i','b','b','l','e','s',' ','e','a','t','e','n',' ','t','o','d','a','y',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','D','a','t','e',' ','a','n','d',' ','T','i','m','e',' ','s','e','t','t','i','n','g','s','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l',}; -static const char bin2c_html_piece_8_tmp[763] = {'a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','D','a','t','e',' ','a','n','d',' ','T','i','m','e','<','/','p','>',012,'<','s','p','a','n',' ','i','d','=','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',' ','c','l','a','s','s','=','"','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','W','e','d',' ','M','a','r',' ','2','3',' ','2','0','2','2',' ','2','3',':','4','0',':','1','1','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','A','p','p','l','y',' ','D','a','y','l','i','g','h','t',' ','S','a','v','i','n','g','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','t','r','u','e',')','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',' ','t','y','p','e','=','"','b','u','t','t','o','n','"',' ','c','l','a','s','s','=','"','b','g','-','g','r','a','y','-','2','0','0',' ','r','e','l','a','t','i','v','e',' ','i','n','l','i','n','e','-','f','l','e','x',' ','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','h','-','6',' ','w','-','1','1',' ','b','o','r','d','e','r','-','2',' ','b','o','r','d','e','r','-','t','r','a','n','s','p','a','r','e','n','t',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','c','u','r','s','o','r','-','p','o','i','n','t','e','r',' ','t','r','a','n','s','i','t','i','o','n','-','c','o','l','o','r','s',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0',' ','f','o','c','u','s',':','o','u','t','l','i','n','e','-','n','o','n','e',' ','f','o','c','u','s',':','r','i','n','g','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','o','f','f','s','e','t','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0','"',' ','r','o','l','e','=','"','s','w',}; -static const char bin2c_html_piece_9_tmp[763] = {'i','t','c','h','"',' ','a','r','i','a','-','c','h','e','c','k','e','d','=','"','f','a','l','s','e','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','s','r','-','o','n','l','y','"','>','U','s','e',' ','s','e','t','t','i','n','g','<','/','s','p','a','n','>',012,'<','s','p','a','n',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"',' ','c','l','a','s','s','=','"','t','r','a','n','s','l','a','t','e','-','x','-','0',' ','p','o','i','n','t','e','r','-','e','v','e','n','t','s','-','n','o','n','e',' ','i','n','l','i','n','e','-','b','l','o','c','k',' ','h','-','5',' ','w','-','5',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','t','r','a','n','s','f','o','r','m',' ','r','i','n','g','-','0',' ','t','r','a','n','s','i','t','i','o','n',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0','"','>','<','/','s','p','a','n','>',012,'<','/','b','u','t','t','o','n','>',012,'<','i','n','p','u','t',' ','n','a','m','e','=','"','d','a','y','l','i','g','h','t','s','a','v','i','n','g','s','"',' ','t','y','p','e','=','"','h','i','d','d','e','n','"',' ','v','a','l','u','e','=','"','0','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','T','i','m','e','z','o','n','e','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','t','h','e','-','t','i','m','e','z','o','n','e','"','>','A','m','e','r','i','c','a','/','L','o','s',' ','A','n','g','e','l','e','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r',}; -static const char bin2c_html_piece_10_tmp[763] = {'e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','a','r','o','u','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',' ','c','h','e','c','k','e','d',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','v','a','l','u','e','=','"','1','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','1',')','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','o','n',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','0',')','"',' ','v','a','l','u','e','=','"','0','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w',}; -static const char bin2c_html_piece_11_tmp[763] = {'-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','m','s','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','O','f','f','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',' ','v','a','l','u','e','=','"','2','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','2',')','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','c','h','e','d','u','l','e','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4',' ','h','i','d','d','e','n','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','r','o','p','t','i','o','n','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','D','a','y','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ',}; -static const char bin2c_html_piece_12_tmp[763] = {'t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','t','o','"',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p',}; -static const char bin2c_html_piece_13_tmp[763] = {'>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','E','n','d','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','t','o','"',' ','i','d','=','"','w','e','e','k','e','n',}; -static const char bin2c_html_piece_14_tmp[763] = {'d','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','m','t','-','3',' ','p','y','-','2',' ','r','o','u','n','d','e','d',' ','s','h','a','d','o','w',' ','b','g','-','g','r','e','e','n','-','5','0','0',' ','t','e','x','t','-','w','h','i','t','e',' ','t','e','x','t','-','s','m',' ','m','d',':','t','e','x','t','-','x','l','"','>','S','a','v','e','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','K','i','b','b','l','e','s',' ','s','e','t','t','i','n','g','s',' ','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h',}; -static const char bin2c_html_piece_15_tmp[763] = {'a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','M','a','x',' ','K','i','b','b','l','e','s',' ','P','e','r',' ','D','a','y','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"','>','4','0','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','d',':','p','y','-','5','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','y','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','S','e','l','e','c','t',' ','G','a','m','e','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o',}; -static const char bin2c_html_piece_16_tmp[763] = {'u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','p','-','2','"','>',012,'<','u','l',' ','c','l','a','s','s','=','"','d','i','v','i','d','e','-','y','"','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','a','t','i','n','g',' ','t','h','e',' ','f','o','o','d','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e',}; -static const char bin2c_html_piece_17_tmp[763] = {'v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','x','p','l','o','r','i','n','g',' ','t','h','e',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'2',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','n','g','a','g','i','n','g',' ','C','o','n','s','i','s','t','e','n','t','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','2','"',' ','c','l','a','s','s','=','"','f','o',}; -static const char bin2c_html_piece_18_tmp[763] = {'n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'3',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','A','v','o','i','d','i','n','g',' ','U','n','l','i','t',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','3','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'4',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d',}; -static const char bin2c_html_piece_19_tmp[763] = {'"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','4','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'5',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','s','t','e','r','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','5','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-',}; -static const char bin2c_html_piece_20_tmp[763] = {'1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'6',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','R','e','s','p','o','n','d','i','n','g',' ','Q','u','i','c','k','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','6','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'7',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',}; -static const char bin2c_html_piece_21_tmp[763] = {' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','B','r','i','g','h','t','n','e','s','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','7','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'8',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','D','o','u','b','l','e',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','8','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',}; -static const char bin2c_html_piece_22_tmp[763] = {012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'9',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','L','o','n','g','e','r',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','9','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0',}; -static const char bin2c_html_piece_23_tmp[763] = {'-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','T','w','o',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','M','o','r','e',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v',}; -static const char bin2c_html_piece_24_tmp[763] = {'>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','/','u','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','T','i','m','e','z','o','n','e',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','e','x','t','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r','-','0',' ','b','g','-','g','r','a','y','-','1','0','0',' ','p','x','-','4',' ','p','y','-','2','.','5',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','p','l','a','c','e','h','o','l','d','e','r','-','g','r','a','y','-','5','0','0',' ','f','o','c','u','s',':','r','i','n','g','-','0',' ','s','m',':','t','e','x','t','-','s','m','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','S','e','a','r','c','h',' ','T','i','m','e','z','o','n','e','"',' ','r','o','l','e','=','"','c','o','m','b','o','b','o','x','"',' ','a','r','i','a','-','e','x','p','a','n','d','e','d','=','"','f','a','l','s','e','"',' ','a','r','i','a','-','c','o','n','t','r','o','l','s','=','"','o','p','t','i','o','n','s','"','>',012,'<','!','-','-',' ','R','e','s','u','l','t','s',',',' ','s','h','o','w','/','h','i','d','e',' ','b','a','s','e','d',' ','o','n',' ','c','o','m','m','a','n','d',' ','p','a','l','e','t','t','e',' ','s','t','a','t','e','.',' ','-','-','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l',}; -static const char bin2c_html_piece_25_tmp[763] = {'-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','1','2',':','0','0',')',' ','I','n','t','e','r','n','a','t','i','o','n','a','l',' ','D','a','t','e',' ','L','i','n','e',' ','W','e','s','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','1',':','0','0',')',' ','M','i','d','w','a','y',' ','I','s','l','a','n','d',',',' ','S','a','m','o','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','0',':','0','0',')',' ','H','a','w','a','i','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1',}; -static const char bin2c_html_piece_26_tmp[763] = {'"','>','(','G','M','T','-','0','9',':','0','0',')',' ','A','l','a','s','k','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','8',':','0','0',')',' ','P','a','c','i','f','i','c',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','7',':','0','0',')',' ','M','o','u','n','t','a','i','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','0','6',':','0','0',')',' ','C','e','n','t','r','a','l',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','5',':','0','0',')',' ','E','a','s','t','e','r','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,}; -static const char bin2c_html_piece_27_tmp[763] = {'-','4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','4',':','0','0',')',' ','A','t','l','a','n','t','i','c',' ','T','i','m','e',' ','(','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','3','0',')',' ','N','e','w','f','o','u','n','d','l','a','n','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','0','0',')',' ','B','u','e','n','o','s',' ','A','i','r','e','s',',',' ','G','e','o','r','g','e','t','o','w','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','2',':','0','0',')',' ','M','i','d','-','A','t','l','a','n','t','i','c','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o',}; -static const char bin2c_html_piece_28_tmp[763] = {'n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','1',':','0','0',')',' ','C','a','p','e',' ','V','e','r','d','e',' ','I','s','.','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','+','0','0',':','0','0',')',' ','G','r','e','e','n','w','i','c','h',' ','M','e','a','n',' ','T','i','m','e',' ',':',' ','D','u','b','l','i','n',',',' ','E','d','i','n','b','u','r','g','h',',',' ','L','i','s','b','o','n',',',' ','L','o','n','d','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','1',':','0','0',')',' ','A','m','s','t','e','r','d','a','m',',',' ','B','e','r','l','i','n',',',' ','B','e','r','n',',',' ','R','o','m','e',',',' ','S','t','o','c','k','h','o','l','m',',',' ','V','i','e','n','n','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','2',':','0','0',')',' ','A','t','h','e','n','s',',',' ','B','u','c','h','a','r','e','s','t',',',' ','I','s','t','a','n','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M',}; -static const char bin2c_html_piece_29_tmp[763] = {'T','+','0','3',':','0','0',')',' ','M','o','s','c','o','w',',',' ','S','t','.',' ','P','e','t','e','r','s','b','u','r','g',',',' ','V','o','l','g','o','g','r','a','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','3','0',')',' ','T','e','h','r','a','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','0','0',')',' ','A','b','u',' ','D','h','a','b','i',',',' ','M','u','s','c','a','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','3','0',')',' ','K','a','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','0','0',')',' ','I','s','l','a','m','a','b','a','d',',',' ','K','a','r','a','c','h','i',',',' ','T','a','s','h','k','e','n','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u',}; -static const char bin2c_html_piece_30_tmp[763] = {'l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','3','0',')',' ','C','h','e','n','n','a','i',',',' ','K','o','l','k','a','t','a',',',' ','M','u','m','b','a','i',',',' ','N','e','w',' ','D','e','l','h','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','7','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','4','5',')',' ','K','a','t','h','m','a','n','d','u','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','0','0',')',' ','A','l','m','a','t','y',',',' ','N','o','v','o','s','i','b','i','r','s','k','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','3','0',')',' ','Y','a','n','g','o','n',' ','(','R','a','n','g','o','o','n',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>',}; -static const char bin2c_html_piece_31_tmp[763] = {'(','G','M','T','+','0','7',':','0','0',')',' ','B','a','n','g','k','o','k',',',' ','H','a','n','o','i',',',' ','J','a','k','a','r','t','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','8',':','0','0',')',' ','B','e','i','j','i','n','g',',',' ','C','h','o','n','g','q','i','n','g',',',' ','H','o','n','g',' ','K','o','n','g',',',' ','U','r','u','m','q','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','0','0',')',' ','O','s','a','k','a',',',' ','S','a','p','p','o','r','o',',',' ','T','o','k','y','o','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','3','0',')',' ','A','d','e','l','a','i','d','e','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','0',':','0','0',')',' ','C','a','n','b','e','r','r','a',',',' ','M','e','l','b','o','u','r','n','e',',',' ','S','y','d','n','e','y','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n',}; -static const char bin2c_html_piece_32_tmp[763] = {'e','(',047,'1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','1',':','0','0',')',' ','M','a','g','a','d','a','n',',',' ','S','o','l','o','m','o','n',' ','I','s','.',',',' ','N','e','w',' ','C','a','l','e','d','o','n','i','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','2',':','0','0',')',' ','A','u','c','k','l','a','n','d',',',' ','W','e','l','l','i','n','g','t','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','3',':','0','0',')',' ','N','u','k','u',047,'a','l','o','f','a','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','M','a','x',' ','K','i','b','b','l','e','s',' ','p','e','r',' ','D','a','y',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i',}; -static const char bin2c_html_piece_33_tmp[763] = {'x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','h','3',' ','c','l','a','s','s','=','"','t','e','x','t','-','x','l',' ','b','o','r','d','e','r','-','b',' ','b','o','r','d','e','r','-','g','r','a','y','-','1','0','0','"','>','S','e','l','e','c','t',' ','o','n','e',' ','b','e','l','o','w','<','/','h','3','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','5','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'5','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-',}; -static const char bin2c_html_piece_34_tmp[763] = {'2','"',' ','i','d','=','"','o','p','t','i','o','n','-','2','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','5','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'1','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','3','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','1','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','4','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'4','0','0',' ',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','5','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','4','0','0','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,012,'<','s','c','r','i','p','t',' ','s','r','c','=','"','h','t','t','p','s',':','/','/','u','n','p','k','g','.','c','o','m','/','a','x','i','o','s','/','d','i','s','t','/','a','x','i','o','s','.','m','i','n','.','j','s','"','>','<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','t','o','g','g','l','e','C','l','a','s','s','(',}; -static const char bin2c_html_piece_35_tmp[763] = {'e','l','e','m','e','n','t','I','d',',',' ','s','t','r','i','n','g','C','l','a','s','s',')','{',012,'v','a','r',' ','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','e','l','e','m','e','n','t','I','d',')',';',012,'e','l','e','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(','s','t','r','i','n','g','C','l','a','s','s',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','r','a','d','i','o','B','u','t','t','o','n','(','b','t','n','C','l','a','s','s',',',' ','b','t','n','R','a','d','i','o','C','l','a','s','s',',',' ','i','n','p','u','t','I','d',',',' ','a','p','i','c','a','l','l',')','{',012,'v','a','r',' ','b','t','n',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','C','l','a','s','s',')',';',012,'v','a','r',' ','b','t','n','r','a','d','i','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','R','a','d','i','o','C','l','a','s','s',')',';',012,'v','a','r',' ','i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','i','n','p','u','t','I','d',')',';',012,'/','/',' ','t','o','g','g','l','e',' ','t','h','e',' ','s','w','i','t','c','h',' ','a','n','d',' ','v','a','l','u','e',' ','o','f',' ','t','h','e',' ','i','n','p','u','t',' ','t','o',' ','1',' ','o','r',' ','0',' ',012,'i','f','(','b','t','n','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',')','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,',',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','1',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','1',')',';',012,'}',012,'}','e','l','s','e','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,',',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','0',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v',}; -static const char bin2c_html_piece_36_tmp[763] = {'i','n','g','s','(','0',')',';',012,'}',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(','t','i','m','e','z','o','n','e',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','t','i','m','e','z','o','n','e',047,',',' ','{',012,'t','i','m','e','z','o','n','e','_','o','f','f','s','e','t',':',' ','p','a','r','s','e','F','l','o','a','t','(','t','i','m','e','z','o','n','e',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'T','i','m','e','z','o','n','e',' ','h','a','s',' ','b','e','e','n',' ','u','p','d','a','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','G','a','m','e','(','g','a','m','e','I','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','g','a','m','e',047,',',' ','{',012,'g','a','m','e',':','p','a','r','s','e','I','n','t','(','g','a','m','e','I','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','a',' ','g','a','m','e',' ','h','a','s',' ','b','e','e','n',' ','s','e','l','e','c','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(','i','n','t','I','n','p','u','t',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','m','a','x','_','k','i','b','b','l','e','s',047,',',' ','{',012,'m','a','x','_','k','i','b','b','l','e','s',':','p','a','r','s','e','I','n','t','(','i','n','t','I','n','p','u','t',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o',}; -static const char bin2c_html_piece_37_tmp[763] = {'l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','t','h','r','e','s','h','o','l','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','k','i','b','b','l','e','s','_','t','h','r','e','s','h',047,',',' ','{',012,'k','i','b','b','l','e','s','_','t','h','r','e','s','h',':','p','a','r','s','e','I','n','t','(','t','h','r','e','s','h','o','l','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','t','h','r','e','s','h','o','l','d',' ',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','o','n','O','r','o','f','f',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','d','s','t',047,',',' ','{',012,'d','s','t','_','o','n',':','p','a','r','s','e','I','n','t','(','o','n','O','r','o','f','f',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','d','a','y','l','i','g','h','t',' ','s','a','v','i','n','g','s',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','h','u','b','_','m','o','d','e',047,',',' ','{',012,'h','u','b','_','m','o','d','e',':','p','a','r','s','e','I','n','t','(','h','u','b','s','t','a','t','u','s',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','h','u','b',' ','m','o','d','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e',}; -static const char bin2c_html_piece_38_tmp[763] = {'r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','(','h','u','b','s','t','a','t','u','s',')','{',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','1',' ','|','|',' ','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','0',')','{',012,'i','f','(','!','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'}',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')',';',012,'}','e','l','s','e','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','2',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','{',012,'v','a','r',' ','e','r','r','o','r','C','o','u','n','t','e','r',' ','=',' ','0',';',012,'v','a','r',' ','w','e','e','k','d','a','y','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','d','a','y','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')',';',012,'/','/',' ','v','a','l','i','d','a','t','e',' ','i','n','p','u','t','s',012,'v','a','r',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',' ','=',' ','[','w','e','e','k','d','a','y','f','r','o','m',',',' ','w','e','e','k','d','a','y','t','o',',',' ','w','e','e','k','e','n','d','f','r','o','m',',',' ','w','e','e','k','e','n','d','t','o',']',';',012,'f','o','r','(','l','e','t',' ','s',' ','=',' ','0',';',' ','s',' ','<',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','.','l','e','n','g','t','h',}; -static const char bin2c_html_piece_39_tmp[782] = {';',' ','s','+','+',')','{',012,'/','/','r','e','s','e','t',' ','e','r','r','o','r',' ','m','e','s','s','a','g','e',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','a','d','d','(',047,'h','i','d','d','e','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','"','"',' ','|','|',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','n','u','l','l',')','{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(',047,'h','i','d','d','e','n',047,')',';',012,'e','r','r','o','r','C','o','u','n','t','e','r','+','+',';',012,'}',012,'}',012,'i','f','(','e','r','r','o','r','C','o','u','n','t','e','r',' ','=','=','=',' ','0',')','{',012,'s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','d','a','y','t','o','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','t','o','.','v','a','l','u','e',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','F','r','o','m',',',' ','w','e','e','k','d','a','y','T','o',',',' ','w','e','e','k','e','n','d','F','r','o','m',',',' ','w','e','e','k','e','n','d','T','o',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','s','c','h','e','d','u','l','e',047,',',' ','{',012,'w','e','e','k','d','a','y','_','f','r','o','m',':',' ','w','e','e','k','d','a','y','F','r','o','m',',',012,'w','e','e','k','d','a','y','_','t','o',':',' ','w','e','e','k','d','a','y','T','o',',',012,'w','e','e','k','e','n','d','_','f','r','o','m',':',' ','w','e','e','k','e','n','d','F','r','o','m',',',012,'w','e','e','k','e','n','d','_','t','o',':',' ','w','e','e','k','e','n','d','T','o',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','s','c','h','e','d','u','l','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,'<','/','s','c','r','i','p','t','>',012,'<','/','b','o','d','y','>',012,012,'<','/','h','t','m','l','>',012,}; +static const char bin2c_html_piece_0_tmp[783] = {'<','!','D','O','C','T','Y','P','E',' ','h','t','m','l','>',012,'<','h','t','m','l',' ','l','a','n','g','=','"','e','n','"','>',012,'<','h','e','a','d','>',012,'<','m','e','t','a',' ','c','h','a','r','s','e','t','=','"','U','T','F','-','8','"',' ','/','>',012,'<','l','i','n','k',' ','r','e','l','=','"','i','c','o','n','"',' ','t','y','p','e','=','"','i','m','a','g','e','/','s','v','g','+','x','m','l','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','t','C','G','f','v','g','7','x','/','c','l','e','v','e','r','p','e','t','-','l','o','g','o','.','p','n','g','"',' ','/','>',012,'<','m','e','t','a',' ','n','a','m','e','=','"','v','i','e','w','p','o','r','t','"',' ','c','o','n','t','e','n','t','=','"','w','i','d','t','h','=','d','e','v','i','c','e','-','w','i','d','t','h',',',' ','i','n','i','t','i','a','l','-','s','c','a','l','e','=','1','.','0','"',' ','/','>',012,'<','t','i','t','l','e','>','C','l','e','v','e','r',' ','P','e','t','<','/','t','i','t','l','e','>',012,'<','!','-','-',' ','<','s','c','r','i','p','t',' ','t','y','p','e','=','"','m','o','d','u','l','e','"',' ','c','r','o','s','s','o','r','i','g','i','n',' ','s','r','c','=','"','/','a','s','s','e','t','s','/','i','n','d','e','x','.','4','2','f','e','4','9','3','7','.','j','s','"','>','<','/','s','c','r','i','p','t','>',' ','-','-','>',012,'<','s','c','r','i','p','t','>',012,'c','o','n','s','t',' ','s','=','f','u','n','c','t','i','o','n','(',')','{','c','o','n','s','t',' ','t','=','d','o','c','u','m','e','n','t','.','c','r','e','a','t','e','E','l','e','m','e','n','t','(','"','l','i','n','k','"',')','.','r','e','l','L','i','s','t',';','i','f','(','t','&','&','t','.','s','u','p','p','o','r','t','s','&','&','t','.','s','u','p','p','o','r','t','s','(','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',')',')','r','e','t','u','r','n',';','f','o','r','(','c','o','n','s','t',' ','e',' ','o','f',' ','d','o','c','u','m','e','n','t','.','q','u','e','r','y','S','e','l','e','c','t','o','r','A','l','l','(',047,'l','i','n','k','[','r','e','l','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',']',047,')',')','n','(','e',')',';','n','e','w',' ','M','u','t','a','t','i','o','n','O','b','s','e','r','v','e','r','(','e','=','>','{','f','o','r','(','c','o','n','s','t',' ','r',' ','o','f',' ','e',')','i','f','(','r','.','t','y','p','e','=','=','=','"','c','h','i','l','d','L','i','s','t','"',')','f','o','r','(','c','o','n','s','t',' ','o',' ','o','f',' ','r','.','a','d','d','e','d','N','o','d','e','s',')','o','.','t','a','g','N','a','m','e','=','=','=','"','L','I','N','K','"','&','&','o','.','r','e','l','=','=','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"','&','&','n','(','o',')','}',')','.','o','b','s','e','r','v','e','(','d','o','c','u','m','e','n','t',',','{','c','h','i','l','d','L','i','s','t',':','!','0',',','s','u','b','t','r','e','e',':','!','0','}',')',';','f','u','n','c','t','i','o','n',' ','i','(','e',')','{','c','o','n','s','t',' ','r','=','{','}',';','r','e','t','u','r','n',' ','e','.','i','n','t','e','g','r','i','t','y','&',}; +static const char bin2c_html_piece_1_tmp[783] = {'&','(','r','.','i','n','t','e','g','r','i','t','y','=','e','.','i','n','t','e','g','r','i','t','y',')',',','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y','&','&','(','r','.','r','e','f','e','r','r','e','r','P','o','l','i','c','y','=','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y',')',',','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','u','s','e','-','c','r','e','d','e','n','t','i','a','l','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','i','n','c','l','u','d','e','"',':','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','a','n','o','n','y','m','o','u','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','o','m','i','t','"',':','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','s','a','m','e','-','o','r','i','g','i','n','"',',','r','}','f','u','n','c','t','i','o','n',' ','n','(','e',')','{','i','f','(','e','.','e','p',')','r','e','t','u','r','n',';','e','.','e','p','=','!','0',';','c','o','n','s','t',' ','r','=','i','(','e',')',';','f','e','t','c','h','(','e','.','h','r','e','f',',','r',')','}','}',';','s','(',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s','(',')',' ','{',' ',012,'v','a','r',' ','x','h','t','t','p',' ','=',' ','n','e','w',' ','X','M','L','H','t','t','p','R','e','q','u','e','s','t','(',')',';',012,'v','a','r',' ','s','t','a','t','u','s','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"',')',';',' ',' ','/','/',' ','h','u','b',' ','s','t','a','t','e',' ','a','l','s','o',' ','h','e','r','e','?','?',012,'v','a','r',' ','t','i','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',')',';',012,'v','a','r',' ','k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"',')',';',012,'v','a','r',' ','t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','t','h','e','-','t','i','m','e','z','o','n','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,'v','a','r',' ','d','s','t','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',')',';',' ','/','/',' ','b','u','t','t','o','n','.',' ','n','e','w',' ',' ',';',' ','a','r','i','a','-','c','h','e','c','k','e',}; +static const char bin2c_html_piece_2_tmp[783] = {'d',':',' ','"','t','r','u','e','"',' ','o','r',' ','"','f','a','l','s','e','"',012,'v','a','r',' ','m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',')',';',' ',' ','/','/',' ','t','y','p','e',':',' ','r','a','d','i','o',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','1',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',')',';',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','2',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',')',';',012,012,'x','h','t','t','p','.','o','p','e','n','(','"','G','E','T','"',',',' ','"','/','l','o','c','a','l','-','a','p','i','"',',',' ','t','r','u','e',')',';',012,'x','h','t','t','p','.','s','e','n','d','(',')',';',012,'x','h','t','t','p','.','o','n','l','o','a','d',' ','=',' ','f','u','n','c','t','i','o','n',' ','(',')',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'D','O','N','E',047,',',' ','x','h','t','t','p','.','r','e','a','d','y','S','t','a','t','e',')',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'v','a','r',' ','d','a','t','a',' ','=',' ','J','S','O','N','.','p','a','r','s','e','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'s','t','a','t','u','s','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','s','t','a','t','u','s',' ','+',' ','"','<','b','r','>','"',' ','+',' ','d','a','t','a','.','h','u','b','_','s','t','a','t','e',';',012,'t','i','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e',';',012,'k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','k','i','b','b','l','e','s','_','e','a','t','e','n','_','t','o','d','a','y',';',012,'t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e','z','o','n','e',';',012,012,'/','/',' ','i','f',' ','h','i','d','d','e','n',' ','(','n','o','t',' ','c','u','r','r','e','n','t','l','y',' ','e','d','i','t','i','n','g','!',')','!',012,'/','/',' ','i','f',' ','n','o','t',' ','h',}; +static const char bin2c_html_piece_3_tmp[783] = {'i','d','d','e','n',',',' ','s','h','o','u','l','d',' ','n','o','t',' ','o','v','e','r','w','r','i','t','e',' ','v','a','l','u','e',' ','b','e','i','n','g',' ','e','d','i','t','e','d',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')',012,'{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','t','o',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','t','o',';',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','0',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','1',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','1','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','1',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','2',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','2','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','2',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'t','o','g','g','l','e','C','l',}; +static const char bin2c_html_piece_4_tmp[783] = {'a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',' ',' ',' ',012,'}',012,'}',012,012,'i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',')',';',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','1',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','0',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','1','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','0',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','1',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','0','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,012,'m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','m','a','x','_','k','i','b','b','l','e','s',';',012,'f','o','r','(','l','e','t',' ','i','=','0',';',' ','i',' ','<',' ','1','2',';',' ','i','+','+',')',' ',' ',' ','/','/',' ','T','O','D','O',' ','I','S',' ','T','H','I','S',' ','R','I','G','H','T',' ','N','U','M',' ','G','A','M','E','S',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','g','a','m','e','-','s','t','a','t','u','s','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'v','a','r',' ','g','a','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','g','a','m','e','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','p','l','a','y','i','n','g',')','=','=','i',')',' ',' ','/','/',' ','p','l','a','y','i','n','g',' ','s','a','m','e',' ','g','a','m','e',' ','o','v','e','r','r','i','d','e','s',' ','t','h','e',' ','e','l','e','m','e','n','t',' ','i','f',' ','a',}; +static const char bin2c_html_piece_5_tmp[783] = {'l','s','o',' ','q','u','e','u','e','d',' ','s','a','m','e',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','p','l','a','y','i','n','g',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','p','l','a','y','i','n','g','"',';',012,'}',012,'e','l','s','e',012,'{',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','q','u','e','u','e','d',')','=','=','i',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','q','u','e','u','e','d',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','q','u','e','u','e','d','"',';',012,'}',012,'e','l','s','e',012,'{',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','"',';',012,'}',012,'}',012,'}',012,'}',';',012,'}',012,012,'s','e','t','I','n','t','e','r','v','a','l','(','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s',',',' ','2','0','0','0',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','l','i','n','k',' ','r','e','l','=','"','s','t','y','l','e','s','h','e','e','t','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','d','r','i','v','e','.','g','o','o','g','l','e','.','c','o','m','/','u','c','?','e','x','p','o','r','t','=','d','o','w','n','l','o','a','d','&','i','d','=','1','a','d','S','M','J','J','C','F','e','d','m','6','n','b','l','1','T','M','n','R','c','x','u','L','R','Q','K','9','f','Y','F','b','"','>',012,'<','/','h','e','a','d','>',012,'<','b','o','d','y',' ','c','l','a','s','s','=','"','p','a','g','e','-','b','g','"','>',012,'<','n','a','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','s','t','i','c','k','y',' ','t','o','p','-','0',' ','z','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','b','e','t','w','e','e','n',' ','h','-','1','6','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','m','g',' ','s','r','c','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','1','t','F','X','G','N','V','M','/','l','o','g','o','-','d','8','e','b','c','7','a','d','.','p','n','g','"',' ','c','l','a','s','s','=','"','h','-','1','0','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','s','m',':','m','l','-','6',' ','s','m',':','f','l','e','x',' ','s','m',':','s','p','a','c','e','-','x','-','8','"','>',012,'<','a',' ',}; +static const char bin2c_html_piece_6_tmp[783] = {'h','r','e','f','=','"','#','"',' ','c','l','a','s','s','=','"','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','i','n','l','i','n','e','-','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','p','x','-','1',' ','p','t','-','1',' ','b','o','r','d','e','r','-','b','-','2',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m','"','>',' ','D','a','s','h','b','o','a','r','d',' ','<','/','a','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','n','a','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','g','r','i','d',' ','g','r','i','d','-','c','o','l','s','-','1',' ','g','a','p','-','4',' ','s','m',':','g','r','i','d','-','c','o','l','s','-','2',' ','m','b','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','y','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','4',' ','w','-','1','4',' ','m','d',':','h','-','2','0',' ','m','d',':','w','-','2','0',' ','m','x','-','a','u','t','o',' ','t','e','x','t','-','g','r','e','e','n','-','4','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','5','.','6','3','6',' ','1','8','.','3','6','4','a','9',' ','9',' ','0',' ','0','1','0','-','1','2','.','7','2','8','m','1','2','.','7','2','8',' ','0','a','9',' ','9',' ','0',' ','0','1','0',' ','1','2','.','7','2','8','m','-','9','.','9','-','2','.','8','2','9','a','5',' ','5',' ','0',' ','0','1','0','-','7','.','0','7','m','7','.','0','7','2',' ','0','a','5',' ','5',' ','0',' ','0','1','0',' ','7','.','0','7','M','1','3',' ','1','2','a','1',' ','1',' ','0',' ','1','1','-','2',' ','0',' ','1',' ','1',' ','0',' ','0','1','2',' ','0','z','"',' ','/','>',012,'<','/','s','v','g',}; +static const char bin2c_html_piece_7_tmp[783] = {'>',012,'<','p',' ','c','l','a','s','s','=','"',' ','m','d',':','t','e','x','t','-','2','x','l','"',' ','i','d','=','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"','>',012,'Y','o','u',' ','h','u','b',' ','s','t','a','t','u','s',' ','i','s',' ','a','c','t','i','v','e',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','p',' ','c','l','a','s','s','=','"','t','e','x','t','-','4','x','l',' ','m','d',':','t','e','x','t','-','7','x','l',' ','f','o','n','t','-','b','o','l','d','"',' ','i','d','=','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"','>','3','0','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','t','-','2',' ','m','d',':','t','e','x','t','-','2','x','l','"','>',012,'K','i','b','b','l','e','s',' ','e','a','t','e','n',' ','t','o','d','a','y',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','D','a','t','e',' ','a','n','d',' ','T','i','m','e',' ','s','e','t','t','i','n','g','s','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','D','a','t','e',' ','a','n','d',' ','T','i','m','e','<','/','p','>',012,'<','s','p','a','n',' ','i','d','=','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',' ','c','l','a','s','s','=','"','t','e','x','t','-','g','r',}; +static const char bin2c_html_piece_8_tmp[783] = {'a','y','-','5','0','0','"','>','W','e','d',' ','M','a','r',' ','2','3',' ','2','0','2','2',' ','2','3',':','4','0',':','1','1','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','A','p','p','l','y',' ','D','a','y','l','i','g','h','t',' ','S','a','v','i','n','g','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','t','r','u','e',')','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',' ','t','y','p','e','=','"','b','u','t','t','o','n','"',' ','c','l','a','s','s','=','"','b','g','-','g','r','a','y','-','2','0','0',' ','r','e','l','a','t','i','v','e',' ','i','n','l','i','n','e','-','f','l','e','x',' ','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','h','-','6',' ','w','-','1','1',' ','b','o','r','d','e','r','-','2',' ','b','o','r','d','e','r','-','t','r','a','n','s','p','a','r','e','n','t',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','c','u','r','s','o','r','-','p','o','i','n','t','e','r',' ','t','r','a','n','s','i','t','i','o','n','-','c','o','l','o','r','s',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0',' ','f','o','c','u','s',':','o','u','t','l','i','n','e','-','n','o','n','e',' ','f','o','c','u','s',':','r','i','n','g','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','o','f','f','s','e','t','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0','"',' ','r','o','l','e','=','"','s','w','i','t','c','h','"',' ','a','r','i','a','-','c','h','e','c','k','e','d','=','"','f','a','l','s','e','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','s','r','-','o','n','l','y','"','>','U','s','e',' ','s','e','t','t','i','n','g','<','/','s','p','a','n','>',012,'<','s','p','a','n',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"',' ','c','l','a','s','s','=','"','t','r','a','n','s','l','a','t','e','-','x','-','0',' ','p','o','i','n','t','e','r','-','e','v','e','n','t','s','-','n','o','n','e',' ','i','n','l','i','n','e','-','b','l','o','c','k',' ','h','-','5',' ','w','-','5',' ',}; +static const char bin2c_html_piece_9_tmp[783] = {'r','o','u','n','d','e','d','-','f','u','l','l',' ','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','t','r','a','n','s','f','o','r','m',' ','r','i','n','g','-','0',' ','t','r','a','n','s','i','t','i','o','n',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0','"','>','<','/','s','p','a','n','>',012,'<','/','b','u','t','t','o','n','>',012,'<','i','n','p','u','t',' ','n','a','m','e','=','"','d','a','y','l','i','g','h','t','s','a','v','i','n','g','s','"',' ','t','y','p','e','=','"','h','i','d','d','e','n','"',' ','v','a','l','u','e','=','"','0','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','T','i','m','e','z','o','n','e','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','t','h','e','-','t','i','m','e','z','o','n','e','"','>','A','m','e','r','i','c','a','/','L','o','s',' ','A','n','g','e','l','e','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r',}; +static const char bin2c_html_piece_10_tmp[783] = {'d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','a','r','o','u','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',' ','c','h','e','c','k','e','d',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','v','a','l','u','e','=','"','1','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','1',')','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','o','n',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','0',')','"',' ','v','a','l','u','e','=','"','0','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','m','s','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','O','f','f','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',' ','v','a','l','u','e','=',}; +static const char bin2c_html_piece_11_tmp[783] = {'"','2','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','2',')','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','c','h','e','d','u','l','e','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4',' ','h','i','d','d','e','n','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','r','o','p','t','i','o','n','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','D','a','y','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,}; +static const char bin2c_html_piece_12_tmp[783] = {'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','t','o','"',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','E','n','d','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ',}; +static const char bin2c_html_piece_13_tmp[783] = {'c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','t','o','"',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','t','H','u','b',}; +static const char bin2c_html_piece_14_tmp[783] = {'M','o','d','e','S','c','h','e','d','u','l','e','(',')','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','m','t','-','3',' ','p','y','-','2',' ','r','o','u','n','d','e','d',' ','s','h','a','d','o','w',' ','b','g','-','g','r','e','e','n','-','5','0','0',' ','t','e','x','t','-','w','h','i','t','e',' ','t','e','x','t','-','s','m',' ','m','d',':','t','e','x','t','-','x','l','"','>','S','a','v','e','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','K','i','b','b','l','e','s',' ','s','e','t','t','i','n','g','s',' ','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','M','a','x',' ','K','i','b','b','l','e','s',' ','P','e','r',' ','D','a','y','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"','>','4','0','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e',}; +static const char bin2c_html_piece_15_tmp[783] = {'n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','K','i','b','b','l','e','s',' ','D','e','t','e','c','t',' ','T','h','r','e','s','h','o','l','d','<','/','p','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','e','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(',047,'4','0',047,')','"',' ',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','h','e','c','k','e','d',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','e','m','a','i','l','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','4','0',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','6','0',')','"',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x',}; +static const char bin2c_html_piece_16_tmp[783] = {'t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','6','0','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',' ',' ',' ',' ',' ',' ',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','d',':','p','y','-','5','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','y','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','S','e','l','e','c','t',' ','G','a','m','e','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','p','-','2','"','>',012,'<','u','l',' ','c','l','a','s','s','=','"','d','i','v','i','d','e','-','y','"','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ',}; +static const char bin2c_html_piece_17_tmp[783] = {'7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','a','t','i','n','g',' ','t','h','e',' ','f','o','o','d','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','x','p','l','o','r','i','n','g',' ','t','h','e',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e',}; +static const char bin2c_html_piece_18_tmp[783] = {'x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'2',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','n','g','a','g','i','n','g',' ','C','o','n','s','i','s','t','e','n','t','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','2','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'3',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6',}; +static const char bin2c_html_piece_19_tmp[783] = {'6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','A','v','o','i','d','i','n','g',' ','U','n','l','i','t',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','3','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'4',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','4','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'5',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s',}; +static const char bin2c_html_piece_20_tmp[783] = {'=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','s','t','e','r','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','5','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'6',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<',}; +static const char bin2c_html_piece_21_tmp[783] = {'d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','R','e','s','p','o','n','d','i','n','g',' ','Q','u','i','c','k','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','6','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'7',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','B','r','i','g','h','t','n','e','s','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','7','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'8',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n',}; +static const char bin2c_html_piece_22_tmp[783] = {'-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','D','o','u','b','l','e',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','8','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'9',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r',}; +static const char bin2c_html_piece_23_tmp[783] = {'n','i','n','g',' ','L','o','n','g','e','r',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','9','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','T','w','o',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l',}; +static const char bin2c_html_piece_24_tmp[783] = {'o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','M','o','r','e',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','/','u','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','T','i','m','e','z','o','n','e',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','e','x','t','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','r',}; +static const char bin2c_html_piece_25_tmp[783] = {'o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r','-','0',' ','b','g','-','g','r','a','y','-','1','0','0',' ','p','x','-','4',' ','p','y','-','2','.','5',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','p','l','a','c','e','h','o','l','d','e','r','-','g','r','a','y','-','5','0','0',' ','f','o','c','u','s',':','r','i','n','g','-','0',' ','s','m',':','t','e','x','t','-','s','m','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','S','e','a','r','c','h',' ','T','i','m','e','z','o','n','e','"',' ','r','o','l','e','=','"','c','o','m','b','o','b','o','x','"',' ','a','r','i','a','-','e','x','p','a','n','d','e','d','=','"','f','a','l','s','e','"',' ','a','r','i','a','-','c','o','n','t','r','o','l','s','=','"','o','p','t','i','o','n','s','"','>',012,'<','!','-','-',' ','R','e','s','u','l','t','s',',',' ','s','h','o','w','/','h','i','d','e',' ','b','a','s','e','d',' ','o','n',' ','c','o','m','m','a','n','d',' ','p','a','l','e','t','t','e',' ','s','t','a','t','e','.',' ','-','-','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','1','2',':','0','0',')',' ','I','n','t','e','r','n','a','t','i','o','n','a','l',' ','D','a','t','e',' ','L','i','n','e',' ','W','e','s','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','1',':','0','0',')',' ','M','i','d','w','a','y',' ','I','s','l','a','n','d',',',' ','S','a','m','o','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i',}; +static const char bin2c_html_piece_26_tmp[783] = {'m','e','Z','o','n','e','(',047,'-','1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','0',':','0','0',')',' ','H','a','w','a','i','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','9',':','0','0',')',' ','A','l','a','s','k','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','8',':','0','0',')',' ','P','a','c','i','f','i','c',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','7',':','0','0',')',' ','M','o','u','n','t','a','i','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G',}; +static const char bin2c_html_piece_27_tmp[783] = {'M','T','-','0','6',':','0','0',')',' ','C','e','n','t','r','a','l',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','5',':','0','0',')',' ','E','a','s','t','e','r','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','4',':','0','0',')',' ','A','t','l','a','n','t','i','c',' ','T','i','m','e',' ','(','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','3','0',')',' ','N','e','w','f','o','u','n','d','l','a','n','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','0','0',')',' ','B','u','e','n','o','s',' ','A','i','r','e','s',',',' ','G','e','o','r','g','e','t','o','w','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e',}; +static const char bin2c_html_piece_28_tmp[783] = {'f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','2',':','0','0',')',' ','M','i','d','-','A','t','l','a','n','t','i','c','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','1',':','0','0',')',' ','C','a','p','e',' ','V','e','r','d','e',' ','I','s','.','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','+','0','0',':','0','0',')',' ','G','r','e','e','n','w','i','c','h',' ','M','e','a','n',' ','T','i','m','e',' ',':',' ','D','u','b','l','i','n',',',' ','E','d','i','n','b','u','r','g','h',',',' ','L','i','s','b','o','n',',',' ','L','o','n','d','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','1',':','0','0',')',' ','A','m','s','t','e','r','d','a','m',',',' ','B','e','r','l','i','n',',',' ','B','e','r','n',',',' ','R','o','m','e',',',' ','S','t','o','c','k','h','o','l','m',',',' ','V','i','e','n','n','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ',}; +static const char bin2c_html_piece_29_tmp[783] = {'r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','2',':','0','0',')',' ','A','t','h','e','n','s',',',' ','B','u','c','h','a','r','e','s','t',',',' ','I','s','t','a','n','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','0','0',')',' ','M','o','s','c','o','w',',',' ','S','t','.',' ','P','e','t','e','r','s','b','u','r','g',',',' ','V','o','l','g','o','g','r','a','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','3','0',')',' ','T','e','h','r','a','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','0','0',')',' ','A','b','u',' ','D','h','a','b','i',',',' ','M','u','s','c','a','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','3','0',')',' ','K','a','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s',}; +static const char bin2c_html_piece_30_tmp[783] = {'o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','0','0',')',' ','I','s','l','a','m','a','b','a','d',',',' ','K','a','r','a','c','h','i',',',' ','T','a','s','h','k','e','n','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','3','0',')',' ','C','h','e','n','n','a','i',',',' ','K','o','l','k','a','t','a',',',' ','M','u','m','b','a','i',',',' ','N','e','w',' ','D','e','l','h','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','7','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','4','5',')',' ','K','a','t','h','m','a','n','d','u','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','0','0',')',' ','A','l','m','a','t','y',',',' ','N','o','v','o','s','i','b','i','r','s','k','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1',}; +static const char bin2c_html_piece_31_tmp[783] = {'"','>','(','G','M','T','+','0','6',':','3','0',')',' ','Y','a','n','g','o','n',' ','(','R','a','n','g','o','o','n',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','7',':','0','0',')',' ','B','a','n','g','k','o','k',',',' ','H','a','n','o','i',',',' ','J','a','k','a','r','t','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','8',':','0','0',')',' ','B','e','i','j','i','n','g',',',' ','C','h','o','n','g','q','i','n','g',',',' ','H','o','n','g',' ','K','o','n','g',',',' ','U','r','u','m','q','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','0','0',')',' ','O','s','a','k','a',',',' ','S','a','p','p','o','r','o',',',' ','T','o','k','y','o','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','3','0',')',' ','A','d','e','l','a','i','d','e','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',}; +static const char bin2c_html_piece_32_tmp[783] = {' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','0',':','0','0',')',' ','C','a','n','b','e','r','r','a',',',' ','M','e','l','b','o','u','r','n','e',',',' ','S','y','d','n','e','y','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','1',':','0','0',')',' ','M','a','g','a','d','a','n',',',' ','S','o','l','o','m','o','n',' ','I','s','.',',',' ','N','e','w',' ','C','a','l','e','d','o','n','i','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','2',':','0','0',')',' ','A','u','c','k','l','a','n','d',',',' ','W','e','l','l','i','n','g','t','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','3',':','0','0',')',' ','N','u','k','u',047,'a','l','o','f','a','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l',}; +static const char bin2c_html_piece_33_tmp[783] = {'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','M','a','x',' ','K','i','b','b','l','e','s',' ','p','e','r',' ','D','a','y',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','h','3',' ','c','l','a','s','s','=','"','t','e','x','t','-','x','l',' ','b','o','r','d','e','r','-','b',' ','b','o','r','d','e','r','-','g','r','a','y','-','1','0','0','"','>','S','e','l','e','c','t',' ','o','n','e',' ','b','e','l','o','w','<','/','h','3','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i',}; +static const char bin2c_html_piece_34_tmp[783] = {'n','d','e','x','=','"','-','1','"','>','2','5','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'5','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','2','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','5','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'1','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','3','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','1','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','4','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'4','0','0',' ',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','5','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','4','0','0','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','s','c','r','i','p','t',' ','s',}; +static const char bin2c_html_piece_35_tmp[783] = {'r','c','=','"','h','t','t','p','s',':','/','/','u','n','p','k','g','.','c','o','m','/','a','x','i','o','s','/','d','i','s','t','/','a','x','i','o','s','.','m','i','n','.','j','s','"','>','<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','t','o','g','g','l','e','C','l','a','s','s','(','e','l','e','m','e','n','t','I','d',',',' ','s','t','r','i','n','g','C','l','a','s','s',')','{',012,'v','a','r',' ','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','e','l','e','m','e','n','t','I','d',')',';',012,'e','l','e','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(','s','t','r','i','n','g','C','l','a','s','s',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','r','a','d','i','o','B','u','t','t','o','n','(','b','t','n','C','l','a','s','s',',',' ','b','t','n','R','a','d','i','o','C','l','a','s','s',',',' ','i','n','p','u','t','I','d',',',' ','a','p','i','c','a','l','l',')','{',012,'v','a','r',' ','b','t','n',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','C','l','a','s','s',')',';',012,'v','a','r',' ','b','t','n','r','a','d','i','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','R','a','d','i','o','C','l','a','s','s',')',';',012,'v','a','r',' ','i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','i','n','p','u','t','I','d',')',';',012,'/','/',' ','t','o','g','g','l','e',' ','t','h','e',' ','s','w','i','t','c','h',' ','a','n','d',' ','v','a','l','u','e',' ','o','f',' ','t','h','e',' ','i','n','p','u','t',' ','t','o',' ','1',' ','o','r',' ','0',' ',012,'i','f','(','b','t','n','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',')','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,',',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','1',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','1',')',';',012,'}',012,'}','e','l','s','e','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,',',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,}; +static const char bin2c_html_piece_36_tmp[783] = {',',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','0',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','0',')',';',012,'}',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(','t','i','m','e','z','o','n','e',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','t','i','m','e','z','o','n','e',047,',',' ','{',012,'t','i','m','e','z','o','n','e','_','o','f','f','s','e','t',':',' ','p','a','r','s','e','F','l','o','a','t','(','t','i','m','e','z','o','n','e',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'T','i','m','e','z','o','n','e',' ','h','a','s',' ','b','e','e','n',' ','u','p','d','a','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','G','a','m','e','(','g','a','m','e','I','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','g','a','m','e',047,',',' ','{',012,'g','a','m','e',':','p','a','r','s','e','I','n','t','(','g','a','m','e','I','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','a',' ','g','a','m','e',' ','h','a','s',' ','b','e','e','n',' ','s','e','l','e','c','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(','i','n','t','I','n','p','u','t',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','m','a','x','_','k','i','b','b','l','e','s',047,',',' ','{',012,'m','a','x','_','k','i','b','b','l','e','s',':','p','a','r','s','e','I','n','t','(','i','n','t','I','n','p','u','t',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',}; +static const char bin2c_html_piece_37_tmp[783] = {' ','k','i','b','b','l','e','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','t','h','r','e','s','h','o','l','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','k','i','b','b','l','e','s','_','t','h','r','e','s','h',047,',',' ','{',012,'k','i','b','b','l','e','s','_','t','h','r','e','s','h',':','p','a','r','s','e','I','n','t','(','t','h','r','e','s','h','o','l','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','t','h','r','e','s','h','o','l','d',' ',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','o','n','O','r','o','f','f',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','d','s','t',047,',',' ','{',012,'d','s','t','_','o','n',':','p','a','r','s','e','I','n','t','(','o','n','O','r','o','f','f',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','d','a','y','l','i','g','h','t',' ','s','a','v','i','n','g','s',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','h','u','b','_','m','o','d','e',047,',',' ','{',012,'h','u','b','_','m','o','d','e',':','p','a','r','s','e','I','n','t','(','h','u','b','s','t','a','t','u','s',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','h','u','b',' ','m','o','d','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c',}; +static const char bin2c_html_piece_38_tmp[783] = {'a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','(','h','u','b','s','t','a','t','u','s',')','{',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','1',' ','|','|',' ','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','0',')','{',012,'i','f','(','!','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'}',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')',';',012,'}','e','l','s','e','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','2',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','{',012,'v','a','r',' ','e','r','r','o','r','C','o','u','n','t','e','r',' ','=',' ','0',';',012,'v','a','r',' ','w','e','e','k','d','a','y','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','d','a','y','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')',';',012,'/','/',' ','v','a','l','i','d','a','t','e',' ','i','n','p','u','t','s',012,'v','a','r',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',' ','=',' ','[','w','e','e','k','d','a','y','f','r','o','m',',',' ','w','e','e','k','d','a','y','t','o',',',' ','w','e','e','k','e','n','d','f','r','o','m',',',' ','w','e','e','k','e','n','d','t','o',']',';',012,'f','o','r','(','l','e','t',' ','s',' ','=',' ','0',';',' ','s',' ','<',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',}; +static const char bin2c_html_piece_39_tmp[789] = {'.','l','e','n','g','t','h',';',' ','s','+','+',')','{',012,'/','/','r','e','s','e','t',' ','e','r','r','o','r',' ','m','e','s','s','a','g','e',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','a','d','d','(',047,'h','i','d','d','e','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','"','"',' ','|','|',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','n','u','l','l',')','{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(',047,'h','i','d','d','e','n',047,')',';',012,'e','r','r','o','r','C','o','u','n','t','e','r','+','+',';',012,'}',012,'}',012,'i','f','(','e','r','r','o','r','C','o','u','n','t','e','r',' ','=','=','=',' ','0',')','{',012,'s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','d','a','y','t','o','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','t','o','.','v','a','l','u','e',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','F','r','o','m',',',' ','w','e','e','k','d','a','y','T','o',',',' ','w','e','e','k','e','n','d','F','r','o','m',',',' ','w','e','e','k','e','n','d','T','o',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','s','c','h','e','d','u','l','e',047,',',' ','{',012,'w','e','e','k','d','a','y','_','f','r','o','m',':',' ','w','e','e','k','d','a','y','F','r','o','m',',',012,'w','e','e','k','d','a','y','_','t','o',':',' ','w','e','e','k','d','a','y','T','o',',',012,'w','e','e','k','e','n','d','_','f','r','o','m',':',' ','w','e','e','k','e','n','d','F','r','o','m',',',012,'w','e','e','k','e','n','d','_','t','o',':',' ','w','e','e','k','e','n','d','T','o',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','s','c','h','e','d','u','l','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,'<','/','s','c','r','i','p','t','>',012,'<','/','b','o','d','y','>',012,012,'<','/','h','t','m','l','>',012,}; #endif \ No newline at end of file From fc525e192f75baad61243c2c4f7885021cc9ee61 Mon Sep 17 00:00:00 2001 From: asingularity Date: Mon, 3 Oct 2022 18:50:23 -0700 Subject: [PATCH 2/5] theoretically this is ready to test --- examples/main/particle-test-local.ino | 2 +- library.properties | 4 ++-- src/config-manager.cpp | 11 +++++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/examples/main/particle-test-local.ino b/examples/main/particle-test-local.ino index bd3e7f7..6cac3f4 100644 --- a/examples/main/particle-test-local.ino +++ b/examples/main/particle-test-local.ino @@ -73,6 +73,6 @@ void loop() { lastmemcheck = millis(); - Serial.printlnf("\tMILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); + Serial.printlnf("\hackerpet_plus_dev 0.1.111; MILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); } } diff --git a/library.properties b/library.properties index 7f276f9..105dbde 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=hackerpet_plus_dev -version=0.1.73 +version=0.1.111 license=AGPL author=Csaba Petre maintainer=Csaba Petre @@ -8,4 +8,4 @@ category=Other url=http://hackerpet.com repository=https://github.com/CleverPet/hackerpet_plus/ architectures=particle-photon -dependencies.hackerpet=0.2.6 \ No newline at end of file +dependencies.hackerpet=0.2.7 \ No newline at end of file diff --git a/src/config-manager.cpp b/src/config-manager.cpp index 97f7da9..9085311 100644 --- a/src/config-manager.cpp +++ b/src/config-manager.cpp @@ -651,6 +651,7 @@ bool ConfigManager::_process_api_get_req(String req_str) "\"hub_state\":\"" + hub_state_str + "\"," "\"time\":\"" + Time.timeStr() + "\"," "\"max_kibbles\":\"" + int_to_string(_kibbles_limit) + "\"," + "\"kibthresh\":\"" + int_to_string(_foodtreat_detect_thresh) + "\"," "\"kibbles_eaten_today\":\"" + int_to_string(_kibbles_eaten_today) + "\"" "}"; _webclient.println(return_str); @@ -838,10 +839,20 @@ bool ConfigManager::_process_set_kibbles_thresh_req(String req_str) int thresh = thresh_str.toInt(); + Serial.println("New threshold set for kibbles detect:"); + Serial.println(int_to_string(thresh)); + Serial.println(""); + _foodtreat_detect_thresh = thresh; _hub->SetFoodTreatDetectThresh(_foodtreat_detect_thresh); + String return_str = "HTTP/1.1 200 OK\r\nConnection: Closed\r\n\r\n" + "{}"; + Log.info("sending back: string:"); + Log.print(return_str); + _webclient.println(return_str); + return true; } From 81d280abd974e731013cdc07c9e21cd4c711ca9a Mon Sep 17 00:00:00 2001 From: asingularity Date: Mon, 3 Oct 2022 19:08:21 -0700 Subject: [PATCH 3/5] fix webpage, eeprom put --- examples/main/particle-test-local.ino | 2 +- library.properties | 2 +- src/config-manager.cpp | 2 + src/html-manager.h | 84 +++++++++++++-------------- 4 files changed, 46 insertions(+), 44 deletions(-) diff --git a/examples/main/particle-test-local.ino b/examples/main/particle-test-local.ino index 502ac86..0978255 100644 --- a/examples/main/particle-test-local.ino +++ b/examples/main/particle-test-local.ino @@ -73,7 +73,7 @@ void loop() { lastmemcheck = millis(); - Serial.printlnf("\hackerpet_plus_dev 0.1.111; MILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); + Serial.printlnf("\hackerpet_plus_dev 0.1.112; MILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); } } diff --git a/library.properties b/library.properties index 105dbde..37b1b7a 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=hackerpet_plus_dev -version=0.1.111 +version=0.1.112 license=AGPL author=Csaba Petre maintainer=Csaba Petre diff --git a/src/config-manager.cpp b/src/config-manager.cpp index 9085311..3b1208f 100644 --- a/src/config-manager.cpp +++ b/src/config-manager.cpp @@ -847,6 +847,8 @@ bool ConfigManager::_process_set_kibbles_thresh_req(String req_str) _hub->SetFoodTreatDetectThresh(_foodtreat_detect_thresh); + EEPROM.put(_FOODTREAT_THRESH_ADDRESS, _foodtreat_detect_thresh); + String return_str = "HTTP/1.1 200 OK\r\nConnection: Closed\r\n\r\n" "{}"; Log.info("sending back: string:"); diff --git a/src/html-manager.h b/src/html-manager.h index c96d4fc..0d58d1b 100644 --- a/src/html-manager.h +++ b/src/html-manager.h @@ -3,48 +3,48 @@ #include "Particle.h" -const int len_html_piece = 783; -const int len_last_piece = 789; +const int len_html_piece = 794; +const int len_last_piece = 804; -static const char bin2c_html_piece_0_tmp[783] = {'<','!','D','O','C','T','Y','P','E',' ','h','t','m','l','>',012,'<','h','t','m','l',' ','l','a','n','g','=','"','e','n','"','>',012,'<','h','e','a','d','>',012,'<','m','e','t','a',' ','c','h','a','r','s','e','t','=','"','U','T','F','-','8','"',' ','/','>',012,'<','l','i','n','k',' ','r','e','l','=','"','i','c','o','n','"',' ','t','y','p','e','=','"','i','m','a','g','e','/','s','v','g','+','x','m','l','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','t','C','G','f','v','g','7','x','/','c','l','e','v','e','r','p','e','t','-','l','o','g','o','.','p','n','g','"',' ','/','>',012,'<','m','e','t','a',' ','n','a','m','e','=','"','v','i','e','w','p','o','r','t','"',' ','c','o','n','t','e','n','t','=','"','w','i','d','t','h','=','d','e','v','i','c','e','-','w','i','d','t','h',',',' ','i','n','i','t','i','a','l','-','s','c','a','l','e','=','1','.','0','"',' ','/','>',012,'<','t','i','t','l','e','>','C','l','e','v','e','r',' ','P','e','t','<','/','t','i','t','l','e','>',012,'<','!','-','-',' ','<','s','c','r','i','p','t',' ','t','y','p','e','=','"','m','o','d','u','l','e','"',' ','c','r','o','s','s','o','r','i','g','i','n',' ','s','r','c','=','"','/','a','s','s','e','t','s','/','i','n','d','e','x','.','4','2','f','e','4','9','3','7','.','j','s','"','>','<','/','s','c','r','i','p','t','>',' ','-','-','>',012,'<','s','c','r','i','p','t','>',012,'c','o','n','s','t',' ','s','=','f','u','n','c','t','i','o','n','(',')','{','c','o','n','s','t',' ','t','=','d','o','c','u','m','e','n','t','.','c','r','e','a','t','e','E','l','e','m','e','n','t','(','"','l','i','n','k','"',')','.','r','e','l','L','i','s','t',';','i','f','(','t','&','&','t','.','s','u','p','p','o','r','t','s','&','&','t','.','s','u','p','p','o','r','t','s','(','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',')',')','r','e','t','u','r','n',';','f','o','r','(','c','o','n','s','t',' ','e',' ','o','f',' ','d','o','c','u','m','e','n','t','.','q','u','e','r','y','S','e','l','e','c','t','o','r','A','l','l','(',047,'l','i','n','k','[','r','e','l','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',']',047,')',')','n','(','e',')',';','n','e','w',' ','M','u','t','a','t','i','o','n','O','b','s','e','r','v','e','r','(','e','=','>','{','f','o','r','(','c','o','n','s','t',' ','r',' ','o','f',' ','e',')','i','f','(','r','.','t','y','p','e','=','=','=','"','c','h','i','l','d','L','i','s','t','"',')','f','o','r','(','c','o','n','s','t',' ','o',' ','o','f',' ','r','.','a','d','d','e','d','N','o','d','e','s',')','o','.','t','a','g','N','a','m','e','=','=','=','"','L','I','N','K','"','&','&','o','.','r','e','l','=','=','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"','&','&','n','(','o',')','}',')','.','o','b','s','e','r','v','e','(','d','o','c','u','m','e','n','t',',','{','c','h','i','l','d','L','i','s','t',':','!','0',',','s','u','b','t','r','e','e',':','!','0','}',')',';','f','u','n','c','t','i','o','n',' ','i','(','e',')','{','c','o','n','s','t',' ','r','=','{','}',';','r','e','t','u','r','n',' ','e','.','i','n','t','e','g','r','i','t','y','&',}; -static const char bin2c_html_piece_1_tmp[783] = {'&','(','r','.','i','n','t','e','g','r','i','t','y','=','e','.','i','n','t','e','g','r','i','t','y',')',',','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y','&','&','(','r','.','r','e','f','e','r','r','e','r','P','o','l','i','c','y','=','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y',')',',','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','u','s','e','-','c','r','e','d','e','n','t','i','a','l','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','i','n','c','l','u','d','e','"',':','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','a','n','o','n','y','m','o','u','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','o','m','i','t','"',':','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','s','a','m','e','-','o','r','i','g','i','n','"',',','r','}','f','u','n','c','t','i','o','n',' ','n','(','e',')','{','i','f','(','e','.','e','p',')','r','e','t','u','r','n',';','e','.','e','p','=','!','0',';','c','o','n','s','t',' ','r','=','i','(','e',')',';','f','e','t','c','h','(','e','.','h','r','e','f',',','r',')','}','}',';','s','(',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s','(',')',' ','{',' ',012,'v','a','r',' ','x','h','t','t','p',' ','=',' ','n','e','w',' ','X','M','L','H','t','t','p','R','e','q','u','e','s','t','(',')',';',012,'v','a','r',' ','s','t','a','t','u','s','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"',')',';',' ',' ','/','/',' ','h','u','b',' ','s','t','a','t','e',' ','a','l','s','o',' ','h','e','r','e','?','?',012,'v','a','r',' ','t','i','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',')',';',012,'v','a','r',' ','k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"',')',';',012,'v','a','r',' ','t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','t','h','e','-','t','i','m','e','z','o','n','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,'v','a','r',' ','d','s','t','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',')',';',' ','/','/',' ','b','u','t','t','o','n','.',' ','n','e','w',' ',' ',';',' ','a','r','i','a','-','c','h','e','c','k','e',}; -static const char bin2c_html_piece_2_tmp[783] = {'d',':',' ','"','t','r','u','e','"',' ','o','r',' ','"','f','a','l','s','e','"',012,'v','a','r',' ','m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',')',';',' ',' ','/','/',' ','t','y','p','e',':',' ','r','a','d','i','o',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','1',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',')',';',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','2',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',')',';',012,012,'x','h','t','t','p','.','o','p','e','n','(','"','G','E','T','"',',',' ','"','/','l','o','c','a','l','-','a','p','i','"',',',' ','t','r','u','e',')',';',012,'x','h','t','t','p','.','s','e','n','d','(',')',';',012,'x','h','t','t','p','.','o','n','l','o','a','d',' ','=',' ','f','u','n','c','t','i','o','n',' ','(',')',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'D','O','N','E',047,',',' ','x','h','t','t','p','.','r','e','a','d','y','S','t','a','t','e',')',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'v','a','r',' ','d','a','t','a',' ','=',' ','J','S','O','N','.','p','a','r','s','e','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'s','t','a','t','u','s','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','s','t','a','t','u','s',' ','+',' ','"','<','b','r','>','"',' ','+',' ','d','a','t','a','.','h','u','b','_','s','t','a','t','e',';',012,'t','i','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e',';',012,'k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','k','i','b','b','l','e','s','_','e','a','t','e','n','_','t','o','d','a','y',';',012,'t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e','z','o','n','e',';',012,012,'/','/',' ','i','f',' ','h','i','d','d','e','n',' ','(','n','o','t',' ','c','u','r','r','e','n','t','l','y',' ','e','d','i','t','i','n','g','!',')','!',012,'/','/',' ','i','f',' ','n','o','t',' ','h',}; -static const char bin2c_html_piece_3_tmp[783] = {'i','d','d','e','n',',',' ','s','h','o','u','l','d',' ','n','o','t',' ','o','v','e','r','w','r','i','t','e',' ','v','a','l','u','e',' ','b','e','i','n','g',' ','e','d','i','t','e','d',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')',012,'{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','t','o',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','t','o',';',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','0',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','1',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','1','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','1',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','2',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','2','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','2',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'t','o','g','g','l','e','C','l',}; -static const char bin2c_html_piece_4_tmp[783] = {'a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',' ',' ',' ',012,'}',012,'}',012,012,'i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',')',';',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','1',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','0',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','1','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','0',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','1',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','0','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,012,'m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','m','a','x','_','k','i','b','b','l','e','s',';',012,'f','o','r','(','l','e','t',' ','i','=','0',';',' ','i',' ','<',' ','1','2',';',' ','i','+','+',')',' ',' ',' ','/','/',' ','T','O','D','O',' ','I','S',' ','T','H','I','S',' ','R','I','G','H','T',' ','N','U','M',' ','G','A','M','E','S',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','g','a','m','e','-','s','t','a','t','u','s','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'v','a','r',' ','g','a','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','g','a','m','e','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','p','l','a','y','i','n','g',')','=','=','i',')',' ',' ','/','/',' ','p','l','a','y','i','n','g',' ','s','a','m','e',' ','g','a','m','e',' ','o','v','e','r','r','i','d','e','s',' ','t','h','e',' ','e','l','e','m','e','n','t',' ','i','f',' ','a',}; -static const char bin2c_html_piece_5_tmp[783] = {'l','s','o',' ','q','u','e','u','e','d',' ','s','a','m','e',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','p','l','a','y','i','n','g',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','p','l','a','y','i','n','g','"',';',012,'}',012,'e','l','s','e',012,'{',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','q','u','e','u','e','d',')','=','=','i',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','q','u','e','u','e','d',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','q','u','e','u','e','d','"',';',012,'}',012,'e','l','s','e',012,'{',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','"',';',012,'}',012,'}',012,'}',012,'}',';',012,'}',012,012,'s','e','t','I','n','t','e','r','v','a','l','(','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s',',',' ','2','0','0','0',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','l','i','n','k',' ','r','e','l','=','"','s','t','y','l','e','s','h','e','e','t','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','d','r','i','v','e','.','g','o','o','g','l','e','.','c','o','m','/','u','c','?','e','x','p','o','r','t','=','d','o','w','n','l','o','a','d','&','i','d','=','1','a','d','S','M','J','J','C','F','e','d','m','6','n','b','l','1','T','M','n','R','c','x','u','L','R','Q','K','9','f','Y','F','b','"','>',012,'<','/','h','e','a','d','>',012,'<','b','o','d','y',' ','c','l','a','s','s','=','"','p','a','g','e','-','b','g','"','>',012,'<','n','a','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','s','t','i','c','k','y',' ','t','o','p','-','0',' ','z','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','b','e','t','w','e','e','n',' ','h','-','1','6','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','m','g',' ','s','r','c','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','1','t','F','X','G','N','V','M','/','l','o','g','o','-','d','8','e','b','c','7','a','d','.','p','n','g','"',' ','c','l','a','s','s','=','"','h','-','1','0','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','s','m',':','m','l','-','6',' ','s','m',':','f','l','e','x',' ','s','m',':','s','p','a','c','e','-','x','-','8','"','>',012,'<','a',' ',}; -static const char bin2c_html_piece_6_tmp[783] = {'h','r','e','f','=','"','#','"',' ','c','l','a','s','s','=','"','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','i','n','l','i','n','e','-','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','p','x','-','1',' ','p','t','-','1',' ','b','o','r','d','e','r','-','b','-','2',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m','"','>',' ','D','a','s','h','b','o','a','r','d',' ','<','/','a','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','n','a','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','g','r','i','d',' ','g','r','i','d','-','c','o','l','s','-','1',' ','g','a','p','-','4',' ','s','m',':','g','r','i','d','-','c','o','l','s','-','2',' ','m','b','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','y','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','4',' ','w','-','1','4',' ','m','d',':','h','-','2','0',' ','m','d',':','w','-','2','0',' ','m','x','-','a','u','t','o',' ','t','e','x','t','-','g','r','e','e','n','-','4','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','5','.','6','3','6',' ','1','8','.','3','6','4','a','9',' ','9',' ','0',' ','0','1','0','-','1','2','.','7','2','8','m','1','2','.','7','2','8',' ','0','a','9',' ','9',' ','0',' ','0','1','0',' ','1','2','.','7','2','8','m','-','9','.','9','-','2','.','8','2','9','a','5',' ','5',' ','0',' ','0','1','0','-','7','.','0','7','m','7','.','0','7','2',' ','0','a','5',' ','5',' ','0',' ','0','1','0',' ','7','.','0','7','M','1','3',' ','1','2','a','1',' ','1',' ','0',' ','1','1','-','2',' ','0',' ','1',' ','1',' ','0',' ','0','1','2',' ','0','z','"',' ','/','>',012,'<','/','s','v','g',}; -static const char bin2c_html_piece_7_tmp[783] = {'>',012,'<','p',' ','c','l','a','s','s','=','"',' ','m','d',':','t','e','x','t','-','2','x','l','"',' ','i','d','=','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"','>',012,'Y','o','u',' ','h','u','b',' ','s','t','a','t','u','s',' ','i','s',' ','a','c','t','i','v','e',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','p',' ','c','l','a','s','s','=','"','t','e','x','t','-','4','x','l',' ','m','d',':','t','e','x','t','-','7','x','l',' ','f','o','n','t','-','b','o','l','d','"',' ','i','d','=','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"','>','3','0','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','t','-','2',' ','m','d',':','t','e','x','t','-','2','x','l','"','>',012,'K','i','b','b','l','e','s',' ','e','a','t','e','n',' ','t','o','d','a','y',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','D','a','t','e',' ','a','n','d',' ','T','i','m','e',' ','s','e','t','t','i','n','g','s','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','D','a','t','e',' ','a','n','d',' ','T','i','m','e','<','/','p','>',012,'<','s','p','a','n',' ','i','d','=','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',' ','c','l','a','s','s','=','"','t','e','x','t','-','g','r',}; -static const char bin2c_html_piece_8_tmp[783] = {'a','y','-','5','0','0','"','>','W','e','d',' ','M','a','r',' ','2','3',' ','2','0','2','2',' ','2','3',':','4','0',':','1','1','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','A','p','p','l','y',' ','D','a','y','l','i','g','h','t',' ','S','a','v','i','n','g','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','t','r','u','e',')','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',' ','t','y','p','e','=','"','b','u','t','t','o','n','"',' ','c','l','a','s','s','=','"','b','g','-','g','r','a','y','-','2','0','0',' ','r','e','l','a','t','i','v','e',' ','i','n','l','i','n','e','-','f','l','e','x',' ','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','h','-','6',' ','w','-','1','1',' ','b','o','r','d','e','r','-','2',' ','b','o','r','d','e','r','-','t','r','a','n','s','p','a','r','e','n','t',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','c','u','r','s','o','r','-','p','o','i','n','t','e','r',' ','t','r','a','n','s','i','t','i','o','n','-','c','o','l','o','r','s',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0',' ','f','o','c','u','s',':','o','u','t','l','i','n','e','-','n','o','n','e',' ','f','o','c','u','s',':','r','i','n','g','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','o','f','f','s','e','t','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0','"',' ','r','o','l','e','=','"','s','w','i','t','c','h','"',' ','a','r','i','a','-','c','h','e','c','k','e','d','=','"','f','a','l','s','e','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','s','r','-','o','n','l','y','"','>','U','s','e',' ','s','e','t','t','i','n','g','<','/','s','p','a','n','>',012,'<','s','p','a','n',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"',' ','c','l','a','s','s','=','"','t','r','a','n','s','l','a','t','e','-','x','-','0',' ','p','o','i','n','t','e','r','-','e','v','e','n','t','s','-','n','o','n','e',' ','i','n','l','i','n','e','-','b','l','o','c','k',' ','h','-','5',' ','w','-','5',' ',}; -static const char bin2c_html_piece_9_tmp[783] = {'r','o','u','n','d','e','d','-','f','u','l','l',' ','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','t','r','a','n','s','f','o','r','m',' ','r','i','n','g','-','0',' ','t','r','a','n','s','i','t','i','o','n',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0','"','>','<','/','s','p','a','n','>',012,'<','/','b','u','t','t','o','n','>',012,'<','i','n','p','u','t',' ','n','a','m','e','=','"','d','a','y','l','i','g','h','t','s','a','v','i','n','g','s','"',' ','t','y','p','e','=','"','h','i','d','d','e','n','"',' ','v','a','l','u','e','=','"','0','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','T','i','m','e','z','o','n','e','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','t','h','e','-','t','i','m','e','z','o','n','e','"','>','A','m','e','r','i','c','a','/','L','o','s',' ','A','n','g','e','l','e','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r',}; -static const char bin2c_html_piece_10_tmp[783] = {'d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','a','r','o','u','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',' ','c','h','e','c','k','e','d',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','v','a','l','u','e','=','"','1','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','1',')','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','o','n',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','0',')','"',' ','v','a','l','u','e','=','"','0','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','m','s','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','O','f','f','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',' ','v','a','l','u','e','=',}; -static const char bin2c_html_piece_11_tmp[783] = {'"','2','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','2',')','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','c','h','e','d','u','l','e','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4',' ','h','i','d','d','e','n','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','r','o','p','t','i','o','n','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','D','a','y','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,}; -static const char bin2c_html_piece_12_tmp[783] = {'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','t','o','"',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','E','n','d','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ',}; -static const char bin2c_html_piece_13_tmp[783] = {'c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','t','o','"',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','t','H','u','b',}; -static const char bin2c_html_piece_14_tmp[783] = {'M','o','d','e','S','c','h','e','d','u','l','e','(',')','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','m','t','-','3',' ','p','y','-','2',' ','r','o','u','n','d','e','d',' ','s','h','a','d','o','w',' ','b','g','-','g','r','e','e','n','-','5','0','0',' ','t','e','x','t','-','w','h','i','t','e',' ','t','e','x','t','-','s','m',' ','m','d',':','t','e','x','t','-','x','l','"','>','S','a','v','e','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','K','i','b','b','l','e','s',' ','s','e','t','t','i','n','g','s',' ','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','M','a','x',' ','K','i','b','b','l','e','s',' ','P','e','r',' ','D','a','y','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"','>','4','0','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e',}; -static const char bin2c_html_piece_15_tmp[783] = {'n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','K','i','b','b','l','e','s',' ','D','e','t','e','c','t',' ','T','h','r','e','s','h','o','l','d','<','/','p','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','e','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(',047,'4','0',047,')','"',' ',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','h','e','c','k','e','d',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','e','m','a','i','l','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','4','0',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','6','0',')','"',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x',}; -static const char bin2c_html_piece_16_tmp[783] = {'t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','6','0','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',' ',' ',' ',' ',' ',' ',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','d',':','p','y','-','5','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','y','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','S','e','l','e','c','t',' ','G','a','m','e','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','p','-','2','"','>',012,'<','u','l',' ','c','l','a','s','s','=','"','d','i','v','i','d','e','-','y','"','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ',}; -static const char bin2c_html_piece_17_tmp[783] = {'7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','a','t','i','n','g',' ','t','h','e',' ','f','o','o','d','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','x','p','l','o','r','i','n','g',' ','t','h','e',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e',}; -static const char bin2c_html_piece_18_tmp[783] = {'x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'2',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','n','g','a','g','i','n','g',' ','C','o','n','s','i','s','t','e','n','t','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','2','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'3',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6',}; -static const char bin2c_html_piece_19_tmp[783] = {'6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','A','v','o','i','d','i','n','g',' ','U','n','l','i','t',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','3','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'4',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','4','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'5',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s',}; -static const char bin2c_html_piece_20_tmp[783] = {'=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','s','t','e','r','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','5','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'6',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<',}; -static const char bin2c_html_piece_21_tmp[783] = {'d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','R','e','s','p','o','n','d','i','n','g',' ','Q','u','i','c','k','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','6','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'7',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','B','r','i','g','h','t','n','e','s','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','7','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'8',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n',}; -static const char bin2c_html_piece_22_tmp[783] = {'-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','D','o','u','b','l','e',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','8','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'9',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r',}; -static const char bin2c_html_piece_23_tmp[783] = {'n','i','n','g',' ','L','o','n','g','e','r',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','9','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','T','w','o',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l',}; -static const char bin2c_html_piece_24_tmp[783] = {'o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','M','o','r','e',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','/','u','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','T','i','m','e','z','o','n','e',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','e','x','t','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','r',}; -static const char bin2c_html_piece_25_tmp[783] = {'o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r','-','0',' ','b','g','-','g','r','a','y','-','1','0','0',' ','p','x','-','4',' ','p','y','-','2','.','5',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','p','l','a','c','e','h','o','l','d','e','r','-','g','r','a','y','-','5','0','0',' ','f','o','c','u','s',':','r','i','n','g','-','0',' ','s','m',':','t','e','x','t','-','s','m','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','S','e','a','r','c','h',' ','T','i','m','e','z','o','n','e','"',' ','r','o','l','e','=','"','c','o','m','b','o','b','o','x','"',' ','a','r','i','a','-','e','x','p','a','n','d','e','d','=','"','f','a','l','s','e','"',' ','a','r','i','a','-','c','o','n','t','r','o','l','s','=','"','o','p','t','i','o','n','s','"','>',012,'<','!','-','-',' ','R','e','s','u','l','t','s',',',' ','s','h','o','w','/','h','i','d','e',' ','b','a','s','e','d',' ','o','n',' ','c','o','m','m','a','n','d',' ','p','a','l','e','t','t','e',' ','s','t','a','t','e','.',' ','-','-','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','1','2',':','0','0',')',' ','I','n','t','e','r','n','a','t','i','o','n','a','l',' ','D','a','t','e',' ','L','i','n','e',' ','W','e','s','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','1',':','0','0',')',' ','M','i','d','w','a','y',' ','I','s','l','a','n','d',',',' ','S','a','m','o','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i',}; -static const char bin2c_html_piece_26_tmp[783] = {'m','e','Z','o','n','e','(',047,'-','1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','0',':','0','0',')',' ','H','a','w','a','i','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','9',':','0','0',')',' ','A','l','a','s','k','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','8',':','0','0',')',' ','P','a','c','i','f','i','c',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','7',':','0','0',')',' ','M','o','u','n','t','a','i','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G',}; -static const char bin2c_html_piece_27_tmp[783] = {'M','T','-','0','6',':','0','0',')',' ','C','e','n','t','r','a','l',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','5',':','0','0',')',' ','E','a','s','t','e','r','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','4',':','0','0',')',' ','A','t','l','a','n','t','i','c',' ','T','i','m','e',' ','(','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','3','0',')',' ','N','e','w','f','o','u','n','d','l','a','n','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','0','0',')',' ','B','u','e','n','o','s',' ','A','i','r','e','s',',',' ','G','e','o','r','g','e','t','o','w','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e',}; -static const char bin2c_html_piece_28_tmp[783] = {'f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','2',':','0','0',')',' ','M','i','d','-','A','t','l','a','n','t','i','c','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','1',':','0','0',')',' ','C','a','p','e',' ','V','e','r','d','e',' ','I','s','.','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','+','0','0',':','0','0',')',' ','G','r','e','e','n','w','i','c','h',' ','M','e','a','n',' ','T','i','m','e',' ',':',' ','D','u','b','l','i','n',',',' ','E','d','i','n','b','u','r','g','h',',',' ','L','i','s','b','o','n',',',' ','L','o','n','d','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','1',':','0','0',')',' ','A','m','s','t','e','r','d','a','m',',',' ','B','e','r','l','i','n',',',' ','B','e','r','n',',',' ','R','o','m','e',',',' ','S','t','o','c','k','h','o','l','m',',',' ','V','i','e','n','n','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ',}; -static const char bin2c_html_piece_29_tmp[783] = {'r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','2',':','0','0',')',' ','A','t','h','e','n','s',',',' ','B','u','c','h','a','r','e','s','t',',',' ','I','s','t','a','n','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','0','0',')',' ','M','o','s','c','o','w',',',' ','S','t','.',' ','P','e','t','e','r','s','b','u','r','g',',',' ','V','o','l','g','o','g','r','a','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','3','0',')',' ','T','e','h','r','a','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','0','0',')',' ','A','b','u',' ','D','h','a','b','i',',',' ','M','u','s','c','a','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','3','0',')',' ','K','a','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s',}; -static const char bin2c_html_piece_30_tmp[783] = {'o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','0','0',')',' ','I','s','l','a','m','a','b','a','d',',',' ','K','a','r','a','c','h','i',',',' ','T','a','s','h','k','e','n','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','3','0',')',' ','C','h','e','n','n','a','i',',',' ','K','o','l','k','a','t','a',',',' ','M','u','m','b','a','i',',',' ','N','e','w',' ','D','e','l','h','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','7','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','4','5',')',' ','K','a','t','h','m','a','n','d','u','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','0','0',')',' ','A','l','m','a','t','y',',',' ','N','o','v','o','s','i','b','i','r','s','k','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1',}; -static const char bin2c_html_piece_31_tmp[783] = {'"','>','(','G','M','T','+','0','6',':','3','0',')',' ','Y','a','n','g','o','n',' ','(','R','a','n','g','o','o','n',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','7',':','0','0',')',' ','B','a','n','g','k','o','k',',',' ','H','a','n','o','i',',',' ','J','a','k','a','r','t','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','8',':','0','0',')',' ','B','e','i','j','i','n','g',',',' ','C','h','o','n','g','q','i','n','g',',',' ','H','o','n','g',' ','K','o','n','g',',',' ','U','r','u','m','q','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','0','0',')',' ','O','s','a','k','a',',',' ','S','a','p','p','o','r','o',',',' ','T','o','k','y','o','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','3','0',')',' ','A','d','e','l','a','i','d','e','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',}; -static const char bin2c_html_piece_32_tmp[783] = {' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','0',':','0','0',')',' ','C','a','n','b','e','r','r','a',',',' ','M','e','l','b','o','u','r','n','e',',',' ','S','y','d','n','e','y','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','1',':','0','0',')',' ','M','a','g','a','d','a','n',',',' ','S','o','l','o','m','o','n',' ','I','s','.',',',' ','N','e','w',' ','C','a','l','e','d','o','n','i','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','2',':','0','0',')',' ','A','u','c','k','l','a','n','d',',',' ','W','e','l','l','i','n','g','t','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','3',':','0','0',')',' ','N','u','k','u',047,'a','l','o','f','a','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l',}; -static const char bin2c_html_piece_33_tmp[783] = {'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','M','a','x',' ','K','i','b','b','l','e','s',' ','p','e','r',' ','D','a','y',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','h','3',' ','c','l','a','s','s','=','"','t','e','x','t','-','x','l',' ','b','o','r','d','e','r','-','b',' ','b','o','r','d','e','r','-','g','r','a','y','-','1','0','0','"','>','S','e','l','e','c','t',' ','o','n','e',' ','b','e','l','o','w','<','/','h','3','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i',}; -static const char bin2c_html_piece_34_tmp[783] = {'n','d','e','x','=','"','-','1','"','>','2','5','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'5','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','2','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','5','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'1','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','3','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','1','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','4','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'4','0','0',' ',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','5','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','4','0','0','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','s','c','r','i','p','t',' ','s',}; -static const char bin2c_html_piece_35_tmp[783] = {'r','c','=','"','h','t','t','p','s',':','/','/','u','n','p','k','g','.','c','o','m','/','a','x','i','o','s','/','d','i','s','t','/','a','x','i','o','s','.','m','i','n','.','j','s','"','>','<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','t','o','g','g','l','e','C','l','a','s','s','(','e','l','e','m','e','n','t','I','d',',',' ','s','t','r','i','n','g','C','l','a','s','s',')','{',012,'v','a','r',' ','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','e','l','e','m','e','n','t','I','d',')',';',012,'e','l','e','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(','s','t','r','i','n','g','C','l','a','s','s',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','r','a','d','i','o','B','u','t','t','o','n','(','b','t','n','C','l','a','s','s',',',' ','b','t','n','R','a','d','i','o','C','l','a','s','s',',',' ','i','n','p','u','t','I','d',',',' ','a','p','i','c','a','l','l',')','{',012,'v','a','r',' ','b','t','n',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','C','l','a','s','s',')',';',012,'v','a','r',' ','b','t','n','r','a','d','i','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','R','a','d','i','o','C','l','a','s','s',')',';',012,'v','a','r',' ','i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','i','n','p','u','t','I','d',')',';',012,'/','/',' ','t','o','g','g','l','e',' ','t','h','e',' ','s','w','i','t','c','h',' ','a','n','d',' ','v','a','l','u','e',' ','o','f',' ','t','h','e',' ','i','n','p','u','t',' ','t','o',' ','1',' ','o','r',' ','0',' ',012,'i','f','(','b','t','n','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',')','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,',',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','1',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','1',')',';',012,'}',012,'}','e','l','s','e','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,',',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,}; -static const char bin2c_html_piece_36_tmp[783] = {',',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','0',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','0',')',';',012,'}',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(','t','i','m','e','z','o','n','e',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','t','i','m','e','z','o','n','e',047,',',' ','{',012,'t','i','m','e','z','o','n','e','_','o','f','f','s','e','t',':',' ','p','a','r','s','e','F','l','o','a','t','(','t','i','m','e','z','o','n','e',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'T','i','m','e','z','o','n','e',' ','h','a','s',' ','b','e','e','n',' ','u','p','d','a','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','G','a','m','e','(','g','a','m','e','I','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','g','a','m','e',047,',',' ','{',012,'g','a','m','e',':','p','a','r','s','e','I','n','t','(','g','a','m','e','I','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','a',' ','g','a','m','e',' ','h','a','s',' ','b','e','e','n',' ','s','e','l','e','c','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(','i','n','t','I','n','p','u','t',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','m','a','x','_','k','i','b','b','l','e','s',047,',',' ','{',012,'m','a','x','_','k','i','b','b','l','e','s',':','p','a','r','s','e','I','n','t','(','i','n','t','I','n','p','u','t',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',}; -static const char bin2c_html_piece_37_tmp[783] = {' ','k','i','b','b','l','e','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','t','h','r','e','s','h','o','l','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','k','i','b','b','l','e','s','_','t','h','r','e','s','h',047,',',' ','{',012,'k','i','b','b','l','e','s','_','t','h','r','e','s','h',':','p','a','r','s','e','I','n','t','(','t','h','r','e','s','h','o','l','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','t','h','r','e','s','h','o','l','d',' ',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','o','n','O','r','o','f','f',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','d','s','t',047,',',' ','{',012,'d','s','t','_','o','n',':','p','a','r','s','e','I','n','t','(','o','n','O','r','o','f','f',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','d','a','y','l','i','g','h','t',' ','s','a','v','i','n','g','s',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','h','u','b','_','m','o','d','e',047,',',' ','{',012,'h','u','b','_','m','o','d','e',':','p','a','r','s','e','I','n','t','(','h','u','b','s','t','a','t','u','s',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','h','u','b',' ','m','o','d','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c',}; -static const char bin2c_html_piece_38_tmp[783] = {'a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','(','h','u','b','s','t','a','t','u','s',')','{',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','1',' ','|','|',' ','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','0',')','{',012,'i','f','(','!','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'}',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')',';',012,'}','e','l','s','e','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','2',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','{',012,'v','a','r',' ','e','r','r','o','r','C','o','u','n','t','e','r',' ','=',' ','0',';',012,'v','a','r',' ','w','e','e','k','d','a','y','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','d','a','y','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')',';',012,'/','/',' ','v','a','l','i','d','a','t','e',' ','i','n','p','u','t','s',012,'v','a','r',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',' ','=',' ','[','w','e','e','k','d','a','y','f','r','o','m',',',' ','w','e','e','k','d','a','y','t','o',',',' ','w','e','e','k','e','n','d','f','r','o','m',',',' ','w','e','e','k','e','n','d','t','o',']',';',012,'f','o','r','(','l','e','t',' ','s',' ','=',' ','0',';',' ','s',' ','<',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',}; -static const char bin2c_html_piece_39_tmp[789] = {'.','l','e','n','g','t','h',';',' ','s','+','+',')','{',012,'/','/','r','e','s','e','t',' ','e','r','r','o','r',' ','m','e','s','s','a','g','e',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','a','d','d','(',047,'h','i','d','d','e','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','"','"',' ','|','|',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','n','u','l','l',')','{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(',047,'h','i','d','d','e','n',047,')',';',012,'e','r','r','o','r','C','o','u','n','t','e','r','+','+',';',012,'}',012,'}',012,'i','f','(','e','r','r','o','r','C','o','u','n','t','e','r',' ','=','=','=',' ','0',')','{',012,'s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','d','a','y','t','o','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','t','o','.','v','a','l','u','e',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','F','r','o','m',',',' ','w','e','e','k','d','a','y','T','o',',',' ','w','e','e','k','e','n','d','F','r','o','m',',',' ','w','e','e','k','e','n','d','T','o',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','s','c','h','e','d','u','l','e',047,',',' ','{',012,'w','e','e','k','d','a','y','_','f','r','o','m',':',' ','w','e','e','k','d','a','y','F','r','o','m',',',012,'w','e','e','k','d','a','y','_','t','o',':',' ','w','e','e','k','d','a','y','T','o',',',012,'w','e','e','k','e','n','d','_','f','r','o','m',':',' ','w','e','e','k','e','n','d','F','r','o','m',',',012,'w','e','e','k','e','n','d','_','t','o',':',' ','w','e','e','k','e','n','d','T','o',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','s','c','h','e','d','u','l','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,'<','/','s','c','r','i','p','t','>',012,'<','/','b','o','d','y','>',012,012,'<','/','h','t','m','l','>',012,}; +static const char bin2c_html_piece_0_tmp[794] = {'<','!','D','O','C','T','Y','P','E',' ','h','t','m','l','>',012,'<','h','t','m','l',' ','l','a','n','g','=','"','e','n','"','>',012,'<','h','e','a','d','>',012,'<','m','e','t','a',' ','c','h','a','r','s','e','t','=','"','U','T','F','-','8','"',' ','/','>',012,'<','l','i','n','k',' ','r','e','l','=','"','i','c','o','n','"',' ','t','y','p','e','=','"','i','m','a','g','e','/','s','v','g','+','x','m','l','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','t','C','G','f','v','g','7','x','/','c','l','e','v','e','r','p','e','t','-','l','o','g','o','.','p','n','g','"',' ','/','>',012,'<','m','e','t','a',' ','n','a','m','e','=','"','v','i','e','w','p','o','r','t','"',' ','c','o','n','t','e','n','t','=','"','w','i','d','t','h','=','d','e','v','i','c','e','-','w','i','d','t','h',',',' ','i','n','i','t','i','a','l','-','s','c','a','l','e','=','1','.','0','"',' ','/','>',012,'<','t','i','t','l','e','>','C','l','e','v','e','r',' ','P','e','t','<','/','t','i','t','l','e','>',012,'<','!','-','-',' ','<','s','c','r','i','p','t',' ','t','y','p','e','=','"','m','o','d','u','l','e','"',' ','c','r','o','s','s','o','r','i','g','i','n',' ','s','r','c','=','"','/','a','s','s','e','t','s','/','i','n','d','e','x','.','4','2','f','e','4','9','3','7','.','j','s','"','>','<','/','s','c','r','i','p','t','>',' ','-','-','>',012,'<','s','c','r','i','p','t','>',012,'c','o','n','s','t',' ','s','=','f','u','n','c','t','i','o','n','(',')','{','c','o','n','s','t',' ','t','=','d','o','c','u','m','e','n','t','.','c','r','e','a','t','e','E','l','e','m','e','n','t','(','"','l','i','n','k','"',')','.','r','e','l','L','i','s','t',';','i','f','(','t','&','&','t','.','s','u','p','p','o','r','t','s','&','&','t','.','s','u','p','p','o','r','t','s','(','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',')',')','r','e','t','u','r','n',';','f','o','r','(','c','o','n','s','t',' ','e',' ','o','f',' ','d','o','c','u','m','e','n','t','.','q','u','e','r','y','S','e','l','e','c','t','o','r','A','l','l','(',047,'l','i','n','k','[','r','e','l','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"',']',047,')',')','n','(','e',')',';','n','e','w',' ','M','u','t','a','t','i','o','n','O','b','s','e','r','v','e','r','(','e','=','>','{','f','o','r','(','c','o','n','s','t',' ','r',' ','o','f',' ','e',')','i','f','(','r','.','t','y','p','e','=','=','=','"','c','h','i','l','d','L','i','s','t','"',')','f','o','r','(','c','o','n','s','t',' ','o',' ','o','f',' ','r','.','a','d','d','e','d','N','o','d','e','s',')','o','.','t','a','g','N','a','m','e','=','=','=','"','L','I','N','K','"','&','&','o','.','r','e','l','=','=','=','"','m','o','d','u','l','e','p','r','e','l','o','a','d','"','&','&','n','(','o',')','}',')','.','o','b','s','e','r','v','e','(','d','o','c','u','m','e','n','t',',','{','c','h','i','l','d','L','i','s','t',':','!','0',',','s','u','b','t','r','e','e',':','!','0','}',')',';','f','u','n','c','t','i','o','n',' ','i','(','e',')','{','c','o','n','s','t',' ','r','=','{','}',';','r','e','t','u','r','n',' ','e','.','i','n','t','e','g','r','i','t','y','&','&','(','r','.','i','n','t','e','g','r','i',}; +static const char bin2c_html_piece_1_tmp[794] = {'t','y','=','e','.','i','n','t','e','g','r','i','t','y',')',',','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y','&','&','(','r','.','r','e','f','e','r','r','e','r','P','o','l','i','c','y','=','e','.','r','e','f','e','r','r','e','r','p','o','l','i','c','y',')',',','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','u','s','e','-','c','r','e','d','e','n','t','i','a','l','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','i','n','c','l','u','d','e','"',':','e','.','c','r','o','s','s','o','r','i','g','i','n','=','=','=','"','a','n','o','n','y','m','o','u','s','"','?','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','o','m','i','t','"',':','r','.','c','r','e','d','e','n','t','i','a','l','s','=','"','s','a','m','e','-','o','r','i','g','i','n','"',',','r','}','f','u','n','c','t','i','o','n',' ','n','(','e',')','{','i','f','(','e','.','e','p',')','r','e','t','u','r','n',';','e','.','e','p','=','!','0',';','c','o','n','s','t',' ','r','=','i','(','e',')',';','f','e','t','c','h','(','e','.','h','r','e','f',',','r',')','}','}',';','s','(',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s','(',')',' ','{',' ',012,'v','a','r',' ','x','h','t','t','p',' ','=',' ','n','e','w',' ','X','M','L','H','t','t','p','R','e','q','u','e','s','t','(',')',';',012,'v','a','r',' ','s','t','a','t','u','s','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"',')',';',' ',' ','/','/',' ','h','u','b',' ','s','t','a','t','e',' ','a','l','s','o',' ','h','e','r','e','?','?',012,'v','a','r',' ','t','i','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',')',';',012,'v','a','r',' ','k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"',')',';',012,'v','a','r',' ','t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','t','h','e','-','t','i','m','e','z','o','n','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,'v','a','r',' ','d','s','t','_','s','e','t','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',')',';',' ','/','/',' ','b','u','t','t','o','n','.',' ','n','e','w',' ',' ',';',' ','a','r','i','a','-','c','h','e','c','k','e','d',':',' ','"','t','r','u','e','"',' ','o','r',' ','"','f','a','l','s','e','"',012,'v',}; +static const char bin2c_html_piece_2_tmp[794] = {'a','r',' ','m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"',')',';',' ',' ','/','/',' ','n','e','w','!',' ','i','n','n','e','r','H','t','m','l',012,012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',')',';',' ',' ','/','/',' ','t','y','p','e',':',' ','r','a','d','i','o',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','1',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',')',';',012,'v','a','r',' ','s','c','h','e','d','u','l','e','_','e','l','e','m','_','2',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',')',';',012,012,'v','a','r',' ','k','i','b','t','h','r','e','s','h','_','e','l','e','m','_','4','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','t','h','r','e','s','h','-','r','a','d','i','o','-','4','0','"',')',';',012,'v','a','r',' ','k','i','b','t','h','r','e','s','h','_','e','l','e','m','_','6','0',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','k','i','b','t','h','r','e','s','h','-','r','a','d','i','o','-','6','0','"',')',';',012,012,'x','h','t','t','p','.','o','p','e','n','(','"','G','E','T','"',',',' ','"','/','l','o','c','a','l','-','a','p','i','"',',',' ','t','r','u','e',')',';',012,'x','h','t','t','p','.','s','e','n','d','(',')',';',012,'x','h','t','t','p','.','o','n','l','o','a','d',' ','=',' ','f','u','n','c','t','i','o','n',' ','(',')',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'D','O','N','E',047,',',' ','x','h','t','t','p','.','r','e','a','d','y','S','t','a','t','e',')',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'v','a','r',' ','d','a','t','a',' ','=',' ','J','S','O','N','.','p','a','r','s','e','(','x','h','t','t','p','.','r','e','s','p','o','n','s','e','T','e','x','t',')',';',012,'s','t','a','t','u','s','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','s','t','a','t','u','s',' ','+',' ','"','<','b','r','>','"',' ','+',' ','d','a','t','a','.','h','u','b','_','s','t','a','t','e',';',012,'t','i','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e',';',012,'k','i','b','b','l','e','s','_','e','a','t','e','n','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','k','i','b','b','l','e','s',}; +static const char bin2c_html_piece_3_tmp[794] = {'_','e','a','t','e','n','_','t','o','d','a','y',';',012,'t','i','m','e','z','o','n','e','_','s','e','t','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','t','i','m','e','z','o','n','e',';',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','k','i','b','t','h','r','e','s','h',',',' ','1','0',')',' ','=','=',' ','4','0',')',012,'{',012,'k','i','b','t','h','r','e','s','h','_','e','l','e','m','_','4','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','k','i','b','t','h','r','e','s','h',' ','4','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','k','i','b','t','h','r','e','s','h',',',' ','1','0',')',' ','=','=',' ','6','0',')',012,'{',012,'k','i','b','t','h','r','e','s','h','_','e','l','e','m','_','6','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','k','i','b','t','h','r','e','s','h',' ','6','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,012,'/','/',' ','i','f',' ','h','i','d','d','e','n',' ','(','n','o','t',' ','c','u','r','r','e','n','t','l','y',' ','e','d','i','t','i','n','g','!',')','!',012,'/','/',' ','i','f',' ','n','o','t',' ','h','i','d','d','e','n',',',' ','s','h','o','u','l','d',' ','n','o','t',' ','o','v','e','r','w','r','i','t','e',' ','v','a','l','u','e',' ','b','e','i','n','g',' ','e','d','i','t','e','d',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')',012,'{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','d','a','y','_','t','o',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','f','r','o','m',';',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')','.','v','a','l','u','e',' ','=',' ','d','a','t','a','.','w','e','e','k','e','n','d','_','t','o',';',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a',}; +static const char bin2c_html_piece_4_tmp[794] = {'.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','0',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','0','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','0',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','1',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','1','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','1',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','h','u','b','_','m','o','d','e',',',' ','1','0',')',' ','=','=',' ','2',')',012,'{',012,'s','c','h','e','d','u','l','e','_','e','l','e','m','_','2','.','c','h','e','c','k','e','d',' ','=',' ','"','t','r','u','e','"',';',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t','t','i','n','g',' ','h','u','b',' ','m','o','d','e',' ','2',' ','c','h','e','c','k',' ','t','r','u','e','"',')',';',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',' ',' ',' ',012,'}',012,'}',012,012,'i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',')',';',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','1',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','0',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','1','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,'i','f','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','d','s','t','_','o','n',',',' ','1','0',')',' ','=','=',' ','0',' ','&','&',' ','i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=','=',' ','1',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','s','e','t',' ','D','S','T',' ','b','t','n',' ','0','"',')',';',012,'r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p',}; +static const char bin2c_html_piece_5_tmp[794] = {'l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','f','a','l','s','e',')',';',012,'}',012,012,'m','a','x','_','k','i','b','b','l','e','s','_','e','l','e','m','.','i','n','n','e','r','H','T','M','L',' ','=',' ','d','a','t','a','.','m','a','x','_','k','i','b','b','l','e','s',';',012,'f','o','r','(','l','e','t',' ','i','=','0',';',' ','i',' ','<',' ','1','2',';',' ','i','+','+',')',' ',' ',' ','/','/',' ','T','O','D','O',' ','I','S',' ','T','H','I','S',' ','R','I','G','H','T',' ','N','U','M',' ','G','A','M','E','S',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','g','a','m','e','-','s','t','a','t','u','s','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'v','a','r',' ','g','a','m','e','_','e','l','e','m','e','n','t',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','"','g','a','m','e','-','"',' ','+',' ','i','.','t','o','S','t','r','i','n','g','(',')',')',';',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','p','l','a','y','i','n','g',')','=','=','i',')',' ',' ','/','/',' ','p','l','a','y','i','n','g',' ','s','a','m','e',' ','g','a','m','e',' ','o','v','e','r','r','i','d','e','s',' ','t','h','e',' ','e','l','e','m','e','n','t',' ','i','f',' ','a','l','s','o',' ','q','u','e','u','e','d',' ','s','a','m','e',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','p','l','a','y','i','n','g',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','p','l','a','y','i','n','g','"',';',012,'}',012,'e','l','s','e',012,'{',012,'i','f',' ','(','p','a','r','s','e','I','n','t','(','d','a','t','a','.','g','a','m','e','_','i','d','_','q','u','e','u','e','d',')','=','=','i',')',012,'{',012,'c','o','n','s','o','l','e','.','l','o','g','(','"','q','u','e','u','e','d',' ','f','o','u','n','d','"',')',';',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','&','n','b','s','p',';','q','u','e','u','e','d','"',';',012,'}',012,'e','l','s','e',012,'{',012,'g','a','m','e','_','e','l','e','m','e','n','t','.','i','n','n','e','r','H','T','M','L','=','"','"',';',012,'}',012,'}',012,'}',012,'}',';',012,'}',012,012,'s','e','t','I','n','t','e','r','v','a','l','(','u','p','d','a','t','e','A','l','l','E','v','e','n','t','s',',',' ','2','0','0','0',')',';',012,'<','/','s','c','r','i','p','t','>',012,'<','l','i','n','k',' ','r','e','l','=','"','s','t','y','l','e','s','h','e','e','t','"',' ','h','r','e','f','=','"','h','t','t','p','s',':','/','/','d','r','i','v','e','.','g','o','o','g','l','e','.','c','o','m','/','u','c','?','e','x','p','o','r','t','=','d','o','w','n','l','o','a','d','&','i','d','=','1','a','d','S','M','J','J','C','F','e','d','m','6','n','b','l','1','T','M','n','R','c','x','u','L','R','Q','K','9','f','Y','F','b','"','>',012,'<','/','h','e','a','d','>',012,'<','b','o','d','y',' ','c','l','a','s','s','=','"','p','a','g','e','-','b','g','"','>',012,'<','n','a','v',' ','c','l','a','s',}; +static const char bin2c_html_piece_6_tmp[794] = {'s','=','"','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','s','t','i','c','k','y',' ','t','o','p','-','0',' ','z','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','b','e','t','w','e','e','n',' ','h','-','1','6','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','m','g',' ','s','r','c','=','"','h','t','t','p','s',':','/','/','i','.','p','o','s','t','i','m','g','.','c','c','/','1','t','F','X','G','N','V','M','/','l','o','g','o','-','d','8','e','b','c','7','a','d','.','p','n','g','"',' ','c','l','a','s','s','=','"','h','-','1','0','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','s','m',':','m','l','-','6',' ','s','m',':','f','l','e','x',' ','s','m',':','s','p','a','c','e','-','x','-','8','"','>',012,'<','a',' ','h','r','e','f','=','"','#','"',' ','c','l','a','s','s','=','"','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','i','n','l','i','n','e','-','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','p','x','-','1',' ','p','t','-','1',' ','b','o','r','d','e','r','-','b','-','2',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m','"','>',' ','D','a','s','h','b','o','a','r','d',' ','<','/','a','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','n','a','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','c','o','n','t','a','i','n','e','r',' ','m','x','-','a','u','t','o',' ','p','x','-','4',' ','s','m',':','p','x','-','6',' ','l','g',':','p','x','-','8','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','g','r','i','d',' ','g','r','i','d','-','c','o','l','s','-','1',' ','g','a','p','-','4',' ','s','m',':','g','r','i','d','-','c','o','l','s','-','2',' ','m','b','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','y','-','1','0','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','4',}; +static const char bin2c_html_piece_7_tmp[794] = {' ','w','-','1','4',' ','m','d',':','h','-','2','0',' ','m','d',':','w','-','2','0',' ','m','x','-','a','u','t','o',' ','t','e','x','t','-','g','r','e','e','n','-','4','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','5','.','6','3','6',' ','1','8','.','3','6','4','a','9',' ','9',' ','0',' ','0','1','0','-','1','2','.','7','2','8','m','1','2','.','7','2','8',' ','0','a','9',' ','9',' ','0',' ','0','1','0',' ','1','2','.','7','2','8','m','-','9','.','9','-','2','.','8','2','9','a','5',' ','5',' ','0',' ','0','1','0','-','7','.','0','7','m','7','.','0','7','2',' ','0','a','5',' ','5',' ','0',' ','0','1','0',' ','7','.','0','7','M','1','3',' ','1','2','a','1',' ','1',' ','0',' ','1','1','-','2',' ','0',' ','1',' ','1',' ','0',' ','0','1','2',' ','0','z','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','p',' ','c','l','a','s','s','=','"',' ','m','d',':','t','e','x','t','-','2','x','l','"',' ','i','d','=','"','h','u','b','s','t','a','t','u','s','t','e','x','t','"','>',012,'Y','o','u',' ','h','u','b',' ','s','t','a','t','u','s',' ','i','s',' ','a','c','t','i','v','e',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4',' ','t','e','x','t','-','c','e','n','t','e','r',' ','s','m',':','w','-','1','/','2','"','>',012,'<','p',' ','c','l','a','s','s','=','"','t','e','x','t','-','4','x','l',' ','m','d',':','t','e','x','t','-','7','x','l',' ','f','o','n','t','-','b','o','l','d','"',' ','i','d','=','"','k','i','b','b','l','e','s','e','a','t','e','n','t','o','d','a','y','"','>','3','0','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','t','-','2',' ','m','d',':','t','e','x','t','-','2','x','l','"','>',012,'K','i','b','b','l','e','s',' ','e','a','t','e','n',' ','t','o','d','a','y',012,'<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c',}; +static const char bin2c_html_piece_8_tmp[794] = {'l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','D','a','t','e',' ','a','n','d',' ','T','i','m','e',' ','s','e','t','t','i','n','g','s','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','D','a','t','e',' ','a','n','d',' ','T','i','m','e','<','/','p','>',012,'<','s','p','a','n',' ','i','d','=','"','c','u','r','r','e','n','t','d','a','t','e','a','n','d','t','i','m','e','"',' ','c','l','a','s','s','=','"','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','W','e','d',' ','M','a','r',' ','2','3',' ','2','0','2','2',' ','2','3',':','4','0',':','1','1','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','A','p','p','l','y',' ','D','a','y','l','i','g','h','t',' ','S','a','v','i','n','g','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','r','a','d','i','o','B','u','t','t','o','n','(',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g',047,',',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o',047,',',' ',047,'a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t',047,',',' ','t','r','u','e',')','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','"',' ','t','y','p','e','=','"','b','u','t','t','o','n','"',' ','c','l','a','s','s','=','"','b','g','-','g','r','a','y','-','2','0','0',' ','r','e','l','a','t','i','v','e',' ','i','n','l','i','n','e','-','f','l','e','x',' ','f','l','e','x','-','s','h','r','i','n','k','-','0',' ','h','-','6',' ','w','-','1','1',' ','b','o','r','d','e','r','-','2',' ','b','o','r','d','e','r','-','t','r','a','n','s','p','a','r','e','n','t',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','c','u','r','s','o','r','-','p','o','i','n','t','e','r',' ','t','r','a','n','s','i',}; +static const char bin2c_html_piece_9_tmp[794] = {'t','i','o','n','-','c','o','l','o','r','s',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0',' ','f','o','c','u','s',':','o','u','t','l','i','n','e','-','n','o','n','e',' ','f','o','c','u','s',':','r','i','n','g','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','o','f','f','s','e','t','-','2',' ','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0','"',' ','r','o','l','e','=','"','s','w','i','t','c','h','"',' ','a','r','i','a','-','c','h','e','c','k','e','d','=','"','f','a','l','s','e','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','s','r','-','o','n','l','y','"','>','U','s','e',' ','s','e','t','t','i','n','g','<','/','s','p','a','n','>',012,'<','s','p','a','n',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','r','a','d','i','o','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"',' ','c','l','a','s','s','=','"','t','r','a','n','s','l','a','t','e','-','x','-','0',' ','p','o','i','n','t','e','r','-','e','v','e','n','t','s','-','n','o','n','e',' ','i','n','l','i','n','e','-','b','l','o','c','k',' ','h','-','5',' ','w','-','5',' ','r','o','u','n','d','e','d','-','f','u','l','l',' ','b','g','-','w','h','i','t','e',' ','s','h','a','d','o','w',' ','t','r','a','n','s','f','o','r','m',' ','r','i','n','g','-','0',' ','t','r','a','n','s','i','t','i','o','n',' ','e','a','s','e','-','i','n','-','o','u','t',' ','d','u','r','a','t','i','o','n','-','2','0','0','"','>','<','/','s','p','a','n','>',012,'<','/','b','u','t','t','o','n','>',012,'<','i','n','p','u','t',' ','n','a','m','e','=','"','d','a','y','l','i','g','h','t','s','a','v','i','n','g','s','"',' ','t','y','p','e','=','"','h','i','d','d','e','n','"',' ','v','a','l','u','e','=','"','0','"',' ','i','d','=','"','a','p','p','l','y','d','a','y','l','i','g','h','t','s','a','v','i','n','g','i','n','p','u','t','"',' ','/','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','T','i','m','e','z','o','n','e','<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','t','h','e','-','t','i','m','e','z','o','n','e','"','>','A','m','e','r','i','c','a','/','L','o','s',' ','A','n','g','e','l','e','s','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.',}; +static const char bin2c_html_piece_10_tmp[794] = {'o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','a','r','o','u','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','1','"',' ','c','h','e','c','k','e','d',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','v','a','l','u','e','=','"','1','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','1',')','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','o','n',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','o','n','c','h','a','n','g','e','=','"','s',}; +static const char bin2c_html_piece_11_tmp[794] = {'e','t','H','u','b','M','o','d','e','(','0',')','"',' ','v','a','l','u','e','=','"','0','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','m','s','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','t','a','y',' ','O','f','f','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ',' ','n','a','m','e','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','-','r','a','d','i','o','-','2','"',' ','v','a','l','u','e','=','"','2','"',' ','o','n','c','h','a','n','g','e','=','"','s','e','t','H','u','b','M','o','d','e','(','2',')','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','s','c','h','e','d','u','l','e','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','S','c','h','e','d','u','l','e','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4',' ','h','i','d','d','e','n','"',' ','i','d','=','"','s','c','h','e','d','u','l','e','r','o','p','t','i','o','n','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','D','a','y','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"',}; +static const char bin2c_html_piece_12_tmp[794] = {'b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','d','a','y','t','o','"',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','d','a','y','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d',}; +static const char bin2c_html_piece_13_tmp[794] = {'i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','t','e','x','t','-','c','e','n','t','e','r',' ','m','b','-','4',' ','f','o','n','t','-','b','o','l','d','"','>','W','e','e','k',' ','E','n','d','s','<','/','h','4','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','F','r','o','m','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d','i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','f','r','o','m','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','t','-','5','"','>',' ','-',' ','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','l','a','b','e','l',' ','f','o','r','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>','T','o','<','/','l','a','b','e','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','1','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','i','m','e','"',' ','n','a','m','e','=','"','w','e','e','k','e','n','d','t','o','"',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','"',' ','c','l','a','s','s','=','"','s','h','a','d','o','w','-','s','m',' ','f','o','c','u','s',':','r','i','n','g','-','i','n','d',}; +static const char bin2c_html_piece_14_tmp[794] = {'i','g','o','-','5','0','0',' ','f','o','c','u','s',':','b','o','r','d','e','r','-','i','n','d','i','g','o','-','5','0','0',' ','b','l','o','c','k',' ','w','-','f','u','l','l',' ','s','m',':','t','e','x','t','-','s','m',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0',' ','r','o','u','n','d','e','d','-','m','d','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','9',':','0','0',' ','a','m','"','>',012,'<','p',' ','i','d','=','"','w','e','e','k','e','n','d','t','o','e','r','r','o','r','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','t','e','x','t','-','r','e','d','-','5','0','0',' ','t','e','x','t','-','x','s','"','>','T','h','i','s',' ','f','i','e','l','d',' ','i','s',' ','r','e','q','u','i','r','e','d','<','/','p','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','m','t','-','3',' ','p','y','-','2',' ','r','o','u','n','d','e','d',' ','s','h','a','d','o','w',' ','b','g','-','g','r','e','e','n','-','5','0','0',' ','t','e','x','t','-','w','h','i','t','e',' ','t','e','x','t','-','s','m',' ','m','d',':','t','e','x','t','-','x','l','"','>','S','a','v','e','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>',' ','K','i','b','b','l','e','s',' ','s','e','t','t','i','n','g','s',' ','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','M','a','x',' ','K','i','b','b','l','e','s',' ','P','e','r',' ','D','a','y',}; +static const char bin2c_html_piece_15_tmp[794] = {'<','/','p','>',012,'<','p',' ','c','l','a','s','s','=','"','m','r','-','2','"',' ','i','d','=','"','m','a','x','-','k','i','b','b','l','e','s','-','v','a','l','u','e','"','>','4','0','<','/','p','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','6',' ','w','-','6',' ','t','e','x','t','-','g','r','a','y','-','3','0','0','"',' ','f','i','l','l','=','"','n','o','n','e','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','4',' ','2','4','"',' ','s','t','r','o','k','e','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"',' ','s','t','r','o','k','e','-','w','i','d','t','h','=','"','2','"','>',012,'<','p','a','t','h',' ','s','t','r','o','k','e','-','l','i','n','e','c','a','p','=','"','r','o','u','n','d','"',' ','s','t','r','o','k','e','-','l','i','n','e','j','o','i','n','=','"','r','o','u','n','d','"',' ','d','=','"','M','9',' ','5','l','7',' ','7','-','7',' ','7','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','t','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','s','h','a','d','o','w',' ','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','p',' ','c','l','a','s','s','=','"','f','l','e','x','-','1','"','>','K','i','b','b','l','e','s',' ','D','e','t','e','c','t',' ','T','h','r','e','s','h','o','l','d','<','/','p','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r',' ','j','u','s','t','i','f','y','-','e','n','d',' ','g','a','p','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','4','0',')','"',' ',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','i','d','=','"','k','i','b','t','h','r','e','s','h','-','r','a','d','i','o','-','4','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','h','e','c','k','e','d',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a',}; +static const char bin2c_html_piece_16_tmp[794] = {'b','e','l',' ','f','o','r','=','"','e','m','a','i','l','"',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','4','0',' ','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"','>',012,'<','i','n','p','u','t',' ','o','n','c','h','a','n','g','e','=','"','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','6','0',')','"',' ','n','a','m','e','=','"','k','i','b','b','l','e','s','t','h','r','e','s','h','o','l','d','"',' ','i','d','=','"','k','i','b','t','h','r','e','s','h','-','r','a','d','i','o','-','6','0','"',' ','t','y','p','e','=','"','r','a','d','i','o','"',' ','c','l','a','s','s','=','"','f','o','c','u','s',':','r','i','n','g','-','g','r','e','e','n','-','5','0','0',' ','h','-','4',' ','w','-','4',' ','t','e','x','t','-','g','r','e','e','n','-','6','0','0',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>',012,'<','l','a','b','e','l',' ','c','l','a','s','s','=','"','m','l','-','2',' ','b','l','o','c','k',' ','t','e','x','t','-','s','m',' ','f','o','n','t','-','m','e','d','i','u','m',' ','t','e','x','t','-','g','r','a','y','-','7','0','0','"','>',' ','6','0','<','/','l','a','b','e','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',' ',' ',' ',' ',' ',' ',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','d',':','p','y','-','5','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','m','y','-','4','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','a','b','s','o','l','u','t','e',' ','i','n','s','e','t','-','0',' ','f','l','e','x',' ','i','t','e','m','s','-','c','e','n','t','e','r','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','b','o','r','d','e','r','-','t',' ','b','o','r','d','e','r','-','g','r','a','y','-','3','0','0','"','>','<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','r','e','l','a','t','i','v','e',' ','f','l','e','x',' ','j','u','s','t','i','f','y','-','c','e','n','t','e','r','"','>',012,'<','s','p','a','n',' ','c','l','a','s','s','=','"','p','x','-','2',' ',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','5','0','0','"','>','S','e','l','e','c','t',' ','G','a','m','e','<','/','s','p','a','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','b','g','-','w','h','i','t','e',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r',' ','b','o','r','d','e','r','-','g','r','a','y','-','2','0','0',' ','p','-','2','"','>',012,'<','u','l',' ','c','l','a','s','s','=','"','d','i','v','i','d','e','-','y','"',}; +static const char bin2c_html_piece_17_tmp[794] = {'>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','a','t','i','n','g',' ','t','h','e',' ','f','o','o','d','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l',}; +static const char bin2c_html_piece_18_tmp[794] = {'3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','x','p','l','o','r','i','n','g',' ','t','h','e',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'2',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','E','n','g','a','g','i','n','g',' ','C','o','n','s','i','s','t','e','n','t','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','2','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'3',047,')','"','>',012,'<','s','v',}; +static const char bin2c_html_piece_19_tmp[794] = {'g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','A','v','o','i','d','i','n','g',' ','U','n','l','i','t',' ','T','o','u','c','h','p','a','d','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','3','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'4',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<',}; +static const char bin2c_html_piece_20_tmp[794] = {'d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','4','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'5',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','s','t','e','r','i','n','g',' ','t','h','e',' ','L','i','g','h','t','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','5','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'6',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e',}; +static const char bin2c_html_piece_21_tmp[794] = {'w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','R','e','s','p','o','n','d','i','n','g',' ','Q','u','i','c','k','l','y','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','6','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'7',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','B','r','i','g','h','t','n','e','s','s','<','/','h','4','>',012,'<','p',' ','i','d','=',}; +static const char bin2c_html_piece_22_tmp[794] = {'"','g','a','m','e','-','7','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'8',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','D','o','u','b','l','e',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','8','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'9',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a',}; +static const char bin2c_html_piece_23_tmp[794] = {'8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','L','e','a','r','n','i','n','g',' ','L','o','n','g','e','r',' ','S','e','q','u','e','n','c','e','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','9','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','0',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','T','w','o',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','0','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','l','i',}; +static const char bin2c_html_piece_24_tmp[794] = {' ','c','l','a','s','s','=','"','p','y','-','2','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x','"','>',012,'<','b','u','t','t','o','n',' ',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','G','a','m','e','(',047,'1','1',047,')','"','>',012,'<','s','v','g',' ','x','m','l','n','s','=','"','h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','2','0','0','0','/','s','v','g','"',' ','c','l','a','s','s','=','"','h','-','1','0',' ','w','-','1','0',' ','t','e','x','t','-','g','r','e','e','n','-','5','0','0','"',' ','v','i','e','w','B','o','x','=','"','0',' ','0',' ','2','0',' ','2','0','"',' ','f','i','l','l','=','"','c','u','r','r','e','n','t','C','o','l','o','r','"','>',012,'<','p','a','t','h',' ','f','i','l','l','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','d','=','"','M','1','0',' ','1','8','a','8',' ','8',' ','0',' ','1','0','0','-','1','6',' ','8',' ','8',' ','0',' ','0','0','0',' ','1','6','z','M','9','.','5','5','5',' ','7','.','1','6','8','A','1',' ','1',' ','0',' ','0','0','8',' ','8','v','4','a','1',' ','1',' ','0',' ','0','0','1','.','5','5','5','.','8','3','2','l','3','-','2','a','1',' ','1',' ','0',' ','0','0','0','-','1','.','6','6','4','l','-','3','-','2','z','"',' ','c','l','i','p','-','r','u','l','e','=','"','e','v','e','n','o','d','d','"',' ','/','>',012,'<','/','s','v','g','>',012,'<','/','b','u','t','t','o','n','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','p','x','-','2','"','>',012,'<','h','4',' ','c','l','a','s','s','=','"','f','o','n','t','-','b','o','l','d',' ','p','-','0',' ','m','-','0','"','>','M','a','t','c','h','i','n','g',' ','M','o','r','e',' ','C','o','l','o','r','s','<','/','h','4','>',012,'<','p',' ','i','d','=','"','g','a','m','e','-','1','1','"',' ','c','l','a','s','s','=','"','f','o','n','t','-','t','h','i','n',' ','-','m','-','1',' ','p','-','0','"','>','<','/','p','>',' ',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','l','i','>',012,'<','/','u','l','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','T','i','m','e','z','o','n','e',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r',}; +static const char bin2c_html_piece_25_tmp[794] = {'u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','i','n','p','u','t',' ','t','y','p','e','=','"','t','e','x','t','"',' ','c','l','a','s','s','=','"','w','-','f','u','l','l',' ','r','o','u','n','d','e','d','-','m','d',' ','b','o','r','d','e','r','-','0',' ','b','g','-','g','r','a','y','-','1','0','0',' ','p','x','-','4',' ','p','y','-','2','.','5',' ','t','e','x','t','-','g','r','a','y','-','9','0','0',' ','p','l','a','c','e','h','o','l','d','e','r','-','g','r','a','y','-','5','0','0',' ','f','o','c','u','s',':','r','i','n','g','-','0',' ','s','m',':','t','e','x','t','-','s','m','"',' ','p','l','a','c','e','h','o','l','d','e','r','=','"','S','e','a','r','c','h',' ','T','i','m','e','z','o','n','e','"',' ','r','o','l','e','=','"','c','o','m','b','o','b','o','x','"',' ','a','r','i','a','-','e','x','p','a','n','d','e','d','=','"','f','a','l','s','e','"',' ','a','r','i','a','-','c','o','n','t','r','o','l','s','=','"','o','p','t','i','o','n','s','"','>',012,'<','!','-','-',' ','R','e','s','u','l','t','s',',',' ','s','h','o','w','/','h','i','d','e',' ','b','a','s','e','d',' ','o','n',' ','c','o','m','m','a','n','d',' ','p','a','l','e','t','t','e',' ','s','t','a','t','e','.',' ','-','-','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','1','2',':','0','0',')',' ','I','n','t','e','r','n','a','t','i','o','n','a','l',' ','D','a','t','e',' ','L','i','n','e',' ','W','e','s','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','1',047,')','"',}; +static const char bin2c_html_piece_26_tmp[794] = {' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','1',':','0','0',')',' ','M','i','d','w','a','y',' ','I','s','l','a','n','d',',',' ','S','a','m','o','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','1','0',':','0','0',')',' ','H','a','w','a','i','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','9',':','0','0',')',' ','A','l','a','s','k','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','8',':','0','0',')',' ','P','a','c','i','f','i','c',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','7',':','0','0',')',' ','M','o','u','n','t','a','i','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ',}; +static const char bin2c_html_piece_27_tmp[794] = {'C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','-','0','6',':','0','0',')',' ','C','e','n','t','r','a','l',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','5',':','0','0',')',' ','E','a','s','t','e','r','n',' ','T','i','m','e',' ','(','U','S',' ','&',' ','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','4',':','0','0',')',' ','A','t','l','a','n','t','i','c',' ','T','i','m','e',' ','(','C','a','n','a','d','a',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','3','0',')',' ','N','e','w','f','o','u','n','d','l','a','n','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',}; +static const char bin2c_html_piece_28_tmp[794] = {' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','3',':','0','0',')',' ','B','u','e','n','o','s',' ','A','i','r','e','s',',',' ','G','e','o','r','g','e','t','o','w','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','2',':','0','0',')',' ','M','i','d','-','A','t','l','a','n','t','i','c','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'-','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','-','0','1',':','0','0',')',' ','C','a','p','e',' ','V','e','r','d','e',' ','I','s','.','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','G','M','T','+','0','0',':','0','0',')',' ','G','r','e','e','n','w','i','c','h',' ','M','e','a','n',' ','T','i','m','e',' ',':',' ','D','u','b','l','i','n',',',' ','E','d','i','n','b','u','r','g','h',',',' ','L','i','s','b','o','n',',',' ','L','o','n','d','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','1',':','0','0',')',' ','A','m','s','t','e','r','d','a','m',',',' ','B','e','r','l','i','n',',',' ','B','e','r','n',',',' ','R','o','m','e',',',' ','S','t',}; +static const char bin2c_html_piece_29_tmp[794] = {'o','c','k','h','o','l','m',',',' ','V','i','e','n','n','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','2',':','0','0',')',' ','A','t','h','e','n','s',',',' ','B','u','c','h','a','r','e','s','t',',',' ','I','s','t','a','n','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','0','0',')',' ','M','o','s','c','o','w',',',' ','S','t','.',' ','P','e','t','e','r','s','b','u','r','g',',',' ','V','o','l','g','o','g','r','a','d','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'3','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','3',':','3','0',')',' ','T','e','h','r','a','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','0','0',')',' ','A','b','u',' ','D','h','a','b','i',',',' ','M','u','s','c','a','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'4','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y',}; +static const char bin2c_html_piece_30_tmp[794] = {'-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','4',':','3','0',')',' ','K','a','b','u','l','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','0','0',')',' ','I','s','l','a','m','a','b','a','d',',',' ','K','a','r','a','c','h','i',',',' ','T','a','s','h','k','e','n','t','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','3','0',')',' ','C','h','e','n','n','a','i',',',' ','K','o','l','k','a','t','a',',',' ','M','u','m','b','a','i',',',' ','N','e','w',' ','D','e','l','h','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'5','.','7','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','5',':','4','5',')',' ','K','a','t','h','m','a','n','d','u','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'6',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','0','0',')',' ','A','l','m','a','t','y',',',' ','N','o','v','o','s','i','b','i','r','s','k','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,}; +static const char bin2c_html_piece_31_tmp[794] = {'6','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','6',':','3','0',')',' ','Y','a','n','g','o','n',' ','(','R','a','n','g','o','o','n',')','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'7',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','7',':','0','0',')',' ','B','a','n','g','k','o','k',',',' ','H','a','n','o','i',',',' ','J','a','k','a','r','t','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'8',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','8',':','0','0',')',' ','B','e','i','j','i','n','g',',',' ','C','h','o','n','g','q','i','n','g',',',' ','H','o','n','g',' ','K','o','n','g',',',' ','U','r','u','m','q','i','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','0','0',')',' ','O','s','a','k','a',',',' ','S','a','p','p','o','r','o',',',' ','T','o','k','y','o','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'9','.','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i',}; +static const char bin2c_html_piece_32_tmp[794] = {'n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','0','9',':','3','0',')',' ','A','d','e','l','a','i','d','e','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','0',':','0','0',')',' ','C','a','n','b','e','r','r','a',',',' ','M','e','l','b','o','u','r','n','e',',',' ','S','y','d','n','e','y','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','1',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','1',':','0','0',')',' ','M','a','g','a','d','a','n',',',' ','S','o','l','o','m','o','n',' ','I','s','.',',',' ','N','e','w',' ','C','a','l','e','d','o','n','i','a','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','2',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','2',':','0','0',')',' ','A','u','c','k','l','a','n','d',',',' ','W','e','l','l','i','n','g','t','o','n','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(',047,'1','3',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','(','G','M','T','+','1','3',':','0','0',')',' ','N','u','k','u',047,'a','l','o','f','a','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-',}; +static const char bin2c_html_piece_33_tmp[794] = {'r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','!','-','-',' ','S','e','l','e','c','t',' ','O','p','t','i','o','n',' ','f','o','r',' ','M','a','x',' ','K','i','b','b','l','e','s',' ','p','e','r',' ','D','a','y',' ','-','-','>',012,'<','d','i','v',' ','i','d','=','"','m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n','"',' ','c','l','a','s','s','=','"','h','i','d','d','e','n',' ','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','z','-','1','0',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','-','4',' ','s','m',':','p','-','6',' ','m','d',':','p','-','2','0','"',' ','r','o','l','e','=','"','d','i','a','l','o','g','"',' ','a','r','i','a','-','m','o','d','a','l','=','"','t','r','u','e','"','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','i','x','e','d',' ','i','n','s','e','t','-','0',' ','b','g','-','g','r','a','y','-','5','0','0',' ','b','g','-','o','p','a','c','i','t','y','-','2','5',' ','t','r','a','n','s','i','t','i','o','n','-','o','p','a','c','i','t','y','"',' ','a','r','i','a','-','h','i','d','d','e','n','=','"','t','r','u','e','"','>','<','/','d','i','v','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','m','x','-','a','u','t','o',' ','m','a','x','-','w','-','x','l',' ','t','r','a','n','s','f','o','r','m',' ','r','o','u','n','d','e','d','-','x','l',' ','b','g','-','w','h','i','t','e',' ','p','-','2',' ','s','h','a','d','o','w','-','2','x','l',' ','r','i','n','g','-','1',' ','r','i','n','g','-','b','l','a','c','k',' ','r','i','n','g','-','o','p','a','c','i','t','y','-','5',' ','t','r','a','n','s','i','t','i','o','n','-','a','l','l','"','>',012,'<','h','3',' ','c','l','a','s','s','=','"','t','e','x','t','-','x','l',' ','b','o','r','d','e','r','-','b',' ','b','o','r','d','e','r','-','g','r','a','y','-','1','0','0','"','>','S','e','l','e','c','t',' ','o','n','e',' ','b','e','l','o','w','<','/','h','3','>',012,'<','u','l',' ','c','l','a','s','s','=','"','-','m','b','-','2',' ','m','a','x','-','h','-','7','2',' ','s','c','r','o','l','l','-','p','y','-','2',' ','o','v','e','r','f','l','o','w','-','y','-','a','u','t','o',' ','p','y','-','2',' ','t','e','x','t','-','s','m',' ','t','e','x','t','-','g','r','a','y','-','8','0','0','"',' ','i','d','=','"','o','p','t','i','o','n','s','"',' ','r','o','l','e','=','"','l','i','s','t','b','o','x','"','>',012,'<','!','-','-',' ','A','c','t','i','v','e',':',' ','"','b','g','-','i','n','d','i','g','o','-','6','0','0',' ','t','e','x','t','-','w','h','i','t','e','"',' ','-','-','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','5',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a',}; +static const char bin2c_html_piece_34_tmp[794] = {'u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','1','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','5','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'5','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','2','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','5','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'1','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','3','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','1','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'2','0','0',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','4','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','2','0','0','<','/','l','i','>',012,'<','l','i',' ','o','n','c','l','i','c','k','=','"','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(',047,'4','0','0',' ',047,')','"',' ','c','l','a','s','s','=','"','c','u','r','s','o','r','-','d','e','f','a','u','l','t',' ','s','e','l','e','c','t','-','n','o','n','e',' ','r','o','u','n','d','e','d','-','m','d',' ','p','x','-','4',' ','p','y','-','2','"',' ','i','d','=','"','o','p','t','i','o','n','-','5','"',' ','r','o','l','e','=','"','o','p','t','i','o','n','"',' ','t','a','b','i','n','d','e','x','=','"','-','1','"','>','4','0','0','<','/','l','i','>',012,'<','/','u','l','>',012,'<','d','i','v',' ','c','l','a','s','s','=','"','f','l','e','x',' ','j','u','s','t','i','f','y','-','e','n','d',' ','p','r','-','4','"','>',012,'<','b','u','t','t','o','n',' ','c','l','a','s','s','=','"','t','e','x','t','-','r','e','d','-','3','0','0',' ','f','o','n','t','-','b','o','l','d','"',' ','o','n','c','l','i','c','k','=','"','t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',}; +static const char bin2c_html_piece_35_tmp[794] = {' ',047,'h','i','d','d','e','n',047,')','"','>','C','a','n','c','e','l','<','/','b','u','t','t','o','n','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,'<','/','d','i','v','>',012,012,'<','s','c','r','i','p','t',' ','s','r','c','=','"','h','t','t','p','s',':','/','/','u','n','p','k','g','.','c','o','m','/','a','x','i','o','s','/','d','i','s','t','/','a','x','i','o','s','.','m','i','n','.','j','s','"','>','<','/','s','c','r','i','p','t','>',012,'<','s','c','r','i','p','t','>',012,'f','u','n','c','t','i','o','n',' ','t','o','g','g','l','e','C','l','a','s','s','(','e','l','e','m','e','n','t','I','d',',',' ','s','t','r','i','n','g','C','l','a','s','s',')','{',012,'v','a','r',' ','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','e','l','e','m','e','n','t','I','d',')',';',012,'e','l','e','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(','s','t','r','i','n','g','C','l','a','s','s',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','r','a','d','i','o','B','u','t','t','o','n','(','b','t','n','C','l','a','s','s',',',' ','b','t','n','R','a','d','i','o','C','l','a','s','s',',',' ','i','n','p','u','t','I','d',',',' ','a','p','i','c','a','l','l',')','{',012,'v','a','r',' ','b','t','n',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','C','l','a','s','s',')',';',012,'v','a','r',' ','b','t','n','r','a','d','i','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','b','t','n','R','a','d','i','o','C','l','a','s','s',')',';',012,'v','a','r',' ','i','n','p','u','t','E','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','i','n','p','u','t','I','d',')',';',012,'/','/',' ','t','o','g','g','l','e',' ','t','h','e',' ','s','w','i','t','c','h',' ','a','n','d',' ','v','a','l','u','e',' ','o','f',' ','t','h','e',' ','i','n','p','u','t',' ','t','o',' ','1',' ','o','r',' ','0',' ',012,'i','f','(','b','t','n','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,')',')','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','a','y','-','2','0','0',047,',',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','1',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','1',')',';',012,'}',012,'}','e','l','s','e','{',012,'b','t','n','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'b','g','-','g','r','e','e','n','-','5','0','0',047,',',047,'b','g','-','g','r','a','y','-','2',}; +static const char bin2c_html_piece_36_tmp[794] = {'0','0',047,')',';',012,'b','t','n','r','a','d','i','o','.','c','l','a','s','s','L','i','s','t','.','r','e','p','l','a','c','e','(',047,'t','r','a','n','s','l','a','t','e','-','x','-','5',047,',',047,'t','r','a','n','s','l','a','t','e','-','x','-','0',047,')',';',012,'i','n','p','u','t','E','l','e','.','v','a','l','u','e',' ','=',' ','0',';',012,'i','f','(','a','p','i','c','a','l','l',')',012,'{',012,'s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','0',')',';',012,'}',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','T','i','m','e','Z','o','n','e','(','t','i','m','e','z','o','n','e',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'t','i','m','e','z','o','n','e','s','e','l','e','c','t','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','t','i','m','e','z','o','n','e',047,',',' ','{',012,'t','i','m','e','z','o','n','e','_','o','f','f','s','e','t',':',' ','p','a','r','s','e','F','l','o','a','t','(','t','i','m','e','z','o','n','e',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'T','i','m','e','z','o','n','e',' ','h','a','s',' ','b','e','e','n',' ','u','p','d','a','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','l','e','c','t','G','a','m','e','(','g','a','m','e','I','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','g','a','m','e',047,',',' ','{',012,'g','a','m','e',':','p','a','r','s','e','I','n','t','(','g','a','m','e','I','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','a',' ','g','a','m','e',' ','h','a','s',' ','b','e','e','n',' ','s','e','l','e','c','t','e','d',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','m','a','x','K','i','b','b','l','e','s','P','e','r','D','a','y','(','i','n','t','I','n','p','u','t',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'m','a','x','k','i','b','b','l','e','s','p','e','r','d','a','y','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','m','a','x','_','k','i','b','b','l','e','s',047,',',' ','{',012,'m','a','x','_','k','i','b','b','l','e','s',':','p','a','r','s','e','I','n','t','(','i','n','t','I','n','p','u','t',')',012,'}',')','.','t','h','e','n','(','(',')',' ',}; +static const char bin2c_html_piece_37_tmp[794] = {'=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','k','i','b','b','l','e','s','D','e','t','e','c','t','T','h','r','e','s','h','h','o','l','d','(','t','h','r','e','s','h','o','l','d',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','k','i','b','b','l','e','s','_','t','h','r','e','s','h',047,',',' ','{',012,'k','i','b','b','l','e','s','_','t','h','r','e','s','h',':','p','a','r','s','e','I','n','t','(','t','h','r','e','s','h','o','l','d',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','k','i','b','b','l','e','s',' ','t','h','r','e','s','h','o','l','d',' ',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','D','a','y','L','i','g','h','t','S','a','v','i','n','g','s','(','o','n','O','r','o','f','f',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','d','s','t',047,',',' ','{',012,'d','s','t','_','o','n',':','p','a','r','s','e','I','n','t','(','o','n','O','r','o','f','f',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','d','a','y','l','i','g','h','t',' ','s','a','v','i','n','g','s',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','h','u','b','_','m','o','d','e',047,',',' ','{',012,'h','u','b','_','m','o','d','e',':','p','a','r','s','e','I','n','t','(','h','u','b','s','t','a','t','u','s',')',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','h','u','b',' ','m','o','d','e',' ','s','e',}; +static const char bin2c_html_piece_38_tmp[794] = {'t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','(','h','u','b','s','t','a','t','u','s',')','{',012,'v','a','r',' ','s','c','h','e','d','u','l','e','e','l','e',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,')',';',012,'i','f','(','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','1',' ','|','|',' ','h','u','b','s','t','a','t','u','s',' ','=','=','=',' ','0',')','{',012,'i','f','(','!','s','c','h','e','d','u','l','e','e','l','e','.','c','l','a','s','s','L','i','s','t','.','c','o','n','t','a','i','n','s','(',047,'h','i','d','d','e','n',047,')',')','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'}',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','h','u','b','s','t','a','t','u','s',')',';',012,'}','e','l','s','e','{',012,'t','o','g','g','l','e','C','l','a','s','s','(',047,'s','c','h','e','d','u','l','e','r','o','p','t','i','o','n',047,',',' ',047,'h','i','d','d','e','n',047,')',';',012,'s','e','t','H','u','b','M','o','d','e','R','e','q','u','e','s','t','(','2',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','H','u','b','M','o','d','e','S','c','h','e','d','u','l','e','(',')','{',012,'v','a','r',' ','e','r','r','o','r','C','o','u','n','t','e','r',' ','=',' ','0',';',012,'v','a','r',' ','w','e','e','k','d','a','y','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','d','a','y','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','d','a','y','t','o',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','f','r','o','m',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','f','r','o','m',047,')',';',012,'v','a','r',' ','w','e','e','k','e','n','d','t','o',' ','=',' ','d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(',047,'w','e','e','k','e','n','d','t','o',047,')',';',012,'/','/',' ','v','a','l','i','d','a','t','e',' ','i','n','p','u','t','s',012,'v','a','r',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s',' ','=',' ','[','w','e','e','k','d','a','y','f','r','o','m',',',' ','w','e','e','k','d','a','y','t','o',',',' ','w','e','e','k','e','n','d','f','r','o','m',',',' ','w','e','e','k','e','n','d','t','o',']',';',012,'f','o','r','(','l','e','t',' ','s',' ','=',' ','0',';',' ','s',' ','<',}; +static const char bin2c_html_piece_39_tmp[804] = {' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','.','l','e','n','g','t','h',';',' ','s','+','+',')','{',012,'/','/','r','e','s','e','t',' ','e','r','r','o','r',' ','m','e','s','s','a','g','e',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','a','d','d','(',047,'h','i','d','d','e','n',047,')',';',012,'i','f','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','"','"',' ','|','|',' ','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','v','a','l','u','e',' ','=','=','=',' ','n','u','l','l',')','{',012,'d','o','c','u','m','e','n','t','.','g','e','t','E','l','e','m','e','n','t','B','y','I','d','(','s','c','h','e','d','u','l','e','I','n','p','u','t','s','[','s',']','.','i','d',' ','+',' ',047,'e','r','r','o','r',047,')','.','c','l','a','s','s','L','i','s','t','.','t','o','g','g','l','e','(',047,'h','i','d','d','e','n',047,')',';',012,'e','r','r','o','r','C','o','u','n','t','e','r','+','+',';',012,'}',012,'}',012,'i','f','(','e','r','r','o','r','C','o','u','n','t','e','r',' ','=','=','=',' ','0',')','{',012,'s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','d','a','y','t','o','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','f','r','o','m','.','v','a','l','u','e',',',' ','w','e','e','k','e','n','d','t','o','.','v','a','l','u','e',')',';',012,'}',012,'}',012,012,'f','u','n','c','t','i','o','n',' ','s','e','t','T','h','e','S','c','h','e','d','u','l','e','r','(','w','e','e','k','d','a','y','F','r','o','m',',',' ','w','e','e','k','d','a','y','T','o',',',' ','w','e','e','k','e','n','d','F','r','o','m',',',' ','w','e','e','k','e','n','d','T','o',')','{',012,'a','x','i','o','s','.','p','o','s','t','(',047,'/','l','o','c','a','l','-','a','p','i','/','s','e','t','_','s','c','h','e','d','u','l','e',047,',',' ','{',012,'w','e','e','k','d','a','y','_','f','r','o','m',':',' ','w','e','e','k','d','a','y','F','r','o','m',',',012,'w','e','e','k','d','a','y','_','t','o',':',' ','w','e','e','k','d','a','y','T','o',',',012,'w','e','e','k','e','n','d','_','f','r','o','m',':',' ','w','e','e','k','e','n','d','F','r','o','m',',',012,'w','e','e','k','e','n','d','_','t','o',':',' ','w','e','e','k','e','n','d','T','o',012,'}',')','.','t','h','e','n','(','(',')',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(',047,'p','u','t',' ','y','o','u','r',' ','c','o','d','e',' ','a','f','t','e','r',' ','s','c','h','e','d','u','l','e',' ','s','e','t','t','i','n','g','s',' ','h','a','s',' ','b','e','e','n',' ','s','e','t',047,')',012,'}',')','.','c','a','t','c','h','(','e','r','r',' ','=','>',' ','{',012,'c','o','n','s','o','l','e','.','l','o','g','(','e','r','r','.','r','e','s','p','o','n','s','e','.','d','a','t','a',')',012,'}',')',';',012,'}',012,'<','/','s','c','r','i','p','t','>',012,'<','/','b','o','d','y','>',012,012,'<','/','h','t','m','l','>',012,}; #endif \ No newline at end of file From 1796de85431bbd7112137b63e3ce721c89ca952b Mon Sep 17 00:00:00 2001 From: asingularity Date: Mon, 3 Oct 2022 19:10:33 -0700 Subject: [PATCH 4/5] version --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 37b1b7a..c8a4663 100644 --- a/library.properties +++ b/library.properties @@ -1,4 +1,4 @@ -name=hackerpet_plus_dev +name=hackerpet_plus version=0.1.112 license=AGPL author=Csaba Petre From a5b69674bbb6ae937579ad902f789da2308e14e6 Mon Sep 17 00:00:00 2001 From: asingularity Date: Mon, 3 Oct 2022 19:11:00 -0700 Subject: [PATCH 5/5] version in print --- examples/main/particle-test-local.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main/particle-test-local.ino b/examples/main/particle-test-local.ino index 0978255..5b4e2cf 100644 --- a/examples/main/particle-test-local.ino +++ b/examples/main/particle-test-local.ino @@ -73,7 +73,7 @@ void loop() { lastmemcheck = millis(); - Serial.printlnf("\hackerpet_plus_dev 0.1.112; MILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); + Serial.printlnf("\hackerpet_plus 0.1.112; MILLIS: %lu\tSYSTEM MEMORY=%lu", lastmemcheck, FREE_MEMORY); } }